From 865a34b05392800001e5e9264d4f5e8c916b6b72 Mon Sep 17 00:00:00 2001 From: Carlos Scheidegger Date: Sat, 6 Sep 2025 11:06:59 -0500 Subject: [PATCH] add critic markup syntax extensions --- crates/quarto-markdown-pandoc/src/filters.rs | 31 +- .../src/pandoc/inline.rs | 32 +- .../quarto-markdown-pandoc/src/pandoc/mod.rs | 7 +- .../src/pandoc/treesitter.rs | 109 +- .../src/writers/json.rs | 8 +- .../tests/snapshots/013.qmd | 1 + .../tests/snapshots/013.qmd.snapshot | 1 + .../tree-sitter-markdown-inline/grammar.js | 28 + .../src/grammar.json | 168 + .../src/node-types.json | 702 +- .../tree-sitter-markdown-inline/src/parser.c | 244858 ++++++++------- .../test/corpus/markdown.txt | 136 + .../test/corpus/qmd.txt | 181 +- 13 files changed, 138607 insertions(+), 107655 deletions(-) create mode 100644 crates/quarto-markdown-pandoc/tests/snapshots/013.qmd create mode 100644 crates/quarto-markdown-pandoc/tests/snapshots/013.qmd.snapshot create mode 100644 crates/tree-sitter-qmd/tree-sitter-markdown-inline/test/corpus/markdown.txt diff --git a/crates/quarto-markdown-pandoc/src/filters.rs b/crates/quarto-markdown-pandoc/src/filters.rs index 3a785af..0f8fa9e 100644 --- a/crates/quarto-markdown-pandoc/src/filters.rs +++ b/crates/quarto-markdown-pandoc/src/filters.rs @@ -53,6 +53,10 @@ pub struct Filter<'a> { pub shortcode: InlineFilterField<'a, pandoc::Shortcode>, pub note_reference: InlineFilterField<'a, pandoc::NoteReference>, pub attr: InlineFilterField<'a, pandoc::Attr>, + pub insert: InlineFilterField<'a, pandoc::Insert>, + pub delete: InlineFilterField<'a, pandoc::Delete>, + pub highlight: InlineFilterField<'a, pandoc::Highlight>, + pub edit_comment: InlineFilterField<'a, pandoc::EditComment>, pub paragraph: BlockFilterField<'a, pandoc::Paragraph>, pub plain: BlockFilterField<'a, pandoc::Plain>, @@ -119,6 +123,11 @@ impl Default for Filter<'static> { horizontal_rule: None, attr: None, + insert: None, + delete: None, + highlight: None, + edit_comment: None, + meta: None, } } @@ -200,6 +209,10 @@ define_filter_with_methods!( shortcode, note_reference, attr, + insert, + delete, + highlight, + edit_comment ); define_filter_with_methods!( @@ -300,7 +313,11 @@ impl_inline_filterable_simple!( Quoted, Link, Image, - Span + Span, + Insert, + Delete, + Highlight, + EditComment ); impl InlineFilterableStructure for pandoc::Note { @@ -617,6 +634,18 @@ pub fn topdown_traverse_inline(inline: Inline, filter: &mut Filter) -> Inlines { Inline::Attr(attr) => { handle_inline_filter!(Attr, attr, attr, filter) } + Inline::Insert(ins) => { + handle_inline_filter!(Insert, ins, insert, filter) + } + Inline::Delete(del) => { + handle_inline_filter!(Delete, del, delete, filter) + } + Inline::Highlight(hl) => { + handle_inline_filter!(Highlight, hl, highlight, filter) + } + Inline::EditComment(ec) => { + handle_inline_filter!(EditComment, ec, edit_comment, filter) + } } } diff --git a/crates/quarto-markdown-pandoc/src/pandoc/inline.rs b/crates/quarto-markdown-pandoc/src/pandoc/inline.rs index 82201d4..15cfaca 100644 --- a/crates/quarto-markdown-pandoc/src/pandoc/inline.rs +++ b/crates/quarto-markdown-pandoc/src/pandoc/inline.rs @@ -40,6 +40,12 @@ pub enum Inline { // this is used to represent commonmark attributes in the document in places // where they are not directly attached to a block, like in headings and tables Attr(Attr), + + // CriticMarkup-like extensions + Insert(Insert), + Delete(Delete), + Highlight(Highlight), + EditComment(EditComment), } pub type Inlines = Vec; @@ -194,6 +200,26 @@ pub enum CitationMode { NormalCitation, } +#[derive(Debug, Clone, PartialEq)] +pub struct Insert { + pub content: Inlines, +} + +#[derive(Debug, Clone, PartialEq)] +pub struct Delete { + pub content: Inlines, +} + +#[derive(Debug, Clone, PartialEq)] +pub struct Highlight { + pub content: Inlines, +} + +#[derive(Debug, Clone, PartialEq)] +pub struct EditComment { + pub content: Inlines, +} + impl_source_location!(Space, LineBreak, SoftBreak); pub trait AsInline { @@ -241,7 +267,11 @@ impl_as_inline!( Span, Shortcode, NoteReference, - Attr + Attr, + Insert, + Delete, + Highlight, + EditComment ); pub fn is_empty_target(target: &Target) -> bool { diff --git a/crates/quarto-markdown-pandoc/src/pandoc/mod.rs b/crates/quarto-markdown-pandoc/src/pandoc/mod.rs index 1d84651..c03feef 100644 --- a/crates/quarto-markdown-pandoc/src/pandoc/mod.rs +++ b/crates/quarto-markdown-pandoc/src/pandoc/mod.rs @@ -22,9 +22,10 @@ pub use crate::pandoc::block::{ }; pub use crate::pandoc::caption::Caption; pub use crate::pandoc::inline::{ - Citation, CitationMode, Cite, Code, Emph, Image, Inline, Inlines, LineBreak, Link, Math, - MathType, Note, NoteReference, QuoteType, Quoted, RawInline, SmallCaps, SoftBreak, Space, Span, - Str, Strikeout, Strong, Subscript, Superscript, Underline, + Citation, CitationMode, Cite, Code, Delete, EditComment, Emph, Highlight, Image, Inline, + Inlines, Insert, LineBreak, Link, Math, MathType, Note, NoteReference, QuoteType, Quoted, + RawInline, SmallCaps, SoftBreak, Space, Span, Str, Strikeout, Strong, Subscript, Superscript, + Underline, }; pub use crate::pandoc::list::{ListAttributes, ListNumberDelim, ListNumberStyle}; pub use crate::pandoc::pandoc::Pandoc; diff --git a/crates/quarto-markdown-pandoc/src/pandoc/treesitter.rs b/crates/quarto-markdown-pandoc/src/pandoc/treesitter.rs index 599fb88..c7a98e6 100644 --- a/crates/quarto-markdown-pandoc/src/pandoc/treesitter.rs +++ b/crates/quarto-markdown-pandoc/src/pandoc/treesitter.rs @@ -10,9 +10,10 @@ use crate::pandoc::block::{ }; use crate::pandoc::caption::Caption; use crate::pandoc::inline::{ - Citation, CitationMode, Cite, Code, Emph, Image, Inline, Inlines, LineBreak, Link, Math, - MathType, Note, NoteReference, QuoteType, Quoted, RawInline, SoftBreak, Space, Span, Str, - Strikeout, Strong, Subscript, Superscript, Target, is_empty_target, + Citation, CitationMode, Cite, Code, Delete, EditComment, Emph, Highlight, Image, Inline, + Inlines, Insert, LineBreak, Link, Math, MathType, Note, NoteReference, QuoteType, Quoted, + RawInline, SoftBreak, Space, Span, Str, Strikeout, Strong, Subscript, Superscript, Target, + is_empty_target, }; use crate::pandoc::inline::{make_cite_inline, make_span_inline}; @@ -894,7 +895,11 @@ fn native_visitor( | "superscript_delimiter" | "subscript_delimiter" | "strikeout_delimiter" - | "emphasis_delimiter" => { + | "emphasis_delimiter" + | "insert_delimiter" + | "delete_delimiter" + | "highlight_delimiter" + | "edit_comment_delimiter" => { PandocNativeIntermediate::IntermediateUnknown(node_location(node)) } "soft_line_break" => { @@ -971,6 +976,46 @@ fn native_visitor( content: inlines, })) } + "insert" => { + let inlines: Vec<_> = children + .into_iter() + .filter(|(node, _)| node != "insert_delimiter") + .map(native_inline) + .collect(); + PandocNativeIntermediate::IntermediateInline(Inline::Insert(Insert { + content: inlines, + })) + } + "delete" => { + let inlines: Vec<_> = children + .into_iter() + .filter(|(node, _)| node != "delete_delimiter") + .map(native_inline) + .collect(); + PandocNativeIntermediate::IntermediateInline(Inline::Delete(Delete { + content: inlines, + })) + } + "highlight" => { + let inlines: Vec<_> = children + .into_iter() + .filter(|(node, _)| node != "highlight_delimiter") + .map(native_inline) + .collect(); + PandocNativeIntermediate::IntermediateInline(Inline::Highlight(Highlight { + content: inlines, + })) + } + "edit_comment" => { + let inlines: Vec<_> = children + .into_iter() + .filter(|(node, _)| node != "edit_comment_delimiter") + .map(native_inline) + .collect(); + PandocNativeIntermediate::IntermediateInline(Inline::EditComment(EditComment { + content: inlines, + })) + } "quoted_span" => { let mut quote_type = QuoteType::SingleQuote; @@ -1895,6 +1940,62 @@ fn desugar(doc: Pandoc) -> Result> { false, ) }) + .with_insert(|insert| { + let (content, _changed) = trim_inlines(insert.content); + FilterResult( + vec![Inline::Span(Span { + attr: ( + "".to_string(), + vec!["quarto-insert".to_string()], + HashMap::new(), + ), + content, + })], + true, + ) + }) + .with_delete(|delete| { + let (content, _changed) = trim_inlines(delete.content); + FilterResult( + vec![Inline::Span(Span { + attr: ( + "".to_string(), + vec!["quarto-delete".to_string()], + HashMap::new(), + ), + content, + })], + true, + ) + }) + .with_highlight(|highlight| { + let (content, _changed) = trim_inlines(highlight.content); + FilterResult( + vec![Inline::Span(Span { + attr: ( + "".to_string(), + vec!["quarto-highlight".to_string()], + HashMap::new(), + ), + content, + })], + true, + ) + }) + .with_edit_comment(|edit_comment| { + let (content, _changed) = trim_inlines(edit_comment.content); + FilterResult( + vec![Inline::Span(Span { + attr: ( + "".to_string(), + vec!["quarto-edit-comment".to_string()], + HashMap::new(), + ), + content, + })], + true, + ) + }) .with_inlines(|inlines| { let mut result = vec![]; // states in this state machine: diff --git a/crates/quarto-markdown-pandoc/src/writers/json.rs b/crates/quarto-markdown-pandoc/src/writers/json.rs index c924862..dc73958 100644 --- a/crates/quarto-markdown-pandoc/src/writers/json.rs +++ b/crates/quarto-markdown-pandoc/src/writers/json.rs @@ -144,7 +144,13 @@ fn write_inline(inline: &Inline) -> Value { }) }).collect::>() }), - Inline::Shortcode(_) | Inline::NoteReference(_) | Inline::Attr(_) => { + Inline::Shortcode(_) + | Inline::NoteReference(_) + | Inline::Attr(_) + | Inline::Insert(_) + | Inline::Delete(_) + | Inline::Highlight(_) + | Inline::EditComment(_) => { panic!("Unsupported inline type: {:?}", inline) } } diff --git a/crates/quarto-markdown-pandoc/tests/snapshots/013.qmd b/crates/quarto-markdown-pandoc/tests/snapshots/013.qmd new file mode 100644 index 0000000..fbcb526 --- /dev/null +++ b/crates/quarto-markdown-pandoc/tests/snapshots/013.qmd @@ -0,0 +1 @@ +[++insertions with markdown _inside_ them], [--deletions, **likewise**], [!! highlight this part][>> with a comment about the previous highlight]. diff --git a/crates/quarto-markdown-pandoc/tests/snapshots/013.qmd.snapshot b/crates/quarto-markdown-pandoc/tests/snapshots/013.qmd.snapshot new file mode 100644 index 0000000..87fcddf --- /dev/null +++ b/crates/quarto-markdown-pandoc/tests/snapshots/013.qmd.snapshot @@ -0,0 +1 @@ +[ Para [Span ( "" , ["quarto-insert"] , [] ) [Str "insertions", Space, Str "with", Space, Str "markdown", Space, Emph [Str "inside"], Space, Str "them"], Str ",", Space, Span ( "" , ["quarto-delete"] , [] ) [Str "deletions,", Space, Strong [Str "likewise"]], Str ",", Space, Span ( "" , ["quarto-highlight"] , [] ) [Str "highlight", Space, Str "this", Space, Str "part"], Span ( "" , ["quarto-edit-comment"] , [] ) [Str "with", Space, Str "a", Space, Str "comment", Space, Str "about", Space, Str "the", Space, Str "previous", Space, Str "highlight"], Str "."] ] \ No newline at end of file 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 cd4e1f7..9a362fd 100644 --- a/crates/tree-sitter-qmd/tree-sitter-markdown-inline/grammar.js +++ b/crates/tree-sitter-qmd/tree-sitter-markdown-inline/grammar.js @@ -149,6 +149,30 @@ module.exports = grammar(add_inline_rules({ alias($._latex_span_close, $.latex_span_delimiter), ), + insert: $ => seq( + prec(3, alias(/\[\+\+[ ]*/, $.insert_delimiter)), + repeat($._inline_element), + prec(3, alias(/[ ]*\]/, $.insert_delimiter)), + ), + + delete: $ => seq( + prec(3, alias(/\[\-\-[ ]*/, $.delete_delimiter)), + repeat($._inline_element), + prec(3, alias(/[ ]*\]/, $.delete_delimiter)), + ), + + highlight: $ => seq( + prec(3, alias(/\[\!\![ ]*/, $.highlight_delimiter)), + repeat($._inline_element), + prec(3, alias(/[ ]*\]/, $.highlight_delimiter)), + ), + + edit_comment: $ => seq( + prec(3, alias(/\[>>[ ]*/, $.edit_comment_delimiter)), + repeat($._inline_element), + prec(3, alias(/[ ]*\]/, $.edit_comment_delimiter)), + ), + superscript: $ => seq( alias($._superscript_open, $.superscript_delimiter), repeat($._inline_element), @@ -399,6 +423,10 @@ module.exports = grammar(add_inline_rules({ $.shortcode_escaped, $.note_reference, $.commonmark_attribute, + $.insert, + $.delete, + $.highlight, + $.edit_comment, alias($._text_base, $.text_base), $._unclosed_span, 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 6556a24..9072085 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 @@ -2196,6 +2196,158 @@ } ] }, + "insert": { + "type": "SEQ", + "members": [ + { + "type": "PREC", + "value": 3, + "content": { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "\\[\\+\\+[ ]*" + }, + "named": true, + "value": "insert_delimiter" + } + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_inline_element" + } + }, + { + "type": "PREC", + "value": 3, + "content": { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "[ ]*\\]" + }, + "named": true, + "value": "insert_delimiter" + } + } + ] + }, + "delete": { + "type": "SEQ", + "members": [ + { + "type": "PREC", + "value": 3, + "content": { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "\\[\\-\\-[ ]*" + }, + "named": true, + "value": "delete_delimiter" + } + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_inline_element" + } + }, + { + "type": "PREC", + "value": 3, + "content": { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "[ ]*\\]" + }, + "named": true, + "value": "delete_delimiter" + } + } + ] + }, + "highlight": { + "type": "SEQ", + "members": [ + { + "type": "PREC", + "value": 3, + "content": { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "\\[\\!\\![ ]*" + }, + "named": true, + "value": "highlight_delimiter" + } + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_inline_element" + } + }, + { + "type": "PREC", + "value": 3, + "content": { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "[ ]*\\]" + }, + "named": true, + "value": "highlight_delimiter" + } + } + ] + }, + "edit_comment": { + "type": "SEQ", + "members": [ + { + "type": "PREC", + "value": 3, + "content": { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "\\[>>[ ]*" + }, + "named": true, + "value": "edit_comment_delimiter" + } + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_inline_element" + } + }, + { + "type": "PREC", + "value": 3, + "content": { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "[ ]*\\]" + }, + "named": true, + "value": "edit_comment_delimiter" + } + } + ] + }, "superscript": { "type": "SEQ", "members": [ @@ -3687,6 +3839,22 @@ "type": "SYMBOL", "name": "commonmark_attribute" }, + { + "type": "SYMBOL", + "name": "insert" + }, + { + "type": "SYMBOL", + "name": "delete" + }, + { + "type": "SYMBOL", + "name": "highlight" + }, + { + "type": "SYMBOL", + "name": "edit_comment" + }, { "type": "ALIAS", "content": { diff --git a/crates/tree-sitter-qmd/tree-sitter-markdown-inline/src/node-types.json b/crates/tree-sitter-qmd/tree-sitter-markdown-inline/src/node-types.json index 3560468..3e94f56 100644 --- a/crates/tree-sitter-qmd/tree-sitter-markdown-inline/src/node-types.json +++ b/crates/tree-sitter-qmd/tree-sitter-markdown-inline/src/node-types.json @@ -86,6 +86,260 @@ ] } }, + { + "type": "delete", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "backslash_escape", + "named": true + }, + { + "type": "citation", + "named": true + }, + { + "type": "code_span", + "named": true + }, + { + "type": "commonmark_attribute", + "named": true + }, + { + "type": "delete", + "named": true + }, + { + "type": "delete_delimiter", + "named": true + }, + { + "type": "edit_comment", + "named": true + }, + { + "type": "email_autolink", + "named": true + }, + { + "type": "emphasis", + "named": true + }, + { + "type": "entity_reference", + "named": true + }, + { + "type": "hard_line_break", + "named": true + }, + { + "type": "highlight", + "named": true + }, + { + "type": "image", + "named": true + }, + { + "type": "inline_link", + "named": true + }, + { + "type": "inline_note", + "named": true + }, + { + "type": "insert", + "named": true + }, + { + "type": "latex_span", + "named": true + }, + { + "type": "note_reference", + "named": true + }, + { + "type": "numeric_character_reference", + "named": true + }, + { + "type": "quoted_span", + "named": true + }, + { + "type": "shortcode", + "named": true + }, + { + "type": "shortcode_escaped", + "named": true + }, + { + "type": "soft_line_break", + "named": true + }, + { + "type": "strikeout", + "named": true + }, + { + "type": "strong_emphasis", + "named": true + }, + { + "type": "subscript", + "named": true + }, + { + "type": "superscript", + "named": true + }, + { + "type": "text_base", + "named": true + }, + { + "type": "uri_autolink", + "named": true + } + ] + } + }, + { + "type": "edit_comment", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "backslash_escape", + "named": true + }, + { + "type": "citation", + "named": true + }, + { + "type": "code_span", + "named": true + }, + { + "type": "commonmark_attribute", + "named": true + }, + { + "type": "delete", + "named": true + }, + { + "type": "edit_comment", + "named": true + }, + { + "type": "edit_comment_delimiter", + "named": true + }, + { + "type": "email_autolink", + "named": true + }, + { + "type": "emphasis", + "named": true + }, + { + "type": "entity_reference", + "named": true + }, + { + "type": "hard_line_break", + "named": true + }, + { + "type": "highlight", + "named": true + }, + { + "type": "image", + "named": true + }, + { + "type": "inline_link", + "named": true + }, + { + "type": "inline_note", + "named": true + }, + { + "type": "insert", + "named": true + }, + { + "type": "latex_span", + "named": true + }, + { + "type": "note_reference", + "named": true + }, + { + "type": "numeric_character_reference", + "named": true + }, + { + "type": "quoted_span", + "named": true + }, + { + "type": "shortcode", + "named": true + }, + { + "type": "shortcode_escaped", + "named": true + }, + { + "type": "soft_line_break", + "named": true + }, + { + "type": "strikeout", + "named": true + }, + { + "type": "strong_emphasis", + "named": true + }, + { + "type": "subscript", + "named": true + }, + { + "type": "superscript", + "named": true + }, + { + "type": "text_base", + "named": true + }, + { + "type": "uri_autolink", + "named": true + } + ] + } + }, { "type": "emphasis", "named": true, @@ -110,24 +364,168 @@ "type": "commonmark_attribute", "named": true }, + { + "type": "delete", + "named": true + }, + { + "type": "edit_comment", + "named": true + }, { "type": "email_autolink", "named": true }, { - "type": "emphasis", + "type": "emphasis", + "named": true + }, + { + "type": "emphasis_delimiter", + "named": true + }, + { + "type": "entity_reference", + "named": true + }, + { + "type": "hard_line_break", + "named": true + }, + { + "type": "highlight", + "named": true + }, + { + "type": "image", + "named": true + }, + { + "type": "inline_link", + "named": true + }, + { + "type": "inline_note", + "named": true + }, + { + "type": "insert", + "named": true + }, + { + "type": "latex_span", + "named": true + }, + { + "type": "note_reference", + "named": true + }, + { + "type": "numeric_character_reference", + "named": true + }, + { + "type": "quoted_span", + "named": true + }, + { + "type": "shortcode", + "named": true + }, + { + "type": "shortcode_escaped", + "named": true + }, + { + "type": "soft_line_break", + "named": true + }, + { + "type": "strikeout", + "named": true + }, + { + "type": "strong_emphasis", + "named": true + }, + { + "type": "subscript", + "named": true + }, + { + "type": "superscript", + "named": true + }, + { + "type": "text_base", + "named": true + }, + { + "type": "uri_autolink", + "named": true + } + ] + } + }, + { + "type": "hard_line_break", + "named": true, + "fields": {} + }, + { + "type": "highlight", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "backslash_escape", + "named": true + }, + { + "type": "citation", + "named": true + }, + { + "type": "code_span", + "named": true + }, + { + "type": "commonmark_attribute", + "named": true + }, + { + "type": "delete", + "named": true + }, + { + "type": "edit_comment", + "named": true + }, + { + "type": "email_autolink", + "named": true + }, + { + "type": "emphasis", + "named": true + }, + { + "type": "entity_reference", "named": true }, { - "type": "emphasis_delimiter", + "type": "hard_line_break", "named": true }, { - "type": "entity_reference", + "type": "highlight", "named": true }, { - "type": "hard_line_break", + "type": "highlight_delimiter", "named": true }, { @@ -142,6 +540,10 @@ "type": "inline_note", "named": true }, + { + "type": "insert", + "named": true + }, { "type": "latex_span", "named": true @@ -197,11 +599,6 @@ ] } }, - { - "type": "hard_line_break", - "named": true, - "fields": {} - }, { "type": "image", "named": true, @@ -261,6 +658,14 @@ "type": "commonmark_attribute", "named": true }, + { + "type": "delete", + "named": true + }, + { + "type": "edit_comment", + "named": true + }, { "type": "email_autolink", "named": true @@ -277,6 +682,10 @@ "type": "hard_line_break", "named": true }, + { + "type": "highlight", + "named": true + }, { "type": "image", "named": true @@ -289,6 +698,10 @@ "type": "inline_note", "named": true }, + { + "type": "insert", + "named": true + }, { "type": "latex_span", "named": true @@ -369,6 +782,14 @@ "type": "commonmark_attribute", "named": true }, + { + "type": "delete", + "named": true + }, + { + "type": "edit_comment", + "named": true + }, { "type": "email_autolink", "named": true @@ -385,6 +806,10 @@ "type": "hard_line_break", "named": true }, + { + "type": "highlight", + "named": true + }, { "type": "image", "named": true @@ -397,6 +822,10 @@ "type": "inline_note", "named": true }, + { + "type": "insert", + "named": true + }, { "type": "latex_span", "named": true @@ -511,6 +940,14 @@ "type": "commonmark_attribute", "named": true }, + { + "type": "delete", + "named": true + }, + { + "type": "edit_comment", + "named": true + }, { "type": "email_autolink", "named": true @@ -527,6 +964,10 @@ "type": "hard_line_break", "named": true }, + { + "type": "highlight", + "named": true + }, { "type": "image", "named": true @@ -543,6 +984,137 @@ "type": "inline_note_delimiter", "named": true }, + { + "type": "insert", + "named": true + }, + { + "type": "latex_span", + "named": true + }, + { + "type": "note_reference", + "named": true + }, + { + "type": "numeric_character_reference", + "named": true + }, + { + "type": "quoted_span", + "named": true + }, + { + "type": "shortcode", + "named": true + }, + { + "type": "shortcode_escaped", + "named": true + }, + { + "type": "soft_line_break", + "named": true + }, + { + "type": "strikeout", + "named": true + }, + { + "type": "strong_emphasis", + "named": true + }, + { + "type": "subscript", + "named": true + }, + { + "type": "superscript", + "named": true + }, + { + "type": "text_base", + "named": true + }, + { + "type": "uri_autolink", + "named": true + } + ] + } + }, + { + "type": "insert", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "backslash_escape", + "named": true + }, + { + "type": "citation", + "named": true + }, + { + "type": "code_span", + "named": true + }, + { + "type": "commonmark_attribute", + "named": true + }, + { + "type": "delete", + "named": true + }, + { + "type": "edit_comment", + "named": true + }, + { + "type": "email_autolink", + "named": true + }, + { + "type": "emphasis", + "named": true + }, + { + "type": "entity_reference", + "named": true + }, + { + "type": "hard_line_break", + "named": true + }, + { + "type": "highlight", + "named": true + }, + { + "type": "image", + "named": true + }, + { + "type": "inline_link", + "named": true + }, + { + "type": "inline_note", + "named": true + }, + { + "type": "insert", + "named": true + }, + { + "type": "insert_delimiter", + "named": true + }, { "type": "latex_span", "named": true @@ -718,6 +1290,14 @@ "type": "commonmark_attribute", "named": true }, + { + "type": "delete", + "named": true + }, + { + "type": "edit_comment", + "named": true + }, { "type": "email_autolink", "named": true @@ -734,6 +1314,10 @@ "type": "hard_line_break", "named": true }, + { + "type": "highlight", + "named": true + }, { "type": "image", "named": true @@ -742,6 +1326,10 @@ "type": "inline_note", "named": true }, + { + "type": "insert", + "named": true + }, { "type": "latex_span", "named": true @@ -868,10 +1456,18 @@ "type": "commonmark_attribute", "named": true }, + { + "type": "delete", + "named": true + }, { "type": "double_quoted_span_delimiter", "named": true }, + { + "type": "edit_comment", + "named": true + }, { "type": "email_autolink", "named": true @@ -888,6 +1484,10 @@ "type": "hard_line_break", "named": true }, + { + "type": "highlight", + "named": true + }, { "type": "image", "named": true @@ -900,6 +1500,10 @@ "type": "inline_note", "named": true }, + { + "type": "insert", + "named": true + }, { "type": "latex_span", "named": true @@ -1139,6 +1743,14 @@ "type": "commonmark_attribute", "named": true }, + { + "type": "delete", + "named": true + }, + { + "type": "edit_comment", + "named": true + }, { "type": "email_autolink", "named": true @@ -1155,6 +1767,10 @@ "type": "hard_line_break", "named": true }, + { + "type": "highlight", + "named": true + }, { "type": "image", "named": true @@ -1167,6 +1783,10 @@ "type": "inline_note", "named": true }, + { + "type": "insert", + "named": true + }, { "type": "latex_span", "named": true @@ -1250,6 +1870,14 @@ "type": "commonmark_attribute", "named": true }, + { + "type": "delete", + "named": true + }, + { + "type": "edit_comment", + "named": true + }, { "type": "email_autolink", "named": true @@ -1270,6 +1898,10 @@ "type": "hard_line_break", "named": true }, + { + "type": "highlight", + "named": true + }, { "type": "image", "named": true @@ -1282,6 +1914,10 @@ "type": "inline_note", "named": true }, + { + "type": "insert", + "named": true + }, { "type": "latex_span", "named": true @@ -1361,6 +1997,14 @@ "type": "commonmark_attribute", "named": true }, + { + "type": "delete", + "named": true + }, + { + "type": "edit_comment", + "named": true + }, { "type": "email_autolink", "named": true @@ -1377,6 +2021,10 @@ "type": "hard_line_break", "named": true }, + { + "type": "highlight", + "named": true + }, { "type": "image", "named": true @@ -1389,6 +2037,10 @@ "type": "inline_note", "named": true }, + { + "type": "insert", + "named": true + }, { "type": "latex_span", "named": true @@ -1472,6 +2124,14 @@ "type": "commonmark_attribute", "named": true }, + { + "type": "delete", + "named": true + }, + { + "type": "edit_comment", + "named": true + }, { "type": "email_autolink", "named": true @@ -1488,6 +2148,10 @@ "type": "hard_line_break", "named": true }, + { + "type": "highlight", + "named": true + }, { "type": "image", "named": true @@ -1500,6 +2164,10 @@ "type": "inline_note", "named": true }, + { + "type": "insert", + "named": true + }, { "type": "latex_span", "named": true @@ -1716,10 +2384,18 @@ "type": "code_span_delimiter", "named": true }, + { + "type": "delete_delimiter", + "named": true + }, { "type": "double_quoted_span_delimiter", "named": true }, + { + "type": "edit_comment_delimiter", + "named": true + }, { "type": "email_autolink", "named": true @@ -1736,6 +2412,10 @@ "type": "false", "named": false }, + { + "type": "highlight_delimiter", + "named": true + }, { "type": "id_specifier", "named": true @@ -1744,6 +2424,10 @@ "type": "inline_note_delimiter", "named": true }, + { + "type": "insert_delimiter", + "named": true + }, { "type": "key_value_key", "named": true diff --git a/crates/tree-sitter-qmd/tree-sitter-markdown-inline/src/parser.c b/crates/tree-sitter-qmd/tree-sitter-markdown-inline/src/parser.c index f91cfc1..6909003 100644 --- a/crates/tree-sitter-qmd/tree-sitter-markdown-inline/src/parser.c +++ b/crates/tree-sitter-qmd/tree-sitter-markdown-inline/src/parser.c @@ -15,16 +15,16 @@ #endif #define LANGUAGE_VERSION 15 -#define STATE_COUNT 2048 -#define LARGE_STATE_COUNT 431 -#define SYMBOL_COUNT 179 +#define STATE_COUNT 2410 +#define LARGE_STATE_COUNT 1427 +#define SYMBOL_COUNT 188 #define ALIAS_COUNT 9 -#define TOKEN_COUNT 100 +#define TOKEN_COUNT 105 #define EXTERNAL_TOKEN_COUNT 31 #define FIELD_COUNT 0 #define MAX_ALIAS_SEQUENCE_LENGTH 9 #define MAX_RESERVED_WORD_SET_SIZE 0 -#define PRODUCTION_ID_COUNT 20 +#define PRODUCTION_ID_COUNT 26 #define SUPERTYPE_COUNT 0 enum ts_symbol_identifiers { @@ -75,146 +75,155 @@ enum ts_symbol_identifiers { anon_sym_BSLASH_DQUOTE = 45, aux_sym_latex_span_token1 = 46, aux_sym_latex_span_token2 = 47, - anon_sym_CARET_LBRACK = 48, - aux_sym_citation_token1 = 49, - aux_sym_citation_token2 = 50, - sym_shortcode_name = 51, - aux_sym_shortcode_naked_string_token1 = 52, - aux_sym_shortcode_naked_string_token2 = 53, - aux_sym_shortcode_string_token1 = 54, - aux_sym_shortcode_string_token2 = 55, - sym_shortcode_number = 56, - anon_sym_true = 57, - anon_sym_false = 58, - anon_sym_LBRACK_CARET = 59, - sym_uri_autolink = 60, - sym_email_autolink = 61, - sym__whitespace_ge_2 = 62, - aux_sym__whitespace_token1 = 63, - sym__word_no_digit = 64, - sym__digits = 65, - anon_sym_DASH_DASH = 66, - anon_sym_DASH_DASH_DASH = 67, - anon_sym_DOT_DOT_DOT = 68, - sym__error = 69, - sym__trigger_error = 70, - sym__code_span_start = 71, - sym__code_span_close = 72, - sym__emphasis_open_star = 73, - sym__emphasis_open_underscore = 74, - sym__emphasis_close_star = 75, - sym__emphasis_close_underscore = 76, - sym__last_token_whitespace = 77, - sym__last_token_punctuation = 78, - sym__strikeout_open = 79, - sym__strikeout_close = 80, - sym__latex_span_start = 81, - sym__latex_span_close = 82, - sym__single_quote_open = 83, - sym__single_quote_close = 84, - sym__double_quote_open = 85, - sym__double_quote_close = 86, - sym__superscript_open = 87, - sym__superscript_close = 88, - sym__subscript_open = 89, - sym__subscript_close = 90, - sym__cite_author_in_text_with_open_bracket = 91, - sym__cite_suppress_author_with_open_bracket = 92, - sym__cite_author_in_text = 93, - sym__cite_suppress_author = 94, - sym__shortcode_open_escaped = 95, - sym__shortcode_close_escaped = 96, - sym__shortcode_open = 97, - sym__shortcode_close = 98, - sym__unclosed_span = 99, - sym_inline = 100, - sym_backslash_escape = 101, - sym_link_destination = 102, - sym__link_destination_parenthesis = 103, - sym__text_no_angle = 104, - sym_link_title = 105, - sym__qmd_attribute = 106, - sym_raw_attribute = 107, - sym_commonmark_attribute = 108, - sym_language_attribute = 109, - sym__attribute = 110, - sym_key_value_value = 111, - sym_code_span = 112, - sym_latex_span = 113, - sym_superscript = 114, - sym_subscript = 115, - sym_strikeout = 116, - sym_quoted_span = 117, - sym_inline_note = 118, - sym_citation = 119, - sym_shortcode_escaped = 120, - sym_shortcode = 121, - sym__shortcode_value = 122, - sym_shortcode_naked_string = 123, - sym_shortcode_string = 124, - sym_shortcode_boolean = 125, - sym_shortcode_keyword_param = 126, - sym_note_reference = 127, - sym__link_text = 128, - sym__link_text_non_empty = 129, - sym_inline_link = 130, - sym_image = 131, - sym__image_inline_link = 132, - sym__image_description = 133, - sym__image_description_non_empty = 134, - sym_hard_line_break = 135, - sym__whitespace = 136, - sym__word = 137, - sym__soft_line_break = 138, - sym__inline_base = 139, - sym__text_base = 140, - sym__code_span_text_base = 141, - sym__inline_element = 142, - aux_sym__inline = 143, - sym__inline_element_no_star = 144, - aux_sym__inline_no_star = 145, - sym__inline_element_no_underscore = 146, - aux_sym__inline_no_underscore = 147, - sym__emphasis_star = 148, - sym__strong_emphasis_star = 149, - sym__emphasis_underscore = 150, - sym__strong_emphasis_underscore = 151, - sym__inline_element_no_link = 152, - aux_sym__inline_no_link = 153, - sym__inline_element_no_star_no_link = 154, - aux_sym__inline_no_star_no_link = 155, - sym__inline_element_no_underscore_no_link = 156, - aux_sym__inline_no_underscore_no_link = 157, - sym__emphasis_star_no_link = 158, - sym__strong_emphasis_star_no_link = 159, - sym__emphasis_underscore_no_link = 160, - sym__strong_emphasis_underscore_no_link = 161, - aux_sym_link_destination_repeat1 = 162, - aux_sym_link_destination_repeat2 = 163, - aux_sym_link_title_repeat1 = 164, - aux_sym_link_title_repeat2 = 165, - aux_sym_link_title_repeat3 = 166, - aux_sym_commonmark_attribute_repeat1 = 167, - aux_sym_commonmark_attribute_repeat2 = 168, - aux_sym_commonmark_attribute_repeat3 = 169, - aux_sym_key_value_value_repeat1 = 170, - aux_sym_key_value_value_repeat2 = 171, - aux_sym_code_span_repeat1 = 172, - aux_sym_latex_span_repeat1 = 173, - aux_sym_superscript_repeat1 = 174, - aux_sym_shortcode_escaped_repeat1 = 175, - aux_sym_shortcode_escaped_repeat2 = 176, - aux_sym_inline_link_repeat1 = 177, - aux_sym__inline_base_repeat1 = 178, - alias_sym_citation_id_suppress_author = 179, - alias_sym_code_content = 180, - alias_sym_emphasis = 181, - alias_sym_image_description = 182, - alias_sym_language = 183, - alias_sym_latex_content = 184, - alias_sym_link_text = 185, - alias_sym_note_reference_id = 186, - alias_sym_soft_line_break = 187, + aux_sym_insert_token1 = 48, + aux_sym_insert_token2 = 49, + aux_sym_delete_token1 = 50, + aux_sym_highlight_token1 = 51, + aux_sym_edit_comment_token1 = 52, + anon_sym_CARET_LBRACK = 53, + aux_sym_citation_token1 = 54, + aux_sym_citation_token2 = 55, + sym_shortcode_name = 56, + aux_sym_shortcode_naked_string_token1 = 57, + aux_sym_shortcode_naked_string_token2 = 58, + aux_sym_shortcode_string_token1 = 59, + aux_sym_shortcode_string_token2 = 60, + sym_shortcode_number = 61, + anon_sym_true = 62, + anon_sym_false = 63, + anon_sym_LBRACK_CARET = 64, + sym_uri_autolink = 65, + sym_email_autolink = 66, + sym__whitespace_ge_2 = 67, + aux_sym__whitespace_token1 = 68, + sym__word_no_digit = 69, + sym__digits = 70, + anon_sym_DASH_DASH = 71, + anon_sym_DASH_DASH_DASH = 72, + anon_sym_DOT_DOT_DOT = 73, + sym__error = 74, + sym__trigger_error = 75, + sym__code_span_start = 76, + sym__code_span_close = 77, + sym__emphasis_open_star = 78, + sym__emphasis_open_underscore = 79, + sym__emphasis_close_star = 80, + sym__emphasis_close_underscore = 81, + sym__last_token_whitespace = 82, + sym__last_token_punctuation = 83, + sym__strikeout_open = 84, + sym__strikeout_close = 85, + sym__latex_span_start = 86, + sym__latex_span_close = 87, + sym__single_quote_open = 88, + sym__single_quote_close = 89, + sym__double_quote_open = 90, + sym__double_quote_close = 91, + sym__superscript_open = 92, + sym__superscript_close = 93, + sym__subscript_open = 94, + sym__subscript_close = 95, + sym__cite_author_in_text_with_open_bracket = 96, + sym__cite_suppress_author_with_open_bracket = 97, + sym__cite_author_in_text = 98, + sym__cite_suppress_author = 99, + sym__shortcode_open_escaped = 100, + sym__shortcode_close_escaped = 101, + sym__shortcode_open = 102, + sym__shortcode_close = 103, + sym__unclosed_span = 104, + sym_inline = 105, + sym_backslash_escape = 106, + sym_link_destination = 107, + sym__link_destination_parenthesis = 108, + sym__text_no_angle = 109, + sym_link_title = 110, + sym__qmd_attribute = 111, + sym_raw_attribute = 112, + sym_commonmark_attribute = 113, + sym_language_attribute = 114, + sym__attribute = 115, + sym_key_value_value = 116, + sym_code_span = 117, + sym_latex_span = 118, + sym_insert = 119, + sym_delete = 120, + sym_highlight = 121, + sym_edit_comment = 122, + sym_superscript = 123, + sym_subscript = 124, + sym_strikeout = 125, + sym_quoted_span = 126, + sym_inline_note = 127, + sym_citation = 128, + sym_shortcode_escaped = 129, + sym_shortcode = 130, + sym__shortcode_value = 131, + sym_shortcode_naked_string = 132, + sym_shortcode_string = 133, + sym_shortcode_boolean = 134, + sym_shortcode_keyword_param = 135, + sym_note_reference = 136, + sym__link_text = 137, + sym__link_text_non_empty = 138, + sym_inline_link = 139, + sym_image = 140, + sym__image_inline_link = 141, + sym__image_description = 142, + sym__image_description_non_empty = 143, + sym_hard_line_break = 144, + sym__whitespace = 145, + sym__word = 146, + sym__soft_line_break = 147, + sym__inline_base = 148, + sym__text_base = 149, + sym__code_span_text_base = 150, + sym__inline_element = 151, + aux_sym__inline = 152, + sym__inline_element_no_star = 153, + aux_sym__inline_no_star = 154, + sym__inline_element_no_underscore = 155, + aux_sym__inline_no_underscore = 156, + sym__emphasis_star = 157, + sym__strong_emphasis_star = 158, + sym__emphasis_underscore = 159, + sym__strong_emphasis_underscore = 160, + sym__inline_element_no_link = 161, + aux_sym__inline_no_link = 162, + sym__inline_element_no_star_no_link = 163, + aux_sym__inline_no_star_no_link = 164, + sym__inline_element_no_underscore_no_link = 165, + aux_sym__inline_no_underscore_no_link = 166, + sym__emphasis_star_no_link = 167, + sym__strong_emphasis_star_no_link = 168, + sym__emphasis_underscore_no_link = 169, + sym__strong_emphasis_underscore_no_link = 170, + aux_sym_link_destination_repeat1 = 171, + aux_sym_link_destination_repeat2 = 172, + aux_sym_link_title_repeat1 = 173, + aux_sym_link_title_repeat2 = 174, + aux_sym_link_title_repeat3 = 175, + aux_sym_commonmark_attribute_repeat1 = 176, + aux_sym_commonmark_attribute_repeat2 = 177, + aux_sym_commonmark_attribute_repeat3 = 178, + aux_sym_key_value_value_repeat1 = 179, + aux_sym_key_value_value_repeat2 = 180, + aux_sym_code_span_repeat1 = 181, + aux_sym_latex_span_repeat1 = 182, + aux_sym_insert_repeat1 = 183, + aux_sym_shortcode_escaped_repeat1 = 184, + aux_sym_shortcode_escaped_repeat2 = 185, + aux_sym_inline_link_repeat1 = 186, + aux_sym__inline_base_repeat1 = 187, + alias_sym_citation_id_suppress_author = 188, + alias_sym_code_content = 189, + alias_sym_emphasis = 190, + alias_sym_image_description = 191, + alias_sym_language = 192, + alias_sym_latex_content = 193, + alias_sym_link_text = 194, + alias_sym_note_reference_id = 195, + alias_sym_soft_line_break = 196, }; static const char * const ts_symbol_names[] = { @@ -266,6 +275,11 @@ static const char * const ts_symbol_names[] = { [anon_sym_BSLASH_DQUOTE] = "\\\"", [aux_sym_latex_span_token1] = "latex_span_token1", [aux_sym_latex_span_token2] = "latex_span_token2", + [aux_sym_insert_token1] = "insert_delimiter", + [aux_sym_insert_token2] = "insert_delimiter", + [aux_sym_delete_token1] = "delete_delimiter", + [aux_sym_highlight_token1] = "highlight_delimiter", + [aux_sym_edit_comment_token1] = "edit_comment_delimiter", [anon_sym_CARET_LBRACK] = "inline_note_delimiter", [aux_sym_citation_token1] = "citation_id_author_in_text", [aux_sym_citation_token2] = "citation_id_author_in_text", @@ -332,6 +346,10 @@ static const char * const ts_symbol_names[] = { [sym_key_value_value] = "key_value_value", [sym_code_span] = "code_span", [sym_latex_span] = "latex_span", + [sym_insert] = "insert", + [sym_delete] = "delete", + [sym_highlight] = "highlight", + [sym_edit_comment] = "edit_comment", [sym_superscript] = "superscript", [sym_subscript] = "subscript", [sym_strikeout] = "strikeout", @@ -392,7 +410,7 @@ static const char * const ts_symbol_names[] = { [aux_sym_key_value_value_repeat2] = "key_value_value_repeat2", [aux_sym_code_span_repeat1] = "code_span_repeat1", [aux_sym_latex_span_repeat1] = "latex_span_repeat1", - [aux_sym_superscript_repeat1] = "superscript_repeat1", + [aux_sym_insert_repeat1] = "insert_repeat1", [aux_sym_shortcode_escaped_repeat1] = "shortcode_escaped_repeat1", [aux_sym_shortcode_escaped_repeat2] = "shortcode_escaped_repeat2", [aux_sym_inline_link_repeat1] = "inline_link_repeat1", @@ -457,6 +475,11 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_BSLASH_DQUOTE] = anon_sym_BSLASH_DQUOTE, [aux_sym_latex_span_token1] = aux_sym_latex_span_token1, [aux_sym_latex_span_token2] = aux_sym_latex_span_token2, + [aux_sym_insert_token1] = aux_sym_insert_token1, + [aux_sym_insert_token2] = aux_sym_insert_token1, + [aux_sym_delete_token1] = aux_sym_delete_token1, + [aux_sym_highlight_token1] = aux_sym_highlight_token1, + [aux_sym_edit_comment_token1] = aux_sym_edit_comment_token1, [anon_sym_CARET_LBRACK] = anon_sym_CARET_LBRACK, [aux_sym_citation_token1] = aux_sym_citation_token1, [aux_sym_citation_token2] = aux_sym_citation_token1, @@ -523,6 +546,10 @@ static const TSSymbol ts_symbol_map[] = { [sym_key_value_value] = sym_key_value_value, [sym_code_span] = sym_code_span, [sym_latex_span] = sym_latex_span, + [sym_insert] = sym_insert, + [sym_delete] = sym_delete, + [sym_highlight] = sym_highlight, + [sym_edit_comment] = sym_edit_comment, [sym_superscript] = sym_superscript, [sym_subscript] = sym_subscript, [sym_strikeout] = sym_strikeout, @@ -583,7 +610,7 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym_key_value_value_repeat2] = aux_sym_key_value_value_repeat2, [aux_sym_code_span_repeat1] = aux_sym_code_span_repeat1, [aux_sym_latex_span_repeat1] = aux_sym_latex_span_repeat1, - [aux_sym_superscript_repeat1] = aux_sym_superscript_repeat1, + [aux_sym_insert_repeat1] = aux_sym_insert_repeat1, [aux_sym_shortcode_escaped_repeat1] = aux_sym_shortcode_escaped_repeat1, [aux_sym_shortcode_escaped_repeat2] = aux_sym_shortcode_escaped_repeat2, [aux_sym_inline_link_repeat1] = aux_sym_inline_link_repeat1, @@ -792,6 +819,26 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, + [aux_sym_insert_token1] = { + .visible = true, + .named = true, + }, + [aux_sym_insert_token2] = { + .visible = true, + .named = true, + }, + [aux_sym_delete_token1] = { + .visible = true, + .named = true, + }, + [aux_sym_highlight_token1] = { + .visible = true, + .named = true, + }, + [aux_sym_edit_comment_token1] = { + .visible = true, + .named = true, + }, [anon_sym_CARET_LBRACK] = { .visible = true, .named = true, @@ -1056,6 +1103,22 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_insert] = { + .visible = true, + .named = true, + }, + [sym_delete] = { + .visible = true, + .named = true, + }, + [sym_highlight] = { + .visible = true, + .named = true, + }, + [sym_edit_comment] = { + .visible = true, + .named = true, + }, [sym_superscript] = { .visible = true, .named = true, @@ -1296,7 +1359,7 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, - [aux_sym_superscript_repeat1] = { + [aux_sym_insert_repeat1] = { .visible = false, .named = false, }, @@ -1366,58 +1429,76 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [1] = alias_sym_citation_id_suppress_author, }, [4] = { - [1] = anon_sym_CARET_LBRACK, + [1] = aux_sym_delete_token1, }, [5] = { - [1] = alias_sym_code_content, + [1] = aux_sym_highlight_token1, }, [6] = { - [0] = sym__emphasis_close_star, + [1] = aux_sym_edit_comment_token1, }, [7] = { - [1] = alias_sym_latex_content, + [1] = anon_sym_CARET_LBRACK, }, [8] = { - [2] = sym__cite_author_in_text_with_open_bracket, + [1] = alias_sym_code_content, }, [9] = { + [0] = sym__emphasis_close_star, + }, + [10] = { + [1] = alias_sym_latex_content, + }, + [11] = { + [2] = sym__cite_author_in_text_with_open_bracket, + }, + [12] = { [1] = alias_sym_citation_id_suppress_author, [2] = sym__cite_author_in_text_with_open_bracket, }, - [10] = { + [13] = { [1] = alias_sym_link_text, }, - [11] = { + [14] = { + [2] = aux_sym_delete_token1, + }, + [15] = { + [2] = aux_sym_highlight_token1, + }, + [16] = { + [2] = aux_sym_edit_comment_token1, + }, + [17] = { [1] = anon_sym_CARET_LBRACK, [2] = anon_sym_CARET_LBRACK, }, - [12] = { + [18] = { [2] = anon_sym_CARET_LBRACK, }, - [13] = { + [19] = { [1] = alias_sym_note_reference_id, [2] = anon_sym_LBRACK_CARET, }, - [14] = { + [20] = { [2] = alias_sym_image_description, }, - [15] = { + [21] = { [1] = anon_sym_CARET_LBRACK, [2] = anon_sym_CARET_LBRACK, [3] = anon_sym_CARET_LBRACK, }, - [16] = { + [22] = { [1] = anon_sym_CARET_LBRACK, [3] = anon_sym_CARET_LBRACK, }, - [17] = { + [23] = { [2] = anon_sym_CARET_LBRACK, [3] = anon_sym_CARET_LBRACK, }, - [18] = { + [24] = { [1] = alias_sym_language, }, - [19] = { + [25] = { [1] = anon_sym_CARET_LBRACK, [3] = anon_sym_CARET_LBRACK, [4] = anon_sym_CARET_LBRACK, @@ -1466,29 +1547,29 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4] = 4, [5] = 5, [6] = 6, - [7] = 6, - [8] = 2, - [9] = 6, - [10] = 2, - [11] = 6, - [12] = 2, - [13] = 6, + [7] = 4, + [8] = 6, + [9] = 4, + [10] = 6, + [11] = 4, + [12] = 6, + [13] = 4, [14] = 6, - [15] = 2, + [15] = 4, [16] = 6, - [17] = 2, - [18] = 2, - [19] = 3, - [20] = 3, - [21] = 3, - [22] = 3, - [23] = 3, - [24] = 3, - [25] = 3, - [26] = 3, - [27] = 27, - [28] = 28, - [29] = 29, + [17] = 4, + [18] = 6, + [19] = 4, + [20] = 2, + [21] = 2, + [22] = 2, + [23] = 2, + [24] = 6, + [25] = 2, + [26] = 2, + [27] = 2, + [28] = 2, + [29] = 2, [30] = 30, [31] = 31, [32] = 32, @@ -1500,2013 +1581,2375 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [38] = 38, [39] = 39, [40] = 40, - [41] = 41, + [41] = 30, [42] = 42, [43] = 43, [44] = 44, [45] = 45, - [46] = 46, - [47] = 47, - [48] = 37, - [49] = 42, - [50] = 42, - [51] = 42, - [52] = 42, - [53] = 42, + [46] = 34, + [47] = 39, + [48] = 48, + [49] = 49, + [50] = 39, + [51] = 51, + [52] = 39, + [53] = 53, [54] = 54, - [55] = 27, + [55] = 39, [56] = 56, - [57] = 45, - [58] = 46, - [59] = 47, - [60] = 60, + [57] = 39, + [58] = 58, + [59] = 59, + [60] = 39, [61] = 61, - [62] = 29, - [63] = 30, - [64] = 31, - [65] = 32, - [66] = 33, - [67] = 35, - [68] = 36, - [69] = 38, - [70] = 40, - [71] = 44, - [72] = 27, - [73] = 56, - [74] = 45, - [75] = 46, - [76] = 47, - [77] = 60, - [78] = 61, - [79] = 29, - [80] = 30, - [81] = 31, - [82] = 32, - [83] = 33, - [84] = 35, - [85] = 36, - [86] = 38, - [87] = 40, - [88] = 44, - [89] = 27, - [90] = 56, - [91] = 45, - [92] = 46, - [93] = 47, - [94] = 94, - [95] = 60, - [96] = 61, - [97] = 29, - [98] = 30, - [99] = 31, - [100] = 32, - [101] = 33, - [102] = 35, - [103] = 36, - [104] = 38, - [105] = 40, - [106] = 44, - [107] = 27, - [108] = 56, - [109] = 45, - [110] = 46, - [111] = 47, - [112] = 60, - [113] = 61, - [114] = 29, - [115] = 30, - [116] = 31, - [117] = 32, - [118] = 33, - [119] = 35, - [120] = 61, - [121] = 38, - [122] = 40, - [123] = 44, - [124] = 27, - [125] = 56, - [126] = 45, - [127] = 46, - [128] = 47, - [129] = 60, - [130] = 61, - [131] = 29, - [132] = 30, - [133] = 31, - [134] = 32, - [135] = 33, - [136] = 35, - [137] = 36, - [138] = 38, - [139] = 40, - [140] = 44, - [141] = 27, - [142] = 56, - [143] = 45, - [144] = 46, - [145] = 47, - [146] = 60, - [147] = 60, - [148] = 61, - [149] = 29, - [150] = 30, - [151] = 31, - [152] = 32, - [153] = 33, - [154] = 35, - [155] = 36, - [156] = 38, - [157] = 40, - [158] = 44, - [159] = 27, - [160] = 56, - [161] = 45, - [162] = 46, - [163] = 47, - [164] = 56, - [165] = 60, - [166] = 61, - [167] = 29, - [168] = 30, - [169] = 31, - [170] = 32, - [171] = 33, - [172] = 35, - [173] = 36, - [174] = 38, - [175] = 40, - [176] = 44, - [177] = 27, - [178] = 56, - [179] = 45, - [180] = 46, - [181] = 47, - [182] = 182, - [183] = 60, - [184] = 61, - [185] = 29, - [186] = 30, - [187] = 31, - [188] = 32, - [189] = 33, - [190] = 35, - [191] = 36, - [192] = 38, - [193] = 40, - [194] = 44, - [195] = 36, - [196] = 196, - [197] = 197, - [198] = 197, - [199] = 199, - [200] = 199, - [201] = 197, - [202] = 199, - [203] = 197, - [204] = 199, - [205] = 197, - [206] = 199, - [207] = 197, - [208] = 199, - [209] = 197, - [210] = 199, - [211] = 197, - [212] = 199, - [213] = 197, - [214] = 199, - [215] = 215, - [216] = 216, - [217] = 217, - [218] = 218, - [219] = 219, - [220] = 220, - [221] = 221, - [222] = 222, - [223] = 223, - [224] = 224, - [225] = 225, - [226] = 226, - [227] = 219, - [228] = 228, - [229] = 221, - [230] = 224, - [231] = 231, - [232] = 226, - [233] = 222, - [234] = 226, - [235] = 219, - [236] = 228, - [237] = 224, - [238] = 222, - [239] = 226, - [240] = 222, - [241] = 226, - [242] = 222, - [243] = 226, - [244] = 222, - [245] = 222, - [246] = 246, - [247] = 226, - [248] = 222, - [249] = 226, - [250] = 222, - [251] = 228, - [252] = 226, - [253] = 221, - [254] = 254, - [255] = 255, - [256] = 254, - [257] = 255, - [258] = 254, - [259] = 255, - [260] = 260, - [261] = 261, - [262] = 261, - [263] = 260, - [264] = 260, - [265] = 261, - [266] = 261, - [267] = 260, - [268] = 260, - [269] = 260, - [270] = 261, - [271] = 261, - [272] = 261, - [273] = 260, - [274] = 261, - [275] = 260, - [276] = 260, - [277] = 261, - [278] = 278, - [279] = 278, - [280] = 280, - [281] = 281, - [282] = 282, - [283] = 283, - [284] = 284, - [285] = 285, - [286] = 280, - [287] = 287, - [288] = 288, - [289] = 289, - [290] = 290, - [291] = 291, - [292] = 292, - [293] = 293, - [294] = 281, - [295] = 282, - [296] = 283, - [297] = 287, - [298] = 288, - [299] = 289, - [300] = 290, - [301] = 291, - [302] = 292, - [303] = 284, - [304] = 285, - [305] = 293, - [306] = 280, - [307] = 287, - [308] = 288, - [309] = 289, - [310] = 310, - [311] = 311, - [312] = 290, - [313] = 310, - [314] = 311, - [315] = 291, - [316] = 292, - [317] = 293, - [318] = 281, + [62] = 56, + [63] = 59, + [64] = 30, + [65] = 42, + [66] = 44, + [67] = 45, + [68] = 48, + [69] = 49, + [70] = 51, + [71] = 71, + [72] = 58, + [73] = 71, + [74] = 74, + [75] = 75, + [76] = 76, + [77] = 77, + [78] = 78, + [79] = 79, + [80] = 80, + [81] = 81, + [82] = 31, + [83] = 32, + [84] = 33, + [85] = 35, + [86] = 37, + [87] = 43, + [88] = 56, + [89] = 59, + [90] = 30, + [91] = 42, + [92] = 44, + [93] = 45, + [94] = 48, + [95] = 49, + [96] = 51, + [97] = 97, + [98] = 58, + [99] = 71, + [100] = 74, + [101] = 75, + [102] = 76, + [103] = 77, + [104] = 78, + [105] = 79, + [106] = 80, + [107] = 81, + [108] = 31, + [109] = 32, + [110] = 33, + [111] = 35, + [112] = 37, + [113] = 43, + [114] = 56, + [115] = 59, + [116] = 30, + [117] = 42, + [118] = 44, + [119] = 45, + [120] = 48, + [121] = 49, + [122] = 51, + [123] = 74, + [124] = 58, + [125] = 71, + [126] = 74, + [127] = 75, + [128] = 76, + [129] = 77, + [130] = 78, + [131] = 79, + [132] = 80, + [133] = 81, + [134] = 31, + [135] = 32, + [136] = 33, + [137] = 35, + [138] = 37, + [139] = 43, + [140] = 56, + [141] = 59, + [142] = 30, + [143] = 42, + [144] = 44, + [145] = 45, + [146] = 48, + [147] = 49, + [148] = 51, + [149] = 75, + [150] = 58, + [151] = 71, + [152] = 74, + [153] = 75, + [154] = 76, + [155] = 77, + [156] = 78, + [157] = 79, + [158] = 80, + [159] = 81, + [160] = 31, + [161] = 32, + [162] = 33, + [163] = 35, + [164] = 37, + [165] = 43, + [166] = 56, + [167] = 59, + [168] = 76, + [169] = 42, + [170] = 44, + [171] = 45, + [172] = 48, + [173] = 49, + [174] = 51, + [175] = 77, + [176] = 58, + [177] = 71, + [178] = 74, + [179] = 75, + [180] = 76, + [181] = 77, + [182] = 78, + [183] = 81, + [184] = 80, + [185] = 81, + [186] = 31, + [187] = 32, + [188] = 33, + [189] = 35, + [190] = 37, + [191] = 43, + [192] = 56, + [193] = 59, + [194] = 30, + [195] = 42, + [196] = 44, + [197] = 45, + [198] = 48, + [199] = 49, + [200] = 51, + [201] = 78, + [202] = 58, + [203] = 71, + [204] = 74, + [205] = 75, + [206] = 76, + [207] = 77, + [208] = 78, + [209] = 79, + [210] = 80, + [211] = 81, + [212] = 31, + [213] = 32, + [214] = 33, + [215] = 35, + [216] = 37, + [217] = 43, + [218] = 56, + [219] = 59, + [220] = 30, + [221] = 42, + [222] = 44, + [223] = 45, + [224] = 48, + [225] = 49, + [226] = 51, + [227] = 227, + [228] = 58, + [229] = 71, + [230] = 74, + [231] = 75, + [232] = 76, + [233] = 77, + [234] = 78, + [235] = 79, + [236] = 80, + [237] = 81, + [238] = 31, + [239] = 32, + [240] = 33, + [241] = 35, + [242] = 37, + [243] = 43, + [244] = 56, + [245] = 59, + [246] = 30, + [247] = 42, + [248] = 44, + [249] = 45, + [250] = 48, + [251] = 49, + [252] = 51, + [253] = 79, + [254] = 58, + [255] = 71, + [256] = 74, + [257] = 75, + [258] = 76, + [259] = 77, + [260] = 78, + [261] = 79, + [262] = 80, + [263] = 81, + [264] = 31, + [265] = 32, + [266] = 33, + [267] = 35, + [268] = 37, + [269] = 43, + [270] = 56, + [271] = 59, + [272] = 30, + [273] = 42, + [274] = 44, + [275] = 45, + [276] = 48, + [277] = 49, + [278] = 51, + [279] = 80, + [280] = 58, + [281] = 71, + [282] = 74, + [283] = 75, + [284] = 76, + [285] = 77, + [286] = 78, + [287] = 79, + [288] = 80, + [289] = 81, + [290] = 31, + [291] = 32, + [292] = 33, + [293] = 35, + [294] = 37, + [295] = 43, + [296] = 79, + [297] = 297, + [298] = 298, + [299] = 299, + [300] = 297, + [301] = 299, + [302] = 297, + [303] = 299, + [304] = 297, + [305] = 299, + [306] = 297, + [307] = 299, + [308] = 297, + [309] = 299, + [310] = 297, + [311] = 299, + [312] = 297, + [313] = 299, + [314] = 297, + [315] = 299, + [316] = 297, + [317] = 299, + [318] = 318, [319] = 319, - [320] = 278, - [321] = 319, - [322] = 310, - [323] = 311, - [324] = 282, - [325] = 281, - [326] = 319, - [327] = 278, - [328] = 282, - [329] = 283, - [330] = 284, - [331] = 285, - [332] = 280, - [333] = 287, - [334] = 281, - [335] = 278, - [336] = 282, - [337] = 288, - [338] = 283, - [339] = 284, - [340] = 285, - [341] = 280, - [342] = 287, - [343] = 288, - [344] = 289, - [345] = 289, - [346] = 290, - [347] = 291, - [348] = 292, - [349] = 293, - [350] = 290, - [351] = 310, - [352] = 311, - [353] = 291, - [354] = 319, - [355] = 278, - [356] = 292, - [357] = 293, - [358] = 281, - [359] = 310, - [360] = 282, - [361] = 283, - [362] = 319, - [363] = 285, - [364] = 311, - [365] = 280, - [366] = 287, - [367] = 288, - [368] = 289, - [369] = 290, - [370] = 291, - [371] = 292, - [372] = 293, - [373] = 283, - [374] = 319, - [375] = 310, - [376] = 311, - [377] = 278, - [378] = 284, - [379] = 319, - [380] = 278, - [381] = 281, - [382] = 281, - [383] = 282, - [384] = 283, - [385] = 282, - [386] = 283, - [387] = 284, - [388] = 285, - [389] = 280, - [390] = 287, - [391] = 288, - [392] = 289, - [393] = 284, - [394] = 290, - [395] = 291, - [396] = 292, - [397] = 293, - [398] = 285, - [399] = 280, - [400] = 319, - [401] = 310, - [402] = 311, - [403] = 287, - [404] = 319, - [405] = 278, - [406] = 288, - [407] = 289, - [408] = 281, - [409] = 290, - [410] = 282, - [411] = 283, - [412] = 291, - [413] = 284, - [414] = 285, - [415] = 280, - [416] = 287, - [417] = 288, - [418] = 289, - [419] = 290, - [420] = 292, - [421] = 293, - [422] = 291, - [423] = 292, - [424] = 310, - [425] = 311, - [426] = 293, - [427] = 310, - [428] = 311, - [429] = 285, - [430] = 284, - [431] = 431, - [432] = 431, - [433] = 433, - [434] = 433, - [435] = 431, - [436] = 433, - [437] = 433, - [438] = 433, - [439] = 431, - [440] = 431, - [441] = 433, - [442] = 433, - [443] = 431, - [444] = 431, - [445] = 433, - [446] = 431, - [447] = 433, - [448] = 431, - [449] = 449, - [450] = 450, - [451] = 451, - [452] = 452, - [453] = 453, - [454] = 452, - [455] = 455, - [456] = 453, - [457] = 451, - [458] = 458, - [459] = 459, - [460] = 459, - [461] = 451, - [462] = 455, - [463] = 451, - [464] = 459, - [465] = 450, - [466] = 458, - [467] = 455, - [468] = 449, - [469] = 450, - [470] = 449, - [471] = 458, - [472] = 453, - [473] = 451, - [474] = 455, - [475] = 451, - [476] = 458, - [477] = 458, - [478] = 455, - [479] = 459, - [480] = 451, - [481] = 455, - [482] = 450, - [483] = 458, - [484] = 458, - [485] = 459, - [486] = 449, - [487] = 449, - [488] = 458, - [489] = 450, - [490] = 452, - [491] = 453, - [492] = 459, - [493] = 452, - [494] = 459, - [495] = 452, - [496] = 450, - [497] = 453, - [498] = 450, - [499] = 449, - [500] = 459, - [501] = 452, - [502] = 453, - [503] = 453, - [504] = 452, - [505] = 459, - [506] = 453, - [507] = 451, - [508] = 455, - [509] = 458, - [510] = 449, - [511] = 449, - [512] = 451, - [513] = 455, - [514] = 455, - [515] = 453, - [516] = 449, - [517] = 452, - [518] = 450, - [519] = 452, - [520] = 450, - [521] = 521, - [522] = 522, - [523] = 523, - [524] = 524, - [525] = 525, - [526] = 526, - [527] = 527, - [528] = 523, - [529] = 529, - [530] = 530, - [531] = 531, - [532] = 532, - [533] = 533, - [534] = 534, - [535] = 535, - [536] = 536, - [537] = 537, - [538] = 538, - [539] = 539, - [540] = 536, - [541] = 541, - [542] = 542, - [543] = 543, - [544] = 544, - [545] = 545, - [546] = 546, - [547] = 547, - [548] = 548, - [549] = 549, - [550] = 550, - [551] = 551, - [552] = 552, - [553] = 553, - [554] = 554, + [320] = 320, + [321] = 321, + [322] = 322, + [323] = 323, + [324] = 324, + [325] = 325, + [326] = 322, + [327] = 327, + [328] = 328, + [329] = 323, + [330] = 330, + [331] = 325, + [332] = 324, + [333] = 333, + [334] = 322, + [335] = 324, + [336] = 336, + [337] = 325, + [338] = 323, + [339] = 327, + [340] = 328, + [341] = 323, + [342] = 327, + [343] = 343, + [344] = 328, + [345] = 345, + [346] = 324, + [347] = 323, + [348] = 324, + [349] = 323, + [350] = 324, + [351] = 323, + [352] = 324, + [353] = 323, + [354] = 324, + [355] = 323, + [356] = 324, + [357] = 323, + [358] = 324, + [359] = 359, + [360] = 360, + [361] = 359, + [362] = 359, + [363] = 360, + [364] = 360, + [365] = 365, + [366] = 365, + [367] = 365, + [368] = 368, + [369] = 368, + [370] = 365, + [371] = 368, + [372] = 365, + [373] = 365, + [374] = 368, + [375] = 365, + [376] = 368, + [377] = 365, + [378] = 368, + [379] = 365, + [380] = 368, + [381] = 368, + [382] = 368, + [383] = 365, + [384] = 368, + [385] = 385, + [386] = 386, + [387] = 385, + [388] = 388, + [389] = 389, + [390] = 390, + [391] = 391, + [392] = 392, + [393] = 393, + [394] = 394, + [395] = 395, + [396] = 396, + [397] = 397, + [398] = 398, + [399] = 399, + [400] = 386, + [401] = 401, + [402] = 399, + [403] = 403, + [404] = 404, + [405] = 393, + [406] = 394, + [407] = 397, + [408] = 386, + [409] = 385, + [410] = 388, + [411] = 389, + [412] = 390, + [413] = 391, + [414] = 392, + [415] = 385, + [416] = 395, + [417] = 396, + [418] = 388, + [419] = 398, + [420] = 399, + [421] = 389, + [422] = 401, + [423] = 403, + [424] = 404, + [425] = 393, + [426] = 394, + [427] = 397, + [428] = 386, + [429] = 385, + [430] = 388, + [431] = 389, + [432] = 390, + [433] = 391, + [434] = 392, + [435] = 395, + [436] = 396, + [437] = 390, + [438] = 398, + [439] = 399, + [440] = 391, + [441] = 401, + [442] = 403, + [443] = 404, + [444] = 393, + [445] = 394, + [446] = 397, + [447] = 386, + [448] = 385, + [449] = 388, + [450] = 389, + [451] = 390, + [452] = 391, + [453] = 392, + [454] = 395, + [455] = 396, + [456] = 392, + [457] = 398, + [458] = 399, + [459] = 401, + [460] = 403, + [461] = 404, + [462] = 393, + [463] = 394, + [464] = 397, + [465] = 386, + [466] = 401, + [467] = 388, + [468] = 389, + [469] = 390, + [470] = 391, + [471] = 392, + [472] = 395, + [473] = 396, + [474] = 398, + [475] = 399, + [476] = 401, + [477] = 403, + [478] = 404, + [479] = 393, + [480] = 394, + [481] = 397, + [482] = 385, + [483] = 388, + [484] = 389, + [485] = 390, + [486] = 391, + [487] = 392, + [488] = 398, + [489] = 401, + [490] = 395, + [491] = 396, + [492] = 398, + [493] = 399, + [494] = 403, + [495] = 401, + [496] = 395, + [497] = 403, + [498] = 404, + [499] = 393, + [500] = 394, + [501] = 397, + [502] = 386, + [503] = 385, + [504] = 388, + [505] = 403, + [506] = 389, + [507] = 404, + [508] = 390, + [509] = 391, + [510] = 392, + [511] = 393, + [512] = 394, + [513] = 397, + [514] = 386, + [515] = 385, + [516] = 388, + [517] = 389, + [518] = 390, + [519] = 391, + [520] = 392, + [521] = 396, + [522] = 395, + [523] = 396, + [524] = 398, + [525] = 395, + [526] = 399, + [527] = 396, + [528] = 404, + [529] = 401, + [530] = 398, + [531] = 399, + [532] = 403, + [533] = 404, + [534] = 393, + [535] = 394, + [536] = 397, + [537] = 386, + [538] = 385, + [539] = 388, + [540] = 401, + [541] = 389, + [542] = 390, + [543] = 391, + [544] = 392, + [545] = 395, + [546] = 396, + [547] = 403, + [548] = 398, + [549] = 399, + [550] = 404, + [551] = 393, + [552] = 394, + [553] = 397, + [554] = 386, [555] = 555, [556] = 556, - [557] = 557, - [558] = 541, - [559] = 524, - [560] = 560, - [561] = 561, - [562] = 562, - [563] = 563, - [564] = 564, - [565] = 565, - [566] = 566, - [567] = 567, - [568] = 568, - [569] = 521, - [570] = 542, - [571] = 571, - [572] = 543, - [573] = 573, - [574] = 574, + [557] = 555, + [558] = 555, + [559] = 556, + [560] = 556, + [561] = 555, + [562] = 556, + [563] = 555, + [564] = 556, + [565] = 555, + [566] = 556, + [567] = 555, + [568] = 556, + [569] = 556, + [570] = 555, + [571] = 556, + [572] = 556, + [573] = 555, + [574] = 555, [575] = 575, - [576] = 576, + [576] = 575, [577] = 577, [578] = 578, - [579] = 579, - [580] = 580, - [581] = 545, - [582] = 582, + [579] = 577, + [580] = 578, + [581] = 575, + [582] = 577, [583] = 583, - [584] = 584, + [584] = 583, [585] = 585, [586] = 586, - [587] = 579, - [588] = 588, - [589] = 546, + [587] = 585, + [588] = 583, + [589] = 586, [590] = 590, [591] = 591, - [592] = 592, - [593] = 547, - [594] = 594, - [595] = 595, - [596] = 532, - [597] = 597, - [598] = 538, - [599] = 599, - [600] = 554, - [601] = 556, - [602] = 602, - [603] = 548, - [604] = 565, - [605] = 549, - [606] = 606, - [607] = 607, - [608] = 522, - [609] = 523, - [610] = 579, - [611] = 524, - [612] = 525, - [613] = 595, - [614] = 597, - [615] = 602, - [616] = 526, - [617] = 527, - [618] = 606, - [619] = 607, - [620] = 522, - [621] = 523, - [622] = 524, - [623] = 525, - [624] = 526, - [625] = 527, - [626] = 550, - [627] = 529, - [628] = 530, - [629] = 529, - [630] = 533, - [631] = 534, - [632] = 535, - [633] = 530, - [634] = 537, - [635] = 525, - [636] = 539, - [637] = 536, - [638] = 541, - [639] = 542, - [640] = 543, - [641] = 534, - [642] = 545, - [643] = 546, - [644] = 547, - [645] = 548, - [646] = 549, - [647] = 550, - [648] = 551, - [649] = 552, - [650] = 553, - [651] = 535, - [652] = 555, - [653] = 526, - [654] = 557, - [655] = 527, - [656] = 537, - [657] = 560, - [658] = 561, - [659] = 562, - [660] = 563, - [661] = 564, - [662] = 595, - [663] = 566, - [664] = 567, - [665] = 568, - [666] = 521, - [667] = 539, - [668] = 571, - [669] = 536, - [670] = 573, - [671] = 574, - [672] = 575, - [673] = 576, - [674] = 577, - [675] = 578, - [676] = 541, - [677] = 580, - [678] = 542, - [679] = 582, - [680] = 583, - [681] = 584, - [682] = 585, - [683] = 586, - [684] = 543, - [685] = 588, - [686] = 590, - [687] = 591, - [688] = 592, - [689] = 545, - [690] = 594, - [691] = 546, - [692] = 532, - [693] = 547, - [694] = 538, - [695] = 548, - [696] = 554, - [697] = 556, - [698] = 549, - [699] = 550, - [700] = 565, - [701] = 551, - [702] = 552, - [703] = 553, - [704] = 555, - [705] = 579, - [706] = 557, - [707] = 597, - [708] = 595, - [709] = 597, - [710] = 602, + [592] = 590, + [593] = 578, + [594] = 590, + [595] = 585, + [596] = 583, + [597] = 583, + [598] = 586, + [599] = 578, + [600] = 583, + [601] = 586, + [602] = 590, + [603] = 575, + [604] = 591, + [605] = 578, + [606] = 586, + [607] = 591, + [608] = 590, + [609] = 577, + [610] = 577, + [611] = 575, + [612] = 578, + [613] = 591, + [614] = 585, + [615] = 585, + [616] = 577, + [617] = 575, + [618] = 577, + [619] = 575, + [620] = 575, + [621] = 585, + [622] = 578, + [623] = 577, + [624] = 583, + [625] = 586, + [626] = 585, + [627] = 585, + [628] = 590, + [629] = 577, + [630] = 590, + [631] = 591, + [632] = 590, + [633] = 591, + [634] = 578, + [635] = 583, + [636] = 575, + [637] = 586, + [638] = 585, + [639] = 590, + [640] = 591, + [641] = 591, + [642] = 591, + [643] = 590, + [644] = 577, + [645] = 583, + [646] = 586, + [647] = 578, + [648] = 575, + [649] = 585, + [650] = 591, + [651] = 583, + [652] = 578, + [653] = 586, + [654] = 586, + [655] = 655, + [656] = 656, + [657] = 657, + [658] = 658, + [659] = 659, + [660] = 660, + [661] = 661, + [662] = 662, + [663] = 663, + [664] = 664, + [665] = 665, + [666] = 666, + [667] = 667, + [668] = 665, + [669] = 669, + [670] = 670, + [671] = 671, + [672] = 672, + [673] = 673, + [674] = 674, + [675] = 675, + [676] = 676, + [677] = 677, + [678] = 678, + [679] = 655, + [680] = 680, + [681] = 681, + [682] = 682, + [683] = 683, + [684] = 684, + [685] = 666, + [686] = 686, + [687] = 687, + [688] = 688, + [689] = 689, + [690] = 690, + [691] = 667, + [692] = 692, + [693] = 693, + [694] = 694, + [695] = 695, + [696] = 696, + [697] = 697, + [698] = 698, + [699] = 699, + [700] = 700, + [701] = 701, + [702] = 702, + [703] = 703, + [704] = 704, + [705] = 705, + [706] = 706, + [707] = 707, + [708] = 708, + [709] = 709, + [710] = 710, [711] = 711, - [712] = 560, - [713] = 606, - [714] = 607, - [715] = 522, - [716] = 523, - [717] = 524, - [718] = 525, - [719] = 526, - [720] = 527, - [721] = 561, - [722] = 529, - [723] = 530, - [724] = 531, - [725] = 562, - [726] = 533, - [727] = 534, - [728] = 535, - [729] = 537, - [730] = 539, - [731] = 536, - [732] = 541, - [733] = 542, - [734] = 543, - [735] = 545, - [736] = 546, - [737] = 547, - [738] = 548, - [739] = 549, - [740] = 550, - [741] = 551, - [742] = 552, - [743] = 553, - [744] = 555, - [745] = 557, - [746] = 563, - [747] = 564, - [748] = 560, - [749] = 561, - [750] = 562, - [751] = 563, - [752] = 564, - [753] = 566, - [754] = 567, - [755] = 568, - [756] = 566, - [757] = 567, - [758] = 571, - [759] = 568, - [760] = 573, - [761] = 574, - [762] = 575, - [763] = 576, - [764] = 577, - [765] = 578, - [766] = 521, - [767] = 580, - [768] = 768, - [769] = 582, - [770] = 583, - [771] = 584, - [772] = 585, - [773] = 586, - [774] = 571, - [775] = 588, - [776] = 590, - [777] = 591, - [778] = 592, - [779] = 573, - [780] = 594, - [781] = 574, - [782] = 532, - [783] = 538, - [784] = 554, - [785] = 556, - [786] = 565, - [787] = 575, - [788] = 576, - [789] = 577, - [790] = 578, - [791] = 580, - [792] = 579, - [793] = 551, - [794] = 582, - [795] = 595, - [796] = 597, - [797] = 583, - [798] = 584, - [799] = 606, - [800] = 607, - [801] = 522, - [802] = 523, - [803] = 524, - [804] = 525, - [805] = 526, - [806] = 527, - [807] = 585, - [808] = 529, - [809] = 530, - [810] = 531, - [811] = 586, - [812] = 533, - [813] = 534, - [814] = 535, - [815] = 552, - [816] = 537, - [817] = 588, - [818] = 539, - [819] = 536, - [820] = 541, - [821] = 542, - [822] = 543, - [823] = 545, - [824] = 546, - [825] = 547, - [826] = 548, - [827] = 549, - [828] = 550, - [829] = 551, - [830] = 552, - [831] = 553, - [832] = 555, - [833] = 590, - [834] = 557, - [835] = 591, - [836] = 592, - [837] = 560, - [838] = 561, - [839] = 562, - [840] = 563, - [841] = 564, - [842] = 553, - [843] = 566, - [844] = 567, - [845] = 568, - [846] = 521, - [847] = 594, - [848] = 571, - [849] = 529, - [850] = 573, - [851] = 574, - [852] = 575, - [853] = 576, - [854] = 577, - [855] = 578, - [856] = 532, - [857] = 580, - [858] = 530, - [859] = 582, - [860] = 583, - [861] = 584, - [862] = 585, - [863] = 586, - [864] = 538, - [865] = 588, - [866] = 555, - [867] = 590, - [868] = 591, - [869] = 592, - [870] = 554, - [871] = 594, - [872] = 556, - [873] = 532, - [874] = 531, - [875] = 538, - [876] = 557, - [877] = 554, - [878] = 556, - [879] = 565, - [880] = 565, - [881] = 579, - [882] = 579, - [883] = 595, - [884] = 597, - [885] = 599, - [886] = 606, - [887] = 607, - [888] = 522, - [889] = 523, - [890] = 524, - [891] = 525, - [892] = 526, - [893] = 527, - [894] = 595, - [895] = 529, - [896] = 530, - [897] = 531, - [898] = 597, - [899] = 533, - [900] = 534, - [901] = 535, - [902] = 602, - [903] = 537, - [904] = 606, - [905] = 539, - [906] = 536, - [907] = 541, - [908] = 542, - [909] = 543, - [910] = 545, - [911] = 546, - [912] = 547, - [913] = 549, - [914] = 550, - [915] = 551, - [916] = 552, - [917] = 553, - [918] = 555, - [919] = 606, - [920] = 557, - [921] = 607, - [922] = 522, - [923] = 560, - [924] = 561, - [925] = 562, - [926] = 563, - [927] = 564, - [928] = 523, - [929] = 566, - [930] = 567, - [931] = 568, - [932] = 521, - [933] = 524, - [934] = 571, - [935] = 525, - [936] = 573, - [937] = 574, - [938] = 575, - [939] = 576, - [940] = 577, - [941] = 578, - [942] = 526, - [943] = 580, - [944] = 527, - [945] = 582, - [946] = 583, - [947] = 584, - [948] = 585, - [949] = 586, - [950] = 560, - [951] = 588, - [952] = 529, - [953] = 590, - [954] = 591, - [955] = 592, - [956] = 530, - [957] = 594, - [958] = 531, - [959] = 532, - [960] = 561, - [961] = 538, - [962] = 533, - [963] = 554, - [964] = 556, - [965] = 565, - [966] = 534, - [967] = 531, - [968] = 535, - [969] = 562, - [970] = 531, - [971] = 533, - [972] = 537, - [973] = 565, - [974] = 539, - [975] = 536, - [976] = 541, - [977] = 542, - [978] = 543, - [979] = 979, - [980] = 545, - [981] = 768, - [982] = 546, - [983] = 547, - [984] = 548, - [985] = 549, - [986] = 550, - [987] = 551, - [988] = 552, - [989] = 553, - [990] = 533, - [991] = 555, - [992] = 557, - [993] = 560, - [994] = 561, - [995] = 562, - [996] = 563, - [997] = 564, - [998] = 979, - [999] = 534, - [1000] = 768, - [1001] = 566, - [1002] = 567, - [1003] = 568, - [1004] = 521, - [1005] = 571, - [1006] = 563, - [1007] = 573, - [1008] = 574, - [1009] = 575, - [1010] = 576, - [1011] = 577, - [1012] = 578, - [1013] = 564, - [1014] = 580, - [1015] = 535, - [1016] = 582, - [1017] = 583, - [1018] = 584, - [1019] = 585, - [1020] = 586, - [1021] = 979, - [1022] = 566, - [1023] = 768, - [1024] = 588, - [1025] = 567, - [1026] = 590, - [1027] = 591, - [1028] = 592, - [1029] = 568, - [1030] = 594, - [1031] = 532, - [1032] = 538, - [1033] = 554, - [1034] = 556, - [1035] = 565, - [1036] = 979, - [1037] = 768, - [1038] = 521, - [1039] = 607, - [1040] = 579, - [1041] = 571, - [1042] = 595, - [1043] = 597, - [1044] = 602, - [1045] = 522, - [1046] = 573, - [1047] = 606, - [1048] = 607, - [1049] = 522, - [1050] = 523, - [1051] = 524, - [1052] = 525, - [1053] = 526, - [1054] = 527, - [1055] = 979, - [1056] = 574, - [1057] = 768, - [1058] = 529, - [1059] = 530, - [1060] = 531, - [1061] = 533, - [1062] = 534, - [1063] = 535, - [1064] = 537, - [1065] = 575, - [1066] = 539, - [1067] = 536, - [1068] = 541, - [1069] = 542, - [1070] = 543, - [1071] = 576, - [1072] = 545, - [1073] = 546, - [1074] = 547, - [1075] = 979, - [1076] = 548, - [1077] = 768, - [1078] = 549, - [1079] = 550, - [1080] = 551, - [1081] = 552, - [1082] = 553, - [1083] = 577, - [1084] = 555, - [1085] = 557, - [1086] = 560, - [1087] = 561, - [1088] = 562, - [1089] = 563, - [1090] = 564, - [1091] = 566, - [1092] = 567, - [1093] = 979, - [1094] = 568, - [1095] = 768, - [1096] = 521, - [1097] = 571, - [1098] = 573, - [1099] = 574, - [1100] = 575, - [1101] = 576, - [1102] = 577, - [1103] = 578, - [1104] = 578, - [1105] = 580, - [1106] = 582, - [1107] = 583, - [1108] = 584, - [1109] = 585, - [1110] = 586, - [1111] = 979, - [1112] = 588, - [1113] = 768, - [1114] = 590, - [1115] = 591, - [1116] = 592, - [1117] = 537, - [1118] = 594, - [1119] = 580, - [1120] = 532, - [1121] = 602, - [1122] = 538, - [1123] = 582, - [1124] = 554, - [1125] = 556, - [1126] = 583, - [1127] = 584, - [1128] = 585, - [1129] = 586, - [1130] = 588, - [1131] = 979, - [1132] = 590, - [1133] = 579, - [1134] = 591, - [1135] = 592, - [1136] = 595, - [1137] = 597, - [1138] = 602, - [1139] = 539, - [1140] = 594, - [1141] = 606, - [1142] = 607, - [1143] = 548, - [1144] = 1144, - [1145] = 1145, - [1146] = 1146, + [712] = 712, + [713] = 713, + [714] = 714, + [715] = 715, + [716] = 716, + [717] = 717, + [718] = 718, + [719] = 719, + [720] = 720, + [721] = 721, + [722] = 704, + [723] = 723, + [724] = 724, + [725] = 725, + [726] = 701, + [727] = 727, + [728] = 728, + [729] = 729, + [730] = 656, + [731] = 657, + [732] = 663, + [733] = 733, + [734] = 670, + [735] = 677, + [736] = 655, + [737] = 737, + [738] = 687, + [739] = 739, + [740] = 693, + [741] = 695, + [742] = 697, + [743] = 700, + [744] = 703, + [745] = 727, + [746] = 705, + [747] = 706, + [748] = 707, + [749] = 708, + [750] = 710, + [751] = 711, + [752] = 715, + [753] = 716, + [754] = 725, + [755] = 733, + [756] = 737, + [757] = 739, + [758] = 758, + [759] = 758, + [760] = 760, + [761] = 710, + [762] = 762, + [763] = 760, + [764] = 669, + [765] = 658, + [766] = 659, + [767] = 660, + [768] = 661, + [769] = 662, + [770] = 762, + [771] = 664, + [772] = 665, + [773] = 666, + [774] = 667, + [775] = 711, + [776] = 669, + [777] = 671, + [778] = 671, + [779] = 672, + [780] = 673, + [781] = 674, + [782] = 675, + [783] = 676, + [784] = 658, + [785] = 678, + [786] = 659, + [787] = 680, + [788] = 681, + [789] = 682, + [790] = 683, + [791] = 684, + [792] = 660, + [793] = 686, + [794] = 661, + [795] = 688, + [796] = 689, + [797] = 690, + [798] = 662, + [799] = 692, + [800] = 672, + [801] = 694, + [802] = 664, + [803] = 696, + [804] = 665, + [805] = 698, + [806] = 699, + [807] = 728, + [808] = 729, + [809] = 702, + [810] = 666, + [811] = 667, + [812] = 673, + [813] = 669, + [814] = 674, + [815] = 671, + [816] = 709, + [817] = 672, + [818] = 673, + [819] = 712, + [820] = 713, + [821] = 714, + [822] = 674, + [823] = 675, + [824] = 717, + [825] = 718, + [826] = 719, + [827] = 720, + [828] = 721, + [829] = 704, + [830] = 723, + [831] = 724, + [832] = 676, + [833] = 701, + [834] = 727, + [835] = 728, + [836] = 729, + [837] = 656, + [838] = 657, + [839] = 663, + [840] = 675, + [841] = 670, + [842] = 677, + [843] = 655, + [844] = 678, + [845] = 687, + [846] = 676, + [847] = 693, + [848] = 695, + [849] = 697, + [850] = 700, + [851] = 703, + [852] = 705, + [853] = 706, + [854] = 707, + [855] = 708, + [856] = 710, + [857] = 711, + [858] = 715, + [859] = 716, + [860] = 725, + [861] = 733, + [862] = 737, + [863] = 739, + [864] = 758, + [865] = 680, + [866] = 760, + [867] = 681, + [868] = 762, + [869] = 682, + [870] = 683, + [871] = 658, + [872] = 659, + [873] = 660, + [874] = 661, + [875] = 662, + [876] = 684, + [877] = 664, + [878] = 665, + [879] = 666, + [880] = 667, + [881] = 715, + [882] = 669, + [883] = 686, + [884] = 671, + [885] = 672, + [886] = 673, + [887] = 674, + [888] = 675, + [889] = 676, + [890] = 678, + [891] = 678, + [892] = 688, + [893] = 680, + [894] = 681, + [895] = 682, + [896] = 683, + [897] = 684, + [898] = 689, + [899] = 686, + [900] = 690, + [901] = 688, + [902] = 689, + [903] = 690, + [904] = 716, + [905] = 692, + [906] = 692, + [907] = 694, + [908] = 680, + [909] = 696, + [910] = 694, + [911] = 698, + [912] = 699, + [913] = 702, + [914] = 681, + [915] = 696, + [916] = 682, + [917] = 698, + [918] = 699, + [919] = 723, + [920] = 709, + [921] = 724, + [922] = 683, + [923] = 712, + [924] = 713, + [925] = 684, + [926] = 725, + [927] = 717, + [928] = 718, + [929] = 719, + [930] = 720, + [931] = 721, + [932] = 704, + [933] = 723, + [934] = 724, + [935] = 686, + [936] = 701, + [937] = 727, + [938] = 728, + [939] = 729, + [940] = 656, + [941] = 657, + [942] = 663, + [943] = 733, + [944] = 670, + [945] = 677, + [946] = 700, + [947] = 688, + [948] = 687, + [949] = 709, + [950] = 693, + [951] = 695, + [952] = 697, + [953] = 700, + [954] = 703, + [955] = 705, + [956] = 706, + [957] = 707, + [958] = 708, + [959] = 710, + [960] = 711, + [961] = 715, + [962] = 716, + [963] = 725, + [964] = 733, + [965] = 737, + [966] = 739, + [967] = 758, + [968] = 689, + [969] = 760, + [970] = 690, + [971] = 762, + [972] = 712, + [973] = 713, + [974] = 658, + [975] = 659, + [976] = 660, + [977] = 661, + [978] = 662, + [979] = 714, + [980] = 664, + [981] = 665, + [982] = 666, + [983] = 667, + [984] = 737, + [985] = 669, + [986] = 692, + [987] = 671, + [988] = 672, + [989] = 673, + [990] = 674, + [991] = 675, + [992] = 676, + [993] = 717, + [994] = 678, + [995] = 718, + [996] = 680, + [997] = 681, + [998] = 682, + [999] = 683, + [1000] = 684, + [1001] = 719, + [1002] = 686, + [1003] = 720, + [1004] = 688, + [1005] = 689, + [1006] = 690, + [1007] = 721, + [1008] = 692, + [1009] = 704, + [1010] = 694, + [1011] = 723, + [1012] = 696, + [1013] = 724, + [1014] = 698, + [1015] = 699, + [1016] = 702, + [1017] = 739, + [1018] = 701, + [1019] = 727, + [1020] = 728, + [1021] = 729, + [1022] = 709, + [1023] = 656, + [1024] = 657, + [1025] = 712, + [1026] = 713, + [1027] = 663, + [1028] = 694, + [1029] = 717, + [1030] = 718, + [1031] = 719, + [1032] = 720, + [1033] = 721, + [1034] = 704, + [1035] = 723, + [1036] = 724, + [1037] = 670, + [1038] = 701, + [1039] = 727, + [1040] = 728, + [1041] = 729, + [1042] = 656, + [1043] = 657, + [1044] = 663, + [1045] = 677, + [1046] = 677, + [1047] = 655, + [1048] = 655, + [1049] = 687, + [1050] = 758, + [1051] = 693, + [1052] = 695, + [1053] = 697, + [1054] = 700, + [1055] = 703, + [1056] = 705, + [1057] = 706, + [1058] = 707, + [1059] = 708, + [1060] = 710, + [1061] = 711, + [1062] = 715, + [1063] = 716, + [1064] = 725, + [1065] = 733, + [1066] = 737, + [1067] = 739, + [1068] = 758, + [1069] = 687, + [1070] = 760, + [1071] = 696, + [1072] = 762, + [1073] = 693, + [1074] = 695, + [1075] = 658, + [1076] = 659, + [1077] = 660, + [1078] = 661, + [1079] = 662, + [1080] = 697, + [1081] = 664, + [1082] = 665, + [1083] = 666, + [1084] = 667, + [1085] = 700, + [1086] = 669, + [1087] = 703, + [1088] = 671, + [1089] = 672, + [1090] = 673, + [1091] = 703, + [1092] = 675, + [1093] = 676, + [1094] = 714, + [1095] = 678, + [1096] = 705, + [1097] = 680, + [1098] = 681, + [1099] = 682, + [1100] = 683, + [1101] = 684, + [1102] = 706, + [1103] = 686, + [1104] = 707, + [1105] = 688, + [1106] = 689, + [1107] = 690, + [1108] = 708, + [1109] = 692, + [1110] = 710, + [1111] = 694, + [1112] = 711, + [1113] = 696, + [1114] = 715, + [1115] = 698, + [1116] = 699, + [1117] = 702, + [1118] = 716, + [1119] = 725, + [1120] = 728, + [1121] = 670, + [1122] = 733, + [1123] = 737, + [1124] = 728, + [1125] = 670, + [1126] = 739, + [1127] = 656, + [1128] = 758, + [1129] = 657, + [1130] = 702, + [1131] = 1131, + [1132] = 663, + [1133] = 760, + [1134] = 698, + [1135] = 762, + [1136] = 699, + [1137] = 670, + [1138] = 1138, + [1139] = 677, + [1140] = 1140, + [1141] = 655, + [1142] = 1138, + [1143] = 721, + [1144] = 687, + [1145] = 658, + [1146] = 659, [1147] = 1147, - [1148] = 1148, - [1149] = 1149, - [1150] = 1150, - [1151] = 1147, - [1152] = 1150, - [1153] = 1148, - [1154] = 1146, - [1155] = 1150, - [1156] = 1156, - [1157] = 1146, - [1158] = 1149, - [1159] = 1156, - [1160] = 1160, - [1161] = 1148, - [1162] = 1156, - [1163] = 1160, - [1164] = 1164, - [1165] = 1147, - [1166] = 1149, - [1167] = 1164, - [1168] = 1160, - [1169] = 1169, - [1170] = 1170, - [1171] = 1164, - [1172] = 1172, - [1173] = 1173, - [1174] = 1174, - [1175] = 1172, - [1176] = 1173, - [1177] = 1177, - [1178] = 1174, - [1179] = 1177, - [1180] = 1177, - [1181] = 1174, - [1182] = 1173, - [1183] = 1174, - [1184] = 1174, - [1185] = 1177, - [1186] = 1173, - [1187] = 1173, - [1188] = 1173, - [1189] = 1174, - [1190] = 1190, - [1191] = 1172, - [1192] = 1177, - [1193] = 1172, - [1194] = 1177, - [1195] = 1174, - [1196] = 1173, - [1197] = 1174, - [1198] = 1172, - [1199] = 1177, - [1200] = 1200, - [1201] = 1172, - [1202] = 1173, - [1203] = 1174, - [1204] = 1177, - [1205] = 1172, - [1206] = 1177, - [1207] = 1173, - [1208] = 1172, - [1209] = 1172, - [1210] = 1210, - [1211] = 1211, - [1212] = 1212, - [1213] = 1213, - [1214] = 1214, - [1215] = 1215, - [1216] = 1216, - [1217] = 1217, - [1218] = 1218, - [1219] = 1219, - [1220] = 1220, - [1221] = 1221, - [1222] = 1222, - [1223] = 1223, - [1224] = 1224, - [1225] = 1225, - [1226] = 1226, - [1227] = 1227, - [1228] = 1228, - [1229] = 1228, - [1230] = 1228, - [1231] = 1228, - [1232] = 1232, - [1233] = 1228, - [1234] = 1234, - [1235] = 1232, - [1236] = 1232, - [1237] = 1232, - [1238] = 1232, - [1239] = 1228, - [1240] = 1232, - [1241] = 1232, - [1242] = 1242, - [1243] = 1232, - [1244] = 1228, - [1245] = 1228, - [1246] = 1246, - [1247] = 1247, - [1248] = 1228, - [1249] = 1249, - [1250] = 1232, - [1251] = 1251, - [1252] = 449, - [1253] = 1253, - [1254] = 1254, - [1255] = 1255, - [1256] = 1256, - [1257] = 1257, - [1258] = 1258, - [1259] = 1259, - [1260] = 1260, - [1261] = 1261, - [1262] = 1262, - [1263] = 458, - [1264] = 1264, - [1265] = 1265, - [1266] = 1266, - [1267] = 1267, - [1268] = 1268, - [1269] = 1269, - [1270] = 1270, - [1271] = 1271, - [1272] = 1272, - [1273] = 1273, - [1274] = 1274, - [1275] = 1275, - [1276] = 1276, - [1277] = 565, - [1278] = 1278, - [1279] = 1279, - [1280] = 1280, - [1281] = 531, - [1282] = 533, - [1283] = 1283, - [1284] = 1284, - [1285] = 1285, - [1286] = 1286, - [1287] = 1287, - [1288] = 1288, - [1289] = 1289, - [1290] = 1290, - [1291] = 1291, - [1292] = 1292, - [1293] = 449, - [1294] = 458, - [1295] = 1295, - [1296] = 1296, - [1297] = 531, - [1298] = 458, - [1299] = 533, - [1300] = 1300, - [1301] = 458, - [1302] = 1302, - [1303] = 1303, - [1304] = 1304, - [1305] = 1305, - [1306] = 531, - [1307] = 531, - [1308] = 1308, - [1309] = 1309, - [1310] = 1310, - [1311] = 1311, - [1312] = 1312, - [1313] = 1310, - [1314] = 1312, - [1315] = 1315, - [1316] = 1311, - [1317] = 1312, - [1318] = 1310, - [1319] = 1312, - [1320] = 1315, - [1321] = 1315, - [1322] = 1311, - [1323] = 1311, - [1324] = 1315, - [1325] = 1315, - [1326] = 1311, - [1327] = 1310, - [1328] = 1315, - [1329] = 1311, - [1330] = 1312, - [1331] = 1310, - [1332] = 1310, - [1333] = 1315, - [1334] = 1311, - [1335] = 1312, - [1336] = 1315, - [1337] = 1315, - [1338] = 1311, - [1339] = 1311, - [1340] = 1312, - [1341] = 1310, - [1342] = 1311, - [1343] = 1310, - [1344] = 1312, - [1345] = 1310, - [1346] = 1310, - [1347] = 1312, - [1348] = 1348, - [1349] = 1349, - [1350] = 1350, - [1351] = 1351, - [1352] = 1352, - [1353] = 1353, - [1354] = 1354, - [1355] = 1353, - [1356] = 1356, - [1357] = 1351, - [1358] = 1352, - [1359] = 1354, - [1360] = 1354, - [1361] = 1353, - [1362] = 1351, - [1363] = 1352, - [1364] = 1351, - [1365] = 1356, - [1366] = 1352, - [1367] = 1351, - [1368] = 1352, - [1369] = 1354, - [1370] = 1353, - [1371] = 1356, - [1372] = 1356, - [1373] = 1354, - [1374] = 1353, - [1375] = 1353, - [1376] = 1351, - [1377] = 449, - [1378] = 1351, - [1379] = 1352, - [1380] = 449, - [1381] = 1354, - [1382] = 1351, - [1383] = 1352, - [1384] = 1353, - [1385] = 1354, - [1386] = 1353, - [1387] = 1356, - [1388] = 1352, - [1389] = 1352, - [1390] = 1356, - [1391] = 1354, - [1392] = 1353, - [1393] = 1356, - [1394] = 1356, - [1395] = 1354, - [1396] = 1356, - [1397] = 1351, - [1398] = 1398, - [1399] = 1399, - [1400] = 1400, - [1401] = 1399, - [1402] = 1398, - [1403] = 1400, - [1404] = 1404, - [1405] = 449, - [1406] = 1404, - [1407] = 1399, - [1408] = 1404, - [1409] = 533, - [1410] = 1404, - [1411] = 1399, - [1412] = 449, - [1413] = 1234, - [1414] = 1400, - [1415] = 1404, - [1416] = 1400, - [1417] = 533, - [1418] = 1400, - [1419] = 1400, - [1420] = 1404, - [1421] = 1400, - [1422] = 1399, - [1423] = 1400, - [1424] = 1424, - [1425] = 1398, - [1426] = 1398, - [1427] = 1398, - [1428] = 1398, - [1429] = 1399, - [1430] = 1404, - [1431] = 1399, - [1432] = 1400, - [1433] = 1404, - [1434] = 1398, - [1435] = 1398, - [1436] = 1404, - [1437] = 1399, - [1438] = 1398, - [1439] = 1399, - [1440] = 1440, - [1441] = 1440, + [1148] = 693, + [1149] = 660, + [1150] = 695, + [1151] = 661, + [1152] = 697, + [1153] = 662, + [1154] = 700, + [1155] = 760, + [1156] = 664, + [1157] = 703, + [1158] = 665, + [1159] = 666, + [1160] = 709, + [1161] = 705, + [1162] = 706, + [1163] = 707, + [1164] = 708, + [1165] = 667, + [1166] = 710, + [1167] = 711, + [1168] = 1168, + [1169] = 702, + [1170] = 1140, + [1171] = 669, + [1172] = 1138, + [1173] = 705, + [1174] = 1140, + [1175] = 671, + [1176] = 672, + [1177] = 673, + [1178] = 674, + [1179] = 675, + [1180] = 676, + [1181] = 715, + [1182] = 716, + [1183] = 762, + [1184] = 725, + [1185] = 733, + [1186] = 737, + [1187] = 739, + [1188] = 758, + [1189] = 678, + [1190] = 706, + [1191] = 680, + [1192] = 681, + [1193] = 682, + [1194] = 717, + [1195] = 760, + [1196] = 683, + [1197] = 762, + [1198] = 684, + [1199] = 707, + [1200] = 686, + [1201] = 658, + [1202] = 659, + [1203] = 660, + [1204] = 658, + [1205] = 688, + [1206] = 1138, + [1207] = 689, + [1208] = 1140, + [1209] = 690, + [1210] = 661, + [1211] = 662, + [1212] = 659, + [1213] = 664, + [1214] = 692, + [1215] = 665, + [1216] = 666, + [1217] = 667, + [1218] = 709, + [1219] = 669, + [1220] = 694, + [1221] = 671, + [1222] = 672, + [1223] = 673, + [1224] = 674, + [1225] = 675, + [1226] = 676, + [1227] = 660, + [1228] = 678, + [1229] = 696, + [1230] = 661, + [1231] = 680, + [1232] = 681, + [1233] = 682, + [1234] = 683, + [1235] = 684, + [1236] = 1138, + [1237] = 698, + [1238] = 1140, + [1239] = 686, + [1240] = 699, + [1241] = 688, + [1242] = 689, + [1243] = 690, + [1244] = 712, + [1245] = 713, + [1246] = 692, + [1247] = 702, + [1248] = 694, + [1249] = 714, + [1250] = 696, + [1251] = 662, + [1252] = 698, + [1253] = 699, + [1254] = 708, + [1255] = 718, + [1256] = 702, + [1257] = 717, + [1258] = 718, + [1259] = 709, + [1260] = 719, + [1261] = 720, + [1262] = 709, + [1263] = 712, + [1264] = 713, + [1265] = 712, + [1266] = 1138, + [1267] = 713, + [1268] = 1140, + [1269] = 1131, + [1270] = 714, + [1271] = 714, + [1272] = 721, + [1273] = 717, + [1274] = 704, + [1275] = 718, + [1276] = 719, + [1277] = 720, + [1278] = 721, + [1279] = 704, + [1280] = 723, + [1281] = 724, + [1282] = 717, + [1283] = 701, + [1284] = 727, + [1285] = 729, + [1286] = 656, + [1287] = 657, + [1288] = 663, + [1289] = 718, + [1290] = 719, + [1291] = 677, + [1292] = 655, + [1293] = 719, + [1294] = 720, + [1295] = 687, + [1296] = 1138, + [1297] = 721, + [1298] = 1140, + [1299] = 693, + [1300] = 695, + [1301] = 697, + [1302] = 700, + [1303] = 703, + [1304] = 704, + [1305] = 712, + [1306] = 705, + [1307] = 706, + [1308] = 707, + [1309] = 708, + [1310] = 710, + [1311] = 711, + [1312] = 715, + [1313] = 716, + [1314] = 725, + [1315] = 733, + [1316] = 737, + [1317] = 739, + [1318] = 758, + [1319] = 723, + [1320] = 724, + [1321] = 760, + [1322] = 723, + [1323] = 762, + [1324] = 701, + [1325] = 727, + [1326] = 1138, + [1327] = 658, + [1328] = 1140, + [1329] = 659, + [1330] = 660, + [1331] = 661, + [1332] = 662, + [1333] = 729, + [1334] = 656, + [1335] = 664, + [1336] = 665, + [1337] = 666, + [1338] = 667, + [1339] = 657, + [1340] = 669, + [1341] = 663, + [1342] = 671, + [1343] = 672, + [1344] = 673, + [1345] = 674, + [1346] = 675, + [1347] = 676, + [1348] = 724, + [1349] = 670, + [1350] = 678, + [1351] = 677, + [1352] = 680, + [1353] = 681, + [1354] = 682, + [1355] = 683, + [1356] = 1138, + [1357] = 684, + [1358] = 1140, + [1359] = 655, + [1360] = 686, + [1361] = 664, + [1362] = 688, + [1363] = 689, + [1364] = 687, + [1365] = 690, + [1366] = 701, + [1367] = 692, + [1368] = 693, + [1369] = 694, + [1370] = 695, + [1371] = 696, + [1372] = 697, + [1373] = 698, + [1374] = 699, + [1375] = 713, + [1376] = 720, + [1377] = 702, + [1378] = 700, + [1379] = 703, + [1380] = 727, + [1381] = 705, + [1382] = 706, + [1383] = 707, + [1384] = 708, + [1385] = 709, + [1386] = 1138, + [1387] = 710, + [1388] = 1140, + [1389] = 711, + [1390] = 712, + [1391] = 713, + [1392] = 714, + [1393] = 715, + [1394] = 716, + [1395] = 725, + [1396] = 717, + [1397] = 718, + [1398] = 719, + [1399] = 720, + [1400] = 721, + [1401] = 704, + [1402] = 723, + [1403] = 724, + [1404] = 733, + [1405] = 701, + [1406] = 737, + [1407] = 739, + [1408] = 727, + [1409] = 728, + [1410] = 758, + [1411] = 728, + [1412] = 729, + [1413] = 656, + [1414] = 657, + [1415] = 663, + [1416] = 760, + [1417] = 670, + [1418] = 677, + [1419] = 655, + [1420] = 729, + [1421] = 687, + [1422] = 762, + [1423] = 693, + [1424] = 695, + [1425] = 697, + [1426] = 674, + [1427] = 1427, + [1428] = 1428, + [1429] = 1427, + [1430] = 1430, + [1431] = 1431, + [1432] = 1432, + [1433] = 1428, + [1434] = 1434, + [1435] = 1435, + [1436] = 1436, + [1437] = 1427, + [1438] = 1430, + [1439] = 1435, + [1440] = 1436, + [1441] = 1441, [1442] = 1442, - [1443] = 1443, - [1444] = 1440, - [1445] = 1442, - [1446] = 1443, - [1447] = 1440, - [1448] = 1442, - [1449] = 1443, - [1450] = 1440, - [1451] = 1443, - [1452] = 1442, - [1453] = 533, - [1454] = 1443, - [1455] = 1440, - [1456] = 1442, - [1457] = 1443, - [1458] = 1440, - [1459] = 1442, - [1460] = 1442, - [1461] = 1443, - [1462] = 533, - [1463] = 1440, - [1464] = 1443, - [1465] = 1440, - [1466] = 1442, - [1467] = 1442, - [1468] = 1443, - [1469] = 458, - [1470] = 1470, - [1471] = 1471, - [1472] = 1472, - [1473] = 1473, - [1474] = 1470, - [1475] = 1475, - [1476] = 1476, - [1477] = 1477, - [1478] = 1478, - [1479] = 1479, - [1480] = 1480, - [1481] = 1481, - [1482] = 1482, - [1483] = 1483, - [1484] = 1479, + [1443] = 1431, + [1444] = 1432, + [1445] = 1428, + [1446] = 1434, + [1447] = 1430, + [1448] = 1434, + [1449] = 1435, + [1450] = 1436, + [1451] = 1451, + [1452] = 1452, + [1453] = 1431, + [1454] = 1432, + [1455] = 1455, + [1456] = 1455, + [1457] = 1457, + [1458] = 1455, + [1459] = 1457, + [1460] = 1460, + [1461] = 1460, + [1462] = 1462, + [1463] = 1455, + [1464] = 1457, + [1465] = 1460, + [1466] = 1462, + [1467] = 1462, + [1468] = 1455, + [1469] = 1457, + [1470] = 1460, + [1471] = 1462, + [1472] = 1455, + [1473] = 1457, + [1474] = 1460, + [1475] = 1462, + [1476] = 1457, + [1477] = 1460, + [1478] = 1462, + [1479] = 1455, + [1480] = 1455, + [1481] = 1457, + [1482] = 1457, + [1483] = 1460, + [1484] = 1462, [1485] = 1485, [1486] = 1486, - [1487] = 1472, - [1488] = 1488, - [1489] = 1482, - [1490] = 1490, - [1491] = 1485, - [1492] = 1471, - [1493] = 1478, - [1494] = 1488, - [1495] = 1495, - [1496] = 1496, + [1487] = 1460, + [1488] = 1455, + [1489] = 1457, + [1490] = 1462, + [1491] = 1460, + [1492] = 1462, + [1493] = 1455, + [1494] = 1457, + [1495] = 1460, + [1496] = 1462, [1497] = 1497, [1498] = 1498, [1499] = 1499, - [1500] = 1476, - [1501] = 1475, - [1502] = 1470, - [1503] = 1472, - [1504] = 1473, - [1505] = 1473, - [1506] = 1499, - [1507] = 1476, - [1508] = 1477, - [1509] = 1481, - [1510] = 1479, - [1511] = 1495, + [1500] = 1500, + [1501] = 1501, + [1502] = 1502, + [1503] = 1503, + [1504] = 1504, + [1505] = 1505, + [1506] = 1506, + [1507] = 1507, + [1508] = 1508, + [1509] = 1509, + [1510] = 1510, + [1511] = 1511, [1512] = 1512, - [1513] = 1512, - [1514] = 1483, - [1515] = 1471, - [1516] = 1478, - [1517] = 1488, - [1518] = 1477, - [1519] = 1480, - [1520] = 1496, - [1521] = 1499, - [1522] = 1497, - [1523] = 1482, - [1524] = 1498, - [1525] = 1481, - [1526] = 1479, - [1527] = 1470, - [1528] = 1495, - [1529] = 1483, - [1530] = 1512, - [1531] = 1480, - [1532] = 1482, - [1533] = 1483, - [1534] = 1485, - [1535] = 1485, - [1536] = 1486, - [1537] = 1486, - [1538] = 1496, - [1539] = 1490, - [1540] = 1497, - [1541] = 1471, - [1542] = 1478, - [1543] = 1488, - [1544] = 1490, - [1545] = 1496, - [1546] = 1497, - [1547] = 1498, - [1548] = 1486, - [1549] = 1471, - [1550] = 1475, - [1551] = 1478, - [1552] = 1472, - [1553] = 1473, - [1554] = 1488, - [1555] = 1499, - [1556] = 1476, - [1557] = 1477, - [1558] = 1481, - [1559] = 1479, - [1560] = 1495, - [1561] = 1512, - [1562] = 1498, - [1563] = 1496, + [1513] = 1513, + [1514] = 1514, + [1515] = 1515, + [1516] = 1515, + [1517] = 1517, + [1518] = 1517, + [1519] = 1515, + [1520] = 1520, + [1521] = 1515, + [1522] = 1515, + [1523] = 1523, + [1524] = 1515, + [1525] = 1517, + [1526] = 1517, + [1527] = 1517, + [1528] = 1515, + [1529] = 1517, + [1530] = 1530, + [1531] = 1517, + [1532] = 1532, + [1533] = 1517, + [1534] = 1515, + [1535] = 1517, + [1536] = 1536, + [1537] = 1515, + [1538] = 1517, + [1539] = 1515, + [1540] = 1540, + [1541] = 1541, + [1542] = 1542, + [1543] = 590, + [1544] = 591, + [1545] = 1545, + [1546] = 1546, + [1547] = 1547, + [1548] = 1548, + [1549] = 1549, + [1550] = 1550, + [1551] = 1551, + [1552] = 1552, + [1553] = 1553, + [1554] = 1554, + [1555] = 1555, + [1556] = 1556, + [1557] = 1557, + [1558] = 1558, + [1559] = 1559, + [1560] = 1560, + [1561] = 1561, + [1562] = 1562, + [1563] = 1563, [1564] = 1564, - [1565] = 1497, - [1566] = 1498, - [1567] = 1495, - [1568] = 1475, - [1569] = 1512, - [1570] = 1475, - [1571] = 1472, - [1572] = 1472, - [1573] = 1473, - [1574] = 1473, - [1575] = 1482, - [1576] = 1470, - [1577] = 1480, - [1578] = 1499, - [1579] = 1476, - [1580] = 1477, - [1581] = 1481, - [1582] = 1479, - [1583] = 1498, - [1584] = 1480, - [1585] = 1475, - [1586] = 1482, - [1587] = 1483, - [1588] = 1512, - [1589] = 1485, - [1590] = 1486, - [1591] = 1470, - [1592] = 1475, - [1593] = 1485, - [1594] = 1490, - [1595] = 1480, - [1596] = 1471, - [1597] = 1478, - [1598] = 1488, - [1599] = 1490, - [1600] = 1496, - [1601] = 1497, - [1602] = 1498, - [1603] = 1480, - [1604] = 1472, - [1605] = 1475, - [1606] = 1482, - [1607] = 1472, - [1608] = 1473, - [1609] = 1483, - [1610] = 1499, - [1611] = 1476, - [1612] = 1477, - [1613] = 1481, - [1614] = 1479, - [1615] = 1495, - [1616] = 1512, - [1617] = 565, - [1618] = 1485, - [1619] = 1486, - [1620] = 1499, - [1621] = 1476, - [1622] = 1477, - [1623] = 1470, - [1624] = 1473, - [1625] = 1490, - [1626] = 531, - [1627] = 1499, - [1628] = 1481, - [1629] = 1479, - [1630] = 1470, - [1631] = 1495, - [1632] = 1480, - [1633] = 1476, - [1634] = 1482, - [1635] = 1512, - [1636] = 1480, - [1637] = 1483, - [1638] = 1482, - [1639] = 1483, - [1640] = 1485, - [1641] = 1486, - [1642] = 1490, - [1643] = 1485, - [1644] = 1486, - [1645] = 1490, - [1646] = 1477, - [1647] = 1471, - [1648] = 1478, - [1649] = 1488, - [1650] = 1471, - [1651] = 1496, - [1652] = 1497, - [1653] = 1498, - [1654] = 1478, - [1655] = 1490, - [1656] = 1475, - [1657] = 1488, - [1658] = 1472, - [1659] = 1473, - [1660] = 1471, - [1661] = 1499, - [1662] = 1476, - [1663] = 1477, - [1664] = 1481, - [1665] = 1479, - [1666] = 1495, - [1667] = 1512, - [1668] = 1478, - [1669] = 1488, - [1670] = 1481, - [1671] = 1496, - [1672] = 1497, - [1673] = 1486, - [1674] = 1483, - [1675] = 1470, - [1676] = 1498, - [1677] = 1496, - [1678] = 1497, - [1679] = 1495, - [1680] = 1680, - [1681] = 1681, - [1682] = 1682, - [1683] = 1683, - [1684] = 1684, - [1685] = 1685, - [1686] = 1685, - [1687] = 1685, - [1688] = 1684, - [1689] = 1682, - [1690] = 1690, - [1691] = 1684, - [1692] = 1692, - [1693] = 1684, - [1694] = 1694, - [1695] = 1682, - [1696] = 1690, - [1697] = 1697, - [1698] = 1690, - [1699] = 1682, - [1700] = 1700, - [1701] = 1682, - [1702] = 1685, - [1703] = 1685, - [1704] = 1685, - [1705] = 1684, - [1706] = 1683, - [1707] = 1685, - [1708] = 1708, - [1709] = 1684, - [1710] = 1690, - [1711] = 1690, - [1712] = 1690, - [1713] = 1690, - [1714] = 1682, - [1715] = 1682, - [1716] = 1716, - [1717] = 1685, - [1718] = 1718, - [1719] = 1719, - [1720] = 1720, - [1721] = 1682, - [1722] = 1684, - [1723] = 1685, - [1724] = 1690, - [1725] = 1692, - [1726] = 1720, - [1727] = 1694, - [1728] = 1728, - [1729] = 1684, - [1730] = 1697, - [1731] = 1683, - [1732] = 1692, - [1733] = 1720, - [1734] = 1694, - [1735] = 1697, - [1736] = 1683, - [1737] = 1692, - [1738] = 1720, - [1739] = 1694, - [1740] = 1697, - [1741] = 1683, - [1742] = 1692, - [1743] = 1690, - [1744] = 1682, - [1745] = 1720, - [1746] = 1694, - [1747] = 1697, - [1748] = 1683, - [1749] = 1692, - [1750] = 1720, - [1751] = 1694, - [1752] = 1697, - [1753] = 1683, - [1754] = 1692, - [1755] = 1720, - [1756] = 1694, - [1757] = 1697, - [1758] = 1683, - [1759] = 1692, - [1760] = 1720, - [1761] = 1694, - [1762] = 1697, - [1763] = 1683, - [1764] = 1692, - [1765] = 1720, - [1766] = 1694, - [1767] = 1697, - [1768] = 1683, - [1769] = 1694, - [1770] = 1684, - [1771] = 1771, - [1772] = 1772, - [1773] = 1773, - [1774] = 1774, + [1565] = 1565, + [1566] = 1566, + [1567] = 1567, + [1568] = 1568, + [1569] = 1569, + [1570] = 702, + [1571] = 1571, + [1572] = 728, + [1573] = 670, + [1574] = 1574, + [1575] = 1575, + [1576] = 1576, + [1577] = 1577, + [1578] = 1578, + [1579] = 590, + [1580] = 591, + [1581] = 1581, + [1582] = 1582, + [1583] = 1583, + [1584] = 1584, + [1585] = 1585, + [1586] = 1586, + [1587] = 728, + [1588] = 590, + [1589] = 1589, + [1590] = 590, + [1591] = 670, + [1592] = 1592, + [1593] = 1593, + [1594] = 1594, + [1595] = 728, + [1596] = 728, + [1597] = 1597, + [1598] = 1598, + [1599] = 1599, + [1600] = 1600, + [1601] = 1599, + [1602] = 1602, + [1603] = 1600, + [1604] = 1600, + [1605] = 1599, + [1606] = 1599, + [1607] = 1600, + [1608] = 1599, + [1609] = 1599, + [1610] = 1600, + [1611] = 1611, + [1612] = 1599, + [1613] = 1602, + [1614] = 1611, + [1615] = 1611, + [1616] = 1602, + [1617] = 1600, + [1618] = 1599, + [1619] = 1600, + [1620] = 1611, + [1621] = 1602, + [1622] = 1600, + [1623] = 1599, + [1624] = 1602, + [1625] = 1611, + [1626] = 1602, + [1627] = 1600, + [1628] = 1611, + [1629] = 1611, + [1630] = 1602, + [1631] = 1600, + [1632] = 1599, + [1633] = 1602, + [1634] = 1599, + [1635] = 1602, + [1636] = 1611, + [1637] = 1611, + [1638] = 1611, + [1639] = 1602, + [1640] = 1602, + [1641] = 1641, + [1642] = 1642, + [1643] = 1643, + [1644] = 1644, + [1645] = 1645, + [1646] = 1646, + [1647] = 1647, + [1648] = 1646, + [1649] = 1647, + [1650] = 1647, + [1651] = 1644, + [1652] = 1644, + [1653] = 1653, + [1654] = 1647, + [1655] = 1653, + [1656] = 1645, + [1657] = 1646, + [1658] = 1644, + [1659] = 1653, + [1660] = 1644, + [1661] = 1645, + [1662] = 1653, + [1663] = 1645, + [1664] = 1646, + [1665] = 1653, + [1666] = 1645, + [1667] = 1646, + [1668] = 1644, + [1669] = 1644, + [1670] = 1644, + [1671] = 1647, + [1672] = 1644, + [1673] = 1653, + [1674] = 1653, + [1675] = 1645, + [1676] = 1646, + [1677] = 1653, + [1678] = 1653, + [1679] = 1645, + [1680] = 1646, + [1681] = 1646, + [1682] = 1645, + [1683] = 591, + [1684] = 591, + [1685] = 1647, + [1686] = 1647, + [1687] = 1646, + [1688] = 1644, + [1689] = 1653, + [1690] = 1645, + [1691] = 1646, + [1692] = 1647, + [1693] = 1647, + [1694] = 1645, + [1695] = 1647, + [1696] = 1696, + [1697] = 1696, + [1698] = 1698, + [1699] = 1699, + [1700] = 1698, + [1701] = 1699, + [1702] = 1702, + [1703] = 1698, + [1704] = 1702, + [1705] = 1698, + [1706] = 1699, + [1707] = 1696, + [1708] = 1702, + [1709] = 1536, + [1710] = 1699, + [1711] = 1698, + [1712] = 1712, + [1713] = 1698, + [1714] = 1696, + [1715] = 1702, + [1716] = 1698, + [1717] = 1696, + [1718] = 1696, + [1719] = 1699, + [1720] = 670, + [1721] = 1696, + [1722] = 670, + [1723] = 591, + [1724] = 1698, + [1725] = 591, + [1726] = 1696, + [1727] = 1698, + [1728] = 1702, + [1729] = 1702, + [1730] = 1699, + [1731] = 1702, + [1732] = 1698, + [1733] = 1696, + [1734] = 1699, + [1735] = 1702, + [1736] = 1702, + [1737] = 1699, + [1738] = 1699, + [1739] = 1699, + [1740] = 1696, + [1741] = 1702, + [1742] = 1742, + [1743] = 1743, + [1744] = 670, + [1745] = 1745, + [1746] = 1743, + [1747] = 1742, + [1748] = 670, + [1749] = 1745, + [1750] = 1745, + [1751] = 1743, + [1752] = 1742, + [1753] = 1743, + [1754] = 1745, + [1755] = 1742, + [1756] = 1742, + [1757] = 1743, + [1758] = 1745, + [1759] = 1745, + [1760] = 1743, + [1761] = 1742, + [1762] = 1745, + [1763] = 1743, + [1764] = 1745, + [1765] = 1745, + [1766] = 1743, + [1767] = 1743, + [1768] = 1745, + [1769] = 1742, + [1770] = 1742, + [1771] = 1743, + [1772] = 1742, + [1773] = 1742, + [1774] = 590, [1775] = 1775, [1776] = 1776, [1777] = 1777, [1778] = 1778, - [1779] = 1774, - [1780] = 1774, + [1779] = 1779, + [1780] = 1780, [1781] = 1781, - [1782] = 1771, - [1783] = 1772, + [1782] = 1782, + [1783] = 1783, [1784] = 1784, [1785] = 1781, - [1786] = 1771, - [1787] = 1772, - [1788] = 1774, + [1786] = 1786, + [1787] = 1782, + [1788] = 1788, [1789] = 1789, - [1790] = 1781, - [1791] = 1771, - [1792] = 1772, + [1790] = 1775, + [1791] = 1791, + [1792] = 1783, [1793] = 1793, - [1794] = 1794, - [1795] = 1771, - [1796] = 1781, + [1794] = 1784, + [1795] = 1795, + [1796] = 1780, [1797] = 1797, [1798] = 1798, - [1799] = 1774, + [1799] = 1799, [1800] = 1800, - [1801] = 1781, - [1802] = 1771, - [1803] = 1772, - [1804] = 1774, - [1805] = 1772, - [1806] = 1781, - [1807] = 1771, - [1808] = 1774, - [1809] = 1772, - [1810] = 1781, - [1811] = 1771, - [1812] = 1772, - [1813] = 1813, - [1814] = 1814, - [1815] = 1815, - [1816] = 1816, - [1817] = 1774, - [1818] = 1774, - [1819] = 1781, - [1820] = 1771, - [1821] = 1772, - [1822] = 1822, - [1823] = 1781, - [1824] = 1781, - [1825] = 1772, - [1826] = 1826, - [1827] = 1827, - [1828] = 1827, - [1829] = 1829, - [1830] = 1830, - [1831] = 1831, - [1832] = 1831, - [1833] = 1833, - [1834] = 1834, - [1835] = 1831, - [1836] = 1831, - [1837] = 1829, - [1838] = 1833, - [1839] = 1839, - [1840] = 1833, - [1841] = 1841, - [1842] = 1827, - [1843] = 1829, - [1844] = 1839, - [1845] = 1829, - [1846] = 1831, - [1847] = 1827, - [1848] = 1829, - [1849] = 1827, - [1850] = 1829, - [1851] = 1829, - [1852] = 1827, - [1853] = 1833, - [1854] = 1839, - [1855] = 1839, - [1856] = 1831, - [1857] = 1839, - [1858] = 1858, - [1859] = 1827, - [1860] = 1829, - [1861] = 1831, - [1862] = 1833, - [1863] = 1833, - [1864] = 1839, - [1865] = 1827, - [1866] = 1829, - [1867] = 1833, - [1868] = 1831, - [1869] = 1827, - [1870] = 1829, - [1871] = 1839, - [1872] = 1833, - [1873] = 449, - [1874] = 449, - [1875] = 1831, - [1876] = 1833, - [1877] = 1839, - [1878] = 1839, - [1879] = 1830, - [1880] = 1841, - [1881] = 1830, - [1882] = 1841, - [1883] = 1830, - [1884] = 1841, - [1885] = 1830, - [1886] = 1841, - [1887] = 1830, - [1888] = 1841, - [1889] = 1830, - [1890] = 1841, - [1891] = 1830, - [1892] = 1841, - [1893] = 1830, - [1894] = 1841, - [1895] = 1830, - [1896] = 1839, - [1897] = 1897, - [1898] = 1898, - [1899] = 1899, - [1900] = 1898, - [1901] = 1898, - [1902] = 1897, - [1903] = 458, - [1904] = 1904, - [1905] = 533, - [1906] = 1906, - [1907] = 1897, - [1908] = 533, - [1909] = 1909, - [1910] = 1910, - [1911] = 1898, - [1912] = 1912, - [1913] = 591, - [1914] = 1897, - [1915] = 1915, - [1916] = 1898, - [1917] = 1897, - [1918] = 1918, + [1801] = 1797, + [1802] = 1802, + [1803] = 1803, + [1804] = 1804, + [1805] = 1776, + [1806] = 1803, + [1807] = 1777, + [1808] = 1778, + [1809] = 1779, + [1810] = 1798, + [1811] = 1804, + [1812] = 1781, + [1813] = 1776, + [1814] = 1782, + [1815] = 1783, + [1816] = 1784, + [1817] = 1786, + [1818] = 1788, + [1819] = 1789, + [1820] = 1791, + [1821] = 1793, + [1822] = 1795, + [1823] = 1799, + [1824] = 1777, + [1825] = 1778, + [1826] = 1779, + [1827] = 702, + [1828] = 1800, + [1829] = 1775, + [1830] = 1775, + [1831] = 1775, + [1832] = 1802, + [1833] = 1780, + [1834] = 1786, + [1835] = 1797, + [1836] = 1798, + [1837] = 1799, + [1838] = 1800, + [1839] = 1780, + [1840] = 1802, + [1841] = 1803, + [1842] = 1804, + [1843] = 1776, + [1844] = 1777, + [1845] = 1778, + [1846] = 1779, + [1847] = 1797, + [1848] = 1781, + [1849] = 1798, + [1850] = 1782, + [1851] = 1783, + [1852] = 1784, + [1853] = 1786, + [1854] = 1788, + [1855] = 1789, + [1856] = 1791, + [1857] = 1793, + [1858] = 1795, + [1859] = 1799, + [1860] = 1788, + [1861] = 1800, + [1862] = 1803, + [1863] = 1789, + [1864] = 1791, + [1865] = 1804, + [1866] = 1802, + [1867] = 1780, + [1868] = 1793, + [1869] = 1803, + [1870] = 1795, + [1871] = 1804, + [1872] = 1776, + [1873] = 1776, + [1874] = 1777, + [1875] = 1775, + [1876] = 1778, + [1877] = 1779, + [1878] = 1780, + [1879] = 1797, + [1880] = 1798, + [1881] = 1799, + [1882] = 1800, + [1883] = 1781, + [1884] = 1802, + [1885] = 1775, + [1886] = 1803, + [1887] = 1804, + [1888] = 1776, + [1889] = 1782, + [1890] = 1777, + [1891] = 1778, + [1892] = 1779, + [1893] = 1783, + [1894] = 1781, + [1895] = 1784, + [1896] = 1782, + [1897] = 1783, + [1898] = 1784, + [1899] = 1786, + [1900] = 1788, + [1901] = 1789, + [1902] = 1795, + [1903] = 1793, + [1904] = 1795, + [1905] = 1786, + [1906] = 1788, + [1907] = 1789, + [1908] = 1791, + [1909] = 1793, + [1910] = 1795, + [1911] = 1777, + [1912] = 1778, + [1913] = 1779, + [1914] = 728, + [1915] = 1781, + [1916] = 1775, + [1917] = 1797, + [1918] = 1798, [1919] = 1919, - [1920] = 1897, - [1921] = 1897, - [1922] = 574, - [1923] = 1898, - [1924] = 1897, - [1925] = 1898, - [1926] = 583, - [1927] = 1898, - [1928] = 1897, - [1929] = 1898, - [1930] = 1930, - [1931] = 1931, - [1932] = 1932, - [1933] = 1931, - [1934] = 1934, - [1935] = 1935, - [1936] = 1936, - [1937] = 1937, - [1938] = 1938, - [1939] = 1939, - [1940] = 1940, - [1941] = 1932, - [1942] = 1930, - [1943] = 1938, - [1944] = 1944, - [1945] = 1935, - [1946] = 1946, - [1947] = 1932, - [1948] = 1944, - [1949] = 1944, - [1950] = 1944, - [1951] = 1946, - [1952] = 1944, - [1953] = 1939, - [1954] = 1940, - [1955] = 1944, - [1956] = 1938, - [1957] = 1957, - [1958] = 1932, - [1959] = 1959, - [1960] = 1946, - [1961] = 1935, - [1962] = 1940, - [1963] = 1931, - [1964] = 1964, - [1965] = 1939, - [1966] = 1940, - [1967] = 1939, - [1968] = 1940, - [1969] = 1964, - [1970] = 1930, - [1971] = 1944, - [1972] = 1930, - [1973] = 1932, - [1974] = 1938, - [1975] = 1932, - [1976] = 1976, - [1977] = 1931, - [1978] = 1930, - [1979] = 1979, - [1980] = 1931, - [1981] = 1939, - [1982] = 1940, - [1983] = 1935, - [1984] = 1930, - [1985] = 1931, - [1986] = 1935, - [1987] = 1938, - [1988] = 1939, - [1989] = 1931, - [1990] = 1946, - [1991] = 531, - [1992] = 1938, - [1993] = 1993, - [1994] = 1938, - [1995] = 1939, - [1996] = 1940, - [1997] = 1946, - [1998] = 1930, - [1999] = 1999, - [2000] = 1946, - [2001] = 1946, - [2002] = 1939, - [2003] = 1935, - [2004] = 1940, - [2005] = 1964, - [2006] = 1964, - [2007] = 1931, - [2008] = 1930, - [2009] = 1938, - [2010] = 1946, - [2011] = 1938, - [2012] = 1931, - [2013] = 1936, - [2014] = 1937, - [2015] = 1936, - [2016] = 1937, - [2017] = 1936, - [2018] = 1937, - [2019] = 1936, - [2020] = 1937, - [2021] = 1936, - [2022] = 1937, - [2023] = 1936, - [2024] = 1937, - [2025] = 1936, - [2026] = 1937, - [2027] = 1936, - [2028] = 1937, - [2029] = 1937, - [2030] = 1935, - [2031] = 1932, - [2032] = 1935, - [2033] = 1935, - [2034] = 1944, - [2035] = 2035, - [2036] = 1964, - [2037] = 1932, - [2038] = 1964, - [2039] = 1964, - [2040] = 1944, - [2041] = 1939, - [2042] = 1940, - [2043] = 1932, - [2044] = 1930, - [2045] = 1964, - [2046] = 1946, - [2047] = 1964, + [1920] = 1799, + [1921] = 1800, + [1922] = 1782, + [1923] = 1780, + [1924] = 1797, + [1925] = 1798, + [1926] = 1799, + [1927] = 1800, + [1928] = 1783, + [1929] = 1802, + [1930] = 1784, + [1931] = 1802, + [1932] = 1803, + [1933] = 1804, + [1934] = 1776, + [1935] = 1777, + [1936] = 1778, + [1937] = 1779, + [1938] = 1780, + [1939] = 1781, + [1940] = 1782, + [1941] = 1783, + [1942] = 1775, + [1943] = 1784, + [1944] = 1786, + [1945] = 1788, + [1946] = 1789, + [1947] = 1791, + [1948] = 1793, + [1949] = 1795, + [1950] = 1797, + [1951] = 1798, + [1952] = 1799, + [1953] = 1800, + [1954] = 1786, + [1955] = 1788, + [1956] = 1780, + [1957] = 1797, + [1958] = 1798, + [1959] = 1789, + [1960] = 1799, + [1961] = 1800, + [1962] = 1775, + [1963] = 1791, + [1964] = 1793, + [1965] = 1802, + [1966] = 1802, + [1967] = 1780, + [1968] = 1797, + [1969] = 1798, + [1970] = 1803, + [1971] = 1799, + [1972] = 1800, + [1973] = 1804, + [1974] = 1776, + [1975] = 1802, + [1976] = 1777, + [1977] = 1803, + [1978] = 1804, + [1979] = 1776, + [1980] = 1778, + [1981] = 1777, + [1982] = 1778, + [1983] = 1779, + [1984] = 1779, + [1985] = 1781, + [1986] = 1782, + [1987] = 1783, + [1988] = 1795, + [1989] = 1784, + [1990] = 1786, + [1991] = 1788, + [1992] = 1789, + [1993] = 1791, + [1994] = 1793, + [1995] = 1795, + [1996] = 1781, + [1997] = 1803, + [1998] = 1782, + [1999] = 1783, + [2000] = 1804, + [2001] = 1784, + [2002] = 1793, + [2003] = 1786, + [2004] = 1788, + [2005] = 1789, + [2006] = 1791, + [2007] = 1791, + [2008] = 2008, + [2009] = 2009, + [2010] = 2010, + [2011] = 2011, + [2012] = 2011, + [2013] = 2011, + [2014] = 2014, + [2015] = 2015, + [2016] = 2011, + [2017] = 2014, + [2018] = 2018, + [2019] = 2019, + [2020] = 2014, + [2021] = 2011, + [2022] = 2022, + [2023] = 2022, + [2024] = 2011, + [2025] = 2014, + [2026] = 2022, + [2027] = 2022, + [2028] = 2014, + [2029] = 2022, + [2030] = 2011, + [2031] = 2010, + [2032] = 2011, + [2033] = 2014, + [2034] = 2022, + [2035] = 2019, + [2036] = 2022, + [2037] = 2022, + [2038] = 2038, + [2039] = 2019, + [2040] = 2019, + [2041] = 2019, + [2042] = 2019, + [2043] = 2043, + [2044] = 2014, + [2045] = 2014, + [2046] = 2022, + [2047] = 2047, + [2048] = 2010, + [2049] = 2049, + [2050] = 2011, + [2051] = 2015, + [2052] = 2052, + [2053] = 2047, + [2054] = 2014, + [2055] = 2010, + [2056] = 2049, + [2057] = 2019, + [2058] = 2019, + [2059] = 2015, + [2060] = 2052, + [2061] = 2047, + [2062] = 2062, + [2063] = 2010, + [2064] = 2049, + [2065] = 2015, + [2066] = 2052, + [2067] = 2047, + [2068] = 2014, + [2069] = 2010, + [2070] = 2049, + [2071] = 2015, + [2072] = 2052, + [2073] = 2047, + [2074] = 2022, + [2075] = 2049, + [2076] = 2010, + [2077] = 2049, + [2078] = 2015, + [2079] = 2052, + [2080] = 2047, + [2081] = 2081, + [2082] = 2047, + [2083] = 2049, + [2084] = 2015, + [2085] = 2052, + [2086] = 2047, + [2087] = 2010, + [2088] = 2049, + [2089] = 2015, + [2090] = 2052, + [2091] = 2047, + [2092] = 2019, + [2093] = 2019, + [2094] = 2010, + [2095] = 2049, + [2096] = 2015, + [2097] = 2052, + [2098] = 2047, + [2099] = 2011, + [2100] = 2100, + [2101] = 2010, + [2102] = 2049, + [2103] = 2015, + [2104] = 2052, + [2105] = 2049, + [2106] = 2052, + [2107] = 2052, + [2108] = 2108, + [2109] = 2109, + [2110] = 2110, + [2111] = 2111, + [2112] = 2112, + [2113] = 2113, + [2114] = 2114, + [2115] = 2115, + [2116] = 2116, + [2117] = 2117, + [2118] = 2118, + [2119] = 2119, + [2120] = 2120, + [2121] = 2121, + [2122] = 2121, + [2123] = 2108, + [2124] = 2117, + [2125] = 2125, + [2126] = 2121, + [2127] = 2108, + [2128] = 2117, + [2129] = 2125, + [2130] = 2125, + [2131] = 2108, + [2132] = 2121, + [2133] = 2108, + [2134] = 2117, + [2135] = 2125, + [2136] = 2125, + [2137] = 2108, + [2138] = 2117, + [2139] = 2125, + [2140] = 2140, + [2141] = 2121, + [2142] = 2108, + [2143] = 2117, + [2144] = 2125, + [2145] = 2145, + [2146] = 2121, + [2147] = 2147, + [2148] = 2108, + [2149] = 2117, + [2150] = 2125, + [2151] = 2151, + [2152] = 2152, + [2153] = 2121, + [2154] = 2108, + [2155] = 2117, + [2156] = 2125, + [2157] = 2157, + [2158] = 2121, + [2159] = 2108, + [2160] = 2117, + [2161] = 2125, + [2162] = 2121, + [2163] = 2163, + [2164] = 2117, + [2165] = 2125, + [2166] = 2108, + [2167] = 2121, + [2168] = 2168, + [2169] = 2169, + [2170] = 2170, + [2171] = 2169, + [2172] = 2170, + [2173] = 2173, + [2174] = 2174, + [2175] = 2173, + [2176] = 2173, + [2177] = 2174, + [2178] = 2174, + [2179] = 2170, + [2180] = 2170, + [2181] = 2174, + [2182] = 2173, + [2183] = 2174, + [2184] = 2174, + [2185] = 2185, + [2186] = 2169, + [2187] = 2185, + [2188] = 2170, + [2189] = 2189, + [2190] = 2185, + [2191] = 2169, + [2192] = 2174, + [2193] = 2168, + [2194] = 2194, + [2195] = 2170, + [2196] = 2169, + [2197] = 2170, + [2198] = 2185, + [2199] = 2169, + [2200] = 2185, + [2201] = 591, + [2202] = 2173, + [2203] = 2173, + [2204] = 2170, + [2205] = 2169, + [2206] = 2173, + [2207] = 2173, + [2208] = 2174, + [2209] = 2185, + [2210] = 2169, + [2211] = 2170, + [2212] = 2174, + [2213] = 2213, + [2214] = 2185, + [2215] = 2173, + [2216] = 2174, + [2217] = 2174, + [2218] = 2185, + [2219] = 2185, + [2220] = 2169, + [2221] = 2185, + [2222] = 2173, + [2223] = 2170, + [2224] = 2169, + [2225] = 2170, + [2226] = 2189, + [2227] = 2168, + [2228] = 2189, + [2229] = 2168, + [2230] = 2189, + [2231] = 2168, + [2232] = 2189, + [2233] = 2168, + [2234] = 2189, + [2235] = 2189, + [2236] = 2168, + [2237] = 2189, + [2238] = 2168, + [2239] = 2189, + [2240] = 2168, + [2241] = 2189, + [2242] = 2168, + [2243] = 2168, + [2244] = 591, + [2245] = 2245, + [2246] = 2246, + [2247] = 2247, + [2248] = 2247, + [2249] = 2249, + [2250] = 2246, + [2251] = 681, + [2252] = 2247, + [2253] = 2247, + [2254] = 689, + [2255] = 2247, + [2256] = 2256, + [2257] = 670, + [2258] = 2246, + [2259] = 670, + [2260] = 2246, + [2261] = 672, + [2262] = 2262, + [2263] = 2246, + [2264] = 2264, + [2265] = 2247, + [2266] = 2266, + [2267] = 2267, + [2268] = 2246, + [2269] = 2269, + [2270] = 2246, + [2271] = 2246, + [2272] = 2247, + [2273] = 2273, + [2274] = 2246, + [2275] = 2247, + [2276] = 2246, + [2277] = 2247, + [2278] = 590, + [2279] = 2247, + [2280] = 2280, + [2281] = 2281, + [2282] = 2282, + [2283] = 2283, + [2284] = 2284, + [2285] = 2285, + [2286] = 2280, + [2287] = 2287, + [2288] = 728, + [2289] = 2289, + [2290] = 2290, + [2291] = 2285, + [2292] = 2285, + [2293] = 2293, + [2294] = 2293, + [2295] = 2281, + [2296] = 2281, + [2297] = 2283, + [2298] = 2284, + [2299] = 2282, + [2300] = 2280, + [2301] = 2289, + [2302] = 2280, + [2303] = 2303, + [2304] = 2282, + [2305] = 2285, + [2306] = 2306, + [2307] = 2281, + [2308] = 2308, + [2309] = 2309, + [2310] = 2281, + [2311] = 2283, + [2312] = 2284, + [2313] = 2285, + [2314] = 2280, + [2315] = 2315, + [2316] = 2290, + [2317] = 2306, + [2318] = 2289, + [2319] = 2319, + [2320] = 2293, + [2321] = 2293, + [2322] = 2290, + [2323] = 2290, + [2324] = 2306, + [2325] = 2283, + [2326] = 2284, + [2327] = 2283, + [2328] = 2280, + [2329] = 2284, + [2330] = 2285, + [2331] = 2280, + [2332] = 2289, + [2333] = 2290, + [2334] = 2285, + [2335] = 2293, + [2336] = 2281, + [2337] = 2293, + [2338] = 2293, + [2339] = 2283, + [2340] = 2284, + [2341] = 2282, + [2342] = 2280, + [2343] = 2282, + [2344] = 2285, + [2345] = 2289, + [2346] = 2306, + [2347] = 2347, + [2348] = 2290, + [2349] = 2289, + [2350] = 2281, + [2351] = 2351, + [2352] = 2282, + [2353] = 2283, + [2354] = 2284, + [2355] = 2293, + [2356] = 2280, + [2357] = 2283, + [2358] = 2284, + [2359] = 2289, + [2360] = 2284, + [2361] = 2281, + [2362] = 2306, + [2363] = 2280, + [2364] = 2282, + [2365] = 2290, + [2366] = 2366, + [2367] = 2283, + [2368] = 2289, + [2369] = 2293, + [2370] = 2306, + [2371] = 2366, + [2372] = 2308, + [2373] = 2366, + [2374] = 2308, + [2375] = 2366, + [2376] = 2308, + [2377] = 2366, + [2378] = 2308, + [2379] = 2366, + [2380] = 2308, + [2381] = 2366, + [2382] = 2308, + [2383] = 2366, + [2384] = 2308, + [2385] = 2366, + [2386] = 2308, + [2387] = 2366, + [2388] = 2308, + [2389] = 2308, + [2390] = 2289, + [2391] = 2290, + [2392] = 2281, + [2393] = 2306, + [2394] = 2282, + [2395] = 2282, + [2396] = 2306, + [2397] = 2285, + [2398] = 2283, + [2399] = 2284, + [2400] = 2290, + [2401] = 2290, + [2402] = 2306, + [2403] = 2289, + [2404] = 2285, + [2405] = 2293, + [2406] = 2406, + [2407] = 2306, + [2408] = 2281, + [2409] = 2282, }; static const TSCharacterRange aux_sym_key_value_value_token1_character_set_1[] = { @@ -3529,368 +3972,391 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(2177); + if (eof) ADVANCE(2182); ADVANCE_MAP( - '\t', 2229, - '\n', 2225, - '\r', 2226, - ' ', 2229, - '!', 4298, - '"', 2185, - '#', 4298, - '$', 4298, - '%', 2188, - '&', 2267, - '\'', 2191, - '(', 4298, - ')', 4298, - '*', 4298, - '+', 4298, - ',', 4298, - '-', 2269, - '.', 2271, - '/', 4298, - ':', 4298, - ';', 4298, - '<', 2182, - '=', 2202, - '>', 2183, - '?', 4298, - '@', 4298, - '[', 4298, - '\\', 2210, - ']', 4298, - '^', 2216, - '_', 2238, - '`', 2218, - 'f', 2230, - 't', 2234, - '{', 2219, - '|', 2220, - '}', 2221, - '~', 4298, + '\t', 2234, + '\n', 2230, + '\r', 2231, + ' ', 2234, + '!', 4311, + '"', 2190, + '#', 4311, + '$', 4311, + '%', 2193, + '&', 2279, + '\'', 2196, + '(', 4311, + ')', 4311, + '*', 4311, + '+', 4311, + ',', 4311, + '-', 2282, + '.', 2284, + '/', 4311, + ':', 4311, + ';', 4311, + '<', 2187, + '=', 2207, + '>', 2188, + '?', 4311, + '@', 4311, + '[', 2278, + '\\', 2215, + ']', 4311, + '^', 2221, + '_', 2243, + '`', 2223, + 'f', 2235, + 't', 2239, + '{', 2224, + '|', 2225, + '}', 2226, + '~', 4311, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4296); - if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(2237); - if (lookahead != 0) ADVANCE(4317); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4309); + if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(2242); + if (lookahead != 0) ADVANCE(4332); END_STATE(); case 1: ADVANCE_MAP( - '\t', 4314, - '\n', 2225, - '\r', 2226, - ' ', 4316, - '!', 2184, - '"', 2185, - '#', 2186, - '$', 2187, - '%', 2188, - '&', 2190, - '\'', 2191, - '(', 2223, - ')', 2224, - '*', 2192, - '+', 2193, - ',', 2194, - '-', 2195, - '.', 2197, - '/', 2199, - ':', 2200, - ';', 2201, - '<', 2181, - '=', 2202, - '>', 2183, - '?', 2203, - '@', 2204, - '[', 2205, - '\\', 2212, - ']', 2213, - '^', 2215, - '_', 2217, - '`', 2218, - '{', 2219, - '|', 2220, - '}', 2221, - '~', 2222, + '\t', 4327, + '\n', 2230, + '\r', 2231, + ' ', 4331, + '!', 2189, + '"', 2190, + '#', 2191, + '$', 2192, + '%', 2193, + '&', 2195, + '\'', 2196, + '(', 2228, + ')', 2229, + '*', 2197, + '+', 2198, + ',', 2199, + '-', 2200, + '.', 2202, + '/', 2204, + ':', 2205, + ';', 2206, + '<', 2186, + '=', 2207, + '>', 2188, + '?', 2208, + '@', 2209, + '[', 2210, + '\\', 2217, + ']', 2218, + '^', 2220, + '_', 2222, + '`', 2223, + '{', 2224, + '|', 2225, + '}', 2226, + '~', 2227, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4318); - if (lookahead != 0) ADVANCE(4317); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4333); + if (lookahead != 0) ADVANCE(4332); END_STATE(); case 2: ADVANCE_MAP( - '\t', 4314, - '\n', 2225, - '\r', 2226, - ' ', 4316, - '!', 2184, - '"', 2185, - '#', 2186, - '$', 2187, - '%', 2188, - '&', 2189, - '\'', 2191, - '(', 2223, - ')', 2224, - '*', 2192, - '+', 2193, - ',', 2194, - '-', 2195, - '.', 2197, - '/', 2199, - ':', 2200, - ';', 2201, - '<', 2181, - '=', 2202, - '>', 2183, - '?', 2203, - '@', 2204, - '[', 2205, - '\\', 2208, - ']', 2213, - '^', 2215, - '_', 2217, - '`', 2218, - '{', 2219, - '|', 2220, - '}', 2221, - '~', 2222, + '\t', 4327, + '\n', 2230, + '\r', 2231, + ' ', 4331, + '!', 2189, + '"', 2190, + '#', 2191, + '$', 2192, + '%', 2193, + '&', 2194, + '\'', 2196, + '(', 2228, + ')', 2229, + '*', 2197, + '+', 2198, + ',', 2199, + '-', 2200, + '.', 2202, + '/', 2204, + ':', 2205, + ';', 2206, + '<', 2186, + '=', 2207, + '>', 2188, + '?', 2208, + '@', 2209, + '[', 2210, + '\\', 2213, + ']', 2218, + '^', 2220, + '_', 2222, + '`', 2223, + '{', 2224, + '|', 2225, + '}', 2226, + '~', 2227, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4318); - if (lookahead != 0) ADVANCE(4317); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4333); + if (lookahead != 0) ADVANCE(4332); END_STATE(); case 3: ADVANCE_MAP( - '\t', 4314, - '\n', 2225, - '\r', 2226, - ' ', 4316, - '"', 2185, - '\'', 2191, - '(', 2223, - ')', 2224, - '=', 2202, + '\t', 4327, + '\n', 2230, + '\r', 2231, + ' ', 4331, + '"', 2190, + '\'', 2196, + '(', 2228, + ')', 2229, + '=', 2207, ); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2266); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2276); END_STATE(); case 4: ADVANCE_MAP( - '\t', 4314, - ' ', 4316, - '"', 9, - '\'', 11, - '-', 2272, - '0', 4302, - 'f', 2251, - 't', 2255, + '\t', 4327, + '\n', 2230, + '\r', 2231, + ' ', 4330, + '!', 2189, + '"', 2190, + '#', 2191, + '$', 2192, + '%', 2193, + '&', 2195, + '\'', 2196, + '(', 2228, + ')', 2229, + '*', 2197, + '+', 2198, + ',', 2199, + '-', 2201, + '.', 2203, + '/', 2204, + ':', 2205, + ';', 2206, + '<', 2187, + '=', 2207, + '>', 2188, + '?', 2208, + '[', 2211, + '\\', 2217, + ']', 2254, + '^', 2221, + '_', 2222, + '`', 2223, + '{', 2224, + '|', 2225, + '~', 2227, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4303); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4333); + if (lookahead != 0 && + (lookahead < ' ' || '@' < lookahead) && + (lookahead < '{' || '~' < lookahead)) ADVANCE(4332); + END_STATE(); + case 5: + ADVANCE_MAP( + '\t', 4327, + ' ', 4331, + '"', 11, + '\'', 13, + '-', 2285, + '0', 4315, + 'f', 2261, + 't', 2265, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4316); if (('!' <= lookahead && lookahead <= '$') || ('&' <= lookahead && lookahead <= ';') || lookahead == '?' || lookahead == '@' || lookahead == '[' || lookahead == ']' || - lookahead == '~') ADVANCE(2517); + lookahead == '~') ADVANCE(2530); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2258); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2268); END_STATE(); - case 5: + case 6: ADVANCE_MAP( - '\n', 2225, - '\r', 2226, - '!', 2184, - '"', 2185, - '#', 2186, - '$', 2187, - '%', 2188, - '&', 2189, - '\'', 2191, - '(', 2223, - ')', 2224, - '*', 2192, - '+', 2193, - ',', 2194, - '-', 2195, - '.', 2197, - '/', 2199, - ':', 2200, - ';', 2201, - '<', 2181, - '=', 2202, - '>', 2183, - '?', 2203, - '@', 2204, - '[', 2205, - '\\', 2211, - ']', 2213, - '^', 2215, - '_', 2217, - '`', 2218, - '{', 2219, - '|', 2220, - '}', 2221, - '~', 2222, - '\t', 2229, - ' ', 2229, + '\n', 2230, + '\r', 2231, + '!', 2189, + '"', 2190, + '#', 2191, + '$', 2192, + '%', 2193, + '&', 2194, + '\'', 2196, + '(', 2228, + ')', 2229, + '*', 2197, + '+', 2198, + ',', 2199, + '-', 2200, + '.', 2202, + '/', 2204, + ':', 2205, + ';', 2206, + '<', 2186, + '=', 2207, + '>', 2188, + '?', 2208, + '@', 2209, + '[', 2210, + '\\', 2216, + ']', 2218, + '^', 2220, + '_', 2222, + '`', 2223, + '{', 2224, + '|', 2225, + '}', 2226, + '~', 2227, + '\t', 2234, + ' ', 2234, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4318); - if (lookahead != 0) ADVANCE(4317); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4333); + if (lookahead != 0) ADVANCE(4332); END_STATE(); - case 6: + case 7: ADVANCE_MAP( - '\n', 2225, - '\r', 2226, - '!', 2184, - '"', 2185, - '#', 2186, - '$', 2187, - '%', 2188, - '&', 2189, - '\'', 2191, - '(', 2223, - ')', 2224, - '*', 2192, - '+', 2193, - ',', 2194, - '-', 2195, - '.', 2197, - '/', 2199, - ':', 2200, - ';', 2201, - '<', 2181, - '=', 2202, - '>', 2183, - '?', 2203, - '@', 2204, - '[', 2205, - '\\', 2209, - ']', 2213, - '^', 2215, - '_', 2217, - '`', 2218, - '{', 2219, - '|', 2220, - '}', 2221, - '~', 2222, - '\t', 2229, - ' ', 2229, + '\n', 2230, + '\r', 2231, + '!', 2189, + '"', 2190, + '#', 2191, + '$', 2192, + '%', 2193, + '&', 2194, + '\'', 2196, + '(', 2228, + ')', 2229, + '*', 2197, + '+', 2198, + ',', 2199, + '-', 2200, + '.', 2202, + '/', 2204, + ':', 2205, + ';', 2206, + '<', 2186, + '=', 2207, + '>', 2188, + '?', 2208, + '@', 2209, + '[', 2210, + '\\', 2214, + ']', 2218, + '^', 2220, + '_', 2222, + '`', 2223, + '{', 2224, + '|', 2225, + '}', 2226, + '~', 2227, + '\t', 2234, + ' ', 2234, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4318); - if (lookahead != 0) ADVANCE(4317); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4333); + if (lookahead != 0) ADVANCE(4332); END_STATE(); - case 7: - if (lookahead == '\n') ADVANCE(2225); - if (lookahead == '\r') ADVANCE(2227); - if (lookahead == '[') ADVANCE(2207); - if (lookahead == '\\') ADVANCE(2166); - if (lookahead == ']') ADVANCE(2214); + case 8: + if (lookahead == '\n') ADVANCE(2230); + if (lookahead == '\r') ADVANCE(2232); + if (lookahead == '[') ADVANCE(2212); + if (lookahead == '\\') ADVANCE(2171); + if (lookahead == ']') ADVANCE(2219); if (lookahead != 0 && - lookahead != '$') ADVANCE(2246); + lookahead != '$') ADVANCE(2251); END_STATE(); - case 8: - if (lookahead == '"') ADVANCE(2185); - if (lookahead == '\'') ADVANCE(2191); + case 9: + if (lookahead == '!') ADVANCE(2256); + END_STATE(); + case 10: + if (lookahead == '"') ADVANCE(2190); + if (lookahead == '\'') ADVANCE(2196); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(2229); + lookahead == ' ') ADVANCE(2234); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && (lookahead < '<' || '>' < lookahead) && lookahead != '`' && - lookahead != '}') ADVANCE(2243); + lookahead != '}') ADVANCE(2248); END_STATE(); - case 9: - if (lookahead == '"') ADVANCE(4301); - if (lookahead == '\\') ADVANCE(2174); + case 11: + if (lookahead == '"') ADVANCE(4314); + if (lookahead == '\\') ADVANCE(2179); if (lookahead != 0 && - lookahead != '\n') ADVANCE(9); + lookahead != '\n') ADVANCE(11); END_STATE(); - case 10: - if (lookahead == '#') ADVANCE(2172); - if (lookahead == '.') ADVANCE(2171); - if (lookahead == '}') ADVANCE(2221); + case 12: + if (lookahead == '#') ADVANCE(2177); + if (lookahead == '.') ADVANCE(2176); + if (lookahead == '}') ADVANCE(2226); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(2229); + lookahead == ' ') ADVANCE(2234); if (lookahead == '<' || - lookahead == '=') ADVANCE(2167); + lookahead == '=') ADVANCE(2172); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2240); - END_STATE(); - case 11: - if (lookahead == '\'') ADVANCE(4300); - if (lookahead == '\\') ADVANCE(2175); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(11); - END_STATE(); - case 12: - if (lookahead == '-') ADVANCE(133); - if (lookahead == '.') ADVANCE(2168); - if (lookahead == '>') ADVANCE(4313); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(132); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2245); END_STATE(); case 13: - if (lookahead == '-') ADVANCE(137); - if (lookahead == '0') ADVANCE(4304); - if (lookahead == 'f') ADVANCE(2259); - if (lookahead == 't') ADVANCE(2263); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4305); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2266); + if (lookahead == '\'') ADVANCE(4313); + if (lookahead == '\\') ADVANCE(2180); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(13); END_STATE(); case 14: - if (lookahead == '-') ADVANCE(2169); - if (lookahead == '.') ADVANCE(2168); - if (lookahead == '>') ADVANCE(4313); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(135); + if (lookahead == '+') ADVANCE(2253); END_STATE(); case 15: - if (lookahead == '-') ADVANCE(2169); + if (lookahead == '-') ADVANCE(137); + if (lookahead == '.') ADVANCE(2173); + if (lookahead == '>') ADVANCE(4326); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(135); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(136); END_STATE(); case 16: - if (lookahead == '-') ADVANCE(19); - if (lookahead == '.') ADVANCE(2168); - if (lookahead == '>') ADVANCE(4313); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(18); + if (lookahead == '-') ADVANCE(2255); END_STATE(); case 17: - if (lookahead == '-') ADVANCE(19); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(18); + if (lookahead == '-') ADVANCE(141); + if (lookahead == '0') ADVANCE(4317); + if (lookahead == 'f') ADVANCE(2269); + if (lookahead == 't') ADVANCE(2273); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4318); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2276); END_STATE(); case 18: - if (lookahead == '-') ADVANCE(15); - if (lookahead == '.') ADVANCE(2168); - if (lookahead == '>') ADVANCE(4313); + if (lookahead == '-') ADVANCE(2174); + if (lookahead == '.') ADVANCE(2173); + if (lookahead == '>') ADVANCE(4326); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(14); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(139); END_STATE(); case 19: - if (lookahead == '-') ADVANCE(15); + if (lookahead == '-') ADVANCE(2174); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(14); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(139); END_STATE(); case 20: if (lookahead == '-') ADVANCE(23); - if (lookahead == '.') ADVANCE(2168); - if (lookahead == '>') ADVANCE(4313); + if (lookahead == '.') ADVANCE(2173); + if (lookahead == '>') ADVANCE(4326); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(22); @@ -3902,23 +4368,23 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'z')) ADVANCE(22); END_STATE(); case 22: - if (lookahead == '-') ADVANCE(17); - if (lookahead == '.') ADVANCE(2168); - if (lookahead == '>') ADVANCE(4313); + if (lookahead == '-') ADVANCE(19); + if (lookahead == '.') ADVANCE(2173); + if (lookahead == '>') ADVANCE(4326); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(16); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(18); END_STATE(); case 23: - if (lookahead == '-') ADVANCE(17); + if (lookahead == '-') ADVANCE(19); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(16); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(18); END_STATE(); case 24: if (lookahead == '-') ADVANCE(27); - if (lookahead == '.') ADVANCE(2168); - if (lookahead == '>') ADVANCE(4313); + if (lookahead == '.') ADVANCE(2173); + if (lookahead == '>') ADVANCE(4326); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(26); @@ -3931,8 +4397,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 26: if (lookahead == '-') ADVANCE(21); - if (lookahead == '.') ADVANCE(2168); - if (lookahead == '>') ADVANCE(4313); + if (lookahead == '.') ADVANCE(2173); + if (lookahead == '>') ADVANCE(4326); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(20); @@ -3945,8 +4411,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 28: if (lookahead == '-') ADVANCE(31); - if (lookahead == '.') ADVANCE(2168); - if (lookahead == '>') ADVANCE(4313); + if (lookahead == '.') ADVANCE(2173); + if (lookahead == '>') ADVANCE(4326); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(30); @@ -3959,8 +4425,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 30: if (lookahead == '-') ADVANCE(25); - if (lookahead == '.') ADVANCE(2168); - if (lookahead == '>') ADVANCE(4313); + if (lookahead == '.') ADVANCE(2173); + if (lookahead == '>') ADVANCE(4326); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(24); @@ -3973,8 +4439,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 32: if (lookahead == '-') ADVANCE(35); - if (lookahead == '.') ADVANCE(2168); - if (lookahead == '>') ADVANCE(4313); + if (lookahead == '.') ADVANCE(2173); + if (lookahead == '>') ADVANCE(4326); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(34); @@ -3987,8 +4453,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 34: if (lookahead == '-') ADVANCE(29); - if (lookahead == '.') ADVANCE(2168); - if (lookahead == '>') ADVANCE(4313); + if (lookahead == '.') ADVANCE(2173); + if (lookahead == '>') ADVANCE(4326); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(28); @@ -4001,8 +4467,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 36: if (lookahead == '-') ADVANCE(39); - if (lookahead == '.') ADVANCE(2168); - if (lookahead == '>') ADVANCE(4313); + if (lookahead == '.') ADVANCE(2173); + if (lookahead == '>') ADVANCE(4326); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(38); @@ -4015,8 +4481,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 38: if (lookahead == '-') ADVANCE(33); - if (lookahead == '.') ADVANCE(2168); - if (lookahead == '>') ADVANCE(4313); + if (lookahead == '.') ADVANCE(2173); + if (lookahead == '>') ADVANCE(4326); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(32); @@ -4029,8 +4495,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 40: if (lookahead == '-') ADVANCE(43); - if (lookahead == '.') ADVANCE(2168); - if (lookahead == '>') ADVANCE(4313); + if (lookahead == '.') ADVANCE(2173); + if (lookahead == '>') ADVANCE(4326); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(42); @@ -4043,8 +4509,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 42: if (lookahead == '-') ADVANCE(37); - if (lookahead == '.') ADVANCE(2168); - if (lookahead == '>') ADVANCE(4313); + if (lookahead == '.') ADVANCE(2173); + if (lookahead == '>') ADVANCE(4326); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(36); @@ -4057,8 +4523,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 44: if (lookahead == '-') ADVANCE(47); - if (lookahead == '.') ADVANCE(2168); - if (lookahead == '>') ADVANCE(4313); + if (lookahead == '.') ADVANCE(2173); + if (lookahead == '>') ADVANCE(4326); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(46); @@ -4071,8 +4537,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 46: if (lookahead == '-') ADVANCE(41); - if (lookahead == '.') ADVANCE(2168); - if (lookahead == '>') ADVANCE(4313); + if (lookahead == '.') ADVANCE(2173); + if (lookahead == '>') ADVANCE(4326); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(40); @@ -4085,8 +4551,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 48: if (lookahead == '-') ADVANCE(51); - if (lookahead == '.') ADVANCE(2168); - if (lookahead == '>') ADVANCE(4313); + if (lookahead == '.') ADVANCE(2173); + if (lookahead == '>') ADVANCE(4326); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(50); @@ -4099,8 +4565,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 50: if (lookahead == '-') ADVANCE(45); - if (lookahead == '.') ADVANCE(2168); - if (lookahead == '>') ADVANCE(4313); + if (lookahead == '.') ADVANCE(2173); + if (lookahead == '>') ADVANCE(4326); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(44); @@ -4113,8 +4579,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 52: if (lookahead == '-') ADVANCE(55); - if (lookahead == '.') ADVANCE(2168); - if (lookahead == '>') ADVANCE(4313); + if (lookahead == '.') ADVANCE(2173); + if (lookahead == '>') ADVANCE(4326); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(54); @@ -4127,8 +4593,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 54: if (lookahead == '-') ADVANCE(49); - if (lookahead == '.') ADVANCE(2168); - if (lookahead == '>') ADVANCE(4313); + if (lookahead == '.') ADVANCE(2173); + if (lookahead == '>') ADVANCE(4326); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(48); @@ -4141,8 +4607,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 56: if (lookahead == '-') ADVANCE(59); - if (lookahead == '.') ADVANCE(2168); - if (lookahead == '>') ADVANCE(4313); + if (lookahead == '.') ADVANCE(2173); + if (lookahead == '>') ADVANCE(4326); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(58); @@ -4155,8 +4621,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 58: if (lookahead == '-') ADVANCE(53); - if (lookahead == '.') ADVANCE(2168); - if (lookahead == '>') ADVANCE(4313); + if (lookahead == '.') ADVANCE(2173); + if (lookahead == '>') ADVANCE(4326); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(52); @@ -4169,8 +4635,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 60: if (lookahead == '-') ADVANCE(63); - if (lookahead == '.') ADVANCE(2168); - if (lookahead == '>') ADVANCE(4313); + if (lookahead == '.') ADVANCE(2173); + if (lookahead == '>') ADVANCE(4326); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(62); @@ -4183,8 +4649,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 62: if (lookahead == '-') ADVANCE(57); - if (lookahead == '.') ADVANCE(2168); - if (lookahead == '>') ADVANCE(4313); + if (lookahead == '.') ADVANCE(2173); + if (lookahead == '>') ADVANCE(4326); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(56); @@ -4197,8 +4663,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 64: if (lookahead == '-') ADVANCE(67); - if (lookahead == '.') ADVANCE(2168); - if (lookahead == '>') ADVANCE(4313); + if (lookahead == '.') ADVANCE(2173); + if (lookahead == '>') ADVANCE(4326); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(66); @@ -4211,8 +4677,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 66: if (lookahead == '-') ADVANCE(61); - if (lookahead == '.') ADVANCE(2168); - if (lookahead == '>') ADVANCE(4313); + if (lookahead == '.') ADVANCE(2173); + if (lookahead == '>') ADVANCE(4326); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(60); @@ -4225,8 +4691,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 68: if (lookahead == '-') ADVANCE(71); - if (lookahead == '.') ADVANCE(2168); - if (lookahead == '>') ADVANCE(4313); + if (lookahead == '.') ADVANCE(2173); + if (lookahead == '>') ADVANCE(4326); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(70); @@ -4239,8 +4705,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 70: if (lookahead == '-') ADVANCE(65); - if (lookahead == '.') ADVANCE(2168); - if (lookahead == '>') ADVANCE(4313); + if (lookahead == '.') ADVANCE(2173); + if (lookahead == '>') ADVANCE(4326); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(64); @@ -4253,8 +4719,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 72: if (lookahead == '-') ADVANCE(75); - if (lookahead == '.') ADVANCE(2168); - if (lookahead == '>') ADVANCE(4313); + if (lookahead == '.') ADVANCE(2173); + if (lookahead == '>') ADVANCE(4326); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(74); @@ -4267,8 +4733,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 74: if (lookahead == '-') ADVANCE(69); - if (lookahead == '.') ADVANCE(2168); - if (lookahead == '>') ADVANCE(4313); + if (lookahead == '.') ADVANCE(2173); + if (lookahead == '>') ADVANCE(4326); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(68); @@ -4281,8 +4747,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 76: if (lookahead == '-') ADVANCE(79); - if (lookahead == '.') ADVANCE(2168); - if (lookahead == '>') ADVANCE(4313); + if (lookahead == '.') ADVANCE(2173); + if (lookahead == '>') ADVANCE(4326); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(78); @@ -4295,8 +4761,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 78: if (lookahead == '-') ADVANCE(73); - if (lookahead == '.') ADVANCE(2168); - if (lookahead == '>') ADVANCE(4313); + if (lookahead == '.') ADVANCE(2173); + if (lookahead == '>') ADVANCE(4326); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(72); @@ -4309,8 +4775,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 80: if (lookahead == '-') ADVANCE(83); - if (lookahead == '.') ADVANCE(2168); - if (lookahead == '>') ADVANCE(4313); + if (lookahead == '.') ADVANCE(2173); + if (lookahead == '>') ADVANCE(4326); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(82); @@ -4323,8 +4789,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 82: if (lookahead == '-') ADVANCE(77); - if (lookahead == '.') ADVANCE(2168); - if (lookahead == '>') ADVANCE(4313); + if (lookahead == '.') ADVANCE(2173); + if (lookahead == '>') ADVANCE(4326); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(76); @@ -4337,8 +4803,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 84: if (lookahead == '-') ADVANCE(87); - if (lookahead == '.') ADVANCE(2168); - if (lookahead == '>') ADVANCE(4313); + if (lookahead == '.') ADVANCE(2173); + if (lookahead == '>') ADVANCE(4326); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(86); @@ -4351,8 +4817,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 86: if (lookahead == '-') ADVANCE(81); - if (lookahead == '.') ADVANCE(2168); - if (lookahead == '>') ADVANCE(4313); + if (lookahead == '.') ADVANCE(2173); + if (lookahead == '>') ADVANCE(4326); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(80); @@ -4365,8 +4831,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 88: if (lookahead == '-') ADVANCE(91); - if (lookahead == '.') ADVANCE(2168); - if (lookahead == '>') ADVANCE(4313); + if (lookahead == '.') ADVANCE(2173); + if (lookahead == '>') ADVANCE(4326); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(90); @@ -4379,8 +4845,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 90: if (lookahead == '-') ADVANCE(85); - if (lookahead == '.') ADVANCE(2168); - if (lookahead == '>') ADVANCE(4313); + if (lookahead == '.') ADVANCE(2173); + if (lookahead == '>') ADVANCE(4326); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(84); @@ -4393,8 +4859,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 92: if (lookahead == '-') ADVANCE(95); - if (lookahead == '.') ADVANCE(2168); - if (lookahead == '>') ADVANCE(4313); + if (lookahead == '.') ADVANCE(2173); + if (lookahead == '>') ADVANCE(4326); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(94); @@ -4407,8 +4873,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 94: if (lookahead == '-') ADVANCE(89); - if (lookahead == '.') ADVANCE(2168); - if (lookahead == '>') ADVANCE(4313); + if (lookahead == '.') ADVANCE(2173); + if (lookahead == '>') ADVANCE(4326); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(88); @@ -4421,8 +4887,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 96: if (lookahead == '-') ADVANCE(99); - if (lookahead == '.') ADVANCE(2168); - if (lookahead == '>') ADVANCE(4313); + if (lookahead == '.') ADVANCE(2173); + if (lookahead == '>') ADVANCE(4326); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(98); @@ -4435,8 +4901,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 98: if (lookahead == '-') ADVANCE(93); - if (lookahead == '.') ADVANCE(2168); - if (lookahead == '>') ADVANCE(4313); + if (lookahead == '.') ADVANCE(2173); + if (lookahead == '>') ADVANCE(4326); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(92); @@ -4449,8 +4915,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 100: if (lookahead == '-') ADVANCE(103); - if (lookahead == '.') ADVANCE(2168); - if (lookahead == '>') ADVANCE(4313); + if (lookahead == '.') ADVANCE(2173); + if (lookahead == '>') ADVANCE(4326); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(102); @@ -4463,8 +4929,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 102: if (lookahead == '-') ADVANCE(97); - if (lookahead == '.') ADVANCE(2168); - if (lookahead == '>') ADVANCE(4313); + if (lookahead == '.') ADVANCE(2173); + if (lookahead == '>') ADVANCE(4326); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(96); @@ -4477,8 +4943,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 104: if (lookahead == '-') ADVANCE(107); - if (lookahead == '.') ADVANCE(2168); - if (lookahead == '>') ADVANCE(4313); + if (lookahead == '.') ADVANCE(2173); + if (lookahead == '>') ADVANCE(4326); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(106); @@ -4491,8 +4957,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 106: if (lookahead == '-') ADVANCE(101); - if (lookahead == '.') ADVANCE(2168); - if (lookahead == '>') ADVANCE(4313); + if (lookahead == '.') ADVANCE(2173); + if (lookahead == '>') ADVANCE(4326); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(100); @@ -4505,8 +4971,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 108: if (lookahead == '-') ADVANCE(111); - if (lookahead == '.') ADVANCE(2168); - if (lookahead == '>') ADVANCE(4313); + if (lookahead == '.') ADVANCE(2173); + if (lookahead == '>') ADVANCE(4326); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); @@ -4519,8 +4985,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 110: if (lookahead == '-') ADVANCE(105); - if (lookahead == '.') ADVANCE(2168); - if (lookahead == '>') ADVANCE(4313); + if (lookahead == '.') ADVANCE(2173); + if (lookahead == '>') ADVANCE(4326); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(104); @@ -4533,8 +4999,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 112: if (lookahead == '-') ADVANCE(115); - if (lookahead == '.') ADVANCE(2168); - if (lookahead == '>') ADVANCE(4313); + if (lookahead == '.') ADVANCE(2173); + if (lookahead == '>') ADVANCE(4326); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(114); @@ -4547,8 +5013,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 114: if (lookahead == '-') ADVANCE(109); - if (lookahead == '.') ADVANCE(2168); - if (lookahead == '>') ADVANCE(4313); + if (lookahead == '.') ADVANCE(2173); + if (lookahead == '>') ADVANCE(4326); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(108); @@ -4561,8 +5027,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 116: if (lookahead == '-') ADVANCE(119); - if (lookahead == '.') ADVANCE(2168); - if (lookahead == '>') ADVANCE(4313); + if (lookahead == '.') ADVANCE(2173); + if (lookahead == '>') ADVANCE(4326); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(118); @@ -4575,8 +5041,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 118: if (lookahead == '-') ADVANCE(113); - if (lookahead == '.') ADVANCE(2168); - if (lookahead == '>') ADVANCE(4313); + if (lookahead == '.') ADVANCE(2173); + if (lookahead == '>') ADVANCE(4326); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(112); @@ -4589,8 +5055,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 120: if (lookahead == '-') ADVANCE(123); - if (lookahead == '.') ADVANCE(2168); - if (lookahead == '>') ADVANCE(4313); + if (lookahead == '.') ADVANCE(2173); + if (lookahead == '>') ADVANCE(4326); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(122); @@ -4603,8 +5069,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 122: if (lookahead == '-') ADVANCE(117); - if (lookahead == '.') ADVANCE(2168); - if (lookahead == '>') ADVANCE(4313); + if (lookahead == '.') ADVANCE(2173); + if (lookahead == '>') ADVANCE(4326); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(116); @@ -4617,8 +5083,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 124: if (lookahead == '-') ADVANCE(127); - if (lookahead == '.') ADVANCE(2168); - if (lookahead == '>') ADVANCE(4313); + if (lookahead == '.') ADVANCE(2173); + if (lookahead == '>') ADVANCE(4326); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(126); @@ -4631,8 +5097,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 126: if (lookahead == '-') ADVANCE(121); - if (lookahead == '.') ADVANCE(2168); - if (lookahead == '>') ADVANCE(4313); + if (lookahead == '.') ADVANCE(2173); + if (lookahead == '>') ADVANCE(4326); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(120); @@ -4645,8 +5111,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 128: if (lookahead == '-') ADVANCE(131); - if (lookahead == '.') ADVANCE(2168); - if (lookahead == '>') ADVANCE(4313); + if (lookahead == '.') ADVANCE(2173); + if (lookahead == '>') ADVANCE(4326); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(130); @@ -4659,8 +5125,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 130: if (lookahead == '-') ADVANCE(125); - if (lookahead == '.') ADVANCE(2168); - if (lookahead == '>') ADVANCE(4313); + if (lookahead == '.') ADVANCE(2173); + if (lookahead == '>') ADVANCE(4326); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(124); @@ -4672,69 +5138,97 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'z')) ADVANCE(124); END_STATE(); case 132: - if (lookahead == '-') ADVANCE(129); - if (lookahead == '.') ADVANCE(2168); - if (lookahead == '>') ADVANCE(4313); + if (lookahead == '-') ADVANCE(135); + if (lookahead == '.') ADVANCE(2173); + if (lookahead == '>') ADVANCE(4326); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(128); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(134); END_STATE(); case 133: - if (lookahead == '-') ADVANCE(129); + if (lookahead == '-') ADVANCE(135); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(128); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(134); END_STATE(); case 134: - if (lookahead == '.') ADVANCE(2168); - if (lookahead == '>') ADVANCE(4313); + if (lookahead == '-') ADVANCE(129); + if (lookahead == '.') ADVANCE(2173); + if (lookahead == '>') ADVANCE(4326); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(128); END_STATE(); case 135: - if (lookahead == '.') ADVANCE(2168); - if (lookahead == '>') ADVANCE(4313); + if (lookahead == '-') ADVANCE(129); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(134); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(128); END_STATE(); case 136: - if (lookahead == '.') ADVANCE(4321); + if (lookahead == '-') ADVANCE(133); + if (lookahead == '.') ADVANCE(2173); + if (lookahead == '>') ADVANCE(4326); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(132); END_STATE(); case 137: - if (lookahead == '0') ADVANCE(4304); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4305); + if (lookahead == '-') ADVANCE(133); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(132); END_STATE(); case 138: - if (lookahead == '1') ADVANCE(2144); - if (lookahead == '3') ADVANCE(141); + if (lookahead == '.') ADVANCE(2173); + if (lookahead == '>') ADVANCE(4326); END_STATE(); case 139: - if (lookahead == '1') ADVANCE(2158); - if (lookahead == ';') ADVANCE(2179); + if (lookahead == '.') ADVANCE(2173); + if (lookahead == '>') ADVANCE(4326); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(138); END_STATE(); case 140: - if (lookahead == '1') ADVANCE(367); - if (lookahead == '2') ADVANCE(2145); - if (lookahead == '3') ADVANCE(364); - if (lookahead == '4') ADVANCE(143); - if (lookahead == '5') ADVANCE(2146); - if (lookahead == '7') ADVANCE(144); + if (lookahead == '.') ADVANCE(4336); END_STATE(); case 141: - if (lookahead == '4') ADVANCE(146); + if (lookahead == '0') ADVANCE(4317); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4318); END_STATE(); case 142: - if (lookahead == '4') ADVANCE(146); - if (lookahead == 'f') ADVANCE(1654); + if (lookahead == '1') ADVANCE(2149); + if (lookahead == '3') ADVANCE(145); END_STATE(); case 143: - if (lookahead == '5') ADVANCE(146); + if (lookahead == '1') ADVANCE(2163); + if (lookahead == ';') ADVANCE(2184); END_STATE(); case 144: - if (lookahead == '8') ADVANCE(146); + if (lookahead == '1') ADVANCE(371); + if (lookahead == '2') ADVANCE(2150); + if (lookahead == '3') ADVANCE(368); + if (lookahead == '4') ADVANCE(147); + if (lookahead == '5') ADVANCE(2151); + if (lookahead == '7') ADVANCE(148); END_STATE(); case 145: - if (lookahead == ':') ADVANCE(380); - if (lookahead == '@') ADVANCE(2168); + if (lookahead == '4') ADVANCE(150); + END_STATE(); + case 146: + if (lookahead == '4') ADVANCE(150); + if (lookahead == 'f') ADVANCE(1659); + END_STATE(); + case 147: + if (lookahead == '5') ADVANCE(150); + END_STATE(); + case 148: + if (lookahead == '8') ADVANCE(150); + END_STATE(); + case 149: + if (lookahead == ':') ADVANCE(384); + if (lookahead == '@') ADVANCE(2173); if (lookahead == '!' || ('#' <= lookahead && lookahead <= '\'') || lookahead == '*' || @@ -4742,1335 +5236,1338 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '=' || lookahead == '?' || ('^' <= lookahead && lookahead <= '`') || - ('{' <= lookahead && lookahead <= '~')) ADVANCE(382); + ('{' <= lookahead && lookahead <= '~')) ADVANCE(387); if (lookahead == '+' || ('-' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(145); - END_STATE(); - case 146: - if (lookahead == ';') ADVANCE(2179); - END_STATE(); - case 147: - ADVANCE_MAP( - ';', 2179, - 'A', 579, - 'B', 569, - 'E', 274, - 'H', 532, - 'a', 805, - 'b', 570, - 'c', 597, - 'd', 789, - 'e', 271, - 'f', 1247, - 'g', 161, - 'h', 615, - 'j', 740, - 'l', 197, - 'm', 1230, - 'n', 452, - 'o', 540, - 'p', 619, - 'r', 573, - 's', 520, - 't', 224, - 'u', 1764, - 'v', 1057, - ); - END_STATE(); - case 148: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'A') ADVANCE(1755); - if (lookahead == 'a') ADVANCE(1748); - if (lookahead == 'd') ADVANCE(1584); - if (lookahead == 'q') ADVANCE(2065); - if (lookahead == 's') ADVANCE(964); - if (lookahead == 'x') ADVANCE(1289); - END_STATE(); - case 149: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'A') ADVANCE(1867); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(149); END_STATE(); case 150: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'A') ADVANCE(1867); - if (lookahead == 'V') ADVANCE(1058); + if (lookahead == ';') ADVANCE(2184); END_STATE(); case 151: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'B') ADVANCE(532); + ADVANCE_MAP( + ';', 2184, + 'A', 584, + 'B', 574, + 'E', 278, + 'H', 537, + 'a', 810, + 'b', 575, + 'c', 602, + 'd', 794, + 'e', 275, + 'f', 1252, + 'g', 165, + 'h', 620, + 'j', 745, + 'l', 201, + 'm', 1235, + 'n', 457, + 'o', 545, + 'p', 624, + 'r', 578, + 's', 525, + 't', 228, + 'u', 1769, + 'v', 1062, + ); END_STATE(); case 152: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'B') ADVANCE(532); - if (lookahead == 'D') ADVANCE(1638); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'A') ADVANCE(1760); + if (lookahead == 'a') ADVANCE(1753); + if (lookahead == 'd') ADVANCE(1589); + if (lookahead == 'q') ADVANCE(2070); + if (lookahead == 's') ADVANCE(969); + if (lookahead == 'x') ADVANCE(1294); END_STATE(); case 153: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'B') ADVANCE(532); - if (lookahead == 'E') ADVANCE(1726); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'A') ADVANCE(1872); END_STATE(); case 154: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'B') ADVANCE(532); - if (lookahead == 'L') ADVANCE(1060); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'A') ADVANCE(1872); + if (lookahead == 'V') ADVANCE(1063); END_STATE(); case 155: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'B') ADVANCE(532); - if (lookahead == 'R') ADVANCE(1311); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'B') ADVANCE(537); END_STATE(); case 156: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'B') ADVANCE(532); - if (lookahead == 'U') ADVANCE(1682); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'B') ADVANCE(537); + if (lookahead == 'D') ADVANCE(1643); END_STATE(); case 157: - ADVANCE_MAP( - ';', 2179, - 'C', 1649, - 'D', 1623, - 'E', 1358, - 'G', 1883, - 'H', 2076, - 'L', 1032, - 'N', 999, - 'P', 1844, - 'R', 1033, - 'S', 1727, - 'T', 1236, - 'V', 1072, - ); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'B') ADVANCE(537); + if (lookahead == 'E') ADVANCE(1731); END_STATE(); case 158: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'C') ADVANCE(558); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'B') ADVANCE(537); + if (lookahead == 'L') ADVANCE(1065); END_STATE(); case 159: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'D') ADVANCE(1584); - if (lookahead == 'E') ADVANCE(1726); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'B') ADVANCE(537); + if (lookahead == 'R') ADVANCE(1316); END_STATE(); case 160: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'D') ADVANCE(434); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'B') ADVANCE(537); + if (lookahead == 'U') ADVANCE(1687); END_STATE(); case 161: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'E') ADVANCE(146); - END_STATE(); - case 162: ADVANCE_MAP( - ';', 2179, - 'E', 146, - 'a', 1663, - 'c', 2054, - 'e', 223, - 'i', 1485, - 'n', 451, - 'o', 868, - 's', 1241, - 'u', 1795, + ';', 2184, + 'C', 1654, + 'D', 1628, + 'E', 1363, + 'G', 1888, + 'H', 2081, + 'L', 1037, + 'N', 1004, + 'P', 1849, + 'R', 1038, + 'S', 1732, + 'T', 1241, + 'V', 1077, ); END_STATE(); + case 162: + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'C') ADVANCE(563); + END_STATE(); case 163: - ADVANCE_MAP( - ';', 2179, - 'E', 146, - 'd', 1584, - 'e', 234, - 'm', 2061, - 'n', 2147, - 'p', 1434, - 'r', 569, - 's', 1012, - ); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'D') ADVANCE(1589); + if (lookahead == 'E') ADVANCE(1731); END_STATE(); case 164: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'E') ADVANCE(146); - if (lookahead == 'd') ADVANCE(1584); - if (lookahead == 'v') ADVANCE(2160); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'D') ADVANCE(439); END_STATE(); case 165: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'E') ADVANCE(146); - if (lookahead == 'e') ADVANCE(319); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'E') ADVANCE(150); END_STATE(); case 166: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'E') ADVANCE(146); - if (lookahead == 'i') ADVANCE(867); - if (lookahead == 'o') ADVANCE(1889); - if (lookahead == 'p') ADVANCE(1815); + ADVANCE_MAP( + ';', 2184, + 'E', 150, + 'a', 1668, + 'c', 2059, + 'e', 227, + 'i', 1490, + 'n', 456, + 'o', 873, + 's', 1246, + 'u', 1800, + ); END_STATE(); case 167: ADVANCE_MAP( - ';', 2179, - 'E', 291, - 'a', 807, - 'b', 1735, - 'c', 1277, - 'd', 1584, - 'e', 292, - 'f', 1736, - 'g', 274, - 'i', 1470, - 'j', 740, - 'l', 363, - 'n', 452, - 'o', 1666, - 'r', 523, - 's', 775, - 't', 225, - 'v', 1057, + ';', 2184, + 'E', 150, + 'd', 1589, + 'e', 238, + 'm', 2066, + 'n', 2152, + 'p', 1439, + 'r', 574, + 's', 1017, ); END_STATE(); case 168: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'E') ADVANCE(1726); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'E') ADVANCE(150); + if (lookahead == 'd') ADVANCE(1589); + if (lookahead == 'v') ADVANCE(2165); END_STATE(); case 169: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'E') ADVANCE(1726); - if (lookahead == 'F') ADVANCE(2083); - if (lookahead == 'G') ADVANCE(1876); - if (lookahead == 'L') ADVANCE(958); - if (lookahead == 'S') ADVANCE(1444); - if (lookahead == 'T') ADVANCE(1304); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'E') ADVANCE(150); + if (lookahead == 'e') ADVANCE(323); END_STATE(); case 170: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'E') ADVANCE(1726); - if (lookahead == 'F') ADVANCE(2083); - if (lookahead == 'T') ADVANCE(1304); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'E') ADVANCE(150); + if (lookahead == 'i') ADVANCE(872); + if (lookahead == 'o') ADVANCE(1894); + if (lookahead == 'p') ADVANCE(1820); END_STATE(); case 171: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'E') ADVANCE(1726); - if (lookahead == 'G') ADVANCE(1876); - if (lookahead == 'L') ADVANCE(958); - if (lookahead == 'S') ADVANCE(1444); - if (lookahead == 'T') ADVANCE(1304); + ADVANCE_MAP( + ';', 2184, + 'E', 295, + 'a', 812, + 'b', 1740, + 'c', 1282, + 'd', 1589, + 'e', 296, + 'f', 1741, + 'g', 278, + 'i', 1475, + 'j', 745, + 'l', 367, + 'n', 457, + 'o', 1671, + 'r', 528, + 's', 780, + 't', 229, + 'v', 1062, + ); END_STATE(); case 172: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'E') ADVANCE(1726); - if (lookahead == 'S') ADVANCE(1444); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'E') ADVANCE(1731); END_STATE(); case 173: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'E') ADVANCE(1726); - if (lookahead == 'S') ADVANCE(1444); - if (lookahead == 'T') ADVANCE(1304); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'E') ADVANCE(1731); + if (lookahead == 'F') ADVANCE(2088); + if (lookahead == 'G') ADVANCE(1881); + if (lookahead == 'L') ADVANCE(963); + if (lookahead == 'S') ADVANCE(1449); + if (lookahead == 'T') ADVANCE(1309); END_STATE(); case 174: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'G') ADVANCE(146); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'E') ADVANCE(1731); + if (lookahead == 'F') ADVANCE(2088); + if (lookahead == 'T') ADVANCE(1309); END_STATE(); case 175: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'H') ADVANCE(146); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'E') ADVANCE(1731); + if (lookahead == 'G') ADVANCE(1881); + if (lookahead == 'L') ADVANCE(963); + if (lookahead == 'S') ADVANCE(1449); + if (lookahead == 'T') ADVANCE(1309); END_STATE(); case 176: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'I') ADVANCE(1566); - if (lookahead == 'S') ADVANCE(2047); - if (lookahead == 'U') ADVANCE(1547); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'E') ADVANCE(1731); + if (lookahead == 'S') ADVANCE(1449); END_STATE(); case 177: - ADVANCE_MAP( - ';', 2179, - 'J', 740, - 'a', 806, - 'c', 599, - 'e', 1089, - 'f', 1736, - 'l', 251, - 'm', 1229, - 'o', 1514, - 's', 772, - 'T', 146, - 't', 146, - ); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'E') ADVANCE(1731); + if (lookahead == 'S') ADVANCE(1449); + if (lookahead == 'T') ADVANCE(1309); END_STATE(); case 178: - ADVANCE_MAP( - ';', 2179, - 'J', 740, - 'a', 1486, - 'b', 1735, - 'c', 968, - 'd', 1584, - 'f', 1736, - 'o', 1666, - 'r', 984, - 's', 764, - 'T', 146, - 'g', 146, - 't', 146, - ); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'G') ADVANCE(150); END_STATE(); case 179: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'L') ADVANCE(958); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'H') ADVANCE(150); END_STATE(); case 180: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'N') ADVANCE(146); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'I') ADVANCE(1571); + if (lookahead == 'S') ADVANCE(2052); + if (lookahead == 'U') ADVANCE(1552); END_STATE(); case 181: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'P') ADVANCE(146); + ADVANCE_MAP( + ';', 2184, + 'J', 745, + 'a', 811, + 'c', 604, + 'e', 1094, + 'f', 1741, + 'l', 255, + 'm', 1234, + 'o', 1519, + 's', 777, + 'T', 150, + 't', 150, + ); END_STATE(); case 182: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'P') ADVANCE(1434); + ADVANCE_MAP( + ';', 2184, + 'J', 745, + 'a', 1491, + 'b', 1740, + 'c', 973, + 'd', 1589, + 'f', 1741, + 'o', 1671, + 'r', 989, + 's', 769, + 'T', 150, + 'g', 150, + 't', 150, + ); END_STATE(); case 183: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'T') ADVANCE(146); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'L') ADVANCE(963); END_STATE(); case 184: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'T') ADVANCE(1304); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'N') ADVANCE(150); END_STATE(); case 185: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'Y') ADVANCE(146); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'P') ADVANCE(150); END_STATE(); case 186: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'a') ADVANCE(770); - if (lookahead == 'p') ADVANCE(1400); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'P') ADVANCE(1439); END_STATE(); case 187: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'a') ADVANCE(1121); - if (lookahead == 'o') ADVANCE(1999); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'T') ADVANCE(150); END_STATE(); case 188: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'a') ADVANCE(2162); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'T') ADVANCE(1309); END_STATE(); case 189: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'a') ADVANCE(764); - if (lookahead == 'l') ADVANCE(146); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'Y') ADVANCE(150); END_STATE(); case 190: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'a') ADVANCE(1736); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'a') ADVANCE(775); + if (lookahead == 'p') ADVANCE(1405); END_STATE(); case 191: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'a') ADVANCE(778); - if (lookahead == 'p') ADVANCE(146); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'a') ADVANCE(1126); + if (lookahead == 'o') ADVANCE(2004); END_STATE(); case 192: - ADVANCE_MAP( - ';', 2179, - 'a', 1664, - 'c', 2054, - 'e', 243, - 'i', 1803, - 'n', 451, - 'p', 1659, - 's', 1241, - 'E', 146, - 'y', 146, - ); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'a') ADVANCE(2167); END_STATE(); case 193: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'a') ADVANCE(299); - if (lookahead == 's') ADVANCE(1242); - if (lookahead == 't') ADVANCE(146); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'a') ADVANCE(769); + if (lookahead == 'l') ADVANCE(150); END_STATE(); case 194: - ADVANCE_MAP( - ';', 2179, - 'a', 1663, - 'b', 270, - 'f', 1889, - 'h', 1325, - 'l', 1663, - 'p', 1344, - 's', 1241, - 't', 1344, - 'c', 146, - 'w', 146, - ); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'a') ADVANCE(1741); END_STATE(); case 195: - ADVANCE_MAP( - ';', 2179, - 'a', 836, - 'c', 1219, - 'd', 2156, - 'm', 303, - 's', 1241, - 't', 2107, - 'b', 146, - 'e', 146, - ); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'a') ADVANCE(783); + if (lookahead == 'p') ADVANCE(150); END_STATE(); case 196: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'a') ADVANCE(836); - if (lookahead == 'i') ADVANCE(867); - if (lookahead == 'o') ADVANCE(1889); - if (lookahead == 'p') ADVANCE(1809); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(146); + ADVANCE_MAP( + ';', 2184, + 'a', 1669, + 'c', 2059, + 'e', 247, + 'i', 1808, + 'n', 456, + 'p', 1664, + 's', 1246, + 'E', 150, + 'y', 150, + ); END_STATE(); case 197: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'a') ADVANCE(1755); - if (lookahead == 'c') ADVANCE(1635); - if (lookahead == 'h') ADVANCE(634); - if (lookahead == 't') ADVANCE(1771); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'a') ADVANCE(303); + if (lookahead == 's') ADVANCE(1247); + if (lookahead == 't') ADVANCE(150); END_STATE(); case 198: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'a') ADVANCE(1755); - if (lookahead == 'd') ADVANCE(266); - if (lookahead == 'i') ADVANCE(1123); - if (lookahead == 'o') ADVANCE(1736); - if (lookahead == 's') ADVANCE(1399); - if (lookahead == 'v') ADVANCE(146); + ADVANCE_MAP( + ';', 2184, + 'a', 1668, + 'b', 274, + 'f', 1894, + 'h', 1330, + 'l', 1668, + 'p', 1349, + 's', 1246, + 't', 1349, + 'c', 150, + 'w', 150, + ); END_STATE(); case 199: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'a') ADVANCE(1889); + ADVANCE_MAP( + ';', 2184, + 'a', 841, + 'c', 1224, + 'd', 2161, + 'm', 307, + 's', 1246, + 't', 2112, + 'b', 150, + 'e', 150, + ); END_STATE(); case 200: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'a') ADVANCE(1900); - if (lookahead == 'c') ADVANCE(1219); - if (lookahead == 'd') ADVANCE(1591); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'a') ADVANCE(841); + if (lookahead == 'i') ADVANCE(872); + if (lookahead == 'o') ADVANCE(1894); + if (lookahead == 'p') ADVANCE(1814); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(150); END_STATE(); case 201: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'a') ADVANCE(1344); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'a') ADVANCE(1760); + if (lookahead == 'c') ADVANCE(1640); + if (lookahead == 'h') ADVANCE(639); + if (lookahead == 't') ADVANCE(1776); END_STATE(); case 202: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'a') ADVANCE(1789); - if (lookahead == 'e') ADVANCE(907); - if (lookahead == 'i') ADVANCE(1803); - if (lookahead == 'y') ADVANCE(146); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'a') ADVANCE(1760); + if (lookahead == 'd') ADVANCE(270); + if (lookahead == 'i') ADVANCE(1128); + if (lookahead == 'o') ADVANCE(1741); + if (lookahead == 's') ADVANCE(1404); + if (lookahead == 'v') ADVANCE(150); END_STATE(); case 203: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'a') ADVANCE(1349); - if (lookahead == 'c') ADVANCE(1944); - if (lookahead == 'g') ADVANCE(146); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'a') ADVANCE(1894); END_STATE(); case 204: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'a') ADVANCE(1489); - if (lookahead == 'b') ADVANCE(1858); - if (lookahead == 'c') ADVANCE(562); - if (lookahead == 'd') ADVANCE(1584); - if (lookahead == 's') ADVANCE(146); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'a') ADVANCE(1905); + if (lookahead == 'c') ADVANCE(1224); + if (lookahead == 'd') ADVANCE(1596); END_STATE(); case 205: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'a') ADVANCE(1489); - if (lookahead == 's') ADVANCE(1399); - if (lookahead == 'd' || - lookahead == 'v') ADVANCE(146); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'a') ADVANCE(1349); END_STATE(); case 206: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'a') ADVANCE(829); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'a') ADVANCE(1794); + if (lookahead == 'e') ADVANCE(912); + if (lookahead == 'i') ADVANCE(1808); + if (lookahead == 'y') ADVANCE(150); END_STATE(); case 207: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'a') ADVANCE(1784); - if (lookahead == 'c') ADVANCE(1176); - if (lookahead == 'o') ADVANCE(1823); - if (lookahead == 'y') ADVANCE(146); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'a') ADVANCE(1354); + if (lookahead == 'c') ADVANCE(1949); + if (lookahead == 'g') ADVANCE(150); END_STATE(); case 208: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'a') ADVANCE(1369); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'a') ADVANCE(1494); + if (lookahead == 'b') ADVANCE(1863); + if (lookahead == 'c') ADVANCE(567); + if (lookahead == 'd') ADVANCE(1589); + if (lookahead == 's') ADVANCE(150); END_STATE(); case 209: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'a') ADVANCE(1752); - if (lookahead == 'f') ADVANCE(146); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'a') ADVANCE(1494); + if (lookahead == 's') ADVANCE(1404); + if (lookahead == 'd' || + lookahead == 'v') ADVANCE(150); END_STATE(); case 210: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'a') ADVANCE(1698); - if (lookahead == 'c') ADVANCE(2074); - if (lookahead == 'e') ADVANCE(1718); - if (lookahead == 'n') ADVANCE(656); - if (lookahead == 's') ADVANCE(1241); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'a') ADVANCE(834); END_STATE(); case 211: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'a') ADVANCE(1249); - if (lookahead == 'e') ADVANCE(328); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'a') ADVANCE(1789); + if (lookahead == 'c') ADVANCE(1181); + if (lookahead == 'o') ADVANCE(1828); + if (lookahead == 'y') ADVANCE(150); END_STATE(); case 212: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'a') ADVANCE(1443); - if (lookahead == 's') ADVANCE(1344); - if (lookahead == 't') ADVANCE(146); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'a') ADVANCE(1374); END_STATE(); case 213: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'b') ADVANCE(1584); - if (lookahead == 'c') ADVANCE(1219); - if (lookahead == 'f') ADVANCE(312); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'a') ADVANCE(1757); + if (lookahead == 'f') ADVANCE(150); END_STATE(); case 214: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'b') ADVANCE(146); - if (lookahead == 'd') ADVANCE(350); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'a') ADVANCE(1703); + if (lookahead == 'c') ADVANCE(2079); + if (lookahead == 'e') ADVANCE(1723); + if (lookahead == 'n') ADVANCE(661); + if (lookahead == 's') ADVANCE(1246); END_STATE(); case 215: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'b') ADVANCE(146); - if (lookahead == 'h') ADVANCE(1936); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'a') ADVANCE(1254); + if (lookahead == 'e') ADVANCE(332); END_STATE(); case 216: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'b') ADVANCE(190); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'a') ADVANCE(1448); + if (lookahead == 's') ADVANCE(1349); + if (lookahead == 't') ADVANCE(150); END_STATE(); case 217: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'b') ADVANCE(190); - if (lookahead == 'd') ADVANCE(146); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'b') ADVANCE(1589); + if (lookahead == 'c') ADVANCE(1224); + if (lookahead == 'f') ADVANCE(316); END_STATE(); case 218: - ADVANCE_MAP( - ';', 2179, - 'b', 270, - 'f', 1889, - 'h', 1325, - 'l', 1663, - 'p', 1344, - 's', 1241, - 't', 1344, - ); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'b') ADVANCE(150); + if (lookahead == 'd') ADVANCE(354); END_STATE(); case 219: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'b') ADVANCE(532); - if (lookahead == 'e') ADVANCE(1718); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'b') ADVANCE(150); + if (lookahead == 'h') ADVANCE(1941); END_STATE(); case 220: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'b') ADVANCE(1811); - if (lookahead == 'c') ADVANCE(562); - if (lookahead == 'd') ADVANCE(1584); - if (lookahead == 'o') ADVANCE(1736); - if (lookahead == 's') ADVANCE(146); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'b') ADVANCE(194); END_STATE(); case 221: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'c') ADVANCE(146); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'b') ADVANCE(194); + if (lookahead == 'd') ADVANCE(150); END_STATE(); case 222: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'c') ADVANCE(254); - if (lookahead == 'f') ADVANCE(1552); - if (lookahead == 'm') ADVANCE(1208); - if (lookahead == 's') ADVANCE(836); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(146); + ADVANCE_MAP( + ';', 2184, + 'b', 274, + 'f', 1894, + 'h', 1330, + 'l', 1668, + 'p', 1349, + 's', 1246, + 't', 1349, + ); END_STATE(); case 223: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'c') ADVANCE(210); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'b') ADVANCE(537); + if (lookahead == 'e') ADVANCE(1723); END_STATE(); case 224: - ADVANCE_MAP( - ';', 2179, - 'c', 749, - 'd', 1584, - 'h', 1785, - 'i', 1483, - 'l', 569, - 'q', 2066, - 'r', 493, - ); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'b') ADVANCE(1816); + if (lookahead == 'c') ADVANCE(567); + if (lookahead == 'd') ADVANCE(1589); + if (lookahead == 'o') ADVANCE(1741); + if (lookahead == 's') ADVANCE(150); END_STATE(); case 225: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'c') ADVANCE(749); - if (lookahead == 'd') ADVANCE(1584); - if (lookahead == 'l') ADVANCE(492); - if (lookahead == 'q') ADVANCE(2066); - if (lookahead == 'r') ADVANCE(557); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'c') ADVANCE(150); END_STATE(); case 226: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'c') ADVANCE(253); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'c') ADVANCE(258); + if (lookahead == 'f') ADVANCE(1557); + if (lookahead == 'm') ADVANCE(1213); + if (lookahead == 's') ADVANCE(841); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(150); END_STATE(); case 227: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'c') ADVANCE(748); - if (lookahead == 'd') ADVANCE(1628); - if (lookahead == 'l') ADVANCE(261); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'c') ADVANCE(214); END_STATE(); case 228: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'c') ADVANCE(748); - if (lookahead == 'd') ADVANCE(1629); - if (lookahead == 'g') ADVANCE(261); - if (lookahead == 's') ADVANCE(655); + ADVANCE_MAP( + ';', 2184, + 'c', 754, + 'd', 1589, + 'h', 1790, + 'i', 1488, + 'l', 574, + 'q', 2071, + 'r', 498, + ); END_STATE(); case 229: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'c') ADVANCE(586); - if (lookahead == 'e') ADVANCE(1154); - if (lookahead == 'l') ADVANCE(641); - if (lookahead == 'p') ADVANCE(1796); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'c') ADVANCE(754); + if (lookahead == 'd') ADVANCE(1589); + if (lookahead == 'l') ADVANCE(497); + if (lookahead == 'q') ADVANCE(2071); + if (lookahead == 'r') ADVANCE(562); END_STATE(); case 230: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'c') ADVANCE(1219); - if (lookahead == 'w') ADVANCE(146); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'c') ADVANCE(257); END_STATE(); case 231: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'c') ADVANCE(2054); - if (lookahead == 'e') ADVANCE(226); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'c') ADVANCE(753); + if (lookahead == 'd') ADVANCE(1633); + if (lookahead == 'l') ADVANCE(265); END_STATE(); case 232: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'c') ADVANCE(2054); - if (lookahead == 'e' || - lookahead == 'r') ADVANCE(146); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'c') ADVANCE(753); + if (lookahead == 'd') ADVANCE(1634); + if (lookahead == 'g') ADVANCE(265); + if (lookahead == 's') ADVANCE(660); END_STATE(); case 233: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'c') ADVANCE(676); - if (lookahead == 'f') ADVANCE(1264); - if (lookahead == 'o') ADVANCE(862); - if (lookahead == 't') ADVANCE(229); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'c') ADVANCE(591); + if (lookahead == 'e') ADVANCE(1159); + if (lookahead == 'l') ADVANCE(646); + if (lookahead == 'p') ADVANCE(1801); END_STATE(); case 234: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'd') ADVANCE(1584); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'c') ADVANCE(1224); + if (lookahead == 'w') ADVANCE(150); END_STATE(); case 235: - ADVANCE_MAP( - ';', 2179, - 'd', 1584, - 'e', 319, - 'g', 161, - 'l', 161, - 'n', 912, - 'p', 1434, - 'r', 569, - ); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'c') ADVANCE(2059); + if (lookahead == 'e') ADVANCE(230); END_STATE(); case 236: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'd') ADVANCE(1584); - if (lookahead == 's') ADVANCE(352); - if (lookahead == 'E' || - lookahead == 'v') ADVANCE(146); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'c') ADVANCE(2059); + if (lookahead == 'e' || + lookahead == 'r') ADVANCE(150); END_STATE(); case 237: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'd') ADVANCE(146); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'c') ADVANCE(681); + if (lookahead == 'f') ADVANCE(1269); + if (lookahead == 'o') ADVANCE(867); + if (lookahead == 't') ADVANCE(233); END_STATE(); case 238: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'd') ADVANCE(146); - if (lookahead == 'l') ADVANCE(912); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'd') ADVANCE(1589); END_STATE(); case 239: ADVANCE_MAP( - ';', 2179, - 'd', 1585, - 'e', 234, - 'h', 1902, - 'l', 569, - 'm', 2061, - 'n', 2147, - 'p', 1434, - 's', 1012, + ';', 2184, + 'd', 1589, + 'e', 323, + 'g', 165, + 'l', 165, + 'n', 917, + 'p', 1439, + 'r', 574, ); - if (('1' <= lookahead && lookahead <= '3') || - lookahead == 'E') ADVANCE(146); END_STATE(); case 240: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'd') ADVANCE(1577); - if (lookahead == 'l') ADVANCE(972); - if (lookahead == 'r') ADVANCE(1272); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'd') ADVANCE(1589); + if (lookahead == 's') ADVANCE(356); + if (lookahead == 'E' || + lookahead == 'v') ADVANCE(150); END_STATE(); case 241: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'd') ADVANCE(1577); - if (lookahead == 'l') ADVANCE(972); - if (lookahead == 'u') ADVANCE(1663); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'd') ADVANCE(150); END_STATE(); case 242: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'd') ADVANCE(1577); - if (lookahead == 'l') ADVANCE(1065); - if (lookahead == 'q') ADVANCE(146); - if (lookahead == 'r') ADVANCE(1315); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'd') ADVANCE(150); + if (lookahead == 'l') ADVANCE(917); END_STATE(); case 243: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'd') ADVANCE(1249); + ADVANCE_MAP( + ';', 2184, + 'd', 1590, + 'e', 238, + 'h', 1907, + 'l', 574, + 'm', 2066, + 'n', 2152, + 'p', 1439, + 's', 1017, + ); + if (('1' <= lookahead && lookahead <= '3') || + lookahead == 'E') ADVANCE(150); END_STATE(); case 244: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'e') ADVANCE(146); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'd') ADVANCE(1582); + if (lookahead == 'l') ADVANCE(977); + if (lookahead == 'r') ADVANCE(1277); END_STATE(); case 245: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'e') ADVANCE(146); - if (lookahead == 'l') ADVANCE(912); - if (lookahead == 'm') ADVANCE(1919); - if (lookahead == 'r') ADVANCE(1973); - if (lookahead == 's') ADVANCE(1686); - if (lookahead == 'z') ADVANCE(569); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'd') ADVANCE(1582); + if (lookahead == 'l') ADVANCE(977); + if (lookahead == 'u') ADVANCE(1668); END_STATE(); case 246: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'e') ADVANCE(146); - if (lookahead == 's') ADVANCE(1000); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'd') ADVANCE(1582); + if (lookahead == 'l') ADVANCE(1070); + if (lookahead == 'q') ADVANCE(150); + if (lookahead == 'r') ADVANCE(1320); END_STATE(); case 247: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'e') ADVANCE(1736); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'd') ADVANCE(1254); END_STATE(); case 248: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'e') ADVANCE(1719); - if (lookahead == 'm') ADVANCE(1301); - if (lookahead == 'p') ADVANCE(1434); - if (lookahead == 's') ADVANCE(1733); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'e') ADVANCE(150); END_STATE(); case 249: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'e') ADVANCE(1944); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'e') ADVANCE(150); + if (lookahead == 'l') ADVANCE(917); + if (lookahead == 'm') ADVANCE(1924); + if (lookahead == 'r') ADVANCE(1978); + if (lookahead == 's') ADVANCE(1691); + if (lookahead == 'z') ADVANCE(574); END_STATE(); case 250: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'e') ADVANCE(1147); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'e') ADVANCE(150); + if (lookahead == 's') ADVANCE(1005); END_STATE(); case 251: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'e') ADVANCE(1092); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'e') ADVANCE(1741); END_STATE(); case 252: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'e') ADVANCE(319); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'e') ADVANCE(1724); + if (lookahead == 'm') ADVANCE(1306); + if (lookahead == 'p') ADVANCE(1439); + if (lookahead == 's') ADVANCE(1738); END_STATE(); case 253: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'e') ADVANCE(1718); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'e') ADVANCE(1949); END_STATE(); case 254: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'e') ADVANCE(1718); - if (lookahead == 'l') ADVANCE(933); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'e') ADVANCE(1152); END_STATE(); case 255: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'e') ADVANCE(328); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'e') ADVANCE(1097); END_STATE(); case 256: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'e') ADVANCE(838); - if (lookahead == 'i') ADVANCE(1473); - if (lookahead == 'o') ADVANCE(891); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'e') ADVANCE(323); END_STATE(); case 257: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'e') ADVANCE(315); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'e') ADVANCE(1723); END_STATE(); case 258: - if (lookahead == ';') ADVANCE(2179); + if (lookahead == ';') ADVANCE(2184); if (lookahead == 'e') ADVANCE(1723); + if (lookahead == 'l') ADVANCE(938); END_STATE(); case 259: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'e') ADVANCE(1723); - if (lookahead == 'n') ADVANCE(977); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'e') ADVANCE(332); END_STATE(); case 260: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'e') ADVANCE(585); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'e') ADVANCE(843); + if (lookahead == 'i') ADVANCE(1478); + if (lookahead == 'o') ADVANCE(896); END_STATE(); case 261: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'e') ADVANCE(1889); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'e') ADVANCE(319); END_STATE(); case 262: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'e') ADVANCE(1920); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'e') ADVANCE(1728); END_STATE(); case 263: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'e') ADVANCE(1544); - if (lookahead == 'f') ADVANCE(146); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'e') ADVANCE(1728); + if (lookahead == 'n') ADVANCE(982); END_STATE(); case 264: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'e') ADVANCE(1821); - if (lookahead == 's') ADVANCE(948); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'e') ADVANCE(590); END_STATE(); case 265: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'e') ADVANCE(1777); - if (lookahead == 's') ADVANCE(1663); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'e') ADVANCE(1894); END_STATE(); case 266: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'e') ADVANCE(1787); - if (lookahead == 'f' || - lookahead == 'm') ADVANCE(146); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'e') ADVANCE(1925); END_STATE(); case 267: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'e') ADVANCE(1776); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'e') ADVANCE(1549); + if (lookahead == 'f') ADVANCE(150); END_STATE(); case 268: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'f') ADVANCE(146); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'e') ADVANCE(1826); + if (lookahead == 's') ADVANCE(953); END_STATE(); case 269: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'f') ADVANCE(146); - if (lookahead == 'r') ADVANCE(1573); - if (lookahead == 'y') ADVANCE(329); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'e') ADVANCE(1782); + if (lookahead == 's') ADVANCE(1668); END_STATE(); case 270: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'f') ADVANCE(1889); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'e') ADVANCE(1792); + if (lookahead == 'f' || + lookahead == 'm') ADVANCE(150); END_STATE(); case 271: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'f') ADVANCE(1949); - if (lookahead == 'g') ADVANCE(146); - if (lookahead == 'q') ADVANCE(320); - if (lookahead == 's') ADVANCE(228); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'e') ADVANCE(1781); END_STATE(); case 272: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'f') ADVANCE(1490); - if (lookahead == 'l') ADVANCE(934); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'f') ADVANCE(150); END_STATE(); case 273: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'f') ADVANCE(1975); - if (lookahead == 'q') ADVANCE(320); - if (lookahead == 's') ADVANCE(328); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'f') ADVANCE(150); + if (lookahead == 'r') ADVANCE(1578); + if (lookahead == 'y') ADVANCE(333); END_STATE(); case 274: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'g') ADVANCE(146); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'f') ADVANCE(1894); END_STATE(); case 275: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'g') ADVANCE(146); - if (lookahead == 'l') ADVANCE(1965); - if (lookahead == 'm') ADVANCE(1697); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'f') ADVANCE(1954); + if (lookahead == 'g') ADVANCE(150); + if (lookahead == 'q') ADVANCE(324); + if (lookahead == 's') ADVANCE(232); END_STATE(); case 276: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'g') ADVANCE(1944); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'f') ADVANCE(1495); + if (lookahead == 'l') ADVANCE(939); END_STATE(); case 277: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'g') ADVANCE(912); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'f') ADVANCE(1980); + if (lookahead == 'q') ADVANCE(324); + if (lookahead == 's') ADVANCE(332); END_STATE(); case 278: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'h') ADVANCE(146); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'g') ADVANCE(150); END_STATE(); case 279: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'h') ADVANCE(146); - if (lookahead == 'l') ADVANCE(1615); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'g') ADVANCE(150); + if (lookahead == 'l') ADVANCE(1970); + if (lookahead == 'm') ADVANCE(1702); END_STATE(); case 280: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'h') ADVANCE(1574); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'g') ADVANCE(1949); END_STATE(); case 281: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'i') ADVANCE(1222); - if (lookahead == 'n') ADVANCE(1104); - if (lookahead == 'o') ADVANCE(1965); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'g') ADVANCE(917); END_STATE(); case 282: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'i') ADVANCE(886); - if (lookahead == 'o') ADVANCE(1507); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'h') ADVANCE(150); END_STATE(); case 283: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'i') ADVANCE(1766); - if (lookahead == 'u') ADVANCE(1981); - if (lookahead == 'E' || - lookahead == 'd' || - lookahead == 'y') ADVANCE(146); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'h') ADVANCE(150); + if (lookahead == 'l') ADVANCE(1620); END_STATE(); case 284: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'i') ADVANCE(1766); - if (lookahead == 'y') ADVANCE(146); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'h') ADVANCE(1579); END_STATE(); case 285: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'i') ADVANCE(1524); - if (lookahead == 'p') ADVANCE(638); - if (lookahead == 's') ADVANCE(146); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'i') ADVANCE(1227); + if (lookahead == 'n') ADVANCE(1109); + if (lookahead == 'o') ADVANCE(1970); END_STATE(); case 286: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'i') ADVANCE(2003); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'i') ADVANCE(891); + if (lookahead == 'o') ADVANCE(1512); END_STATE(); case 287: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'i') ADVANCE(851); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'i') ADVANCE(1771); + if (lookahead == 'u') ADVANCE(1986); + if (lookahead == 'E' || + lookahead == 'd' || + lookahead == 'y') ADVANCE(150); END_STATE(); case 288: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'i') ADVANCE(1499); - if (lookahead == 'n') ADVANCE(1232); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'i') ADVANCE(1771); + if (lookahead == 'y') ADVANCE(150); END_STATE(); case 289: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'i') ADVANCE(1426); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'i') ADVANCE(1529); + if (lookahead == 'p') ADVANCE(643); + if (lookahead == 's') ADVANCE(150); END_STATE(); case 290: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'i') ADVANCE(1563); - if (lookahead == 'l') ADVANCE(146); - if (lookahead == 's') ADVANCE(234); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'i') ADVANCE(2008); END_STATE(); case 291: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'l') ADVANCE(146); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'i') ADVANCE(856); END_STATE(); case 292: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'l') ADVANCE(146); - if (lookahead == 'q') ADVANCE(320); - if (lookahead == 's') ADVANCE(227); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'i') ADVANCE(1504); + if (lookahead == 'n') ADVANCE(1237); END_STATE(); case 293: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'l') ADVANCE(2002); - if (lookahead == 'e' || - lookahead == 'f') ADVANCE(146); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'i') ADVANCE(1431); END_STATE(); case 294: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'l') ADVANCE(1944); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'i') ADVANCE(1568); + if (lookahead == 'l') ADVANCE(150); + if (lookahead == 's') ADVANCE(238); END_STATE(); case 295: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'l') ADVANCE(1615); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'l') ADVANCE(150); END_STATE(); case 296: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'l') ADVANCE(1615); - if (lookahead == 'v') ADVANCE(146); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'l') ADVANCE(150); + if (lookahead == 'q') ADVANCE(324); + if (lookahead == 's') ADVANCE(231); END_STATE(); case 297: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'l') ADVANCE(912); - if (lookahead == 'd' || - lookahead == 'e') ADVANCE(146); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'l') ADVANCE(2007); + if (lookahead == 'e' || + lookahead == 'f') ADVANCE(150); END_STATE(); case 298: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'l') ADVANCE(2006); - if (lookahead == 'm') ADVANCE(558); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'l') ADVANCE(1949); END_STATE(); case 299: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'l') ADVANCE(1385); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'l') ADVANCE(1620); END_STATE(); case 300: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'm') ADVANCE(146); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'l') ADVANCE(1620); + if (lookahead == 'v') ADVANCE(150); END_STATE(); case 301: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'm') ADVANCE(265); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'l') ADVANCE(917); + if (lookahead == 'd' || + lookahead == 'e') ADVANCE(150); END_STATE(); case 302: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'm') ADVANCE(592); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'l') ADVANCE(2011); + if (lookahead == 'm') ADVANCE(563); END_STATE(); case 303: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'n') ADVANCE(146); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'l') ADVANCE(1390); END_STATE(); case 304: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'n') ADVANCE(611); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'm') ADVANCE(150); END_STATE(); case 305: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'o') ADVANCE(146); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'm') ADVANCE(269); END_STATE(); case 306: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'o') ADVANCE(324); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'm') ADVANCE(597); END_STATE(); case 307: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'o') ADVANCE(291); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'n') ADVANCE(150); END_STATE(); case 308: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'o') ADVANCE(1082); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'n') ADVANCE(616); END_STATE(); case 309: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'o') ADVANCE(2113); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'o') ADVANCE(150); END_STATE(); case 310: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'o') ADVANCE(2102); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'o') ADVANCE(328); END_STATE(); case 311: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'o') ADVANCE(836); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'o') ADVANCE(295); END_STATE(); case 312: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'o') ADVANCE(1790); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'o') ADVANCE(1087); END_STATE(); case 313: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'o') ADVANCE(2019); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'o') ADVANCE(2118); END_STATE(); case 314: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'o') ADVANCE(1529); - if (lookahead == 's') ADVANCE(146); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'o') ADVANCE(2107); END_STATE(); case 315: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'o') ADVANCE(1554); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'o') ADVANCE(841); END_STATE(); case 316: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'p') ADVANCE(146); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'o') ADVANCE(1795); END_STATE(); case 317: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'p') ADVANCE(1082); - if (lookahead == 't') ADVANCE(288); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'o') ADVANCE(2024); END_STATE(); case 318: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'p') ADVANCE(1815); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'o') ADVANCE(1534); + if (lookahead == 's') ADVANCE(150); END_STATE(); case 319: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'q') ADVANCE(146); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'o') ADVANCE(1559); END_STATE(); case 320: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'q') ADVANCE(146); - if (lookahead == 's') ADVANCE(1429); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'p') ADVANCE(150); END_STATE(); case 321: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'q') ADVANCE(320); - if (lookahead == 's') ADVANCE(146); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'p') ADVANCE(1087); + if (lookahead == 't') ADVANCE(292); END_STATE(); case 322: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'q') ADVANCE(319); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'p') ADVANCE(1820); END_STATE(); case 323: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'q') ADVANCE(2065); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'q') ADVANCE(150); END_STATE(); case 324: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'r') ADVANCE(146); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'q') ADVANCE(150); + if (lookahead == 's') ADVANCE(1434); END_STATE(); case 325: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'r') ADVANCE(550); - if (lookahead == 's') ADVANCE(234); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'q') ADVANCE(324); + if (lookahead == 's') ADVANCE(150); END_STATE(); case 326: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'r') ADVANCE(1257); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'q') ADVANCE(323); END_STATE(); case 327: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'r') ADVANCE(1235); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'q') ADVANCE(2070); END_STATE(); case 328: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 's') ADVANCE(146); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'r') ADVANCE(150); END_STATE(); case 329: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 's') ADVANCE(1736); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'r') ADVANCE(555); + if (lookahead == 's') ADVANCE(238); END_STATE(); case 330: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 's') ADVANCE(237); - if (lookahead == 'v') ADVANCE(146); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'r') ADVANCE(1262); END_STATE(); case 331: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 's') ADVANCE(217); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'r') ADVANCE(1240); END_STATE(); case 332: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 's') ADVANCE(2135); - if (lookahead == 'v') ADVANCE(146); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 's') ADVANCE(150); END_STATE(); case 333: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 's') ADVANCE(1449); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 's') ADVANCE(1741); END_STATE(); case 334: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 's') ADVANCE(1344); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 's') ADVANCE(241); + if (lookahead == 'v') ADVANCE(150); END_STATE(); case 335: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 's') ADVANCE(2007); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 's') ADVANCE(221); END_STATE(); case 336: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 's') ADVANCE(948); - if (lookahead == 'v') ADVANCE(146); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 's') ADVANCE(2140); + if (lookahead == 'v') ADVANCE(150); END_STATE(); case 337: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 's') ADVANCE(1002); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 's') ADVANCE(1454); END_STATE(); case 338: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 's') ADVANCE(1015); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(146); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 's') ADVANCE(1349); END_STATE(); case 339: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 's') ADVANCE(2069); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 's') ADVANCE(2012); END_STATE(); case 340: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 't') ADVANCE(146); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 's') ADVANCE(953); + if (lookahead == 'v') ADVANCE(150); END_STATE(); case 341: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 't') ADVANCE(518); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 's') ADVANCE(1007); END_STATE(); case 342: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 't') ADVANCE(1574); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 's') ADVANCE(1020); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(150); END_STATE(); case 343: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 't') ADVANCE(267); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 's') ADVANCE(2074); END_STATE(); case 344: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 't') ADVANCE(720); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 't') ADVANCE(150); END_STATE(); case 345: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 't') ADVANCE(1344); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 't') ADVANCE(523); END_STATE(); case 346: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 't') ADVANCE(818); - if (lookahead == 'v') ADVANCE(146); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 't') ADVANCE(1579); END_STATE(); case 347: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 't') ADVANCE(665); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 't') ADVANCE(271); END_STATE(); case 348: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 't') ADVANCE(1598); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 't') ADVANCE(725); END_STATE(); case 349: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 't') ADVANCE(1257); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 't') ADVANCE(1349); END_STATE(); case 350: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'u') ADVANCE(146); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 't') ADVANCE(823); + if (lookahead == 'v') ADVANCE(150); END_STATE(); case 351: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'u') ADVANCE(1227); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 't') ADVANCE(670); END_STATE(); case 352: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'v') ADVANCE(146); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 't') ADVANCE(1603); END_STATE(); case 353: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'v') ADVANCE(2160); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 't') ADVANCE(1262); END_STATE(); case 354: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'v') ADVANCE(709); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'u') ADVANCE(150); END_STATE(); case 355: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'v') ADVANCE(1014); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'u') ADVANCE(1232); END_STATE(); case 356: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'a' || - lookahead == 'h') ADVANCE(146); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'v') ADVANCE(150); END_STATE(); case 357: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'b' || - lookahead == 'e') ADVANCE(146); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'v') ADVANCE(2165); END_STATE(); case 358: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'c' || - lookahead == 'w') ADVANCE(146); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'v') ADVANCE(714); END_STATE(); case 359: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'e' || - lookahead == 'g') ADVANCE(146); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'v') ADVANCE(1019); END_STATE(); case 360: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'e' || - lookahead == 'l') ADVANCE(146); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'a' || + lookahead == 'h') ADVANCE(150); END_STATE(); case 361: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'f' || - lookahead == 'v') ADVANCE(146); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'b' || + lookahead == 'e') ADVANCE(150); END_STATE(); case 362: - if (lookahead == ';') ADVANCE(2179); - if (lookahead == 'e' || - lookahead == 'f') ADVANCE(146); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'c' || + lookahead == 'w') ADVANCE(150); END_STATE(); case 363: - if (lookahead == ';') ADVANCE(2179); + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'e' || + lookahead == 'g') ADVANCE(150); + END_STATE(); + case 364: + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'e' || + lookahead == 'l') ADVANCE(150); + END_STATE(); + case 365: + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'f' || + lookahead == 'v') ADVANCE(150); + END_STATE(); + case 366: + if (lookahead == ';') ADVANCE(2184); + if (lookahead == 'e' || + lookahead == 'f') ADVANCE(150); + END_STATE(); + case 367: + if (lookahead == ';') ADVANCE(2184); if (lookahead == 'E' || lookahead == 'a' || - lookahead == 'j') ADVANCE(146); + lookahead == 'j') ADVANCE(150); END_STATE(); - case 364: - if (lookahead == ';') ADVANCE(2179); + case 368: + if (lookahead == ';') ADVANCE(2184); if (lookahead == '4' || lookahead == '5' || - lookahead == '8') ADVANCE(146); + lookahead == '8') ADVANCE(150); END_STATE(); - case 365: - if (lookahead == ';') ADVANCE(2179); + case 369: + if (lookahead == ';') ADVANCE(2184); if (lookahead == 'D' || lookahead == 'U' || lookahead == 'd' || - lookahead == 'u') ADVANCE(146); + lookahead == 'u') ADVANCE(150); END_STATE(); - case 366: - if (lookahead == ';') ADVANCE(2179); + case 370: + if (lookahead == ';') ADVANCE(2184); if (lookahead == 'H' || lookahead == 'L' || lookahead == 'R' || lookahead == 'h' || lookahead == 'l' || - lookahead == 'r') ADVANCE(146); - END_STATE(); - case 367: - if (lookahead == ';') ADVANCE(2179); - if (('2' <= lookahead && lookahead <= '6') || - lookahead == '8') ADVANCE(146); - END_STATE(); - case 368: - if (lookahead == ';') ADVANCE(2180); - END_STATE(); - case 369: - if (lookahead == ';') ADVANCE(2180); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(370); - END_STATE(); - case 370: - if (lookahead == ';') ADVANCE(2180); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(368); + lookahead == 'r') ADVANCE(150); END_STATE(); case 371: - if (lookahead == ';') ADVANCE(2180); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(369); + if (lookahead == ';') ADVANCE(2184); + if (('2' <= lookahead && lookahead <= '6') || + lookahead == '8') ADVANCE(150); END_STATE(); case 372: - if (lookahead == ';') ADVANCE(2180); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(371); + if (lookahead == ';') ADVANCE(2185); END_STATE(); case 373: - if (lookahead == ';') ADVANCE(2180); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(372); + if (lookahead == ';') ADVANCE(2185); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(374); END_STATE(); case 374: - if (lookahead == ';') ADVANCE(2180); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(373); + if (lookahead == ';') ADVANCE(2185); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(372); END_STATE(); case 375: - if (lookahead == ';') ADVANCE(2180); + if (lookahead == ';') ADVANCE(2185); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(373); + END_STATE(); + case 376: + if (lookahead == ';') ADVANCE(2185); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(375); + END_STATE(); + case 377: + if (lookahead == ';') ADVANCE(2185); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(376); + END_STATE(); + case 378: + if (lookahead == ';') ADVANCE(2185); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(377); + END_STATE(); + case 379: + if (lookahead == ';') ADVANCE(2185); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(368); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(372); END_STATE(); - case 376: - if (lookahead == ';') ADVANCE(2180); + case 380: + if (lookahead == ';') ADVANCE(2185); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(375); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(379); END_STATE(); - case 377: - if (lookahead == ';') ADVANCE(2180); + case 381: + if (lookahead == ';') ADVANCE(2185); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(376); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(380); END_STATE(); - case 378: - if (lookahead == ';') ADVANCE(2180); + case 382: + if (lookahead == ';') ADVANCE(2185); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(377); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(381); END_STATE(); - case 379: - if (lookahead == ';') ADVANCE(2180); + case 383: + if (lookahead == ';') ADVANCE(2185); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(378); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(382); END_STATE(); - case 380: - if (lookahead == '>') ADVANCE(4312); + case 384: + if (lookahead == '>') ADVANCE(4325); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && lookahead != ' ' && - lookahead != '<') ADVANCE(380); + lookahead != '<') ADVANCE(384); END_STATE(); - case 381: - if (lookahead == '@') ADVANCE(2168); + case 385: + if (lookahead == '>') ADVANCE(2257); + END_STATE(); + case 386: + if (lookahead == '@') ADVANCE(2173); if (lookahead == '!' || ('#' <= lookahead && lookahead <= '\'') || lookahead == '*' || @@ -6078,14 +6575,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '=' || lookahead == '?' || ('^' <= lookahead && lookahead <= '`') || - ('{' <= lookahead && lookahead <= '~')) ADVANCE(382); + ('{' <= lookahead && lookahead <= '~')) ADVANCE(387); if (lookahead == '+' || ('-' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(145); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(149); END_STATE(); - case 382: - if (lookahead == '@') ADVANCE(2168); + case 387: + if (lookahead == '@') ADVANCE(2173); if (lookahead == '!' || ('#' <= lookahead && lookahead <= '\'') || lookahead == '*' || @@ -6093,6820 +6590,6820 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('-' <= lookahead && lookahead <= '9') || lookahead == '=' || ('?' <= lookahead && lookahead <= 'Z') || - ('^' <= lookahead && lookahead <= '~')) ADVANCE(382); - END_STATE(); - case 383: - ADVANCE_MAP( - 'A', 497, - 'a', 811, - 'c', 1275, - 'f', 1736, - 'i', 1364, - 'o', 1669, - 's', 785, - 'u', 1462, - ); - END_STATE(); - case 384: - ADVANCE_MAP( - 'A', 579, - 'B', 569, - 'H', 532, - 'a', 758, - 'b', 570, - 'c', 597, - 'd', 788, - 'e', 203, - 'f', 1247, - 'h', 616, - 'i', 1137, - 'l', 575, - 'm', 1647, - 'n', 1463, - 'o', 541, - 'p', 623, - 'r', 569, - 's', 521, - 't', 1203, - 'u', 1389, - 'x', 146, - ); - END_STATE(); - case 385: - ADVANCE_MAP( - 'A', 740, - 'I', 740, - 'U', 740, - 'a', 798, - 'c', 1277, - 'f', 1736, - 'o', 1666, - 's', 764, - 'u', 1471, - ); - END_STATE(); - case 386: - if (lookahead == 'A') ADVANCE(437); - END_STATE(); - case 387: - ADVANCE_MAP( - 'A', 1561, - 'C', 1074, - 'D', 1579, - 'F', 1388, - 'R', 1310, - 'T', 1019, - 'U', 1677, - 'V', 1053, - 'a', 1867, - 'r', 1303, - ); + ('^' <= lookahead && lookahead <= '~')) ADVANCE(387); END_STATE(); case 388: ADVANCE_MAP( - 'A', 1755, - 'B', 626, - 'D', 565, - 'a', 1521, - 'c', 2125, - 'd', 565, - 'e', 925, - 'f', 1736, - 'l', 2002, - 'n', 1918, - 'o', 1666, - 'p', 1805, - 'r', 2002, - 's', 787, - 'z', 1250, + 'A', 502, + 'a', 816, + 'c', 1280, + 'f', 1741, + 'i', 1369, + 'o', 1674, + 's', 790, + 'u', 1467, ); END_STATE(); case 389: - if (lookahead == 'A') ADVANCE(1755); - if (lookahead == 'E') ADVANCE(146); - if (lookahead == 'a') ADVANCE(1755); - if (lookahead == 'd') ADVANCE(1736); - if (lookahead == 'e') ADVANCE(273); - if (lookahead == 's') ADVANCE(1241); - if (lookahead == 't') ADVANCE(327); - END_STATE(); - case 390: ADVANCE_MAP( - 'A', 1755, - 'H', 532, - 'a', 1120, - 'b', 1341, + 'A', 584, + 'B', 574, + 'H', 537, + 'a', 763, + 'b', 575, 'c', 602, - 'd', 187, - 'e', 275, - 'f', 1248, - 'h', 609, - 'i', 580, - 'j', 740, - 'l', 754, - 'o', 1392, - 'r', 716, - 's', 756, - 't', 866, - 'u', 574, - 'w', 584, - 'z', 745, + 'd', 793, + 'e', 207, + 'f', 1252, + 'h', 621, + 'i', 1142, + 'l', 580, + 'm', 1652, + 'n', 1468, + 'o', 546, + 'p', 628, + 'r', 574, + 's', 526, + 't', 1208, + 'u', 1394, + 'x', 150, ); END_STATE(); - case 391: + case 390: ADVANCE_MAP( - 'A', 1755, - 'H', 532, - 'a', 799, - 'b', 1758, - 'c', 1256, - 'd', 571, - 'f', 1248, - 'g', 1797, - 'h', 610, - 'l', 847, - 'm', 189, - 'o', 1124, - 'p', 681, - 'r', 846, - 's', 764, - 't', 863, - 'u', 576, - 'w', 584, + 'A', 745, + 'I', 745, + 'U', 745, + 'a', 803, + 'c', 1282, + 'f', 1741, + 'o', 1671, + 's', 769, + 'u', 1476, ); END_STATE(); + case 391: + if (lookahead == 'A') ADVANCE(442); + END_STATE(); case 392: ADVANCE_MAP( - 'A', 1755, - 'a', 1263, - 'b', 532, - 'c', 1275, - 'e', 663, - 'f', 1736, - 'k', 1890, - 'o', 577, - 's', 777, - 'y', 718, + 'A', 1566, + 'C', 1079, + 'D', 1584, + 'F', 1393, + 'R', 1315, + 'T', 1024, + 'U', 1682, + 'V', 1058, + 'a', 1872, + 'r', 1308, ); END_STATE(); case 393: - if (lookahead == 'A') ADVANCE(1755); - if (lookahead == 'a') ADVANCE(1755); + ADVANCE_MAP( + 'A', 1760, + 'B', 631, + 'D', 570, + 'a', 1526, + 'c', 2130, + 'd', 570, + 'e', 930, + 'f', 1741, + 'l', 2007, + 'n', 1923, + 'o', 1671, + 'p', 1810, + 'r', 2007, + 's', 792, + 'z', 1255, + ); END_STATE(); case 394: - if (lookahead == 'A') ADVANCE(1755); - if (lookahead == 'a') ADVANCE(1755); - if (lookahead == 'p') ADVANCE(532); + if (lookahead == 'A') ADVANCE(1760); + if (lookahead == 'E') ADVANCE(150); + if (lookahead == 'a') ADVANCE(1760); + if (lookahead == 'd') ADVANCE(1741); + if (lookahead == 'e') ADVANCE(277); + if (lookahead == 's') ADVANCE(1246); + if (lookahead == 't') ADVANCE(331); END_STATE(); case 395: - if (lookahead == 'A') ADVANCE(1755); - if (lookahead == 'a') ADVANCE(1748); - if (lookahead == 'c') ADVANCE(340); - if (lookahead == 'm') ADVANCE(1209); - if (lookahead == 's') ADVANCE(2108); - if (lookahead == 't') ADVANCE(1457); - if (lookahead == 'x') ADVANCE(1944); + ADVANCE_MAP( + 'A', 1760, + 'H', 537, + 'a', 1125, + 'b', 1346, + 'c', 607, + 'd', 191, + 'e', 279, + 'f', 1253, + 'h', 614, + 'i', 585, + 'j', 745, + 'l', 759, + 'o', 1397, + 'r', 721, + 's', 761, + 't', 871, + 'u', 579, + 'w', 589, + 'z', 750, + ); END_STATE(); case 396: - if (lookahead == 'A') ADVANCE(1755); - if (lookahead == 'a') ADVANCE(1748); - if (lookahead == 'n') ADVANCE(2108); + ADVANCE_MAP( + 'A', 1760, + 'H', 537, + 'a', 804, + 'b', 1763, + 'c', 1261, + 'd', 576, + 'f', 1253, + 'g', 1802, + 'h', 615, + 'l', 852, + 'm', 193, + 'o', 1129, + 'p', 686, + 'r', 851, + 's', 769, + 't', 868, + 'u', 581, + 'w', 589, + ); END_STATE(); case 397: - if (lookahead == 'A') ADVANCE(1755); - if (lookahead == 'a') ADVANCE(1748); - if (lookahead == 'n') ADVANCE(963); + ADVANCE_MAP( + 'A', 1760, + 'a', 1268, + 'b', 537, + 'c', 1280, + 'e', 668, + 'f', 1741, + 'k', 1895, + 'o', 582, + 's', 782, + 'y', 723, + ); END_STATE(); case 398: - if (lookahead == 'A') ADVANCE(1755); - if (lookahead == 'a') ADVANCE(1847); - if (lookahead == 'i') ADVANCE(1140); - if (lookahead == 't') ADVANCE(1830); + if (lookahead == 'A') ADVANCE(1760); + if (lookahead == 'a') ADVANCE(1760); END_STATE(); case 399: - if (lookahead == 'A') ADVANCE(1755); - if (lookahead == 'e') ADVANCE(146); - if (lookahead == 't') ADVANCE(326); + if (lookahead == 'A') ADVANCE(1760); + if (lookahead == 'a') ADVANCE(1760); + if (lookahead == 'p') ADVANCE(537); END_STATE(); case 400: - if (lookahead == 'A') ADVANCE(1755); - if (lookahead == 't') ADVANCE(1825); + if (lookahead == 'A') ADVANCE(1760); + if (lookahead == 'a') ADVANCE(1753); + if (lookahead == 'c') ADVANCE(344); + if (lookahead == 'm') ADVANCE(1214); + if (lookahead == 's') ADVANCE(2113); + if (lookahead == 't') ADVANCE(1462); + if (lookahead == 'x') ADVANCE(1949); END_STATE(); case 401: - ADVANCE_MAP( - 'A', 1870, - 'D', 1638, - 'E', 1729, - 'T', 1004, - 'a', 1867, - 'd', 1645, - 'p', 1013, - 's', 1226, - ); + if (lookahead == 'A') ADVANCE(1760); + if (lookahead == 'a') ADVANCE(1753); + if (lookahead == 'n') ADVANCE(2113); END_STATE(); case 402: - if (lookahead == 'A') ADVANCE(804); + if (lookahead == 'A') ADVANCE(1760); + if (lookahead == 'a') ADVANCE(1753); + if (lookahead == 'n') ADVANCE(968); END_STATE(); case 403: - if (lookahead == 'A') ADVANCE(804); - if (lookahead == 'D') ADVANCE(1582); - if (lookahead == 'G') ADVANCE(1788); - if (lookahead == 'T') ADVANCE(1304); + if (lookahead == 'A') ADVANCE(1760); + if (lookahead == 'a') ADVANCE(1852); + if (lookahead == 'i') ADVANCE(1145); + if (lookahead == 't') ADVANCE(1835); END_STATE(); case 404: - if (lookahead == 'A') ADVANCE(1386); + if (lookahead == 'A') ADVANCE(1760); + if (lookahead == 'e') ADVANCE(150); + if (lookahead == 't') ADVANCE(330); END_STATE(); case 405: - ADVANCE_MAP( - 'A', 1562, - 'C', 1074, - 'D', 1579, - 'F', 1388, - 'T', 1019, - 'U', 1677, - 'V', 1053, - 'a', 1867, - ); + if (lookahead == 'A') ADVANCE(1760); + if (lookahead == 't') ADVANCE(1830); END_STATE(); case 406: - if (lookahead == 'A') ADVANCE(1867); + ADVANCE_MAP( + 'A', 1875, + 'D', 1643, + 'E', 1734, + 'T', 1009, + 'a', 1872, + 'd', 1650, + 'p', 1018, + 's', 1231, + ); END_STATE(); case 407: - if (lookahead == 'A') ADVANCE(1867); - if (lookahead == 'D') ADVANCE(1638); + if (lookahead == 'A') ADVANCE(809); END_STATE(); case 408: - if (lookahead == 'A') ADVANCE(1867); - if (lookahead == 'R') ADVANCE(1311); + if (lookahead == 'A') ADVANCE(809); + if (lookahead == 'D') ADVANCE(1587); + if (lookahead == 'G') ADVANCE(1793); + if (lookahead == 'T') ADVANCE(1309); END_STATE(); case 409: - if (lookahead == 'A') ADVANCE(1867); - if (lookahead == 'R') ADVANCE(1311); - if (lookahead == 'T') ADVANCE(989); + if (lookahead == 'A') ADVANCE(1391); END_STATE(); case 410: - if (lookahead == 'A') ADVANCE(1867); - if (lookahead == 'T') ADVANCE(989); + ADVANCE_MAP( + 'A', 1567, + 'C', 1079, + 'D', 1584, + 'F', 1393, + 'T', 1024, + 'U', 1682, + 'V', 1058, + 'a', 1872, + ); END_STATE(); case 411: - if (lookahead == 'A') ADVANCE(1867); - if (lookahead == 'V') ADVANCE(1058); + if (lookahead == 'A') ADVANCE(1872); END_STATE(); case 412: - if (lookahead == 'A') ADVANCE(1871); - if (lookahead == 'B') ADVANCE(1735); - if (lookahead == 'L') ADVANCE(1051); - if (lookahead == 'R') ADVANCE(1309); - if (lookahead == 'T') ADVANCE(1004); - if (lookahead == 'a') ADVANCE(1867); + if (lookahead == 'A') ADVANCE(1872); + if (lookahead == 'D') ADVANCE(1643); END_STATE(); case 413: - if (lookahead == 'B') ADVANCE(535); - if (lookahead == 'P') ADVANCE(684); + if (lookahead == 'A') ADVANCE(1872); + if (lookahead == 'R') ADVANCE(1316); END_STATE(); case 414: - ADVANCE_MAP( - 'B', 569, - 'E', 174, - 'a', 808, - 'c', 599, - 'e', 355, - 'f', 1736, - 'h', 1574, - 'i', 1118, - 'o', 1672, - 'r', 1303, - 's', 771, - 'u', 1379, - ); + if (lookahead == 'A') ADVANCE(1872); + if (lookahead == 'R') ADVANCE(1316); + if (lookahead == 'T') ADVANCE(994); END_STATE(); case 415: - if (lookahead == 'B') ADVANCE(532); + if (lookahead == 'A') ADVANCE(1872); + if (lookahead == 'T') ADVANCE(994); END_STATE(); case 416: - if (lookahead == 'B') ADVANCE(532); - if (lookahead == 'L') ADVANCE(1258); - if (lookahead == 'S') ADVANCE(1046); - if (lookahead == 'T') ADVANCE(1304); + if (lookahead == 'A') ADVANCE(1872); + if (lookahead == 'V') ADVANCE(1063); END_STATE(); case 417: - if (lookahead == 'B') ADVANCE(1868); + if (lookahead == 'A') ADVANCE(1876); + if (lookahead == 'B') ADVANCE(1740); + if (lookahead == 'L') ADVANCE(1056); + if (lookahead == 'R') ADVANCE(1314); + if (lookahead == 'T') ADVANCE(1009); + if (lookahead == 'a') ADVANCE(1872); END_STATE(); case 418: - if (lookahead == 'B') ADVANCE(1860); - if (lookahead == 'n') ADVANCE(419); - if (lookahead == 'p') ADVANCE(1082); - if (lookahead == 't') ADVANCE(157); + if (lookahead == 'B') ADVANCE(540); + if (lookahead == 'P') ADVANCE(689); END_STATE(); case 419: - if (lookahead == 'B') ADVANCE(1865); + ADVANCE_MAP( + 'B', 574, + 'E', 178, + 'a', 813, + 'c', 604, + 'e', 359, + 'f', 1741, + 'h', 1579, + 'i', 1123, + 'o', 1677, + 'r', 1308, + 's', 776, + 'u', 1384, + ); END_STATE(); case 420: - if (lookahead == 'C') ADVANCE(470); - if (lookahead == 'c') ADVANCE(2125); + if (lookahead == 'B') ADVANCE(537); END_STATE(); case 421: - if (lookahead == 'C') ADVANCE(558); + if (lookahead == 'B') ADVANCE(537); + if (lookahead == 'L') ADVANCE(1263); + if (lookahead == 'S') ADVANCE(1051); + if (lookahead == 'T') ADVANCE(1309); END_STATE(); case 422: - if (lookahead == 'C') ADVANCE(1639); - if (lookahead == 'T') ADVANCE(1290); + if (lookahead == 'B') ADVANCE(1873); END_STATE(); case 423: - if (lookahead == 'C') ADVANCE(1316); + if (lookahead == 'B') ADVANCE(1865); + if (lookahead == 'n') ADVANCE(424); + if (lookahead == 'p') ADVANCE(1087); + if (lookahead == 't') ADVANCE(161); END_STATE(); case 424: - if (lookahead == 'C') ADVANCE(1411); + if (lookahead == 'B') ADVANCE(1870); END_STATE(); case 425: - if (lookahead == 'C') ADVANCE(2073); + if (lookahead == 'C') ADVANCE(475); + if (lookahead == 'c') ADVANCE(2130); END_STATE(); case 426: - if (lookahead == 'C') ADVANCE(1655); + if (lookahead == 'C') ADVANCE(563); END_STATE(); case 427: - if (lookahead == 'C') ADVANCE(1655); - if (lookahead == 'D') ADVANCE(1581); - if (lookahead == 'L') ADVANCE(1063); - if (lookahead == 'R') ADVANCE(1313); - if (lookahead == 'U') ADVANCE(1678); - if (lookahead == 'V') ADVANCE(1072); + if (lookahead == 'C') ADVANCE(1644); + if (lookahead == 'T') ADVANCE(1295); END_STATE(); case 428: - if (lookahead == 'D') ADVANCE(1584); + if (lookahead == 'C') ADVANCE(1321); END_STATE(); case 429: - if (lookahead == 'D') ADVANCE(1584); - if (lookahead == 'M') ADVANCE(1301); - if (lookahead == 'P') ADVANCE(1434); - if (lookahead == 'T') ADVANCE(1290); + if (lookahead == 'C') ADVANCE(1416); END_STATE(); case 430: - if (lookahead == 'D') ADVANCE(1584); - if (lookahead == 'a') ADVANCE(1755); + if (lookahead == 'C') ADVANCE(2078); END_STATE(); case 431: - if (lookahead == 'D') ADVANCE(1584); - if (lookahead == 'o') ADVANCE(1944); + if (lookahead == 'C') ADVANCE(1660); END_STATE(); case 432: - if (lookahead == 'D') ADVANCE(1584); - if (lookahead == 'r') ADVANCE(146); + if (lookahead == 'C') ADVANCE(1660); + if (lookahead == 'D') ADVANCE(1586); + if (lookahead == 'L') ADVANCE(1068); + if (lookahead == 'R') ADVANCE(1318); + if (lookahead == 'U') ADVANCE(1683); + if (lookahead == 'V') ADVANCE(1077); END_STATE(); case 433: - ADVANCE_MAP( - 'D', 313, - 'J', 740, - 'S', 740, - 'Z', 740, - 'a', 1122, - 'c', 602, - 'e', 1345, - 'f', 1736, - 'i', 544, - 'o', 1670, - 's', 785, - ); + if (lookahead == 'D') ADVANCE(1589); END_STATE(); case 434: - if (lookahead == 'D') ADVANCE(146); + if (lookahead == 'D') ADVANCE(1589); + if (lookahead == 'M') ADVANCE(1306); + if (lookahead == 'P') ADVANCE(1439); + if (lookahead == 'T') ADVANCE(1295); END_STATE(); case 435: - ADVANCE_MAP( - 'D', 431, - 'a', 802, - 'c', 600, - 'd', 1584, - 'e', 146, - 'f', 432, - 'g', 325, - 'l', 290, - 'm', 531, - 'n', 1107, - 'o', 1124, - 'p', 613, - 'q', 795, - 'r', 430, - 's', 765, - 't', 356, - 'u', 1451, - 'x', 823, - ); + if (lookahead == 'D') ADVANCE(1589); + if (lookahead == 'a') ADVANCE(1760); END_STATE(); case 436: - ADVANCE_MAP( - 'D', 428, - 'a', 750, - 'c', 1640, - 'd', 565, - 'e', 648, - 'f', 1736, - 'h', 1574, - 'i', 839, - 'l', 803, - 'n', 1694, - 'o', 903, - 'p', 146, - 's', 784, - 'u', 298, - ); + if (lookahead == 'D') ADVANCE(1589); + if (lookahead == 'o') ADVANCE(1949); END_STATE(); case 437: - if (lookahead == 'D') ADVANCE(450); + if (lookahead == 'D') ADVANCE(1589); + if (lookahead == 'r') ADVANCE(150); END_STATE(); case 438: ADVANCE_MAP( - 'D', 2161, - 'H', 365, - 'U', 2161, - 'V', 366, - 'b', 1589, - 'd', 2161, - 'h', 365, - 'm', 1301, - 'p', 1434, - 't', 1290, - 'u', 2161, - 'v', 366, + 'D', 317, + 'J', 745, + 'S', 745, + 'Z', 745, + 'a', 1127, + 'c', 607, + 'e', 1350, + 'f', 1741, + 'i', 549, + 'o', 1675, + 's', 790, ); END_STATE(); case 439: - if (lookahead == 'D') ADVANCE(740); + if (lookahead == 'D') ADVANCE(150); END_STATE(); case 440: ADVANCE_MAP( - 'D', 565, - 'H', 569, - 'a', 1663, - 'd', 565, - 'g', 2153, - 'i', 1508, - 'l', 399, - 'r', 400, - 's', 1241, + 'D', 436, + 'a', 807, + 'c', 605, + 'd', 1589, + 'e', 150, + 'f', 437, + 'g', 329, + 'l', 294, + 'm', 536, + 'n', 1112, + 'o', 1129, + 'p', 618, + 'q', 800, + 'r', 435, + 's', 770, + 't', 360, + 'u', 1456, + 'x', 828, ); END_STATE(); case 441: ADVANCE_MAP( - 'D', 565, - 'b', 532, - 'c', 2125, - 'd', 568, - 'e', 915, - 'f', 1736, - 'o', 1666, - 's', 764, - 'v', 883, + 'D', 433, + 'a', 755, + 'c', 1645, + 'd', 570, + 'e', 653, + 'f', 1741, + 'h', 1579, + 'i', 844, + 'l', 808, + 'n', 1699, + 'o', 908, + 'p', 150, + 's', 789, + 'u', 302, ); END_STATE(); case 442: - if (lookahead == 'D') ADVANCE(565); - if (lookahead == 'd') ADVANCE(565); + if (lookahead == 'D') ADVANCE(455); END_STATE(); case 443: - if (lookahead == 'D') ADVANCE(1638); - if (lookahead == 'L') ADVANCE(1060); - if (lookahead == 'R') ADVANCE(1311); - if (lookahead == 'U') ADVANCE(1682); + ADVANCE_MAP( + 'D', 2166, + 'H', 369, + 'U', 2166, + 'V', 370, + 'b', 1594, + 'd', 2166, + 'h', 369, + 'm', 1306, + 'p', 1439, + 't', 1295, + 'u', 2166, + 'v', 370, + ); END_STATE(); case 444: - if (lookahead == 'D') ADVANCE(1240); + if (lookahead == 'D') ADVANCE(745); END_STATE(); case 445: - if (lookahead == 'D') ADVANCE(1006); + ADVANCE_MAP( + 'D', 570, + 'H', 574, + 'a', 1668, + 'd', 570, + 'g', 2158, + 'i', 1513, + 'l', 404, + 'r', 405, + 's', 1246, + ); END_STATE(); case 446: - if (lookahead == 'D') ADVANCE(1646); - if (lookahead == 'E') ADVANCE(1726); + ADVANCE_MAP( + 'D', 570, + 'b', 537, + 'c', 2130, + 'd', 573, + 'e', 920, + 'f', 1741, + 'o', 1671, + 's', 769, + 'v', 888, + ); END_STATE(); case 447: - if (lookahead == 'D') ADVANCE(1650); - if (lookahead == 'T') ADVANCE(1025); - if (lookahead == 'V') ADVANCE(1053); + if (lookahead == 'D') ADVANCE(570); + if (lookahead == 'd') ADVANCE(570); END_STATE(); case 448: - if (lookahead == 'D') ADVANCE(1660); - if (lookahead == 'Q') ADVANCE(2084); + if (lookahead == 'D') ADVANCE(1643); + if (lookahead == 'L') ADVANCE(1065); + if (lookahead == 'R') ADVANCE(1316); + if (lookahead == 'U') ADVANCE(1687); END_STATE(); case 449: - ADVANCE_MAP( - 'E', 1384, - 'M', 181, - 'a', 798, - 'b', 1735, - 'c', 1256, - 'f', 1736, - 'g', 1797, - 'l', 1665, - 'm', 527, - 'n', 867, - 'o', 1124, - 'p', 1690, - 'r', 1231, - 's', 782, - 't', 1278, - 'u', 1450, - ); + if (lookahead == 'D') ADVANCE(1245); END_STATE(); case 450: - if (lookahead == 'E') ADVANCE(146); + if (lookahead == 'D') ADVANCE(1011); END_STATE(); case 451: - if (lookahead == 'E') ADVANCE(146); - if (lookahead == 'a') ADVANCE(1663); - if (lookahead == 's') ADVANCE(1241); + if (lookahead == 'D') ADVANCE(1651); + if (lookahead == 'E') ADVANCE(1731); END_STATE(); case 452: - if (lookahead == 'E') ADVANCE(146); - if (lookahead == 'a') ADVANCE(1681); - if (lookahead == 'e') ADVANCE(322); - if (lookahead == 's') ADVANCE(1241); + if (lookahead == 'D') ADVANCE(1655); + if (lookahead == 'T') ADVANCE(1030); + if (lookahead == 'V') ADVANCE(1058); END_STATE(); case 453: - if (lookahead == 'E') ADVANCE(146); - if (lookahead == 'e') ADVANCE(321); - if (lookahead == 's') ADVANCE(1241); - if (lookahead == 't') ADVANCE(324); + if (lookahead == 'D') ADVANCE(1665); + if (lookahead == 'Q') ADVANCE(2089); END_STATE(); case 454: - if (lookahead == 'E') ADVANCE(1357); - if (lookahead == 'U') ADVANCE(1713); - END_STATE(); - case 455: ADVANCE_MAP( - 'E', 740, - 'J', 1390, - 'O', 740, - 'a', 798, - 'c', 1256, - 'd', 1584, - 'f', 1736, - 'g', 1797, - 'm', 186, - 'n', 1972, - 'o', 1125, - 's', 764, - 't', 1304, - 'u', 1333, + 'E', 1389, + 'M', 185, + 'a', 803, + 'b', 1740, + 'c', 1261, + 'f', 1741, + 'g', 1802, + 'l', 1670, + 'm', 532, + 'n', 872, + 'o', 1129, + 'p', 1695, + 'r', 1236, + 's', 787, + 't', 1283, + 'u', 1455, ); END_STATE(); + case 455: + if (lookahead == 'E') ADVANCE(150); + END_STATE(); case 456: - if (lookahead == 'E') ADVANCE(1356); + if (lookahead == 'E') ADVANCE(150); + if (lookahead == 'a') ADVANCE(1668); + if (lookahead == 's') ADVANCE(1246); END_STATE(); case 457: - ADVANCE_MAP( - 'E', 1390, - 'a', 798, - 'c', 1256, - 'd', 738, - 'f', 1736, - 'g', 1797, - 'm', 529, - 'o', 1666, - 'p', 976, - 'r', 146, - 's', 779, - 't', 1225, - 'u', 1450, - 'v', 991, - ); + if (lookahead == 'E') ADVANCE(150); + if (lookahead == 'a') ADVANCE(1686); + if (lookahead == 'e') ADVANCE(326); + if (lookahead == 's') ADVANCE(1246); END_STATE(); case 458: - if (lookahead == 'E') ADVANCE(1729); + if (lookahead == 'E') ADVANCE(150); + if (lookahead == 'e') ADVANCE(325); + if (lookahead == 's') ADVANCE(1246); + if (lookahead == 't') ADVANCE(328); END_STATE(); case 459: - if (lookahead == 'E') ADVANCE(1726); + if (lookahead == 'E') ADVANCE(1362); + if (lookahead == 'U') ADVANCE(1718); END_STATE(); case 460: - if (lookahead == 'E') ADVANCE(1731); - if (lookahead == 'F') ADVANCE(2083); - if (lookahead == 'G') ADVANCE(1876); - if (lookahead == 'L') ADVANCE(958); - if (lookahead == 'S') ADVANCE(1444); - if (lookahead == 'T') ADVANCE(1304); + ADVANCE_MAP( + 'E', 745, + 'J', 1395, + 'O', 745, + 'a', 803, + 'c', 1261, + 'd', 1589, + 'f', 1741, + 'g', 1802, + 'm', 190, + 'n', 1977, + 'o', 1130, + 's', 769, + 't', 1309, + 'u', 1338, + ); END_STATE(); case 461: - if (lookahead == 'E') ADVANCE(1732); - if (lookahead == 'F') ADVANCE(2083); - if (lookahead == 'G') ADVANCE(1876); - if (lookahead == 'L') ADVANCE(958); - if (lookahead == 'S') ADVANCE(1444); - if (lookahead == 'T') ADVANCE(1304); + if (lookahead == 'E') ADVANCE(1361); END_STATE(); case 462: - if (lookahead == 'F') ADVANCE(505); + ADVANCE_MAP( + 'E', 1395, + 'a', 803, + 'c', 1261, + 'd', 743, + 'f', 1741, + 'g', 1802, + 'm', 534, + 'o', 1671, + 'p', 981, + 'r', 150, + 's', 784, + 't', 1230, + 'u', 1455, + 'v', 996, + ); END_STATE(); case 463: - if (lookahead == 'F') ADVANCE(2077); + if (lookahead == 'E') ADVANCE(1734); END_STATE(); case 464: - if (lookahead == 'G') ADVANCE(146); + if (lookahead == 'E') ADVANCE(1731); END_STATE(); case 465: - ADVANCE_MAP( - 'G', 1108, - 'L', 1039, - 'R', 1303, - 'V', 442, - 'a', 722, - 'b', 1891, - 'c', 552, - 'd', 565, - 'e', 148, - 'f', 1736, - 'g', 453, - 'h', 394, - 'i', 330, - 'j', 740, - 'l', 389, - 'm', 1208, - 'o', 317, - 'p', 621, - 'r', 398, - 's', 757, - 't', 1128, - 'u', 301, - 'v', 440, - 'w', 397, - ); + if (lookahead == 'E') ADVANCE(1736); + if (lookahead == 'F') ADVANCE(2088); + if (lookahead == 'G') ADVANCE(1881); + if (lookahead == 'L') ADVANCE(963); + if (lookahead == 'S') ADVANCE(1449); + if (lookahead == 'T') ADVANCE(1309); END_STATE(); case 466: - if (lookahead == 'G') ADVANCE(1876); + if (lookahead == 'E') ADVANCE(1737); + if (lookahead == 'F') ADVANCE(2088); + if (lookahead == 'G') ADVANCE(1881); + if (lookahead == 'L') ADVANCE(963); + if (lookahead == 'S') ADVANCE(1449); + if (lookahead == 'T') ADVANCE(1309); END_STATE(); case 467: - if (lookahead == 'G') ADVANCE(1885); - if (lookahead == 'L') ADVANCE(1041); + if (lookahead == 'F') ADVANCE(510); END_STATE(); case 468: - ADVANCE_MAP( - 'H', 420, - 'O', 462, - 'a', 804, - 'c', 202, - 'f', 1736, - 'h', 1641, - 'i', 1126, - 'm', 646, - 'o', 1666, - 'q', 1762, - 's', 764, - 't', 532, - 'u', 706, - ); + if (lookahead == 'F') ADVANCE(2082); END_STATE(); case 469: - ADVANCE_MAP( - 'H', 490, - 'R', 386, - 'S', 474, - 'a', 2150, - 'c', 599, - 'f', 1736, - 'h', 947, - 'i', 1373, - 'o', 1666, - 'r', 1283, - 's', 785, - ); + if (lookahead == 'G') ADVANCE(150); END_STATE(); case 470: - if (lookahead == 'H') ADVANCE(740); + ADVANCE_MAP( + 'G', 1113, + 'L', 1044, + 'R', 1308, + 'V', 447, + 'a', 727, + 'b', 1896, + 'c', 557, + 'd', 570, + 'e', 152, + 'f', 1741, + 'g', 458, + 'h', 399, + 'i', 334, + 'j', 745, + 'l', 394, + 'm', 1213, + 'o', 321, + 'p', 626, + 'r', 403, + 's', 762, + 't', 1133, + 'u', 305, + 'v', 445, + 'w', 402, + ); END_STATE(); case 471: - if (lookahead == 'H') ADVANCE(740); - if (lookahead == 'J') ADVANCE(740); - if (lookahead == 'a') ADVANCE(1687); - if (lookahead == 'c') ADVANCE(969); - if (lookahead == 'f') ADVANCE(1736); - if (lookahead == 'o') ADVANCE(1666); - if (lookahead == 's') ADVANCE(764); + if (lookahead == 'G') ADVANCE(1881); END_STATE(); case 472: - ADVANCE_MAP( - 'H', 740, - 'O', 491, - 'a', 810, - 'c', 598, - 'd', 1584, - 'e', 900, - 'f', 1736, - 'h', 1209, - 'i', 1783, - 'l', 1588, - 'o', 1428, - 'r', 1590, - 's', 764, - 'u', 1673, - ); + if (lookahead == 'G') ADVANCE(1890); + if (lookahead == 'L') ADVANCE(1046); END_STATE(); case 473: ADVANCE_MAP( - 'H', 740, - 'a', 804, - 'c', 602, - 'd', 1584, - 'e', 1793, - 'f', 1736, - 'o', 1666, - 's', 764, + 'H', 425, + 'O', 467, + 'a', 809, + 'c', 206, + 'f', 1741, + 'h', 1646, + 'i', 1131, + 'm', 651, + 'o', 1671, + 'q', 1767, + 's', 769, + 't', 537, + 'u', 711, ); END_STATE(); case 474: - if (lookahead == 'H') ADVANCE(740); - if (lookahead == 'c') ADVANCE(2125); + ADVANCE_MAP( + 'H', 495, + 'R', 391, + 'S', 479, + 'a', 2155, + 'c', 604, + 'f', 1741, + 'h', 952, + 'i', 1378, + 'o', 1671, + 'r', 1288, + 's', 790, + ); END_STATE(); case 475: - if (lookahead == 'H') ADVANCE(2085); + if (lookahead == 'H') ADVANCE(745); END_STATE(); case 476: - if (lookahead == 'I') ADVANCE(146); + if (lookahead == 'H') ADVANCE(745); + if (lookahead == 'J') ADVANCE(745); + if (lookahead == 'a') ADVANCE(1692); + if (lookahead == 'c') ADVANCE(974); + if (lookahead == 'f') ADVANCE(1741); + if (lookahead == 'o') ADVANCE(1671); + if (lookahead == 's') ADVANCE(769); END_STATE(); case 477: - if (lookahead == 'I') ADVANCE(1484); + ADVANCE_MAP( + 'H', 745, + 'O', 496, + 'a', 815, + 'c', 603, + 'd', 1589, + 'e', 905, + 'f', 1741, + 'h', 1214, + 'i', 1788, + 'l', 1593, + 'o', 1433, + 'r', 1595, + 's', 769, + 'u', 1678, + ); END_STATE(); case 478: - if (lookahead == 'I') ADVANCE(1551); - END_STATE(); - case 479: ADVANCE_MAP( - 'J', 740, - 'a', 804, - 'c', 599, - 'e', 1129, - 'f', 1736, - 'o', 418, - 's', 764, - 't', 1278, - 'u', 146, + 'H', 745, + 'a', 809, + 'c', 607, + 'd', 1589, + 'e', 1798, + 'f', 1741, + 'o', 1671, + 's', 769, ); END_STATE(); + case 479: + if (lookahead == 'H') ADVANCE(745); + if (lookahead == 'c') ADVANCE(2130); + END_STATE(); case 480: - if (lookahead == 'L') ADVANCE(958); + if (lookahead == 'H') ADVANCE(2090); END_STATE(); case 481: - if (lookahead == 'L') ADVANCE(1258); + if (lookahead == 'I') ADVANCE(150); END_STATE(); case 482: - if (lookahead == 'L') ADVANCE(1056); - if (lookahead == 'R') ADVANCE(1311); + if (lookahead == 'I') ADVANCE(1489); END_STATE(); case 483: - if (lookahead == 'L') ADVANCE(1056); - if (lookahead == 'R') ADVANCE(1311); - if (lookahead == 'l') ADVANCE(1038); - if (lookahead == 'r') ADVANCE(1303); + if (lookahead == 'I') ADVANCE(1556); END_STATE(); case 484: - if (lookahead == 'L') ADVANCE(1060); - if (lookahead == 'R') ADVANCE(1311); + ADVANCE_MAP( + 'J', 745, + 'a', 809, + 'c', 604, + 'e', 1134, + 'f', 1741, + 'o', 423, + 's', 769, + 't', 1283, + 'u', 150, + ); END_STATE(); case 485: - if (lookahead == 'M') ADVANCE(1042); - if (lookahead == 'T') ADVANCE(1191); - if (lookahead == 'V') ADVANCE(1030); + if (lookahead == 'L') ADVANCE(963); END_STATE(); case 486: - if (lookahead == 'M') ADVANCE(1301); + if (lookahead == 'L') ADVANCE(1263); END_STATE(); case 487: - ADVANCE_MAP( - 'N', 1584, - 'a', 794, - 'b', 1779, - 'c', 1605, - 'd', 1725, - 'e', 859, - 'f', 1736, - 'i', 1109, - 'k', 664, - 'l', 545, - 'n', 924, - 'o', 1671, - 'p', 1806, - 'r', 922, - 's', 766, - 'u', 1391, - ); + if (lookahead == 'L') ADVANCE(1061); + if (lookahead == 'R') ADVANCE(1316); END_STATE(); case 488: - ADVANCE_MAP( - 'N', 464, - 'T', 175, - 'a', 798, - 'c', 601, - 'd', 1584, - 'f', 1736, - 'g', 1797, - 'l', 1043, - 'm', 530, - 'o', 1124, - 'p', 1940, - 'q', 2037, - 's', 774, - 't', 518, - 'u', 1450, - 'x', 1234, - ); + if (lookahead == 'L') ADVANCE(1061); + if (lookahead == 'R') ADVANCE(1316); + if (lookahead == 'l') ADVANCE(1043); + if (lookahead == 'r') ADVANCE(1308); END_STATE(); case 489: - if (lookahead == 'O') ADVANCE(183); + if (lookahead == 'L') ADVANCE(1065); + if (lookahead == 'R') ADVANCE(1316); END_STATE(); case 490: - if (lookahead == 'O') ADVANCE(496); + if (lookahead == 'M') ADVANCE(1047); + if (lookahead == 'T') ADVANCE(1196); + if (lookahead == 'V') ADVANCE(1035); END_STATE(); case 491: - if (lookahead == 'P') ADVANCE(185); + if (lookahead == 'M') ADVANCE(1306); END_STATE(); case 492: - if (lookahead == 'P') ADVANCE(532); + ADVANCE_MAP( + 'N', 1589, + 'a', 799, + 'b', 1784, + 'c', 1610, + 'd', 1730, + 'e', 864, + 'f', 1741, + 'i', 1114, + 'k', 669, + 'l', 550, + 'n', 929, + 'o', 1676, + 'p', 1811, + 'r', 927, + 's', 771, + 'u', 1396, + ); END_STATE(); case 493: - if (lookahead == 'P') ADVANCE(532); - if (lookahead == 'i') ADVANCE(362); + ADVANCE_MAP( + 'N', 469, + 'T', 179, + 'a', 803, + 'c', 606, + 'd', 1589, + 'f', 1741, + 'g', 1802, + 'l', 1048, + 'm', 535, + 'o', 1129, + 'p', 1945, + 'q', 2042, + 's', 779, + 't', 523, + 'u', 1455, + 'x', 1239, + ); END_STATE(); case 494: - if (lookahead == 'P') ADVANCE(1434); + if (lookahead == 'O') ADVANCE(187); END_STATE(); case 495: - if (lookahead == 'Q') ADVANCE(2084); + if (lookahead == 'O') ADVANCE(501); END_STATE(); case 496: - if (lookahead == 'R') ADVANCE(180); + if (lookahead == 'P') ADVANCE(189); END_STATE(); case 497: - if (lookahead == 'R') ADVANCE(439); + if (lookahead == 'P') ADVANCE(537); END_STATE(); case 498: - if (lookahead == 'R') ADVANCE(1314); - if (lookahead == 'T') ADVANCE(1025); - if (lookahead == 'V') ADVANCE(1053); + if (lookahead == 'P') ADVANCE(537); + if (lookahead == 'i') ADVANCE(366); END_STATE(); case 499: - ADVANCE_MAP( - 'S', 146, - 'a', 801, - 'c', 1256, - 'd', 566, - 'e', 1390, - 'f', 837, - 'g', 1616, - 'h', 713, - 'i', 1503, - 'l', 572, - 'm', 528, - 'o', 1666, - 'p', 533, - 'r', 198, - 's', 780, - 't', 1273, - 'u', 1450, - 'v', 711, - ); + if (lookahead == 'P') ADVANCE(1439); END_STATE(); case 500: - if (lookahead == 'S') ADVANCE(1488); + if (lookahead == 'Q') ADVANCE(2089); END_STATE(); case 501: - if (lookahead == 'S') ADVANCE(1488); - if (lookahead == 'V') ADVANCE(1028); + if (lookahead == 'R') ADVANCE(184); END_STATE(); case 502: - if (lookahead == 'S') ADVANCE(1706); + if (lookahead == 'R') ADVANCE(444); END_STATE(); case 503: - if (lookahead == 'S') ADVANCE(2047); + if (lookahead == 'R') ADVANCE(1319); + if (lookahead == 'T') ADVANCE(1030); + if (lookahead == 'V') ADVANCE(1058); END_STATE(); case 504: - if (lookahead == 'S') ADVANCE(1733); + ADVANCE_MAP( + 'S', 150, + 'a', 806, + 'c', 1261, + 'd', 571, + 'e', 1395, + 'f', 842, + 'g', 1621, + 'h', 718, + 'i', 1508, + 'l', 577, + 'm', 533, + 'o', 1671, + 'p', 538, + 'r', 202, + 's', 785, + 't', 1278, + 'u', 1455, + 'v', 716, + ); END_STATE(); case 505: - if (lookahead == 'T') ADVANCE(740); + if (lookahead == 'S') ADVANCE(1493); END_STATE(); case 506: - if (lookahead == 'T') ADVANCE(1205); + if (lookahead == 'S') ADVANCE(1493); + if (lookahead == 'V') ADVANCE(1033); END_STATE(); case 507: - if (lookahead == 'T') ADVANCE(1186); + if (lookahead == 'S') ADVANCE(1711); END_STATE(); case 508: - if (lookahead == 'T') ADVANCE(1025); - if (lookahead == 'V') ADVANCE(1053); + if (lookahead == 'S') ADVANCE(2052); END_STATE(); case 509: - if (lookahead == 'T') ADVANCE(1887); + if (lookahead == 'S') ADVANCE(1738); END_STATE(); case 510: - if (lookahead == 'U') ADVANCE(489); - if (lookahead == 'f') ADVANCE(1736); - if (lookahead == 'o') ADVANCE(1666); - if (lookahead == 's') ADVANCE(764); + if (lookahead == 'T') ADVANCE(745); END_STATE(); case 511: - if (lookahead == 'V') ADVANCE(1072); + if (lookahead == 'T') ADVANCE(1210); END_STATE(); case 512: - if (lookahead == 'V') ADVANCE(1058); + if (lookahead == 'T') ADVANCE(1191); END_STATE(); case 513: - if (lookahead == 'W') ADVANCE(1260); + if (lookahead == 'T') ADVANCE(1030); + if (lookahead == 'V') ADVANCE(1058); END_STATE(); case 514: - if (lookahead == '_') ADVANCE(514); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - (lookahead < ' ' || '@' < lookahead) && - (lookahead < '[' || '`' < lookahead) && - (lookahead < '{' || '~' < lookahead)) ADVANCE(4317); + if (lookahead == 'T') ADVANCE(1892); END_STATE(); case 515: - ADVANCE_MAP( - 'a', 798, - 'b', 1735, - 'c', 283, - 'e', 1384, - 'f', 324, - 'g', 1797, - 'l', 923, - 'm', 191, - 'n', 871, - 'o', 1124, - 'p', 196, - 'r', 1231, - 's', 783, - 't', 1278, - 'u', 1450, - 'w', 819, - ); + if (lookahead == 'U') ADVANCE(494); + if (lookahead == 'f') ADVANCE(1741); + if (lookahead == 'o') ADVANCE(1671); + if (lookahead == 's') ADVANCE(769); END_STATE(); case 516: - ADVANCE_MAP( - 'a', 798, - 'c', 284, - 'e', 747, - 'f', 2154, - 'g', 1797, - 'i', 281, - 'j', 1390, - 'm', 524, - 'n', 233, - 'o', 744, - 'p', 1796, - 'q', 2052, - 's', 776, - 't', 289, - 'u', 1333, - ); + if (lookahead == 'V') ADVANCE(1077); END_STATE(); case 517: - ADVANCE_MAP( - 'a', 790, - 'c', 2125, - 'e', 825, - 'f', 1736, - 'o', 1666, - 'r', 921, - 's', 764, - 'u', 1461, - ); + if (lookahead == 'V') ADVANCE(1063); END_STATE(); case 518: - if (lookahead == 'a') ADVANCE(146); + if (lookahead == 'W') ADVANCE(1265); END_STATE(); case 519: - if (lookahead == 'a') ADVANCE(324); + if (lookahead == '_') ADVANCE(519); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + (lookahead < ' ' || '@' < lookahead) && + (lookahead < '[' || '`' < lookahead) && + (lookahead < '{' || '~' < lookahead)) ADVANCE(4332); END_STATE(); case 520: - if (lookahead == 'a') ADVANCE(1725); - if (lookahead == 'c') ADVANCE(1736); - if (lookahead == 'h') ADVANCE(146); - if (lookahead == 'i') ADVANCE(1455); - if (lookahead == 'q') ADVANCE(705); - if (lookahead == 't') ADVANCE(1807); + ADVANCE_MAP( + 'a', 803, + 'b', 1740, + 'c', 287, + 'e', 1389, + 'f', 328, + 'g', 1802, + 'l', 928, + 'm', 195, + 'n', 876, + 'o', 1129, + 'p', 200, + 'r', 1236, + 's', 788, + 't', 1283, + 'u', 1455, + 'w', 824, + ); END_STATE(); case 521: - if (lookahead == 'a') ADVANCE(1725); - if (lookahead == 'c') ADVANCE(1736); - if (lookahead == 'h') ADVANCE(146); - if (lookahead == 'q') ADVANCE(705); + ADVANCE_MAP( + 'a', 803, + 'c', 288, + 'e', 752, + 'f', 2159, + 'g', 1802, + 'i', 285, + 'j', 1395, + 'm', 529, + 'n', 237, + 'o', 749, + 'p', 1801, + 'q', 2057, + 's', 781, + 't', 293, + 'u', 1338, + ); END_STATE(); case 522: ADVANCE_MAP( - 'a', 809, - 'c', 547, - 'd', 1584, - 'e', 893, - 'f', 1736, - 'h', 742, - 'i', 1740, - 'l', 2042, - 'o', 1438, - 'r', 578, - 's', 786, - 't', 862, - 'u', 910, - 'w', 819, - 'y', 1381, + 'a', 795, + 'c', 2130, + 'e', 830, + 'f', 1741, + 'o', 1671, + 'r', 926, + 's', 769, + 'u', 1466, ); END_STATE(); case 523: - if (lookahead == 'a') ADVANCE(2099); + if (lookahead == 'a') ADVANCE(150); END_STATE(); case 524: - if (lookahead == 'a') ADVANCE(769); - if (lookahead == 'o') ADVANCE(1082); - if (lookahead == 'p') ADVANCE(911); + if (lookahead == 'a') ADVANCE(328); END_STATE(); case 525: - if (lookahead == 'a') ADVANCE(1398); - if (lookahead == 'e') ADVANCE(1711); - if (lookahead == 'i') ADVANCE(869); - if (lookahead == 't') ADVANCE(255); + if (lookahead == 'a') ADVANCE(1730); + if (lookahead == 'c') ADVANCE(1741); + if (lookahead == 'h') ADVANCE(150); + if (lookahead == 'i') ADVANCE(1460); + if (lookahead == 'q') ADVANCE(710); + if (lookahead == 't') ADVANCE(1812); END_STATE(); case 526: - if (lookahead == 'a') ADVANCE(361); + if (lookahead == 'a') ADVANCE(1730); + if (lookahead == 'c') ADVANCE(1741); + if (lookahead == 'h') ADVANCE(150); + if (lookahead == 'q') ADVANCE(710); END_STATE(); case 527: - if (lookahead == 'a') ADVANCE(764); + ADVANCE_MAP( + 'a', 814, + 'c', 552, + 'd', 1589, + 'e', 898, + 'f', 1741, + 'h', 747, + 'i', 1745, + 'l', 2047, + 'o', 1443, + 'r', 583, + 's', 791, + 't', 867, + 'u', 915, + 'w', 824, + 'y', 1386, + ); END_STATE(); case 528: - if (lookahead == 'a') ADVANCE(764); - if (lookahead == 'e') ADVANCE(1117); - if (lookahead == 'i') ADVANCE(831); + if (lookahead == 'a') ADVANCE(2104); END_STATE(); case 529: - if (lookahead == 'a') ADVANCE(764); - if (lookahead == 'e') ADVANCE(1117); - if (lookahead == 'i') ADVANCE(830); + if (lookahead == 'a') ADVANCE(774); + if (lookahead == 'o') ADVANCE(1087); + if (lookahead == 'p') ADVANCE(916); END_STATE(); case 530: - if (lookahead == 'a') ADVANCE(764); - if (lookahead == 'p') ADVANCE(1971); + if (lookahead == 'a') ADVANCE(1403); + if (lookahead == 'e') ADVANCE(1716); + if (lookahead == 'i') ADVANCE(874); + if (lookahead == 't') ADVANCE(259); END_STATE(); case 531: - if (lookahead == 'a') ADVANCE(764); - if (lookahead == 'p') ADVANCE(1980); - if (lookahead == 's') ADVANCE(1676); + if (lookahead == 'a') ADVANCE(365); END_STATE(); case 532: - if (lookahead == 'a') ADVANCE(1736); + if (lookahead == 'a') ADVANCE(769); END_STATE(); case 533: - if (lookahead == 'a') ADVANCE(1736); - if (lookahead == 'e') ADVANCE(1784); - if (lookahead == 'l') ADVANCE(2051); + if (lookahead == 'a') ADVANCE(769); + if (lookahead == 'e') ADVANCE(1122); + if (lookahead == 'i') ADVANCE(836); END_STATE(); case 534: - if (lookahead == 'a') ADVANCE(1736); - if (lookahead == 'f') ADVANCE(146); - if (lookahead == 'l') ADVANCE(2051); + if (lookahead == 'a') ADVANCE(769); + if (lookahead == 'e') ADVANCE(1122); + if (lookahead == 'i') ADVANCE(835); END_STATE(); case 535: - if (lookahead == 'a') ADVANCE(1736); - if (lookahead == 'r') ADVANCE(614); + if (lookahead == 'a') ADVANCE(769); + if (lookahead == 'p') ADVANCE(1976); END_STATE(); case 536: - ADVANCE_MAP( - 'a', 800, - 'b', 1758, - 'c', 1256, - 'd', 738, - 'f', 1736, - 'g', 1797, - 'm', 527, - 'n', 881, - 'o', 1124, - 'p', 401, - 'r', 1246, - 's', 764, - 't', 1304, - 'u', 1450, - ); + if (lookahead == 'a') ADVANCE(769); + if (lookahead == 'p') ADVANCE(1985); + if (lookahead == 's') ADVANCE(1681); END_STATE(); case 537: - if (lookahead == 'a') ADVANCE(1503); + if (lookahead == 'a') ADVANCE(1741); END_STATE(); case 538: - if (lookahead == 'a') ADVANCE(352); + if (lookahead == 'a') ADVANCE(1741); + if (lookahead == 'e') ADVANCE(1789); + if (lookahead == 'l') ADVANCE(2056); END_STATE(); case 539: - ADVANCE_MAP( - 'a', 1861, - 'b', 1790, - 'c', 599, - 'd', 1584, - 'e', 1439, - 'f', 1736, - 'h', 953, - 'i', 1427, - 'o', 945, - 'p', 1806, - 'r', 651, - 's', 755, - 'w', 1213, - ); + if (lookahead == 'a') ADVANCE(1741); + if (lookahead == 'f') ADVANCE(150); + if (lookahead == 'l') ADVANCE(2056); END_STATE(); case 540: - ADVANCE_MAP( - 'a', 1512, - 'b', 1790, - 'n', 1115, - 'o', 1712, - 'p', 534, - 't', 1290, - 'w', 582, - 'z', 263, - ); + if (lookahead == 'a') ADVANCE(1741); + if (lookahead == 'r') ADVANCE(619); END_STATE(); case 541: - if (lookahead == 'a') ADVANCE(1512); - if (lookahead == 'b') ADVANCE(1790); - if (lookahead == 'p') ADVANCE(534); - if (lookahead == 't') ADVANCE(1290); + ADVANCE_MAP( + 'a', 805, + 'b', 1763, + 'c', 1261, + 'd', 743, + 'f', 1741, + 'g', 1802, + 'm', 532, + 'n', 886, + 'o', 1129, + 'p', 406, + 'r', 1251, + 's', 769, + 't', 1309, + 'u', 1455, + ); END_STATE(); case 542: - if (lookahead == 'a') ADVANCE(1944); + if (lookahead == 'a') ADVANCE(1508); END_STATE(); case 543: - if (lookahead == 'a') ADVANCE(1944); - if (lookahead == 'l') ADVANCE(1238); - if (lookahead == 't') ADVANCE(1518); + if (lookahead == 'a') ADVANCE(356); END_STATE(); case 544: - if (lookahead == 'a') ADVANCE(853); - if (lookahead == 'f') ADVANCE(1093); + ADVANCE_MAP( + 'a', 1866, + 'b', 1795, + 'c', 604, + 'd', 1589, + 'e', 1444, + 'f', 1741, + 'h', 958, + 'i', 1432, + 'o', 950, + 'p', 1811, + 'r', 656, + 's', 760, + 'w', 1218, + ); END_STATE(); case 545: - if (lookahead == 'a') ADVANCE(820); - if (lookahead == 'k') ADVANCE(138); - if (lookahead == 'o') ADVANCE(813); + ADVANCE_MAP( + 'a', 1517, + 'b', 1795, + 'n', 1120, + 'o', 1717, + 'p', 539, + 't', 1295, + 'w', 587, + 'z', 267, + ); END_STATE(); case 546: - if (lookahead == 'a') ADVANCE(237); + if (lookahead == 'a') ADVANCE(1517); + if (lookahead == 'b') ADVANCE(1795); + if (lookahead == 'p') ADVANCE(539); + if (lookahead == 't') ADVANCE(1295); END_STATE(); case 547: - if (lookahead == 'a') ADVANCE(1688); - if (lookahead == 'e') ADVANCE(892); - if (lookahead == 'i') ADVANCE(1803); - if (lookahead == 'u') ADVANCE(1696); + if (lookahead == 'a') ADVANCE(1949); END_STATE(); case 548: - if (lookahead == 'a') ADVANCE(904); + if (lookahead == 'a') ADVANCE(1949); + if (lookahead == 'l') ADVANCE(1243); + if (lookahead == 't') ADVANCE(1523); END_STATE(); case 549: - if (lookahead == 'a') ADVANCE(332); + if (lookahead == 'a') ADVANCE(858); + if (lookahead == 'f') ADVANCE(1098); END_STATE(); case 550: - if (lookahead == 'a') ADVANCE(2097); + if (lookahead == 'a') ADVANCE(825); + if (lookahead == 'k') ADVANCE(142); + if (lookahead == 'o') ADVANCE(818); END_STATE(); case 551: - if (lookahead == 'a') ADVANCE(760); - if (lookahead == 'o') ADVANCE(2113); + if (lookahead == 'a') ADVANCE(241); END_STATE(); case 552: - if (lookahead == 'a') ADVANCE(1664); - if (lookahead == 'e') ADVANCE(907); - if (lookahead == 'o') ADVANCE(1525); - if (lookahead == 'u') ADVANCE(1663); - if (lookahead == 'y') ADVANCE(146); + if (lookahead == 'a') ADVANCE(1693); + if (lookahead == 'e') ADVANCE(897); + if (lookahead == 'i') ADVANCE(1808); + if (lookahead == 'u') ADVANCE(1701); END_STATE(); case 553: - if (lookahead == 'a') ADVANCE(340); + if (lookahead == 'a') ADVANCE(909); END_STATE(); case 554: - ADVANCE_MAP( - 'a', 759, - 'c', 1277, - 'e', 303, - 'f', 1736, - 'i', 740, - 'o', 1666, - 's', 764, - 'u', 746, - ); + if (lookahead == 'a') ADVANCE(336); END_STATE(); case 555: - ADVANCE_MAP( - 'a', 1786, - 'c', 2125, - 'f', 1736, - 'h', 1209, - 'i', 146, - 'l', 2046, - 'o', 1274, - 'r', 256, - 's', 773, - ); + if (lookahead == 'a') ADVANCE(2102); END_STATE(); case 556: - if (lookahead == 'a') ADVANCE(1687); + if (lookahead == 'a') ADVANCE(765); + if (lookahead == 'o') ADVANCE(2118); END_STATE(); case 557: - if (lookahead == 'a') ADVANCE(1699); - if (lookahead == 'd') ADVANCE(1584); - if (lookahead == 'e') ADVANCE(1720); - if (lookahead == 'l') ADVANCE(958); - if (lookahead == 's') ADVANCE(1241); + if (lookahead == 'a') ADVANCE(1669); + if (lookahead == 'e') ADVANCE(912); + if (lookahead == 'o') ADVANCE(1530); + if (lookahead == 'u') ADVANCE(1668); + if (lookahead == 'y') ADVANCE(150); END_STATE(); case 558: - if (lookahead == 'a') ADVANCE(1663); + if (lookahead == 'a') ADVANCE(344); END_STATE(); case 559: ADVANCE_MAP( - 'a', 1663, - 'c', 2125, - 'e', 888, - 'f', 1736, - 'i', 1542, - 'o', 1666, - 's', 764, - 'u', 146, + 'a', 764, + 'c', 1282, + 'e', 307, + 'f', 1741, + 'i', 745, + 'o', 1671, + 's', 769, + 'u', 751, ); END_STATE(); case 560: - if (lookahead == 'a') ADVANCE(1663); - if (lookahead == 'i') ADVANCE(1803); - if (lookahead == 'u') ADVANCE(1663); + ADVANCE_MAP( + 'a', 1791, + 'c', 2130, + 'f', 1741, + 'h', 1214, + 'i', 150, + 'l', 2051, + 'o', 1279, + 'r', 260, + 's', 778, + ); END_STATE(); case 561: - if (lookahead == 'a') ADVANCE(1663); - if (lookahead == 's') ADVANCE(1241); + if (lookahead == 'a') ADVANCE(1692); END_STATE(); case 562: - if (lookahead == 'a') ADVANCE(1663); - if (lookahead == 'u') ADVANCE(1663); + if (lookahead == 'a') ADVANCE(1704); + if (lookahead == 'd') ADVANCE(1589); + if (lookahead == 'e') ADVANCE(1725); + if (lookahead == 'l') ADVANCE(963); + if (lookahead == 's') ADVANCE(1246); END_STATE(); case 563: - if (lookahead == 'a') ADVANCE(1106); + if (lookahead == 'a') ADVANCE(1668); END_STATE(); case 564: ADVANCE_MAP( - 'a', 1446, - 'c', 2125, - 'e', 1476, - 'f', 1271, - 'i', 1390, - 'j', 1390, - 'l', 543, - 'n', 1576, - 'o', 1667, - 'p', 654, - 'r', 551, - 's', 764, + 'a', 1668, + 'c', 2130, + 'e', 893, + 'f', 1741, + 'i', 1547, + 'o', 1671, + 's', 769, + 'u', 150, ); END_STATE(); case 565: - if (lookahead == 'a') ADVANCE(1910); + if (lookahead == 'a') ADVANCE(1668); + if (lookahead == 'i') ADVANCE(1808); + if (lookahead == 'u') ADVANCE(1668); END_STATE(); case 566: - if (lookahead == 'a') ADVANCE(1910); - if (lookahead == 'b') ADVANCE(1424); - if (lookahead == 'i') ADVANCE(2094); - if (lookahead == 'o') ADVANCE(1944); - if (lookahead == 's') ADVANCE(1626); + if (lookahead == 'a') ADVANCE(1668); + if (lookahead == 's') ADVANCE(1246); END_STATE(); case 567: - if (lookahead == 'a') ADVANCE(1325); + if (lookahead == 'a') ADVANCE(1668); + if (lookahead == 'u') ADVANCE(1668); END_STATE(); case 568: - if (lookahead == 'a') ADVANCE(1913); + if (lookahead == 'a') ADVANCE(1111); END_STATE(); case 569: - if (lookahead == 'a') ADVANCE(1755); + ADVANCE_MAP( + 'a', 1451, + 'c', 2130, + 'e', 1481, + 'f', 1276, + 'i', 1395, + 'j', 1395, + 'l', 548, + 'n', 1581, + 'o', 1672, + 'p', 659, + 'r', 556, + 's', 769, + ); END_STATE(); case 570: - if (lookahead == 'a') ADVANCE(1755); - if (lookahead == 'b') ADVANCE(1790); - if (lookahead == 'r') ADVANCE(604); + if (lookahead == 'a') ADVANCE(1915); END_STATE(); case 571: - if (lookahead == 'a') ADVANCE(1755); - if (lookahead == 'b') ADVANCE(1424); - if (lookahead == 'h') ADVANCE(532); + if (lookahead == 'a') ADVANCE(1915); + if (lookahead == 'b') ADVANCE(1429); + if (lookahead == 'i') ADVANCE(2099); + if (lookahead == 'o') ADVANCE(1949); + if (lookahead == 's') ADVANCE(1631); END_STATE(); case 572: - if (lookahead == 'a') ADVANCE(1755); - if (lookahead == 'c') ADVANCE(1220); - if (lookahead == 'i') ADVANCE(1524); - if (lookahead == 't') ADVANCE(146); + if (lookahead == 'a') ADVANCE(1330); END_STATE(); case 573: - if (lookahead == 'a') ADVANCE(1755); - if (lookahead == 'c') ADVANCE(1635); - if (lookahead == 'h') ADVANCE(635); - if (lookahead == 'm') ADVANCE(146); - if (lookahead == 't') ADVANCE(1771); + if (lookahead == 'a') ADVANCE(1918); END_STATE(); case 574: - if (lookahead == 'a') ADVANCE(1755); - if (lookahead == 'h') ADVANCE(532); + if (lookahead == 'a') ADVANCE(1760); END_STATE(); case 575: - if (lookahead == 'a') ADVANCE(1755); - if (lookahead == 'h') ADVANCE(532); - if (lookahead == 'm') ADVANCE(146); + if (lookahead == 'a') ADVANCE(1760); + if (lookahead == 'b') ADVANCE(1795); + if (lookahead == 'r') ADVANCE(609); END_STATE(); case 576: - if (lookahead == 'a') ADVANCE(1755); - if (lookahead == 'm') ADVANCE(291); + if (lookahead == 'a') ADVANCE(1760); + if (lookahead == 'b') ADVANCE(1429); + if (lookahead == 'h') ADVANCE(537); END_STATE(); case 577: - if (lookahead == 'a') ADVANCE(1755); - if (lookahead == 'm') ADVANCE(1986); - if (lookahead == 'o') ADVANCE(1328); - if (lookahead == 'p') ADVANCE(1082); - if (lookahead == 'r') ADVANCE(711); + if (lookahead == 'a') ADVANCE(1760); + if (lookahead == 'c') ADVANCE(1225); + if (lookahead == 'i') ADVANCE(1529); + if (lookahead == 't') ADVANCE(150); END_STATE(); case 578: - if (lookahead == 'a') ADVANCE(1755); - if (lookahead == 'o') ADVANCE(1915); + if (lookahead == 'a') ADVANCE(1760); + if (lookahead == 'c') ADVANCE(1640); + if (lookahead == 'h') ADVANCE(640); + if (lookahead == 'm') ADVANCE(150); + if (lookahead == 't') ADVANCE(1776); END_STATE(); case 579: - if (lookahead == 'a') ADVANCE(1755); - if (lookahead == 'r') ADVANCE(1736); - if (lookahead == 't') ADVANCE(665); + if (lookahead == 'a') ADVANCE(1760); + if (lookahead == 'h') ADVANCE(537); END_STATE(); case 580: - if (lookahead == 'a') ADVANCE(1453); - if (lookahead == 'e') ADVANCE(146); - if (lookahead == 'g') ADVANCE(647); - if (lookahead == 's') ADVANCE(1253); - if (lookahead == 'v') ADVANCE(282); + if (lookahead == 'a') ADVANCE(1760); + if (lookahead == 'h') ADVANCE(537); + if (lookahead == 'm') ADVANCE(150); END_STATE(); case 581: - if (lookahead == 'a') ADVANCE(2136); + if (lookahead == 'a') ADVANCE(1760); + if (lookahead == 'm') ADVANCE(295); END_STATE(); case 582: - if (lookahead == 'a') ADVANCE(1900); - if (lookahead == 'b') ADVANCE(532); + if (lookahead == 'a') ADVANCE(1760); + if (lookahead == 'm') ADVANCE(1991); + if (lookahead == 'o') ADVANCE(1333); + if (lookahead == 'p') ADVANCE(1087); + if (lookahead == 'r') ADVANCE(716); END_STATE(); case 583: - if (lookahead == 'a') ADVANCE(1900); - if (lookahead == 'c') ADVANCE(1275); - if (lookahead == 'd') ADVANCE(565); - if (lookahead == 'R' || - lookahead == 'S') ADVANCE(146); + if (lookahead == 'a') ADVANCE(1760); + if (lookahead == 'o') ADVANCE(1920); END_STATE(); case 584: - if (lookahead == 'a') ADVANCE(1523); + if (lookahead == 'a') ADVANCE(1760); + if (lookahead == 'r') ADVANCE(1741); + if (lookahead == 't') ADVANCE(670); END_STATE(); case 585: - if (lookahead == 'a') ADVANCE(1983); + if (lookahead == 'a') ADVANCE(1458); + if (lookahead == 'e') ADVANCE(150); + if (lookahead == 'g') ADVANCE(652); + if (lookahead == 's') ADVANCE(1258); + if (lookahead == 'v') ADVANCE(286); END_STATE(); case 586: - if (lookahead == 'a') ADVANCE(1344); + if (lookahead == 'a') ADVANCE(2141); END_STATE(); case 587: - ADVANCE_MAP( - 'a', 1742, - 'c', 2125, - 'e', 1743, - 'f', 1736, - 'h', 1223, - 'i', 346, - 'l', 603, - 'm', 146, - 'o', 1284, - 'r', 162, - 's', 773, - 'u', 1522, - ); + if (lookahead == 'a') ADVANCE(1905); + if (lookahead == 'b') ADVANCE(537); END_STATE(); case 588: - if (lookahead == 'a') ADVANCE(1977); - if (lookahead == 'e') ADVANCE(1924); - if (lookahead == 'o') ADVANCE(340); + if (lookahead == 'a') ADVANCE(1905); + if (lookahead == 'c') ADVANCE(1280); + if (lookahead == 'd') ADVANCE(570); + if (lookahead == 'R' || + lookahead == 'S') ADVANCE(150); END_STATE(); case 589: - if (lookahead == 'a') ADVANCE(1168); + if (lookahead == 'a') ADVANCE(1528); END_STATE(); case 590: - if (lookahead == 'a') ADVANCE(1342); + if (lookahead == 'a') ADVANCE(1988); END_STATE(); case 591: - if (lookahead == 'a') ADVANCE(1367); - if (lookahead == 'l') ADVANCE(1258); - if (lookahead == 's') ADVANCE(2071); + if (lookahead == 'a') ADVANCE(1349); END_STATE(); case 592: - if (lookahead == 'a') ADVANCE(1790); + ADVANCE_MAP( + 'a', 1747, + 'c', 2130, + 'e', 1748, + 'f', 1741, + 'h', 1228, + 'i', 350, + 'l', 608, + 'm', 150, + 'o', 1289, + 'r', 166, + 's', 778, + 'u', 1527, + ); END_STATE(); case 593: - if (lookahead == 'a') ADVANCE(1903); + if (lookahead == 'a') ADVANCE(1982); + if (lookahead == 'e') ADVANCE(1929); + if (lookahead == 'o') ADVANCE(344); END_STATE(); case 594: - if (lookahead == 'a') ADVANCE(1490); + if (lookahead == 'a') ADVANCE(1173); END_STATE(); case 595: - if (lookahead == 'a') ADVANCE(748); + if (lookahead == 'a') ADVANCE(1347); END_STATE(); case 596: - if (lookahead == 'a') ADVANCE(1524); + if (lookahead == 'a') ADVANCE(1372); + if (lookahead == 'l') ADVANCE(1263); + if (lookahead == 's') ADVANCE(2076); END_STATE(); case 597: - if (lookahead == 'a') ADVANCE(1789); - if (lookahead == 'e') ADVANCE(908); - if (lookahead == 'u') ADVANCE(704); - if (lookahead == 'y') ADVANCE(146); + if (lookahead == 'a') ADVANCE(1795); END_STATE(); case 598: - if (lookahead == 'a') ADVANCE(1789); - if (lookahead == 'e') ADVANCE(892); - if (lookahead == 'i') ADVANCE(1803); - if (lookahead == 'o') ADVANCE(1552); + if (lookahead == 'a') ADVANCE(1908); END_STATE(); case 599: - if (lookahead == 'a') ADVANCE(1789); - if (lookahead == 'e') ADVANCE(907); - if (lookahead == 'y') ADVANCE(146); + if (lookahead == 'a') ADVANCE(1495); END_STATE(); case 600: - if (lookahead == 'a') ADVANCE(1789); - if (lookahead == 'i') ADVANCE(1766); - if (lookahead == 'o') ADVANCE(1374); - if (lookahead == 'y') ADVANCE(146); + if (lookahead == 'a') ADVANCE(753); END_STATE(); case 601: - if (lookahead == 'a') ADVANCE(1789); - if (lookahead == 'i') ADVANCE(1766); - if (lookahead == 'y') ADVANCE(146); + if (lookahead == 'a') ADVANCE(1529); END_STATE(); case 602: - if (lookahead == 'a') ADVANCE(1789); - if (lookahead == 'y') ADVANCE(146); + if (lookahead == 'a') ADVANCE(1794); + if (lookahead == 'e') ADVANCE(913); + if (lookahead == 'u') ADVANCE(709); + if (lookahead == 'y') ADVANCE(150); END_STATE(); case 603: - if (lookahead == 'a') ADVANCE(1497); - if (lookahead == 'u') ADVANCE(1894); + if (lookahead == 'a') ADVANCE(1794); + if (lookahead == 'e') ADVANCE(897); + if (lookahead == 'i') ADVANCE(1808); + if (lookahead == 'o') ADVANCE(1557); END_STATE(); case 604: - if (lookahead == 'a') ADVANCE(762); - if (lookahead == 'k') ADVANCE(916); + if (lookahead == 'a') ADVANCE(1794); + if (lookahead == 'e') ADVANCE(912); + if (lookahead == 'y') ADVANCE(150); END_STATE(); case 605: - if (lookahead == 'a') ADVANCE(1685); - if (lookahead == 'u') ADVANCE(1685); + if (lookahead == 'a') ADVANCE(1794); + if (lookahead == 'i') ADVANCE(1771); + if (lookahead == 'o') ADVANCE(1379); + if (lookahead == 'y') ADVANCE(150); END_STATE(); case 606: - if (lookahead == 'a') ADVANCE(873); + if (lookahead == 'a') ADVANCE(1794); + if (lookahead == 'i') ADVANCE(1771); + if (lookahead == 'y') ADVANCE(150); END_STATE(); case 607: - if (lookahead == 'a') ADVANCE(1361); + if (lookahead == 'a') ADVANCE(1794); + if (lookahead == 'y') ADVANCE(150); END_STATE(); case 608: - if (lookahead == 'a') ADVANCE(1361); - if (lookahead == 'i') ADVANCE(1406); + if (lookahead == 'a') ADVANCE(1502); + if (lookahead == 'u') ADVANCE(1899); END_STATE(); case 609: - if (lookahead == 'a') ADVANCE(1745); + if (lookahead == 'a') ADVANCE(767); + if (lookahead == 'k') ADVANCE(921); END_STATE(); case 610: - if (lookahead == 'a') ADVANCE(1745); - if (lookahead == 'b') ADVANCE(1375); + if (lookahead == 'a') ADVANCE(1690); + if (lookahead == 'u') ADVANCE(1690); END_STATE(); case 611: - if (lookahead == 'a') ADVANCE(1380); + if (lookahead == 'a') ADVANCE(878); END_STATE(); case 612: - if (lookahead == 'a') ADVANCE(1380); - if (lookahead == 'e') ADVANCE(1900); - if (lookahead == 'i') ADVANCE(2096); + if (lookahead == 'a') ADVANCE(1366); END_STATE(); case 613: - if (lookahead == 'a') ADVANCE(1780); - if (lookahead == 'l') ADVANCE(2051); - if (lookahead == 's') ADVANCE(1216); + if (lookahead == 'a') ADVANCE(1366); + if (lookahead == 'i') ADVANCE(1411); END_STATE(); case 614: - if (lookahead == 'a') ADVANCE(763); + if (lookahead == 'a') ADVANCE(1750); END_STATE(); case 615: - if (lookahead == 'a') ADVANCE(1775); - if (lookahead == 'b') ADVANCE(1375); + if (lookahead == 'a') ADVANCE(1750); + if (lookahead == 'b') ADVANCE(1380); END_STATE(); case 616: - if (lookahead == 'a') ADVANCE(1775); - if (lookahead == 'o') ADVANCE(352); + if (lookahead == 'a') ADVANCE(1385); END_STATE(); case 617: - if (lookahead == 'a') ADVANCE(1707); + if (lookahead == 'a') ADVANCE(1385); + if (lookahead == 'e') ADVANCE(1905); + if (lookahead == 'i') ADVANCE(2101); END_STATE(); case 618: - if (lookahead == 'a') ADVANCE(848); + if (lookahead == 'a') ADVANCE(1785); + if (lookahead == 'l') ADVANCE(2056); + if (lookahead == 's') ADVANCE(1221); END_STATE(); case 619: - if (lookahead == 'a') ADVANCE(1773); + if (lookahead == 'a') ADVANCE(768); END_STATE(); case 620: - if (lookahead == 'a') ADVANCE(1372); + if (lookahead == 'a') ADVANCE(1780); + if (lookahead == 'b') ADVANCE(1380); END_STATE(); case 621: - if (lookahead == 'a') ADVANCE(1765); - if (lookahead == 'o') ADVANCE(1440); - if (lookahead == 'r') ADVANCE(231); + if (lookahead == 'a') ADVANCE(1780); + if (lookahead == 'o') ADVANCE(356); END_STATE(); case 622: - if (lookahead == 'a') ADVANCE(1368); + if (lookahead == 'a') ADVANCE(1712); END_STATE(); case 623: - if (lookahead == 'a') ADVANCE(1760); - if (lookahead == 'p') ADVANCE(1659); + if (lookahead == 'a') ADVANCE(853); END_STATE(); case 624: - if (lookahead == 'a') ADVANCE(1746); - if (lookahead == 'r') ADVANCE(695); + if (lookahead == 'a') ADVANCE(1778); END_STATE(); case 625: - if (lookahead == 'a') ADVANCE(1351); + if (lookahead == 'a') ADVANCE(1377); END_STATE(); case 626: - if (lookahead == 'a') ADVANCE(1759); + if (lookahead == 'a') ADVANCE(1770); + if (lookahead == 'o') ADVANCE(1445); + if (lookahead == 'r') ADVANCE(235); END_STATE(); case 627: - if (lookahead == 'a') ADVANCE(1359); + if (lookahead == 'a') ADVANCE(1373); END_STATE(); case 628: - if (lookahead == 'a') ADVANCE(1346); + if (lookahead == 'a') ADVANCE(1765); + if (lookahead == 'p') ADVANCE(1664); END_STATE(); case 629: - if (lookahead == 'a') ADVANCE(1352); + if (lookahead == 'a') ADVANCE(1751); + if (lookahead == 'r') ADVANCE(700); END_STATE(); case 630: - if (lookahead == 'a') ADVANCE(1347); + if (lookahead == 'a') ADVANCE(1356); END_STATE(); case 631: - if (lookahead == 'a') ADVANCE(1813); + if (lookahead == 'a') ADVANCE(1764); END_STATE(); case 632: - if (lookahead == 'a') ADVANCE(1365); + if (lookahead == 'a') ADVANCE(1364); END_STATE(); case 633: - if (lookahead == 'a') ADVANCE(1353); + if (lookahead == 'a') ADVANCE(1351); END_STATE(); case 634: - if (lookahead == 'a') ADVANCE(1734); + if (lookahead == 'a') ADVANCE(1357); END_STATE(); case 635: - if (lookahead == 'a') ADVANCE(1763); + if (lookahead == 'a') ADVANCE(1352); END_STATE(); case 636: - if (lookahead == 'a') ADVANCE(1739); + if (lookahead == 'a') ADVANCE(1818); END_STATE(); case 637: - if (lookahead == 'a') ADVANCE(1817); + if (lookahead == 'a') ADVANCE(1370); END_STATE(); case 638: - if (lookahead == 'a') ADVANCE(1761); + if (lookahead == 'a') ADVANCE(1358); END_STATE(); case 639: - if (lookahead == 'a') ADVANCE(2001); + if (lookahead == 'a') ADVANCE(1739); END_STATE(); case 640: - if (lookahead == 'a') ADVANCE(1828); + if (lookahead == 'a') ADVANCE(1768); END_STATE(); case 641: - if (lookahead == 'a') ADVANCE(1801); + if (lookahead == 'a') ADVANCE(1744); END_STATE(); case 642: - if (lookahead == 'a') ADVANCE(1792); + if (lookahead == 'a') ADVANCE(1822); END_STATE(); case 643: - if (lookahead == 'a') ADVANCE(1798); + if (lookahead == 'a') ADVANCE(1766); END_STATE(); case 644: - ADVANCE_MAP( - 'a', 804, - 'b', 1725, - 'c', 192, - 'd', 1613, - 'e', 395, - 'f', 1756, - 'h', 207, - 'i', 1145, - 'l', 569, - 'm', 525, - 'o', 1090, - 'p', 548, - 'q', 792, - 'r', 569, - 's', 767, - 't', 624, - 'u', 707, - 'w', 396, - 'z', 1384, - ); + if (lookahead == 'a') ADVANCE(2006); END_STATE(); case 645: - ADVANCE_MAP( - 'a', 804, - 'c', 602, - 'd', 1584, - 'e', 1049, - 'f', 1736, - 'h', 740, - 'i', 1139, - 'o', 1666, - 's', 764, - 'w', 1324, - ); + if (lookahead == 'a') ADVANCE(1833); END_STATE(); case 646: - if (lookahead == 'a') ADVANCE(1396); + if (lookahead == 'a') ADVANCE(1806); END_STATE(); case 647: - if (lookahead == 'a') ADVANCE(1465); + if (lookahead == 'a') ADVANCE(1797); END_STATE(); case 648: - if (lookahead == 'a') ADVANCE(1922); + if (lookahead == 'a') ADVANCE(1803); END_STATE(); case 649: ADVANCE_MAP( - 'a', 1691, - 'c', 969, - 'f', 1736, - 'g', 1800, - 'h', 740, - 'j', 740, - 'o', 1666, - 's', 764, + 'a', 809, + 'b', 1730, + 'c', 196, + 'd', 1618, + 'e', 400, + 'f', 1761, + 'h', 211, + 'i', 1150, + 'l', 574, + 'm', 530, + 'o', 1095, + 'p', 553, + 'q', 797, + 'r', 574, + 's', 772, + 't', 629, + 'u', 712, + 'w', 401, + 'z', 1389, ); END_STATE(); case 650: - if (lookahead == 'a') ADVANCE(842); + ADVANCE_MAP( + 'a', 809, + 'c', 607, + 'd', 1589, + 'e', 1054, + 'f', 1741, + 'h', 745, + 'i', 1144, + 'o', 1671, + 's', 769, + 'w', 1329, + ); END_STATE(); case 651: - if (lookahead == 'a') ADVANCE(889); - if (lookahead == 'i') ADVANCE(696); - if (lookahead == 'p') ADVANCE(951); + if (lookahead == 'a') ADVANCE(1401); END_STATE(); case 652: - if (lookahead == 'a') ADVANCE(1849); + if (lookahead == 'a') ADVANCE(1470); END_STATE(); case 653: - if (lookahead == 'a') ADVANCE(1998); + if (lookahead == 'a') ADVANCE(1927); END_STATE(); case 654: - if (lookahead == 'a') ADVANCE(1816); + ADVANCE_MAP( + 'a', 1696, + 'c', 974, + 'f', 1741, + 'g', 1805, + 'h', 745, + 'j', 745, + 'o', 1671, + 's', 769, + ); END_STATE(); case 655: - if (lookahead == 'a') ADVANCE(1698); - if (lookahead == 'd') ADVANCE(1584); - if (lookahead == 'e') ADVANCE(1721); - if (lookahead == 'g') ADVANCE(1964); - if (lookahead == 's') ADVANCE(1241); + if (lookahead == 'a') ADVANCE(847); END_STATE(); case 656: - if (lookahead == 'a') ADVANCE(1698); - if (lookahead == 'e') ADVANCE(1724); - if (lookahead == 's') ADVANCE(1241); + if (lookahead == 'a') ADVANCE(894); + if (lookahead == 'i') ADVANCE(701); + if (lookahead == 'p') ADVANCE(956); END_STATE(); case 657: - if (lookahead == 'a') ADVANCE(1698); - if (lookahead == 's') ADVANCE(1241); + if (lookahead == 'a') ADVANCE(1854); END_STATE(); case 658: - if (lookahead == 'a') ADVANCE(828); + if (lookahead == 'a') ADVANCE(2003); END_STATE(); case 659: - if (lookahead == 'a') ADVANCE(1850); - if (lookahead == 'l') ADVANCE(2127); - if (lookahead == 'r') ADVANCE(920); - if (lookahead == 'v') ADVANCE(1069); + if (lookahead == 'a') ADVANCE(1821); END_STATE(); case 660: - if (lookahead == 'a') ADVANCE(1535); + if (lookahead == 'a') ADVANCE(1703); + if (lookahead == 'd') ADVANCE(1589); + if (lookahead == 'e') ADVANCE(1726); + if (lookahead == 'g') ADVANCE(1969); + if (lookahead == 's') ADVANCE(1246); END_STATE(); case 661: - if (lookahead == 'a') ADVANCE(1386); - if (lookahead == 'k') ADVANCE(352); + if (lookahead == 'a') ADVANCE(1703); + if (lookahead == 'e') ADVANCE(1729); + if (lookahead == 's') ADVANCE(1246); END_STATE(); case 662: - if (lookahead == 'a') ADVANCE(2008); + if (lookahead == 'a') ADVANCE(1703); + if (lookahead == 's') ADVANCE(1246); END_STATE(); case 663: - if (lookahead == 'a') ADVANCE(1862); - if (lookahead == 'l') ADVANCE(1401); - if (lookahead == 'r') ADVANCE(812); + if (lookahead == 'a') ADVANCE(833); END_STATE(); case 664: - if (lookahead == 'a') ADVANCE(1812); + if (lookahead == 'a') ADVANCE(1855); + if (lookahead == 'l') ADVANCE(2132); + if (lookahead == 'r') ADVANCE(925); + if (lookahead == 'v') ADVANCE(1074); END_STATE(); case 665: - if (lookahead == 'a') ADVANCE(1249); + if (lookahead == 'a') ADVANCE(1540); END_STATE(); case 666: - if (lookahead == 'a') ADVANCE(1249); - if (lookahead == 'i') ADVANCE(1586); + if (lookahead == 'a') ADVANCE(1391); + if (lookahead == 'k') ADVANCE(356); END_STATE(); case 667: - if (lookahead == 'a') ADVANCE(2062); + if (lookahead == 'a') ADVANCE(2013); END_STATE(); case 668: - if (lookahead == 'a') ADVANCE(1408); + if (lookahead == 'a') ADVANCE(1867); + if (lookahead == 'l') ADVANCE(1406); + if (lookahead == 'r') ADVANCE(817); END_STATE(); case 669: - if (lookahead == 'a') ADVANCE(1853); + if (lookahead == 'a') ADVANCE(1817); END_STATE(); case 670: - if (lookahead == 'a') ADVANCE(2064); + if (lookahead == 'a') ADVANCE(1254); END_STATE(); case 671: - if (lookahead == 'a') ADVANCE(2016); + if (lookahead == 'a') ADVANCE(1254); + if (lookahead == 'i') ADVANCE(1591); END_STATE(); case 672: - if (lookahead == 'a') ADVANCE(1536); + if (lookahead == 'a') ADVANCE(2067); END_STATE(); case 673: - if (lookahead == 'a') ADVANCE(1855); + if (lookahead == 'a') ADVANCE(1413); END_STATE(); case 674: - if (lookahead == 'a') ADVANCE(1393); + if (lookahead == 'a') ADVANCE(1858); END_STATE(); case 675: - if (lookahead == 'a') ADVANCE(1845); + if (lookahead == 'a') ADVANCE(2069); END_STATE(); case 676: - if (lookahead == 'a') ADVANCE(1804); + if (lookahead == 'a') ADVANCE(2021); END_STATE(); case 677: - if (lookahead == 'a') ADVANCE(1851); + if (lookahead == 'a') ADVANCE(1541); END_STATE(); case 678: - if (lookahead == 'a') ADVANCE(1852); + if (lookahead == 'a') ADVANCE(1860); END_STATE(); case 679: - if (lookahead == 'a') ADVANCE(1443); + if (lookahead == 'a') ADVANCE(1398); END_STATE(); case 680: - if (lookahead == 'a') ADVANCE(1867); + if (lookahead == 'a') ADVANCE(1850); END_STATE(); case 681: - if (lookahead == 'a') ADVANCE(1867); - if (lookahead == 'd') ADVANCE(1645); - if (lookahead == 'h') ADVANCE(637); - if (lookahead == 'l') ADVANCE(2051); - if (lookahead == 's') ADVANCE(1218); - if (lookahead == 'u') ADVANCE(1717); + if (lookahead == 'a') ADVANCE(1809); END_STATE(); case 682: - if (lookahead == 'a') ADVANCE(1867); - if (lookahead == 'd') ADVANCE(1661); - if (lookahead == 'h') ADVANCE(637); + if (lookahead == 'a') ADVANCE(1856); END_STATE(); case 683: - if (lookahead == 'a') ADVANCE(1867); - if (lookahead == 'r') ADVANCE(1303); + if (lookahead == 'a') ADVANCE(1857); END_STATE(); case 684: - if (lookahead == 'a') ADVANCE(1878); + if (lookahead == 'a') ADVANCE(1448); END_STATE(); case 685: - if (lookahead == 'a') ADVANCE(2024); + if (lookahead == 'a') ADVANCE(1872); END_STATE(); case 686: if (lookahead == 'a') ADVANCE(1872); - if (lookahead == 'h') ADVANCE(697); - if (lookahead == 'l') ADVANCE(1061); - if (lookahead == 'r') ADVANCE(1318); - if (lookahead == 's') ADVANCE(1728); - if (lookahead == 't') ADVANCE(1206); + if (lookahead == 'd') ADVANCE(1650); + if (lookahead == 'h') ADVANCE(642); + if (lookahead == 'l') ADVANCE(2056); + if (lookahead == 's') ADVANCE(1223); + if (lookahead == 'u') ADVANCE(1722); END_STATE(); case 687: if (lookahead == 'a') ADVANCE(1872); - if (lookahead == 'h') ADVANCE(697); - if (lookahead == 'l') ADVANCE(1081); - if (lookahead == 'r') ADVANCE(1312); - if (lookahead == 't') ADVANCE(1206); + if (lookahead == 'd') ADVANCE(1666); + if (lookahead == 'h') ADVANCE(642); END_STATE(); case 688: - if (lookahead == 'a') ADVANCE(2026); + if (lookahead == 'a') ADVANCE(1872); + if (lookahead == 'r') ADVANCE(1308); END_STATE(); case 689: - if (lookahead == 'a') ADVANCE(1873); + if (lookahead == 'a') ADVANCE(1883); END_STATE(); case 690: - if (lookahead == 'a') ADVANCE(1873); - if (lookahead == 'd') ADVANCE(583); + if (lookahead == 'a') ADVANCE(2029); END_STATE(); case 691: - if (lookahead == 'a') ADVANCE(1874); + if (lookahead == 'a') ADVANCE(1877); + if (lookahead == 'h') ADVANCE(702); + if (lookahead == 'l') ADVANCE(1066); + if (lookahead == 'r') ADVANCE(1323); + if (lookahead == 's') ADVANCE(1733); + if (lookahead == 't') ADVANCE(1211); END_STATE(); case 692: - if (lookahead == 'a') ADVANCE(1874); - if (lookahead == 'h') ADVANCE(699); + if (lookahead == 'a') ADVANCE(1877); + if (lookahead == 'h') ADVANCE(702); + if (lookahead == 'l') ADVANCE(1086); + if (lookahead == 'r') ADVANCE(1317); + if (lookahead == 't') ADVANCE(1211); END_STATE(); case 693: - if (lookahead == 'a') ADVANCE(2028); + if (lookahead == 'a') ADVANCE(2031); END_STATE(); case 694: - if (lookahead == 'a') ADVANCE(1875); - if (lookahead == 'h') ADVANCE(699); - if (lookahead == 's') ADVANCE(1728); + if (lookahead == 'a') ADVANCE(1878); END_STATE(); case 695: - if (lookahead == 'a') ADVANCE(1308); - if (lookahead == 'n') ADVANCE(1889); + if (lookahead == 'a') ADVANCE(1878); + if (lookahead == 'd') ADVANCE(588); END_STATE(); case 696: - if (lookahead == 'a') ADVANCE(1557); - if (lookahead == 'd') ADVANCE(1584); - if (lookahead == 'e') ADVANCE(146); - if (lookahead == 'm') ADVANCE(1301); - if (lookahead == 'p') ADVANCE(1434); - if (lookahead == 's') ADVANCE(704); - if (lookahead == 't') ADVANCE(1286); + if (lookahead == 'a') ADVANCE(1879); END_STATE(); case 697: - if (lookahead == 'a') ADVANCE(1880); + if (lookahead == 'a') ADVANCE(1879); + if (lookahead == 'h') ADVANCE(704); END_STATE(); case 698: - if (lookahead == 'a') ADVANCE(1564); + if (lookahead == 'a') ADVANCE(2033); END_STATE(); case 699: - if (lookahead == 'a') ADVANCE(1882); + if (lookahead == 'a') ADVANCE(1880); + if (lookahead == 'h') ADVANCE(704); + if (lookahead == 's') ADVANCE(1733); END_STATE(); case 700: - if (lookahead == 'a') ADVANCE(1565); + if (lookahead == 'a') ADVANCE(1313); + if (lookahead == 'n') ADVANCE(1894); END_STATE(); case 701: - if (lookahead == 'a') ADVANCE(1567); + if (lookahead == 'a') ADVANCE(1562); + if (lookahead == 'd') ADVANCE(1589); + if (lookahead == 'e') ADVANCE(150); + if (lookahead == 'm') ADVANCE(1306); + if (lookahead == 'p') ADVANCE(1439); + if (lookahead == 's') ADVANCE(709); + if (lookahead == 't') ADVANCE(1291); END_STATE(); case 702: - if (lookahead == 'a') ADVANCE(1568); + if (lookahead == 'a') ADVANCE(1885); END_STATE(); case 703: if (lookahead == 'a') ADVANCE(1569); END_STATE(); case 704: - if (lookahead == 'b') ADVANCE(146); + if (lookahead == 'a') ADVANCE(1887); END_STATE(); case 705: - if (lookahead == 'b') ADVANCE(146); - if (lookahead == 'u') ADVANCE(1575); + if (lookahead == 'a') ADVANCE(1570); END_STATE(); case 706: - if (lookahead == 'b') ADVANCE(337); - if (lookahead == 'c') ADVANCE(850); - if (lookahead == 'm') ADVANCE(146); - if (lookahead == 'p') ADVANCE(264); + if (lookahead == 'a') ADVANCE(1572); END_STATE(); case 707: - if (lookahead == 'b') ADVANCE(163); - if (lookahead == 'c') ADVANCE(761); - if (lookahead == 'm') ADVANCE(146); - if (lookahead == 'n') ADVANCE(1106); - if (lookahead == 'p') ADVANCE(239); + if (lookahead == 'a') ADVANCE(1573); END_STATE(); case 708: - if (lookahead == 'b') ADVANCE(338); - if (lookahead == 'c') ADVANCE(817); - if (lookahead == 'p') ADVANCE(338); + if (lookahead == 'a') ADVANCE(1574); END_STATE(); case 709: - if (lookahead == 'b') ADVANCE(237); + if (lookahead == 'b') ADVANCE(150); END_STATE(); case 710: - if (lookahead == 'b') ADVANCE(246); - if (lookahead == 'p') ADVANCE(246); + if (lookahead == 'b') ADVANCE(150); + if (lookahead == 'u') ADVANCE(1580); END_STATE(); case 711: - if (lookahead == 'b') ADVANCE(532); + if (lookahead == 'b') ADVANCE(341); + if (lookahead == 'c') ADVANCE(855); + if (lookahead == 'm') ADVANCE(150); + if (lookahead == 'p') ADVANCE(268); END_STATE(); case 712: - if (lookahead == 'b') ADVANCE(532); - if (lookahead == 'g') ADVANCE(955); + if (lookahead == 'b') ADVANCE(167); + if (lookahead == 'c') ADVANCE(766); + if (lookahead == 'm') ADVANCE(150); + if (lookahead == 'n') ADVANCE(1111); + if (lookahead == 'p') ADVANCE(243); END_STATE(); case 713: - if (lookahead == 'b') ADVANCE(532); - if (lookahead == 'm') ADVANCE(146); + if (lookahead == 'b') ADVANCE(342); + if (lookahead == 'c') ADVANCE(822); + if (lookahead == 'p') ADVANCE(342); END_STATE(); case 714: - if (lookahead == 'b') ADVANCE(532); - if (lookahead == 't') ADVANCE(146); + if (lookahead == 'b') ADVANCE(241); END_STATE(); case 715: - if (lookahead == 'b') ADVANCE(532); - if (lookahead == 't') ADVANCE(287); - if (lookahead == 'y') ADVANCE(506); + if (lookahead == 'b') ADVANCE(250); + if (lookahead == 'p') ADVANCE(250); END_STATE(); case 716: - if (lookahead == 'b') ADVANCE(1340); - if (lookahead == 'c') ADVANCE(1634); + if (lookahead == 'b') ADVANCE(537); END_STATE(); case 717: - if (lookahead == 'b') ADVANCE(244); - if (lookahead == 'p') ADVANCE(244); + if (lookahead == 'b') ADVANCE(537); + if (lookahead == 'g') ADVANCE(960); END_STATE(); case 718: - if (lookahead == 'b') ADVANCE(2080); - if (lookahead == 'p') ADVANCE(1201); + if (lookahead == 'b') ADVANCE(537); + if (lookahead == 'm') ADVANCE(150); END_STATE(); case 719: - if (lookahead == 'b') ADVANCE(877); + if (lookahead == 'b') ADVANCE(537); + if (lookahead == 't') ADVANCE(150); END_STATE(); case 720: - if (lookahead == 'b') ADVANCE(1790); + if (lookahead == 'b') ADVANCE(537); + if (lookahead == 't') ADVANCE(291); + if (lookahead == 'y') ADVANCE(511); END_STATE(); case 721: - if (lookahead == 'b') ADVANCE(912); - if (lookahead == 'p') ADVANCE(912); + if (lookahead == 'b') ADVANCE(1345); + if (lookahead == 'c') ADVANCE(1639); END_STATE(); case 722: - if (lookahead == 'b') ADVANCE(1354); - if (lookahead == 'c') ADVANCE(2081); - if (lookahead == 'n') ADVANCE(1106); - if (lookahead == 'p') ADVANCE(166); - if (lookahead == 't') ADVANCE(2070); + if (lookahead == 'b') ADVANCE(248); + if (lookahead == 'p') ADVANCE(248); END_STATE(); case 723: - if (lookahead == 'b') ADVANCE(1895); + if (lookahead == 'b') ADVANCE(2085); + if (lookahead == 'p') ADVANCE(1206); END_STATE(); case 724: - if (lookahead == 'b') ADVANCE(519); + if (lookahead == 'b') ADVANCE(882); END_STATE(); case 725: - if (lookahead == 'b') ADVANCE(1064); + if (lookahead == 'b') ADVANCE(1795); END_STATE(); case 726: - if (lookahead == 'b') ADVANCE(1498); - if (lookahead == 'p') ADVANCE(1498); + if (lookahead == 'b') ADVANCE(917); + if (lookahead == 'p') ADVANCE(917); END_STATE(); case 727: - if (lookahead == 'b') ADVANCE(1939); - if (lookahead == 'c') ADVANCE(849); - if (lookahead == 'p') ADVANCE(1016); + if (lookahead == 'b') ADVANCE(1359); + if (lookahead == 'c') ADVANCE(2086); + if (lookahead == 'n') ADVANCE(1111); + if (lookahead == 'p') ADVANCE(170); + if (lookahead == 't') ADVANCE(2075); END_STATE(); case 728: - if (lookahead == 'b') ADVANCE(1939); - if (lookahead == 'p') ADVANCE(1016); + if (lookahead == 'b') ADVANCE(1900); END_STATE(); case 729: - if (lookahead == 'b') ADVANCE(1410); + if (lookahead == 'b') ADVANCE(524); END_STATE(); case 730: - if (lookahead == 'b') ADVANCE(1413); + if (lookahead == 'b') ADVANCE(1069); END_STATE(); case 731: - if (lookahead == 'b') ADVANCE(1856); + if (lookahead == 'b') ADVANCE(1503); + if (lookahead == 'p') ADVANCE(1503); END_STATE(); case 732: - if (lookahead == 'b') ADVANCE(1416); + if (lookahead == 'b') ADVANCE(1944); + if (lookahead == 'c') ADVANCE(854); + if (lookahead == 'p') ADVANCE(1021); END_STATE(); case 733: - if (lookahead == 'b') ADVANCE(1417); + if (lookahead == 'b') ADVANCE(1944); + if (lookahead == 'p') ADVANCE(1021); END_STATE(); case 734: - if (lookahead == 'b') ADVANCE(1431); + if (lookahead == 'b') ADVANCE(1415); END_STATE(); case 735: - if (lookahead == 'b') ADVANCE(643); + if (lookahead == 'b') ADVANCE(1418); END_STATE(); case 736: - if (lookahead == 'b') ADVANCE(1422); + if (lookahead == 'b') ADVANCE(1861); END_STATE(); case 737: - if (lookahead == 'b') ADVANCE(1423); + if (lookahead == 'b') ADVANCE(1421); END_STATE(); case 738: - if (lookahead == 'b') ADVANCE(1424); + if (lookahead == 'b') ADVANCE(1422); END_STATE(); case 739: - if (lookahead == 'b') ADVANCE(1942); - if (lookahead == 'p') ADVANCE(1942); + if (lookahead == 'b') ADVANCE(1436); END_STATE(); case 740: - if (lookahead == 'c') ADVANCE(2125); + if (lookahead == 'b') ADVANCE(648); END_STATE(); case 741: - if (lookahead == 'c') ADVANCE(2125); - if (lookahead == 'e') ADVANCE(2099); + if (lookahead == 'b') ADVANCE(1427); END_STATE(); case 742: - if (lookahead == 'c') ADVANCE(2125); - if (lookahead == 'e') ADVANCE(822); - if (lookahead == 'i') ADVANCE(146); + if (lookahead == 'b') ADVANCE(1428); END_STATE(); case 743: - if (lookahead == 'c') ADVANCE(2125); - if (lookahead == 'f') ADVANCE(1736); - if (lookahead == 'i') ADVANCE(1435); - if (lookahead == 'o') ADVANCE(1668); - if (lookahead == 's') ADVANCE(764); + if (lookahead == 'b') ADVANCE(1429); END_STATE(); case 744: - if (lookahead == 'c') ADVANCE(2125); - if (lookahead == 'g') ADVANCE(1615); - if (lookahead == 'p') ADVANCE(1082); - if (lookahead == 't') ADVANCE(518); + if (lookahead == 'b') ADVANCE(1947); + if (lookahead == 'p') ADVANCE(1947); END_STATE(); case 745: - if (lookahead == 'c') ADVANCE(2125); - if (lookahead == 'i') ADVANCE(1139); + if (lookahead == 'c') ADVANCE(2130); END_STATE(); case 746: - if (lookahead == 'c') ADVANCE(2125); - if (lookahead == 'm') ADVANCE(291); + if (lookahead == 'c') ADVANCE(2130); + if (lookahead == 'e') ADVANCE(2104); END_STATE(); case 747: - if (lookahead == 'c') ADVANCE(2125); - if (lookahead == 'x') ADVANCE(751); + if (lookahead == 'c') ADVANCE(2130); + if (lookahead == 'e') ADVANCE(827); + if (lookahead == 'i') ADVANCE(150); END_STATE(); case 748: - if (lookahead == 'c') ADVANCE(146); + if (lookahead == 'c') ADVANCE(2130); + if (lookahead == 'f') ADVANCE(1741); + if (lookahead == 'i') ADVANCE(1440); + if (lookahead == 'o') ADVANCE(1673); + if (lookahead == 's') ADVANCE(769); END_STATE(); case 749: - if (lookahead == 'c') ADVANCE(146); - if (lookahead == 'i') ADVANCE(1736); + if (lookahead == 'c') ADVANCE(2130); + if (lookahead == 'g') ADVANCE(1620); + if (lookahead == 'p') ADVANCE(1087); + if (lookahead == 't') ADVANCE(523); END_STATE(); case 750: - if (lookahead == 'c') ADVANCE(324); - if (lookahead == 'l') ADVANCE(917); - if (lookahead == 'p') ADVANCE(335); - if (lookahead == 'r') ADVANCE(1337); + if (lookahead == 'c') ADVANCE(2130); + if (lookahead == 'i') ADVANCE(1144); END_STATE(); case 751: - if (lookahead == 'c') ADVANCE(291); + if (lookahead == 'c') ADVANCE(2130); + if (lookahead == 'm') ADVANCE(295); END_STATE(); case 752: - ADVANCE_MAP( - 'c', 560, - 'd', 2002, - 'f', 1736, - 'h', 393, - 'i', 146, - 'l', 393, - 'm', 558, - 'n', 1245, - 'o', 864, - 'r', 393, - 's', 781, - 'u', 1695, - 'v', 989, - 'w', 952, - ); + if (lookahead == 'c') ADVANCE(2130); + if (lookahead == 'x') ADVANCE(756); END_STATE(); case 753: - if (lookahead == 'c') ADVANCE(560); - if (lookahead == 'o') ADVANCE(865); - if (lookahead == 's') ADVANCE(1730); - if (lookahead == 't') ADVANCE(1886); - if (lookahead == 'u') ADVANCE(1694); - if (lookahead == 'v') ADVANCE(989); - if (lookahead == 'w') ADVANCE(952); + if (lookahead == 'c') ADVANCE(150); END_STATE(); case 754: - if (lookahead == 'c') ADVANCE(1634); + if (lookahead == 'c') ADVANCE(150); + if (lookahead == 'i') ADVANCE(1741); END_STATE(); case 755: - if (lookahead == 'c') ADVANCE(2157); - if (lookahead == 'h') ADVANCE(740); - if (lookahead == 't') ADVANCE(1807); + if (lookahead == 'c') ADVANCE(328); + if (lookahead == 'l') ADVANCE(922); + if (lookahead == 'p') ADVANCE(339); + if (lookahead == 'r') ADVANCE(1342); END_STATE(); case 756: - if (lookahead == 'c') ADVANCE(2157); - if (lookahead == 'o') ADVANCE(1344); - if (lookahead == 't') ADVANCE(1807); + if (lookahead == 'c') ADVANCE(295); END_STATE(); case 757: - if (lookahead == 'c') ADVANCE(232); - if (lookahead == 'h') ADVANCE(1652); - if (lookahead == 'i') ADVANCE(1466); - if (lookahead == 'm') ADVANCE(1208); - if (lookahead == 'p') ADVANCE(532); - if (lookahead == 'q') ADVANCE(1923); - if (lookahead == 'u') ADVANCE(708); + ADVANCE_MAP( + 'c', 565, + 'd', 2007, + 'f', 1741, + 'h', 398, + 'i', 150, + 'l', 398, + 'm', 563, + 'n', 1250, + 'o', 869, + 'r', 398, + 's', 786, + 'u', 1700, + 'v', 994, + 'w', 957, + ); END_STATE(); case 758: - if (lookahead == 'c') ADVANCE(918); - if (lookahead == 'd') ADVANCE(1255); - if (lookahead == 'e') ADVANCE(1467); - if (lookahead == 'n') ADVANCE(1116); - if (lookahead == 'q') ADVANCE(2040); - if (lookahead == 'r') ADVANCE(1749); - if (lookahead == 't') ADVANCE(666); + if (lookahead == 'c') ADVANCE(565); + if (lookahead == 'o') ADVANCE(870); + if (lookahead == 's') ADVANCE(1735); + if (lookahead == 't') ADVANCE(1891); + if (lookahead == 'u') ADVANCE(1699); + if (lookahead == 'v') ADVANCE(994); + if (lookahead == 'w') ADVANCE(957); END_STATE(); case 759: - if (lookahead == 'c') ADVANCE(2049); + if (lookahead == 'c') ADVANCE(1639); END_STATE(); case 760: - if (lookahead == 'c') ADVANCE(140); - if (lookahead == 's') ADVANCE(1344); + if (lookahead == 'c') ADVANCE(2162); + if (lookahead == 'h') ADVANCE(745); + if (lookahead == 't') ADVANCE(1812); END_STATE(); case 761: - if (lookahead == 'c') ADVANCE(210); + if (lookahead == 'c') ADVANCE(2162); + if (lookahead == 'o') ADVANCE(1349); + if (lookahead == 't') ADVANCE(1812); END_STATE(); case 762: - if (lookahead == 'c') ADVANCE(2152); + if (lookahead == 'c') ADVANCE(236); + if (lookahead == 'h') ADVANCE(1657); + if (lookahead == 'i') ADVANCE(1471); + if (lookahead == 'm') ADVANCE(1213); + if (lookahead == 'p') ADVANCE(537); + if (lookahead == 'q') ADVANCE(1928); + if (lookahead == 'u') ADVANCE(713); END_STATE(); case 763: - if (lookahead == 'c') ADVANCE(913); + if (lookahead == 'c') ADVANCE(923); + if (lookahead == 'd') ADVANCE(1260); + if (lookahead == 'e') ADVANCE(1472); + if (lookahead == 'n') ADVANCE(1121); + if (lookahead == 'q') ADVANCE(2045); + if (lookahead == 'r') ADVANCE(1754); + if (lookahead == 't') ADVANCE(671); END_STATE(); case 764: - if (lookahead == 'c') ADVANCE(1736); + if (lookahead == 'c') ADVANCE(2054); END_STATE(); case 765: - if (lookahead == 'c') ADVANCE(1736); - if (lookahead == 'd') ADVANCE(1584); - if (lookahead == 'i') ADVANCE(1449); + if (lookahead == 'c') ADVANCE(144); + if (lookahead == 's') ADVANCE(1349); END_STATE(); case 766: - if (lookahead == 'c') ADVANCE(1736); - if (lookahead == 'e') ADVANCE(1458); - if (lookahead == 'i') ADVANCE(1459); - if (lookahead == 'o') ADVANCE(1348); + if (lookahead == 'c') ADVANCE(214); END_STATE(); case 767: - if (lookahead == 'c') ADVANCE(1736); - if (lookahead == 'e') ADVANCE(1992); - if (lookahead == 'm') ADVANCE(1298); - if (lookahead == 't') ADVANCE(636); + if (lookahead == 'c') ADVANCE(2157); END_STATE(); case 768: - if (lookahead == 'c') ADVANCE(1736); - if (lookahead == 'e') ADVANCE(1769); + if (lookahead == 'c') ADVANCE(918); END_STATE(); case 769: - if (lookahead == 'c') ADVANCE(1736); - if (lookahead == 'g') ADVANCE(914); - if (lookahead == 't') ADVANCE(1169); + if (lookahead == 'c') ADVANCE(1741); END_STATE(); case 770: - if (lookahead == 'c') ADVANCE(1736); - if (lookahead == 'g') ADVANCE(1268); + if (lookahead == 'c') ADVANCE(1741); + if (lookahead == 'd') ADVANCE(1589); + if (lookahead == 'i') ADVANCE(1454); END_STATE(); case 771: - if (lookahead == 'c') ADVANCE(1736); - if (lookahead == 'h') ADVANCE(146); + if (lookahead == 'c') ADVANCE(1741); + if (lookahead == 'e') ADVANCE(1463); + if (lookahead == 'i') ADVANCE(1464); + if (lookahead == 'o') ADVANCE(1353); END_STATE(); case 772: - if (lookahead == 'c') ADVANCE(1736); - if (lookahead == 'h') ADVANCE(146); - if (lookahead == 't') ADVANCE(1807); + if (lookahead == 'c') ADVANCE(1741); + if (lookahead == 'e') ADVANCE(1997); + if (lookahead == 'm') ADVANCE(1303); + if (lookahead == 't') ADVANCE(641); END_STATE(); case 773: - if (lookahead == 'c') ADVANCE(1736); - if (lookahead == 'i') ADVANCE(146); + if (lookahead == 'c') ADVANCE(1741); + if (lookahead == 'e') ADVANCE(1774); END_STATE(); case 774: - if (lookahead == 'c') ADVANCE(1736); - if (lookahead == 'i') ADVANCE(1449); + if (lookahead == 'c') ADVANCE(1741); + if (lookahead == 'g') ADVANCE(919); + if (lookahead == 't') ADVANCE(1174); END_STATE(); case 775: - if (lookahead == 'c') ADVANCE(1736); - if (lookahead == 'i') ADVANCE(1454); + if (lookahead == 'c') ADVANCE(1741); + if (lookahead == 'g') ADVANCE(1273); END_STATE(); case 776: - if (lookahead == 'c') ADVANCE(1736); - if (lookahead == 'i') ADVANCE(1496); + if (lookahead == 'c') ADVANCE(1741); + if (lookahead == 'h') ADVANCE(150); END_STATE(); case 777: - if (lookahead == 'c') ADVANCE(1736); - if (lookahead == 'l') ADVANCE(565); - if (lookahead == 't') ADVANCE(1807); + if (lookahead == 'c') ADVANCE(1741); + if (lookahead == 'h') ADVANCE(150); + if (lookahead == 't') ADVANCE(1812); END_STATE(); case 778: - if (lookahead == 'c') ADVANCE(1736); - if (lookahead == 'l') ADVANCE(1106); + if (lookahead == 'c') ADVANCE(1741); + if (lookahead == 'i') ADVANCE(150); END_STATE(); case 779: - if (lookahead == 'c') ADVANCE(1736); - if (lookahead == 'l') ADVANCE(593); + if (lookahead == 'c') ADVANCE(1741); + if (lookahead == 'i') ADVANCE(1454); END_STATE(); case 780: - if (lookahead == 'c') ADVANCE(1736); - if (lookahead == 'l') ADVANCE(593); - if (lookahead == 'o') ADVANCE(1344); + if (lookahead == 'c') ADVANCE(1741); + if (lookahead == 'i') ADVANCE(1459); END_STATE(); case 781: - if (lookahead == 'c') ADVANCE(1736); - if (lookahead == 'q') ADVANCE(833); + if (lookahead == 'c') ADVANCE(1741); + if (lookahead == 'i') ADVANCE(1501); END_STATE(); case 782: - if (lookahead == 'c') ADVANCE(1736); - if (lookahead == 's') ADVANCE(1251); + if (lookahead == 'c') ADVANCE(1741); + if (lookahead == 'l') ADVANCE(570); + if (lookahead == 't') ADVANCE(1812); END_STATE(); case 783: - if (lookahead == 'c') ADVANCE(1736); - if (lookahead == 't') ADVANCE(146); - if (lookahead == 'y') ADVANCE(1474); + if (lookahead == 'c') ADVANCE(1741); + if (lookahead == 'l') ADVANCE(1111); END_STATE(); case 784: - if (lookahead == 'c') ADVANCE(1736); - if (lookahead == 't') ADVANCE(1704); + if (lookahead == 'c') ADVANCE(1741); + if (lookahead == 'l') ADVANCE(598); END_STATE(); case 785: - if (lookahead == 'c') ADVANCE(1736); - if (lookahead == 't') ADVANCE(1807); + if (lookahead == 'c') ADVANCE(1741); + if (lookahead == 'l') ADVANCE(598); + if (lookahead == 'o') ADVANCE(1349); END_STATE(); case 786: - if (lookahead == 'c') ADVANCE(1736); - if (lookahead == 'u') ADVANCE(717); + if (lookahead == 'c') ADVANCE(1741); + if (lookahead == 'q') ADVANCE(838); END_STATE(); case 787: - if (lookahead == 'c') ADVANCE(1736); - if (lookahead == 'u') ADVANCE(726); + if (lookahead == 'c') ADVANCE(1741); + if (lookahead == 's') ADVANCE(1256); END_STATE(); case 788: - if (lookahead == 'c') ADVANCE(518); - if (lookahead == 'l') ADVANCE(898); - if (lookahead == 'q') ADVANCE(2060); - if (lookahead == 's') ADVANCE(1169); + if (lookahead == 'c') ADVANCE(1741); + if (lookahead == 't') ADVANCE(150); + if (lookahead == 'y') ADVANCE(1479); END_STATE(); case 789: - if (lookahead == 'c') ADVANCE(518); - if (lookahead == 'q') ADVANCE(2060); - if (lookahead == 'r') ADVANCE(899); - if (lookahead == 's') ADVANCE(1169); + if (lookahead == 'c') ADVANCE(1741); + if (lookahead == 't') ADVANCE(1709); END_STATE(); case 790: - if (lookahead == 'c') ADVANCE(1336); - if (lookahead == 'r') ADVANCE(2095); + if (lookahead == 'c') ADVANCE(1741); + if (lookahead == 't') ADVANCE(1812); END_STATE(); case 791: - if (lookahead == 'c') ADVANCE(1503); - if (lookahead == 'i') ADVANCE(1573); - if (lookahead == 'm') ADVANCE(1249); - if (lookahead == 'p') ADVANCE(146); - if (lookahead == 't') ADVANCE(1005); + if (lookahead == 'c') ADVANCE(1741); + if (lookahead == 'u') ADVANCE(722); END_STATE(); case 792: - if (lookahead == 'c') ADVANCE(605); - if (lookahead == 's') ADVANCE(2041); - if (lookahead == 'u') ADVANCE(209); + if (lookahead == 'c') ADVANCE(1741); + if (lookahead == 'u') ADVANCE(731); END_STATE(); case 793: - if (lookahead == 'c') ADVANCE(1944); + if (lookahead == 'c') ADVANCE(523); + if (lookahead == 'l') ADVANCE(903); + if (lookahead == 'q') ADVANCE(2065); + if (lookahead == 's') ADVANCE(1174); END_STATE(); case 794: - if (lookahead == 'c') ADVANCE(1327); - if (lookahead == 'r') ADVANCE(2098); + if (lookahead == 'c') ADVANCE(523); + if (lookahead == 'q') ADVANCE(2065); + if (lookahead == 'r') ADVANCE(904); + if (lookahead == 's') ADVANCE(1174); END_STATE(); case 795: - if (lookahead == 'c') ADVANCE(1276); - if (lookahead == 's') ADVANCE(1243); - if (lookahead == 'u') ADVANCE(612); - if (lookahead == 'v') ADVANCE(1711); + if (lookahead == 'c') ADVANCE(1341); + if (lookahead == 'r') ADVANCE(2100); END_STATE(); case 796: - if (lookahead == 'c') ADVANCE(1275); - if (lookahead == 'e') ADVANCE(872); - if (lookahead == 'f') ADVANCE(1736); - if (lookahead == 'o') ADVANCE(1666); - if (lookahead == 'p') ADVANCE(146); - if (lookahead == 'r') ADVANCE(260); - if (lookahead == 's') ADVANCE(764); + if (lookahead == 'c') ADVANCE(1508); + if (lookahead == 'i') ADVANCE(1578); + if (lookahead == 'm') ADVANCE(1254); + if (lookahead == 'p') ADVANCE(150); + if (lookahead == 't') ADVANCE(1010); END_STATE(); case 797: - if (lookahead == 'c') ADVANCE(1275); - if (lookahead == 'e') ADVANCE(901); - if (lookahead == 'f') ADVANCE(1736); - if (lookahead == 'o') ADVANCE(1666); - if (lookahead == 's') ADVANCE(764); + if (lookahead == 'c') ADVANCE(610); + if (lookahead == 's') ADVANCE(2046); + if (lookahead == 'u') ADVANCE(213); END_STATE(); case 798: - if (lookahead == 'c') ADVANCE(2048); + if (lookahead == 'c') ADVANCE(1949); END_STATE(); case 799: - if (lookahead == 'c') ADVANCE(2048); - if (lookahead == 'r') ADVANCE(1736); + if (lookahead == 'c') ADVANCE(1332); + if (lookahead == 'r') ADVANCE(2103); END_STATE(); case 800: - if (lookahead == 'c') ADVANCE(2048); - if (lookahead == 'r') ADVANCE(1772); + if (lookahead == 'c') ADVANCE(1281); + if (lookahead == 's') ADVANCE(1248); + if (lookahead == 'u') ADVANCE(617); + if (lookahead == 'v') ADVANCE(1716); END_STATE(); case 801: - if (lookahead == 'c') ADVANCE(2048); - if (lookahead == 's') ADVANCE(1944); + if (lookahead == 'c') ADVANCE(1280); + if (lookahead == 'e') ADVANCE(877); + if (lookahead == 'f') ADVANCE(1741); + if (lookahead == 'o') ADVANCE(1671); + if (lookahead == 'p') ADVANCE(150); + if (lookahead == 'r') ADVANCE(264); + if (lookahead == 's') ADVANCE(769); END_STATE(); case 802: - if (lookahead == 'c') ADVANCE(2048); - if (lookahead == 's') ADVANCE(1998); + if (lookahead == 'c') ADVANCE(1280); + if (lookahead == 'e') ADVANCE(906); + if (lookahead == 'f') ADVANCE(1741); + if (lookahead == 'o') ADVANCE(1671); + if (lookahead == 's') ADVANCE(769); END_STATE(); case 803: - if (lookahead == 'c') ADVANCE(1663); - if (lookahead == 'd') ADVANCE(1736); + if (lookahead == 'c') ADVANCE(2053); END_STATE(); case 804: - if (lookahead == 'c') ADVANCE(2081); + if (lookahead == 'c') ADVANCE(2053); + if (lookahead == 'r') ADVANCE(1741); END_STATE(); case 805: - ADVANCE_MAP( - 'c', 2081, - 'e', 1467, - 'g', 1854, - 'm', 719, - 'n', 1114, - 'p', 146, - 'q', 2040, - 'r', 1747, - 't', 211, - ); + if (lookahead == 'c') ADVANCE(2053); + if (lookahead == 'r') ADVANCE(1777); END_STATE(); case 806: - if (lookahead == 'c') ADVANCE(2081); - if (lookahead == 'm') ADVANCE(719); - if (lookahead == 'n') ADVANCE(1106); - if (lookahead == 'p') ADVANCE(1433); - if (lookahead == 'r') ADVANCE(1736); + if (lookahead == 'c') ADVANCE(2053); + if (lookahead == 's') ADVANCE(1949); END_STATE(); case 807: - if (lookahead == 'c') ADVANCE(2081); - if (lookahead == 'm') ADVANCE(1477); - if (lookahead == 'p') ADVANCE(146); + if (lookahead == 'c') ADVANCE(2053); + if (lookahead == 's') ADVANCE(2003); END_STATE(); case 808: - if (lookahead == 'c') ADVANCE(2081); - if (lookahead == 'n') ADVANCE(1106); - if (lookahead == 'r') ADVANCE(1782); + if (lookahead == 'c') ADVANCE(1668); + if (lookahead == 'd') ADVANCE(1741); END_STATE(); case 809: - if (lookahead == 'c') ADVANCE(2081); - if (lookahead == 'p') ADVANCE(204); - if (lookahead == 'r') ADVANCE(949); + if (lookahead == 'c') ADVANCE(2086); END_STATE(); case 810: - if (lookahead == 'c') ADVANCE(2081); - if (lookahead == 'p') ADVANCE(286); - if (lookahead == 'y') ADVANCE(1394); + ADVANCE_MAP( + 'c', 2086, + 'e', 1472, + 'g', 1859, + 'm', 724, + 'n', 1119, + 'p', 150, + 'q', 2045, + 'r', 1752, + 't', 215, + ); END_STATE(); case 811: - if (lookahead == 'c') ADVANCE(975); - if (lookahead == 't') ADVANCE(146); + if (lookahead == 'c') ADVANCE(2086); + if (lookahead == 'm') ADVANCE(724); + if (lookahead == 'n') ADVANCE(1111); + if (lookahead == 'p') ADVANCE(1438); + if (lookahead == 'r') ADVANCE(1741); END_STATE(); case 812: - if (lookahead == 'c') ADVANCE(1615); + if (lookahead == 'c') ADVANCE(2086); + if (lookahead == 'm') ADVANCE(1482); + if (lookahead == 'p') ADVANCE(150); END_STATE(); case 813: - if (lookahead == 'c') ADVANCE(1325); + if (lookahead == 'c') ADVANCE(2086); + if (lookahead == 'n') ADVANCE(1111); + if (lookahead == 'r') ADVANCE(1787); END_STATE(); case 814: - if (lookahead == 'c') ADVANCE(1334); + if (lookahead == 'c') ADVANCE(2086); + if (lookahead == 'p') ADVANCE(208); + if (lookahead == 'r') ADVANCE(954); END_STATE(); case 815: - if (lookahead == 'c') ADVANCE(1334); - if (lookahead == 's') ADVANCE(926); + if (lookahead == 'c') ADVANCE(2086); + if (lookahead == 'p') ADVANCE(290); + if (lookahead == 'y') ADVANCE(1399); END_STATE(); case 816: - if (lookahead == 'c') ADVANCE(1326); - if (lookahead == 'n') ADVANCE(502); + if (lookahead == 'c') ADVANCE(980); + if (lookahead == 't') ADVANCE(150); END_STATE(); case 817: - if (lookahead == 'c') ADVANCE(253); + if (lookahead == 'c') ADVANCE(1620); END_STATE(); case 818: - if (lookahead == 'c') ADVANCE(1202); + if (lookahead == 'c') ADVANCE(1330); END_STATE(); case 819: - if (lookahead == 'c') ADVANCE(1595); - if (lookahead == 'i') ADVANCE(1503); + if (lookahead == 'c') ADVANCE(1339); END_STATE(); case 820: - if (lookahead == 'c') ADVANCE(1329); - if (lookahead == 'n') ADVANCE(1325); + if (lookahead == 'c') ADVANCE(1339); + if (lookahead == 's') ADVANCE(931); END_STATE(); case 821: - if (lookahead == 'c') ADVANCE(558); + if (lookahead == 'c') ADVANCE(1331); + if (lookahead == 'n') ADVANCE(507); END_STATE(); case 822: - if (lookahead == 'c') ADVANCE(1330); + if (lookahead == 'c') ADVANCE(257); END_STATE(); case 823: - if (lookahead == 'c') ADVANCE(1344); - if (lookahead == 'i') ADVANCE(1900); - if (lookahead == 'p') ADVANCE(1044); + if (lookahead == 'c') ADVANCE(1207); END_STATE(); case 824: - if (lookahead == 'c') ADVANCE(1339); - if (lookahead == 'n') ADVANCE(1909); + if (lookahead == 'c') ADVANCE(1600); + if (lookahead == 'i') ADVANCE(1508); END_STATE(); case 825: - if (lookahead == 'c') ADVANCE(667); - if (lookahead == 'r') ADVANCE(1527); - if (lookahead == 't') ADVANCE(518); + if (lookahead == 'c') ADVANCE(1334); + if (lookahead == 'n') ADVANCE(1330); END_STATE(); case 826: - if (lookahead == 'c') ADVANCE(1331); - if (lookahead == 'k') ADVANCE(2094); + if (lookahead == 'c') ADVANCE(563); END_STATE(); case 827: - if (lookahead == 'c') ADVANCE(748); + if (lookahead == 'c') ADVANCE(1335); END_STATE(); case 828: - if (lookahead == 'c') ADVANCE(912); + if (lookahead == 'c') ADVANCE(1349); + if (lookahead == 'i') ADVANCE(1905); + if (lookahead == 'p') ADVANCE(1049); END_STATE(); case 829: - if (lookahead == 'c') ADVANCE(1183); + if (lookahead == 'c') ADVANCE(1344); + if (lookahead == 'n') ADVANCE(1914); END_STATE(); case 830: - if (lookahead == 'c') ADVANCE(1789); + if (lookahead == 'c') ADVANCE(672); + if (lookahead == 'r') ADVANCE(1532); + if (lookahead == 't') ADVANCE(523); END_STATE(); case 831: - if (lookahead == 'c') ADVANCE(1789); - if (lookahead == 'd') ADVANCE(146); - if (lookahead == 'n') ADVANCE(2051); + if (lookahead == 'c') ADVANCE(1336); + if (lookahead == 'k') ADVANCE(2099); END_STATE(); case 832: - if (lookahead == 'c') ADVANCE(1909); + if (lookahead == 'c') ADVANCE(753); END_STATE(); case 833: - if (lookahead == 'c') ADVANCE(2044); + if (lookahead == 'c') ADVANCE(917); END_STATE(); case 834: - if (lookahead == 'c') ADVANCE(1943); + if (lookahead == 'c') ADVANCE(1188); END_STATE(); case 835: - if (lookahead == 'c') ADVANCE(586); + if (lookahead == 'c') ADVANCE(1794); END_STATE(); case 836: - if (lookahead == 'c') ADVANCE(1219); + if (lookahead == 'c') ADVANCE(1794); + if (lookahead == 'd') ADVANCE(150); + if (lookahead == 'n') ADVANCE(2056); END_STATE(); case 837: - if (lookahead == 'c') ADVANCE(1219); - if (lookahead == 'r') ADVANCE(146); + if (lookahead == 'c') ADVANCE(1914); END_STATE(); case 838: - if (lookahead == 'c') ADVANCE(1052); + if (lookahead == 'c') ADVANCE(2049); END_STATE(); case 839: - if (lookahead == 'c') ADVANCE(1778); - if (lookahead == 'd') ADVANCE(200); - if (lookahead == 'n') ADVANCE(2059); + if (lookahead == 'c') ADVANCE(1948); END_STATE(); case 840: - if (lookahead == 'c') ADVANCE(2030); + if (lookahead == 'c') ADVANCE(591); END_STATE(); case 841: - if (lookahead == 'c') ADVANCE(2017); + if (lookahead == 'c') ADVANCE(1224); END_STATE(); case 842: - if (lookahead == 'c') ADVANCE(1048); + if (lookahead == 'c') ADVANCE(1224); + if (lookahead == 'r') ADVANCE(150); END_STATE(); case 843: - if (lookahead == 'c') ADVANCE(2001); + if (lookahead == 'c') ADVANCE(1057); END_STATE(); case 844: - if (lookahead == 'c') ADVANCE(1277); - if (lookahead == 'f') ADVANCE(1736); - if (lookahead == 'm') ADVANCE(585); - if (lookahead == 'o') ADVANCE(1666); - if (lookahead == 's') ADVANCE(768); - if (lookahead == 'u') ADVANCE(1332); + if (lookahead == 'c') ADVANCE(1783); + if (lookahead == 'd') ADVANCE(204); + if (lookahead == 'n') ADVANCE(2064); END_STATE(); case 845: - if (lookahead == 'c') ADVANCE(1277); - if (lookahead == 'f') ADVANCE(1736); - if (lookahead == 'o') ADVANCE(1666); - if (lookahead == 's') ADVANCE(768); - if (lookahead == 'u') ADVANCE(1332); + if (lookahead == 'c') ADVANCE(2035); END_STATE(); case 846: - if (lookahead == 'c') ADVANCE(1636); - if (lookahead == 'i') ADVANCE(1511); - if (lookahead == 't') ADVANCE(1771); + if (lookahead == 'c') ADVANCE(2022); END_STATE(); case 847: - if (lookahead == 'c') ADVANCE(1636); - if (lookahead == 't') ADVANCE(1771); + if (lookahead == 'c') ADVANCE(1053); END_STATE(); case 848: - if (lookahead == 'c') ADVANCE(1338); + if (lookahead == 'c') ADVANCE(2006); END_STATE(); case 849: - if (lookahead == 'c') ADVANCE(1018); + if (lookahead == 'c') ADVANCE(1282); + if (lookahead == 'f') ADVANCE(1741); + if (lookahead == 'm') ADVANCE(590); + if (lookahead == 'o') ADVANCE(1671); + if (lookahead == 's') ADVANCE(773); + if (lookahead == 'u') ADVANCE(1337); END_STATE(); case 850: - if (lookahead == 'c') ADVANCE(1018); - if (lookahead == 'h') ADVANCE(507); + if (lookahead == 'c') ADVANCE(1282); + if (lookahead == 'f') ADVANCE(1741); + if (lookahead == 'o') ADVANCE(1671); + if (lookahead == 's') ADVANCE(773); + if (lookahead == 'u') ADVANCE(1337); END_STATE(); case 851: - if (lookahead == 'c') ADVANCE(625); + if (lookahead == 'c') ADVANCE(1641); + if (lookahead == 'i') ADVANCE(1516); + if (lookahead == 't') ADVANCE(1776); END_STATE(); case 852: - if (lookahead == 'c') ADVANCE(1409); + if (lookahead == 'c') ADVANCE(1641); + if (lookahead == 't') ADVANCE(1776); END_STATE(); case 853: - if (lookahead == 'c') ADVANCE(1833); - if (lookahead == 'm') ADVANCE(1621); + if (lookahead == 'c') ADVANCE(1343); END_STATE(); case 854: - if (lookahead == 'c') ADVANCE(629); + if (lookahead == 'c') ADVANCE(1023); END_STATE(); case 855: - if (lookahead == 'c') ADVANCE(2016); + if (lookahead == 'c') ADVANCE(1023); + if (lookahead == 'h') ADVANCE(512); END_STATE(); case 856: - if (lookahead == 'c') ADVANCE(1604); - if (lookahead == 'e') ADVANCE(1662); - if (lookahead == 'p') ADVANCE(1806); - if (lookahead == 's') ADVANCE(1261); + if (lookahead == 'c') ADVANCE(630); END_STATE(); case 857: - if (lookahead == 'c') ADVANCE(1393); + if (lookahead == 'c') ADVANCE(1414); END_STATE(); case 858: - if (lookahead == 'c') ADVANCE(632); + if (lookahead == 'c') ADVANCE(1838); + if (lookahead == 'm') ADVANCE(1626); END_STATE(); case 859: - if (lookahead == 'c') ADVANCE(670); - if (lookahead == 'm') ADVANCE(1697); - if (lookahead == 'p') ADVANCE(1904); - if (lookahead == 'r') ADVANCE(1550); - if (lookahead == 't') ADVANCE(2112); + if (lookahead == 'c') ADVANCE(634); END_STATE(); case 860: - if (lookahead == 'c') ADVANCE(677); + if (lookahead == 'c') ADVANCE(2021); END_STATE(); case 861: - if (lookahead == 'c') ADVANCE(1076); + if (lookahead == 'c') ADVANCE(1609); + if (lookahead == 'e') ADVANCE(1667); + if (lookahead == 'p') ADVANCE(1811); + if (lookahead == 's') ADVANCE(1266); END_STATE(); case 862: - if (lookahead == 'd') ADVANCE(1584); + if (lookahead == 'c') ADVANCE(1398); END_STATE(); case 863: - if (lookahead == 'd') ADVANCE(1584); - if (lookahead == 'i') ADVANCE(1426); - if (lookahead == 'r') ADVANCE(1215); + if (lookahead == 'c') ADVANCE(637); END_STATE(); case 864: - if (lookahead == 'd') ADVANCE(1584); - if (lookahead == 'p') ADVANCE(1083); - if (lookahead == 't') ADVANCE(1286); + if (lookahead == 'c') ADVANCE(675); + if (lookahead == 'm') ADVANCE(1702); + if (lookahead == 'p') ADVANCE(1909); + if (lookahead == 'r') ADVANCE(1555); + if (lookahead == 't') ADVANCE(2117); END_STATE(); case 865: - if (lookahead == 'd') ADVANCE(1584); - if (lookahead == 'p') ADVANCE(1434); - if (lookahead == 't') ADVANCE(1290); + if (lookahead == 'c') ADVANCE(682); END_STATE(); case 866: - if (lookahead == 'd') ADVANCE(1584); - if (lookahead == 'r') ADVANCE(1215); + if (lookahead == 'c') ADVANCE(1081); END_STATE(); case 867: - if (lookahead == 'd') ADVANCE(146); + if (lookahead == 'd') ADVANCE(1589); END_STATE(); case 868: - if (lookahead == 'd') ADVANCE(146); - if (lookahead == 'f') ADVANCE(591); - if (lookahead == 'p') ADVANCE(342); + if (lookahead == 'd') ADVANCE(1589); + if (lookahead == 'i') ADVANCE(1431); + if (lookahead == 'r') ADVANCE(1220); END_STATE(); case 869: - if (lookahead == 'd') ADVANCE(146); - if (lookahead == 'l') ADVANCE(912); + if (lookahead == 'd') ADVANCE(1589); + if (lookahead == 'p') ADVANCE(1088); + if (lookahead == 't') ADVANCE(1291); END_STATE(); case 870: - if (lookahead == 'd') ADVANCE(146); - if (lookahead == 'u') ADVANCE(291); + if (lookahead == 'd') ADVANCE(1589); + if (lookahead == 'p') ADVANCE(1439); + if (lookahead == 't') ADVANCE(1295); END_STATE(); case 871: - if (lookahead == 'd') ADVANCE(205); - if (lookahead == 'g') ADVANCE(245); + if (lookahead == 'd') ADVANCE(1589); + if (lookahead == 'r') ADVANCE(1220); END_STATE(); case 872: - if (lookahead == 'd') ADVANCE(712); - if (lookahead == 'i') ADVANCE(1007); + if (lookahead == 'd') ADVANCE(150); END_STATE(); case 873: - if (lookahead == 'd') ADVANCE(1430); + if (lookahead == 'd') ADVANCE(150); + if (lookahead == 'f') ADVANCE(596); + if (lookahead == 'p') ADVANCE(346); END_STATE(); case 874: - if (lookahead == 'd') ADVANCE(501); + if (lookahead == 'd') ADVANCE(150); + if (lookahead == 'l') ADVANCE(917); END_STATE(); case 875: - if (lookahead == 'd') ADVANCE(477); + if (lookahead == 'd') ADVANCE(150); + if (lookahead == 'u') ADVANCE(295); END_STATE(); case 876: - if (lookahead == 'd') ADVANCE(467); + if (lookahead == 'd') ADVANCE(209); + if (lookahead == 'g') ADVANCE(249); END_STATE(); case 877: - if (lookahead == 'd') ADVANCE(518); + if (lookahead == 'd') ADVANCE(717); + if (lookahead == 'i') ADVANCE(1012); END_STATE(); case 878: - if (lookahead == 'd') ADVANCE(740); - if (lookahead == 'r') ADVANCE(230); + if (lookahead == 'd') ADVANCE(1435); END_STATE(); case 879: - if (lookahead == 'd') ADVANCE(277); + if (lookahead == 'd') ADVANCE(506); END_STATE(); case 880: - if (lookahead == 'd') ADVANCE(188); + if (lookahead == 'd') ADVANCE(482); END_STATE(); case 881: - if (lookahead == 'd') ADVANCE(991); - if (lookahead == 'i') ADVANCE(1619); + if (lookahead == 'd') ADVANCE(472); END_STATE(); case 882: - if (lookahead == 'd') ADVANCE(244); + if (lookahead == 'd') ADVANCE(523); END_STATE(); case 883: - if (lookahead == 'd') ADVANCE(565); + if (lookahead == 'd') ADVANCE(745); + if (lookahead == 'r') ADVANCE(234); END_STATE(); case 884: - if (lookahead == 'd') ADVANCE(584); + if (lookahead == 'd') ADVANCE(281); END_STATE(); case 885: - if (lookahead == 'd') ADVANCE(339); + if (lookahead == 'd') ADVANCE(192); END_STATE(); case 886: - if (lookahead == 'd') ADVANCE(257); + if (lookahead == 'd') ADVANCE(996); + if (lookahead == 'i') ADVANCE(1624); END_STATE(); case 887: - if (lookahead == 'd') ADVANCE(1252); + if (lookahead == 'd') ADVANCE(248); END_STATE(); case 888: - if (lookahead == 'd') ADVANCE(1252); - if (lookahead == 'l') ADVANCE(1442); + if (lookahead == 'd') ADVANCE(570); END_STATE(); case 889: - if (lookahead == 'd') ADVANCE(912); + if (lookahead == 'd') ADVANCE(589); END_STATE(); case 890: - if (lookahead == 'd') ADVANCE(2056); + if (lookahead == 'd') ADVANCE(343); END_STATE(); case 891: - if (lookahead == 'd') ADVANCE(2056); - if (lookahead == 'p') ADVANCE(1658); + if (lookahead == 'd') ADVANCE(261); END_STATE(); case 892: - if (lookahead == 'd') ADVANCE(1210); + if (lookahead == 'd') ADVANCE(1257); END_STATE(); case 893: - if (lookahead == 'd') ADVANCE(1210); - if (lookahead == 'm') ADVANCE(1697); - if (lookahead == 'n') ADVANCE(343); + if (lookahead == 'd') ADVANCE(1257); + if (lookahead == 'l') ADVANCE(1447); END_STATE(); case 894: - if (lookahead == 'd') ADVANCE(1935); - if (lookahead == 'u') ADVANCE(1179); + if (lookahead == 'd') ADVANCE(917); END_STATE(); case 895: - if (lookahead == 'd') ADVANCE(927); + if (lookahead == 'd') ADVANCE(2061); END_STATE(); case 896: - if (lookahead == 'd') ADVANCE(1898); + if (lookahead == 'd') ADVANCE(2061); + if (lookahead == 'p') ADVANCE(1663); END_STATE(); case 897: - if (lookahead == 'd') ADVANCE(1991); + if (lookahead == 'd') ADVANCE(1215); END_STATE(); case 898: - if (lookahead == 'd') ADVANCE(1179); + if (lookahead == 'd') ADVANCE(1215); + if (lookahead == 'm') ADVANCE(1702); + if (lookahead == 'n') ADVANCE(347); END_STATE(); case 899: - if (lookahead == 'd') ADVANCE(1179); - if (lookahead == 'u') ADVANCE(1935); + if (lookahead == 'd') ADVANCE(1940); + if (lookahead == 'u') ADVANCE(1184); END_STATE(); case 900: - if (lookahead == 'd') ADVANCE(1285); - if (lookahead == 'n') ADVANCE(2020); + if (lookahead == 'd') ADVANCE(932); END_STATE(); case 901: - if (lookahead == 'd') ADVANCE(1131); + if (lookahead == 'd') ADVANCE(1903); END_STATE(); case 902: - if (lookahead == 'd') ADVANCE(1577); - if (lookahead == 'u') ADVANCE(1663); + if (lookahead == 'd') ADVANCE(1996); END_STATE(); case 903: - if (lookahead == 'd') ADVANCE(996); - if (lookahead == 'p') ADVANCE(1082); + if (lookahead == 'd') ADVANCE(1184); END_STATE(); case 904: - if (lookahead == 'd') ADVANCE(992); - if (lookahead == 'r') ADVANCE(146); + if (lookahead == 'd') ADVANCE(1184); + if (lookahead == 'u') ADVANCE(1940); END_STATE(); case 905: - if (lookahead == 'd') ADVANCE(1009); + if (lookahead == 'd') ADVANCE(1290); + if (lookahead == 'n') ADVANCE(2025); END_STATE(); case 906: - if (lookahead == 'd') ADVANCE(1600); + if (lookahead == 'd') ADVANCE(1136); END_STATE(); case 907: - if (lookahead == 'd') ADVANCE(1249); + if (lookahead == 'd') ADVANCE(1582); + if (lookahead == 'u') ADVANCE(1668); END_STATE(); case 908: - if (lookahead == 'd') ADVANCE(1249); - if (lookahead == 'i') ADVANCE(1344); + if (lookahead == 'd') ADVANCE(1001); + if (lookahead == 'p') ADVANCE(1087); END_STATE(); case 909: - if (lookahead == 'd') ADVANCE(1011); + if (lookahead == 'd') ADVANCE(997); + if (lookahead == 'r') ADVANCE(150); END_STATE(); case 910: - if (lookahead == 'd') ADVANCE(631); - if (lookahead == 'e') ADVANCE(1679); - if (lookahead == 'l') ADVANCE(652); - if (lookahead == 'p') ADVANCE(220); - if (lookahead == 'r') ADVANCE(659); - if (lookahead == 'v') ADVANCE(989); - if (lookahead == 'w') ADVANCE(911); + if (lookahead == 'd') ADVANCE(1014); END_STATE(); case 911: - if (lookahead == 'e') ADVANCE(867); + if (lookahead == 'd') ADVANCE(1605); END_STATE(); case 912: - if (lookahead == 'e') ADVANCE(146); + if (lookahead == 'd') ADVANCE(1254); END_STATE(); case 913: - if (lookahead == 'e') ADVANCE(146); - if (lookahead == 'k') ADVANCE(948); + if (lookahead == 'd') ADVANCE(1254); + if (lookahead == 'i') ADVANCE(1349); END_STATE(); case 914: - if (lookahead == 'e') ADVANCE(146); - if (lookahead == 'l') ADVANCE(1258); - if (lookahead == 'p') ADVANCE(638); + if (lookahead == 'd') ADVANCE(1016); END_STATE(); case 915: - if (lookahead == 'e') ADVANCE(146); - if (lookahead == 'r') ADVANCE(715); + if (lookahead == 'd') ADVANCE(636); + if (lookahead == 'e') ADVANCE(1684); + if (lookahead == 'l') ADVANCE(657); + if (lookahead == 'p') ADVANCE(224); + if (lookahead == 'r') ADVANCE(664); + if (lookahead == 'v') ADVANCE(994); + if (lookahead == 'w') ADVANCE(916); END_STATE(); case 916: - if (lookahead == 'e') ADVANCE(146); - if (lookahead == 's') ADVANCE(1350); + if (lookahead == 'e') ADVANCE(872); END_STATE(); case 917: - if (lookahead == 'e') ADVANCE(146); - if (lookahead == 't') ADVANCE(262); + if (lookahead == 'e') ADVANCE(150); END_STATE(); case 918: - if (lookahead == 'e') ADVANCE(146); - if (lookahead == 'u') ADVANCE(1993); + if (lookahead == 'e') ADVANCE(150); + if (lookahead == 'k') ADVANCE(953); END_STATE(); case 919: - if (lookahead == 'e') ADVANCE(428); + if (lookahead == 'e') ADVANCE(150); + if (lookahead == 'l') ADVANCE(1263); + if (lookahead == 'p') ADVANCE(643); END_STATE(); case 920: - if (lookahead == 'e') ADVANCE(303); + if (lookahead == 'e') ADVANCE(150); + if (lookahead == 'r') ADVANCE(720); END_STATE(); case 921: - if (lookahead == 'e') ADVANCE(2099); + if (lookahead == 'e') ADVANCE(150); + if (lookahead == 's') ADVANCE(1355); END_STATE(); case 922: - if (lookahead == 'e') ADVANCE(2099); - if (lookahead == 'v') ADVANCE(724); + if (lookahead == 'e') ADVANCE(150); + if (lookahead == 't') ADVANCE(266); END_STATE(); case 923: - if (lookahead == 'e') ADVANCE(1091); - if (lookahead == 'p') ADVANCE(1172); + if (lookahead == 'e') ADVANCE(150); + if (lookahead == 'u') ADVANCE(1998); END_STATE(); case 924: - if (lookahead == 'e') ADVANCE(323); - if (lookahead == 'o') ADVANCE(1944); + if (lookahead == 'e') ADVANCE(433); END_STATE(); case 925: - if (lookahead == 'e') ADVANCE(219); - if (lookahead == 'l') ADVANCE(1401); - if (lookahead == 'r') ADVANCE(714); + if (lookahead == 'e') ADVANCE(307); END_STATE(); case 926: - if (lookahead == 'e') ADVANCE(425); + if (lookahead == 'e') ADVANCE(2104); END_STATE(); case 927: - if (lookahead == 'e') ADVANCE(170); + if (lookahead == 'e') ADVANCE(2104); + if (lookahead == 'v') ADVANCE(729); END_STATE(); case 928: - if (lookahead == 'e') ADVANCE(149); + if (lookahead == 'e') ADVANCE(1096); + if (lookahead == 'p') ADVANCE(1177); END_STATE(); case 929: - if (lookahead == 'e') ADVANCE(142); + if (lookahead == 'e') ADVANCE(327); + if (lookahead == 'o') ADVANCE(1949); END_STATE(); case 930: - if (lookahead == 'e') ADVANCE(429); + if (lookahead == 'e') ADVANCE(223); + if (lookahead == 'l') ADVANCE(1406); + if (lookahead == 'r') ADVANCE(719); END_STATE(); case 931: - if (lookahead == 'e') ADVANCE(427); + if (lookahead == 'e') ADVANCE(430); END_STATE(); case 932: - if (lookahead == 'e') ADVANCE(176); + if (lookahead == 'e') ADVANCE(174); END_STATE(); case 933: - if (lookahead == 'e') ADVANCE(690); + if (lookahead == 'e') ADVANCE(153); END_STATE(); case 934: - if (lookahead == 'e') ADVANCE(1480); + if (lookahead == 'e') ADVANCE(146); END_STATE(); case 935: - if (lookahead == 'e') ADVANCE(150); + if (lookahead == 'e') ADVANCE(434); END_STATE(); case 936: - if (lookahead == 'e') ADVANCE(454); + if (lookahead == 'e') ADVANCE(432); END_STATE(); case 937: - if (lookahead == 'e') ADVANCE(485); + if (lookahead == 'e') ADVANCE(180); END_STATE(); case 938: - if (lookahead == 'e') ADVANCE(242); + if (lookahead == 'e') ADVANCE(695); END_STATE(); case 939: - if (lookahead == 'e') ADVANCE(422); + if (lookahead == 'e') ADVANCE(1485); END_STATE(); case 940: - if (lookahead == 'e') ADVANCE(512); + if (lookahead == 'e') ADVANCE(154); END_STATE(); case 941: - if (lookahead == 'e') ADVANCE(153); + if (lookahead == 'e') ADVANCE(459); END_STATE(); case 942: - if (lookahead == 'e') ADVANCE(240); + if (lookahead == 'e') ADVANCE(490); END_STATE(); case 943: - if (lookahead == 'e') ADVANCE(495); + if (lookahead == 'e') ADVANCE(246); END_STATE(); case 944: - if (lookahead == 'e') ADVANCE(1736); + if (lookahead == 'e') ADVANCE(427); END_STATE(); case 945: - if (lookahead == 'e') ADVANCE(518); - if (lookahead == 'p') ADVANCE(213); - if (lookahead == 's') ADVANCE(518); + if (lookahead == 'e') ADVANCE(517); END_STATE(); case 946: - if (lookahead == 'e') ADVANCE(1503); + if (lookahead == 'e') ADVANCE(157); END_STATE(); case 947: - if (lookahead == 'e') ADVANCE(1822); - if (lookahead == 'i') ADVANCE(816); + if (lookahead == 'e') ADVANCE(244); END_STATE(); case 948: - if (lookahead == 'e') ADVANCE(1944); + if (lookahead == 'e') ADVANCE(500); END_STATE(); case 949: - if (lookahead == 'e') ADVANCE(1944); - if (lookahead == 'o') ADVANCE(1490); + if (lookahead == 'e') ADVANCE(1741); END_STATE(); case 950: - if (lookahead == 'e') ADVANCE(417); + if (lookahead == 'e') ADVANCE(523); + if (lookahead == 'p') ADVANCE(217); + if (lookahead == 's') ADVANCE(523); END_STATE(); case 951: - if (lookahead == 'e') ADVANCE(2141); + if (lookahead == 'e') ADVANCE(1508); END_STATE(); case 952: - if (lookahead == 'e') ADVANCE(901); + if (lookahead == 'e') ADVANCE(1827); + if (lookahead == 'i') ADVANCE(821); END_STATE(); case 953: - if (lookahead == 'e') ADVANCE(1838); - if (lookahead == 'i') ADVANCE(824); - if (lookahead == 'k') ADVANCE(561); - if (lookahead == 'o') ADVANCE(1738); + if (lookahead == 'e') ADVANCE(1949); END_STATE(); case 954: - if (lookahead == 'e') ADVANCE(1092); + if (lookahead == 'e') ADVANCE(1949); + if (lookahead == 'o') ADVANCE(1495); END_STATE(); case 955: - if (lookahead == 'e') ADVANCE(319); + if (lookahead == 'e') ADVANCE(422); END_STATE(); case 956: - if (lookahead == 'e') ADVANCE(456); + if (lookahead == 'e') ADVANCE(2146); END_STATE(); case 957: - if (lookahead == 'e') ADVANCE(503); + if (lookahead == 'e') ADVANCE(906); END_STATE(); case 958: - if (lookahead == 'e') ADVANCE(1915); + if (lookahead == 'e') ADVANCE(1843); + if (lookahead == 'i') ADVANCE(829); + if (lookahead == 'k') ADVANCE(566); + if (lookahead == 'o') ADVANCE(1743); END_STATE(); case 959: - if (lookahead == 'e') ADVANCE(402); + if (lookahead == 'e') ADVANCE(1097); END_STATE(); case 960: - if (lookahead == 'e') ADVANCE(1718); + if (lookahead == 'e') ADVANCE(323); END_STATE(); case 961: - if (lookahead == 'e') ADVANCE(445); + if (lookahead == 'e') ADVANCE(461); END_STATE(); case 962: - if (lookahead == 'e') ADVANCE(902); + if (lookahead == 'e') ADVANCE(508); END_STATE(); case 963: - if (lookahead == 'e') ADVANCE(532); + if (lookahead == 'e') ADVANCE(1920); END_STATE(); case 964: - if (lookahead == 'e') ADVANCE(532); - if (lookahead == 'i') ADVANCE(1449); + if (lookahead == 'e') ADVANCE(407); END_STATE(); case 965: - if (lookahead == 'e') ADVANCE(1096); + if (lookahead == 'e') ADVANCE(1723); END_STATE(); case 966: - if (lookahead == 'e') ADVANCE(328); + if (lookahead == 'e') ADVANCE(450); END_STATE(); case 967: - if (lookahead == 'e') ADVANCE(426); + if (lookahead == 'e') ADVANCE(907); END_STATE(); case 968: - if (lookahead == 'e') ADVANCE(907); - if (lookahead == 'i') ADVANCE(1803); - if (lookahead == 'y') ADVANCE(146); + if (lookahead == 'e') ADVANCE(537); END_STATE(); case 969: - if (lookahead == 'e') ADVANCE(907); - if (lookahead == 'y') ADVANCE(146); + if (lookahead == 'e') ADVANCE(537); + if (lookahead == 'i') ADVANCE(1454); END_STATE(); case 970: - if (lookahead == 'e') ADVANCE(2137); + if (lookahead == 'e') ADVANCE(1101); END_STATE(); case 971: - if (lookahead == 'e') ADVANCE(1722); - if (lookahead == 'v') ADVANCE(989); - if (lookahead == 'w') ADVANCE(952); + if (lookahead == 'e') ADVANCE(332); END_STATE(); case 972: - if (lookahead == 'e') ADVANCE(1087); + if (lookahead == 'e') ADVANCE(431); END_STATE(); case 973: - if (lookahead == 'e') ADVANCE(331); + if (lookahead == 'e') ADVANCE(912); + if (lookahead == 'i') ADVANCE(1808); + if (lookahead == 'y') ADVANCE(150); END_STATE(); case 974: - if (lookahead == 'e') ADVANCE(1724); + if (lookahead == 'e') ADVANCE(912); + if (lookahead == 'y') ADVANCE(150); END_STATE(); case 975: - if (lookahead == 'e') ADVANCE(1325); + if (lookahead == 'e') ADVANCE(2142); END_STATE(); case 976: - if (lookahead == 'e') ADVANCE(1493); + if (lookahead == 'e') ADVANCE(1727); + if (lookahead == 'v') ADVANCE(994); + if (lookahead == 'w') ADVANCE(957); END_STATE(); case 977: - if (lookahead == 'e') ADVANCE(1723); + if (lookahead == 'e') ADVANCE(1092); END_STATE(); case 978: - if (lookahead == 'e') ADVANCE(1965); + if (lookahead == 'e') ADVANCE(335); END_STATE(); case 979: - if (lookahead == 'e') ADVANCE(1889); + if (lookahead == 'e') ADVANCE(1729); END_STATE(); case 980: - if (lookahead == 'e') ADVANCE(1900); + if (lookahead == 'e') ADVANCE(1330); END_STATE(); case 981: - if (lookahead == 'e') ADVANCE(1983); + if (lookahead == 'e') ADVANCE(1498); END_STATE(); case 982: - if (lookahead == 'e') ADVANCE(1344); + if (lookahead == 'e') ADVANCE(1728); END_STATE(); case 983: - if (lookahead == 'e') ADVANCE(874); + if (lookahead == 'e') ADVANCE(1970); END_STATE(); case 984: - if (lookahead == 'e') ADVANCE(685); + if (lookahead == 'e') ADVANCE(1894); END_STATE(); case 985: - if (lookahead == 'e') ADVANCE(876); + if (lookahead == 'e') ADVANCE(1905); END_STATE(); case 986: - if (lookahead == 'e') ADVANCE(1490); + if (lookahead == 'e') ADVANCE(1988); END_STATE(); case 987: - if (lookahead == 'e') ADVANCE(748); + if (lookahead == 'e') ADVANCE(1349); END_STATE(); case 988: if (lookahead == 'e') ADVANCE(879); END_STATE(); case 989: - if (lookahead == 'e') ADVANCE(912); + if (lookahead == 'e') ADVANCE(690); END_STATE(); case 990: - if (lookahead == 'e') ADVANCE(896); + if (lookahead == 'e') ADVANCE(881); END_STATE(); case 991: - if (lookahead == 'e') ADVANCE(1744); + if (lookahead == 'e') ADVANCE(1495); END_STATE(); case 992: - if (lookahead == 'e') ADVANCE(1895); + if (lookahead == 'e') ADVANCE(753); END_STATE(); case 993: - if (lookahead == 'e') ADVANCE(1662); - if (lookahead == 'k') ADVANCE(556); - if (lookahead == 'n') ADVANCE(1630); - if (lookahead == 'p') ADVANCE(1178); - if (lookahead == 'r') ADVANCE(280); - if (lookahead == 's') ADVANCE(1224); - if (lookahead == 't') ADVANCE(1195); + if (lookahead == 'e') ADVANCE(884); END_STATE(); case 994: - if (lookahead == 'e') ADVANCE(1662); - if (lookahead == 'p') ADVANCE(1177); + if (lookahead == 'e') ADVANCE(917); END_STATE(); case 995: - if (lookahead == 'e') ADVANCE(1906); + if (lookahead == 'e') ADVANCE(901); END_STATE(); case 996: - if (lookahead == 'e') ADVANCE(1380); + if (lookahead == 'e') ADVANCE(1749); END_STATE(); case 997: - if (lookahead == 'e') ADVANCE(855); + if (lookahead == 'e') ADVANCE(1900); END_STATE(); case 998: - if (lookahead == 'e') ADVANCE(1544); + if (lookahead == 'e') ADVANCE(1667); + if (lookahead == 'k') ADVANCE(561); + if (lookahead == 'n') ADVANCE(1635); + if (lookahead == 'p') ADVANCE(1183); + if (lookahead == 'r') ADVANCE(284); + if (lookahead == 's') ADVANCE(1229); + if (lookahead == 't') ADVANCE(1200); END_STATE(); case 999: - if (lookahead == 'e') ADVANCE(1937); + if (lookahead == 'e') ADVANCE(1667); + if (lookahead == 'p') ADVANCE(1182); END_STATE(); case 1000: - if (lookahead == 'e') ADVANCE(1989); + if (lookahead == 'e') ADVANCE(1911); END_STATE(); case 1001: - if (lookahead == 'e') ADVANCE(1908); + if (lookahead == 'e') ADVANCE(1385); END_STATE(); case 1002: - if (lookahead == 'e') ADVANCE(1967); + if (lookahead == 'e') ADVANCE(860); END_STATE(); case 1003: - if (lookahead == 'e') ADVANCE(567); + if (lookahead == 'e') ADVANCE(1549); END_STATE(); case 1004: - if (lookahead == 'e') ADVANCE(928); + if (lookahead == 'e') ADVANCE(1942); END_STATE(); case 1005: - if (lookahead == 'e') ADVANCE(1516); + if (lookahead == 'e') ADVANCE(1994); END_STATE(); case 1006: - if (lookahead == 'e') ADVANCE(1407); + if (lookahead == 'e') ADVANCE(1913); END_STATE(); case 1007: - if (lookahead == 'e') ADVANCE(1784); + if (lookahead == 'e') ADVANCE(1972); END_STATE(); case 1008: - if (lookahead == 'e') ADVANCE(606); + if (lookahead == 'e') ADVANCE(572); END_STATE(); case 1009: - if (lookahead == 'e') ADVANCE(1898); + if (lookahead == 'e') ADVANCE(933); END_STATE(); case 1010: - if (lookahead == 'e') ADVANCE(590); + if (lookahead == 'e') ADVANCE(1521); END_STATE(); case 1011: - if (lookahead == 'e') ADVANCE(1899); + if (lookahead == 'e') ADVANCE(1412); END_STATE(); case 1012: - if (lookahead == 'e') ADVANCE(1954); - if (lookahead == 'i') ADVANCE(1449); - if (lookahead == 'u') ADVANCE(2149); + if (lookahead == 'e') ADVANCE(1789); END_STATE(); case 1013: - if (lookahead == 'e') ADVANCE(1750); + if (lookahead == 'e') ADVANCE(611); END_STATE(); case 1014: - if (lookahead == 'e') ADVANCE(1857); + if (lookahead == 'e') ADVANCE(1903); END_STATE(); case 1015: - if (lookahead == 'e') ADVANCE(1990); + if (lookahead == 'e') ADVANCE(595); END_STATE(); case 1016: - if (lookahead == 'e') ADVANCE(1821); + if (lookahead == 'e') ADVANCE(1904); END_STATE(); case 1017: - if (lookahead == 'e') ADVANCE(1997); + if (lookahead == 'e') ADVANCE(1959); + if (lookahead == 'i') ADVANCE(1454); + if (lookahead == 'u') ADVANCE(2154); END_STATE(); case 1018: - if (lookahead == 'e') ADVANCE(990); + if (lookahead == 'e') ADVANCE(1755); END_STATE(); case 1019: - if (lookahead == 'e') ADVANCE(935); - if (lookahead == 'r') ADVANCE(1321); + if (lookahead == 'e') ADVANCE(1862); END_STATE(); case 1020: - if (lookahead == 'e') ADVANCE(1737); + if (lookahead == 'e') ADVANCE(1995); END_STATE(); case 1021: - if (lookahead == 'e') ADVANCE(1831); - if (lookahead == 'i') ADVANCE(1503); + if (lookahead == 'e') ADVANCE(1826); END_STATE(); case 1022: - if (lookahead == 'e') ADVANCE(1781); + if (lookahead == 'e') ADVANCE(2002); END_STATE(); case 1023: - if (lookahead == 'e') ADVANCE(1859); + if (lookahead == 'e') ADVANCE(995); END_STATE(); case 1024: - if (lookahead == 'e') ADVANCE(1879); + if (lookahead == 'e') ADVANCE(940); + if (lookahead == 'r') ADVANCE(1326); END_STATE(); case 1025: - if (lookahead == 'e') ADVANCE(940); + if (lookahead == 'e') ADVANCE(1742); END_STATE(); case 1026: - if (lookahead == 'e') ADVANCE(1794); + if (lookahead == 'e') ADVANCE(1836); + if (lookahead == 'i') ADVANCE(1508); END_STATE(); case 1027: - if (lookahead == 'e') ADVANCE(1066); + if (lookahead == 'e') ADVANCE(1786); END_STATE(); case 1028: - if (lookahead == 'e') ADVANCE(1791); + if (lookahead == 'e') ADVANCE(1864); END_STATE(); case 1029: - if (lookahead == 'e') ADVANCE(1754); + if (lookahead == 'e') ADVANCE(1884); END_STATE(); case 1030: - if (lookahead == 'e') ADVANCE(1799); + if (lookahead == 'e') ADVANCE(945); END_STATE(); case 1031: - if (lookahead == 'e') ADVANCE(1757); + if (lookahead == 'e') ADVANCE(1799); END_STATE(); case 1032: - if (lookahead == 'e') ADVANCE(1097); + if (lookahead == 'e') ADVANCE(1071); END_STATE(); case 1033: - if (lookahead == 'e') ADVANCE(2101); - if (lookahead == 'i') ADVANCE(1144); + if (lookahead == 'e') ADVANCE(1796); END_STATE(); case 1034: - if (lookahead == 'e') ADVANCE(1414); + if (lookahead == 'e') ADVANCE(1759); END_STATE(); case 1035: - if (lookahead == 'e') ADVANCE(511); + if (lookahead == 'e') ADVANCE(1804); END_STATE(); case 1036: - if (lookahead == 'e') ADVANCE(884); + if (lookahead == 'e') ADVANCE(1762); END_STATE(); case 1037: - if (lookahead == 'e') ADVANCE(664); - if (lookahead == 'w') ADVANCE(664); + if (lookahead == 'e') ADVANCE(1102); END_STATE(); case 1038: - if (lookahead == 'e') ADVANCE(1094); + if (lookahead == 'e') ADVANCE(2106); + if (lookahead == 'i') ADVANCE(1149); END_STATE(); case 1039: - if (lookahead == 'e') ADVANCE(1094); - if (lookahead == 'l') ADVANCE(146); - if (lookahead == 't') ADVANCE(352); + if (lookahead == 'e') ADVANCE(1419); END_STATE(); case 1040: - if (lookahead == 'e') ADVANCE(986); + if (lookahead == 'e') ADVANCE(516); END_STATE(); case 1041: - if (lookahead == 'e') ADVANCE(1926); + if (lookahead == 'e') ADVANCE(889); END_STATE(); case 1042: - if (lookahead == 'e') ADVANCE(887); + if (lookahead == 'e') ADVANCE(669); + if (lookahead == 'w') ADVANCE(669); END_STATE(); case 1043: - if (lookahead == 'e') ADVANCE(1479); + if (lookahead == 'e') ADVANCE(1099); END_STATE(); case 1044: - if (lookahead == 'e') ADVANCE(840); - if (lookahead == 'o') ADVANCE(1560); + if (lookahead == 'e') ADVANCE(1099); + if (lookahead == 'l') ADVANCE(150); + if (lookahead == 't') ADVANCE(356); END_STATE(); case 1045: - if (lookahead == 'e') ADVANCE(653); + if (lookahead == 'e') ADVANCE(991); END_STATE(); case 1046: - if (lookahead == 'e') ADVANCE(1715); + if (lookahead == 'e') ADVANCE(1931); END_STATE(); case 1047: - if (lookahead == 'e') ADVANCE(1819); + if (lookahead == 'e') ADVANCE(892); END_STATE(); case 1048: - if (lookahead == 'e') ADVANCE(2012); + if (lookahead == 'e') ADVANCE(1484); END_STATE(); case 1049: - if (lookahead == 'e') ADVANCE(2012); - if (lookahead == 't') ADVANCE(518); + if (lookahead == 'e') ADVANCE(845); + if (lookahead == 'o') ADVANCE(1565); END_STATE(); case 1050: - if (lookahead == 'e') ADVANCE(735); + if (lookahead == 'e') ADVANCE(658); END_STATE(); case 1051: - if (lookahead == 'e') ADVANCE(1098); + if (lookahead == 'e') ADVANCE(1720); END_STATE(); case 1052: - if (lookahead == 'e') ADVANCE(905); + if (lookahead == 'e') ADVANCE(1824); END_STATE(); case 1053: - if (lookahead == 'e') ADVANCE(841); + if (lookahead == 'e') ADVANCE(2017); END_STATE(); case 1054: - if (lookahead == 'e') ADVANCE(1916); + if (lookahead == 'e') ADVANCE(2017); + if (lookahead == 't') ADVANCE(523); END_STATE(); case 1055: - if (lookahead == 'e') ADVANCE(1702); + if (lookahead == 'e') ADVANCE(740); END_STATE(); case 1056: - if (lookahead == 'e') ADVANCE(1099); + if (lookahead == 'e') ADVANCE(1103); END_STATE(); case 1057: - if (lookahead == 'e') ADVANCE(1818); - if (lookahead == 'n') ADVANCE(450); + if (lookahead == 'e') ADVANCE(910); END_STATE(); case 1058: - if (lookahead == 'e') ADVANCE(843); + if (lookahead == 'e') ADVANCE(846); END_STATE(); case 1059: - if (lookahead == 'e') ADVANCE(1570); + if (lookahead == 'e') ADVANCE(1921); END_STATE(); case 1060: - if (lookahead == 'e') ADVANCE(1100); + if (lookahead == 'e') ADVANCE(1707); END_STATE(); case 1061: - if (lookahead == 'e') ADVANCE(1101); + if (lookahead == 'e') ADVANCE(1104); END_STATE(); case 1062: - if (lookahead == 'e') ADVANCE(1553); + if (lookahead == 'e') ADVANCE(1823); + if (lookahead == 'n') ADVANCE(455); END_STATE(); case 1063: - if (lookahead == 'e') ADVANCE(1102); - if (lookahead == 'o') ADVANCE(1530); + if (lookahead == 'e') ADVANCE(848); END_STATE(); case 1064: - if (lookahead == 'e') ADVANCE(1837); + if (lookahead == 'e') ADVANCE(1575); END_STATE(); case 1065: - if (lookahead == 'e') ADVANCE(1095); + if (lookahead == 'e') ADVANCE(1105); END_STATE(); case 1066: - if (lookahead == 'e') ADVANCE(2031); + if (lookahead == 'e') ADVANCE(1106); END_STATE(); case 1067: - if (lookahead == 'e') ADVANCE(1884); + if (lookahead == 'e') ADVANCE(1558); END_STATE(); case 1068: - if (lookahead == 'e') ADVANCE(1538); + if (lookahead == 'e') ADVANCE(1107); + if (lookahead == 'o') ADVANCE(1535); END_STATE(); case 1069: - if (lookahead == 'e') ADVANCE(689); + if (lookahead == 'e') ADVANCE(1842); END_STATE(); case 1070: - if (lookahead == 'e') ADVANCE(1448); + if (lookahead == 'e') ADVANCE(1100); END_STATE(); case 1071: - if (lookahead == 'e') ADVANCE(1146); + if (lookahead == 'e') ADVANCE(2036); END_STATE(); case 1072: - if (lookahead == 'e') ADVANCE(1881); + if (lookahead == 'e') ADVANCE(1889); END_STATE(); case 1073: - if (lookahead == 'e') ADVANCE(2018); + if (lookahead == 'e') ADVANCE(1543); END_STATE(); case 1074: - if (lookahead == 'e') ADVANCE(1297); + if (lookahead == 'e') ADVANCE(694); END_STATE(); case 1075: - if (lookahead == 'e') ADVANCE(1864); + if (lookahead == 'e') ADVANCE(1453); END_STATE(); case 1076: - if (lookahead == 'e') ADVANCE(909); + if (lookahead == 'e') ADVANCE(1151); END_STATE(); case 1077: - if (lookahead == 'e') ADVANCE(688); + if (lookahead == 'e') ADVANCE(1886); END_STATE(); case 1078: - if (lookahead == 'e') ADVANCE(1513); + if (lookahead == 'e') ADVANCE(2023); END_STATE(); case 1079: - if (lookahead == 'e') ADVANCE(693); + if (lookahead == 'e') ADVANCE(1302); END_STATE(); case 1080: - if (lookahead == 'e') ADVANCE(861); + if (lookahead == 'e') ADVANCE(1869); END_STATE(); case 1081: - if (lookahead == 'e') ADVANCE(1105); + if (lookahead == 'e') ADVANCE(914); END_STATE(); case 1082: - if (lookahead == 'f') ADVANCE(146); + if (lookahead == 'e') ADVANCE(693); END_STATE(); case 1083: - if (lookahead == 'f') ADVANCE(146); - if (lookahead == 'l') ADVANCE(2051); + if (lookahead == 'e') ADVANCE(1518); END_STATE(); case 1084: - if (lookahead == 'f') ADVANCE(146); - if (lookahead == 'r') ADVANCE(1610); + if (lookahead == 'e') ADVANCE(698); END_STATE(); case 1085: - if (lookahead == 'f') ADVANCE(1736); - if (lookahead == 'i') ADVANCE(146); - if (lookahead == 'o') ADVANCE(1666); - if (lookahead == 's') ADVANCE(764); + if (lookahead == 'e') ADVANCE(866); END_STATE(); case 1086: - if (lookahead == 'f') ADVANCE(1736); - if (lookahead == 'i') ADVANCE(1503); - if (lookahead == 'o') ADVANCE(1666); - if (lookahead == 'p') ADVANCE(1806); - if (lookahead == 's') ADVANCE(764); - if (lookahead == 'u') ADVANCE(588); + if (lookahead == 'e') ADVANCE(1110); END_STATE(); case 1087: - if (lookahead == 'f') ADVANCE(1944); + if (lookahead == 'f') ADVANCE(150); END_STATE(); case 1088: - if (lookahead == 'f') ADVANCE(1093); + if (lookahead == 'f') ADVANCE(150); + if (lookahead == 'l') ADVANCE(2056); END_STATE(); case 1089: - if (lookahead == 'f') ADVANCE(1947); - if (lookahead == 's') ADVANCE(1892); + if (lookahead == 'f') ADVANCE(150); + if (lookahead == 'r') ADVANCE(1615); END_STATE(); case 1090: - if (lookahead == 'f') ADVANCE(1970); - if (lookahead == 'l') ADVANCE(216); - if (lookahead == 'p') ADVANCE(1082); + if (lookahead == 'f') ADVANCE(1741); + if (lookahead == 'i') ADVANCE(150); + if (lookahead == 'o') ADVANCE(1671); + if (lookahead == 's') ADVANCE(769); END_STATE(); case 1091: - if (lookahead == 'f') ADVANCE(1911); - if (lookahead == 'p') ADVANCE(1169); + if (lookahead == 'f') ADVANCE(1741); + if (lookahead == 'i') ADVANCE(1508); + if (lookahead == 'o') ADVANCE(1671); + if (lookahead == 'p') ADVANCE(1811); + if (lookahead == 's') ADVANCE(769); + if (lookahead == 'u') ADVANCE(593); END_STATE(); case 1092: - if (lookahead == 'f') ADVANCE(2035); + if (lookahead == 'f') ADVANCE(1949); END_STATE(); case 1093: - if (lookahead == 'f') ADVANCE(1067); + if (lookahead == 'f') ADVANCE(1098); END_STATE(); case 1094: - if (lookahead == 'f') ADVANCE(1975); + if (lookahead == 'f') ADVANCE(1952); + if (lookahead == 's') ADVANCE(1897); END_STATE(); case 1095: - if (lookahead == 'f') ADVANCE(1989); + if (lookahead == 'f') ADVANCE(1975); + if (lookahead == 'l') ADVANCE(220); + if (lookahead == 'p') ADVANCE(1087); END_STATE(); case 1096: - if (lookahead == 'f') ADVANCE(1654); + if (lookahead == 'f') ADVANCE(1916); + if (lookahead == 'p') ADVANCE(1174); END_STATE(); case 1097: - if (lookahead == 'f') ADVANCE(1978); - if (lookahead == 's') ADVANCE(1897); + if (lookahead == 'f') ADVANCE(2040); END_STATE(); case 1098: - if (lookahead == 'f') ADVANCE(1956); + if (lookahead == 'f') ADVANCE(1072); END_STATE(); case 1099: - if (lookahead == 'f') ADVANCE(1958); + if (lookahead == 'f') ADVANCE(1980); END_STATE(); case 1100: - if (lookahead == 'f') ADVANCE(1974); + if (lookahead == 'f') ADVANCE(1994); END_STATE(); case 1101: - if (lookahead == 'f') ADVANCE(2014); + if (lookahead == 'f') ADVANCE(1659); END_STATE(); case 1102: - if (lookahead == 'f') ADVANCE(1962); + if (lookahead == 'f') ADVANCE(1983); + if (lookahead == 's') ADVANCE(1902); END_STATE(); case 1103: - if (lookahead == 'f') ADVANCE(1614); + if (lookahead == 'f') ADVANCE(1961); END_STATE(); case 1104: - if (lookahead == 'f') ADVANCE(1253); + if (lookahead == 'f') ADVANCE(1963); END_STATE(); case 1105: - if (lookahead == 'f') ADVANCE(2034); + if (lookahead == 'f') ADVANCE(1979); END_STATE(); case 1106: - if (lookahead == 'g') ADVANCE(146); + if (lookahead == 'f') ADVANCE(2019); END_STATE(); case 1107: - if (lookahead == 'g') ADVANCE(146); - if (lookahead == 's') ADVANCE(1663); + if (lookahead == 'f') ADVANCE(1967); END_STATE(); case 1108: - if (lookahead == 'g') ADVANCE(146); - if (lookahead == 't') ADVANCE(352); + if (lookahead == 'f') ADVANCE(1619); END_STATE(); case 1109: - if (lookahead == 'g') ADVANCE(753); + if (lookahead == 'f') ADVANCE(1258); END_STATE(); case 1110: - if (lookahead == 'g') ADVANCE(234); + if (lookahead == 'f') ADVANCE(2039); END_STATE(); case 1111: - if (lookahead == 'g') ADVANCE(234); - if (lookahead == 'i') ADVANCE(1503); + if (lookahead == 'g') ADVANCE(150); END_STATE(); case 1112: - if (lookahead == 'g') ADVANCE(483); + if (lookahead == 'g') ADVANCE(150); + if (lookahead == 's') ADVANCE(1668); END_STATE(); case 1113: - if (lookahead == 'g') ADVANCE(502); + if (lookahead == 'g') ADVANCE(150); + if (lookahead == 't') ADVANCE(356); END_STATE(); case 1114: - if (lookahead == 'g') ADVANCE(238); + if (lookahead == 'g') ADVANCE(758); END_STATE(); case 1115: - if (lookahead == 'g') ADVANCE(1447); + if (lookahead == 'g') ADVANCE(238); END_STATE(); case 1116: - if (lookahead == 'g') ADVANCE(297); + if (lookahead == 'g') ADVANCE(238); + if (lookahead == 'i') ADVANCE(1508); END_STATE(); case 1117: - if (lookahead == 'g') ADVANCE(518); + if (lookahead == 'g') ADVANCE(488); END_STATE(); case 1118: - if (lookahead == 'g') ADVANCE(1185); + if (lookahead == 'g') ADVANCE(507); END_STATE(); case 1119: - if (lookahead == 'g') ADVANCE(2140); + if (lookahead == 'g') ADVANCE(242); END_STATE(); case 1120: - if (lookahead == 'g') ADVANCE(1132); - if (lookahead == 'l') ADVANCE(981); - if (lookahead == 'r') ADVANCE(1736); - if (lookahead == 's') ADVANCE(1173); + if (lookahead == 'g') ADVANCE(1452); END_STATE(); case 1121: - if (lookahead == 'g') ADVANCE(1132); - if (lookahead == 'r') ADVANCE(1736); + if (lookahead == 'g') ADVANCE(301); END_STATE(); case 1122: - if (lookahead == 'g') ADVANCE(1132); - if (lookahead == 'r') ADVANCE(1736); - if (lookahead == 's') ADVANCE(1175); + if (lookahead == 'g') ADVANCE(523); END_STATE(); case 1123: - if (lookahead == 'g') ADVANCE(1576); + if (lookahead == 'g') ADVANCE(1190); END_STATE(); case 1124: - if (lookahead == 'g') ADVANCE(1615); - if (lookahead == 'p') ADVANCE(1082); + if (lookahead == 'g') ADVANCE(2145); END_STATE(); case 1125: - if (lookahead == 'g') ADVANCE(1615); - if (lookahead == 'p') ADVANCE(1082); - if (lookahead == 't') ADVANCE(518); + if (lookahead == 'g') ADVANCE(1137); + if (lookahead == 'l') ADVANCE(986); + if (lookahead == 'r') ADVANCE(1741); + if (lookahead == 's') ADVANCE(1178); END_STATE(); case 1126: - if (lookahead == 'g') ADVANCE(1456); + if (lookahead == 'g') ADVANCE(1137); + if (lookahead == 'r') ADVANCE(1741); END_STATE(); case 1127: - if (lookahead == 'g') ADVANCE(1174); + if (lookahead == 'g') ADVANCE(1137); + if (lookahead == 'r') ADVANCE(1741); + if (lookahead == 's') ADVANCE(1180); END_STATE(); case 1128: - if (lookahead == 'g') ADVANCE(1344); - if (lookahead == 'i') ADVANCE(1376); - if (lookahead == 'l') ADVANCE(1106); - if (lookahead == 'r') ADVANCE(1317); + if (lookahead == 'g') ADVANCE(1581); END_STATE(); case 1129: - if (lookahead == 'g') ADVANCE(662); - if (lookahead == 's') ADVANCE(2000); - if (lookahead == 'w') ADVANCE(481); + if (lookahead == 'g') ADVANCE(1620); + if (lookahead == 'p') ADVANCE(1087); END_STATE(); case 1130: - if (lookahead == 'g') ADVANCE(1490); + if (lookahead == 'g') ADVANCE(1620); + if (lookahead == 'p') ADVANCE(1087); + if (lookahead == 't') ADVANCE(523); END_STATE(); case 1131: - if (lookahead == 'g') ADVANCE(912); + if (lookahead == 'g') ADVANCE(1461); END_STATE(); case 1132: - if (lookahead == 'g') ADVANCE(944); + if (lookahead == 'g') ADVANCE(1179); END_STATE(); case 1133: - if (lookahead == 'g') ADVANCE(948); + if (lookahead == 'g') ADVANCE(1349); + if (lookahead == 'i') ADVANCE(1381); + if (lookahead == 'l') ADVANCE(1111); + if (lookahead == 'r') ADVANCE(1322); END_STATE(); case 1134: - if (lookahead == 'g') ADVANCE(1863); + if (lookahead == 'g') ADVANCE(667); + if (lookahead == 's') ADVANCE(2005); + if (lookahead == 'w') ADVANCE(486); END_STATE(); case 1135: - if (lookahead == 'g') ADVANCE(1863); - if (lookahead == 'i') ADVANCE(1503); - if (lookahead == 't') ADVANCE(1644); + if (lookahead == 'g') ADVANCE(1495); END_STATE(); case 1136: - if (lookahead == 'g') ADVANCE(1761); + if (lookahead == 'g') ADVANCE(917); END_STATE(); case 1137: - if (lookahead == 'g') ADVANCE(1188); - if (lookahead == 'n') ADVANCE(1106); - if (lookahead == 's') ADVANCE(1287); + if (lookahead == 'g') ADVANCE(949); END_STATE(); case 1138: - if (lookahead == 'g') ADVANCE(906); + if (lookahead == 'g') ADVANCE(953); END_STATE(); case 1139: - if (lookahead == 'g') ADVANCE(1770); + if (lookahead == 'g') ADVANCE(1868); END_STATE(); case 1140: - if (lookahead == 'g') ADVANCE(1184); + if (lookahead == 'g') ADVANCE(1868); + if (lookahead == 'i') ADVANCE(1508); + if (lookahead == 't') ADVANCE(1649); END_STATE(); case 1141: - if (lookahead == 'g') ADVANCE(1964); + if (lookahead == 'g') ADVANCE(1766); END_STATE(); case 1142: - if (lookahead == 'g') ADVANCE(1964); - if (lookahead == 'l') ADVANCE(958); + if (lookahead == 'g') ADVANCE(1193); + if (lookahead == 'n') ADVANCE(1111); + if (lookahead == 's') ADVANCE(1292); END_STATE(); case 1143: - if (lookahead == 'g') ADVANCE(1964); - if (lookahead == 'q') ADVANCE(1141); + if (lookahead == 'g') ADVANCE(911); END_STATE(); case 1144: - if (lookahead == 'g') ADVANCE(1189); + if (lookahead == 'g') ADVANCE(1775); END_STATE(); case 1145: - if (lookahead == 'g') ADVANCE(1482); - if (lookahead == 'm') ADVANCE(235); + if (lookahead == 'g') ADVANCE(1189); END_STATE(); case 1146: - if (lookahead == 'g') ADVANCE(1814); + if (lookahead == 'g') ADVANCE(1969); END_STATE(); case 1147: - if (lookahead == 'g') ADVANCE(1814); - if (lookahead == 'r') ADVANCE(1931); + if (lookahead == 'g') ADVANCE(1969); + if (lookahead == 'l') ADVANCE(963); END_STATE(); case 1148: - if (lookahead == 'g') ADVANCE(1190); + if (lookahead == 'g') ADVANCE(1969); + if (lookahead == 'q') ADVANCE(1146); END_STATE(); case 1149: - if (lookahead == 'g') ADVANCE(1192); + if (lookahead == 'g') ADVANCE(1194); END_STATE(); case 1150: - if (lookahead == 'g') ADVANCE(1193); + if (lookahead == 'g') ADVANCE(1487); + if (lookahead == 'm') ADVANCE(239); END_STATE(); case 1151: - if (lookahead == 'g') ADVANCE(1194); + if (lookahead == 'g') ADVANCE(1819); END_STATE(); case 1152: - if (lookahead == 'g') ADVANCE(1393); + if (lookahead == 'g') ADVANCE(1819); + if (lookahead == 'r') ADVANCE(1936); END_STATE(); case 1153: - if (lookahead == 'g') ADVANCE(1196); + if (lookahead == 'g') ADVANCE(1195); END_STATE(); case 1154: - if (lookahead == 'g') ADVANCE(1026); - if (lookahead == 'r') ADVANCE(835); + if (lookahead == 'g') ADVANCE(1197); END_STATE(); case 1155: - if (lookahead == 'g') ADVANCE(1197); + if (lookahead == 'g') ADVANCE(1198); END_STATE(); case 1156: - if (lookahead == 'g') ADVANCE(1198); + if (lookahead == 'g') ADVANCE(1199); END_STATE(); case 1157: - if (lookahead == 'g') ADVANCE(1415); + if (lookahead == 'g') ADVANCE(1398); END_STATE(); case 1158: - if (lookahead == 'g') ADVANCE(1187); + if (lookahead == 'g') ADVANCE(1201); END_STATE(); case 1159: - if (lookahead == 'g') ADVANCE(1417); + if (lookahead == 'g') ADVANCE(1031); + if (lookahead == 'r') ADVANCE(840); END_STATE(); case 1160: - if (lookahead == 'g') ADVANCE(1418); + if (lookahead == 'g') ADVANCE(1202); END_STATE(); case 1161: - if (lookahead == 'g') ADVANCE(1419); + if (lookahead == 'g') ADVANCE(1203); END_STATE(); case 1162: - if (lookahead == 'g') ADVANCE(1432); + if (lookahead == 'g') ADVANCE(1420); END_STATE(); case 1163: - if (lookahead == 'g') ADVANCE(1420); + if (lookahead == 'g') ADVANCE(1192); END_STATE(); case 1164: - if (lookahead == 'g') ADVANCE(1421); + if (lookahead == 'g') ADVANCE(1422); END_STATE(); case 1165: - if (lookahead == 'g') ADVANCE(482); + if (lookahead == 'g') ADVANCE(1423); END_STATE(); case 1166: - if (lookahead == 'g') ADVANCE(680); + if (lookahead == 'g') ADVANCE(1424); END_STATE(); case 1167: - if (lookahead == 'g') ADVANCE(1207); + if (lookahead == 'g') ADVANCE(1437); END_STATE(); case 1168: - if (lookahead == 'h') ADVANCE(867); + if (lookahead == 'g') ADVANCE(1425); END_STATE(); case 1169: - if (lookahead == 'h') ADVANCE(146); + if (lookahead == 'g') ADVANCE(1426); END_STATE(); case 1170: - if (lookahead == 'h') ADVANCE(291); + if (lookahead == 'g') ADVANCE(487); END_STATE(); case 1171: - if (lookahead == 'h') ADVANCE(502); + if (lookahead == 'g') ADVANCE(685); END_STATE(); case 1172: - if (lookahead == 'h') ADVANCE(518); + if (lookahead == 'g') ADVANCE(1212); END_STATE(); case 1173: - if (lookahead == 'h') ADVANCE(352); + if (lookahead == 'h') ADVANCE(872); END_STATE(); case 1174: - if (lookahead == 'h') ADVANCE(1944); + if (lookahead == 'h') ADVANCE(150); END_STATE(); case 1175: - if (lookahead == 'h') ADVANCE(2094); + if (lookahead == 'h') ADVANCE(295); END_STATE(); case 1176: - if (lookahead == 'h') ADVANCE(740); - if (lookahead == 'y') ADVANCE(146); + if (lookahead == 'h') ADVANCE(507); END_STATE(); case 1177: - if (lookahead == 'h') ADVANCE(1209); + if (lookahead == 'h') ADVANCE(523); END_STATE(); case 1178: - if (lookahead == 'h') ADVANCE(1209); - if (lookahead == 'i') ADVANCE(146); - if (lookahead == 'r') ADVANCE(1643); + if (lookahead == 'h') ADVANCE(356); END_STATE(); case 1179: - if (lookahead == 'h') ADVANCE(532); + if (lookahead == 'h') ADVANCE(1949); END_STATE(); case 1180: - if (lookahead == 'h') ADVANCE(1663); + if (lookahead == 'h') ADVANCE(2099); END_STATE(); case 1181: - if (lookahead == 'h') ADVANCE(1325); + if (lookahead == 'h') ADVANCE(745); + if (lookahead == 'y') ADVANCE(150); END_STATE(); case 1182: - if (lookahead == 'h') ADVANCE(1325); - if (lookahead == 'r') ADVANCE(310); + if (lookahead == 'h') ADVANCE(1214); END_STATE(); case 1183: - if (lookahead == 'h') ADVANCE(912); + if (lookahead == 'h') ADVANCE(1214); + if (lookahead == 'i') ADVANCE(150); + if (lookahead == 'r') ADVANCE(1648); END_STATE(); case 1184: - if (lookahead == 'h') ADVANCE(2035); + if (lookahead == 'h') ADVANCE(537); END_STATE(); case 1185: - if (lookahead == 'h') ADVANCE(1951); + if (lookahead == 'h') ADVANCE(1668); END_STATE(); case 1186: - if (lookahead == 'h') ADVANCE(542); + if (lookahead == 'h') ADVANCE(1330); END_STATE(); case 1187: - if (lookahead == 'h') ADVANCE(1989); + if (lookahead == 'h') ADVANCE(1330); + if (lookahead == 'r') ADVANCE(314); END_STATE(); case 1188: - if (lookahead == 'h') ADVANCE(1953); + if (lookahead == 'h') ADVANCE(917); END_STATE(); case 1189: - if (lookahead == 'h') ADVANCE(1978); + if (lookahead == 'h') ADVANCE(2040); END_STATE(); case 1190: - if (lookahead == 'h') ADVANCE(1966); + if (lookahead == 'h') ADVANCE(1956); END_STATE(); case 1191: - if (lookahead == 'h') ADVANCE(1212); + if (lookahead == 'h') ADVANCE(547); END_STATE(); case 1192: - if (lookahead == 'h') ADVANCE(1957); + if (lookahead == 'h') ADVANCE(1994); END_STATE(); case 1193: - if (lookahead == 'h') ADVANCE(1959); + if (lookahead == 'h') ADVANCE(1958); END_STATE(); case 1194: - if (lookahead == 'h') ADVANCE(1974); + if (lookahead == 'h') ADVANCE(1983); END_STATE(); case 1195: - if (lookahead == 'h') ADVANCE(978); - if (lookahead == 'r') ADVANCE(1320); + if (lookahead == 'h') ADVANCE(1971); END_STATE(); case 1196: - if (lookahead == 'h') ADVANCE(1961); + if (lookahead == 'h') ADVANCE(1217); END_STATE(); case 1197: - if (lookahead == 'h') ADVANCE(1963); + if (lookahead == 'h') ADVANCE(1962); END_STATE(); case 1198: - if (lookahead == 'h') ADVANCE(1960); + if (lookahead == 'h') ADVANCE(1964); END_STATE(); case 1199: - if (lookahead == 'h') ADVANCE(1054); + if (lookahead == 'h') ADVANCE(1979); END_STATE(); case 1200: - if (lookahead == 'h') ADVANCE(1246); + if (lookahead == 'h') ADVANCE(983); + if (lookahead == 'r') ADVANCE(1325); END_STATE(); case 1201: - if (lookahead == 'h') ADVANCE(986); + if (lookahead == 'h') ADVANCE(1966); END_STATE(); case 1202: - if (lookahead == 'h') ADVANCE(1103); + if (lookahead == 'h') ADVANCE(1968); END_STATE(); case 1203: - if (lookahead == 'h') ADVANCE(1785); - if (lookahead == 'i') ADVANCE(1483); - if (lookahead == 'r') ADVANCE(1217); + if (lookahead == 'h') ADVANCE(1965); END_STATE(); case 1204: - if (lookahead == 'h') ADVANCE(1008); + if (lookahead == 'h') ADVANCE(1059); END_STATE(); case 1205: - if (lookahead == 'h') ADVANCE(1270); + if (lookahead == 'h') ADVANCE(1251); END_STATE(); case 1206: - if (lookahead == 'h') ADVANCE(1866); + if (lookahead == 'h') ADVANCE(991); END_STATE(); case 1207: - if (lookahead == 'h') ADVANCE(2034); + if (lookahead == 'h') ADVANCE(1108); END_STATE(); case 1208: - if (lookahead == 'i') ADVANCE(867); + if (lookahead == 'h') ADVANCE(1790); + if (lookahead == 'i') ADVANCE(1488); + if (lookahead == 'r') ADVANCE(1222); END_STATE(); case 1209: - if (lookahead == 'i') ADVANCE(146); + if (lookahead == 'h') ADVANCE(1013); END_STATE(); case 1210: - if (lookahead == 'i') ADVANCE(291); + if (lookahead == 'h') ADVANCE(1275); END_STATE(); case 1211: - if (lookahead == 'i') ADVANCE(274); + if (lookahead == 'h') ADVANCE(1871); END_STATE(); case 1212: - if (lookahead == 'i') ADVANCE(816); + if (lookahead == 'h') ADVANCE(2039); END_STATE(); case 1213: - if (lookahead == 'i') ADVANCE(2123); - if (lookahead == 'o') ADVANCE(1204); + if (lookahead == 'i') ADVANCE(872); END_STATE(); case 1214: - if (lookahead == 'i') ADVANCE(2139); + if (lookahead == 'i') ADVANCE(150); END_STATE(); case 1215: - if (lookahead == 'i') ADVANCE(268); + if (lookahead == 'i') ADVANCE(295); END_STATE(); case 1216: - if (lookahead == 'i') ADVANCE(296); + if (lookahead == 'i') ADVANCE(278); END_STATE(); case 1217: - if (lookahead == 'i') ADVANCE(293); + if (lookahead == 'i') ADVANCE(821); END_STATE(); case 1218: - if (lookahead == 'i') ADVANCE(279); + if (lookahead == 'i') ADVANCE(2128); + if (lookahead == 'o') ADVANCE(1209); END_STATE(); case 1219: - if (lookahead == 'i') ADVANCE(1736); + if (lookahead == 'i') ADVANCE(2144); END_STATE(); case 1220: - if (lookahead == 'i') ADVANCE(1736); - if (lookahead == 'r') ADVANCE(1590); + if (lookahead == 'i') ADVANCE(272); END_STATE(); case 1221: - if (lookahead == 'i') ADVANCE(1503); + if (lookahead == 'i') ADVANCE(300); END_STATE(); case 1222: - if (lookahead == 'i') ADVANCE(1503); - if (lookahead == 'n') ADVANCE(1944); + if (lookahead == 'i') ADVANCE(297); END_STATE(); case 1223: - if (lookahead == 'i') ADVANCE(352); - if (lookahead == 'm') ADVANCE(1481); - if (lookahead == 'o') ADVANCE(1524); + if (lookahead == 'i') ADVANCE(283); END_STATE(); case 1224: - if (lookahead == 'i') ADVANCE(1126); - if (lookahead == 'u') ADVANCE(739); + if (lookahead == 'i') ADVANCE(1741); END_STATE(); case 1225: - if (lookahead == 'i') ADVANCE(1377); + if (lookahead == 'i') ADVANCE(1741); + if (lookahead == 'r') ADVANCE(1595); END_STATE(); case 1226: - if (lookahead == 'i') ADVANCE(295); + if (lookahead == 'i') ADVANCE(1508); END_STATE(); case 1227: - if (lookahead == 'i') ADVANCE(1944); + if (lookahead == 'i') ADVANCE(1508); + if (lookahead == 'n') ADVANCE(1949); END_STATE(); case 1228: - if (lookahead == 'i') ADVANCE(2094); + if (lookahead == 'i') ADVANCE(356); + if (lookahead == 'm') ADVANCE(1486); + if (lookahead == 'o') ADVANCE(1529); END_STATE(); case 1229: - if (lookahead == 'i') ADVANCE(862); + if (lookahead == 'i') ADVANCE(1131); + if (lookahead == 'u') ADVANCE(744); END_STATE(); case 1230: - if (lookahead == 'i') ADVANCE(862); - if (lookahead == 'o') ADVANCE(2078); + if (lookahead == 'i') ADVANCE(1382); END_STATE(); case 1231: - if (lookahead == 'i') ADVANCE(1491); + if (lookahead == 'i') ADVANCE(299); END_STATE(); case 1232: - if (lookahead == 'i') ADVANCE(353); + if (lookahead == 'i') ADVANCE(1949); END_STATE(); case 1233: - if (lookahead == 'i') ADVANCE(1938); + if (lookahead == 'i') ADVANCE(2099); END_STATE(); case 1234: - if (lookahead == 'i') ADVANCE(1938); - if (lookahead == 'p') ADVANCE(1618); + if (lookahead == 'i') ADVANCE(867); END_STATE(); case 1235: - if (lookahead == 'i') ADVANCE(244); + if (lookahead == 'i') ADVANCE(867); + if (lookahead == 'o') ADVANCE(2083); END_STATE(); case 1236: - if (lookahead == 'i') ADVANCE(1373); + if (lookahead == 'i') ADVANCE(1496); END_STATE(); case 1237: - if (lookahead == 'i') ADVANCE(1663); + if (lookahead == 'i') ADVANCE(357); END_STATE(); case 1238: - if (lookahead == 'i') ADVANCE(1106); + if (lookahead == 'i') ADVANCE(1943); END_STATE(); case 1239: - if (lookahead == 'i') ADVANCE(1106); - if (lookahead == 'l') ADVANCE(1238); + if (lookahead == 'i') ADVANCE(1943); + if (lookahead == 'p') ADVANCE(1623); END_STATE(); case 1240: - if (lookahead == 'i') ADVANCE(1088); + if (lookahead == 'i') ADVANCE(248); END_STATE(); case 1241: - if (lookahead == 'i') ADVANCE(1449); + if (lookahead == 'i') ADVANCE(1378); END_STATE(); case 1242: - if (lookahead == 'i') ADVANCE(1449); - if (lookahead == 'l') ADVANCE(146); + if (lookahead == 'i') ADVANCE(1668); END_STATE(); case 1243: - if (lookahead == 'i') ADVANCE(1449); - if (lookahead == 'l') ADVANCE(660); + if (lookahead == 'i') ADVANCE(1111); END_STATE(); case 1244: - if (lookahead == 'i') ADVANCE(1615); + if (lookahead == 'i') ADVANCE(1111); + if (lookahead == 'l') ADVANCE(1243); END_STATE(); case 1245: - if (lookahead == 'i') ADVANCE(1889); + if (lookahead == 'i') ADVANCE(1093); END_STATE(); case 1246: - if (lookahead == 'i') ADVANCE(1511); + if (lookahead == 'i') ADVANCE(1454); END_STATE(); case 1247: - if (lookahead == 'i') ADVANCE(1914); - if (lookahead == 'l') ADVANCE(1624); - if (lookahead == 'r') ADVANCE(146); + if (lookahead == 'i') ADVANCE(1454); + if (lookahead == 'l') ADVANCE(150); END_STATE(); case 1248: - if (lookahead == 'i') ADVANCE(1914); - if (lookahead == 'r') ADVANCE(146); + if (lookahead == 'i') ADVANCE(1454); + if (lookahead == 'l') ADVANCE(665); END_STATE(); case 1249: - if (lookahead == 'i') ADVANCE(1344); + if (lookahead == 'i') ADVANCE(1620); END_STATE(); case 1250: - if (lookahead == 'i') ADVANCE(1119); + if (lookahead == 'i') ADVANCE(1894); END_STATE(); case 1251: - if (lookahead == 'i') ADVANCE(1130); + if (lookahead == 'i') ADVANCE(1516); END_STATE(); case 1252: - if (lookahead == 'i') ADVANCE(2055); + if (lookahead == 'i') ADVANCE(1919); + if (lookahead == 'l') ADVANCE(1629); + if (lookahead == 'r') ADVANCE(150); END_STATE(); case 1253: - if (lookahead == 'i') ADVANCE(1490); + if (lookahead == 'i') ADVANCE(1919); + if (lookahead == 'r') ADVANCE(150); END_STATE(); case 1254: - if (lookahead == 'i') ADVANCE(1374); + if (lookahead == 'i') ADVANCE(1349); END_STATE(); case 1255: - if (lookahead == 'i') ADVANCE(748); + if (lookahead == 'i') ADVANCE(1124); END_STATE(); case 1256: - if (lookahead == 'i') ADVANCE(1766); - if (lookahead == 'y') ADVANCE(146); + if (lookahead == 'i') ADVANCE(1135); END_STATE(); case 1257: - if (lookahead == 'i') ADVANCE(912); + if (lookahead == 'i') ADVANCE(2060); END_STATE(); case 1258: - if (lookahead == 'i') ADVANCE(1524); + if (lookahead == 'i') ADVANCE(1495); END_STATE(); case 1259: - if (lookahead == 'i') ADVANCE(674); + if (lookahead == 'i') ADVANCE(1379); END_STATE(); case 1260: - if (lookahead == 'i') ADVANCE(897); + if (lookahead == 'i') ADVANCE(753); END_STATE(); case 1261: - if (lookahead == 'i') ADVANCE(1468); + if (lookahead == 'i') ADVANCE(1771); + if (lookahead == 'y') ADVANCE(150); END_STATE(); case 1262: - if (lookahead == 'i') ADVANCE(1166); + if (lookahead == 'i') ADVANCE(917); END_STATE(); case 1263: - if (lookahead == 'i') ADVANCE(1810); - if (lookahead == 'l') ADVANCE(1082); - if (lookahead == 'm') ADVANCE(1265); - if (lookahead == 'r') ADVANCE(878); + if (lookahead == 'i') ADVANCE(1529); END_STATE(); case 1264: - if (lookahead == 'i') ADVANCE(1515); + if (lookahead == 'i') ADVANCE(679); END_STATE(); case 1265: - if (lookahead == 'i') ADVANCE(1360); + if (lookahead == 'i') ADVANCE(902); END_STATE(); case 1266: - if (lookahead == 'i') ADVANCE(979); + if (lookahead == 'i') ADVANCE(1473); END_STATE(); case 1267: - if (lookahead == 'i') ADVANCE(2050); + if (lookahead == 'i') ADVANCE(1171); END_STATE(); case 1268: - if (lookahead == 'i') ADVANCE(1555); + if (lookahead == 'i') ADVANCE(1815); + if (lookahead == 'l') ADVANCE(1087); + if (lookahead == 'm') ADVANCE(1270); + if (lookahead == 'r') ADVANCE(883); END_STATE(); case 1269: - if (lookahead == 'i') ADVANCE(1548); + if (lookahead == 'i') ADVANCE(1520); END_STATE(); case 1270: - if (lookahead == 'i') ADVANCE(1494); + if (lookahead == 'i') ADVANCE(1365); END_STATE(); case 1271: - if (lookahead == 'i') ADVANCE(1390); - if (lookahead == 'l') ADVANCE(1239); - if (lookahead == 'r') ADVANCE(146); + if (lookahead == 'i') ADVANCE(984); END_STATE(); case 1272: - if (lookahead == 'i') ADVANCE(1127); + if (lookahead == 'i') ADVANCE(2055); END_STATE(); case 1273: - if (lookahead == 'i') ADVANCE(1378); + if (lookahead == 'i') ADVANCE(1560); END_STATE(); case 1274: - if (lookahead == 'i') ADVANCE(1526); - if (lookahead == 'p') ADVANCE(1082); + if (lookahead == 'i') ADVANCE(1553); END_STATE(); case 1275: - if (lookahead == 'i') ADVANCE(1803); + if (lookahead == 'i') ADVANCE(1499); END_STATE(); case 1276: - if (lookahead == 'i') ADVANCE(1803); - if (lookahead == 'o') ADVANCE(1374); + if (lookahead == 'i') ADVANCE(1395); + if (lookahead == 'l') ADVANCE(1244); + if (lookahead == 'r') ADVANCE(150); END_STATE(); case 1277: - if (lookahead == 'i') ADVANCE(1803); - if (lookahead == 'y') ADVANCE(146); + if (lookahead == 'i') ADVANCE(1132); END_STATE(); case 1278: - if (lookahead == 'i') ADVANCE(1376); + if (lookahead == 'i') ADVANCE(1383); END_STATE(); case 1279: - if (lookahead == 'i') ADVANCE(731); + if (lookahead == 'i') ADVANCE(1531); + if (lookahead == 'p') ADVANCE(1087); END_STATE(); case 1280: - if (lookahead == 'i') ADVANCE(622); + if (lookahead == 'i') ADVANCE(1808); END_STATE(); case 1281: - if (lookahead == 'i') ADVANCE(1929); + if (lookahead == 'i') ADVANCE(1808); + if (lookahead == 'o') ADVANCE(1379); END_STATE(); case 1282: - if (lookahead == 'i') ADVANCE(2100); + if (lookahead == 'i') ADVANCE(1808); + if (lookahead == 'y') ADVANCE(150); END_STATE(); case 1283: - if (lookahead == 'i') ADVANCE(1709); + if (lookahead == 'i') ADVANCE(1381); END_STATE(); case 1284: - if (lookahead == 'i') ADVANCE(1534); - if (lookahead == 'p') ADVANCE(1082); - if (lookahead == 'u') ADVANCE(1505); + if (lookahead == 'i') ADVANCE(736); END_STATE(); case 1285: - if (lookahead == 'i') ADVANCE(1395); + if (lookahead == 'i') ADVANCE(627); END_STATE(); case 1286: - if (lookahead == 'i') ADVANCE(1473); + if (lookahead == 'i') ADVANCE(1934); END_STATE(); case 1287: - if (lookahead == 'i') ADVANCE(1528); + if (lookahead == 'i') ADVANCE(2105); END_STATE(); case 1288: - if (lookahead == 'i') ADVANCE(1933); + if (lookahead == 'i') ADVANCE(1714); END_STATE(); case 1289: - if (lookahead == 'i') ADVANCE(1928); + if (lookahead == 'i') ADVANCE(1539); + if (lookahead == 'p') ADVANCE(1087); + if (lookahead == 'u') ADVANCE(1510); END_STATE(); case 1290: - if (lookahead == 'i') ADVANCE(1483); + if (lookahead == 'i') ADVANCE(1400); END_STATE(); case 1291: - if (lookahead == 'i') ADVANCE(1469); + if (lookahead == 'i') ADVANCE(1478); END_STATE(); case 1292: - if (lookahead == 'i') ADVANCE(2009); + if (lookahead == 'i') ADVANCE(1533); END_STATE(); case 1293: - if (lookahead == 'i') ADVANCE(1406); + if (lookahead == 'i') ADVANCE(1938); END_STATE(); case 1294: - if (lookahead == 'i') ADVANCE(1532); + if (lookahead == 'i') ADVANCE(1933); END_STATE(); case 1295: - if (lookahead == 'i') ADVANCE(1023); + if (lookahead == 'i') ADVANCE(1488); END_STATE(); case 1296: - if (lookahead == 'i') ADVANCE(630); + if (lookahead == 'i') ADVANCE(1474); END_STATE(); case 1297: - if (lookahead == 'i') ADVANCE(1425); + if (lookahead == 'i') ADVANCE(2014); END_STATE(); case 1298: - if (lookahead == 'i') ADVANCE(1393); + if (lookahead == 'i') ADVANCE(1411); END_STATE(); case 1299: - if (lookahead == 'i') ADVANCE(1632); + if (lookahead == 'i') ADVANCE(1537); END_STATE(); case 1300: - if (lookahead == 'i') ADVANCE(1611); + if (lookahead == 'i') ADVANCE(1028); END_STATE(); case 1301: - if (lookahead == 'i') ADVANCE(1549); + if (lookahead == 'i') ADVANCE(635); END_STATE(); case 1302: - if (lookahead == 'i') ADVANCE(1549); - if (lookahead == 'n') ADVANCE(146); + if (lookahead == 'i') ADVANCE(1430); END_STATE(); case 1303: - if (lookahead == 'i') ADVANCE(1140); + if (lookahead == 'i') ADVANCE(1398); END_STATE(); case 1304: - if (lookahead == 'i') ADVANCE(1426); + if (lookahead == 'i') ADVANCE(1637); END_STATE(); case 1305: - if (lookahead == 'i') ADVANCE(854); + if (lookahead == 'i') ADVANCE(1616); END_STATE(); case 1306: - if (lookahead == 'i') ADVANCE(858); + if (lookahead == 'i') ADVANCE(1554); END_STATE(); case 1307: - if (lookahead == 'i') ADVANCE(732); + if (lookahead == 'i') ADVANCE(1554); + if (lookahead == 'n') ADVANCE(150); END_STATE(); case 1308: - if (lookahead == 'i') ADVANCE(1148); + if (lookahead == 'i') ADVANCE(1145); END_STATE(); case 1309: - if (lookahead == 'i') ADVANCE(1149); + if (lookahead == 'i') ADVANCE(1431); END_STATE(); case 1310: - if (lookahead == 'i') ADVANCE(1150); + if (lookahead == 'i') ADVANCE(859); END_STATE(); case 1311: - if (lookahead == 'i') ADVANCE(1151); + if (lookahead == 'i') ADVANCE(863); END_STATE(); case 1312: - if (lookahead == 'i') ADVANCE(1153); + if (lookahead == 'i') ADVANCE(737); END_STATE(); case 1313: - if (lookahead == 'i') ADVANCE(1155); + if (lookahead == 'i') ADVANCE(1153); END_STATE(); case 1314: - if (lookahead == 'i') ADVANCE(1156); + if (lookahead == 'i') ADVANCE(1154); END_STATE(); case 1315: - if (lookahead == 'i') ADVANCE(1158); + if (lookahead == 'i') ADVANCE(1155); END_STATE(); case 1316: - if (lookahead == 'i') ADVANCE(1877); + if (lookahead == 'i') ADVANCE(1156); END_STATE(); case 1317: - if (lookahead == 'i') ADVANCE(698); + if (lookahead == 'i') ADVANCE(1158); END_STATE(); case 1318: - if (lookahead == 'i') ADVANCE(1167); + if (lookahead == 'i') ADVANCE(1160); END_STATE(); case 1319: - if (lookahead == 'i') ADVANCE(700); + if (lookahead == 'i') ADVANCE(1161); END_STATE(); case 1320: - if (lookahead == 'i') ADVANCE(701); + if (lookahead == 'i') ADVANCE(1163); END_STATE(); case 1321: - if (lookahead == 'i') ADVANCE(702); + if (lookahead == 'i') ADVANCE(1882); END_STATE(); case 1322: if (lookahead == 'i') ADVANCE(703); END_STATE(); case 1323: - if (lookahead == 'j') ADVANCE(146); + if (lookahead == 'i') ADVANCE(1172); END_STATE(); case 1324: - if (lookahead == 'j') ADVANCE(146); - if (lookahead == 'n') ADVANCE(1323); + if (lookahead == 'i') ADVANCE(705); END_STATE(); case 1325: - if (lookahead == 'k') ADVANCE(146); + if (lookahead == 'i') ADVANCE(706); END_STATE(); case 1326: - if (lookahead == 'k') ADVANCE(502); + if (lookahead == 'i') ADVANCE(707); END_STATE(); case 1327: - if (lookahead == 'k') ADVANCE(856); + if (lookahead == 'i') ADVANCE(708); END_STATE(); case 1328: - if (lookahead == 'k') ADVANCE(1430); + if (lookahead == 'j') ADVANCE(150); END_STATE(); case 1329: - if (lookahead == 'k') ADVANCE(1403); + if (lookahead == 'j') ADVANCE(150); + if (lookahead == 'n') ADVANCE(1328); END_STATE(); case 1330: - if (lookahead == 'k') ADVANCE(302); + if (lookahead == 'k') ADVANCE(150); END_STATE(); case 1331: - if (lookahead == 'k') ADVANCE(278); + if (lookahead == 'k') ADVANCE(507); END_STATE(); case 1332: - if (lookahead == 'k') ADVANCE(740); + if (lookahead == 'k') ADVANCE(861); END_STATE(); case 1333: - if (lookahead == 'k') ADVANCE(740); - if (lookahead == 'm') ADVANCE(291); + if (lookahead == 'k') ADVANCE(1435); END_STATE(); case 1334: - if (lookahead == 'k') ADVANCE(2117); + if (lookahead == 'k') ADVANCE(1408); END_STATE(); case 1335: - if (lookahead == 'k') ADVANCE(344); + if (lookahead == 'k') ADVANCE(306); END_STATE(); case 1336: - if (lookahead == 'k') ADVANCE(1925); + if (lookahead == 'k') ADVANCE(282); END_STATE(); case 1337: - if (lookahead == 'k') ADVANCE(944); + if (lookahead == 'k') ADVANCE(745); END_STATE(); case 1338: - if (lookahead == 'k') ADVANCE(948); + if (lookahead == 'k') ADVANCE(745); + if (lookahead == 'm') ADVANCE(295); END_STATE(); case 1339: - if (lookahead == 'k') ADVANCE(657); + if (lookahead == 'k') ADVANCE(2122); END_STATE(); case 1340: - if (lookahead == 'k') ADVANCE(664); + if (lookahead == 'k') ADVANCE(348); END_STATE(); case 1341: - if (lookahead == 'k') ADVANCE(664); - if (lookahead == 'l') ADVANCE(595); + if (lookahead == 'k') ADVANCE(1930); END_STATE(); case 1342: - if (lookahead == 'k') ADVANCE(1294); + if (lookahead == 'k') ADVANCE(949); END_STATE(); case 1343: - if (lookahead == 'l') ADVANCE(867); + if (lookahead == 'k') ADVANCE(953); END_STATE(); case 1344: - if (lookahead == 'l') ADVANCE(146); + if (lookahead == 'k') ADVANCE(662); END_STATE(); case 1345: - if (lookahead == 'l') ADVANCE(341); + if (lookahead == 'k') ADVANCE(669); END_STATE(); case 1346: - if (lookahead == 'l') ADVANCE(481); + if (lookahead == 'k') ADVANCE(669); + if (lookahead == 'l') ADVANCE(600); END_STATE(); case 1347: - if (lookahead == 'l') ADVANCE(450); + if (lookahead == 'k') ADVANCE(1299); END_STATE(); case 1348: - if (lookahead == 'l') ADVANCE(215); + if (lookahead == 'l') ADVANCE(872); END_STATE(); case 1349: - if (lookahead == 'l') ADVANCE(285); + if (lookahead == 'l') ADVANCE(150); END_STATE(); case 1350: - if (lookahead == 'l') ADVANCE(2151); + if (lookahead == 'l') ADVANCE(345); END_STATE(); case 1351: - if (lookahead == 'l') ADVANCE(416); + if (lookahead == 'l') ADVANCE(486); END_STATE(); case 1352: - if (lookahead == 'l') ADVANCE(403); + if (lookahead == 'l') ADVANCE(455); END_STATE(); case 1353: - if (lookahead == 'l') ADVANCE(179); + if (lookahead == 'l') ADVANCE(219); END_STATE(); case 1354: - if (lookahead == 'l') ADVANCE(518); + if (lookahead == 'l') ADVANCE(289); END_STATE(); case 1355: - if (lookahead == 'l') ADVANCE(2129); + if (lookahead == 'l') ADVANCE(2156); END_STATE(); case 1356: - if (lookahead == 'l') ADVANCE(1043); + if (lookahead == 'l') ADVANCE(421); END_STATE(); case 1357: - if (lookahead == 'l') ADVANCE(1043); - if (lookahead == 'q') ADVANCE(2068); + if (lookahead == 'l') ADVANCE(408); END_STATE(); case 1358: - if (lookahead == 'l') ADVANCE(1043); - if (lookahead == 'q') ADVANCE(2067); - if (lookahead == 'x') ADVANCE(1233); + if (lookahead == 'l') ADVANCE(183); END_STATE(); case 1359: - if (lookahead == 'l') ADVANCE(466); + if (lookahead == 'l') ADVANCE(523); END_STATE(); case 1360: - if (lookahead == 'l') ADVANCE(1944); + if (lookahead == 'l') ADVANCE(2134); END_STATE(); case 1361: - if (lookahead == 'l') ADVANCE(184); + if (lookahead == 'l') ADVANCE(1048); END_STATE(); case 1362: - if (lookahead == 'l') ADVANCE(459); + if (lookahead == 'l') ADVANCE(1048); + if (lookahead == 'q') ADVANCE(2073); END_STATE(); case 1363: - if (lookahead == 'l') ADVANCE(423); + if (lookahead == 'l') ADVANCE(1048); + if (lookahead == 'q') ADVANCE(2072); + if (lookahead == 'x') ADVANCE(1238); END_STATE(); case 1364: - if (lookahead == 'l') ADVANCE(725); + if (lookahead == 'l') ADVANCE(471); END_STATE(); case 1365: - if (lookahead == 'l') ADVANCE(415); + if (lookahead == 'l') ADVANCE(1949); END_STATE(); case 1366: - if (lookahead == 'l') ADVANCE(504); + if (lookahead == 'l') ADVANCE(188); END_STATE(); case 1367: - if (lookahead == 'l') ADVANCE(532); + if (lookahead == 'l') ADVANCE(464); END_STATE(); case 1368: - if (lookahead == 'l') ADVANCE(434); + if (lookahead == 'l') ADVANCE(428); END_STATE(); case 1369: - if (lookahead == 'l') ADVANCE(328); + if (lookahead == 'l') ADVANCE(730); END_STATE(); case 1370: - if (lookahead == 'l') ADVANCE(565); + if (lookahead == 'l') ADVANCE(420); END_STATE(); case 1371: - if (lookahead == 'l') ADVANCE(249); + if (lookahead == 'l') ADVANCE(509); END_STATE(); case 1372: - if (lookahead == 'l') ADVANCE(444); + if (lookahead == 'l') ADVANCE(537); END_STATE(); case 1373: - if (lookahead == 'l') ADVANCE(895); + if (lookahead == 'l') ADVANCE(439); END_STATE(); case 1374: - if (lookahead == 'l') ADVANCE(1615); + if (lookahead == 'l') ADVANCE(332); END_STATE(); case 1375: - if (lookahead == 'l') ADVANCE(1325); + if (lookahead == 'l') ADVANCE(570); END_STATE(); case 1376: - if (lookahead == 'l') ADVANCE(882); + if (lookahead == 'l') ADVANCE(253); END_STATE(); case 1377: - if (lookahead == 'l') ADVANCE(882); - if (lookahead == 'm') ADVANCE(979); + if (lookahead == 'l') ADVANCE(449); END_STATE(); case 1378: - if (lookahead == 'l') ADVANCE(882); - if (lookahead == 'm') ADVANCE(1001); + if (lookahead == 'l') ADVANCE(900); END_STATE(); case 1379: - if (lookahead == 'l') ADVANCE(961); + if (lookahead == 'l') ADVANCE(1620); END_STATE(); case 1380: - if (lookahead == 'l') ADVANCE(1889); + if (lookahead == 'l') ADVANCE(1330); END_STATE(); case 1381: - if (lookahead == 'l') ADVANCE(834); + if (lookahead == 'l') ADVANCE(887); END_STATE(); case 1382: - if (lookahead == 'l') ADVANCE(1245); + if (lookahead == 'l') ADVANCE(887); + if (lookahead == 'm') ADVANCE(984); END_STATE(); case 1383: - if (lookahead == 'l') ADVANCE(2128); + if (lookahead == 'l') ADVANCE(887); + if (lookahead == 'm') ADVANCE(1006); END_STATE(); case 1384: - if (lookahead == 'l') ADVANCE(1211); + if (lookahead == 'l') ADVANCE(966); END_STATE(); case 1385: - if (lookahead == 'l') ADVANCE(982); + if (lookahead == 'l') ADVANCE(1894); END_STATE(); case 1386: - if (lookahead == 'l') ADVANCE(1344); + if (lookahead == 'l') ADVANCE(839); END_STATE(); case 1387: - if (lookahead == 'l') ADVANCE(2138); + if (lookahead == 'l') ADVANCE(1250); END_STATE(); case 1388: - if (lookahead == 'l') ADVANCE(1624); + if (lookahead == 'l') ADVANCE(2133); END_STATE(); case 1389: - if (lookahead == 'l') ADVANCE(2075); + if (lookahead == 'l') ADVANCE(1216); END_STATE(); case 1390: - if (lookahead == 'l') ADVANCE(1238); + if (lookahead == 'l') ADVANCE(987); END_STATE(); case 1391: - if (lookahead == 'l') ADVANCE(1371); - if (lookahead == 'm') ADVANCE(1675); + if (lookahead == 'l') ADVANCE(1349); END_STATE(); case 1392: - if (lookahead == 'l') ADVANCE(1367); - if (lookahead == 'p') ADVANCE(1082); - if (lookahead == 't') ADVANCE(248); - if (lookahead == 'u') ADVANCE(730); - if (lookahead == 'w') ADVANCE(1495); + if (lookahead == 'l') ADVANCE(2143); END_STATE(); case 1393: - if (lookahead == 'l') ADVANCE(912); + if (lookahead == 'l') ADVANCE(1629); END_STATE(); case 1394: - if (lookahead == 'l') ADVANCE(970); + if (lookahead == 'l') ADVANCE(2080); END_STATE(); case 1395: - if (lookahead == 'l') ADVANCE(1354); + if (lookahead == 'l') ADVANCE(1243); END_STATE(); case 1396: - if (lookahead == 'l') ADVANCE(1363); + if (lookahead == 'l') ADVANCE(1376); + if (lookahead == 'm') ADVANCE(1680); END_STATE(); case 1397: - if (lookahead == 'l') ADVANCE(983); + if (lookahead == 'l') ADVANCE(1372); + if (lookahead == 'p') ADVANCE(1087); + if (lookahead == 't') ADVANCE(252); + if (lookahead == 'u') ADVANCE(735); + if (lookahead == 'w') ADVANCE(1500); END_STATE(); case 1398: - if (lookahead == 'l') ADVANCE(1445); - if (lookahead == 's') ADVANCE(1180); + if (lookahead == 'l') ADVANCE(917); END_STATE(); case 1399: - if (lookahead == 'l') ADVANCE(1642); + if (lookahead == 'l') ADVANCE(975); END_STATE(); case 1400: - if (lookahead == 'l') ADVANCE(1266); + if (lookahead == 'l') ADVANCE(1359); END_STATE(); case 1401: - if (lookahead == 'l') ADVANCE(1237); + if (lookahead == 'l') ADVANCE(1368); END_STATE(); case 1402: - if (lookahead == 'l') ADVANCE(1362); + if (lookahead == 'l') ADVANCE(988); END_STATE(); case 1403: - if (lookahead == 'l') ADVANCE(1593); - if (lookahead == 's') ADVANCE(1733); - if (lookahead == 't') ADVANCE(1888); + if (lookahead == 'l') ADVANCE(1450); + if (lookahead == 's') ADVANCE(1185); END_STATE(); case 1404: - if (lookahead == 'l') ADVANCE(958); + if (lookahead == 'l') ADVANCE(1647); END_STATE(); case 1405: - if (lookahead == 'l') ADVANCE(958); - if (lookahead == 'q') ADVANCE(1404); + if (lookahead == 'l') ADVANCE(1271); END_STATE(); case 1406: - if (lookahead == 'l') ADVANCE(1279); + if (lookahead == 'l') ADVANCE(1242); END_STATE(); case 1407: - if (lookahead == 'l') ADVANCE(581); + if (lookahead == 'l') ADVANCE(1367); END_STATE(); case 1408: - if (lookahead == 'l') ADVANCE(1366); + if (lookahead == 'l') ADVANCE(1598); + if (lookahead == 's') ADVANCE(1738); + if (lookahead == 't') ADVANCE(1893); END_STATE(); case 1409: - if (lookahead == 'l') ADVANCE(930); + if (lookahead == 'l') ADVANCE(963); END_STATE(); case 1410: - if (lookahead == 'l') ADVANCE(931); + if (lookahead == 'l') ADVANCE(963); + if (lookahead == 'q') ADVANCE(1409); END_STATE(); case 1411: - if (lookahead == 'l') ADVANCE(1627); + if (lookahead == 'l') ADVANCE(1284); END_STATE(); case 1412: - if (lookahead == 'l') ADVANCE(919); + if (lookahead == 'l') ADVANCE(586); END_STATE(); case 1413: - if (lookahead == 'l') ADVANCE(1050); + if (lookahead == 'l') ADVANCE(1371); END_STATE(); case 1414: - if (lookahead == 'l') ADVANCE(972); - if (lookahead == 'r') ADVANCE(1272); + if (lookahead == 'l') ADVANCE(935); END_STATE(); case 1415: - if (lookahead == 'l') ADVANCE(938); + if (lookahead == 'l') ADVANCE(936); END_STATE(); case 1416: - if (lookahead == 'l') ADVANCE(939); + if (lookahead == 'l') ADVANCE(1632); END_STATE(); case 1417: - if (lookahead == 'l') ADVANCE(950); + if (lookahead == 'l') ADVANCE(924); END_STATE(); case 1418: - if (lookahead == 'l') ADVANCE(1070); + if (lookahead == 'l') ADVANCE(1055); END_STATE(); case 1419: - if (lookahead == 'l') ADVANCE(962); + if (lookahead == 'l') ADVANCE(977); + if (lookahead == 'r') ADVANCE(1277); END_STATE(); case 1420: - if (lookahead == 'l') ADVANCE(941); + if (lookahead == 'l') ADVANCE(943); END_STATE(); case 1421: - if (lookahead == 'l') ADVANCE(942); + if (lookahead == 'l') ADVANCE(944); END_STATE(); case 1422: - if (lookahead == 'l') ADVANCE(943); + if (lookahead == 'l') ADVANCE(955); END_STATE(); case 1423: - if (lookahead == 'l') ADVANCE(959); + if (lookahead == 'l') ADVANCE(1075); END_STATE(); case 1424: - if (lookahead == 'l') ADVANCE(595); + if (lookahead == 'l') ADVANCE(967); END_STATE(); case 1425: - if (lookahead == 'l') ADVANCE(1246); + if (lookahead == 'l') ADVANCE(946); END_STATE(); case 1426: - if (lookahead == 'l') ADVANCE(889); + if (lookahead == 'l') ADVANCE(947); END_STATE(); case 1427: - if (lookahead == 'l') ADVANCE(889); - if (lookahead == 'm') ADVANCE(973); - if (lookahead == 'n') ADVANCE(1944); + if (lookahead == 'l') ADVANCE(948); END_STATE(); case 1428: - if (lookahead == 'l') ADVANCE(1617); - if (lookahead == 'n') ADVANCE(1135); - if (lookahead == 'p') ADVANCE(1084); - if (lookahead == 'u') ADVANCE(1556); + if (lookahead == 'l') ADVANCE(964); END_STATE(); case 1429: - if (lookahead == 'l') ADVANCE(537); + if (lookahead == 'l') ADVANCE(600); END_STATE(); case 1430: - if (lookahead == 'l') ADVANCE(954); - if (lookahead == 'r') ADVANCE(1303); + if (lookahead == 'l') ADVANCE(1251); END_STATE(); case 1431: - if (lookahead == 'l') ADVANCE(1035); + if (lookahead == 'l') ADVANCE(894); END_STATE(); case 1432: - if (lookahead == 'l') ADVANCE(1034); + if (lookahead == 'l') ADVANCE(894); + if (lookahead == 'm') ADVANCE(978); + if (lookahead == 'n') ADVANCE(1949); END_STATE(); case 1433: - if (lookahead == 'l') ADVANCE(650); + if (lookahead == 'l') ADVANCE(1622); + if (lookahead == 'n') ADVANCE(1140); + if (lookahead == 'p') ADVANCE(1089); + if (lookahead == 'u') ADVANCE(1561); END_STATE(); case 1434: - if (lookahead == 'l') ADVANCE(2051); + if (lookahead == 'l') ADVANCE(542); END_STATE(); case 1435: - if (lookahead == 'l') ADVANCE(1397); + if (lookahead == 'l') ADVANCE(959); + if (lookahead == 'r') ADVANCE(1308); END_STATE(); case 1436: - if (lookahead == 'l') ADVANCE(596); + if (lookahead == 'l') ADVANCE(1040); END_STATE(); case 1437: - if (lookahead == 'l') ADVANCE(1287); + if (lookahead == 'l') ADVANCE(1039); END_STATE(); case 1438: - if (lookahead == 'l') ADVANCE(1622); - if (lookahead == 'm') ADVANCE(1478); - if (lookahead == 'n') ADVANCE(1111); - if (lookahead == 'p') ADVANCE(269); + if (lookahead == 'l') ADVANCE(655); END_STATE(); case 1439: - if (lookahead == 'l') ADVANCE(1835); + if (lookahead == 'l') ADVANCE(2056); END_STATE(); case 1440: - if (lookahead == 'l') ADVANCE(1221); + if (lookahead == 'l') ADVANCE(1402); END_STATE(); case 1441: - if (lookahead == 'l') ADVANCE(1382); + if (lookahead == 'l') ADVANCE(601); END_STATE(); case 1442: - if (lookahead == 'l') ADVANCE(1269); + if (lookahead == 'l') ADVANCE(1292); END_STATE(); case 1443: - if (lookahead == 'l') ADVANCE(1385); + if (lookahead == 'l') ADVANCE(1627); + if (lookahead == 'm') ADVANCE(1483); + if (lookahead == 'n') ADVANCE(1116); + if (lookahead == 'p') ADVANCE(273); END_STATE(); case 1444: - if (lookahead == 'l') ADVANCE(672); + if (lookahead == 'l') ADVANCE(1840); END_STATE(); case 1445: - if (lookahead == 'l') ADVANCE(1941); + if (lookahead == 'l') ADVANCE(1226); END_STATE(); case 1446: - if (lookahead == 'l') ADVANCE(1437); + if (lookahead == 'l') ADVANCE(1387); END_STATE(); case 1447: - if (lookahead == 'l') ADVANCE(1038); - if (lookahead == 'm') ADVANCE(617); - if (lookahead == 'r') ADVANCE(1303); + if (lookahead == 'l') ADVANCE(1274); END_STATE(); case 1448: - if (lookahead == 'l') ADVANCE(1065); - if (lookahead == 'r') ADVANCE(1315); + if (lookahead == 'l') ADVANCE(1390); END_STATE(); case 1449: - if (lookahead == 'm') ADVANCE(146); + if (lookahead == 'l') ADVANCE(677); END_STATE(); case 1450: - if (lookahead == 'm') ADVANCE(291); + if (lookahead == 'l') ADVANCE(1946); END_STATE(); case 1451: - if (lookahead == 'm') ADVANCE(291); - if (lookahead == 'r') ADVANCE(1574); + if (lookahead == 'l') ADVANCE(1442); END_STATE(); case 1452: - if (lookahead == 'm') ADVANCE(502); + if (lookahead == 'l') ADVANCE(1043); + if (lookahead == 'm') ADVANCE(622); + if (lookahead == 'r') ADVANCE(1308); END_STATE(); case 1453: - if (lookahead == 'm') ADVANCE(314); + if (lookahead == 'l') ADVANCE(1070); + if (lookahead == 'r') ADVANCE(1320); END_STATE(); case 1454: - if (lookahead == 'm') ADVANCE(360); + if (lookahead == 'm') ADVANCE(150); END_STATE(); case 1455: - if (lookahead == 'm') ADVANCE(359); + if (lookahead == 'm') ADVANCE(295); END_STATE(); case 1456: - if (lookahead == 'm') ADVANCE(518); + if (lookahead == 'm') ADVANCE(295); + if (lookahead == 'r') ADVANCE(1579); END_STATE(); case 1457: - if (lookahead == 'm') ADVANCE(1302); + if (lookahead == 'm') ADVANCE(507); END_STATE(); case 1458: - if (lookahead == 'm') ADVANCE(1209); + if (lookahead == 'm') ADVANCE(318); END_STATE(); case 1459: - if (lookahead == 'm') ADVANCE(244); + if (lookahead == 'm') ADVANCE(364); END_STATE(); case 1460: - if (lookahead == 'm') ADVANCE(1663); + if (lookahead == 'm') ADVANCE(363); END_STATE(); case 1461: - if (lookahead == 'm') ADVANCE(1693); + if (lookahead == 'm') ADVANCE(523); END_STATE(); case 1462: - if (lookahead == 'm') ADVANCE(1674); + if (lookahead == 'm') ADVANCE(1307); END_STATE(); case 1463: - if (lookahead == 'm') ADVANCE(1208); + if (lookahead == 'm') ADVANCE(1214); END_STATE(); case 1464: - if (lookahead == 'm') ADVANCE(1208); - if (lookahead == 'p') ADVANCE(669); + if (lookahead == 'm') ADVANCE(248); END_STATE(); case 1465: - if (lookahead == 'm') ADVANCE(1456); + if (lookahead == 'm') ADVANCE(1668); END_STATE(); case 1466: - if (lookahead == 'm') ADVANCE(252); + if (lookahead == 'm') ADVANCE(1698); END_STATE(); case 1467: - if (lookahead == 'm') ADVANCE(1697); + if (lookahead == 'm') ADVANCE(1679); END_STATE(); case 1468: - if (lookahead == 'm') ADVANCE(253); + if (lookahead == 'm') ADVANCE(1213); END_STATE(); case 1469: - if (lookahead == 'm') ADVANCE(558); + if (lookahead == 'm') ADVANCE(1213); + if (lookahead == 'p') ADVANCE(674); END_STATE(); case 1470: - if (lookahead == 'm') ADVANCE(982); + if (lookahead == 'm') ADVANCE(1461); END_STATE(); case 1471: - if (lookahead == 'm') ADVANCE(1344); + if (lookahead == 'm') ADVANCE(256); END_STATE(); case 1472: - if (lookahead == 'm') ADVANCE(1490); + if (lookahead == 'm') ADVANCE(1702); END_STATE(); case 1473: - if (lookahead == 'm') ADVANCE(912); + if (lookahead == 'm') ADVANCE(257); END_STATE(); case 1474: - if (lookahead == 'm') ADVANCE(1689); + if (lookahead == 'm') ADVANCE(563); END_STATE(); case 1475: - if (lookahead == 'm') ADVANCE(1684); + if (lookahead == 'm') ADVANCE(987); END_STATE(); case 1476: - if (lookahead == 'm') ADVANCE(674); + if (lookahead == 'm') ADVANCE(1349); END_STATE(); case 1477: - if (lookahead == 'm') ADVANCE(546); + if (lookahead == 'm') ADVANCE(1495); END_STATE(); case 1478: - if (lookahead == 'm') ADVANCE(553); - if (lookahead == 'p') ADVANCE(272); + if (lookahead == 'm') ADVANCE(917); END_STATE(); case 1479: - if (lookahead == 'm') ADVANCE(946); + if (lookahead == 'm') ADVANCE(1694); END_STATE(); case 1480: - if (lookahead == 'm') ADVANCE(946); - if (lookahead == 'x') ADVANCE(979); + if (lookahead == 'm') ADVANCE(1689); END_STATE(); case 1481: - if (lookahead == 'm') ADVANCE(542); + if (lookahead == 'm') ADVANCE(679); END_STATE(); case 1482: - if (lookahead == 'm') ADVANCE(526); + if (lookahead == 'm') ADVANCE(551); END_STATE(); case 1483: - if (lookahead == 'm') ADVANCE(979); + if (lookahead == 'm') ADVANCE(558); + if (lookahead == 'p') ADVANCE(276); END_STATE(); case 1484: - if (lookahead == 'm') ADVANCE(1705); + if (lookahead == 'm') ADVANCE(951); END_STATE(); case 1485: - if (lookahead == 'm') ADVANCE(966); + if (lookahead == 'm') ADVANCE(951); + if (lookahead == 'x') ADVANCE(984); END_STATE(); case 1486: - if (lookahead == 'm') ADVANCE(1477); + if (lookahead == 'm') ADVANCE(547); END_STATE(); case 1487: - if (lookahead == 'm') ADVANCE(1301); + if (lookahead == 'm') ADVANCE(531); END_STATE(); case 1488: - if (lookahead == 'm') ADVANCE(668); + if (lookahead == 'm') ADVANCE(984); END_STATE(); case 1489: - if (lookahead == 'n') ADVANCE(867); + if (lookahead == 'm') ADVANCE(1710); END_STATE(); case 1490: - if (lookahead == 'n') ADVANCE(146); + if (lookahead == 'm') ADVANCE(971); END_STATE(); case 1491: - if (lookahead == 'n') ADVANCE(274); + if (lookahead == 'm') ADVANCE(1482); END_STATE(); case 1492: - if (lookahead == 'n') ADVANCE(412); + if (lookahead == 'm') ADVANCE(1306); END_STATE(); case 1493: - if (lookahead == 'n') ADVANCE(425); + if (lookahead == 'm') ADVANCE(673); END_STATE(); case 1494: - if (lookahead == 'n') ADVANCE(502); + if (lookahead == 'n') ADVANCE(872); END_STATE(); case 1495: - if (lookahead == 'n') ADVANCE(682); + if (lookahead == 'n') ADVANCE(150); END_STATE(); case 1496: - if (lookahead == 'n') ADVANCE(236); + if (lookahead == 'n') ADVANCE(278); END_STATE(); case 1497: - if (lookahead == 'n') ADVANCE(826); + if (lookahead == 'n') ADVANCE(417); END_STATE(); case 1498: - if (lookahead == 'n') ADVANCE(2147); + if (lookahead == 'n') ADVANCE(430); END_STATE(); case 1499: - if (lookahead == 'n') ADVANCE(164); + if (lookahead == 'n') ADVANCE(507); END_STATE(); case 1500: - if (lookahead == 'n') ADVANCE(508); + if (lookahead == 'n') ADVANCE(687); END_STATE(); case 1501: - if (lookahead == 'n') ADVANCE(512); + if (lookahead == 'n') ADVANCE(240); END_STATE(); case 1502: - if (lookahead == 'n') ADVANCE(182); + if (lookahead == 'n') ADVANCE(831); END_STATE(); case 1503: - if (lookahead == 'n') ADVANCE(1944); + if (lookahead == 'n') ADVANCE(2152); END_STATE(); case 1504: - if (lookahead == 'n') ADVANCE(475); + if (lookahead == 'n') ADVANCE(168); END_STATE(); case 1505: - if (lookahead == 'n') ADVANCE(237); + if (lookahead == 'n') ADVANCE(513); END_STATE(); case 1506: - if (lookahead == 'n') ADVANCE(406); + if (lookahead == 'n') ADVANCE(517); END_STATE(); case 1507: - if (lookahead == 'n') ADVANCE(2122); + if (lookahead == 'n') ADVANCE(186); END_STATE(); case 1508: - if (lookahead == 'n') ADVANCE(1104); + if (lookahead == 'n') ADVANCE(1949); END_STATE(); case 1509: - if (lookahead == 'n') ADVANCE(902); + if (lookahead == 'n') ADVANCE(480); END_STATE(); case 1510: - if (lookahead == 'n') ADVANCE(244); + if (lookahead == 'n') ADVANCE(241); END_STATE(); case 1511: - if (lookahead == 'n') ADVANCE(1106); + if (lookahead == 'n') ADVANCE(411); END_STATE(); case 1512: - if (lookahead == 'n') ADVANCE(1106); - if (lookahead == 'r') ADVANCE(1736); + if (lookahead == 'n') ADVANCE(2127); END_STATE(); case 1513: - if (lookahead == 'n') ADVANCE(2004); + if (lookahead == 'n') ADVANCE(1109); END_STATE(); case 1514: - if (lookahead == 'n') ADVANCE(1112); - if (lookahead == 'p') ADVANCE(1082); - if (lookahead == 'w') ADVANCE(1013); + if (lookahead == 'n') ADVANCE(907); END_STATE(); case 1515: - if (lookahead == 'n') ADVANCE(349); + if (lookahead == 'n') ADVANCE(248); END_STATE(); case 1516: - if (lookahead == 'n') ADVANCE(1325); + if (lookahead == 'n') ADVANCE(1111); END_STATE(); case 1517: - if (lookahead == 'n') ADVANCE(252); + if (lookahead == 'n') ADVANCE(1111); + if (lookahead == 'r') ADVANCE(1741); END_STATE(); case 1518: - if (lookahead == 'n') ADVANCE(1889); + if (lookahead == 'n') ADVANCE(2009); END_STATE(); case 1519: - if (lookahead == 'n') ADVANCE(875); + if (lookahead == 'n') ADVANCE(1117); + if (lookahead == 'p') ADVANCE(1087); + if (lookahead == 'w') ADVANCE(1018); END_STATE(); case 1520: - if (lookahead == 'n') ADVANCE(247); + if (lookahead == 'n') ADVANCE(353); END_STATE(); case 1521: - if (lookahead == 'n') ADVANCE(1136); - if (lookahead == 'r') ADVANCE(993); + if (lookahead == 'n') ADVANCE(1330); END_STATE(); case 1522: - if (lookahead == 'n') ADVANCE(832); + if (lookahead == 'n') ADVANCE(256); END_STATE(); case 1523: - if (lookahead == 'n') ADVANCE(1152); + if (lookahead == 'n') ADVANCE(1894); END_STATE(); case 1524: - if (lookahead == 'n') ADVANCE(912); + if (lookahead == 'n') ADVANCE(880); END_STATE(); case 1525: - if (lookahead == 'n') ADVANCE(1110); + if (lookahead == 'n') ADVANCE(251); END_STATE(); case 1526: - if (lookahead == 'n') ADVANCE(860); + if (lookahead == 'n') ADVANCE(1141); + if (lookahead == 'r') ADVANCE(998); END_STATE(); case 1527: - if (lookahead == 'n') ADVANCE(1620); + if (lookahead == 'n') ADVANCE(837); END_STATE(); case 1528: - if (lookahead == 'n') ADVANCE(1138); + if (lookahead == 'n') ADVANCE(1157); END_STATE(); case 1529: - if (lookahead == 'n') ADVANCE(885); + if (lookahead == 'n') ADVANCE(917); END_STATE(); case 1530: - if (lookahead == 'n') ADVANCE(1165); + if (lookahead == 'n') ADVANCE(1115); END_STATE(); case 1531: - if (lookahead == 'n') ADVANCE(944); + if (lookahead == 'n') ADVANCE(865); END_STATE(); case 1532: - if (lookahead == 'n') ADVANCE(1113); + if (lookahead == 'n') ADVANCE(1625); END_STATE(); case 1533: - if (lookahead == 'n') ADVANCE(855); + if (lookahead == 'n') ADVANCE(1143); END_STATE(); case 1534: - if (lookahead == 'n') ADVANCE(2022); + if (lookahead == 'n') ADVANCE(890); END_STATE(); case 1535: - if (lookahead == 'n') ADVANCE(1955); + if (lookahead == 'n') ADVANCE(1170); END_STATE(); case 1536: - if (lookahead == 'n') ADVANCE(1969); + if (lookahead == 'n') ADVANCE(949); END_STATE(); case 1537: - if (lookahead == 'n') ADVANCE(1994); + if (lookahead == 'n') ADVANCE(1118); END_STATE(); case 1538: - if (lookahead == 'n') ADVANCE(1996); + if (lookahead == 'n') ADVANCE(860); END_STATE(); case 1539: - if (lookahead == 'n') ADVANCE(974); + if (lookahead == 'n') ADVANCE(2027); END_STATE(); case 1540: - if (lookahead == 'n') ADVANCE(977); + if (lookahead == 'n') ADVANCE(1960); END_STATE(); case 1541: - if (lookahead == 'n') ADVANCE(1414); + if (lookahead == 'n') ADVANCE(1974); END_STATE(); case 1542: - if (lookahead == 'n') ADVANCE(2053); + if (lookahead == 'n') ADVANCE(1999); END_STATE(); case 1543: - if (lookahead == 'n') ADVANCE(201); + if (lookahead == 'n') ADVANCE(2001); END_STATE(); case 1544: - if (lookahead == 'n') ADVANCE(1131); + if (lookahead == 'n') ADVANCE(979); END_STATE(); case 1545: - if (lookahead == 'n') ADVANCE(1134); + if (lookahead == 'n') ADVANCE(982); END_STATE(); case 1546: - if (lookahead == 'n') ADVANCE(1059); + if (lookahead == 'n') ADVANCE(1419); END_STATE(); case 1547: - if (lookahead == 'n') ADVANCE(1244); + if (lookahead == 'n') ADVANCE(2058); END_STATE(); case 1548: - if (lookahead == 'n') ADVANCE(2012); + if (lookahead == 'n') ADVANCE(205); END_STATE(); case 1549: - if (lookahead == 'n') ADVANCE(2051); + if (lookahead == 'n') ADVANCE(1136); END_STATE(); case 1550: - if (lookahead == 'n') ADVANCE(1625); + if (lookahead == 'n') ADVANCE(1139); END_STATE(); case 1551: - if (lookahead == 'n') ADVANCE(2013); + if (lookahead == 'n') ADVANCE(1064); END_STATE(); case 1552: - if (lookahead == 'n') ADVANCE(1221); + if (lookahead == 'n') ADVANCE(1249); END_STATE(); case 1553: - if (lookahead == 'n') ADVANCE(2011); + if (lookahead == 'n') ADVANCE(2017); END_STATE(); case 1554: - if (lookahead == 'n') ADVANCE(2031); + if (lookahead == 'n') ADVANCE(2056); END_STATE(); case 1555: - if (lookahead == 'n') ADVANCE(642); + if (lookahead == 'n') ADVANCE(1630); END_STATE(); case 1556: - if (lookahead == 'n') ADVANCE(2023); + if (lookahead == 'n') ADVANCE(2018); END_STATE(); case 1557: - if (lookahead == 'n') ADVANCE(1157); + if (lookahead == 'n') ADVANCE(1226); END_STATE(); case 1558: - if (lookahead == 'n') ADVANCE(2021); + if (lookahead == 'n') ADVANCE(2016); END_STATE(); case 1559: - if (lookahead == 'n') ADVANCE(1300); + if (lookahead == 'n') ADVANCE(2036); END_STATE(); case 1560: - if (lookahead == 'n') ADVANCE(1062); + if (lookahead == 'n') ADVANCE(647); END_STATE(); case 1561: - if (lookahead == 'n') ADVANCE(1159); - if (lookahead == 'r') ADVANCE(1839); + if (lookahead == 'n') ADVANCE(2028); END_STATE(); case 1562: - if (lookahead == 'n') ADVANCE(1159); - if (lookahead == 'r') ADVANCE(1843); + if (lookahead == 'n') ADVANCE(1162); END_STATE(); case 1563: - if (lookahead == 'n') ADVANCE(2025); + if (lookahead == 'n') ADVANCE(2026); END_STATE(); case 1564: - if (lookahead == 'n') ADVANCE(1160); + if (lookahead == 'n') ADVANCE(1305); END_STATE(); case 1565: - if (lookahead == 'n') ADVANCE(1161); + if (lookahead == 'n') ADVANCE(1067); END_STATE(); case 1566: - if (lookahead == 'n') ADVANCE(2027); + if (lookahead == 'n') ADVANCE(1164); + if (lookahead == 'r') ADVANCE(1844); END_STATE(); case 1567: - if (lookahead == 'n') ADVANCE(1162); + if (lookahead == 'n') ADVANCE(1164); + if (lookahead == 'r') ADVANCE(1848); END_STATE(); case 1568: - if (lookahead == 'n') ADVANCE(1163); + if (lookahead == 'n') ADVANCE(2030); END_STATE(); case 1569: - if (lookahead == 'n') ADVANCE(1164); + if (lookahead == 'n') ADVANCE(1165); END_STATE(); case 1570: - if (lookahead == 'n') ADVANCE(2032); + if (lookahead == 'n') ADVANCE(1166); END_STATE(); case 1571: - if (lookahead == 'n') ADVANCE(691); + if (lookahead == 'n') ADVANCE(2032); END_STATE(); case 1572: - if (lookahead == 'n') ADVANCE(680); + if (lookahead == 'n') ADVANCE(1167); END_STATE(); case 1573: - if (lookahead == 'o') ADVANCE(867); + if (lookahead == 'n') ADVANCE(1168); END_STATE(); case 1574: - if (lookahead == 'o') ADVANCE(146); + if (lookahead == 'n') ADVANCE(1169); END_STATE(); case 1575: - if (lookahead == 'o') ADVANCE(324); + if (lookahead == 'n') ADVANCE(2037); END_STATE(); case 1576: - if (lookahead == 'o') ADVANCE(1082); + if (lookahead == 'n') ADVANCE(696); END_STATE(); case 1577: - if (lookahead == 'o') ADVANCE(2113); + if (lookahead == 'n') ADVANCE(685); END_STATE(); case 1578: - if (lookahead == 'o') ADVANCE(513); + if (lookahead == 'o') ADVANCE(872); END_STATE(); case 1579: - if (lookahead == 'o') ADVANCE(2092); + if (lookahead == 'o') ADVANCE(150); END_STATE(); case 1580: - if (lookahead == 'o') ADVANCE(241); + if (lookahead == 'o') ADVANCE(328); END_STATE(); case 1581: - if (lookahead == 'o') ADVANCE(1946); + if (lookahead == 'o') ADVANCE(1087); END_STATE(); case 1582: - if (lookahead == 'o') ADVANCE(1945); + if (lookahead == 'o') ADVANCE(2118); END_STATE(); case 1583: - if (lookahead == 'o') ADVANCE(1736); + if (lookahead == 'o') ADVANCE(518); END_STATE(); case 1584: - if (lookahead == 'o') ADVANCE(1944); + if (lookahead == 'o') ADVANCE(2097); END_STATE(); case 1585: - if (lookahead == 'o') ADVANCE(1944); - if (lookahead == 's') ADVANCE(2045); + if (lookahead == 'o') ADVANCE(245); END_STATE(); case 1586: - if (lookahead == 'o') ADVANCE(304); + if (lookahead == 'o') ADVANCE(1951); END_STATE(); case 1587: - if (lookahead == 'o') ADVANCE(2124); + if (lookahead == 'o') ADVANCE(1950); END_STATE(); case 1588: - if (lookahead == 'o') ADVANCE(815); + if (lookahead == 'o') ADVANCE(1741); END_STATE(); case 1589: - if (lookahead == 'o') ADVANCE(2122); + if (lookahead == 'o') ADVANCE(1949); END_STATE(); case 1590: - if (lookahead == 'o') ADVANCE(1915); + if (lookahead == 'o') ADVANCE(1949); + if (lookahead == 's') ADVANCE(2050); END_STATE(); case 1591: - if (lookahead == 'o') ADVANCE(340); + if (lookahead == 'o') ADVANCE(308); END_STATE(); case 1592: - if (lookahead == 'o') ADVANCE(2102); + if (lookahead == 'o') ADVANCE(2129); END_STATE(); case 1593: - if (lookahead == 'o') ADVANCE(2142); + if (lookahead == 'o') ADVANCE(820); END_STATE(); case 1594: - if (lookahead == 'o') ADVANCE(1663); + if (lookahead == 'o') ADVANCE(2127); END_STATE(); case 1595: - if (lookahead == 'o') ADVANCE(1552); + if (lookahead == 'o') ADVANCE(1920); END_STATE(); case 1596: - if (lookahead == 'o') ADVANCE(2103); + if (lookahead == 'o') ADVANCE(344); END_STATE(); case 1597: - if (lookahead == 'o') ADVANCE(2104); + if (lookahead == 'o') ADVANCE(2107); END_STATE(); case 1598: - if (lookahead == 'o') ADVANCE(1449); + if (lookahead == 'o') ADVANCE(2147); END_STATE(); case 1599: - if (lookahead == 'o') ADVANCE(1325); + if (lookahead == 'o') ADVANCE(1668); END_STATE(); case 1600: - if (lookahead == 'o') ADVANCE(1999); + if (lookahead == 'o') ADVANCE(1557); END_STATE(); case 1601: - if (lookahead == 'o') ADVANCE(2105); + if (lookahead == 'o') ADVANCE(2108); END_STATE(); case 1602: - if (lookahead == 'o') ADVANCE(2118); + if (lookahead == 'o') ADVANCE(2109); END_STATE(); case 1603: - if (lookahead == 'o') ADVANCE(1889); + if (lookahead == 'o') ADVANCE(1454); END_STATE(); case 1604: - if (lookahead == 'o') ADVANCE(1511); + if (lookahead == 'o') ADVANCE(1330); END_STATE(); case 1605: - if (lookahead == 'o') ADVANCE(1511); - if (lookahead == 'y') ADVANCE(146); + if (lookahead == 'o') ADVANCE(2004); END_STATE(); case 1606: - if (lookahead == 'o') ADVANCE(2119); + if (lookahead == 'o') ADVANCE(2110); END_STATE(); case 1607: - if (lookahead == 'o') ADVANCE(2111); + if (lookahead == 'o') ADVANCE(2123); END_STATE(); case 1608: - if (lookahead == 'o') ADVANCE(2106); + if (lookahead == 'o') ADVANCE(1894); END_STATE(); case 1609: - if (lookahead == 'o') ADVANCE(1344); - if (lookahead == 'u') ADVANCE(704); + if (lookahead == 'o') ADVANCE(1516); END_STATE(); case 1610: - if (lookahead == 'o') ADVANCE(890); + if (lookahead == 'o') ADVANCE(1516); + if (lookahead == 'y') ADVANCE(150); END_STATE(); case 1611: - if (lookahead == 'o') ADVANCE(1518); + if (lookahead == 'o') ADVANCE(2124); END_STATE(); case 1612: - if (lookahead == 'o') ADVANCE(2109); + if (lookahead == 'o') ADVANCE(2116); END_STATE(); case 1613: - if (lookahead == 'o') ADVANCE(1950); + if (lookahead == 'o') ADVANCE(2111); END_STATE(); case 1614: - if (lookahead == 'o') ADVANCE(1790); + if (lookahead == 'o') ADVANCE(1349); + if (lookahead == 'u') ADVANCE(709); END_STATE(); case 1615: - if (lookahead == 'o') ADVANCE(1490); + if (lookahead == 'o') ADVANCE(895); END_STATE(); case 1616: - if (lookahead == 'o') ADVANCE(1490); - if (lookahead == 'r') ADVANCE(550); - if (lookahead == 't') ADVANCE(146); + if (lookahead == 'o') ADVANCE(1523); END_STATE(); case 1617: - if (lookahead == 'o') ADVANCE(1510); + if (lookahead == 'o') ADVANCE(2114); END_STATE(); case 1618: - if (lookahead == 'o') ADVANCE(1546); + if (lookahead == 'o') ADVANCE(1955); END_STATE(); case 1619: - if (lookahead == 'o') ADVANCE(1502); + if (lookahead == 'o') ADVANCE(1795); END_STATE(); case 1620: - if (lookahead == 'o') ADVANCE(2088); + if (lookahead == 'o') ADVANCE(1495); END_STATE(); case 1621: - if (lookahead == 'o') ADVANCE(1489); + if (lookahead == 'o') ADVANCE(1495); + if (lookahead == 'r') ADVANCE(555); + if (lookahead == 't') ADVANCE(150); END_STATE(); case 1622: - if (lookahead == 'o') ADVANCE(1517); + if (lookahead == 'o') ADVANCE(1515); END_STATE(); case 1623: - if (lookahead == 'o') ADVANCE(2090); + if (lookahead == 'o') ADVANCE(1551); END_STATE(); case 1624: - if (lookahead == 'o') ADVANCE(1583); + if (lookahead == 'o') ADVANCE(1507); END_STATE(); case 1625: - if (lookahead == 'o') ADVANCE(2036); + if (lookahead == 'o') ADVANCE(2093); END_STATE(); case 1626: - if (lookahead == 'o') ADVANCE(1343); + if (lookahead == 'o') ADVANCE(1494); END_STATE(); case 1627: - if (lookahead == 'o') ADVANCE(814); + if (lookahead == 'o') ADVANCE(1522); END_STATE(); case 1628: - if (lookahead == 'o') ADVANCE(1985); + if (lookahead == 'o') ADVANCE(2095); END_STATE(); case 1629: - if (lookahead == 'o') ADVANCE(1987); + if (lookahead == 'o') ADVANCE(1588); END_STATE(); case 1630: - if (lookahead == 'o') ADVANCE(2029); + if (lookahead == 'o') ADVANCE(2041); END_STATE(); case 1631: - if (lookahead == 'o') ADVANCE(1541); + if (lookahead == 'o') ADVANCE(1348); END_STATE(); case 1632: - if (lookahead == 'o') ADVANCE(1543); + if (lookahead == 'o') ADVANCE(819); END_STATE(); case 1633: - if (lookahead == 'o') ADVANCE(1509); + if (lookahead == 'o') ADVANCE(1990); END_STATE(); case 1634: - if (lookahead == 'o') ADVANCE(1802); - if (lookahead == 'r') ADVANCE(1594); + if (lookahead == 'o') ADVANCE(1992); END_STATE(); case 1635: - if (lookahead == 'o') ADVANCE(1827); + if (lookahead == 'o') ADVANCE(2034); END_STATE(); case 1636: - if (lookahead == 'o') ADVANCE(1829); - if (lookahead == 'r') ADVANCE(1594); + if (lookahead == 'o') ADVANCE(1546); END_STATE(); case 1637: - if (lookahead == 'o') ADVANCE(1753); + if (lookahead == 'o') ADVANCE(1548); END_STATE(); case 1638: - if (lookahead == 'o') ADVANCE(2114); + if (lookahead == 'o') ADVANCE(1514); END_STATE(); case 1639: - if (lookahead == 'o') ADVANCE(1465); + if (lookahead == 'o') ADVANCE(1807); + if (lookahead == 'r') ADVANCE(1599); END_STATE(); case 1640: - if (lookahead == 'o') ADVANCE(1465); - if (lookahead == 'y') ADVANCE(146); + if (lookahead == 'o') ADVANCE(1832); END_STATE(); case 1641: - if (lookahead == 'o') ADVANCE(1808); + if (lookahead == 'o') ADVANCE(1834); + if (lookahead == 'r') ADVANCE(1599); END_STATE(); case 1642: - if (lookahead == 'o') ADVANCE(1692); + if (lookahead == 'o') ADVANCE(1758); END_STATE(); case 1643: - if (lookahead == 'o') ADVANCE(1703); + if (lookahead == 'o') ADVANCE(2119); END_STATE(); case 1644: - if (lookahead == 'o') ADVANCE(2072); + if (lookahead == 'o') ADVANCE(1470); END_STATE(); case 1645: - if (lookahead == 'o') ADVANCE(2120); + if (lookahead == 'o') ADVANCE(1470); + if (lookahead == 'y') ADVANCE(150); END_STATE(); case 1646: - if (lookahead == 'o') ADVANCE(2115); + if (lookahead == 'o') ADVANCE(1813); END_STATE(); case 1647: - if (lookahead == 'o') ADVANCE(2078); + if (lookahead == 'o') ADVANCE(1697); END_STATE(); case 1648: - if (lookahead == 'o') ADVANCE(1993); + if (lookahead == 'o') ADVANCE(1708); END_STATE(); case 1649: - if (lookahead == 'o') ADVANCE(1545); - if (lookahead == 'u') ADVANCE(1683); + if (lookahead == 'o') ADVANCE(2077); END_STATE(); case 1650: - if (lookahead == 'o') ADVANCE(2116); + if (lookahead == 'o') ADVANCE(2125); END_STATE(); case 1651: - if (lookahead == 'o') ADVANCE(1558); + if (lookahead == 'o') ADVANCE(2120); END_STATE(); case 1652: - if (lookahead == 'o') ADVANCE(1823); + if (lookahead == 'o') ADVANCE(2083); END_STATE(); case 1653: - if (lookahead == 'o') ADVANCE(1631); + if (lookahead == 'o') ADVANCE(1998); END_STATE(); case 1654: - if (lookahead == 'o') ADVANCE(1804); + if (lookahead == 'o') ADVANCE(1550); + if (lookahead == 'u') ADVANCE(1688); END_STATE(); case 1655: - if (lookahead == 'o') ADVANCE(1537); + if (lookahead == 'o') ADVANCE(2121); END_STATE(); case 1656: - if (lookahead == 'o') ADVANCE(1611); + if (lookahead == 'o') ADVANCE(1563); END_STATE(); case 1657: - if (lookahead == 'o') ADVANCE(1633); + if (lookahead == 'o') ADVANCE(1828); END_STATE(); case 1658: - if (lookahead == 'o') ADVANCE(1869); + if (lookahead == 'o') ADVANCE(1636); END_STATE(); case 1659: - if (lookahead == 'o') ADVANCE(1440); + if (lookahead == 'o') ADVANCE(1809); END_STATE(); case 1660: - if (lookahead == 'o') ADVANCE(2093); + if (lookahead == 'o') ADVANCE(1542); END_STATE(); case 1661: - if (lookahead == 'o') ADVANCE(2121); + if (lookahead == 'o') ADVANCE(1616); END_STATE(); case 1662: - if (lookahead == 'p') ADVANCE(1940); + if (lookahead == 'o') ADVANCE(1638); END_STATE(); case 1663: - if (lookahead == 'p') ADVANCE(146); + if (lookahead == 'o') ADVANCE(1874); END_STATE(); case 1664: - if (lookahead == 'p') ADVANCE(146); - if (lookahead == 'r') ADVANCE(1615); + if (lookahead == 'o') ADVANCE(1445); END_STATE(); case 1665: - if (lookahead == 'p') ADVANCE(1172); + if (lookahead == 'o') ADVANCE(2098); END_STATE(); case 1666: - if (lookahead == 'p') ADVANCE(1082); + if (lookahead == 'o') ADVANCE(2126); END_STATE(); case 1667: - if (lookahead == 'p') ADVANCE(1082); - if (lookahead == 'r') ADVANCE(661); + if (lookahead == 'p') ADVANCE(1945); END_STATE(); case 1668: - if (lookahead == 'p') ADVANCE(1082); - if (lookahead == 'r') ADVANCE(404); - if (lookahead == 'u') ADVANCE(1820); + if (lookahead == 'p') ADVANCE(150); END_STATE(); case 1669: - if (lookahead == 'p') ADVANCE(1082); - if (lookahead == 'r') ADVANCE(1214); + if (lookahead == 'p') ADVANCE(150); + if (lookahead == 'r') ADVANCE(1620); END_STATE(); case 1670: - if (lookahead == 'p') ADVANCE(1082); - if (lookahead == 't') ADVANCE(159); - if (lookahead == 'u') ADVANCE(729); - if (lookahead == 'w') ADVANCE(1492); + if (lookahead == 'p') ADVANCE(1177); END_STATE(); case 1671: - if (lookahead == 'p') ADVANCE(1082); - if (lookahead == 't') ADVANCE(348); - if (lookahead == 'w') ADVANCE(2005); - if (lookahead == 'x') ADVANCE(438); + if (lookahead == 'p') ADVANCE(1087); END_STATE(); case 1672: - if (lookahead == 'p') ADVANCE(1082); - if (lookahead == 'u') ADVANCE(1519); + if (lookahead == 'p') ADVANCE(1087); + if (lookahead == 'r') ADVANCE(666); END_STATE(); case 1673: - if (lookahead == 'p') ADVANCE(158); + if (lookahead == 'p') ADVANCE(1087); + if (lookahead == 'r') ADVANCE(409); + if (lookahead == 'u') ADVANCE(1825); END_STATE(); case 1674: - if (lookahead == 'p') ADVANCE(446); + if (lookahead == 'p') ADVANCE(1087); + if (lookahead == 'r') ADVANCE(1219); END_STATE(); case 1675: - if (lookahead == 'p') ADVANCE(165); + if (lookahead == 'p') ADVANCE(1087); + if (lookahead == 't') ADVANCE(163); + if (lookahead == 'u') ADVANCE(734); + if (lookahead == 'w') ADVANCE(1497); END_STATE(); case 1676: - if (lookahead == 'p') ADVANCE(139); + if (lookahead == 'p') ADVANCE(1087); + if (lookahead == 't') ADVANCE(352); + if (lookahead == 'w') ADVANCE(2010); + if (lookahead == 'x') ADVANCE(443); END_STATE(); case 1677: - if (lookahead == 'p') ADVANCE(447); + if (lookahead == 'p') ADVANCE(1087); + if (lookahead == 'u') ADVANCE(1524); END_STATE(); case 1678: - if (lookahead == 'p') ADVANCE(407); + if (lookahead == 'p') ADVANCE(162); END_STATE(); case 1679: - if (lookahead == 'p') ADVANCE(1736); - if (lookahead == 's') ADVANCE(748); + if (lookahead == 'p') ADVANCE(451); END_STATE(); case 1680: - if (lookahead == 'p') ADVANCE(518); + if (lookahead == 'p') ADVANCE(169); END_STATE(); case 1681: - if (lookahead == 'p') ADVANCE(318); + if (lookahead == 'p') ADVANCE(143); END_STATE(); case 1682: - if (lookahead == 'p') ADVANCE(406); + if (lookahead == 'p') ADVANCE(452); END_STATE(); case 1683: - if (lookahead == 'p') ADVANCE(421); + if (lookahead == 'p') ADVANCE(412); END_STATE(); case 1684: - if (lookahead == 'p') ADVANCE(244); + if (lookahead == 'p') ADVANCE(1741); + if (lookahead == 's') ADVANCE(753); END_STATE(); case 1685: - if (lookahead == 'p') ADVANCE(328); + if (lookahead == 'p') ADVANCE(523); END_STATE(); case 1686: - if (lookahead == 'p') ADVANCE(1169); - if (lookahead == 't') ADVANCE(146); + if (lookahead == 'p') ADVANCE(322); END_STATE(); case 1687: - if (lookahead == 'p') ADVANCE(1680); + if (lookahead == 'p') ADVANCE(411); END_STATE(); case 1688: - if (lookahead == 'p') ADVANCE(1889); - if (lookahead == 'r') ADVANCE(1615); + if (lookahead == 'p') ADVANCE(426); END_STATE(); case 1689: - if (lookahead == 'p') ADVANCE(253); + if (lookahead == 'p') ADVANCE(248); END_STATE(); case 1690: - if (lookahead == 'p') ADVANCE(1355); + if (lookahead == 'p') ADVANCE(332); END_STATE(); case 1691: - if (lookahead == 'p') ADVANCE(1700); + if (lookahead == 'p') ADVANCE(1174); + if (lookahead == 't') ADVANCE(150); END_STATE(); case 1692: - if (lookahead == 'p') ADVANCE(912); + if (lookahead == 'p') ADVANCE(1685); END_STATE(); case 1693: - if (lookahead == 'p') ADVANCE(960); + if (lookahead == 'p') ADVANCE(1894); + if (lookahead == 'r') ADVANCE(1620); END_STATE(); case 1694: - if (lookahead == 'p') ADVANCE(1434); + if (lookahead == 'p') ADVANCE(257); END_STATE(); case 1695: - if (lookahead == 'p') ADVANCE(1434); - if (lookahead == 't') ADVANCE(1771); + if (lookahead == 'p') ADVANCE(1360); END_STATE(); case 1696: - if (lookahead == 'p') ADVANCE(1912); + if (lookahead == 'p') ADVANCE(1705); END_STATE(); case 1697: - if (lookahead == 'p') ADVANCE(1984); + if (lookahead == 'p') ADVANCE(917); END_STATE(); case 1698: - if (lookahead == 'p') ADVANCE(1710); + if (lookahead == 'p') ADVANCE(965); END_STATE(); case 1699: - if (lookahead == 'p') ADVANCE(1710); - if (lookahead == 'r') ADVANCE(1736); + if (lookahead == 'p') ADVANCE(1439); END_STATE(); case 1700: - if (lookahead == 'p') ADVANCE(538); + if (lookahead == 'p') ADVANCE(1439); + if (lookahead == 't') ADVANCE(1776); END_STATE(); case 1701: - if (lookahead == 'p') ADVANCE(1653); + if (lookahead == 'p') ADVANCE(1917); END_STATE(); case 1702: - if (lookahead == 'p') ADVANCE(1436); + if (lookahead == 'p') ADVANCE(1989); END_STATE(); case 1703: - if (lookahead == 'p') ADVANCE(1976); + if (lookahead == 'p') ADVANCE(1715); END_STATE(); case 1704: - if (lookahead == 'p') ADVANCE(1603); + if (lookahead == 'p') ADVANCE(1715); + if (lookahead == 'r') ADVANCE(1741); END_STATE(); case 1705: - if (lookahead == 'p') ADVANCE(1400); + if (lookahead == 'p') ADVANCE(543); END_STATE(); case 1706: - if (lookahead == 'p') ADVANCE(658); + if (lookahead == 'p') ADVANCE(1658); END_STATE(); case 1707: - if (lookahead == 'p') ADVANCE(1930); + if (lookahead == 'p') ADVANCE(1441); END_STATE(); case 1708: - if (lookahead == 'p') ADVANCE(1835); - if (lookahead == 's') ADVANCE(2063); + if (lookahead == 'p') ADVANCE(1981); END_STATE(); case 1709: - if (lookahead == 'p') ADVANCE(1412); + if (lookahead == 'p') ADVANCE(1608); END_STATE(); case 1710: - if (lookahead == 'p') ADVANCE(1815); + if (lookahead == 'p') ADVANCE(1405); END_STATE(); case 1711: - if (lookahead == 'p') ADVANCE(640); + if (lookahead == 'p') ADVANCE(663); END_STATE(); case 1712: - if (lookahead == 'p') ADVANCE(689); + if (lookahead == 'p') ADVANCE(1935); END_STATE(); case 1713: - if (lookahead == 'p') ADVANCE(458); + if (lookahead == 'p') ADVANCE(1840); + if (lookahead == 's') ADVANCE(2068); END_STATE(); case 1714: - if (lookahead == 'p') ADVANCE(1657); + if (lookahead == 'p') ADVANCE(1417); END_STATE(); case 1715: - if (lookahead == 'p') ADVANCE(673); + if (lookahead == 'p') ADVANCE(1820); END_STATE(); case 1716: - if (lookahead == 'p') ADVANCE(1656); + if (lookahead == 'p') ADVANCE(645); END_STATE(); case 1717: - if (lookahead == 'p') ADVANCE(691); + if (lookahead == 'p') ADVANCE(694); END_STATE(); case 1718: - if (lookahead == 'q') ADVANCE(146); + if (lookahead == 'p') ADVANCE(463); END_STATE(); case 1719: - if (lookahead == 'q') ADVANCE(234); + if (lookahead == 'p') ADVANCE(1662); END_STATE(); case 1720: - if (lookahead == 'q') ADVANCE(1405); + if (lookahead == 'p') ADVANCE(678); END_STATE(); case 1721: - if (lookahead == 'q') ADVANCE(1143); + if (lookahead == 'p') ADVANCE(1661); END_STATE(); case 1722: - if (lookahead == 'q') ADVANCE(1708); + if (lookahead == 'p') ADVANCE(696); END_STATE(); case 1723: - if (lookahead == 'q') ADVANCE(319); + if (lookahead == 'q') ADVANCE(150); END_STATE(); case 1724: - if (lookahead == 'q') ADVANCE(1718); + if (lookahead == 'q') ADVANCE(238); END_STATE(); case 1725: - if (lookahead == 'q') ADVANCE(2039); + if (lookahead == 'q') ADVANCE(1410); END_STATE(); case 1726: - if (lookahead == 'q') ADVANCE(2058); + if (lookahead == 'q') ADVANCE(1148); END_STATE(); case 1727: - if (lookahead == 'q') ADVANCE(2091); - if (lookahead == 'u') ADVANCE(727); + if (lookahead == 'q') ADVANCE(1713); END_STATE(); case 1728: - if (lookahead == 'q') ADVANCE(2079); + if (lookahead == 'q') ADVANCE(323); END_STATE(); case 1729: - if (lookahead == 'q') ADVANCE(2068); + if (lookahead == 'q') ADVANCE(1723); END_STATE(); case 1730: - if (lookahead == 'q') ADVANCE(833); - if (lookahead == 't') ADVANCE(532); + if (lookahead == 'q') ADVANCE(2044); END_STATE(); case 1731: - if (lookahead == 'q') ADVANCE(2082); + if (lookahead == 'q') ADVANCE(2063); END_STATE(); case 1732: - if (lookahead == 'q') ADVANCE(2086); + if (lookahead == 'q') ADVANCE(2096); + if (lookahead == 'u') ADVANCE(732); END_STATE(); case 1733: - if (lookahead == 'q') ADVANCE(2089); + if (lookahead == 'q') ADVANCE(2084); END_STATE(); case 1734: - if (lookahead == 'r') ADVANCE(867); + if (lookahead == 'q') ADVANCE(2073); END_STATE(); case 1735: - if (lookahead == 'r') ADVANCE(921); + if (lookahead == 'q') ADVANCE(838); + if (lookahead == 't') ADVANCE(537); END_STATE(); case 1736: - if (lookahead == 'r') ADVANCE(146); + if (lookahead == 'q') ADVANCE(2087); END_STATE(); case 1737: - if (lookahead == 'r') ADVANCE(428); + if (lookahead == 'q') ADVANCE(2091); END_STATE(); case 1738: - if (lookahead == 'r') ADVANCE(303); + if (lookahead == 'q') ADVANCE(2094); END_STATE(); case 1739: - if (lookahead == 'r') ADVANCE(1082); + if (lookahead == 'r') ADVANCE(872); END_STATE(); case 1740: - if (lookahead == 'r') ADVANCE(222); + if (lookahead == 'r') ADVANCE(926); END_STATE(); case 1741: - if (lookahead == 'r') ADVANCE(316); + if (lookahead == 'r') ADVANCE(150); END_STATE(); case 1742: - if (lookahead == 'r') ADVANCE(193); + if (lookahead == 'r') ADVANCE(433); END_STATE(); case 1743: - if (lookahead == 'r') ADVANCE(791); + if (lookahead == 'r') ADVANCE(307); END_STATE(); case 1744: - if (lookahead == 'r') ADVANCE(413); + if (lookahead == 'r') ADVANCE(1087); END_STATE(); case 1745: - if (lookahead == 'r') ADVANCE(2155); + if (lookahead == 'r') ADVANCE(226); END_STATE(); case 1746: - if (lookahead == 'r') ADVANCE(268); + if (lookahead == 'r') ADVANCE(320); END_STATE(); case 1747: - if (lookahead == 'r') ADVANCE(218); + if (lookahead == 'r') ADVANCE(197); END_STATE(); case 1748: - if (lookahead == 'r') ADVANCE(1182); + if (lookahead == 'r') ADVANCE(796); END_STATE(); case 1749: - if (lookahead == 'r') ADVANCE(194); + if (lookahead == 'r') ADVANCE(418); END_STATE(); case 1750: - if (lookahead == 'r') ADVANCE(484); + if (lookahead == 'r') ADVANCE(2160); END_STATE(); case 1751: - if (lookahead == 'r') ADVANCE(358); + if (lookahead == 'r') ADVANCE(272); END_STATE(); case 1752: - if (lookahead == 'r') ADVANCE(2159); + if (lookahead == 'r') ADVANCE(222); END_STATE(); case 1753: - if (lookahead == 'r') ADVANCE(151); + if (lookahead == 'r') ADVANCE(1187); END_STATE(); case 1754: - if (lookahead == 'r') ADVANCE(169); + if (lookahead == 'r') ADVANCE(198); END_STATE(); case 1755: - if (lookahead == 'r') ADVANCE(1736); + if (lookahead == 'r') ADVANCE(489); END_STATE(); case 1756: - if (lookahead == 'r') ADVANCE(309); + if (lookahead == 'r') ADVANCE(362); END_STATE(); case 1757: - if (lookahead == 'r') ADVANCE(466); + if (lookahead == 'r') ADVANCE(2164); END_STATE(); case 1758: - if (lookahead == 'r') ADVANCE(741); + if (lookahead == 'r') ADVANCE(155); END_STATE(); case 1759: - if (lookahead == 'r') ADVANCE(352); + if (lookahead == 'r') ADVANCE(173); END_STATE(); case 1760: - if (lookahead == 'r') ADVANCE(276); + if (lookahead == 'r') ADVANCE(1741); END_STATE(); case 1761: - if (lookahead == 'r') ADVANCE(1944); + if (lookahead == 'r') ADVANCE(313); END_STATE(); case 1762: - if (lookahead == 'r') ADVANCE(1944); - if (lookahead == 'u') ADVANCE(675); + if (lookahead == 'r') ADVANCE(471); END_STATE(); case 1763: - if (lookahead == 'r') ADVANCE(237); + if (lookahead == 'r') ADVANCE(746); END_STATE(); case 1764: - if (lookahead == 'r') ADVANCE(894); + if (lookahead == 'r') ADVANCE(356); END_STATE(); case 1765: - if (lookahead == 'r') ADVANCE(212); + if (lookahead == 'r') ADVANCE(280); END_STATE(); case 1766: - if (lookahead == 'r') ADVANCE(221); + if (lookahead == 'r') ADVANCE(1949); END_STATE(); case 1767: - if (lookahead == 'r') ADVANCE(208); + if (lookahead == 'r') ADVANCE(1949); + if (lookahead == 'u') ADVANCE(680); END_STATE(); case 1768: - if (lookahead == 'r') ADVANCE(478); + if (lookahead == 'r') ADVANCE(241); END_STATE(); case 1769: - if (lookahead == 'r') ADVANCE(740); + if (lookahead == 'r') ADVANCE(899); END_STATE(); case 1770: - if (lookahead == 'r') ADVANCE(569); + if (lookahead == 'r') ADVANCE(216); END_STATE(); case 1771: - if (lookahead == 'r') ADVANCE(1209); + if (lookahead == 'r') ADVANCE(225); END_STATE(); case 1772: - if (lookahead == 'r') ADVANCE(311); + if (lookahead == 'r') ADVANCE(212); END_STATE(); case 1773: - if (lookahead == 'r') ADVANCE(294); + if (lookahead == 'r') ADVANCE(483); END_STATE(); case 1774: - if (lookahead == 'r') ADVANCE(300); + if (lookahead == 'r') ADVANCE(745); END_STATE(); case 1775: - if (lookahead == 'r') ADVANCE(870); + if (lookahead == 'r') ADVANCE(574); END_STATE(); case 1776: - if (lookahead == 'r') ADVANCE(862); + if (lookahead == 'r') ADVANCE(1214); END_STATE(); case 1777: - if (lookahead == 'r') ADVANCE(1574); + if (lookahead == 'r') ADVANCE(315); END_STATE(); case 1778: - if (lookahead == 'r') ADVANCE(305); + if (lookahead == 'r') ADVANCE(298); END_STATE(); case 1779: - if (lookahead == 'r') ADVANCE(1335); + if (lookahead == 'r') ADVANCE(304); END_STATE(); case 1780: - if (lookahead == 'r') ADVANCE(334); + if (lookahead == 'r') ADVANCE(875); END_STATE(); case 1781: - if (lookahead == 'r') ADVANCE(424); + if (lookahead == 'r') ADVANCE(867); END_STATE(); case 1782: - if (lookahead == 'r') ADVANCE(345); + if (lookahead == 'r') ADVANCE(1579); END_STATE(); case 1783: - if (lookahead == 'r') ADVANCE(852); + if (lookahead == 'r') ADVANCE(309); END_STATE(); case 1784: - if (lookahead == 'r') ADVANCE(1663); + if (lookahead == 'r') ADVANCE(1340); END_STATE(); case 1785: - if (lookahead == 'r') ADVANCE(989); + if (lookahead == 'r') ADVANCE(338); END_STATE(); case 1786: - if (lookahead == 'r') ADVANCE(2004); + if (lookahead == 'r') ADVANCE(429); END_STATE(); case 1787: - if (lookahead == 'r') ADVANCE(308); + if (lookahead == 'r') ADVANCE(349); END_STATE(); case 1788: - if (lookahead == 'r') ADVANCE(523); + if (lookahead == 'r') ADVANCE(857); END_STATE(); case 1789: - if (lookahead == 'r') ADVANCE(1615); + if (lookahead == 'r') ADVANCE(1668); END_STATE(); case 1790: - if (lookahead == 'r') ADVANCE(1325); + if (lookahead == 'r') ADVANCE(994); END_STATE(); case 1791: - if (lookahead == 'r') ADVANCE(2132); + if (lookahead == 'r') ADVANCE(2009); END_STATE(); case 1792: - if (lookahead == 'r') ADVANCE(2134); + if (lookahead == 'r') ADVANCE(312); END_STATE(); case 1793: - if (lookahead == 'r') ADVANCE(1578); - if (lookahead == 't') ADVANCE(518); + if (lookahead == 'r') ADVANCE(528); END_STATE(); case 1794: - if (lookahead == 'r') ADVANCE(1889); + if (lookahead == 'r') ADVANCE(1620); END_STATE(); case 1795: - if (lookahead == 'r') ADVANCE(982); + if (lookahead == 'r') ADVANCE(1330); END_STATE(); case 1796: - if (lookahead == 'r') ADVANCE(1573); + if (lookahead == 'r') ADVANCE(2137); END_STATE(); case 1797: - if (lookahead == 'r') ADVANCE(550); + if (lookahead == 'r') ADVANCE(2139); END_STATE(); case 1798: - if (lookahead == 'r') ADVANCE(2110); + if (lookahead == 'r') ADVANCE(1583); + if (lookahead == 't') ADVANCE(523); END_STATE(); case 1799: - if (lookahead == 'r') ADVANCE(2133); + if (lookahead == 'r') ADVANCE(1894); END_STATE(); case 1800: - if (lookahead == 'r') ADVANCE(1040); + if (lookahead == 'r') ADVANCE(987); END_STATE(); case 1801: - if (lookahead == 'r') ADVANCE(1181); + if (lookahead == 'r') ADVANCE(1578); END_STATE(); case 1802: - if (lookahead == 'r') ADVANCE(1490); + if (lookahead == 'r') ADVANCE(555); END_STATE(); case 1803: - if (lookahead == 'r') ADVANCE(748); + if (lookahead == 'r') ADVANCE(2115); END_STATE(); case 1804: - if (lookahead == 'r') ADVANCE(912); + if (lookahead == 'r') ADVANCE(2138); END_STATE(); case 1805: - if (lookahead == 'r') ADVANCE(1594); + if (lookahead == 'r') ADVANCE(1045); END_STATE(); case 1806: - if (lookahead == 'r') ADVANCE(1286); + if (lookahead == 'r') ADVANCE(1186); END_STATE(); case 1807: - if (lookahead == 'r') ADVANCE(1599); + if (lookahead == 'r') ADVANCE(1495); END_STATE(); case 1808: - if (lookahead == 'r') ADVANCE(1952); + if (lookahead == 'r') ADVANCE(753); END_STATE(); case 1809: - if (lookahead == 'r') ADVANCE(1587); + if (lookahead == 'r') ADVANCE(917); END_STATE(); case 1810: - if (lookahead == 'r') ADVANCE(1909); + if (lookahead == 'r') ADVANCE(1599); END_STATE(); case 1811: - if (lookahead == 'r') ADVANCE(821); + if (lookahead == 'r') ADVANCE(1291); END_STATE(); case 1812: - if (lookahead == 'r') ADVANCE(1592); + if (lookahead == 'r') ADVANCE(1604); END_STATE(); case 1813: - if (lookahead == 'r') ADVANCE(1745); + if (lookahead == 'r') ADVANCE(1957); END_STATE(); case 1814: - if (lookahead == 'r') ADVANCE(586); + if (lookahead == 'r') ADVANCE(1592); END_STATE(); case 1815: - if (lookahead == 'r') ADVANCE(1589); + if (lookahead == 'r') ADVANCE(1914); END_STATE(); case 1816: - if (lookahead == 'r') ADVANCE(2022); + if (lookahead == 'r') ADVANCE(826); END_STATE(); case 1817: - if (lookahead == 'r') ADVANCE(1701); + if (lookahead == 'r') ADVANCE(1597); END_STATE(); case 1818: - if (lookahead == 'r') ADVANCE(2015); + if (lookahead == 'r') ADVANCE(1750); END_STATE(); case 1819: - if (lookahead == 'r') ADVANCE(1931); + if (lookahead == 'r') ADVANCE(591); END_STATE(); case 1820: - if (lookahead == 'r') ADVANCE(1295); + if (lookahead == 'r') ADVANCE(1594); END_STATE(); case 1821: - if (lookahead == 'r') ADVANCE(1939); + if (lookahead == 'r') ADVANCE(2027); END_STATE(); case 1822: - if (lookahead == 'r') ADVANCE(965); - if (lookahead == 't') ADVANCE(518); + if (lookahead == 'r') ADVANCE(1706); END_STATE(); case 1823: - if (lookahead == 'r') ADVANCE(1968); + if (lookahead == 'r') ADVANCE(2020); END_STATE(); case 1824: - if (lookahead == 'r') ADVANCE(589); + if (lookahead == 'r') ADVANCE(1936); END_STATE(); case 1825: - if (lookahead == 'r') ADVANCE(1257); + if (lookahead == 'r') ADVANCE(1300); END_STATE(); case 1826: - if (lookahead == 'r') ADVANCE(1596); + if (lookahead == 'r') ADVANCE(1944); END_STATE(); case 1827: - if (lookahead == 'r') ADVANCE(1531); + if (lookahead == 'r') ADVANCE(970); + if (lookahead == 't') ADVANCE(523); END_STATE(); case 1828: - if (lookahead == 'r') ADVANCE(1917); + if (lookahead == 'r') ADVANCE(1973); END_STATE(); case 1829: - if (lookahead == 'r') ADVANCE(1520); + if (lookahead == 'r') ADVANCE(594); END_STATE(); case 1830: - if (lookahead == 'r') ADVANCE(1235); + if (lookahead == 'r') ADVANCE(1262); END_STATE(); case 1831: - if (lookahead == 'r') ADVANCE(1559); + if (lookahead == 'r') ADVANCE(1601); END_STATE(); case 1832: - if (lookahead == 'r') ADVANCE(1383); + if (lookahead == 'r') ADVANCE(1536); END_STATE(); case 1833: - if (lookahead == 'r') ADVANCE(1292); + if (lookahead == 'r') ADVANCE(1922); END_STATE(); case 1834: - if (lookahead == 'r') ADVANCE(1387); + if (lookahead == 'r') ADVANCE(1525); END_STATE(); case 1835: - if (lookahead == 'r') ADVANCE(987); + if (lookahead == 'r') ADVANCE(1240); END_STATE(); case 1836: - if (lookahead == 'r') ADVANCE(1597); + if (lookahead == 'r') ADVANCE(1564); END_STATE(); case 1837: - if (lookahead == 'r') ADVANCE(1948); + if (lookahead == 'r') ADVANCE(1388); END_STATE(); case 1838: - if (lookahead == 'r') ADVANCE(929); - if (lookahead == 't') ADVANCE(549); + if (lookahead == 'r') ADVANCE(1297); END_STATE(); case 1839: - if (lookahead == 'r') ADVANCE(1601); + if (lookahead == 'r') ADVANCE(1392); END_STATE(); case 1840: - if (lookahead == 'r') ADVANCE(1602); + if (lookahead == 'r') ADVANCE(992); END_STATE(); case 1841: - if (lookahead == 'r') ADVANCE(1606); + if (lookahead == 'r') ADVANCE(1602); END_STATE(); case 1842: - if (lookahead == 'r') ADVANCE(1607); + if (lookahead == 'r') ADVANCE(1953); END_STATE(); case 1843: - if (lookahead == 'r') ADVANCE(1608); + if (lookahead == 'r') ADVANCE(934); + if (lookahead == 't') ADVANCE(554); END_STATE(); case 1844: - if (lookahead == 'r') ADVANCE(1080); + if (lookahead == 'r') ADVANCE(1606); END_STATE(); case 1845: - if (lookahead == 'r') ADVANCE(932); + if (lookahead == 'r') ADVANCE(1607); END_STATE(); case 1846: - if (lookahead == 'r') ADVANCE(1612); + if (lookahead == 'r') ADVANCE(1611); END_STATE(); case 1847: - if (lookahead == 'r') ADVANCE(1751); + if (lookahead == 'r') ADVANCE(1612); END_STATE(); case 1848: - if (lookahead == 'r') ADVANCE(1036); + if (lookahead == 'r') ADVANCE(1613); END_STATE(); case 1849: - if (lookahead == 'r') ADVANCE(1741); + if (lookahead == 'r') ADVANCE(1085); END_STATE(); case 1850: - if (lookahead == 'r') ADVANCE(1774); + if (lookahead == 'r') ADVANCE(937); END_STATE(); case 1851: - if (lookahead == 'r') ADVANCE(1055); + if (lookahead == 'r') ADVANCE(1617); END_STATE(); case 1852: - if (lookahead == 'r') ADVANCE(957); + if (lookahead == 'r') ADVANCE(1756); END_STATE(); case 1853: - if (lookahead == 'r') ADVANCE(679); + if (lookahead == 'r') ADVANCE(1041); END_STATE(); case 1854: - if (lookahead == 'r') ADVANCE(594); + if (lookahead == 'r') ADVANCE(1746); END_STATE(); case 1855: - if (lookahead == 'r') ADVANCE(639); + if (lookahead == 'r') ADVANCE(1779); END_STATE(); case 1856: - if (lookahead == 'r') ADVANCE(1267); + if (lookahead == 'r') ADVANCE(1060); END_STATE(); case 1857: - if (lookahead == 'r') ADVANCE(1932); + if (lookahead == 'r') ADVANCE(962); END_STATE(); case 1858: - if (lookahead == 'r') ADVANCE(833); + if (lookahead == 'r') ADVANCE(684); END_STATE(); case 1859: - if (lookahead == 'r') ADVANCE(2012); + if (lookahead == 'r') ADVANCE(599); END_STATE(); case 1860: - if (lookahead == 'r') ADVANCE(1003); + if (lookahead == 'r') ADVANCE(644); END_STATE(); case 1861: - if (lookahead == 'r') ADVANCE(1133); - if (lookahead == 'u') ADVANCE(146); + if (lookahead == 'r') ADVANCE(1272); END_STATE(); case 1862: - if (lookahead == 'r') ADVANCE(1995); + if (lookahead == 'r') ADVANCE(1937); END_STATE(); case 1863: - if (lookahead == 'r') ADVANCE(2057); + if (lookahead == 'r') ADVANCE(838); END_STATE(); case 1864: - if (lookahead == 'r') ADVANCE(1934); + if (lookahead == 'r') ADVANCE(2017); END_STATE(); case 1865: - if (lookahead == 'r') ADVANCE(1010); + if (lookahead == 'r') ADVANCE(1008); END_STATE(); case 1866: - if (lookahead == 'r') ADVANCE(1027); + if (lookahead == 'r') ADVANCE(1138); + if (lookahead == 'u') ADVANCE(150); END_STATE(); case 1867: - if (lookahead == 'r') ADVANCE(1812); + if (lookahead == 'r') ADVANCE(2000); END_STATE(); case 1868: - if (lookahead == 'r') ADVANCE(618); + if (lookahead == 'r') ADVANCE(2062); END_STATE(); case 1869: - if (lookahead == 'r') ADVANCE(2010); + if (lookahead == 'r') ADVANCE(1939); END_STATE(); case 1870: - if (lookahead == 'r') ADVANCE(1826); + if (lookahead == 'r') ADVANCE(1015); END_STATE(); case 1871: - if (lookahead == 'r') ADVANCE(1836); + if (lookahead == 'r') ADVANCE(1032); END_STATE(); case 1872: - if (lookahead == 'r') ADVANCE(1840); + if (lookahead == 'r') ADVANCE(1817); END_STATE(); case 1873: - if (lookahead == 'r') ADVANCE(1841); + if (lookahead == 'r') ADVANCE(623); END_STATE(); case 1874: - if (lookahead == 'r') ADVANCE(1842); + if (lookahead == 'r') ADVANCE(2015); END_STATE(); case 1875: - if (lookahead == 'r') ADVANCE(1846); + if (lookahead == 'r') ADVANCE(1831); END_STATE(); case 1876: - if (lookahead == 'r') ADVANCE(1045); + if (lookahead == 'r') ADVANCE(1841); END_STATE(); case 1877: - if (lookahead == 'r') ADVANCE(857); + if (lookahead == 'r') ADVANCE(1845); END_STATE(); case 1878: - if (lookahead == 'r') ADVANCE(1068); + if (lookahead == 'r') ADVANCE(1846); END_STATE(); case 1879: - if (lookahead == 'r') ADVANCE(461); + if (lookahead == 'r') ADVANCE(1847); END_STATE(); case 1880: - if (lookahead == 'r') ADVANCE(1714); + if (lookahead == 'r') ADVANCE(1851); END_STATE(); case 1881: - if (lookahead == 'r') ADVANCE(2033); + if (lookahead == 'r') ADVANCE(1050); END_STATE(); case 1882: - if (lookahead == 'r') ADVANCE(1716); + if (lookahead == 'r') ADVANCE(862); END_STATE(); case 1883: - if (lookahead == 'r') ADVANCE(1077); + if (lookahead == 'r') ADVANCE(1073); END_STATE(); case 1884: - if (lookahead == 'r') ADVANCE(1078); + if (lookahead == 'r') ADVANCE(466); END_STATE(); case 1885: - if (lookahead == 'r') ADVANCE(1079); + if (lookahead == 'r') ADVANCE(1719); END_STATE(); case 1886: - if (lookahead == 'r') ADVANCE(1319); + if (lookahead == 'r') ADVANCE(2038); END_STATE(); case 1887: - if (lookahead == 'r') ADVANCE(1321); + if (lookahead == 'r') ADVANCE(1721); END_STATE(); case 1888: - if (lookahead == 'r') ADVANCE(1322); + if (lookahead == 'r') ADVANCE(1082); END_STATE(); case 1889: - if (lookahead == 's') ADVANCE(146); + if (lookahead == 'r') ADVANCE(1083); END_STATE(); case 1890: - if (lookahead == 's') ADVANCE(1037); + if (lookahead == 'r') ADVANCE(1084); END_STATE(); case 1891: - if (lookahead == 's') ADVANCE(316); - if (lookahead == 'u') ADVANCE(1475); + if (lookahead == 'r') ADVANCE(1324); END_STATE(); case 1892: - if (lookahead == 's') ADVANCE(460); + if (lookahead == 'r') ADVANCE(1326); END_STATE(); case 1893: - if (lookahead == 's') ADVANCE(486); + if (lookahead == 'r') ADVANCE(1327); END_STATE(); case 1894: - if (lookahead == 's') ADVANCE(195); + if (lookahead == 's') ADVANCE(150); END_STATE(); case 1895: - if (lookahead == 's') ADVANCE(351); + if (lookahead == 's') ADVANCE(1042); END_STATE(); case 1896: - if (lookahead == 's') ADVANCE(214); + if (lookahead == 's') ADVANCE(320); + if (lookahead == 'u') ADVANCE(1480); END_STATE(); case 1897: - if (lookahead == 's') ADVANCE(171); + if (lookahead == 's') ADVANCE(465); END_STATE(); case 1898: - if (lookahead == 's') ADVANCE(173); + if (lookahead == 's') ADVANCE(491); END_STATE(); case 1899: - if (lookahead == 's') ADVANCE(172); + if (lookahead == 's') ADVANCE(199); END_STATE(); case 1900: - if (lookahead == 's') ADVANCE(1944); + if (lookahead == 's') ADVANCE(355); END_STATE(); case 1901: - if (lookahead == 's') ADVANCE(480); + if (lookahead == 's') ADVANCE(218); END_STATE(); case 1902: - if (lookahead == 's') ADVANCE(1609); + if (lookahead == 's') ADVANCE(175); END_STATE(); case 1903: - if (lookahead == 's') ADVANCE(278); + if (lookahead == 's') ADVANCE(177); END_STATE(); case 1904: - if (lookahead == 's') ADVANCE(1209); + if (lookahead == 's') ADVANCE(176); END_STATE(); case 1905: - if (lookahead == 's') ADVANCE(494); + if (lookahead == 's') ADVANCE(1949); END_STATE(); case 1906: - if (lookahead == 's') ADVANCE(340); + if (lookahead == 's') ADVANCE(485); END_STATE(); case 1907: - if (lookahead == 's') ADVANCE(244); + if (lookahead == 's') ADVANCE(1614); END_STATE(); case 1908: - if (lookahead == 's') ADVANCE(199); + if (lookahead == 's') ADVANCE(282); END_STATE(); case 1909: - if (lookahead == 's') ADVANCE(1663); + if (lookahead == 's') ADVANCE(1214); END_STATE(); case 1910: - if (lookahead == 's') ADVANCE(1169); + if (lookahead == 's') ADVANCE(499); END_STATE(); case 1911: - if (lookahead == 's') ADVANCE(2135); + if (lookahead == 's') ADVANCE(344); END_STATE(); case 1912: - if (lookahead == 's') ADVANCE(333); + if (lookahead == 's') ADVANCE(248); END_STATE(); case 1913: - if (lookahead == 's') ADVANCE(1170); + if (lookahead == 's') ADVANCE(203); END_STATE(); case 1914: - if (lookahead == 's') ADVANCE(1174); + if (lookahead == 's') ADVANCE(1668); END_STATE(); case 1915: - if (lookahead == 's') ADVANCE(1889); + if (lookahead == 's') ADVANCE(1174); END_STATE(); case 1916: - if (lookahead == 's') ADVANCE(1245); + if (lookahead == 's') ADVANCE(2140); END_STATE(); case 1917: - if (lookahead == 's') ADVANCE(1344); + if (lookahead == 's') ADVANCE(337); END_STATE(); case 1918: - if (lookahead == 's') ADVANCE(2038); + if (lookahead == 's') ADVANCE(1175); END_STATE(); case 1919: - if (lookahead == 's') ADVANCE(880); + if (lookahead == 's') ADVANCE(1179); END_STATE(); case 1920: - if (lookahead == 's') ADVANCE(912); + if (lookahead == 's') ADVANCE(1894); END_STATE(); case 1921: - if (lookahead == 's') ADVANCE(960); + if (lookahead == 's') ADVANCE(1250); END_STATE(); case 1922: - if (lookahead == 's') ADVANCE(2087); + if (lookahead == 's') ADVANCE(1349); END_STATE(); case 1923: if (lookahead == 's') ADVANCE(2043); END_STATE(); case 1924: - if (lookahead == 's') ADVANCE(1989); + if (lookahead == 's') ADVANCE(885); END_STATE(); case 1925: - if (lookahead == 's') ADVANCE(1370); + if (lookahead == 's') ADVANCE(917); END_STATE(); case 1926: - if (lookahead == 's') ADVANCE(1901); + if (lookahead == 's') ADVANCE(965); END_STATE(); case 1927: - if (lookahead == 's') ADVANCE(1979); + if (lookahead == 's') ADVANCE(2092); END_STATE(); case 1928: - if (lookahead == 's') ADVANCE(1982); + if (lookahead == 's') ADVANCE(2048); END_STATE(); case 1929: - if (lookahead == 's') ADVANCE(1307); + if (lookahead == 's') ADVANCE(1994); END_STATE(); case 1930: - if (lookahead == 's') ADVANCE(1976); + if (lookahead == 's') ADVANCE(1375); END_STATE(); case 1931: - if (lookahead == 's') ADVANCE(997); + if (lookahead == 's') ADVANCE(1906); END_STATE(); case 1932: - if (lookahead == 's') ADVANCE(936); + if (lookahead == 's') ADVANCE(1984); END_STATE(); case 1933: - if (lookahead == 's') ADVANCE(967); + if (lookahead == 's') ADVANCE(1987); END_STATE(); case 1934: - if (lookahead == 's') ADVANCE(956); + if (lookahead == 's') ADVANCE(1312); END_STATE(); case 1935: - if (lookahead == 's') ADVANCE(1179); + if (lookahead == 's') ADVANCE(1981); END_STATE(); case 1936: - if (lookahead == 's') ADVANCE(2045); + if (lookahead == 's') ADVANCE(1002); END_STATE(); case 1937: - if (lookahead == 's') ADVANCE(2000); + if (lookahead == 's') ADVANCE(941); END_STATE(); case 1938: - if (lookahead == 's') ADVANCE(1988); + if (lookahead == 's') ADVANCE(972); END_STATE(); case 1939: - if (lookahead == 's') ADVANCE(1002); + if (lookahead == 's') ADVANCE(961); END_STATE(); case 1940: - if (lookahead == 's') ADVANCE(1254); + if (lookahead == 's') ADVANCE(1184); END_STATE(); case 1941: - if (lookahead == 's') ADVANCE(1017); + if (lookahead == 's') ADVANCE(2050); END_STATE(); case 1942: - if (lookahead == 's') ADVANCE(1073); + if (lookahead == 's') ADVANCE(2005); END_STATE(); case 1943: - if (lookahead == 't') ADVANCE(2125); + if (lookahead == 's') ADVANCE(1993); END_STATE(); case 1944: - if (lookahead == 't') ADVANCE(146); + if (lookahead == 's') ADVANCE(1007); END_STATE(); case 1945: - if (lookahead == 't') ADVANCE(146); - if (lookahead == 'u') ADVANCE(737); + if (lookahead == 's') ADVANCE(1259); END_STATE(); case 1946: - if (lookahead == 't') ADVANCE(146); - if (lookahead == 'w') ADVANCE(1506); + if (lookahead == 's') ADVANCE(1022); END_STATE(); case 1947: - if (lookahead == 't') ADVANCE(387); + if (lookahead == 's') ADVANCE(1078); END_STATE(); case 1948: - if (lookahead == 't') ADVANCE(502); + if (lookahead == 't') ADVANCE(2130); END_STATE(); case 1949: - if (lookahead == 't') ADVANCE(687); + if (lookahead == 't') ADVANCE(150); END_STATE(); case 1950: - if (lookahead == 't') ADVANCE(357); + if (lookahead == 't') ADVANCE(150); + if (lookahead == 'u') ADVANCE(742); END_STATE(); case 1951: - if (lookahead == 't') ADVANCE(405); + if (lookahead == 't') ADVANCE(150); + if (lookahead == 'w') ADVANCE(1511); END_STATE(); case 1952: - if (lookahead == 't') ADVANCE(443); + if (lookahead == 't') ADVANCE(392); END_STATE(); case 1953: - if (lookahead == 't') ADVANCE(686); + if (lookahead == 't') ADVANCE(507); END_STATE(); case 1954: - if (lookahead == 't') ADVANCE(259); + if (lookahead == 't') ADVANCE(692); END_STATE(); case 1955: - if (lookahead == 't') ADVANCE(1142); + if (lookahead == 't') ADVANCE(361); END_STATE(); case 1956: - if (lookahead == 't') ADVANCE(498); + if (lookahead == 't') ADVANCE(410); END_STATE(); case 1957: - if (lookahead == 't') ADVANCE(508); + if (lookahead == 't') ADVANCE(448); END_STATE(); case 1958: - if (lookahead == 't') ADVANCE(408); + if (lookahead == 't') ADVANCE(691); END_STATE(); case 1959: - if (lookahead == 't') ADVANCE(411); + if (lookahead == 't') ADVANCE(263); END_STATE(); case 1960: - if (lookahead == 't') ADVANCE(512); + if (lookahead == 't') ADVANCE(1147); END_STATE(); case 1961: - if (lookahead == 't') ADVANCE(694); + if (lookahead == 't') ADVANCE(503); END_STATE(); case 1962: - if (lookahead == 't') ADVANCE(409); + if (lookahead == 't') ADVANCE(513); END_STATE(); case 1963: - if (lookahead == 't') ADVANCE(410); + if (lookahead == 't') ADVANCE(413); END_STATE(); case 1964: - if (lookahead == 't') ADVANCE(1736); + if (lookahead == 't') ADVANCE(416); END_STATE(); case 1965: - if (lookahead == 't') ADVANCE(518); + if (lookahead == 't') ADVANCE(517); END_STATE(); case 1966: - if (lookahead == 't') ADVANCE(994); + if (lookahead == 't') ADVANCE(699); END_STATE(); case 1967: - if (lookahead == 't') ADVANCE(168); + if (lookahead == 't') ADVANCE(414); END_STATE(); case 1968: - if (lookahead == 't') ADVANCE(1464); + if (lookahead == 't') ADVANCE(415); END_STATE(); case 1969: - if (lookahead == 't') ADVANCE(459); + if (lookahead == 't') ADVANCE(1741); END_STATE(); case 1970: - if (lookahead == 't') ADVANCE(740); + if (lookahead == 't') ADVANCE(523); END_STATE(); case 1971: - if (lookahead == 't') ADVANCE(2126); + if (lookahead == 't') ADVANCE(999); END_STATE(); case 1972: - if (lookahead == 't') ADVANCE(250); - if (lookahead == 'v') ADVANCE(1281); + if (lookahead == 't') ADVANCE(172); END_STATE(); case 1973: - if (lookahead == 't') ADVANCE(354); + if (lookahead == 't') ADVANCE(1469); END_STATE(); case 1974: - if (lookahead == 't') ADVANCE(406); + if (lookahead == 't') ADVANCE(464); END_STATE(); case 1975: - if (lookahead == 't') ADVANCE(683); + if (lookahead == 't') ADVANCE(745); END_STATE(); case 1976: - if (lookahead == 't') ADVANCE(1574); + if (lookahead == 't') ADVANCE(2131); END_STATE(); case 1977: - if (lookahead == 't') ADVANCE(1021); + if (lookahead == 't') ADVANCE(254); + if (lookahead == 'v') ADVANCE(1286); END_STATE(); case 1978: - if (lookahead == 't') ADVANCE(509); + if (lookahead == 't') ADVANCE(358); END_STATE(); case 1979: - if (lookahead == 't') ADVANCE(206); + if (lookahead == 't') ADVANCE(411); END_STATE(); case 1980: - if (lookahead == 't') ADVANCE(2130); + if (lookahead == 't') ADVANCE(688); END_STATE(); case 1981: - if (lookahead == 't') ADVANCE(244); + if (lookahead == 't') ADVANCE(1579); END_STATE(); case 1982: - if (lookahead == 't') ADVANCE(328); + if (lookahead == 't') ADVANCE(1026); END_STATE(); case 1983: - if (lookahead == 't') ADVANCE(1169); + if (lookahead == 't') ADVANCE(514); END_STATE(); case 1984: - if (lookahead == 't') ADVANCE(2131); + if (lookahead == 't') ADVANCE(210); END_STATE(); case 1985: - if (lookahead == 't') ADVANCE(307); + if (lookahead == 't') ADVANCE(2135); END_STATE(); case 1986: - if (lookahead == 't') ADVANCE(1174); + if (lookahead == 't') ADVANCE(248); END_STATE(); case 1987: - if (lookahead == 't') ADVANCE(306); + if (lookahead == 't') ADVANCE(332); END_STATE(); case 1988: - if (lookahead == 't') ADVANCE(1889); + if (lookahead == 't') ADVANCE(1174); END_STATE(); case 1989: - if (lookahead == 't') ADVANCE(253); + if (lookahead == 't') ADVANCE(2136); END_STATE(); case 1990: - if (lookahead == 't') ADVANCE(258); + if (lookahead == 't') ADVANCE(311); END_STATE(); case 1991: - if (lookahead == 't') ADVANCE(1171); + if (lookahead == 't') ADVANCE(1179); END_STATE(); case 1992: - if (lookahead == 't') ADVANCE(1472); + if (lookahead == 't') ADVANCE(310); END_STATE(); case 1993: - if (lookahead == 't') ADVANCE(912); + if (lookahead == 't') ADVANCE(1894); END_STATE(); case 1994: - if (lookahead == 't') ADVANCE(1644); + if (lookahead == 't') ADVANCE(257); END_STATE(); case 1995: - if (lookahead == 't') ADVANCE(1895); + if (lookahead == 't') ADVANCE(262); END_STATE(); case 1996: - if (lookahead == 't') ADVANCE(1199); + if (lookahead == 't') ADVANCE(1176); END_STATE(); case 1997: - if (lookahead == 't') ADVANCE(1487); + if (lookahead == 't') ADVANCE(1477); END_STATE(); case 1998: - if (lookahead == 't') ADVANCE(944); + if (lookahead == 't') ADVANCE(917); END_STATE(); case 1999: - if (lookahead == 't') ADVANCE(1921); + if (lookahead == 't') ADVANCE(1649); END_STATE(); case 2000: - if (lookahead == 't') ADVANCE(985); + if (lookahead == 't') ADVANCE(1900); END_STATE(); case 2001: - if (lookahead == 't') ADVANCE(1583); + if (lookahead == 't') ADVANCE(1204); END_STATE(); case 2002: - if (lookahead == 't') ADVANCE(1771); + if (lookahead == 't') ADVANCE(1492); END_STATE(); case 2003: - if (lookahead == 't') ADVANCE(620); + if (lookahead == 't') ADVANCE(949); END_STATE(); case 2004: - if (lookahead == 't') ADVANCE(1280); + if (lookahead == 't') ADVANCE(1926); END_STATE(); case 2005: - if (lookahead == 't') ADVANCE(1257); + if (lookahead == 't') ADVANCE(990); END_STATE(); case 2006: - if (lookahead == 't') ADVANCE(1291); + if (lookahead == 't') ADVANCE(1588); END_STATE(); case 2007: - if (lookahead == 't') ADVANCE(1580); + if (lookahead == 't') ADVANCE(1776); END_STATE(); case 2008: - if (lookahead == 't') ADVANCE(1282); + if (lookahead == 't') ADVANCE(625); END_STATE(); case 2009: - if (lookahead == 't') ADVANCE(1305); + if (lookahead == 't') ADVANCE(1285); END_STATE(); case 2010: - if (lookahead == 't') ADVANCE(1299); + if (lookahead == 't') ADVANCE(1262); END_STATE(); case 2011: - if (lookahead == 't') ADVANCE(1259); + if (lookahead == 't') ADVANCE(1296); END_STATE(); case 2012: - if (lookahead == 't') ADVANCE(1739); + if (lookahead == 't') ADVANCE(1585); END_STATE(); case 2013: - if (lookahead == 't') ADVANCE(1071); + if (lookahead == 't') ADVANCE(1287); END_STATE(); case 2014: - if (lookahead == 't') ADVANCE(692); + if (lookahead == 't') ADVANCE(1310); END_STATE(); case 2015: - if (lookahead == 't') ADVANCE(1539); + if (lookahead == 't') ADVANCE(1304); END_STATE(); case 2016: - if (lookahead == 't') ADVANCE(1244); + if (lookahead == 't') ADVANCE(1264); END_STATE(); case 2017: - if (lookahead == 't') ADVANCE(1637); + if (lookahead == 't') ADVANCE(1744); END_STATE(); case 2018: - if (lookahead == 't') ADVANCE(1540); + if (lookahead == 't') ADVANCE(1076); END_STATE(); case 2019: - if (lookahead == 't') ADVANCE(1824); + if (lookahead == 't') ADVANCE(697); END_STATE(); case 2020: - if (lookahead == 't') ADVANCE(1020); + if (lookahead == 't') ADVANCE(1544); END_STATE(); case 2021: - if (lookahead == 't') ADVANCE(628); + if (lookahead == 't') ADVANCE(1249); END_STATE(); case 2022: - if (lookahead == 't') ADVANCE(1221); + if (lookahead == 't') ADVANCE(1642); END_STATE(); case 2023: - if (lookahead == 't') ADVANCE(1022); + if (lookahead == 't') ADVANCE(1545); END_STATE(); case 2024: - if (lookahead == 't') ADVANCE(1024); + if (lookahead == 't') ADVANCE(1829); END_STATE(); case 2025: - if (lookahead == 't') ADVANCE(1026); + if (lookahead == 't') ADVANCE(1025); END_STATE(); case 2026: - if (lookahead == 't') ADVANCE(1029); + if (lookahead == 't') ADVANCE(633); END_STATE(); case 2027: - if (lookahead == 't') ADVANCE(1047); + if (lookahead == 't') ADVANCE(1226); END_STATE(); case 2028: - if (lookahead == 't') ADVANCE(1031); + if (lookahead == 't') ADVANCE(1027); END_STATE(); case 2029: - if (lookahead == 't') ADVANCE(1200); + if (lookahead == 't') ADVANCE(1029); END_STATE(); case 2030: - if (lookahead == 't') ADVANCE(671); + if (lookahead == 't') ADVANCE(1031); END_STATE(); case 2031: - if (lookahead == 't') ADVANCE(1290); + if (lookahead == 't') ADVANCE(1034); END_STATE(); case 2032: - if (lookahead == 't') ADVANCE(1296); + if (lookahead == 't') ADVANCE(1052); END_STATE(); case 2033: - if (lookahead == 't') ADVANCE(1306); + if (lookahead == 't') ADVANCE(1036); END_STATE(); case 2034: - if (lookahead == 't') ADVANCE(691); + if (lookahead == 't') ADVANCE(1205); END_STATE(); case 2035: - if (lookahead == 't') ADVANCE(680); + if (lookahead == 't') ADVANCE(676); END_STATE(); case 2036: - if (lookahead == 'u') ADVANCE(146); + if (lookahead == 't') ADVANCE(1295); END_STATE(); case 2037: - if (lookahead == 'u') ADVANCE(608); + if (lookahead == 't') ADVANCE(1301); END_STATE(); case 2038: - if (lookahead == 'u') ADVANCE(2149); + if (lookahead == 't') ADVANCE(1311); END_STATE(); case 2039: - if (lookahead == 'u') ADVANCE(1574); + if (lookahead == 't') ADVANCE(696); END_STATE(); case 2040: - if (lookahead == 'u') ADVANCE(305); + if (lookahead == 't') ADVANCE(685); END_STATE(); case 2041: - if (lookahead == 'u') ADVANCE(710); + if (lookahead == 'u') ADVANCE(150); END_STATE(); case 2042: - if (lookahead == 'u') ADVANCE(723); + if (lookahead == 'u') ADVANCE(613); END_STATE(); case 2043: - if (lookahead == 'u') ADVANCE(721); + if (lookahead == 'u') ADVANCE(2154); END_STATE(); case 2044: - if (lookahead == 'u') ADVANCE(1663); + if (lookahead == 'u') ADVANCE(1579); END_STATE(); case 2045: - if (lookahead == 'u') ADVANCE(704); + if (lookahead == 'u') ADVANCE(309); END_STATE(); case 2046: - if (lookahead == 'u') ADVANCE(1893); + if (lookahead == 'u') ADVANCE(715); END_STATE(); case 2047: if (lookahead == 'u') ADVANCE(728); END_STATE(); case 2048: - if (lookahead == 'u') ADVANCE(1981); + if (lookahead == 'u') ADVANCE(726); END_STATE(); case 2049: - if (lookahead == 'u') ADVANCE(1981); - if (lookahead == 'y') ADVANCE(146); + if (lookahead == 'u') ADVANCE(1668); END_STATE(); case 2050: - if (lookahead == 'u') ADVANCE(1449); + if (lookahead == 'u') ADVANCE(709); END_STATE(); case 2051: - if (lookahead == 'u') ADVANCE(1889); + if (lookahead == 'u') ADVANCE(1898); END_STATE(); case 2052: - if (lookahead == 'u') ADVANCE(995); + if (lookahead == 'u') ADVANCE(733); END_STATE(); case 2053: - if (lookahead == 'u') ADVANCE(1905); + if (lookahead == 'u') ADVANCE(1986); END_STATE(); case 2054: - if (lookahead == 'u') ADVANCE(912); + if (lookahead == 'u') ADVANCE(1986); + if (lookahead == 'y') ADVANCE(150); END_STATE(); case 2055: - if (lookahead == 'u') ADVANCE(1452); + if (lookahead == 'u') ADVANCE(1454); END_STATE(); case 2056: - if (lookahead == 'u') ADVANCE(793); + if (lookahead == 'u') ADVANCE(1894); END_STATE(); case 2057: - if (lookahead == 'u') ADVANCE(946); + if (lookahead == 'u') ADVANCE(1000); END_STATE(); case 2058: - if (lookahead == 'u') ADVANCE(586); + if (lookahead == 'u') ADVANCE(1910); END_STATE(); case 2059: - if (lookahead == 'u') ADVANCE(1896); + if (lookahead == 'u') ADVANCE(917); END_STATE(); case 2060: - if (lookahead == 'u') ADVANCE(1575); + if (lookahead == 'u') ADVANCE(1457); END_STATE(); case 2061: - if (lookahead == 'u') ADVANCE(1360); + if (lookahead == 'u') ADVANCE(798); END_STATE(); case 2062: - if (lookahead == 'u') ADVANCE(1920); + if (lookahead == 'u') ADVANCE(951); END_STATE(); case 2063: - if (lookahead == 'u') ADVANCE(827); + if (lookahead == 'u') ADVANCE(591); END_STATE(); case 2064: - if (lookahead == 'u') ADVANCE(1907); + if (lookahead == 'u') ADVANCE(1901); END_STATE(); case 2065: - if (lookahead == 'u') ADVANCE(1228); + if (lookahead == 'u') ADVANCE(1580); END_STATE(); case 2066: - if (lookahead == 'u') ADVANCE(980); + if (lookahead == 'u') ADVANCE(1365); END_STATE(); case 2067: - if (lookahead == 'u') ADVANCE(607); + if (lookahead == 'u') ADVANCE(1925); END_STATE(); case 2068: - if (lookahead == 'u') ADVANCE(1293); + if (lookahead == 'u') ADVANCE(832); END_STATE(); case 2069: - if (lookahead == 'u') ADVANCE(1227); + if (lookahead == 'u') ADVANCE(1912); END_STATE(); case 2070: - if (lookahead == 'u') ADVANCE(1767); + if (lookahead == 'u') ADVANCE(1233); END_STATE(); case 2071: - if (lookahead == 'u') ADVANCE(1739); + if (lookahead == 'u') ADVANCE(985); END_STATE(); case 2072: - if (lookahead == 'u') ADVANCE(1768); + if (lookahead == 'u') ADVANCE(612); END_STATE(); case 2073: - if (lookahead == 'u') ADVANCE(1832); + if (lookahead == 'u') ADVANCE(1298); END_STATE(); case 2074: - if (lookahead == 'u') ADVANCE(1834); + if (lookahead == 'u') ADVANCE(1232); END_STATE(); case 2075: - if (lookahead == 'u') ADVANCE(1179); + if (lookahead == 'u') ADVANCE(1772); END_STATE(); case 2076: - if (lookahead == 'u') ADVANCE(1462); + if (lookahead == 'u') ADVANCE(1744); END_STATE(); case 2077: - if (lookahead == 'u') ADVANCE(1533); + if (lookahead == 'u') ADVANCE(1773); END_STATE(); case 2078: - if (lookahead == 'u') ADVANCE(1927); + if (lookahead == 'u') ADVANCE(1837); END_STATE(); case 2079: - if (lookahead == 'u') ADVANCE(1262); + if (lookahead == 'u') ADVANCE(1839); END_STATE(); case 2080: - if (lookahead == 'u') ADVANCE(1386); + if (lookahead == 'u') ADVANCE(1184); END_STATE(); case 2081: - if (lookahead == 'u') ADVANCE(1993); + if (lookahead == 'u') ADVANCE(1467); END_STATE(); case 2082: - if (lookahead == 'u') ADVANCE(627); + if (lookahead == 'u') ADVANCE(1538); END_STATE(); case 2083: - if (lookahead == 'u') ADVANCE(1402); + if (lookahead == 'u') ADVANCE(1932); END_STATE(); case 2084: - if (lookahead == 'u') ADVANCE(1648); + if (lookahead == 'u') ADVANCE(1267); END_STATE(); case 2085: - if (lookahead == 'u') ADVANCE(1460); + if (lookahead == 'u') ADVANCE(1391); END_STATE(); case 2086: - if (lookahead == 'u') ADVANCE(633); + if (lookahead == 'u') ADVANCE(1998); END_STATE(); case 2087: - if (lookahead == 'u') ADVANCE(1848); + if (lookahead == 'u') ADVANCE(632); END_STATE(); case 2088: - if (lookahead == 'u') ADVANCE(1441); + if (lookahead == 'u') ADVANCE(1407); END_STATE(); case 2089: - if (lookahead == 'u') ADVANCE(676); + if (lookahead == 'u') ADVANCE(1653); END_STATE(); case 2090: - if (lookahead == 'u') ADVANCE(734); + if (lookahead == 'u') ADVANCE(1465); END_STATE(); case 2091: - if (lookahead == 'u') ADVANCE(678); + if (lookahead == 'u') ADVANCE(638); END_STATE(); case 2092: - if (lookahead == 'u') ADVANCE(733); - if (lookahead == 'w') ADVANCE(1500); + if (lookahead == 'u') ADVANCE(1853); END_STATE(); case 2093: - if (lookahead == 'u') ADVANCE(736); + if (lookahead == 'u') ADVANCE(1446); END_STATE(); case 2094: - if (lookahead == 'v') ADVANCE(146); + if (lookahead == 'u') ADVANCE(681); END_STATE(); case 2095: - if (lookahead == 'v') ADVANCE(146); - if (lookahead == 'w') ADVANCE(911); + if (lookahead == 'u') ADVANCE(739); END_STATE(); case 2096: - if (lookahead == 'v') ADVANCE(160); + if (lookahead == 'u') ADVANCE(683); END_STATE(); case 2097: - if (lookahead == 'v') ADVANCE(244); + if (lookahead == 'u') ADVANCE(738); + if (lookahead == 'w') ADVANCE(1505); END_STATE(); case 2098: - if (lookahead == 'v') ADVANCE(989); - if (lookahead == 'w') ADVANCE(988); + if (lookahead == 'u') ADVANCE(741); END_STATE(); case 2099: - if (lookahead == 'v') ADVANCE(912); + if (lookahead == 'v') ADVANCE(150); END_STATE(); case 2100: - if (lookahead == 'v') ADVANCE(937); + if (lookahead == 'v') ADVANCE(150); + if (lookahead == 'w') ADVANCE(916); END_STATE(); case 2101: - if (lookahead == 'v') ADVANCE(1075); + if (lookahead == 'v') ADVANCE(164); END_STATE(); case 2102: - if (lookahead == 'w') ADVANCE(146); + if (lookahead == 'v') ADVANCE(248); END_STATE(); case 2103: - if (lookahead == 'w') ADVANCE(152); + if (lookahead == 'v') ADVANCE(994); + if (lookahead == 'w') ADVANCE(993); END_STATE(); case 2104: - if (lookahead == 'w') ADVANCE(156); + if (lookahead == 'v') ADVANCE(917); END_STATE(); case 2105: - if (lookahead == 'w') ADVANCE(155); + if (lookahead == 'v') ADVANCE(942); END_STATE(); case 2106: - if (lookahead == 'w') ADVANCE(154); + if (lookahead == 'v') ADVANCE(1080); END_STATE(); case 2107: - if (lookahead == 'w') ADVANCE(1574); + if (lookahead == 'w') ADVANCE(150); END_STATE(); case 2108: - if (lookahead == 'w') ADVANCE(532); + if (lookahead == 'w') ADVANCE(156); END_STATE(); case 2109: - if (lookahead == 'w') ADVANCE(328); + if (lookahead == 'w') ADVANCE(160); END_STATE(); case 2110: - if (lookahead == 'w') ADVANCE(952); + if (lookahead == 'w') ADVANCE(159); END_STATE(); case 2111: - if (lookahead == 'w') ADVANCE(1889); + if (lookahead == 'w') ADVANCE(158); END_STATE(); case 2112: - if (lookahead == 'w') ADVANCE(1040); - if (lookahead == 'a' || - lookahead == 'h') ADVANCE(146); + if (lookahead == 'w') ADVANCE(1579); END_STATE(); case 2113: - if (lookahead == 'w') ADVANCE(1490); + if (lookahead == 'w') ADVANCE(537); END_STATE(); case 2114: - if (lookahead == 'w') ADVANCE(1506); + if (lookahead == 'w') ADVANCE(332); END_STATE(); case 2115: - if (lookahead == 'w') ADVANCE(1504); + if (lookahead == 'w') ADVANCE(957); END_STATE(); case 2116: - if (lookahead == 'w') ADVANCE(1501); + if (lookahead == 'w') ADVANCE(1894); END_STATE(); case 2117: - if (lookahead == 'w') ADVANCE(1288); + if (lookahead == 'w') ADVANCE(1045); + if (lookahead == 'a' || + lookahead == 'h') ADVANCE(150); END_STATE(); case 2118: - if (lookahead == 'w') ADVANCE(347); + if (lookahead == 'w') ADVANCE(1495); END_STATE(); case 2119: - if (lookahead == 'w') ADVANCE(1414); + if (lookahead == 'w') ADVANCE(1511); END_STATE(); case 2120: - if (lookahead == 'w') ADVANCE(1572); + if (lookahead == 'w') ADVANCE(1509); END_STATE(); case 2121: - if (lookahead == 'w') ADVANCE(1571); + if (lookahead == 'w') ADVANCE(1506); END_STATE(); case 2122: - if (lookahead == 'x') ADVANCE(146); + if (lookahead == 'w') ADVANCE(1293); END_STATE(); case 2123: - if (lookahead == 'x') ADVANCE(1944); + if (lookahead == 'w') ADVANCE(351); END_STATE(); case 2124: - if (lookahead == 'x') ADVANCE(253); + if (lookahead == 'w') ADVANCE(1419); END_STATE(); case 2125: - if (lookahead == 'y') ADVANCE(146); + if (lookahead == 'w') ADVANCE(1577); END_STATE(); case 2126: - if (lookahead == 'y') ADVANCE(501); + if (lookahead == 'w') ADVANCE(1576); END_STATE(); case 2127: - if (lookahead == 'y') ADVANCE(971); + if (lookahead == 'x') ADVANCE(150); END_STATE(); case 2128: - if (lookahead == 'y') ADVANCE(448); + if (lookahead == 'x') ADVANCE(1949); END_STATE(); case 2129: - if (lookahead == 'y') ADVANCE(463); + if (lookahead == 'x') ADVANCE(257); END_STATE(); case 2130: - if (lookahead == 'y') ADVANCE(336); + if (lookahead == 'y') ADVANCE(150); END_STATE(); case 2131: - if (lookahead == 'y') ADVANCE(2094); + if (lookahead == 'y') ADVANCE(506); END_STATE(); case 2132: - if (lookahead == 'y') ADVANCE(500); + if (lookahead == 'y') ADVANCE(976); END_STATE(); case 2133: - if (lookahead == 'y') ADVANCE(506); + if (lookahead == 'y') ADVANCE(453); END_STATE(); case 2134: - if (lookahead == 'y') ADVANCE(476); + if (lookahead == 'y') ADVANCE(468); END_STATE(); case 2135: - if (lookahead == 'y') ADVANCE(1449); + if (lookahead == 'y') ADVANCE(340); END_STATE(); case 2136: - if (lookahead == 'y') ADVANCE(911); + if (lookahead == 'y') ADVANCE(2099); END_STATE(); case 2137: - if (lookahead == 'y') ADVANCE(1889); + if (lookahead == 'y') ADVANCE(505); END_STATE(); case 2138: - if (lookahead == 'y') ADVANCE(960); + if (lookahead == 'y') ADVANCE(511); END_STATE(); case 2139: - if (lookahead == 'z') ADVANCE(1651); + if (lookahead == 'y') ADVANCE(481); END_STATE(); case 2140: - if (lookahead == 'z') ADVANCE(563); + if (lookahead == 'y') ADVANCE(1454); END_STATE(); case 2141: - if (lookahead == 'z') ADVANCE(1267); + if (lookahead == 'y') ADVANCE(916); END_STATE(); case 2142: - if (lookahead == 'z') ADVANCE(998); + if (lookahead == 'y') ADVANCE(1894); END_STATE(); case 2143: - if (lookahead == '+' || - lookahead == '-') ADVANCE(2163); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4308); + if (lookahead == 'y') ADVANCE(965); END_STATE(); case 2144: - if (lookahead == '2' || - lookahead == '4') ADVANCE(146); + if (lookahead == 'z') ADVANCE(1656); END_STATE(); case 2145: - if (lookahead == '3' || - lookahead == '5') ADVANCE(146); + if (lookahead == 'z') ADVANCE(568); END_STATE(); case 2146: - if (lookahead == '6' || - lookahead == '8') ADVANCE(146); + if (lookahead == 'z') ADVANCE(1272); END_STATE(); case 2147: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(146); + if (lookahead == 'z') ADVANCE(1003); END_STATE(); case 2148: - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(2165); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(374); + if (lookahead == '+' || + lookahead == '-') ADVANCE(2168); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4321); END_STATE(); case 2149: - if (lookahead == 'b' || - lookahead == 'p') ADVANCE(146); + if (lookahead == '2' || + lookahead == '4') ADVANCE(150); END_STATE(); case 2150: - if (lookahead == 'b' || - lookahead == 'u') ADVANCE(146); + if (lookahead == '3' || + lookahead == '5') ADVANCE(150); END_STATE(); case 2151: - if (lookahead == 'd' || - lookahead == 'u') ADVANCE(146); + if (lookahead == '6' || + lookahead == '8') ADVANCE(150); END_STATE(); case 2152: - if (lookahead == 'e' || - lookahead == 'k') ADVANCE(146); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(150); END_STATE(); case 2153: - if (lookahead == 'e' || - lookahead == 't') ADVANCE(146); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(2170); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(378); END_STATE(); case 2154: - if (lookahead == 'f' || - lookahead == 'r') ADVANCE(146); + if (lookahead == 'b' || + lookahead == 'p') ADVANCE(150); END_STATE(); case 2155: - if (lookahead == 'l' || - lookahead == 'r') ADVANCE(146); + if (lookahead == 'b' || + lookahead == 'u') ADVANCE(150); END_STATE(); case 2156: - if (lookahead == 'o' || - lookahead == 'u') ADVANCE(146); + if (lookahead == 'd' || + lookahead == 'u') ADVANCE(150); END_STATE(); case 2157: - if (lookahead == 'r' || - lookahead == 'y') ADVANCE(146); + if (lookahead == 'e' || + lookahead == 'k') ADVANCE(150); END_STATE(); case 2158: - if (lookahead == '3' || - lookahead == '4') ADVANCE(146); + if (lookahead == 'e' || + lookahead == 't') ADVANCE(150); END_STATE(); case 2159: - if (lookahead == 'e' || - lookahead == 'f') ADVANCE(146); + if (lookahead == 'f' || + lookahead == 'r') ADVANCE(150); END_STATE(); case 2160: - if (('a' <= lookahead && lookahead <= 'c')) ADVANCE(146); + if (lookahead == 'l' || + lookahead == 'r') ADVANCE(150); END_STATE(); case 2161: - if (lookahead == 'L' || - lookahead == 'R' || - lookahead == 'l' || - lookahead == 'r') ADVANCE(146); + if (lookahead == 'o' || + lookahead == 'u') ADVANCE(150); END_STATE(); case 2162: - if (('a' <= lookahead && lookahead <= 'h')) ADVANCE(146); + if (lookahead == 'r' || + lookahead == 'y') ADVANCE(150); END_STATE(); case 2163: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4308); + if (lookahead == '3' || + lookahead == '4') ADVANCE(150); END_STATE(); case 2164: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4307); + if (lookahead == 'e' || + lookahead == 'f') ADVANCE(150); END_STATE(); case 2165: + if (('a' <= lookahead && lookahead <= 'c')) ADVANCE(150); + END_STATE(); + case 2166: + if (lookahead == 'L' || + lookahead == 'R' || + lookahead == 'l' || + lookahead == 'r') ADVANCE(150); + END_STATE(); + case 2167: + if (('a' <= lookahead && lookahead <= 'h')) ADVANCE(150); + END_STATE(); + case 2168: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4321); + END_STATE(); + case 2169: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4320); + END_STATE(); + case 2170: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(379); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(383); END_STATE(); - case 2166: + case 2171: if (('!' <= lookahead && lookahead <= '/') || (':' <= lookahead && lookahead <= '@') || ('[' <= lookahead && lookahead <= '`') || - ('{' <= lookahead && lookahead <= '~')) ADVANCE(2178); + ('{' <= lookahead && lookahead <= '~')) ADVANCE(2183); if (lookahead != 0 && - lookahead != '\n') ADVANCE(2247); + lookahead != '\n') ADVANCE(2252); END_STATE(); - case 2167: + case 2172: if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2228); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2233); END_STATE(); - case 2168: + case 2173: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(12); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(15); END_STATE(); - case 2169: + case 2174: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(134); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(138); END_STATE(); - case 2170: + case 2175: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2250); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2260); END_STATE(); - case 2171: + case 2176: if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2242); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2247); END_STATE(); - case 2172: + case 2177: if (lookahead == '-' || lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2241); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2246); END_STATE(); - case 2173: + case 2178: if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '}') ADVANCE(2249); + lookahead != '}') ADVANCE(2259); END_STATE(); - case 2174: + case 2179: if (lookahead != 0 && - lookahead != '\n') ADVANCE(9); + lookahead != '\n') ADVANCE(11); END_STATE(); - case 2175: + case 2180: if (lookahead != 0 && - lookahead != '\n') ADVANCE(11); + lookahead != '\n') ADVANCE(13); END_STATE(); - case 2176: - if (eof) ADVANCE(2177); + case 2181: + if (eof) ADVANCE(2182); ADVANCE_MAP( - '\t', 4314, - '\n', 2225, - '\r', 2226, - ' ', 4316, - '!', 2184, - '"', 2185, - '#', 2186, - '$', 2187, - '%', 2188, - '&', 2190, - '\'', 2191, - '(', 2223, - ')', 2224, - '*', 2192, - '+', 2193, - ',', 2194, - '-', 2196, - '.', 2198, - '/', 2199, - ':', 2200, - ';', 2201, - '<', 2182, - '=', 2202, - '>', 2183, - '?', 2203, - '[', 2206, - '\\', 2212, - ']', 2213, - '^', 2216, - '_', 2217, - '`', 2218, - '{', 2219, - '|', 2220, - '~', 2222, + '\t', 4327, + '\n', 2230, + '\r', 2231, + ' ', 4331, + '!', 2189, + '"', 2190, + '#', 2191, + '$', 2192, + '%', 2193, + '&', 2195, + '\'', 2196, + '(', 2228, + ')', 2229, + '*', 2197, + '+', 2198, + ',', 2199, + '-', 2201, + '.', 2203, + '/', 2204, + ':', 2205, + ';', 2206, + '<', 2187, + '=', 2207, + '>', 2188, + '?', 2208, + '[', 2211, + '\\', 2217, + ']', 2218, + '^', 2221, + '_', 2222, + '`', 2223, + '{', 2224, + '|', 2225, + '~', 2227, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4318); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4333); if (lookahead != 0 && (lookahead < ' ' || '@' < lookahead) && - (lookahead < '{' || '~' < lookahead)) ADVANCE(4317); + (lookahead < '{' || '~' < lookahead)) ADVANCE(4332); END_STATE(); - case 2177: + case 2182: ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); - case 2178: + case 2183: ACCEPT_TOKEN(sym__backslash_escape); END_STATE(); - case 2179: + case 2184: ACCEPT_TOKEN(sym_entity_reference); END_STATE(); - case 2180: + case 2185: ACCEPT_TOKEN(sym_numeric_character_reference); END_STATE(); - case 2181: + case 2186: ACCEPT_TOKEN(anon_sym_LT); END_STATE(); - case 2182: + case 2187: ACCEPT_TOKEN(anon_sym_LT); if (lookahead == '!' || ('#' <= lookahead && lookahead <= '\'') || @@ -12916,361 +13413,365 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '=' || lookahead == '?' || ('^' <= lookahead && lookahead <= '`') || - ('{' <= lookahead && lookahead <= '~')) ADVANCE(382); + ('{' <= lookahead && lookahead <= '~')) ADVANCE(387); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(381); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(386); END_STATE(); - case 2183: + case 2188: ACCEPT_TOKEN(anon_sym_GT); END_STATE(); - case 2184: + case 2189: ACCEPT_TOKEN(anon_sym_BANG); END_STATE(); - case 2185: + case 2190: ACCEPT_TOKEN(anon_sym_DQUOTE); END_STATE(); - case 2186: + case 2191: ACCEPT_TOKEN(anon_sym_POUND); END_STATE(); - case 2187: + case 2192: ACCEPT_TOKEN(anon_sym_DOLLAR); END_STATE(); - case 2188: + case 2193: ACCEPT_TOKEN(anon_sym_PERCENT); END_STATE(); - case 2189: + case 2194: ACCEPT_TOKEN(anon_sym_AMP); END_STATE(); - case 2190: + case 2195: ACCEPT_TOKEN(anon_sym_AMP); ADVANCE_MAP( - '#', 2148, - 'A', 449, - 'B', 517, - 'C', 472, - 'D', 433, - 'E', 488, - 'F', 743, - 'G', 178, - 'H', 383, - 'I', 455, - 'J', 845, - 'K', 471, - 'L', 177, - 'M', 559, - 'N', 479, - 'O', 457, - 'P', 555, - 'Q', 510, - 'R', 414, - 'S', 468, - 'T', 469, - 'U', 536, - 'V', 441, - 'W', 797, - 'X', 1085, - 'Y', 385, - 'Z', 473, - 'a', 515, - 'b', 487, - 'c', 522, - 'd', 390, - 'e', 435, - 'f', 564, - 'g', 167, - 'h', 392, - 'i', 516, - 'j', 844, - 'k', 649, - 'l', 147, - 'm', 436, - 'n', 465, - 'o', 499, - 'p', 587, - 'q', 1086, - 'r', 384, - 's', 644, - 't', 539, - 'u', 391, - 'v', 388, - 'w', 796, - 'x', 752, - 'y', 554, - 'z', 645, + '#', 2153, + 'A', 454, + 'B', 522, + 'C', 477, + 'D', 438, + 'E', 493, + 'F', 748, + 'G', 182, + 'H', 388, + 'I', 460, + 'J', 850, + 'K', 476, + 'L', 181, + 'M', 564, + 'N', 484, + 'O', 462, + 'P', 560, + 'Q', 515, + 'R', 419, + 'S', 473, + 'T', 474, + 'U', 541, + 'V', 446, + 'W', 802, + 'X', 1090, + 'Y', 390, + 'Z', 478, + 'a', 520, + 'b', 492, + 'c', 527, + 'd', 395, + 'e', 440, + 'f', 569, + 'g', 171, + 'h', 397, + 'i', 521, + 'j', 849, + 'k', 654, + 'l', 151, + 'm', 441, + 'n', 470, + 'o', 504, + 'p', 592, + 'q', 1091, + 'r', 389, + 's', 649, + 't', 544, + 'u', 396, + 'v', 393, + 'w', 801, + 'x', 757, + 'y', 559, + 'z', 650, ); END_STATE(); - case 2191: + case 2196: ACCEPT_TOKEN(anon_sym_SQUOTE); END_STATE(); - case 2192: + case 2197: ACCEPT_TOKEN(anon_sym_STAR); END_STATE(); - case 2193: + case 2198: ACCEPT_TOKEN(anon_sym_PLUS); END_STATE(); - case 2194: + case 2199: ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); - case 2195: + case 2200: ACCEPT_TOKEN(anon_sym_DASH); END_STATE(); - case 2196: + case 2201: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(4319); + if (lookahead == '-') ADVANCE(4334); END_STATE(); - case 2197: + case 2202: ACCEPT_TOKEN(anon_sym_DOT); END_STATE(); - case 2198: + case 2203: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(136); + if (lookahead == '.') ADVANCE(140); END_STATE(); - case 2199: + case 2204: ACCEPT_TOKEN(anon_sym_SLASH); END_STATE(); - case 2200: + case 2205: ACCEPT_TOKEN(anon_sym_COLON); END_STATE(); - case 2201: + case 2206: ACCEPT_TOKEN(anon_sym_SEMI); END_STATE(); - case 2202: + case 2207: ACCEPT_TOKEN(anon_sym_EQ); END_STATE(); - case 2203: + case 2208: ACCEPT_TOKEN(anon_sym_QMARK); END_STATE(); - case 2204: + case 2209: ACCEPT_TOKEN(anon_sym_AT); END_STATE(); - case 2205: + case 2210: ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); - case 2206: + case 2211: ACCEPT_TOKEN(anon_sym_LBRACK); - if (lookahead == '^') ADVANCE(4311); + if (lookahead == '!') ADVANCE(9); + if (lookahead == '+') ADVANCE(14); + if (lookahead == '-') ADVANCE(16); + if (lookahead == '>') ADVANCE(385); + if (lookahead == '^') ADVANCE(4324); END_STATE(); - case 2207: + case 2212: ACCEPT_TOKEN(anon_sym_LBRACK); if (lookahead != 0 && lookahead != '\n' && lookahead != '$' && - lookahead != '\\') ADVANCE(2246); + lookahead != '\\') ADVANCE(2251); END_STATE(); - case 2208: + case 2213: ACCEPT_TOKEN(anon_sym_BSLASH); END_STATE(); - case 2209: + case 2214: ACCEPT_TOKEN(anon_sym_BSLASH); - if (lookahead == '"') ADVANCE(2245); + if (lookahead == '"') ADVANCE(2250); END_STATE(); - case 2210: + case 2215: ACCEPT_TOKEN(anon_sym_BSLASH); - if (lookahead == '"') ADVANCE(2245); - if (lookahead == '\'') ADVANCE(2244); + if (lookahead == '"') ADVANCE(2250); + if (lookahead == '\'') ADVANCE(2249); if (('!' <= lookahead && lookahead <= '/') || (':' <= lookahead && lookahead <= '@') || ('[' <= lookahead && lookahead <= '`') || - ('{' <= lookahead && lookahead <= '~')) ADVANCE(2178); + ('{' <= lookahead && lookahead <= '~')) ADVANCE(2183); END_STATE(); - case 2211: + case 2216: ACCEPT_TOKEN(anon_sym_BSLASH); - if (lookahead == '\'') ADVANCE(2244); + if (lookahead == '\'') ADVANCE(2249); END_STATE(); - case 2212: + case 2217: ACCEPT_TOKEN(anon_sym_BSLASH); if (('!' <= lookahead && lookahead <= '/') || (':' <= lookahead && lookahead <= '@') || ('[' <= lookahead && lookahead <= '`') || - ('{' <= lookahead && lookahead <= '~')) ADVANCE(2178); + ('{' <= lookahead && lookahead <= '~')) ADVANCE(2183); END_STATE(); - case 2213: + case 2218: ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); - case 2214: + case 2219: ACCEPT_TOKEN(anon_sym_RBRACK); if (lookahead != 0 && lookahead != '\n' && lookahead != '$' && - lookahead != '\\') ADVANCE(2246); + lookahead != '\\') ADVANCE(2251); END_STATE(); - case 2215: + case 2220: ACCEPT_TOKEN(anon_sym_CARET); END_STATE(); - case 2216: + case 2221: ACCEPT_TOKEN(anon_sym_CARET); - if (lookahead == '[') ADVANCE(2248); + if (lookahead == '[') ADVANCE(2258); END_STATE(); - case 2217: + case 2222: ACCEPT_TOKEN(anon_sym__); END_STATE(); - case 2218: + case 2223: ACCEPT_TOKEN(anon_sym_BQUOTE); END_STATE(); - case 2219: + case 2224: ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); - case 2220: + case 2225: ACCEPT_TOKEN(anon_sym_PIPE); END_STATE(); - case 2221: + case 2226: ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); - case 2222: + case 2227: ACCEPT_TOKEN(anon_sym_TILDE); END_STATE(); - case 2223: + case 2228: ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); - case 2224: + case 2229: ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); - case 2225: + case 2230: ACCEPT_TOKEN(sym__newline_token); END_STATE(); - case 2226: + case 2231: ACCEPT_TOKEN(sym__newline_token); - if (lookahead == '\n') ADVANCE(2225); + if (lookahead == '\n') ADVANCE(2230); END_STATE(); - case 2227: + case 2232: ACCEPT_TOKEN(sym__newline_token); - if (lookahead == '\n') ADVANCE(2225); + if (lookahead == '\n') ADVANCE(2230); if (lookahead != 0 && lookahead != '$' && - lookahead != '\\') ADVANCE(2246); + lookahead != '\\') ADVANCE(2251); END_STATE(); - case 2228: + case 2233: ACCEPT_TOKEN(sym_raw_specifier); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2228); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2233); END_STATE(); - case 2229: + case 2234: ACCEPT_TOKEN(sym__commonmark_whitespace); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(2229); + lookahead == ' ') ADVANCE(2234); END_STATE(); - case 2230: + case 2235: ACCEPT_TOKEN(sym_commonmark_name); - if (lookahead == '.') ADVANCE(2239); - if (lookahead == '_') ADVANCE(2237); - if (lookahead == 'a') ADVANCE(2233); + if (lookahead == '.') ADVANCE(2244); + if (lookahead == '_') ADVANCE(2242); + if (lookahead == 'a') ADVANCE(2238); if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9')) ADVANCE(2238); + ('0' <= lookahead && lookahead <= '9')) ADVANCE(2243); if ((set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) && (lookahead < 'A' || 'Z' < lookahead) && - (lookahead < 'a' || 'z' < lookahead)) ADVANCE(4298); + (lookahead < 'a' || 'z' < lookahead)) ADVANCE(4311); if (('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(2237); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(2242); END_STATE(); - case 2231: + case 2236: ACCEPT_TOKEN(sym_commonmark_name); - if (lookahead == '.') ADVANCE(2239); - if (lookahead == '_') ADVANCE(2237); - if (lookahead == 'e') ADVANCE(4309); + if (lookahead == '.') ADVANCE(2244); + if (lookahead == '_') ADVANCE(2242); + if (lookahead == 'e') ADVANCE(4322); if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9')) ADVANCE(2238); + ('0' <= lookahead && lookahead <= '9')) ADVANCE(2243); if ((set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) && (lookahead < 'A' || 'Z' < lookahead) && - (lookahead < 'a' || 'z' < lookahead)) ADVANCE(4298); + (lookahead < 'a' || 'z' < lookahead)) ADVANCE(4311); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2237); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2242); END_STATE(); - case 2232: + case 2237: ACCEPT_TOKEN(sym_commonmark_name); - if (lookahead == '.') ADVANCE(2239); - if (lookahead == '_') ADVANCE(2237); - if (lookahead == 'e') ADVANCE(4310); + if (lookahead == '.') ADVANCE(2244); + if (lookahead == '_') ADVANCE(2242); + if (lookahead == 'e') ADVANCE(4323); if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9')) ADVANCE(2238); + ('0' <= lookahead && lookahead <= '9')) ADVANCE(2243); if ((set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) && (lookahead < 'A' || 'Z' < lookahead) && - (lookahead < 'a' || 'z' < lookahead)) ADVANCE(4298); + (lookahead < 'a' || 'z' < lookahead)) ADVANCE(4311); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2237); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2242); END_STATE(); - case 2233: + case 2238: ACCEPT_TOKEN(sym_commonmark_name); - if (lookahead == '.') ADVANCE(2239); - if (lookahead == '_') ADVANCE(2237); - if (lookahead == 'l') ADVANCE(2235); + if (lookahead == '.') ADVANCE(2244); + if (lookahead == '_') ADVANCE(2242); + if (lookahead == 'l') ADVANCE(2240); if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9')) ADVANCE(2238); + ('0' <= lookahead && lookahead <= '9')) ADVANCE(2243); if ((set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) && (lookahead < 'A' || 'Z' < lookahead) && - (lookahead < 'a' || 'z' < lookahead)) ADVANCE(4298); + (lookahead < 'a' || 'z' < lookahead)) ADVANCE(4311); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2237); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2242); END_STATE(); - case 2234: + case 2239: ACCEPT_TOKEN(sym_commonmark_name); - if (lookahead == '.') ADVANCE(2239); - if (lookahead == '_') ADVANCE(2237); - if (lookahead == 'r') ADVANCE(2236); + if (lookahead == '.') ADVANCE(2244); + if (lookahead == '_') ADVANCE(2242); + if (lookahead == 'r') ADVANCE(2241); if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9')) ADVANCE(2238); + ('0' <= lookahead && lookahead <= '9')) ADVANCE(2243); if ((set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) && (lookahead < 'A' || 'Z' < lookahead) && - (lookahead < 'a' || 'z' < lookahead)) ADVANCE(4298); + (lookahead < 'a' || 'z' < lookahead)) ADVANCE(4311); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2237); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2242); END_STATE(); - case 2235: + case 2240: ACCEPT_TOKEN(sym_commonmark_name); - if (lookahead == '.') ADVANCE(2239); - if (lookahead == '_') ADVANCE(2237); - if (lookahead == 's') ADVANCE(2232); + if (lookahead == '.') ADVANCE(2244); + if (lookahead == '_') ADVANCE(2242); + if (lookahead == 's') ADVANCE(2237); if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9')) ADVANCE(2238); + ('0' <= lookahead && lookahead <= '9')) ADVANCE(2243); if ((set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) && (lookahead < 'A' || 'Z' < lookahead) && - (lookahead < 'a' || 'z' < lookahead)) ADVANCE(4298); + (lookahead < 'a' || 'z' < lookahead)) ADVANCE(4311); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2237); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2242); END_STATE(); - case 2236: + case 2241: ACCEPT_TOKEN(sym_commonmark_name); - if (lookahead == '.') ADVANCE(2239); - if (lookahead == '_') ADVANCE(2237); - if (lookahead == 'u') ADVANCE(2231); + if (lookahead == '.') ADVANCE(2244); + if (lookahead == '_') ADVANCE(2242); + if (lookahead == 'u') ADVANCE(2236); if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9')) ADVANCE(2238); + ('0' <= lookahead && lookahead <= '9')) ADVANCE(2243); if ((set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) && (lookahead < 'A' || 'Z' < lookahead) && - (lookahead < 'a' || 'z' < lookahead)) ADVANCE(4298); + (lookahead < 'a' || 'z' < lookahead)) ADVANCE(4311); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2237); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2242); END_STATE(); - case 2237: + case 2242: ACCEPT_TOKEN(sym_commonmark_name); - if (lookahead == '.') ADVANCE(2239); - if (lookahead == '_') ADVANCE(2237); + if (lookahead == '.') ADVANCE(2244); + if (lookahead == '_') ADVANCE(2242); if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9')) ADVANCE(2238); + ('0' <= lookahead && lookahead <= '9')) ADVANCE(2243); if ((set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) && (lookahead < 'A' || 'Z' < lookahead) && - (lookahead < 'a' || 'z' < lookahead)) ADVANCE(4298); + (lookahead < 'a' || 'z' < lookahead)) ADVANCE(4311); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2237); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2242); END_STATE(); - case 2238: + case 2243: ACCEPT_TOKEN(sym_commonmark_name); - if (lookahead == '.') ADVANCE(2239); + if (lookahead == '.') ADVANCE(2244); if ((set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) && lookahead != '-' && lookahead != '.' && (lookahead < '0' || '9' < lookahead) && (lookahead < 'A' || 'Z' < lookahead) && lookahead != '_' && - (lookahead < 'a' || 'z' < lookahead)) ADVANCE(4298); + (lookahead < 'a' || 'z' < lookahead)) ADVANCE(4311); if (('-' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2238); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2243); END_STATE(); - case 2239: + case 2244: ACCEPT_TOKEN(sym_commonmark_name); if ((set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) && lookahead != '-' && @@ -13278,70 +13779,89 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '0' || '9' < lookahead) && (lookahead < 'A' || 'Z' < lookahead) && lookahead != '_' && - (lookahead < 'a' || 'z' < lookahead)) ADVANCE(4298); + (lookahead < 'a' || 'z' < lookahead)) ADVANCE(4311); if (('-' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2239); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2244); END_STATE(); - case 2240: + case 2245: ACCEPT_TOKEN(sym_commonmark_name); if (lookahead == '-' || lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2240); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2245); END_STATE(); - case 2241: + case 2246: ACCEPT_TOKEN(sym_id_specifier); if (lookahead == '-' || lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2241); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2246); END_STATE(); - case 2242: + case 2247: ACCEPT_TOKEN(sym_class_specifier); if (lookahead == '-' || lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2242); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2247); END_STATE(); - case 2243: + case 2248: ACCEPT_TOKEN(aux_sym_key_value_value_token1); - if ((!eof && set_contains(aux_sym_key_value_value_token1_character_set_1, 9, lookahead))) ADVANCE(2243); + if ((!eof && set_contains(aux_sym_key_value_value_token1_character_set_1, 9, lookahead))) ADVANCE(2248); END_STATE(); - case 2244: + case 2249: ACCEPT_TOKEN(anon_sym_BSLASH_SQUOTE); END_STATE(); - case 2245: + case 2250: ACCEPT_TOKEN(anon_sym_BSLASH_DQUOTE); END_STATE(); - case 2246: + case 2251: ACCEPT_TOKEN(aux_sym_latex_span_token1); if (lookahead != 0 && lookahead != '\n' && lookahead != '$' && - lookahead != '\\') ADVANCE(2246); + lookahead != '\\') ADVANCE(2251); END_STATE(); - case 2247: + case 2252: ACCEPT_TOKEN(aux_sym_latex_span_token2); END_STATE(); - case 2248: + case 2253: + ACCEPT_TOKEN(aux_sym_insert_token1); + if (lookahead == ' ') ADVANCE(2253); + END_STATE(); + case 2254: + ACCEPT_TOKEN(aux_sym_insert_token2); + END_STATE(); + case 2255: + ACCEPT_TOKEN(aux_sym_delete_token1); + if (lookahead == ' ') ADVANCE(2255); + END_STATE(); + case 2256: + ACCEPT_TOKEN(aux_sym_highlight_token1); + if (lookahead == ' ') ADVANCE(2256); + END_STATE(); + case 2257: + ACCEPT_TOKEN(aux_sym_edit_comment_token1); + if (lookahead == ' ') ADVANCE(2257); + END_STATE(); + case 2258: ACCEPT_TOKEN(anon_sym_CARET_LBRACK); END_STATE(); - case 2249: + case 2259: ACCEPT_TOKEN(aux_sym_citation_token1); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '}') ADVANCE(2249); + lookahead != '}') ADVANCE(2259); END_STATE(); - case 2250: + case 2260: ACCEPT_TOKEN(aux_sym_citation_token2); if (('#' <= lookahead && lookahead <= '+') || lookahead == '.' || @@ -13350,12483 +13870,12512 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '<' || lookahead == '>' || lookahead == '?' || - lookahead == '~') ADVANCE(2170); + lookahead == '~') ADVANCE(2175); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2250); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2260); END_STATE(); - case 2251: + case 2261: ACCEPT_TOKEN(sym_shortcode_name); - if (lookahead == '?') ADVANCE(2513); - if (lookahead == 'a') ADVANCE(2254); + if (lookahead == '?') ADVANCE(2526); + if (lookahead == 'a') ADVANCE(2264); if ((set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) && lookahead != '-' && (lookahead < '0' || '9' < lookahead) && (lookahead < 'A' || 'Z' < lookahead) && lookahead != '_' && - (lookahead < 'a' || 'z' < lookahead)) ADVANCE(2517); + (lookahead < 'a' || 'z' < lookahead)) ADVANCE(2530); if (('-' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(2258); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(2268); END_STATE(); - case 2252: + case 2262: ACCEPT_TOKEN(sym_shortcode_name); - if (lookahead == '?') ADVANCE(2513); - if (lookahead == 'e') ADVANCE(4309); + if (lookahead == '?') ADVANCE(2526); + if (lookahead == 'e') ADVANCE(4322); if ((set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) && lookahead != '-' && (lookahead < '0' || '9' < lookahead) && (lookahead < 'A' || 'Z' < lookahead) && lookahead != '_' && - (lookahead < 'a' || 'z' < lookahead)) ADVANCE(2517); + (lookahead < 'a' || 'z' < lookahead)) ADVANCE(2530); if (('-' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2258); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2268); END_STATE(); - case 2253: + case 2263: ACCEPT_TOKEN(sym_shortcode_name); - if (lookahead == '?') ADVANCE(2513); - if (lookahead == 'e') ADVANCE(4310); + if (lookahead == '?') ADVANCE(2526); + if (lookahead == 'e') ADVANCE(4323); if ((set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) && lookahead != '-' && (lookahead < '0' || '9' < lookahead) && (lookahead < 'A' || 'Z' < lookahead) && lookahead != '_' && - (lookahead < 'a' || 'z' < lookahead)) ADVANCE(2517); + (lookahead < 'a' || 'z' < lookahead)) ADVANCE(2530); if (('-' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2258); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2268); END_STATE(); - case 2254: + case 2264: ACCEPT_TOKEN(sym_shortcode_name); - if (lookahead == '?') ADVANCE(2513); - if (lookahead == 'l') ADVANCE(2256); + if (lookahead == '?') ADVANCE(2526); + if (lookahead == 'l') ADVANCE(2266); if ((set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) && lookahead != '-' && (lookahead < '0' || '9' < lookahead) && (lookahead < 'A' || 'Z' < lookahead) && lookahead != '_' && - (lookahead < 'a' || 'z' < lookahead)) ADVANCE(2517); + (lookahead < 'a' || 'z' < lookahead)) ADVANCE(2530); if (('-' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2258); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2268); END_STATE(); - case 2255: + case 2265: ACCEPT_TOKEN(sym_shortcode_name); - if (lookahead == '?') ADVANCE(2513); - if (lookahead == 'r') ADVANCE(2257); + if (lookahead == '?') ADVANCE(2526); + if (lookahead == 'r') ADVANCE(2267); if ((set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) && lookahead != '-' && (lookahead < '0' || '9' < lookahead) && (lookahead < 'A' || 'Z' < lookahead) && lookahead != '_' && - (lookahead < 'a' || 'z' < lookahead)) ADVANCE(2517); + (lookahead < 'a' || 'z' < lookahead)) ADVANCE(2530); if (('-' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2258); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2268); END_STATE(); - case 2256: + case 2266: ACCEPT_TOKEN(sym_shortcode_name); - if (lookahead == '?') ADVANCE(2513); - if (lookahead == 's') ADVANCE(2253); + if (lookahead == '?') ADVANCE(2526); + if (lookahead == 's') ADVANCE(2263); if ((set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) && lookahead != '-' && (lookahead < '0' || '9' < lookahead) && (lookahead < 'A' || 'Z' < lookahead) && lookahead != '_' && - (lookahead < 'a' || 'z' < lookahead)) ADVANCE(2517); + (lookahead < 'a' || 'z' < lookahead)) ADVANCE(2530); if (('-' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2258); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2268); END_STATE(); - case 2257: + case 2267: ACCEPT_TOKEN(sym_shortcode_name); - if (lookahead == '?') ADVANCE(2513); - if (lookahead == 'u') ADVANCE(2252); + if (lookahead == '?') ADVANCE(2526); + if (lookahead == 'u') ADVANCE(2262); if ((set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) && lookahead != '-' && (lookahead < '0' || '9' < lookahead) && (lookahead < 'A' || 'Z' < lookahead) && lookahead != '_' && - (lookahead < 'a' || 'z' < lookahead)) ADVANCE(2517); + (lookahead < 'a' || 'z' < lookahead)) ADVANCE(2530); if (('-' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2258); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2268); END_STATE(); - case 2258: + case 2268: ACCEPT_TOKEN(sym_shortcode_name); - if (lookahead == '?') ADVANCE(2513); + if (lookahead == '?') ADVANCE(2526); if ((set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) && lookahead != '-' && (lookahead < '0' || '9' < lookahead) && (lookahead < 'A' || 'Z' < lookahead) && lookahead != '_' && - (lookahead < 'a' || 'z' < lookahead)) ADVANCE(2517); + (lookahead < 'a' || 'z' < lookahead)) ADVANCE(2530); if (('-' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2258); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2268); END_STATE(); - case 2259: + case 2269: ACCEPT_TOKEN(sym_shortcode_name); - if (lookahead == 'a') ADVANCE(2262); + if (lookahead == 'a') ADVANCE(2272); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(2266); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(2276); END_STATE(); - case 2260: + case 2270: ACCEPT_TOKEN(sym_shortcode_name); - if (lookahead == 'e') ADVANCE(4309); + if (lookahead == 'e') ADVANCE(4322); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2266); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2276); END_STATE(); - case 2261: + case 2271: ACCEPT_TOKEN(sym_shortcode_name); - if (lookahead == 'e') ADVANCE(4310); + if (lookahead == 'e') ADVANCE(4323); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2266); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2276); END_STATE(); - case 2262: + case 2272: ACCEPT_TOKEN(sym_shortcode_name); - if (lookahead == 'l') ADVANCE(2264); + if (lookahead == 'l') ADVANCE(2274); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2266); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2276); END_STATE(); - case 2263: + case 2273: ACCEPT_TOKEN(sym_shortcode_name); - if (lookahead == 'r') ADVANCE(2265); + if (lookahead == 'r') ADVANCE(2275); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2266); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2276); END_STATE(); - case 2264: + case 2274: ACCEPT_TOKEN(sym_shortcode_name); - if (lookahead == 's') ADVANCE(2261); + if (lookahead == 's') ADVANCE(2271); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2266); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2276); END_STATE(); - case 2265: + case 2275: ACCEPT_TOKEN(sym_shortcode_name); - if (lookahead == 'u') ADVANCE(2260); + if (lookahead == 'u') ADVANCE(2270); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2266); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2276); END_STATE(); - case 2266: + case 2276: ACCEPT_TOKEN(sym_shortcode_name); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2266); - END_STATE(); - case 2267: - ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - ADVANCE_MAP( - '#', 4281, - 'A', 2584, - 'B', 2651, - 'C', 2606, - 'D', 2568, - 'E', 2623, - 'F', 2876, - 'G', 2311, - 'H', 2518, - 'I', 2590, - 'J', 2979, - 'K', 2605, - 'L', 2310, - 'M', 2692, - 'N', 2614, - 'O', 2592, - 'P', 2689, - 'Q', 2645, - 'R', 2549, - 'S', 2603, - 'T', 2604, - 'U', 2670, - 'V', 2576, - 'W', 2931, - 'X', 3219, - 'Y', 2520, - 'Z', 2607, - 'a', 2649, - 'b', 2622, - 'c', 2656, - 'd', 2525, - 'e', 2570, - 'f', 2698, - 'g', 2300, - 'h', 2527, - 'i', 2650, - 'j', 2978, - 'k', 2783, - 'l', 2280, - 'm', 2571, - 'n', 2600, - 'o', 2634, - 'p', 2721, - 'q', 3220, - 'r', 2519, - 's', 2778, - 't', 2673, - 'u', 2526, - 'v', 2523, - 'w', 2930, - 'x', 2886, - 'y', 2688, - 'z', 2779, - ); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); - END_STATE(); - case 2268: - ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == '-') ADVANCE(4298); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); - END_STATE(); - case 2269: - ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == '-') ADVANCE(2268); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); - END_STATE(); - case 2270: - ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == '.') ADVANCE(4298); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); - END_STATE(); - case 2271: - ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == '.') ADVANCE(2270); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); - END_STATE(); - case 2272: - ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == '0') ADVANCE(4302); - if (lookahead == '?') ADVANCE(2513); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4303); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(2517); - END_STATE(); - case 2273: - ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == '1') ADVANCE(4277); - if (lookahead == '3') ADVANCE(2277); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); - END_STATE(); - case 2274: - ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == '1') ADVANCE(4291); - if (lookahead == ';') ADVANCE(4298); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); - END_STATE(); - case 2275: - ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == '1') ADVANCE(2500); - if (lookahead == '2') ADVANCE(4278); - if (lookahead == '3') ADVANCE(2497); - if (lookahead == '4') ADVANCE(2278); - if (lookahead == '5') ADVANCE(4279); - if (lookahead == '7') ADVANCE(2279); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); - END_STATE(); - case 2276: - ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == '4') ADVANCE(2512); - if (lookahead == 'f') ADVANCE(3788); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2276); END_STATE(); case 2277: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == '4') ADVANCE(2512); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == '!') ADVANCE(4311); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2278: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == '5') ADVANCE(2512); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == '!') ADVANCE(2277); + if (lookahead == '+') ADVANCE(2280); + if (lookahead == '-') ADVANCE(2281); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2279: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == '8') ADVANCE(2512); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + ADVANCE_MAP( + '#', 4294, + 'A', 2597, + 'B', 2664, + 'C', 2619, + 'D', 2581, + 'E', 2636, + 'F', 2889, + 'G', 2324, + 'H', 2531, + 'I', 2603, + 'J', 2992, + 'K', 2618, + 'L', 2323, + 'M', 2705, + 'N', 2627, + 'O', 2605, + 'P', 2702, + 'Q', 2658, + 'R', 2562, + 'S', 2616, + 'T', 2617, + 'U', 2683, + 'V', 2589, + 'W', 2944, + 'X', 3232, + 'Y', 2533, + 'Z', 2620, + 'a', 2662, + 'b', 2635, + 'c', 2669, + 'd', 2538, + 'e', 2583, + 'f', 2711, + 'g', 2313, + 'h', 2540, + 'i', 2663, + 'j', 2991, + 'k', 2796, + 'l', 2293, + 'm', 2584, + 'n', 2613, + 'o', 2647, + 'p', 2734, + 'q', 3233, + 'r', 2532, + 's', 2791, + 't', 2686, + 'u', 2539, + 'v', 2536, + 'w', 2943, + 'x', 2899, + 'y', 2701, + 'z', 2792, + ); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2280: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - ADVANCE_MAP( - ';', 4298, - 'A', 2712, - 'B', 2713, - 'E', 2408, - 'H', 2669, - 'a', 2938, - 'b', 2703, - 'c', 2731, - 'd', 2923, - 'e', 2404, - 'f', 3381, - 'g', 2299, - 'h', 2749, - 'j', 2881, - 'l', 2330, - 'm', 3363, - 'n', 2586, - 'o', 2674, - 'p', 2753, - 'r', 2706, - 's', 2654, - 't', 2357, - 'u', 3898, - 'v', 3191, - ); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == '+') ADVANCE(4311); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2281: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'A') ADVANCE(3889); - if (lookahead == 'a') ADVANCE(3882); - if (lookahead == 'd') ADVANCE(3719); - if (lookahead == 'q') ADVANCE(4199); - if (lookahead == 's') ADVANCE(3097); - if (lookahead == 'x') ADVANCE(3423); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == '-') ADVANCE(4311); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2282: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'A') ADVANCE(4001); - if (lookahead == 'V') ADVANCE(3192); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == '-') ADVANCE(2281); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2283: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'A') ADVANCE(4001); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == '.') ADVANCE(4311); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2284: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'B') ADVANCE(2669); - if (lookahead == 'D') ADVANCE(3772); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == '.') ADVANCE(2283); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2285: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'B') ADVANCE(2669); - if (lookahead == 'E') ADVANCE(3860); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == '0') ADVANCE(4315); + if (lookahead == '?') ADVANCE(2526); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4316); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(2530); END_STATE(); case 2286: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'B') ADVANCE(2669); - if (lookahead == 'L') ADVANCE(3194); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == '1') ADVANCE(4290); + if (lookahead == '3') ADVANCE(2290); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2287: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'B') ADVANCE(2669); - if (lookahead == 'R') ADVANCE(3445); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == '1') ADVANCE(4304); + if (lookahead == ';') ADVANCE(4311); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2288: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'B') ADVANCE(2669); - if (lookahead == 'U') ADVANCE(3816); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == '1') ADVANCE(2513); + if (lookahead == '2') ADVANCE(4291); + if (lookahead == '3') ADVANCE(2510); + if (lookahead == '4') ADVANCE(2291); + if (lookahead == '5') ADVANCE(4292); + if (lookahead == '7') ADVANCE(2292); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2289: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'B') ADVANCE(2669); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == '4') ADVANCE(2525); + if (lookahead == 'f') ADVANCE(3801); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2290: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - ADVANCE_MAP( - ';', 4298, - 'C', 3783, - 'D', 3757, - 'E', 3491, - 'G', 4017, - 'H', 4210, - 'L', 3166, - 'N', 3133, - 'P', 3978, - 'R', 3167, - 'S', 3861, - 'T', 3370, - 'V', 3206, - ); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == '4') ADVANCE(2525); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2291: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'C') ADVANCE(2696); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == '5') ADVANCE(2525); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2292: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'D') ADVANCE(3719); - if (lookahead == 'E') ADVANCE(3860); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == '8') ADVANCE(2525); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2293: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'D') ADVANCE(2569); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + ADVANCE_MAP( + ';', 4311, + 'A', 2725, + 'B', 2726, + 'E', 2421, + 'H', 2682, + 'a', 2951, + 'b', 2716, + 'c', 2744, + 'd', 2936, + 'e', 2417, + 'f', 3394, + 'g', 2312, + 'h', 2762, + 'j', 2894, + 'l', 2343, + 'm', 3376, + 'n', 2599, + 'o', 2687, + 'p', 2766, + 'r', 2719, + 's', 2667, + 't', 2370, + 'u', 3911, + 'v', 3204, + ); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2294: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - ADVANCE_MAP( - ';', 4298, - 'E', 2512, - 'a', 3798, - 'c', 4188, - 'e', 2356, - 'i', 3619, - 'n', 2585, - 'o', 3001, - 's', 3377, - 'u', 3929, - ); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'A') ADVANCE(3902); + if (lookahead == 'a') ADVANCE(3895); + if (lookahead == 'd') ADVANCE(3732); + if (lookahead == 'q') ADVANCE(4212); + if (lookahead == 's') ADVANCE(3110); + if (lookahead == 'x') ADVANCE(3436); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2295: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - ADVANCE_MAP( - ';', 4298, - 'E', 2512, - 'd', 3719, - 'e', 2369, - 'm', 4195, - 'n', 4280, - 'p', 3568, - 'r', 2713, - 's', 3146, - ); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'A') ADVANCE(4014); + if (lookahead == 'V') ADVANCE(3205); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2296: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'E') ADVANCE(2512); - if (lookahead == 'd') ADVANCE(3719); - if (lookahead == 'v') ADVANCE(4293); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'A') ADVANCE(4014); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2297: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'E') ADVANCE(2512); - if (lookahead == 'e') ADVANCE(2453); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'B') ADVANCE(2682); + if (lookahead == 'D') ADVANCE(3785); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2298: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'E') ADVANCE(2512); - if (lookahead == 'i') ADVANCE(3004); - if (lookahead == 'o') ADVANCE(4023); - if (lookahead == 'p') ADVANCE(3949); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'B') ADVANCE(2682); + if (lookahead == 'E') ADVANCE(3873); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2299: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'E') ADVANCE(2512); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'B') ADVANCE(2682); + if (lookahead == 'L') ADVANCE(3207); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2300: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - ADVANCE_MAP( - ';', 4298, - 'E', 2425, - 'a', 2940, - 'b', 3869, - 'c', 3410, - 'd', 3719, - 'e', 2424, - 'f', 3870, - 'g', 2408, - 'i', 3604, - 'j', 2881, - 'l', 2496, - 'n', 2586, - 'o', 3806, - 'r', 2657, - 's', 2908, - 't', 2358, - 'v', 3191, - ); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'B') ADVANCE(2682); + if (lookahead == 'R') ADVANCE(3458); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2301: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'E') ADVANCE(3860); - if (lookahead == 'F') ADVANCE(4217); - if (lookahead == 'G') ADVANCE(4010); - if (lookahead == 'L') ADVANCE(3092); - if (lookahead == 'S') ADVANCE(3578); - if (lookahead == 'T') ADVANCE(3438); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'B') ADVANCE(2682); + if (lookahead == 'U') ADVANCE(3829); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2302: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'E') ADVANCE(3860); - if (lookahead == 'F') ADVANCE(4217); - if (lookahead == 'T') ADVANCE(3438); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'B') ADVANCE(2682); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2303: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'E') ADVANCE(3860); - if (lookahead == 'G') ADVANCE(4010); - if (lookahead == 'L') ADVANCE(3092); - if (lookahead == 'S') ADVANCE(3578); - if (lookahead == 'T') ADVANCE(3438); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + ADVANCE_MAP( + ';', 4311, + 'C', 3796, + 'D', 3770, + 'E', 3504, + 'G', 4030, + 'H', 4223, + 'L', 3179, + 'N', 3146, + 'P', 3991, + 'R', 3180, + 'S', 3874, + 'T', 3383, + 'V', 3219, + ); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2304: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'E') ADVANCE(3860); - if (lookahead == 'S') ADVANCE(3578); - if (lookahead == 'T') ADVANCE(3438); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'C') ADVANCE(2709); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2305: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'E') ADVANCE(3860); - if (lookahead == 'S') ADVANCE(3578); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'D') ADVANCE(3732); + if (lookahead == 'E') ADVANCE(3873); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2306: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'E') ADVANCE(3860); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'D') ADVANCE(2582); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2307: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'G') ADVANCE(2512); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + ADVANCE_MAP( + ';', 4311, + 'E', 2525, + 'a', 3811, + 'c', 4201, + 'e', 2369, + 'i', 3632, + 'n', 2598, + 'o', 3014, + 's', 3390, + 'u', 3942, + ); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2308: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'H') ADVANCE(2512); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + ADVANCE_MAP( + ';', 4311, + 'E', 2525, + 'd', 3732, + 'e', 2382, + 'm', 4208, + 'n', 4293, + 'p', 3581, + 'r', 2726, + 's', 3159, + ); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2309: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'I') ADVANCE(3700); - if (lookahead == 'S') ADVANCE(4181); - if (lookahead == 'U') ADVANCE(3681); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'E') ADVANCE(2525); + if (lookahead == 'd') ADVANCE(3732); + if (lookahead == 'v') ADVANCE(4306); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2310: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - ADVANCE_MAP( - ';', 4298, - 'J', 2881, - 'a', 2939, - 'c', 2733, - 'e', 3223, - 'f', 3870, - 'l', 2384, - 'm', 3364, - 'o', 3648, - 's', 2904, - 'T', 2512, - 't', 2512, - ); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'E') ADVANCE(2525); + if (lookahead == 'e') ADVANCE(2466); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2311: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - ADVANCE_MAP( - ';', 4298, - 'J', 2881, - 'a', 3620, - 'b', 3869, - 'c', 3102, - 'd', 3719, - 'f', 3870, - 'o', 3806, - 'r', 3118, - 's', 2921, - 'T', 2512, - 'g', 2512, - 't', 2512, - ); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'E') ADVANCE(2525); + if (lookahead == 'i') ADVANCE(3017); + if (lookahead == 'o') ADVANCE(4036); + if (lookahead == 'p') ADVANCE(3962); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2312: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'L') ADVANCE(3092); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'E') ADVANCE(2525); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2313: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'N') ADVANCE(2512); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + ADVANCE_MAP( + ';', 4311, + 'E', 2438, + 'a', 2953, + 'b', 3882, + 'c', 3423, + 'd', 3732, + 'e', 2437, + 'f', 3883, + 'g', 2421, + 'i', 3617, + 'j', 2894, + 'l', 2509, + 'n', 2599, + 'o', 3819, + 'r', 2670, + 's', 2921, + 't', 2371, + 'v', 3204, + ); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2314: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'P') ADVANCE(2512); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'E') ADVANCE(3873); + if (lookahead == 'F') ADVANCE(4230); + if (lookahead == 'G') ADVANCE(4023); + if (lookahead == 'L') ADVANCE(3105); + if (lookahead == 'S') ADVANCE(3591); + if (lookahead == 'T') ADVANCE(3451); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2315: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'P') ADVANCE(3568); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'E') ADVANCE(3873); + if (lookahead == 'F') ADVANCE(4230); + if (lookahead == 'T') ADVANCE(3451); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2316: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'T') ADVANCE(2512); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'E') ADVANCE(3873); + if (lookahead == 'G') ADVANCE(4023); + if (lookahead == 'L') ADVANCE(3105); + if (lookahead == 'S') ADVANCE(3591); + if (lookahead == 'T') ADVANCE(3451); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2317: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'T') ADVANCE(3438); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'E') ADVANCE(3873); + if (lookahead == 'S') ADVANCE(3591); + if (lookahead == 'T') ADVANCE(3451); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2318: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'Y') ADVANCE(2512); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'E') ADVANCE(3873); + if (lookahead == 'S') ADVANCE(3591); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2319: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'a') ADVANCE(2903); - if (lookahead == 'p') ADVANCE(3534); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'E') ADVANCE(3873); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2320: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'a') ADVANCE(3256); - if (lookahead == 'o') ADVANCE(4133); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'G') ADVANCE(2525); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2321: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'a') ADVANCE(4295); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'H') ADVANCE(2525); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2322: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'a') ADVANCE(2921); - if (lookahead == 'l') ADVANCE(2512); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'I') ADVANCE(3713); + if (lookahead == 'S') ADVANCE(4194); + if (lookahead == 'U') ADVANCE(3694); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2323: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'a') ADVANCE(3870); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + ADVANCE_MAP( + ';', 4311, + 'J', 2894, + 'a', 2952, + 'c', 2746, + 'e', 3236, + 'f', 3883, + 'l', 2397, + 'm', 3377, + 'o', 3661, + 's', 2917, + 'T', 2525, + 't', 2525, + ); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2324: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'a') ADVANCE(2911); - if (lookahead == 'p') ADVANCE(2512); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + ADVANCE_MAP( + ';', 4311, + 'J', 2894, + 'a', 3633, + 'b', 3882, + 'c', 3115, + 'd', 3732, + 'f', 3883, + 'o', 3819, + 'r', 3131, + 's', 2934, + 'T', 2525, + 'g', 2525, + 't', 2525, + ); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2325: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - ADVANCE_MAP( - ';', 4298, - 'a', 3797, - 'c', 4188, - 'e', 2376, - 'i', 3937, - 'n', 2585, - 'p', 3793, - 's', 3377, - 'E', 2512, - 'y', 2512, - ); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'L') ADVANCE(3105); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2326: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'a') ADVANCE(2432); - if (lookahead == 's') ADVANCE(3375); - if (lookahead == 't') ADVANCE(2512); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'N') ADVANCE(2525); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2327: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - ADVANCE_MAP( - ';', 4298, - 'a', 3798, - 'b', 2403, - 'f', 4023, - 'h', 3459, - 'l', 3798, - 'p', 3478, - 's', 3377, - 't', 3478, - 'c', 2512, - 'w', 2512, - ); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'P') ADVANCE(2525); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2328: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - ADVANCE_MAP( - ';', 4298, - 'a', 2971, - 'c', 3354, - 'd', 4289, - 'm', 2436, - 's', 3377, - 't', 4241, - 'b', 2512, - 'e', 2512, - ); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'P') ADVANCE(3581); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2329: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'a') ADVANCE(2971); - if (lookahead == 'i') ADVANCE(3004); - if (lookahead == 'o') ADVANCE(4023); - if (lookahead == 'p') ADVANCE(3943); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2512); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'T') ADVANCE(2525); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2330: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'a') ADVANCE(3889); - if (lookahead == 'c') ADVANCE(3769); - if (lookahead == 'h') ADVANCE(2768); - if (lookahead == 't') ADVANCE(3905); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'T') ADVANCE(3451); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2331: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'a') ADVANCE(3889); - if (lookahead == 'd') ADVANCE(2399); - if (lookahead == 'i') ADVANCE(3257); - if (lookahead == 'o') ADVANCE(3870); - if (lookahead == 's') ADVANCE(3533); - if (lookahead == 'v') ADVANCE(2512); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'Y') ADVANCE(2525); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2332: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'a') ADVANCE(4023); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'a') ADVANCE(2916); + if (lookahead == 'p') ADVANCE(3547); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2333: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'a') ADVANCE(4034); - if (lookahead == 'c') ADVANCE(3354); - if (lookahead == 'd') ADVANCE(3725); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'a') ADVANCE(3269); + if (lookahead == 'o') ADVANCE(4146); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2334: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'a') ADVANCE(3478); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'a') ADVANCE(4308); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2335: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'a') ADVANCE(3923); - if (lookahead == 'e') ADVANCE(3042); - if (lookahead == 'i') ADVANCE(3937); - if (lookahead == 'y') ADVANCE(2512); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'a') ADVANCE(2934); + if (lookahead == 'l') ADVANCE(2525); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2336: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'a') ADVANCE(3483); - if (lookahead == 'c') ADVANCE(4080); - if (lookahead == 'g') ADVANCE(2512); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'a') ADVANCE(3883); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2337: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'a') ADVANCE(3623); - if (lookahead == 'b') ADVANCE(3992); - if (lookahead == 'c') ADVANCE(2695); - if (lookahead == 'd') ADVANCE(3719); - if (lookahead == 's') ADVANCE(2512); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'a') ADVANCE(2924); + if (lookahead == 'p') ADVANCE(2525); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2338: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'a') ADVANCE(3623); - if (lookahead == 's') ADVANCE(3533); - if (lookahead == 'd' || - lookahead == 'v') ADVANCE(2512); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + ADVANCE_MAP( + ';', 4311, + 'a', 3810, + 'c', 4201, + 'e', 2389, + 'i', 3950, + 'n', 2598, + 'p', 3806, + 's', 3390, + 'E', 2525, + 'y', 2525, + ); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2339: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'a') ADVANCE(2963); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'a') ADVANCE(2445); + if (lookahead == 's') ADVANCE(3388); + if (lookahead == 't') ADVANCE(2525); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2340: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'a') ADVANCE(3918); - if (lookahead == 'c') ADVANCE(3310); - if (lookahead == 'o') ADVANCE(3957); - if (lookahead == 'y') ADVANCE(2512); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + ADVANCE_MAP( + ';', 4311, + 'a', 3811, + 'b', 2416, + 'f', 4036, + 'h', 3472, + 'l', 3811, + 'p', 3491, + 's', 3390, + 't', 3491, + 'c', 2525, + 'w', 2525, + ); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2341: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'a') ADVANCE(3503); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + ADVANCE_MAP( + ';', 4311, + 'a', 2984, + 'c', 3367, + 'd', 4302, + 'm', 2449, + 's', 3390, + 't', 4254, + 'b', 2525, + 'e', 2525, + ); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2342: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'a') ADVANCE(3886); - if (lookahead == 'f') ADVANCE(2512); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'a') ADVANCE(2984); + if (lookahead == 'i') ADVANCE(3017); + if (lookahead == 'o') ADVANCE(4036); + if (lookahead == 'p') ADVANCE(3956); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(2525); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2343: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'a') ADVANCE(3833); - if (lookahead == 'c') ADVANCE(4208); - if (lookahead == 'e') ADVANCE(3852); - if (lookahead == 'n') ADVANCE(2790); - if (lookahead == 's') ADVANCE(3377); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'a') ADVANCE(3902); + if (lookahead == 'c') ADVANCE(3782); + if (lookahead == 'h') ADVANCE(2781); + if (lookahead == 't') ADVANCE(3918); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2344: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'a') ADVANCE(3383); - if (lookahead == 'e') ADVANCE(2461); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'a') ADVANCE(3902); + if (lookahead == 'd') ADVANCE(2412); + if (lookahead == 'i') ADVANCE(3270); + if (lookahead == 'o') ADVANCE(3883); + if (lookahead == 's') ADVANCE(3546); + if (lookahead == 'v') ADVANCE(2525); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2345: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'a') ADVANCE(3577); - if (lookahead == 's') ADVANCE(3478); - if (lookahead == 't') ADVANCE(2512); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'a') ADVANCE(4036); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2346: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'b') ADVANCE(3719); - if (lookahead == 'c') ADVANCE(3354); - if (lookahead == 'f') ADVANCE(2445); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'a') ADVANCE(4047); + if (lookahead == 'c') ADVANCE(3367); + if (lookahead == 'd') ADVANCE(3738); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2347: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'b') ADVANCE(2512); - if (lookahead == 'd') ADVANCE(2483); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'a') ADVANCE(3491); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2348: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'b') ADVANCE(2512); - if (lookahead == 'h') ADVANCE(4070); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'a') ADVANCE(3936); + if (lookahead == 'e') ADVANCE(3055); + if (lookahead == 'i') ADVANCE(3950); + if (lookahead == 'y') ADVANCE(2525); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2349: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'b') ADVANCE(2323); - if (lookahead == 'd') ADVANCE(2512); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'a') ADVANCE(3496); + if (lookahead == 'c') ADVANCE(4093); + if (lookahead == 'g') ADVANCE(2525); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2350: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'b') ADVANCE(2323); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'a') ADVANCE(3636); + if (lookahead == 'b') ADVANCE(4005); + if (lookahead == 'c') ADVANCE(2708); + if (lookahead == 'd') ADVANCE(3732); + if (lookahead == 's') ADVANCE(2525); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2351: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - ADVANCE_MAP( - ';', 4298, - 'b', 2403, - 'f', 4023, - 'h', 3459, - 'l', 3798, - 'p', 3478, - 's', 3377, - 't', 3478, - ); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'a') ADVANCE(3636); + if (lookahead == 's') ADVANCE(3546); + if (lookahead == 'd' || + lookahead == 'v') ADVANCE(2525); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2352: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'b') ADVANCE(2669); - if (lookahead == 'e') ADVANCE(3852); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'a') ADVANCE(2976); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2353: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'b') ADVANCE(3945); - if (lookahead == 'c') ADVANCE(2695); - if (lookahead == 'd') ADVANCE(3719); - if (lookahead == 'o') ADVANCE(3870); - if (lookahead == 's') ADVANCE(2512); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'a') ADVANCE(3931); + if (lookahead == 'c') ADVANCE(3323); + if (lookahead == 'o') ADVANCE(3970); + if (lookahead == 'y') ADVANCE(2525); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2354: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'c') ADVANCE(2512); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'a') ADVANCE(3516); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2355: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'c') ADVANCE(2386); - if (lookahead == 'f') ADVANCE(3686); - if (lookahead == 'm') ADVANCE(3342); - if (lookahead == 's') ADVANCE(2971); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2512); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'a') ADVANCE(3899); + if (lookahead == 'f') ADVANCE(2525); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2356: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'c') ADVANCE(2343); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'a') ADVANCE(3846); + if (lookahead == 'c') ADVANCE(4221); + if (lookahead == 'e') ADVANCE(3865); + if (lookahead == 'n') ADVANCE(2803); + if (lookahead == 's') ADVANCE(3390); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2357: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - ADVANCE_MAP( - ';', 4298, - 'c', 2882, - 'd', 3719, - 'h', 3919, - 'i', 3617, - 'l', 2713, - 'q', 4200, - 'r', 2627, - ); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'a') ADVANCE(3396); + if (lookahead == 'e') ADVANCE(2474); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2358: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'c') ADVANCE(2882); - if (lookahead == 'd') ADVANCE(3719); - if (lookahead == 'l') ADVANCE(2628); - if (lookahead == 'q') ADVANCE(4200); - if (lookahead == 'r') ADVANCE(2691); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'a') ADVANCE(3590); + if (lookahead == 's') ADVANCE(3491); + if (lookahead == 't') ADVANCE(2525); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2359: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'c') ADVANCE(2387); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'b') ADVANCE(3732); + if (lookahead == 'c') ADVANCE(3367); + if (lookahead == 'f') ADVANCE(2458); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2360: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'c') ADVANCE(2883); - if (lookahead == 'd') ADVANCE(3762); - if (lookahead == 'l') ADVANCE(2394); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'b') ADVANCE(2525); + if (lookahead == 'd') ADVANCE(2496); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2361: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'c') ADVANCE(2883); - if (lookahead == 'd') ADVANCE(3763); - if (lookahead == 'g') ADVANCE(2394); - if (lookahead == 's') ADVANCE(2789); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'b') ADVANCE(2525); + if (lookahead == 'h') ADVANCE(4083); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2362: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'c') ADVANCE(2720); - if (lookahead == 'e') ADVANCE(3288); - if (lookahead == 'l') ADVANCE(2775); - if (lookahead == 'p') ADVANCE(3930); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'b') ADVANCE(2336); + if (lookahead == 'd') ADVANCE(2525); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2363: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'c') ADVANCE(3354); - if (lookahead == 'w') ADVANCE(2512); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'b') ADVANCE(2336); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2364: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'c') ADVANCE(4188); - if (lookahead == 'e') ADVANCE(2359); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + ADVANCE_MAP( + ';', 4311, + 'b', 2416, + 'f', 4036, + 'h', 3472, + 'l', 3811, + 'p', 3491, + 's', 3390, + 't', 3491, + ); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2365: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'c') ADVANCE(4188); - if (lookahead == 'e' || - lookahead == 'r') ADVANCE(2512); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'b') ADVANCE(2682); + if (lookahead == 'e') ADVANCE(3865); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2366: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'c') ADVANCE(2810); - if (lookahead == 'f') ADVANCE(3398); - if (lookahead == 'o') ADVANCE(3000); - if (lookahead == 't') ADVANCE(2362); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'b') ADVANCE(3958); + if (lookahead == 'c') ADVANCE(2708); + if (lookahead == 'd') ADVANCE(3732); + if (lookahead == 'o') ADVANCE(3883); + if (lookahead == 's') ADVANCE(2525); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2367: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - ADVANCE_MAP( - ';', 4298, - 'd', 3719, - 'e', 2453, - 'g', 2299, - 'l', 2299, - 'n', 3052, - 'p', 3568, - 'r', 2713, - ); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'c') ADVANCE(2525); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2368: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'd') ADVANCE(3719); - if (lookahead == 's') ADVANCE(2485); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'c') ADVANCE(2399); + if (lookahead == 'f') ADVANCE(3699); + if (lookahead == 'm') ADVANCE(3355); + if (lookahead == 's') ADVANCE(2984); if (lookahead == 'E' || - lookahead == 'v') ADVANCE(2512); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + lookahead == 'e') ADVANCE(2525); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2369: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'd') ADVANCE(3719); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'c') ADVANCE(2356); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2370: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'd') ADVANCE(2512); - if (lookahead == 'l') ADVANCE(3052); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + ADVANCE_MAP( + ';', 4311, + 'c', 2895, + 'd', 3732, + 'h', 3932, + 'i', 3630, + 'l', 2726, + 'q', 4213, + 'r', 2640, + ); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2371: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'd') ADVANCE(2512); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'c') ADVANCE(2895); + if (lookahead == 'd') ADVANCE(3732); + if (lookahead == 'l') ADVANCE(2641); + if (lookahead == 'q') ADVANCE(4213); + if (lookahead == 'r') ADVANCE(2704); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2372: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - ADVANCE_MAP( - ';', 4298, - 'd', 3718, - 'e', 2369, - 'h', 4036, - 'l', 2713, - 'm', 4195, - 'n', 4280, - 'p', 3568, - 's', 3146, - ); - if (('1' <= lookahead && lookahead <= '3') || - lookahead == 'E') ADVANCE(2512); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'c') ADVANCE(2400); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2373: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'd') ADVANCE(3711); - if (lookahead == 'l') ADVANCE(3106); - if (lookahead == 'r') ADVANCE(3406); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'c') ADVANCE(2896); + if (lookahead == 'd') ADVANCE(3775); + if (lookahead == 'l') ADVANCE(2407); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2374: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'd') ADVANCE(3711); - if (lookahead == 'l') ADVANCE(3106); - if (lookahead == 'u') ADVANCE(3798); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'c') ADVANCE(2896); + if (lookahead == 'd') ADVANCE(3776); + if (lookahead == 'g') ADVANCE(2407); + if (lookahead == 's') ADVANCE(2802); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2375: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'd') ADVANCE(3711); - if (lookahead == 'l') ADVANCE(3199); - if (lookahead == 'q') ADVANCE(2512); - if (lookahead == 'r') ADVANCE(3449); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'c') ADVANCE(2733); + if (lookahead == 'e') ADVANCE(3301); + if (lookahead == 'l') ADVANCE(2788); + if (lookahead == 'p') ADVANCE(3943); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2376: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'd') ADVANCE(3383); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'c') ADVANCE(3367); + if (lookahead == 'w') ADVANCE(2525); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2377: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'e') ADVANCE(2512); - if (lookahead == 'l') ADVANCE(3052); - if (lookahead == 'm') ADVANCE(4053); - if (lookahead == 'r') ADVANCE(4107); - if (lookahead == 's') ADVANCE(3820); - if (lookahead == 'z') ADVANCE(2713); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'c') ADVANCE(4201); + if (lookahead == 'e') ADVANCE(2372); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2378: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'e') ADVANCE(2512); - if (lookahead == 's') ADVANCE(3134); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'c') ADVANCE(4201); + if (lookahead == 'e' || + lookahead == 'r') ADVANCE(2525); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2379: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'e') ADVANCE(2512); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'c') ADVANCE(2823); + if (lookahead == 'f') ADVANCE(3411); + if (lookahead == 'o') ADVANCE(3013); + if (lookahead == 't') ADVANCE(2375); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2380: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'e') ADVANCE(3870); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + ADVANCE_MAP( + ';', 4311, + 'd', 3732, + 'e', 2466, + 'g', 2312, + 'l', 2312, + 'n', 3065, + 'p', 3581, + 'r', 2726, + ); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2381: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'e') ADVANCE(3853); - if (lookahead == 'm') ADVANCE(3436); - if (lookahead == 'p') ADVANCE(3568); - if (lookahead == 's') ADVANCE(3867); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'd') ADVANCE(3732); + if (lookahead == 's') ADVANCE(2498); + if (lookahead == 'E' || + lookahead == 'v') ADVANCE(2525); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2382: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'e') ADVANCE(4080); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'd') ADVANCE(3732); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2383: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'e') ADVANCE(3280); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'd') ADVANCE(2525); + if (lookahead == 'l') ADVANCE(3065); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2384: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'e') ADVANCE(3226); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'd') ADVANCE(2525); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2385: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'e') ADVANCE(2453); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + ADVANCE_MAP( + ';', 4311, + 'd', 3731, + 'e', 2382, + 'h', 4049, + 'l', 2726, + 'm', 4208, + 'n', 4293, + 'p', 3581, + 's', 3159, + ); + if (('1' <= lookahead && lookahead <= '3') || + lookahead == 'E') ADVANCE(2525); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2386: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'e') ADVANCE(3852); - if (lookahead == 'l') ADVANCE(3067); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'd') ADVANCE(3724); + if (lookahead == 'l') ADVANCE(3119); + if (lookahead == 'r') ADVANCE(3419); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2387: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'e') ADVANCE(3852); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'd') ADVANCE(3724); + if (lookahead == 'l') ADVANCE(3119); + if (lookahead == 'u') ADVANCE(3811); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2388: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'e') ADVANCE(2461); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'd') ADVANCE(3724); + if (lookahead == 'l') ADVANCE(3212); + if (lookahead == 'q') ADVANCE(2525); + if (lookahead == 'r') ADVANCE(3462); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2389: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'e') ADVANCE(2972); - if (lookahead == 'i') ADVANCE(3607); - if (lookahead == 'o') ADVANCE(3024); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'd') ADVANCE(3396); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2390: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'e') ADVANCE(2448); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'e') ADVANCE(2525); + if (lookahead == 'l') ADVANCE(3065); + if (lookahead == 'm') ADVANCE(4066); + if (lookahead == 'r') ADVANCE(4120); + if (lookahead == 's') ADVANCE(3833); + if (lookahead == 'z') ADVANCE(2726); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2391: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'e') ADVANCE(3857); - if (lookahead == 'n') ADVANCE(3111); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'e') ADVANCE(2525); + if (lookahead == 's') ADVANCE(3147); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2392: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'e') ADVANCE(3857); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'e') ADVANCE(2525); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2393: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'e') ADVANCE(2719); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'e') ADVANCE(3883); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2394: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'e') ADVANCE(4023); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'e') ADVANCE(3866); + if (lookahead == 'm') ADVANCE(3449); + if (lookahead == 'p') ADVANCE(3581); + if (lookahead == 's') ADVANCE(3880); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2395: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'e') ADVANCE(4054); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'e') ADVANCE(4093); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2396: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'e') ADVANCE(3678); - if (lookahead == 'f') ADVANCE(2512); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'e') ADVANCE(3293); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2397: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'e') ADVANCE(3955); - if (lookahead == 's') ADVANCE(3083); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'e') ADVANCE(3239); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2398: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'e') ADVANCE(3911); - if (lookahead == 's') ADVANCE(3798); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'e') ADVANCE(2466); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2399: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'e') ADVANCE(3921); - if (lookahead == 'f' || - lookahead == 'm') ADVANCE(2512); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'e') ADVANCE(3865); + if (lookahead == 'l') ADVANCE(3080); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2400: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'e') ADVANCE(3910); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'e') ADVANCE(3865); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2401: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'f') ADVANCE(2512); - if (lookahead == 'r') ADVANCE(3707); - if (lookahead == 'y') ADVANCE(2462); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'e') ADVANCE(2474); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2402: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'f') ADVANCE(2512); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'e') ADVANCE(2985); + if (lookahead == 'i') ADVANCE(3620); + if (lookahead == 'o') ADVANCE(3037); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2403: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'f') ADVANCE(4023); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'e') ADVANCE(2461); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2404: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'f') ADVANCE(4083); - if (lookahead == 'g') ADVANCE(2512); - if (lookahead == 'q') ADVANCE(2452); - if (lookahead == 's') ADVANCE(2361); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'e') ADVANCE(3870); + if (lookahead == 'n') ADVANCE(3124); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2405: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'f') ADVANCE(3624); - if (lookahead == 'l') ADVANCE(3068); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'e') ADVANCE(3870); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2406: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'f') ADVANCE(4109); - if (lookahead == 'q') ADVANCE(2452); - if (lookahead == 's') ADVANCE(2461); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'e') ADVANCE(2732); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2407: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'g') ADVANCE(2512); - if (lookahead == 'l') ADVANCE(4099); - if (lookahead == 'm') ADVANCE(3831); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'e') ADVANCE(4036); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2408: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'g') ADVANCE(2512); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'e') ADVANCE(4067); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2409: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'g') ADVANCE(4080); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'e') ADVANCE(3691); + if (lookahead == 'f') ADVANCE(2525); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2410: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'g') ADVANCE(3052); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'e') ADVANCE(3968); + if (lookahead == 's') ADVANCE(3096); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2411: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'h') ADVANCE(2512); - if (lookahead == 'l') ADVANCE(3750); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'e') ADVANCE(3924); + if (lookahead == 's') ADVANCE(3811); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2412: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'h') ADVANCE(2512); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'e') ADVANCE(3934); + if (lookahead == 'f' || + lookahead == 'm') ADVANCE(2525); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2413: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'h') ADVANCE(3708); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'e') ADVANCE(3923); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2414: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'i') ADVANCE(3355); - if (lookahead == 'n') ADVANCE(3238); - if (lookahead == 'o') ADVANCE(4099); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'f') ADVANCE(2525); + if (lookahead == 'r') ADVANCE(3720); + if (lookahead == 'y') ADVANCE(2475); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2415: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'i') ADVANCE(3020); - if (lookahead == 'o') ADVANCE(3641); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'f') ADVANCE(2525); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2416: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'i') ADVANCE(3900); - if (lookahead == 'u') ADVANCE(4115); - if (lookahead == 'E' || - lookahead == 'd' || - lookahead == 'y') ADVANCE(2512); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'f') ADVANCE(4036); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2417: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'i') ADVANCE(3900); - if (lookahead == 'y') ADVANCE(2512); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'f') ADVANCE(4096); + if (lookahead == 'g') ADVANCE(2525); + if (lookahead == 'q') ADVANCE(2465); + if (lookahead == 's') ADVANCE(2374); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2418: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'i') ADVANCE(3658); - if (lookahead == 'p') ADVANCE(2772); - if (lookahead == 's') ADVANCE(2512); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'f') ADVANCE(3637); + if (lookahead == 'l') ADVANCE(3081); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2419: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'i') ADVANCE(4137); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'f') ADVANCE(4122); + if (lookahead == 'q') ADVANCE(2465); + if (lookahead == 's') ADVANCE(2474); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2420: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'i') ADVANCE(2985); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'g') ADVANCE(2525); + if (lookahead == 'l') ADVANCE(4112); + if (lookahead == 'm') ADVANCE(3844); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2421: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'i') ADVANCE(3633); - if (lookahead == 'n') ADVANCE(3366); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'g') ADVANCE(2525); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2422: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'i') ADVANCE(3561); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'g') ADVANCE(4093); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2423: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'i') ADVANCE(3697); - if (lookahead == 'l') ADVANCE(2512); - if (lookahead == 's') ADVANCE(2369); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'g') ADVANCE(3065); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2424: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'l') ADVANCE(2512); - if (lookahead == 'q') ADVANCE(2452); - if (lookahead == 's') ADVANCE(2360); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'h') ADVANCE(2525); + if (lookahead == 'l') ADVANCE(3763); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2425: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'l') ADVANCE(2512); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'h') ADVANCE(2525); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2426: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'l') ADVANCE(4136); - if (lookahead == 'e' || - lookahead == 'f') ADVANCE(2512); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'h') ADVANCE(3721); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2427: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'l') ADVANCE(4080); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'i') ADVANCE(3368); + if (lookahead == 'n') ADVANCE(3251); + if (lookahead == 'o') ADVANCE(4112); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2428: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'l') ADVANCE(3750); - if (lookahead == 'v') ADVANCE(2512); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'i') ADVANCE(3033); + if (lookahead == 'o') ADVANCE(3654); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2429: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'l') ADVANCE(3750); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'i') ADVANCE(3913); + if (lookahead == 'u') ADVANCE(4128); + if (lookahead == 'E' || + lookahead == 'd' || + lookahead == 'y') ADVANCE(2525); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2430: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'l') ADVANCE(3052); - if (lookahead == 'd' || - lookahead == 'e') ADVANCE(2512); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'i') ADVANCE(3913); + if (lookahead == 'y') ADVANCE(2525); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2431: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'l') ADVANCE(4140); - if (lookahead == 'm') ADVANCE(2696); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'i') ADVANCE(3671); + if (lookahead == 'p') ADVANCE(2785); + if (lookahead == 's') ADVANCE(2525); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2432: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'l') ADVANCE(3519); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'i') ADVANCE(4150); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2433: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'm') ADVANCE(2512); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'i') ADVANCE(2998); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2434: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'm') ADVANCE(2398); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'i') ADVANCE(3646); + if (lookahead == 'n') ADVANCE(3379); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2435: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'm') ADVANCE(2726); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'i') ADVANCE(3574); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2436: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'n') ADVANCE(2512); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'i') ADVANCE(3710); + if (lookahead == 'l') ADVANCE(2525); + if (lookahead == 's') ADVANCE(2382); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2437: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'n') ADVANCE(2746); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'l') ADVANCE(2525); + if (lookahead == 'q') ADVANCE(2465); + if (lookahead == 's') ADVANCE(2373); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2438: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'o') ADVANCE(2512); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'l') ADVANCE(2525); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2439: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'o') ADVANCE(2457); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'l') ADVANCE(4149); + if (lookahead == 'e' || + lookahead == 'f') ADVANCE(2525); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2440: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'o') ADVANCE(2425); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'l') ADVANCE(4093); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2441: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'o') ADVANCE(3218); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'l') ADVANCE(3763); + if (lookahead == 'v') ADVANCE(2525); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2442: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'o') ADVANCE(4247); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'l') ADVANCE(3763); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2443: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'o') ADVANCE(4236); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'l') ADVANCE(3065); + if (lookahead == 'd' || + lookahead == 'e') ADVANCE(2525); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2444: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'o') ADVANCE(2971); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'l') ADVANCE(4153); + if (lookahead == 'm') ADVANCE(2709); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2445: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'o') ADVANCE(3924); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'l') ADVANCE(3532); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2446: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'o') ADVANCE(4153); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'm') ADVANCE(2525); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2447: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'o') ADVANCE(3663); - if (lookahead == 's') ADVANCE(2512); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'm') ADVANCE(2411); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2448: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'o') ADVANCE(3688); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'm') ADVANCE(2739); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2449: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'p') ADVANCE(2512); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'n') ADVANCE(2525); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2450: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'p') ADVANCE(3218); - if (lookahead == 't') ADVANCE(2421); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'n') ADVANCE(2759); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2451: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'p') ADVANCE(3949); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'o') ADVANCE(2525); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2452: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'q') ADVANCE(2512); - if (lookahead == 's') ADVANCE(3563); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'o') ADVANCE(2470); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2453: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'q') ADVANCE(2512); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'o') ADVANCE(2438); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2454: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'q') ADVANCE(2452); - if (lookahead == 's') ADVANCE(2512); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'o') ADVANCE(3231); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2455: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'q') ADVANCE(2453); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'o') ADVANCE(4260); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2456: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'q') ADVANCE(4199); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'o') ADVANCE(4249); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2457: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'r') ADVANCE(2512); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'o') ADVANCE(2984); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2458: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'r') ADVANCE(2684); - if (lookahead == 's') ADVANCE(2369); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'o') ADVANCE(3937); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2459: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'r') ADVANCE(3391); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'o') ADVANCE(4166); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2460: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'r') ADVANCE(3369); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'o') ADVANCE(3676); + if (lookahead == 's') ADVANCE(2525); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2461: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 's') ADVANCE(2512); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'o') ADVANCE(3701); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2462: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 's') ADVANCE(3870); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'p') ADVANCE(2525); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2463: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 's') ADVANCE(2371); - if (lookahead == 'v') ADVANCE(2512); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'p') ADVANCE(3231); + if (lookahead == 't') ADVANCE(2434); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2464: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 's') ADVANCE(2349); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'p') ADVANCE(3962); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2465: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 's') ADVANCE(4269); - if (lookahead == 'v') ADVANCE(2512); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'q') ADVANCE(2525); + if (lookahead == 's') ADVANCE(3576); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2466: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 's') ADVANCE(3583); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'q') ADVANCE(2525); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2467: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 's') ADVANCE(3478); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'q') ADVANCE(2465); + if (lookahead == 's') ADVANCE(2525); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2468: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 's') ADVANCE(4141); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'q') ADVANCE(2466); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2469: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 's') ADVANCE(3083); - if (lookahead == 'v') ADVANCE(2512); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'q') ADVANCE(4212); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2470: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 's') ADVANCE(3136); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'r') ADVANCE(2525); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2471: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 's') ADVANCE(3149); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2512); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'r') ADVANCE(2697); + if (lookahead == 's') ADVANCE(2382); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2472: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 's') ADVANCE(4203); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'r') ADVANCE(3404); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2473: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 't') ADVANCE(2512); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'r') ADVANCE(3382); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2474: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 't') ADVANCE(2652); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 's') ADVANCE(2525); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2475: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 't') ADVANCE(3708); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 's') ADVANCE(3883); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2476: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 't') ADVANCE(2400); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 's') ADVANCE(2384); + if (lookahead == 'v') ADVANCE(2525); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2477: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 't') ADVANCE(2854); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 's') ADVANCE(2362); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2478: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 't') ADVANCE(3478); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 's') ADVANCE(4282); + if (lookahead == 'v') ADVANCE(2525); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2479: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 't') ADVANCE(2952); - if (lookahead == 'v') ADVANCE(2512); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 's') ADVANCE(3596); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2480: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 't') ADVANCE(2800); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 's') ADVANCE(3491); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2481: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 't') ADVANCE(3732); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 's') ADVANCE(4154); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2482: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 't') ADVANCE(3391); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 's') ADVANCE(3096); + if (lookahead == 'v') ADVANCE(2525); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2483: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'u') ADVANCE(2512); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 's') ADVANCE(3149); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2484: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'u') ADVANCE(3361); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 's') ADVANCE(3162); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(2525); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2485: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'v') ADVANCE(2512); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 's') ADVANCE(4216); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2486: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'v') ADVANCE(4293); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 't') ADVANCE(2525); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2487: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'v') ADVANCE(2843); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 't') ADVANCE(2665); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2488: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'v') ADVANCE(3148); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 't') ADVANCE(3721); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2489: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'a' || - lookahead == 'h') ADVANCE(2512); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 't') ADVANCE(2413); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2490: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'b' || - lookahead == 'e') ADVANCE(2512); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 't') ADVANCE(2867); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2491: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'c' || - lookahead == 'w') ADVANCE(2512); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 't') ADVANCE(3491); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2492: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'e' || - lookahead == 'g') ADVANCE(2512); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 't') ADVANCE(2965); + if (lookahead == 'v') ADVANCE(2525); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2493: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'e' || - lookahead == 'l') ADVANCE(2512); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 't') ADVANCE(2813); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2494: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'f' || - lookahead == 'v') ADVANCE(2512); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 't') ADVANCE(3745); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2495: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'e' || - lookahead == 'f') ADVANCE(2512); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 't') ADVANCE(3404); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2496: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'E' || - lookahead == 'a' || - lookahead == 'j') ADVANCE(2512); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'u') ADVANCE(2525); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2497: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == '4' || - lookahead == '5' || - lookahead == '8') ADVANCE(2512); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'u') ADVANCE(3374); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2498: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'D' || - lookahead == 'U' || - lookahead == 'd' || - lookahead == 'u') ADVANCE(2512); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'v') ADVANCE(2525); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2499: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (lookahead == 'H' || - lookahead == 'L' || - lookahead == 'R' || - lookahead == 'h' || - lookahead == 'l' || - lookahead == 'r') ADVANCE(2512); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'v') ADVANCE(4306); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2500: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (('2' <= lookahead && lookahead <= '6') || - lookahead == '8') ADVANCE(2512); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'v') ADVANCE(2856); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2501: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2512); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'v') ADVANCE(3161); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2502: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2501); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'a' || + lookahead == 'h') ADVANCE(2525); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2503: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2502); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'b' || + lookahead == 'e') ADVANCE(2525); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2504: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2503); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'c' || + lookahead == 'w') ADVANCE(2525); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2505: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2504); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'e' || + lookahead == 'g') ADVANCE(2525); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2506: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2505); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'e' || + lookahead == 'l') ADVANCE(2525); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2507: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2512); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'f' || + lookahead == 'v') ADVANCE(2525); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2508: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2507); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'e' || + lookahead == 'f') ADVANCE(2525); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2509: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2508); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'E' || + lookahead == 'a' || + lookahead == 'j') ADVANCE(2525); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2510: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2509); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == '4' || + lookahead == '5' || + lookahead == '8') ADVANCE(2525); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2511: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2510); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'D' || + lookahead == 'U' || + lookahead == 'd' || + lookahead == 'u') ADVANCE(2525); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2512: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == ';') ADVANCE(4298); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (lookahead == 'H' || + lookahead == 'L' || + lookahead == 'R' || + lookahead == 'h' || + lookahead == 'l' || + lookahead == 'r') ADVANCE(2525); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2513: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == '=') ADVANCE(4299); - if (lookahead == '?') ADVANCE(2513); - if (set_contains(aux_sym_shortcode_naked_string_token2_character_set_1, 10, lookahead)) ADVANCE(2513); + if (lookahead == ';') ADVANCE(4311); + if (('2' <= lookahead && lookahead <= '6') || + lookahead == '8') ADVANCE(2525); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2514: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == '?') ADVANCE(2513); - if (lookahead == '+' || - lookahead == '-') ADVANCE(2516); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4308); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(2517); + if (lookahead == ';') ADVANCE(4311); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2525); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2515: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == '?') ADVANCE(2513); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4306); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(2517); + if (lookahead == ';') ADVANCE(4311); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2514); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2516: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == '?') ADVANCE(2513); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4308); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(2517); + if (lookahead == ';') ADVANCE(4311); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2515); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2517: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == '?') ADVANCE(2513); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(2517); + if (lookahead == ';') ADVANCE(4311); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2516); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2518: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - ADVANCE_MAP( - 'A', 2632, - 'a', 2945, - 'c', 3411, - 'f', 3870, - 'i', 3498, - 'o', 3802, - 's', 2918, - 'u', 3596, - ); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2517); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2519: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - ADVANCE_MAP( - 'A', 2712, - 'B', 2713, - 'H', 2669, - 'a', 2892, - 'b', 2703, - 'c', 2731, - 'd', 2922, - 'e', 2336, - 'f', 3381, - 'h', 2750, - 'i', 3271, - 'l', 2707, - 'm', 3781, - 'n', 3598, - 'o', 2675, - 'p', 2757, - 'r', 2713, - 's', 2655, - 't', 3337, - 'u', 3523, - 'x', 2512, - ); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2518); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2520: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - ADVANCE_MAP( - 'A', 2881, - 'I', 2881, - 'U', 2881, - 'a', 2936, - 'c', 3410, - 'f', 3870, - 'o', 3806, - 's', 2921, - 'u', 3605, - ); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2525); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2521: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'A') ADVANCE(2572); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2520); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2522: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - ADVANCE_MAP( - 'A', 3695, - 'C', 3208, - 'D', 3713, - 'F', 3522, - 'R', 3444, - 'T', 3153, - 'U', 3811, - 'V', 3187, - 'a', 4001, - 'r', 3437, - ); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2521); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2523: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - ADVANCE_MAP( - 'A', 3889, - 'B', 2760, - 'D', 2700, - 'a', 3655, - 'c', 4259, - 'd', 2700, - 'e', 3059, - 'f', 3870, - 'l', 4136, - 'n', 4052, - 'o', 3806, - 'p', 3939, - 'r', 4136, - 's', 2920, - 'z', 3384, - ); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2522); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2524: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'A') ADVANCE(3889); - if (lookahead == 'E') ADVANCE(2512); - if (lookahead == 'a') ADVANCE(3889); - if (lookahead == 'd') ADVANCE(3870); - if (lookahead == 'e') ADVANCE(2406); - if (lookahead == 's') ADVANCE(3377); - if (lookahead == 't') ADVANCE(2460); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2523); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2525: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - ADVANCE_MAP( - 'A', 3889, - 'H', 2669, - 'a', 3254, - 'b', 3474, - 'c', 2736, - 'd', 2320, - 'e', 2407, - 'f', 3382, - 'h', 2744, - 'i', 2714, - 'j', 2881, - 'l', 2888, - 'o', 3526, - 'r', 2850, - 's', 2890, - 't', 2999, - 'u', 2708, - 'w', 2718, - 'z', 2878, - ); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == ';') ADVANCE(4311); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2526: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - ADVANCE_MAP( - 'A', 3889, - 'H', 2669, - 'a', 2932, - 'b', 3892, - 'c', 3390, - 'd', 2704, - 'f', 3382, - 'g', 3931, - 'h', 2743, - 'l', 2981, - 'm', 2322, - 'o', 3259, - 'p', 2814, - 'r', 2980, - 's', 2921, - 't', 2996, - 'u', 2709, - 'w', 2718, - ); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == '=') ADVANCE(4312); + if (lookahead == '?') ADVANCE(2526); + if (set_contains(aux_sym_shortcode_naked_string_token2_character_set_1, 10, lookahead)) ADVANCE(2526); END_STATE(); case 2527: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - ADVANCE_MAP( - 'A', 3889, - 'a', 3397, - 'b', 2669, - 'c', 3411, - 'e', 2797, - 'f', 3870, - 'k', 4024, - 'o', 2710, - 's', 2910, - 'y', 2852, - ); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == '?') ADVANCE(2526); + if (lookahead == '+' || + lookahead == '-') ADVANCE(2529); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4321); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(2530); END_STATE(); case 2528: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'A') ADVANCE(3889); - if (lookahead == 'a') ADVANCE(3889); - if (lookahead == 'p') ADVANCE(2669); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == '?') ADVANCE(2526); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4319); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(2530); END_STATE(); case 2529: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'A') ADVANCE(3889); - if (lookahead == 'a') ADVANCE(3889); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == '?') ADVANCE(2526); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4321); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(2530); END_STATE(); case 2530: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'A') ADVANCE(3889); - if (lookahead == 'a') ADVANCE(3882); - if (lookahead == 'c') ADVANCE(2473); - if (lookahead == 'm') ADVANCE(3343); - if (lookahead == 's') ADVANCE(4242); - if (lookahead == 't') ADVANCE(3591); - if (lookahead == 'x') ADVANCE(4080); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == '?') ADVANCE(2526); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(2530); END_STATE(); case 2531: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'A') ADVANCE(3889); - if (lookahead == 'a') ADVANCE(3882); - if (lookahead == 'n') ADVANCE(4242); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + ADVANCE_MAP( + 'A', 2645, + 'a', 2958, + 'c', 3424, + 'f', 3883, + 'i', 3511, + 'o', 3815, + 's', 2931, + 'u', 3609, + ); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2532: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'A') ADVANCE(3889); - if (lookahead == 'a') ADVANCE(3882); - if (lookahead == 'n') ADVANCE(3098); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + ADVANCE_MAP( + 'A', 2725, + 'B', 2726, + 'H', 2682, + 'a', 2905, + 'b', 2716, + 'c', 2744, + 'd', 2935, + 'e', 2349, + 'f', 3394, + 'h', 2763, + 'i', 3284, + 'l', 2720, + 'm', 3794, + 'n', 3611, + 'o', 2688, + 'p', 2770, + 'r', 2726, + 's', 2668, + 't', 3350, + 'u', 3536, + 'x', 2525, + ); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2533: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'A') ADVANCE(3889); - if (lookahead == 'a') ADVANCE(3981); - if (lookahead == 'i') ADVANCE(3274); - if (lookahead == 't') ADVANCE(3964); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + ADVANCE_MAP( + 'A', 2894, + 'I', 2894, + 'U', 2894, + 'a', 2949, + 'c', 3423, + 'f', 3883, + 'o', 3819, + 's', 2934, + 'u', 3618, + ); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2534: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'A') ADVANCE(3889); - if (lookahead == 'e') ADVANCE(2512); - if (lookahead == 't') ADVANCE(2459); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'A') ADVANCE(2585); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2535: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'A') ADVANCE(3889); - if (lookahead == 't') ADVANCE(3959); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + ADVANCE_MAP( + 'A', 3708, + 'C', 3221, + 'D', 3726, + 'F', 3535, + 'R', 3457, + 'T', 3166, + 'U', 3824, + 'V', 3200, + 'a', 4014, + 'r', 3450, + ); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2536: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); ADVANCE_MAP( - 'A', 4004, - 'D', 3772, - 'E', 3863, - 'T', 3138, - 'a', 4001, - 'd', 3779, - 'p', 3147, - 's', 3360, + 'A', 3902, + 'B', 2773, + 'D', 2713, + 'a', 3668, + 'c', 4272, + 'd', 2713, + 'e', 3072, + 'f', 3883, + 'l', 4149, + 'n', 4065, + 'o', 3819, + 'p', 3952, + 'r', 4149, + 's', 2933, + 'z', 3397, ); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2537: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'A') ADVANCE(2944); - if (lookahead == 'D') ADVANCE(3716); - if (lookahead == 'G') ADVANCE(3922); - if (lookahead == 'T') ADVANCE(3438); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'A') ADVANCE(3902); + if (lookahead == 'E') ADVANCE(2525); + if (lookahead == 'a') ADVANCE(3902); + if (lookahead == 'd') ADVANCE(3883); + if (lookahead == 'e') ADVANCE(2419); + if (lookahead == 's') ADVANCE(3390); + if (lookahead == 't') ADVANCE(2473); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2538: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'A') ADVANCE(2944); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + ADVANCE_MAP( + 'A', 3902, + 'H', 2682, + 'a', 3267, + 'b', 3487, + 'c', 2749, + 'd', 2333, + 'e', 2420, + 'f', 3395, + 'h', 2757, + 'i', 2727, + 'j', 2894, + 'l', 2901, + 'o', 3539, + 'r', 2863, + 's', 2903, + 't', 3012, + 'u', 2721, + 'w', 2731, + 'z', 2891, + ); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2539: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'A') ADVANCE(3520); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + ADVANCE_MAP( + 'A', 3902, + 'H', 2682, + 'a', 2945, + 'b', 3905, + 'c', 3403, + 'd', 2717, + 'f', 3395, + 'g', 3944, + 'h', 2756, + 'l', 2994, + 'm', 2335, + 'o', 3272, + 'p', 2827, + 'r', 2993, + 's', 2934, + 't', 3009, + 'u', 2722, + 'w', 2731, + ); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2540: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); ADVANCE_MAP( - 'A', 3696, - 'C', 3208, - 'D', 3713, - 'F', 3522, - 'T', 3153, - 'U', 3811, - 'V', 3187, - 'a', 4001, + 'A', 3902, + 'a', 3410, + 'b', 2682, + 'c', 3424, + 'e', 2810, + 'f', 3883, + 'k', 4037, + 'o', 2723, + 's', 2923, + 'y', 2865, ); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2541: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'A') ADVANCE(4001); - if (lookahead == 'D') ADVANCE(3772); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'A') ADVANCE(3902); + if (lookahead == 'a') ADVANCE(3902); + if (lookahead == 'p') ADVANCE(2682); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2542: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'A') ADVANCE(4001); - if (lookahead == 'R') ADVANCE(3445); - if (lookahead == 'T') ADVANCE(3123); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'A') ADVANCE(3902); + if (lookahead == 'a') ADVANCE(3902); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2543: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'A') ADVANCE(4001); - if (lookahead == 'R') ADVANCE(3445); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'A') ADVANCE(3902); + if (lookahead == 'a') ADVANCE(3895); + if (lookahead == 'c') ADVANCE(2486); + if (lookahead == 'm') ADVANCE(3356); + if (lookahead == 's') ADVANCE(4255); + if (lookahead == 't') ADVANCE(3604); + if (lookahead == 'x') ADVANCE(4093); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2544: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'A') ADVANCE(4001); - if (lookahead == 'T') ADVANCE(3123); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'A') ADVANCE(3902); + if (lookahead == 'a') ADVANCE(3895); + if (lookahead == 'n') ADVANCE(4255); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2545: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'A') ADVANCE(4001); - if (lookahead == 'V') ADVANCE(3192); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'A') ADVANCE(3902); + if (lookahead == 'a') ADVANCE(3895); + if (lookahead == 'n') ADVANCE(3111); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2546: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'A') ADVANCE(4001); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'A') ADVANCE(3902); + if (lookahead == 'a') ADVANCE(3994); + if (lookahead == 'i') ADVANCE(3287); + if (lookahead == 't') ADVANCE(3977); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2547: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'A') ADVANCE(4005); - if (lookahead == 'B') ADVANCE(3869); - if (lookahead == 'L') ADVANCE(3185); - if (lookahead == 'R') ADVANCE(3443); - if (lookahead == 'T') ADVANCE(3138); - if (lookahead == 'a') ADVANCE(4001); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'A') ADVANCE(3902); + if (lookahead == 'e') ADVANCE(2525); + if (lookahead == 't') ADVANCE(2472); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2548: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'B') ADVANCE(2668); - if (lookahead == 'P') ADVANCE(2818); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'A') ADVANCE(3902); + if (lookahead == 't') ADVANCE(3972); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2549: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); ADVANCE_MAP( - 'B', 2713, - 'E', 2307, - 'a', 2941, - 'c', 2733, - 'e', 2488, - 'f', 3870, - 'h', 3708, - 'i', 3252, - 'o', 3805, - 'r', 3437, - 's', 2905, - 'u', 3513, + 'A', 4017, + 'D', 3785, + 'E', 3876, + 'T', 3151, + 'a', 4014, + 'd', 3792, + 'p', 3160, + 's', 3373, ); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2550: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'B') ADVANCE(2669); - if (lookahead == 'L') ADVANCE(3392); - if (lookahead == 'S') ADVANCE(3180); - if (lookahead == 'T') ADVANCE(3438); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'A') ADVANCE(2957); + if (lookahead == 'D') ADVANCE(3729); + if (lookahead == 'G') ADVANCE(3935); + if (lookahead == 'T') ADVANCE(3451); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2551: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'B') ADVANCE(2669); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'A') ADVANCE(2957); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2552: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'B') ADVANCE(4002); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'A') ADVANCE(3533); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2553: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'B') ADVANCE(3994); - if (lookahead == 'n') ADVANCE(2554); - if (lookahead == 'p') ADVANCE(3218); - if (lookahead == 't') ADVANCE(2290); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + ADVANCE_MAP( + 'A', 3709, + 'C', 3221, + 'D', 3726, + 'F', 3535, + 'T', 3166, + 'U', 3824, + 'V', 3200, + 'a', 4014, + ); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2554: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'B') ADVANCE(3999); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'A') ADVANCE(4014); + if (lookahead == 'D') ADVANCE(3785); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2555: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'C') ADVANCE(2609); - if (lookahead == 'c') ADVANCE(4259); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'A') ADVANCE(4014); + if (lookahead == 'R') ADVANCE(3458); + if (lookahead == 'T') ADVANCE(3136); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2556: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'C') ADVANCE(2696); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'A') ADVANCE(4014); + if (lookahead == 'R') ADVANCE(3458); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2557: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'C') ADVANCE(3774); - if (lookahead == 'T') ADVANCE(3424); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'A') ADVANCE(4014); + if (lookahead == 'T') ADVANCE(3136); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2558: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'C') ADVANCE(3450); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'A') ADVANCE(4014); + if (lookahead == 'V') ADVANCE(3205); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2559: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'C') ADVANCE(3545); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'A') ADVANCE(4014); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2560: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'C') ADVANCE(4207); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'A') ADVANCE(4018); + if (lookahead == 'B') ADVANCE(3882); + if (lookahead == 'L') ADVANCE(3198); + if (lookahead == 'R') ADVANCE(3456); + if (lookahead == 'T') ADVANCE(3151); + if (lookahead == 'a') ADVANCE(4014); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2561: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'C') ADVANCE(3789); - if (lookahead == 'D') ADVANCE(3715); - if (lookahead == 'L') ADVANCE(3197); - if (lookahead == 'R') ADVANCE(3447); - if (lookahead == 'U') ADVANCE(3812); - if (lookahead == 'V') ADVANCE(3206); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'B') ADVANCE(2681); + if (lookahead == 'P') ADVANCE(2831); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2562: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'C') ADVANCE(3789); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + ADVANCE_MAP( + 'B', 2726, + 'E', 2320, + 'a', 2954, + 'c', 2746, + 'e', 2501, + 'f', 3883, + 'h', 3721, + 'i', 3265, + 'o', 3818, + 'r', 3450, + 's', 2918, + 'u', 3526, + ); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2563: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'D') ADVANCE(3719); - if (lookahead == 'M') ADVANCE(3436); - if (lookahead == 'P') ADVANCE(3568); - if (lookahead == 'T') ADVANCE(3424); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'B') ADVANCE(2682); + if (lookahead == 'L') ADVANCE(3405); + if (lookahead == 'S') ADVANCE(3193); + if (lookahead == 'T') ADVANCE(3451); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2564: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'D') ADVANCE(3719); - if (lookahead == 'a') ADVANCE(3889); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'B') ADVANCE(2682); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2565: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'D') ADVANCE(3719); - if (lookahead == 'o') ADVANCE(4080); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'B') ADVANCE(4015); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2566: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'D') ADVANCE(3719); - if (lookahead == 'r') ADVANCE(2512); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'B') ADVANCE(4007); + if (lookahead == 'n') ADVANCE(2567); + if (lookahead == 'p') ADVANCE(3231); + if (lookahead == 't') ADVANCE(2303); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2567: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'D') ADVANCE(3719); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'B') ADVANCE(4012); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2568: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - ADVANCE_MAP( - 'D', 2446, - 'J', 2881, - 'S', 2881, - 'Z', 2881, - 'a', 3255, - 'c', 2736, - 'e', 3479, - 'f', 3870, - 'i', 2678, - 'o', 3803, - 's', 2918, - ); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'C') ADVANCE(2622); + if (lookahead == 'c') ADVANCE(4272); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2569: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'D') ADVANCE(2512); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'C') ADVANCE(2709); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2570: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - ADVANCE_MAP( - 'D', 2565, - 'a', 2935, - 'c', 2734, - 'd', 3719, - 'e', 2512, - 'f', 2566, - 'g', 2458, - 'l', 2423, - 'm', 2664, - 'n', 3240, - 'o', 3259, - 'p', 2747, - 'q', 2929, - 'r', 2564, - 's', 2898, - 't', 2489, - 'u', 3584, - 'x', 2957, - ); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'C') ADVANCE(3787); + if (lookahead == 'T') ADVANCE(3437); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2571: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - ADVANCE_MAP( - 'D', 2567, - 'a', 2884, - 'c', 3773, - 'd', 2700, - 'e', 2782, - 'f', 3870, - 'h', 3708, - 'i', 2973, - 'l', 2937, - 'n', 3829, - 'o', 3037, - 'p', 2512, - 's', 2917, - 'u', 2431, - ); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'C') ADVANCE(3463); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2572: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'D') ADVANCE(2588); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'C') ADVANCE(3558); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2573: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - ADVANCE_MAP( - 'D', 4294, - 'H', 2498, - 'U', 4294, - 'V', 2499, - 'b', 3723, - 'd', 4294, - 'h', 2498, - 'm', 3436, - 'p', 3568, - 't', 3424, - 'u', 4294, - 'v', 2499, - ); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'C') ADVANCE(4220); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2574: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'D') ADVANCE(2881); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'C') ADVANCE(3802); + if (lookahead == 'D') ADVANCE(3728); + if (lookahead == 'L') ADVANCE(3210); + if (lookahead == 'R') ADVANCE(3460); + if (lookahead == 'U') ADVANCE(3825); + if (lookahead == 'V') ADVANCE(3219); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2575: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - ADVANCE_MAP( - 'D', 2700, - 'H', 2713, - 'a', 3798, - 'd', 2700, - 'g', 4286, - 'i', 3642, - 'l', 2534, - 'r', 2535, - 's', 3377, - ); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'C') ADVANCE(3802); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2576: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - ADVANCE_MAP( - 'D', 2700, - 'b', 2669, - 'c', 4259, - 'd', 2702, - 'e', 3048, - 'f', 3870, - 'o', 3806, - 's', 2921, - 'v', 3017, - ); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'D') ADVANCE(3732); + if (lookahead == 'M') ADVANCE(3449); + if (lookahead == 'P') ADVANCE(3581); + if (lookahead == 'T') ADVANCE(3437); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2577: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'D') ADVANCE(2700); - if (lookahead == 'd') ADVANCE(2700); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'D') ADVANCE(3732); + if (lookahead == 'a') ADVANCE(3902); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2578: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'D') ADVANCE(3772); - if (lookahead == 'L') ADVANCE(3194); - if (lookahead == 'R') ADVANCE(3445); - if (lookahead == 'U') ADVANCE(3816); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'D') ADVANCE(3732); + if (lookahead == 'o') ADVANCE(4093); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2579: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'D') ADVANCE(3374); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'D') ADVANCE(3732); + if (lookahead == 'r') ADVANCE(2525); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2580: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'D') ADVANCE(3140); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'D') ADVANCE(3732); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2581: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'D') ADVANCE(3780); - if (lookahead == 'E') ADVANCE(3860); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + ADVANCE_MAP( + 'D', 2459, + 'J', 2894, + 'S', 2894, + 'Z', 2894, + 'a', 3268, + 'c', 2749, + 'e', 3492, + 'f', 3883, + 'i', 2691, + 'o', 3816, + 's', 2931, + ); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2582: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'D') ADVANCE(3784); - if (lookahead == 'T') ADVANCE(3159); - if (lookahead == 'V') ADVANCE(3187); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'D') ADVANCE(2525); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2583: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'D') ADVANCE(3794); - if (lookahead == 'Q') ADVANCE(4218); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + ADVANCE_MAP( + 'D', 2578, + 'a', 2948, + 'c', 2747, + 'd', 3732, + 'e', 2525, + 'f', 2579, + 'g', 2471, + 'l', 2436, + 'm', 2677, + 'n', 3253, + 'o', 3272, + 'p', 2760, + 'q', 2942, + 'r', 2577, + 's', 2911, + 't', 2502, + 'u', 3597, + 'x', 2970, + ); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2584: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); ADVANCE_MAP( - 'E', 3518, - 'M', 2314, - 'a', 2936, - 'b', 3869, - 'c', 3390, - 'f', 3870, - 'g', 3931, - 'l', 3799, - 'm', 2665, - 'n', 3004, - 'o', 3259, - 'p', 3824, - 'r', 3365, - 's', 2915, - 't', 3412, - 'u', 3585, + 'D', 2580, + 'a', 2897, + 'c', 3786, + 'd', 2713, + 'e', 2795, + 'f', 3883, + 'h', 3721, + 'i', 2986, + 'l', 2950, + 'n', 3842, + 'o', 3050, + 'p', 2525, + 's', 2930, + 'u', 2444, ); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2585: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'E') ADVANCE(2512); - if (lookahead == 'a') ADVANCE(3798); - if (lookahead == 's') ADVANCE(3377); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'D') ADVANCE(2601); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2586: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'E') ADVANCE(2512); - if (lookahead == 'a') ADVANCE(3815); - if (lookahead == 'e') ADVANCE(2455); - if (lookahead == 's') ADVANCE(3377); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + ADVANCE_MAP( + 'D', 4307, + 'H', 2511, + 'U', 4307, + 'V', 2512, + 'b', 3736, + 'd', 4307, + 'h', 2511, + 'm', 3449, + 'p', 3581, + 't', 3437, + 'u', 4307, + 'v', 2512, + ); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2587: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'E') ADVANCE(2512); - if (lookahead == 'e') ADVANCE(2454); - if (lookahead == 's') ADVANCE(3377); - if (lookahead == 't') ADVANCE(2457); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'D') ADVANCE(2894); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2588: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'E') ADVANCE(2512); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + ADVANCE_MAP( + 'D', 2713, + 'H', 2726, + 'a', 3811, + 'd', 2713, + 'g', 4299, + 'i', 3655, + 'l', 2547, + 'r', 2548, + 's', 3390, + ); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2589: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'E') ADVANCE(3490); - if (lookahead == 'U') ADVANCE(3847); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + ADVANCE_MAP( + 'D', 2713, + 'b', 2682, + 'c', 4272, + 'd', 2715, + 'e', 3061, + 'f', 3883, + 'o', 3819, + 's', 2934, + 'v', 3030, + ); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2590: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - ADVANCE_MAP( - 'E', 2881, - 'J', 3524, - 'O', 2881, - 'a', 2936, - 'c', 3390, - 'd', 3719, - 'f', 3870, - 'g', 3931, - 'm', 2319, - 'n', 4106, - 'o', 3258, - 's', 2921, - 't', 3438, - 'u', 3466, - ); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'D') ADVANCE(2713); + if (lookahead == 'd') ADVANCE(2713); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2591: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'E') ADVANCE(3492); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'D') ADVANCE(3785); + if (lookahead == 'L') ADVANCE(3207); + if (lookahead == 'R') ADVANCE(3458); + if (lookahead == 'U') ADVANCE(3829); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2592: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - ADVANCE_MAP( - 'E', 3524, - 'a', 2936, - 'c', 3390, - 'd', 2872, - 'f', 3870, - 'g', 3931, - 'm', 2662, - 'o', 3806, - 'p', 3110, - 'r', 2512, - 's', 2913, - 't', 3359, - 'u', 3585, - 'v', 3125, - ); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'D') ADVANCE(3387); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2593: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'E') ADVANCE(3863); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'D') ADVANCE(3153); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2594: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'E') ADVANCE(3860); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'D') ADVANCE(3793); + if (lookahead == 'E') ADVANCE(3873); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2595: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'E') ADVANCE(3865); - if (lookahead == 'F') ADVANCE(4217); - if (lookahead == 'G') ADVANCE(4010); - if (lookahead == 'L') ADVANCE(3092); - if (lookahead == 'S') ADVANCE(3578); - if (lookahead == 'T') ADVANCE(3438); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'D') ADVANCE(3797); + if (lookahead == 'T') ADVANCE(3172); + if (lookahead == 'V') ADVANCE(3200); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2596: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'E') ADVANCE(3866); - if (lookahead == 'F') ADVANCE(4217); - if (lookahead == 'G') ADVANCE(4010); - if (lookahead == 'L') ADVANCE(3092); - if (lookahead == 'S') ADVANCE(3578); - if (lookahead == 'T') ADVANCE(3438); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'D') ADVANCE(3807); + if (lookahead == 'Q') ADVANCE(4231); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2597: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'F') ADVANCE(2640); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + ADVANCE_MAP( + 'E', 3531, + 'M', 2327, + 'a', 2949, + 'b', 3882, + 'c', 3403, + 'f', 3883, + 'g', 3944, + 'l', 3812, + 'm', 2678, + 'n', 3017, + 'o', 3272, + 'p', 3837, + 'r', 3378, + 's', 2928, + 't', 3425, + 'u', 3598, + ); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2598: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'F') ADVANCE(4211); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'E') ADVANCE(2525); + if (lookahead == 'a') ADVANCE(3811); + if (lookahead == 's') ADVANCE(3390); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2599: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'G') ADVANCE(2512); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'E') ADVANCE(2525); + if (lookahead == 'a') ADVANCE(3828); + if (lookahead == 'e') ADVANCE(2468); + if (lookahead == 's') ADVANCE(3390); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2600: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - ADVANCE_MAP( - 'G', 3241, - 'L', 3172, - 'R', 3437, - 'V', 2577, - 'a', 2856, - 'b', 4025, - 'c', 2686, - 'd', 2700, - 'e', 2281, - 'f', 3870, - 'g', 2587, - 'h', 2528, - 'i', 2463, - 'j', 2881, - 'l', 2524, - 'm', 3342, - 'o', 2450, - 'p', 2755, - 'r', 2533, - 's', 2891, - 't', 3262, - 'u', 2434, - 'v', 2575, - 'w', 2532, - ); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'E') ADVANCE(2525); + if (lookahead == 'e') ADVANCE(2467); + if (lookahead == 's') ADVANCE(3390); + if (lookahead == 't') ADVANCE(2470); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2601: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'G') ADVANCE(4010); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'E') ADVANCE(2525); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2602: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'G') ADVANCE(4019); - if (lookahead == 'L') ADVANCE(3175); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'E') ADVANCE(3503); + if (lookahead == 'U') ADVANCE(3860); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2603: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); ADVANCE_MAP( - 'H', 2555, - 'O', 2597, - 'a', 2944, - 'c', 2335, - 'f', 3870, - 'h', 3775, - 'i', 3260, - 'm', 2780, - 'o', 3806, - 'q', 3895, - 's', 2921, - 't', 2669, - 'u', 2840, + 'E', 2894, + 'J', 3537, + 'O', 2894, + 'a', 2949, + 'c', 3403, + 'd', 3732, + 'f', 3883, + 'g', 3944, + 'm', 2332, + 'n', 4119, + 'o', 3271, + 's', 2934, + 't', 3451, + 'u', 3479, ); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2604: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - ADVANCE_MAP( - 'H', 2625, - 'R', 2521, - 'S', 2608, - 'a', 4283, - 'c', 2733, - 'f', 3870, - 'h', 3081, - 'i', 3507, - 'o', 3806, - 'r', 3417, - 's', 2918, - ); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'E') ADVANCE(3505); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2605: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'H') ADVANCE(2881); - if (lookahead == 'J') ADVANCE(2881); - if (lookahead == 'a') ADVANCE(3821); - if (lookahead == 'c') ADVANCE(3103); - if (lookahead == 'f') ADVANCE(3870); - if (lookahead == 'o') ADVANCE(3806); - if (lookahead == 's') ADVANCE(2921); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + ADVANCE_MAP( + 'E', 3537, + 'a', 2949, + 'c', 3403, + 'd', 2885, + 'f', 3883, + 'g', 3944, + 'm', 2675, + 'o', 3819, + 'p', 3123, + 'r', 2525, + 's', 2926, + 't', 3372, + 'u', 3598, + 'v', 3138, + ); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2606: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - ADVANCE_MAP( - 'H', 2881, - 'O', 2626, - 'a', 2943, - 'c', 2732, - 'd', 3719, - 'e', 3034, - 'f', 3870, - 'h', 3343, - 'i', 3917, - 'l', 3722, - 'o', 3562, - 'r', 3724, - 's', 2921, - 'u', 3807, - ); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'E') ADVANCE(3876); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2607: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - ADVANCE_MAP( - 'H', 2881, - 'a', 2944, - 'c', 2736, - 'd', 3719, - 'e', 3927, - 'f', 3870, - 'o', 3806, - 's', 2921, - ); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'E') ADVANCE(3873); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2608: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'H') ADVANCE(2881); - if (lookahead == 'c') ADVANCE(4259); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'E') ADVANCE(3878); + if (lookahead == 'F') ADVANCE(4230); + if (lookahead == 'G') ADVANCE(4023); + if (lookahead == 'L') ADVANCE(3105); + if (lookahead == 'S') ADVANCE(3591); + if (lookahead == 'T') ADVANCE(3451); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2609: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'H') ADVANCE(2881); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'E') ADVANCE(3879); + if (lookahead == 'F') ADVANCE(4230); + if (lookahead == 'G') ADVANCE(4023); + if (lookahead == 'L') ADVANCE(3105); + if (lookahead == 'S') ADVANCE(3591); + if (lookahead == 'T') ADVANCE(3451); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2610: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'H') ADVANCE(4219); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'F') ADVANCE(2653); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2611: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'I') ADVANCE(2512); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'F') ADVANCE(4224); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2612: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'I') ADVANCE(3618); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'G') ADVANCE(2525); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2613: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'I') ADVANCE(3685); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + ADVANCE_MAP( + 'G', 3254, + 'L', 3185, + 'R', 3450, + 'V', 2590, + 'a', 2869, + 'b', 4038, + 'c', 2699, + 'd', 2713, + 'e', 2294, + 'f', 3883, + 'g', 2600, + 'h', 2541, + 'i', 2476, + 'j', 2894, + 'l', 2537, + 'm', 3355, + 'o', 2463, + 'p', 2768, + 'r', 2546, + 's', 2904, + 't', 3275, + 'u', 2447, + 'v', 2588, + 'w', 2545, + ); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2614: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - ADVANCE_MAP( - 'J', 2881, - 'a', 2944, - 'c', 2733, - 'e', 3263, - 'f', 3870, - 'o', 2553, - 's', 2921, - 't', 3412, - 'u', 2512, - ); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'G') ADVANCE(4023); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2615: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'L') ADVANCE(3092); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'G') ADVANCE(4032); + if (lookahead == 'L') ADVANCE(3188); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2616: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'L') ADVANCE(3392); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + ADVANCE_MAP( + 'H', 2568, + 'O', 2610, + 'a', 2957, + 'c', 2348, + 'f', 3883, + 'h', 3788, + 'i', 3273, + 'm', 2793, + 'o', 3819, + 'q', 3908, + 's', 2934, + 't', 2682, + 'u', 2853, + ); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2617: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'L') ADVANCE(3190); - if (lookahead == 'R') ADVANCE(3445); - if (lookahead == 'l') ADVANCE(3173); - if (lookahead == 'r') ADVANCE(3437); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + ADVANCE_MAP( + 'H', 2638, + 'R', 2534, + 'S', 2621, + 'a', 4296, + 'c', 2746, + 'f', 3883, + 'h', 3094, + 'i', 3520, + 'o', 3819, + 'r', 3430, + 's', 2931, + ); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2618: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'L') ADVANCE(3190); - if (lookahead == 'R') ADVANCE(3445); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'H') ADVANCE(2894); + if (lookahead == 'J') ADVANCE(2894); + if (lookahead == 'a') ADVANCE(3834); + if (lookahead == 'c') ADVANCE(3116); + if (lookahead == 'f') ADVANCE(3883); + if (lookahead == 'o') ADVANCE(3819); + if (lookahead == 's') ADVANCE(2934); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2619: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'L') ADVANCE(3194); - if (lookahead == 'R') ADVANCE(3445); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + ADVANCE_MAP( + 'H', 2894, + 'O', 2639, + 'a', 2956, + 'c', 2745, + 'd', 3732, + 'e', 3047, + 'f', 3883, + 'h', 3356, + 'i', 3930, + 'l', 3735, + 'o', 3575, + 'r', 3737, + 's', 2934, + 'u', 3820, + ); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2620: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'M') ADVANCE(3176); - if (lookahead == 'T') ADVANCE(3325); - if (lookahead == 'V') ADVANCE(3164); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + ADVANCE_MAP( + 'H', 2894, + 'a', 2957, + 'c', 2749, + 'd', 3732, + 'e', 3940, + 'f', 3883, + 'o', 3819, + 's', 2934, + ); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2621: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'M') ADVANCE(3436); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'H') ADVANCE(2894); + if (lookahead == 'c') ADVANCE(4272); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2622: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - ADVANCE_MAP( - 'N', 3719, - 'a', 2928, - 'b', 3913, - 'c', 3738, - 'd', 3859, - 'e', 2993, - 'f', 3870, - 'i', 3243, - 'k', 2798, - 'l', 2679, - 'n', 3058, - 'o', 3804, - 'p', 3940, - 'r', 3055, - 's', 2899, - 'u', 3525, - ); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'H') ADVANCE(2894); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2623: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - ADVANCE_MAP( - 'N', 2599, - 'T', 2308, - 'a', 2936, - 'c', 2735, - 'd', 3719, - 'f', 3870, - 'g', 3931, - 'l', 3177, - 'm', 2663, - 'o', 3259, - 'p', 4074, - 'q', 4171, - 's', 2907, - 't', 2652, - 'u', 3585, - 'x', 3367, - ); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'H') ADVANCE(4232); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2624: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'O') ADVANCE(2316); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'I') ADVANCE(2525); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2625: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'O') ADVANCE(2631); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'I') ADVANCE(3631); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2626: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'P') ADVANCE(2318); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'I') ADVANCE(3698); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2627: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'P') ADVANCE(2669); - if (lookahead == 'i') ADVANCE(2495); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + ADVANCE_MAP( + 'J', 2894, + 'a', 2957, + 'c', 2746, + 'e', 3276, + 'f', 3883, + 'o', 2566, + 's', 2934, + 't', 3425, + 'u', 2525, + ); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2628: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'P') ADVANCE(2669); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'L') ADVANCE(3105); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2629: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'P') ADVANCE(3568); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'L') ADVANCE(3405); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2630: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'Q') ADVANCE(4218); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'L') ADVANCE(3203); + if (lookahead == 'R') ADVANCE(3458); + if (lookahead == 'l') ADVANCE(3186); + if (lookahead == 'r') ADVANCE(3450); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2631: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'R') ADVANCE(2313); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'L') ADVANCE(3203); + if (lookahead == 'R') ADVANCE(3458); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2632: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'R') ADVANCE(2574); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'L') ADVANCE(3207); + if (lookahead == 'R') ADVANCE(3458); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2633: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'R') ADVANCE(3448); - if (lookahead == 'T') ADVANCE(3159); - if (lookahead == 'V') ADVANCE(3187); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'M') ADVANCE(3189); + if (lookahead == 'T') ADVANCE(3338); + if (lookahead == 'V') ADVANCE(3177); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2634: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - ADVANCE_MAP( - 'S', 2512, - 'a', 2934, - 'c', 3390, - 'd', 2699, - 'e', 3524, - 'f', 2970, - 'g', 3749, - 'h', 2846, - 'i', 3637, - 'l', 2705, - 'm', 2661, - 'o', 3806, - 'p', 2666, - 'r', 2331, - 's', 2912, - 't', 3407, - 'u', 3585, - 'v', 2849, - ); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'M') ADVANCE(3449); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2635: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'S') ADVANCE(3622); - if (lookahead == 'V') ADVANCE(3162); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + ADVANCE_MAP( + 'N', 3732, + 'a', 2941, + 'b', 3926, + 'c', 3751, + 'd', 3872, + 'e', 3006, + 'f', 3883, + 'i', 3256, + 'k', 2811, + 'l', 2692, + 'n', 3071, + 'o', 3817, + 'p', 3953, + 'r', 3068, + 's', 2912, + 'u', 3538, + ); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2636: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'S') ADVANCE(3622); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + ADVANCE_MAP( + 'N', 2612, + 'T', 2321, + 'a', 2949, + 'c', 2748, + 'd', 3732, + 'f', 3883, + 'g', 3944, + 'l', 3190, + 'm', 2676, + 'o', 3272, + 'p', 4087, + 'q', 4184, + 's', 2920, + 't', 2665, + 'u', 3598, + 'x', 3380, + ); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2637: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'S') ADVANCE(3840); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'O') ADVANCE(2329); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2638: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'S') ADVANCE(4181); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'O') ADVANCE(2644); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2639: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'S') ADVANCE(3867); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'P') ADVANCE(2331); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2640: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'T') ADVANCE(2881); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'P') ADVANCE(2682); + if (lookahead == 'i') ADVANCE(2508); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2641: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'T') ADVANCE(3339); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'P') ADVANCE(2682); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2642: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'T') ADVANCE(3320); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'P') ADVANCE(3581); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2643: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'T') ADVANCE(3159); - if (lookahead == 'V') ADVANCE(3187); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'Q') ADVANCE(4231); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2644: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'T') ADVANCE(4021); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'R') ADVANCE(2326); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2645: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'U') ADVANCE(2624); - if (lookahead == 'f') ADVANCE(3870); - if (lookahead == 'o') ADVANCE(3806); - if (lookahead == 's') ADVANCE(2921); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'R') ADVANCE(2587); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2646: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'V') ADVANCE(3206); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'R') ADVANCE(3461); + if (lookahead == 'T') ADVANCE(3172); + if (lookahead == 'V') ADVANCE(3200); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2647: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'V') ADVANCE(3192); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + ADVANCE_MAP( + 'S', 2525, + 'a', 2947, + 'c', 3403, + 'd', 2712, + 'e', 3537, + 'f', 2983, + 'g', 3762, + 'h', 2859, + 'i', 3650, + 'l', 2718, + 'm', 2674, + 'o', 3819, + 'p', 2679, + 'r', 2344, + 's', 2925, + 't', 3420, + 'u', 3598, + 'v', 2862, + ); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2648: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'W') ADVANCE(3394); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'S') ADVANCE(3635); + if (lookahead == 'V') ADVANCE(3175); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2649: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - ADVANCE_MAP( - 'a', 2936, - 'b', 3869, - 'c', 2416, - 'e', 3518, - 'f', 2457, - 'g', 3931, - 'l', 3057, - 'm', 2324, - 'n', 3005, - 'o', 3259, - 'p', 2329, - 'r', 3365, - 's', 2916, - 't', 3412, - 'u', 3585, - 'w', 2953, - ); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'S') ADVANCE(3635); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2650: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - ADVANCE_MAP( - 'a', 2936, - 'c', 2417, - 'e', 2880, - 'f', 4287, - 'g', 3931, - 'i', 2414, - 'j', 3524, - 'm', 2658, - 'n', 2366, - 'o', 2877, - 'p', 3930, - 'q', 4186, - 's', 2909, - 't', 2422, - 'u', 3466, - ); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'S') ADVANCE(3853); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2651: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - ADVANCE_MAP( - 'a', 2924, - 'c', 4259, - 'e', 2959, - 'f', 3870, - 'o', 3806, - 'r', 3056, - 's', 2921, - 'u', 3595, - ); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'S') ADVANCE(4194); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2652: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'a') ADVANCE(2512); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'S') ADVANCE(3880); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2653: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'a') ADVANCE(2457); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'T') ADVANCE(2894); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2654: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'a') ADVANCE(3859); - if (lookahead == 'c') ADVANCE(3870); - if (lookahead == 'h') ADVANCE(2512); - if (lookahead == 'i') ADVANCE(3589); - if (lookahead == 'q') ADVANCE(2838); - if (lookahead == 't') ADVANCE(3941); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'T') ADVANCE(3352); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2655: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'a') ADVANCE(3859); - if (lookahead == 'c') ADVANCE(3870); - if (lookahead == 'h') ADVANCE(2512); - if (lookahead == 'q') ADVANCE(2838); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'T') ADVANCE(3333); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2656: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - ADVANCE_MAP( - 'a', 2942, - 'c', 2681, - 'd', 3719, - 'e', 3026, - 'f', 3870, - 'h', 2875, - 'i', 3874, - 'l', 4176, - 'o', 3572, - 'r', 2711, - 's', 2919, - 't', 3000, - 'u', 3044, - 'w', 2953, - 'y', 3515, - ); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'T') ADVANCE(3172); + if (lookahead == 'V') ADVANCE(3200); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2657: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'a') ADVANCE(4233); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'T') ADVANCE(4034); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2658: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'a') ADVANCE(2902); - if (lookahead == 'o') ADVANCE(3218); - if (lookahead == 'p') ADVANCE(3045); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'U') ADVANCE(2637); + if (lookahead == 'f') ADVANCE(3883); + if (lookahead == 'o') ADVANCE(3819); + if (lookahead == 's') ADVANCE(2934); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2659: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'a') ADVANCE(3532); - if (lookahead == 'e') ADVANCE(3845); - if (lookahead == 'i') ADVANCE(3002); - if (lookahead == 't') ADVANCE(2388); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'V') ADVANCE(3219); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2660: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'a') ADVANCE(2494); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'V') ADVANCE(3205); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2661: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'a') ADVANCE(2921); - if (lookahead == 'e') ADVANCE(3251); - if (lookahead == 'i') ADVANCE(2964); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'W') ADVANCE(3407); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2662: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'a') ADVANCE(2921); - if (lookahead == 'e') ADVANCE(3251); - if (lookahead == 'i') ADVANCE(2965); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + ADVANCE_MAP( + 'a', 2949, + 'b', 3882, + 'c', 2429, + 'e', 3531, + 'f', 2470, + 'g', 3944, + 'l', 3070, + 'm', 2337, + 'n', 3018, + 'o', 3272, + 'p', 2342, + 'r', 3378, + 's', 2929, + 't', 3425, + 'u', 3598, + 'w', 2966, + ); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2663: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'a') ADVANCE(2921); - if (lookahead == 'p') ADVANCE(4105); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + ADVANCE_MAP( + 'a', 2949, + 'c', 2430, + 'e', 2893, + 'f', 4300, + 'g', 3944, + 'i', 2427, + 'j', 3537, + 'm', 2671, + 'n', 2379, + 'o', 2890, + 'p', 3943, + 'q', 4199, + 's', 2922, + 't', 2435, + 'u', 3479, + ); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2664: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'a') ADVANCE(2921); - if (lookahead == 'p') ADVANCE(4114); - if (lookahead == 's') ADVANCE(3810); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + ADVANCE_MAP( + 'a', 2937, + 'c', 4272, + 'e', 2972, + 'f', 3883, + 'o', 3819, + 'r', 3069, + 's', 2934, + 'u', 3608, + ); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2665: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'a') ADVANCE(2921); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'a') ADVANCE(2525); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2666: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'a') ADVANCE(3870); - if (lookahead == 'e') ADVANCE(3918); - if (lookahead == 'l') ADVANCE(4185); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'a') ADVANCE(2470); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2667: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'a') ADVANCE(3870); - if (lookahead == 'f') ADVANCE(2512); - if (lookahead == 'l') ADVANCE(4185); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'a') ADVANCE(3872); + if (lookahead == 'c') ADVANCE(3883); + if (lookahead == 'h') ADVANCE(2525); + if (lookahead == 'i') ADVANCE(3602); + if (lookahead == 'q') ADVANCE(2851); + if (lookahead == 't') ADVANCE(3954); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2668: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'a') ADVANCE(3870); - if (lookahead == 'r') ADVANCE(2748); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'a') ADVANCE(3872); + if (lookahead == 'c') ADVANCE(3883); + if (lookahead == 'h') ADVANCE(2525); + if (lookahead == 'q') ADVANCE(2851); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2669: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'a') ADVANCE(3870); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + ADVANCE_MAP( + 'a', 2955, + 'c', 2694, + 'd', 3732, + 'e', 3039, + 'f', 3883, + 'h', 2888, + 'i', 3887, + 'l', 4189, + 'o', 3585, + 'r', 2724, + 's', 2932, + 't', 3013, + 'u', 3057, + 'w', 2966, + 'y', 3528, + ); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2670: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - ADVANCE_MAP( - 'a', 2933, - 'b', 3892, - 'c', 3390, - 'd', 2872, - 'f', 3870, - 'g', 3931, - 'm', 2665, - 'n', 3015, - 'o', 3259, - 'p', 2536, - 'r', 3380, - 's', 2921, - 't', 3438, - 'u', 3585, - ); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'a') ADVANCE(4246); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2671: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'a') ADVANCE(3637); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'a') ADVANCE(2915); + if (lookahead == 'o') ADVANCE(3231); + if (lookahead == 'p') ADVANCE(3058); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2672: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'a') ADVANCE(2485); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'a') ADVANCE(3545); + if (lookahead == 'e') ADVANCE(3858); + if (lookahead == 'i') ADVANCE(3015); + if (lookahead == 't') ADVANCE(2401); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2673: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - ADVANCE_MAP( - 'a', 3995, - 'b', 3924, - 'c', 2733, - 'd', 3719, - 'e', 3573, - 'f', 3870, - 'h', 3087, - 'i', 3560, - 'o', 3079, - 'p', 3940, - 'r', 2785, - 's', 2889, - 'w', 3347, - ); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'a') ADVANCE(2507); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2674: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - ADVANCE_MAP( - 'a', 3645, - 'b', 3924, - 'n', 3249, - 'o', 3846, - 'p', 2667, - 't', 3424, - 'w', 2716, - 'z', 2396, - ); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'a') ADVANCE(2934); + if (lookahead == 'e') ADVANCE(3264); + if (lookahead == 'i') ADVANCE(2977); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2675: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'a') ADVANCE(3645); - if (lookahead == 'b') ADVANCE(3924); - if (lookahead == 'p') ADVANCE(2667); - if (lookahead == 't') ADVANCE(3424); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'a') ADVANCE(2934); + if (lookahead == 'e') ADVANCE(3264); + if (lookahead == 'i') ADVANCE(2978); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2676: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'a') ADVANCE(4080); - if (lookahead == 'l') ADVANCE(3373); - if (lookahead == 't') ADVANCE(3652); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'a') ADVANCE(2934); + if (lookahead == 'p') ADVANCE(4118); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2677: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'a') ADVANCE(4080); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'a') ADVANCE(2934); + if (lookahead == 'p') ADVANCE(4127); + if (lookahead == 's') ADVANCE(3823); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2678: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'a') ADVANCE(2987); - if (lookahead == 'f') ADVANCE(3227); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'a') ADVANCE(2934); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2679: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'a') ADVANCE(2954); - if (lookahead == 'k') ADVANCE(2273); - if (lookahead == 'o') ADVANCE(2947); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'a') ADVANCE(3883); + if (lookahead == 'e') ADVANCE(3931); + if (lookahead == 'l') ADVANCE(4198); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2680: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'a') ADVANCE(2371); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'a') ADVANCE(3883); + if (lookahead == 'f') ADVANCE(2525); + if (lookahead == 'l') ADVANCE(4198); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2681: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'a') ADVANCE(3822); - if (lookahead == 'e') ADVANCE(3027); - if (lookahead == 'i') ADVANCE(3937); - if (lookahead == 'u') ADVANCE(3830); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'a') ADVANCE(3883); + if (lookahead == 'r') ADVANCE(2761); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2682: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'a') ADVANCE(3038); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'a') ADVANCE(3883); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2683: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'a') ADVANCE(2465); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + ADVANCE_MAP( + 'a', 2946, + 'b', 3905, + 'c', 3403, + 'd', 2885, + 'f', 3883, + 'g', 3944, + 'm', 2678, + 'n', 3028, + 'o', 3272, + 'p', 2549, + 'r', 3393, + 's', 2934, + 't', 3451, + 'u', 3598, + ); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2684: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'a') ADVANCE(4231); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'a') ADVANCE(3650); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2685: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'a') ADVANCE(2894); - if (lookahead == 'o') ADVANCE(4247); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'a') ADVANCE(2498); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2686: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'a') ADVANCE(3797); - if (lookahead == 'e') ADVANCE(3042); - if (lookahead == 'o') ADVANCE(3659); - if (lookahead == 'u') ADVANCE(3798); - if (lookahead == 'y') ADVANCE(2512); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + ADVANCE_MAP( + 'a', 4008, + 'b', 3937, + 'c', 2746, + 'd', 3732, + 'e', 3586, + 'f', 3883, + 'h', 3100, + 'i', 3573, + 'o', 3092, + 'p', 3953, + 'r', 2798, + 's', 2902, + 'w', 3360, + ); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2687: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'a') ADVANCE(2473); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + ADVANCE_MAP( + 'a', 3658, + 'b', 3937, + 'n', 3262, + 'o', 3859, + 'p', 2680, + 't', 3437, + 'w', 2729, + 'z', 2409, + ); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2688: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - ADVANCE_MAP( - 'a', 2893, - 'c', 3410, - 'e', 2436, - 'f', 3870, - 'i', 2881, - 'o', 3806, - 's', 2921, - 'u', 2879, - ); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'a') ADVANCE(3658); + if (lookahead == 'b') ADVANCE(3937); + if (lookahead == 'p') ADVANCE(2680); + if (lookahead == 't') ADVANCE(3437); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2689: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - ADVANCE_MAP( - 'a', 3920, - 'c', 4259, - 'f', 3870, - 'h', 3343, - 'i', 2512, - 'l', 4180, - 'o', 3408, - 'r', 2389, - 's', 2906, - ); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'a') ADVANCE(4093); + if (lookahead == 'l') ADVANCE(3386); + if (lookahead == 't') ADVANCE(3665); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2690: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'a') ADVANCE(3821); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'a') ADVANCE(4093); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2691: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'a') ADVANCE(3832); - if (lookahead == 'd') ADVANCE(3719); - if (lookahead == 'e') ADVANCE(3854); - if (lookahead == 'l') ADVANCE(3092); - if (lookahead == 's') ADVANCE(3377); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'a') ADVANCE(3000); + if (lookahead == 'f') ADVANCE(3240); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2692: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - ADVANCE_MAP( - 'a', 3798, - 'c', 4259, - 'e', 3021, - 'f', 3870, - 'i', 3676, - 'o', 3806, - 's', 2921, - 'u', 2512, - ); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'a') ADVANCE(2967); + if (lookahead == 'k') ADVANCE(2286); + if (lookahead == 'o') ADVANCE(2960); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2693: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'a') ADVANCE(3798); - if (lookahead == 'i') ADVANCE(3937); - if (lookahead == 'u') ADVANCE(3798); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'a') ADVANCE(2384); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2694: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'a') ADVANCE(3798); - if (lookahead == 's') ADVANCE(3377); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'a') ADVANCE(3835); + if (lookahead == 'e') ADVANCE(3040); + if (lookahead == 'i') ADVANCE(3950); + if (lookahead == 'u') ADVANCE(3843); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2695: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'a') ADVANCE(3798); - if (lookahead == 'u') ADVANCE(3798); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'a') ADVANCE(3051); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2696: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'a') ADVANCE(3798); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'a') ADVANCE(2478); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2697: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'a') ADVANCE(3242); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'a') ADVANCE(4244); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2698: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - ADVANCE_MAP( - 'a', 3580, - 'c', 4259, - 'e', 3610, - 'f', 3405, - 'i', 3524, - 'j', 3524, - 'l', 2676, - 'n', 3710, - 'o', 3800, - 'p', 2788, - 'r', 2685, - 's', 2921, - ); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'a') ADVANCE(2907); + if (lookahead == 'o') ADVANCE(4260); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2699: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'a') ADVANCE(4044); - if (lookahead == 'b') ADVANCE(3558); - if (lookahead == 'i') ADVANCE(4229); - if (lookahead == 'o') ADVANCE(4080); - if (lookahead == 's') ADVANCE(3760); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'a') ADVANCE(3810); + if (lookahead == 'e') ADVANCE(3055); + if (lookahead == 'o') ADVANCE(3672); + if (lookahead == 'u') ADVANCE(3811); + if (lookahead == 'y') ADVANCE(2525); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2700: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'a') ADVANCE(4044); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'a') ADVANCE(2486); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2701: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'a') ADVANCE(3459); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + ADVANCE_MAP( + 'a', 2906, + 'c', 3423, + 'e', 2449, + 'f', 3883, + 'i', 2894, + 'o', 3819, + 's', 2934, + 'u', 2892, + ); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2702: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'a') ADVANCE(4047); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + ADVANCE_MAP( + 'a', 3933, + 'c', 4272, + 'f', 3883, + 'h', 3356, + 'i', 2525, + 'l', 4193, + 'o', 3421, + 'r', 2402, + 's', 2919, + ); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2703: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'a') ADVANCE(3889); - if (lookahead == 'b') ADVANCE(3924); - if (lookahead == 'r') ADVANCE(2738); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'a') ADVANCE(3834); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2704: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'a') ADVANCE(3889); - if (lookahead == 'b') ADVANCE(3558); - if (lookahead == 'h') ADVANCE(2669); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'a') ADVANCE(3845); + if (lookahead == 'd') ADVANCE(3732); + if (lookahead == 'e') ADVANCE(3867); + if (lookahead == 'l') ADVANCE(3105); + if (lookahead == 's') ADVANCE(3390); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2705: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'a') ADVANCE(3889); - if (lookahead == 'c') ADVANCE(3353); - if (lookahead == 'i') ADVANCE(3658); - if (lookahead == 't') ADVANCE(2512); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + ADVANCE_MAP( + 'a', 3811, + 'c', 4272, + 'e', 3034, + 'f', 3883, + 'i', 3689, + 'o', 3819, + 's', 2934, + 'u', 2525, + ); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2706: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'a') ADVANCE(3889); - if (lookahead == 'c') ADVANCE(3769); - if (lookahead == 'h') ADVANCE(2769); - if (lookahead == 'm') ADVANCE(2512); - if (lookahead == 't') ADVANCE(3905); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'a') ADVANCE(3811); + if (lookahead == 'i') ADVANCE(3950); + if (lookahead == 'u') ADVANCE(3811); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2707: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'a') ADVANCE(3889); - if (lookahead == 'h') ADVANCE(2669); - if (lookahead == 'm') ADVANCE(2512); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'a') ADVANCE(3811); + if (lookahead == 's') ADVANCE(3390); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2708: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'a') ADVANCE(3889); - if (lookahead == 'h') ADVANCE(2669); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'a') ADVANCE(3811); + if (lookahead == 'u') ADVANCE(3811); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2709: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'a') ADVANCE(3889); - if (lookahead == 'm') ADVANCE(2425); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'a') ADVANCE(3811); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2710: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'a') ADVANCE(3889); - if (lookahead == 'm') ADVANCE(4120); - if (lookahead == 'o') ADVANCE(3462); - if (lookahead == 'p') ADVANCE(3218); - if (lookahead == 'r') ADVANCE(2849); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'a') ADVANCE(3255); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2711: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'a') ADVANCE(3889); - if (lookahead == 'o') ADVANCE(4049); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + ADVANCE_MAP( + 'a', 3593, + 'c', 4272, + 'e', 3623, + 'f', 3418, + 'i', 3537, + 'j', 3537, + 'l', 2689, + 'n', 3723, + 'o', 3813, + 'p', 2801, + 'r', 2698, + 's', 2934, + ); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2712: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'a') ADVANCE(3889); - if (lookahead == 'r') ADVANCE(3870); - if (lookahead == 't') ADVANCE(2800); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'a') ADVANCE(4057); + if (lookahead == 'b') ADVANCE(3571); + if (lookahead == 'i') ADVANCE(4242); + if (lookahead == 'o') ADVANCE(4093); + if (lookahead == 's') ADVANCE(3773); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2713: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'a') ADVANCE(3889); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'a') ADVANCE(4057); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2714: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'a') ADVANCE(3587); - if (lookahead == 'e') ADVANCE(2512); - if (lookahead == 'g') ADVANCE(2781); - if (lookahead == 's') ADVANCE(3387); - if (lookahead == 'v') ADVANCE(2415); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'a') ADVANCE(3472); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2715: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'a') ADVANCE(4270); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'a') ADVANCE(4060); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2716: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'a') ADVANCE(4034); - if (lookahead == 'b') ADVANCE(2669); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'a') ADVANCE(3902); + if (lookahead == 'b') ADVANCE(3937); + if (lookahead == 'r') ADVANCE(2751); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2717: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'a') ADVANCE(4034); - if (lookahead == 'c') ADVANCE(3411); - if (lookahead == 'd') ADVANCE(2700); - if (lookahead == 'R' || - lookahead == 'S') ADVANCE(2512); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'a') ADVANCE(3902); + if (lookahead == 'b') ADVANCE(3571); + if (lookahead == 'h') ADVANCE(2682); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2718: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'a') ADVANCE(3657); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'a') ADVANCE(3902); + if (lookahead == 'c') ADVANCE(3366); + if (lookahead == 'i') ADVANCE(3671); + if (lookahead == 't') ADVANCE(2525); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2719: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'a') ADVANCE(4117); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'a') ADVANCE(3902); + if (lookahead == 'c') ADVANCE(3782); + if (lookahead == 'h') ADVANCE(2782); + if (lookahead == 'm') ADVANCE(2525); + if (lookahead == 't') ADVANCE(3918); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2720: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'a') ADVANCE(3478); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'a') ADVANCE(3902); + if (lookahead == 'h') ADVANCE(2682); + if (lookahead == 'm') ADVANCE(2525); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2721: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - ADVANCE_MAP( - 'a', 3876, - 'c', 4259, - 'e', 3877, - 'f', 3870, - 'h', 3357, - 'i', 2479, - 'l', 2737, - 'm', 2512, - 'o', 3418, - 'r', 2294, - 's', 2906, - 'u', 3656, - ); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'a') ADVANCE(3902); + if (lookahead == 'h') ADVANCE(2682); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2722: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'a') ADVANCE(4111); - if (lookahead == 'e') ADVANCE(4058); - if (lookahead == 'o') ADVANCE(2473); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'a') ADVANCE(3902); + if (lookahead == 'm') ADVANCE(2438); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2723: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'a') ADVANCE(3302); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'a') ADVANCE(3902); + if (lookahead == 'm') ADVANCE(4133); + if (lookahead == 'o') ADVANCE(3475); + if (lookahead == 'p') ADVANCE(3231); + if (lookahead == 'r') ADVANCE(2862); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2724: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'a') ADVANCE(3476); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'a') ADVANCE(3902); + if (lookahead == 'o') ADVANCE(4062); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2725: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'a') ADVANCE(3501); - if (lookahead == 'l') ADVANCE(3392); - if (lookahead == 's') ADVANCE(4205); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'a') ADVANCE(3902); + if (lookahead == 'r') ADVANCE(3883); + if (lookahead == 't') ADVANCE(2813); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2726: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'a') ADVANCE(3924); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'a') ADVANCE(3902); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2727: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'a') ADVANCE(4037); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'a') ADVANCE(3600); + if (lookahead == 'e') ADVANCE(2525); + if (lookahead == 'g') ADVANCE(2794); + if (lookahead == 's') ADVANCE(3400); + if (lookahead == 'v') ADVANCE(2428); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2728: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'a') ADVANCE(3624); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'a') ADVANCE(4283); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2729: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'a') ADVANCE(2883); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'a') ADVANCE(4047); + if (lookahead == 'b') ADVANCE(2682); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2730: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'a') ADVANCE(3658); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'a') ADVANCE(4047); + if (lookahead == 'c') ADVANCE(3424); + if (lookahead == 'd') ADVANCE(2713); + if (lookahead == 'R' || + lookahead == 'S') ADVANCE(2525); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2731: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'a') ADVANCE(3923); - if (lookahead == 'e') ADVANCE(3041); - if (lookahead == 'u') ADVANCE(2839); - if (lookahead == 'y') ADVANCE(2512); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'a') ADVANCE(3670); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2732: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'a') ADVANCE(3923); - if (lookahead == 'e') ADVANCE(3027); - if (lookahead == 'i') ADVANCE(3937); - if (lookahead == 'o') ADVANCE(3686); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'a') ADVANCE(4130); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2733: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'a') ADVANCE(3923); - if (lookahead == 'e') ADVANCE(3042); - if (lookahead == 'y') ADVANCE(2512); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'a') ADVANCE(3491); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2734: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'a') ADVANCE(3923); - if (lookahead == 'i') ADVANCE(3900); - if (lookahead == 'o') ADVANCE(3508); - if (lookahead == 'y') ADVANCE(2512); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + ADVANCE_MAP( + 'a', 3889, + 'c', 4272, + 'e', 3890, + 'f', 3883, + 'h', 3370, + 'i', 2492, + 'l', 2750, + 'm', 2525, + 'o', 3431, + 'r', 2307, + 's', 2919, + 'u', 3669, + ); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2735: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'a') ADVANCE(3923); - if (lookahead == 'i') ADVANCE(3900); - if (lookahead == 'y') ADVANCE(2512); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'a') ADVANCE(4124); + if (lookahead == 'e') ADVANCE(4071); + if (lookahead == 'o') ADVANCE(2486); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2736: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'a') ADVANCE(3923); - if (lookahead == 'y') ADVANCE(2512); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'a') ADVANCE(3315); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2737: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'a') ADVANCE(3631); - if (lookahead == 'u') ADVANCE(4028); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'a') ADVANCE(3489); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2738: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'a') ADVANCE(2896); - if (lookahead == 'k') ADVANCE(3049); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'a') ADVANCE(3514); + if (lookahead == 'l') ADVANCE(3405); + if (lookahead == 's') ADVANCE(4218); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2739: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'a') ADVANCE(3819); - if (lookahead == 'u') ADVANCE(3819); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'a') ADVANCE(3937); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2740: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'a') ADVANCE(3007); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'a') ADVANCE(4050); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2741: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'a') ADVANCE(3495); - if (lookahead == 'i') ADVANCE(3540); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'a') ADVANCE(3637); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2742: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'a') ADVANCE(3495); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'a') ADVANCE(2896); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2743: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'a') ADVANCE(3879); - if (lookahead == 'b') ADVANCE(3509); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'a') ADVANCE(3671); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2744: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'a') ADVANCE(3879); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'a') ADVANCE(3936); + if (lookahead == 'e') ADVANCE(3054); + if (lookahead == 'u') ADVANCE(2852); + if (lookahead == 'y') ADVANCE(2525); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2745: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'a') ADVANCE(3514); - if (lookahead == 'e') ADVANCE(4034); - if (lookahead == 'i') ADVANCE(4230); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'a') ADVANCE(3936); + if (lookahead == 'e') ADVANCE(3040); + if (lookahead == 'i') ADVANCE(3950); + if (lookahead == 'o') ADVANCE(3699); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2746: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'a') ADVANCE(3514); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'a') ADVANCE(3936); + if (lookahead == 'e') ADVANCE(3055); + if (lookahead == 'y') ADVANCE(2525); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2747: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'a') ADVANCE(3914); - if (lookahead == 'l') ADVANCE(4185); - if (lookahead == 's') ADVANCE(3350); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'a') ADVANCE(3936); + if (lookahead == 'i') ADVANCE(3913); + if (lookahead == 'o') ADVANCE(3521); + if (lookahead == 'y') ADVANCE(2525); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2748: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'a') ADVANCE(2897); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'a') ADVANCE(3936); + if (lookahead == 'i') ADVANCE(3913); + if (lookahead == 'y') ADVANCE(2525); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2749: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'a') ADVANCE(3909); - if (lookahead == 'b') ADVANCE(3509); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'a') ADVANCE(3936); + if (lookahead == 'y') ADVANCE(2525); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2750: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'a') ADVANCE(3909); - if (lookahead == 'o') ADVANCE(2485); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'a') ADVANCE(3644); + if (lookahead == 'u') ADVANCE(4041); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2751: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'a') ADVANCE(3841); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'a') ADVANCE(2909); + if (lookahead == 'k') ADVANCE(3062); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2752: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'a') ADVANCE(2982); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'a') ADVANCE(3832); + if (lookahead == 'u') ADVANCE(3832); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2753: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'a') ADVANCE(3907); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'a') ADVANCE(3020); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2754: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'a') ADVANCE(3506); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'a') ADVANCE(3508); + if (lookahead == 'i') ADVANCE(3553); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2755: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'a') ADVANCE(3899); - if (lookahead == 'o') ADVANCE(3574); - if (lookahead == 'r') ADVANCE(2364); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'a') ADVANCE(3508); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2756: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'a') ADVANCE(3502); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'a') ADVANCE(3892); + if (lookahead == 'b') ADVANCE(3522); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2757: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'a') ADVANCE(3894); - if (lookahead == 'p') ADVANCE(3793); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'a') ADVANCE(3892); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2758: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'a') ADVANCE(3880); - if (lookahead == 'r') ADVANCE(2829); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'a') ADVANCE(3527); + if (lookahead == 'e') ADVANCE(4047); + if (lookahead == 'i') ADVANCE(4243); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2759: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'a') ADVANCE(3485); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'a') ADVANCE(3527); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2760: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'a') ADVANCE(3893); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'a') ADVANCE(3927); + if (lookahead == 'l') ADVANCE(4198); + if (lookahead == 's') ADVANCE(3363); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2761: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'a') ADVANCE(3493); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'a') ADVANCE(2910); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2762: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'a') ADVANCE(3480); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'a') ADVANCE(3922); + if (lookahead == 'b') ADVANCE(3522); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2763: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'a') ADVANCE(3486); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'a') ADVANCE(3922); + if (lookahead == 'o') ADVANCE(2498); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2764: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'a') ADVANCE(3481); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'a') ADVANCE(3854); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2765: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'a') ADVANCE(3947); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'a') ADVANCE(2995); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2766: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'a') ADVANCE(3499); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'a') ADVANCE(3920); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2767: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'a') ADVANCE(3487); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'a') ADVANCE(3519); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2768: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'a') ADVANCE(3868); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'a') ADVANCE(3912); + if (lookahead == 'o') ADVANCE(3587); + if (lookahead == 'r') ADVANCE(2377); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2769: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'a') ADVANCE(3897); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'a') ADVANCE(3515); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2770: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'a') ADVANCE(3873); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'a') ADVANCE(3907); + if (lookahead == 'p') ADVANCE(3806); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2771: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'a') ADVANCE(3951); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'a') ADVANCE(3893); + if (lookahead == 'r') ADVANCE(2842); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2772: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'a') ADVANCE(3896); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'a') ADVANCE(3498); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2773: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'a') ADVANCE(4135); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'a') ADVANCE(3906); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2774: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'a') ADVANCE(3962); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'a') ADVANCE(3506); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2775: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'a') ADVANCE(3935); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'a') ADVANCE(3493); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2776: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'a') ADVANCE(3926); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'a') ADVANCE(3499); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2777: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'a') ADVANCE(3932); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'a') ADVANCE(3494); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2778: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - ADVANCE_MAP( - 'a', 2944, - 'b', 3859, - 'c', 2325, - 'd', 3747, - 'e', 2530, - 'f', 3890, - 'h', 2340, - 'i', 3279, - 'l', 2713, - 'm', 2659, - 'o', 3224, - 'p', 2682, - 'q', 2926, - 'r', 2713, - 's', 2900, - 't', 2758, - 'u', 2841, - 'w', 2531, - 'z', 3518, - ); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'a') ADVANCE(3960); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2779: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - ADVANCE_MAP( - 'a', 2944, - 'c', 2736, - 'd', 3719, - 'e', 3182, - 'f', 3870, - 'h', 2881, - 'i', 3273, - 'o', 3806, - 's', 2921, - 'w', 3457, - ); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'a') ADVANCE(3512); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2780: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'a') ADVANCE(3530); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'a') ADVANCE(3500); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2781: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'a') ADVANCE(3599); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'a') ADVANCE(3881); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2782: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'a') ADVANCE(4056); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'a') ADVANCE(3910); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2783: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - ADVANCE_MAP( - 'a', 3825, - 'c', 3103, - 'f', 3870, - 'g', 3934, - 'h', 2881, - 'j', 2881, - 'o', 3806, - 's', 2921, - ); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'a') ADVANCE(3886); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2784: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'a') ADVANCE(2976); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'a') ADVANCE(3964); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2785: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'a') ADVANCE(3023); - if (lookahead == 'i') ADVANCE(2830); - if (lookahead == 'p') ADVANCE(3085); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'a') ADVANCE(3909); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2786: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'a') ADVANCE(3983); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'a') ADVANCE(4148); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2787: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'a') ADVANCE(4132); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'a') ADVANCE(3975); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2788: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'a') ADVANCE(3950); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'a') ADVANCE(3948); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2789: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'a') ADVANCE(3833); - if (lookahead == 'd') ADVANCE(3719); - if (lookahead == 'e') ADVANCE(3855); - if (lookahead == 'g') ADVANCE(4098); - if (lookahead == 's') ADVANCE(3377); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'a') ADVANCE(3939); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2790: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'a') ADVANCE(3833); - if (lookahead == 'e') ADVANCE(3858); - if (lookahead == 's') ADVANCE(3377); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'a') ADVANCE(3945); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2791: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'a') ADVANCE(3833); - if (lookahead == 's') ADVANCE(3377); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + ADVANCE_MAP( + 'a', 2957, + 'b', 3872, + 'c', 2338, + 'd', 3760, + 'e', 2543, + 'f', 3903, + 'h', 2353, + 'i', 3292, + 'l', 2726, + 'm', 2672, + 'o', 3237, + 'p', 2695, + 'q', 2939, + 'r', 2726, + 's', 2913, + 't', 2771, + 'u', 2854, + 'w', 2544, + 'z', 3531, + ); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2792: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'a') ADVANCE(2962); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + ADVANCE_MAP( + 'a', 2957, + 'c', 2749, + 'd', 3732, + 'e', 3195, + 'f', 3883, + 'h', 2894, + 'i', 3286, + 'o', 3819, + 's', 2934, + 'w', 3470, + ); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2793: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'a') ADVANCE(3984); - if (lookahead == 'l') ADVANCE(4261); - if (lookahead == 'r') ADVANCE(3054); - if (lookahead == 'v') ADVANCE(3203); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'a') ADVANCE(3543); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2794: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'a') ADVANCE(3669); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'a') ADVANCE(3612); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2795: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'a') ADVANCE(3520); - if (lookahead == 'k') ADVANCE(2485); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'a') ADVANCE(4069); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2796: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'a') ADVANCE(4142); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + ADVANCE_MAP( + 'a', 3838, + 'c', 3116, + 'f', 3883, + 'g', 3947, + 'h', 2894, + 'j', 2894, + 'o', 3819, + 's', 2934, + ); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2797: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'a') ADVANCE(3996); - if (lookahead == 'l') ADVANCE(3535); - if (lookahead == 'r') ADVANCE(2946); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'a') ADVANCE(2989); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2798: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'a') ADVANCE(3946); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'a') ADVANCE(3036); + if (lookahead == 'i') ADVANCE(2843); + if (lookahead == 'p') ADVANCE(3098); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2799: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'a') ADVANCE(3383); - if (lookahead == 'i') ADVANCE(3720); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'a') ADVANCE(3996); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2800: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'a') ADVANCE(3383); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'a') ADVANCE(4145); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2801: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'a') ADVANCE(4196); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'a') ADVANCE(3963); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2802: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'a') ADVANCE(3542); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'a') ADVANCE(3846); + if (lookahead == 'd') ADVANCE(3732); + if (lookahead == 'e') ADVANCE(3868); + if (lookahead == 'g') ADVANCE(4111); + if (lookahead == 's') ADVANCE(3390); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2803: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'a') ADVANCE(3987); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'a') ADVANCE(3846); + if (lookahead == 'e') ADVANCE(3871); + if (lookahead == 's') ADVANCE(3390); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2804: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'a') ADVANCE(4198); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'a') ADVANCE(3846); + if (lookahead == 's') ADVANCE(3390); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2805: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'a') ADVANCE(4150); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'a') ADVANCE(2975); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2806: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'a') ADVANCE(3670); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'a') ADVANCE(3997); + if (lookahead == 'l') ADVANCE(4274); + if (lookahead == 'r') ADVANCE(3067); + if (lookahead == 'v') ADVANCE(3216); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2807: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'a') ADVANCE(3989); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'a') ADVANCE(3682); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2808: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'a') ADVANCE(3527); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'a') ADVANCE(3533); + if (lookahead == 'k') ADVANCE(2498); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2809: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'a') ADVANCE(3979); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'a') ADVANCE(4155); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2810: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'a') ADVANCE(3938); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'a') ADVANCE(4009); + if (lookahead == 'l') ADVANCE(3548); + if (lookahead == 'r') ADVANCE(2959); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2811: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'a') ADVANCE(3985); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'a') ADVANCE(3959); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2812: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'a') ADVANCE(3986); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'a') ADVANCE(3396); + if (lookahead == 'i') ADVANCE(3733); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2813: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'a') ADVANCE(3577); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'a') ADVANCE(3396); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2814: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'a') ADVANCE(4001); - if (lookahead == 'd') ADVANCE(3779); - if (lookahead == 'h') ADVANCE(2771); - if (lookahead == 'l') ADVANCE(4185); - if (lookahead == 's') ADVANCE(3352); - if (lookahead == 'u') ADVANCE(3851); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'a') ADVANCE(4209); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2815: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'a') ADVANCE(4001); - if (lookahead == 'd') ADVANCE(3795); - if (lookahead == 'h') ADVANCE(2771); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'a') ADVANCE(3555); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2816: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'a') ADVANCE(4001); - if (lookahead == 'r') ADVANCE(3437); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'a') ADVANCE(4000); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2817: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'a') ADVANCE(4001); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'a') ADVANCE(4211); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2818: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'a') ADVANCE(4012); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'a') ADVANCE(4163); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2819: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'a') ADVANCE(4158); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'a') ADVANCE(3683); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2820: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'a') ADVANCE(4006); - if (lookahead == 'h') ADVANCE(2831); - if (lookahead == 'l') ADVANCE(3195); - if (lookahead == 'r') ADVANCE(3452); - if (lookahead == 's') ADVANCE(3862); - if (lookahead == 't') ADVANCE(3340); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'a') ADVANCE(4002); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2821: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'a') ADVANCE(4006); - if (lookahead == 'h') ADVANCE(2831); - if (lookahead == 'l') ADVANCE(3215); - if (lookahead == 'r') ADVANCE(3446); - if (lookahead == 't') ADVANCE(3340); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'a') ADVANCE(3540); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2822: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'a') ADVANCE(4160); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'a') ADVANCE(3992); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2823: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'a') ADVANCE(4007); - if (lookahead == 'd') ADVANCE(2717); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'a') ADVANCE(3951); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2824: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'a') ADVANCE(4007); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'a') ADVANCE(3998); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2825: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'a') ADVANCE(4008); - if (lookahead == 'h') ADVANCE(2833); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'a') ADVANCE(3999); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2826: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'a') ADVANCE(4008); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'a') ADVANCE(3590); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2827: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'a') ADVANCE(4162); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'a') ADVANCE(4014); + if (lookahead == 'd') ADVANCE(3792); + if (lookahead == 'h') ADVANCE(2784); + if (lookahead == 'l') ADVANCE(4198); + if (lookahead == 's') ADVANCE(3365); + if (lookahead == 'u') ADVANCE(3864); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2828: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'a') ADVANCE(4009); - if (lookahead == 'h') ADVANCE(2833); - if (lookahead == 's') ADVANCE(3862); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'a') ADVANCE(4014); + if (lookahead == 'd') ADVANCE(3808); + if (lookahead == 'h') ADVANCE(2784); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2829: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'a') ADVANCE(3442); - if (lookahead == 'n') ADVANCE(4023); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'a') ADVANCE(4014); + if (lookahead == 'r') ADVANCE(3450); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2830: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'a') ADVANCE(3691); - if (lookahead == 'd') ADVANCE(3719); - if (lookahead == 'e') ADVANCE(2512); - if (lookahead == 'm') ADVANCE(3436); - if (lookahead == 'p') ADVANCE(3568); - if (lookahead == 's') ADVANCE(2839); - if (lookahead == 't') ADVANCE(3420); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'a') ADVANCE(4014); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2831: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'a') ADVANCE(4014); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'a') ADVANCE(4025); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2832: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'a') ADVANCE(3698); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'a') ADVANCE(4171); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2833: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'a') ADVANCE(4016); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'a') ADVANCE(4019); + if (lookahead == 'h') ADVANCE(2844); + if (lookahead == 'l') ADVANCE(3208); + if (lookahead == 'r') ADVANCE(3465); + if (lookahead == 's') ADVANCE(3875); + if (lookahead == 't') ADVANCE(3353); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2834: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'a') ADVANCE(3699); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'a') ADVANCE(4019); + if (lookahead == 'h') ADVANCE(2844); + if (lookahead == 'l') ADVANCE(3228); + if (lookahead == 'r') ADVANCE(3459); + if (lookahead == 't') ADVANCE(3353); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2835: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'a') ADVANCE(3701); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'a') ADVANCE(4173); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2836: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'a') ADVANCE(3702); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'a') ADVANCE(4020); + if (lookahead == 'd') ADVANCE(2730); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2837: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'a') ADVANCE(3703); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'a') ADVANCE(4020); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2838: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'b') ADVANCE(2512); - if (lookahead == 'u') ADVANCE(3709); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'a') ADVANCE(4021); + if (lookahead == 'h') ADVANCE(2846); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2839: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'b') ADVANCE(2512); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'a') ADVANCE(4021); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2840: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'b') ADVANCE(2470); - if (lookahead == 'c') ADVANCE(2983); - if (lookahead == 'm') ADVANCE(2512); - if (lookahead == 'p') ADVANCE(2397); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'a') ADVANCE(4175); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2841: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'b') ADVANCE(2295); - if (lookahead == 'c') ADVANCE(2895); - if (lookahead == 'm') ADVANCE(2512); - if (lookahead == 'n') ADVANCE(3242); - if (lookahead == 'p') ADVANCE(2372); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'a') ADVANCE(4022); + if (lookahead == 'h') ADVANCE(2846); + if (lookahead == 's') ADVANCE(3875); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2842: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'b') ADVANCE(2471); - if (lookahead == 'c') ADVANCE(2951); - if (lookahead == 'p') ADVANCE(2471); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'a') ADVANCE(3455); + if (lookahead == 'n') ADVANCE(4036); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2843: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'b') ADVANCE(2371); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'a') ADVANCE(3704); + if (lookahead == 'd') ADVANCE(3732); + if (lookahead == 'e') ADVANCE(2525); + if (lookahead == 'm') ADVANCE(3449); + if (lookahead == 'p') ADVANCE(3581); + if (lookahead == 's') ADVANCE(2852); + if (lookahead == 't') ADVANCE(3433); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2844: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'b') ADVANCE(2378); - if (lookahead == 'p') ADVANCE(2378); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'a') ADVANCE(4027); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2845: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'b') ADVANCE(2669); - if (lookahead == 'g') ADVANCE(3089); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'a') ADVANCE(3711); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2846: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'b') ADVANCE(2669); - if (lookahead == 'm') ADVANCE(2512); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'a') ADVANCE(4029); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2847: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'b') ADVANCE(2669); - if (lookahead == 't') ADVANCE(2512); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'a') ADVANCE(3712); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2848: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'b') ADVANCE(2669); - if (lookahead == 't') ADVANCE(2420); - if (lookahead == 'y') ADVANCE(2641); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'a') ADVANCE(3714); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2849: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'b') ADVANCE(2669); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'a') ADVANCE(3715); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2850: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'b') ADVANCE(3475); - if (lookahead == 'c') ADVANCE(3768); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'a') ADVANCE(3716); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2851: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'b') ADVANCE(2379); - if (lookahead == 'p') ADVANCE(2379); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'b') ADVANCE(2525); + if (lookahead == 'u') ADVANCE(3722); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2852: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'b') ADVANCE(4214); - if (lookahead == 'p') ADVANCE(3335); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'b') ADVANCE(2525); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2853: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'b') ADVANCE(3011); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'b') ADVANCE(2483); + if (lookahead == 'c') ADVANCE(2996); + if (lookahead == 'm') ADVANCE(2525); + if (lookahead == 'p') ADVANCE(2410); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2854: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'b') ADVANCE(3924); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'b') ADVANCE(2308); + if (lookahead == 'c') ADVANCE(2908); + if (lookahead == 'm') ADVANCE(2525); + if (lookahead == 'n') ADVANCE(3255); + if (lookahead == 'p') ADVANCE(2385); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2855: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'b') ADVANCE(3052); - if (lookahead == 'p') ADVANCE(3052); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'b') ADVANCE(2484); + if (lookahead == 'c') ADVANCE(2964); + if (lookahead == 'p') ADVANCE(2484); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2856: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'b') ADVANCE(3488); - if (lookahead == 'c') ADVANCE(4215); - if (lookahead == 'n') ADVANCE(3242); - if (lookahead == 'p') ADVANCE(2298); - if (lookahead == 't') ADVANCE(4204); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'b') ADVANCE(2384); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2857: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'b') ADVANCE(4029); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'b') ADVANCE(2391); + if (lookahead == 'p') ADVANCE(2391); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2858: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'b') ADVANCE(2653); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'b') ADVANCE(2682); + if (lookahead == 'g') ADVANCE(3102); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2859: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'b') ADVANCE(3198); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'b') ADVANCE(2682); + if (lookahead == 'm') ADVANCE(2525); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2860: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'b') ADVANCE(3632); - if (lookahead == 'p') ADVANCE(3632); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'b') ADVANCE(2682); + if (lookahead == 't') ADVANCE(2525); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2861: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'b') ADVANCE(4073); - if (lookahead == 'c') ADVANCE(2984); - if (lookahead == 'p') ADVANCE(3150); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'b') ADVANCE(2682); + if (lookahead == 't') ADVANCE(2433); + if (lookahead == 'y') ADVANCE(2654); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2862: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'b') ADVANCE(4073); - if (lookahead == 'p') ADVANCE(3150); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'b') ADVANCE(2682); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2863: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'b') ADVANCE(3544); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'b') ADVANCE(3488); + if (lookahead == 'c') ADVANCE(3781); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2864: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'b') ADVANCE(3547); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'b') ADVANCE(2392); + if (lookahead == 'p') ADVANCE(2392); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2865: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'b') ADVANCE(3990); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'b') ADVANCE(4227); + if (lookahead == 'p') ADVANCE(3348); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2866: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'b') ADVANCE(3550); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'b') ADVANCE(3024); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2867: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'b') ADVANCE(3551); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'b') ADVANCE(3937); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2868: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'b') ADVANCE(3565); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'b') ADVANCE(3065); + if (lookahead == 'p') ADVANCE(3065); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2869: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'b') ADVANCE(2777); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'b') ADVANCE(3501); + if (lookahead == 'c') ADVANCE(4228); + if (lookahead == 'n') ADVANCE(3255); + if (lookahead == 'p') ADVANCE(2311); + if (lookahead == 't') ADVANCE(4217); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2870: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'b') ADVANCE(3556); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'b') ADVANCE(4042); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2871: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'b') ADVANCE(3557); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'b') ADVANCE(2666); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2872: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'b') ADVANCE(3558); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'b') ADVANCE(3211); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2873: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'b') ADVANCE(4076); - if (lookahead == 'p') ADVANCE(4076); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'b') ADVANCE(3645); + if (lookahead == 'p') ADVANCE(3645); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2874: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'c') ADVANCE(4259); - if (lookahead == 'e') ADVANCE(4233); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'b') ADVANCE(4086); + if (lookahead == 'c') ADVANCE(2997); + if (lookahead == 'p') ADVANCE(3163); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2875: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'c') ADVANCE(4259); - if (lookahead == 'e') ADVANCE(2956); - if (lookahead == 'i') ADVANCE(2512); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'b') ADVANCE(4086); + if (lookahead == 'p') ADVANCE(3163); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2876: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'c') ADVANCE(4259); - if (lookahead == 'f') ADVANCE(3870); - if (lookahead == 'i') ADVANCE(3569); - if (lookahead == 'o') ADVANCE(3801); - if (lookahead == 's') ADVANCE(2921); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'b') ADVANCE(3557); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2877: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'c') ADVANCE(4259); - if (lookahead == 'g') ADVANCE(3750); - if (lookahead == 'p') ADVANCE(3218); - if (lookahead == 't') ADVANCE(2652); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'b') ADVANCE(3560); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2878: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'c') ADVANCE(4259); - if (lookahead == 'i') ADVANCE(3273); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'b') ADVANCE(4003); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2879: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'c') ADVANCE(4259); - if (lookahead == 'm') ADVANCE(2425); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'b') ADVANCE(3563); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2880: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'c') ADVANCE(4259); - if (lookahead == 'x') ADVANCE(2885); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'b') ADVANCE(3564); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2881: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'c') ADVANCE(4259); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'b') ADVANCE(3578); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2882: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'c') ADVANCE(2512); - if (lookahead == 'i') ADVANCE(3870); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'b') ADVANCE(2790); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2883: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'c') ADVANCE(2512); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'b') ADVANCE(3569); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2884: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'c') ADVANCE(2457); - if (lookahead == 'l') ADVANCE(3050); - if (lookahead == 'p') ADVANCE(2468); - if (lookahead == 'r') ADVANCE(3471); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'b') ADVANCE(3570); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2885: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'c') ADVANCE(2425); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'b') ADVANCE(3571); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2886: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - ADVANCE_MAP( - 'c', 2693, - 'd', 4136, - 'f', 3870, - 'h', 2529, - 'i', 2512, - 'l', 2529, - 'm', 2696, - 'n', 3379, - 'o', 2997, - 'r', 2529, - 's', 2914, - 'u', 3828, - 'v', 3123, - 'w', 3086, - ); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'b') ADVANCE(4089); + if (lookahead == 'p') ADVANCE(4089); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2887: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'c') ADVANCE(2693); - if (lookahead == 'o') ADVANCE(2998); - if (lookahead == 's') ADVANCE(3864); - if (lookahead == 't') ADVANCE(4020); - if (lookahead == 'u') ADVANCE(3829); - if (lookahead == 'v') ADVANCE(3123); - if (lookahead == 'w') ADVANCE(3086); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'c') ADVANCE(4272); + if (lookahead == 'e') ADVANCE(4246); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2888: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'c') ADVANCE(3768); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'c') ADVANCE(4272); + if (lookahead == 'e') ADVANCE(2969); + if (lookahead == 'i') ADVANCE(2525); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2889: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'c') ADVANCE(4290); - if (lookahead == 'h') ADVANCE(2881); - if (lookahead == 't') ADVANCE(3941); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'c') ADVANCE(4272); + if (lookahead == 'f') ADVANCE(3883); + if (lookahead == 'i') ADVANCE(3582); + if (lookahead == 'o') ADVANCE(3814); + if (lookahead == 's') ADVANCE(2934); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2890: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'c') ADVANCE(4290); - if (lookahead == 'o') ADVANCE(3478); - if (lookahead == 't') ADVANCE(3941); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'c') ADVANCE(4272); + if (lookahead == 'g') ADVANCE(3763); + if (lookahead == 'p') ADVANCE(3231); + if (lookahead == 't') ADVANCE(2665); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2891: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'c') ADVANCE(2365); - if (lookahead == 'h') ADVANCE(3786); - if (lookahead == 'i') ADVANCE(3600); - if (lookahead == 'm') ADVANCE(3342); - if (lookahead == 'p') ADVANCE(2669); - if (lookahead == 'q') ADVANCE(4057); - if (lookahead == 'u') ADVANCE(2842); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'c') ADVANCE(4272); + if (lookahead == 'i') ADVANCE(3286); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2892: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'c') ADVANCE(3051); - if (lookahead == 'd') ADVANCE(3389); - if (lookahead == 'e') ADVANCE(3601); - if (lookahead == 'n') ADVANCE(3250); - if (lookahead == 'q') ADVANCE(4174); - if (lookahead == 'r') ADVANCE(3883); - if (lookahead == 't') ADVANCE(2799); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'c') ADVANCE(4272); + if (lookahead == 'm') ADVANCE(2438); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2893: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'c') ADVANCE(4182); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'c') ADVANCE(4272); + if (lookahead == 'x') ADVANCE(2898); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2894: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'c') ADVANCE(2275); - if (lookahead == 's') ADVANCE(3478); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'c') ADVANCE(4272); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2895: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'c') ADVANCE(2343); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'c') ADVANCE(2525); + if (lookahead == 'i') ADVANCE(3883); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2896: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'c') ADVANCE(4285); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'c') ADVANCE(2525); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2897: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'c') ADVANCE(3046); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'c') ADVANCE(2470); + if (lookahead == 'l') ADVANCE(3063); + if (lookahead == 'p') ADVANCE(2481); + if (lookahead == 'r') ADVANCE(3484); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2898: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'c') ADVANCE(3870); - if (lookahead == 'd') ADVANCE(3719); - if (lookahead == 'i') ADVANCE(3583); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'c') ADVANCE(2438); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2899: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'c') ADVANCE(3870); - if (lookahead == 'e') ADVANCE(3592); - if (lookahead == 'i') ADVANCE(3593); - if (lookahead == 'o') ADVANCE(3482); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + ADVANCE_MAP( + 'c', 2706, + 'd', 4149, + 'f', 3883, + 'h', 2542, + 'i', 2525, + 'l', 2542, + 'm', 2709, + 'n', 3392, + 'o', 3010, + 'r', 2542, + 's', 2927, + 'u', 3841, + 'v', 3136, + 'w', 3099, + ); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2900: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'c') ADVANCE(3870); - if (lookahead == 'e') ADVANCE(4126); - if (lookahead == 'm') ADVANCE(3432); - if (lookahead == 't') ADVANCE(2770); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'c') ADVANCE(2706); + if (lookahead == 'o') ADVANCE(3011); + if (lookahead == 's') ADVANCE(3877); + if (lookahead == 't') ADVANCE(4033); + if (lookahead == 'u') ADVANCE(3842); + if (lookahead == 'v') ADVANCE(3136); + if (lookahead == 'w') ADVANCE(3099); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2901: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'c') ADVANCE(3870); - if (lookahead == 'e') ADVANCE(3903); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'c') ADVANCE(3781); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2902: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'c') ADVANCE(3870); - if (lookahead == 'g') ADVANCE(3047); - if (lookahead == 't') ADVANCE(3303); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'c') ADVANCE(4303); + if (lookahead == 'h') ADVANCE(2894); + if (lookahead == 't') ADVANCE(3954); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2903: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'c') ADVANCE(3870); - if (lookahead == 'g') ADVANCE(3402); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'c') ADVANCE(4303); + if (lookahead == 'o') ADVANCE(3491); + if (lookahead == 't') ADVANCE(3954); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2904: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'c') ADVANCE(3870); - if (lookahead == 'h') ADVANCE(2512); - if (lookahead == 't') ADVANCE(3941); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'c') ADVANCE(2378); + if (lookahead == 'h') ADVANCE(3799); + if (lookahead == 'i') ADVANCE(3613); + if (lookahead == 'm') ADVANCE(3355); + if (lookahead == 'p') ADVANCE(2682); + if (lookahead == 'q') ADVANCE(4070); + if (lookahead == 'u') ADVANCE(2855); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2905: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'c') ADVANCE(3870); - if (lookahead == 'h') ADVANCE(2512); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'c') ADVANCE(3064); + if (lookahead == 'd') ADVANCE(3402); + if (lookahead == 'e') ADVANCE(3614); + if (lookahead == 'n') ADVANCE(3263); + if (lookahead == 'q') ADVANCE(4187); + if (lookahead == 'r') ADVANCE(3896); + if (lookahead == 't') ADVANCE(2812); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2906: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'c') ADVANCE(3870); - if (lookahead == 'i') ADVANCE(2512); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'c') ADVANCE(4195); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2907: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'c') ADVANCE(3870); - if (lookahead == 'i') ADVANCE(3583); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'c') ADVANCE(2288); + if (lookahead == 's') ADVANCE(3491); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2908: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'c') ADVANCE(3870); - if (lookahead == 'i') ADVANCE(3588); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'c') ADVANCE(2356); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2909: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'c') ADVANCE(3870); - if (lookahead == 'i') ADVANCE(3630); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'c') ADVANCE(4298); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2910: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'c') ADVANCE(3870); - if (lookahead == 'l') ADVANCE(2700); - if (lookahead == 't') ADVANCE(3941); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'c') ADVANCE(3059); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2911: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'c') ADVANCE(3870); - if (lookahead == 'l') ADVANCE(3242); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'c') ADVANCE(3883); + if (lookahead == 'd') ADVANCE(3732); + if (lookahead == 'i') ADVANCE(3596); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2912: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'c') ADVANCE(3870); - if (lookahead == 'l') ADVANCE(2727); - if (lookahead == 'o') ADVANCE(3478); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'c') ADVANCE(3883); + if (lookahead == 'e') ADVANCE(3605); + if (lookahead == 'i') ADVANCE(3606); + if (lookahead == 'o') ADVANCE(3495); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2913: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'c') ADVANCE(3870); - if (lookahead == 'l') ADVANCE(2727); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'c') ADVANCE(3883); + if (lookahead == 'e') ADVANCE(4139); + if (lookahead == 'm') ADVANCE(3445); + if (lookahead == 't') ADVANCE(2783); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2914: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'c') ADVANCE(3870); - if (lookahead == 'q') ADVANCE(2967); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'c') ADVANCE(3883); + if (lookahead == 'e') ADVANCE(3916); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2915: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'c') ADVANCE(3870); - if (lookahead == 's') ADVANCE(3385); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'c') ADVANCE(3883); + if (lookahead == 'g') ADVANCE(3060); + if (lookahead == 't') ADVANCE(3316); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2916: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'c') ADVANCE(3870); - if (lookahead == 't') ADVANCE(2512); - if (lookahead == 'y') ADVANCE(3608); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'c') ADVANCE(3883); + if (lookahead == 'g') ADVANCE(3415); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2917: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'c') ADVANCE(3870); - if (lookahead == 't') ADVANCE(3838); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'c') ADVANCE(3883); + if (lookahead == 'h') ADVANCE(2525); + if (lookahead == 't') ADVANCE(3954); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2918: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'c') ADVANCE(3870); - if (lookahead == 't') ADVANCE(3941); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'c') ADVANCE(3883); + if (lookahead == 'h') ADVANCE(2525); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2919: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'c') ADVANCE(3870); - if (lookahead == 'u') ADVANCE(2851); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'c') ADVANCE(3883); + if (lookahead == 'i') ADVANCE(2525); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2920: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'c') ADVANCE(3870); - if (lookahead == 'u') ADVANCE(2860); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'c') ADVANCE(3883); + if (lookahead == 'i') ADVANCE(3596); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2921: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'c') ADVANCE(3870); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'c') ADVANCE(3883); + if (lookahead == 'i') ADVANCE(3601); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2922: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'c') ADVANCE(2652); - if (lookahead == 'l') ADVANCE(3033); - if (lookahead == 'q') ADVANCE(4194); - if (lookahead == 's') ADVANCE(3303); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'c') ADVANCE(3883); + if (lookahead == 'i') ADVANCE(3643); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2923: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'c') ADVANCE(2652); - if (lookahead == 'q') ADVANCE(4194); - if (lookahead == 'r') ADVANCE(3032); - if (lookahead == 's') ADVANCE(3303); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'c') ADVANCE(3883); + if (lookahead == 'l') ADVANCE(2713); + if (lookahead == 't') ADVANCE(3954); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2924: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'c') ADVANCE(3470); - if (lookahead == 'r') ADVANCE(4228); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'c') ADVANCE(3883); + if (lookahead == 'l') ADVANCE(3255); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2925: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'c') ADVANCE(3637); - if (lookahead == 'i') ADVANCE(3707); - if (lookahead == 'm') ADVANCE(3383); - if (lookahead == 'p') ADVANCE(2512); - if (lookahead == 't') ADVANCE(3139); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'c') ADVANCE(3883); + if (lookahead == 'l') ADVANCE(2740); + if (lookahead == 'o') ADVANCE(3491); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2926: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'c') ADVANCE(2739); - if (lookahead == 's') ADVANCE(4175); - if (lookahead == 'u') ADVANCE(2342); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'c') ADVANCE(3883); + if (lookahead == 'l') ADVANCE(2740); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2927: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'c') ADVANCE(4080); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'c') ADVANCE(3883); + if (lookahead == 'q') ADVANCE(2980); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2928: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'c') ADVANCE(3461); - if (lookahead == 'r') ADVANCE(4232); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'c') ADVANCE(3883); + if (lookahead == 's') ADVANCE(3398); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2929: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'c') ADVANCE(3409); - if (lookahead == 's') ADVANCE(3376); - if (lookahead == 'u') ADVANCE(2745); - if (lookahead == 'v') ADVANCE(3845); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'c') ADVANCE(3883); + if (lookahead == 't') ADVANCE(2525); + if (lookahead == 'y') ADVANCE(3621); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2930: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'c') ADVANCE(3411); - if (lookahead == 'e') ADVANCE(3006); - if (lookahead == 'f') ADVANCE(3870); - if (lookahead == 'o') ADVANCE(3806); - if (lookahead == 'p') ADVANCE(2512); - if (lookahead == 'r') ADVANCE(2393); - if (lookahead == 's') ADVANCE(2921); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'c') ADVANCE(3883); + if (lookahead == 't') ADVANCE(3851); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2931: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'c') ADVANCE(3411); - if (lookahead == 'e') ADVANCE(3035); - if (lookahead == 'f') ADVANCE(3870); - if (lookahead == 'o') ADVANCE(3806); - if (lookahead == 's') ADVANCE(2921); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'c') ADVANCE(3883); + if (lookahead == 't') ADVANCE(3954); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2932: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'c') ADVANCE(4183); - if (lookahead == 'r') ADVANCE(3870); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'c') ADVANCE(3883); + if (lookahead == 'u') ADVANCE(2864); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2933: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'c') ADVANCE(4183); - if (lookahead == 'r') ADVANCE(3906); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'c') ADVANCE(3883); + if (lookahead == 'u') ADVANCE(2873); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2934: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'c') ADVANCE(4183); - if (lookahead == 's') ADVANCE(4080); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'c') ADVANCE(3883); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2935: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'c') ADVANCE(4183); - if (lookahead == 's') ADVANCE(4132); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'c') ADVANCE(2665); + if (lookahead == 'l') ADVANCE(3046); + if (lookahead == 'q') ADVANCE(4207); + if (lookahead == 's') ADVANCE(3316); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2936: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'c') ADVANCE(4183); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'c') ADVANCE(2665); + if (lookahead == 'q') ADVANCE(4207); + if (lookahead == 'r') ADVANCE(3045); + if (lookahead == 's') ADVANCE(3316); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2937: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'c') ADVANCE(3798); - if (lookahead == 'd') ADVANCE(3870); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'c') ADVANCE(3483); + if (lookahead == 'r') ADVANCE(4241); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2938: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - ADVANCE_MAP( - 'c', 4215, - 'e', 3601, - 'g', 3988, - 'm', 2853, - 'n', 3248, - 'p', 2512, - 'q', 4174, - 'r', 3881, - 't', 2344, - ); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'c') ADVANCE(3650); + if (lookahead == 'i') ADVANCE(3720); + if (lookahead == 'm') ADVANCE(3396); + if (lookahead == 'p') ADVANCE(2525); + if (lookahead == 't') ADVANCE(3152); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2939: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'c') ADVANCE(4215); - if (lookahead == 'm') ADVANCE(2853); - if (lookahead == 'n') ADVANCE(3242); - if (lookahead == 'p') ADVANCE(3567); - if (lookahead == 'r') ADVANCE(3870); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'c') ADVANCE(2752); + if (lookahead == 's') ADVANCE(4188); + if (lookahead == 'u') ADVANCE(2355); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2940: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'c') ADVANCE(4215); - if (lookahead == 'm') ADVANCE(3611); - if (lookahead == 'p') ADVANCE(2512); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'c') ADVANCE(4093); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2941: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'c') ADVANCE(4215); - if (lookahead == 'n') ADVANCE(3242); - if (lookahead == 'r') ADVANCE(3916); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'c') ADVANCE(3474); + if (lookahead == 'r') ADVANCE(4245); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2942: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'c') ADVANCE(4215); - if (lookahead == 'p') ADVANCE(2337); - if (lookahead == 'r') ADVANCE(3082); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'c') ADVANCE(3422); + if (lookahead == 's') ADVANCE(3389); + if (lookahead == 'u') ADVANCE(2758); + if (lookahead == 'v') ADVANCE(3858); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2943: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'c') ADVANCE(4215); - if (lookahead == 'p') ADVANCE(2419); - if (lookahead == 'y') ADVANCE(3528); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'c') ADVANCE(3424); + if (lookahead == 'e') ADVANCE(3019); + if (lookahead == 'f') ADVANCE(3883); + if (lookahead == 'o') ADVANCE(3819); + if (lookahead == 'p') ADVANCE(2525); + if (lookahead == 'r') ADVANCE(2406); + if (lookahead == 's') ADVANCE(2934); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2944: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'c') ADVANCE(4215); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'c') ADVANCE(3424); + if (lookahead == 'e') ADVANCE(3048); + if (lookahead == 'f') ADVANCE(3883); + if (lookahead == 'o') ADVANCE(3819); + if (lookahead == 's') ADVANCE(2934); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2945: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'c') ADVANCE(3109); - if (lookahead == 't') ADVANCE(2512); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'c') ADVANCE(4196); + if (lookahead == 'r') ADVANCE(3883); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2946: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'c') ADVANCE(3750); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'c') ADVANCE(4196); + if (lookahead == 'r') ADVANCE(3919); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2947: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'c') ADVANCE(3459); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'c') ADVANCE(4196); + if (lookahead == 's') ADVANCE(4093); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2948: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'c') ADVANCE(3468); - if (lookahead == 's') ADVANCE(3060); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'c') ADVANCE(4196); + if (lookahead == 's') ADVANCE(4145); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2949: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'c') ADVANCE(3468); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'c') ADVANCE(4196); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2950: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'c') ADVANCE(3460); - if (lookahead == 'n') ADVANCE(2637); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'c') ADVANCE(3811); + if (lookahead == 'd') ADVANCE(3883); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2951: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'c') ADVANCE(2387); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + ADVANCE_MAP( + 'c', 4228, + 'e', 3614, + 'g', 4001, + 'm', 2866, + 'n', 3261, + 'p', 2525, + 'q', 4187, + 'r', 3894, + 't', 2357, + ); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2952: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'c') ADVANCE(3336); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'c') ADVANCE(4228); + if (lookahead == 'm') ADVANCE(2866); + if (lookahead == 'n') ADVANCE(3255); + if (lookahead == 'p') ADVANCE(3580); + if (lookahead == 'r') ADVANCE(3883); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2953: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'c') ADVANCE(3729); - if (lookahead == 'i') ADVANCE(3637); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'c') ADVANCE(4228); + if (lookahead == 'm') ADVANCE(3624); + if (lookahead == 'p') ADVANCE(2525); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2954: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'c') ADVANCE(3463); - if (lookahead == 'n') ADVANCE(3459); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'c') ADVANCE(4228); + if (lookahead == 'n') ADVANCE(3255); + if (lookahead == 'r') ADVANCE(3929); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2955: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'c') ADVANCE(2696); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'c') ADVANCE(4228); + if (lookahead == 'p') ADVANCE(2350); + if (lookahead == 'r') ADVANCE(3095); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2956: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'c') ADVANCE(3464); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'c') ADVANCE(4228); + if (lookahead == 'p') ADVANCE(2432); + if (lookahead == 'y') ADVANCE(3541); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2957: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'c') ADVANCE(3478); - if (lookahead == 'i') ADVANCE(4034); - if (lookahead == 'p') ADVANCE(3178); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'c') ADVANCE(4228); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2958: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'c') ADVANCE(3473); - if (lookahead == 'n') ADVANCE(4043); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'c') ADVANCE(3122); + if (lookahead == 't') ADVANCE(2525); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2959: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'c') ADVANCE(2801); - if (lookahead == 'r') ADVANCE(3661); - if (lookahead == 't') ADVANCE(2652); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'c') ADVANCE(3763); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2960: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'c') ADVANCE(3465); - if (lookahead == 'k') ADVANCE(4229); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'c') ADVANCE(3472); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2961: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'c') ADVANCE(2883); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'c') ADVANCE(3481); + if (lookahead == 's') ADVANCE(3073); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2962: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'c') ADVANCE(3052); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'c') ADVANCE(3481); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2963: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'c') ADVANCE(3317); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'c') ADVANCE(3473); + if (lookahead == 'n') ADVANCE(2650); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2964: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'c') ADVANCE(3923); - if (lookahead == 'd') ADVANCE(2512); - if (lookahead == 'n') ADVANCE(4185); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'c') ADVANCE(2400); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2965: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'c') ADVANCE(3923); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'c') ADVANCE(3349); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2966: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'c') ADVANCE(4043); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'c') ADVANCE(3742); + if (lookahead == 'i') ADVANCE(3650); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2967: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'c') ADVANCE(4178); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'c') ADVANCE(3476); + if (lookahead == 'n') ADVANCE(3472); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2968: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'c') ADVANCE(4077); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'c') ADVANCE(2709); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2969: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'c') ADVANCE(2720); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'c') ADVANCE(3477); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2970: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'c') ADVANCE(3354); - if (lookahead == 'r') ADVANCE(2512); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'c') ADVANCE(3491); + if (lookahead == 'i') ADVANCE(4047); + if (lookahead == 'p') ADVANCE(3191); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2971: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'c') ADVANCE(3354); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'c') ADVANCE(3486); + if (lookahead == 'n') ADVANCE(4056); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2972: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'c') ADVANCE(3186); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'c') ADVANCE(2814); + if (lookahead == 'r') ADVANCE(3674); + if (lookahead == 't') ADVANCE(2665); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2973: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'c') ADVANCE(3912); - if (lookahead == 'd') ADVANCE(2333); - if (lookahead == 'n') ADVANCE(4193); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'c') ADVANCE(3478); + if (lookahead == 'k') ADVANCE(4242); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2974: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'c') ADVANCE(4164); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'c') ADVANCE(2896); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2975: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'c') ADVANCE(4151); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'c') ADVANCE(3065); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2976: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'c') ADVANCE(3183); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'c') ADVANCE(3330); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2977: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'c') ADVANCE(4135); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'c') ADVANCE(3936); + if (lookahead == 'd') ADVANCE(2525); + if (lookahead == 'n') ADVANCE(4198); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2978: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'c') ADVANCE(3410); - if (lookahead == 'f') ADVANCE(3870); - if (lookahead == 'm') ADVANCE(2719); - if (lookahead == 'o') ADVANCE(3806); - if (lookahead == 's') ADVANCE(2901); - if (lookahead == 'u') ADVANCE(3467); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'c') ADVANCE(3936); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2979: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'c') ADVANCE(3410); - if (lookahead == 'f') ADVANCE(3870); - if (lookahead == 'o') ADVANCE(3806); - if (lookahead == 's') ADVANCE(2901); - if (lookahead == 'u') ADVANCE(3467); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'c') ADVANCE(4056); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2980: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'c') ADVANCE(3770); - if (lookahead == 'i') ADVANCE(3646); - if (lookahead == 't') ADVANCE(3905); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'c') ADVANCE(4191); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2981: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'c') ADVANCE(3770); - if (lookahead == 't') ADVANCE(3905); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'c') ADVANCE(4090); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2982: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'c') ADVANCE(3472); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'c') ADVANCE(2733); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2983: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'c') ADVANCE(3152); - if (lookahead == 'h') ADVANCE(2642); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'c') ADVANCE(3367); + if (lookahead == 'r') ADVANCE(2525); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2984: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'c') ADVANCE(3152); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'c') ADVANCE(3367); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2985: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'c') ADVANCE(2759); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'c') ADVANCE(3199); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2986: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'c') ADVANCE(3543); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'c') ADVANCE(3925); + if (lookahead == 'd') ADVANCE(2346); + if (lookahead == 'n') ADVANCE(4206); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2987: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'c') ADVANCE(3967); - if (lookahead == 'm') ADVANCE(3755); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'c') ADVANCE(4177); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2988: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'c') ADVANCE(2763); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'c') ADVANCE(4164); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2989: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'c') ADVANCE(4150); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'c') ADVANCE(3196); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2990: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'c') ADVANCE(3739); - if (lookahead == 'e') ADVANCE(3796); - if (lookahead == 'p') ADVANCE(3940); - if (lookahead == 's') ADVANCE(3395); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'c') ADVANCE(4148); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2991: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'c') ADVANCE(3527); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'c') ADVANCE(3423); + if (lookahead == 'f') ADVANCE(3883); + if (lookahead == 'm') ADVANCE(2732); + if (lookahead == 'o') ADVANCE(3819); + if (lookahead == 's') ADVANCE(2914); + if (lookahead == 'u') ADVANCE(3480); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2992: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'c') ADVANCE(2766); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'c') ADVANCE(3423); + if (lookahead == 'f') ADVANCE(3883); + if (lookahead == 'o') ADVANCE(3819); + if (lookahead == 's') ADVANCE(2914); + if (lookahead == 'u') ADVANCE(3480); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2993: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'c') ADVANCE(2804); - if (lookahead == 'm') ADVANCE(3831); - if (lookahead == 'p') ADVANCE(4038); - if (lookahead == 'r') ADVANCE(3684); - if (lookahead == 't') ADVANCE(4246); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'c') ADVANCE(3783); + if (lookahead == 'i') ADVANCE(3659); + if (lookahead == 't') ADVANCE(3918); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2994: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'c') ADVANCE(2811); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'c') ADVANCE(3783); + if (lookahead == 't') ADVANCE(3918); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2995: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'c') ADVANCE(3210); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'c') ADVANCE(3485); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2996: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'd') ADVANCE(3719); - if (lookahead == 'i') ADVANCE(3561); - if (lookahead == 'r') ADVANCE(3349); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'c') ADVANCE(3165); + if (lookahead == 'h') ADVANCE(2655); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2997: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'd') ADVANCE(3719); - if (lookahead == 'p') ADVANCE(3216); - if (lookahead == 't') ADVANCE(3420); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'c') ADVANCE(3165); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2998: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'd') ADVANCE(3719); - if (lookahead == 'p') ADVANCE(3568); - if (lookahead == 't') ADVANCE(3424); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'c') ADVANCE(2772); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 2999: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'd') ADVANCE(3719); - if (lookahead == 'r') ADVANCE(3349); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'c') ADVANCE(3556); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3000: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'd') ADVANCE(3719); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'c') ADVANCE(3980); + if (lookahead == 'm') ADVANCE(3768); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3001: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'd') ADVANCE(2512); - if (lookahead == 'f') ADVANCE(2725); - if (lookahead == 'p') ADVANCE(2475); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'c') ADVANCE(2776); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3002: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'd') ADVANCE(2512); - if (lookahead == 'l') ADVANCE(3052); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'c') ADVANCE(4163); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3003: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'd') ADVANCE(2512); - if (lookahead == 'u') ADVANCE(2425); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'c') ADVANCE(3752); + if (lookahead == 'e') ADVANCE(3809); + if (lookahead == 'p') ADVANCE(3953); + if (lookahead == 's') ADVANCE(3408); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3004: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'd') ADVANCE(2512); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'c') ADVANCE(3540); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3005: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'd') ADVANCE(2338); - if (lookahead == 'g') ADVANCE(2377); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'c') ADVANCE(2779); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3006: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'd') ADVANCE(2845); - if (lookahead == 'i') ADVANCE(3141); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'c') ADVANCE(2817); + if (lookahead == 'm') ADVANCE(3844); + if (lookahead == 'p') ADVANCE(4051); + if (lookahead == 'r') ADVANCE(3697); + if (lookahead == 't') ADVANCE(4259); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3007: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'd') ADVANCE(3564); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'c') ADVANCE(2824); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3008: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'd') ADVANCE(2635); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'c') ADVANCE(3223); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3009: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'd') ADVANCE(2612); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'd') ADVANCE(3732); + if (lookahead == 'i') ADVANCE(3574); + if (lookahead == 'r') ADVANCE(3362); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3010: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'd') ADVANCE(2602); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'd') ADVANCE(3732); + if (lookahead == 'p') ADVANCE(3229); + if (lookahead == 't') ADVANCE(3433); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3011: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'd') ADVANCE(2652); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'd') ADVANCE(3732); + if (lookahead == 'p') ADVANCE(3581); + if (lookahead == 't') ADVANCE(3437); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3012: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'd') ADVANCE(2881); - if (lookahead == 'r') ADVANCE(2363); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'd') ADVANCE(3732); + if (lookahead == 'r') ADVANCE(3362); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3013: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'd') ADVANCE(2410); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'd') ADVANCE(3732); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3014: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'd') ADVANCE(2321); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'd') ADVANCE(2525); + if (lookahead == 'f') ADVANCE(2738); + if (lookahead == 'p') ADVANCE(2488); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3015: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'd') ADVANCE(3125); - if (lookahead == 'i') ADVANCE(3753); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'd') ADVANCE(2525); + if (lookahead == 'l') ADVANCE(3065); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3016: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'd') ADVANCE(2379); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'd') ADVANCE(2525); + if (lookahead == 'u') ADVANCE(2438); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3017: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'd') ADVANCE(2700); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'd') ADVANCE(2525); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3018: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'd') ADVANCE(2718); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'd') ADVANCE(2351); + if (lookahead == 'g') ADVANCE(2390); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3019: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'd') ADVANCE(2472); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'd') ADVANCE(2858); + if (lookahead == 'i') ADVANCE(3154); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3020: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'd') ADVANCE(2390); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'd') ADVANCE(3577); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3021: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'd') ADVANCE(3386); - if (lookahead == 'l') ADVANCE(3576); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'd') ADVANCE(2648); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3022: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'd') ADVANCE(3386); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'd') ADVANCE(2625); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3023: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'd') ADVANCE(3052); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'd') ADVANCE(2615); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3024: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'd') ADVANCE(4190); - if (lookahead == 'p') ADVANCE(3792); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'd') ADVANCE(2665); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3025: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'd') ADVANCE(4190); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'd') ADVANCE(2894); + if (lookahead == 'r') ADVANCE(2376); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3026: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'd') ADVANCE(3344); - if (lookahead == 'm') ADVANCE(3831); - if (lookahead == 'n') ADVANCE(2476); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'd') ADVANCE(2423); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3027: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'd') ADVANCE(3344); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'd') ADVANCE(2334); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3028: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'd') ADVANCE(4069); - if (lookahead == 'u') ADVANCE(3313); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'd') ADVANCE(3138); + if (lookahead == 'i') ADVANCE(3766); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3029: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'd') ADVANCE(3061); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'd') ADVANCE(2392); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3030: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'd') ADVANCE(4032); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'd') ADVANCE(2713); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3031: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'd') ADVANCE(4125); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'd') ADVANCE(2731); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3032: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'd') ADVANCE(3313); - if (lookahead == 'u') ADVANCE(4069); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'd') ADVANCE(2485); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3033: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'd') ADVANCE(3313); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'd') ADVANCE(2403); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3034: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'd') ADVANCE(3419); - if (lookahead == 'n') ADVANCE(4154); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'd') ADVANCE(3399); + if (lookahead == 'l') ADVANCE(3589); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3035: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'd') ADVANCE(3265); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'd') ADVANCE(3399); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3036: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'd') ADVANCE(3711); - if (lookahead == 'u') ADVANCE(3798); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'd') ADVANCE(3065); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3037: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'd') ADVANCE(3130); - if (lookahead == 'p') ADVANCE(3218); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'd') ADVANCE(4203); + if (lookahead == 'p') ADVANCE(3805); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3038: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'd') ADVANCE(3126); - if (lookahead == 'r') ADVANCE(2512); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'd') ADVANCE(4203); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3039: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'd') ADVANCE(3143); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'd') ADVANCE(3357); + if (lookahead == 'm') ADVANCE(3844); + if (lookahead == 'n') ADVANCE(2489); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3040: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'd') ADVANCE(3734); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'd') ADVANCE(3357); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3041: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'd') ADVANCE(3383); - if (lookahead == 'i') ADVANCE(3478); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'd') ADVANCE(4082); + if (lookahead == 'u') ADVANCE(3326); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3042: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'd') ADVANCE(3383); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'd') ADVANCE(3074); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3043: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'd') ADVANCE(3145); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'd') ADVANCE(4045); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3044: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'd') ADVANCE(2765); - if (lookahead == 'e') ADVANCE(3813); - if (lookahead == 'l') ADVANCE(2786); - if (lookahead == 'p') ADVANCE(2353); - if (lookahead == 'r') ADVANCE(2793); - if (lookahead == 'v') ADVANCE(3123); - if (lookahead == 'w') ADVANCE(3045); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'd') ADVANCE(4138); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3045: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'e') ADVANCE(3004); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'd') ADVANCE(3326); + if (lookahead == 'u') ADVANCE(4082); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3046: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'e') ADVANCE(2512); - if (lookahead == 'k') ADVANCE(3083); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'd') ADVANCE(3326); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3047: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'e') ADVANCE(2512); - if (lookahead == 'l') ADVANCE(3392); - if (lookahead == 'p') ADVANCE(2772); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'd') ADVANCE(3432); + if (lookahead == 'n') ADVANCE(4167); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3048: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'e') ADVANCE(2512); - if (lookahead == 'r') ADVANCE(2848); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'd') ADVANCE(3278); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3049: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'e') ADVANCE(2512); - if (lookahead == 's') ADVANCE(3484); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'd') ADVANCE(3724); + if (lookahead == 'u') ADVANCE(3811); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3050: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'e') ADVANCE(2512); - if (lookahead == 't') ADVANCE(2395); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'd') ADVANCE(3143); + if (lookahead == 'p') ADVANCE(3231); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3051: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'e') ADVANCE(2512); - if (lookahead == 'u') ADVANCE(4127); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'd') ADVANCE(3139); + if (lookahead == 'r') ADVANCE(2525); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3052: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'e') ADVANCE(2512); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'd') ADVANCE(3156); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3053: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'e') ADVANCE(2567); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'd') ADVANCE(3747); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3054: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'e') ADVANCE(2436); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'd') ADVANCE(3396); + if (lookahead == 'i') ADVANCE(3491); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3055: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'e') ADVANCE(4233); - if (lookahead == 'v') ADVANCE(2858); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'd') ADVANCE(3396); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3056: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'e') ADVANCE(4233); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'd') ADVANCE(3158); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3057: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'e') ADVANCE(3225); - if (lookahead == 'p') ADVANCE(3306); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'd') ADVANCE(2778); + if (lookahead == 'e') ADVANCE(3826); + if (lookahead == 'l') ADVANCE(2799); + if (lookahead == 'p') ADVANCE(2366); + if (lookahead == 'r') ADVANCE(2806); + if (lookahead == 'v') ADVANCE(3136); + if (lookahead == 'w') ADVANCE(3058); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3058: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'e') ADVANCE(2456); - if (lookahead == 'o') ADVANCE(4080); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'e') ADVANCE(3017); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3059: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'e') ADVANCE(2352); - if (lookahead == 'l') ADVANCE(3535); - if (lookahead == 'r') ADVANCE(2847); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'e') ADVANCE(2525); + if (lookahead == 'k') ADVANCE(3096); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3060: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'e') ADVANCE(2560); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'e') ADVANCE(2525); + if (lookahead == 'l') ADVANCE(3405); + if (lookahead == 'p') ADVANCE(2785); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3061: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'e') ADVANCE(2302); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'e') ADVANCE(2525); + if (lookahead == 'r') ADVANCE(2861); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3062: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'e') ADVANCE(2283); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'e') ADVANCE(2525); + if (lookahead == 's') ADVANCE(3497); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3063: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'e') ADVANCE(2276); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'e') ADVANCE(2525); + if (lookahead == 't') ADVANCE(2408); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3064: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'e') ADVANCE(2563); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'e') ADVANCE(2525); + if (lookahead == 'u') ADVANCE(4140); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3065: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'e') ADVANCE(2561); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'e') ADVANCE(2525); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3066: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'e') ADVANCE(2309); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'e') ADVANCE(2580); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3067: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'e') ADVANCE(2823); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'e') ADVANCE(2449); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3068: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'e') ADVANCE(3613); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'e') ADVANCE(4246); + if (lookahead == 'v') ADVANCE(2871); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3069: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'e') ADVANCE(2282); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'e') ADVANCE(4246); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3070: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'e') ADVANCE(2589); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'e') ADVANCE(3238); + if (lookahead == 'p') ADVANCE(3319); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3071: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'e') ADVANCE(2620); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'e') ADVANCE(2469); + if (lookahead == 'o') ADVANCE(4093); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3072: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'e') ADVANCE(2375); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'e') ADVANCE(2365); + if (lookahead == 'l') ADVANCE(3548); + if (lookahead == 'r') ADVANCE(2860); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3073: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'e') ADVANCE(2557); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'e') ADVANCE(2573); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3074: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'e') ADVANCE(2647); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'e') ADVANCE(2315); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3075: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'e') ADVANCE(2285); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'e') ADVANCE(2296); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3076: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'e') ADVANCE(2373); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'e') ADVANCE(2289); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3077: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'e') ADVANCE(2630); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'e') ADVANCE(2576); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3078: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'e') ADVANCE(3870); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'e') ADVANCE(2574); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3079: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'e') ADVANCE(2652); - if (lookahead == 'p') ADVANCE(2346); - if (lookahead == 's') ADVANCE(2652); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'e') ADVANCE(2322); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3080: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'e') ADVANCE(3637); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'e') ADVANCE(2836); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3081: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'e') ADVANCE(3956); - if (lookahead == 'i') ADVANCE(2950); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'e') ADVANCE(3626); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3082: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'e') ADVANCE(4080); - if (lookahead == 'o') ADVANCE(3624); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'e') ADVANCE(2295); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3083: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'e') ADVANCE(4080); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'e') ADVANCE(2602); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3084: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'e') ADVANCE(2552); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'e') ADVANCE(2633); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3085: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'e') ADVANCE(4275); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'e') ADVANCE(2388); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3086: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'e') ADVANCE(3035); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'e') ADVANCE(2570); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3087: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'e') ADVANCE(3972); - if (lookahead == 'i') ADVANCE(2958); - if (lookahead == 'k') ADVANCE(2694); - if (lookahead == 'o') ADVANCE(3872); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'e') ADVANCE(2660); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3088: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'e') ADVANCE(3226); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'e') ADVANCE(2298); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3089: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'e') ADVANCE(2453); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'e') ADVANCE(2386); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3090: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'e') ADVANCE(2591); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'e') ADVANCE(2643); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3091: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'e') ADVANCE(2638); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'e') ADVANCE(3883); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3092: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'e') ADVANCE(4049); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'e') ADVANCE(2665); + if (lookahead == 'p') ADVANCE(2359); + if (lookahead == 's') ADVANCE(2665); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3093: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'e') ADVANCE(2538); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'e') ADVANCE(3650); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3094: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'e') ADVANCE(3852); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'e') ADVANCE(3969); + if (lookahead == 'i') ADVANCE(2963); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3095: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'e') ADVANCE(2580); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'e') ADVANCE(4093); + if (lookahead == 'o') ADVANCE(3637); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3096: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'e') ADVANCE(3036); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'e') ADVANCE(4093); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3097: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'e') ADVANCE(2669); - if (lookahead == 'i') ADVANCE(3583); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'e') ADVANCE(2565); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3098: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'e') ADVANCE(2669); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'e') ADVANCE(4288); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3099: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'e') ADVANCE(3230); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'e') ADVANCE(3048); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3100: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'e') ADVANCE(2461); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'e') ADVANCE(3985); + if (lookahead == 'i') ADVANCE(2971); + if (lookahead == 'k') ADVANCE(2707); + if (lookahead == 'o') ADVANCE(3885); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3101: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'e') ADVANCE(2562); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'e') ADVANCE(3239); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3102: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'e') ADVANCE(3042); - if (lookahead == 'i') ADVANCE(3937); - if (lookahead == 'y') ADVANCE(2512); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'e') ADVANCE(2466); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3103: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'e') ADVANCE(3042); - if (lookahead == 'y') ADVANCE(2512); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'e') ADVANCE(2604); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3104: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'e') ADVANCE(4271); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'e') ADVANCE(2651); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3105: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'e') ADVANCE(3856); - if (lookahead == 'v') ADVANCE(3123); - if (lookahead == 'w') ADVANCE(3086); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'e') ADVANCE(4062); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3106: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'e') ADVANCE(3221); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'e') ADVANCE(2551); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3107: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'e') ADVANCE(2464); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'e') ADVANCE(3865); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3108: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'e') ADVANCE(3858); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'e') ADVANCE(2593); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3109: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'e') ADVANCE(3459); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'e') ADVANCE(3049); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3110: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'e') ADVANCE(3627); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'e') ADVANCE(2682); + if (lookahead == 'i') ADVANCE(3596); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3111: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'e') ADVANCE(3857); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'e') ADVANCE(2682); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3112: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'e') ADVANCE(4099); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'e') ADVANCE(3243); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3113: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'e') ADVANCE(4023); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'e') ADVANCE(2474); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3114: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'e') ADVANCE(4034); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'e') ADVANCE(2575); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3115: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'e') ADVANCE(4117); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'e') ADVANCE(3055); + if (lookahead == 'i') ADVANCE(3950); + if (lookahead == 'y') ADVANCE(2525); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3116: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'e') ADVANCE(3478); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'e') ADVANCE(3055); + if (lookahead == 'y') ADVANCE(2525); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3117: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'e') ADVANCE(3008); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'e') ADVANCE(4284); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3118: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'e') ADVANCE(2819); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'e') ADVANCE(3869); + if (lookahead == 'v') ADVANCE(3136); + if (lookahead == 'w') ADVANCE(3099); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3119: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'e') ADVANCE(3010); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'e') ADVANCE(3234); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3120: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'e') ADVANCE(3624); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'e') ADVANCE(2477); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3121: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'e') ADVANCE(2883); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'e') ADVANCE(3871); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3122: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'e') ADVANCE(3013); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'e') ADVANCE(3472); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3123: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'e') ADVANCE(3052); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'e') ADVANCE(3640); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3124: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'e') ADVANCE(3030); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'e') ADVANCE(3870); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3125: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'e') ADVANCE(3878); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'e') ADVANCE(4112); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3126: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'e') ADVANCE(4029); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'e') ADVANCE(4036); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3127: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'e') ADVANCE(3796); - if (lookahead == 'k') ADVANCE(2690); - if (lookahead == 'n') ADVANCE(3764); - if (lookahead == 'p') ADVANCE(3311); - if (lookahead == 'r') ADVANCE(2413); - if (lookahead == 's') ADVANCE(3358); - if (lookahead == 't') ADVANCE(3329); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'e') ADVANCE(4047); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3128: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'e') ADVANCE(3796); - if (lookahead == 'p') ADVANCE(3312); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'e') ADVANCE(4130); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3129: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'e') ADVANCE(4040); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'e') ADVANCE(3491); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3130: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'e') ADVANCE(3514); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'e') ADVANCE(3021); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3131: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'e') ADVANCE(2989); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'e') ADVANCE(2832); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3132: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'e') ADVANCE(3678); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'e') ADVANCE(3023); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3133: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'e') ADVANCE(4071); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'e') ADVANCE(3637); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3134: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'e') ADVANCE(4123); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'e') ADVANCE(2896); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3135: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'e') ADVANCE(4042); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'e') ADVANCE(3026); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3136: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'e') ADVANCE(4101); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'e') ADVANCE(3065); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3137: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'e') ADVANCE(2701); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'e') ADVANCE(3043); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3138: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'e') ADVANCE(3062); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'e') ADVANCE(3891); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3139: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'e') ADVANCE(3650); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'e') ADVANCE(4042); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3140: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'e') ADVANCE(3541); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'e') ADVANCE(3809); + if (lookahead == 'k') ADVANCE(2703); + if (lookahead == 'n') ADVANCE(3777); + if (lookahead == 'p') ADVANCE(3324); + if (lookahead == 'r') ADVANCE(2426); + if (lookahead == 's') ADVANCE(3371); + if (lookahead == 't') ADVANCE(3342); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3141: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'e') ADVANCE(3918); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'e') ADVANCE(3809); + if (lookahead == 'p') ADVANCE(3325); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3142: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'e') ADVANCE(2740); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'e') ADVANCE(4053); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3143: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'e') ADVANCE(4032); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'e') ADVANCE(3527); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3144: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'e') ADVANCE(2724); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'e') ADVANCE(3002); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3145: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'e') ADVANCE(4033); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'e') ADVANCE(3691); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3146: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'e') ADVANCE(4088); - if (lookahead == 'i') ADVANCE(3583); - if (lookahead == 'u') ADVANCE(4282); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'e') ADVANCE(4084); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3147: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'e') ADVANCE(3884); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'e') ADVANCE(4136); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3148: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'e') ADVANCE(3991); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'e') ADVANCE(4055); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3149: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'e') ADVANCE(4124); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'e') ADVANCE(4114); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3150: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'e') ADVANCE(3955); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'e') ADVANCE(2714); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3151: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'e') ADVANCE(4131); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'e') ADVANCE(3075); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3152: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'e') ADVANCE(3124); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'e') ADVANCE(3663); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3153: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'e') ADVANCE(3069); - if (lookahead == 'r') ADVANCE(3455); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'e') ADVANCE(3554); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3154: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'e') ADVANCE(3871); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'e') ADVANCE(3931); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3155: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'e') ADVANCE(3965); - if (lookahead == 'i') ADVANCE(3637); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'e') ADVANCE(2753); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3156: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'e') ADVANCE(3915); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'e') ADVANCE(4045); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3157: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'e') ADVANCE(3993); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'e') ADVANCE(2737); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3158: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'e') ADVANCE(4013); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'e') ADVANCE(4046); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3159: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'e') ADVANCE(3074); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'e') ADVANCE(4101); + if (lookahead == 'i') ADVANCE(3596); + if (lookahead == 'u') ADVANCE(4295); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3160: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'e') ADVANCE(3928); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'e') ADVANCE(3897); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3161: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'e') ADVANCE(3200); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'e') ADVANCE(4004); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3162: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'e') ADVANCE(3925); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'e') ADVANCE(4137); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3163: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'e') ADVANCE(3888); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'e') ADVANCE(3968); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3164: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'e') ADVANCE(3933); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'e') ADVANCE(4144); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3165: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'e') ADVANCE(3891); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'e') ADVANCE(3137); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3166: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'e') ADVANCE(3231); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'e') ADVANCE(3082); + if (lookahead == 'r') ADVANCE(3468); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3167: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'e') ADVANCE(4235); - if (lookahead == 'i') ADVANCE(3278); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'e') ADVANCE(3884); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3168: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'e') ADVANCE(3548); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'e') ADVANCE(3978); + if (lookahead == 'i') ADVANCE(3650); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3169: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'e') ADVANCE(2646); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'e') ADVANCE(3928); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3170: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'e') ADVANCE(3018); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'e') ADVANCE(4006); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3171: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'e') ADVANCE(2798); - if (lookahead == 'w') ADVANCE(2798); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'e') ADVANCE(4026); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3172: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'e') ADVANCE(3228); - if (lookahead == 'l') ADVANCE(2512); - if (lookahead == 't') ADVANCE(2485); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'e') ADVANCE(3087); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3173: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'e') ADVANCE(3228); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'e') ADVANCE(3941); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3174: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'e') ADVANCE(3120); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'e') ADVANCE(3213); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3175: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'e') ADVANCE(4060); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'e') ADVANCE(3938); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3176: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'e') ADVANCE(3022); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'e') ADVANCE(3901); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3177: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'e') ADVANCE(3614); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'e') ADVANCE(3946); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3178: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'e') ADVANCE(2974); - if (lookahead == 'o') ADVANCE(3694); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'e') ADVANCE(3904); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3179: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'e') ADVANCE(2787); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'e') ADVANCE(3244); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3180: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'e') ADVANCE(3849); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'e') ADVANCE(4248); + if (lookahead == 'i') ADVANCE(3291); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3181: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'e') ADVANCE(3953); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'e') ADVANCE(3561); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3182: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'e') ADVANCE(4146); - if (lookahead == 't') ADVANCE(2652); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'e') ADVANCE(2659); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3183: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'e') ADVANCE(4146); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'e') ADVANCE(3031); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3184: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'e') ADVANCE(2869); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'e') ADVANCE(2811); + if (lookahead == 'w') ADVANCE(2811); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3185: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'e') ADVANCE(3232); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'e') ADVANCE(3241); + if (lookahead == 'l') ADVANCE(2525); + if (lookahead == 't') ADVANCE(2498); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3186: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'e') ADVANCE(3039); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'e') ADVANCE(3241); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3187: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'e') ADVANCE(2975); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'e') ADVANCE(3133); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3188: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'e') ADVANCE(4050); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'e') ADVANCE(4073); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3189: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'e') ADVANCE(3836); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'e') ADVANCE(3035); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3190: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'e') ADVANCE(3233); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'e') ADVANCE(3627); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3191: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'e') ADVANCE(3952); - if (lookahead == 'n') ADVANCE(2588); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'e') ADVANCE(2987); + if (lookahead == 'o') ADVANCE(3707); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3192: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'e') ADVANCE(2977); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'e') ADVANCE(2800); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3193: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'e') ADVANCE(3704); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'e') ADVANCE(3862); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3194: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'e') ADVANCE(3234); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'e') ADVANCE(3966); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3195: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'e') ADVANCE(3235); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'e') ADVANCE(4159); + if (lookahead == 't') ADVANCE(2665); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3196: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'e') ADVANCE(3687); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'e') ADVANCE(4159); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3197: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'e') ADVANCE(3236); - if (lookahead == 'o') ADVANCE(3664); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'e') ADVANCE(2882); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3198: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'e') ADVANCE(3971); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'e') ADVANCE(3245); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3199: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'e') ADVANCE(3229); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'e') ADVANCE(3052); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3200: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'e') ADVANCE(4165); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'e') ADVANCE(2988); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3201: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'e') ADVANCE(4018); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'e') ADVANCE(4063); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3202: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'e') ADVANCE(3672); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'e') ADVANCE(3849); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3203: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'e') ADVANCE(2824); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'e') ADVANCE(3246); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3204: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'e') ADVANCE(3582); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'e') ADVANCE(3965); + if (lookahead == 'n') ADVANCE(2601); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3205: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'e') ADVANCE(3281); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'e') ADVANCE(2990); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3206: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'e') ADVANCE(4015); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'e') ADVANCE(3717); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3207: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'e') ADVANCE(4152); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'e') ADVANCE(3247); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3208: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'e') ADVANCE(3431); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'e') ADVANCE(3248); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3209: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'e') ADVANCE(3998); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'e') ADVANCE(3700); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3210: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'e') ADVANCE(3043); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'e') ADVANCE(3249); + if (lookahead == 'o') ADVANCE(3677); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3211: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'e') ADVANCE(2822); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'e') ADVANCE(3984); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3212: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'e') ADVANCE(3647); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'e') ADVANCE(3242); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3213: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'e') ADVANCE(2827); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'e') ADVANCE(4178); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3214: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'e') ADVANCE(2995); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'e') ADVANCE(4031); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3215: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'e') ADVANCE(3239); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'e') ADVANCE(3685); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3216: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'f') ADVANCE(2512); - if (lookahead == 'l') ADVANCE(4185); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'e') ADVANCE(2837); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3217: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'f') ADVANCE(2512); - if (lookahead == 'r') ADVANCE(3744); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'e') ADVANCE(3595); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3218: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'f') ADVANCE(2512); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'e') ADVANCE(3294); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3219: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'f') ADVANCE(3870); - if (lookahead == 'i') ADVANCE(2512); - if (lookahead == 'o') ADVANCE(3806); - if (lookahead == 's') ADVANCE(2921); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'e') ADVANCE(4028); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3220: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'f') ADVANCE(3870); - if (lookahead == 'i') ADVANCE(3637); - if (lookahead == 'o') ADVANCE(3806); - if (lookahead == 'p') ADVANCE(3940); - if (lookahead == 's') ADVANCE(2921); - if (lookahead == 'u') ADVANCE(2722); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'e') ADVANCE(4165); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3221: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'f') ADVANCE(4080); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'e') ADVANCE(3444); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3222: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'f') ADVANCE(3227); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'e') ADVANCE(4011); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3223: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'f') ADVANCE(4081); - if (lookahead == 's') ADVANCE(4026); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'e') ADVANCE(3056); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3224: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'f') ADVANCE(4104); - if (lookahead == 'l') ADVANCE(2350); - if (lookahead == 'p') ADVANCE(3218); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'e') ADVANCE(2835); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3225: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'f') ADVANCE(4045); - if (lookahead == 'p') ADVANCE(3303); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'e') ADVANCE(3660); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3226: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'f') ADVANCE(4169); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'e') ADVANCE(2840); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3227: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'f') ADVANCE(3201); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'e') ADVANCE(3008); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3228: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'f') ADVANCE(4109); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'e') ADVANCE(3252); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3229: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'f') ADVANCE(4123); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'f') ADVANCE(2525); + if (lookahead == 'l') ADVANCE(4198); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3230: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'f') ADVANCE(3788); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'f') ADVANCE(2525); + if (lookahead == 'r') ADVANCE(3757); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3231: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'f') ADVANCE(4112); - if (lookahead == 's') ADVANCE(4031); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'f') ADVANCE(2525); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3232: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'f') ADVANCE(4090); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'f') ADVANCE(3883); + if (lookahead == 'i') ADVANCE(2525); + if (lookahead == 'o') ADVANCE(3819); + if (lookahead == 's') ADVANCE(2934); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3233: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'f') ADVANCE(4092); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'f') ADVANCE(3883); + if (lookahead == 'i') ADVANCE(3650); + if (lookahead == 'o') ADVANCE(3819); + if (lookahead == 'p') ADVANCE(3953); + if (lookahead == 's') ADVANCE(2934); + if (lookahead == 'u') ADVANCE(2735); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3234: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'f') ADVANCE(4108); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'f') ADVANCE(4093); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3235: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'f') ADVANCE(4148); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'f') ADVANCE(3240); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3236: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'f') ADVANCE(4096); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'f') ADVANCE(4094); + if (lookahead == 's') ADVANCE(4039); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3237: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'f') ADVANCE(3748); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'f') ADVANCE(4117); + if (lookahead == 'l') ADVANCE(2363); + if (lookahead == 'p') ADVANCE(3231); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3238: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'f') ADVANCE(3387); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'f') ADVANCE(4058); + if (lookahead == 'p') ADVANCE(3316); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3239: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'f') ADVANCE(4168); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'f') ADVANCE(4182); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3240: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'g') ADVANCE(2512); - if (lookahead == 's') ADVANCE(3798); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'f') ADVANCE(3214); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3241: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'g') ADVANCE(2512); - if (lookahead == 't') ADVANCE(2485); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'f') ADVANCE(4122); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3242: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'g') ADVANCE(2512); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'f') ADVANCE(4136); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3243: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'g') ADVANCE(2887); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'f') ADVANCE(3801); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3244: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'g') ADVANCE(2369); - if (lookahead == 'i') ADVANCE(3637); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'f') ADVANCE(4125); + if (lookahead == 's') ADVANCE(4044); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3245: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'g') ADVANCE(2369); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'f') ADVANCE(4103); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3246: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'g') ADVANCE(2617); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'f') ADVANCE(4105); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3247: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'g') ADVANCE(2637); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'f') ADVANCE(4121); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3248: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'g') ADVANCE(2370); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'f') ADVANCE(4161); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3249: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'g') ADVANCE(3581); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'f') ADVANCE(4109); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3250: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'g') ADVANCE(2430); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'f') ADVANCE(3761); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3251: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'g') ADVANCE(2652); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'f') ADVANCE(3400); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3252: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'g') ADVANCE(3319); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'f') ADVANCE(4181); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3253: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'g') ADVANCE(4274); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'g') ADVANCE(2525); + if (lookahead == 's') ADVANCE(3811); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3254: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'g') ADVANCE(3266); - if (lookahead == 'l') ADVANCE(3115); - if (lookahead == 'r') ADVANCE(3870); - if (lookahead == 's') ADVANCE(3307); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'g') ADVANCE(2525); + if (lookahead == 't') ADVANCE(2498); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3255: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'g') ADVANCE(3266); - if (lookahead == 'r') ADVANCE(3870); - if (lookahead == 's') ADVANCE(3309); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'g') ADVANCE(2525); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3256: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'g') ADVANCE(3266); - if (lookahead == 'r') ADVANCE(3870); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'g') ADVANCE(2900); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3257: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'g') ADVANCE(3710); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'g') ADVANCE(2382); + if (lookahead == 'i') ADVANCE(3650); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3258: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'g') ADVANCE(3750); - if (lookahead == 'p') ADVANCE(3218); - if (lookahead == 't') ADVANCE(2652); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'g') ADVANCE(2382); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3259: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'g') ADVANCE(3750); - if (lookahead == 'p') ADVANCE(3218); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'g') ADVANCE(2630); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3260: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'g') ADVANCE(3590); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'g') ADVANCE(2650); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3261: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'g') ADVANCE(3308); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'g') ADVANCE(2383); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3262: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'g') ADVANCE(3478); - if (lookahead == 'i') ADVANCE(3512); - if (lookahead == 'l') ADVANCE(3242); - if (lookahead == 'r') ADVANCE(3451); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'g') ADVANCE(3594); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3263: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'g') ADVANCE(2796); - if (lookahead == 's') ADVANCE(4134); - if (lookahead == 'w') ADVANCE(2616); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'g') ADVANCE(2443); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3264: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'g') ADVANCE(3624); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'g') ADVANCE(2665); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3265: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'g') ADVANCE(3052); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'g') ADVANCE(3332); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3266: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'g') ADVANCE(3078); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'g') ADVANCE(4287); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3267: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'g') ADVANCE(3083); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'g') ADVANCE(3279); + if (lookahead == 'l') ADVANCE(3128); + if (lookahead == 'r') ADVANCE(3883); + if (lookahead == 's') ADVANCE(3320); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3268: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'g') ADVANCE(3997); - if (lookahead == 'i') ADVANCE(3637); - if (lookahead == 't') ADVANCE(3778); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'g') ADVANCE(3279); + if (lookahead == 'r') ADVANCE(3883); + if (lookahead == 's') ADVANCE(3322); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3269: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'g') ADVANCE(3997); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'g') ADVANCE(3279); + if (lookahead == 'r') ADVANCE(3883); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3270: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'g') ADVANCE(3896); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'g') ADVANCE(3723); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3271: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'g') ADVANCE(3322); - if (lookahead == 'n') ADVANCE(3242); - if (lookahead == 's') ADVANCE(3421); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'g') ADVANCE(3763); + if (lookahead == 'p') ADVANCE(3231); + if (lookahead == 't') ADVANCE(2665); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3272: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'g') ADVANCE(3040); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'g') ADVANCE(3763); + if (lookahead == 'p') ADVANCE(3231); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3273: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'g') ADVANCE(3904); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'g') ADVANCE(3603); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3274: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'g') ADVANCE(3318); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'g') ADVANCE(3321); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3275: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'g') ADVANCE(4098); - if (lookahead == 'l') ADVANCE(3092); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'g') ADVANCE(3491); + if (lookahead == 'i') ADVANCE(3525); + if (lookahead == 'l') ADVANCE(3255); + if (lookahead == 'r') ADVANCE(3464); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3276: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'g') ADVANCE(4098); - if (lookahead == 'q') ADVANCE(3277); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'g') ADVANCE(2809); + if (lookahead == 's') ADVANCE(4147); + if (lookahead == 'w') ADVANCE(2629); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3277: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'g') ADVANCE(4098); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'g') ADVANCE(3637); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3278: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'g') ADVANCE(3323); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'g') ADVANCE(3065); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3279: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'g') ADVANCE(3616); - if (lookahead == 'm') ADVANCE(2367); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'g') ADVANCE(3091); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3280: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'g') ADVANCE(3948); - if (lookahead == 'r') ADVANCE(4065); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'g') ADVANCE(3096); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3281: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'g') ADVANCE(3948); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'g') ADVANCE(4010); + if (lookahead == 'i') ADVANCE(3650); + if (lookahead == 't') ADVANCE(3791); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3282: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'g') ADVANCE(3324); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'g') ADVANCE(4010); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3283: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'g') ADVANCE(3326); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'g') ADVANCE(3909); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3284: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'g') ADVANCE(3327); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'g') ADVANCE(3335); + if (lookahead == 'n') ADVANCE(3255); + if (lookahead == 's') ADVANCE(3434); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3285: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'g') ADVANCE(3328); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'g') ADVANCE(3053); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3286: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'g') ADVANCE(3527); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'g') ADVANCE(3917); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3287: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'g') ADVANCE(3330); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'g') ADVANCE(3331); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3288: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'g') ADVANCE(3160); - if (lookahead == 'r') ADVANCE(2969); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'g') ADVANCE(4111); + if (lookahead == 'l') ADVANCE(3105); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3289: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'g') ADVANCE(3331); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'g') ADVANCE(4111); + if (lookahead == 'q') ADVANCE(3290); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3290: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'g') ADVANCE(3332); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'g') ADVANCE(4111); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3291: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'g') ADVANCE(3549); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'g') ADVANCE(3336); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3292: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'g') ADVANCE(3321); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'g') ADVANCE(3629); + if (lookahead == 'm') ADVANCE(2380); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3293: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'g') ADVANCE(3551); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'g') ADVANCE(3961); + if (lookahead == 'r') ADVANCE(4078); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3294: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'g') ADVANCE(3552); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'g') ADVANCE(3961); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3295: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'g') ADVANCE(3553); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'g') ADVANCE(3337); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3296: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'g') ADVANCE(3566); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'g') ADVANCE(3339); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3297: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'g') ADVANCE(3554); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'g') ADVANCE(3340); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3298: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'g') ADVANCE(3555); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'g') ADVANCE(3341); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3299: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'g') ADVANCE(2618); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'g') ADVANCE(3540); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3300: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'g') ADVANCE(2817); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'g') ADVANCE(3343); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3301: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'g') ADVANCE(3341); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'g') ADVANCE(3173); + if (lookahead == 'r') ADVANCE(2982); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3302: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'h') ADVANCE(3004); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'g') ADVANCE(3344); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3303: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'h') ADVANCE(2512); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'g') ADVANCE(3345); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3304: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'h') ADVANCE(2425); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'g') ADVANCE(3562); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3305: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'h') ADVANCE(2637); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'g') ADVANCE(3334); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3306: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'h') ADVANCE(2652); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'g') ADVANCE(3564); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3307: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'h') ADVANCE(2485); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'g') ADVANCE(3565); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3308: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'h') ADVANCE(4080); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'g') ADVANCE(3566); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3309: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'h') ADVANCE(4229); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'g') ADVANCE(3579); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3310: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'h') ADVANCE(2881); - if (lookahead == 'y') ADVANCE(2512); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'g') ADVANCE(3567); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3311: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'h') ADVANCE(3343); - if (lookahead == 'i') ADVANCE(2512); - if (lookahead == 'r') ADVANCE(3777); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'g') ADVANCE(3568); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3312: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'h') ADVANCE(3343); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'g') ADVANCE(2631); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3313: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'h') ADVANCE(2669); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'g') ADVANCE(2830); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3314: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'h') ADVANCE(3798); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'g') ADVANCE(3354); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3315: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'h') ADVANCE(3459); - if (lookahead == 'r') ADVANCE(2443); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'h') ADVANCE(3017); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3316: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'h') ADVANCE(3459); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'h') ADVANCE(2525); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3317: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'h') ADVANCE(3052); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'h') ADVANCE(2438); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3318: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'h') ADVANCE(4169); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'h') ADVANCE(2650); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3319: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'h') ADVANCE(4085); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'h') ADVANCE(2665); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3320: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'h') ADVANCE(2677); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'h') ADVANCE(2498); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3321: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'h') ADVANCE(4123); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'h') ADVANCE(4093); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3322: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'h') ADVANCE(4087); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'h') ADVANCE(4242); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3323: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'h') ADVANCE(4112); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'h') ADVANCE(2894); + if (lookahead == 'y') ADVANCE(2525); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3324: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'h') ADVANCE(4100); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'h') ADVANCE(3356); + if (lookahead == 'i') ADVANCE(2525); + if (lookahead == 'r') ADVANCE(3790); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3325: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'h') ADVANCE(3346); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'h') ADVANCE(3356); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3326: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'h') ADVANCE(4091); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'h') ADVANCE(2682); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3327: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'h') ADVANCE(4093); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'h') ADVANCE(3811); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3328: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'h') ADVANCE(4108); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'h') ADVANCE(3472); + if (lookahead == 'r') ADVANCE(2456); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3329: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'h') ADVANCE(3112); - if (lookahead == 'r') ADVANCE(3454); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'h') ADVANCE(3472); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3330: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'h') ADVANCE(4095); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'h') ADVANCE(3065); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3331: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'h') ADVANCE(4097); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'h') ADVANCE(4182); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3332: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'h') ADVANCE(4094); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'h') ADVANCE(4098); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3333: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'h') ADVANCE(3188); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'h') ADVANCE(2690); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3334: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'h') ADVANCE(3380); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'h') ADVANCE(4136); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3335: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'h') ADVANCE(3120); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'h') ADVANCE(4100); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3336: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'h') ADVANCE(3237); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'h') ADVANCE(4125); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3337: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'h') ADVANCE(3919); - if (lookahead == 'i') ADVANCE(3617); - if (lookahead == 'r') ADVANCE(3351); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'h') ADVANCE(4113); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3338: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'h') ADVANCE(3142); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'h') ADVANCE(3359); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3339: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'h') ADVANCE(3404); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'h') ADVANCE(4104); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3340: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'h') ADVANCE(4000); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'h') ADVANCE(4106); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3341: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'h') ADVANCE(4168); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'h') ADVANCE(4121); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3342: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'i') ADVANCE(3004); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'h') ADVANCE(3125); + if (lookahead == 'r') ADVANCE(3467); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3343: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'i') ADVANCE(2512); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'h') ADVANCE(4108); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3344: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'i') ADVANCE(2425); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'h') ADVANCE(4110); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3345: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'i') ADVANCE(2408); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'h') ADVANCE(4107); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3346: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'i') ADVANCE(2950); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'h') ADVANCE(3201); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3347: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'i') ADVANCE(4257); - if (lookahead == 'o') ADVANCE(3338); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'h') ADVANCE(3393); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3348: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'i') ADVANCE(4273); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'h') ADVANCE(3133); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3349: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'i') ADVANCE(2402); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'h') ADVANCE(3250); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3350: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'i') ADVANCE(2428); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'h') ADVANCE(3932); + if (lookahead == 'i') ADVANCE(3630); + if (lookahead == 'r') ADVANCE(3364); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3351: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'i') ADVANCE(2426); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'h') ADVANCE(3155); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3352: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'i') ADVANCE(2411); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'h') ADVANCE(3417); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3353: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'i') ADVANCE(3870); - if (lookahead == 'r') ADVANCE(3724); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'h') ADVANCE(4013); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3354: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'i') ADVANCE(3870); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'h') ADVANCE(4181); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3355: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'i') ADVANCE(3637); - if (lookahead == 'n') ADVANCE(4080); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'i') ADVANCE(3017); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3356: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'i') ADVANCE(3637); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'i') ADVANCE(2525); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3357: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'i') ADVANCE(2485); - if (lookahead == 'm') ADVANCE(3615); - if (lookahead == 'o') ADVANCE(3658); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'i') ADVANCE(2438); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3358: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'i') ADVANCE(3260); - if (lookahead == 'u') ADVANCE(2873); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'i') ADVANCE(2421); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3359: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'i') ADVANCE(3510); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'i') ADVANCE(2963); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3360: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'i') ADVANCE(2429); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'i') ADVANCE(4270); + if (lookahead == 'o') ADVANCE(3351); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3361: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'i') ADVANCE(4080); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'i') ADVANCE(4286); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3362: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'i') ADVANCE(4229); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'i') ADVANCE(2415); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3363: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'i') ADVANCE(3000); - if (lookahead == 'o') ADVANCE(4212); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'i') ADVANCE(2441); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3364: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'i') ADVANCE(3000); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'i') ADVANCE(2439); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3365: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'i') ADVANCE(3625); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'i') ADVANCE(2424); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3366: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'i') ADVANCE(2486); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'i') ADVANCE(3883); + if (lookahead == 'r') ADVANCE(3737); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3367: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'i') ADVANCE(4072); - if (lookahead == 'p') ADVANCE(3752); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'i') ADVANCE(3883); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3368: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'i') ADVANCE(4072); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'i') ADVANCE(3650); + if (lookahead == 'n') ADVANCE(4093); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3369: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'i') ADVANCE(2379); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'i') ADVANCE(3650); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3370: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'i') ADVANCE(3507); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'i') ADVANCE(2498); + if (lookahead == 'm') ADVANCE(3628); + if (lookahead == 'o') ADVANCE(3671); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3371: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'i') ADVANCE(3798); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'i') ADVANCE(3273); + if (lookahead == 'u') ADVANCE(2886); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3372: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'i') ADVANCE(3242); - if (lookahead == 'l') ADVANCE(3373); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'i') ADVANCE(3523); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3373: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'i') ADVANCE(3242); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'i') ADVANCE(2442); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3374: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'i') ADVANCE(3222); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'i') ADVANCE(4093); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3375: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'i') ADVANCE(3583); - if (lookahead == 'l') ADVANCE(2512); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'i') ADVANCE(4242); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3376: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'i') ADVANCE(3583); - if (lookahead == 'l') ADVANCE(2794); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'i') ADVANCE(3013); + if (lookahead == 'o') ADVANCE(4225); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3377: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'i') ADVANCE(3583); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'i') ADVANCE(3013); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3378: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'i') ADVANCE(3750); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'i') ADVANCE(3638); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3379: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'i') ADVANCE(4023); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'i') ADVANCE(2499); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3380: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'i') ADVANCE(3646); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'i') ADVANCE(4085); + if (lookahead == 'p') ADVANCE(3765); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3381: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'i') ADVANCE(4048); - if (lookahead == 'l') ADVANCE(3758); - if (lookahead == 'r') ADVANCE(2512); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'i') ADVANCE(4085); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3382: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'i') ADVANCE(4048); - if (lookahead == 'r') ADVANCE(2512); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'i') ADVANCE(2392); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3383: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'i') ADVANCE(3478); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'i') ADVANCE(3520); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3384: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'i') ADVANCE(3253); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'i') ADVANCE(3811); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3385: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'i') ADVANCE(3264); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'i') ADVANCE(3255); + if (lookahead == 'l') ADVANCE(3386); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3386: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'i') ADVANCE(4189); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'i') ADVANCE(3255); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3387: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'i') ADVANCE(3624); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'i') ADVANCE(3235); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3388: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'i') ADVANCE(3508); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'i') ADVANCE(3596); + if (lookahead == 'l') ADVANCE(2525); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3389: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'i') ADVANCE(2883); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'i') ADVANCE(3596); + if (lookahead == 'l') ADVANCE(2807); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3390: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'i') ADVANCE(3900); - if (lookahead == 'y') ADVANCE(2512); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'i') ADVANCE(3596); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3391: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'i') ADVANCE(3052); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'i') ADVANCE(3763); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3392: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'i') ADVANCE(3658); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'i') ADVANCE(4036); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3393: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'i') ADVANCE(2808); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'i') ADVANCE(3659); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3394: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'i') ADVANCE(3031); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'i') ADVANCE(4061); + if (lookahead == 'l') ADVANCE(3771); + if (lookahead == 'r') ADVANCE(2525); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3395: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'i') ADVANCE(3602); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'i') ADVANCE(4061); + if (lookahead == 'r') ADVANCE(2525); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3396: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'i') ADVANCE(3300); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'i') ADVANCE(3491); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3397: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'i') ADVANCE(3944); - if (lookahead == 'l') ADVANCE(3218); - if (lookahead == 'm') ADVANCE(3399); - if (lookahead == 'r') ADVANCE(3012); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'i') ADVANCE(3266); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3398: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'i') ADVANCE(3649); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'i') ADVANCE(3277); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3399: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'i') ADVANCE(3494); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'i') ADVANCE(4202); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3400: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'i') ADVANCE(3113); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'i') ADVANCE(3637); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3401: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'i') ADVANCE(4184); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'i') ADVANCE(3521); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3402: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'i') ADVANCE(3689); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'i') ADVANCE(2896); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3403: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'i') ADVANCE(3682); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'i') ADVANCE(3913); + if (lookahead == 'y') ADVANCE(2525); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3404: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'i') ADVANCE(3628); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'i') ADVANCE(3065); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3405: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'i') ADVANCE(3524); - if (lookahead == 'l') ADVANCE(3372); - if (lookahead == 'r') ADVANCE(2512); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'i') ADVANCE(3671); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3406: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'i') ADVANCE(3261); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'i') ADVANCE(2821); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3407: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'i') ADVANCE(3511); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'i') ADVANCE(3044); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3408: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'i') ADVANCE(3660); - if (lookahead == 'p') ADVANCE(3218); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'i') ADVANCE(3615); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3409: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'i') ADVANCE(3937); - if (lookahead == 'o') ADVANCE(3508); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'i') ADVANCE(3313); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3410: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'i') ADVANCE(3937); - if (lookahead == 'y') ADVANCE(2512); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'i') ADVANCE(3957); + if (lookahead == 'l') ADVANCE(3231); + if (lookahead == 'm') ADVANCE(3412); + if (lookahead == 'r') ADVANCE(3025); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3411: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'i') ADVANCE(3937); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'i') ADVANCE(3662); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3412: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'i') ADVANCE(3512); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'i') ADVANCE(3507); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3413: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'i') ADVANCE(2865); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'i') ADVANCE(3126); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3414: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'i') ADVANCE(2756); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'i') ADVANCE(4197); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3415: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'i') ADVANCE(4063); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'i') ADVANCE(3702); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3416: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'i') ADVANCE(4234); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'i') ADVANCE(3695); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3417: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'i') ADVANCE(3843); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'i') ADVANCE(3641); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3418: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'i') ADVANCE(3668); - if (lookahead == 'p') ADVANCE(3218); - if (lookahead == 'u') ADVANCE(3639); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'i') ADVANCE(3537); + if (lookahead == 'l') ADVANCE(3385); + if (lookahead == 'r') ADVANCE(2525); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3419: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'i') ADVANCE(3529); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'i') ADVANCE(3274); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3420: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'i') ADVANCE(3607); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'i') ADVANCE(3524); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3421: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'i') ADVANCE(3662); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'i') ADVANCE(3673); + if (lookahead == 'p') ADVANCE(3231); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3422: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'i') ADVANCE(4067); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'i') ADVANCE(3950); + if (lookahead == 'o') ADVANCE(3521); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3423: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'i') ADVANCE(4062); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'i') ADVANCE(3950); + if (lookahead == 'y') ADVANCE(2525); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3424: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'i') ADVANCE(3617); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'i') ADVANCE(3950); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3425: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'i') ADVANCE(3603); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'i') ADVANCE(3525); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3426: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'i') ADVANCE(4143); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'i') ADVANCE(2878); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3427: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'i') ADVANCE(3540); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'i') ADVANCE(2769); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3428: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'i') ADVANCE(3666); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'i') ADVANCE(4076); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3429: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'i') ADVANCE(3157); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'i') ADVANCE(4247); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3430: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'i') ADVANCE(2764); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'i') ADVANCE(3856); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3431: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'i') ADVANCE(3559); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'i') ADVANCE(3681); + if (lookahead == 'p') ADVANCE(3231); + if (lookahead == 'u') ADVANCE(3652); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3432: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'i') ADVANCE(3527); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'i') ADVANCE(3542); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3433: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'i') ADVANCE(3766); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'i') ADVANCE(3620); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3434: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'i') ADVANCE(3745); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'i') ADVANCE(3675); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3435: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'i') ADVANCE(3683); - if (lookahead == 'n') ADVANCE(2512); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'i') ADVANCE(4080); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3436: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'i') ADVANCE(3683); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'i') ADVANCE(4075); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3437: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'i') ADVANCE(3274); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'i') ADVANCE(3630); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3438: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'i') ADVANCE(3561); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'i') ADVANCE(3616); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3439: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'i') ADVANCE(2988); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'i') ADVANCE(4156); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3440: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'i') ADVANCE(2992); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'i') ADVANCE(3553); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3441: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'i') ADVANCE(2866); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'i') ADVANCE(3679); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3442: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'i') ADVANCE(3282); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'i') ADVANCE(3170); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3443: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'i') ADVANCE(3283); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'i') ADVANCE(2777); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3444: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'i') ADVANCE(3284); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'i') ADVANCE(3572); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3445: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'i') ADVANCE(3285); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'i') ADVANCE(3540); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3446: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'i') ADVANCE(3287); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'i') ADVANCE(3779); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3447: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'i') ADVANCE(3289); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'i') ADVANCE(3758); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3448: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'i') ADVANCE(3290); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'i') ADVANCE(3696); + if (lookahead == 'n') ADVANCE(2525); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3449: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'i') ADVANCE(3292); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'i') ADVANCE(3696); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3450: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'i') ADVANCE(4011); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'i') ADVANCE(3287); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3451: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'i') ADVANCE(2832); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'i') ADVANCE(3574); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3452: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'i') ADVANCE(3301); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'i') ADVANCE(3001); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3453: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'i') ADVANCE(2834); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'i') ADVANCE(3005); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3454: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'i') ADVANCE(2835); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'i') ADVANCE(2879); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3455: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'i') ADVANCE(2836); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'i') ADVANCE(3295); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3456: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'i') ADVANCE(2837); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'i') ADVANCE(3296); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3457: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'j') ADVANCE(2512); - if (lookahead == 'n') ADVANCE(3458); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'i') ADVANCE(3297); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3458: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'j') ADVANCE(2512); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'i') ADVANCE(3298); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3459: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'k') ADVANCE(2512); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'i') ADVANCE(3300); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3460: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'k') ADVANCE(2637); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'i') ADVANCE(3302); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3461: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'k') ADVANCE(2990); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'i') ADVANCE(3303); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3462: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'k') ADVANCE(3564); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'i') ADVANCE(3305); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3463: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'k') ADVANCE(3537); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'i') ADVANCE(4024); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3464: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'k') ADVANCE(2435); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'i') ADVANCE(2845); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3465: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'k') ADVANCE(2412); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'i') ADVANCE(3314); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3466: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'k') ADVANCE(2881); - if (lookahead == 'm') ADVANCE(2425); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'i') ADVANCE(2847); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3467: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'k') ADVANCE(2881); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'i') ADVANCE(2848); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3468: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'k') ADVANCE(4251); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'i') ADVANCE(2849); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3469: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'k') ADVANCE(2477); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'i') ADVANCE(2850); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3470: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'k') ADVANCE(4059); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'j') ADVANCE(2525); + if (lookahead == 'n') ADVANCE(3471); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3471: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'k') ADVANCE(3078); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'j') ADVANCE(2525); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3472: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'k') ADVANCE(3083); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'k') ADVANCE(2525); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3473: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'k') ADVANCE(2791); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'k') ADVANCE(2650); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3474: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'k') ADVANCE(2798); - if (lookahead == 'l') ADVANCE(2729); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'k') ADVANCE(3003); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3475: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'k') ADVANCE(2798); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'k') ADVANCE(3577); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3476: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'k') ADVANCE(3428); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'k') ADVANCE(3550); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3477: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'l') ADVANCE(3004); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'k') ADVANCE(2448); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3478: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'l') ADVANCE(2512); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'k') ADVANCE(2425); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3479: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'l') ADVANCE(2474); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'k') ADVANCE(2894); + if (lookahead == 'm') ADVANCE(2438); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3480: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'l') ADVANCE(2616); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'k') ADVANCE(2894); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3481: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'l') ADVANCE(2588); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'k') ADVANCE(4264); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3482: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'l') ADVANCE(2348); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'k') ADVANCE(2490); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3483: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'l') ADVANCE(2418); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'k') ADVANCE(4072); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3484: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'l') ADVANCE(4284); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'k') ADVANCE(3091); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3485: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'l') ADVANCE(2550); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'k') ADVANCE(3096); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3486: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'l') ADVANCE(2537); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'k') ADVANCE(2804); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3487: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'l') ADVANCE(2312); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'k') ADVANCE(2811); + if (lookahead == 'l') ADVANCE(2742); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3488: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'l') ADVANCE(2652); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'k') ADVANCE(2811); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3489: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'l') ADVANCE(4263); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'k') ADVANCE(3441); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3490: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'l') ADVANCE(3177); - if (lookahead == 'q') ADVANCE(4202); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'l') ADVANCE(3017); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3491: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'l') ADVANCE(3177); - if (lookahead == 'q') ADVANCE(4201); - if (lookahead == 'x') ADVANCE(3368); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'l') ADVANCE(2525); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3492: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'l') ADVANCE(3177); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'l') ADVANCE(2487); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3493: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'l') ADVANCE(2601); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'l') ADVANCE(2629); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3494: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'l') ADVANCE(4080); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'l') ADVANCE(2601); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3495: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'l') ADVANCE(2317); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'l') ADVANCE(2361); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3496: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'l') ADVANCE(2594); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'l') ADVANCE(2431); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3497: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'l') ADVANCE(2558); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'l') ADVANCE(4297); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3498: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'l') ADVANCE(2859); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'l') ADVANCE(2563); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3499: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'l') ADVANCE(2551); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'l') ADVANCE(2550); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3500: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'l') ADVANCE(2639); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'l') ADVANCE(2325); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3501: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'l') ADVANCE(2669); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'l') ADVANCE(2665); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3502: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'l') ADVANCE(2569); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'l') ADVANCE(4276); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3503: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'l') ADVANCE(2461); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'l') ADVANCE(3190); + if (lookahead == 'q') ADVANCE(4215); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3504: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'l') ADVANCE(2700); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'l') ADVANCE(3190); + if (lookahead == 'q') ADVANCE(4214); + if (lookahead == 'x') ADVANCE(3381); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3505: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'l') ADVANCE(2382); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'l') ADVANCE(3190); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3506: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'l') ADVANCE(2579); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'l') ADVANCE(2614); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3507: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'l') ADVANCE(3029); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'l') ADVANCE(4093); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3508: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'l') ADVANCE(3750); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'l') ADVANCE(2330); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3509: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'l') ADVANCE(3459); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'l') ADVANCE(2607); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3510: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'l') ADVANCE(3016); - if (lookahead == 'm') ADVANCE(3113); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'l') ADVANCE(2571); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3511: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'l') ADVANCE(3016); - if (lookahead == 'm') ADVANCE(3135); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'l') ADVANCE(2872); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3512: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'l') ADVANCE(3016); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'l') ADVANCE(2564); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3513: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'l') ADVANCE(3095); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'l') ADVANCE(2652); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3514: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'l') ADVANCE(4023); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'l') ADVANCE(2682); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3515: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'l') ADVANCE(2968); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'l') ADVANCE(2582); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3516: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'l') ADVANCE(3379); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'l') ADVANCE(2474); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3517: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'l') ADVANCE(4262); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'l') ADVANCE(2713); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3518: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'l') ADVANCE(3345); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'l') ADVANCE(2395); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3519: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'l') ADVANCE(3116); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'l') ADVANCE(2592); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3520: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'l') ADVANCE(3478); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'l') ADVANCE(3042); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3521: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'l') ADVANCE(4272); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'l') ADVANCE(3763); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3522: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'l') ADVANCE(3758); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'l') ADVANCE(3472); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3523: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'l') ADVANCE(4209); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'l') ADVANCE(3029); + if (lookahead == 'm') ADVANCE(3126); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3524: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'l') ADVANCE(3373); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'l') ADVANCE(3029); + if (lookahead == 'm') ADVANCE(3148); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3525: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'l') ADVANCE(3505); - if (lookahead == 'm') ADVANCE(3809); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'l') ADVANCE(3029); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3526: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'l') ADVANCE(3501); - if (lookahead == 'p') ADVANCE(3218); - if (lookahead == 't') ADVANCE(2381); - if (lookahead == 'u') ADVANCE(2864); - if (lookahead == 'w') ADVANCE(3629); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'l') ADVANCE(3108); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3527: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'l') ADVANCE(3052); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'l') ADVANCE(4036); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3528: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'l') ADVANCE(3104); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'l') ADVANCE(2981); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3529: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'l') ADVANCE(3488); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'l') ADVANCE(3392); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3530: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'l') ADVANCE(3497); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'l') ADVANCE(4275); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3531: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'l') ADVANCE(3117); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'l') ADVANCE(3358); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3532: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'l') ADVANCE(3579); - if (lookahead == 's') ADVANCE(3314); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'l') ADVANCE(3129); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3533: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'l') ADVANCE(3776); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'l') ADVANCE(3491); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3534: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'l') ADVANCE(3400); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'l') ADVANCE(4285); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3535: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'l') ADVANCE(3371); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'l') ADVANCE(3771); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3536: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'l') ADVANCE(3496); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'l') ADVANCE(4222); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3537: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'l') ADVANCE(3727); - if (lookahead == 's') ADVANCE(3867); - if (lookahead == 't') ADVANCE(4022); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'l') ADVANCE(3386); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3538: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'l') ADVANCE(3092); - if (lookahead == 'q') ADVANCE(3539); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'l') ADVANCE(3518); + if (lookahead == 'm') ADVANCE(3822); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3539: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'l') ADVANCE(3092); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'l') ADVANCE(3514); + if (lookahead == 'p') ADVANCE(3231); + if (lookahead == 't') ADVANCE(2394); + if (lookahead == 'u') ADVANCE(2877); + if (lookahead == 'w') ADVANCE(3642); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3540: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'l') ADVANCE(3413); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'l') ADVANCE(3065); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3541: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'l') ADVANCE(2715); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'l') ADVANCE(3117); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3542: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'l') ADVANCE(3500); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'l') ADVANCE(3501); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3543: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'l') ADVANCE(3064); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'l') ADVANCE(3510); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3544: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'l') ADVANCE(3065); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'l') ADVANCE(3130); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3545: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'l') ADVANCE(3761); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'l') ADVANCE(3592); + if (lookahead == 's') ADVANCE(3327); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3546: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'l') ADVANCE(3053); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'l') ADVANCE(3789); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3547: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'l') ADVANCE(3184); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'l') ADVANCE(3413); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3548: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'l') ADVANCE(3106); - if (lookahead == 'r') ADVANCE(3406); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'l') ADVANCE(3384); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3549: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'l') ADVANCE(3072); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'l') ADVANCE(3509); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3550: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'l') ADVANCE(3073); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'l') ADVANCE(3740); + if (lookahead == 's') ADVANCE(3880); + if (lookahead == 't') ADVANCE(4035); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3551: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'l') ADVANCE(3084); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'l') ADVANCE(3105); + if (lookahead == 'q') ADVANCE(3552); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3552: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'l') ADVANCE(3204); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'l') ADVANCE(3105); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3553: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'l') ADVANCE(3096); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'l') ADVANCE(3426); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3554: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'l') ADVANCE(3075); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'l') ADVANCE(2728); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3555: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'l') ADVANCE(3076); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'l') ADVANCE(3513); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3556: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); if (lookahead == 'l') ADVANCE(3077); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3557: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'l') ADVANCE(3093); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'l') ADVANCE(3078); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3558: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'l') ADVANCE(2729); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'l') ADVANCE(3774); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3559: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'l') ADVANCE(3380); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'l') ADVANCE(3066); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3560: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'l') ADVANCE(3023); - if (lookahead == 'm') ADVANCE(3107); - if (lookahead == 'n') ADVANCE(4080); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'l') ADVANCE(3197); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3561: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'l') ADVANCE(3023); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'l') ADVANCE(3119); + if (lookahead == 'r') ADVANCE(3419); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3562: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'l') ADVANCE(3751); - if (lookahead == 'n') ADVANCE(3268); - if (lookahead == 'p') ADVANCE(3217); - if (lookahead == 'u') ADVANCE(3690); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'l') ADVANCE(3085); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3563: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'l') ADVANCE(2671); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'l') ADVANCE(3086); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3564: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'l') ADVANCE(3088); - if (lookahead == 'r') ADVANCE(3437); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'l') ADVANCE(3097); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3565: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'l') ADVANCE(3169); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'l') ADVANCE(3217); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3566: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'l') ADVANCE(3168); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'l') ADVANCE(3109); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3567: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'l') ADVANCE(2784); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'l') ADVANCE(3088); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3568: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'l') ADVANCE(4185); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'l') ADVANCE(3089); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3569: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'l') ADVANCE(3531); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'l') ADVANCE(3090); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3570: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'l') ADVANCE(2730); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'l') ADVANCE(3106); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3571: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'l') ADVANCE(3421); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'l') ADVANCE(2742); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3572: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'l') ADVANCE(3756); - if (lookahead == 'm') ADVANCE(3612); - if (lookahead == 'n') ADVANCE(3244); - if (lookahead == 'p') ADVANCE(2401); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'l') ADVANCE(3393); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3573: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'l') ADVANCE(3969); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'l') ADVANCE(3036); + if (lookahead == 'm') ADVANCE(3120); + if (lookahead == 'n') ADVANCE(4093); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3574: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'l') ADVANCE(3356); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'l') ADVANCE(3036); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3575: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'l') ADVANCE(3516); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'l') ADVANCE(3764); + if (lookahead == 'n') ADVANCE(3281); + if (lookahead == 'p') ADVANCE(3230); + if (lookahead == 'u') ADVANCE(3703); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3576: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'l') ADVANCE(3403); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'l') ADVANCE(2684); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3577: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'l') ADVANCE(3519); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'l') ADVANCE(3101); + if (lookahead == 'r') ADVANCE(3450); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3578: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'l') ADVANCE(2806); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'l') ADVANCE(3182); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3579: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'l') ADVANCE(4075); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'l') ADVANCE(3181); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3580: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'l') ADVANCE(3571); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'l') ADVANCE(2797); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3581: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'l') ADVANCE(3173); - if (lookahead == 'm') ADVANCE(2751); - if (lookahead == 'r') ADVANCE(3437); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'l') ADVANCE(4198); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3582: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'l') ADVANCE(3199); - if (lookahead == 'r') ADVANCE(3449); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'l') ADVANCE(3544); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3583: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'm') ADVANCE(2512); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'l') ADVANCE(2743); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3584: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'm') ADVANCE(2425); - if (lookahead == 'r') ADVANCE(3708); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'l') ADVANCE(3434); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3585: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'm') ADVANCE(2425); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'l') ADVANCE(3769); + if (lookahead == 'm') ADVANCE(3625); + if (lookahead == 'n') ADVANCE(3257); + if (lookahead == 'p') ADVANCE(2414); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3586: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'm') ADVANCE(2637); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'l') ADVANCE(3982); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3587: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'm') ADVANCE(2447); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'l') ADVANCE(3369); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3588: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'm') ADVANCE(2493); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'l') ADVANCE(3529); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3589: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'm') ADVANCE(2492); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'l') ADVANCE(3416); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3590: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'm') ADVANCE(2652); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'l') ADVANCE(3532); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3591: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'm') ADVANCE(3435); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'l') ADVANCE(2819); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3592: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'm') ADVANCE(3343); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'l') ADVANCE(4088); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3593: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'm') ADVANCE(2379); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'l') ADVANCE(3584); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3594: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'm') ADVANCE(3798); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'l') ADVANCE(3186); + if (lookahead == 'm') ADVANCE(2764); + if (lookahead == 'r') ADVANCE(3450); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3595: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'm') ADVANCE(3827); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'l') ADVANCE(3212); + if (lookahead == 'r') ADVANCE(3462); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3596: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'm') ADVANCE(3808); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'm') ADVANCE(2525); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3597: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'm') ADVANCE(3342); - if (lookahead == 'p') ADVANCE(2803); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'm') ADVANCE(2438); + if (lookahead == 'r') ADVANCE(3721); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3598: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'm') ADVANCE(3342); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'm') ADVANCE(2438); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3599: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'm') ADVANCE(3590); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'm') ADVANCE(2650); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3600: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'm') ADVANCE(2385); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'm') ADVANCE(2460); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3601: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'm') ADVANCE(3831); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'm') ADVANCE(2506); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3602: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'm') ADVANCE(2387); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'm') ADVANCE(2505); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3603: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'm') ADVANCE(2696); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'm') ADVANCE(2665); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3604: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'm') ADVANCE(3116); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'm') ADVANCE(3448); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3605: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'm') ADVANCE(3478); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'm') ADVANCE(3356); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3606: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'm') ADVANCE(3624); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'm') ADVANCE(2392); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3607: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'm') ADVANCE(3052); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'm') ADVANCE(3811); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3608: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'm') ADVANCE(3823); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'm') ADVANCE(3840); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3609: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'm') ADVANCE(3818); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'm') ADVANCE(3821); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3610: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'm') ADVANCE(2808); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'm') ADVANCE(3355); + if (lookahead == 'p') ADVANCE(2816); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3611: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'm') ADVANCE(2680); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'm') ADVANCE(3355); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3612: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'm') ADVANCE(2687); - if (lookahead == 'p') ADVANCE(2405); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'm') ADVANCE(3603); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3613: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'm') ADVANCE(3080); - if (lookahead == 'x') ADVANCE(3113); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'm') ADVANCE(2398); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3614: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'm') ADVANCE(3080); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'm') ADVANCE(3844); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3615: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'm') ADVANCE(2677); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'm') ADVANCE(2400); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3616: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'm') ADVANCE(2660); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'm') ADVANCE(2709); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3617: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'm') ADVANCE(3113); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'm') ADVANCE(3129); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3618: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'm') ADVANCE(3839); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'm') ADVANCE(3491); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3619: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'm') ADVANCE(3100); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'm') ADVANCE(3637); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3620: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'm') ADVANCE(3611); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'm') ADVANCE(3065); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3621: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'm') ADVANCE(3436); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'm') ADVANCE(3836); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3622: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'm') ADVANCE(2802); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'm') ADVANCE(3831); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3623: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'n') ADVANCE(3004); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'm') ADVANCE(2821); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3624: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'n') ADVANCE(2512); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'm') ADVANCE(2693); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3625: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'n') ADVANCE(2408); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'm') ADVANCE(2700); + if (lookahead == 'p') ADVANCE(2418); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3626: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'n') ADVANCE(2547); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'm') ADVANCE(3093); + if (lookahead == 'x') ADVANCE(3126); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3627: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'n') ADVANCE(2560); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'm') ADVANCE(3093); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3628: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'n') ADVANCE(2637); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'm') ADVANCE(2690); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3629: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'n') ADVANCE(2815); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'm') ADVANCE(2673); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3630: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'n') ADVANCE(2368); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'm') ADVANCE(3126); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3631: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'n') ADVANCE(2960); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'm') ADVANCE(3852); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3632: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'n') ADVANCE(4280); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'm') ADVANCE(3113); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3633: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'n') ADVANCE(2296); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'm') ADVANCE(3624); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3634: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'n') ADVANCE(2643); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'm') ADVANCE(3449); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3635: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'n') ADVANCE(2647); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'm') ADVANCE(2815); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3636: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'n') ADVANCE(2315); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'n') ADVANCE(3017); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3637: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'n') ADVANCE(4080); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'n') ADVANCE(2525); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3638: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'n') ADVANCE(2610); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'n') ADVANCE(2421); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3639: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'n') ADVANCE(2371); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'n') ADVANCE(2560); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3640: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'n') ADVANCE(2546); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'n') ADVANCE(2573); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3641: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'n') ADVANCE(4256); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'n') ADVANCE(2650); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3642: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'n') ADVANCE(3238); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'n') ADVANCE(2828); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3643: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'n') ADVANCE(3036); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'n') ADVANCE(2381); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3644: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'n') ADVANCE(2379); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'n') ADVANCE(2973); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3645: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'n') ADVANCE(3242); - if (lookahead == 'r') ADVANCE(3870); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'n') ADVANCE(4293); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3646: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'n') ADVANCE(3242); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'n') ADVANCE(2309); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3647: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'n') ADVANCE(4138); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'n') ADVANCE(2656); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3648: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'n') ADVANCE(3246); - if (lookahead == 'p') ADVANCE(3218); - if (lookahead == 'w') ADVANCE(3147); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'n') ADVANCE(2660); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3649: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'n') ADVANCE(2482); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'n') ADVANCE(2328); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3650: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'n') ADVANCE(3459); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'n') ADVANCE(4093); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3651: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'n') ADVANCE(2385); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'n') ADVANCE(2623); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3652: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'n') ADVANCE(4023); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'n') ADVANCE(2384); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3653: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'n') ADVANCE(3009); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'n') ADVANCE(2559); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3654: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'n') ADVANCE(2380); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'n') ADVANCE(4269); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3655: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'n') ADVANCE(3270); - if (lookahead == 'r') ADVANCE(3127); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'n') ADVANCE(3251); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3656: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'n') ADVANCE(2966); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'n') ADVANCE(3049); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3657: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'n') ADVANCE(3286); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'n') ADVANCE(2392); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3658: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'n') ADVANCE(3052); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'n') ADVANCE(3255); + if (lookahead == 'r') ADVANCE(3883); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3659: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'n') ADVANCE(3245); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'n') ADVANCE(3255); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3660: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'n') ADVANCE(2994); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'n') ADVANCE(4151); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3661: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'n') ADVANCE(3754); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'n') ADVANCE(3259); + if (lookahead == 'p') ADVANCE(3231); + if (lookahead == 'w') ADVANCE(3160); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3662: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'n') ADVANCE(3272); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'n') ADVANCE(2495); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3663: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'n') ADVANCE(3019); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'n') ADVANCE(3472); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3664: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'n') ADVANCE(3299); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'n') ADVANCE(2398); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3665: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'n') ADVANCE(3078); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'n') ADVANCE(4036); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3666: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'n') ADVANCE(3247); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'n') ADVANCE(3022); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3667: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'n') ADVANCE(2989); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'n') ADVANCE(2393); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3668: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'n') ADVANCE(4156); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'n') ADVANCE(3283); + if (lookahead == 'r') ADVANCE(3140); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3669: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'n') ADVANCE(4089); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'n') ADVANCE(2979); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3670: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'n') ADVANCE(4103); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'n') ADVANCE(3299); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3671: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'n') ADVANCE(4128); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'n') ADVANCE(3065); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3672: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'n') ADVANCE(4130); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'n') ADVANCE(3258); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3673: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'n') ADVANCE(3108); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'n') ADVANCE(3007); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3674: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'n') ADVANCE(3111); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'n') ADVANCE(3767); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3675: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'n') ADVANCE(3548); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'n') ADVANCE(3285); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3676: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'n') ADVANCE(4187); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'n') ADVANCE(3032); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3677: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'n') ADVANCE(2334); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'n') ADVANCE(3312); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3678: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'n') ADVANCE(3265); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'n') ADVANCE(3091); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3679: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'n') ADVANCE(3269); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'n') ADVANCE(3260); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3680: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'n') ADVANCE(3193); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'n') ADVANCE(3002); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3681: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'n') ADVANCE(3378); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'n') ADVANCE(4169); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3682: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'n') ADVANCE(4146); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'n') ADVANCE(4102); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3683: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'n') ADVANCE(4185); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'n') ADVANCE(4116); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3684: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'n') ADVANCE(3759); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'n') ADVANCE(4141); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3685: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'n') ADVANCE(4147); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'n') ADVANCE(4143); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3686: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'n') ADVANCE(3356); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'n') ADVANCE(3121); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3687: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'n') ADVANCE(4145); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'n') ADVANCE(3124); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3688: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'n') ADVANCE(4165); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'n') ADVANCE(3561); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3689: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'n') ADVANCE(2776); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'n') ADVANCE(4200); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3690: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'n') ADVANCE(4157); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'n') ADVANCE(2347); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3691: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'n') ADVANCE(3291); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'n') ADVANCE(3278); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3692: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'n') ADVANCE(4155); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'n') ADVANCE(3282); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3693: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'n') ADVANCE(3434); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'n') ADVANCE(3206); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3694: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'n') ADVANCE(3196); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'n') ADVANCE(3391); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3695: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'n') ADVANCE(3293); - if (lookahead == 'r') ADVANCE(3973); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'n') ADVANCE(4159); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3696: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'n') ADVANCE(3293); - if (lookahead == 'r') ADVANCE(3977); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'n') ADVANCE(4198); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3697: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'n') ADVANCE(4159); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'n') ADVANCE(3772); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3698: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'n') ADVANCE(3294); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'n') ADVANCE(4160); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3699: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'n') ADVANCE(3295); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'n') ADVANCE(3369); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3700: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'n') ADVANCE(4161); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'n') ADVANCE(4158); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3701: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'n') ADVANCE(3296); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'n') ADVANCE(4178); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3702: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'n') ADVANCE(3297); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'n') ADVANCE(2789); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3703: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'n') ADVANCE(3298); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'n') ADVANCE(4170); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3704: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'n') ADVANCE(4166); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'n') ADVANCE(3304); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3705: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'n') ADVANCE(2826); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'n') ADVANCE(4168); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3706: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'n') ADVANCE(2817); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'n') ADVANCE(3447); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3707: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'o') ADVANCE(3004); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'n') ADVANCE(3209); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3708: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'o') ADVANCE(2512); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'n') ADVANCE(3306); + if (lookahead == 'r') ADVANCE(3986); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3709: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'o') ADVANCE(2457); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'n') ADVANCE(3306); + if (lookahead == 'r') ADVANCE(3990); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3710: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'o') ADVANCE(3218); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'n') ADVANCE(4172); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3711: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'o') ADVANCE(4247); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'n') ADVANCE(3307); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3712: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'o') ADVANCE(2648); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'n') ADVANCE(3308); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3713: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'o') ADVANCE(4226); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'n') ADVANCE(4174); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3714: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'o') ADVANCE(2374); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'n') ADVANCE(3309); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3715: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'o') ADVANCE(4079); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'n') ADVANCE(3310); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3716: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'o') ADVANCE(4078); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'n') ADVANCE(3311); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3717: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'o') ADVANCE(3870); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'n') ADVANCE(4179); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3718: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'o') ADVANCE(4080); - if (lookahead == 's') ADVANCE(4179); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'n') ADVANCE(2839); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3719: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'o') ADVANCE(4080); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'n') ADVANCE(2830); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3720: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'o') ADVANCE(2437); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'o') ADVANCE(3017); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3721: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'o') ADVANCE(4258); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'o') ADVANCE(2525); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3722: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'o') ADVANCE(2948); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'o') ADVANCE(2470); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3723: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'o') ADVANCE(4256); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'o') ADVANCE(3231); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3724: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'o') ADVANCE(4049); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'o') ADVANCE(4260); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3725: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'o') ADVANCE(2473); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'o') ADVANCE(2661); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3726: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'o') ADVANCE(4236); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'o') ADVANCE(4239); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3727: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'o') ADVANCE(4276); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'o') ADVANCE(2387); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3728: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'o') ADVANCE(3798); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'o') ADVANCE(4092); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3729: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'o') ADVANCE(3686); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'o') ADVANCE(4091); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3730: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'o') ADVANCE(4237); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'o') ADVANCE(3883); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3731: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'o') ADVANCE(4238); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'o') ADVANCE(4093); + if (lookahead == 's') ADVANCE(4192); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3732: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'o') ADVANCE(3583); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'o') ADVANCE(4093); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3733: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'o') ADVANCE(3459); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'o') ADVANCE(2450); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3734: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'o') ADVANCE(4133); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'o') ADVANCE(4271); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3735: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'o') ADVANCE(4239); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'o') ADVANCE(2961); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3736: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'o') ADVANCE(4252); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'o') ADVANCE(4269); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3737: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'o') ADVANCE(4023); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'o') ADVANCE(4062); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3738: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'o') ADVANCE(3646); - if (lookahead == 'y') ADVANCE(2512); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'o') ADVANCE(2486); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3739: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'o') ADVANCE(3646); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'o') ADVANCE(4249); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3740: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'o') ADVANCE(4253); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'o') ADVANCE(4289); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3741: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'o') ADVANCE(4245); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'o') ADVANCE(3811); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3742: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'o') ADVANCE(4240); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'o') ADVANCE(3699); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3743: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'o') ADVANCE(3478); - if (lookahead == 'u') ADVANCE(2839); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'o') ADVANCE(4250); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3744: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'o') ADVANCE(3025); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'o') ADVANCE(4251); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3745: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'o') ADVANCE(3652); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'o') ADVANCE(3596); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3746: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'o') ADVANCE(4243); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'o') ADVANCE(3472); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3747: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'o') ADVANCE(4084); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'o') ADVANCE(4146); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3748: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'o') ADVANCE(3924); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'o') ADVANCE(4252); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3749: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'o') ADVANCE(3624); - if (lookahead == 'r') ADVANCE(2684); - if (lookahead == 't') ADVANCE(2512); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'o') ADVANCE(4265); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3750: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'o') ADVANCE(3624); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'o') ADVANCE(4036); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3751: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'o') ADVANCE(3644); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'o') ADVANCE(3659); + if (lookahead == 'y') ADVANCE(2525); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3752: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'o') ADVANCE(3680); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'o') ADVANCE(3659); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3753: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'o') ADVANCE(3636); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'o') ADVANCE(4266); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3754: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'o') ADVANCE(4222); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'o') ADVANCE(4258); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3755: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'o') ADVANCE(3623); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'o') ADVANCE(4253); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3756: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'o') ADVANCE(3651); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'o') ADVANCE(3491); + if (lookahead == 'u') ADVANCE(2852); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3757: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'o') ADVANCE(4224); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'o') ADVANCE(3038); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3758: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'o') ADVANCE(3717); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'o') ADVANCE(3665); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3759: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'o') ADVANCE(4170); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'o') ADVANCE(4256); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3760: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'o') ADVANCE(3477); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'o') ADVANCE(4097); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3761: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'o') ADVANCE(2949); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'o') ADVANCE(3937); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3762: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'o') ADVANCE(4119); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'o') ADVANCE(3637); + if (lookahead == 'r') ADVANCE(2697); + if (lookahead == 't') ADVANCE(2525); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3763: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'o') ADVANCE(4121); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'o') ADVANCE(3637); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3764: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'o') ADVANCE(4163); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'o') ADVANCE(3657); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3765: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'o') ADVANCE(3675); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'o') ADVANCE(3693); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3766: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'o') ADVANCE(3677); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'o') ADVANCE(3649); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3767: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'o') ADVANCE(3643); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'o') ADVANCE(4235); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3768: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'o') ADVANCE(3936); - if (lookahead == 'r') ADVANCE(3728); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'o') ADVANCE(3636); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3769: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'o') ADVANCE(3961); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'o') ADVANCE(3664); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3770: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'o') ADVANCE(3963); - if (lookahead == 'r') ADVANCE(3728); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'o') ADVANCE(4237); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3771: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'o') ADVANCE(3887); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'o') ADVANCE(3730); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3772: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'o') ADVANCE(4248); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'o') ADVANCE(4183); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3773: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'o') ADVANCE(3599); - if (lookahead == 'y') ADVANCE(2512); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'o') ADVANCE(3490); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3774: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'o') ADVANCE(3599); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'o') ADVANCE(2962); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3775: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'o') ADVANCE(3942); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'o') ADVANCE(4132); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3776: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'o') ADVANCE(3826); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'o') ADVANCE(4134); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3777: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'o') ADVANCE(3837); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'o') ADVANCE(4176); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3778: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'o') ADVANCE(4206); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'o') ADVANCE(3688); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3779: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'o') ADVANCE(4254); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'o') ADVANCE(3690); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3780: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'o') ADVANCE(4249); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'o') ADVANCE(3656); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3781: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'o') ADVANCE(4212); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'o') ADVANCE(3949); + if (lookahead == 'r') ADVANCE(3741); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3782: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'o') ADVANCE(4127); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'o') ADVANCE(3974); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3783: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'o') ADVANCE(3679); - if (lookahead == 'u') ADVANCE(3817); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'o') ADVANCE(3976); + if (lookahead == 'r') ADVANCE(3741); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3784: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'o') ADVANCE(4250); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'o') ADVANCE(3900); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3785: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'o') ADVANCE(3692); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'o') ADVANCE(4261); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3786: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'o') ADVANCE(3957); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'o') ADVANCE(3612); + if (lookahead == 'y') ADVANCE(2525); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3787: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'o') ADVANCE(3765); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'o') ADVANCE(3612); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3788: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'o') ADVANCE(3938); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'o') ADVANCE(3955); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3789: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'o') ADVANCE(3671); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'o') ADVANCE(3839); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3790: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'o') ADVANCE(3745); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'o') ADVANCE(3850); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3791: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'o') ADVANCE(3767); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'o') ADVANCE(4219); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3792: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'o') ADVANCE(4003); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'o') ADVANCE(4267); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3793: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'o') ADVANCE(3574); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'o') ADVANCE(4262); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3794: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'o') ADVANCE(4227); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'o') ADVANCE(4225); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3795: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'o') ADVANCE(4255); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'o') ADVANCE(4140); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3796: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'p') ADVANCE(4074); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'o') ADVANCE(3692); + if (lookahead == 'u') ADVANCE(3830); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3797: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'p') ADVANCE(2512); - if (lookahead == 'r') ADVANCE(3750); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'o') ADVANCE(4263); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3798: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'p') ADVANCE(2512); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'o') ADVANCE(3705); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3799: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'p') ADVANCE(3306); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'o') ADVANCE(3970); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3800: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'p') ADVANCE(3218); - if (lookahead == 'r') ADVANCE(2795); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'o') ADVANCE(3778); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3801: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'p') ADVANCE(3218); - if (lookahead == 'r') ADVANCE(2539); - if (lookahead == 'u') ADVANCE(3954); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'o') ADVANCE(3951); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3802: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'p') ADVANCE(3218); - if (lookahead == 'r') ADVANCE(3348); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'o') ADVANCE(3684); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3803: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'p') ADVANCE(3218); - if (lookahead == 't') ADVANCE(2292); - if (lookahead == 'u') ADVANCE(2863); - if (lookahead == 'w') ADVANCE(3626); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'o') ADVANCE(3758); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3804: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'p') ADVANCE(3218); - if (lookahead == 't') ADVANCE(2481); - if (lookahead == 'w') ADVANCE(4139); - if (lookahead == 'x') ADVANCE(2573); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'o') ADVANCE(3780); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3805: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'p') ADVANCE(3218); - if (lookahead == 'u') ADVANCE(3653); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'o') ADVANCE(4016); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3806: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'p') ADVANCE(3218); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'o') ADVANCE(3587); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3807: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'p') ADVANCE(2291); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'o') ADVANCE(4240); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3808: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'p') ADVANCE(2581); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'o') ADVANCE(4268); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3809: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'p') ADVANCE(2297); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'p') ADVANCE(4087); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3810: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'p') ADVANCE(2274); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'p') ADVANCE(2525); + if (lookahead == 'r') ADVANCE(3763); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3811: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'p') ADVANCE(2582); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'p') ADVANCE(2525); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3812: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'p') ADVANCE(2541); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'p') ADVANCE(3319); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3813: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'p') ADVANCE(3870); - if (lookahead == 's') ADVANCE(2883); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'p') ADVANCE(3231); + if (lookahead == 'r') ADVANCE(2808); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3814: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'p') ADVANCE(2652); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'p') ADVANCE(3231); + if (lookahead == 'r') ADVANCE(2552); + if (lookahead == 'u') ADVANCE(3967); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3815: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'p') ADVANCE(2451); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'p') ADVANCE(3231); + if (lookahead == 'r') ADVANCE(3361); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3816: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'p') ADVANCE(2546); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'p') ADVANCE(3231); + if (lookahead == 't') ADVANCE(2305); + if (lookahead == 'u') ADVANCE(2876); + if (lookahead == 'w') ADVANCE(3639); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3817: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'p') ADVANCE(2556); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'p') ADVANCE(3231); + if (lookahead == 't') ADVANCE(2494); + if (lookahead == 'w') ADVANCE(4152); + if (lookahead == 'x') ADVANCE(2586); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3818: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'p') ADVANCE(2379); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'p') ADVANCE(3231); + if (lookahead == 'u') ADVANCE(3666); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3819: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'p') ADVANCE(2461); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'p') ADVANCE(3231); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3820: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'p') ADVANCE(3303); - if (lookahead == 't') ADVANCE(2512); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'p') ADVANCE(2304); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3821: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'p') ADVANCE(3814); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'p') ADVANCE(2594); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3822: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'p') ADVANCE(4023); - if (lookahead == 'r') ADVANCE(3750); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'p') ADVANCE(2310); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3823: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'p') ADVANCE(2387); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'p') ADVANCE(2287); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3824: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'p') ADVANCE(3489); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'p') ADVANCE(2595); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3825: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'p') ADVANCE(3834); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'p') ADVANCE(2554); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3826: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'p') ADVANCE(3052); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'p') ADVANCE(3883); + if (lookahead == 's') ADVANCE(2896); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3827: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'p') ADVANCE(3094); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'p') ADVANCE(2665); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3828: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'p') ADVANCE(3568); - if (lookahead == 't') ADVANCE(3905); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'p') ADVANCE(2464); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3829: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'p') ADVANCE(3568); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'p') ADVANCE(2559); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3830: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'p') ADVANCE(4046); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'p') ADVANCE(2569); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3831: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'p') ADVANCE(4118); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'p') ADVANCE(2392); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3832: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'p') ADVANCE(3844); - if (lookahead == 'r') ADVANCE(3870); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'p') ADVANCE(2474); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3833: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'p') ADVANCE(3844); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'p') ADVANCE(3316); + if (lookahead == 't') ADVANCE(2525); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3834: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'p') ADVANCE(2672); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'p') ADVANCE(3827); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3835: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'p') ADVANCE(3787); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'p') ADVANCE(4036); + if (lookahead == 'r') ADVANCE(3763); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3836: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'p') ADVANCE(3570); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'p') ADVANCE(2400); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3837: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'p') ADVANCE(4110); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'p') ADVANCE(3502); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3838: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'p') ADVANCE(3737); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'p') ADVANCE(3847); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3839: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'p') ADVANCE(3534); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'p') ADVANCE(3065); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3840: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'p') ADVANCE(2792); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'p') ADVANCE(3107); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3841: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'p') ADVANCE(4064); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'p') ADVANCE(3581); + if (lookahead == 't') ADVANCE(3918); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3842: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'p') ADVANCE(3969); - if (lookahead == 's') ADVANCE(4197); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'p') ADVANCE(3581); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3843: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'p') ADVANCE(3546); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'p') ADVANCE(4059); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3844: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'p') ADVANCE(3949); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'p') ADVANCE(4131); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3845: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'p') ADVANCE(2774); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'p') ADVANCE(3857); + if (lookahead == 'r') ADVANCE(3883); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3846: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'p') ADVANCE(2824); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'p') ADVANCE(3857); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3847: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'p') ADVANCE(2593); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'p') ADVANCE(2685); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3848: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'p') ADVANCE(3791); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'p') ADVANCE(3800); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3849: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'p') ADVANCE(2807); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'p') ADVANCE(3583); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3850: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'p') ADVANCE(3790); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'p') ADVANCE(4123); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3851: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'p') ADVANCE(2826); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'p') ADVANCE(3750); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3852: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'q') ADVANCE(2512); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'p') ADVANCE(3547); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3853: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'q') ADVANCE(2369); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'p') ADVANCE(2805); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3854: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'q') ADVANCE(3538); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'p') ADVANCE(4077); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3855: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'q') ADVANCE(3276); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'p') ADVANCE(3982); + if (lookahead == 's') ADVANCE(4210); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3856: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'q') ADVANCE(3842); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'p') ADVANCE(3559); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3857: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'q') ADVANCE(2453); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'p') ADVANCE(3962); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3858: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'q') ADVANCE(3852); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'p') ADVANCE(2787); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3859: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'q') ADVANCE(4173); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'p') ADVANCE(2837); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3860: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'q') ADVANCE(4192); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'p') ADVANCE(2606); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3861: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'q') ADVANCE(4225); - if (lookahead == 'u') ADVANCE(2861); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'p') ADVANCE(3804); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3862: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'q') ADVANCE(4213); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'p') ADVANCE(2820); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3863: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'q') ADVANCE(4202); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'p') ADVANCE(3803); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3864: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'q') ADVANCE(2967); - if (lookahead == 't') ADVANCE(2669); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'p') ADVANCE(2839); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3865: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'q') ADVANCE(4216); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'q') ADVANCE(2525); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3866: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'q') ADVANCE(4220); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'q') ADVANCE(2382); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3867: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'q') ADVANCE(4223); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'q') ADVANCE(3551); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3868: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'r') ADVANCE(3004); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'q') ADVANCE(3289); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3869: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'r') ADVANCE(3056); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'q') ADVANCE(3855); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3870: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'r') ADVANCE(2512); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'q') ADVANCE(2466); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3871: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'r') ADVANCE(2567); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'q') ADVANCE(3865); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3872: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'r') ADVANCE(2436); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'q') ADVANCE(4186); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3873: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'r') ADVANCE(3218); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'q') ADVANCE(4205); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3874: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'r') ADVANCE(2355); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'q') ADVANCE(4238); + if (lookahead == 'u') ADVANCE(2874); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3875: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'r') ADVANCE(2449); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'q') ADVANCE(4226); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3876: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'r') ADVANCE(2326); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'q') ADVANCE(4215); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3877: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'r') ADVANCE(2925); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'q') ADVANCE(2980); + if (lookahead == 't') ADVANCE(2682); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3878: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'r') ADVANCE(2548); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'q') ADVANCE(4229); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3879: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'r') ADVANCE(4288); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'q') ADVANCE(4233); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3880: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'r') ADVANCE(2402); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'q') ADVANCE(4236); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3881: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'r') ADVANCE(2351); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'r') ADVANCE(3017); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3882: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'r') ADVANCE(3315); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'r') ADVANCE(3069); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3883: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'r') ADVANCE(2327); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'r') ADVANCE(2525); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3884: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'r') ADVANCE(2619); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'r') ADVANCE(2580); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3885: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'r') ADVANCE(2491); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'r') ADVANCE(2449); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3886: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'r') ADVANCE(4292); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'r') ADVANCE(3231); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3887: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'r') ADVANCE(2289); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'r') ADVANCE(2368); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3888: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'r') ADVANCE(2301); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'r') ADVANCE(2462); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3889: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'r') ADVANCE(3870); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'r') ADVANCE(2339); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3890: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'r') ADVANCE(2442); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'r') ADVANCE(2938); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3891: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'r') ADVANCE(2601); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'r') ADVANCE(2561); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3892: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'r') ADVANCE(2874); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'r') ADVANCE(4301); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3893: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'r') ADVANCE(2485); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'r') ADVANCE(2415); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3894: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'r') ADVANCE(2409); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'r') ADVANCE(2364); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3895: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'r') ADVANCE(4080); - if (lookahead == 'u') ADVANCE(2809); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'r') ADVANCE(3328); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3896: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'r') ADVANCE(4080); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'r') ADVANCE(2340); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3897: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'r') ADVANCE(2371); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'r') ADVANCE(2632); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3898: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'r') ADVANCE(3028); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'r') ADVANCE(2504); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3899: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'r') ADVANCE(2345); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'r') ADVANCE(4305); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3900: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'r') ADVANCE(2354); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'r') ADVANCE(2302); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3901: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'r') ADVANCE(2341); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'r') ADVANCE(2314); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3902: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'r') ADVANCE(2613); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'r') ADVANCE(3883); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3903: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'r') ADVANCE(2881); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'r') ADVANCE(2455); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3904: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'r') ADVANCE(2713); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'r') ADVANCE(2614); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3905: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'r') ADVANCE(3343); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'r') ADVANCE(2887); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3906: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'r') ADVANCE(2444); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'r') ADVANCE(2498); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3907: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'r') ADVANCE(2427); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'r') ADVANCE(2422); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3908: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'r') ADVANCE(2433); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'r') ADVANCE(4093); + if (lookahead == 'u') ADVANCE(2822); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3909: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'r') ADVANCE(3003); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'r') ADVANCE(4093); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3910: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'r') ADVANCE(3000); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'r') ADVANCE(2384); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3911: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'r') ADVANCE(3708); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'r') ADVANCE(3041); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3912: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'r') ADVANCE(2438); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'r') ADVANCE(2358); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3913: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'r') ADVANCE(3469); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'r') ADVANCE(2367); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3914: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'r') ADVANCE(2467); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'r') ADVANCE(2354); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3915: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'r') ADVANCE(2559); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'r') ADVANCE(2626); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3916: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'r') ADVANCE(2478); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'r') ADVANCE(2894); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3917: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'r') ADVANCE(2986); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'r') ADVANCE(2726); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3918: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'r') ADVANCE(3798); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'r') ADVANCE(3356); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3919: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'r') ADVANCE(3123); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'r') ADVANCE(2457); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3920: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'r') ADVANCE(4138); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'r') ADVANCE(2440); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3921: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'r') ADVANCE(2441); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'r') ADVANCE(2446); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3922: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'r') ADVANCE(2657); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'r') ADVANCE(3016); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3923: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'r') ADVANCE(3750); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'r') ADVANCE(3013); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3924: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'r') ADVANCE(3459); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'r') ADVANCE(3721); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3925: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'r') ADVANCE(4266); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'r') ADVANCE(2451); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3926: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'r') ADVANCE(4268); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'r') ADVANCE(3482); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3927: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'r') ADVANCE(3712); - if (lookahead == 't') ADVANCE(2652); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'r') ADVANCE(2480); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3928: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'r') ADVANCE(4023); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'r') ADVANCE(2572); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3929: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'r') ADVANCE(3116); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'r') ADVANCE(2491); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3930: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'r') ADVANCE(3707); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'r') ADVANCE(2999); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3931: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'r') ADVANCE(2684); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'r') ADVANCE(3811); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3932: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'r') ADVANCE(4244); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'r') ADVANCE(3136); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3933: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'r') ADVANCE(4267); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'r') ADVANCE(4151); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3934: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'r') ADVANCE(3174); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'r') ADVANCE(2454); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3935: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'r') ADVANCE(3316); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'r') ADVANCE(2670); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3936: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'r') ADVANCE(3624); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'r') ADVANCE(3763); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3937: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'r') ADVANCE(2883); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'r') ADVANCE(3472); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3938: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'r') ADVANCE(3052); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'r') ADVANCE(4279); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3939: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'r') ADVANCE(3728); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'r') ADVANCE(4281); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3940: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'r') ADVANCE(3420); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'r') ADVANCE(3725); + if (lookahead == 't') ADVANCE(2665); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3941: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'r') ADVANCE(3733); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'r') ADVANCE(4036); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3942: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'r') ADVANCE(4086); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'r') ADVANCE(3129); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3943: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'r') ADVANCE(3721); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'r') ADVANCE(3720); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3944: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'r') ADVANCE(4043); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'r') ADVANCE(2697); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3945: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'r') ADVANCE(2955); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'r') ADVANCE(4257); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3946: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'r') ADVANCE(3726); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'r') ADVANCE(4280); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3947: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'r') ADVANCE(3879); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'r') ADVANCE(3187); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3948: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'r') ADVANCE(2720); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'r') ADVANCE(3329); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3949: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'r') ADVANCE(3723); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'r') ADVANCE(3637); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3950: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'r') ADVANCE(4156); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'r') ADVANCE(2896); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3951: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'r') ADVANCE(3835); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'r') ADVANCE(3065); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3952: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'r') ADVANCE(4149); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'r') ADVANCE(3741); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3953: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'r') ADVANCE(4065); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'r') ADVANCE(3433); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3954: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'r') ADVANCE(3429); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'r') ADVANCE(3746); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3955: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'r') ADVANCE(4073); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'r') ADVANCE(4099); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3956: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'r') ADVANCE(3099); - if (lookahead == 't') ADVANCE(2652); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'r') ADVANCE(3734); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3957: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'r') ADVANCE(4102); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'r') ADVANCE(4056); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3958: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'r') ADVANCE(2723); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'r') ADVANCE(2968); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3959: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'r') ADVANCE(3391); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'r') ADVANCE(3739); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3960: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'r') ADVANCE(3730); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'r') ADVANCE(3892); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3961: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'r') ADVANCE(3665); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'r') ADVANCE(2733); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3962: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'r') ADVANCE(4051); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'r') ADVANCE(3736); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3963: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'r') ADVANCE(3654); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'r') ADVANCE(4169); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3964: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'r') ADVANCE(3369); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'r') ADVANCE(3848); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3965: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'r') ADVANCE(3693); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'r') ADVANCE(4162); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3966: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'r') ADVANCE(3517); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'r') ADVANCE(4078); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3967: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'r') ADVANCE(3426); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'r') ADVANCE(3442); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3968: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'r') ADVANCE(3521); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'r') ADVANCE(4086); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3969: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'r') ADVANCE(3121); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'r') ADVANCE(3112); + if (lookahead == 't') ADVANCE(2665); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3970: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'r') ADVANCE(3731); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'r') ADVANCE(4115); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3971: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'r') ADVANCE(4082); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'r') ADVANCE(2736); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3972: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'r') ADVANCE(3063); - if (lookahead == 't') ADVANCE(2683); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'r') ADVANCE(3404); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3973: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'r') ADVANCE(3735); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'r') ADVANCE(3743); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3974: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'r') ADVANCE(3736); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'r') ADVANCE(3678); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3975: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'r') ADVANCE(3740); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'r') ADVANCE(4064); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3976: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'r') ADVANCE(3741); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'r') ADVANCE(3667); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3977: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'r') ADVANCE(3742); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'r') ADVANCE(3382); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3978: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'r') ADVANCE(3214); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'r') ADVANCE(3706); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3979: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'r') ADVANCE(3066); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'r') ADVANCE(3530); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3980: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'r') ADVANCE(3746); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'r') ADVANCE(3439); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3981: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'r') ADVANCE(3885); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'r') ADVANCE(3534); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3982: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'r') ADVANCE(3170); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'r') ADVANCE(3134); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3983: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'r') ADVANCE(3875); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'r') ADVANCE(3744); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3984: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'r') ADVANCE(3908); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'r') ADVANCE(4095); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3985: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'r') ADVANCE(3189); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'r') ADVANCE(3076); + if (lookahead == 't') ADVANCE(2696); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3986: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'r') ADVANCE(3091); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'r') ADVANCE(3748); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3987: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'r') ADVANCE(2813); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'r') ADVANCE(3749); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3988: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'r') ADVANCE(2728); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'r') ADVANCE(3753); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3989: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'r') ADVANCE(2773); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'r') ADVANCE(3754); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3990: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'r') ADVANCE(3401); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'r') ADVANCE(3755); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3991: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'r') ADVANCE(4066); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'r') ADVANCE(3227); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3992: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'r') ADVANCE(2967); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'r') ADVANCE(3079); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3993: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'r') ADVANCE(4146); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'r') ADVANCE(3759); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3994: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'r') ADVANCE(3137); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'r') ADVANCE(3898); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3995: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'r') ADVANCE(3267); - if (lookahead == 'u') ADVANCE(2512); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'r') ADVANCE(3183); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3996: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'r') ADVANCE(4129); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'r') ADVANCE(3888); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3997: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'r') ADVANCE(4191); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'r') ADVANCE(3921); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3998: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'r') ADVANCE(4068); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'r') ADVANCE(3202); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 3999: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'r') ADVANCE(3144); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'r') ADVANCE(3104); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4000: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'r') ADVANCE(3161); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'r') ADVANCE(2826); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4001: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'r') ADVANCE(3946); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'r') ADVANCE(2741); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4002: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'r') ADVANCE(2752); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'r') ADVANCE(2786); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4003: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'r') ADVANCE(4144); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'r') ADVANCE(3414); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4004: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'r') ADVANCE(3960); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'r') ADVANCE(4079); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4005: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'r') ADVANCE(3970); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'r') ADVANCE(2980); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4006: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'r') ADVANCE(3974); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'r') ADVANCE(4159); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4007: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'r') ADVANCE(3975); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'r') ADVANCE(3150); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4008: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'r') ADVANCE(3976); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'r') ADVANCE(3280); + if (lookahead == 'u') ADVANCE(2525); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4009: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'r') ADVANCE(3980); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'r') ADVANCE(4142); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4010: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'r') ADVANCE(3179); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'r') ADVANCE(4204); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4011: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'r') ADVANCE(2991); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'r') ADVANCE(4081); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4012: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'r') ADVANCE(3202); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'r') ADVANCE(3157); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4013: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'r') ADVANCE(2596); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'r') ADVANCE(3174); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4014: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'r') ADVANCE(3848); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'r') ADVANCE(3959); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4015: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'r') ADVANCE(4167); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'r') ADVANCE(2765); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4016: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'r') ADVANCE(3850); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'r') ADVANCE(4157); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4017: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'r') ADVANCE(3211); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'r') ADVANCE(3973); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4018: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'r') ADVANCE(3212); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'r') ADVANCE(3983); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4019: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'r') ADVANCE(3213); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'r') ADVANCE(3987); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4020: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'r') ADVANCE(3453); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'r') ADVANCE(3988); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4021: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'r') ADVANCE(3455); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'r') ADVANCE(3989); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4022: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'r') ADVANCE(3456); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'r') ADVANCE(3993); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4023: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 's') ADVANCE(2512); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'r') ADVANCE(3192); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4024: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 's') ADVANCE(3171); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'r') ADVANCE(3004); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4025: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 's') ADVANCE(2449); - if (lookahead == 'u') ADVANCE(3609); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'r') ADVANCE(3215); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4026: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 's') ADVANCE(2595); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'r') ADVANCE(2609); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4027: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 's') ADVANCE(2621); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'r') ADVANCE(3861); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4028: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 's') ADVANCE(2328); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'r') ADVANCE(4180); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4029: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 's') ADVANCE(2484); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'r') ADVANCE(3863); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4030: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 's') ADVANCE(2347); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'r') ADVANCE(3224); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4031: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 's') ADVANCE(2303); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'r') ADVANCE(3225); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4032: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 's') ADVANCE(2304); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'r') ADVANCE(3226); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4033: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 's') ADVANCE(2305); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'r') ADVANCE(3466); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4034: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 's') ADVANCE(4080); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'r') ADVANCE(3468); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4035: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 's') ADVANCE(2615); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'r') ADVANCE(3469); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4036: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 's') ADVANCE(3743); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 's') ADVANCE(2525); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4037: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 's') ADVANCE(2412); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 's') ADVANCE(3184); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4038: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 's') ADVANCE(3343); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 's') ADVANCE(2462); + if (lookahead == 'u') ADVANCE(3622); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4039: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 's') ADVANCE(2629); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 's') ADVANCE(2608); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4040: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 's') ADVANCE(2473); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 's') ADVANCE(2634); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4041: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 's') ADVANCE(2379); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 's') ADVANCE(2341); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4042: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 's') ADVANCE(2332); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 's') ADVANCE(2497); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4043: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 's') ADVANCE(3798); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 's') ADVANCE(2360); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4044: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 's') ADVANCE(3303); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 's') ADVANCE(2316); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4045: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 's') ADVANCE(4269); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 's') ADVANCE(2317); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4046: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 's') ADVANCE(2466); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 's') ADVANCE(2318); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4047: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 's') ADVANCE(3304); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 's') ADVANCE(4093); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4048: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 's') ADVANCE(3308); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 's') ADVANCE(2628); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4049: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 's') ADVANCE(4023); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 's') ADVANCE(3756); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4050: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 's') ADVANCE(3379); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 's') ADVANCE(2425); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4051: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 's') ADVANCE(3478); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 's') ADVANCE(3356); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4052: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 's') ADVANCE(4172); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 's') ADVANCE(2642); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4053: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 's') ADVANCE(3014); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 's') ADVANCE(2486); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4054: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 's') ADVANCE(3052); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 's') ADVANCE(2392); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4055: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 's') ADVANCE(3094); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 's') ADVANCE(2345); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4056: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 's') ADVANCE(4221); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 's') ADVANCE(3811); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4057: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 's') ADVANCE(4177); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 's') ADVANCE(3316); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4058: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 's') ADVANCE(4123); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 's') ADVANCE(4282); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4059: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 's') ADVANCE(3504); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 's') ADVANCE(2479); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4060: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 's') ADVANCE(4035); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 's') ADVANCE(3317); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4061: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 's') ADVANCE(4113); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 's') ADVANCE(3321); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4062: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 's') ADVANCE(4116); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 's') ADVANCE(4036); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4063: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 's') ADVANCE(3441); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 's') ADVANCE(3392); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4064: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 's') ADVANCE(4110); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 's') ADVANCE(3491); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4065: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 's') ADVANCE(3131); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 's') ADVANCE(4185); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4066: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 's') ADVANCE(3070); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 's') ADVANCE(3027); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4067: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 's') ADVANCE(3101); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 's') ADVANCE(3065); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4068: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 's') ADVANCE(3090); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 's') ADVANCE(3107); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4069: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 's') ADVANCE(3313); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 's') ADVANCE(4234); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4070: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 's') ADVANCE(4179); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 's') ADVANCE(4190); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4071: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 's') ADVANCE(4134); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 's') ADVANCE(4136); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4072: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 's') ADVANCE(4122); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 's') ADVANCE(3517); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4073: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 's') ADVANCE(3136); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 's') ADVANCE(4048); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4074: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 's') ADVANCE(3388); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 's') ADVANCE(4126); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4075: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 's') ADVANCE(3151); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 's') ADVANCE(4129); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4076: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 's') ADVANCE(3207); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 's') ADVANCE(3454); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4077: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 't') ADVANCE(4259); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 's') ADVANCE(4123); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4078: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 't') ADVANCE(2512); - if (lookahead == 'u') ADVANCE(2871); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 's') ADVANCE(3144); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4079: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 't') ADVANCE(2512); - if (lookahead == 'w') ADVANCE(3640); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 's') ADVANCE(3083); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4080: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 't') ADVANCE(2512); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 's') ADVANCE(3114); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4081: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 't') ADVANCE(2522); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 's') ADVANCE(3103); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4082: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 't') ADVANCE(2637); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 's') ADVANCE(3326); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4083: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 't') ADVANCE(2821); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 's') ADVANCE(4192); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4084: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 't') ADVANCE(2490); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 's') ADVANCE(4147); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4085: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 't') ADVANCE(2540); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 's') ADVANCE(4135); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4086: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 't') ADVANCE(2578); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 's') ADVANCE(3149); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4087: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 't') ADVANCE(2820); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 's') ADVANCE(3401); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4088: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 't') ADVANCE(2391); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 's') ADVANCE(3164); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4089: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 't') ADVANCE(3275); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 's') ADVANCE(3220); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4090: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 't') ADVANCE(2633); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 't') ADVANCE(4272); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4091: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 't') ADVANCE(2643); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 't') ADVANCE(2525); + if (lookahead == 'u') ADVANCE(2884); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4092: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 't') ADVANCE(2543); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 't') ADVANCE(2525); + if (lookahead == 'w') ADVANCE(3653); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4093: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 't') ADVANCE(2545); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 't') ADVANCE(2525); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4094: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 't') ADVANCE(2647); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 't') ADVANCE(2535); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4095: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 't') ADVANCE(2828); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 't') ADVANCE(2650); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4096: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 't') ADVANCE(2542); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 't') ADVANCE(2834); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4097: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 't') ADVANCE(2544); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 't') ADVANCE(2503); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4098: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 't') ADVANCE(3870); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 't') ADVANCE(2553); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4099: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 't') ADVANCE(2652); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 't') ADVANCE(2591); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4100: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 't') ADVANCE(3128); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 't') ADVANCE(2833); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4101: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 't') ADVANCE(2306); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 't') ADVANCE(2404); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4102: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 't') ADVANCE(3597); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 't') ADVANCE(3288); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4103: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 't') ADVANCE(2594); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 't') ADVANCE(2646); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4104: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 't') ADVANCE(2881); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 't') ADVANCE(2656); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4105: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 't') ADVANCE(4260); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 't') ADVANCE(2556); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4106: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 't') ADVANCE(2383); - if (lookahead == 'v') ADVANCE(3415); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 't') ADVANCE(2558); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4107: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 't') ADVANCE(2487); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 't') ADVANCE(2660); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4108: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 't') ADVANCE(2546); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 't') ADVANCE(2841); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4109: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 't') ADVANCE(2816); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 't') ADVANCE(2555); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4110: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 't') ADVANCE(3708); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 't') ADVANCE(2557); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4111: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 't') ADVANCE(3155); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 't') ADVANCE(3883); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4112: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 't') ADVANCE(2644); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 't') ADVANCE(2665); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4113: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 't') ADVANCE(2339); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 't') ADVANCE(3141); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4114: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 't') ADVANCE(4264); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 't') ADVANCE(2319); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4115: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 't') ADVANCE(2379); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 't') ADVANCE(3610); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4116: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 't') ADVANCE(2461); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 't') ADVANCE(2607); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4117: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 't') ADVANCE(3303); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 't') ADVANCE(2894); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4118: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 't') ADVANCE(4265); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 't') ADVANCE(4273); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4119: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 't') ADVANCE(2440); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 't') ADVANCE(2396); + if (lookahead == 'v') ADVANCE(3428); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4120: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 't') ADVANCE(3308); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 't') ADVANCE(2500); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4121: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 't') ADVANCE(2439); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 't') ADVANCE(2559); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4122: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 't') ADVANCE(4023); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 't') ADVANCE(2829); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4123: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 't') ADVANCE(2387); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 't') ADVANCE(3721); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4124: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 't') ADVANCE(2392); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 't') ADVANCE(3168); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4125: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 't') ADVANCE(3305); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 't') ADVANCE(2657); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4126: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 't') ADVANCE(3606); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 't') ADVANCE(2352); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4127: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 't') ADVANCE(3052); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 't') ADVANCE(4277); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4128: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 't') ADVANCE(3778); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 't') ADVANCE(2392); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4129: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 't') ADVANCE(4029); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 't') ADVANCE(2474); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4130: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 't') ADVANCE(3333); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 't') ADVANCE(3316); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4131: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 't') ADVANCE(3621); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 't') ADVANCE(4278); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4132: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 't') ADVANCE(3078); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 't') ADVANCE(2453); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4133: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 't') ADVANCE(4055); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 't') ADVANCE(3321); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4134: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 't') ADVANCE(3119); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 't') ADVANCE(2452); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4135: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 't') ADVANCE(3717); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 't') ADVANCE(4036); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4136: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 't') ADVANCE(3905); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 't') ADVANCE(2400); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4137: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 't') ADVANCE(2754); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 't') ADVANCE(2405); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4138: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 't') ADVANCE(3414); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 't') ADVANCE(3318); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4139: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 't') ADVANCE(3391); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 't') ADVANCE(3619); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4140: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 't') ADVANCE(3425); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 't') ADVANCE(3065); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4141: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 't') ADVANCE(3714); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 't') ADVANCE(3791); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4142: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 't') ADVANCE(3416); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 't') ADVANCE(4042); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4143: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 't') ADVANCE(3439); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 't') ADVANCE(3346); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4144: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 't') ADVANCE(3433); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 't') ADVANCE(3634); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4145: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 't') ADVANCE(3393); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 't') ADVANCE(3091); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4146: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 't') ADVANCE(3873); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 't') ADVANCE(4068); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4147: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 't') ADVANCE(3205); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 't') ADVANCE(3132); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4148: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 't') ADVANCE(2825); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 't') ADVANCE(3730); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4149: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 't') ADVANCE(3673); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 't') ADVANCE(3918); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4150: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 't') ADVANCE(3378); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 't') ADVANCE(2767); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4151: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 't') ADVANCE(3771); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 't') ADVANCE(3427); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4152: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 't') ADVANCE(3674); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 't') ADVANCE(3404); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4153: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 't') ADVANCE(3958); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 't') ADVANCE(3438); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4154: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 't') ADVANCE(3154); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 't') ADVANCE(3727); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4155: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 't') ADVANCE(2762); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 't') ADVANCE(3429); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4156: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 't') ADVANCE(3356); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 't') ADVANCE(3452); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4157: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 't') ADVANCE(3156); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 't') ADVANCE(3446); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4158: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 't') ADVANCE(3158); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 't') ADVANCE(3406); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4159: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 't') ADVANCE(3160); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 't') ADVANCE(3886); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4160: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 't') ADVANCE(3163); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 't') ADVANCE(3218); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4161: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 't') ADVANCE(3181); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 't') ADVANCE(2838); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4162: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 't') ADVANCE(3165); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 't') ADVANCE(3686); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4163: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 't') ADVANCE(3334); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 't') ADVANCE(3391); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4164: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 't') ADVANCE(2805); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 't') ADVANCE(3784); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4165: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 't') ADVANCE(3424); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 't') ADVANCE(3687); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4166: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 't') ADVANCE(3430); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 't') ADVANCE(3971); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4167: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 't') ADVANCE(3440); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 't') ADVANCE(3167); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4168: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 't') ADVANCE(2826); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 't') ADVANCE(2775); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4169: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 't') ADVANCE(2817); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 't') ADVANCE(3369); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4170: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'u') ADVANCE(2512); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 't') ADVANCE(3169); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4171: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'u') ADVANCE(2741); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 't') ADVANCE(3171); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4172: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'u') ADVANCE(4282); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 't') ADVANCE(3173); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4173: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'u') ADVANCE(3708); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 't') ADVANCE(3176); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4174: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'u') ADVANCE(2438); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 't') ADVANCE(3194); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4175: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'u') ADVANCE(2844); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 't') ADVANCE(3178); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4176: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'u') ADVANCE(2857); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 't') ADVANCE(3347); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4177: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'u') ADVANCE(2855); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 't') ADVANCE(2818); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4178: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'u') ADVANCE(3798); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 't') ADVANCE(3437); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4179: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'u') ADVANCE(2839); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 't') ADVANCE(3443); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4180: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'u') ADVANCE(4027); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 't') ADVANCE(3453); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4181: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'u') ADVANCE(2862); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 't') ADVANCE(2839); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4182: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'u') ADVANCE(4115); - if (lookahead == 'y') ADVANCE(2512); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 't') ADVANCE(2830); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4183: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'u') ADVANCE(4115); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'u') ADVANCE(2525); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4184: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'u') ADVANCE(3583); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'u') ADVANCE(2754); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4185: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'u') ADVANCE(4023); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'u') ADVANCE(4295); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4186: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'u') ADVANCE(3129); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'u') ADVANCE(3721); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4187: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'u') ADVANCE(4039); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'u') ADVANCE(2451); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4188: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'u') ADVANCE(3052); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'u') ADVANCE(2857); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4189: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'u') ADVANCE(3586); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'u') ADVANCE(2870); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4190: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'u') ADVANCE(2927); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'u') ADVANCE(2868); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4191: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'u') ADVANCE(3080); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'u') ADVANCE(3811); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4192: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'u') ADVANCE(2720); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'u') ADVANCE(2852); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4193: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'u') ADVANCE(4030); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'u') ADVANCE(4040); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4194: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'u') ADVANCE(3709); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'u') ADVANCE(2875); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4195: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'u') ADVANCE(3494); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'u') ADVANCE(4128); + if (lookahead == 'y') ADVANCE(2525); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4196: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'u') ADVANCE(4054); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'u') ADVANCE(4128); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4197: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'u') ADVANCE(2961); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'u') ADVANCE(3596); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4198: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'u') ADVANCE(4041); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'u') ADVANCE(4036); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4199: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'u') ADVANCE(3362); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'u') ADVANCE(3142); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4200: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'u') ADVANCE(3114); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'u') ADVANCE(4052); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4201: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'u') ADVANCE(2742); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'u') ADVANCE(3065); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4202: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'u') ADVANCE(3427); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'u') ADVANCE(3599); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4203: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'u') ADVANCE(3361); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'u') ADVANCE(2940); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4204: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'u') ADVANCE(3901); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'u') ADVANCE(3093); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4205: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'u') ADVANCE(3873); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'u') ADVANCE(2733); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4206: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'u') ADVANCE(3902); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'u') ADVANCE(4043); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4207: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'u') ADVANCE(3966); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'u') ADVANCE(3722); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4208: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'u') ADVANCE(3968); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'u') ADVANCE(3507); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4209: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'u') ADVANCE(3313); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'u') ADVANCE(4067); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4210: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'u') ADVANCE(3596); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'u') ADVANCE(2974); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4211: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'u') ADVANCE(3667); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'u') ADVANCE(4054); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4212: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'u') ADVANCE(4061); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'u') ADVANCE(3375); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4213: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'u') ADVANCE(3396); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'u') ADVANCE(3127); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4214: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'u') ADVANCE(3520); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'u') ADVANCE(2755); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4215: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'u') ADVANCE(4127); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'u') ADVANCE(3440); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4216: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'u') ADVANCE(2761); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'u') ADVANCE(3374); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4217: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'u') ADVANCE(3536); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'u') ADVANCE(3914); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4218: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'u') ADVANCE(3782); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'u') ADVANCE(3886); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4219: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'u') ADVANCE(3594); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'u') ADVANCE(3915); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4220: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'u') ADVANCE(2767); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'u') ADVANCE(3979); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4221: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'u') ADVANCE(3982); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'u') ADVANCE(3981); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4222: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'u') ADVANCE(3575); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'u') ADVANCE(3326); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4223: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'u') ADVANCE(2810); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'u') ADVANCE(3609); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4224: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'u') ADVANCE(2868); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'u') ADVANCE(3680); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4225: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'u') ADVANCE(2812); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'u') ADVANCE(4074); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4226: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'u') ADVANCE(2867); - if (lookahead == 'w') ADVANCE(3634); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'u') ADVANCE(3409); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4227: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'u') ADVANCE(2870); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'u') ADVANCE(3533); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4228: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'v') ADVANCE(2512); - if (lookahead == 'w') ADVANCE(3045); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'u') ADVANCE(4140); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4229: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'v') ADVANCE(2512); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'u') ADVANCE(2774); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4230: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'v') ADVANCE(2293); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'u') ADVANCE(3549); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4231: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'v') ADVANCE(2379); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'u') ADVANCE(3795); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4232: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'v') ADVANCE(3123); - if (lookahead == 'w') ADVANCE(3122); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'u') ADVANCE(3607); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4233: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'v') ADVANCE(3052); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'u') ADVANCE(2780); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4234: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'v') ADVANCE(3071); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'u') ADVANCE(3995); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4235: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'v') ADVANCE(3209); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'u') ADVANCE(3588); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4236: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'w') ADVANCE(2512); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'u') ADVANCE(2823); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4237: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'w') ADVANCE(2284); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'u') ADVANCE(2881); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4238: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'w') ADVANCE(2288); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'u') ADVANCE(2825); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4239: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'w') ADVANCE(2287); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'u') ADVANCE(2880); + if (lookahead == 'w') ADVANCE(3647); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4240: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'w') ADVANCE(2286); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'u') ADVANCE(2883); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4241: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'w') ADVANCE(3708); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'v') ADVANCE(2525); + if (lookahead == 'w') ADVANCE(3058); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4242: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'w') ADVANCE(2669); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'v') ADVANCE(2525); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4243: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'w') ADVANCE(2461); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'v') ADVANCE(2306); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4244: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'w') ADVANCE(3086); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'v') ADVANCE(2392); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4245: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'w') ADVANCE(4023); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'v') ADVANCE(3136); + if (lookahead == 'w') ADVANCE(3135); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4246: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'w') ADVANCE(3174); - if (lookahead == 'a' || - lookahead == 'h') ADVANCE(2512); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'v') ADVANCE(3065); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4247: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'w') ADVANCE(3624); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'v') ADVANCE(3084); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4248: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'w') ADVANCE(3640); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'v') ADVANCE(3222); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4249: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'w') ADVANCE(3638); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'w') ADVANCE(2525); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4250: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'w') ADVANCE(3635); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'w') ADVANCE(2297); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4251: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'w') ADVANCE(3422); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'w') ADVANCE(2301); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4252: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'w') ADVANCE(2480); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'w') ADVANCE(2300); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4253: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'w') ADVANCE(3548); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'w') ADVANCE(2299); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4254: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'w') ADVANCE(3706); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'w') ADVANCE(3721); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4255: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'w') ADVANCE(3705); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'w') ADVANCE(2682); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4256: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'x') ADVANCE(2512); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'w') ADVANCE(2474); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4257: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'x') ADVANCE(4080); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'w') ADVANCE(3099); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4258: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'x') ADVANCE(2387); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'w') ADVANCE(4036); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4259: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'y') ADVANCE(2512); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'w') ADVANCE(3187); + if (lookahead == 'a' || + lookahead == 'h') ADVANCE(2525); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4260: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'y') ADVANCE(2635); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'w') ADVANCE(3637); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4261: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'y') ADVANCE(3105); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'w') ADVANCE(3653); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4262: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'y') ADVANCE(2583); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'w') ADVANCE(3651); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4263: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'y') ADVANCE(2598); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'w') ADVANCE(3648); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4264: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'y') ADVANCE(2469); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'w') ADVANCE(3435); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4265: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'y') ADVANCE(4229); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'w') ADVANCE(2493); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4266: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'y') ADVANCE(2636); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'w') ADVANCE(3561); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4267: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'y') ADVANCE(2641); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'w') ADVANCE(3719); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4268: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'y') ADVANCE(2611); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'w') ADVANCE(3718); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4269: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'y') ADVANCE(3583); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'x') ADVANCE(2525); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4270: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'y') ADVANCE(3045); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'x') ADVANCE(4093); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4271: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'y') ADVANCE(4023); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'x') ADVANCE(2400); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4272: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'y') ADVANCE(3094); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'y') ADVANCE(2525); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4273: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'z') ADVANCE(3785); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'y') ADVANCE(2648); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4274: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'z') ADVANCE(2697); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'y') ADVANCE(3118); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4275: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'z') ADVANCE(3401); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'y') ADVANCE(2596); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4276: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'z') ADVANCE(3132); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'y') ADVANCE(2611); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4277: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == '2' || - lookahead == '4') ADVANCE(2512); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'y') ADVANCE(2482); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4278: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == '3' || - lookahead == '5') ADVANCE(2512); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'y') ADVANCE(4242); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4279: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == '6' || - lookahead == '8') ADVANCE(2512); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'y') ADVANCE(2649); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4280: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2512); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'y') ADVANCE(2654); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4281: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(4297); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2506); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'y') ADVANCE(2624); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4282: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'b' || - lookahead == 'p') ADVANCE(2512); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'y') ADVANCE(3596); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4283: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'b' || - lookahead == 'u') ADVANCE(2512); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'y') ADVANCE(3058); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4284: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'd' || - lookahead == 'u') ADVANCE(2512); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'y') ADVANCE(4036); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4285: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'e' || - lookahead == 'k') ADVANCE(2512); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'y') ADVANCE(3107); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4286: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'e' || - lookahead == 't') ADVANCE(2512); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'z') ADVANCE(3798); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4287: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'f' || - lookahead == 'r') ADVANCE(2512); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'z') ADVANCE(2710); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4288: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'l' || - lookahead == 'r') ADVANCE(2512); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'z') ADVANCE(3414); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4289: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'o' || - lookahead == 'u') ADVANCE(2512); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'z') ADVANCE(3145); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4290: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'r' || - lookahead == 'y') ADVANCE(2512); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == '2' || + lookahead == '4') ADVANCE(2525); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4291: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); if (lookahead == '3' || - lookahead == '4') ADVANCE(2512); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + lookahead == '5') ADVANCE(2525); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4292: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == 'e' || - lookahead == 'f') ADVANCE(2512); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == '6' || + lookahead == '8') ADVANCE(2525); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4293: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (('a' <= lookahead && lookahead <= 'c')) ADVANCE(2512); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(2525); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); case 4294: + ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(4310); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2519); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); + END_STATE(); + case 4295: + ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); + if (lookahead == 'b' || + lookahead == 'p') ADVANCE(2525); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); + END_STATE(); + case 4296: + ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); + if (lookahead == 'b' || + lookahead == 'u') ADVANCE(2525); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); + END_STATE(); + case 4297: + ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); + if (lookahead == 'd' || + lookahead == 'u') ADVANCE(2525); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); + END_STATE(); + case 4298: + ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); + if (lookahead == 'e' || + lookahead == 'k') ADVANCE(2525); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); + END_STATE(); + case 4299: + ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); + if (lookahead == 'e' || + lookahead == 't') ADVANCE(2525); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); + END_STATE(); + case 4300: + ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); + if (lookahead == 'f' || + lookahead == 'r') ADVANCE(2525); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); + END_STATE(); + case 4301: + ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); + if (lookahead == 'l' || + lookahead == 'r') ADVANCE(2525); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); + END_STATE(); + case 4302: + ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); + if (lookahead == 'o' || + lookahead == 'u') ADVANCE(2525); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); + END_STATE(); + case 4303: + ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); + if (lookahead == 'r' || + lookahead == 'y') ADVANCE(2525); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); + END_STATE(); + case 4304: + ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); + if (lookahead == '3' || + lookahead == '4') ADVANCE(2525); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); + END_STATE(); + case 4305: + ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); + if (lookahead == 'e' || + lookahead == 'f') ADVANCE(2525); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); + END_STATE(); + case 4306: + ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); + if (('a' <= lookahead && lookahead <= 'c')) ADVANCE(2525); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); + END_STATE(); + case 4307: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); if (lookahead == 'L' || lookahead == 'R' || lookahead == 'l' || - lookahead == 'r') ADVANCE(2512); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + lookahead == 'r') ADVANCE(2525); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); - case 4295: + case 4308: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (('a' <= lookahead && lookahead <= 'h')) ADVANCE(2512); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (('a' <= lookahead && lookahead <= 'h')) ADVANCE(2525); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); - case 4296: + case 4309: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(4296); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + lookahead == '_') ADVANCE(4309); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); - case 4297: + case 4310: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2511); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2524); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); - case 4298: + case 4311: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4298); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(4311); END_STATE(); - case 4299: + case 4312: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token2); - if (set_contains(aux_sym_shortcode_naked_string_token2_character_set_1, 10, lookahead)) ADVANCE(4299); + if (set_contains(aux_sym_shortcode_naked_string_token2_character_set_1, 10, lookahead)) ADVANCE(4312); END_STATE(); - case 4300: + case 4313: ACCEPT_TOKEN(aux_sym_shortcode_string_token1); END_STATE(); - case 4301: + case 4314: ACCEPT_TOKEN(aux_sym_shortcode_string_token2); END_STATE(); - case 4302: + case 4315: ACCEPT_TOKEN(sym_shortcode_number); - if (lookahead == '.') ADVANCE(2515); + if (lookahead == '.') ADVANCE(2528); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2514); + lookahead == 'e') ADVANCE(2527); END_STATE(); - case 4303: + case 4316: ACCEPT_TOKEN(sym_shortcode_number); - if (lookahead == '.') ADVANCE(2515); + if (lookahead == '.') ADVANCE(2528); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2514); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4303); + lookahead == 'e') ADVANCE(2527); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4316); END_STATE(); - case 4304: + case 4317: ACCEPT_TOKEN(sym_shortcode_number); - if (lookahead == '.') ADVANCE(2164); + if (lookahead == '.') ADVANCE(2169); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2143); + lookahead == 'e') ADVANCE(2148); END_STATE(); - case 4305: + case 4318: ACCEPT_TOKEN(sym_shortcode_number); - if (lookahead == '.') ADVANCE(2164); + if (lookahead == '.') ADVANCE(2169); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2143); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4305); + lookahead == 'e') ADVANCE(2148); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4318); END_STATE(); - case 4306: + case 4319: ACCEPT_TOKEN(sym_shortcode_number); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2514); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4306); + lookahead == 'e') ADVANCE(2527); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4319); END_STATE(); - case 4307: + case 4320: ACCEPT_TOKEN(sym_shortcode_number); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2143); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4307); + lookahead == 'e') ADVANCE(2148); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4320); END_STATE(); - case 4308: + case 4321: ACCEPT_TOKEN(sym_shortcode_number); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4308); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4321); END_STATE(); - case 4309: + case 4322: ACCEPT_TOKEN(anon_sym_true); END_STATE(); - case 4310: + case 4323: ACCEPT_TOKEN(anon_sym_false); END_STATE(); - case 4311: + case 4324: ACCEPT_TOKEN(anon_sym_LBRACK_CARET); END_STATE(); - case 4312: + case 4325: ACCEPT_TOKEN(sym_uri_autolink); END_STATE(); - case 4313: + case 4326: ACCEPT_TOKEN(sym_email_autolink); END_STATE(); - case 4314: + case 4327: ACCEPT_TOKEN(sym__whitespace_ge_2); END_STATE(); - case 4315: + case 4328: + ACCEPT_TOKEN(sym__whitespace_ge_2); + if (lookahead == '\t') ADVANCE(4329); + if (lookahead == ' ') ADVANCE(4328); + if (lookahead == ']') ADVANCE(2254); + END_STATE(); + case 4329: ACCEPT_TOKEN(sym__whitespace_ge_2); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(4315); + lookahead == ' ') ADVANCE(4329); END_STATE(); - case 4316: + case 4330: + ACCEPT_TOKEN(aux_sym__whitespace_token1); + if (lookahead == '\t') ADVANCE(4329); + if (lookahead == ' ') ADVANCE(4328); + if (lookahead == ']') ADVANCE(2254); + END_STATE(); + case 4331: ACCEPT_TOKEN(aux_sym__whitespace_token1); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(4315); + lookahead == ' ') ADVANCE(4329); END_STATE(); - case 4317: + case 4332: ACCEPT_TOKEN(sym__word_no_digit); - if (lookahead == '_') ADVANCE(514); + if (lookahead == '_') ADVANCE(519); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && (lookahead < ' ' || '@' < lookahead) && (lookahead < '[' || '`' < lookahead) && - (lookahead < '{' || '~' < lookahead)) ADVANCE(4317); + (lookahead < '{' || '~' < lookahead)) ADVANCE(4332); END_STATE(); - case 4318: + case 4333: ACCEPT_TOKEN(sym__digits); if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(4318); + lookahead == '_') ADVANCE(4333); END_STATE(); - case 4319: + case 4334: ACCEPT_TOKEN(anon_sym_DASH_DASH); - if (lookahead == '-') ADVANCE(4320); + if (lookahead == '-') ADVANCE(4335); END_STATE(); - case 4320: + case 4335: ACCEPT_TOKEN(anon_sym_DASH_DASH_DASH); END_STATE(); - case 4321: + case 4336: ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); END_STATE(); default: @@ -25836,2053 +26385,2415 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0, .external_lex_state = 1}, - [1] = {.lex_state = 2176, .external_lex_state = 2}, - [2] = {.lex_state = 2176, .external_lex_state = 3}, - [3] = {.lex_state = 2176, .external_lex_state = 3}, - [4] = {.lex_state = 2176, .external_lex_state = 4}, - [5] = {.lex_state = 2176, .external_lex_state = 5}, - [6] = {.lex_state = 2176, .external_lex_state = 3}, - [7] = {.lex_state = 2176, .external_lex_state = 6}, - [8] = {.lex_state = 2176, .external_lex_state = 6}, - [9] = {.lex_state = 2176, .external_lex_state = 7}, - [10] = {.lex_state = 2176, .external_lex_state = 7}, - [11] = {.lex_state = 2176, .external_lex_state = 8}, - [12] = {.lex_state = 2176, .external_lex_state = 8}, - [13] = {.lex_state = 2176, .external_lex_state = 9}, - [14] = {.lex_state = 2176, .external_lex_state = 10}, - [15] = {.lex_state = 2176, .external_lex_state = 10}, - [16] = {.lex_state = 2176, .external_lex_state = 3}, - [17] = {.lex_state = 2176, .external_lex_state = 3}, - [18] = {.lex_state = 2176, .external_lex_state = 9}, - [19] = {.lex_state = 2176, .external_lex_state = 3}, - [20] = {.lex_state = 2176, .external_lex_state = 3}, - [21] = {.lex_state = 2176, .external_lex_state = 3}, - [22] = {.lex_state = 2176, .external_lex_state = 3}, - [23] = {.lex_state = 2176, .external_lex_state = 3}, - [24] = {.lex_state = 2176, .external_lex_state = 3}, - [25] = {.lex_state = 2176, .external_lex_state = 3}, - [26] = {.lex_state = 2176, .external_lex_state = 3}, - [27] = {.lex_state = 2176, .external_lex_state = 11}, - [28] = {.lex_state = 2176, .external_lex_state = 12}, - [29] = {.lex_state = 2176, .external_lex_state = 11}, - [30] = {.lex_state = 2176, .external_lex_state = 13}, - [31] = {.lex_state = 2176, .external_lex_state = 14}, - [32] = {.lex_state = 2176, .external_lex_state = 15}, - [33] = {.lex_state = 2176, .external_lex_state = 16}, - [34] = {.lex_state = 2176, .external_lex_state = 12}, - [35] = {.lex_state = 2176, .external_lex_state = 12}, - [36] = {.lex_state = 2176, .external_lex_state = 12}, - [37] = {.lex_state = 2176, .external_lex_state = 12}, - [38] = {.lex_state = 2176, .external_lex_state = 17}, - [39] = {.lex_state = 2176, .external_lex_state = 17}, - [40] = {.lex_state = 2176, .external_lex_state = 18}, - [41] = {.lex_state = 2176, .external_lex_state = 18}, - [42] = {.lex_state = 2176, .external_lex_state = 11}, - [43] = {.lex_state = 2176, .external_lex_state = 12}, - [44] = {.lex_state = 2176, .external_lex_state = 12}, - [45] = {.lex_state = 2176, .external_lex_state = 14}, - [46] = {.lex_state = 2176, .external_lex_state = 15}, - [47] = {.lex_state = 2176, .external_lex_state = 16}, - [48] = {.lex_state = 2176, .external_lex_state = 12}, - [49] = {.lex_state = 2176, .external_lex_state = 13}, - [50] = {.lex_state = 2176, .external_lex_state = 14}, - [51] = {.lex_state = 2176, .external_lex_state = 15}, - [52] = {.lex_state = 2176, .external_lex_state = 16}, - [53] = {.lex_state = 2176, .external_lex_state = 12}, - [54] = {.lex_state = 2176, .external_lex_state = 12}, - [55] = {.lex_state = 2176, .external_lex_state = 11}, - [56] = {.lex_state = 2176, .external_lex_state = 13}, - [57] = {.lex_state = 2176, .external_lex_state = 14}, - [58] = {.lex_state = 2176, .external_lex_state = 15}, - [59] = {.lex_state = 2176, .external_lex_state = 16}, - [60] = {.lex_state = 2176, .external_lex_state = 17}, - [61] = {.lex_state = 2176, .external_lex_state = 18}, - [62] = {.lex_state = 2176, .external_lex_state = 11}, - [63] = {.lex_state = 2176, .external_lex_state = 13}, - [64] = {.lex_state = 2176, .external_lex_state = 14}, - [65] = {.lex_state = 2176, .external_lex_state = 15}, - [66] = {.lex_state = 2176, .external_lex_state = 16}, - [67] = {.lex_state = 2176, .external_lex_state = 12}, - [68] = {.lex_state = 2176, .external_lex_state = 12}, - [69] = {.lex_state = 2176, .external_lex_state = 17}, - [70] = {.lex_state = 2176, .external_lex_state = 18}, - [71] = {.lex_state = 2176, .external_lex_state = 12}, - [72] = {.lex_state = 2176, .external_lex_state = 11}, - [73] = {.lex_state = 2176, .external_lex_state = 13}, - [74] = {.lex_state = 2176, .external_lex_state = 14}, - [75] = {.lex_state = 2176, .external_lex_state = 15}, - [76] = {.lex_state = 2176, .external_lex_state = 16}, - [77] = {.lex_state = 2176, .external_lex_state = 17}, - [78] = {.lex_state = 2176, .external_lex_state = 18}, - [79] = {.lex_state = 2176, .external_lex_state = 11}, - [80] = {.lex_state = 2176, .external_lex_state = 13}, - [81] = {.lex_state = 2176, .external_lex_state = 14}, - [82] = {.lex_state = 2176, .external_lex_state = 15}, - [83] = {.lex_state = 2176, .external_lex_state = 16}, - [84] = {.lex_state = 2176, .external_lex_state = 12}, - [85] = {.lex_state = 2176, .external_lex_state = 12}, - [86] = {.lex_state = 2176, .external_lex_state = 17}, - [87] = {.lex_state = 2176, .external_lex_state = 18}, - [88] = {.lex_state = 2176, .external_lex_state = 12}, - [89] = {.lex_state = 2176, .external_lex_state = 11}, - [90] = {.lex_state = 2176, .external_lex_state = 13}, - [91] = {.lex_state = 2176, .external_lex_state = 14}, - [92] = {.lex_state = 2176, .external_lex_state = 15}, - [93] = {.lex_state = 2176, .external_lex_state = 16}, - [94] = {.lex_state = 2176, .external_lex_state = 3}, - [95] = {.lex_state = 2176, .external_lex_state = 17}, - [96] = {.lex_state = 2176, .external_lex_state = 18}, - [97] = {.lex_state = 2176, .external_lex_state = 11}, - [98] = {.lex_state = 2176, .external_lex_state = 13}, - [99] = {.lex_state = 2176, .external_lex_state = 14}, - [100] = {.lex_state = 2176, .external_lex_state = 15}, - [101] = {.lex_state = 2176, .external_lex_state = 16}, - [102] = {.lex_state = 2176, .external_lex_state = 12}, - [103] = {.lex_state = 2176, .external_lex_state = 12}, - [104] = {.lex_state = 2176, .external_lex_state = 17}, - [105] = {.lex_state = 2176, .external_lex_state = 18}, - [106] = {.lex_state = 2176, .external_lex_state = 12}, - [107] = {.lex_state = 2176, .external_lex_state = 11}, - [108] = {.lex_state = 2176, .external_lex_state = 13}, - [109] = {.lex_state = 2176, .external_lex_state = 14}, - [110] = {.lex_state = 2176, .external_lex_state = 15}, - [111] = {.lex_state = 2176, .external_lex_state = 16}, - [112] = {.lex_state = 2176, .external_lex_state = 17}, - [113] = {.lex_state = 2176, .external_lex_state = 18}, - [114] = {.lex_state = 2176, .external_lex_state = 11}, - [115] = {.lex_state = 2176, .external_lex_state = 13}, - [116] = {.lex_state = 2176, .external_lex_state = 14}, - [117] = {.lex_state = 2176, .external_lex_state = 15}, - [118] = {.lex_state = 2176, .external_lex_state = 16}, - [119] = {.lex_state = 2176, .external_lex_state = 12}, - [120] = {.lex_state = 2176, .external_lex_state = 18}, - [121] = {.lex_state = 2176, .external_lex_state = 17}, - [122] = {.lex_state = 2176, .external_lex_state = 18}, - [123] = {.lex_state = 2176, .external_lex_state = 12}, - [124] = {.lex_state = 2176, .external_lex_state = 11}, - [125] = {.lex_state = 2176, .external_lex_state = 13}, - [126] = {.lex_state = 2176, .external_lex_state = 14}, - [127] = {.lex_state = 2176, .external_lex_state = 15}, - [128] = {.lex_state = 2176, .external_lex_state = 16}, - [129] = {.lex_state = 2176, .external_lex_state = 17}, - [130] = {.lex_state = 2176, .external_lex_state = 18}, - [131] = {.lex_state = 2176, .external_lex_state = 11}, - [132] = {.lex_state = 2176, .external_lex_state = 13}, - [133] = {.lex_state = 2176, .external_lex_state = 14}, - [134] = {.lex_state = 2176, .external_lex_state = 15}, - [135] = {.lex_state = 2176, .external_lex_state = 16}, - [136] = {.lex_state = 2176, .external_lex_state = 12}, - [137] = {.lex_state = 2176, .external_lex_state = 12}, - [138] = {.lex_state = 2176, .external_lex_state = 17}, - [139] = {.lex_state = 2176, .external_lex_state = 18}, - [140] = {.lex_state = 2176, .external_lex_state = 12}, - [141] = {.lex_state = 2176, .external_lex_state = 11}, - [142] = {.lex_state = 2176, .external_lex_state = 13}, - [143] = {.lex_state = 2176, .external_lex_state = 14}, - [144] = {.lex_state = 2176, .external_lex_state = 15}, - [145] = {.lex_state = 2176, .external_lex_state = 16}, - [146] = {.lex_state = 2176, .external_lex_state = 17}, - [147] = {.lex_state = 2176, .external_lex_state = 17}, - [148] = {.lex_state = 2176, .external_lex_state = 18}, - [149] = {.lex_state = 2176, .external_lex_state = 11}, - [150] = {.lex_state = 2176, .external_lex_state = 13}, - [151] = {.lex_state = 2176, .external_lex_state = 14}, - [152] = {.lex_state = 2176, .external_lex_state = 15}, - [153] = {.lex_state = 2176, .external_lex_state = 16}, - [154] = {.lex_state = 2176, .external_lex_state = 12}, - [155] = {.lex_state = 2176, .external_lex_state = 12}, - [156] = {.lex_state = 2176, .external_lex_state = 17}, - [157] = {.lex_state = 2176, .external_lex_state = 18}, - [158] = {.lex_state = 2176, .external_lex_state = 12}, - [159] = {.lex_state = 2176, .external_lex_state = 11}, - [160] = {.lex_state = 2176, .external_lex_state = 13}, - [161] = {.lex_state = 2176, .external_lex_state = 14}, - [162] = {.lex_state = 2176, .external_lex_state = 15}, - [163] = {.lex_state = 2176, .external_lex_state = 16}, - [164] = {.lex_state = 2176, .external_lex_state = 13}, - [165] = {.lex_state = 2176, .external_lex_state = 17}, - [166] = {.lex_state = 2176, .external_lex_state = 18}, - [167] = {.lex_state = 2176, .external_lex_state = 11}, - [168] = {.lex_state = 2176, .external_lex_state = 13}, - [169] = {.lex_state = 2176, .external_lex_state = 14}, - [170] = {.lex_state = 2176, .external_lex_state = 15}, - [171] = {.lex_state = 2176, .external_lex_state = 16}, - [172] = {.lex_state = 2176, .external_lex_state = 12}, - [173] = {.lex_state = 2176, .external_lex_state = 12}, - [174] = {.lex_state = 2176, .external_lex_state = 17}, - [175] = {.lex_state = 2176, .external_lex_state = 18}, - [176] = {.lex_state = 2176, .external_lex_state = 12}, - [177] = {.lex_state = 2176, .external_lex_state = 11}, - [178] = {.lex_state = 2176, .external_lex_state = 13}, - [179] = {.lex_state = 2176, .external_lex_state = 14}, - [180] = {.lex_state = 2176, .external_lex_state = 15}, - [181] = {.lex_state = 2176, .external_lex_state = 16}, - [182] = {.lex_state = 2176, .external_lex_state = 3}, - [183] = {.lex_state = 2176, .external_lex_state = 17}, - [184] = {.lex_state = 2176, .external_lex_state = 18}, - [185] = {.lex_state = 2176, .external_lex_state = 11}, - [186] = {.lex_state = 2176, .external_lex_state = 13}, - [187] = {.lex_state = 2176, .external_lex_state = 14}, - [188] = {.lex_state = 2176, .external_lex_state = 15}, - [189] = {.lex_state = 2176, .external_lex_state = 16}, - [190] = {.lex_state = 2176, .external_lex_state = 12}, - [191] = {.lex_state = 2176, .external_lex_state = 12}, - [192] = {.lex_state = 2176, .external_lex_state = 17}, - [193] = {.lex_state = 2176, .external_lex_state = 18}, - [194] = {.lex_state = 2176, .external_lex_state = 12}, - [195] = {.lex_state = 2176, .external_lex_state = 12}, - [196] = {.lex_state = 2176, .external_lex_state = 12}, - [197] = {.lex_state = 2176, .external_lex_state = 12}, - [198] = {.lex_state = 2176, .external_lex_state = 12}, - [199] = {.lex_state = 2176, .external_lex_state = 12}, - [200] = {.lex_state = 2176, .external_lex_state = 12}, - [201] = {.lex_state = 2176, .external_lex_state = 12}, - [202] = {.lex_state = 2176, .external_lex_state = 12}, - [203] = {.lex_state = 2176, .external_lex_state = 12}, - [204] = {.lex_state = 2176, .external_lex_state = 12}, - [205] = {.lex_state = 2176, .external_lex_state = 12}, - [206] = {.lex_state = 2176, .external_lex_state = 12}, - [207] = {.lex_state = 2176, .external_lex_state = 12}, - [208] = {.lex_state = 2176, .external_lex_state = 12}, - [209] = {.lex_state = 2176, .external_lex_state = 12}, - [210] = {.lex_state = 2176, .external_lex_state = 12}, - [211] = {.lex_state = 2176, .external_lex_state = 12}, - [212] = {.lex_state = 2176, .external_lex_state = 12}, - [213] = {.lex_state = 2176, .external_lex_state = 12}, - [214] = {.lex_state = 2176, .external_lex_state = 12}, - [215] = {.lex_state = 2176, .external_lex_state = 5}, - [216] = {.lex_state = 2176, .external_lex_state = 3}, - [217] = {.lex_state = 2176, .external_lex_state = 4}, - [218] = {.lex_state = 2176, .external_lex_state = 3}, - [219] = {.lex_state = 2176, .external_lex_state = 17}, - [220] = {.lex_state = 2176, .external_lex_state = 12}, - [221] = {.lex_state = 2176, .external_lex_state = 17}, - [222] = {.lex_state = 2176, .external_lex_state = 12}, - [223] = {.lex_state = 2176, .external_lex_state = 17}, - [224] = {.lex_state = 2176, .external_lex_state = 18}, - [225] = {.lex_state = 2176, .external_lex_state = 18}, - [226] = {.lex_state = 2176, .external_lex_state = 12}, - [227] = {.lex_state = 2176, .external_lex_state = 17}, - [228] = {.lex_state = 2176, .external_lex_state = 18}, - [229] = {.lex_state = 2176, .external_lex_state = 17}, - [230] = {.lex_state = 2176, .external_lex_state = 18}, - [231] = {.lex_state = 2176, .external_lex_state = 3}, - [232] = {.lex_state = 2176, .external_lex_state = 12}, - [233] = {.lex_state = 2176, .external_lex_state = 12}, - [234] = {.lex_state = 2176, .external_lex_state = 12}, - [235] = {.lex_state = 2176, .external_lex_state = 17}, - [236] = {.lex_state = 2176, .external_lex_state = 18}, - [237] = {.lex_state = 2176, .external_lex_state = 18}, - [238] = {.lex_state = 2176, .external_lex_state = 12}, - [239] = {.lex_state = 2176, .external_lex_state = 12}, - [240] = {.lex_state = 2176, .external_lex_state = 12}, - [241] = {.lex_state = 2176, .external_lex_state = 12}, - [242] = {.lex_state = 2176, .external_lex_state = 12}, - [243] = {.lex_state = 2176, .external_lex_state = 12}, - [244] = {.lex_state = 2176, .external_lex_state = 12}, - [245] = {.lex_state = 2176, .external_lex_state = 12}, - [246] = {.lex_state = 2176, .external_lex_state = 3}, - [247] = {.lex_state = 2176, .external_lex_state = 12}, - [248] = {.lex_state = 2176, .external_lex_state = 12}, - [249] = {.lex_state = 2176, .external_lex_state = 12}, - [250] = {.lex_state = 2176, .external_lex_state = 12}, - [251] = {.lex_state = 2176, .external_lex_state = 18}, - [252] = {.lex_state = 2176, .external_lex_state = 12}, - [253] = {.lex_state = 2176, .external_lex_state = 17}, - [254] = {.lex_state = 2176, .external_lex_state = 12}, - [255] = {.lex_state = 2176, .external_lex_state = 12}, - [256] = {.lex_state = 2176, .external_lex_state = 12}, - [257] = {.lex_state = 2176, .external_lex_state = 12}, - [258] = {.lex_state = 2176, .external_lex_state = 12}, - [259] = {.lex_state = 2176, .external_lex_state = 12}, - [260] = {.lex_state = 2176, .external_lex_state = 18}, - [261] = {.lex_state = 2176, .external_lex_state = 17}, - [262] = {.lex_state = 2176, .external_lex_state = 15}, - [263] = {.lex_state = 2176, .external_lex_state = 12}, - [264] = {.lex_state = 2176, .external_lex_state = 15}, - [265] = {.lex_state = 2176, .external_lex_state = 12}, - [266] = {.lex_state = 2176, .external_lex_state = 11}, - [267] = {.lex_state = 2176, .external_lex_state = 11}, - [268] = {.lex_state = 2176, .external_lex_state = 17}, - [269] = {.lex_state = 2176, .external_lex_state = 14}, - [270] = {.lex_state = 2176, .external_lex_state = 16}, - [271] = {.lex_state = 2176, .external_lex_state = 12}, - [272] = {.lex_state = 2176, .external_lex_state = 13}, - [273] = {.lex_state = 2176, .external_lex_state = 12}, - [274] = {.lex_state = 2176, .external_lex_state = 18}, - [275] = {.lex_state = 2176, .external_lex_state = 16}, - [276] = {.lex_state = 2176, .external_lex_state = 13}, - [277] = {.lex_state = 2176, .external_lex_state = 14}, - [278] = {.lex_state = 2176, .external_lex_state = 12}, - [279] = {.lex_state = 2176, .external_lex_state = 12}, - [280] = {.lex_state = 2176, .external_lex_state = 14}, - [281] = {.lex_state = 2176, .external_lex_state = 12}, - [282] = {.lex_state = 2176, .external_lex_state = 12}, - [283] = {.lex_state = 2176, .external_lex_state = 12}, - [284] = {.lex_state = 2176, .external_lex_state = 12}, - [285] = {.lex_state = 2176, .external_lex_state = 12}, - [286] = {.lex_state = 2176, .external_lex_state = 12}, - [287] = {.lex_state = 2176, .external_lex_state = 12}, - [288] = {.lex_state = 2176, .external_lex_state = 12}, - [289] = {.lex_state = 2176, .external_lex_state = 12}, - [290] = {.lex_state = 2176, .external_lex_state = 12}, - [291] = {.lex_state = 2176, .external_lex_state = 12}, - [292] = {.lex_state = 2176, .external_lex_state = 12}, - [293] = {.lex_state = 2176, .external_lex_state = 12}, - [294] = {.lex_state = 2176, .external_lex_state = 12}, - [295] = {.lex_state = 2176, .external_lex_state = 12}, - [296] = {.lex_state = 2176, .external_lex_state = 12}, - [297] = {.lex_state = 2176, .external_lex_state = 14}, - [298] = {.lex_state = 2176, .external_lex_state = 14}, - [299] = {.lex_state = 2176, .external_lex_state = 14}, - [300] = {.lex_state = 2176, .external_lex_state = 14}, - [301] = {.lex_state = 2176, .external_lex_state = 14}, - [302] = {.lex_state = 2176, .external_lex_state = 14}, - [303] = {.lex_state = 2176, .external_lex_state = 12}, - [304] = {.lex_state = 2176, .external_lex_state = 12}, - [305] = {.lex_state = 2176, .external_lex_state = 14}, - [306] = {.lex_state = 2176, .external_lex_state = 12}, - [307] = {.lex_state = 2176, .external_lex_state = 12}, - [308] = {.lex_state = 2176, .external_lex_state = 12}, - [309] = {.lex_state = 2176, .external_lex_state = 12}, - [310] = {.lex_state = 2176, .external_lex_state = 12}, - [311] = {.lex_state = 2176, .external_lex_state = 12}, - [312] = {.lex_state = 2176, .external_lex_state = 12}, - [313] = {.lex_state = 2176, .external_lex_state = 15}, - [314] = {.lex_state = 2176, .external_lex_state = 15}, - [315] = {.lex_state = 2176, .external_lex_state = 12}, - [316] = {.lex_state = 2176, .external_lex_state = 12}, - [317] = {.lex_state = 2176, .external_lex_state = 12}, - [318] = {.lex_state = 2176, .external_lex_state = 14}, - [319] = {.lex_state = 2176, .external_lex_state = 15}, - [320] = {.lex_state = 2176, .external_lex_state = 15}, - [321] = {.lex_state = 2176, .external_lex_state = 12}, - [322] = {.lex_state = 2176, .external_lex_state = 17}, - [323] = {.lex_state = 2176, .external_lex_state = 17}, - [324] = {.lex_state = 2176, .external_lex_state = 14}, - [325] = {.lex_state = 2176, .external_lex_state = 15}, - [326] = {.lex_state = 2176, .external_lex_state = 17}, - [327] = {.lex_state = 2176, .external_lex_state = 17}, - [328] = {.lex_state = 2176, .external_lex_state = 15}, - [329] = {.lex_state = 2176, .external_lex_state = 15}, - [330] = {.lex_state = 2176, .external_lex_state = 15}, - [331] = {.lex_state = 2176, .external_lex_state = 15}, - [332] = {.lex_state = 2176, .external_lex_state = 15}, - [333] = {.lex_state = 2176, .external_lex_state = 15}, - [334] = {.lex_state = 2176, .external_lex_state = 17}, - [335] = {.lex_state = 2176, .external_lex_state = 14}, - [336] = {.lex_state = 2176, .external_lex_state = 17}, - [337] = {.lex_state = 2176, .external_lex_state = 15}, - [338] = {.lex_state = 2176, .external_lex_state = 17}, - [339] = {.lex_state = 2176, .external_lex_state = 17}, - [340] = {.lex_state = 2176, .external_lex_state = 17}, - [341] = {.lex_state = 2176, .external_lex_state = 17}, - [342] = {.lex_state = 2176, .external_lex_state = 17}, - [343] = {.lex_state = 2176, .external_lex_state = 17}, - [344] = {.lex_state = 2176, .external_lex_state = 17}, - [345] = {.lex_state = 2176, .external_lex_state = 15}, - [346] = {.lex_state = 2176, .external_lex_state = 17}, - [347] = {.lex_state = 2176, .external_lex_state = 17}, - [348] = {.lex_state = 2176, .external_lex_state = 17}, - [349] = {.lex_state = 2176, .external_lex_state = 17}, - [350] = {.lex_state = 2176, .external_lex_state = 15}, - [351] = {.lex_state = 2176, .external_lex_state = 18}, - [352] = {.lex_state = 2176, .external_lex_state = 18}, - [353] = {.lex_state = 2176, .external_lex_state = 15}, - [354] = {.lex_state = 2176, .external_lex_state = 18}, - [355] = {.lex_state = 2176, .external_lex_state = 18}, - [356] = {.lex_state = 2176, .external_lex_state = 15}, - [357] = {.lex_state = 2176, .external_lex_state = 15}, - [358] = {.lex_state = 2176, .external_lex_state = 18}, - [359] = {.lex_state = 2176, .external_lex_state = 16}, - [360] = {.lex_state = 2176, .external_lex_state = 18}, - [361] = {.lex_state = 2176, .external_lex_state = 18}, - [362] = {.lex_state = 2176, .external_lex_state = 12}, - [363] = {.lex_state = 2176, .external_lex_state = 18}, - [364] = {.lex_state = 2176, .external_lex_state = 16}, - [365] = {.lex_state = 2176, .external_lex_state = 18}, - [366] = {.lex_state = 2176, .external_lex_state = 18}, - [367] = {.lex_state = 2176, .external_lex_state = 18}, - [368] = {.lex_state = 2176, .external_lex_state = 18}, - [369] = {.lex_state = 2176, .external_lex_state = 18}, - [370] = {.lex_state = 2176, .external_lex_state = 18}, - [371] = {.lex_state = 2176, .external_lex_state = 18}, - [372] = {.lex_state = 2176, .external_lex_state = 18}, - [373] = {.lex_state = 2176, .external_lex_state = 14}, - [374] = {.lex_state = 2176, .external_lex_state = 16}, - [375] = {.lex_state = 2176, .external_lex_state = 11}, - [376] = {.lex_state = 2176, .external_lex_state = 11}, - [377] = {.lex_state = 2176, .external_lex_state = 16}, - [378] = {.lex_state = 2176, .external_lex_state = 14}, - [379] = {.lex_state = 2176, .external_lex_state = 11}, - [380] = {.lex_state = 2176, .external_lex_state = 11}, - [381] = {.lex_state = 2176, .external_lex_state = 16}, - [382] = {.lex_state = 2176, .external_lex_state = 11}, - [383] = {.lex_state = 2176, .external_lex_state = 16}, - [384] = {.lex_state = 2176, .external_lex_state = 16}, - [385] = {.lex_state = 2176, .external_lex_state = 11}, - [386] = {.lex_state = 2176, .external_lex_state = 11}, - [387] = {.lex_state = 2176, .external_lex_state = 11}, - [388] = {.lex_state = 2176, .external_lex_state = 11}, - [389] = {.lex_state = 2176, .external_lex_state = 11}, - [390] = {.lex_state = 2176, .external_lex_state = 11}, - [391] = {.lex_state = 2176, .external_lex_state = 11}, - [392] = {.lex_state = 2176, .external_lex_state = 11}, - [393] = {.lex_state = 2176, .external_lex_state = 16}, - [394] = {.lex_state = 2176, .external_lex_state = 11}, - [395] = {.lex_state = 2176, .external_lex_state = 11}, - [396] = {.lex_state = 2176, .external_lex_state = 11}, - [397] = {.lex_state = 2176, .external_lex_state = 11}, - [398] = {.lex_state = 2176, .external_lex_state = 16}, - [399] = {.lex_state = 2176, .external_lex_state = 16}, - [400] = {.lex_state = 2176, .external_lex_state = 14}, - [401] = {.lex_state = 2176, .external_lex_state = 13}, - [402] = {.lex_state = 2176, .external_lex_state = 13}, - [403] = {.lex_state = 2176, .external_lex_state = 16}, - [404] = {.lex_state = 2176, .external_lex_state = 13}, - [405] = {.lex_state = 2176, .external_lex_state = 13}, - [406] = {.lex_state = 2176, .external_lex_state = 16}, - [407] = {.lex_state = 2176, .external_lex_state = 16}, - [408] = {.lex_state = 2176, .external_lex_state = 13}, - [409] = {.lex_state = 2176, .external_lex_state = 16}, - [410] = {.lex_state = 2176, .external_lex_state = 13}, - [411] = {.lex_state = 2176, .external_lex_state = 13}, - [412] = {.lex_state = 2176, .external_lex_state = 16}, - [413] = {.lex_state = 2176, .external_lex_state = 13}, - [414] = {.lex_state = 2176, .external_lex_state = 13}, - [415] = {.lex_state = 2176, .external_lex_state = 13}, - [416] = {.lex_state = 2176, .external_lex_state = 13}, - [417] = {.lex_state = 2176, .external_lex_state = 13}, - [418] = {.lex_state = 2176, .external_lex_state = 13}, - [419] = {.lex_state = 2176, .external_lex_state = 13}, - [420] = {.lex_state = 2176, .external_lex_state = 16}, - [421] = {.lex_state = 2176, .external_lex_state = 16}, - [422] = {.lex_state = 2176, .external_lex_state = 13}, - [423] = {.lex_state = 2176, .external_lex_state = 13}, - [424] = {.lex_state = 2176, .external_lex_state = 12}, - [425] = {.lex_state = 2176, .external_lex_state = 12}, - [426] = {.lex_state = 2176, .external_lex_state = 13}, - [427] = {.lex_state = 2176, .external_lex_state = 14}, - [428] = {.lex_state = 2176, .external_lex_state = 14}, - [429] = {.lex_state = 2176, .external_lex_state = 14}, - [430] = {.lex_state = 2176, .external_lex_state = 18}, - [431] = {.lex_state = 2176, .external_lex_state = 19}, - [432] = {.lex_state = 2176, .external_lex_state = 20}, - [433] = {.lex_state = 2176, .external_lex_state = 3}, - [434] = {.lex_state = 2176, .external_lex_state = 6}, - [435] = {.lex_state = 2176, .external_lex_state = 21}, - [436] = {.lex_state = 2176, .external_lex_state = 9}, - [437] = {.lex_state = 2176, .external_lex_state = 10}, - [438] = {.lex_state = 2176, .external_lex_state = 3}, - [439] = {.lex_state = 2176, .external_lex_state = 2}, - [440] = {.lex_state = 2176, .external_lex_state = 22}, - [441] = {.lex_state = 2176, .external_lex_state = 7}, - [442] = {.lex_state = 2176, .external_lex_state = 5}, - [443] = {.lex_state = 2176, .external_lex_state = 23}, - [444] = {.lex_state = 2176, .external_lex_state = 24}, - [445] = {.lex_state = 2176, .external_lex_state = 4}, - [446] = {.lex_state = 2176, .external_lex_state = 2}, - [447] = {.lex_state = 2176, .external_lex_state = 8}, - [448] = {.lex_state = 2176, .external_lex_state = 25}, - [449] = {.lex_state = 2176, .external_lex_state = 21}, - [450] = {.lex_state = 2176, .external_lex_state = 6}, - [451] = {.lex_state = 2176, .external_lex_state = 10}, - [452] = {.lex_state = 2176, .external_lex_state = 4}, - [453] = {.lex_state = 2176, .external_lex_state = 4}, - [454] = {.lex_state = 2176, .external_lex_state = 6}, - [455] = {.lex_state = 2176, .external_lex_state = 10}, - [456] = {.lex_state = 2176, .external_lex_state = 6}, - [457] = {.lex_state = 2176, .external_lex_state = 9}, - [458] = {.lex_state = 2176, .external_lex_state = 25}, - [459] = {.lex_state = 2176, .external_lex_state = 6}, - [460] = {.lex_state = 2176, .external_lex_state = 4}, - [461] = {.lex_state = 2176, .external_lex_state = 3}, - [462] = {.lex_state = 2176, .external_lex_state = 3}, - [463] = {.lex_state = 2176, .external_lex_state = 6}, - [464] = {.lex_state = 2176, .external_lex_state = 3}, - [465] = {.lex_state = 2176, .external_lex_state = 3}, - [466] = {.lex_state = 2176, .external_lex_state = 24}, - [467] = {.lex_state = 2176, .external_lex_state = 6}, - [468] = {.lex_state = 2176, .external_lex_state = 22}, - [469] = {.lex_state = 2176, .external_lex_state = 9}, - [470] = {.lex_state = 2176, .external_lex_state = 24}, - [471] = {.lex_state = 2176, .external_lex_state = 2}, - [472] = {.lex_state = 2176, .external_lex_state = 9}, - [473] = {.lex_state = 2176, .external_lex_state = 7}, - [474] = {.lex_state = 2176, .external_lex_state = 7}, - [475] = {.lex_state = 2176, .external_lex_state = 3}, - [476] = {.lex_state = 2176, .external_lex_state = 23}, - [477] = {.lex_state = 2176, .external_lex_state = 21}, - [478] = {.lex_state = 2176, .external_lex_state = 3}, - [479] = {.lex_state = 2176, .external_lex_state = 10}, - [480] = {.lex_state = 2176, .external_lex_state = 5}, - [481] = {.lex_state = 2176, .external_lex_state = 5}, - [482] = {.lex_state = 2176, .external_lex_state = 4}, - [483] = {.lex_state = 2176, .external_lex_state = 20}, - [484] = {.lex_state = 2176, .external_lex_state = 19}, - [485] = {.lex_state = 2176, .external_lex_state = 8}, - [486] = {.lex_state = 2176, .external_lex_state = 23}, - [487] = {.lex_state = 2176, .external_lex_state = 20}, - [488] = {.lex_state = 2176, .external_lex_state = 22}, - [489] = {.lex_state = 2176, .external_lex_state = 3}, - [490] = {.lex_state = 2176, .external_lex_state = 7}, - [491] = {.lex_state = 2176, .external_lex_state = 7}, - [492] = {.lex_state = 2176, .external_lex_state = 9}, - [493] = {.lex_state = 2176, .external_lex_state = 3}, - [494] = {.lex_state = 2176, .external_lex_state = 7}, - [495] = {.lex_state = 2176, .external_lex_state = 3}, - [496] = {.lex_state = 2176, .external_lex_state = 5}, - [497] = {.lex_state = 2176, .external_lex_state = 3}, - [498] = {.lex_state = 2176, .external_lex_state = 10}, - [499] = {.lex_state = 2176, .external_lex_state = 25}, - [500] = {.lex_state = 2176, .external_lex_state = 3}, - [501] = {.lex_state = 2176, .external_lex_state = 5}, - [502] = {.lex_state = 2176, .external_lex_state = 5}, - [503] = {.lex_state = 2176, .external_lex_state = 8}, - [504] = {.lex_state = 2176, .external_lex_state = 10}, - [505] = {.lex_state = 2176, .external_lex_state = 5}, - [506] = {.lex_state = 2176, .external_lex_state = 10}, - [507] = {.lex_state = 2176, .external_lex_state = 4}, - [508] = {.lex_state = 2176, .external_lex_state = 4}, - [509] = {.lex_state = 2176, .external_lex_state = 2}, - [510] = {.lex_state = 2176, .external_lex_state = 2}, - [511] = {.lex_state = 2176, .external_lex_state = 2}, - [512] = {.lex_state = 2176, .external_lex_state = 8}, - [513] = {.lex_state = 2176, .external_lex_state = 8}, - [514] = {.lex_state = 2176, .external_lex_state = 9}, - [515] = {.lex_state = 2176, .external_lex_state = 3}, - [516] = {.lex_state = 2176, .external_lex_state = 19}, - [517] = {.lex_state = 2176, .external_lex_state = 9}, - [518] = {.lex_state = 2176, .external_lex_state = 8}, - [519] = {.lex_state = 2176, .external_lex_state = 8}, - [520] = {.lex_state = 2176, .external_lex_state = 7}, - [521] = {.lex_state = 2176, .external_lex_state = 15}, - [522] = {.lex_state = 2176, .external_lex_state = 13}, - [523] = {.lex_state = 2176, .external_lex_state = 13}, - [524] = {.lex_state = 2176, .external_lex_state = 13}, - [525] = {.lex_state = 2176, .external_lex_state = 13}, - [526] = {.lex_state = 2176, .external_lex_state = 13}, - [527] = {.lex_state = 2176, .external_lex_state = 13}, - [528] = {.lex_state = 2176, .external_lex_state = 12}, - [529] = {.lex_state = 2176, .external_lex_state = 13}, - [530] = {.lex_state = 2176, .external_lex_state = 13}, - [531] = {.lex_state = 2176, .external_lex_state = 11}, - [532] = {.lex_state = 2176, .external_lex_state = 12}, - [533] = {.lex_state = 2176, .external_lex_state = 11}, - [534] = {.lex_state = 2176, .external_lex_state = 13}, - [535] = {.lex_state = 2176, .external_lex_state = 13}, - [536] = {.lex_state = 2176, .external_lex_state = 12}, - [537] = {.lex_state = 2176, .external_lex_state = 13}, - [538] = {.lex_state = 2176, .external_lex_state = 12}, - [539] = {.lex_state = 2176, .external_lex_state = 13}, - [540] = {.lex_state = 2176, .external_lex_state = 13}, - [541] = {.lex_state = 2176, .external_lex_state = 13}, - [542] = {.lex_state = 2176, .external_lex_state = 13}, - [543] = {.lex_state = 2176, .external_lex_state = 13}, - [544] = {.lex_state = 2176, .external_lex_state = 17}, - [545] = {.lex_state = 2176, .external_lex_state = 13}, - [546] = {.lex_state = 2176, .external_lex_state = 13}, - [547] = {.lex_state = 2176, .external_lex_state = 13}, - [548] = {.lex_state = 2176, .external_lex_state = 13}, - [549] = {.lex_state = 2176, .external_lex_state = 13}, - [550] = {.lex_state = 2176, .external_lex_state = 13}, - [551] = {.lex_state = 2176, .external_lex_state = 13}, - [552] = {.lex_state = 2176, .external_lex_state = 13}, - [553] = {.lex_state = 2176, .external_lex_state = 13}, - [554] = {.lex_state = 2176, .external_lex_state = 12}, - [555] = {.lex_state = 2176, .external_lex_state = 13}, - [556] = {.lex_state = 2176, .external_lex_state = 12}, - [557] = {.lex_state = 2176, .external_lex_state = 13}, - [558] = {.lex_state = 2176, .external_lex_state = 12}, - [559] = {.lex_state = 2176, .external_lex_state = 12}, - [560] = {.lex_state = 2176, .external_lex_state = 13}, - [561] = {.lex_state = 2176, .external_lex_state = 13}, - [562] = {.lex_state = 2176, .external_lex_state = 13}, - [563] = {.lex_state = 2176, .external_lex_state = 13}, - [564] = {.lex_state = 2176, .external_lex_state = 13}, - [565] = {.lex_state = 2176, .external_lex_state = 17}, - [566] = {.lex_state = 2176, .external_lex_state = 13}, - [567] = {.lex_state = 2176, .external_lex_state = 13}, - [568] = {.lex_state = 2176, .external_lex_state = 13}, - [569] = {.lex_state = 2176, .external_lex_state = 13}, - [570] = {.lex_state = 2176, .external_lex_state = 12}, - [571] = {.lex_state = 2176, .external_lex_state = 13}, - [572] = {.lex_state = 2176, .external_lex_state = 12}, - [573] = {.lex_state = 2176, .external_lex_state = 13}, - [574] = {.lex_state = 2176, .external_lex_state = 13}, - [575] = {.lex_state = 2176, .external_lex_state = 13}, - [576] = {.lex_state = 2176, .external_lex_state = 13}, - [577] = {.lex_state = 2176, .external_lex_state = 13}, - [578] = {.lex_state = 2176, .external_lex_state = 13}, - [579] = {.lex_state = 2176, .external_lex_state = 12}, - [580] = {.lex_state = 2176, .external_lex_state = 13}, - [581] = {.lex_state = 2176, .external_lex_state = 12}, - [582] = {.lex_state = 2176, .external_lex_state = 13}, - [583] = {.lex_state = 2176, .external_lex_state = 13}, - [584] = {.lex_state = 2176, .external_lex_state = 13}, - [585] = {.lex_state = 2176, .external_lex_state = 13}, - [586] = {.lex_state = 2176, .external_lex_state = 13}, - [587] = {.lex_state = 2176, .external_lex_state = 17}, - [588] = {.lex_state = 2176, .external_lex_state = 13}, - [589] = {.lex_state = 2176, .external_lex_state = 12}, - [590] = {.lex_state = 2176, .external_lex_state = 13}, - [591] = {.lex_state = 2176, .external_lex_state = 13}, - [592] = {.lex_state = 2176, .external_lex_state = 13}, - [593] = {.lex_state = 2176, .external_lex_state = 12}, - [594] = {.lex_state = 2176, .external_lex_state = 13}, - [595] = {.lex_state = 2176, .external_lex_state = 17}, - [596] = {.lex_state = 2176, .external_lex_state = 13}, - [597] = {.lex_state = 2176, .external_lex_state = 17}, - [598] = {.lex_state = 2176, .external_lex_state = 13}, - [599] = {.lex_state = 2176, .external_lex_state = 12}, - [600] = {.lex_state = 2176, .external_lex_state = 13}, - [601] = {.lex_state = 2176, .external_lex_state = 13}, - [602] = {.lex_state = 2176, .external_lex_state = 11}, - [603] = {.lex_state = 2176, .external_lex_state = 12}, - [604] = {.lex_state = 2176, .external_lex_state = 13}, - [605] = {.lex_state = 2176, .external_lex_state = 12}, - [606] = {.lex_state = 2176, .external_lex_state = 17}, - [607] = {.lex_state = 2176, .external_lex_state = 17}, - [608] = {.lex_state = 2176, .external_lex_state = 17}, - [609] = {.lex_state = 2176, .external_lex_state = 17}, - [610] = {.lex_state = 2176, .external_lex_state = 14}, - [611] = {.lex_state = 2176, .external_lex_state = 17}, - [612] = {.lex_state = 2176, .external_lex_state = 17}, - [613] = {.lex_state = 2176, .external_lex_state = 14}, - [614] = {.lex_state = 2176, .external_lex_state = 14}, - [615] = {.lex_state = 2176, .external_lex_state = 16}, - [616] = {.lex_state = 2176, .external_lex_state = 17}, - [617] = {.lex_state = 2176, .external_lex_state = 17}, - [618] = {.lex_state = 2176, .external_lex_state = 14}, - [619] = {.lex_state = 2176, .external_lex_state = 14}, - [620] = {.lex_state = 2176, .external_lex_state = 14}, - [621] = {.lex_state = 2176, .external_lex_state = 14}, - [622] = {.lex_state = 2176, .external_lex_state = 14}, - [623] = {.lex_state = 2176, .external_lex_state = 14}, - [624] = {.lex_state = 2176, .external_lex_state = 14}, - [625] = {.lex_state = 2176, .external_lex_state = 14}, - [626] = {.lex_state = 2176, .external_lex_state = 12}, - [627] = {.lex_state = 2176, .external_lex_state = 14}, - [628] = {.lex_state = 2176, .external_lex_state = 14}, - [629] = {.lex_state = 2176, .external_lex_state = 17}, - [630] = {.lex_state = 2176, .external_lex_state = 13}, - [631] = {.lex_state = 2176, .external_lex_state = 14}, - [632] = {.lex_state = 2176, .external_lex_state = 14}, - [633] = {.lex_state = 2176, .external_lex_state = 17}, - [634] = {.lex_state = 2176, .external_lex_state = 14}, - [635] = {.lex_state = 2176, .external_lex_state = 12}, - [636] = {.lex_state = 2176, .external_lex_state = 14}, - [637] = {.lex_state = 2176, .external_lex_state = 14}, - [638] = {.lex_state = 2176, .external_lex_state = 14}, - [639] = {.lex_state = 2176, .external_lex_state = 14}, - [640] = {.lex_state = 2176, .external_lex_state = 14}, - [641] = {.lex_state = 2176, .external_lex_state = 17}, - [642] = {.lex_state = 2176, .external_lex_state = 14}, - [643] = {.lex_state = 2176, .external_lex_state = 14}, - [644] = {.lex_state = 2176, .external_lex_state = 14}, - [645] = {.lex_state = 2176, .external_lex_state = 14}, - [646] = {.lex_state = 2176, .external_lex_state = 14}, - [647] = {.lex_state = 2176, .external_lex_state = 14}, - [648] = {.lex_state = 2176, .external_lex_state = 14}, - [649] = {.lex_state = 2176, .external_lex_state = 14}, - [650] = {.lex_state = 2176, .external_lex_state = 14}, - [651] = {.lex_state = 2176, .external_lex_state = 17}, - [652] = {.lex_state = 2176, .external_lex_state = 14}, - [653] = {.lex_state = 2176, .external_lex_state = 12}, - [654] = {.lex_state = 2176, .external_lex_state = 14}, - [655] = {.lex_state = 2176, .external_lex_state = 12}, - [656] = {.lex_state = 2176, .external_lex_state = 17}, - [657] = {.lex_state = 2176, .external_lex_state = 14}, - [658] = {.lex_state = 2176, .external_lex_state = 14}, - [659] = {.lex_state = 2176, .external_lex_state = 14}, - [660] = {.lex_state = 2176, .external_lex_state = 14}, - [661] = {.lex_state = 2176, .external_lex_state = 14}, - [662] = {.lex_state = 2176, .external_lex_state = 12}, - [663] = {.lex_state = 2176, .external_lex_state = 14}, - [664] = {.lex_state = 2176, .external_lex_state = 14}, - [665] = {.lex_state = 2176, .external_lex_state = 14}, - [666] = {.lex_state = 2176, .external_lex_state = 14}, - [667] = {.lex_state = 2176, .external_lex_state = 17}, - [668] = {.lex_state = 2176, .external_lex_state = 14}, - [669] = {.lex_state = 2176, .external_lex_state = 17}, - [670] = {.lex_state = 2176, .external_lex_state = 14}, - [671] = {.lex_state = 2176, .external_lex_state = 14}, - [672] = {.lex_state = 2176, .external_lex_state = 14}, - [673] = {.lex_state = 2176, .external_lex_state = 14}, - [674] = {.lex_state = 2176, .external_lex_state = 14}, - [675] = {.lex_state = 2176, .external_lex_state = 14}, - [676] = {.lex_state = 2176, .external_lex_state = 17}, - [677] = {.lex_state = 2176, .external_lex_state = 14}, - [678] = {.lex_state = 2176, .external_lex_state = 17}, - [679] = {.lex_state = 2176, .external_lex_state = 14}, - [680] = {.lex_state = 2176, .external_lex_state = 14}, - [681] = {.lex_state = 2176, .external_lex_state = 14}, - [682] = {.lex_state = 2176, .external_lex_state = 14}, - [683] = {.lex_state = 2176, .external_lex_state = 14}, - [684] = {.lex_state = 2176, .external_lex_state = 17}, - [685] = {.lex_state = 2176, .external_lex_state = 14}, - [686] = {.lex_state = 2176, .external_lex_state = 14}, - [687] = {.lex_state = 2176, .external_lex_state = 14}, - [688] = {.lex_state = 2176, .external_lex_state = 14}, - [689] = {.lex_state = 2176, .external_lex_state = 17}, - [690] = {.lex_state = 2176, .external_lex_state = 14}, - [691] = {.lex_state = 2176, .external_lex_state = 17}, - [692] = {.lex_state = 2176, .external_lex_state = 14}, - [693] = {.lex_state = 2176, .external_lex_state = 17}, - [694] = {.lex_state = 2176, .external_lex_state = 14}, - [695] = {.lex_state = 2176, .external_lex_state = 17}, - [696] = {.lex_state = 2176, .external_lex_state = 14}, - [697] = {.lex_state = 2176, .external_lex_state = 14}, - [698] = {.lex_state = 2176, .external_lex_state = 17}, - [699] = {.lex_state = 2176, .external_lex_state = 17}, - [700] = {.lex_state = 2176, .external_lex_state = 14}, - [701] = {.lex_state = 2176, .external_lex_state = 17}, - [702] = {.lex_state = 2176, .external_lex_state = 17}, - [703] = {.lex_state = 2176, .external_lex_state = 17}, - [704] = {.lex_state = 2176, .external_lex_state = 17}, - [705] = {.lex_state = 2176, .external_lex_state = 15}, - [706] = {.lex_state = 2176, .external_lex_state = 17}, - [707] = {.lex_state = 2176, .external_lex_state = 12}, - [708] = {.lex_state = 2176, .external_lex_state = 15}, - [709] = {.lex_state = 2176, .external_lex_state = 15}, - [710] = {.lex_state = 2176, .external_lex_state = 12}, - [711] = {.lex_state = 2176, .external_lex_state = 18}, - [712] = {.lex_state = 2176, .external_lex_state = 17}, - [713] = {.lex_state = 2176, .external_lex_state = 15}, - [714] = {.lex_state = 2176, .external_lex_state = 15}, - [715] = {.lex_state = 2176, .external_lex_state = 15}, - [716] = {.lex_state = 2176, .external_lex_state = 15}, - [717] = {.lex_state = 2176, .external_lex_state = 15}, - [718] = {.lex_state = 2176, .external_lex_state = 15}, - [719] = {.lex_state = 2176, .external_lex_state = 15}, - [720] = {.lex_state = 2176, .external_lex_state = 15}, - [721] = {.lex_state = 2176, .external_lex_state = 17}, - [722] = {.lex_state = 2176, .external_lex_state = 15}, - [723] = {.lex_state = 2176, .external_lex_state = 15}, - [724] = {.lex_state = 2176, .external_lex_state = 13}, - [725] = {.lex_state = 2176, .external_lex_state = 17}, - [726] = {.lex_state = 2176, .external_lex_state = 14}, - [727] = {.lex_state = 2176, .external_lex_state = 15}, - [728] = {.lex_state = 2176, .external_lex_state = 15}, - [729] = {.lex_state = 2176, .external_lex_state = 15}, - [730] = {.lex_state = 2176, .external_lex_state = 15}, - [731] = {.lex_state = 2176, .external_lex_state = 15}, - [732] = {.lex_state = 2176, .external_lex_state = 15}, - [733] = {.lex_state = 2176, .external_lex_state = 15}, - [734] = {.lex_state = 2176, .external_lex_state = 15}, - [735] = {.lex_state = 2176, .external_lex_state = 15}, - [736] = {.lex_state = 2176, .external_lex_state = 15}, - [737] = {.lex_state = 2176, .external_lex_state = 15}, - [738] = {.lex_state = 2176, .external_lex_state = 15}, - [739] = {.lex_state = 2176, .external_lex_state = 15}, - [740] = {.lex_state = 2176, .external_lex_state = 15}, - [741] = {.lex_state = 2176, .external_lex_state = 15}, - [742] = {.lex_state = 2176, .external_lex_state = 15}, - [743] = {.lex_state = 2176, .external_lex_state = 15}, - [744] = {.lex_state = 2176, .external_lex_state = 15}, - [745] = {.lex_state = 2176, .external_lex_state = 15}, - [746] = {.lex_state = 2176, .external_lex_state = 17}, - [747] = {.lex_state = 2176, .external_lex_state = 17}, - [748] = {.lex_state = 2176, .external_lex_state = 15}, - [749] = {.lex_state = 2176, .external_lex_state = 15}, - [750] = {.lex_state = 2176, .external_lex_state = 15}, - [751] = {.lex_state = 2176, .external_lex_state = 15}, - [752] = {.lex_state = 2176, .external_lex_state = 15}, - [753] = {.lex_state = 2176, .external_lex_state = 15}, - [754] = {.lex_state = 2176, .external_lex_state = 15}, - [755] = {.lex_state = 2176, .external_lex_state = 15}, - [756] = {.lex_state = 2176, .external_lex_state = 17}, - [757] = {.lex_state = 2176, .external_lex_state = 17}, - [758] = {.lex_state = 2176, .external_lex_state = 15}, - [759] = {.lex_state = 2176, .external_lex_state = 17}, - [760] = {.lex_state = 2176, .external_lex_state = 15}, - [761] = {.lex_state = 2176, .external_lex_state = 15}, - [762] = {.lex_state = 2176, .external_lex_state = 15}, - [763] = {.lex_state = 2176, .external_lex_state = 15}, - [764] = {.lex_state = 2176, .external_lex_state = 15}, - [765] = {.lex_state = 2176, .external_lex_state = 15}, - [766] = {.lex_state = 2176, .external_lex_state = 17}, - [767] = {.lex_state = 2176, .external_lex_state = 15}, - [768] = {.lex_state = 2176, .external_lex_state = 18}, - [769] = {.lex_state = 2176, .external_lex_state = 15}, - [770] = {.lex_state = 2176, .external_lex_state = 15}, - [771] = {.lex_state = 2176, .external_lex_state = 15}, - [772] = {.lex_state = 2176, .external_lex_state = 15}, - [773] = {.lex_state = 2176, .external_lex_state = 15}, - [774] = {.lex_state = 2176, .external_lex_state = 17}, - [775] = {.lex_state = 2176, .external_lex_state = 15}, - [776] = {.lex_state = 2176, .external_lex_state = 15}, - [777] = {.lex_state = 2176, .external_lex_state = 15}, - [778] = {.lex_state = 2176, .external_lex_state = 15}, - [779] = {.lex_state = 2176, .external_lex_state = 17}, - [780] = {.lex_state = 2176, .external_lex_state = 15}, - [781] = {.lex_state = 2176, .external_lex_state = 17}, - [782] = {.lex_state = 2176, .external_lex_state = 15}, - [783] = {.lex_state = 2176, .external_lex_state = 15}, - [784] = {.lex_state = 2176, .external_lex_state = 15}, - [785] = {.lex_state = 2176, .external_lex_state = 15}, - [786] = {.lex_state = 2176, .external_lex_state = 15}, - [787] = {.lex_state = 2176, .external_lex_state = 17}, - [788] = {.lex_state = 2176, .external_lex_state = 17}, - [789] = {.lex_state = 2176, .external_lex_state = 17}, - [790] = {.lex_state = 2176, .external_lex_state = 17}, - [791] = {.lex_state = 2176, .external_lex_state = 17}, - [792] = {.lex_state = 2176, .external_lex_state = 16}, - [793] = {.lex_state = 2176, .external_lex_state = 12}, - [794] = {.lex_state = 2176, .external_lex_state = 17}, - [795] = {.lex_state = 2176, .external_lex_state = 16}, - [796] = {.lex_state = 2176, .external_lex_state = 16}, - [797] = {.lex_state = 2176, .external_lex_state = 17}, - [798] = {.lex_state = 2176, .external_lex_state = 17}, - [799] = {.lex_state = 2176, .external_lex_state = 16}, - [800] = {.lex_state = 2176, .external_lex_state = 16}, - [801] = {.lex_state = 2176, .external_lex_state = 16}, - [802] = {.lex_state = 2176, .external_lex_state = 16}, - [803] = {.lex_state = 2176, .external_lex_state = 16}, - [804] = {.lex_state = 2176, .external_lex_state = 16}, - [805] = {.lex_state = 2176, .external_lex_state = 16}, - [806] = {.lex_state = 2176, .external_lex_state = 16}, - [807] = {.lex_state = 2176, .external_lex_state = 17}, - [808] = {.lex_state = 2176, .external_lex_state = 16}, - [809] = {.lex_state = 2176, .external_lex_state = 16}, - [810] = {.lex_state = 2176, .external_lex_state = 14}, - [811] = {.lex_state = 2176, .external_lex_state = 17}, - [812] = {.lex_state = 2176, .external_lex_state = 15}, - [813] = {.lex_state = 2176, .external_lex_state = 16}, - [814] = {.lex_state = 2176, .external_lex_state = 16}, - [815] = {.lex_state = 2176, .external_lex_state = 12}, - [816] = {.lex_state = 2176, .external_lex_state = 16}, - [817] = {.lex_state = 2176, .external_lex_state = 17}, - [818] = {.lex_state = 2176, .external_lex_state = 16}, - [819] = {.lex_state = 2176, .external_lex_state = 16}, - [820] = {.lex_state = 2176, .external_lex_state = 16}, - [821] = {.lex_state = 2176, .external_lex_state = 16}, - [822] = {.lex_state = 2176, .external_lex_state = 16}, - [823] = {.lex_state = 2176, .external_lex_state = 16}, - [824] = {.lex_state = 2176, .external_lex_state = 16}, - [825] = {.lex_state = 2176, .external_lex_state = 16}, - [826] = {.lex_state = 2176, .external_lex_state = 16}, - [827] = {.lex_state = 2176, .external_lex_state = 16}, - [828] = {.lex_state = 2176, .external_lex_state = 16}, - [829] = {.lex_state = 2176, .external_lex_state = 16}, - [830] = {.lex_state = 2176, .external_lex_state = 16}, - [831] = {.lex_state = 2176, .external_lex_state = 16}, - [832] = {.lex_state = 2176, .external_lex_state = 16}, - [833] = {.lex_state = 2176, .external_lex_state = 17}, - [834] = {.lex_state = 2176, .external_lex_state = 16}, - [835] = {.lex_state = 2176, .external_lex_state = 17}, - [836] = {.lex_state = 2176, .external_lex_state = 17}, - [837] = {.lex_state = 2176, .external_lex_state = 16}, - [838] = {.lex_state = 2176, .external_lex_state = 16}, - [839] = {.lex_state = 2176, .external_lex_state = 16}, - [840] = {.lex_state = 2176, .external_lex_state = 16}, - [841] = {.lex_state = 2176, .external_lex_state = 16}, - [842] = {.lex_state = 2176, .external_lex_state = 12}, - [843] = {.lex_state = 2176, .external_lex_state = 16}, - [844] = {.lex_state = 2176, .external_lex_state = 16}, - [845] = {.lex_state = 2176, .external_lex_state = 16}, - [846] = {.lex_state = 2176, .external_lex_state = 16}, - [847] = {.lex_state = 2176, .external_lex_state = 17}, - [848] = {.lex_state = 2176, .external_lex_state = 16}, - [849] = {.lex_state = 2176, .external_lex_state = 12}, - [850] = {.lex_state = 2176, .external_lex_state = 16}, - [851] = {.lex_state = 2176, .external_lex_state = 16}, - [852] = {.lex_state = 2176, .external_lex_state = 16}, - [853] = {.lex_state = 2176, .external_lex_state = 16}, - [854] = {.lex_state = 2176, .external_lex_state = 16}, - [855] = {.lex_state = 2176, .external_lex_state = 16}, - [856] = {.lex_state = 2176, .external_lex_state = 17}, - [857] = {.lex_state = 2176, .external_lex_state = 16}, - [858] = {.lex_state = 2176, .external_lex_state = 12}, - [859] = {.lex_state = 2176, .external_lex_state = 16}, - [860] = {.lex_state = 2176, .external_lex_state = 16}, - [861] = {.lex_state = 2176, .external_lex_state = 16}, - [862] = {.lex_state = 2176, .external_lex_state = 16}, - [863] = {.lex_state = 2176, .external_lex_state = 16}, - [864] = {.lex_state = 2176, .external_lex_state = 17}, - [865] = {.lex_state = 2176, .external_lex_state = 16}, - [866] = {.lex_state = 2176, .external_lex_state = 12}, - [867] = {.lex_state = 2176, .external_lex_state = 16}, - [868] = {.lex_state = 2176, .external_lex_state = 16}, - [869] = {.lex_state = 2176, .external_lex_state = 16}, - [870] = {.lex_state = 2176, .external_lex_state = 17}, - [871] = {.lex_state = 2176, .external_lex_state = 16}, - [872] = {.lex_state = 2176, .external_lex_state = 17}, - [873] = {.lex_state = 2176, .external_lex_state = 16}, - [874] = {.lex_state = 2176, .external_lex_state = 12}, - [875] = {.lex_state = 2176, .external_lex_state = 16}, - [876] = {.lex_state = 2176, .external_lex_state = 12}, - [877] = {.lex_state = 2176, .external_lex_state = 16}, - [878] = {.lex_state = 2176, .external_lex_state = 16}, - [879] = {.lex_state = 2176, .external_lex_state = 16}, - [880] = {.lex_state = 2176, .external_lex_state = 18}, - [881] = {.lex_state = 2176, .external_lex_state = 12}, - [882] = {.lex_state = 2176, .external_lex_state = 18}, - [883] = {.lex_state = 2176, .external_lex_state = 12}, - [884] = {.lex_state = 2176, .external_lex_state = 12}, - [885] = {.lex_state = 2176, .external_lex_state = 12}, - [886] = {.lex_state = 2176, .external_lex_state = 12}, - [887] = {.lex_state = 2176, .external_lex_state = 12}, - [888] = {.lex_state = 2176, .external_lex_state = 12}, - [889] = {.lex_state = 2176, .external_lex_state = 12}, - [890] = {.lex_state = 2176, .external_lex_state = 12}, - [891] = {.lex_state = 2176, .external_lex_state = 12}, - [892] = {.lex_state = 2176, .external_lex_state = 12}, - [893] = {.lex_state = 2176, .external_lex_state = 12}, - [894] = {.lex_state = 2176, .external_lex_state = 18}, - [895] = {.lex_state = 2176, .external_lex_state = 12}, - [896] = {.lex_state = 2176, .external_lex_state = 12}, - [897] = {.lex_state = 2176, .external_lex_state = 15}, - [898] = {.lex_state = 2176, .external_lex_state = 18}, - [899] = {.lex_state = 2176, .external_lex_state = 16}, - [900] = {.lex_state = 2176, .external_lex_state = 12}, - [901] = {.lex_state = 2176, .external_lex_state = 12}, - [902] = {.lex_state = 2176, .external_lex_state = 13}, - [903] = {.lex_state = 2176, .external_lex_state = 12}, - [904] = {.lex_state = 2176, .external_lex_state = 12}, - [905] = {.lex_state = 2176, .external_lex_state = 12}, - [906] = {.lex_state = 2176, .external_lex_state = 12}, - [907] = {.lex_state = 2176, .external_lex_state = 12}, - [908] = {.lex_state = 2176, .external_lex_state = 12}, - [909] = {.lex_state = 2176, .external_lex_state = 12}, - [910] = {.lex_state = 2176, .external_lex_state = 12}, - [911] = {.lex_state = 2176, .external_lex_state = 12}, - [912] = {.lex_state = 2176, .external_lex_state = 12}, - [913] = {.lex_state = 2176, .external_lex_state = 12}, - [914] = {.lex_state = 2176, .external_lex_state = 12}, - [915] = {.lex_state = 2176, .external_lex_state = 12}, - [916] = {.lex_state = 2176, .external_lex_state = 12}, - [917] = {.lex_state = 2176, .external_lex_state = 12}, - [918] = {.lex_state = 2176, .external_lex_state = 12}, - [919] = {.lex_state = 2176, .external_lex_state = 18}, - [920] = {.lex_state = 2176, .external_lex_state = 12}, - [921] = {.lex_state = 2176, .external_lex_state = 18}, - [922] = {.lex_state = 2176, .external_lex_state = 18}, - [923] = {.lex_state = 2176, .external_lex_state = 12}, - [924] = {.lex_state = 2176, .external_lex_state = 12}, - [925] = {.lex_state = 2176, .external_lex_state = 12}, - [926] = {.lex_state = 2176, .external_lex_state = 12}, - [927] = {.lex_state = 2176, .external_lex_state = 12}, - [928] = {.lex_state = 2176, .external_lex_state = 18}, - [929] = {.lex_state = 2176, .external_lex_state = 12}, - [930] = {.lex_state = 2176, .external_lex_state = 12}, - [931] = {.lex_state = 2176, .external_lex_state = 12}, - [932] = {.lex_state = 2176, .external_lex_state = 12}, - [933] = {.lex_state = 2176, .external_lex_state = 18}, - [934] = {.lex_state = 2176, .external_lex_state = 12}, - [935] = {.lex_state = 2176, .external_lex_state = 18}, - [936] = {.lex_state = 2176, .external_lex_state = 12}, - [937] = {.lex_state = 2176, .external_lex_state = 12}, - [938] = {.lex_state = 2176, .external_lex_state = 12}, - [939] = {.lex_state = 2176, .external_lex_state = 12}, - [940] = {.lex_state = 2176, .external_lex_state = 12}, - [941] = {.lex_state = 2176, .external_lex_state = 12}, - [942] = {.lex_state = 2176, .external_lex_state = 18}, - [943] = {.lex_state = 2176, .external_lex_state = 12}, - [944] = {.lex_state = 2176, .external_lex_state = 18}, - [945] = {.lex_state = 2176, .external_lex_state = 12}, - [946] = {.lex_state = 2176, .external_lex_state = 12}, - [947] = {.lex_state = 2176, .external_lex_state = 12}, - [948] = {.lex_state = 2176, .external_lex_state = 12}, - [949] = {.lex_state = 2176, .external_lex_state = 12}, - [950] = {.lex_state = 2176, .external_lex_state = 12}, - [951] = {.lex_state = 2176, .external_lex_state = 12}, - [952] = {.lex_state = 2176, .external_lex_state = 18}, - [953] = {.lex_state = 2176, .external_lex_state = 12}, - [954] = {.lex_state = 2176, .external_lex_state = 12}, - [955] = {.lex_state = 2176, .external_lex_state = 12}, - [956] = {.lex_state = 2176, .external_lex_state = 18}, - [957] = {.lex_state = 2176, .external_lex_state = 12}, - [958] = {.lex_state = 2176, .external_lex_state = 17}, - [959] = {.lex_state = 2176, .external_lex_state = 12}, - [960] = {.lex_state = 2176, .external_lex_state = 12}, - [961] = {.lex_state = 2176, .external_lex_state = 12}, - [962] = {.lex_state = 2176, .external_lex_state = 17}, - [963] = {.lex_state = 2176, .external_lex_state = 12}, - [964] = {.lex_state = 2176, .external_lex_state = 12}, - [965] = {.lex_state = 2176, .external_lex_state = 12}, - [966] = {.lex_state = 2176, .external_lex_state = 18}, - [967] = {.lex_state = 2176, .external_lex_state = 16}, - [968] = {.lex_state = 2176, .external_lex_state = 18}, - [969] = {.lex_state = 2176, .external_lex_state = 12}, - [970] = {.lex_state = 2176, .external_lex_state = 12}, - [971] = {.lex_state = 2176, .external_lex_state = 12}, - [972] = {.lex_state = 2176, .external_lex_state = 18}, - [973] = {.lex_state = 2176, .external_lex_state = 12}, - [974] = {.lex_state = 2176, .external_lex_state = 18}, - [975] = {.lex_state = 2176, .external_lex_state = 18}, - [976] = {.lex_state = 2176, .external_lex_state = 18}, - [977] = {.lex_state = 2176, .external_lex_state = 18}, - [978] = {.lex_state = 2176, .external_lex_state = 18}, - [979] = {.lex_state = 2176, .external_lex_state = 17}, - [980] = {.lex_state = 2176, .external_lex_state = 18}, - [981] = {.lex_state = 2176, .external_lex_state = 18}, - [982] = {.lex_state = 2176, .external_lex_state = 18}, - [983] = {.lex_state = 2176, .external_lex_state = 18}, - [984] = {.lex_state = 2176, .external_lex_state = 18}, - [985] = {.lex_state = 2176, .external_lex_state = 18}, - [986] = {.lex_state = 2176, .external_lex_state = 18}, - [987] = {.lex_state = 2176, .external_lex_state = 18}, - [988] = {.lex_state = 2176, .external_lex_state = 18}, - [989] = {.lex_state = 2176, .external_lex_state = 18}, - [990] = {.lex_state = 2176, .external_lex_state = 12}, - [991] = {.lex_state = 2176, .external_lex_state = 18}, - [992] = {.lex_state = 2176, .external_lex_state = 18}, - [993] = {.lex_state = 2176, .external_lex_state = 18}, - [994] = {.lex_state = 2176, .external_lex_state = 18}, - [995] = {.lex_state = 2176, .external_lex_state = 18}, - [996] = {.lex_state = 2176, .external_lex_state = 18}, - [997] = {.lex_state = 2176, .external_lex_state = 18}, - [998] = {.lex_state = 2176, .external_lex_state = 17}, - [999] = {.lex_state = 2176, .external_lex_state = 12}, - [1000] = {.lex_state = 2176, .external_lex_state = 18}, - [1001] = {.lex_state = 2176, .external_lex_state = 18}, - [1002] = {.lex_state = 2176, .external_lex_state = 18}, - [1003] = {.lex_state = 2176, .external_lex_state = 18}, - [1004] = {.lex_state = 2176, .external_lex_state = 18}, - [1005] = {.lex_state = 2176, .external_lex_state = 18}, - [1006] = {.lex_state = 2176, .external_lex_state = 12}, - [1007] = {.lex_state = 2176, .external_lex_state = 18}, - [1008] = {.lex_state = 2176, .external_lex_state = 18}, - [1009] = {.lex_state = 2176, .external_lex_state = 18}, - [1010] = {.lex_state = 2176, .external_lex_state = 18}, - [1011] = {.lex_state = 2176, .external_lex_state = 18}, - [1012] = {.lex_state = 2176, .external_lex_state = 18}, - [1013] = {.lex_state = 2176, .external_lex_state = 12}, - [1014] = {.lex_state = 2176, .external_lex_state = 18}, - [1015] = {.lex_state = 2176, .external_lex_state = 12}, - [1016] = {.lex_state = 2176, .external_lex_state = 18}, - [1017] = {.lex_state = 2176, .external_lex_state = 18}, - [1018] = {.lex_state = 2176, .external_lex_state = 18}, - [1019] = {.lex_state = 2176, .external_lex_state = 18}, - [1020] = {.lex_state = 2176, .external_lex_state = 18}, - [1021] = {.lex_state = 2176, .external_lex_state = 17}, - [1022] = {.lex_state = 2176, .external_lex_state = 12}, - [1023] = {.lex_state = 2176, .external_lex_state = 18}, - [1024] = {.lex_state = 2176, .external_lex_state = 18}, - [1025] = {.lex_state = 2176, .external_lex_state = 12}, - [1026] = {.lex_state = 2176, .external_lex_state = 18}, - [1027] = {.lex_state = 2176, .external_lex_state = 18}, - [1028] = {.lex_state = 2176, .external_lex_state = 18}, - [1029] = {.lex_state = 2176, .external_lex_state = 12}, - [1030] = {.lex_state = 2176, .external_lex_state = 18}, - [1031] = {.lex_state = 2176, .external_lex_state = 18}, - [1032] = {.lex_state = 2176, .external_lex_state = 18}, - [1033] = {.lex_state = 2176, .external_lex_state = 18}, - [1034] = {.lex_state = 2176, .external_lex_state = 18}, - [1035] = {.lex_state = 2176, .external_lex_state = 11}, - [1036] = {.lex_state = 2176, .external_lex_state = 17}, - [1037] = {.lex_state = 2176, .external_lex_state = 18}, - [1038] = {.lex_state = 2176, .external_lex_state = 12}, - [1039] = {.lex_state = 2176, .external_lex_state = 12}, - [1040] = {.lex_state = 2176, .external_lex_state = 11}, - [1041] = {.lex_state = 2176, .external_lex_state = 12}, - [1042] = {.lex_state = 2176, .external_lex_state = 11}, - [1043] = {.lex_state = 2176, .external_lex_state = 11}, - [1044] = {.lex_state = 2176, .external_lex_state = 14}, - [1045] = {.lex_state = 2176, .external_lex_state = 12}, - [1046] = {.lex_state = 2176, .external_lex_state = 12}, - [1047] = {.lex_state = 2176, .external_lex_state = 11}, - [1048] = {.lex_state = 2176, .external_lex_state = 11}, - [1049] = {.lex_state = 2176, .external_lex_state = 11}, - [1050] = {.lex_state = 2176, .external_lex_state = 11}, - [1051] = {.lex_state = 2176, .external_lex_state = 11}, - [1052] = {.lex_state = 2176, .external_lex_state = 11}, - [1053] = {.lex_state = 2176, .external_lex_state = 11}, - [1054] = {.lex_state = 2176, .external_lex_state = 11}, - [1055] = {.lex_state = 2176, .external_lex_state = 17}, - [1056] = {.lex_state = 2176, .external_lex_state = 12}, - [1057] = {.lex_state = 2176, .external_lex_state = 18}, - [1058] = {.lex_state = 2176, .external_lex_state = 11}, - [1059] = {.lex_state = 2176, .external_lex_state = 11}, - [1060] = {.lex_state = 2176, .external_lex_state = 18}, - [1061] = {.lex_state = 2176, .external_lex_state = 18}, - [1062] = {.lex_state = 2176, .external_lex_state = 11}, - [1063] = {.lex_state = 2176, .external_lex_state = 11}, - [1064] = {.lex_state = 2176, .external_lex_state = 11}, - [1065] = {.lex_state = 2176, .external_lex_state = 12}, - [1066] = {.lex_state = 2176, .external_lex_state = 11}, - [1067] = {.lex_state = 2176, .external_lex_state = 11}, - [1068] = {.lex_state = 2176, .external_lex_state = 11}, - [1069] = {.lex_state = 2176, .external_lex_state = 11}, - [1070] = {.lex_state = 2176, .external_lex_state = 11}, - [1071] = {.lex_state = 2176, .external_lex_state = 12}, - [1072] = {.lex_state = 2176, .external_lex_state = 11}, - [1073] = {.lex_state = 2176, .external_lex_state = 11}, - [1074] = {.lex_state = 2176, .external_lex_state = 11}, - [1075] = {.lex_state = 2176, .external_lex_state = 17}, - [1076] = {.lex_state = 2176, .external_lex_state = 11}, - [1077] = {.lex_state = 2176, .external_lex_state = 18}, - [1078] = {.lex_state = 2176, .external_lex_state = 11}, - [1079] = {.lex_state = 2176, .external_lex_state = 11}, - [1080] = {.lex_state = 2176, .external_lex_state = 11}, - [1081] = {.lex_state = 2176, .external_lex_state = 11}, - [1082] = {.lex_state = 2176, .external_lex_state = 11}, - [1083] = {.lex_state = 2176, .external_lex_state = 12}, - [1084] = {.lex_state = 2176, .external_lex_state = 11}, - [1085] = {.lex_state = 2176, .external_lex_state = 11}, - [1086] = {.lex_state = 2176, .external_lex_state = 11}, - [1087] = {.lex_state = 2176, .external_lex_state = 11}, - [1088] = {.lex_state = 2176, .external_lex_state = 11}, - [1089] = {.lex_state = 2176, .external_lex_state = 11}, - [1090] = {.lex_state = 2176, .external_lex_state = 11}, - [1091] = {.lex_state = 2176, .external_lex_state = 11}, - [1092] = {.lex_state = 2176, .external_lex_state = 11}, - [1093] = {.lex_state = 2176, .external_lex_state = 17}, - [1094] = {.lex_state = 2176, .external_lex_state = 11}, - [1095] = {.lex_state = 2176, .external_lex_state = 18}, - [1096] = {.lex_state = 2176, .external_lex_state = 11}, - [1097] = {.lex_state = 2176, .external_lex_state = 11}, - [1098] = {.lex_state = 2176, .external_lex_state = 11}, - [1099] = {.lex_state = 2176, .external_lex_state = 11}, - [1100] = {.lex_state = 2176, .external_lex_state = 11}, - [1101] = {.lex_state = 2176, .external_lex_state = 11}, - [1102] = {.lex_state = 2176, .external_lex_state = 11}, - [1103] = {.lex_state = 2176, .external_lex_state = 11}, - [1104] = {.lex_state = 2176, .external_lex_state = 12}, - [1105] = {.lex_state = 2176, .external_lex_state = 11}, - [1106] = {.lex_state = 2176, .external_lex_state = 11}, - [1107] = {.lex_state = 2176, .external_lex_state = 11}, - [1108] = {.lex_state = 2176, .external_lex_state = 11}, - [1109] = {.lex_state = 2176, .external_lex_state = 11}, - [1110] = {.lex_state = 2176, .external_lex_state = 11}, - [1111] = {.lex_state = 2176, .external_lex_state = 17}, - [1112] = {.lex_state = 2176, .external_lex_state = 11}, - [1113] = {.lex_state = 2176, .external_lex_state = 18}, - [1114] = {.lex_state = 2176, .external_lex_state = 11}, - [1115] = {.lex_state = 2176, .external_lex_state = 11}, - [1116] = {.lex_state = 2176, .external_lex_state = 11}, - [1117] = {.lex_state = 2176, .external_lex_state = 12}, - [1118] = {.lex_state = 2176, .external_lex_state = 11}, - [1119] = {.lex_state = 2176, .external_lex_state = 12}, - [1120] = {.lex_state = 2176, .external_lex_state = 11}, - [1121] = {.lex_state = 2176, .external_lex_state = 12}, - [1122] = {.lex_state = 2176, .external_lex_state = 11}, - [1123] = {.lex_state = 2176, .external_lex_state = 12}, - [1124] = {.lex_state = 2176, .external_lex_state = 11}, - [1125] = {.lex_state = 2176, .external_lex_state = 11}, - [1126] = {.lex_state = 2176, .external_lex_state = 12}, - [1127] = {.lex_state = 2176, .external_lex_state = 12}, - [1128] = {.lex_state = 2176, .external_lex_state = 12}, - [1129] = {.lex_state = 2176, .external_lex_state = 12}, - [1130] = {.lex_state = 2176, .external_lex_state = 12}, - [1131] = {.lex_state = 2176, .external_lex_state = 17}, - [1132] = {.lex_state = 2176, .external_lex_state = 12}, - [1133] = {.lex_state = 2176, .external_lex_state = 13}, - [1134] = {.lex_state = 2176, .external_lex_state = 12}, - [1135] = {.lex_state = 2176, .external_lex_state = 12}, - [1136] = {.lex_state = 2176, .external_lex_state = 13}, - [1137] = {.lex_state = 2176, .external_lex_state = 13}, - [1138] = {.lex_state = 2176, .external_lex_state = 15}, - [1139] = {.lex_state = 2176, .external_lex_state = 12}, - [1140] = {.lex_state = 2176, .external_lex_state = 12}, - [1141] = {.lex_state = 2176, .external_lex_state = 13}, - [1142] = {.lex_state = 2176, .external_lex_state = 13}, - [1143] = {.lex_state = 2176, .external_lex_state = 12}, - [1144] = {.lex_state = 2176, .external_lex_state = 12}, - [1145] = {.lex_state = 2176, .external_lex_state = 17}, - [1146] = {.lex_state = 2176, .external_lex_state = 12}, - [1147] = {.lex_state = 2176, .external_lex_state = 17}, - [1148] = {.lex_state = 2176, .external_lex_state = 17}, - [1149] = {.lex_state = 2176, .external_lex_state = 18}, - [1150] = {.lex_state = 2176, .external_lex_state = 12}, - [1151] = {.lex_state = 2176, .external_lex_state = 17}, - [1152] = {.lex_state = 2176, .external_lex_state = 17}, - [1153] = {.lex_state = 2176, .external_lex_state = 18}, - [1154] = {.lex_state = 2176, .external_lex_state = 18}, - [1155] = {.lex_state = 2176, .external_lex_state = 18}, - [1156] = {.lex_state = 2176, .external_lex_state = 18}, - [1157] = {.lex_state = 2176, .external_lex_state = 17}, - [1158] = {.lex_state = 2176, .external_lex_state = 18}, - [1159] = {.lex_state = 2176, .external_lex_state = 17}, - [1160] = {.lex_state = 2176, .external_lex_state = 17}, - [1161] = {.lex_state = 2176, .external_lex_state = 12}, - [1162] = {.lex_state = 2176, .external_lex_state = 12}, - [1163] = {.lex_state = 2176, .external_lex_state = 18}, - [1164] = {.lex_state = 2176, .external_lex_state = 18}, - [1165] = {.lex_state = 2176, .external_lex_state = 17}, - [1166] = {.lex_state = 2176, .external_lex_state = 18}, - [1167] = {.lex_state = 2176, .external_lex_state = 17}, - [1168] = {.lex_state = 2176, .external_lex_state = 12}, - [1169] = {.lex_state = 2176, .external_lex_state = 18}, - [1170] = {.lex_state = 2176, .external_lex_state = 12}, - [1171] = {.lex_state = 2176, .external_lex_state = 12}, - [1172] = {.lex_state = 1}, - [1173] = {.lex_state = 1}, - [1174] = {.lex_state = 1}, - [1175] = {.lex_state = 1}, - [1176] = {.lex_state = 1}, - [1177] = {.lex_state = 1}, - [1178] = {.lex_state = 1}, - [1179] = {.lex_state = 1}, - [1180] = {.lex_state = 1}, - [1181] = {.lex_state = 1}, - [1182] = {.lex_state = 1}, - [1183] = {.lex_state = 1}, - [1184] = {.lex_state = 1}, - [1185] = {.lex_state = 1}, - [1186] = {.lex_state = 1}, - [1187] = {.lex_state = 1}, - [1188] = {.lex_state = 1}, - [1189] = {.lex_state = 1}, - [1190] = {.lex_state = 1, .external_lex_state = 26}, - [1191] = {.lex_state = 1}, - [1192] = {.lex_state = 1}, - [1193] = {.lex_state = 1}, - [1194] = {.lex_state = 1}, - [1195] = {.lex_state = 1}, - [1196] = {.lex_state = 1}, - [1197] = {.lex_state = 1}, - [1198] = {.lex_state = 1}, - [1199] = {.lex_state = 1}, - [1200] = {.lex_state = 1, .external_lex_state = 26}, - [1201] = {.lex_state = 1}, - [1202] = {.lex_state = 1}, - [1203] = {.lex_state = 1}, - [1204] = {.lex_state = 1}, - [1205] = {.lex_state = 1}, - [1206] = {.lex_state = 1}, - [1207] = {.lex_state = 1}, - [1208] = {.lex_state = 1}, - [1209] = {.lex_state = 1}, - [1210] = {.lex_state = 1}, - [1211] = {.lex_state = 1}, - [1212] = {.lex_state = 1}, - [1213] = {.lex_state = 1}, - [1214] = {.lex_state = 1, .external_lex_state = 26}, - [1215] = {.lex_state = 1}, - [1216] = {.lex_state = 1}, - [1217] = {.lex_state = 1, .external_lex_state = 26}, - [1218] = {.lex_state = 1, .external_lex_state = 26}, - [1219] = {.lex_state = 1}, - [1220] = {.lex_state = 1}, - [1221] = {.lex_state = 1}, - [1222] = {.lex_state = 1}, - [1223] = {.lex_state = 1}, - [1224] = {.lex_state = 1}, - [1225] = {.lex_state = 1}, - [1226] = {.lex_state = 1}, - [1227] = {.lex_state = 1}, - [1228] = {.lex_state = 2, .external_lex_state = 27}, - [1229] = {.lex_state = 2, .external_lex_state = 27}, - [1230] = {.lex_state = 2, .external_lex_state = 27}, - [1231] = {.lex_state = 2, .external_lex_state = 27}, - [1232] = {.lex_state = 2, .external_lex_state = 27}, - [1233] = {.lex_state = 2, .external_lex_state = 27}, - [1234] = {.lex_state = 1}, - [1235] = {.lex_state = 2, .external_lex_state = 27}, - [1236] = {.lex_state = 2, .external_lex_state = 27}, - [1237] = {.lex_state = 2, .external_lex_state = 27}, - [1238] = {.lex_state = 2, .external_lex_state = 27}, - [1239] = {.lex_state = 2, .external_lex_state = 27}, - [1240] = {.lex_state = 2, .external_lex_state = 27}, - [1241] = {.lex_state = 2, .external_lex_state = 27}, - [1242] = {.lex_state = 1}, - [1243] = {.lex_state = 2, .external_lex_state = 27}, - [1244] = {.lex_state = 2, .external_lex_state = 27}, - [1245] = {.lex_state = 2, .external_lex_state = 27}, - [1246] = {.lex_state = 1}, - [1247] = {.lex_state = 2, .external_lex_state = 27}, - [1248] = {.lex_state = 2, .external_lex_state = 27}, - [1249] = {.lex_state = 1}, - [1250] = {.lex_state = 2, .external_lex_state = 27}, - [1251] = {.lex_state = 1, .external_lex_state = 26}, - [1252] = {.lex_state = 1, .external_lex_state = 28}, - [1253] = {.lex_state = 1, .external_lex_state = 26}, - [1254] = {.lex_state = 1}, - [1255] = {.lex_state = 1, .external_lex_state = 26}, - [1256] = {.lex_state = 1, .external_lex_state = 26}, - [1257] = {.lex_state = 1}, - [1258] = {.lex_state = 1, .external_lex_state = 26}, - [1259] = {.lex_state = 1, .external_lex_state = 26}, - [1260] = {.lex_state = 1}, - [1261] = {.lex_state = 1, .external_lex_state = 26}, - [1262] = {.lex_state = 1}, - [1263] = {.lex_state = 1, .external_lex_state = 28}, - [1264] = {.lex_state = 1}, - [1265] = {.lex_state = 1, .external_lex_state = 26}, - [1266] = {.lex_state = 5}, - [1267] = {.lex_state = 1}, - [1268] = {.lex_state = 6}, - [1269] = {.lex_state = 1}, - [1270] = {.lex_state = 1}, - [1271] = {.lex_state = 1}, - [1272] = {.lex_state = 1}, - [1273] = {.lex_state = 5}, - [1274] = {.lex_state = 1}, - [1275] = {.lex_state = 1}, - [1276] = {.lex_state = 1}, - [1277] = {.lex_state = 1}, - [1278] = {.lex_state = 6}, - [1279] = {.lex_state = 5}, - [1280] = {.lex_state = 6}, - [1281] = {.lex_state = 1}, - [1282] = {.lex_state = 1}, - [1283] = {.lex_state = 1}, - [1284] = {.lex_state = 1}, - [1285] = {.lex_state = 1}, - [1286] = {.lex_state = 1}, - [1287] = {.lex_state = 1}, - [1288] = {.lex_state = 1}, - [1289] = {.lex_state = 1, .external_lex_state = 26}, - [1290] = {.lex_state = 2, .external_lex_state = 29}, - [1291] = {.lex_state = 1}, - [1292] = {.lex_state = 1}, - [1293] = {.lex_state = 2, .external_lex_state = 30}, - [1294] = {.lex_state = 2, .external_lex_state = 30}, - [1295] = {.lex_state = 1}, - [1296] = {.lex_state = 2, .external_lex_state = 27}, - [1297] = {.lex_state = 2, .external_lex_state = 27}, - [1298] = {.lex_state = 6, .external_lex_state = 28}, - [1299] = {.lex_state = 2, .external_lex_state = 27}, - [1300] = {.lex_state = 6, .external_lex_state = 26}, - [1301] = {.lex_state = 5, .external_lex_state = 28}, - [1302] = {.lex_state = 2, .external_lex_state = 27}, - [1303] = {.lex_state = 5, .external_lex_state = 26}, - [1304] = {.lex_state = 6}, - [1305] = {.lex_state = 5}, - [1306] = {.lex_state = 6}, - [1307] = {.lex_state = 5}, - [1308] = {.lex_state = 4, .external_lex_state = 31}, - [1309] = {.lex_state = 4, .external_lex_state = 31}, - [1310] = {.lex_state = 4, .external_lex_state = 32}, - [1311] = {.lex_state = 4, .external_lex_state = 32}, - [1312] = {.lex_state = 4, .external_lex_state = 33}, - [1313] = {.lex_state = 4, .external_lex_state = 32}, - [1314] = {.lex_state = 4, .external_lex_state = 33}, - [1315] = {.lex_state = 4, .external_lex_state = 33}, - [1316] = {.lex_state = 4, .external_lex_state = 32}, - [1317] = {.lex_state = 4, .external_lex_state = 33}, - [1318] = {.lex_state = 4, .external_lex_state = 32}, - [1319] = {.lex_state = 4, .external_lex_state = 33}, - [1320] = {.lex_state = 4, .external_lex_state = 33}, - [1321] = {.lex_state = 4, .external_lex_state = 33}, - [1322] = {.lex_state = 4, .external_lex_state = 32}, - [1323] = {.lex_state = 4, .external_lex_state = 32}, - [1324] = {.lex_state = 4, .external_lex_state = 33}, - [1325] = {.lex_state = 4, .external_lex_state = 33}, - [1326] = {.lex_state = 4, .external_lex_state = 32}, - [1327] = {.lex_state = 4, .external_lex_state = 32}, - [1328] = {.lex_state = 4, .external_lex_state = 33}, - [1329] = {.lex_state = 4, .external_lex_state = 32}, - [1330] = {.lex_state = 4, .external_lex_state = 33}, - [1331] = {.lex_state = 4, .external_lex_state = 32}, - [1332] = {.lex_state = 4, .external_lex_state = 32}, - [1333] = {.lex_state = 4, .external_lex_state = 33}, - [1334] = {.lex_state = 4, .external_lex_state = 32}, - [1335] = {.lex_state = 4, .external_lex_state = 33}, - [1336] = {.lex_state = 4, .external_lex_state = 33}, - [1337] = {.lex_state = 4, .external_lex_state = 33}, - [1338] = {.lex_state = 4, .external_lex_state = 32}, - [1339] = {.lex_state = 4, .external_lex_state = 32}, - [1340] = {.lex_state = 4, .external_lex_state = 33}, - [1341] = {.lex_state = 4, .external_lex_state = 32}, - [1342] = {.lex_state = 4, .external_lex_state = 32}, - [1343] = {.lex_state = 4, .external_lex_state = 32}, - [1344] = {.lex_state = 4, .external_lex_state = 33}, - [1345] = {.lex_state = 4, .external_lex_state = 32}, - [1346] = {.lex_state = 4, .external_lex_state = 32}, - [1347] = {.lex_state = 4, .external_lex_state = 33}, - [1348] = {.lex_state = 4, .external_lex_state = 31}, - [1349] = {.lex_state = 4, .external_lex_state = 31}, - [1350] = {.lex_state = 4, .external_lex_state = 31}, - [1351] = {.lex_state = 2176}, - [1352] = {.lex_state = 2176}, - [1353] = {.lex_state = 2176}, - [1354] = {.lex_state = 2176}, - [1355] = {.lex_state = 2176}, - [1356] = {.lex_state = 10}, - [1357] = {.lex_state = 2176}, - [1358] = {.lex_state = 2176}, - [1359] = {.lex_state = 2176}, - [1360] = {.lex_state = 2176}, - [1361] = {.lex_state = 2176}, - [1362] = {.lex_state = 2176}, - [1363] = {.lex_state = 2176}, - [1364] = {.lex_state = 2176}, - [1365] = {.lex_state = 10}, - [1366] = {.lex_state = 2176}, - [1367] = {.lex_state = 2176}, - [1368] = {.lex_state = 2176}, - [1369] = {.lex_state = 2176}, - [1370] = {.lex_state = 2176}, - [1371] = {.lex_state = 10}, - [1372] = {.lex_state = 10}, - [1373] = {.lex_state = 2176}, - [1374] = {.lex_state = 2176}, - [1375] = {.lex_state = 2176}, - [1376] = {.lex_state = 2176}, - [1377] = {.lex_state = 4, .external_lex_state = 34}, - [1378] = {.lex_state = 2176}, - [1379] = {.lex_state = 2176}, - [1380] = {.lex_state = 4, .external_lex_state = 35}, - [1381] = {.lex_state = 2176}, - [1382] = {.lex_state = 2176}, - [1383] = {.lex_state = 2176}, - [1384] = {.lex_state = 2176}, - [1385] = {.lex_state = 2176}, - [1386] = {.lex_state = 2176}, - [1387] = {.lex_state = 10}, - [1388] = {.lex_state = 2176}, - [1389] = {.lex_state = 2176}, - [1390] = {.lex_state = 10}, - [1391] = {.lex_state = 2176}, - [1392] = {.lex_state = 2176}, - [1393] = {.lex_state = 10}, - [1394] = {.lex_state = 10}, - [1395] = {.lex_state = 2176}, - [1396] = {.lex_state = 10}, - [1397] = {.lex_state = 2176}, - [1398] = {.lex_state = 10}, - [1399] = {.lex_state = 10}, - [1400] = {.lex_state = 7, .external_lex_state = 36}, - [1401] = {.lex_state = 10}, - [1402] = {.lex_state = 10}, - [1403] = {.lex_state = 7, .external_lex_state = 36}, - [1404] = {.lex_state = 7, .external_lex_state = 36}, - [1405] = {.lex_state = 3, .external_lex_state = 28}, - [1406] = {.lex_state = 7, .external_lex_state = 36}, - [1407] = {.lex_state = 10}, - [1408] = {.lex_state = 7, .external_lex_state = 36}, - [1409] = {.lex_state = 4, .external_lex_state = 32}, - [1410] = {.lex_state = 7, .external_lex_state = 36}, - [1411] = {.lex_state = 10}, - [1412] = {.lex_state = 4, .external_lex_state = 37}, - [1413] = {.lex_state = 2176}, - [1414] = {.lex_state = 7, .external_lex_state = 36}, - [1415] = {.lex_state = 7, .external_lex_state = 36}, - [1416] = {.lex_state = 7, .external_lex_state = 36}, - [1417] = {.lex_state = 4, .external_lex_state = 33}, - [1418] = {.lex_state = 7, .external_lex_state = 36}, - [1419] = {.lex_state = 7, .external_lex_state = 36}, - [1420] = {.lex_state = 7, .external_lex_state = 36}, - [1421] = {.lex_state = 7, .external_lex_state = 36}, - [1422] = {.lex_state = 10}, - [1423] = {.lex_state = 7, .external_lex_state = 36}, - [1424] = {.lex_state = 7, .external_lex_state = 36}, - [1425] = {.lex_state = 10}, - [1426] = {.lex_state = 10}, - [1427] = {.lex_state = 10}, - [1428] = {.lex_state = 10}, - [1429] = {.lex_state = 10}, - [1430] = {.lex_state = 7, .external_lex_state = 36}, - [1431] = {.lex_state = 10}, - [1432] = {.lex_state = 7, .external_lex_state = 36}, - [1433] = {.lex_state = 7, .external_lex_state = 36}, - [1434] = {.lex_state = 10}, - [1435] = {.lex_state = 10}, - [1436] = {.lex_state = 7, .external_lex_state = 36}, - [1437] = {.lex_state = 10}, - [1438] = {.lex_state = 10}, - [1439] = {.lex_state = 10}, - [1440] = {.lex_state = 10}, - [1441] = {.lex_state = 10}, - [1442] = {.lex_state = 10}, - [1443] = {.lex_state = 10}, - [1444] = {.lex_state = 10}, - [1445] = {.lex_state = 10}, - [1446] = {.lex_state = 10}, - [1447] = {.lex_state = 10}, - [1448] = {.lex_state = 10}, - [1449] = {.lex_state = 10}, - [1450] = {.lex_state = 10}, - [1451] = {.lex_state = 10}, - [1452] = {.lex_state = 10}, - [1453] = {.lex_state = 3}, - [1454] = {.lex_state = 10}, - [1455] = {.lex_state = 10}, - [1456] = {.lex_state = 10}, - [1457] = {.lex_state = 10}, - [1458] = {.lex_state = 10}, - [1459] = {.lex_state = 10}, - [1460] = {.lex_state = 10}, - [1461] = {.lex_state = 10}, - [1462] = {.lex_state = 4, .external_lex_state = 31}, - [1463] = {.lex_state = 10}, - [1464] = {.lex_state = 10}, - [1465] = {.lex_state = 10}, - [1466] = {.lex_state = 10}, - [1467] = {.lex_state = 10}, - [1468] = {.lex_state = 10}, - [1469] = {.lex_state = 7, .external_lex_state = 38}, - [1470] = {.lex_state = 10}, - [1471] = {.lex_state = 2176}, - [1472] = {.lex_state = 2176}, - [1473] = {.lex_state = 2176}, - [1474] = {.lex_state = 10}, - [1475] = {.lex_state = 2176}, - [1476] = {.lex_state = 2176}, - [1477] = {.lex_state = 2176}, - [1478] = {.lex_state = 2176}, - [1479] = {.lex_state = 2176}, - [1480] = {.lex_state = 10}, - [1481] = {.lex_state = 2176}, - [1482] = {.lex_state = 2176}, - [1483] = {.lex_state = 2176}, - [1484] = {.lex_state = 2176}, - [1485] = {.lex_state = 2176}, - [1486] = {.lex_state = 2176}, - [1487] = {.lex_state = 2176}, - [1488] = {.lex_state = 2176}, - [1489] = {.lex_state = 2176}, - [1490] = {.lex_state = 10}, - [1491] = {.lex_state = 2176}, - [1492] = {.lex_state = 2176}, - [1493] = {.lex_state = 2176}, - [1494] = {.lex_state = 2176}, - [1495] = {.lex_state = 2176}, - [1496] = {.lex_state = 2176}, - [1497] = {.lex_state = 2176}, - [1498] = {.lex_state = 2176}, - [1499] = {.lex_state = 2176}, - [1500] = {.lex_state = 2176}, - [1501] = {.lex_state = 2176}, - [1502] = {.lex_state = 10}, - [1503] = {.lex_state = 2176}, - [1504] = {.lex_state = 2176}, - [1505] = {.lex_state = 2176}, - [1506] = {.lex_state = 2176}, - [1507] = {.lex_state = 2176}, - [1508] = {.lex_state = 2176}, - [1509] = {.lex_state = 2176}, - [1510] = {.lex_state = 2176}, - [1511] = {.lex_state = 2176}, - [1512] = {.lex_state = 2176}, - [1513] = {.lex_state = 2176}, - [1514] = {.lex_state = 2176}, - [1515] = {.lex_state = 2176}, - [1516] = {.lex_state = 2176}, - [1517] = {.lex_state = 2176}, - [1518] = {.lex_state = 2176}, - [1519] = {.lex_state = 10}, - [1520] = {.lex_state = 2176}, - [1521] = {.lex_state = 2176}, - [1522] = {.lex_state = 2176}, - [1523] = {.lex_state = 2176}, - [1524] = {.lex_state = 2176}, - [1525] = {.lex_state = 2176}, - [1526] = {.lex_state = 2176}, - [1527] = {.lex_state = 10}, - [1528] = {.lex_state = 2176}, - [1529] = {.lex_state = 2176}, - [1530] = {.lex_state = 2176}, - [1531] = {.lex_state = 10}, - [1532] = {.lex_state = 2176}, - [1533] = {.lex_state = 2176}, - [1534] = {.lex_state = 2176}, - [1535] = {.lex_state = 2176}, - [1536] = {.lex_state = 2176}, - [1537] = {.lex_state = 2176}, - [1538] = {.lex_state = 2176}, - [1539] = {.lex_state = 10}, - [1540] = {.lex_state = 2176}, - [1541] = {.lex_state = 2176}, - [1542] = {.lex_state = 2176}, - [1543] = {.lex_state = 2176}, - [1544] = {.lex_state = 10}, - [1545] = {.lex_state = 2176}, - [1546] = {.lex_state = 2176}, - [1547] = {.lex_state = 2176}, - [1548] = {.lex_state = 2176}, - [1549] = {.lex_state = 2176}, - [1550] = {.lex_state = 2176}, - [1551] = {.lex_state = 2176}, - [1552] = {.lex_state = 2176}, - [1553] = {.lex_state = 2176}, - [1554] = {.lex_state = 2176}, - [1555] = {.lex_state = 2176}, - [1556] = {.lex_state = 2176}, - [1557] = {.lex_state = 2176}, - [1558] = {.lex_state = 2176}, - [1559] = {.lex_state = 2176}, - [1560] = {.lex_state = 2176}, - [1561] = {.lex_state = 2176}, - [1562] = {.lex_state = 2176}, - [1563] = {.lex_state = 2176}, - [1564] = {.lex_state = 7, .external_lex_state = 36}, - [1565] = {.lex_state = 2176}, - [1566] = {.lex_state = 2176}, - [1567] = {.lex_state = 2176}, - [1568] = {.lex_state = 2176}, - [1569] = {.lex_state = 2176}, - [1570] = {.lex_state = 2176}, - [1571] = {.lex_state = 2176}, - [1572] = {.lex_state = 2176}, - [1573] = {.lex_state = 2176}, - [1574] = {.lex_state = 2176}, - [1575] = {.lex_state = 2176}, - [1576] = {.lex_state = 10}, - [1577] = {.lex_state = 10}, - [1578] = {.lex_state = 2176}, - [1579] = {.lex_state = 2176}, - [1580] = {.lex_state = 2176}, - [1581] = {.lex_state = 2176}, - [1582] = {.lex_state = 2176}, - [1583] = {.lex_state = 2176}, - [1584] = {.lex_state = 10}, - [1585] = {.lex_state = 2176}, - [1586] = {.lex_state = 2176}, - [1587] = {.lex_state = 2176}, - [1588] = {.lex_state = 2176}, - [1589] = {.lex_state = 2176}, - [1590] = {.lex_state = 2176}, - [1591] = {.lex_state = 10}, - [1592] = {.lex_state = 2176}, - [1593] = {.lex_state = 2176}, - [1594] = {.lex_state = 10}, - [1595] = {.lex_state = 10}, - [1596] = {.lex_state = 2176}, - [1597] = {.lex_state = 2176}, - [1598] = {.lex_state = 2176}, - [1599] = {.lex_state = 10}, - [1600] = {.lex_state = 2176}, - [1601] = {.lex_state = 2176}, - [1602] = {.lex_state = 2176}, - [1603] = {.lex_state = 10}, - [1604] = {.lex_state = 2176}, - [1605] = {.lex_state = 2176}, - [1606] = {.lex_state = 2176}, - [1607] = {.lex_state = 2176}, - [1608] = {.lex_state = 2176}, - [1609] = {.lex_state = 2176}, - [1610] = {.lex_state = 2176}, - [1611] = {.lex_state = 2176}, - [1612] = {.lex_state = 2176}, - [1613] = {.lex_state = 2176}, - [1614] = {.lex_state = 2176}, - [1615] = {.lex_state = 2176}, - [1616] = {.lex_state = 2176}, - [1617] = {.lex_state = 7, .external_lex_state = 36}, - [1618] = {.lex_state = 2176}, - [1619] = {.lex_state = 2176}, - [1620] = {.lex_state = 2176}, - [1621] = {.lex_state = 2176}, - [1622] = {.lex_state = 2176}, - [1623] = {.lex_state = 10}, - [1624] = {.lex_state = 2176}, - [1625] = {.lex_state = 10}, - [1626] = {.lex_state = 7, .external_lex_state = 36}, - [1627] = {.lex_state = 2176}, - [1628] = {.lex_state = 2176}, - [1629] = {.lex_state = 2176}, - [1630] = {.lex_state = 10}, - [1631] = {.lex_state = 2176}, - [1632] = {.lex_state = 10}, - [1633] = {.lex_state = 2176}, - [1634] = {.lex_state = 2176}, - [1635] = {.lex_state = 2176}, - [1636] = {.lex_state = 10}, - [1637] = {.lex_state = 2176}, - [1638] = {.lex_state = 2176}, - [1639] = {.lex_state = 2176}, - [1640] = {.lex_state = 2176}, - [1641] = {.lex_state = 2176}, - [1642] = {.lex_state = 10}, - [1643] = {.lex_state = 2176}, - [1644] = {.lex_state = 2176}, - [1645] = {.lex_state = 10}, - [1646] = {.lex_state = 2176}, - [1647] = {.lex_state = 2176}, - [1648] = {.lex_state = 2176}, - [1649] = {.lex_state = 2176}, - [1650] = {.lex_state = 2176}, - [1651] = {.lex_state = 2176}, - [1652] = {.lex_state = 2176}, - [1653] = {.lex_state = 2176}, - [1654] = {.lex_state = 2176}, - [1655] = {.lex_state = 10}, - [1656] = {.lex_state = 2176}, - [1657] = {.lex_state = 2176}, - [1658] = {.lex_state = 2176}, - [1659] = {.lex_state = 2176}, - [1660] = {.lex_state = 2176}, - [1661] = {.lex_state = 2176}, - [1662] = {.lex_state = 2176}, - [1663] = {.lex_state = 2176}, - [1664] = {.lex_state = 2176}, - [1665] = {.lex_state = 2176}, - [1666] = {.lex_state = 2176}, - [1667] = {.lex_state = 2176}, - [1668] = {.lex_state = 2176}, - [1669] = {.lex_state = 2176}, - [1670] = {.lex_state = 2176}, - [1671] = {.lex_state = 2176}, - [1672] = {.lex_state = 2176}, - [1673] = {.lex_state = 2176}, - [1674] = {.lex_state = 2176}, - [1675] = {.lex_state = 10}, - [1676] = {.lex_state = 2176}, - [1677] = {.lex_state = 2176}, - [1678] = {.lex_state = 2176}, - [1679] = {.lex_state = 2176}, - [1680] = {.lex_state = 10}, - [1681] = {.lex_state = 10}, - [1682] = {.lex_state = 10}, - [1683] = {.lex_state = 2176}, - [1684] = {.lex_state = 10}, - [1685] = {.lex_state = 10}, - [1686] = {.lex_state = 10}, - [1687] = {.lex_state = 10}, - [1688] = {.lex_state = 10}, - [1689] = {.lex_state = 10}, - [1690] = {.lex_state = 10}, - [1691] = {.lex_state = 10}, - [1692] = {.lex_state = 13}, - [1693] = {.lex_state = 10}, - [1694] = {.lex_state = 2176}, - [1695] = {.lex_state = 10}, - [1696] = {.lex_state = 10}, - [1697] = {.lex_state = 2176}, - [1698] = {.lex_state = 10}, - [1699] = {.lex_state = 10}, - [1700] = {.lex_state = 8}, - [1701] = {.lex_state = 10}, - [1702] = {.lex_state = 10}, - [1703] = {.lex_state = 10}, - [1704] = {.lex_state = 10}, - [1705] = {.lex_state = 10}, - [1706] = {.lex_state = 2176}, - [1707] = {.lex_state = 10}, - [1708] = {.lex_state = 8}, - [1709] = {.lex_state = 10}, - [1710] = {.lex_state = 10}, - [1711] = {.lex_state = 10}, - [1712] = {.lex_state = 10}, - [1713] = {.lex_state = 10}, - [1714] = {.lex_state = 10}, - [1715] = {.lex_state = 10}, - [1716] = {.lex_state = 10}, - [1717] = {.lex_state = 10}, - [1718] = {.lex_state = 10}, - [1719] = {.lex_state = 10}, - [1720] = {.lex_state = 2176}, - [1721] = {.lex_state = 10}, - [1722] = {.lex_state = 10}, - [1723] = {.lex_state = 10}, - [1724] = {.lex_state = 10}, - [1725] = {.lex_state = 13}, - [1726] = {.lex_state = 2176}, - [1727] = {.lex_state = 2176}, - [1728] = {.lex_state = 10}, - [1729] = {.lex_state = 10}, - [1730] = {.lex_state = 2176}, - [1731] = {.lex_state = 2176}, - [1732] = {.lex_state = 13}, - [1733] = {.lex_state = 2176}, - [1734] = {.lex_state = 2176}, - [1735] = {.lex_state = 2176}, - [1736] = {.lex_state = 2176}, - [1737] = {.lex_state = 13}, - [1738] = {.lex_state = 2176}, - [1739] = {.lex_state = 2176}, - [1740] = {.lex_state = 2176}, - [1741] = {.lex_state = 2176}, - [1742] = {.lex_state = 13}, - [1743] = {.lex_state = 10}, - [1744] = {.lex_state = 10}, - [1745] = {.lex_state = 2176}, - [1746] = {.lex_state = 2176}, - [1747] = {.lex_state = 2176}, - [1748] = {.lex_state = 2176}, - [1749] = {.lex_state = 13}, - [1750] = {.lex_state = 2176}, - [1751] = {.lex_state = 2176}, - [1752] = {.lex_state = 2176}, - [1753] = {.lex_state = 2176}, - [1754] = {.lex_state = 13}, - [1755] = {.lex_state = 2176}, - [1756] = {.lex_state = 2176}, - [1757] = {.lex_state = 2176}, - [1758] = {.lex_state = 2176}, - [1759] = {.lex_state = 13}, - [1760] = {.lex_state = 2176}, - [1761] = {.lex_state = 2176}, - [1762] = {.lex_state = 2176}, - [1763] = {.lex_state = 2176}, - [1764] = {.lex_state = 13}, - [1765] = {.lex_state = 2176}, - [1766] = {.lex_state = 2176}, - [1767] = {.lex_state = 2176}, - [1768] = {.lex_state = 2176}, - [1769] = {.lex_state = 2176}, - [1770] = {.lex_state = 10}, - [1771] = {.lex_state = 2176}, - [1772] = {.lex_state = 2176}, - [1773] = {.lex_state = 2176}, - [1774] = {.lex_state = 2176}, - [1775] = {.lex_state = 8}, - [1776] = {.lex_state = 2176}, - [1777] = {.lex_state = 10}, - [1778] = {.lex_state = 10}, - [1779] = {.lex_state = 2176}, - [1780] = {.lex_state = 2176}, - [1781] = {.lex_state = 2176}, - [1782] = {.lex_state = 2176}, - [1783] = {.lex_state = 2176}, - [1784] = {.lex_state = 10}, - [1785] = {.lex_state = 2176}, - [1786] = {.lex_state = 2176}, - [1787] = {.lex_state = 2176}, - [1788] = {.lex_state = 2176}, - [1789] = {.lex_state = 2176}, - [1790] = {.lex_state = 2176}, - [1791] = {.lex_state = 2176}, - [1792] = {.lex_state = 2176}, - [1793] = {.lex_state = 2176}, - [1794] = {.lex_state = 2176}, - [1795] = {.lex_state = 2176}, - [1796] = {.lex_state = 2176}, - [1797] = {.lex_state = 2176}, - [1798] = {.lex_state = 10}, - [1799] = {.lex_state = 2176}, - [1800] = {.lex_state = 10}, - [1801] = {.lex_state = 2176}, - [1802] = {.lex_state = 2176}, - [1803] = {.lex_state = 2176}, - [1804] = {.lex_state = 2176}, - [1805] = {.lex_state = 2176}, - [1806] = {.lex_state = 2176}, - [1807] = {.lex_state = 2176}, - [1808] = {.lex_state = 2176}, - [1809] = {.lex_state = 2176}, - [1810] = {.lex_state = 2176}, - [1811] = {.lex_state = 2176}, - [1812] = {.lex_state = 2176}, - [1813] = {.lex_state = 10}, - [1814] = {.lex_state = 10}, - [1815] = {.lex_state = 8}, - [1816] = {.lex_state = 2176}, - [1817] = {.lex_state = 2176}, - [1818] = {.lex_state = 2176}, - [1819] = {.lex_state = 2176}, - [1820] = {.lex_state = 2176}, - [1821] = {.lex_state = 2176}, - [1822] = {.lex_state = 2176}, - [1823] = {.lex_state = 2176}, - [1824] = {.lex_state = 2176}, - [1825] = {.lex_state = 2176}, - [1826] = {.lex_state = 10}, - [1827] = {.lex_state = 3, .external_lex_state = 39}, - [1828] = {.lex_state = 3, .external_lex_state = 39}, - [1829] = {.lex_state = 3, .external_lex_state = 40}, - [1830] = {.lex_state = 2176}, - [1831] = {.lex_state = 5}, - [1832] = {.lex_state = 5}, - [1833] = {.lex_state = 3, .external_lex_state = 39}, - [1834] = {.lex_state = 10}, - [1835] = {.lex_state = 5}, - [1836] = {.lex_state = 5}, - [1837] = {.lex_state = 3, .external_lex_state = 40}, - [1838] = {.lex_state = 3, .external_lex_state = 39}, - [1839] = {.lex_state = 3, .external_lex_state = 40}, - [1840] = {.lex_state = 3, .external_lex_state = 39}, - [1841] = {.lex_state = 2176}, - [1842] = {.lex_state = 3, .external_lex_state = 39}, - [1843] = {.lex_state = 3, .external_lex_state = 40}, - [1844] = {.lex_state = 3, .external_lex_state = 40}, - [1845] = {.lex_state = 3, .external_lex_state = 40}, - [1846] = {.lex_state = 5}, - [1847] = {.lex_state = 3, .external_lex_state = 39}, - [1848] = {.lex_state = 3, .external_lex_state = 40}, - [1849] = {.lex_state = 3, .external_lex_state = 39}, - [1850] = {.lex_state = 3, .external_lex_state = 40}, - [1851] = {.lex_state = 3, .external_lex_state = 40}, - [1852] = {.lex_state = 3, .external_lex_state = 39}, - [1853] = {.lex_state = 3, .external_lex_state = 39}, - [1854] = {.lex_state = 3, .external_lex_state = 40}, - [1855] = {.lex_state = 3, .external_lex_state = 40}, - [1856] = {.lex_state = 5}, - [1857] = {.lex_state = 3, .external_lex_state = 40}, - [1858] = {.lex_state = 2176}, - [1859] = {.lex_state = 3, .external_lex_state = 39}, - [1860] = {.lex_state = 3, .external_lex_state = 40}, - [1861] = {.lex_state = 5}, - [1862] = {.lex_state = 3, .external_lex_state = 39}, - [1863] = {.lex_state = 3, .external_lex_state = 39}, - [1864] = {.lex_state = 3, .external_lex_state = 40}, - [1865] = {.lex_state = 3, .external_lex_state = 39}, - [1866] = {.lex_state = 3, .external_lex_state = 40}, - [1867] = {.lex_state = 3, .external_lex_state = 39}, - [1868] = {.lex_state = 5}, - [1869] = {.lex_state = 3, .external_lex_state = 39}, - [1870] = {.lex_state = 3, .external_lex_state = 40}, - [1871] = {.lex_state = 3, .external_lex_state = 40}, - [1872] = {.lex_state = 3, .external_lex_state = 39}, - [1873] = {.lex_state = 3, .external_lex_state = 41}, - [1874] = {.lex_state = 3, .external_lex_state = 42}, - [1875] = {.lex_state = 5}, - [1876] = {.lex_state = 3, .external_lex_state = 39}, - [1877] = {.lex_state = 3, .external_lex_state = 40}, - [1878] = {.lex_state = 3, .external_lex_state = 40}, - [1879] = {.lex_state = 2176}, - [1880] = {.lex_state = 2176}, - [1881] = {.lex_state = 2176}, - [1882] = {.lex_state = 2176}, - [1883] = {.lex_state = 2176}, - [1884] = {.lex_state = 2176}, - [1885] = {.lex_state = 2176}, - [1886] = {.lex_state = 2176}, - [1887] = {.lex_state = 2176}, - [1888] = {.lex_state = 2176}, - [1889] = {.lex_state = 2176}, - [1890] = {.lex_state = 2176}, - [1891] = {.lex_state = 2176}, - [1892] = {.lex_state = 2176}, - [1893] = {.lex_state = 2176}, - [1894] = {.lex_state = 2176}, - [1895] = {.lex_state = 2176}, - [1896] = {.lex_state = 3, .external_lex_state = 40}, - [1897] = {.lex_state = 5}, - [1898] = {.lex_state = 5}, - [1899] = {.lex_state = 5}, - [1900] = {.lex_state = 5}, - [1901] = {.lex_state = 5}, - [1902] = {.lex_state = 5}, - [1903] = {.lex_state = 0, .external_lex_state = 43}, - [1904] = {.lex_state = 2176}, - [1905] = {.lex_state = 3, .external_lex_state = 39}, - [1906] = {.lex_state = 3}, - [1907] = {.lex_state = 5}, - [1908] = {.lex_state = 3, .external_lex_state = 40}, - [1909] = {.lex_state = 2176}, - [1910] = {.lex_state = 2176}, - [1911] = {.lex_state = 5}, - [1912] = {.lex_state = 2176}, - [1913] = {.lex_state = 2176}, - [1914] = {.lex_state = 5}, - [1915] = {.lex_state = 2176}, - [1916] = {.lex_state = 5}, - [1917] = {.lex_state = 5}, - [1918] = {.lex_state = 2176}, - [1919] = {.lex_state = 2176}, - [1920] = {.lex_state = 5}, - [1921] = {.lex_state = 5}, - [1922] = {.lex_state = 2176}, - [1923] = {.lex_state = 5}, - [1924] = {.lex_state = 5}, - [1925] = {.lex_state = 5}, - [1926] = {.lex_state = 2176}, - [1927] = {.lex_state = 5}, - [1928] = {.lex_state = 5}, - [1929] = {.lex_state = 5}, - [1930] = {.lex_state = 2176}, - [1931] = {.lex_state = 0}, - [1932] = {.lex_state = 2176}, - [1933] = {.lex_state = 0}, - [1934] = {.lex_state = 0}, - [1935] = {.lex_state = 0}, - [1936] = {.lex_state = 3}, - [1937] = {.lex_state = 3}, - [1938] = {.lex_state = 2170}, - [1939] = {.lex_state = 2173}, - [1940] = {.lex_state = 2173}, - [1941] = {.lex_state = 2176}, - [1942] = {.lex_state = 2176}, - [1943] = {.lex_state = 2170}, - [1944] = {.lex_state = 0}, - [1945] = {.lex_state = 0}, - [1946] = {.lex_state = 2170}, - [1947] = {.lex_state = 2176}, - [1948] = {.lex_state = 0}, - [1949] = {.lex_state = 0}, - [1950] = {.lex_state = 0}, - [1951] = {.lex_state = 2170}, - [1952] = {.lex_state = 0}, - [1953] = {.lex_state = 2173}, - [1954] = {.lex_state = 2173}, - [1955] = {.lex_state = 0}, - [1956] = {.lex_state = 2170}, - [1957] = {.lex_state = 0, .external_lex_state = 44}, - [1958] = {.lex_state = 2176}, - [1959] = {.lex_state = 2176}, - [1960] = {.lex_state = 2170}, - [1961] = {.lex_state = 0}, - [1962] = {.lex_state = 2173}, - [1963] = {.lex_state = 0}, - [1964] = {.lex_state = 0}, - [1965] = {.lex_state = 2173}, - [1966] = {.lex_state = 2173}, - [1967] = {.lex_state = 2173}, - [1968] = {.lex_state = 2173}, - [1969] = {.lex_state = 0}, - [1970] = {.lex_state = 2176}, - [1971] = {.lex_state = 0}, - [1972] = {.lex_state = 2176}, - [1973] = {.lex_state = 2176}, - [1974] = {.lex_state = 2170}, - [1975] = {.lex_state = 2176}, - [1976] = {.lex_state = 2176}, - [1977] = {.lex_state = 0}, - [1978] = {.lex_state = 2176}, - [1979] = {.lex_state = 0}, - [1980] = {.lex_state = 0}, - [1981] = {.lex_state = 2173}, - [1982] = {.lex_state = 2173}, - [1983] = {.lex_state = 0}, - [1984] = {.lex_state = 2176}, - [1985] = {.lex_state = 0}, - [1986] = {.lex_state = 0}, - [1987] = {.lex_state = 2170}, - [1988] = {.lex_state = 2173}, - [1989] = {.lex_state = 0}, - [1990] = {.lex_state = 2170}, - [1991] = {.lex_state = 0, .external_lex_state = 44}, - [1992] = {.lex_state = 2170}, - [1993] = {.lex_state = 0, .external_lex_state = 44}, - [1994] = {.lex_state = 2170}, - [1995] = {.lex_state = 2173}, - [1996] = {.lex_state = 2173}, - [1997] = {.lex_state = 2170}, - [1998] = {.lex_state = 2176}, - [1999] = {.lex_state = 0, .external_lex_state = 44}, - [2000] = {.lex_state = 2170}, - [2001] = {.lex_state = 2170}, - [2002] = {.lex_state = 2173}, - [2003] = {.lex_state = 0}, - [2004] = {.lex_state = 2173}, - [2005] = {.lex_state = 0}, - [2006] = {.lex_state = 0}, - [2007] = {.lex_state = 0}, - [2008] = {.lex_state = 2176}, - [2009] = {.lex_state = 2170}, - [2010] = {.lex_state = 2170}, - [2011] = {.lex_state = 2170}, - [2012] = {.lex_state = 0}, - [2013] = {.lex_state = 3}, - [2014] = {.lex_state = 3}, - [2015] = {.lex_state = 3}, - [2016] = {.lex_state = 3}, - [2017] = {.lex_state = 3}, - [2018] = {.lex_state = 3}, - [2019] = {.lex_state = 3}, - [2020] = {.lex_state = 3}, - [2021] = {.lex_state = 3}, - [2022] = {.lex_state = 3}, - [2023] = {.lex_state = 3}, - [2024] = {.lex_state = 3}, - [2025] = {.lex_state = 3}, - [2026] = {.lex_state = 3}, - [2027] = {.lex_state = 3}, - [2028] = {.lex_state = 3}, - [2029] = {.lex_state = 3}, - [2030] = {.lex_state = 0}, - [2031] = {.lex_state = 2176}, - [2032] = {.lex_state = 0}, - [2033] = {.lex_state = 0}, - [2034] = {.lex_state = 0}, - [2035] = {.lex_state = 0}, - [2036] = {.lex_state = 0}, - [2037] = {.lex_state = 2176}, - [2038] = {.lex_state = 0}, - [2039] = {.lex_state = 0}, - [2040] = {.lex_state = 0}, - [2041] = {.lex_state = 2173}, - [2042] = {.lex_state = 2173}, - [2043] = {.lex_state = 2176}, - [2044] = {.lex_state = 2176}, - [2045] = {.lex_state = 0}, - [2046] = {.lex_state = 2170}, - [2047] = {.lex_state = 0}, + [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 = 3}, + [5] = {.lex_state = 2181, .external_lex_state = 5}, + [6] = {.lex_state = 2181, .external_lex_state = 6}, + [7] = {.lex_state = 2181, .external_lex_state = 6}, + [8] = {.lex_state = 2181, .external_lex_state = 7}, + [9] = {.lex_state = 2181, .external_lex_state = 7}, + [10] = {.lex_state = 2181, .external_lex_state = 8}, + [11] = {.lex_state = 2181, .external_lex_state = 8}, + [12] = {.lex_state = 2181, .external_lex_state = 9}, + [13] = {.lex_state = 2181, .external_lex_state = 9}, + [14] = {.lex_state = 2181, .external_lex_state = 10}, + [15] = {.lex_state = 2181, .external_lex_state = 10}, + [16] = {.lex_state = 4, .external_lex_state = 3}, + [17] = {.lex_state = 4, .external_lex_state = 3}, + [18] = {.lex_state = 2181, .external_lex_state = 3}, + [19] = {.lex_state = 2181, .external_lex_state = 3}, + [20] = {.lex_state = 2181, .external_lex_state = 3}, + [21] = {.lex_state = 2181, .external_lex_state = 3}, + [22] = {.lex_state = 2181, .external_lex_state = 3}, + [23] = {.lex_state = 2181, .external_lex_state = 3}, + [24] = {.lex_state = 2181, .external_lex_state = 3}, + [25] = {.lex_state = 2181, .external_lex_state = 3}, + [26] = {.lex_state = 2181, .external_lex_state = 3}, + [27] = {.lex_state = 2181, .external_lex_state = 3}, + [28] = {.lex_state = 2181, .external_lex_state = 3}, + [29] = {.lex_state = 2181, .external_lex_state = 3}, + [30] = {.lex_state = 2181, .external_lex_state = 11}, + [31] = {.lex_state = 4, .external_lex_state = 12}, + [32] = {.lex_state = 2181, .external_lex_state = 12}, + [33] = {.lex_state = 2181, .external_lex_state = 12}, + [34] = {.lex_state = 2181, .external_lex_state = 12}, + [35] = {.lex_state = 2181, .external_lex_state = 13}, + [36] = {.lex_state = 2181, .external_lex_state = 13}, + [37] = {.lex_state = 2181, .external_lex_state = 14}, + [38] = {.lex_state = 2181, .external_lex_state = 14}, + [39] = {.lex_state = 2181, .external_lex_state = 15}, + [40] = {.lex_state = 2181, .external_lex_state = 12}, + [41] = {.lex_state = 2181, .external_lex_state = 11}, + [42] = {.lex_state = 2181, .external_lex_state = 16}, + [43] = {.lex_state = 2181, .external_lex_state = 12}, + [44] = {.lex_state = 2181, .external_lex_state = 17}, + [45] = {.lex_state = 4, .external_lex_state = 12}, + [46] = {.lex_state = 2181, .external_lex_state = 12}, + [47] = {.lex_state = 2181, .external_lex_state = 18}, + [48] = {.lex_state = 4, .external_lex_state = 12}, + [49] = {.lex_state = 4, .external_lex_state = 12}, + [50] = {.lex_state = 2181, .external_lex_state = 11}, + [51] = {.lex_state = 4, .external_lex_state = 12}, + [52] = {.lex_state = 2181, .external_lex_state = 16}, + [53] = {.lex_state = 2181, .external_lex_state = 12}, + [54] = {.lex_state = 2181, .external_lex_state = 3}, + [55] = {.lex_state = 2181, .external_lex_state = 17}, + [56] = {.lex_state = 2181, .external_lex_state = 15}, + [57] = {.lex_state = 4, .external_lex_state = 12}, + [58] = {.lex_state = 2181, .external_lex_state = 13}, + [59] = {.lex_state = 2181, .external_lex_state = 18}, + [60] = {.lex_state = 2181, .external_lex_state = 12}, + [61] = {.lex_state = 2181, .external_lex_state = 3}, + [62] = {.lex_state = 2181, .external_lex_state = 15}, + [63] = {.lex_state = 2181, .external_lex_state = 18}, + [64] = {.lex_state = 2181, .external_lex_state = 11}, + [65] = {.lex_state = 2181, .external_lex_state = 16}, + [66] = {.lex_state = 2181, .external_lex_state = 17}, + [67] = {.lex_state = 4, .external_lex_state = 12}, + [68] = {.lex_state = 4, .external_lex_state = 12}, + [69] = {.lex_state = 4, .external_lex_state = 12}, + [70] = {.lex_state = 4, .external_lex_state = 12}, + [71] = {.lex_state = 2181, .external_lex_state = 14}, + [72] = {.lex_state = 2181, .external_lex_state = 13}, + [73] = {.lex_state = 2181, .external_lex_state = 14}, + [74] = {.lex_state = 2181, .external_lex_state = 15}, + [75] = {.lex_state = 2181, .external_lex_state = 18}, + [76] = {.lex_state = 2181, .external_lex_state = 11}, + [77] = {.lex_state = 2181, .external_lex_state = 16}, + [78] = {.lex_state = 2181, .external_lex_state = 17}, + [79] = {.lex_state = 4, .external_lex_state = 12}, + [80] = {.lex_state = 4, .external_lex_state = 12}, + [81] = {.lex_state = 4, .external_lex_state = 12}, + [82] = {.lex_state = 4, .external_lex_state = 12}, + [83] = {.lex_state = 2181, .external_lex_state = 12}, + [84] = {.lex_state = 2181, .external_lex_state = 12}, + [85] = {.lex_state = 2181, .external_lex_state = 13}, + [86] = {.lex_state = 2181, .external_lex_state = 14}, + [87] = {.lex_state = 2181, .external_lex_state = 12}, + [88] = {.lex_state = 2181, .external_lex_state = 15}, + [89] = {.lex_state = 2181, .external_lex_state = 18}, + [90] = {.lex_state = 2181, .external_lex_state = 11}, + [91] = {.lex_state = 2181, .external_lex_state = 16}, + [92] = {.lex_state = 2181, .external_lex_state = 17}, + [93] = {.lex_state = 4, .external_lex_state = 12}, + [94] = {.lex_state = 4, .external_lex_state = 12}, + [95] = {.lex_state = 4, .external_lex_state = 12}, + [96] = {.lex_state = 4, .external_lex_state = 12}, + [97] = {.lex_state = 2181, .external_lex_state = 12}, + [98] = {.lex_state = 2181, .external_lex_state = 13}, + [99] = {.lex_state = 2181, .external_lex_state = 14}, + [100] = {.lex_state = 2181, .external_lex_state = 15}, + [101] = {.lex_state = 2181, .external_lex_state = 18}, + [102] = {.lex_state = 2181, .external_lex_state = 11}, + [103] = {.lex_state = 2181, .external_lex_state = 16}, + [104] = {.lex_state = 2181, .external_lex_state = 17}, + [105] = {.lex_state = 4, .external_lex_state = 12}, + [106] = {.lex_state = 4, .external_lex_state = 12}, + [107] = {.lex_state = 4, .external_lex_state = 12}, + [108] = {.lex_state = 4, .external_lex_state = 12}, + [109] = {.lex_state = 2181, .external_lex_state = 12}, + [110] = {.lex_state = 2181, .external_lex_state = 12}, + [111] = {.lex_state = 2181, .external_lex_state = 13}, + [112] = {.lex_state = 2181, .external_lex_state = 14}, + [113] = {.lex_state = 2181, .external_lex_state = 12}, + [114] = {.lex_state = 2181, .external_lex_state = 15}, + [115] = {.lex_state = 2181, .external_lex_state = 18}, + [116] = {.lex_state = 2181, .external_lex_state = 11}, + [117] = {.lex_state = 2181, .external_lex_state = 16}, + [118] = {.lex_state = 2181, .external_lex_state = 17}, + [119] = {.lex_state = 4, .external_lex_state = 12}, + [120] = {.lex_state = 4, .external_lex_state = 12}, + [121] = {.lex_state = 4, .external_lex_state = 12}, + [122] = {.lex_state = 4, .external_lex_state = 12}, + [123] = {.lex_state = 2181, .external_lex_state = 15}, + [124] = {.lex_state = 2181, .external_lex_state = 13}, + [125] = {.lex_state = 2181, .external_lex_state = 14}, + [126] = {.lex_state = 2181, .external_lex_state = 15}, + [127] = {.lex_state = 2181, .external_lex_state = 18}, + [128] = {.lex_state = 2181, .external_lex_state = 11}, + [129] = {.lex_state = 2181, .external_lex_state = 16}, + [130] = {.lex_state = 2181, .external_lex_state = 17}, + [131] = {.lex_state = 4, .external_lex_state = 12}, + [132] = {.lex_state = 4, .external_lex_state = 12}, + [133] = {.lex_state = 4, .external_lex_state = 12}, + [134] = {.lex_state = 4, .external_lex_state = 12}, + [135] = {.lex_state = 2181, .external_lex_state = 12}, + [136] = {.lex_state = 2181, .external_lex_state = 12}, + [137] = {.lex_state = 2181, .external_lex_state = 13}, + [138] = {.lex_state = 2181, .external_lex_state = 14}, + [139] = {.lex_state = 2181, .external_lex_state = 12}, + [140] = {.lex_state = 2181, .external_lex_state = 15}, + [141] = {.lex_state = 2181, .external_lex_state = 18}, + [142] = {.lex_state = 2181, .external_lex_state = 11}, + [143] = {.lex_state = 2181, .external_lex_state = 16}, + [144] = {.lex_state = 2181, .external_lex_state = 17}, + [145] = {.lex_state = 4, .external_lex_state = 12}, + [146] = {.lex_state = 4, .external_lex_state = 12}, + [147] = {.lex_state = 4, .external_lex_state = 12}, + [148] = {.lex_state = 4, .external_lex_state = 12}, + [149] = {.lex_state = 2181, .external_lex_state = 18}, + [150] = {.lex_state = 2181, .external_lex_state = 13}, + [151] = {.lex_state = 2181, .external_lex_state = 14}, + [152] = {.lex_state = 2181, .external_lex_state = 15}, + [153] = {.lex_state = 2181, .external_lex_state = 18}, + [154] = {.lex_state = 2181, .external_lex_state = 11}, + [155] = {.lex_state = 2181, .external_lex_state = 16}, + [156] = {.lex_state = 2181, .external_lex_state = 17}, + [157] = {.lex_state = 4, .external_lex_state = 12}, + [158] = {.lex_state = 4, .external_lex_state = 12}, + [159] = {.lex_state = 4, .external_lex_state = 12}, + [160] = {.lex_state = 4, .external_lex_state = 12}, + [161] = {.lex_state = 2181, .external_lex_state = 12}, + [162] = {.lex_state = 2181, .external_lex_state = 12}, + [163] = {.lex_state = 2181, .external_lex_state = 13}, + [164] = {.lex_state = 2181, .external_lex_state = 14}, + [165] = {.lex_state = 2181, .external_lex_state = 12}, + [166] = {.lex_state = 2181, .external_lex_state = 15}, + [167] = {.lex_state = 2181, .external_lex_state = 18}, + [168] = {.lex_state = 2181, .external_lex_state = 11}, + [169] = {.lex_state = 2181, .external_lex_state = 16}, + [170] = {.lex_state = 2181, .external_lex_state = 17}, + [171] = {.lex_state = 4, .external_lex_state = 12}, + [172] = {.lex_state = 4, .external_lex_state = 12}, + [173] = {.lex_state = 4, .external_lex_state = 12}, + [174] = {.lex_state = 4, .external_lex_state = 12}, + [175] = {.lex_state = 2181, .external_lex_state = 16}, + [176] = {.lex_state = 2181, .external_lex_state = 13}, + [177] = {.lex_state = 2181, .external_lex_state = 14}, + [178] = {.lex_state = 2181, .external_lex_state = 15}, + [179] = {.lex_state = 2181, .external_lex_state = 18}, + [180] = {.lex_state = 2181, .external_lex_state = 11}, + [181] = {.lex_state = 2181, .external_lex_state = 16}, + [182] = {.lex_state = 2181, .external_lex_state = 17}, + [183] = {.lex_state = 4, .external_lex_state = 12}, + [184] = {.lex_state = 4, .external_lex_state = 12}, + [185] = {.lex_state = 4, .external_lex_state = 12}, + [186] = {.lex_state = 4, .external_lex_state = 12}, + [187] = {.lex_state = 2181, .external_lex_state = 12}, + [188] = {.lex_state = 2181, .external_lex_state = 12}, + [189] = {.lex_state = 2181, .external_lex_state = 13}, + [190] = {.lex_state = 2181, .external_lex_state = 14}, + [191] = {.lex_state = 2181, .external_lex_state = 12}, + [192] = {.lex_state = 2181, .external_lex_state = 15}, + [193] = {.lex_state = 2181, .external_lex_state = 18}, + [194] = {.lex_state = 2181, .external_lex_state = 11}, + [195] = {.lex_state = 2181, .external_lex_state = 16}, + [196] = {.lex_state = 2181, .external_lex_state = 17}, + [197] = {.lex_state = 4, .external_lex_state = 12}, + [198] = {.lex_state = 4, .external_lex_state = 12}, + [199] = {.lex_state = 4, .external_lex_state = 12}, + [200] = {.lex_state = 4, .external_lex_state = 12}, + [201] = {.lex_state = 2181, .external_lex_state = 17}, + [202] = {.lex_state = 2181, .external_lex_state = 13}, + [203] = {.lex_state = 2181, .external_lex_state = 14}, + [204] = {.lex_state = 2181, .external_lex_state = 15}, + [205] = {.lex_state = 2181, .external_lex_state = 18}, + [206] = {.lex_state = 2181, .external_lex_state = 11}, + [207] = {.lex_state = 2181, .external_lex_state = 16}, + [208] = {.lex_state = 2181, .external_lex_state = 17}, + [209] = {.lex_state = 4, .external_lex_state = 12}, + [210] = {.lex_state = 4, .external_lex_state = 12}, + [211] = {.lex_state = 4, .external_lex_state = 12}, + [212] = {.lex_state = 4, .external_lex_state = 12}, + [213] = {.lex_state = 2181, .external_lex_state = 12}, + [214] = {.lex_state = 2181, .external_lex_state = 12}, + [215] = {.lex_state = 2181, .external_lex_state = 13}, + [216] = {.lex_state = 2181, .external_lex_state = 14}, + [217] = {.lex_state = 2181, .external_lex_state = 12}, + [218] = {.lex_state = 2181, .external_lex_state = 15}, + [219] = {.lex_state = 2181, .external_lex_state = 18}, + [220] = {.lex_state = 2181, .external_lex_state = 11}, + [221] = {.lex_state = 2181, .external_lex_state = 16}, + [222] = {.lex_state = 2181, .external_lex_state = 17}, + [223] = {.lex_state = 4, .external_lex_state = 12}, + [224] = {.lex_state = 4, .external_lex_state = 12}, + [225] = {.lex_state = 4, .external_lex_state = 12}, + [226] = {.lex_state = 4, .external_lex_state = 12}, + [227] = {.lex_state = 2181, .external_lex_state = 12}, + [228] = {.lex_state = 2181, .external_lex_state = 13}, + [229] = {.lex_state = 2181, .external_lex_state = 14}, + [230] = {.lex_state = 2181, .external_lex_state = 15}, + [231] = {.lex_state = 2181, .external_lex_state = 18}, + [232] = {.lex_state = 2181, .external_lex_state = 11}, + [233] = {.lex_state = 2181, .external_lex_state = 16}, + [234] = {.lex_state = 2181, .external_lex_state = 17}, + [235] = {.lex_state = 4, .external_lex_state = 12}, + [236] = {.lex_state = 4, .external_lex_state = 12}, + [237] = {.lex_state = 4, .external_lex_state = 12}, + [238] = {.lex_state = 4, .external_lex_state = 12}, + [239] = {.lex_state = 2181, .external_lex_state = 12}, + [240] = {.lex_state = 2181, .external_lex_state = 12}, + [241] = {.lex_state = 2181, .external_lex_state = 13}, + [242] = {.lex_state = 2181, .external_lex_state = 14}, + [243] = {.lex_state = 2181, .external_lex_state = 12}, + [244] = {.lex_state = 2181, .external_lex_state = 15}, + [245] = {.lex_state = 2181, .external_lex_state = 18}, + [246] = {.lex_state = 2181, .external_lex_state = 11}, + [247] = {.lex_state = 2181, .external_lex_state = 16}, + [248] = {.lex_state = 2181, .external_lex_state = 17}, + [249] = {.lex_state = 4, .external_lex_state = 12}, + [250] = {.lex_state = 4, .external_lex_state = 12}, + [251] = {.lex_state = 4, .external_lex_state = 12}, + [252] = {.lex_state = 4, .external_lex_state = 12}, + [253] = {.lex_state = 4, .external_lex_state = 12}, + [254] = {.lex_state = 2181, .external_lex_state = 13}, + [255] = {.lex_state = 2181, .external_lex_state = 14}, + [256] = {.lex_state = 2181, .external_lex_state = 15}, + [257] = {.lex_state = 2181, .external_lex_state = 18}, + [258] = {.lex_state = 2181, .external_lex_state = 11}, + [259] = {.lex_state = 2181, .external_lex_state = 16}, + [260] = {.lex_state = 2181, .external_lex_state = 17}, + [261] = {.lex_state = 4, .external_lex_state = 12}, + [262] = {.lex_state = 4, .external_lex_state = 12}, + [263] = {.lex_state = 4, .external_lex_state = 12}, + [264] = {.lex_state = 4, .external_lex_state = 12}, + [265] = {.lex_state = 2181, .external_lex_state = 12}, + [266] = {.lex_state = 2181, .external_lex_state = 12}, + [267] = {.lex_state = 2181, .external_lex_state = 13}, + [268] = {.lex_state = 2181, .external_lex_state = 14}, + [269] = {.lex_state = 2181, .external_lex_state = 12}, + [270] = {.lex_state = 2181, .external_lex_state = 15}, + [271] = {.lex_state = 2181, .external_lex_state = 18}, + [272] = {.lex_state = 2181, .external_lex_state = 11}, + [273] = {.lex_state = 2181, .external_lex_state = 16}, + [274] = {.lex_state = 2181, .external_lex_state = 17}, + [275] = {.lex_state = 4, .external_lex_state = 12}, + [276] = {.lex_state = 4, .external_lex_state = 12}, + [277] = {.lex_state = 4, .external_lex_state = 12}, + [278] = {.lex_state = 4, .external_lex_state = 12}, + [279] = {.lex_state = 4, .external_lex_state = 12}, + [280] = {.lex_state = 2181, .external_lex_state = 13}, + [281] = {.lex_state = 2181, .external_lex_state = 14}, + [282] = {.lex_state = 2181, .external_lex_state = 15}, + [283] = {.lex_state = 2181, .external_lex_state = 18}, + [284] = {.lex_state = 2181, .external_lex_state = 11}, + [285] = {.lex_state = 2181, .external_lex_state = 16}, + [286] = {.lex_state = 2181, .external_lex_state = 17}, + [287] = {.lex_state = 4, .external_lex_state = 12}, + [288] = {.lex_state = 4, .external_lex_state = 12}, + [289] = {.lex_state = 4, .external_lex_state = 12}, + [290] = {.lex_state = 4, .external_lex_state = 12}, + [291] = {.lex_state = 2181, .external_lex_state = 12}, + [292] = {.lex_state = 2181, .external_lex_state = 12}, + [293] = {.lex_state = 2181, .external_lex_state = 13}, + [294] = {.lex_state = 2181, .external_lex_state = 14}, + [295] = {.lex_state = 2181, .external_lex_state = 12}, + [296] = {.lex_state = 4, .external_lex_state = 12}, + [297] = {.lex_state = 2181, .external_lex_state = 12}, + [298] = {.lex_state = 2181, .external_lex_state = 12}, + [299] = {.lex_state = 2181, .external_lex_state = 12}, + [300] = {.lex_state = 2181, .external_lex_state = 12}, + [301] = {.lex_state = 2181, .external_lex_state = 12}, + [302] = {.lex_state = 2181, .external_lex_state = 12}, + [303] = {.lex_state = 2181, .external_lex_state = 12}, + [304] = {.lex_state = 2181, .external_lex_state = 12}, + [305] = {.lex_state = 2181, .external_lex_state = 12}, + [306] = {.lex_state = 2181, .external_lex_state = 12}, + [307] = {.lex_state = 2181, .external_lex_state = 12}, + [308] = {.lex_state = 2181, .external_lex_state = 12}, + [309] = {.lex_state = 2181, .external_lex_state = 12}, + [310] = {.lex_state = 2181, .external_lex_state = 12}, + [311] = {.lex_state = 2181, .external_lex_state = 12}, + [312] = {.lex_state = 2181, .external_lex_state = 12}, + [313] = {.lex_state = 2181, .external_lex_state = 12}, + [314] = {.lex_state = 2181, .external_lex_state = 12}, + [315] = {.lex_state = 2181, .external_lex_state = 12}, + [316] = {.lex_state = 2181, .external_lex_state = 12}, + [317] = {.lex_state = 2181, .external_lex_state = 12}, + [318] = {.lex_state = 2181, .external_lex_state = 5}, + [319] = {.lex_state = 2181, .external_lex_state = 3}, + [320] = {.lex_state = 2181, .external_lex_state = 3}, + [321] = {.lex_state = 2181, .external_lex_state = 4}, + [322] = {.lex_state = 2181, .external_lex_state = 14}, + [323] = {.lex_state = 2181, .external_lex_state = 12}, + [324] = {.lex_state = 2181, .external_lex_state = 12}, + [325] = {.lex_state = 2181, .external_lex_state = 13}, + [326] = {.lex_state = 2181, .external_lex_state = 14}, + [327] = {.lex_state = 2181, .external_lex_state = 13}, + [328] = {.lex_state = 2181, .external_lex_state = 14}, + [329] = {.lex_state = 2181, .external_lex_state = 12}, + [330] = {.lex_state = 2181, .external_lex_state = 3}, + [331] = {.lex_state = 2181, .external_lex_state = 13}, + [332] = {.lex_state = 2181, .external_lex_state = 12}, + [333] = {.lex_state = 2181, .external_lex_state = 3}, + [334] = {.lex_state = 2181, .external_lex_state = 14}, + [335] = {.lex_state = 2181, .external_lex_state = 12}, + [336] = {.lex_state = 2181, .external_lex_state = 12}, + [337] = {.lex_state = 2181, .external_lex_state = 13}, + [338] = {.lex_state = 2181, .external_lex_state = 12}, + [339] = {.lex_state = 2181, .external_lex_state = 13}, + [340] = {.lex_state = 2181, .external_lex_state = 14}, + [341] = {.lex_state = 2181, .external_lex_state = 12}, + [342] = {.lex_state = 2181, .external_lex_state = 13}, + [343] = {.lex_state = 2181, .external_lex_state = 13}, + [344] = {.lex_state = 2181, .external_lex_state = 14}, + [345] = {.lex_state = 2181, .external_lex_state = 14}, + [346] = {.lex_state = 2181, .external_lex_state = 12}, + [347] = {.lex_state = 2181, .external_lex_state = 12}, + [348] = {.lex_state = 2181, .external_lex_state = 12}, + [349] = {.lex_state = 2181, .external_lex_state = 12}, + [350] = {.lex_state = 2181, .external_lex_state = 12}, + [351] = {.lex_state = 2181, .external_lex_state = 12}, + [352] = {.lex_state = 2181, .external_lex_state = 12}, + [353] = {.lex_state = 2181, .external_lex_state = 12}, + [354] = {.lex_state = 2181, .external_lex_state = 12}, + [355] = {.lex_state = 2181, .external_lex_state = 12}, + [356] = {.lex_state = 2181, .external_lex_state = 12}, + [357] = {.lex_state = 2181, .external_lex_state = 12}, + [358] = {.lex_state = 2181, .external_lex_state = 12}, + [359] = {.lex_state = 2181, .external_lex_state = 12}, + [360] = {.lex_state = 2181, .external_lex_state = 12}, + [361] = {.lex_state = 2181, .external_lex_state = 12}, + [362] = {.lex_state = 2181, .external_lex_state = 12}, + [363] = {.lex_state = 2181, .external_lex_state = 12}, + [364] = {.lex_state = 2181, .external_lex_state = 12}, + [365] = {.lex_state = 2181, .external_lex_state = 16}, + [366] = {.lex_state = 2181, .external_lex_state = 15}, + [367] = {.lex_state = 2181, .external_lex_state = 17}, + [368] = {.lex_state = 2181, .external_lex_state = 17}, + [369] = {.lex_state = 2181, .external_lex_state = 16}, + [370] = {.lex_state = 2181, .external_lex_state = 12}, + [371] = {.lex_state = 2181, .external_lex_state = 12}, + [372] = {.lex_state = 4, .external_lex_state = 12}, + [373] = {.lex_state = 2181, .external_lex_state = 13}, + [374] = {.lex_state = 4, .external_lex_state = 12}, + [375] = {.lex_state = 2181, .external_lex_state = 18}, + [376] = {.lex_state = 2181, .external_lex_state = 12}, + [377] = {.lex_state = 2181, .external_lex_state = 12}, + [378] = {.lex_state = 2181, .external_lex_state = 11}, + [379] = {.lex_state = 2181, .external_lex_state = 14}, + [380] = {.lex_state = 2181, .external_lex_state = 18}, + [381] = {.lex_state = 2181, .external_lex_state = 15}, + [382] = {.lex_state = 2181, .external_lex_state = 14}, + [383] = {.lex_state = 2181, .external_lex_state = 11}, + [384] = {.lex_state = 2181, .external_lex_state = 13}, + [385] = {.lex_state = 4, .external_lex_state = 12}, + [386] = {.lex_state = 2181, .external_lex_state = 18}, + [387] = {.lex_state = 2181, .external_lex_state = 18}, + [388] = {.lex_state = 2181, .external_lex_state = 18}, + [389] = {.lex_state = 2181, .external_lex_state = 18}, + [390] = {.lex_state = 2181, .external_lex_state = 18}, + [391] = {.lex_state = 2181, .external_lex_state = 18}, + [392] = {.lex_state = 2181, .external_lex_state = 18}, + [393] = {.lex_state = 2181, .external_lex_state = 14}, + [394] = {.lex_state = 2181, .external_lex_state = 14}, + [395] = {.lex_state = 2181, .external_lex_state = 11}, + [396] = {.lex_state = 2181, .external_lex_state = 11}, + [397] = {.lex_state = 2181, .external_lex_state = 14}, + [398] = {.lex_state = 2181, .external_lex_state = 11}, + [399] = {.lex_state = 2181, .external_lex_state = 11}, + [400] = {.lex_state = 2181, .external_lex_state = 14}, + [401] = {.lex_state = 2181, .external_lex_state = 11}, + [402] = {.lex_state = 2181, .external_lex_state = 12}, + [403] = {.lex_state = 2181, .external_lex_state = 11}, + [404] = {.lex_state = 2181, .external_lex_state = 11}, + [405] = {.lex_state = 2181, .external_lex_state = 11}, + [406] = {.lex_state = 2181, .external_lex_state = 11}, + [407] = {.lex_state = 2181, .external_lex_state = 11}, + [408] = {.lex_state = 2181, .external_lex_state = 11}, + [409] = {.lex_state = 2181, .external_lex_state = 11}, + [410] = {.lex_state = 2181, .external_lex_state = 11}, + [411] = {.lex_state = 2181, .external_lex_state = 11}, + [412] = {.lex_state = 2181, .external_lex_state = 11}, + [413] = {.lex_state = 2181, .external_lex_state = 11}, + [414] = {.lex_state = 2181, .external_lex_state = 11}, + [415] = {.lex_state = 2181, .external_lex_state = 14}, + [416] = {.lex_state = 2181, .external_lex_state = 16}, + [417] = {.lex_state = 2181, .external_lex_state = 16}, + [418] = {.lex_state = 2181, .external_lex_state = 14}, + [419] = {.lex_state = 2181, .external_lex_state = 16}, + [420] = {.lex_state = 2181, .external_lex_state = 16}, + [421] = {.lex_state = 2181, .external_lex_state = 14}, + [422] = {.lex_state = 2181, .external_lex_state = 16}, + [423] = {.lex_state = 2181, .external_lex_state = 16}, + [424] = {.lex_state = 2181, .external_lex_state = 16}, + [425] = {.lex_state = 2181, .external_lex_state = 16}, + [426] = {.lex_state = 2181, .external_lex_state = 16}, + [427] = {.lex_state = 2181, .external_lex_state = 16}, + [428] = {.lex_state = 2181, .external_lex_state = 16}, + [429] = {.lex_state = 2181, .external_lex_state = 16}, + [430] = {.lex_state = 2181, .external_lex_state = 16}, + [431] = {.lex_state = 2181, .external_lex_state = 16}, + [432] = {.lex_state = 2181, .external_lex_state = 16}, + [433] = {.lex_state = 2181, .external_lex_state = 16}, + [434] = {.lex_state = 2181, .external_lex_state = 16}, + [435] = {.lex_state = 2181, .external_lex_state = 17}, + [436] = {.lex_state = 2181, .external_lex_state = 17}, + [437] = {.lex_state = 2181, .external_lex_state = 14}, + [438] = {.lex_state = 2181, .external_lex_state = 17}, + [439] = {.lex_state = 2181, .external_lex_state = 17}, + [440] = {.lex_state = 2181, .external_lex_state = 14}, + [441] = {.lex_state = 2181, .external_lex_state = 17}, + [442] = {.lex_state = 2181, .external_lex_state = 17}, + [443] = {.lex_state = 2181, .external_lex_state = 17}, + [444] = {.lex_state = 2181, .external_lex_state = 17}, + [445] = {.lex_state = 2181, .external_lex_state = 17}, + [446] = {.lex_state = 2181, .external_lex_state = 17}, + [447] = {.lex_state = 2181, .external_lex_state = 17}, + [448] = {.lex_state = 2181, .external_lex_state = 17}, + [449] = {.lex_state = 2181, .external_lex_state = 17}, + [450] = {.lex_state = 2181, .external_lex_state = 17}, + [451] = {.lex_state = 2181, .external_lex_state = 17}, + [452] = {.lex_state = 2181, .external_lex_state = 17}, + [453] = {.lex_state = 2181, .external_lex_state = 17}, + [454] = {.lex_state = 4, .external_lex_state = 12}, + [455] = {.lex_state = 4, .external_lex_state = 12}, + [456] = {.lex_state = 2181, .external_lex_state = 14}, + [457] = {.lex_state = 2181, .external_lex_state = 12}, + [458] = {.lex_state = 4, .external_lex_state = 12}, + [459] = {.lex_state = 2181, .external_lex_state = 12}, + [460] = {.lex_state = 4, .external_lex_state = 12}, + [461] = {.lex_state = 2181, .external_lex_state = 12}, + [462] = {.lex_state = 4, .external_lex_state = 12}, + [463] = {.lex_state = 2181, .external_lex_state = 12}, + [464] = {.lex_state = 4, .external_lex_state = 12}, + [465] = {.lex_state = 2181, .external_lex_state = 12}, + [466] = {.lex_state = 2181, .external_lex_state = 14}, + [467] = {.lex_state = 2181, .external_lex_state = 12}, + [468] = {.lex_state = 4, .external_lex_state = 12}, + [469] = {.lex_state = 2181, .external_lex_state = 12}, + [470] = {.lex_state = 4, .external_lex_state = 12}, + [471] = {.lex_state = 2181, .external_lex_state = 12}, + [472] = {.lex_state = 2181, .external_lex_state = 12}, + [473] = {.lex_state = 2181, .external_lex_state = 12}, + [474] = {.lex_state = 4, .external_lex_state = 12}, + [475] = {.lex_state = 2181, .external_lex_state = 12}, + [476] = {.lex_state = 4, .external_lex_state = 12}, + [477] = {.lex_state = 2181, .external_lex_state = 12}, + [478] = {.lex_state = 4, .external_lex_state = 12}, + [479] = {.lex_state = 2181, .external_lex_state = 12}, + [480] = {.lex_state = 4, .external_lex_state = 12}, + [481] = {.lex_state = 2181, .external_lex_state = 12}, + [482] = {.lex_state = 2181, .external_lex_state = 12}, + [483] = {.lex_state = 4, .external_lex_state = 12}, + [484] = {.lex_state = 2181, .external_lex_state = 12}, + [485] = {.lex_state = 4, .external_lex_state = 12}, + [486] = {.lex_state = 2181, .external_lex_state = 12}, + [487] = {.lex_state = 4, .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 = 15}, + [491] = {.lex_state = 2181, .external_lex_state = 15}, + [492] = {.lex_state = 2181, .external_lex_state = 15}, + [493] = {.lex_state = 2181, .external_lex_state = 15}, + [494] = {.lex_state = 2181, .external_lex_state = 14}, + [495] = {.lex_state = 2181, .external_lex_state = 15}, + [496] = {.lex_state = 2181, .external_lex_state = 12}, + [497] = {.lex_state = 2181, .external_lex_state = 15}, + [498] = {.lex_state = 2181, .external_lex_state = 15}, + [499] = {.lex_state = 2181, .external_lex_state = 15}, + [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 = 12}, + [506] = {.lex_state = 2181, .external_lex_state = 15}, + [507] = {.lex_state = 2181, .external_lex_state = 12}, + [508] = {.lex_state = 2181, .external_lex_state = 15}, + [509] = {.lex_state = 2181, .external_lex_state = 15}, + [510] = {.lex_state = 2181, .external_lex_state = 15}, + [511] = {.lex_state = 2181, .external_lex_state = 12}, + [512] = {.lex_state = 2181, .external_lex_state = 12}, + [513] = {.lex_state = 2181, .external_lex_state = 12}, + [514] = {.lex_state = 2181, .external_lex_state = 12}, + [515] = {.lex_state = 2181, .external_lex_state = 12}, + [516] = {.lex_state = 2181, .external_lex_state = 12}, + [517] = {.lex_state = 2181, .external_lex_state = 12}, + [518] = {.lex_state = 2181, .external_lex_state = 12}, + [519] = {.lex_state = 2181, .external_lex_state = 12}, + [520] = {.lex_state = 2181, .external_lex_state = 12}, + [521] = {.lex_state = 2181, .external_lex_state = 12}, + [522] = {.lex_state = 2181, .external_lex_state = 13}, + [523] = {.lex_state = 2181, .external_lex_state = 13}, + [524] = {.lex_state = 2181, .external_lex_state = 13}, + [525] = {.lex_state = 2181, .external_lex_state = 18}, + [526] = {.lex_state = 2181, .external_lex_state = 13}, + [527] = {.lex_state = 2181, .external_lex_state = 18}, + [528] = {.lex_state = 2181, .external_lex_state = 14}, + [529] = {.lex_state = 2181, .external_lex_state = 13}, + [530] = {.lex_state = 2181, .external_lex_state = 18}, + [531] = {.lex_state = 2181, .external_lex_state = 18}, + [532] = {.lex_state = 2181, .external_lex_state = 13}, + [533] = {.lex_state = 2181, .external_lex_state = 13}, + [534] = {.lex_state = 2181, .external_lex_state = 13}, + [535] = {.lex_state = 2181, .external_lex_state = 13}, + [536] = {.lex_state = 2181, .external_lex_state = 13}, + [537] = {.lex_state = 2181, .external_lex_state = 13}, + [538] = {.lex_state = 2181, .external_lex_state = 13}, + [539] = {.lex_state = 2181, .external_lex_state = 13}, + [540] = {.lex_state = 2181, .external_lex_state = 18}, + [541] = {.lex_state = 2181, .external_lex_state = 13}, + [542] = {.lex_state = 2181, .external_lex_state = 13}, + [543] = {.lex_state = 2181, .external_lex_state = 13}, + [544] = {.lex_state = 2181, .external_lex_state = 13}, + [545] = {.lex_state = 2181, .external_lex_state = 14}, + [546] = {.lex_state = 2181, .external_lex_state = 14}, + [547] = {.lex_state = 2181, .external_lex_state = 18}, + [548] = {.lex_state = 2181, .external_lex_state = 14}, + [549] = {.lex_state = 2181, .external_lex_state = 14}, + [550] = {.lex_state = 2181, .external_lex_state = 18}, + [551] = {.lex_state = 2181, .external_lex_state = 18}, + [552] = {.lex_state = 2181, .external_lex_state = 18}, + [553] = {.lex_state = 2181, .external_lex_state = 18}, + [554] = {.lex_state = 4, .external_lex_state = 12}, + [555] = {.lex_state = 2181, .external_lex_state = 2}, + [556] = {.lex_state = 2181, .external_lex_state = 10}, + [557] = {.lex_state = 2181, .external_lex_state = 19}, + [558] = {.lex_state = 2181, .external_lex_state = 20}, + [559] = {.lex_state = 2181, .external_lex_state = 7}, + [560] = {.lex_state = 4, .external_lex_state = 3}, + [561] = {.lex_state = 4, .external_lex_state = 2}, + [562] = {.lex_state = 2181, .external_lex_state = 9}, + [563] = {.lex_state = 2181, .external_lex_state = 21}, + [564] = {.lex_state = 2181, .external_lex_state = 5}, + [565] = {.lex_state = 2181, .external_lex_state = 22}, + [566] = {.lex_state = 2181, .external_lex_state = 3}, + [567] = {.lex_state = 2181, .external_lex_state = 23}, + [568] = {.lex_state = 2181, .external_lex_state = 8}, + [569] = {.lex_state = 2181, .external_lex_state = 3}, + [570] = {.lex_state = 2181, .external_lex_state = 2}, + [571] = {.lex_state = 2181, .external_lex_state = 6}, + [572] = {.lex_state = 2181, .external_lex_state = 4}, + [573] = {.lex_state = 2181, .external_lex_state = 24}, + [574] = {.lex_state = 2181, .external_lex_state = 25}, + [575] = {.lex_state = 4, .external_lex_state = 3}, + [576] = {.lex_state = 2181, .external_lex_state = 9}, + [577] = {.lex_state = 2181, .external_lex_state = 3}, + [578] = {.lex_state = 2181, .external_lex_state = 10}, + [579] = {.lex_state = 2181, .external_lex_state = 9}, + [580] = {.lex_state = 2181, .external_lex_state = 8}, + [581] = {.lex_state = 2181, .external_lex_state = 10}, + [582] = {.lex_state = 2181, .external_lex_state = 10}, + [583] = {.lex_state = 2181, .external_lex_state = 8}, + [584] = {.lex_state = 2181, .external_lex_state = 7}, + [585] = {.lex_state = 2181, .external_lex_state = 3}, + [586] = {.lex_state = 2181, .external_lex_state = 7}, + [587] = {.lex_state = 2181, .external_lex_state = 9}, + [588] = {.lex_state = 4, .external_lex_state = 3}, + [589] = {.lex_state = 4, .external_lex_state = 3}, + [590] = {.lex_state = 2181, .external_lex_state = 20}, + [591] = {.lex_state = 2181, .external_lex_state = 2}, + [592] = {.lex_state = 2181, .external_lex_state = 19}, + [593] = {.lex_state = 2181, .external_lex_state = 6}, + [594] = {.lex_state = 2181, .external_lex_state = 25}, + [595] = {.lex_state = 2181, .external_lex_state = 10}, + [596] = {.lex_state = 2181, .external_lex_state = 9}, + [597] = {.lex_state = 2181, .external_lex_state = 6}, + [598] = {.lex_state = 2181, .external_lex_state = 9}, + [599] = {.lex_state = 2181, .external_lex_state = 3}, + [600] = {.lex_state = 2181, .external_lex_state = 5}, + [601] = {.lex_state = 2181, .external_lex_state = 5}, + [602] = {.lex_state = 2181, .external_lex_state = 2}, + [603] = {.lex_state = 2181, .external_lex_state = 6}, + [604] = {.lex_state = 2181, .external_lex_state = 23}, + [605] = {.lex_state = 4, .external_lex_state = 3}, + [606] = {.lex_state = 2181, .external_lex_state = 6}, + [607] = {.lex_state = 2181, .external_lex_state = 25}, + [608] = {.lex_state = 2181, .external_lex_state = 21}, + [609] = {.lex_state = 2181, .external_lex_state = 6}, + [610] = {.lex_state = 4, .external_lex_state = 3}, + [611] = {.lex_state = 2181, .external_lex_state = 3}, + [612] = {.lex_state = 2181, .external_lex_state = 5}, + [613] = {.lex_state = 2181, .external_lex_state = 20}, + [614] = {.lex_state = 4, .external_lex_state = 3}, + [615] = {.lex_state = 2181, .external_lex_state = 8}, + [616] = {.lex_state = 2181, .external_lex_state = 3}, + [617] = {.lex_state = 2181, .external_lex_state = 5}, + [618] = {.lex_state = 2181, .external_lex_state = 5}, + [619] = {.lex_state = 2181, .external_lex_state = 8}, + [620] = {.lex_state = 2181, .external_lex_state = 4}, + [621] = {.lex_state = 2181, .external_lex_state = 5}, + [622] = {.lex_state = 2181, .external_lex_state = 7}, + [623] = {.lex_state = 2181, .external_lex_state = 8}, + [624] = {.lex_state = 2181, .external_lex_state = 3}, + [625] = {.lex_state = 2181, .external_lex_state = 3}, + [626] = {.lex_state = 2181, .external_lex_state = 4}, + [627] = {.lex_state = 2181, .external_lex_state = 6}, + [628] = {.lex_state = 2181, .external_lex_state = 23}, + [629] = {.lex_state = 2181, .external_lex_state = 4}, + [630] = {.lex_state = 2181, .external_lex_state = 2}, + [631] = {.lex_state = 2181, .external_lex_state = 2}, + [632] = {.lex_state = 4, .external_lex_state = 2}, + [633] = {.lex_state = 4, .external_lex_state = 2}, + [634] = {.lex_state = 2181, .external_lex_state = 9}, + [635] = {.lex_state = 2181, .external_lex_state = 4}, + [636] = {.lex_state = 2181, .external_lex_state = 7}, + [637] = {.lex_state = 2181, .external_lex_state = 4}, + [638] = {.lex_state = 2181, .external_lex_state = 3}, + [639] = {.lex_state = 2181, .external_lex_state = 22}, + [640] = {.lex_state = 2181, .external_lex_state = 21}, + [641] = {.lex_state = 2181, .external_lex_state = 22}, + [642] = {.lex_state = 2181, .external_lex_state = 19}, + [643] = {.lex_state = 2181, .external_lex_state = 24}, + [644] = {.lex_state = 2181, .external_lex_state = 7}, + [645] = {.lex_state = 2181, .external_lex_state = 3}, + [646] = {.lex_state = 2181, .external_lex_state = 3}, + [647] = {.lex_state = 2181, .external_lex_state = 3}, + [648] = {.lex_state = 2181, .external_lex_state = 3}, + [649] = {.lex_state = 2181, .external_lex_state = 7}, + [650] = {.lex_state = 2181, .external_lex_state = 24}, + [651] = {.lex_state = 2181, .external_lex_state = 10}, + [652] = {.lex_state = 2181, .external_lex_state = 4}, + [653] = {.lex_state = 2181, .external_lex_state = 10}, + [654] = {.lex_state = 2181, .external_lex_state = 8}, + [655] = {.lex_state = 4, .external_lex_state = 12}, + [656] = {.lex_state = 2181, .external_lex_state = 15}, + [657] = {.lex_state = 2181, .external_lex_state = 15}, + [658] = {.lex_state = 2181, .external_lex_state = 11}, + [659] = {.lex_state = 2181, .external_lex_state = 11}, + [660] = {.lex_state = 2181, .external_lex_state = 11}, + [661] = {.lex_state = 2181, .external_lex_state = 11}, + [662] = {.lex_state = 2181, .external_lex_state = 11}, + [663] = {.lex_state = 2181, .external_lex_state = 15}, + [664] = {.lex_state = 2181, .external_lex_state = 11}, + [665] = {.lex_state = 2181, .external_lex_state = 11}, + [666] = {.lex_state = 2181, .external_lex_state = 11}, + [667] = {.lex_state = 2181, .external_lex_state = 11}, + [668] = {.lex_state = 2181, .external_lex_state = 14}, + [669] = {.lex_state = 2181, .external_lex_state = 11}, + [670] = {.lex_state = 2181, .external_lex_state = 14}, + [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 = 11}, + [675] = {.lex_state = 2181, .external_lex_state = 11}, + [676] = {.lex_state = 2181, .external_lex_state = 11}, + [677] = {.lex_state = 2181, .external_lex_state = 15}, + [678] = {.lex_state = 2181, .external_lex_state = 11}, + [679] = {.lex_state = 2181, .external_lex_state = 15}, + [680] = {.lex_state = 2181, .external_lex_state = 11}, + [681] = {.lex_state = 2181, .external_lex_state = 11}, + [682] = {.lex_state = 2181, .external_lex_state = 11}, + [683] = {.lex_state = 2181, .external_lex_state = 11}, + [684] = {.lex_state = 2181, .external_lex_state = 11}, + [685] = {.lex_state = 2181, .external_lex_state = 14}, + [686] = {.lex_state = 2181, .external_lex_state = 11}, + [687] = {.lex_state = 2181, .external_lex_state = 15}, + [688] = {.lex_state = 2181, .external_lex_state = 11}, + [689] = {.lex_state = 2181, .external_lex_state = 11}, + [690] = {.lex_state = 2181, .external_lex_state = 11}, + [691] = {.lex_state = 2181, .external_lex_state = 14}, + [692] = {.lex_state = 2181, .external_lex_state = 11}, + [693] = {.lex_state = 2181, .external_lex_state = 15}, + [694] = {.lex_state = 2181, .external_lex_state = 11}, + [695] = {.lex_state = 2181, .external_lex_state = 15}, + [696] = {.lex_state = 2181, .external_lex_state = 11}, + [697] = {.lex_state = 2181, .external_lex_state = 15}, + [698] = {.lex_state = 2181, .external_lex_state = 11}, + [699] = {.lex_state = 2181, .external_lex_state = 11}, + [700] = {.lex_state = 2181, .external_lex_state = 15}, + [701] = {.lex_state = 2181, .external_lex_state = 12}, + [702] = {.lex_state = 2181, .external_lex_state = 11}, + [703] = {.lex_state = 2181, .external_lex_state = 15}, + [704] = {.lex_state = 2181, .external_lex_state = 12}, + [705] = {.lex_state = 2181, .external_lex_state = 15}, + [706] = {.lex_state = 2181, .external_lex_state = 15}, + [707] = {.lex_state = 2181, .external_lex_state = 15}, + [708] = {.lex_state = 2181, .external_lex_state = 15}, + [709] = {.lex_state = 2181, .external_lex_state = 16}, + [710] = {.lex_state = 2181, .external_lex_state = 15}, + [711] = {.lex_state = 2181, .external_lex_state = 15}, + [712] = {.lex_state = 2181, .external_lex_state = 16}, + [713] = {.lex_state = 2181, .external_lex_state = 16}, + [714] = {.lex_state = 4, .external_lex_state = 12}, + [715] = {.lex_state = 2181, .external_lex_state = 15}, + [716] = {.lex_state = 2181, .external_lex_state = 15}, + [717] = {.lex_state = 2181, .external_lex_state = 16}, + [718] = {.lex_state = 2181, .external_lex_state = 16}, + [719] = {.lex_state = 2181, .external_lex_state = 16}, + [720] = {.lex_state = 2181, .external_lex_state = 16}, + [721] = {.lex_state = 2181, .external_lex_state = 16}, + [722] = {.lex_state = 2181, .external_lex_state = 16}, + [723] = {.lex_state = 2181, .external_lex_state = 16}, + [724] = {.lex_state = 2181, .external_lex_state = 16}, + [725] = {.lex_state = 2181, .external_lex_state = 15}, + [726] = {.lex_state = 2181, .external_lex_state = 16}, + [727] = {.lex_state = 2181, .external_lex_state = 16}, + [728] = {.lex_state = 2181, .external_lex_state = 18}, + [729] = {.lex_state = 2181, .external_lex_state = 16}, + [730] = {.lex_state = 2181, .external_lex_state = 16}, + [731] = {.lex_state = 2181, .external_lex_state = 16}, + [732] = {.lex_state = 2181, .external_lex_state = 16}, + [733] = {.lex_state = 2181, .external_lex_state = 15}, + [734] = {.lex_state = 2181, .external_lex_state = 11}, + [735] = {.lex_state = 2181, .external_lex_state = 16}, + [736] = {.lex_state = 2181, .external_lex_state = 16}, + [737] = {.lex_state = 2181, .external_lex_state = 15}, + [738] = {.lex_state = 2181, .external_lex_state = 16}, + [739] = {.lex_state = 2181, .external_lex_state = 15}, + [740] = {.lex_state = 2181, .external_lex_state = 16}, + [741] = {.lex_state = 2181, .external_lex_state = 16}, + [742] = {.lex_state = 2181, .external_lex_state = 16}, + [743] = {.lex_state = 2181, .external_lex_state = 16}, + [744] = {.lex_state = 2181, .external_lex_state = 16}, + [745] = {.lex_state = 2181, .external_lex_state = 12}, + [746] = {.lex_state = 2181, .external_lex_state = 16}, + [747] = {.lex_state = 2181, .external_lex_state = 16}, + [748] = {.lex_state = 2181, .external_lex_state = 16}, + [749] = {.lex_state = 2181, .external_lex_state = 16}, + [750] = {.lex_state = 2181, .external_lex_state = 16}, + [751] = {.lex_state = 2181, .external_lex_state = 16}, + [752] = {.lex_state = 2181, .external_lex_state = 16}, + [753] = {.lex_state = 2181, .external_lex_state = 16}, + [754] = {.lex_state = 2181, .external_lex_state = 16}, + [755] = {.lex_state = 2181, .external_lex_state = 16}, + [756] = {.lex_state = 2181, .external_lex_state = 16}, + [757] = {.lex_state = 2181, .external_lex_state = 16}, + [758] = {.lex_state = 2181, .external_lex_state = 16}, + [759] = {.lex_state = 2181, .external_lex_state = 15}, + [760] = {.lex_state = 2181, .external_lex_state = 16}, + [761] = {.lex_state = 2181, .external_lex_state = 14}, + [762] = {.lex_state = 2181, .external_lex_state = 16}, + [763] = {.lex_state = 2181, .external_lex_state = 15}, + [764] = {.lex_state = 2181, .external_lex_state = 14}, + [765] = {.lex_state = 2181, .external_lex_state = 16}, + [766] = {.lex_state = 2181, .external_lex_state = 16}, + [767] = {.lex_state = 2181, .external_lex_state = 16}, + [768] = {.lex_state = 2181, .external_lex_state = 16}, + [769] = {.lex_state = 2181, .external_lex_state = 16}, + [770] = {.lex_state = 2181, .external_lex_state = 15}, + [771] = {.lex_state = 2181, .external_lex_state = 16}, + [772] = {.lex_state = 2181, .external_lex_state = 16}, + [773] = {.lex_state = 2181, .external_lex_state = 16}, + [774] = {.lex_state = 2181, .external_lex_state = 16}, + [775] = {.lex_state = 2181, .external_lex_state = 14}, + [776] = {.lex_state = 2181, .external_lex_state = 16}, + [777] = {.lex_state = 2181, .external_lex_state = 14}, + [778] = {.lex_state = 2181, .external_lex_state = 16}, + [779] = {.lex_state = 2181, .external_lex_state = 16}, + [780] = {.lex_state = 2181, .external_lex_state = 16}, + [781] = {.lex_state = 2181, .external_lex_state = 16}, + [782] = {.lex_state = 2181, .external_lex_state = 16}, + [783] = {.lex_state = 2181, .external_lex_state = 16}, + [784] = {.lex_state = 2181, .external_lex_state = 15}, + [785] = {.lex_state = 2181, .external_lex_state = 16}, + [786] = {.lex_state = 2181, .external_lex_state = 15}, + [787] = {.lex_state = 2181, .external_lex_state = 16}, + [788] = {.lex_state = 2181, .external_lex_state = 16}, + [789] = {.lex_state = 2181, .external_lex_state = 16}, + [790] = {.lex_state = 2181, .external_lex_state = 16}, + [791] = {.lex_state = 2181, .external_lex_state = 16}, + [792] = {.lex_state = 2181, .external_lex_state = 15}, + [793] = {.lex_state = 2181, .external_lex_state = 16}, + [794] = {.lex_state = 2181, .external_lex_state = 15}, + [795] = {.lex_state = 2181, .external_lex_state = 16}, + [796] = {.lex_state = 2181, .external_lex_state = 16}, + [797] = {.lex_state = 2181, .external_lex_state = 16}, + [798] = {.lex_state = 2181, .external_lex_state = 15}, + [799] = {.lex_state = 2181, .external_lex_state = 16}, + [800] = {.lex_state = 2181, .external_lex_state = 14}, + [801] = {.lex_state = 2181, .external_lex_state = 16}, + [802] = {.lex_state = 2181, .external_lex_state = 15}, + [803] = {.lex_state = 2181, .external_lex_state = 16}, + [804] = {.lex_state = 2181, .external_lex_state = 15}, + [805] = {.lex_state = 2181, .external_lex_state = 16}, + [806] = {.lex_state = 2181, .external_lex_state = 16}, + [807] = {.lex_state = 2181, .external_lex_state = 12}, + [808] = {.lex_state = 2181, .external_lex_state = 12}, + [809] = {.lex_state = 2181, .external_lex_state = 16}, + [810] = {.lex_state = 2181, .external_lex_state = 15}, + [811] = {.lex_state = 2181, .external_lex_state = 15}, + [812] = {.lex_state = 2181, .external_lex_state = 14}, + [813] = {.lex_state = 2181, .external_lex_state = 15}, + [814] = {.lex_state = 2181, .external_lex_state = 14}, + [815] = {.lex_state = 2181, .external_lex_state = 15}, + [816] = {.lex_state = 2181, .external_lex_state = 17}, + [817] = {.lex_state = 2181, .external_lex_state = 15}, + [818] = {.lex_state = 2181, .external_lex_state = 15}, + [819] = {.lex_state = 2181, .external_lex_state = 17}, + [820] = {.lex_state = 2181, .external_lex_state = 17}, + [821] = {.lex_state = 2181, .external_lex_state = 12}, + [822] = {.lex_state = 2181, .external_lex_state = 15}, + [823] = {.lex_state = 2181, .external_lex_state = 15}, + [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 = 15}, + [833] = {.lex_state = 2181, .external_lex_state = 17}, + [834] = {.lex_state = 2181, .external_lex_state = 17}, + [835] = {.lex_state = 2181, .external_lex_state = 11}, + [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 = 14}, + [841] = {.lex_state = 2181, .external_lex_state = 16}, + [842] = {.lex_state = 2181, .external_lex_state = 17}, + [843] = {.lex_state = 2181, .external_lex_state = 17}, + [844] = {.lex_state = 2181, .external_lex_state = 15}, + [845] = {.lex_state = 2181, .external_lex_state = 17}, + [846] = {.lex_state = 2181, .external_lex_state = 14}, + [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 = 15}, + [866] = {.lex_state = 2181, .external_lex_state = 17}, + [867] = {.lex_state = 2181, .external_lex_state = 15}, + [868] = {.lex_state = 2181, .external_lex_state = 17}, + [869] = {.lex_state = 2181, .external_lex_state = 15}, + [870] = {.lex_state = 2181, .external_lex_state = 15}, + [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 = 15}, + [877] = {.lex_state = 2181, .external_lex_state = 17}, + [878] = {.lex_state = 2181, .external_lex_state = 17}, + [879] = {.lex_state = 2181, .external_lex_state = 17}, + [880] = {.lex_state = 2181, .external_lex_state = 17}, + [881] = {.lex_state = 2181, .external_lex_state = 14}, + [882] = {.lex_state = 2181, .external_lex_state = 17}, + [883] = {.lex_state = 2181, .external_lex_state = 15}, + [884] = {.lex_state = 2181, .external_lex_state = 17}, + [885] = {.lex_state = 2181, .external_lex_state = 17}, + [886] = {.lex_state = 2181, .external_lex_state = 17}, + [887] = {.lex_state = 2181, .external_lex_state = 17}, + [888] = {.lex_state = 2181, .external_lex_state = 17}, + [889] = {.lex_state = 2181, .external_lex_state = 17}, + [890] = {.lex_state = 2181, .external_lex_state = 14}, + [891] = {.lex_state = 2181, .external_lex_state = 17}, + [892] = {.lex_state = 2181, .external_lex_state = 15}, + [893] = {.lex_state = 2181, .external_lex_state = 17}, + [894] = {.lex_state = 2181, .external_lex_state = 17}, + [895] = {.lex_state = 2181, .external_lex_state = 17}, + [896] = {.lex_state = 2181, .external_lex_state = 17}, + [897] = {.lex_state = 2181, .external_lex_state = 17}, + [898] = {.lex_state = 2181, .external_lex_state = 15}, + [899] = {.lex_state = 2181, .external_lex_state = 17}, + [900] = {.lex_state = 2181, .external_lex_state = 15}, + [901] = {.lex_state = 2181, .external_lex_state = 17}, + [902] = {.lex_state = 2181, .external_lex_state = 17}, + [903] = {.lex_state = 2181, .external_lex_state = 17}, + [904] = {.lex_state = 2181, .external_lex_state = 14}, + [905] = {.lex_state = 2181, .external_lex_state = 17}, + [906] = {.lex_state = 2181, .external_lex_state = 15}, + [907] = {.lex_state = 2181, .external_lex_state = 17}, + [908] = {.lex_state = 2181, .external_lex_state = 14}, + [909] = {.lex_state = 2181, .external_lex_state = 17}, + [910] = {.lex_state = 2181, .external_lex_state = 15}, + [911] = {.lex_state = 2181, .external_lex_state = 17}, + [912] = {.lex_state = 2181, .external_lex_state = 17}, + [913] = {.lex_state = 2181, .external_lex_state = 17}, + [914] = {.lex_state = 2181, .external_lex_state = 14}, + [915] = {.lex_state = 2181, .external_lex_state = 15}, + [916] = {.lex_state = 2181, .external_lex_state = 14}, + [917] = {.lex_state = 2181, .external_lex_state = 15}, + [918] = {.lex_state = 2181, .external_lex_state = 15}, + [919] = {.lex_state = 2181, .external_lex_state = 12}, + [920] = {.lex_state = 2181, .external_lex_state = 12}, + [921] = {.lex_state = 2181, .external_lex_state = 12}, + [922] = {.lex_state = 2181, .external_lex_state = 14}, + [923] = {.lex_state = 2181, .external_lex_state = 12}, + [924] = {.lex_state = 2181, .external_lex_state = 12}, + [925] = {.lex_state = 2181, .external_lex_state = 14}, + [926] = {.lex_state = 2181, .external_lex_state = 14}, + [927] = {.lex_state = 2181, .external_lex_state = 12}, + [928] = {.lex_state = 2181, .external_lex_state = 12}, + [929] = {.lex_state = 2181, .external_lex_state = 12}, + [930] = {.lex_state = 2181, .external_lex_state = 12}, + [931] = {.lex_state = 2181, .external_lex_state = 12}, + [932] = {.lex_state = 2181, .external_lex_state = 12}, + [933] = {.lex_state = 2181, .external_lex_state = 12}, + [934] = {.lex_state = 2181, .external_lex_state = 12}, + [935] = {.lex_state = 2181, .external_lex_state = 14}, + [936] = {.lex_state = 2181, .external_lex_state = 12}, + [937] = {.lex_state = 2181, .external_lex_state = 12}, + [938] = {.lex_state = 2181, .external_lex_state = 16}, + [939] = {.lex_state = 2181, .external_lex_state = 12}, + [940] = {.lex_state = 2181, .external_lex_state = 12}, + [941] = {.lex_state = 2181, .external_lex_state = 12}, + [942] = {.lex_state = 2181, .external_lex_state = 12}, + [943] = {.lex_state = 2181, .external_lex_state = 14}, + [944] = {.lex_state = 2181, .external_lex_state = 17}, + [945] = {.lex_state = 4, .external_lex_state = 12}, + [946] = {.lex_state = 2181, .external_lex_state = 14}, + [947] = {.lex_state = 2181, .external_lex_state = 14}, + [948] = {.lex_state = 2181, .external_lex_state = 12}, + [949] = {.lex_state = 2181, .external_lex_state = 18}, + [950] = {.lex_state = 4, .external_lex_state = 12}, + [951] = {.lex_state = 4, .external_lex_state = 12}, + [952] = {.lex_state = 4, .external_lex_state = 12}, + [953] = {.lex_state = 4, .external_lex_state = 12}, + [954] = {.lex_state = 2181, .external_lex_state = 12}, + [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 = 12}, + [960] = {.lex_state = 2181, .external_lex_state = 12}, + [961] = {.lex_state = 4, .external_lex_state = 12}, + [962] = {.lex_state = 4, .external_lex_state = 12}, + [963] = {.lex_state = 2181, .external_lex_state = 12}, + [964] = {.lex_state = 2181, .external_lex_state = 12}, + [965] = {.lex_state = 2181, .external_lex_state = 12}, + [966] = {.lex_state = 2181, .external_lex_state = 12}, + [967] = {.lex_state = 2181, .external_lex_state = 12}, + [968] = {.lex_state = 2181, .external_lex_state = 14}, + [969] = {.lex_state = 2181, .external_lex_state = 12}, + [970] = {.lex_state = 2181, .external_lex_state = 14}, + [971] = {.lex_state = 2181, .external_lex_state = 12}, + [972] = {.lex_state = 2181, .external_lex_state = 18}, + [973] = {.lex_state = 2181, .external_lex_state = 18}, + [974] = {.lex_state = 2181, .external_lex_state = 12}, + [975] = {.lex_state = 4, .external_lex_state = 12}, + [976] = {.lex_state = 4, .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 = 16}, + [980] = {.lex_state = 2181, .external_lex_state = 12}, + [981] = {.lex_state = 4, .external_lex_state = 12}, + [982] = {.lex_state = 4, .external_lex_state = 12}, + [983] = {.lex_state = 4, .external_lex_state = 12}, + [984] = {.lex_state = 2181, .external_lex_state = 14}, + [985] = {.lex_state = 2181, .external_lex_state = 12}, + [986] = {.lex_state = 2181, .external_lex_state = 14}, + [987] = {.lex_state = 2181, .external_lex_state = 12}, + [988] = {.lex_state = 2181, .external_lex_state = 12}, + [989] = {.lex_state = 2181, .external_lex_state = 12}, + [990] = {.lex_state = 2181, .external_lex_state = 12}, + [991] = {.lex_state = 4, .external_lex_state = 12}, + [992] = {.lex_state = 4, .external_lex_state = 12}, + [993] = {.lex_state = 2181, .external_lex_state = 18}, + [994] = {.lex_state = 2181, .external_lex_state = 12}, + [995] = {.lex_state = 2181, .external_lex_state = 18}, + [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 = 4, .external_lex_state = 12}, + [1000] = {.lex_state = 4, .external_lex_state = 12}, + [1001] = {.lex_state = 2181, .external_lex_state = 18}, + [1002] = {.lex_state = 2181, .external_lex_state = 12}, + [1003] = {.lex_state = 2181, .external_lex_state = 18}, + [1004] = {.lex_state = 2181, .external_lex_state = 12}, + [1005] = {.lex_state = 2181, .external_lex_state = 12}, + [1006] = {.lex_state = 4, .external_lex_state = 12}, + [1007] = {.lex_state = 2181, .external_lex_state = 18}, + [1008] = {.lex_state = 2181, .external_lex_state = 12}, + [1009] = {.lex_state = 2181, .external_lex_state = 18}, + [1010] = {.lex_state = 4, .external_lex_state = 12}, + [1011] = {.lex_state = 2181, .external_lex_state = 18}, + [1012] = {.lex_state = 2181, .external_lex_state = 12}, + [1013] = {.lex_state = 2181, .external_lex_state = 18}, + [1014] = {.lex_state = 4, .external_lex_state = 12}, + [1015] = {.lex_state = 2181, .external_lex_state = 12}, + [1016] = {.lex_state = 2181, .external_lex_state = 12}, + [1017] = {.lex_state = 2181, .external_lex_state = 14}, + [1018] = {.lex_state = 2181, .external_lex_state = 18}, + [1019] = {.lex_state = 2181, .external_lex_state = 18}, + [1020] = {.lex_state = 2181, .external_lex_state = 15}, + [1021] = {.lex_state = 2181, .external_lex_state = 18}, + [1022] = {.lex_state = 4, .external_lex_state = 12}, + [1023] = {.lex_state = 2181, .external_lex_state = 18}, + [1024] = {.lex_state = 2181, .external_lex_state = 18}, + [1025] = {.lex_state = 4, .external_lex_state = 12}, + [1026] = {.lex_state = 4, .external_lex_state = 12}, + [1027] = {.lex_state = 2181, .external_lex_state = 18}, + [1028] = {.lex_state = 2181, .external_lex_state = 14}, + [1029] = {.lex_state = 4, .external_lex_state = 12}, + [1030] = {.lex_state = 4, .external_lex_state = 12}, + [1031] = {.lex_state = 4, .external_lex_state = 12}, + [1032] = {.lex_state = 4, .external_lex_state = 12}, + [1033] = {.lex_state = 4, .external_lex_state = 12}, + [1034] = {.lex_state = 4, .external_lex_state = 12}, + [1035] = {.lex_state = 4, .external_lex_state = 12}, + [1036] = {.lex_state = 4, .external_lex_state = 12}, + [1037] = {.lex_state = 2181, .external_lex_state = 15}, + [1038] = {.lex_state = 4, .external_lex_state = 12}, + [1039] = {.lex_state = 4, .external_lex_state = 12}, + [1040] = {.lex_state = 2181, .external_lex_state = 17}, + [1041] = {.lex_state = 4, .external_lex_state = 12}, + [1042] = {.lex_state = 4, .external_lex_state = 12}, + [1043] = {.lex_state = 4, .external_lex_state = 12}, + [1044] = {.lex_state = 4, .external_lex_state = 12}, + [1045] = {.lex_state = 2181, .external_lex_state = 18}, + [1046] = {.lex_state = 2181, .external_lex_state = 12}, + [1047] = {.lex_state = 2181, .external_lex_state = 12}, + [1048] = {.lex_state = 2181, .external_lex_state = 18}, + [1049] = {.lex_state = 4, .external_lex_state = 12}, + [1050] = {.lex_state = 2181, .external_lex_state = 14}, + [1051] = {.lex_state = 2181, .external_lex_state = 12}, + [1052] = {.lex_state = 2181, .external_lex_state = 12}, + [1053] = {.lex_state = 2181, .external_lex_state = 12}, + [1054] = {.lex_state = 2181, .external_lex_state = 12}, + [1055] = {.lex_state = 4, .external_lex_state = 12}, + [1056] = {.lex_state = 4, .external_lex_state = 12}, + [1057] = {.lex_state = 4, .external_lex_state = 12}, + [1058] = {.lex_state = 4, .external_lex_state = 12}, + [1059] = {.lex_state = 4, .external_lex_state = 12}, + [1060] = {.lex_state = 4, .external_lex_state = 12}, + [1061] = {.lex_state = 4, .external_lex_state = 12}, + [1062] = {.lex_state = 2181, .external_lex_state = 12}, + [1063] = {.lex_state = 2181, .external_lex_state = 12}, + [1064] = {.lex_state = 4, .external_lex_state = 12}, + [1065] = {.lex_state = 4, .external_lex_state = 12}, + [1066] = {.lex_state = 4, .external_lex_state = 12}, + [1067] = {.lex_state = 4, .external_lex_state = 12}, + [1068] = {.lex_state = 4, .external_lex_state = 12}, + [1069] = {.lex_state = 2181, .external_lex_state = 18}, + [1070] = {.lex_state = 4, .external_lex_state = 12}, + [1071] = {.lex_state = 2181, .external_lex_state = 14}, + [1072] = {.lex_state = 4, .external_lex_state = 12}, + [1073] = {.lex_state = 2181, .external_lex_state = 18}, + [1074] = {.lex_state = 2181, .external_lex_state = 18}, + [1075] = {.lex_state = 4, .external_lex_state = 12}, + [1076] = {.lex_state = 2181, .external_lex_state = 12}, + [1077] = {.lex_state = 2181, .external_lex_state = 12}, + [1078] = {.lex_state = 4, .external_lex_state = 12}, + [1079] = {.lex_state = 4, .external_lex_state = 12}, + [1080] = {.lex_state = 2181, .external_lex_state = 18}, + [1081] = {.lex_state = 4, .external_lex_state = 12}, + [1082] = {.lex_state = 2181, .external_lex_state = 12}, + [1083] = {.lex_state = 2181, .external_lex_state = 12}, + [1084] = {.lex_state = 2181, .external_lex_state = 12}, + [1085] = {.lex_state = 2181, .external_lex_state = 18}, + [1086] = {.lex_state = 4, .external_lex_state = 12}, + [1087] = {.lex_state = 2181, .external_lex_state = 18}, + [1088] = {.lex_state = 4, .external_lex_state = 12}, + [1089] = {.lex_state = 4, .external_lex_state = 12}, + [1090] = {.lex_state = 4, .external_lex_state = 12}, + [1091] = {.lex_state = 2181, .external_lex_state = 14}, + [1092] = {.lex_state = 2181, .external_lex_state = 12}, + [1093] = {.lex_state = 2181, .external_lex_state = 12}, + [1094] = {.lex_state = 2181, .external_lex_state = 12}, + [1095] = {.lex_state = 4, .external_lex_state = 12}, + [1096] = {.lex_state = 2181, .external_lex_state = 18}, + [1097] = {.lex_state = 4, .external_lex_state = 12}, + [1098] = {.lex_state = 4, .external_lex_state = 12}, + [1099] = {.lex_state = 4, .external_lex_state = 12}, + [1100] = {.lex_state = 2181, .external_lex_state = 12}, + [1101] = {.lex_state = 2181, .external_lex_state = 12}, + [1102] = {.lex_state = 2181, .external_lex_state = 18}, + [1103] = {.lex_state = 4, .external_lex_state = 12}, + [1104] = {.lex_state = 2181, .external_lex_state = 18}, + [1105] = {.lex_state = 4, .external_lex_state = 12}, + [1106] = {.lex_state = 4, .external_lex_state = 12}, + [1107] = {.lex_state = 2181, .external_lex_state = 12}, + [1108] = {.lex_state = 2181, .external_lex_state = 18}, + [1109] = {.lex_state = 4, .external_lex_state = 12}, + [1110] = {.lex_state = 2181, .external_lex_state = 18}, + [1111] = {.lex_state = 2181, .external_lex_state = 12}, + [1112] = {.lex_state = 2181, .external_lex_state = 18}, + [1113] = {.lex_state = 4, .external_lex_state = 12}, + [1114] = {.lex_state = 2181, .external_lex_state = 18}, + [1115] = {.lex_state = 2181, .external_lex_state = 12}, + [1116] = {.lex_state = 4, .external_lex_state = 12}, + [1117] = {.lex_state = 4, .external_lex_state = 12}, + [1118] = {.lex_state = 2181, .external_lex_state = 18}, + [1119] = {.lex_state = 2181, .external_lex_state = 18}, + [1120] = {.lex_state = 2181, .external_lex_state = 12}, + [1121] = {.lex_state = 2181, .external_lex_state = 12}, + [1122] = {.lex_state = 2181, .external_lex_state = 18}, + [1123] = {.lex_state = 2181, .external_lex_state = 18}, + [1124] = {.lex_state = 4, .external_lex_state = 12}, + [1125] = {.lex_state = 4, .external_lex_state = 12}, + [1126] = {.lex_state = 2181, .external_lex_state = 18}, + [1127] = {.lex_state = 2181, .external_lex_state = 12}, + [1128] = {.lex_state = 2181, .external_lex_state = 18}, + [1129] = {.lex_state = 2181, .external_lex_state = 12}, + [1130] = {.lex_state = 2181, .external_lex_state = 12}, + [1131] = {.lex_state = 2181, .external_lex_state = 12}, + [1132] = {.lex_state = 2181, .external_lex_state = 12}, + [1133] = {.lex_state = 2181, .external_lex_state = 18}, + [1134] = {.lex_state = 2181, .external_lex_state = 14}, + [1135] = {.lex_state = 2181, .external_lex_state = 18}, + [1136] = {.lex_state = 2181, .external_lex_state = 14}, + [1137] = {.lex_state = 2181, .external_lex_state = 12}, + [1138] = {.lex_state = 2181, .external_lex_state = 13}, + [1139] = {.lex_state = 2181, .external_lex_state = 12}, + [1140] = {.lex_state = 2181, .external_lex_state = 14}, + [1141] = {.lex_state = 2181, .external_lex_state = 12}, + [1142] = {.lex_state = 2181, .external_lex_state = 13}, + [1143] = {.lex_state = 2181, .external_lex_state = 12}, + [1144] = {.lex_state = 2181, .external_lex_state = 12}, + [1145] = {.lex_state = 2181, .external_lex_state = 18}, + [1146] = {.lex_state = 2181, .external_lex_state = 18}, + [1147] = {.lex_state = 2181, .external_lex_state = 13}, + [1148] = {.lex_state = 2181, .external_lex_state = 12}, + [1149] = {.lex_state = 2181, .external_lex_state = 18}, + [1150] = {.lex_state = 2181, .external_lex_state = 12}, + [1151] = {.lex_state = 2181, .external_lex_state = 18}, + [1152] = {.lex_state = 2181, .external_lex_state = 12}, + [1153] = {.lex_state = 2181, .external_lex_state = 18}, + [1154] = {.lex_state = 2181, .external_lex_state = 12}, + [1155] = {.lex_state = 2181, .external_lex_state = 14}, + [1156] = {.lex_state = 2181, .external_lex_state = 18}, + [1157] = {.lex_state = 2181, .external_lex_state = 12}, + [1158] = {.lex_state = 2181, .external_lex_state = 18}, + [1159] = {.lex_state = 2181, .external_lex_state = 18}, + [1160] = {.lex_state = 2181, .external_lex_state = 12}, + [1161] = {.lex_state = 2181, .external_lex_state = 12}, + [1162] = {.lex_state = 2181, .external_lex_state = 12}, + [1163] = {.lex_state = 2181, .external_lex_state = 12}, + [1164] = {.lex_state = 2181, .external_lex_state = 12}, + [1165] = {.lex_state = 2181, .external_lex_state = 18}, + [1166] = {.lex_state = 2181, .external_lex_state = 12}, + [1167] = {.lex_state = 2181, .external_lex_state = 12}, + [1168] = {.lex_state = 2181, .external_lex_state = 14}, + [1169] = {.lex_state = 2181, .external_lex_state = 15}, + [1170] = {.lex_state = 2181, .external_lex_state = 14}, + [1171] = {.lex_state = 2181, .external_lex_state = 18}, + [1172] = {.lex_state = 2181, .external_lex_state = 13}, + [1173] = {.lex_state = 2181, .external_lex_state = 14}, + [1174] = {.lex_state = 2181, .external_lex_state = 14}, + [1175] = {.lex_state = 2181, .external_lex_state = 18}, + [1176] = {.lex_state = 2181, .external_lex_state = 18}, + [1177] = {.lex_state = 2181, .external_lex_state = 18}, + [1178] = {.lex_state = 2181, .external_lex_state = 18}, + [1179] = {.lex_state = 2181, .external_lex_state = 18}, + [1180] = {.lex_state = 2181, .external_lex_state = 18}, + [1181] = {.lex_state = 2181, .external_lex_state = 12}, + [1182] = {.lex_state = 2181, .external_lex_state = 12}, + [1183] = {.lex_state = 2181, .external_lex_state = 14}, + [1184] = {.lex_state = 2181, .external_lex_state = 12}, + [1185] = {.lex_state = 2181, .external_lex_state = 12}, + [1186] = {.lex_state = 2181, .external_lex_state = 12}, + [1187] = {.lex_state = 2181, .external_lex_state = 12}, + [1188] = {.lex_state = 2181, .external_lex_state = 12}, + [1189] = {.lex_state = 2181, .external_lex_state = 18}, + [1190] = {.lex_state = 2181, .external_lex_state = 14}, + [1191] = {.lex_state = 2181, .external_lex_state = 18}, + [1192] = {.lex_state = 2181, .external_lex_state = 18}, + [1193] = {.lex_state = 2181, .external_lex_state = 18}, + [1194] = {.lex_state = 2181, .external_lex_state = 12}, + [1195] = {.lex_state = 2181, .external_lex_state = 12}, + [1196] = {.lex_state = 2181, .external_lex_state = 18}, + [1197] = {.lex_state = 2181, .external_lex_state = 12}, + [1198] = {.lex_state = 2181, .external_lex_state = 18}, + [1199] = {.lex_state = 2181, .external_lex_state = 14}, + [1200] = {.lex_state = 2181, .external_lex_state = 18}, + [1201] = {.lex_state = 2181, .external_lex_state = 12}, + [1202] = {.lex_state = 2181, .external_lex_state = 12}, + [1203] = {.lex_state = 2181, .external_lex_state = 12}, + [1204] = {.lex_state = 2181, .external_lex_state = 14}, + [1205] = {.lex_state = 2181, .external_lex_state = 18}, + [1206] = {.lex_state = 2181, .external_lex_state = 13}, + [1207] = {.lex_state = 2181, .external_lex_state = 18}, + [1208] = {.lex_state = 2181, .external_lex_state = 14}, + [1209] = {.lex_state = 2181, .external_lex_state = 18}, + [1210] = {.lex_state = 2181, .external_lex_state = 12}, + [1211] = {.lex_state = 2181, .external_lex_state = 12}, + [1212] = {.lex_state = 2181, .external_lex_state = 14}, + [1213] = {.lex_state = 2181, .external_lex_state = 12}, + [1214] = {.lex_state = 2181, .external_lex_state = 18}, + [1215] = {.lex_state = 2181, .external_lex_state = 12}, + [1216] = {.lex_state = 2181, .external_lex_state = 12}, + [1217] = {.lex_state = 2181, .external_lex_state = 12}, + [1218] = {.lex_state = 2181, .external_lex_state = 15}, + [1219] = {.lex_state = 2181, .external_lex_state = 12}, + [1220] = {.lex_state = 2181, .external_lex_state = 18}, + [1221] = {.lex_state = 2181, .external_lex_state = 12}, + [1222] = {.lex_state = 2181, .external_lex_state = 12}, + [1223] = {.lex_state = 2181, .external_lex_state = 12}, + [1224] = {.lex_state = 2181, .external_lex_state = 12}, + [1225] = {.lex_state = 2181, .external_lex_state = 12}, + [1226] = {.lex_state = 2181, .external_lex_state = 12}, + [1227] = {.lex_state = 2181, .external_lex_state = 14}, + [1228] = {.lex_state = 2181, .external_lex_state = 12}, + [1229] = {.lex_state = 2181, .external_lex_state = 18}, + [1230] = {.lex_state = 2181, .external_lex_state = 14}, + [1231] = {.lex_state = 2181, .external_lex_state = 12}, + [1232] = {.lex_state = 2181, .external_lex_state = 12}, + [1233] = {.lex_state = 2181, .external_lex_state = 12}, + [1234] = {.lex_state = 2181, .external_lex_state = 12}, + [1235] = {.lex_state = 2181, .external_lex_state = 12}, + [1236] = {.lex_state = 2181, .external_lex_state = 13}, + [1237] = {.lex_state = 2181, .external_lex_state = 18}, + [1238] = {.lex_state = 2181, .external_lex_state = 14}, + [1239] = {.lex_state = 2181, .external_lex_state = 12}, + [1240] = {.lex_state = 2181, .external_lex_state = 18}, + [1241] = {.lex_state = 2181, .external_lex_state = 12}, + [1242] = {.lex_state = 2181, .external_lex_state = 12}, + [1243] = {.lex_state = 2181, .external_lex_state = 12}, + [1244] = {.lex_state = 2181, .external_lex_state = 15}, + [1245] = {.lex_state = 2181, .external_lex_state = 15}, + [1246] = {.lex_state = 2181, .external_lex_state = 12}, + [1247] = {.lex_state = 2181, .external_lex_state = 18}, + [1248] = {.lex_state = 2181, .external_lex_state = 12}, + [1249] = {.lex_state = 2181, .external_lex_state = 11}, + [1250] = {.lex_state = 2181, .external_lex_state = 12}, + [1251] = {.lex_state = 2181, .external_lex_state = 14}, + [1252] = {.lex_state = 2181, .external_lex_state = 12}, + [1253] = {.lex_state = 2181, .external_lex_state = 12}, + [1254] = {.lex_state = 2181, .external_lex_state = 14}, + [1255] = {.lex_state = 2181, .external_lex_state = 12}, + [1256] = {.lex_state = 2181, .external_lex_state = 13}, + [1257] = {.lex_state = 2181, .external_lex_state = 15}, + [1258] = {.lex_state = 2181, .external_lex_state = 15}, + [1259] = {.lex_state = 2181, .external_lex_state = 11}, + [1260] = {.lex_state = 2181, .external_lex_state = 15}, + [1261] = {.lex_state = 2181, .external_lex_state = 15}, + [1262] = {.lex_state = 2181, .external_lex_state = 13}, + [1263] = {.lex_state = 2181, .external_lex_state = 11}, + [1264] = {.lex_state = 2181, .external_lex_state = 11}, + [1265] = {.lex_state = 2181, .external_lex_state = 13}, + [1266] = {.lex_state = 2181, .external_lex_state = 13}, + [1267] = {.lex_state = 2181, .external_lex_state = 13}, + [1268] = {.lex_state = 2181, .external_lex_state = 14}, + [1269] = {.lex_state = 2181, .external_lex_state = 12}, + [1270] = {.lex_state = 2181, .external_lex_state = 15}, + [1271] = {.lex_state = 2181, .external_lex_state = 17}, + [1272] = {.lex_state = 2181, .external_lex_state = 15}, + [1273] = {.lex_state = 2181, .external_lex_state = 13}, + [1274] = {.lex_state = 2181, .external_lex_state = 15}, + [1275] = {.lex_state = 2181, .external_lex_state = 13}, + [1276] = {.lex_state = 2181, .external_lex_state = 13}, + [1277] = {.lex_state = 2181, .external_lex_state = 13}, + [1278] = {.lex_state = 2181, .external_lex_state = 13}, + [1279] = {.lex_state = 2181, .external_lex_state = 13}, + [1280] = {.lex_state = 2181, .external_lex_state = 13}, + [1281] = {.lex_state = 2181, .external_lex_state = 13}, + [1282] = {.lex_state = 2181, .external_lex_state = 11}, + [1283] = {.lex_state = 2181, .external_lex_state = 13}, + [1284] = {.lex_state = 2181, .external_lex_state = 13}, + [1285] = {.lex_state = 2181, .external_lex_state = 13}, + [1286] = {.lex_state = 2181, .external_lex_state = 13}, + [1287] = {.lex_state = 2181, .external_lex_state = 13}, + [1288] = {.lex_state = 2181, .external_lex_state = 13}, + [1289] = {.lex_state = 2181, .external_lex_state = 11}, + [1290] = {.lex_state = 2181, .external_lex_state = 11}, + [1291] = {.lex_state = 2181, .external_lex_state = 13}, + [1292] = {.lex_state = 2181, .external_lex_state = 13}, + [1293] = {.lex_state = 2181, .external_lex_state = 12}, + [1294] = {.lex_state = 2181, .external_lex_state = 11}, + [1295] = {.lex_state = 2181, .external_lex_state = 13}, + [1296] = {.lex_state = 2181, .external_lex_state = 13}, + [1297] = {.lex_state = 2181, .external_lex_state = 11}, + [1298] = {.lex_state = 2181, .external_lex_state = 14}, + [1299] = {.lex_state = 2181, .external_lex_state = 13}, + [1300] = {.lex_state = 2181, .external_lex_state = 13}, + [1301] = {.lex_state = 2181, .external_lex_state = 13}, + [1302] = {.lex_state = 2181, .external_lex_state = 13}, + [1303] = {.lex_state = 2181, .external_lex_state = 13}, + [1304] = {.lex_state = 2181, .external_lex_state = 11}, + [1305] = {.lex_state = 2181, .external_lex_state = 12}, + [1306] = {.lex_state = 2181, .external_lex_state = 13}, + [1307] = {.lex_state = 2181, .external_lex_state = 13}, + [1308] = {.lex_state = 2181, .external_lex_state = 13}, + [1309] = {.lex_state = 2181, .external_lex_state = 13}, + [1310] = {.lex_state = 2181, .external_lex_state = 13}, + [1311] = {.lex_state = 2181, .external_lex_state = 13}, + [1312] = {.lex_state = 2181, .external_lex_state = 13}, + [1313] = {.lex_state = 2181, .external_lex_state = 13}, + [1314] = {.lex_state = 2181, .external_lex_state = 13}, + [1315] = {.lex_state = 2181, .external_lex_state = 13}, + [1316] = {.lex_state = 2181, .external_lex_state = 13}, + [1317] = {.lex_state = 2181, .external_lex_state = 13}, + [1318] = {.lex_state = 2181, .external_lex_state = 13}, + [1319] = {.lex_state = 2181, .external_lex_state = 11}, + [1320] = {.lex_state = 2181, .external_lex_state = 11}, + [1321] = {.lex_state = 2181, .external_lex_state = 13}, + [1322] = {.lex_state = 2181, .external_lex_state = 15}, + [1323] = {.lex_state = 2181, .external_lex_state = 13}, + [1324] = {.lex_state = 2181, .external_lex_state = 11}, + [1325] = {.lex_state = 2181, .external_lex_state = 11}, + [1326] = {.lex_state = 2181, .external_lex_state = 13}, + [1327] = {.lex_state = 2181, .external_lex_state = 13}, + [1328] = {.lex_state = 2181, .external_lex_state = 14}, + [1329] = {.lex_state = 2181, .external_lex_state = 13}, + [1330] = {.lex_state = 2181, .external_lex_state = 13}, + [1331] = {.lex_state = 2181, .external_lex_state = 13}, + [1332] = {.lex_state = 2181, .external_lex_state = 13}, + [1333] = {.lex_state = 2181, .external_lex_state = 11}, + [1334] = {.lex_state = 2181, .external_lex_state = 11}, + [1335] = {.lex_state = 2181, .external_lex_state = 13}, + [1336] = {.lex_state = 2181, .external_lex_state = 13}, + [1337] = {.lex_state = 2181, .external_lex_state = 13}, + [1338] = {.lex_state = 2181, .external_lex_state = 13}, + [1339] = {.lex_state = 2181, .external_lex_state = 11}, + [1340] = {.lex_state = 2181, .external_lex_state = 13}, + [1341] = {.lex_state = 2181, .external_lex_state = 11}, + [1342] = {.lex_state = 2181, .external_lex_state = 13}, + [1343] = {.lex_state = 2181, .external_lex_state = 13}, + [1344] = {.lex_state = 2181, .external_lex_state = 13}, + [1345] = {.lex_state = 2181, .external_lex_state = 13}, + [1346] = {.lex_state = 2181, .external_lex_state = 13}, + [1347] = {.lex_state = 2181, .external_lex_state = 13}, + [1348] = {.lex_state = 2181, .external_lex_state = 15}, + [1349] = {.lex_state = 2181, .external_lex_state = 18}, + [1350] = {.lex_state = 2181, .external_lex_state = 13}, + [1351] = {.lex_state = 2181, .external_lex_state = 11}, + [1352] = {.lex_state = 2181, .external_lex_state = 13}, + [1353] = {.lex_state = 2181, .external_lex_state = 13}, + [1354] = {.lex_state = 2181, .external_lex_state = 13}, + [1355] = {.lex_state = 2181, .external_lex_state = 13}, + [1356] = {.lex_state = 2181, .external_lex_state = 13}, + [1357] = {.lex_state = 2181, .external_lex_state = 13}, + [1358] = {.lex_state = 2181, .external_lex_state = 14}, + [1359] = {.lex_state = 2181, .external_lex_state = 11}, + [1360] = {.lex_state = 2181, .external_lex_state = 13}, + [1361] = {.lex_state = 2181, .external_lex_state = 14}, + [1362] = {.lex_state = 2181, .external_lex_state = 13}, + [1363] = {.lex_state = 2181, .external_lex_state = 13}, + [1364] = {.lex_state = 2181, .external_lex_state = 11}, + [1365] = {.lex_state = 2181, .external_lex_state = 13}, + [1366] = {.lex_state = 2181, .external_lex_state = 15}, + [1367] = {.lex_state = 2181, .external_lex_state = 13}, + [1368] = {.lex_state = 2181, .external_lex_state = 11}, + [1369] = {.lex_state = 2181, .external_lex_state = 13}, + [1370] = {.lex_state = 2181, .external_lex_state = 11}, + [1371] = {.lex_state = 2181, .external_lex_state = 13}, + [1372] = {.lex_state = 2181, .external_lex_state = 11}, + [1373] = {.lex_state = 2181, .external_lex_state = 13}, + [1374] = {.lex_state = 2181, .external_lex_state = 13}, + [1375] = {.lex_state = 2181, .external_lex_state = 12}, + [1376] = {.lex_state = 2181, .external_lex_state = 12}, + [1377] = {.lex_state = 2181, .external_lex_state = 14}, + [1378] = {.lex_state = 2181, .external_lex_state = 11}, + [1379] = {.lex_state = 2181, .external_lex_state = 11}, + [1380] = {.lex_state = 2181, .external_lex_state = 15}, + [1381] = {.lex_state = 2181, .external_lex_state = 11}, + [1382] = {.lex_state = 2181, .external_lex_state = 11}, + [1383] = {.lex_state = 2181, .external_lex_state = 11}, + [1384] = {.lex_state = 2181, .external_lex_state = 11}, + [1385] = {.lex_state = 2181, .external_lex_state = 14}, + [1386] = {.lex_state = 2181, .external_lex_state = 13}, + [1387] = {.lex_state = 2181, .external_lex_state = 11}, + [1388] = {.lex_state = 2181, .external_lex_state = 14}, + [1389] = {.lex_state = 2181, .external_lex_state = 11}, + [1390] = {.lex_state = 2181, .external_lex_state = 14}, + [1391] = {.lex_state = 2181, .external_lex_state = 14}, + [1392] = {.lex_state = 2181, .external_lex_state = 18}, + [1393] = {.lex_state = 2181, .external_lex_state = 11}, + [1394] = {.lex_state = 2181, .external_lex_state = 11}, + [1395] = {.lex_state = 2181, .external_lex_state = 11}, + [1396] = {.lex_state = 2181, .external_lex_state = 14}, + [1397] = {.lex_state = 2181, .external_lex_state = 14}, + [1398] = {.lex_state = 2181, .external_lex_state = 14}, + [1399] = {.lex_state = 2181, .external_lex_state = 14}, + [1400] = {.lex_state = 2181, .external_lex_state = 14}, + [1401] = {.lex_state = 2181, .external_lex_state = 14}, + [1402] = {.lex_state = 2181, .external_lex_state = 14}, + [1403] = {.lex_state = 2181, .external_lex_state = 14}, + [1404] = {.lex_state = 2181, .external_lex_state = 11}, + [1405] = {.lex_state = 2181, .external_lex_state = 14}, + [1406] = {.lex_state = 2181, .external_lex_state = 11}, + [1407] = {.lex_state = 2181, .external_lex_state = 11}, + [1408] = {.lex_state = 2181, .external_lex_state = 14}, + [1409] = {.lex_state = 2181, .external_lex_state = 13}, + [1410] = {.lex_state = 2181, .external_lex_state = 11}, + [1411] = {.lex_state = 2181, .external_lex_state = 14}, + [1412] = {.lex_state = 2181, .external_lex_state = 14}, + [1413] = {.lex_state = 2181, .external_lex_state = 14}, + [1414] = {.lex_state = 2181, .external_lex_state = 14}, + [1415] = {.lex_state = 2181, .external_lex_state = 14}, + [1416] = {.lex_state = 2181, .external_lex_state = 11}, + [1417] = {.lex_state = 2181, .external_lex_state = 13}, + [1418] = {.lex_state = 2181, .external_lex_state = 14}, + [1419] = {.lex_state = 2181, .external_lex_state = 14}, + [1420] = {.lex_state = 2181, .external_lex_state = 15}, + [1421] = {.lex_state = 2181, .external_lex_state = 14}, + [1422] = {.lex_state = 2181, .external_lex_state = 11}, + [1423] = {.lex_state = 2181, .external_lex_state = 14}, + [1424] = {.lex_state = 2181, .external_lex_state = 14}, + [1425] = {.lex_state = 2181, .external_lex_state = 14}, + [1426] = {.lex_state = 4, .external_lex_state = 12}, + [1427] = {.lex_state = 2181, .external_lex_state = 13}, + [1428] = {.lex_state = 2181, .external_lex_state = 12}, + [1429] = {.lex_state = 2181, .external_lex_state = 13}, + [1430] = {.lex_state = 2181, .external_lex_state = 14}, + [1431] = {.lex_state = 2181, .external_lex_state = 13}, + [1432] = {.lex_state = 2181, .external_lex_state = 13}, + [1433] = {.lex_state = 2181, .external_lex_state = 13}, + [1434] = {.lex_state = 2181, .external_lex_state = 13}, + [1435] = {.lex_state = 2181, .external_lex_state = 13}, + [1436] = {.lex_state = 2181, .external_lex_state = 13}, + [1437] = {.lex_state = 2181, .external_lex_state = 13}, + [1438] = {.lex_state = 2181, .external_lex_state = 14}, + [1439] = {.lex_state = 2181, .external_lex_state = 12}, + [1440] = {.lex_state = 2181, .external_lex_state = 12}, + [1441] = {.lex_state = 2181, .external_lex_state = 13}, + [1442] = {.lex_state = 2181, .external_lex_state = 14}, + [1443] = {.lex_state = 2181, .external_lex_state = 14}, + [1444] = {.lex_state = 2181, .external_lex_state = 14}, + [1445] = {.lex_state = 2181, .external_lex_state = 14}, + [1446] = {.lex_state = 2181, .external_lex_state = 14}, + [1447] = {.lex_state = 2181, .external_lex_state = 14}, + [1448] = {.lex_state = 2181, .external_lex_state = 12}, + [1449] = {.lex_state = 2181, .external_lex_state = 14}, + [1450] = {.lex_state = 2181, .external_lex_state = 14}, + [1451] = {.lex_state = 2181, .external_lex_state = 12}, + [1452] = {.lex_state = 2181, .external_lex_state = 12}, + [1453] = {.lex_state = 2181, .external_lex_state = 12}, + [1454] = {.lex_state = 2181, .external_lex_state = 12}, + [1455] = {.lex_state = 1}, + [1456] = {.lex_state = 1}, + [1457] = {.lex_state = 1}, + [1458] = {.lex_state = 1}, + [1459] = {.lex_state = 1}, + [1460] = {.lex_state = 1}, + [1461] = {.lex_state = 1}, + [1462] = {.lex_state = 1}, + [1463] = {.lex_state = 1}, + [1464] = {.lex_state = 1}, + [1465] = {.lex_state = 1}, + [1466] = {.lex_state = 1}, + [1467] = {.lex_state = 1}, + [1468] = {.lex_state = 1}, + [1469] = {.lex_state = 1}, + [1470] = {.lex_state = 1}, + [1471] = {.lex_state = 1}, + [1472] = {.lex_state = 1}, + [1473] = {.lex_state = 1}, + [1474] = {.lex_state = 1}, + [1475] = {.lex_state = 1}, + [1476] = {.lex_state = 1}, + [1477] = {.lex_state = 1}, + [1478] = {.lex_state = 1}, + [1479] = {.lex_state = 1}, + [1480] = {.lex_state = 1}, + [1481] = {.lex_state = 1}, + [1482] = {.lex_state = 1}, + [1483] = {.lex_state = 1}, + [1484] = {.lex_state = 1}, + [1485] = {.lex_state = 1, .external_lex_state = 26}, + [1486] = {.lex_state = 1, .external_lex_state = 26}, + [1487] = {.lex_state = 1}, + [1488] = {.lex_state = 1}, + [1489] = {.lex_state = 1}, + [1490] = {.lex_state = 1}, + [1491] = {.lex_state = 1}, + [1492] = {.lex_state = 1}, + [1493] = {.lex_state = 1}, + [1494] = {.lex_state = 1}, + [1495] = {.lex_state = 1}, + [1496] = {.lex_state = 1}, + [1497] = {.lex_state = 1}, + [1498] = {.lex_state = 1}, + [1499] = {.lex_state = 1}, + [1500] = {.lex_state = 1}, + [1501] = {.lex_state = 1, .external_lex_state = 26}, + [1502] = {.lex_state = 1}, + [1503] = {.lex_state = 1, .external_lex_state = 26}, + [1504] = {.lex_state = 1}, + [1505] = {.lex_state = 1, .external_lex_state = 26}, + [1506] = {.lex_state = 1}, + [1507] = {.lex_state = 1}, + [1508] = {.lex_state = 1}, + [1509] = {.lex_state = 1}, + [1510] = {.lex_state = 1}, + [1511] = {.lex_state = 1}, + [1512] = {.lex_state = 1}, + [1513] = {.lex_state = 1}, + [1514] = {.lex_state = 1}, + [1515] = {.lex_state = 2, .external_lex_state = 27}, + [1516] = {.lex_state = 2, .external_lex_state = 27}, + [1517] = {.lex_state = 2, .external_lex_state = 27}, + [1518] = {.lex_state = 2, .external_lex_state = 27}, + [1519] = {.lex_state = 2, .external_lex_state = 27}, + [1520] = {.lex_state = 2, .external_lex_state = 27}, + [1521] = {.lex_state = 2, .external_lex_state = 27}, + [1522] = {.lex_state = 2, .external_lex_state = 27}, + [1523] = {.lex_state = 1}, + [1524] = {.lex_state = 2, .external_lex_state = 27}, + [1525] = {.lex_state = 2, .external_lex_state = 27}, + [1526] = {.lex_state = 2, .external_lex_state = 27}, + [1527] = {.lex_state = 2, .external_lex_state = 27}, + [1528] = {.lex_state = 2, .external_lex_state = 27}, + [1529] = {.lex_state = 2, .external_lex_state = 27}, + [1530] = {.lex_state = 1}, + [1531] = {.lex_state = 2, .external_lex_state = 27}, + [1532] = {.lex_state = 1}, + [1533] = {.lex_state = 2, .external_lex_state = 27}, + [1534] = {.lex_state = 2, .external_lex_state = 27}, + [1535] = {.lex_state = 2, .external_lex_state = 27}, + [1536] = {.lex_state = 1}, + [1537] = {.lex_state = 2, .external_lex_state = 27}, + [1538] = {.lex_state = 2, .external_lex_state = 27}, + [1539] = {.lex_state = 2, .external_lex_state = 27}, + [1540] = {.lex_state = 1, .external_lex_state = 26}, + [1541] = {.lex_state = 1, .external_lex_state = 26}, + [1542] = {.lex_state = 1, .external_lex_state = 26}, + [1543] = {.lex_state = 1, .external_lex_state = 28}, + [1544] = {.lex_state = 1, .external_lex_state = 28}, + [1545] = {.lex_state = 1, .external_lex_state = 26}, + [1546] = {.lex_state = 1, .external_lex_state = 26}, + [1547] = {.lex_state = 1}, + [1548] = {.lex_state = 1}, + [1549] = {.lex_state = 1, .external_lex_state = 26}, + [1550] = {.lex_state = 1, .external_lex_state = 26}, + [1551] = {.lex_state = 1}, + [1552] = {.lex_state = 1}, + [1553] = {.lex_state = 1}, + [1554] = {.lex_state = 1}, + [1555] = {.lex_state = 1}, + [1556] = {.lex_state = 1}, + [1557] = {.lex_state = 1}, + [1558] = {.lex_state = 1}, + [1559] = {.lex_state = 1}, + [1560] = {.lex_state = 1, .external_lex_state = 26}, + [1561] = {.lex_state = 6}, + [1562] = {.lex_state = 7}, + [1563] = {.lex_state = 7}, + [1564] = {.lex_state = 6}, + [1565] = {.lex_state = 1}, + [1566] = {.lex_state = 1}, + [1567] = {.lex_state = 1}, + [1568] = {.lex_state = 1}, + [1569] = {.lex_state = 7}, + [1570] = {.lex_state = 1}, + [1571] = {.lex_state = 6}, + [1572] = {.lex_state = 1}, + [1573] = {.lex_state = 1}, + [1574] = {.lex_state = 1}, + [1575] = {.lex_state = 1}, + [1576] = {.lex_state = 1}, + [1577] = {.lex_state = 1}, + [1578] = {.lex_state = 1, .external_lex_state = 26}, + [1579] = {.lex_state = 2, .external_lex_state = 29}, + [1580] = {.lex_state = 2, .external_lex_state = 29}, + [1581] = {.lex_state = 1}, + [1582] = {.lex_state = 1}, + [1583] = {.lex_state = 2, .external_lex_state = 30}, + [1584] = {.lex_state = 2, .external_lex_state = 27}, + [1585] = {.lex_state = 6, .external_lex_state = 26}, + [1586] = {.lex_state = 7, .external_lex_state = 26}, + [1587] = {.lex_state = 2, .external_lex_state = 27}, + [1588] = {.lex_state = 7, .external_lex_state = 28}, + [1589] = {.lex_state = 2, .external_lex_state = 27}, + [1590] = {.lex_state = 6, .external_lex_state = 28}, + [1591] = {.lex_state = 2, .external_lex_state = 27}, + [1592] = {.lex_state = 1}, + [1593] = {.lex_state = 6}, + [1594] = {.lex_state = 7}, + [1595] = {.lex_state = 6}, + [1596] = {.lex_state = 7}, + [1597] = {.lex_state = 5, .external_lex_state = 31}, + [1598] = {.lex_state = 5, .external_lex_state = 31}, + [1599] = {.lex_state = 5, .external_lex_state = 32}, + [1600] = {.lex_state = 5, .external_lex_state = 33}, + [1601] = {.lex_state = 5, .external_lex_state = 32}, + [1602] = {.lex_state = 5, .external_lex_state = 32}, + [1603] = {.lex_state = 5, .external_lex_state = 33}, + [1604] = {.lex_state = 5, .external_lex_state = 33}, + [1605] = {.lex_state = 5, .external_lex_state = 32}, + [1606] = {.lex_state = 5, .external_lex_state = 32}, + [1607] = {.lex_state = 5, .external_lex_state = 33}, + [1608] = {.lex_state = 5, .external_lex_state = 32}, + [1609] = {.lex_state = 5, .external_lex_state = 32}, + [1610] = {.lex_state = 5, .external_lex_state = 33}, + [1611] = {.lex_state = 5, .external_lex_state = 33}, + [1612] = {.lex_state = 5, .external_lex_state = 32}, + [1613] = {.lex_state = 5, .external_lex_state = 32}, + [1614] = {.lex_state = 5, .external_lex_state = 33}, + [1615] = {.lex_state = 5, .external_lex_state = 33}, + [1616] = {.lex_state = 5, .external_lex_state = 32}, + [1617] = {.lex_state = 5, .external_lex_state = 33}, + [1618] = {.lex_state = 5, .external_lex_state = 32}, + [1619] = {.lex_state = 5, .external_lex_state = 33}, + [1620] = {.lex_state = 5, .external_lex_state = 33}, + [1621] = {.lex_state = 5, .external_lex_state = 32}, + [1622] = {.lex_state = 5, .external_lex_state = 33}, + [1623] = {.lex_state = 5, .external_lex_state = 32}, + [1624] = {.lex_state = 5, .external_lex_state = 32}, + [1625] = {.lex_state = 5, .external_lex_state = 33}, + [1626] = {.lex_state = 5, .external_lex_state = 32}, + [1627] = {.lex_state = 5, .external_lex_state = 33}, + [1628] = {.lex_state = 5, .external_lex_state = 33}, + [1629] = {.lex_state = 5, .external_lex_state = 33}, + [1630] = {.lex_state = 5, .external_lex_state = 32}, + [1631] = {.lex_state = 5, .external_lex_state = 33}, + [1632] = {.lex_state = 5, .external_lex_state = 32}, + [1633] = {.lex_state = 5, .external_lex_state = 32}, + [1634] = {.lex_state = 5, .external_lex_state = 32}, + [1635] = {.lex_state = 5, .external_lex_state = 32}, + [1636] = {.lex_state = 5, .external_lex_state = 33}, + [1637] = {.lex_state = 5, .external_lex_state = 33}, + [1638] = {.lex_state = 5, .external_lex_state = 33}, + [1639] = {.lex_state = 5, .external_lex_state = 32}, + [1640] = {.lex_state = 5, .external_lex_state = 32}, + [1641] = {.lex_state = 5, .external_lex_state = 31}, + [1642] = {.lex_state = 5, .external_lex_state = 31}, + [1643] = {.lex_state = 5, .external_lex_state = 31}, + [1644] = {.lex_state = 2181}, + [1645] = {.lex_state = 2181}, + [1646] = {.lex_state = 2181}, + [1647] = {.lex_state = 12}, + [1648] = {.lex_state = 2181}, + [1649] = {.lex_state = 12}, + [1650] = {.lex_state = 12}, + [1651] = {.lex_state = 2181}, + [1652] = {.lex_state = 2181}, + [1653] = {.lex_state = 2181}, + [1654] = {.lex_state = 12}, + [1655] = {.lex_state = 2181}, + [1656] = {.lex_state = 2181}, + [1657] = {.lex_state = 2181}, + [1658] = {.lex_state = 2181}, + [1659] = {.lex_state = 2181}, + [1660] = {.lex_state = 2181}, + [1661] = {.lex_state = 2181}, + [1662] = {.lex_state = 2181}, + [1663] = {.lex_state = 2181}, + [1664] = {.lex_state = 2181}, + [1665] = {.lex_state = 2181}, + [1666] = {.lex_state = 2181}, + [1667] = {.lex_state = 2181}, + [1668] = {.lex_state = 2181}, + [1669] = {.lex_state = 2181}, + [1670] = {.lex_state = 2181}, + [1671] = {.lex_state = 12}, + [1672] = {.lex_state = 2181}, + [1673] = {.lex_state = 2181}, + [1674] = {.lex_state = 2181}, + [1675] = {.lex_state = 2181}, + [1676] = {.lex_state = 2181}, + [1677] = {.lex_state = 2181}, + [1678] = {.lex_state = 2181}, + [1679] = {.lex_state = 2181}, + [1680] = {.lex_state = 2181}, + [1681] = {.lex_state = 2181}, + [1682] = {.lex_state = 2181}, + [1683] = {.lex_state = 5, .external_lex_state = 34}, + [1684] = {.lex_state = 5, .external_lex_state = 35}, + [1685] = {.lex_state = 12}, + [1686] = {.lex_state = 12}, + [1687] = {.lex_state = 2181}, + [1688] = {.lex_state = 2181}, + [1689] = {.lex_state = 2181}, + [1690] = {.lex_state = 2181}, + [1691] = {.lex_state = 2181}, + [1692] = {.lex_state = 12}, + [1693] = {.lex_state = 12}, + [1694] = {.lex_state = 2181}, + [1695] = {.lex_state = 12}, + [1696] = {.lex_state = 8, .external_lex_state = 36}, + [1697] = {.lex_state = 8, .external_lex_state = 36}, + [1698] = {.lex_state = 8, .external_lex_state = 36}, + [1699] = {.lex_state = 12}, + [1700] = {.lex_state = 8, .external_lex_state = 36}, + [1701] = {.lex_state = 12}, + [1702] = {.lex_state = 12}, + [1703] = {.lex_state = 8, .external_lex_state = 36}, + [1704] = {.lex_state = 12}, + [1705] = {.lex_state = 8, .external_lex_state = 36}, + [1706] = {.lex_state = 12}, + [1707] = {.lex_state = 8, .external_lex_state = 36}, + [1708] = {.lex_state = 12}, + [1709] = {.lex_state = 2181}, + [1710] = {.lex_state = 12}, + [1711] = {.lex_state = 8, .external_lex_state = 36}, + [1712] = {.lex_state = 8, .external_lex_state = 36}, + [1713] = {.lex_state = 8, .external_lex_state = 36}, + [1714] = {.lex_state = 8, .external_lex_state = 36}, + [1715] = {.lex_state = 12}, + [1716] = {.lex_state = 8, .external_lex_state = 36}, + [1717] = {.lex_state = 8, .external_lex_state = 36}, + [1718] = {.lex_state = 8, .external_lex_state = 36}, + [1719] = {.lex_state = 12}, + [1720] = {.lex_state = 5, .external_lex_state = 33}, + [1721] = {.lex_state = 8, .external_lex_state = 36}, + [1722] = {.lex_state = 5, .external_lex_state = 32}, + [1723] = {.lex_state = 5, .external_lex_state = 37}, + [1724] = {.lex_state = 8, .external_lex_state = 36}, + [1725] = {.lex_state = 3, .external_lex_state = 28}, + [1726] = {.lex_state = 8, .external_lex_state = 36}, + [1727] = {.lex_state = 8, .external_lex_state = 36}, + [1728] = {.lex_state = 12}, + [1729] = {.lex_state = 12}, + [1730] = {.lex_state = 12}, + [1731] = {.lex_state = 12}, + [1732] = {.lex_state = 8, .external_lex_state = 36}, + [1733] = {.lex_state = 8, .external_lex_state = 36}, + [1734] = {.lex_state = 12}, + [1735] = {.lex_state = 12}, + [1736] = {.lex_state = 12}, + [1737] = {.lex_state = 12}, + [1738] = {.lex_state = 12}, + [1739] = {.lex_state = 12}, + [1740] = {.lex_state = 8, .external_lex_state = 36}, + [1741] = {.lex_state = 12}, + [1742] = {.lex_state = 12}, + [1743] = {.lex_state = 12}, + [1744] = {.lex_state = 5, .external_lex_state = 31}, + [1745] = {.lex_state = 12}, + [1746] = {.lex_state = 12}, + [1747] = {.lex_state = 12}, + [1748] = {.lex_state = 3}, + [1749] = {.lex_state = 12}, + [1750] = {.lex_state = 12}, + [1751] = {.lex_state = 12}, + [1752] = {.lex_state = 12}, + [1753] = {.lex_state = 12}, + [1754] = {.lex_state = 12}, + [1755] = {.lex_state = 12}, + [1756] = {.lex_state = 12}, + [1757] = {.lex_state = 12}, + [1758] = {.lex_state = 12}, + [1759] = {.lex_state = 12}, + [1760] = {.lex_state = 12}, + [1761] = {.lex_state = 12}, + [1762] = {.lex_state = 12}, + [1763] = {.lex_state = 12}, + [1764] = {.lex_state = 12}, + [1765] = {.lex_state = 12}, + [1766] = {.lex_state = 12}, + [1767] = {.lex_state = 12}, + [1768] = {.lex_state = 12}, + [1769] = {.lex_state = 12}, + [1770] = {.lex_state = 12}, + [1771] = {.lex_state = 12}, + [1772] = {.lex_state = 12}, + [1773] = {.lex_state = 12}, + [1774] = {.lex_state = 8, .external_lex_state = 38}, + [1775] = {.lex_state = 12}, + [1776] = {.lex_state = 2181}, + [1777] = {.lex_state = 2181}, + [1778] = {.lex_state = 2181}, + [1779] = {.lex_state = 2181}, + [1780] = {.lex_state = 12}, + [1781] = {.lex_state = 2181}, + [1782] = {.lex_state = 2181}, + [1783] = {.lex_state = 2181}, + [1784] = {.lex_state = 2181}, + [1785] = {.lex_state = 2181}, + [1786] = {.lex_state = 2181}, + [1787] = {.lex_state = 2181}, + [1788] = {.lex_state = 2181}, + [1789] = {.lex_state = 2181}, + [1790] = {.lex_state = 12}, + [1791] = {.lex_state = 2181}, + [1792] = {.lex_state = 2181}, + [1793] = {.lex_state = 2181}, + [1794] = {.lex_state = 2181}, + [1795] = {.lex_state = 2181}, + [1796] = {.lex_state = 12}, + [1797] = {.lex_state = 2181}, + [1798] = {.lex_state = 2181}, + [1799] = {.lex_state = 2181}, + [1800] = {.lex_state = 2181}, + [1801] = {.lex_state = 2181}, + [1802] = {.lex_state = 12}, + [1803] = {.lex_state = 2181}, + [1804] = {.lex_state = 2181}, + [1805] = {.lex_state = 2181}, + [1806] = {.lex_state = 2181}, + [1807] = {.lex_state = 2181}, + [1808] = {.lex_state = 2181}, + [1809] = {.lex_state = 2181}, + [1810] = {.lex_state = 2181}, + [1811] = {.lex_state = 2181}, + [1812] = {.lex_state = 2181}, + [1813] = {.lex_state = 2181}, + [1814] = {.lex_state = 2181}, + [1815] = {.lex_state = 2181}, + [1816] = {.lex_state = 2181}, + [1817] = {.lex_state = 2181}, + [1818] = {.lex_state = 2181}, + [1819] = {.lex_state = 2181}, + [1820] = {.lex_state = 2181}, + [1821] = {.lex_state = 2181}, + [1822] = {.lex_state = 2181}, + [1823] = {.lex_state = 2181}, + [1824] = {.lex_state = 2181}, + [1825] = {.lex_state = 2181}, + [1826] = {.lex_state = 2181}, + [1827] = {.lex_state = 8, .external_lex_state = 36}, + [1828] = {.lex_state = 2181}, + [1829] = {.lex_state = 12}, + [1830] = {.lex_state = 12}, + [1831] = {.lex_state = 12}, + [1832] = {.lex_state = 12}, + [1833] = {.lex_state = 12}, + [1834] = {.lex_state = 2181}, + [1835] = {.lex_state = 2181}, + [1836] = {.lex_state = 2181}, + [1837] = {.lex_state = 2181}, + [1838] = {.lex_state = 2181}, + [1839] = {.lex_state = 12}, + [1840] = {.lex_state = 12}, + [1841] = {.lex_state = 2181}, + [1842] = {.lex_state = 2181}, + [1843] = {.lex_state = 2181}, + [1844] = {.lex_state = 2181}, + [1845] = {.lex_state = 2181}, + [1846] = {.lex_state = 2181}, + [1847] = {.lex_state = 2181}, + [1848] = {.lex_state = 2181}, + [1849] = {.lex_state = 2181}, + [1850] = {.lex_state = 2181}, + [1851] = {.lex_state = 2181}, + [1852] = {.lex_state = 2181}, + [1853] = {.lex_state = 2181}, + [1854] = {.lex_state = 2181}, + [1855] = {.lex_state = 2181}, + [1856] = {.lex_state = 2181}, + [1857] = {.lex_state = 2181}, + [1858] = {.lex_state = 2181}, + [1859] = {.lex_state = 2181}, + [1860] = {.lex_state = 2181}, + [1861] = {.lex_state = 2181}, + [1862] = {.lex_state = 2181}, + [1863] = {.lex_state = 2181}, + [1864] = {.lex_state = 2181}, + [1865] = {.lex_state = 2181}, + [1866] = {.lex_state = 12}, + [1867] = {.lex_state = 12}, + [1868] = {.lex_state = 2181}, + [1869] = {.lex_state = 2181}, + [1870] = {.lex_state = 2181}, + [1871] = {.lex_state = 2181}, + [1872] = {.lex_state = 2181}, + [1873] = {.lex_state = 2181}, + [1874] = {.lex_state = 2181}, + [1875] = {.lex_state = 12}, + [1876] = {.lex_state = 2181}, + [1877] = {.lex_state = 2181}, + [1878] = {.lex_state = 12}, + [1879] = {.lex_state = 2181}, + [1880] = {.lex_state = 2181}, + [1881] = {.lex_state = 2181}, + [1882] = {.lex_state = 2181}, + [1883] = {.lex_state = 2181}, + [1884] = {.lex_state = 12}, + [1885] = {.lex_state = 12}, + [1886] = {.lex_state = 2181}, + [1887] = {.lex_state = 2181}, + [1888] = {.lex_state = 2181}, + [1889] = {.lex_state = 2181}, + [1890] = {.lex_state = 2181}, + [1891] = {.lex_state = 2181}, + [1892] = {.lex_state = 2181}, + [1893] = {.lex_state = 2181}, + [1894] = {.lex_state = 2181}, + [1895] = {.lex_state = 2181}, + [1896] = {.lex_state = 2181}, + [1897] = {.lex_state = 2181}, + [1898] = {.lex_state = 2181}, + [1899] = {.lex_state = 2181}, + [1900] = {.lex_state = 2181}, + [1901] = {.lex_state = 2181}, + [1902] = {.lex_state = 2181}, + [1903] = {.lex_state = 2181}, + [1904] = {.lex_state = 2181}, + [1905] = {.lex_state = 2181}, + [1906] = {.lex_state = 2181}, + [1907] = {.lex_state = 2181}, + [1908] = {.lex_state = 2181}, + [1909] = {.lex_state = 2181}, + [1910] = {.lex_state = 2181}, + [1911] = {.lex_state = 2181}, + [1912] = {.lex_state = 2181}, + [1913] = {.lex_state = 2181}, + [1914] = {.lex_state = 8, .external_lex_state = 36}, + [1915] = {.lex_state = 2181}, + [1916] = {.lex_state = 12}, + [1917] = {.lex_state = 2181}, + [1918] = {.lex_state = 2181}, + [1919] = {.lex_state = 8, .external_lex_state = 36}, + [1920] = {.lex_state = 2181}, + [1921] = {.lex_state = 2181}, + [1922] = {.lex_state = 2181}, + [1923] = {.lex_state = 12}, + [1924] = {.lex_state = 2181}, + [1925] = {.lex_state = 2181}, + [1926] = {.lex_state = 2181}, + [1927] = {.lex_state = 2181}, + [1928] = {.lex_state = 2181}, + [1929] = {.lex_state = 12}, + [1930] = {.lex_state = 2181}, + [1931] = {.lex_state = 12}, + [1932] = {.lex_state = 2181}, + [1933] = {.lex_state = 2181}, + [1934] = {.lex_state = 2181}, + [1935] = {.lex_state = 2181}, + [1936] = {.lex_state = 2181}, + [1937] = {.lex_state = 2181}, + [1938] = {.lex_state = 12}, + [1939] = {.lex_state = 2181}, + [1940] = {.lex_state = 2181}, + [1941] = {.lex_state = 2181}, + [1942] = {.lex_state = 12}, + [1943] = {.lex_state = 2181}, + [1944] = {.lex_state = 2181}, + [1945] = {.lex_state = 2181}, + [1946] = {.lex_state = 2181}, + [1947] = {.lex_state = 2181}, + [1948] = {.lex_state = 2181}, + [1949] = {.lex_state = 2181}, + [1950] = {.lex_state = 2181}, + [1951] = {.lex_state = 2181}, + [1952] = {.lex_state = 2181}, + [1953] = {.lex_state = 2181}, + [1954] = {.lex_state = 2181}, + [1955] = {.lex_state = 2181}, + [1956] = {.lex_state = 12}, + [1957] = {.lex_state = 2181}, + [1958] = {.lex_state = 2181}, + [1959] = {.lex_state = 2181}, + [1960] = {.lex_state = 2181}, + [1961] = {.lex_state = 2181}, + [1962] = {.lex_state = 12}, + [1963] = {.lex_state = 2181}, + [1964] = {.lex_state = 2181}, + [1965] = {.lex_state = 12}, + [1966] = {.lex_state = 12}, + [1967] = {.lex_state = 12}, + [1968] = {.lex_state = 2181}, + [1969] = {.lex_state = 2181}, + [1970] = {.lex_state = 2181}, + [1971] = {.lex_state = 2181}, + [1972] = {.lex_state = 2181}, + [1973] = {.lex_state = 2181}, + [1974] = {.lex_state = 2181}, + [1975] = {.lex_state = 12}, + [1976] = {.lex_state = 2181}, + [1977] = {.lex_state = 2181}, + [1978] = {.lex_state = 2181}, + [1979] = {.lex_state = 2181}, + [1980] = {.lex_state = 2181}, + [1981] = {.lex_state = 2181}, + [1982] = {.lex_state = 2181}, + [1983] = {.lex_state = 2181}, + [1984] = {.lex_state = 2181}, + [1985] = {.lex_state = 2181}, + [1986] = {.lex_state = 2181}, + [1987] = {.lex_state = 2181}, + [1988] = {.lex_state = 2181}, + [1989] = {.lex_state = 2181}, + [1990] = {.lex_state = 2181}, + [1991] = {.lex_state = 2181}, + [1992] = {.lex_state = 2181}, + [1993] = {.lex_state = 2181}, + [1994] = {.lex_state = 2181}, + [1995] = {.lex_state = 2181}, + [1996] = {.lex_state = 2181}, + [1997] = {.lex_state = 2181}, + [1998] = {.lex_state = 2181}, + [1999] = {.lex_state = 2181}, + [2000] = {.lex_state = 2181}, + [2001] = {.lex_state = 2181}, + [2002] = {.lex_state = 2181}, + [2003] = {.lex_state = 2181}, + [2004] = {.lex_state = 2181}, + [2005] = {.lex_state = 2181}, + [2006] = {.lex_state = 2181}, + [2007] = {.lex_state = 2181}, + [2008] = {.lex_state = 12}, + [2009] = {.lex_state = 12}, + [2010] = {.lex_state = 2181}, + [2011] = {.lex_state = 12}, + [2012] = {.lex_state = 12}, + [2013] = {.lex_state = 12}, + [2014] = {.lex_state = 12}, + [2015] = {.lex_state = 2181}, + [2016] = {.lex_state = 12}, + [2017] = {.lex_state = 12}, + [2018] = {.lex_state = 10}, + [2019] = {.lex_state = 12}, + [2020] = {.lex_state = 12}, + [2021] = {.lex_state = 12}, + [2022] = {.lex_state = 12}, + [2023] = {.lex_state = 12}, + [2024] = {.lex_state = 12}, + [2025] = {.lex_state = 12}, + [2026] = {.lex_state = 12}, + [2027] = {.lex_state = 12}, + [2028] = {.lex_state = 12}, + [2029] = {.lex_state = 12}, + [2030] = {.lex_state = 12}, + [2031] = {.lex_state = 2181}, + [2032] = {.lex_state = 12}, + [2033] = {.lex_state = 12}, + [2034] = {.lex_state = 12}, + [2035] = {.lex_state = 12}, + [2036] = {.lex_state = 12}, + [2037] = {.lex_state = 12}, + [2038] = {.lex_state = 10}, + [2039] = {.lex_state = 12}, + [2040] = {.lex_state = 12}, + [2041] = {.lex_state = 12}, + [2042] = {.lex_state = 12}, + [2043] = {.lex_state = 12}, + [2044] = {.lex_state = 12}, + [2045] = {.lex_state = 12}, + [2046] = {.lex_state = 12}, + [2047] = {.lex_state = 17}, + [2048] = {.lex_state = 2181}, + [2049] = {.lex_state = 2181}, + [2050] = {.lex_state = 12}, + [2051] = {.lex_state = 2181}, + [2052] = {.lex_state = 2181}, + [2053] = {.lex_state = 17}, + [2054] = {.lex_state = 12}, + [2055] = {.lex_state = 2181}, + [2056] = {.lex_state = 2181}, + [2057] = {.lex_state = 12}, + [2058] = {.lex_state = 12}, + [2059] = {.lex_state = 2181}, + [2060] = {.lex_state = 2181}, + [2061] = {.lex_state = 17}, + [2062] = {.lex_state = 12}, + [2063] = {.lex_state = 2181}, + [2064] = {.lex_state = 2181}, + [2065] = {.lex_state = 2181}, + [2066] = {.lex_state = 2181}, + [2067] = {.lex_state = 17}, + [2068] = {.lex_state = 12}, + [2069] = {.lex_state = 2181}, + [2070] = {.lex_state = 2181}, + [2071] = {.lex_state = 2181}, + [2072] = {.lex_state = 2181}, + [2073] = {.lex_state = 17}, + [2074] = {.lex_state = 12}, + [2075] = {.lex_state = 2181}, + [2076] = {.lex_state = 2181}, + [2077] = {.lex_state = 2181}, + [2078] = {.lex_state = 2181}, + [2079] = {.lex_state = 2181}, + [2080] = {.lex_state = 17}, + [2081] = {.lex_state = 12}, + [2082] = {.lex_state = 17}, + [2083] = {.lex_state = 2181}, + [2084] = {.lex_state = 2181}, + [2085] = {.lex_state = 2181}, + [2086] = {.lex_state = 17}, + [2087] = {.lex_state = 2181}, + [2088] = {.lex_state = 2181}, + [2089] = {.lex_state = 2181}, + [2090] = {.lex_state = 2181}, + [2091] = {.lex_state = 17}, + [2092] = {.lex_state = 12}, + [2093] = {.lex_state = 12}, + [2094] = {.lex_state = 2181}, + [2095] = {.lex_state = 2181}, + [2096] = {.lex_state = 2181}, + [2097] = {.lex_state = 2181}, + [2098] = {.lex_state = 17}, + [2099] = {.lex_state = 12}, + [2100] = {.lex_state = 12}, + [2101] = {.lex_state = 2181}, + [2102] = {.lex_state = 2181}, + [2103] = {.lex_state = 2181}, + [2104] = {.lex_state = 2181}, + [2105] = {.lex_state = 2181}, + [2106] = {.lex_state = 2181}, + [2107] = {.lex_state = 2181}, + [2108] = {.lex_state = 2181}, + [2109] = {.lex_state = 2181}, + [2110] = {.lex_state = 12}, + [2111] = {.lex_state = 12}, + [2112] = {.lex_state = 2181}, + [2113] = {.lex_state = 12}, + [2114] = {.lex_state = 2181}, + [2115] = {.lex_state = 2181}, + [2116] = {.lex_state = 2181}, + [2117] = {.lex_state = 2181}, + [2118] = {.lex_state = 10}, + [2119] = {.lex_state = 2181}, + [2120] = {.lex_state = 2181}, + [2121] = {.lex_state = 2181}, + [2122] = {.lex_state = 2181}, + [2123] = {.lex_state = 2181}, + [2124] = {.lex_state = 2181}, + [2125] = {.lex_state = 2181}, + [2126] = {.lex_state = 2181}, + [2127] = {.lex_state = 2181}, + [2128] = {.lex_state = 2181}, + [2129] = {.lex_state = 2181}, + [2130] = {.lex_state = 2181}, + [2131] = {.lex_state = 2181}, + [2132] = {.lex_state = 2181}, + [2133] = {.lex_state = 2181}, + [2134] = {.lex_state = 2181}, + [2135] = {.lex_state = 2181}, + [2136] = {.lex_state = 2181}, + [2137] = {.lex_state = 2181}, + [2138] = {.lex_state = 2181}, + [2139] = {.lex_state = 2181}, + [2140] = {.lex_state = 12}, + [2141] = {.lex_state = 2181}, + [2142] = {.lex_state = 2181}, + [2143] = {.lex_state = 2181}, + [2144] = {.lex_state = 2181}, + [2145] = {.lex_state = 2181}, + [2146] = {.lex_state = 2181}, + [2147] = {.lex_state = 12}, + [2148] = {.lex_state = 2181}, + [2149] = {.lex_state = 2181}, + [2150] = {.lex_state = 2181}, + [2151] = {.lex_state = 12}, + [2152] = {.lex_state = 12}, + [2153] = {.lex_state = 2181}, + [2154] = {.lex_state = 2181}, + [2155] = {.lex_state = 2181}, + [2156] = {.lex_state = 2181}, + [2157] = {.lex_state = 10}, + [2158] = {.lex_state = 2181}, + [2159] = {.lex_state = 2181}, + [2160] = {.lex_state = 2181}, + [2161] = {.lex_state = 2181}, + [2162] = {.lex_state = 2181}, + [2163] = {.lex_state = 12}, + [2164] = {.lex_state = 2181}, + [2165] = {.lex_state = 2181}, + [2166] = {.lex_state = 2181}, + [2167] = {.lex_state = 2181}, + [2168] = {.lex_state = 2181}, + [2169] = {.lex_state = 3, .external_lex_state = 39}, + [2170] = {.lex_state = 3, .external_lex_state = 40}, + [2171] = {.lex_state = 3, .external_lex_state = 39}, + [2172] = {.lex_state = 3, .external_lex_state = 40}, + [2173] = {.lex_state = 3, .external_lex_state = 39}, + [2174] = {.lex_state = 3, .external_lex_state = 40}, + [2175] = {.lex_state = 3, .external_lex_state = 39}, + [2176] = {.lex_state = 3, .external_lex_state = 39}, + [2177] = {.lex_state = 3, .external_lex_state = 40}, + [2178] = {.lex_state = 3, .external_lex_state = 40}, + [2179] = {.lex_state = 3, .external_lex_state = 40}, + [2180] = {.lex_state = 3, .external_lex_state = 40}, + [2181] = {.lex_state = 3, .external_lex_state = 40}, + [2182] = {.lex_state = 3, .external_lex_state = 39}, + [2183] = {.lex_state = 3, .external_lex_state = 40}, + [2184] = {.lex_state = 3, .external_lex_state = 40}, + [2185] = {.lex_state = 6}, + [2186] = {.lex_state = 3, .external_lex_state = 39}, + [2187] = {.lex_state = 6}, + [2188] = {.lex_state = 3, .external_lex_state = 40}, + [2189] = {.lex_state = 2181}, + [2190] = {.lex_state = 6}, + [2191] = {.lex_state = 3, .external_lex_state = 39}, + [2192] = {.lex_state = 3, .external_lex_state = 40}, + [2193] = {.lex_state = 2181}, + [2194] = {.lex_state = 12}, + [2195] = {.lex_state = 3, .external_lex_state = 40}, + [2196] = {.lex_state = 3, .external_lex_state = 39}, + [2197] = {.lex_state = 3, .external_lex_state = 40}, + [2198] = {.lex_state = 6}, + [2199] = {.lex_state = 3, .external_lex_state = 39}, + [2200] = {.lex_state = 6}, + [2201] = {.lex_state = 3, .external_lex_state = 41}, + [2202] = {.lex_state = 3, .external_lex_state = 39}, + [2203] = {.lex_state = 3, .external_lex_state = 39}, + [2204] = {.lex_state = 3, .external_lex_state = 40}, + [2205] = {.lex_state = 3, .external_lex_state = 39}, + [2206] = {.lex_state = 3, .external_lex_state = 39}, + [2207] = {.lex_state = 3, .external_lex_state = 39}, + [2208] = {.lex_state = 3, .external_lex_state = 40}, + [2209] = {.lex_state = 6}, + [2210] = {.lex_state = 3, .external_lex_state = 39}, + [2211] = {.lex_state = 3, .external_lex_state = 40}, + [2212] = {.lex_state = 3, .external_lex_state = 40}, + [2213] = {.lex_state = 2181}, + [2214] = {.lex_state = 6}, + [2215] = {.lex_state = 3, .external_lex_state = 39}, + [2216] = {.lex_state = 3, .external_lex_state = 40}, + [2217] = {.lex_state = 3, .external_lex_state = 40}, + [2218] = {.lex_state = 6}, + [2219] = {.lex_state = 6}, + [2220] = {.lex_state = 3, .external_lex_state = 39}, + [2221] = {.lex_state = 6}, + [2222] = {.lex_state = 3, .external_lex_state = 39}, + [2223] = {.lex_state = 3, .external_lex_state = 40}, + [2224] = {.lex_state = 3, .external_lex_state = 39}, + [2225] = {.lex_state = 3, .external_lex_state = 40}, + [2226] = {.lex_state = 2181}, + [2227] = {.lex_state = 2181}, + [2228] = {.lex_state = 2181}, + [2229] = {.lex_state = 2181}, + [2230] = {.lex_state = 2181}, + [2231] = {.lex_state = 2181}, + [2232] = {.lex_state = 2181}, + [2233] = {.lex_state = 2181}, + [2234] = {.lex_state = 2181}, + [2235] = {.lex_state = 2181}, + [2236] = {.lex_state = 2181}, + [2237] = {.lex_state = 2181}, + [2238] = {.lex_state = 2181}, + [2239] = {.lex_state = 2181}, + [2240] = {.lex_state = 2181}, + [2241] = {.lex_state = 2181}, + [2242] = {.lex_state = 2181}, + [2243] = {.lex_state = 2181}, + [2244] = {.lex_state = 3, .external_lex_state = 42}, + [2245] = {.lex_state = 2181}, + [2246] = {.lex_state = 6}, + [2247] = {.lex_state = 6}, + [2248] = {.lex_state = 6}, + [2249] = {.lex_state = 6}, + [2250] = {.lex_state = 6}, + [2251] = {.lex_state = 2181}, + [2252] = {.lex_state = 6}, + [2253] = {.lex_state = 6}, + [2254] = {.lex_state = 2181}, + [2255] = {.lex_state = 6}, + [2256] = {.lex_state = 2181}, + [2257] = {.lex_state = 3, .external_lex_state = 39}, + [2258] = {.lex_state = 6}, + [2259] = {.lex_state = 3, .external_lex_state = 40}, + [2260] = {.lex_state = 6}, + [2261] = {.lex_state = 2181}, + [2262] = {.lex_state = 2181}, + [2263] = {.lex_state = 6}, + [2264] = {.lex_state = 3}, + [2265] = {.lex_state = 6}, + [2266] = {.lex_state = 2181}, + [2267] = {.lex_state = 2181}, + [2268] = {.lex_state = 6}, + [2269] = {.lex_state = 2181}, + [2270] = {.lex_state = 6}, + [2271] = {.lex_state = 6}, + [2272] = {.lex_state = 6}, + [2273] = {.lex_state = 2181}, + [2274] = {.lex_state = 6}, + [2275] = {.lex_state = 6}, + [2276] = {.lex_state = 6}, + [2277] = {.lex_state = 6}, + [2278] = {.lex_state = 0, .external_lex_state = 43}, + [2279] = {.lex_state = 6}, + [2280] = {.lex_state = 2181}, + [2281] = {.lex_state = 0}, + [2282] = {.lex_state = 0}, + [2283] = {.lex_state = 2178}, + [2284] = {.lex_state = 2178}, + [2285] = {.lex_state = 0}, + [2286] = {.lex_state = 2181}, + [2287] = {.lex_state = 2181}, + [2288] = {.lex_state = 0, .external_lex_state = 44}, + [2289] = {.lex_state = 2175}, + [2290] = {.lex_state = 2175}, + [2291] = {.lex_state = 0}, + [2292] = {.lex_state = 0}, + [2293] = {.lex_state = 2181}, + [2294] = {.lex_state = 2181}, + [2295] = {.lex_state = 0}, + [2296] = {.lex_state = 0}, + [2297] = {.lex_state = 2178}, + [2298] = {.lex_state = 2178}, + [2299] = {.lex_state = 0}, + [2300] = {.lex_state = 2181}, + [2301] = {.lex_state = 2175}, + [2302] = {.lex_state = 2181}, + [2303] = {.lex_state = 2181}, + [2304] = {.lex_state = 0}, + [2305] = {.lex_state = 0}, + [2306] = {.lex_state = 0}, + [2307] = {.lex_state = 0}, + [2308] = {.lex_state = 3}, + [2309] = {.lex_state = 0}, + [2310] = {.lex_state = 0}, + [2311] = {.lex_state = 2178}, + [2312] = {.lex_state = 2178}, + [2313] = {.lex_state = 0}, + [2314] = {.lex_state = 2181}, + [2315] = {.lex_state = 0}, + [2316] = {.lex_state = 2175}, + [2317] = {.lex_state = 0}, + [2318] = {.lex_state = 2175}, + [2319] = {.lex_state = 0, .external_lex_state = 44}, + [2320] = {.lex_state = 2181}, + [2321] = {.lex_state = 2181}, + [2322] = {.lex_state = 2175}, + [2323] = {.lex_state = 2175}, + [2324] = {.lex_state = 0}, + [2325] = {.lex_state = 2178}, + [2326] = {.lex_state = 2178}, + [2327] = {.lex_state = 2178}, + [2328] = {.lex_state = 2181}, + [2329] = {.lex_state = 2178}, + [2330] = {.lex_state = 0}, + [2331] = {.lex_state = 2181}, + [2332] = {.lex_state = 2175}, + [2333] = {.lex_state = 2175}, + [2334] = {.lex_state = 0}, + [2335] = {.lex_state = 2181}, + [2336] = {.lex_state = 0}, + [2337] = {.lex_state = 2181}, + [2338] = {.lex_state = 2181}, + [2339] = {.lex_state = 2178}, + [2340] = {.lex_state = 2178}, + [2341] = {.lex_state = 0}, + [2342] = {.lex_state = 2181}, + [2343] = {.lex_state = 0}, + [2344] = {.lex_state = 0}, + [2345] = {.lex_state = 2175}, + [2346] = {.lex_state = 0}, + [2347] = {.lex_state = 0, .external_lex_state = 44}, + [2348] = {.lex_state = 2175}, + [2349] = {.lex_state = 2175}, + [2350] = {.lex_state = 0}, + [2351] = {.lex_state = 0, .external_lex_state = 44}, + [2352] = {.lex_state = 0}, + [2353] = {.lex_state = 2178}, + [2354] = {.lex_state = 2178}, + [2355] = {.lex_state = 2181}, + [2356] = {.lex_state = 2181}, + [2357] = {.lex_state = 2178}, + [2358] = {.lex_state = 2178}, + [2359] = {.lex_state = 2175}, + [2360] = {.lex_state = 2178}, + [2361] = {.lex_state = 0}, + [2362] = {.lex_state = 0}, + [2363] = {.lex_state = 2181}, + [2364] = {.lex_state = 0}, + [2365] = {.lex_state = 2175}, + [2366] = {.lex_state = 3}, + [2367] = {.lex_state = 2178}, + [2368] = {.lex_state = 2175}, + [2369] = {.lex_state = 2181}, + [2370] = {.lex_state = 0}, + [2371] = {.lex_state = 3}, + [2372] = {.lex_state = 3}, + [2373] = {.lex_state = 3}, + [2374] = {.lex_state = 3}, + [2375] = {.lex_state = 3}, + [2376] = {.lex_state = 3}, + [2377] = {.lex_state = 3}, + [2378] = {.lex_state = 3}, + [2379] = {.lex_state = 3}, + [2380] = {.lex_state = 3}, + [2381] = {.lex_state = 3}, + [2382] = {.lex_state = 3}, + [2383] = {.lex_state = 3}, + [2384] = {.lex_state = 3}, + [2385] = {.lex_state = 3}, + [2386] = {.lex_state = 3}, + [2387] = {.lex_state = 3}, + [2388] = {.lex_state = 3}, + [2389] = {.lex_state = 3}, + [2390] = {.lex_state = 2175}, + [2391] = {.lex_state = 2175}, + [2392] = {.lex_state = 0}, + [2393] = {.lex_state = 0}, + [2394] = {.lex_state = 0}, + [2395] = {.lex_state = 0}, + [2396] = {.lex_state = 0}, + [2397] = {.lex_state = 0}, + [2398] = {.lex_state = 2178}, + [2399] = {.lex_state = 2178}, + [2400] = {.lex_state = 2175}, + [2401] = {.lex_state = 2175}, + [2402] = {.lex_state = 0}, + [2403] = {.lex_state = 2175}, + [2404] = {.lex_state = 0}, + [2405] = {.lex_state = 2181}, + [2406] = {.lex_state = 0}, + [2407] = {.lex_state = 0}, + [2408] = {.lex_state = 0}, + [2409] = {.lex_state = 0}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -27928,6 +28839,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_commonmark_name] = ACTIONS(1), [anon_sym_BSLASH_SQUOTE] = ACTIONS(1), [anon_sym_BSLASH_DQUOTE] = ACTIONS(1), + [aux_sym_insert_token1] = ACTIONS(1), + [aux_sym_delete_token1] = ACTIONS(1), + [aux_sym_highlight_token1] = ACTIONS(1), + [aux_sym_edit_comment_token1] = ACTIONS(1), [anon_sym_CARET_LBRACK] = ACTIONS(1), [sym_shortcode_name] = ACTIONS(1), [aux_sym_shortcode_naked_string_token1] = ACTIONS(1), @@ -27976,40 +28891,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unclosed_span] = ACTIONS(1), }, [STATE(1)] = { - [sym_inline] = STATE(1979), - [sym_backslash_escape] = STATE(265), - [sym_commonmark_attribute] = STATE(265), - [sym_code_span] = STATE(265), - [sym_latex_span] = STATE(265), - [sym_superscript] = STATE(265), - [sym_subscript] = STATE(265), - [sym_strikeout] = STATE(265), - [sym_quoted_span] = STATE(265), - [sym_inline_note] = STATE(265), - [sym_citation] = STATE(265), - [sym_shortcode_escaped] = STATE(265), - [sym_shortcode] = STATE(265), - [sym_note_reference] = STATE(265), - [sym__link_text] = STATE(310), - [sym__link_text_non_empty] = STATE(311), - [sym_inline_link] = STATE(885), - [sym_image] = STATE(265), - [sym__image_inline_link] = STATE(662), - [sym__image_description] = STATE(1978), - [sym__image_description_non_empty] = STATE(1978), - [sym_hard_line_break] = STATE(265), - [sym__whitespace] = STATE(579), - [sym__word] = STATE(579), - [sym__soft_line_break] = STATE(707), - [sym__inline_base] = STATE(885), - [sym__text_base] = STATE(265), - [sym__inline_element] = STATE(885), - [aux_sym__inline] = STATE(54), - [sym__emphasis_star] = STATE(1121), - [sym__strong_emphasis_star] = STATE(885), - [sym__emphasis_underscore] = STATE(1121), - [sym__strong_emphasis_underscore] = STATE(885), - [aux_sym__inline_base_repeat1] = STATE(265), + [sym_inline] = STATE(2315), + [sym_backslash_escape] = STATE(377), + [sym_commonmark_attribute] = STATE(377), + [sym_code_span] = STATE(377), + [sym_latex_span] = STATE(377), + [sym_insert] = STATE(377), + [sym_delete] = STATE(377), + [sym_highlight] = STATE(377), + [sym_edit_comment] = STATE(377), + [sym_superscript] = STATE(377), + [sym_subscript] = STATE(377), + [sym_strikeout] = STATE(377), + [sym_quoted_span] = STATE(377), + [sym_inline_note] = STATE(377), + [sym_citation] = STATE(377), + [sym_shortcode_escaped] = STATE(377), + [sym_shortcode] = STATE(377), + [sym_note_reference] = STATE(377), + [sym__link_text] = STATE(496), + [sym__link_text_non_empty] = STATE(521), + [sym_inline_link] = STATE(1131), + [sym_image] = STATE(377), + [sym__image_inline_link] = STATE(1305), + [sym__image_description] = STATE(2302), + [sym__image_description_non_empty] = STATE(2302), + [sym_hard_line_break] = STATE(377), + [sym__whitespace] = STATE(1160), + [sym__word] = STATE(1160), + [sym__soft_line_break] = STATE(1375), + [sym__inline_base] = STATE(1131), + [sym__text_base] = STATE(377), + [sym__inline_element] = STATE(1131), + [aux_sym__inline] = STATE(53), + [sym__emphasis_star] = STATE(1094), + [sym__strong_emphasis_star] = STATE(1131), + [sym__emphasis_underscore] = STATE(1094), + [sym__strong_emphasis_underscore] = STATE(1131), + [aux_sym__inline_base_repeat1] = STATE(377), [sym__backslash_escape] = ACTIONS(3), [sym_entity_reference] = ACTIONS(5), [sym_numeric_character_reference] = ACTIONS(5), @@ -28043,5087 +28962,5410 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(9), [anon_sym_RPAREN] = ACTIONS(9), [sym__newline_token] = ACTIONS(19), - [anon_sym_CARET_LBRACK] = ACTIONS(21), - [anon_sym_LBRACK_CARET] = ACTIONS(23), + [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(25), - [aux_sym__whitespace_token1] = ACTIONS(27), - [sym__word_no_digit] = ACTIONS(29), - [sym__digits] = ACTIONS(29), - [anon_sym_DASH_DASH] = ACTIONS(31), - [anon_sym_DASH_DASH_DASH] = ACTIONS(29), - [anon_sym_DOT_DOT_DOT] = ACTIONS(29), - [sym__code_span_start] = ACTIONS(33), - [sym__emphasis_open_star] = ACTIONS(35), - [sym__emphasis_open_underscore] = ACTIONS(37), - [sym__last_token_whitespace] = ACTIONS(39), - [sym__strikeout_open] = ACTIONS(41), - [sym__latex_span_start] = ACTIONS(43), - [sym__single_quote_open] = ACTIONS(45), - [sym__double_quote_open] = ACTIONS(47), - [sym__superscript_open] = ACTIONS(49), - [sym__subscript_open] = ACTIONS(51), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(53), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(55), - [sym__cite_author_in_text] = ACTIONS(57), - [sym__cite_suppress_author] = ACTIONS(59), - [sym__shortcode_open_escaped] = ACTIONS(61), - [sym__shortcode_open] = ACTIONS(63), + [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), }, [STATE(2)] = { - [sym_backslash_escape] = STATE(274), - [sym_commonmark_attribute] = STATE(274), - [sym_code_span] = STATE(274), - [sym_latex_span] = STATE(274), - [sym_superscript] = STATE(274), - [sym_subscript] = STATE(274), - [sym_strikeout] = STATE(274), - [sym_quoted_span] = STATE(274), - [sym_inline_note] = STATE(274), - [sym_citation] = STATE(274), - [sym_shortcode_escaped] = STATE(274), - [sym_shortcode] = STATE(274), - [sym_note_reference] = STATE(274), - [sym__link_text] = STATE(351), - [sym__link_text_non_empty] = STATE(352), - [sym_inline_link] = STATE(120), - [sym_image] = STATE(274), - [sym__image_inline_link] = STATE(894), - [sym__image_description] = STATE(2008), - [sym__image_description_non_empty] = STATE(2008), - [sym_hard_line_break] = STATE(274), - [sym__whitespace] = STATE(882), - [sym__word] = STATE(882), - [sym__soft_line_break] = STATE(898), - [sym__inline_base] = STATE(120), - [sym__text_base] = STATE(274), - [sym__inline_element_no_underscore] = STATE(120), - [aux_sym__inline_no_underscore] = STATE(120), - [sym__emphasis_star] = STATE(711), - [sym__strong_emphasis_star] = STATE(120), - [sym__emphasis_underscore] = STATE(768), - [sym__strong_emphasis_underscore] = STATE(120), - [aux_sym__inline_base_repeat1] = STATE(274), - [ts_builtin_sym_end] = ACTIONS(65), - [sym__backslash_escape] = ACTIONS(67), - [sym_entity_reference] = ACTIONS(70), - [sym_numeric_character_reference] = ACTIONS(70), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(76), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_DQUOTE] = ACTIONS(76), - [anon_sym_POUND] = ACTIONS(76), - [anon_sym_DOLLAR] = ACTIONS(76), - [anon_sym_PERCENT] = ACTIONS(76), - [anon_sym_AMP] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(76), - [anon_sym_STAR] = ACTIONS(76), - [anon_sym_PLUS] = ACTIONS(76), - [anon_sym_COMMA] = ACTIONS(76), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_DOT] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(76), - [anon_sym_COLON] = ACTIONS(76), - [anon_sym_SEMI] = ACTIONS(76), - [anon_sym_EQ] = ACTIONS(76), - [anon_sym_QMARK] = ACTIONS(76), - [anon_sym_LBRACK] = ACTIONS(82), + [sym_backslash_escape] = STATE(370), + [sym_commonmark_attribute] = STATE(370), + [sym_code_span] = STATE(370), + [sym_latex_span] = STATE(370), + [sym_insert] = STATE(370), + [sym_delete] = STATE(370), + [sym_highlight] = STATE(370), + [sym_edit_comment] = STATE(370), + [sym_superscript] = STATE(370), + [sym_subscript] = STATE(370), + [sym_strikeout] = STATE(370), + [sym_quoted_span] = STATE(370), + [sym_inline_note] = STATE(370), + [sym_citation] = STATE(370), + [sym_shortcode_escaped] = STATE(370), + [sym_shortcode] = STATE(370), + [sym_note_reference] = STATE(370), + [sym__link_text] = STATE(472), + [sym__link_text_non_empty] = STATE(473), + [sym_inline_link] = STATE(33), + [sym_image] = STATE(370), + [sym__image_inline_link] = STATE(923), + [sym__image_description] = STATE(2342), + [sym__image_description_non_empty] = STATE(2342), + [sym_hard_line_break] = STATE(370), + [sym__whitespace] = STATE(920), + [sym__word] = STATE(920), + [sym__soft_line_break] = STATE(924), + [sym__inline_base] = STATE(33), + [sym__text_base] = STATE(370), + [sym__inline_element] = STATE(33), + [sym__emphasis_star] = STATE(821), + [sym__strong_emphasis_star] = STATE(33), + [sym__emphasis_underscore] = STATE(821), + [sym__strong_emphasis_underscore] = STATE(33), + [aux_sym_insert_repeat1] = STATE(33), + [aux_sym__inline_base_repeat1] = STATE(370), + [sym__backslash_escape] = ACTIONS(73), + [sym_entity_reference] = ACTIONS(75), + [sym_numeric_character_reference] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_BANG] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_POUND] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(79), + [anon_sym_PERCENT] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_STAR] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_COMMA] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_DOT] = ACTIONS(77), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_COLON] = ACTIONS(79), + [anon_sym_SEMI] = ACTIONS(79), + [anon_sym_EQ] = ACTIONS(79), + [anon_sym_QMARK] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(83), [anon_sym_BSLASH] = ACTIONS(85), - [anon_sym_CARET] = ACTIONS(73), - [anon_sym__] = ACTIONS(76), - [anon_sym_BQUOTE] = ACTIONS(76), - [anon_sym_LBRACE] = ACTIONS(88), - [anon_sym_PIPE] = ACTIONS(76), - [anon_sym_TILDE] = ACTIONS(76), - [anon_sym_LPAREN] = ACTIONS(76), - [anon_sym_RPAREN] = ACTIONS(76), + [anon_sym_RBRACK] = ACTIONS(87), + [anon_sym_CARET] = ACTIONS(77), + [anon_sym__] = ACTIONS(79), + [anon_sym_BQUOTE] = ACTIONS(79), + [anon_sym_LBRACE] = ACTIONS(89), + [anon_sym_PIPE] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(79), + [anon_sym_RPAREN] = ACTIONS(79), [sym__newline_token] = ACTIONS(91), - [anon_sym_CARET_LBRACK] = ACTIONS(94), - [anon_sym_LBRACK_CARET] = ACTIONS(97), - [sym_uri_autolink] = ACTIONS(70), - [sym_email_autolink] = ACTIONS(70), - [sym__whitespace_ge_2] = ACTIONS(100), - [aux_sym__whitespace_token1] = ACTIONS(103), - [sym__word_no_digit] = ACTIONS(106), - [sym__digits] = ACTIONS(106), - [anon_sym_DASH_DASH] = ACTIONS(109), - [anon_sym_DASH_DASH_DASH] = ACTIONS(106), - [anon_sym_DOT_DOT_DOT] = ACTIONS(106), - [sym__code_span_start] = ACTIONS(112), + [aux_sym_insert_token1] = ACTIONS(93), + [aux_sym_delete_token1] = ACTIONS(95), + [aux_sym_highlight_token1] = ACTIONS(97), + [aux_sym_edit_comment_token1] = ACTIONS(99), + [anon_sym_CARET_LBRACK] = ACTIONS(101), + [anon_sym_LBRACK_CARET] = ACTIONS(103), + [sym_uri_autolink] = ACTIONS(75), + [sym_email_autolink] = ACTIONS(75), + [sym__whitespace_ge_2] = ACTIONS(105), + [aux_sym__whitespace_token1] = ACTIONS(107), + [sym__word_no_digit] = ACTIONS(109), + [sym__digits] = ACTIONS(109), + [anon_sym_DASH_DASH] = ACTIONS(111), + [anon_sym_DASH_DASH_DASH] = ACTIONS(109), + [anon_sym_DOT_DOT_DOT] = ACTIONS(109), + [sym__code_span_start] = ACTIONS(113), [sym__emphasis_open_star] = ACTIONS(115), - [sym__emphasis_open_underscore] = ACTIONS(118), - [sym__last_token_punctuation] = ACTIONS(121), - [sym__strikeout_open] = ACTIONS(123), - [sym__latex_span_start] = ACTIONS(126), - [sym__single_quote_open] = ACTIONS(129), - [sym__double_quote_open] = ACTIONS(132), - [sym__superscript_open] = ACTIONS(135), - [sym__subscript_open] = ACTIONS(138), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(141), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(144), - [sym__cite_author_in_text] = ACTIONS(147), - [sym__cite_suppress_author] = ACTIONS(150), - [sym__shortcode_open_escaped] = ACTIONS(153), - [sym__shortcode_open] = ACTIONS(156), - [sym__unclosed_span] = ACTIONS(70), + [sym__emphasis_open_underscore] = ACTIONS(117), + [sym__last_token_punctuation] = ACTIONS(119), + [sym__strikeout_open] = ACTIONS(121), + [sym__latex_span_start] = ACTIONS(123), + [sym__single_quote_open] = ACTIONS(125), + [sym__double_quote_open] = ACTIONS(127), + [sym__superscript_open] = ACTIONS(129), + [sym__subscript_open] = ACTIONS(131), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(133), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(135), + [sym__cite_author_in_text] = ACTIONS(137), + [sym__cite_suppress_author] = ACTIONS(139), + [sym__shortcode_open_escaped] = ACTIONS(141), + [sym__shortcode_open] = ACTIONS(143), + [sym__unclosed_span] = ACTIONS(75), }, [STATE(3)] = { - [sym_backslash_escape] = STATE(271), - [sym_commonmark_attribute] = STATE(271), - [sym_code_span] = STATE(271), - [sym_latex_span] = STATE(271), - [sym_superscript] = STATE(271), - [sym_subscript] = STATE(271), - [sym_strikeout] = STATE(271), - [sym_quoted_span] = STATE(271), - [sym_inline_note] = STATE(271), - [sym_citation] = STATE(271), - [sym_shortcode_escaped] = STATE(271), - [sym_shortcode] = STATE(271), - [sym_note_reference] = STATE(271), - [sym__link_text] = STATE(424), - [sym__link_text_non_empty] = STATE(425), - [sym_inline_link] = STATE(36), - [sym_image] = STATE(271), - [sym__image_inline_link] = STATE(883), - [sym__image_description] = STATE(1998), - [sym__image_description_non_empty] = STATE(1998), - [sym_hard_line_break] = STATE(271), - [sym__whitespace] = STATE(881), - [sym__word] = STATE(881), - [sym__soft_line_break] = STATE(884), - [sym__inline_base] = STATE(36), - [sym__text_base] = STATE(271), - [sym__inline_element] = STATE(36), - [sym__emphasis_star] = STATE(710), - [sym__strong_emphasis_star] = STATE(36), - [sym__emphasis_underscore] = STATE(710), - [sym__strong_emphasis_underscore] = STATE(36), - [aux_sym_superscript_repeat1] = STATE(36), - [aux_sym__inline_base_repeat1] = STATE(271), - [sym__backslash_escape] = ACTIONS(159), - [sym_entity_reference] = ACTIONS(161), - [sym_numeric_character_reference] = ACTIONS(161), - [anon_sym_LT] = ACTIONS(163), - [anon_sym_GT] = ACTIONS(165), - [anon_sym_BANG] = ACTIONS(167), - [anon_sym_DQUOTE] = ACTIONS(165), - [anon_sym_POUND] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(165), - [anon_sym_PERCENT] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_SQUOTE] = ACTIONS(165), - [anon_sym_STAR] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(165), - [anon_sym_COMMA] = ACTIONS(165), - [anon_sym_DASH] = ACTIONS(163), - [anon_sym_DOT] = ACTIONS(163), - [anon_sym_SLASH] = ACTIONS(165), - [anon_sym_COLON] = ACTIONS(165), - [anon_sym_SEMI] = ACTIONS(165), - [anon_sym_EQ] = ACTIONS(165), - [anon_sym_QMARK] = ACTIONS(165), - [anon_sym_LBRACK] = ACTIONS(169), - [anon_sym_BSLASH] = ACTIONS(171), - [anon_sym_RBRACK] = ACTIONS(173), - [anon_sym_CARET] = ACTIONS(163), - [anon_sym__] = ACTIONS(165), - [anon_sym_BQUOTE] = ACTIONS(165), - [anon_sym_LBRACE] = ACTIONS(175), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(165), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_RPAREN] = ACTIONS(165), - [sym__newline_token] = ACTIONS(177), - [anon_sym_CARET_LBRACK] = ACTIONS(179), - [anon_sym_LBRACK_CARET] = ACTIONS(181), - [sym_uri_autolink] = ACTIONS(161), - [sym_email_autolink] = ACTIONS(161), - [sym__whitespace_ge_2] = ACTIONS(183), - [aux_sym__whitespace_token1] = ACTIONS(185), - [sym__word_no_digit] = ACTIONS(187), - [sym__digits] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_DASH_DASH_DASH] = ACTIONS(187), - [anon_sym_DOT_DOT_DOT] = ACTIONS(187), - [sym__code_span_start] = ACTIONS(191), - [sym__emphasis_open_star] = ACTIONS(193), - [sym__emphasis_open_underscore] = ACTIONS(195), - [sym__last_token_punctuation] = ACTIONS(197), - [sym__strikeout_open] = ACTIONS(199), - [sym__latex_span_start] = ACTIONS(201), - [sym__single_quote_open] = ACTIONS(203), - [sym__double_quote_open] = ACTIONS(205), - [sym__superscript_open] = ACTIONS(207), - [sym__subscript_open] = ACTIONS(209), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(211), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(213), - [sym__cite_author_in_text] = ACTIONS(215), - [sym__cite_suppress_author] = ACTIONS(217), - [sym__shortcode_open_escaped] = ACTIONS(219), - [sym__shortcode_open] = ACTIONS(221), - [sym__unclosed_span] = ACTIONS(161), + [sym_backslash_escape] = STATE(373), + [sym_commonmark_attribute] = STATE(373), + [sym_code_span] = STATE(373), + [sym_latex_span] = STATE(373), + [sym_insert] = STATE(373), + [sym_delete] = STATE(373), + [sym_highlight] = STATE(373), + [sym_edit_comment] = STATE(373), + [sym_superscript] = STATE(373), + [sym_subscript] = STATE(373), + [sym_strikeout] = STATE(373), + [sym_quoted_span] = STATE(373), + [sym_inline_note] = STATE(373), + [sym_citation] = STATE(373), + [sym_shortcode_escaped] = STATE(373), + [sym_shortcode] = STATE(373), + [sym_note_reference] = STATE(373), + [sym__link_text] = STATE(522), + [sym__link_text_non_empty] = STATE(523), + [sym_inline_link] = STATE(98), + [sym_image] = STATE(373), + [sym__image_inline_link] = STATE(1265), + [sym__image_description] = STATE(2331), + [sym__image_description_non_empty] = STATE(2331), + [sym_hard_line_break] = STATE(373), + [sym__whitespace] = STATE(1262), + [sym__word] = STATE(1262), + [sym__soft_line_break] = STATE(1267), + [sym__inline_base] = STATE(98), + [sym__text_base] = STATE(373), + [sym__inline_element_no_star] = STATE(98), + [aux_sym__inline_no_star] = STATE(98), + [sym__emphasis_star] = STATE(1172), + [sym__strong_emphasis_star] = STATE(98), + [sym__emphasis_underscore] = STATE(1147), + [sym__strong_emphasis_underscore] = STATE(98), + [aux_sym__inline_base_repeat1] = STATE(373), + [sym__backslash_escape] = ACTIONS(145), + [sym_entity_reference] = ACTIONS(148), + [sym_numeric_character_reference] = ACTIONS(148), + [anon_sym_LT] = ACTIONS(151), + [anon_sym_GT] = ACTIONS(154), + [anon_sym_BANG] = ACTIONS(157), + [anon_sym_DQUOTE] = ACTIONS(154), + [anon_sym_POUND] = ACTIONS(154), + [anon_sym_DOLLAR] = ACTIONS(154), + [anon_sym_PERCENT] = ACTIONS(154), + [anon_sym_AMP] = ACTIONS(151), + [anon_sym_SQUOTE] = ACTIONS(154), + [anon_sym_STAR] = ACTIONS(154), + [anon_sym_PLUS] = ACTIONS(154), + [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(154), + [anon_sym_COLON] = ACTIONS(154), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_EQ] = ACTIONS(154), + [anon_sym_QMARK] = ACTIONS(154), + [anon_sym_LBRACK] = ACTIONS(160), + [anon_sym_BSLASH] = ACTIONS(163), + [anon_sym_CARET] = ACTIONS(151), + [anon_sym__] = ACTIONS(154), + [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_LBRACE] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(154), + [anon_sym_TILDE] = ACTIONS(154), + [anon_sym_LPAREN] = ACTIONS(154), + [anon_sym_RPAREN] = ACTIONS(154), + [sym__newline_token] = ACTIONS(169), + [aux_sym_insert_token1] = ACTIONS(172), + [aux_sym_delete_token1] = ACTIONS(175), + [aux_sym_highlight_token1] = ACTIONS(178), + [aux_sym_edit_comment_token1] = ACTIONS(181), + [anon_sym_CARET_LBRACK] = ACTIONS(184), + [anon_sym_LBRACK_CARET] = ACTIONS(187), + [sym_uri_autolink] = ACTIONS(148), + [sym_email_autolink] = ACTIONS(148), + [sym__whitespace_ge_2] = ACTIONS(190), + [aux_sym__whitespace_token1] = ACTIONS(193), + [sym__word_no_digit] = ACTIONS(196), + [sym__digits] = ACTIONS(196), + [anon_sym_DASH_DASH] = ACTIONS(199), + [anon_sym_DASH_DASH_DASH] = ACTIONS(196), + [anon_sym_DOT_DOT_DOT] = ACTIONS(196), + [sym__code_span_start] = ACTIONS(202), + [sym__emphasis_open_star] = ACTIONS(205), + [sym__emphasis_open_underscore] = ACTIONS(208), + [sym__emphasis_close_underscore] = ACTIONS(211), + [sym__last_token_punctuation] = ACTIONS(213), + [sym__strikeout_open] = ACTIONS(215), + [sym__latex_span_start] = ACTIONS(218), + [sym__single_quote_open] = ACTIONS(221), + [sym__double_quote_open] = ACTIONS(224), + [sym__superscript_open] = ACTIONS(227), + [sym__subscript_open] = ACTIONS(230), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(233), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(236), + [sym__cite_author_in_text] = ACTIONS(239), + [sym__cite_suppress_author] = ACTIONS(242), + [sym__shortcode_open_escaped] = ACTIONS(245), + [sym__shortcode_open] = ACTIONS(248), + [sym__unclosed_span] = ACTIONS(148), }, [STATE(4)] = { - [sym_backslash_escape] = STATE(274), - [sym_commonmark_attribute] = STATE(274), - [sym_code_span] = STATE(274), - [sym_latex_span] = STATE(274), - [sym_superscript] = STATE(274), - [sym_subscript] = STATE(274), - [sym_strikeout] = STATE(274), - [sym_quoted_span] = STATE(274), - [sym_inline_note] = STATE(274), - [sym_citation] = STATE(274), - [sym_shortcode_escaped] = STATE(274), - [sym_shortcode] = STATE(274), - [sym_note_reference] = STATE(274), - [sym__link_text] = STATE(351), - [sym__link_text_non_empty] = STATE(352), - [sym_inline_link] = STATE(61), - [sym_image] = STATE(274), - [sym__image_inline_link] = STATE(894), - [sym__image_description] = STATE(2008), - [sym__image_description_non_empty] = STATE(2008), - [sym_hard_line_break] = STATE(274), - [sym__whitespace] = STATE(882), - [sym__word] = STATE(882), - [sym__soft_line_break] = STATE(898), - [sym__inline_base] = STATE(61), - [sym__text_base] = STATE(274), - [sym__inline_element_no_underscore] = STATE(61), - [aux_sym__inline_no_underscore] = STATE(61), - [sym__emphasis_star] = STATE(711), - [sym__strong_emphasis_star] = STATE(61), - [sym__emphasis_underscore] = STATE(981), - [sym__strong_emphasis_underscore] = STATE(61), - [aux_sym__inline_base_repeat1] = STATE(274), - [sym__backslash_escape] = ACTIONS(223), - [sym_entity_reference] = ACTIONS(226), - [sym_numeric_character_reference] = ACTIONS(226), - [anon_sym_LT] = ACTIONS(229), - [anon_sym_GT] = ACTIONS(232), - [anon_sym_BANG] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(232), - [anon_sym_POUND] = ACTIONS(232), - [anon_sym_DOLLAR] = ACTIONS(232), - [anon_sym_PERCENT] = ACTIONS(232), - [anon_sym_AMP] = ACTIONS(229), - [anon_sym_SQUOTE] = ACTIONS(232), - [anon_sym_STAR] = ACTIONS(232), - [anon_sym_PLUS] = ACTIONS(232), - [anon_sym_COMMA] = ACTIONS(232), - [anon_sym_DASH] = ACTIONS(229), - [anon_sym_DOT] = ACTIONS(229), - [anon_sym_SLASH] = ACTIONS(232), - [anon_sym_COLON] = ACTIONS(232), - [anon_sym_SEMI] = ACTIONS(232), - [anon_sym_EQ] = ACTIONS(232), - [anon_sym_QMARK] = ACTIONS(232), - [anon_sym_LBRACK] = ACTIONS(238), - [anon_sym_BSLASH] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(229), - [anon_sym__] = ACTIONS(232), - [anon_sym_BQUOTE] = ACTIONS(232), - [anon_sym_LBRACE] = ACTIONS(244), - [anon_sym_PIPE] = ACTIONS(232), - [anon_sym_TILDE] = ACTIONS(232), - [anon_sym_LPAREN] = ACTIONS(232), - [anon_sym_RPAREN] = ACTIONS(232), - [sym__newline_token] = ACTIONS(247), - [anon_sym_CARET_LBRACK] = ACTIONS(250), - [anon_sym_LBRACK_CARET] = ACTIONS(253), - [sym_uri_autolink] = ACTIONS(226), - [sym_email_autolink] = ACTIONS(226), - [sym__whitespace_ge_2] = ACTIONS(256), - [aux_sym__whitespace_token1] = ACTIONS(259), - [sym__word_no_digit] = ACTIONS(262), - [sym__digits] = ACTIONS(262), - [anon_sym_DASH_DASH] = ACTIONS(265), - [anon_sym_DASH_DASH_DASH] = ACTIONS(262), - [anon_sym_DOT_DOT_DOT] = ACTIONS(262), - [sym__code_span_start] = ACTIONS(268), - [sym__emphasis_open_star] = ACTIONS(271), - [sym__emphasis_open_underscore] = ACTIONS(274), - [sym__emphasis_close_star] = ACTIONS(277), - [sym__last_token_punctuation] = ACTIONS(279), - [sym__strikeout_open] = ACTIONS(281), - [sym__latex_span_start] = ACTIONS(284), - [sym__single_quote_open] = ACTIONS(287), - [sym__double_quote_open] = ACTIONS(290), - [sym__superscript_open] = ACTIONS(293), - [sym__subscript_open] = ACTIONS(296), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(299), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(302), - [sym__cite_author_in_text] = ACTIONS(305), - [sym__cite_suppress_author] = ACTIONS(308), - [sym__shortcode_open_escaped] = ACTIONS(311), - [sym__shortcode_open] = ACTIONS(314), - [sym__unclosed_span] = ACTIONS(226), + [sym_backslash_escape] = STATE(379), + [sym_commonmark_attribute] = STATE(379), + [sym_code_span] = STATE(379), + [sym_latex_span] = STATE(379), + [sym_insert] = STATE(379), + [sym_delete] = STATE(379), + [sym_highlight] = STATE(379), + [sym_edit_comment] = STATE(379), + [sym_superscript] = STATE(379), + [sym_subscript] = STATE(379), + [sym_strikeout] = STATE(379), + [sym_quoted_span] = STATE(379), + [sym_inline_note] = STATE(379), + [sym_citation] = STATE(379), + [sym_shortcode_escaped] = STATE(379), + [sym_shortcode] = STATE(379), + [sym_note_reference] = STATE(379), + [sym__link_text] = STATE(545), + [sym__link_text_non_empty] = STATE(546), + [sym_inline_link] = STATE(71), + [sym_image] = STATE(379), + [sym__image_inline_link] = STATE(1390), + [sym__image_description] = STATE(2363), + [sym__image_description_non_empty] = STATE(2363), + [sym_hard_line_break] = STATE(379), + [sym__whitespace] = STATE(1385), + [sym__word] = STATE(1385), + [sym__soft_line_break] = STATE(1391), + [sym__inline_base] = STATE(71), + [sym__text_base] = STATE(379), + [sym__inline_element_no_underscore] = STATE(71), + [aux_sym__inline_no_underscore] = STATE(71), + [sym__emphasis_star] = STATE(1168), + [sym__strong_emphasis_star] = STATE(71), + [sym__emphasis_underscore] = STATE(1170), + [sym__strong_emphasis_underscore] = STATE(71), + [aux_sym__inline_base_repeat1] = STATE(379), + [ts_builtin_sym_end] = ACTIONS(251), + [sym__backslash_escape] = ACTIONS(253), + [sym_entity_reference] = ACTIONS(256), + [sym_numeric_character_reference] = ACTIONS(256), + [anon_sym_LT] = ACTIONS(259), + [anon_sym_GT] = ACTIONS(262), + [anon_sym_BANG] = ACTIONS(265), + [anon_sym_DQUOTE] = ACTIONS(262), + [anon_sym_POUND] = ACTIONS(262), + [anon_sym_DOLLAR] = ACTIONS(262), + [anon_sym_PERCENT] = ACTIONS(262), + [anon_sym_AMP] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(262), + [anon_sym_STAR] = ACTIONS(262), + [anon_sym_PLUS] = ACTIONS(262), + [anon_sym_COMMA] = ACTIONS(262), + [anon_sym_DASH] = ACTIONS(259), + [anon_sym_DOT] = ACTIONS(259), + [anon_sym_SLASH] = ACTIONS(262), + [anon_sym_COLON] = ACTIONS(262), + [anon_sym_SEMI] = ACTIONS(262), + [anon_sym_EQ] = ACTIONS(262), + [anon_sym_QMARK] = ACTIONS(262), + [anon_sym_LBRACK] = ACTIONS(268), + [anon_sym_BSLASH] = ACTIONS(271), + [anon_sym_CARET] = ACTIONS(259), + [anon_sym__] = ACTIONS(262), + [anon_sym_BQUOTE] = ACTIONS(262), + [anon_sym_LBRACE] = ACTIONS(274), + [anon_sym_PIPE] = ACTIONS(262), + [anon_sym_TILDE] = ACTIONS(262), + [anon_sym_LPAREN] = ACTIONS(262), + [anon_sym_RPAREN] = ACTIONS(262), + [sym__newline_token] = ACTIONS(277), + [aux_sym_insert_token1] = ACTIONS(280), + [aux_sym_delete_token1] = ACTIONS(283), + [aux_sym_highlight_token1] = ACTIONS(286), + [aux_sym_edit_comment_token1] = ACTIONS(289), + [anon_sym_CARET_LBRACK] = ACTIONS(292), + [anon_sym_LBRACK_CARET] = ACTIONS(295), + [sym_uri_autolink] = ACTIONS(256), + [sym_email_autolink] = ACTIONS(256), + [sym__whitespace_ge_2] = ACTIONS(298), + [aux_sym__whitespace_token1] = ACTIONS(301), + [sym__word_no_digit] = ACTIONS(304), + [sym__digits] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(307), + [anon_sym_DASH_DASH_DASH] = ACTIONS(304), + [anon_sym_DOT_DOT_DOT] = ACTIONS(304), + [sym__code_span_start] = ACTIONS(310), + [sym__emphasis_open_star] = ACTIONS(313), + [sym__emphasis_open_underscore] = ACTIONS(316), + [sym__last_token_punctuation] = ACTIONS(319), + [sym__strikeout_open] = ACTIONS(321), + [sym__latex_span_start] = ACTIONS(324), + [sym__single_quote_open] = ACTIONS(327), + [sym__double_quote_open] = ACTIONS(330), + [sym__superscript_open] = ACTIONS(333), + [sym__subscript_open] = ACTIONS(336), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(339), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(342), + [sym__cite_author_in_text] = ACTIONS(345), + [sym__cite_suppress_author] = ACTIONS(348), + [sym__shortcode_open_escaped] = ACTIONS(351), + [sym__shortcode_open] = ACTIONS(354), + [sym__unclosed_span] = ACTIONS(256), }, [STATE(5)] = { - [sym_backslash_escape] = STATE(261), - [sym_commonmark_attribute] = STATE(261), - [sym_code_span] = STATE(261), - [sym_latex_span] = STATE(261), - [sym_superscript] = STATE(261), - [sym_subscript] = STATE(261), - [sym_strikeout] = STATE(261), - [sym_quoted_span] = STATE(261), - [sym_inline_note] = STATE(261), - [sym_citation] = STATE(261), - [sym_shortcode_escaped] = STATE(261), - [sym_shortcode] = STATE(261), - [sym_note_reference] = STATE(261), - [sym__link_text] = STATE(322), - [sym__link_text_non_empty] = STATE(323), - [sym_inline_link] = STATE(77), - [sym_image] = STATE(261), - [sym__image_inline_link] = STATE(595), - [sym__image_description] = STATE(1972), - [sym__image_description_non_empty] = STATE(1972), - [sym_hard_line_break] = STATE(261), - [sym__whitespace] = STATE(587), - [sym__word] = STATE(587), - [sym__soft_line_break] = STATE(597), - [sym__inline_base] = STATE(77), - [sym__text_base] = STATE(261), - [sym__inline_element_no_star] = STATE(77), - [aux_sym__inline_no_star] = STATE(77), - [sym__emphasis_star] = STATE(998), - [sym__strong_emphasis_star] = STATE(77), - [sym__emphasis_underscore] = STATE(544), - [sym__strong_emphasis_underscore] = STATE(77), - [aux_sym__inline_base_repeat1] = STATE(261), - [sym__backslash_escape] = ACTIONS(317), - [sym_entity_reference] = ACTIONS(320), - [sym_numeric_character_reference] = ACTIONS(320), - [anon_sym_LT] = ACTIONS(323), - [anon_sym_GT] = ACTIONS(326), - [anon_sym_BANG] = ACTIONS(329), - [anon_sym_DQUOTE] = ACTIONS(326), - [anon_sym_POUND] = ACTIONS(326), - [anon_sym_DOLLAR] = ACTIONS(326), - [anon_sym_PERCENT] = ACTIONS(326), - [anon_sym_AMP] = ACTIONS(323), - [anon_sym_SQUOTE] = ACTIONS(326), - [anon_sym_STAR] = ACTIONS(326), - [anon_sym_PLUS] = ACTIONS(326), - [anon_sym_COMMA] = ACTIONS(326), - [anon_sym_DASH] = ACTIONS(323), - [anon_sym_DOT] = ACTIONS(323), - [anon_sym_SLASH] = ACTIONS(326), - [anon_sym_COLON] = ACTIONS(326), - [anon_sym_SEMI] = ACTIONS(326), - [anon_sym_EQ] = ACTIONS(326), - [anon_sym_QMARK] = ACTIONS(326), - [anon_sym_LBRACK] = ACTIONS(332), - [anon_sym_BSLASH] = ACTIONS(335), - [anon_sym_CARET] = ACTIONS(323), - [anon_sym__] = ACTIONS(326), - [anon_sym_BQUOTE] = ACTIONS(326), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_PIPE] = ACTIONS(326), - [anon_sym_TILDE] = ACTIONS(326), - [anon_sym_LPAREN] = ACTIONS(326), - [anon_sym_RPAREN] = ACTIONS(326), - [sym__newline_token] = ACTIONS(341), - [anon_sym_CARET_LBRACK] = ACTIONS(344), - [anon_sym_LBRACK_CARET] = ACTIONS(347), - [sym_uri_autolink] = ACTIONS(320), - [sym_email_autolink] = ACTIONS(320), - [sym__whitespace_ge_2] = ACTIONS(350), - [aux_sym__whitespace_token1] = ACTIONS(353), - [sym__word_no_digit] = ACTIONS(356), - [sym__digits] = ACTIONS(356), - [anon_sym_DASH_DASH] = ACTIONS(359), - [anon_sym_DASH_DASH_DASH] = ACTIONS(356), - [anon_sym_DOT_DOT_DOT] = ACTIONS(356), - [sym__code_span_start] = ACTIONS(362), - [sym__emphasis_open_star] = ACTIONS(365), - [sym__emphasis_open_underscore] = ACTIONS(368), - [sym__emphasis_close_underscore] = ACTIONS(371), - [sym__last_token_punctuation] = ACTIONS(373), - [sym__strikeout_open] = ACTIONS(375), - [sym__latex_span_start] = ACTIONS(378), - [sym__single_quote_open] = ACTIONS(381), - [sym__double_quote_open] = ACTIONS(384), - [sym__superscript_open] = ACTIONS(387), - [sym__subscript_open] = ACTIONS(390), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(393), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(396), - [sym__cite_author_in_text] = ACTIONS(399), - [sym__cite_suppress_author] = ACTIONS(402), - [sym__shortcode_open_escaped] = ACTIONS(405), - [sym__shortcode_open] = ACTIONS(408), - [sym__unclosed_span] = ACTIONS(320), + [sym_backslash_escape] = STATE(379), + [sym_commonmark_attribute] = STATE(379), + [sym_code_span] = STATE(379), + [sym_latex_span] = STATE(379), + [sym_insert] = STATE(379), + [sym_delete] = STATE(379), + [sym_highlight] = STATE(379), + [sym_edit_comment] = STATE(379), + [sym_superscript] = STATE(379), + [sym_subscript] = STATE(379), + [sym_strikeout] = STATE(379), + [sym_quoted_span] = STATE(379), + [sym_inline_note] = STATE(379), + [sym_citation] = STATE(379), + [sym_shortcode_escaped] = STATE(379), + [sym_shortcode] = STATE(379), + [sym_note_reference] = STATE(379), + [sym__link_text] = STATE(545), + [sym__link_text_non_empty] = STATE(546), + [sym_inline_link] = STATE(73), + [sym_image] = STATE(379), + [sym__image_inline_link] = STATE(1390), + [sym__image_description] = STATE(2363), + [sym__image_description_non_empty] = STATE(2363), + [sym_hard_line_break] = STATE(379), + [sym__whitespace] = STATE(1385), + [sym__word] = STATE(1385), + [sym__soft_line_break] = STATE(1391), + [sym__inline_base] = STATE(73), + [sym__text_base] = STATE(379), + [sym__inline_element_no_underscore] = STATE(73), + [aux_sym__inline_no_underscore] = STATE(73), + [sym__emphasis_star] = STATE(1168), + [sym__strong_emphasis_star] = STATE(73), + [sym__emphasis_underscore] = STATE(1140), + [sym__strong_emphasis_underscore] = STATE(73), + [aux_sym__inline_base_repeat1] = STATE(379), + [sym__backslash_escape] = ACTIONS(357), + [sym_entity_reference] = ACTIONS(360), + [sym_numeric_character_reference] = ACTIONS(360), + [anon_sym_LT] = ACTIONS(363), + [anon_sym_GT] = ACTIONS(366), + [anon_sym_BANG] = ACTIONS(369), + [anon_sym_DQUOTE] = ACTIONS(366), + [anon_sym_POUND] = ACTIONS(366), + [anon_sym_DOLLAR] = ACTIONS(366), + [anon_sym_PERCENT] = ACTIONS(366), + [anon_sym_AMP] = ACTIONS(363), + [anon_sym_SQUOTE] = ACTIONS(366), + [anon_sym_STAR] = ACTIONS(366), + [anon_sym_PLUS] = ACTIONS(366), + [anon_sym_COMMA] = ACTIONS(366), + [anon_sym_DASH] = ACTIONS(363), + [anon_sym_DOT] = ACTIONS(363), + [anon_sym_SLASH] = ACTIONS(366), + [anon_sym_COLON] = ACTIONS(366), + [anon_sym_SEMI] = ACTIONS(366), + [anon_sym_EQ] = ACTIONS(366), + [anon_sym_QMARK] = ACTIONS(366), + [anon_sym_LBRACK] = ACTIONS(372), + [anon_sym_BSLASH] = ACTIONS(375), + [anon_sym_CARET] = ACTIONS(363), + [anon_sym__] = ACTIONS(366), + [anon_sym_BQUOTE] = ACTIONS(366), + [anon_sym_LBRACE] = ACTIONS(378), + [anon_sym_PIPE] = ACTIONS(366), + [anon_sym_TILDE] = ACTIONS(366), + [anon_sym_LPAREN] = ACTIONS(366), + [anon_sym_RPAREN] = ACTIONS(366), + [sym__newline_token] = ACTIONS(381), + [aux_sym_insert_token1] = ACTIONS(384), + [aux_sym_delete_token1] = ACTIONS(387), + [aux_sym_highlight_token1] = ACTIONS(390), + [aux_sym_edit_comment_token1] = ACTIONS(393), + [anon_sym_CARET_LBRACK] = ACTIONS(396), + [anon_sym_LBRACK_CARET] = ACTIONS(399), + [sym_uri_autolink] = ACTIONS(360), + [sym_email_autolink] = ACTIONS(360), + [sym__whitespace_ge_2] = ACTIONS(402), + [aux_sym__whitespace_token1] = ACTIONS(405), + [sym__word_no_digit] = ACTIONS(408), + [sym__digits] = ACTIONS(408), + [anon_sym_DASH_DASH] = ACTIONS(411), + [anon_sym_DASH_DASH_DASH] = ACTIONS(408), + [anon_sym_DOT_DOT_DOT] = ACTIONS(408), + [sym__code_span_start] = ACTIONS(414), + [sym__emphasis_open_star] = ACTIONS(417), + [sym__emphasis_open_underscore] = ACTIONS(420), + [sym__emphasis_close_star] = ACTIONS(423), + [sym__last_token_punctuation] = ACTIONS(425), + [sym__strikeout_open] = ACTIONS(427), + [sym__latex_span_start] = ACTIONS(430), + [sym__single_quote_open] = ACTIONS(433), + [sym__double_quote_open] = ACTIONS(436), + [sym__superscript_open] = ACTIONS(439), + [sym__subscript_open] = ACTIONS(442), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(445), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(448), + [sym__cite_author_in_text] = ACTIONS(451), + [sym__cite_suppress_author] = ACTIONS(454), + [sym__shortcode_open_escaped] = ACTIONS(457), + [sym__shortcode_open] = ACTIONS(460), + [sym__unclosed_span] = ACTIONS(360), }, [STATE(6)] = { - [sym_backslash_escape] = STATE(261), - [sym_commonmark_attribute] = STATE(261), - [sym_code_span] = STATE(261), - [sym_latex_span] = STATE(261), - [sym_superscript] = STATE(261), - [sym_subscript] = STATE(261), - [sym_strikeout] = STATE(261), - [sym_quoted_span] = STATE(261), - [sym_inline_note] = STATE(261), - [sym_citation] = STATE(261), - [sym_shortcode_escaped] = STATE(261), - [sym_shortcode] = STATE(261), - [sym_note_reference] = STATE(261), - [sym__link_text] = STATE(322), - [sym__link_text_non_empty] = STATE(323), - [sym_inline_link] = STATE(146), - [sym_image] = STATE(261), - [sym__image_inline_link] = STATE(595), - [sym__image_description] = STATE(1972), - [sym__image_description_non_empty] = STATE(1972), - [sym_hard_line_break] = STATE(261), - [sym__whitespace] = STATE(587), - [sym__word] = STATE(587), - [sym__soft_line_break] = STATE(597), - [sym__inline_base] = STATE(146), - [sym__text_base] = STATE(261), - [sym__inline_element_no_star] = STATE(146), - [aux_sym__inline_no_star] = STATE(146), - [sym__emphasis_star] = STATE(1131), - [sym__strong_emphasis_star] = STATE(146), - [sym__emphasis_underscore] = STATE(544), - [sym__strong_emphasis_underscore] = STATE(146), - [aux_sym__inline_base_repeat1] = STATE(261), - [ts_builtin_sym_end] = ACTIONS(65), - [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__] = ACTIONS(420), - [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), - [anon_sym_CARET_LBRACK] = ACTIONS(438), - [anon_sym_LBRACK_CARET] = ACTIONS(441), - [sym_uri_autolink] = ACTIONS(414), - [sym_email_autolink] = ACTIONS(414), - [sym__whitespace_ge_2] = ACTIONS(444), - [aux_sym__whitespace_token1] = ACTIONS(447), - [sym__word_no_digit] = ACTIONS(450), - [sym__digits] = ACTIONS(450), - [anon_sym_DASH_DASH] = ACTIONS(453), - [anon_sym_DASH_DASH_DASH] = ACTIONS(450), - [anon_sym_DOT_DOT_DOT] = ACTIONS(450), - [sym__code_span_start] = ACTIONS(456), - [sym__emphasis_open_star] = ACTIONS(459), - [sym__emphasis_open_underscore] = ACTIONS(462), - [sym__last_token_punctuation] = ACTIONS(465), - [sym__strikeout_open] = ACTIONS(467), - [sym__latex_span_start] = ACTIONS(470), - [sym__single_quote_open] = ACTIONS(473), - [sym__double_quote_open] = ACTIONS(476), - [sym__superscript_open] = ACTIONS(479), - [sym__subscript_open] = ACTIONS(482), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(485), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(488), - [sym__cite_author_in_text] = ACTIONS(491), - [sym__cite_suppress_author] = ACTIONS(494), - [sym__shortcode_open_escaped] = ACTIONS(497), - [sym__shortcode_open] = ACTIONS(500), - [sym__unclosed_span] = ACTIONS(414), + [sym_backslash_escape] = STATE(373), + [sym_commonmark_attribute] = STATE(373), + [sym_code_span] = STATE(373), + [sym_latex_span] = STATE(373), + [sym_insert] = STATE(373), + [sym_delete] = STATE(373), + [sym_highlight] = STATE(373), + [sym_edit_comment] = STATE(373), + [sym_superscript] = STATE(373), + [sym_subscript] = STATE(373), + [sym_strikeout] = STATE(373), + [sym_quoted_span] = STATE(373), + [sym_inline_note] = STATE(373), + [sym_citation] = STATE(373), + [sym_shortcode_escaped] = STATE(373), + [sym_shortcode] = STATE(373), + [sym_note_reference] = STATE(373), + [sym__link_text] = STATE(522), + [sym__link_text_non_empty] = STATE(523), + [sym_inline_link] = STATE(124), + [sym_image] = STATE(373), + [sym__image_inline_link] = STATE(1265), + [sym__image_description] = STATE(2331), + [sym__image_description_non_empty] = STATE(2331), + [sym_hard_line_break] = STATE(373), + [sym__whitespace] = STATE(1262), + [sym__word] = STATE(1262), + [sym__soft_line_break] = STATE(1267), + [sym__inline_base] = STATE(124), + [sym__text_base] = STATE(373), + [sym__inline_element_no_star] = STATE(124), + [aux_sym__inline_no_star] = STATE(124), + [sym__emphasis_star] = STATE(1206), + [sym__strong_emphasis_star] = STATE(124), + [sym__emphasis_underscore] = STATE(1147), + [sym__strong_emphasis_underscore] = STATE(124), + [aux_sym__inline_base_repeat1] = STATE(373), + [sym__backslash_escape] = ACTIONS(463), + [sym_entity_reference] = ACTIONS(466), + [sym_numeric_character_reference] = ACTIONS(466), + [anon_sym_LT] = ACTIONS(469), + [anon_sym_GT] = ACTIONS(472), + [anon_sym_BANG] = ACTIONS(475), + [anon_sym_DQUOTE] = ACTIONS(472), + [anon_sym_POUND] = ACTIONS(472), + [anon_sym_DOLLAR] = ACTIONS(472), + [anon_sym_PERCENT] = ACTIONS(472), + [anon_sym_AMP] = ACTIONS(469), + [anon_sym_SQUOTE] = ACTIONS(472), + [anon_sym_STAR] = ACTIONS(472), + [anon_sym_PLUS] = ACTIONS(472), + [anon_sym_COMMA] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(469), + [anon_sym_DOT] = ACTIONS(469), + [anon_sym_SLASH] = ACTIONS(472), + [anon_sym_COLON] = ACTIONS(472), + [anon_sym_SEMI] = ACTIONS(472), + [anon_sym_EQ] = ACTIONS(472), + [anon_sym_QMARK] = ACTIONS(472), + [anon_sym_LBRACK] = ACTIONS(478), + [anon_sym_BSLASH] = ACTIONS(481), + [anon_sym_CARET] = ACTIONS(469), + [anon_sym__] = ACTIONS(472), + [anon_sym_BQUOTE] = ACTIONS(472), + [anon_sym_LBRACE] = ACTIONS(484), + [anon_sym_PIPE] = ACTIONS(472), + [anon_sym_TILDE] = ACTIONS(472), + [anon_sym_LPAREN] = ACTIONS(472), + [anon_sym_RPAREN] = ACTIONS(472), + [sym__newline_token] = ACTIONS(487), + [aux_sym_insert_token1] = ACTIONS(490), + [aux_sym_delete_token1] = ACTIONS(493), + [aux_sym_highlight_token1] = ACTIONS(496), + [aux_sym_edit_comment_token1] = ACTIONS(499), + [anon_sym_CARET_LBRACK] = ACTIONS(502), + [anon_sym_LBRACK_CARET] = ACTIONS(505), + [sym_uri_autolink] = ACTIONS(466), + [sym_email_autolink] = ACTIONS(466), + [sym__whitespace_ge_2] = ACTIONS(508), + [aux_sym__whitespace_token1] = ACTIONS(511), + [sym__word_no_digit] = ACTIONS(514), + [sym__digits] = ACTIONS(514), + [anon_sym_DASH_DASH] = ACTIONS(517), + [anon_sym_DASH_DASH_DASH] = ACTIONS(514), + [anon_sym_DOT_DOT_DOT] = ACTIONS(514), + [sym__code_span_start] = ACTIONS(520), + [sym__emphasis_open_star] = ACTIONS(523), + [sym__emphasis_open_underscore] = ACTIONS(526), + [sym__last_token_punctuation] = ACTIONS(529), + [sym__strikeout_open] = ACTIONS(531), + [sym__strikeout_close] = ACTIONS(251), + [sym__latex_span_start] = ACTIONS(534), + [sym__single_quote_open] = ACTIONS(537), + [sym__double_quote_open] = ACTIONS(540), + [sym__superscript_open] = ACTIONS(543), + [sym__subscript_open] = ACTIONS(546), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(549), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(552), + [sym__cite_author_in_text] = ACTIONS(555), + [sym__cite_suppress_author] = ACTIONS(558), + [sym__shortcode_open_escaped] = ACTIONS(561), + [sym__shortcode_open] = ACTIONS(564), + [sym__unclosed_span] = ACTIONS(466), }, [STATE(7)] = { - [sym_backslash_escape] = STATE(261), - [sym_commonmark_attribute] = STATE(261), - [sym_code_span] = STATE(261), - [sym_latex_span] = STATE(261), - [sym_superscript] = STATE(261), - [sym_subscript] = STATE(261), - [sym_strikeout] = STATE(261), - [sym_quoted_span] = STATE(261), - [sym_inline_note] = STATE(261), - [sym_citation] = STATE(261), - [sym_shortcode_escaped] = STATE(261), - [sym_shortcode] = STATE(261), - [sym_note_reference] = STATE(261), - [sym__link_text] = STATE(322), - [sym__link_text_non_empty] = STATE(323), - [sym_inline_link] = STATE(95), - [sym_image] = STATE(261), - [sym__image_inline_link] = STATE(595), - [sym__image_description] = STATE(1972), - [sym__image_description_non_empty] = STATE(1972), - [sym_hard_line_break] = STATE(261), - [sym__whitespace] = STATE(587), - [sym__word] = STATE(587), - [sym__soft_line_break] = STATE(597), - [sym__inline_base] = STATE(95), - [sym__text_base] = STATE(261), - [sym__inline_element_no_star] = STATE(95), - [aux_sym__inline_no_star] = STATE(95), - [sym__emphasis_star] = STATE(1021), - [sym__strong_emphasis_star] = STATE(95), - [sym__emphasis_underscore] = STATE(544), - [sym__strong_emphasis_underscore] = STATE(95), - [aux_sym__inline_base_repeat1] = STATE(261), - [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__] = ACTIONS(420), - [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), - [anon_sym_CARET_LBRACK] = ACTIONS(438), - [anon_sym_LBRACK_CARET] = ACTIONS(441), - [sym_uri_autolink] = ACTIONS(414), - [sym_email_autolink] = ACTIONS(414), - [sym__whitespace_ge_2] = ACTIONS(444), - [aux_sym__whitespace_token1] = ACTIONS(447), - [sym__word_no_digit] = ACTIONS(450), - [sym__digits] = ACTIONS(450), - [anon_sym_DASH_DASH] = ACTIONS(453), - [anon_sym_DASH_DASH_DASH] = ACTIONS(450), - [anon_sym_DOT_DOT_DOT] = ACTIONS(450), - [sym__code_span_start] = ACTIONS(456), - [sym__emphasis_open_star] = ACTIONS(459), - [sym__emphasis_open_underscore] = ACTIONS(462), - [sym__last_token_punctuation] = ACTIONS(503), - [sym__strikeout_open] = ACTIONS(467), - [sym__strikeout_close] = ACTIONS(65), - [sym__latex_span_start] = ACTIONS(470), - [sym__single_quote_open] = ACTIONS(473), - [sym__double_quote_open] = ACTIONS(476), - [sym__superscript_open] = ACTIONS(479), - [sym__subscript_open] = ACTIONS(482), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(485), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(488), - [sym__cite_author_in_text] = ACTIONS(491), - [sym__cite_suppress_author] = ACTIONS(494), - [sym__shortcode_open_escaped] = ACTIONS(497), - [sym__shortcode_open] = ACTIONS(500), - [sym__unclosed_span] = ACTIONS(414), + [sym_backslash_escape] = STATE(379), + [sym_commonmark_attribute] = STATE(379), + [sym_code_span] = STATE(379), + [sym_latex_span] = STATE(379), + [sym_insert] = STATE(379), + [sym_delete] = STATE(379), + [sym_highlight] = STATE(379), + [sym_edit_comment] = STATE(379), + [sym_superscript] = STATE(379), + [sym_subscript] = STATE(379), + [sym_strikeout] = STATE(379), + [sym_quoted_span] = STATE(379), + [sym_inline_note] = STATE(379), + [sym_citation] = STATE(379), + [sym_shortcode_escaped] = STATE(379), + [sym_shortcode] = STATE(379), + [sym_note_reference] = STATE(379), + [sym__link_text] = STATE(545), + [sym__link_text_non_empty] = STATE(546), + [sym_inline_link] = STATE(125), + [sym_image] = STATE(379), + [sym__image_inline_link] = STATE(1390), + [sym__image_description] = STATE(2363), + [sym__image_description_non_empty] = STATE(2363), + [sym_hard_line_break] = STATE(379), + [sym__whitespace] = STATE(1385), + [sym__word] = STATE(1385), + [sym__soft_line_break] = STATE(1391), + [sym__inline_base] = STATE(125), + [sym__text_base] = STATE(379), + [sym__inline_element_no_underscore] = STATE(125), + [aux_sym__inline_no_underscore] = STATE(125), + [sym__emphasis_star] = STATE(1168), + [sym__strong_emphasis_star] = STATE(125), + [sym__emphasis_underscore] = STATE(1208), + [sym__strong_emphasis_underscore] = STATE(125), + [aux_sym__inline_base_repeat1] = STATE(379), + [sym__backslash_escape] = ACTIONS(253), + [sym_entity_reference] = ACTIONS(256), + [sym_numeric_character_reference] = ACTIONS(256), + [anon_sym_LT] = ACTIONS(259), + [anon_sym_GT] = ACTIONS(262), + [anon_sym_BANG] = ACTIONS(265), + [anon_sym_DQUOTE] = ACTIONS(262), + [anon_sym_POUND] = ACTIONS(262), + [anon_sym_DOLLAR] = ACTIONS(262), + [anon_sym_PERCENT] = ACTIONS(262), + [anon_sym_AMP] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(262), + [anon_sym_STAR] = ACTIONS(262), + [anon_sym_PLUS] = ACTIONS(262), + [anon_sym_COMMA] = ACTIONS(262), + [anon_sym_DASH] = ACTIONS(259), + [anon_sym_DOT] = ACTIONS(259), + [anon_sym_SLASH] = ACTIONS(262), + [anon_sym_COLON] = ACTIONS(262), + [anon_sym_SEMI] = ACTIONS(262), + [anon_sym_EQ] = ACTIONS(262), + [anon_sym_QMARK] = ACTIONS(262), + [anon_sym_LBRACK] = ACTIONS(268), + [anon_sym_BSLASH] = ACTIONS(271), + [anon_sym_CARET] = ACTIONS(259), + [anon_sym__] = ACTIONS(262), + [anon_sym_BQUOTE] = ACTIONS(262), + [anon_sym_LBRACE] = ACTIONS(274), + [anon_sym_PIPE] = ACTIONS(262), + [anon_sym_TILDE] = ACTIONS(262), + [anon_sym_LPAREN] = ACTIONS(262), + [anon_sym_RPAREN] = ACTIONS(262), + [sym__newline_token] = ACTIONS(277), + [aux_sym_insert_token1] = ACTIONS(280), + [aux_sym_delete_token1] = ACTIONS(283), + [aux_sym_highlight_token1] = ACTIONS(286), + [aux_sym_edit_comment_token1] = ACTIONS(289), + [anon_sym_CARET_LBRACK] = ACTIONS(292), + [anon_sym_LBRACK_CARET] = ACTIONS(295), + [sym_uri_autolink] = ACTIONS(256), + [sym_email_autolink] = ACTIONS(256), + [sym__whitespace_ge_2] = ACTIONS(298), + [aux_sym__whitespace_token1] = ACTIONS(301), + [sym__word_no_digit] = ACTIONS(304), + [sym__digits] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(307), + [anon_sym_DASH_DASH_DASH] = ACTIONS(304), + [anon_sym_DOT_DOT_DOT] = ACTIONS(304), + [sym__code_span_start] = ACTIONS(310), + [sym__emphasis_open_star] = ACTIONS(313), + [sym__emphasis_open_underscore] = ACTIONS(316), + [sym__last_token_punctuation] = ACTIONS(567), + [sym__strikeout_open] = ACTIONS(321), + [sym__strikeout_close] = ACTIONS(251), + [sym__latex_span_start] = ACTIONS(324), + [sym__single_quote_open] = ACTIONS(327), + [sym__double_quote_open] = ACTIONS(330), + [sym__superscript_open] = ACTIONS(333), + [sym__subscript_open] = ACTIONS(336), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(339), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(342), + [sym__cite_author_in_text] = ACTIONS(345), + [sym__cite_suppress_author] = ACTIONS(348), + [sym__shortcode_open_escaped] = ACTIONS(351), + [sym__shortcode_open] = ACTIONS(354), + [sym__unclosed_span] = ACTIONS(256), }, [STATE(8)] = { - [sym_backslash_escape] = STATE(274), - [sym_commonmark_attribute] = STATE(274), - [sym_code_span] = STATE(274), - [sym_latex_span] = STATE(274), - [sym_superscript] = STATE(274), - [sym_subscript] = STATE(274), - [sym_strikeout] = STATE(274), - [sym_quoted_span] = STATE(274), - [sym_inline_note] = STATE(274), - [sym_citation] = STATE(274), - [sym_shortcode_escaped] = STATE(274), - [sym_shortcode] = STATE(274), - [sym_note_reference] = STATE(274), - [sym__link_text] = STATE(351), - [sym__link_text_non_empty] = STATE(352), - [sym_inline_link] = STATE(96), - [sym_image] = STATE(274), - [sym__image_inline_link] = STATE(894), - [sym__image_description] = STATE(2008), - [sym__image_description_non_empty] = STATE(2008), - [sym_hard_line_break] = STATE(274), - [sym__whitespace] = STATE(882), - [sym__word] = STATE(882), - [sym__soft_line_break] = STATE(898), - [sym__inline_base] = STATE(96), - [sym__text_base] = STATE(274), - [sym__inline_element_no_underscore] = STATE(96), - [aux_sym__inline_no_underscore] = STATE(96), - [sym__emphasis_star] = STATE(711), - [sym__strong_emphasis_star] = STATE(96), - [sym__emphasis_underscore] = STATE(1023), - [sym__strong_emphasis_underscore] = STATE(96), - [aux_sym__inline_base_repeat1] = STATE(274), - [sym__backslash_escape] = ACTIONS(67), - [sym_entity_reference] = ACTIONS(70), - [sym_numeric_character_reference] = ACTIONS(70), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(76), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_DQUOTE] = ACTIONS(76), - [anon_sym_POUND] = ACTIONS(76), - [anon_sym_DOLLAR] = ACTIONS(76), - [anon_sym_PERCENT] = ACTIONS(76), - [anon_sym_AMP] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(76), - [anon_sym_STAR] = ACTIONS(76), - [anon_sym_PLUS] = ACTIONS(76), - [anon_sym_COMMA] = ACTIONS(76), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_DOT] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(76), - [anon_sym_COLON] = ACTIONS(76), - [anon_sym_SEMI] = ACTIONS(76), - [anon_sym_EQ] = ACTIONS(76), - [anon_sym_QMARK] = ACTIONS(76), - [anon_sym_LBRACK] = ACTIONS(82), - [anon_sym_BSLASH] = ACTIONS(85), - [anon_sym_CARET] = ACTIONS(73), - [anon_sym__] = ACTIONS(76), - [anon_sym_BQUOTE] = ACTIONS(76), - [anon_sym_LBRACE] = ACTIONS(88), - [anon_sym_PIPE] = ACTIONS(76), - [anon_sym_TILDE] = ACTIONS(76), - [anon_sym_LPAREN] = ACTIONS(76), - [anon_sym_RPAREN] = ACTIONS(76), - [sym__newline_token] = ACTIONS(91), - [anon_sym_CARET_LBRACK] = ACTIONS(94), - [anon_sym_LBRACK_CARET] = ACTIONS(97), - [sym_uri_autolink] = ACTIONS(70), - [sym_email_autolink] = ACTIONS(70), - [sym__whitespace_ge_2] = ACTIONS(100), - [aux_sym__whitespace_token1] = ACTIONS(103), - [sym__word_no_digit] = ACTIONS(106), - [sym__digits] = ACTIONS(106), - [anon_sym_DASH_DASH] = ACTIONS(109), - [anon_sym_DASH_DASH_DASH] = ACTIONS(106), - [anon_sym_DOT_DOT_DOT] = ACTIONS(106), - [sym__code_span_start] = ACTIONS(112), - [sym__emphasis_open_star] = ACTIONS(115), - [sym__emphasis_open_underscore] = ACTIONS(118), - [sym__last_token_punctuation] = ACTIONS(505), - [sym__strikeout_open] = ACTIONS(123), - [sym__strikeout_close] = ACTIONS(65), - [sym__latex_span_start] = ACTIONS(126), - [sym__single_quote_open] = ACTIONS(129), - [sym__double_quote_open] = ACTIONS(132), - [sym__superscript_open] = ACTIONS(135), - [sym__subscript_open] = ACTIONS(138), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(141), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(144), - [sym__cite_author_in_text] = ACTIONS(147), - [sym__cite_suppress_author] = ACTIONS(150), - [sym__shortcode_open_escaped] = ACTIONS(153), - [sym__shortcode_open] = ACTIONS(156), - [sym__unclosed_span] = ACTIONS(70), + [sym_backslash_escape] = STATE(373), + [sym_commonmark_attribute] = STATE(373), + [sym_code_span] = STATE(373), + [sym_latex_span] = STATE(373), + [sym_insert] = STATE(373), + [sym_delete] = STATE(373), + [sym_highlight] = STATE(373), + [sym_edit_comment] = STATE(373), + [sym_superscript] = STATE(373), + [sym_subscript] = STATE(373), + [sym_strikeout] = STATE(373), + [sym_quoted_span] = STATE(373), + [sym_inline_note] = STATE(373), + [sym_citation] = STATE(373), + [sym_shortcode_escaped] = STATE(373), + [sym_shortcode] = STATE(373), + [sym_note_reference] = STATE(373), + [sym__link_text] = STATE(522), + [sym__link_text_non_empty] = STATE(523), + [sym_inline_link] = STATE(150), + [sym_image] = STATE(373), + [sym__image_inline_link] = STATE(1265), + [sym__image_description] = STATE(2331), + [sym__image_description_non_empty] = STATE(2331), + [sym_hard_line_break] = STATE(373), + [sym__whitespace] = STATE(1262), + [sym__word] = STATE(1262), + [sym__soft_line_break] = STATE(1267), + [sym__inline_base] = STATE(150), + [sym__text_base] = STATE(373), + [sym__inline_element_no_star] = STATE(150), + [aux_sym__inline_no_star] = STATE(150), + [sym__emphasis_star] = STATE(1236), + [sym__strong_emphasis_star] = STATE(150), + [sym__emphasis_underscore] = STATE(1147), + [sym__strong_emphasis_underscore] = STATE(150), + [aux_sym__inline_base_repeat1] = STATE(373), + [sym__backslash_escape] = ACTIONS(463), + [sym_entity_reference] = ACTIONS(466), + [sym_numeric_character_reference] = ACTIONS(466), + [anon_sym_LT] = ACTIONS(469), + [anon_sym_GT] = ACTIONS(472), + [anon_sym_BANG] = ACTIONS(475), + [anon_sym_DQUOTE] = ACTIONS(472), + [anon_sym_POUND] = ACTIONS(472), + [anon_sym_DOLLAR] = ACTIONS(472), + [anon_sym_PERCENT] = ACTIONS(472), + [anon_sym_AMP] = ACTIONS(469), + [anon_sym_SQUOTE] = ACTIONS(472), + [anon_sym_STAR] = ACTIONS(472), + [anon_sym_PLUS] = ACTIONS(472), + [anon_sym_COMMA] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(469), + [anon_sym_DOT] = ACTIONS(469), + [anon_sym_SLASH] = ACTIONS(472), + [anon_sym_COLON] = ACTIONS(472), + [anon_sym_SEMI] = ACTIONS(472), + [anon_sym_EQ] = ACTIONS(472), + [anon_sym_QMARK] = ACTIONS(472), + [anon_sym_LBRACK] = ACTIONS(478), + [anon_sym_BSLASH] = ACTIONS(481), + [anon_sym_CARET] = ACTIONS(469), + [anon_sym__] = ACTIONS(472), + [anon_sym_BQUOTE] = ACTIONS(472), + [anon_sym_LBRACE] = ACTIONS(484), + [anon_sym_PIPE] = ACTIONS(472), + [anon_sym_TILDE] = ACTIONS(472), + [anon_sym_LPAREN] = ACTIONS(472), + [anon_sym_RPAREN] = ACTIONS(472), + [sym__newline_token] = ACTIONS(487), + [aux_sym_insert_token1] = ACTIONS(490), + [aux_sym_delete_token1] = ACTIONS(493), + [aux_sym_highlight_token1] = ACTIONS(496), + [aux_sym_edit_comment_token1] = ACTIONS(499), + [anon_sym_CARET_LBRACK] = ACTIONS(502), + [anon_sym_LBRACK_CARET] = ACTIONS(505), + [sym_uri_autolink] = ACTIONS(466), + [sym_email_autolink] = ACTIONS(466), + [sym__whitespace_ge_2] = ACTIONS(508), + [aux_sym__whitespace_token1] = ACTIONS(511), + [sym__word_no_digit] = ACTIONS(514), + [sym__digits] = ACTIONS(514), + [anon_sym_DASH_DASH] = ACTIONS(517), + [anon_sym_DASH_DASH_DASH] = ACTIONS(514), + [anon_sym_DOT_DOT_DOT] = ACTIONS(514), + [sym__code_span_start] = ACTIONS(520), + [sym__emphasis_open_star] = ACTIONS(523), + [sym__emphasis_open_underscore] = ACTIONS(526), + [sym__last_token_punctuation] = ACTIONS(569), + [sym__strikeout_open] = ACTIONS(531), + [sym__latex_span_start] = ACTIONS(534), + [sym__single_quote_open] = ACTIONS(537), + [sym__single_quote_close] = ACTIONS(251), + [sym__double_quote_open] = ACTIONS(540), + [sym__superscript_open] = ACTIONS(543), + [sym__subscript_open] = ACTIONS(546), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(549), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(552), + [sym__cite_author_in_text] = ACTIONS(555), + [sym__cite_suppress_author] = ACTIONS(558), + [sym__shortcode_open_escaped] = ACTIONS(561), + [sym__shortcode_open] = ACTIONS(564), + [sym__unclosed_span] = ACTIONS(466), }, [STATE(9)] = { - [sym_backslash_escape] = STATE(261), - [sym_commonmark_attribute] = STATE(261), - [sym_code_span] = STATE(261), - [sym_latex_span] = STATE(261), - [sym_superscript] = STATE(261), - [sym_subscript] = STATE(261), - [sym_strikeout] = STATE(261), - [sym_quoted_span] = STATE(261), - [sym_inline_note] = STATE(261), - [sym_citation] = STATE(261), - [sym_shortcode_escaped] = STATE(261), - [sym_shortcode] = STATE(261), - [sym_note_reference] = STATE(261), - [sym__link_text] = STATE(322), - [sym__link_text_non_empty] = STATE(323), - [sym_inline_link] = STATE(112), - [sym_image] = STATE(261), - [sym__image_inline_link] = STATE(595), - [sym__image_description] = STATE(1972), - [sym__image_description_non_empty] = STATE(1972), - [sym_hard_line_break] = STATE(261), - [sym__whitespace] = STATE(587), - [sym__word] = STATE(587), - [sym__soft_line_break] = STATE(597), - [sym__inline_base] = STATE(112), - [sym__text_base] = STATE(261), - [sym__inline_element_no_star] = STATE(112), - [aux_sym__inline_no_star] = STATE(112), - [sym__emphasis_star] = STATE(1036), - [sym__strong_emphasis_star] = STATE(112), - [sym__emphasis_underscore] = STATE(544), - [sym__strong_emphasis_underscore] = STATE(112), - [aux_sym__inline_base_repeat1] = STATE(261), - [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__] = ACTIONS(420), - [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), - [anon_sym_CARET_LBRACK] = ACTIONS(438), - [anon_sym_LBRACK_CARET] = ACTIONS(441), - [sym_uri_autolink] = ACTIONS(414), - [sym_email_autolink] = ACTIONS(414), - [sym__whitespace_ge_2] = ACTIONS(444), - [aux_sym__whitespace_token1] = ACTIONS(447), - [sym__word_no_digit] = ACTIONS(450), - [sym__digits] = ACTIONS(450), - [anon_sym_DASH_DASH] = ACTIONS(453), - [anon_sym_DASH_DASH_DASH] = ACTIONS(450), - [anon_sym_DOT_DOT_DOT] = ACTIONS(450), - [sym__code_span_start] = ACTIONS(456), - [sym__emphasis_open_star] = ACTIONS(459), - [sym__emphasis_open_underscore] = ACTIONS(462), - [sym__last_token_punctuation] = ACTIONS(507), - [sym__strikeout_open] = ACTIONS(467), - [sym__latex_span_start] = ACTIONS(470), - [sym__single_quote_open] = ACTIONS(473), - [sym__single_quote_close] = ACTIONS(65), - [sym__double_quote_open] = ACTIONS(476), - [sym__superscript_open] = ACTIONS(479), - [sym__subscript_open] = ACTIONS(482), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(485), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(488), - [sym__cite_author_in_text] = ACTIONS(491), - [sym__cite_suppress_author] = ACTIONS(494), - [sym__shortcode_open_escaped] = ACTIONS(497), - [sym__shortcode_open] = ACTIONS(500), - [sym__unclosed_span] = ACTIONS(414), + [sym_backslash_escape] = STATE(379), + [sym_commonmark_attribute] = STATE(379), + [sym_code_span] = STATE(379), + [sym_latex_span] = STATE(379), + [sym_insert] = STATE(379), + [sym_delete] = STATE(379), + [sym_highlight] = STATE(379), + [sym_edit_comment] = STATE(379), + [sym_superscript] = STATE(379), + [sym_subscript] = STATE(379), + [sym_strikeout] = STATE(379), + [sym_quoted_span] = STATE(379), + [sym_inline_note] = STATE(379), + [sym_citation] = STATE(379), + [sym_shortcode_escaped] = STATE(379), + [sym_shortcode] = STATE(379), + [sym_note_reference] = STATE(379), + [sym__link_text] = STATE(545), + [sym__link_text_non_empty] = STATE(546), + [sym_inline_link] = STATE(151), + [sym_image] = STATE(379), + [sym__image_inline_link] = STATE(1390), + [sym__image_description] = STATE(2363), + [sym__image_description_non_empty] = STATE(2363), + [sym_hard_line_break] = STATE(379), + [sym__whitespace] = STATE(1385), + [sym__word] = STATE(1385), + [sym__soft_line_break] = STATE(1391), + [sym__inline_base] = STATE(151), + [sym__text_base] = STATE(379), + [sym__inline_element_no_underscore] = STATE(151), + [aux_sym__inline_no_underscore] = STATE(151), + [sym__emphasis_star] = STATE(1168), + [sym__strong_emphasis_star] = STATE(151), + [sym__emphasis_underscore] = STATE(1238), + [sym__strong_emphasis_underscore] = STATE(151), + [aux_sym__inline_base_repeat1] = STATE(379), + [sym__backslash_escape] = ACTIONS(253), + [sym_entity_reference] = ACTIONS(256), + [sym_numeric_character_reference] = ACTIONS(256), + [anon_sym_LT] = ACTIONS(259), + [anon_sym_GT] = ACTIONS(262), + [anon_sym_BANG] = ACTIONS(265), + [anon_sym_DQUOTE] = ACTIONS(262), + [anon_sym_POUND] = ACTIONS(262), + [anon_sym_DOLLAR] = ACTIONS(262), + [anon_sym_PERCENT] = ACTIONS(262), + [anon_sym_AMP] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(262), + [anon_sym_STAR] = ACTIONS(262), + [anon_sym_PLUS] = ACTIONS(262), + [anon_sym_COMMA] = ACTIONS(262), + [anon_sym_DASH] = ACTIONS(259), + [anon_sym_DOT] = ACTIONS(259), + [anon_sym_SLASH] = ACTIONS(262), + [anon_sym_COLON] = ACTIONS(262), + [anon_sym_SEMI] = ACTIONS(262), + [anon_sym_EQ] = ACTIONS(262), + [anon_sym_QMARK] = ACTIONS(262), + [anon_sym_LBRACK] = ACTIONS(268), + [anon_sym_BSLASH] = ACTIONS(271), + [anon_sym_CARET] = ACTIONS(259), + [anon_sym__] = ACTIONS(262), + [anon_sym_BQUOTE] = ACTIONS(262), + [anon_sym_LBRACE] = ACTIONS(274), + [anon_sym_PIPE] = ACTIONS(262), + [anon_sym_TILDE] = ACTIONS(262), + [anon_sym_LPAREN] = ACTIONS(262), + [anon_sym_RPAREN] = ACTIONS(262), + [sym__newline_token] = ACTIONS(277), + [aux_sym_insert_token1] = ACTIONS(280), + [aux_sym_delete_token1] = ACTIONS(283), + [aux_sym_highlight_token1] = ACTIONS(286), + [aux_sym_edit_comment_token1] = ACTIONS(289), + [anon_sym_CARET_LBRACK] = ACTIONS(292), + [anon_sym_LBRACK_CARET] = ACTIONS(295), + [sym_uri_autolink] = ACTIONS(256), + [sym_email_autolink] = ACTIONS(256), + [sym__whitespace_ge_2] = ACTIONS(298), + [aux_sym__whitespace_token1] = ACTIONS(301), + [sym__word_no_digit] = ACTIONS(304), + [sym__digits] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(307), + [anon_sym_DASH_DASH_DASH] = ACTIONS(304), + [anon_sym_DOT_DOT_DOT] = ACTIONS(304), + [sym__code_span_start] = ACTIONS(310), + [sym__emphasis_open_star] = ACTIONS(313), + [sym__emphasis_open_underscore] = ACTIONS(316), + [sym__last_token_punctuation] = ACTIONS(571), + [sym__strikeout_open] = ACTIONS(321), + [sym__latex_span_start] = ACTIONS(324), + [sym__single_quote_open] = ACTIONS(327), + [sym__single_quote_close] = ACTIONS(251), + [sym__double_quote_open] = ACTIONS(330), + [sym__superscript_open] = ACTIONS(333), + [sym__subscript_open] = ACTIONS(336), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(339), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(342), + [sym__cite_author_in_text] = ACTIONS(345), + [sym__cite_suppress_author] = ACTIONS(348), + [sym__shortcode_open_escaped] = ACTIONS(351), + [sym__shortcode_open] = ACTIONS(354), + [sym__unclosed_span] = ACTIONS(256), }, [STATE(10)] = { - [sym_backslash_escape] = STATE(274), - [sym_commonmark_attribute] = STATE(274), - [sym_code_span] = STATE(274), - [sym_latex_span] = STATE(274), - [sym_superscript] = STATE(274), - [sym_subscript] = STATE(274), - [sym_strikeout] = STATE(274), - [sym_quoted_span] = STATE(274), - [sym_inline_note] = STATE(274), - [sym_citation] = STATE(274), - [sym_shortcode_escaped] = STATE(274), - [sym_shortcode] = STATE(274), - [sym_note_reference] = STATE(274), - [sym__link_text] = STATE(351), - [sym__link_text_non_empty] = STATE(352), - [sym_inline_link] = STATE(113), - [sym_image] = STATE(274), - [sym__image_inline_link] = STATE(894), - [sym__image_description] = STATE(2008), - [sym__image_description_non_empty] = STATE(2008), - [sym_hard_line_break] = STATE(274), - [sym__whitespace] = STATE(882), - [sym__word] = STATE(882), - [sym__soft_line_break] = STATE(898), - [sym__inline_base] = STATE(113), - [sym__text_base] = STATE(274), - [sym__inline_element_no_underscore] = STATE(113), - [aux_sym__inline_no_underscore] = STATE(113), - [sym__emphasis_star] = STATE(711), - [sym__strong_emphasis_star] = STATE(113), - [sym__emphasis_underscore] = STATE(1037), - [sym__strong_emphasis_underscore] = STATE(113), - [aux_sym__inline_base_repeat1] = STATE(274), - [sym__backslash_escape] = ACTIONS(67), - [sym_entity_reference] = ACTIONS(70), - [sym_numeric_character_reference] = ACTIONS(70), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(76), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_DQUOTE] = ACTIONS(76), - [anon_sym_POUND] = ACTIONS(76), - [anon_sym_DOLLAR] = ACTIONS(76), - [anon_sym_PERCENT] = ACTIONS(76), - [anon_sym_AMP] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(76), - [anon_sym_STAR] = ACTIONS(76), - [anon_sym_PLUS] = ACTIONS(76), - [anon_sym_COMMA] = ACTIONS(76), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_DOT] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(76), - [anon_sym_COLON] = ACTIONS(76), - [anon_sym_SEMI] = ACTIONS(76), - [anon_sym_EQ] = ACTIONS(76), - [anon_sym_QMARK] = ACTIONS(76), - [anon_sym_LBRACK] = ACTIONS(82), - [anon_sym_BSLASH] = ACTIONS(85), - [anon_sym_CARET] = ACTIONS(73), - [anon_sym__] = ACTIONS(76), - [anon_sym_BQUOTE] = ACTIONS(76), - [anon_sym_LBRACE] = ACTIONS(88), - [anon_sym_PIPE] = ACTIONS(76), - [anon_sym_TILDE] = ACTIONS(76), - [anon_sym_LPAREN] = ACTIONS(76), - [anon_sym_RPAREN] = ACTIONS(76), - [sym__newline_token] = ACTIONS(91), - [anon_sym_CARET_LBRACK] = ACTIONS(94), - [anon_sym_LBRACK_CARET] = ACTIONS(97), - [sym_uri_autolink] = ACTIONS(70), - [sym_email_autolink] = ACTIONS(70), - [sym__whitespace_ge_2] = ACTIONS(100), - [aux_sym__whitespace_token1] = ACTIONS(103), - [sym__word_no_digit] = ACTIONS(106), - [sym__digits] = ACTIONS(106), - [anon_sym_DASH_DASH] = ACTIONS(109), - [anon_sym_DASH_DASH_DASH] = ACTIONS(106), - [anon_sym_DOT_DOT_DOT] = ACTIONS(106), - [sym__code_span_start] = ACTIONS(112), - [sym__emphasis_open_star] = ACTIONS(115), - [sym__emphasis_open_underscore] = ACTIONS(118), - [sym__last_token_punctuation] = ACTIONS(509), - [sym__strikeout_open] = ACTIONS(123), - [sym__latex_span_start] = ACTIONS(126), - [sym__single_quote_open] = ACTIONS(129), - [sym__single_quote_close] = ACTIONS(65), - [sym__double_quote_open] = ACTIONS(132), - [sym__superscript_open] = ACTIONS(135), - [sym__subscript_open] = ACTIONS(138), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(141), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(144), - [sym__cite_author_in_text] = ACTIONS(147), - [sym__cite_suppress_author] = ACTIONS(150), - [sym__shortcode_open_escaped] = ACTIONS(153), - [sym__shortcode_open] = ACTIONS(156), - [sym__unclosed_span] = ACTIONS(70), + [sym_backslash_escape] = STATE(373), + [sym_commonmark_attribute] = STATE(373), + [sym_code_span] = STATE(373), + [sym_latex_span] = STATE(373), + [sym_insert] = STATE(373), + [sym_delete] = STATE(373), + [sym_highlight] = STATE(373), + [sym_edit_comment] = STATE(373), + [sym_superscript] = STATE(373), + [sym_subscript] = STATE(373), + [sym_strikeout] = STATE(373), + [sym_quoted_span] = STATE(373), + [sym_inline_note] = STATE(373), + [sym_citation] = STATE(373), + [sym_shortcode_escaped] = STATE(373), + [sym_shortcode] = STATE(373), + [sym_note_reference] = STATE(373), + [sym__link_text] = STATE(522), + [sym__link_text_non_empty] = STATE(523), + [sym_inline_link] = STATE(176), + [sym_image] = STATE(373), + [sym__image_inline_link] = STATE(1265), + [sym__image_description] = STATE(2331), + [sym__image_description_non_empty] = STATE(2331), + [sym_hard_line_break] = STATE(373), + [sym__whitespace] = STATE(1262), + [sym__word] = STATE(1262), + [sym__soft_line_break] = STATE(1267), + [sym__inline_base] = STATE(176), + [sym__text_base] = STATE(373), + [sym__inline_element_no_star] = STATE(176), + [aux_sym__inline_no_star] = STATE(176), + [sym__emphasis_star] = STATE(1266), + [sym__strong_emphasis_star] = STATE(176), + [sym__emphasis_underscore] = STATE(1147), + [sym__strong_emphasis_underscore] = STATE(176), + [aux_sym__inline_base_repeat1] = STATE(373), + [sym__backslash_escape] = ACTIONS(463), + [sym_entity_reference] = ACTIONS(466), + [sym_numeric_character_reference] = ACTIONS(466), + [anon_sym_LT] = ACTIONS(469), + [anon_sym_GT] = ACTIONS(472), + [anon_sym_BANG] = ACTIONS(475), + [anon_sym_DQUOTE] = ACTIONS(472), + [anon_sym_POUND] = ACTIONS(472), + [anon_sym_DOLLAR] = ACTIONS(472), + [anon_sym_PERCENT] = ACTIONS(472), + [anon_sym_AMP] = ACTIONS(469), + [anon_sym_SQUOTE] = ACTIONS(472), + [anon_sym_STAR] = ACTIONS(472), + [anon_sym_PLUS] = ACTIONS(472), + [anon_sym_COMMA] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(469), + [anon_sym_DOT] = ACTIONS(469), + [anon_sym_SLASH] = ACTIONS(472), + [anon_sym_COLON] = ACTIONS(472), + [anon_sym_SEMI] = ACTIONS(472), + [anon_sym_EQ] = ACTIONS(472), + [anon_sym_QMARK] = ACTIONS(472), + [anon_sym_LBRACK] = ACTIONS(478), + [anon_sym_BSLASH] = ACTIONS(481), + [anon_sym_CARET] = ACTIONS(469), + [anon_sym__] = ACTIONS(472), + [anon_sym_BQUOTE] = ACTIONS(472), + [anon_sym_LBRACE] = ACTIONS(484), + [anon_sym_PIPE] = ACTIONS(472), + [anon_sym_TILDE] = ACTIONS(472), + [anon_sym_LPAREN] = ACTIONS(472), + [anon_sym_RPAREN] = ACTIONS(472), + [sym__newline_token] = ACTIONS(487), + [aux_sym_insert_token1] = ACTIONS(490), + [aux_sym_delete_token1] = ACTIONS(493), + [aux_sym_highlight_token1] = ACTIONS(496), + [aux_sym_edit_comment_token1] = ACTIONS(499), + [anon_sym_CARET_LBRACK] = ACTIONS(502), + [anon_sym_LBRACK_CARET] = ACTIONS(505), + [sym_uri_autolink] = ACTIONS(466), + [sym_email_autolink] = ACTIONS(466), + [sym__whitespace_ge_2] = ACTIONS(508), + [aux_sym__whitespace_token1] = ACTIONS(511), + [sym__word_no_digit] = ACTIONS(514), + [sym__digits] = ACTIONS(514), + [anon_sym_DASH_DASH] = ACTIONS(517), + [anon_sym_DASH_DASH_DASH] = ACTIONS(514), + [anon_sym_DOT_DOT_DOT] = ACTIONS(514), + [sym__code_span_start] = ACTIONS(520), + [sym__emphasis_open_star] = ACTIONS(523), + [sym__emphasis_open_underscore] = ACTIONS(526), + [sym__last_token_punctuation] = ACTIONS(573), + [sym__strikeout_open] = ACTIONS(531), + [sym__latex_span_start] = ACTIONS(534), + [sym__single_quote_open] = ACTIONS(537), + [sym__double_quote_open] = ACTIONS(540), + [sym__double_quote_close] = ACTIONS(251), + [sym__superscript_open] = ACTIONS(543), + [sym__subscript_open] = ACTIONS(546), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(549), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(552), + [sym__cite_author_in_text] = ACTIONS(555), + [sym__cite_suppress_author] = ACTIONS(558), + [sym__shortcode_open_escaped] = ACTIONS(561), + [sym__shortcode_open] = ACTIONS(564), + [sym__unclosed_span] = ACTIONS(466), }, [STATE(11)] = { - [sym_backslash_escape] = STATE(261), - [sym_commonmark_attribute] = STATE(261), - [sym_code_span] = STATE(261), - [sym_latex_span] = STATE(261), - [sym_superscript] = STATE(261), - [sym_subscript] = STATE(261), - [sym_strikeout] = STATE(261), - [sym_quoted_span] = STATE(261), - [sym_inline_note] = STATE(261), - [sym_citation] = STATE(261), - [sym_shortcode_escaped] = STATE(261), - [sym_shortcode] = STATE(261), - [sym_note_reference] = STATE(261), - [sym__link_text] = STATE(322), - [sym__link_text_non_empty] = STATE(323), - [sym_inline_link] = STATE(129), - [sym_image] = STATE(261), - [sym__image_inline_link] = STATE(595), - [sym__image_description] = STATE(1972), - [sym__image_description_non_empty] = STATE(1972), - [sym_hard_line_break] = STATE(261), - [sym__whitespace] = STATE(587), - [sym__word] = STATE(587), - [sym__soft_line_break] = STATE(597), - [sym__inline_base] = STATE(129), - [sym__text_base] = STATE(261), - [sym__inline_element_no_star] = STATE(129), - [aux_sym__inline_no_star] = STATE(129), - [sym__emphasis_star] = STATE(1055), - [sym__strong_emphasis_star] = STATE(129), - [sym__emphasis_underscore] = STATE(544), - [sym__strong_emphasis_underscore] = STATE(129), - [aux_sym__inline_base_repeat1] = STATE(261), - [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__] = ACTIONS(420), - [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), - [anon_sym_CARET_LBRACK] = ACTIONS(438), - [anon_sym_LBRACK_CARET] = ACTIONS(441), - [sym_uri_autolink] = ACTIONS(414), - [sym_email_autolink] = ACTIONS(414), - [sym__whitespace_ge_2] = ACTIONS(444), - [aux_sym__whitespace_token1] = ACTIONS(447), - [sym__word_no_digit] = ACTIONS(450), - [sym__digits] = ACTIONS(450), - [anon_sym_DASH_DASH] = ACTIONS(453), - [anon_sym_DASH_DASH_DASH] = ACTIONS(450), - [anon_sym_DOT_DOT_DOT] = ACTIONS(450), - [sym__code_span_start] = ACTIONS(456), - [sym__emphasis_open_star] = ACTIONS(459), - [sym__emphasis_open_underscore] = ACTIONS(462), - [sym__last_token_punctuation] = ACTIONS(511), - [sym__strikeout_open] = ACTIONS(467), - [sym__latex_span_start] = ACTIONS(470), - [sym__single_quote_open] = ACTIONS(473), - [sym__double_quote_open] = ACTIONS(476), - [sym__double_quote_close] = ACTIONS(65), - [sym__superscript_open] = ACTIONS(479), - [sym__subscript_open] = ACTIONS(482), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(485), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(488), - [sym__cite_author_in_text] = ACTIONS(491), - [sym__cite_suppress_author] = ACTIONS(494), - [sym__shortcode_open_escaped] = ACTIONS(497), - [sym__shortcode_open] = ACTIONS(500), - [sym__unclosed_span] = ACTIONS(414), + [sym_backslash_escape] = STATE(379), + [sym_commonmark_attribute] = STATE(379), + [sym_code_span] = STATE(379), + [sym_latex_span] = STATE(379), + [sym_insert] = STATE(379), + [sym_delete] = STATE(379), + [sym_highlight] = STATE(379), + [sym_edit_comment] = STATE(379), + [sym_superscript] = STATE(379), + [sym_subscript] = STATE(379), + [sym_strikeout] = STATE(379), + [sym_quoted_span] = STATE(379), + [sym_inline_note] = STATE(379), + [sym_citation] = STATE(379), + [sym_shortcode_escaped] = STATE(379), + [sym_shortcode] = STATE(379), + [sym_note_reference] = STATE(379), + [sym__link_text] = STATE(545), + [sym__link_text_non_empty] = STATE(546), + [sym_inline_link] = STATE(177), + [sym_image] = STATE(379), + [sym__image_inline_link] = STATE(1390), + [sym__image_description] = STATE(2363), + [sym__image_description_non_empty] = STATE(2363), + [sym_hard_line_break] = STATE(379), + [sym__whitespace] = STATE(1385), + [sym__word] = STATE(1385), + [sym__soft_line_break] = STATE(1391), + [sym__inline_base] = STATE(177), + [sym__text_base] = STATE(379), + [sym__inline_element_no_underscore] = STATE(177), + [aux_sym__inline_no_underscore] = STATE(177), + [sym__emphasis_star] = STATE(1168), + [sym__strong_emphasis_star] = STATE(177), + [sym__emphasis_underscore] = STATE(1268), + [sym__strong_emphasis_underscore] = STATE(177), + [aux_sym__inline_base_repeat1] = STATE(379), + [sym__backslash_escape] = ACTIONS(253), + [sym_entity_reference] = ACTIONS(256), + [sym_numeric_character_reference] = ACTIONS(256), + [anon_sym_LT] = ACTIONS(259), + [anon_sym_GT] = ACTIONS(262), + [anon_sym_BANG] = ACTIONS(265), + [anon_sym_DQUOTE] = ACTIONS(262), + [anon_sym_POUND] = ACTIONS(262), + [anon_sym_DOLLAR] = ACTIONS(262), + [anon_sym_PERCENT] = ACTIONS(262), + [anon_sym_AMP] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(262), + [anon_sym_STAR] = ACTIONS(262), + [anon_sym_PLUS] = ACTIONS(262), + [anon_sym_COMMA] = ACTIONS(262), + [anon_sym_DASH] = ACTIONS(259), + [anon_sym_DOT] = ACTIONS(259), + [anon_sym_SLASH] = ACTIONS(262), + [anon_sym_COLON] = ACTIONS(262), + [anon_sym_SEMI] = ACTIONS(262), + [anon_sym_EQ] = ACTIONS(262), + [anon_sym_QMARK] = ACTIONS(262), + [anon_sym_LBRACK] = ACTIONS(268), + [anon_sym_BSLASH] = ACTIONS(271), + [anon_sym_CARET] = ACTIONS(259), + [anon_sym__] = ACTIONS(262), + [anon_sym_BQUOTE] = ACTIONS(262), + [anon_sym_LBRACE] = ACTIONS(274), + [anon_sym_PIPE] = ACTIONS(262), + [anon_sym_TILDE] = ACTIONS(262), + [anon_sym_LPAREN] = ACTIONS(262), + [anon_sym_RPAREN] = ACTIONS(262), + [sym__newline_token] = ACTIONS(277), + [aux_sym_insert_token1] = ACTIONS(280), + [aux_sym_delete_token1] = ACTIONS(283), + [aux_sym_highlight_token1] = ACTIONS(286), + [aux_sym_edit_comment_token1] = ACTIONS(289), + [anon_sym_CARET_LBRACK] = ACTIONS(292), + [anon_sym_LBRACK_CARET] = ACTIONS(295), + [sym_uri_autolink] = ACTIONS(256), + [sym_email_autolink] = ACTIONS(256), + [sym__whitespace_ge_2] = ACTIONS(298), + [aux_sym__whitespace_token1] = ACTIONS(301), + [sym__word_no_digit] = ACTIONS(304), + [sym__digits] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(307), + [anon_sym_DASH_DASH_DASH] = ACTIONS(304), + [anon_sym_DOT_DOT_DOT] = ACTIONS(304), + [sym__code_span_start] = ACTIONS(310), + [sym__emphasis_open_star] = ACTIONS(313), + [sym__emphasis_open_underscore] = ACTIONS(316), + [sym__last_token_punctuation] = ACTIONS(575), + [sym__strikeout_open] = ACTIONS(321), + [sym__latex_span_start] = ACTIONS(324), + [sym__single_quote_open] = ACTIONS(327), + [sym__double_quote_open] = ACTIONS(330), + [sym__double_quote_close] = ACTIONS(251), + [sym__superscript_open] = ACTIONS(333), + [sym__subscript_open] = ACTIONS(336), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(339), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(342), + [sym__cite_author_in_text] = ACTIONS(345), + [sym__cite_suppress_author] = ACTIONS(348), + [sym__shortcode_open_escaped] = ACTIONS(351), + [sym__shortcode_open] = ACTIONS(354), + [sym__unclosed_span] = ACTIONS(256), }, [STATE(12)] = { - [sym_backslash_escape] = STATE(274), - [sym_commonmark_attribute] = STATE(274), - [sym_code_span] = STATE(274), - [sym_latex_span] = STATE(274), - [sym_superscript] = STATE(274), - [sym_subscript] = STATE(274), - [sym_strikeout] = STATE(274), - [sym_quoted_span] = STATE(274), - [sym_inline_note] = STATE(274), - [sym_citation] = STATE(274), - [sym_shortcode_escaped] = STATE(274), - [sym_shortcode] = STATE(274), - [sym_note_reference] = STATE(274), - [sym__link_text] = STATE(351), - [sym__link_text_non_empty] = STATE(352), - [sym_inline_link] = STATE(130), - [sym_image] = STATE(274), - [sym__image_inline_link] = STATE(894), - [sym__image_description] = STATE(2008), - [sym__image_description_non_empty] = STATE(2008), - [sym_hard_line_break] = STATE(274), - [sym__whitespace] = STATE(882), - [sym__word] = STATE(882), - [sym__soft_line_break] = STATE(898), - [sym__inline_base] = STATE(130), - [sym__text_base] = STATE(274), - [sym__inline_element_no_underscore] = STATE(130), - [aux_sym__inline_no_underscore] = STATE(130), - [sym__emphasis_star] = STATE(711), - [sym__strong_emphasis_star] = STATE(130), - [sym__emphasis_underscore] = STATE(1057), - [sym__strong_emphasis_underscore] = STATE(130), - [aux_sym__inline_base_repeat1] = STATE(274), - [sym__backslash_escape] = ACTIONS(67), - [sym_entity_reference] = ACTIONS(70), - [sym_numeric_character_reference] = ACTIONS(70), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(76), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_DQUOTE] = ACTIONS(76), - [anon_sym_POUND] = ACTIONS(76), - [anon_sym_DOLLAR] = ACTIONS(76), - [anon_sym_PERCENT] = ACTIONS(76), - [anon_sym_AMP] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(76), - [anon_sym_STAR] = ACTIONS(76), - [anon_sym_PLUS] = ACTIONS(76), - [anon_sym_COMMA] = ACTIONS(76), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_DOT] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(76), - [anon_sym_COLON] = ACTIONS(76), - [anon_sym_SEMI] = ACTIONS(76), - [anon_sym_EQ] = ACTIONS(76), - [anon_sym_QMARK] = ACTIONS(76), - [anon_sym_LBRACK] = ACTIONS(82), - [anon_sym_BSLASH] = ACTIONS(85), - [anon_sym_CARET] = ACTIONS(73), - [anon_sym__] = ACTIONS(76), - [anon_sym_BQUOTE] = ACTIONS(76), - [anon_sym_LBRACE] = ACTIONS(88), - [anon_sym_PIPE] = ACTIONS(76), - [anon_sym_TILDE] = ACTIONS(76), - [anon_sym_LPAREN] = ACTIONS(76), - [anon_sym_RPAREN] = ACTIONS(76), - [sym__newline_token] = ACTIONS(91), - [anon_sym_CARET_LBRACK] = ACTIONS(94), - [anon_sym_LBRACK_CARET] = ACTIONS(97), - [sym_uri_autolink] = ACTIONS(70), - [sym_email_autolink] = ACTIONS(70), - [sym__whitespace_ge_2] = ACTIONS(100), - [aux_sym__whitespace_token1] = ACTIONS(103), - [sym__word_no_digit] = ACTIONS(106), - [sym__digits] = ACTIONS(106), - [anon_sym_DASH_DASH] = ACTIONS(109), - [anon_sym_DASH_DASH_DASH] = ACTIONS(106), - [anon_sym_DOT_DOT_DOT] = ACTIONS(106), - [sym__code_span_start] = ACTIONS(112), - [sym__emphasis_open_star] = ACTIONS(115), - [sym__emphasis_open_underscore] = ACTIONS(118), - [sym__last_token_punctuation] = ACTIONS(513), - [sym__strikeout_open] = ACTIONS(123), - [sym__latex_span_start] = ACTIONS(126), - [sym__single_quote_open] = ACTIONS(129), - [sym__double_quote_open] = ACTIONS(132), - [sym__double_quote_close] = ACTIONS(65), - [sym__superscript_open] = ACTIONS(135), - [sym__subscript_open] = ACTIONS(138), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(141), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(144), - [sym__cite_author_in_text] = ACTIONS(147), - [sym__cite_suppress_author] = ACTIONS(150), - [sym__shortcode_open_escaped] = ACTIONS(153), - [sym__shortcode_open] = ACTIONS(156), - [sym__unclosed_span] = ACTIONS(70), + [sym_backslash_escape] = STATE(373), + [sym_commonmark_attribute] = STATE(373), + [sym_code_span] = STATE(373), + [sym_latex_span] = STATE(373), + [sym_insert] = STATE(373), + [sym_delete] = STATE(373), + [sym_highlight] = STATE(373), + [sym_edit_comment] = STATE(373), + [sym_superscript] = STATE(373), + [sym_subscript] = STATE(373), + [sym_strikeout] = STATE(373), + [sym_quoted_span] = STATE(373), + [sym_inline_note] = STATE(373), + [sym_citation] = STATE(373), + [sym_shortcode_escaped] = STATE(373), + [sym_shortcode] = STATE(373), + [sym_note_reference] = STATE(373), + [sym__link_text] = STATE(522), + [sym__link_text_non_empty] = STATE(523), + [sym_inline_link] = STATE(202), + [sym_image] = STATE(373), + [sym__image_inline_link] = STATE(1265), + [sym__image_description] = STATE(2331), + [sym__image_description_non_empty] = STATE(2331), + [sym_hard_line_break] = STATE(373), + [sym__whitespace] = STATE(1262), + [sym__word] = STATE(1262), + [sym__soft_line_break] = STATE(1267), + [sym__inline_base] = STATE(202), + [sym__text_base] = STATE(373), + [sym__inline_element_no_star] = STATE(202), + [aux_sym__inline_no_star] = STATE(202), + [sym__emphasis_star] = STATE(1296), + [sym__strong_emphasis_star] = STATE(202), + [sym__emphasis_underscore] = STATE(1147), + [sym__strong_emphasis_underscore] = STATE(202), + [aux_sym__inline_base_repeat1] = STATE(373), + [sym__backslash_escape] = ACTIONS(463), + [sym_entity_reference] = ACTIONS(466), + [sym_numeric_character_reference] = ACTIONS(466), + [anon_sym_LT] = ACTIONS(469), + [anon_sym_GT] = ACTIONS(472), + [anon_sym_BANG] = ACTIONS(475), + [anon_sym_DQUOTE] = ACTIONS(472), + [anon_sym_POUND] = ACTIONS(472), + [anon_sym_DOLLAR] = ACTIONS(472), + [anon_sym_PERCENT] = ACTIONS(472), + [anon_sym_AMP] = ACTIONS(469), + [anon_sym_SQUOTE] = ACTIONS(472), + [anon_sym_STAR] = ACTIONS(472), + [anon_sym_PLUS] = ACTIONS(472), + [anon_sym_COMMA] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(469), + [anon_sym_DOT] = ACTIONS(469), + [anon_sym_SLASH] = ACTIONS(472), + [anon_sym_COLON] = ACTIONS(472), + [anon_sym_SEMI] = ACTIONS(472), + [anon_sym_EQ] = ACTIONS(472), + [anon_sym_QMARK] = ACTIONS(472), + [anon_sym_LBRACK] = ACTIONS(478), + [anon_sym_BSLASH] = ACTIONS(481), + [anon_sym_CARET] = ACTIONS(469), + [anon_sym__] = ACTIONS(472), + [anon_sym_BQUOTE] = ACTIONS(472), + [anon_sym_LBRACE] = ACTIONS(484), + [anon_sym_PIPE] = ACTIONS(472), + [anon_sym_TILDE] = ACTIONS(472), + [anon_sym_LPAREN] = ACTIONS(472), + [anon_sym_RPAREN] = ACTIONS(472), + [sym__newline_token] = ACTIONS(487), + [aux_sym_insert_token1] = ACTIONS(490), + [aux_sym_delete_token1] = ACTIONS(493), + [aux_sym_highlight_token1] = ACTIONS(496), + [aux_sym_edit_comment_token1] = ACTIONS(499), + [anon_sym_CARET_LBRACK] = ACTIONS(502), + [anon_sym_LBRACK_CARET] = ACTIONS(505), + [sym_uri_autolink] = ACTIONS(466), + [sym_email_autolink] = ACTIONS(466), + [sym__whitespace_ge_2] = ACTIONS(508), + [aux_sym__whitespace_token1] = ACTIONS(511), + [sym__word_no_digit] = ACTIONS(514), + [sym__digits] = ACTIONS(514), + [anon_sym_DASH_DASH] = ACTIONS(517), + [anon_sym_DASH_DASH_DASH] = ACTIONS(514), + [anon_sym_DOT_DOT_DOT] = ACTIONS(514), + [sym__code_span_start] = ACTIONS(520), + [sym__emphasis_open_star] = ACTIONS(523), + [sym__emphasis_open_underscore] = ACTIONS(526), + [sym__last_token_punctuation] = ACTIONS(577), + [sym__strikeout_open] = ACTIONS(531), + [sym__latex_span_start] = ACTIONS(534), + [sym__single_quote_open] = ACTIONS(537), + [sym__double_quote_open] = ACTIONS(540), + [sym__superscript_open] = ACTIONS(543), + [sym__superscript_close] = ACTIONS(251), + [sym__subscript_open] = ACTIONS(546), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(549), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(552), + [sym__cite_author_in_text] = ACTIONS(555), + [sym__cite_suppress_author] = ACTIONS(558), + [sym__shortcode_open_escaped] = ACTIONS(561), + [sym__shortcode_open] = ACTIONS(564), + [sym__unclosed_span] = ACTIONS(466), }, [STATE(13)] = { - [sym_backslash_escape] = STATE(261), - [sym_commonmark_attribute] = STATE(261), - [sym_code_span] = STATE(261), - [sym_latex_span] = STATE(261), - [sym_superscript] = STATE(261), - [sym_subscript] = STATE(261), - [sym_strikeout] = STATE(261), - [sym_quoted_span] = STATE(261), - [sym_inline_note] = STATE(261), - [sym_citation] = STATE(261), - [sym_shortcode_escaped] = STATE(261), - [sym_shortcode] = STATE(261), - [sym_note_reference] = STATE(261), - [sym__link_text] = STATE(322), - [sym__link_text_non_empty] = STATE(323), - [sym_inline_link] = STATE(147), - [sym_image] = STATE(261), - [sym__image_inline_link] = STATE(595), - [sym__image_description] = STATE(1972), - [sym__image_description_non_empty] = STATE(1972), - [sym_hard_line_break] = STATE(261), - [sym__whitespace] = STATE(587), - [sym__word] = STATE(587), - [sym__soft_line_break] = STATE(597), - [sym__inline_base] = STATE(147), - [sym__text_base] = STATE(261), - [sym__inline_element_no_star] = STATE(147), - [aux_sym__inline_no_star] = STATE(147), - [sym__emphasis_star] = STATE(1075), - [sym__strong_emphasis_star] = STATE(147), - [sym__emphasis_underscore] = STATE(544), - [sym__strong_emphasis_underscore] = STATE(147), - [aux_sym__inline_base_repeat1] = STATE(261), - [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__] = ACTIONS(420), - [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), - [anon_sym_CARET_LBRACK] = ACTIONS(438), - [anon_sym_LBRACK_CARET] = ACTIONS(441), - [sym_uri_autolink] = ACTIONS(414), - [sym_email_autolink] = ACTIONS(414), - [sym__whitespace_ge_2] = ACTIONS(444), - [aux_sym__whitespace_token1] = ACTIONS(447), - [sym__word_no_digit] = ACTIONS(450), - [sym__digits] = ACTIONS(450), - [anon_sym_DASH_DASH] = ACTIONS(453), - [anon_sym_DASH_DASH_DASH] = ACTIONS(450), - [anon_sym_DOT_DOT_DOT] = ACTIONS(450), - [sym__code_span_start] = ACTIONS(456), - [sym__emphasis_open_star] = ACTIONS(459), - [sym__emphasis_open_underscore] = ACTIONS(462), - [sym__last_token_punctuation] = ACTIONS(515), - [sym__strikeout_open] = ACTIONS(467), - [sym__latex_span_start] = ACTIONS(470), - [sym__single_quote_open] = ACTIONS(473), - [sym__double_quote_open] = ACTIONS(476), - [sym__superscript_open] = ACTIONS(479), - [sym__superscript_close] = ACTIONS(65), - [sym__subscript_open] = ACTIONS(482), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(485), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(488), - [sym__cite_author_in_text] = ACTIONS(491), - [sym__cite_suppress_author] = ACTIONS(494), - [sym__shortcode_open_escaped] = ACTIONS(497), - [sym__shortcode_open] = ACTIONS(500), - [sym__unclosed_span] = ACTIONS(414), + [sym_backslash_escape] = STATE(379), + [sym_commonmark_attribute] = STATE(379), + [sym_code_span] = STATE(379), + [sym_latex_span] = STATE(379), + [sym_insert] = STATE(379), + [sym_delete] = STATE(379), + [sym_highlight] = STATE(379), + [sym_edit_comment] = STATE(379), + [sym_superscript] = STATE(379), + [sym_subscript] = STATE(379), + [sym_strikeout] = STATE(379), + [sym_quoted_span] = STATE(379), + [sym_inline_note] = STATE(379), + [sym_citation] = STATE(379), + [sym_shortcode_escaped] = STATE(379), + [sym_shortcode] = STATE(379), + [sym_note_reference] = STATE(379), + [sym__link_text] = STATE(545), + [sym__link_text_non_empty] = STATE(546), + [sym_inline_link] = STATE(203), + [sym_image] = STATE(379), + [sym__image_inline_link] = STATE(1390), + [sym__image_description] = STATE(2363), + [sym__image_description_non_empty] = STATE(2363), + [sym_hard_line_break] = STATE(379), + [sym__whitespace] = STATE(1385), + [sym__word] = STATE(1385), + [sym__soft_line_break] = STATE(1391), + [sym__inline_base] = STATE(203), + [sym__text_base] = STATE(379), + [sym__inline_element_no_underscore] = STATE(203), + [aux_sym__inline_no_underscore] = STATE(203), + [sym__emphasis_star] = STATE(1168), + [sym__strong_emphasis_star] = STATE(203), + [sym__emphasis_underscore] = STATE(1298), + [sym__strong_emphasis_underscore] = STATE(203), + [aux_sym__inline_base_repeat1] = STATE(379), + [sym__backslash_escape] = ACTIONS(253), + [sym_entity_reference] = ACTIONS(256), + [sym_numeric_character_reference] = ACTIONS(256), + [anon_sym_LT] = ACTIONS(259), + [anon_sym_GT] = ACTIONS(262), + [anon_sym_BANG] = ACTIONS(265), + [anon_sym_DQUOTE] = ACTIONS(262), + [anon_sym_POUND] = ACTIONS(262), + [anon_sym_DOLLAR] = ACTIONS(262), + [anon_sym_PERCENT] = ACTIONS(262), + [anon_sym_AMP] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(262), + [anon_sym_STAR] = ACTIONS(262), + [anon_sym_PLUS] = ACTIONS(262), + [anon_sym_COMMA] = ACTIONS(262), + [anon_sym_DASH] = ACTIONS(259), + [anon_sym_DOT] = ACTIONS(259), + [anon_sym_SLASH] = ACTIONS(262), + [anon_sym_COLON] = ACTIONS(262), + [anon_sym_SEMI] = ACTIONS(262), + [anon_sym_EQ] = ACTIONS(262), + [anon_sym_QMARK] = ACTIONS(262), + [anon_sym_LBRACK] = ACTIONS(268), + [anon_sym_BSLASH] = ACTIONS(271), + [anon_sym_CARET] = ACTIONS(259), + [anon_sym__] = ACTIONS(262), + [anon_sym_BQUOTE] = ACTIONS(262), + [anon_sym_LBRACE] = ACTIONS(274), + [anon_sym_PIPE] = ACTIONS(262), + [anon_sym_TILDE] = ACTIONS(262), + [anon_sym_LPAREN] = ACTIONS(262), + [anon_sym_RPAREN] = ACTIONS(262), + [sym__newline_token] = ACTIONS(277), + [aux_sym_insert_token1] = ACTIONS(280), + [aux_sym_delete_token1] = ACTIONS(283), + [aux_sym_highlight_token1] = ACTIONS(286), + [aux_sym_edit_comment_token1] = ACTIONS(289), + [anon_sym_CARET_LBRACK] = ACTIONS(292), + [anon_sym_LBRACK_CARET] = ACTIONS(295), + [sym_uri_autolink] = ACTIONS(256), + [sym_email_autolink] = ACTIONS(256), + [sym__whitespace_ge_2] = ACTIONS(298), + [aux_sym__whitespace_token1] = ACTIONS(301), + [sym__word_no_digit] = ACTIONS(304), + [sym__digits] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(307), + [anon_sym_DASH_DASH_DASH] = ACTIONS(304), + [anon_sym_DOT_DOT_DOT] = ACTIONS(304), + [sym__code_span_start] = ACTIONS(310), + [sym__emphasis_open_star] = ACTIONS(313), + [sym__emphasis_open_underscore] = ACTIONS(316), + [sym__last_token_punctuation] = ACTIONS(579), + [sym__strikeout_open] = ACTIONS(321), + [sym__latex_span_start] = ACTIONS(324), + [sym__single_quote_open] = ACTIONS(327), + [sym__double_quote_open] = ACTIONS(330), + [sym__superscript_open] = ACTIONS(333), + [sym__superscript_close] = ACTIONS(251), + [sym__subscript_open] = ACTIONS(336), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(339), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(342), + [sym__cite_author_in_text] = ACTIONS(345), + [sym__cite_suppress_author] = ACTIONS(348), + [sym__shortcode_open_escaped] = ACTIONS(351), + [sym__shortcode_open] = ACTIONS(354), + [sym__unclosed_span] = ACTIONS(256), }, [STATE(14)] = { - [sym_backslash_escape] = STATE(261), - [sym_commonmark_attribute] = STATE(261), - [sym_code_span] = STATE(261), - [sym_latex_span] = STATE(261), - [sym_superscript] = STATE(261), - [sym_subscript] = STATE(261), - [sym_strikeout] = STATE(261), - [sym_quoted_span] = STATE(261), - [sym_inline_note] = STATE(261), - [sym_citation] = STATE(261), - [sym_shortcode_escaped] = STATE(261), - [sym_shortcode] = STATE(261), - [sym_note_reference] = STATE(261), - [sym__link_text] = STATE(322), - [sym__link_text_non_empty] = STATE(323), - [sym_inline_link] = STATE(165), - [sym_image] = STATE(261), - [sym__image_inline_link] = STATE(595), - [sym__image_description] = STATE(1972), - [sym__image_description_non_empty] = STATE(1972), - [sym_hard_line_break] = STATE(261), - [sym__whitespace] = STATE(587), - [sym__word] = STATE(587), - [sym__soft_line_break] = STATE(597), - [sym__inline_base] = STATE(165), - [sym__text_base] = STATE(261), - [sym__inline_element_no_star] = STATE(165), - [aux_sym__inline_no_star] = STATE(165), - [sym__emphasis_star] = STATE(1093), - [sym__strong_emphasis_star] = STATE(165), - [sym__emphasis_underscore] = STATE(544), - [sym__strong_emphasis_underscore] = STATE(165), - [aux_sym__inline_base_repeat1] = STATE(261), - [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__] = ACTIONS(420), - [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), - [anon_sym_CARET_LBRACK] = ACTIONS(438), - [anon_sym_LBRACK_CARET] = ACTIONS(441), - [sym_uri_autolink] = ACTIONS(414), - [sym_email_autolink] = ACTIONS(414), - [sym__whitespace_ge_2] = ACTIONS(444), - [aux_sym__whitespace_token1] = ACTIONS(447), - [sym__word_no_digit] = ACTIONS(450), - [sym__digits] = ACTIONS(450), - [anon_sym_DASH_DASH] = ACTIONS(453), - [anon_sym_DASH_DASH_DASH] = ACTIONS(450), - [anon_sym_DOT_DOT_DOT] = ACTIONS(450), - [sym__code_span_start] = ACTIONS(456), - [sym__emphasis_open_star] = ACTIONS(459), - [sym__emphasis_open_underscore] = ACTIONS(462), - [sym__last_token_punctuation] = ACTIONS(517), - [sym__strikeout_open] = ACTIONS(467), - [sym__latex_span_start] = ACTIONS(470), - [sym__single_quote_open] = ACTIONS(473), - [sym__double_quote_open] = ACTIONS(476), - [sym__superscript_open] = ACTIONS(479), - [sym__subscript_open] = ACTIONS(482), - [sym__subscript_close] = ACTIONS(65), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(485), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(488), - [sym__cite_author_in_text] = ACTIONS(491), - [sym__cite_suppress_author] = ACTIONS(494), - [sym__shortcode_open_escaped] = ACTIONS(497), - [sym__shortcode_open] = ACTIONS(500), - [sym__unclosed_span] = ACTIONS(414), + [sym_backslash_escape] = STATE(373), + [sym_commonmark_attribute] = STATE(373), + [sym_code_span] = STATE(373), + [sym_latex_span] = STATE(373), + [sym_insert] = STATE(373), + [sym_delete] = STATE(373), + [sym_highlight] = STATE(373), + [sym_edit_comment] = STATE(373), + [sym_superscript] = STATE(373), + [sym_subscript] = STATE(373), + [sym_strikeout] = STATE(373), + [sym_quoted_span] = STATE(373), + [sym_inline_note] = STATE(373), + [sym_citation] = STATE(373), + [sym_shortcode_escaped] = STATE(373), + [sym_shortcode] = STATE(373), + [sym_note_reference] = STATE(373), + [sym__link_text] = STATE(522), + [sym__link_text_non_empty] = STATE(523), + [sym_inline_link] = STATE(228), + [sym_image] = STATE(373), + [sym__image_inline_link] = STATE(1265), + [sym__image_description] = STATE(2331), + [sym__image_description_non_empty] = STATE(2331), + [sym_hard_line_break] = STATE(373), + [sym__whitespace] = STATE(1262), + [sym__word] = STATE(1262), + [sym__soft_line_break] = STATE(1267), + [sym__inline_base] = STATE(228), + [sym__text_base] = STATE(373), + [sym__inline_element_no_star] = STATE(228), + [aux_sym__inline_no_star] = STATE(228), + [sym__emphasis_star] = STATE(1326), + [sym__strong_emphasis_star] = STATE(228), + [sym__emphasis_underscore] = STATE(1147), + [sym__strong_emphasis_underscore] = STATE(228), + [aux_sym__inline_base_repeat1] = STATE(373), + [sym__backslash_escape] = ACTIONS(463), + [sym_entity_reference] = ACTIONS(466), + [sym_numeric_character_reference] = ACTIONS(466), + [anon_sym_LT] = ACTIONS(469), + [anon_sym_GT] = ACTIONS(472), + [anon_sym_BANG] = ACTIONS(475), + [anon_sym_DQUOTE] = ACTIONS(472), + [anon_sym_POUND] = ACTIONS(472), + [anon_sym_DOLLAR] = ACTIONS(472), + [anon_sym_PERCENT] = ACTIONS(472), + [anon_sym_AMP] = ACTIONS(469), + [anon_sym_SQUOTE] = ACTIONS(472), + [anon_sym_STAR] = ACTIONS(472), + [anon_sym_PLUS] = ACTIONS(472), + [anon_sym_COMMA] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(469), + [anon_sym_DOT] = ACTIONS(469), + [anon_sym_SLASH] = ACTIONS(472), + [anon_sym_COLON] = ACTIONS(472), + [anon_sym_SEMI] = ACTIONS(472), + [anon_sym_EQ] = ACTIONS(472), + [anon_sym_QMARK] = ACTIONS(472), + [anon_sym_LBRACK] = ACTIONS(478), + [anon_sym_BSLASH] = ACTIONS(481), + [anon_sym_CARET] = ACTIONS(469), + [anon_sym__] = ACTIONS(472), + [anon_sym_BQUOTE] = ACTIONS(472), + [anon_sym_LBRACE] = ACTIONS(484), + [anon_sym_PIPE] = ACTIONS(472), + [anon_sym_TILDE] = ACTIONS(472), + [anon_sym_LPAREN] = ACTIONS(472), + [anon_sym_RPAREN] = ACTIONS(472), + [sym__newline_token] = ACTIONS(487), + [aux_sym_insert_token1] = ACTIONS(490), + [aux_sym_delete_token1] = ACTIONS(493), + [aux_sym_highlight_token1] = ACTIONS(496), + [aux_sym_edit_comment_token1] = ACTIONS(499), + [anon_sym_CARET_LBRACK] = ACTIONS(502), + [anon_sym_LBRACK_CARET] = ACTIONS(505), + [sym_uri_autolink] = ACTIONS(466), + [sym_email_autolink] = ACTIONS(466), + [sym__whitespace_ge_2] = ACTIONS(508), + [aux_sym__whitespace_token1] = ACTIONS(511), + [sym__word_no_digit] = ACTIONS(514), + [sym__digits] = ACTIONS(514), + [anon_sym_DASH_DASH] = ACTIONS(517), + [anon_sym_DASH_DASH_DASH] = ACTIONS(514), + [anon_sym_DOT_DOT_DOT] = ACTIONS(514), + [sym__code_span_start] = ACTIONS(520), + [sym__emphasis_open_star] = ACTIONS(523), + [sym__emphasis_open_underscore] = ACTIONS(526), + [sym__last_token_punctuation] = ACTIONS(581), + [sym__strikeout_open] = ACTIONS(531), + [sym__latex_span_start] = ACTIONS(534), + [sym__single_quote_open] = ACTIONS(537), + [sym__double_quote_open] = ACTIONS(540), + [sym__superscript_open] = ACTIONS(543), + [sym__subscript_open] = ACTIONS(546), + [sym__subscript_close] = ACTIONS(251), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(549), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(552), + [sym__cite_author_in_text] = ACTIONS(555), + [sym__cite_suppress_author] = ACTIONS(558), + [sym__shortcode_open_escaped] = ACTIONS(561), + [sym__shortcode_open] = ACTIONS(564), + [sym__unclosed_span] = ACTIONS(466), }, [STATE(15)] = { - [sym_backslash_escape] = STATE(274), - [sym_commonmark_attribute] = STATE(274), - [sym_code_span] = STATE(274), - [sym_latex_span] = STATE(274), - [sym_superscript] = STATE(274), - [sym_subscript] = STATE(274), - [sym_strikeout] = STATE(274), - [sym_quoted_span] = STATE(274), - [sym_inline_note] = STATE(274), - [sym_citation] = STATE(274), - [sym_shortcode_escaped] = STATE(274), - [sym_shortcode] = STATE(274), - [sym_note_reference] = STATE(274), - [sym__link_text] = STATE(351), - [sym__link_text_non_empty] = STATE(352), - [sym_inline_link] = STATE(166), - [sym_image] = STATE(274), - [sym__image_inline_link] = STATE(894), - [sym__image_description] = STATE(2008), - [sym__image_description_non_empty] = STATE(2008), - [sym_hard_line_break] = STATE(274), - [sym__whitespace] = STATE(882), - [sym__word] = STATE(882), - [sym__soft_line_break] = STATE(898), - [sym__inline_base] = STATE(166), - [sym__text_base] = STATE(274), - [sym__inline_element_no_underscore] = STATE(166), - [aux_sym__inline_no_underscore] = STATE(166), - [sym__emphasis_star] = STATE(711), - [sym__strong_emphasis_star] = STATE(166), - [sym__emphasis_underscore] = STATE(1095), - [sym__strong_emphasis_underscore] = STATE(166), - [aux_sym__inline_base_repeat1] = STATE(274), - [sym__backslash_escape] = ACTIONS(67), - [sym_entity_reference] = ACTIONS(70), - [sym_numeric_character_reference] = ACTIONS(70), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(76), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_DQUOTE] = ACTIONS(76), - [anon_sym_POUND] = ACTIONS(76), - [anon_sym_DOLLAR] = ACTIONS(76), - [anon_sym_PERCENT] = ACTIONS(76), - [anon_sym_AMP] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(76), - [anon_sym_STAR] = ACTIONS(76), - [anon_sym_PLUS] = ACTIONS(76), - [anon_sym_COMMA] = ACTIONS(76), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_DOT] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(76), - [anon_sym_COLON] = ACTIONS(76), - [anon_sym_SEMI] = ACTIONS(76), - [anon_sym_EQ] = ACTIONS(76), - [anon_sym_QMARK] = ACTIONS(76), - [anon_sym_LBRACK] = ACTIONS(82), - [anon_sym_BSLASH] = ACTIONS(85), - [anon_sym_CARET] = ACTIONS(73), - [anon_sym__] = ACTIONS(76), - [anon_sym_BQUOTE] = ACTIONS(76), - [anon_sym_LBRACE] = ACTIONS(88), - [anon_sym_PIPE] = ACTIONS(76), - [anon_sym_TILDE] = ACTIONS(76), - [anon_sym_LPAREN] = ACTIONS(76), - [anon_sym_RPAREN] = ACTIONS(76), - [sym__newline_token] = ACTIONS(91), - [anon_sym_CARET_LBRACK] = ACTIONS(94), - [anon_sym_LBRACK_CARET] = ACTIONS(97), - [sym_uri_autolink] = ACTIONS(70), - [sym_email_autolink] = ACTIONS(70), - [sym__whitespace_ge_2] = ACTIONS(100), - [aux_sym__whitespace_token1] = ACTIONS(103), - [sym__word_no_digit] = ACTIONS(106), - [sym__digits] = ACTIONS(106), - [anon_sym_DASH_DASH] = ACTIONS(109), - [anon_sym_DASH_DASH_DASH] = ACTIONS(106), - [anon_sym_DOT_DOT_DOT] = ACTIONS(106), - [sym__code_span_start] = ACTIONS(112), - [sym__emphasis_open_star] = ACTIONS(115), - [sym__emphasis_open_underscore] = ACTIONS(118), - [sym__last_token_punctuation] = ACTIONS(519), - [sym__strikeout_open] = ACTIONS(123), - [sym__latex_span_start] = ACTIONS(126), - [sym__single_quote_open] = ACTIONS(129), - [sym__double_quote_open] = ACTIONS(132), - [sym__superscript_open] = ACTIONS(135), - [sym__subscript_open] = ACTIONS(138), - [sym__subscript_close] = ACTIONS(65), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(141), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(144), - [sym__cite_author_in_text] = ACTIONS(147), - [sym__cite_suppress_author] = ACTIONS(150), - [sym__shortcode_open_escaped] = ACTIONS(153), - [sym__shortcode_open] = ACTIONS(156), - [sym__unclosed_span] = ACTIONS(70), + [sym_backslash_escape] = STATE(379), + [sym_commonmark_attribute] = STATE(379), + [sym_code_span] = STATE(379), + [sym_latex_span] = STATE(379), + [sym_insert] = STATE(379), + [sym_delete] = STATE(379), + [sym_highlight] = STATE(379), + [sym_edit_comment] = STATE(379), + [sym_superscript] = STATE(379), + [sym_subscript] = STATE(379), + [sym_strikeout] = STATE(379), + [sym_quoted_span] = STATE(379), + [sym_inline_note] = STATE(379), + [sym_citation] = STATE(379), + [sym_shortcode_escaped] = STATE(379), + [sym_shortcode] = STATE(379), + [sym_note_reference] = STATE(379), + [sym__link_text] = STATE(545), + [sym__link_text_non_empty] = STATE(546), + [sym_inline_link] = STATE(229), + [sym_image] = STATE(379), + [sym__image_inline_link] = STATE(1390), + [sym__image_description] = STATE(2363), + [sym__image_description_non_empty] = STATE(2363), + [sym_hard_line_break] = STATE(379), + [sym__whitespace] = STATE(1385), + [sym__word] = STATE(1385), + [sym__soft_line_break] = STATE(1391), + [sym__inline_base] = STATE(229), + [sym__text_base] = STATE(379), + [sym__inline_element_no_underscore] = STATE(229), + [aux_sym__inline_no_underscore] = STATE(229), + [sym__emphasis_star] = STATE(1168), + [sym__strong_emphasis_star] = STATE(229), + [sym__emphasis_underscore] = STATE(1328), + [sym__strong_emphasis_underscore] = STATE(229), + [aux_sym__inline_base_repeat1] = STATE(379), + [sym__backslash_escape] = ACTIONS(253), + [sym_entity_reference] = ACTIONS(256), + [sym_numeric_character_reference] = ACTIONS(256), + [anon_sym_LT] = ACTIONS(259), + [anon_sym_GT] = ACTIONS(262), + [anon_sym_BANG] = ACTIONS(265), + [anon_sym_DQUOTE] = ACTIONS(262), + [anon_sym_POUND] = ACTIONS(262), + [anon_sym_DOLLAR] = ACTIONS(262), + [anon_sym_PERCENT] = ACTIONS(262), + [anon_sym_AMP] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(262), + [anon_sym_STAR] = ACTIONS(262), + [anon_sym_PLUS] = ACTIONS(262), + [anon_sym_COMMA] = ACTIONS(262), + [anon_sym_DASH] = ACTIONS(259), + [anon_sym_DOT] = ACTIONS(259), + [anon_sym_SLASH] = ACTIONS(262), + [anon_sym_COLON] = ACTIONS(262), + [anon_sym_SEMI] = ACTIONS(262), + [anon_sym_EQ] = ACTIONS(262), + [anon_sym_QMARK] = ACTIONS(262), + [anon_sym_LBRACK] = ACTIONS(268), + [anon_sym_BSLASH] = ACTIONS(271), + [anon_sym_CARET] = ACTIONS(259), + [anon_sym__] = ACTIONS(262), + [anon_sym_BQUOTE] = ACTIONS(262), + [anon_sym_LBRACE] = ACTIONS(274), + [anon_sym_PIPE] = ACTIONS(262), + [anon_sym_TILDE] = ACTIONS(262), + [anon_sym_LPAREN] = ACTIONS(262), + [anon_sym_RPAREN] = ACTIONS(262), + [sym__newline_token] = ACTIONS(277), + [aux_sym_insert_token1] = ACTIONS(280), + [aux_sym_delete_token1] = ACTIONS(283), + [aux_sym_highlight_token1] = ACTIONS(286), + [aux_sym_edit_comment_token1] = ACTIONS(289), + [anon_sym_CARET_LBRACK] = ACTIONS(292), + [anon_sym_LBRACK_CARET] = ACTIONS(295), + [sym_uri_autolink] = ACTIONS(256), + [sym_email_autolink] = ACTIONS(256), + [sym__whitespace_ge_2] = ACTIONS(298), + [aux_sym__whitespace_token1] = ACTIONS(301), + [sym__word_no_digit] = ACTIONS(304), + [sym__digits] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(307), + [anon_sym_DASH_DASH_DASH] = ACTIONS(304), + [anon_sym_DOT_DOT_DOT] = ACTIONS(304), + [sym__code_span_start] = ACTIONS(310), + [sym__emphasis_open_star] = ACTIONS(313), + [sym__emphasis_open_underscore] = ACTIONS(316), + [sym__last_token_punctuation] = ACTIONS(583), + [sym__strikeout_open] = ACTIONS(321), + [sym__latex_span_start] = ACTIONS(324), + [sym__single_quote_open] = ACTIONS(327), + [sym__double_quote_open] = ACTIONS(330), + [sym__superscript_open] = ACTIONS(333), + [sym__subscript_open] = ACTIONS(336), + [sym__subscript_close] = ACTIONS(251), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(339), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(342), + [sym__cite_author_in_text] = ACTIONS(345), + [sym__cite_suppress_author] = ACTIONS(348), + [sym__shortcode_open_escaped] = ACTIONS(351), + [sym__shortcode_open] = ACTIONS(354), + [sym__unclosed_span] = ACTIONS(256), }, [STATE(16)] = { - [sym_backslash_escape] = STATE(261), - [sym_commonmark_attribute] = STATE(261), - [sym_code_span] = STATE(261), - [sym_latex_span] = STATE(261), - [sym_superscript] = STATE(261), - [sym_subscript] = STATE(261), - [sym_strikeout] = STATE(261), - [sym_quoted_span] = STATE(261), - [sym_inline_note] = STATE(261), - [sym_citation] = STATE(261), - [sym_shortcode_escaped] = STATE(261), - [sym_shortcode] = STATE(261), - [sym_note_reference] = STATE(261), - [sym__link_text] = STATE(322), - [sym__link_text_non_empty] = STATE(323), - [sym_inline_link] = STATE(183), - [sym_image] = STATE(261), - [sym__image_inline_link] = STATE(595), - [sym__image_description] = STATE(1972), - [sym__image_description_non_empty] = STATE(1972), - [sym_hard_line_break] = STATE(261), - [sym__whitespace] = STATE(587), - [sym__word] = STATE(587), - [sym__soft_line_break] = STATE(597), - [sym__inline_base] = STATE(183), - [sym__text_base] = STATE(261), - [sym__inline_element_no_star] = STATE(183), - [aux_sym__inline_no_star] = STATE(183), - [sym__emphasis_star] = STATE(1111), - [sym__strong_emphasis_star] = STATE(183), - [sym__emphasis_underscore] = STATE(544), - [sym__strong_emphasis_underscore] = STATE(183), - [aux_sym__inline_base_repeat1] = STATE(261), - [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_RBRACK] = ACTIONS(65), - [anon_sym_CARET] = ACTIONS(417), - [anon_sym__] = ACTIONS(420), - [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), - [anon_sym_CARET_LBRACK] = ACTIONS(438), - [anon_sym_LBRACK_CARET] = ACTIONS(441), - [sym_uri_autolink] = ACTIONS(414), - [sym_email_autolink] = ACTIONS(414), - [sym__whitespace_ge_2] = ACTIONS(444), - [aux_sym__whitespace_token1] = ACTIONS(447), - [sym__word_no_digit] = ACTIONS(450), - [sym__digits] = ACTIONS(450), - [anon_sym_DASH_DASH] = ACTIONS(453), - [anon_sym_DASH_DASH_DASH] = ACTIONS(450), - [anon_sym_DOT_DOT_DOT] = ACTIONS(450), - [sym__code_span_start] = ACTIONS(456), - [sym__emphasis_open_star] = ACTIONS(459), - [sym__emphasis_open_underscore] = ACTIONS(462), - [sym__last_token_punctuation] = ACTIONS(521), - [sym__strikeout_open] = ACTIONS(467), - [sym__latex_span_start] = ACTIONS(470), - [sym__single_quote_open] = ACTIONS(473), - [sym__double_quote_open] = ACTIONS(476), - [sym__superscript_open] = ACTIONS(479), - [sym__subscript_open] = ACTIONS(482), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(485), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(488), - [sym__cite_author_in_text] = ACTIONS(491), - [sym__cite_suppress_author] = ACTIONS(494), - [sym__shortcode_open_escaped] = ACTIONS(497), - [sym__shortcode_open] = ACTIONS(500), - [sym__unclosed_span] = ACTIONS(414), + [sym_backslash_escape] = STATE(373), + [sym_commonmark_attribute] = STATE(373), + [sym_code_span] = STATE(373), + [sym_latex_span] = STATE(373), + [sym_insert] = STATE(373), + [sym_delete] = STATE(373), + [sym_highlight] = STATE(373), + [sym_edit_comment] = STATE(373), + [sym_superscript] = STATE(373), + [sym_subscript] = STATE(373), + [sym_strikeout] = STATE(373), + [sym_quoted_span] = STATE(373), + [sym_inline_note] = STATE(373), + [sym_citation] = STATE(373), + [sym_shortcode_escaped] = STATE(373), + [sym_shortcode] = STATE(373), + [sym_note_reference] = STATE(373), + [sym__link_text] = STATE(522), + [sym__link_text_non_empty] = STATE(523), + [sym_inline_link] = STATE(254), + [sym_image] = STATE(373), + [sym__image_inline_link] = STATE(1265), + [sym__image_description] = STATE(2331), + [sym__image_description_non_empty] = STATE(2331), + [sym_hard_line_break] = STATE(373), + [sym__whitespace] = STATE(1262), + [sym__word] = STATE(1262), + [sym__soft_line_break] = STATE(1267), + [sym__inline_base] = STATE(254), + [sym__text_base] = STATE(373), + [sym__inline_element_no_star] = STATE(254), + [aux_sym__inline_no_star] = STATE(254), + [sym__emphasis_star] = STATE(1356), + [sym__strong_emphasis_star] = STATE(254), + [sym__emphasis_underscore] = STATE(1147), + [sym__strong_emphasis_underscore] = STATE(254), + [aux_sym__inline_base_repeat1] = STATE(373), + [sym__backslash_escape] = ACTIONS(463), + [sym_entity_reference] = ACTIONS(466), + [sym_numeric_character_reference] = ACTIONS(466), + [anon_sym_LT] = ACTIONS(469), + [anon_sym_GT] = ACTIONS(472), + [anon_sym_BANG] = ACTIONS(475), + [anon_sym_DQUOTE] = ACTIONS(472), + [anon_sym_POUND] = ACTIONS(472), + [anon_sym_DOLLAR] = ACTIONS(472), + [anon_sym_PERCENT] = ACTIONS(472), + [anon_sym_AMP] = ACTIONS(469), + [anon_sym_SQUOTE] = ACTIONS(472), + [anon_sym_STAR] = ACTIONS(472), + [anon_sym_PLUS] = ACTIONS(472), + [anon_sym_COMMA] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(469), + [anon_sym_DOT] = ACTIONS(469), + [anon_sym_SLASH] = ACTIONS(472), + [anon_sym_COLON] = ACTIONS(472), + [anon_sym_SEMI] = ACTIONS(472), + [anon_sym_EQ] = ACTIONS(472), + [anon_sym_QMARK] = ACTIONS(472), + [anon_sym_LBRACK] = ACTIONS(478), + [anon_sym_BSLASH] = ACTIONS(481), + [anon_sym_CARET] = ACTIONS(469), + [anon_sym__] = ACTIONS(472), + [anon_sym_BQUOTE] = ACTIONS(472), + [anon_sym_LBRACE] = ACTIONS(484), + [anon_sym_PIPE] = ACTIONS(472), + [anon_sym_TILDE] = ACTIONS(472), + [anon_sym_LPAREN] = ACTIONS(472), + [anon_sym_RPAREN] = ACTIONS(472), + [sym__newline_token] = ACTIONS(487), + [aux_sym_insert_token1] = ACTIONS(490), + [aux_sym_insert_token2] = ACTIONS(251), + [aux_sym_delete_token1] = ACTIONS(493), + [aux_sym_highlight_token1] = ACTIONS(496), + [aux_sym_edit_comment_token1] = ACTIONS(499), + [anon_sym_CARET_LBRACK] = ACTIONS(502), + [anon_sym_LBRACK_CARET] = ACTIONS(505), + [sym_uri_autolink] = ACTIONS(466), + [sym_email_autolink] = ACTIONS(466), + [sym__whitespace_ge_2] = ACTIONS(585), + [aux_sym__whitespace_token1] = ACTIONS(511), + [sym__word_no_digit] = ACTIONS(514), + [sym__digits] = ACTIONS(514), + [anon_sym_DASH_DASH] = ACTIONS(517), + [anon_sym_DASH_DASH_DASH] = ACTIONS(514), + [anon_sym_DOT_DOT_DOT] = ACTIONS(514), + [sym__code_span_start] = ACTIONS(520), + [sym__emphasis_open_star] = ACTIONS(523), + [sym__emphasis_open_underscore] = ACTIONS(526), + [sym__last_token_punctuation] = ACTIONS(588), + [sym__strikeout_open] = ACTIONS(531), + [sym__latex_span_start] = ACTIONS(534), + [sym__single_quote_open] = ACTIONS(537), + [sym__double_quote_open] = ACTIONS(540), + [sym__superscript_open] = ACTIONS(543), + [sym__subscript_open] = ACTIONS(546), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(549), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(552), + [sym__cite_author_in_text] = ACTIONS(555), + [sym__cite_suppress_author] = ACTIONS(558), + [sym__shortcode_open_escaped] = ACTIONS(561), + [sym__shortcode_open] = ACTIONS(564), + [sym__unclosed_span] = ACTIONS(466), }, [STATE(17)] = { - [sym_backslash_escape] = STATE(274), - [sym_commonmark_attribute] = STATE(274), - [sym_code_span] = STATE(274), - [sym_latex_span] = STATE(274), - [sym_superscript] = STATE(274), - [sym_subscript] = STATE(274), - [sym_strikeout] = STATE(274), - [sym_quoted_span] = STATE(274), - [sym_inline_note] = STATE(274), - [sym_citation] = STATE(274), - [sym_shortcode_escaped] = STATE(274), - [sym_shortcode] = STATE(274), - [sym_note_reference] = STATE(274), - [sym__link_text] = STATE(351), - [sym__link_text_non_empty] = STATE(352), - [sym_inline_link] = STATE(184), - [sym_image] = STATE(274), - [sym__image_inline_link] = STATE(894), - [sym__image_description] = STATE(2008), - [sym__image_description_non_empty] = STATE(2008), - [sym_hard_line_break] = STATE(274), - [sym__whitespace] = STATE(882), - [sym__word] = STATE(882), - [sym__soft_line_break] = STATE(898), - [sym__inline_base] = STATE(184), - [sym__text_base] = STATE(274), - [sym__inline_element_no_underscore] = STATE(184), - [aux_sym__inline_no_underscore] = STATE(184), - [sym__emphasis_star] = STATE(711), - [sym__strong_emphasis_star] = STATE(184), - [sym__emphasis_underscore] = STATE(1113), - [sym__strong_emphasis_underscore] = STATE(184), - [aux_sym__inline_base_repeat1] = STATE(274), - [sym__backslash_escape] = ACTIONS(67), - [sym_entity_reference] = ACTIONS(70), - [sym_numeric_character_reference] = ACTIONS(70), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(76), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_DQUOTE] = ACTIONS(76), - [anon_sym_POUND] = ACTIONS(76), - [anon_sym_DOLLAR] = ACTIONS(76), - [anon_sym_PERCENT] = ACTIONS(76), - [anon_sym_AMP] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(76), - [anon_sym_STAR] = ACTIONS(76), - [anon_sym_PLUS] = ACTIONS(76), - [anon_sym_COMMA] = ACTIONS(76), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_DOT] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(76), - [anon_sym_COLON] = ACTIONS(76), - [anon_sym_SEMI] = ACTIONS(76), - [anon_sym_EQ] = ACTIONS(76), - [anon_sym_QMARK] = ACTIONS(76), - [anon_sym_LBRACK] = ACTIONS(82), - [anon_sym_BSLASH] = ACTIONS(85), - [anon_sym_RBRACK] = ACTIONS(65), - [anon_sym_CARET] = ACTIONS(73), - [anon_sym__] = ACTIONS(76), - [anon_sym_BQUOTE] = ACTIONS(76), - [anon_sym_LBRACE] = ACTIONS(88), - [anon_sym_PIPE] = ACTIONS(76), - [anon_sym_TILDE] = ACTIONS(76), - [anon_sym_LPAREN] = ACTIONS(76), - [anon_sym_RPAREN] = ACTIONS(76), - [sym__newline_token] = ACTIONS(91), - [anon_sym_CARET_LBRACK] = ACTIONS(94), - [anon_sym_LBRACK_CARET] = ACTIONS(97), - [sym_uri_autolink] = ACTIONS(70), - [sym_email_autolink] = ACTIONS(70), - [sym__whitespace_ge_2] = ACTIONS(100), - [aux_sym__whitespace_token1] = ACTIONS(103), - [sym__word_no_digit] = ACTIONS(106), - [sym__digits] = ACTIONS(106), - [anon_sym_DASH_DASH] = ACTIONS(109), - [anon_sym_DASH_DASH_DASH] = ACTIONS(106), - [anon_sym_DOT_DOT_DOT] = ACTIONS(106), - [sym__code_span_start] = ACTIONS(112), - [sym__emphasis_open_star] = ACTIONS(115), - [sym__emphasis_open_underscore] = ACTIONS(118), - [sym__last_token_punctuation] = ACTIONS(523), - [sym__strikeout_open] = ACTIONS(123), - [sym__latex_span_start] = ACTIONS(126), - [sym__single_quote_open] = ACTIONS(129), - [sym__double_quote_open] = ACTIONS(132), - [sym__superscript_open] = ACTIONS(135), - [sym__subscript_open] = ACTIONS(138), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(141), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(144), - [sym__cite_author_in_text] = ACTIONS(147), - [sym__cite_suppress_author] = ACTIONS(150), - [sym__shortcode_open_escaped] = ACTIONS(153), - [sym__shortcode_open] = ACTIONS(156), - [sym__unclosed_span] = ACTIONS(70), + [sym_backslash_escape] = STATE(379), + [sym_commonmark_attribute] = STATE(379), + [sym_code_span] = STATE(379), + [sym_latex_span] = STATE(379), + [sym_insert] = STATE(379), + [sym_delete] = STATE(379), + [sym_highlight] = STATE(379), + [sym_edit_comment] = STATE(379), + [sym_superscript] = STATE(379), + [sym_subscript] = STATE(379), + [sym_strikeout] = STATE(379), + [sym_quoted_span] = STATE(379), + [sym_inline_note] = STATE(379), + [sym_citation] = STATE(379), + [sym_shortcode_escaped] = STATE(379), + [sym_shortcode] = STATE(379), + [sym_note_reference] = STATE(379), + [sym__link_text] = STATE(545), + [sym__link_text_non_empty] = STATE(546), + [sym_inline_link] = STATE(255), + [sym_image] = STATE(379), + [sym__image_inline_link] = STATE(1390), + [sym__image_description] = STATE(2363), + [sym__image_description_non_empty] = STATE(2363), + [sym_hard_line_break] = STATE(379), + [sym__whitespace] = STATE(1385), + [sym__word] = STATE(1385), + [sym__soft_line_break] = STATE(1391), + [sym__inline_base] = STATE(255), + [sym__text_base] = STATE(379), + [sym__inline_element_no_underscore] = STATE(255), + [aux_sym__inline_no_underscore] = STATE(255), + [sym__emphasis_star] = STATE(1168), + [sym__strong_emphasis_star] = STATE(255), + [sym__emphasis_underscore] = STATE(1358), + [sym__strong_emphasis_underscore] = STATE(255), + [aux_sym__inline_base_repeat1] = STATE(379), + [sym__backslash_escape] = ACTIONS(253), + [sym_entity_reference] = ACTIONS(256), + [sym_numeric_character_reference] = ACTIONS(256), + [anon_sym_LT] = ACTIONS(259), + [anon_sym_GT] = ACTIONS(262), + [anon_sym_BANG] = ACTIONS(265), + [anon_sym_DQUOTE] = ACTIONS(262), + [anon_sym_POUND] = ACTIONS(262), + [anon_sym_DOLLAR] = ACTIONS(262), + [anon_sym_PERCENT] = ACTIONS(262), + [anon_sym_AMP] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(262), + [anon_sym_STAR] = ACTIONS(262), + [anon_sym_PLUS] = ACTIONS(262), + [anon_sym_COMMA] = ACTIONS(262), + [anon_sym_DASH] = ACTIONS(259), + [anon_sym_DOT] = ACTIONS(259), + [anon_sym_SLASH] = ACTIONS(262), + [anon_sym_COLON] = ACTIONS(262), + [anon_sym_SEMI] = ACTIONS(262), + [anon_sym_EQ] = ACTIONS(262), + [anon_sym_QMARK] = ACTIONS(262), + [anon_sym_LBRACK] = ACTIONS(268), + [anon_sym_BSLASH] = ACTIONS(271), + [anon_sym_CARET] = ACTIONS(259), + [anon_sym__] = ACTIONS(262), + [anon_sym_BQUOTE] = ACTIONS(262), + [anon_sym_LBRACE] = ACTIONS(274), + [anon_sym_PIPE] = ACTIONS(262), + [anon_sym_TILDE] = ACTIONS(262), + [anon_sym_LPAREN] = ACTIONS(262), + [anon_sym_RPAREN] = ACTIONS(262), + [sym__newline_token] = ACTIONS(277), + [aux_sym_insert_token1] = ACTIONS(280), + [aux_sym_insert_token2] = ACTIONS(251), + [aux_sym_delete_token1] = ACTIONS(283), + [aux_sym_highlight_token1] = ACTIONS(286), + [aux_sym_edit_comment_token1] = ACTIONS(289), + [anon_sym_CARET_LBRACK] = ACTIONS(292), + [anon_sym_LBRACK_CARET] = ACTIONS(295), + [sym_uri_autolink] = ACTIONS(256), + [sym_email_autolink] = ACTIONS(256), + [sym__whitespace_ge_2] = ACTIONS(590), + [aux_sym__whitespace_token1] = ACTIONS(301), + [sym__word_no_digit] = ACTIONS(304), + [sym__digits] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(307), + [anon_sym_DASH_DASH_DASH] = ACTIONS(304), + [anon_sym_DOT_DOT_DOT] = ACTIONS(304), + [sym__code_span_start] = ACTIONS(310), + [sym__emphasis_open_star] = ACTIONS(313), + [sym__emphasis_open_underscore] = ACTIONS(316), + [sym__last_token_punctuation] = ACTIONS(593), + [sym__strikeout_open] = ACTIONS(321), + [sym__latex_span_start] = ACTIONS(324), + [sym__single_quote_open] = ACTIONS(327), + [sym__double_quote_open] = ACTIONS(330), + [sym__superscript_open] = ACTIONS(333), + [sym__subscript_open] = ACTIONS(336), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(339), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(342), + [sym__cite_author_in_text] = ACTIONS(345), + [sym__cite_suppress_author] = ACTIONS(348), + [sym__shortcode_open_escaped] = ACTIONS(351), + [sym__shortcode_open] = ACTIONS(354), + [sym__unclosed_span] = ACTIONS(256), }, [STATE(18)] = { - [sym_backslash_escape] = STATE(274), - [sym_commonmark_attribute] = STATE(274), - [sym_code_span] = STATE(274), - [sym_latex_span] = STATE(274), - [sym_superscript] = STATE(274), - [sym_subscript] = STATE(274), - [sym_strikeout] = STATE(274), - [sym_quoted_span] = STATE(274), - [sym_inline_note] = STATE(274), - [sym_citation] = STATE(274), - [sym_shortcode_escaped] = STATE(274), - [sym_shortcode] = STATE(274), - [sym_note_reference] = STATE(274), - [sym__link_text] = STATE(351), - [sym__link_text_non_empty] = STATE(352), - [sym_inline_link] = STATE(148), - [sym_image] = STATE(274), - [sym__image_inline_link] = STATE(894), - [sym__image_description] = STATE(2008), - [sym__image_description_non_empty] = STATE(2008), - [sym_hard_line_break] = STATE(274), - [sym__whitespace] = STATE(882), - [sym__word] = STATE(882), - [sym__soft_line_break] = STATE(898), - [sym__inline_base] = STATE(148), - [sym__text_base] = STATE(274), - [sym__inline_element_no_underscore] = STATE(148), - [aux_sym__inline_no_underscore] = STATE(148), - [sym__emphasis_star] = STATE(711), - [sym__strong_emphasis_star] = STATE(148), - [sym__emphasis_underscore] = STATE(1077), - [sym__strong_emphasis_underscore] = STATE(148), - [aux_sym__inline_base_repeat1] = STATE(274), - [sym__backslash_escape] = ACTIONS(67), - [sym_entity_reference] = ACTIONS(70), - [sym_numeric_character_reference] = ACTIONS(70), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(76), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_DQUOTE] = ACTIONS(76), - [anon_sym_POUND] = ACTIONS(76), - [anon_sym_DOLLAR] = ACTIONS(76), - [anon_sym_PERCENT] = ACTIONS(76), - [anon_sym_AMP] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(76), - [anon_sym_STAR] = ACTIONS(76), - [anon_sym_PLUS] = ACTIONS(76), - [anon_sym_COMMA] = ACTIONS(76), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_DOT] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(76), - [anon_sym_COLON] = ACTIONS(76), - [anon_sym_SEMI] = ACTIONS(76), - [anon_sym_EQ] = ACTIONS(76), - [anon_sym_QMARK] = ACTIONS(76), - [anon_sym_LBRACK] = ACTIONS(82), - [anon_sym_BSLASH] = ACTIONS(85), - [anon_sym_CARET] = ACTIONS(73), - [anon_sym__] = ACTIONS(76), - [anon_sym_BQUOTE] = ACTIONS(76), - [anon_sym_LBRACE] = ACTIONS(88), - [anon_sym_PIPE] = ACTIONS(76), - [anon_sym_TILDE] = ACTIONS(76), - [anon_sym_LPAREN] = ACTIONS(76), - [anon_sym_RPAREN] = ACTIONS(76), - [sym__newline_token] = ACTIONS(91), - [anon_sym_CARET_LBRACK] = ACTIONS(94), - [anon_sym_LBRACK_CARET] = ACTIONS(97), - [sym_uri_autolink] = ACTIONS(70), - [sym_email_autolink] = ACTIONS(70), - [sym__whitespace_ge_2] = ACTIONS(100), - [aux_sym__whitespace_token1] = ACTIONS(103), - [sym__word_no_digit] = ACTIONS(106), - [sym__digits] = ACTIONS(106), - [anon_sym_DASH_DASH] = ACTIONS(109), - [anon_sym_DASH_DASH_DASH] = ACTIONS(106), - [anon_sym_DOT_DOT_DOT] = ACTIONS(106), - [sym__code_span_start] = ACTIONS(112), - [sym__emphasis_open_star] = ACTIONS(115), - [sym__emphasis_open_underscore] = ACTIONS(118), - [sym__last_token_punctuation] = ACTIONS(525), - [sym__strikeout_open] = ACTIONS(123), - [sym__latex_span_start] = ACTIONS(126), - [sym__single_quote_open] = ACTIONS(129), - [sym__double_quote_open] = ACTIONS(132), - [sym__superscript_open] = ACTIONS(135), - [sym__superscript_close] = ACTIONS(65), - [sym__subscript_open] = ACTIONS(138), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(141), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(144), - [sym__cite_author_in_text] = ACTIONS(147), - [sym__cite_suppress_author] = ACTIONS(150), - [sym__shortcode_open_escaped] = ACTIONS(153), - [sym__shortcode_open] = ACTIONS(156), - [sym__unclosed_span] = ACTIONS(70), + [sym_backslash_escape] = STATE(373), + [sym_commonmark_attribute] = STATE(373), + [sym_code_span] = STATE(373), + [sym_latex_span] = STATE(373), + [sym_insert] = STATE(373), + [sym_delete] = STATE(373), + [sym_highlight] = STATE(373), + [sym_edit_comment] = STATE(373), + [sym_superscript] = STATE(373), + [sym_subscript] = STATE(373), + [sym_strikeout] = STATE(373), + [sym_quoted_span] = STATE(373), + [sym_inline_note] = STATE(373), + [sym_citation] = STATE(373), + [sym_shortcode_escaped] = STATE(373), + [sym_shortcode] = STATE(373), + [sym_note_reference] = STATE(373), + [sym__link_text] = STATE(522), + [sym__link_text_non_empty] = STATE(523), + [sym_inline_link] = STATE(280), + [sym_image] = STATE(373), + [sym__image_inline_link] = STATE(1265), + [sym__image_description] = STATE(2331), + [sym__image_description_non_empty] = STATE(2331), + [sym_hard_line_break] = STATE(373), + [sym__whitespace] = STATE(1262), + [sym__word] = STATE(1262), + [sym__soft_line_break] = STATE(1267), + [sym__inline_base] = STATE(280), + [sym__text_base] = STATE(373), + [sym__inline_element_no_star] = STATE(280), + [aux_sym__inline_no_star] = STATE(280), + [sym__emphasis_star] = STATE(1386), + [sym__strong_emphasis_star] = STATE(280), + [sym__emphasis_underscore] = STATE(1147), + [sym__strong_emphasis_underscore] = STATE(280), + [aux_sym__inline_base_repeat1] = STATE(373), + [sym__backslash_escape] = ACTIONS(463), + [sym_entity_reference] = ACTIONS(466), + [sym_numeric_character_reference] = ACTIONS(466), + [anon_sym_LT] = ACTIONS(469), + [anon_sym_GT] = ACTIONS(472), + [anon_sym_BANG] = ACTIONS(475), + [anon_sym_DQUOTE] = ACTIONS(472), + [anon_sym_POUND] = ACTIONS(472), + [anon_sym_DOLLAR] = ACTIONS(472), + [anon_sym_PERCENT] = ACTIONS(472), + [anon_sym_AMP] = ACTIONS(469), + [anon_sym_SQUOTE] = ACTIONS(472), + [anon_sym_STAR] = ACTIONS(472), + [anon_sym_PLUS] = ACTIONS(472), + [anon_sym_COMMA] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(469), + [anon_sym_DOT] = ACTIONS(469), + [anon_sym_SLASH] = ACTIONS(472), + [anon_sym_COLON] = ACTIONS(472), + [anon_sym_SEMI] = ACTIONS(472), + [anon_sym_EQ] = ACTIONS(472), + [anon_sym_QMARK] = ACTIONS(472), + [anon_sym_LBRACK] = ACTIONS(478), + [anon_sym_BSLASH] = ACTIONS(481), + [anon_sym_RBRACK] = ACTIONS(251), + [anon_sym_CARET] = ACTIONS(469), + [anon_sym__] = ACTIONS(472), + [anon_sym_BQUOTE] = ACTIONS(472), + [anon_sym_LBRACE] = ACTIONS(484), + [anon_sym_PIPE] = ACTIONS(472), + [anon_sym_TILDE] = ACTIONS(472), + [anon_sym_LPAREN] = ACTIONS(472), + [anon_sym_RPAREN] = ACTIONS(472), + [sym__newline_token] = ACTIONS(487), + [aux_sym_insert_token1] = ACTIONS(490), + [aux_sym_delete_token1] = ACTIONS(493), + [aux_sym_highlight_token1] = ACTIONS(496), + [aux_sym_edit_comment_token1] = ACTIONS(499), + [anon_sym_CARET_LBRACK] = ACTIONS(502), + [anon_sym_LBRACK_CARET] = ACTIONS(505), + [sym_uri_autolink] = ACTIONS(466), + [sym_email_autolink] = ACTIONS(466), + [sym__whitespace_ge_2] = ACTIONS(508), + [aux_sym__whitespace_token1] = ACTIONS(511), + [sym__word_no_digit] = ACTIONS(514), + [sym__digits] = ACTIONS(514), + [anon_sym_DASH_DASH] = ACTIONS(517), + [anon_sym_DASH_DASH_DASH] = ACTIONS(514), + [anon_sym_DOT_DOT_DOT] = ACTIONS(514), + [sym__code_span_start] = ACTIONS(520), + [sym__emphasis_open_star] = ACTIONS(523), + [sym__emphasis_open_underscore] = ACTIONS(526), + [sym__last_token_punctuation] = ACTIONS(595), + [sym__strikeout_open] = ACTIONS(531), + [sym__latex_span_start] = ACTIONS(534), + [sym__single_quote_open] = ACTIONS(537), + [sym__double_quote_open] = ACTIONS(540), + [sym__superscript_open] = ACTIONS(543), + [sym__subscript_open] = ACTIONS(546), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(549), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(552), + [sym__cite_author_in_text] = ACTIONS(555), + [sym__cite_suppress_author] = ACTIONS(558), + [sym__shortcode_open_escaped] = ACTIONS(561), + [sym__shortcode_open] = ACTIONS(564), + [sym__unclosed_span] = ACTIONS(466), }, [STATE(19)] = { - [sym_backslash_escape] = STATE(271), - [sym_commonmark_attribute] = STATE(271), - [sym_code_span] = STATE(271), - [sym_latex_span] = STATE(271), - [sym_superscript] = STATE(271), - [sym_subscript] = STATE(271), - [sym_strikeout] = STATE(271), - [sym_quoted_span] = STATE(271), - [sym_inline_note] = STATE(271), - [sym_citation] = STATE(271), - [sym_shortcode_escaped] = STATE(271), - [sym_shortcode] = STATE(271), - [sym_note_reference] = STATE(271), - [sym__link_text] = STATE(424), - [sym__link_text_non_empty] = STATE(425), - [sym_inline_link] = STATE(68), - [sym_image] = STATE(271), - [sym__image_inline_link] = STATE(883), - [sym__image_description] = STATE(1998), - [sym__image_description_non_empty] = STATE(1998), - [sym_hard_line_break] = STATE(271), - [sym__whitespace] = STATE(881), - [sym__word] = STATE(881), - [sym__soft_line_break] = STATE(884), - [sym__inline_base] = STATE(68), - [sym__text_base] = STATE(271), - [sym__inline_element] = STATE(68), - [sym__emphasis_star] = STATE(710), - [sym__strong_emphasis_star] = STATE(68), - [sym__emphasis_underscore] = STATE(710), - [sym__strong_emphasis_underscore] = STATE(68), - [aux_sym_superscript_repeat1] = STATE(68), - [aux_sym__inline_base_repeat1] = STATE(271), - [sym__backslash_escape] = ACTIONS(159), - [sym_entity_reference] = ACTIONS(161), - [sym_numeric_character_reference] = ACTIONS(161), - [anon_sym_LT] = ACTIONS(163), - [anon_sym_GT] = ACTIONS(165), - [anon_sym_BANG] = ACTIONS(167), - [anon_sym_DQUOTE] = ACTIONS(165), - [anon_sym_POUND] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(165), - [anon_sym_PERCENT] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_SQUOTE] = ACTIONS(165), - [anon_sym_STAR] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(165), - [anon_sym_COMMA] = ACTIONS(165), - [anon_sym_DASH] = ACTIONS(163), - [anon_sym_DOT] = ACTIONS(163), - [anon_sym_SLASH] = ACTIONS(165), - [anon_sym_COLON] = ACTIONS(165), - [anon_sym_SEMI] = ACTIONS(165), - [anon_sym_EQ] = ACTIONS(165), - [anon_sym_QMARK] = ACTIONS(165), - [anon_sym_LBRACK] = ACTIONS(169), - [anon_sym_BSLASH] = ACTIONS(171), - [anon_sym_RBRACK] = ACTIONS(527), - [anon_sym_CARET] = ACTIONS(163), - [anon_sym__] = ACTIONS(165), - [anon_sym_BQUOTE] = ACTIONS(165), - [anon_sym_LBRACE] = ACTIONS(175), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(165), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_RPAREN] = ACTIONS(165), - [sym__newline_token] = ACTIONS(177), - [anon_sym_CARET_LBRACK] = ACTIONS(179), - [anon_sym_LBRACK_CARET] = ACTIONS(181), - [sym_uri_autolink] = ACTIONS(161), - [sym_email_autolink] = ACTIONS(161), - [sym__whitespace_ge_2] = ACTIONS(183), - [aux_sym__whitespace_token1] = ACTIONS(185), - [sym__word_no_digit] = ACTIONS(187), - [sym__digits] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_DASH_DASH_DASH] = ACTIONS(187), - [anon_sym_DOT_DOT_DOT] = ACTIONS(187), - [sym__code_span_start] = ACTIONS(191), - [sym__emphasis_open_star] = ACTIONS(193), - [sym__emphasis_open_underscore] = ACTIONS(195), - [sym__last_token_punctuation] = ACTIONS(529), - [sym__strikeout_open] = ACTIONS(199), - [sym__latex_span_start] = ACTIONS(201), - [sym__single_quote_open] = ACTIONS(203), - [sym__double_quote_open] = ACTIONS(205), - [sym__superscript_open] = ACTIONS(207), - [sym__subscript_open] = ACTIONS(209), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(211), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(213), - [sym__cite_author_in_text] = ACTIONS(215), - [sym__cite_suppress_author] = ACTIONS(217), - [sym__shortcode_open_escaped] = ACTIONS(219), - [sym__shortcode_open] = ACTIONS(221), - [sym__unclosed_span] = ACTIONS(161), + [sym_backslash_escape] = STATE(379), + [sym_commonmark_attribute] = STATE(379), + [sym_code_span] = STATE(379), + [sym_latex_span] = STATE(379), + [sym_insert] = STATE(379), + [sym_delete] = STATE(379), + [sym_highlight] = STATE(379), + [sym_edit_comment] = STATE(379), + [sym_superscript] = STATE(379), + [sym_subscript] = STATE(379), + [sym_strikeout] = STATE(379), + [sym_quoted_span] = STATE(379), + [sym_inline_note] = STATE(379), + [sym_citation] = STATE(379), + [sym_shortcode_escaped] = STATE(379), + [sym_shortcode] = STATE(379), + [sym_note_reference] = STATE(379), + [sym__link_text] = STATE(545), + [sym__link_text_non_empty] = STATE(546), + [sym_inline_link] = STATE(281), + [sym_image] = STATE(379), + [sym__image_inline_link] = STATE(1390), + [sym__image_description] = STATE(2363), + [sym__image_description_non_empty] = STATE(2363), + [sym_hard_line_break] = STATE(379), + [sym__whitespace] = STATE(1385), + [sym__word] = STATE(1385), + [sym__soft_line_break] = STATE(1391), + [sym__inline_base] = STATE(281), + [sym__text_base] = STATE(379), + [sym__inline_element_no_underscore] = STATE(281), + [aux_sym__inline_no_underscore] = STATE(281), + [sym__emphasis_star] = STATE(1168), + [sym__strong_emphasis_star] = STATE(281), + [sym__emphasis_underscore] = STATE(1388), + [sym__strong_emphasis_underscore] = STATE(281), + [aux_sym__inline_base_repeat1] = STATE(379), + [sym__backslash_escape] = ACTIONS(253), + [sym_entity_reference] = ACTIONS(256), + [sym_numeric_character_reference] = ACTIONS(256), + [anon_sym_LT] = ACTIONS(259), + [anon_sym_GT] = ACTIONS(262), + [anon_sym_BANG] = ACTIONS(265), + [anon_sym_DQUOTE] = ACTIONS(262), + [anon_sym_POUND] = ACTIONS(262), + [anon_sym_DOLLAR] = ACTIONS(262), + [anon_sym_PERCENT] = ACTIONS(262), + [anon_sym_AMP] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(262), + [anon_sym_STAR] = ACTIONS(262), + [anon_sym_PLUS] = ACTIONS(262), + [anon_sym_COMMA] = ACTIONS(262), + [anon_sym_DASH] = ACTIONS(259), + [anon_sym_DOT] = ACTIONS(259), + [anon_sym_SLASH] = ACTIONS(262), + [anon_sym_COLON] = ACTIONS(262), + [anon_sym_SEMI] = ACTIONS(262), + [anon_sym_EQ] = ACTIONS(262), + [anon_sym_QMARK] = ACTIONS(262), + [anon_sym_LBRACK] = ACTIONS(268), + [anon_sym_BSLASH] = ACTIONS(271), + [anon_sym_RBRACK] = ACTIONS(251), + [anon_sym_CARET] = ACTIONS(259), + [anon_sym__] = ACTIONS(262), + [anon_sym_BQUOTE] = ACTIONS(262), + [anon_sym_LBRACE] = ACTIONS(274), + [anon_sym_PIPE] = ACTIONS(262), + [anon_sym_TILDE] = ACTIONS(262), + [anon_sym_LPAREN] = ACTIONS(262), + [anon_sym_RPAREN] = ACTIONS(262), + [sym__newline_token] = ACTIONS(277), + [aux_sym_insert_token1] = ACTIONS(280), + [aux_sym_delete_token1] = ACTIONS(283), + [aux_sym_highlight_token1] = ACTIONS(286), + [aux_sym_edit_comment_token1] = ACTIONS(289), + [anon_sym_CARET_LBRACK] = ACTIONS(292), + [anon_sym_LBRACK_CARET] = ACTIONS(295), + [sym_uri_autolink] = ACTIONS(256), + [sym_email_autolink] = ACTIONS(256), + [sym__whitespace_ge_2] = ACTIONS(298), + [aux_sym__whitespace_token1] = ACTIONS(301), + [sym__word_no_digit] = ACTIONS(304), + [sym__digits] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(307), + [anon_sym_DASH_DASH_DASH] = ACTIONS(304), + [anon_sym_DOT_DOT_DOT] = ACTIONS(304), + [sym__code_span_start] = ACTIONS(310), + [sym__emphasis_open_star] = ACTIONS(313), + [sym__emphasis_open_underscore] = ACTIONS(316), + [sym__last_token_punctuation] = ACTIONS(597), + [sym__strikeout_open] = ACTIONS(321), + [sym__latex_span_start] = ACTIONS(324), + [sym__single_quote_open] = ACTIONS(327), + [sym__double_quote_open] = ACTIONS(330), + [sym__superscript_open] = ACTIONS(333), + [sym__subscript_open] = ACTIONS(336), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(339), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(342), + [sym__cite_author_in_text] = ACTIONS(345), + [sym__cite_suppress_author] = ACTIONS(348), + [sym__shortcode_open_escaped] = ACTIONS(351), + [sym__shortcode_open] = ACTIONS(354), + [sym__unclosed_span] = ACTIONS(256), }, [STATE(20)] = { - [sym_backslash_escape] = STATE(271), - [sym_commonmark_attribute] = STATE(271), - [sym_code_span] = STATE(271), - [sym_latex_span] = STATE(271), - [sym_superscript] = STATE(271), - [sym_subscript] = STATE(271), - [sym_strikeout] = STATE(271), - [sym_quoted_span] = STATE(271), - [sym_inline_note] = STATE(271), - [sym_citation] = STATE(271), - [sym_shortcode_escaped] = STATE(271), - [sym_shortcode] = STATE(271), - [sym_note_reference] = STATE(271), - [sym__link_text] = STATE(424), - [sym__link_text_non_empty] = STATE(425), - [sym_inline_link] = STATE(85), - [sym_image] = STATE(271), - [sym__image_inline_link] = STATE(883), - [sym__image_description] = STATE(1998), - [sym__image_description_non_empty] = STATE(1998), - [sym_hard_line_break] = STATE(271), - [sym__whitespace] = STATE(881), - [sym__word] = STATE(881), - [sym__soft_line_break] = STATE(884), - [sym__inline_base] = STATE(85), - [sym__text_base] = STATE(271), - [sym__inline_element] = STATE(85), - [sym__emphasis_star] = STATE(710), - [sym__strong_emphasis_star] = STATE(85), - [sym__emphasis_underscore] = STATE(710), - [sym__strong_emphasis_underscore] = STATE(85), - [aux_sym_superscript_repeat1] = STATE(85), - [aux_sym__inline_base_repeat1] = STATE(271), - [sym__backslash_escape] = ACTIONS(159), - [sym_entity_reference] = ACTIONS(161), - [sym_numeric_character_reference] = ACTIONS(161), - [anon_sym_LT] = ACTIONS(163), - [anon_sym_GT] = ACTIONS(165), - [anon_sym_BANG] = ACTIONS(167), - [anon_sym_DQUOTE] = ACTIONS(165), - [anon_sym_POUND] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(165), - [anon_sym_PERCENT] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_SQUOTE] = ACTIONS(165), - [anon_sym_STAR] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(165), - [anon_sym_COMMA] = ACTIONS(165), - [anon_sym_DASH] = ACTIONS(163), - [anon_sym_DOT] = ACTIONS(163), - [anon_sym_SLASH] = ACTIONS(165), - [anon_sym_COLON] = ACTIONS(165), - [anon_sym_SEMI] = ACTIONS(165), - [anon_sym_EQ] = ACTIONS(165), - [anon_sym_QMARK] = ACTIONS(165), - [anon_sym_LBRACK] = ACTIONS(169), - [anon_sym_BSLASH] = ACTIONS(171), - [anon_sym_RBRACK] = ACTIONS(531), - [anon_sym_CARET] = ACTIONS(163), - [anon_sym__] = ACTIONS(165), - [anon_sym_BQUOTE] = ACTIONS(165), - [anon_sym_LBRACE] = ACTIONS(175), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(165), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_RPAREN] = ACTIONS(165), - [sym__newline_token] = ACTIONS(177), - [anon_sym_CARET_LBRACK] = ACTIONS(179), - [anon_sym_LBRACK_CARET] = ACTIONS(181), - [sym_uri_autolink] = ACTIONS(161), - [sym_email_autolink] = ACTIONS(161), - [sym__whitespace_ge_2] = ACTIONS(183), - [aux_sym__whitespace_token1] = ACTIONS(185), - [sym__word_no_digit] = ACTIONS(187), - [sym__digits] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_DASH_DASH_DASH] = ACTIONS(187), - [anon_sym_DOT_DOT_DOT] = ACTIONS(187), - [sym__code_span_start] = ACTIONS(191), - [sym__emphasis_open_star] = ACTIONS(193), - [sym__emphasis_open_underscore] = ACTIONS(195), - [sym__last_token_punctuation] = ACTIONS(533), - [sym__strikeout_open] = ACTIONS(199), - [sym__latex_span_start] = ACTIONS(201), - [sym__single_quote_open] = ACTIONS(203), - [sym__double_quote_open] = ACTIONS(205), - [sym__superscript_open] = ACTIONS(207), - [sym__subscript_open] = ACTIONS(209), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(211), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(213), - [sym__cite_author_in_text] = ACTIONS(215), - [sym__cite_suppress_author] = ACTIONS(217), - [sym__shortcode_open_escaped] = ACTIONS(219), - [sym__shortcode_open] = ACTIONS(221), - [sym__unclosed_span] = ACTIONS(161), + [sym_backslash_escape] = STATE(370), + [sym_commonmark_attribute] = STATE(370), + [sym_code_span] = STATE(370), + [sym_latex_span] = STATE(370), + [sym_insert] = STATE(370), + [sym_delete] = STATE(370), + [sym_highlight] = STATE(370), + [sym_edit_comment] = STATE(370), + [sym_superscript] = STATE(370), + [sym_subscript] = STATE(370), + [sym_strikeout] = STATE(370), + [sym_quoted_span] = STATE(370), + [sym_inline_note] = STATE(370), + [sym_citation] = STATE(370), + [sym_shortcode_escaped] = STATE(370), + [sym_shortcode] = STATE(370), + [sym_note_reference] = STATE(370), + [sym__link_text] = STATE(472), + [sym__link_text_non_empty] = STATE(473), + [sym_inline_link] = STATE(84), + [sym_image] = STATE(370), + [sym__image_inline_link] = STATE(923), + [sym__image_description] = STATE(2342), + [sym__image_description_non_empty] = STATE(2342), + [sym_hard_line_break] = STATE(370), + [sym__whitespace] = STATE(920), + [sym__word] = STATE(920), + [sym__soft_line_break] = STATE(924), + [sym__inline_base] = STATE(84), + [sym__text_base] = STATE(370), + [sym__inline_element] = STATE(84), + [sym__emphasis_star] = STATE(821), + [sym__strong_emphasis_star] = STATE(84), + [sym__emphasis_underscore] = STATE(821), + [sym__strong_emphasis_underscore] = STATE(84), + [aux_sym_insert_repeat1] = STATE(84), + [aux_sym__inline_base_repeat1] = STATE(370), + [sym__backslash_escape] = ACTIONS(73), + [sym_entity_reference] = ACTIONS(75), + [sym_numeric_character_reference] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_BANG] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_POUND] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(79), + [anon_sym_PERCENT] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_STAR] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_COMMA] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_DOT] = ACTIONS(77), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_COLON] = ACTIONS(79), + [anon_sym_SEMI] = ACTIONS(79), + [anon_sym_EQ] = ACTIONS(79), + [anon_sym_QMARK] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(83), + [anon_sym_BSLASH] = ACTIONS(85), + [anon_sym_RBRACK] = ACTIONS(599), + [anon_sym_CARET] = ACTIONS(77), + [anon_sym__] = ACTIONS(79), + [anon_sym_BQUOTE] = ACTIONS(79), + [anon_sym_LBRACE] = ACTIONS(89), + [anon_sym_PIPE] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(79), + [anon_sym_RPAREN] = ACTIONS(79), + [sym__newline_token] = ACTIONS(91), + [aux_sym_insert_token1] = ACTIONS(93), + [aux_sym_delete_token1] = ACTIONS(95), + [aux_sym_highlight_token1] = ACTIONS(97), + [aux_sym_edit_comment_token1] = ACTIONS(99), + [anon_sym_CARET_LBRACK] = ACTIONS(101), + [anon_sym_LBRACK_CARET] = ACTIONS(103), + [sym_uri_autolink] = ACTIONS(75), + [sym_email_autolink] = ACTIONS(75), + [sym__whitespace_ge_2] = ACTIONS(105), + [aux_sym__whitespace_token1] = ACTIONS(107), + [sym__word_no_digit] = ACTIONS(109), + [sym__digits] = ACTIONS(109), + [anon_sym_DASH_DASH] = ACTIONS(111), + [anon_sym_DASH_DASH_DASH] = ACTIONS(109), + [anon_sym_DOT_DOT_DOT] = ACTIONS(109), + [sym__code_span_start] = ACTIONS(113), + [sym__emphasis_open_star] = ACTIONS(115), + [sym__emphasis_open_underscore] = ACTIONS(117), + [sym__last_token_punctuation] = ACTIONS(601), + [sym__strikeout_open] = ACTIONS(121), + [sym__latex_span_start] = ACTIONS(123), + [sym__single_quote_open] = ACTIONS(125), + [sym__double_quote_open] = ACTIONS(127), + [sym__superscript_open] = ACTIONS(129), + [sym__subscript_open] = ACTIONS(131), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(133), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(135), + [sym__cite_author_in_text] = ACTIONS(137), + [sym__cite_suppress_author] = ACTIONS(139), + [sym__shortcode_open_escaped] = ACTIONS(141), + [sym__shortcode_open] = ACTIONS(143), + [sym__unclosed_span] = ACTIONS(75), }, [STATE(21)] = { - [sym_backslash_escape] = STATE(271), - [sym_commonmark_attribute] = STATE(271), - [sym_code_span] = STATE(271), - [sym_latex_span] = STATE(271), - [sym_superscript] = STATE(271), - [sym_subscript] = STATE(271), - [sym_strikeout] = STATE(271), - [sym_quoted_span] = STATE(271), - [sym_inline_note] = STATE(271), - [sym_citation] = STATE(271), - [sym_shortcode_escaped] = STATE(271), - [sym_shortcode] = STATE(271), - [sym_note_reference] = STATE(271), - [sym__link_text] = STATE(424), - [sym__link_text_non_empty] = STATE(425), - [sym_inline_link] = STATE(103), - [sym_image] = STATE(271), - [sym__image_inline_link] = STATE(883), - [sym__image_description] = STATE(1998), - [sym__image_description_non_empty] = STATE(1998), - [sym_hard_line_break] = STATE(271), - [sym__whitespace] = STATE(881), - [sym__word] = STATE(881), - [sym__soft_line_break] = STATE(884), - [sym__inline_base] = STATE(103), - [sym__text_base] = STATE(271), - [sym__inline_element] = STATE(103), - [sym__emphasis_star] = STATE(710), - [sym__strong_emphasis_star] = STATE(103), - [sym__emphasis_underscore] = STATE(710), - [sym__strong_emphasis_underscore] = STATE(103), - [aux_sym_superscript_repeat1] = STATE(103), - [aux_sym__inline_base_repeat1] = STATE(271), - [sym__backslash_escape] = ACTIONS(159), - [sym_entity_reference] = ACTIONS(161), - [sym_numeric_character_reference] = ACTIONS(161), - [anon_sym_LT] = ACTIONS(163), - [anon_sym_GT] = ACTIONS(165), - [anon_sym_BANG] = ACTIONS(167), - [anon_sym_DQUOTE] = ACTIONS(165), - [anon_sym_POUND] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(165), - [anon_sym_PERCENT] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_SQUOTE] = ACTIONS(165), - [anon_sym_STAR] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(165), - [anon_sym_COMMA] = ACTIONS(165), - [anon_sym_DASH] = ACTIONS(163), - [anon_sym_DOT] = ACTIONS(163), - [anon_sym_SLASH] = ACTIONS(165), - [anon_sym_COLON] = ACTIONS(165), - [anon_sym_SEMI] = ACTIONS(165), - [anon_sym_EQ] = ACTIONS(165), - [anon_sym_QMARK] = ACTIONS(165), - [anon_sym_LBRACK] = ACTIONS(169), - [anon_sym_BSLASH] = ACTIONS(171), - [anon_sym_RBRACK] = ACTIONS(535), - [anon_sym_CARET] = ACTIONS(163), - [anon_sym__] = ACTIONS(165), - [anon_sym_BQUOTE] = ACTIONS(165), - [anon_sym_LBRACE] = ACTIONS(175), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(165), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_RPAREN] = ACTIONS(165), - [sym__newline_token] = ACTIONS(177), - [anon_sym_CARET_LBRACK] = ACTIONS(179), - [anon_sym_LBRACK_CARET] = ACTIONS(181), - [sym_uri_autolink] = ACTIONS(161), - [sym_email_autolink] = ACTIONS(161), - [sym__whitespace_ge_2] = ACTIONS(183), - [aux_sym__whitespace_token1] = ACTIONS(185), - [sym__word_no_digit] = ACTIONS(187), - [sym__digits] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_DASH_DASH_DASH] = ACTIONS(187), - [anon_sym_DOT_DOT_DOT] = ACTIONS(187), - [sym__code_span_start] = ACTIONS(191), - [sym__emphasis_open_star] = ACTIONS(193), - [sym__emphasis_open_underscore] = ACTIONS(195), - [sym__last_token_punctuation] = ACTIONS(537), - [sym__strikeout_open] = ACTIONS(199), - [sym__latex_span_start] = ACTIONS(201), - [sym__single_quote_open] = ACTIONS(203), - [sym__double_quote_open] = ACTIONS(205), - [sym__superscript_open] = ACTIONS(207), - [sym__subscript_open] = ACTIONS(209), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(211), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(213), - [sym__cite_author_in_text] = ACTIONS(215), - [sym__cite_suppress_author] = ACTIONS(217), - [sym__shortcode_open_escaped] = ACTIONS(219), - [sym__shortcode_open] = ACTIONS(221), - [sym__unclosed_span] = ACTIONS(161), + [sym_backslash_escape] = STATE(370), + [sym_commonmark_attribute] = STATE(370), + [sym_code_span] = STATE(370), + [sym_latex_span] = STATE(370), + [sym_insert] = STATE(370), + [sym_delete] = STATE(370), + [sym_highlight] = STATE(370), + [sym_edit_comment] = STATE(370), + [sym_superscript] = STATE(370), + [sym_subscript] = STATE(370), + [sym_strikeout] = STATE(370), + [sym_quoted_span] = STATE(370), + [sym_inline_note] = STATE(370), + [sym_citation] = STATE(370), + [sym_shortcode_escaped] = STATE(370), + [sym_shortcode] = STATE(370), + [sym_note_reference] = STATE(370), + [sym__link_text] = STATE(472), + [sym__link_text_non_empty] = STATE(473), + [sym_inline_link] = STATE(110), + [sym_image] = STATE(370), + [sym__image_inline_link] = STATE(923), + [sym__image_description] = STATE(2342), + [sym__image_description_non_empty] = STATE(2342), + [sym_hard_line_break] = STATE(370), + [sym__whitespace] = STATE(920), + [sym__word] = STATE(920), + [sym__soft_line_break] = STATE(924), + [sym__inline_base] = STATE(110), + [sym__text_base] = STATE(370), + [sym__inline_element] = STATE(110), + [sym__emphasis_star] = STATE(821), + [sym__strong_emphasis_star] = STATE(110), + [sym__emphasis_underscore] = STATE(821), + [sym__strong_emphasis_underscore] = STATE(110), + [aux_sym_insert_repeat1] = STATE(110), + [aux_sym__inline_base_repeat1] = STATE(370), + [sym__backslash_escape] = ACTIONS(73), + [sym_entity_reference] = ACTIONS(75), + [sym_numeric_character_reference] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_BANG] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_POUND] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(79), + [anon_sym_PERCENT] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_STAR] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_COMMA] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_DOT] = ACTIONS(77), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_COLON] = ACTIONS(79), + [anon_sym_SEMI] = ACTIONS(79), + [anon_sym_EQ] = ACTIONS(79), + [anon_sym_QMARK] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(83), + [anon_sym_BSLASH] = ACTIONS(85), + [anon_sym_RBRACK] = ACTIONS(603), + [anon_sym_CARET] = ACTIONS(77), + [anon_sym__] = ACTIONS(79), + [anon_sym_BQUOTE] = ACTIONS(79), + [anon_sym_LBRACE] = ACTIONS(89), + [anon_sym_PIPE] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(79), + [anon_sym_RPAREN] = ACTIONS(79), + [sym__newline_token] = ACTIONS(91), + [aux_sym_insert_token1] = ACTIONS(93), + [aux_sym_delete_token1] = ACTIONS(95), + [aux_sym_highlight_token1] = ACTIONS(97), + [aux_sym_edit_comment_token1] = ACTIONS(99), + [anon_sym_CARET_LBRACK] = ACTIONS(101), + [anon_sym_LBRACK_CARET] = ACTIONS(103), + [sym_uri_autolink] = ACTIONS(75), + [sym_email_autolink] = ACTIONS(75), + [sym__whitespace_ge_2] = ACTIONS(105), + [aux_sym__whitespace_token1] = ACTIONS(107), + [sym__word_no_digit] = ACTIONS(109), + [sym__digits] = ACTIONS(109), + [anon_sym_DASH_DASH] = ACTIONS(111), + [anon_sym_DASH_DASH_DASH] = ACTIONS(109), + [anon_sym_DOT_DOT_DOT] = ACTIONS(109), + [sym__code_span_start] = ACTIONS(113), + [sym__emphasis_open_star] = ACTIONS(115), + [sym__emphasis_open_underscore] = ACTIONS(117), + [sym__last_token_punctuation] = ACTIONS(605), + [sym__strikeout_open] = ACTIONS(121), + [sym__latex_span_start] = ACTIONS(123), + [sym__single_quote_open] = ACTIONS(125), + [sym__double_quote_open] = ACTIONS(127), + [sym__superscript_open] = ACTIONS(129), + [sym__subscript_open] = ACTIONS(131), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(133), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(135), + [sym__cite_author_in_text] = ACTIONS(137), + [sym__cite_suppress_author] = ACTIONS(139), + [sym__shortcode_open_escaped] = ACTIONS(141), + [sym__shortcode_open] = ACTIONS(143), + [sym__unclosed_span] = ACTIONS(75), }, [STATE(22)] = { - [sym_backslash_escape] = STATE(271), - [sym_commonmark_attribute] = STATE(271), - [sym_code_span] = STATE(271), - [sym_latex_span] = STATE(271), - [sym_superscript] = STATE(271), - [sym_subscript] = STATE(271), - [sym_strikeout] = STATE(271), - [sym_quoted_span] = STATE(271), - [sym_inline_note] = STATE(271), - [sym_citation] = STATE(271), - [sym_shortcode_escaped] = STATE(271), - [sym_shortcode] = STATE(271), - [sym_note_reference] = STATE(271), - [sym__link_text] = STATE(424), - [sym__link_text_non_empty] = STATE(425), - [sym_inline_link] = STATE(195), - [sym_image] = STATE(271), - [sym__image_inline_link] = STATE(883), - [sym__image_description] = STATE(1998), - [sym__image_description_non_empty] = STATE(1998), - [sym_hard_line_break] = STATE(271), - [sym__whitespace] = STATE(881), - [sym__word] = STATE(881), - [sym__soft_line_break] = STATE(884), - [sym__inline_base] = STATE(195), - [sym__text_base] = STATE(271), - [sym__inline_element] = STATE(195), - [sym__emphasis_star] = STATE(710), - [sym__strong_emphasis_star] = STATE(195), - [sym__emphasis_underscore] = STATE(710), - [sym__strong_emphasis_underscore] = STATE(195), - [aux_sym_superscript_repeat1] = STATE(195), - [aux_sym__inline_base_repeat1] = STATE(271), - [sym__backslash_escape] = ACTIONS(159), - [sym_entity_reference] = ACTIONS(161), - [sym_numeric_character_reference] = ACTIONS(161), - [anon_sym_LT] = ACTIONS(163), - [anon_sym_GT] = ACTIONS(165), - [anon_sym_BANG] = ACTIONS(167), - [anon_sym_DQUOTE] = ACTIONS(165), - [anon_sym_POUND] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(165), - [anon_sym_PERCENT] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_SQUOTE] = ACTIONS(165), - [anon_sym_STAR] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(165), - [anon_sym_COMMA] = ACTIONS(165), - [anon_sym_DASH] = ACTIONS(163), - [anon_sym_DOT] = ACTIONS(163), - [anon_sym_SLASH] = ACTIONS(165), - [anon_sym_COLON] = ACTIONS(165), - [anon_sym_SEMI] = ACTIONS(165), - [anon_sym_EQ] = ACTIONS(165), - [anon_sym_QMARK] = ACTIONS(165), - [anon_sym_LBRACK] = ACTIONS(169), - [anon_sym_BSLASH] = ACTIONS(171), - [anon_sym_RBRACK] = ACTIONS(539), - [anon_sym_CARET] = ACTIONS(163), - [anon_sym__] = ACTIONS(165), - [anon_sym_BQUOTE] = ACTIONS(165), - [anon_sym_LBRACE] = ACTIONS(175), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(165), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_RPAREN] = ACTIONS(165), - [sym__newline_token] = ACTIONS(177), - [anon_sym_CARET_LBRACK] = ACTIONS(179), - [anon_sym_LBRACK_CARET] = ACTIONS(181), - [sym_uri_autolink] = ACTIONS(161), - [sym_email_autolink] = ACTIONS(161), - [sym__whitespace_ge_2] = ACTIONS(183), - [aux_sym__whitespace_token1] = ACTIONS(185), - [sym__word_no_digit] = ACTIONS(187), - [sym__digits] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_DASH_DASH_DASH] = ACTIONS(187), - [anon_sym_DOT_DOT_DOT] = ACTIONS(187), - [sym__code_span_start] = ACTIONS(191), - [sym__emphasis_open_star] = ACTIONS(193), - [sym__emphasis_open_underscore] = ACTIONS(195), - [sym__last_token_punctuation] = ACTIONS(541), - [sym__strikeout_open] = ACTIONS(199), - [sym__latex_span_start] = ACTIONS(201), - [sym__single_quote_open] = ACTIONS(203), - [sym__double_quote_open] = ACTIONS(205), - [sym__superscript_open] = ACTIONS(207), - [sym__subscript_open] = ACTIONS(209), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(211), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(213), - [sym__cite_author_in_text] = ACTIONS(215), - [sym__cite_suppress_author] = ACTIONS(217), - [sym__shortcode_open_escaped] = ACTIONS(219), - [sym__shortcode_open] = ACTIONS(221), - [sym__unclosed_span] = ACTIONS(161), + [sym_backslash_escape] = STATE(370), + [sym_commonmark_attribute] = STATE(370), + [sym_code_span] = STATE(370), + [sym_latex_span] = STATE(370), + [sym_insert] = STATE(370), + [sym_delete] = STATE(370), + [sym_highlight] = STATE(370), + [sym_edit_comment] = STATE(370), + [sym_superscript] = STATE(370), + [sym_subscript] = STATE(370), + [sym_strikeout] = STATE(370), + [sym_quoted_span] = STATE(370), + [sym_inline_note] = STATE(370), + [sym_citation] = STATE(370), + [sym_shortcode_escaped] = STATE(370), + [sym_shortcode] = STATE(370), + [sym_note_reference] = STATE(370), + [sym__link_text] = STATE(472), + [sym__link_text_non_empty] = STATE(473), + [sym_inline_link] = STATE(136), + [sym_image] = STATE(370), + [sym__image_inline_link] = STATE(923), + [sym__image_description] = STATE(2342), + [sym__image_description_non_empty] = STATE(2342), + [sym_hard_line_break] = STATE(370), + [sym__whitespace] = STATE(920), + [sym__word] = STATE(920), + [sym__soft_line_break] = STATE(924), + [sym__inline_base] = STATE(136), + [sym__text_base] = STATE(370), + [sym__inline_element] = STATE(136), + [sym__emphasis_star] = STATE(821), + [sym__strong_emphasis_star] = STATE(136), + [sym__emphasis_underscore] = STATE(821), + [sym__strong_emphasis_underscore] = STATE(136), + [aux_sym_insert_repeat1] = STATE(136), + [aux_sym__inline_base_repeat1] = STATE(370), + [sym__backslash_escape] = ACTIONS(73), + [sym_entity_reference] = ACTIONS(75), + [sym_numeric_character_reference] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_BANG] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_POUND] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(79), + [anon_sym_PERCENT] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_STAR] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_COMMA] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_DOT] = ACTIONS(77), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_COLON] = ACTIONS(79), + [anon_sym_SEMI] = ACTIONS(79), + [anon_sym_EQ] = ACTIONS(79), + [anon_sym_QMARK] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(83), + [anon_sym_BSLASH] = ACTIONS(85), + [anon_sym_RBRACK] = ACTIONS(607), + [anon_sym_CARET] = ACTIONS(77), + [anon_sym__] = ACTIONS(79), + [anon_sym_BQUOTE] = ACTIONS(79), + [anon_sym_LBRACE] = ACTIONS(89), + [anon_sym_PIPE] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(79), + [anon_sym_RPAREN] = ACTIONS(79), + [sym__newline_token] = ACTIONS(91), + [aux_sym_insert_token1] = ACTIONS(93), + [aux_sym_delete_token1] = ACTIONS(95), + [aux_sym_highlight_token1] = ACTIONS(97), + [aux_sym_edit_comment_token1] = ACTIONS(99), + [anon_sym_CARET_LBRACK] = ACTIONS(101), + [anon_sym_LBRACK_CARET] = ACTIONS(103), + [sym_uri_autolink] = ACTIONS(75), + [sym_email_autolink] = ACTIONS(75), + [sym__whitespace_ge_2] = ACTIONS(105), + [aux_sym__whitespace_token1] = ACTIONS(107), + [sym__word_no_digit] = ACTIONS(109), + [sym__digits] = ACTIONS(109), + [anon_sym_DASH_DASH] = ACTIONS(111), + [anon_sym_DASH_DASH_DASH] = ACTIONS(109), + [anon_sym_DOT_DOT_DOT] = ACTIONS(109), + [sym__code_span_start] = ACTIONS(113), + [sym__emphasis_open_star] = ACTIONS(115), + [sym__emphasis_open_underscore] = ACTIONS(117), + [sym__last_token_punctuation] = ACTIONS(609), + [sym__strikeout_open] = ACTIONS(121), + [sym__latex_span_start] = ACTIONS(123), + [sym__single_quote_open] = ACTIONS(125), + [sym__double_quote_open] = ACTIONS(127), + [sym__superscript_open] = ACTIONS(129), + [sym__subscript_open] = ACTIONS(131), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(133), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(135), + [sym__cite_author_in_text] = ACTIONS(137), + [sym__cite_suppress_author] = ACTIONS(139), + [sym__shortcode_open_escaped] = ACTIONS(141), + [sym__shortcode_open] = ACTIONS(143), + [sym__unclosed_span] = ACTIONS(75), }, [STATE(23)] = { - [sym_backslash_escape] = STATE(271), - [sym_commonmark_attribute] = STATE(271), - [sym_code_span] = STATE(271), - [sym_latex_span] = STATE(271), - [sym_superscript] = STATE(271), - [sym_subscript] = STATE(271), - [sym_strikeout] = STATE(271), - [sym_quoted_span] = STATE(271), - [sym_inline_note] = STATE(271), - [sym_citation] = STATE(271), - [sym_shortcode_escaped] = STATE(271), - [sym_shortcode] = STATE(271), - [sym_note_reference] = STATE(271), - [sym__link_text] = STATE(424), - [sym__link_text_non_empty] = STATE(425), - [sym_inline_link] = STATE(137), - [sym_image] = STATE(271), - [sym__image_inline_link] = STATE(883), - [sym__image_description] = STATE(1998), - [sym__image_description_non_empty] = STATE(1998), - [sym_hard_line_break] = STATE(271), - [sym__whitespace] = STATE(881), - [sym__word] = STATE(881), - [sym__soft_line_break] = STATE(884), - [sym__inline_base] = STATE(137), - [sym__text_base] = STATE(271), - [sym__inline_element] = STATE(137), - [sym__emphasis_star] = STATE(710), - [sym__strong_emphasis_star] = STATE(137), - [sym__emphasis_underscore] = STATE(710), - [sym__strong_emphasis_underscore] = STATE(137), - [aux_sym_superscript_repeat1] = STATE(137), - [aux_sym__inline_base_repeat1] = STATE(271), - [sym__backslash_escape] = ACTIONS(159), - [sym_entity_reference] = ACTIONS(161), - [sym_numeric_character_reference] = ACTIONS(161), - [anon_sym_LT] = ACTIONS(163), - [anon_sym_GT] = ACTIONS(165), - [anon_sym_BANG] = ACTIONS(167), - [anon_sym_DQUOTE] = ACTIONS(165), - [anon_sym_POUND] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(165), - [anon_sym_PERCENT] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_SQUOTE] = ACTIONS(165), - [anon_sym_STAR] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(165), - [anon_sym_COMMA] = ACTIONS(165), - [anon_sym_DASH] = ACTIONS(163), - [anon_sym_DOT] = ACTIONS(163), - [anon_sym_SLASH] = ACTIONS(165), - [anon_sym_COLON] = ACTIONS(165), - [anon_sym_SEMI] = ACTIONS(165), - [anon_sym_EQ] = ACTIONS(165), - [anon_sym_QMARK] = ACTIONS(165), - [anon_sym_LBRACK] = ACTIONS(169), - [anon_sym_BSLASH] = ACTIONS(171), - [anon_sym_RBRACK] = ACTIONS(543), - [anon_sym_CARET] = ACTIONS(163), - [anon_sym__] = ACTIONS(165), - [anon_sym_BQUOTE] = ACTIONS(165), - [anon_sym_LBRACE] = ACTIONS(175), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(165), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_RPAREN] = ACTIONS(165), - [sym__newline_token] = ACTIONS(177), - [anon_sym_CARET_LBRACK] = ACTIONS(179), - [anon_sym_LBRACK_CARET] = ACTIONS(181), - [sym_uri_autolink] = ACTIONS(161), - [sym_email_autolink] = ACTIONS(161), - [sym__whitespace_ge_2] = ACTIONS(183), - [aux_sym__whitespace_token1] = ACTIONS(185), - [sym__word_no_digit] = ACTIONS(187), - [sym__digits] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_DASH_DASH_DASH] = ACTIONS(187), - [anon_sym_DOT_DOT_DOT] = ACTIONS(187), - [sym__code_span_start] = ACTIONS(191), - [sym__emphasis_open_star] = ACTIONS(193), - [sym__emphasis_open_underscore] = ACTIONS(195), - [sym__last_token_punctuation] = ACTIONS(545), - [sym__strikeout_open] = ACTIONS(199), - [sym__latex_span_start] = ACTIONS(201), - [sym__single_quote_open] = ACTIONS(203), - [sym__double_quote_open] = ACTIONS(205), - [sym__superscript_open] = ACTIONS(207), - [sym__subscript_open] = ACTIONS(209), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(211), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(213), - [sym__cite_author_in_text] = ACTIONS(215), - [sym__cite_suppress_author] = ACTIONS(217), - [sym__shortcode_open_escaped] = ACTIONS(219), - [sym__shortcode_open] = ACTIONS(221), - [sym__unclosed_span] = ACTIONS(161), + [sym_backslash_escape] = STATE(370), + [sym_commonmark_attribute] = STATE(370), + [sym_code_span] = STATE(370), + [sym_latex_span] = STATE(370), + [sym_insert] = STATE(370), + [sym_delete] = STATE(370), + [sym_highlight] = STATE(370), + [sym_edit_comment] = STATE(370), + [sym_superscript] = STATE(370), + [sym_subscript] = STATE(370), + [sym_strikeout] = STATE(370), + [sym_quoted_span] = STATE(370), + [sym_inline_note] = STATE(370), + [sym_citation] = STATE(370), + [sym_shortcode_escaped] = STATE(370), + [sym_shortcode] = STATE(370), + [sym_note_reference] = STATE(370), + [sym__link_text] = STATE(472), + [sym__link_text_non_empty] = STATE(473), + [sym_inline_link] = STATE(162), + [sym_image] = STATE(370), + [sym__image_inline_link] = STATE(923), + [sym__image_description] = STATE(2342), + [sym__image_description_non_empty] = STATE(2342), + [sym_hard_line_break] = STATE(370), + [sym__whitespace] = STATE(920), + [sym__word] = STATE(920), + [sym__soft_line_break] = STATE(924), + [sym__inline_base] = STATE(162), + [sym__text_base] = STATE(370), + [sym__inline_element] = STATE(162), + [sym__emphasis_star] = STATE(821), + [sym__strong_emphasis_star] = STATE(162), + [sym__emphasis_underscore] = STATE(821), + [sym__strong_emphasis_underscore] = STATE(162), + [aux_sym_insert_repeat1] = STATE(162), + [aux_sym__inline_base_repeat1] = STATE(370), + [sym__backslash_escape] = ACTIONS(73), + [sym_entity_reference] = ACTIONS(75), + [sym_numeric_character_reference] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_BANG] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_POUND] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(79), + [anon_sym_PERCENT] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_STAR] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_COMMA] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_DOT] = ACTIONS(77), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_COLON] = ACTIONS(79), + [anon_sym_SEMI] = ACTIONS(79), + [anon_sym_EQ] = ACTIONS(79), + [anon_sym_QMARK] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(83), + [anon_sym_BSLASH] = ACTIONS(85), + [anon_sym_RBRACK] = ACTIONS(611), + [anon_sym_CARET] = ACTIONS(77), + [anon_sym__] = ACTIONS(79), + [anon_sym_BQUOTE] = ACTIONS(79), + [anon_sym_LBRACE] = ACTIONS(89), + [anon_sym_PIPE] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(79), + [anon_sym_RPAREN] = ACTIONS(79), + [sym__newline_token] = ACTIONS(91), + [aux_sym_insert_token1] = ACTIONS(93), + [aux_sym_delete_token1] = ACTIONS(95), + [aux_sym_highlight_token1] = ACTIONS(97), + [aux_sym_edit_comment_token1] = ACTIONS(99), + [anon_sym_CARET_LBRACK] = ACTIONS(101), + [anon_sym_LBRACK_CARET] = ACTIONS(103), + [sym_uri_autolink] = ACTIONS(75), + [sym_email_autolink] = ACTIONS(75), + [sym__whitespace_ge_2] = ACTIONS(105), + [aux_sym__whitespace_token1] = ACTIONS(107), + [sym__word_no_digit] = ACTIONS(109), + [sym__digits] = ACTIONS(109), + [anon_sym_DASH_DASH] = ACTIONS(111), + [anon_sym_DASH_DASH_DASH] = ACTIONS(109), + [anon_sym_DOT_DOT_DOT] = ACTIONS(109), + [sym__code_span_start] = ACTIONS(113), + [sym__emphasis_open_star] = ACTIONS(115), + [sym__emphasis_open_underscore] = ACTIONS(117), + [sym__last_token_punctuation] = ACTIONS(613), + [sym__strikeout_open] = ACTIONS(121), + [sym__latex_span_start] = ACTIONS(123), + [sym__single_quote_open] = ACTIONS(125), + [sym__double_quote_open] = ACTIONS(127), + [sym__superscript_open] = ACTIONS(129), + [sym__subscript_open] = ACTIONS(131), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(133), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(135), + [sym__cite_author_in_text] = ACTIONS(137), + [sym__cite_suppress_author] = ACTIONS(139), + [sym__shortcode_open_escaped] = ACTIONS(141), + [sym__shortcode_open] = ACTIONS(143), + [sym__unclosed_span] = ACTIONS(75), }, [STATE(24)] = { - [sym_backslash_escape] = STATE(271), - [sym_commonmark_attribute] = STATE(271), - [sym_code_span] = STATE(271), - [sym_latex_span] = STATE(271), - [sym_superscript] = STATE(271), - [sym_subscript] = STATE(271), - [sym_strikeout] = STATE(271), - [sym_quoted_span] = STATE(271), - [sym_inline_note] = STATE(271), - [sym_citation] = STATE(271), - [sym_shortcode_escaped] = STATE(271), - [sym_shortcode] = STATE(271), - [sym_note_reference] = STATE(271), - [sym__link_text] = STATE(424), - [sym__link_text_non_empty] = STATE(425), - [sym_inline_link] = STATE(155), - [sym_image] = STATE(271), - [sym__image_inline_link] = STATE(883), - [sym__image_description] = STATE(1998), - [sym__image_description_non_empty] = STATE(1998), - [sym_hard_line_break] = STATE(271), - [sym__whitespace] = STATE(881), - [sym__word] = STATE(881), - [sym__soft_line_break] = STATE(884), - [sym__inline_base] = STATE(155), - [sym__text_base] = STATE(271), - [sym__inline_element] = STATE(155), - [sym__emphasis_star] = STATE(710), - [sym__strong_emphasis_star] = STATE(155), - [sym__emphasis_underscore] = STATE(710), - [sym__strong_emphasis_underscore] = STATE(155), - [aux_sym_superscript_repeat1] = STATE(155), - [aux_sym__inline_base_repeat1] = STATE(271), - [sym__backslash_escape] = ACTIONS(159), - [sym_entity_reference] = ACTIONS(161), - [sym_numeric_character_reference] = ACTIONS(161), - [anon_sym_LT] = ACTIONS(163), - [anon_sym_GT] = ACTIONS(165), - [anon_sym_BANG] = ACTIONS(167), - [anon_sym_DQUOTE] = ACTIONS(165), - [anon_sym_POUND] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(165), - [anon_sym_PERCENT] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_SQUOTE] = ACTIONS(165), - [anon_sym_STAR] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(165), - [anon_sym_COMMA] = ACTIONS(165), - [anon_sym_DASH] = ACTIONS(163), - [anon_sym_DOT] = ACTIONS(163), - [anon_sym_SLASH] = ACTIONS(165), - [anon_sym_COLON] = ACTIONS(165), - [anon_sym_SEMI] = ACTIONS(165), - [anon_sym_EQ] = ACTIONS(165), - [anon_sym_QMARK] = ACTIONS(165), - [anon_sym_LBRACK] = ACTIONS(169), - [anon_sym_BSLASH] = ACTIONS(171), - [anon_sym_RBRACK] = ACTIONS(547), - [anon_sym_CARET] = ACTIONS(163), - [anon_sym__] = ACTIONS(165), - [anon_sym_BQUOTE] = ACTIONS(165), - [anon_sym_LBRACE] = ACTIONS(175), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(165), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_RPAREN] = ACTIONS(165), - [sym__newline_token] = ACTIONS(177), - [anon_sym_CARET_LBRACK] = ACTIONS(179), - [anon_sym_LBRACK_CARET] = ACTIONS(181), - [sym_uri_autolink] = ACTIONS(161), - [sym_email_autolink] = ACTIONS(161), - [sym__whitespace_ge_2] = ACTIONS(183), - [aux_sym__whitespace_token1] = ACTIONS(185), - [sym__word_no_digit] = ACTIONS(187), - [sym__digits] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_DASH_DASH_DASH] = ACTIONS(187), - [anon_sym_DOT_DOT_DOT] = ACTIONS(187), - [sym__code_span_start] = ACTIONS(191), - [sym__emphasis_open_star] = ACTIONS(193), - [sym__emphasis_open_underscore] = ACTIONS(195), - [sym__last_token_punctuation] = ACTIONS(549), - [sym__strikeout_open] = ACTIONS(199), - [sym__latex_span_start] = ACTIONS(201), - [sym__single_quote_open] = ACTIONS(203), - [sym__double_quote_open] = ACTIONS(205), - [sym__superscript_open] = ACTIONS(207), - [sym__subscript_open] = ACTIONS(209), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(211), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(213), - [sym__cite_author_in_text] = ACTIONS(215), - [sym__cite_suppress_author] = ACTIONS(217), - [sym__shortcode_open_escaped] = ACTIONS(219), - [sym__shortcode_open] = ACTIONS(221), - [sym__unclosed_span] = ACTIONS(161), + [sym_backslash_escape] = STATE(373), + [sym_commonmark_attribute] = STATE(373), + [sym_code_span] = STATE(373), + [sym_latex_span] = STATE(373), + [sym_insert] = STATE(373), + [sym_delete] = STATE(373), + [sym_highlight] = STATE(373), + [sym_edit_comment] = STATE(373), + [sym_superscript] = STATE(373), + [sym_subscript] = STATE(373), + [sym_strikeout] = STATE(373), + [sym_quoted_span] = STATE(373), + [sym_inline_note] = STATE(373), + [sym_citation] = STATE(373), + [sym_shortcode_escaped] = STATE(373), + [sym_shortcode] = STATE(373), + [sym_note_reference] = STATE(373), + [sym__link_text] = STATE(522), + [sym__link_text_non_empty] = STATE(523), + [sym_inline_link] = STATE(58), + [sym_image] = STATE(373), + [sym__image_inline_link] = STATE(1265), + [sym__image_description] = STATE(2331), + [sym__image_description_non_empty] = STATE(2331), + [sym_hard_line_break] = STATE(373), + [sym__whitespace] = STATE(1262), + [sym__word] = STATE(1262), + [sym__soft_line_break] = STATE(1267), + [sym__inline_base] = STATE(58), + [sym__text_base] = STATE(373), + [sym__inline_element_no_star] = STATE(58), + [aux_sym__inline_no_star] = STATE(58), + [sym__emphasis_star] = STATE(1142), + [sym__strong_emphasis_star] = STATE(58), + [sym__emphasis_underscore] = STATE(1147), + [sym__strong_emphasis_underscore] = STATE(58), + [aux_sym__inline_base_repeat1] = STATE(373), + [ts_builtin_sym_end] = ACTIONS(251), + [sym__backslash_escape] = ACTIONS(463), + [sym_entity_reference] = ACTIONS(466), + [sym_numeric_character_reference] = ACTIONS(466), + [anon_sym_LT] = ACTIONS(469), + [anon_sym_GT] = ACTIONS(472), + [anon_sym_BANG] = ACTIONS(475), + [anon_sym_DQUOTE] = ACTIONS(472), + [anon_sym_POUND] = ACTIONS(472), + [anon_sym_DOLLAR] = ACTIONS(472), + [anon_sym_PERCENT] = ACTIONS(472), + [anon_sym_AMP] = ACTIONS(469), + [anon_sym_SQUOTE] = ACTIONS(472), + [anon_sym_STAR] = ACTIONS(472), + [anon_sym_PLUS] = ACTIONS(472), + [anon_sym_COMMA] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(469), + [anon_sym_DOT] = ACTIONS(469), + [anon_sym_SLASH] = ACTIONS(472), + [anon_sym_COLON] = ACTIONS(472), + [anon_sym_SEMI] = ACTIONS(472), + [anon_sym_EQ] = ACTIONS(472), + [anon_sym_QMARK] = ACTIONS(472), + [anon_sym_LBRACK] = ACTIONS(478), + [anon_sym_BSLASH] = ACTIONS(481), + [anon_sym_CARET] = ACTIONS(469), + [anon_sym__] = ACTIONS(472), + [anon_sym_BQUOTE] = ACTIONS(472), + [anon_sym_LBRACE] = ACTIONS(484), + [anon_sym_PIPE] = ACTIONS(472), + [anon_sym_TILDE] = ACTIONS(472), + [anon_sym_LPAREN] = ACTIONS(472), + [anon_sym_RPAREN] = ACTIONS(472), + [sym__newline_token] = ACTIONS(487), + [aux_sym_insert_token1] = ACTIONS(490), + [aux_sym_delete_token1] = ACTIONS(493), + [aux_sym_highlight_token1] = ACTIONS(496), + [aux_sym_edit_comment_token1] = ACTIONS(499), + [anon_sym_CARET_LBRACK] = ACTIONS(502), + [anon_sym_LBRACK_CARET] = ACTIONS(505), + [sym_uri_autolink] = ACTIONS(466), + [sym_email_autolink] = ACTIONS(466), + [sym__whitespace_ge_2] = ACTIONS(508), + [aux_sym__whitespace_token1] = ACTIONS(511), + [sym__word_no_digit] = ACTIONS(514), + [sym__digits] = ACTIONS(514), + [anon_sym_DASH_DASH] = ACTIONS(517), + [anon_sym_DASH_DASH_DASH] = ACTIONS(514), + [anon_sym_DOT_DOT_DOT] = ACTIONS(514), + [sym__code_span_start] = ACTIONS(520), + [sym__emphasis_open_star] = ACTIONS(523), + [sym__emphasis_open_underscore] = ACTIONS(526), + [sym__last_token_punctuation] = ACTIONS(615), + [sym__strikeout_open] = ACTIONS(531), + [sym__latex_span_start] = ACTIONS(534), + [sym__single_quote_open] = ACTIONS(537), + [sym__double_quote_open] = ACTIONS(540), + [sym__superscript_open] = ACTIONS(543), + [sym__subscript_open] = ACTIONS(546), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(549), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(552), + [sym__cite_author_in_text] = ACTIONS(555), + [sym__cite_suppress_author] = ACTIONS(558), + [sym__shortcode_open_escaped] = ACTIONS(561), + [sym__shortcode_open] = ACTIONS(564), + [sym__unclosed_span] = ACTIONS(466), }, [STATE(25)] = { - [sym_backslash_escape] = STATE(271), - [sym_commonmark_attribute] = STATE(271), - [sym_code_span] = STATE(271), - [sym_latex_span] = STATE(271), - [sym_superscript] = STATE(271), - [sym_subscript] = STATE(271), - [sym_strikeout] = STATE(271), - [sym_quoted_span] = STATE(271), - [sym_inline_note] = STATE(271), - [sym_citation] = STATE(271), - [sym_shortcode_escaped] = STATE(271), - [sym_shortcode] = STATE(271), - [sym_note_reference] = STATE(271), - [sym__link_text] = STATE(424), - [sym__link_text_non_empty] = STATE(425), - [sym_inline_link] = STATE(173), - [sym_image] = STATE(271), - [sym__image_inline_link] = STATE(883), - [sym__image_description] = STATE(1998), - [sym__image_description_non_empty] = STATE(1998), - [sym_hard_line_break] = STATE(271), - [sym__whitespace] = STATE(881), - [sym__word] = STATE(881), - [sym__soft_line_break] = STATE(884), - [sym__inline_base] = STATE(173), - [sym__text_base] = STATE(271), - [sym__inline_element] = STATE(173), - [sym__emphasis_star] = STATE(710), - [sym__strong_emphasis_star] = STATE(173), - [sym__emphasis_underscore] = STATE(710), - [sym__strong_emphasis_underscore] = STATE(173), - [aux_sym_superscript_repeat1] = STATE(173), - [aux_sym__inline_base_repeat1] = STATE(271), - [sym__backslash_escape] = ACTIONS(159), - [sym_entity_reference] = ACTIONS(161), - [sym_numeric_character_reference] = ACTIONS(161), - [anon_sym_LT] = ACTIONS(163), - [anon_sym_GT] = ACTIONS(165), - [anon_sym_BANG] = ACTIONS(167), - [anon_sym_DQUOTE] = ACTIONS(165), - [anon_sym_POUND] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(165), - [anon_sym_PERCENT] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_SQUOTE] = ACTIONS(165), - [anon_sym_STAR] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(165), - [anon_sym_COMMA] = ACTIONS(165), - [anon_sym_DASH] = ACTIONS(163), - [anon_sym_DOT] = ACTIONS(163), - [anon_sym_SLASH] = ACTIONS(165), - [anon_sym_COLON] = ACTIONS(165), - [anon_sym_SEMI] = ACTIONS(165), - [anon_sym_EQ] = ACTIONS(165), - [anon_sym_QMARK] = ACTIONS(165), - [anon_sym_LBRACK] = ACTIONS(169), - [anon_sym_BSLASH] = ACTIONS(171), - [anon_sym_RBRACK] = ACTIONS(551), - [anon_sym_CARET] = ACTIONS(163), - [anon_sym__] = ACTIONS(165), - [anon_sym_BQUOTE] = ACTIONS(165), - [anon_sym_LBRACE] = ACTIONS(175), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(165), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_RPAREN] = ACTIONS(165), - [sym__newline_token] = ACTIONS(177), - [anon_sym_CARET_LBRACK] = ACTIONS(179), - [anon_sym_LBRACK_CARET] = ACTIONS(181), - [sym_uri_autolink] = ACTIONS(161), - [sym_email_autolink] = ACTIONS(161), - [sym__whitespace_ge_2] = ACTIONS(183), - [aux_sym__whitespace_token1] = ACTIONS(185), - [sym__word_no_digit] = ACTIONS(187), - [sym__digits] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_DASH_DASH_DASH] = ACTIONS(187), - [anon_sym_DOT_DOT_DOT] = ACTIONS(187), - [sym__code_span_start] = ACTIONS(191), - [sym__emphasis_open_star] = ACTIONS(193), - [sym__emphasis_open_underscore] = ACTIONS(195), - [sym__last_token_punctuation] = ACTIONS(553), - [sym__strikeout_open] = ACTIONS(199), - [sym__latex_span_start] = ACTIONS(201), - [sym__single_quote_open] = ACTIONS(203), - [sym__double_quote_open] = ACTIONS(205), - [sym__superscript_open] = ACTIONS(207), - [sym__subscript_open] = ACTIONS(209), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(211), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(213), - [sym__cite_author_in_text] = ACTIONS(215), - [sym__cite_suppress_author] = ACTIONS(217), - [sym__shortcode_open_escaped] = ACTIONS(219), - [sym__shortcode_open] = ACTIONS(221), - [sym__unclosed_span] = ACTIONS(161), + [sym_backslash_escape] = STATE(370), + [sym_commonmark_attribute] = STATE(370), + [sym_code_span] = STATE(370), + [sym_latex_span] = STATE(370), + [sym_insert] = STATE(370), + [sym_delete] = STATE(370), + [sym_highlight] = STATE(370), + [sym_edit_comment] = STATE(370), + [sym_superscript] = STATE(370), + [sym_subscript] = STATE(370), + [sym_strikeout] = STATE(370), + [sym_quoted_span] = STATE(370), + [sym_inline_note] = STATE(370), + [sym_citation] = STATE(370), + [sym_shortcode_escaped] = STATE(370), + [sym_shortcode] = STATE(370), + [sym_note_reference] = STATE(370), + [sym__link_text] = STATE(472), + [sym__link_text_non_empty] = STATE(473), + [sym_inline_link] = STATE(188), + [sym_image] = STATE(370), + [sym__image_inline_link] = STATE(923), + [sym__image_description] = STATE(2342), + [sym__image_description_non_empty] = STATE(2342), + [sym_hard_line_break] = STATE(370), + [sym__whitespace] = STATE(920), + [sym__word] = STATE(920), + [sym__soft_line_break] = STATE(924), + [sym__inline_base] = STATE(188), + [sym__text_base] = STATE(370), + [sym__inline_element] = STATE(188), + [sym__emphasis_star] = STATE(821), + [sym__strong_emphasis_star] = STATE(188), + [sym__emphasis_underscore] = STATE(821), + [sym__strong_emphasis_underscore] = STATE(188), + [aux_sym_insert_repeat1] = STATE(188), + [aux_sym__inline_base_repeat1] = STATE(370), + [sym__backslash_escape] = ACTIONS(73), + [sym_entity_reference] = ACTIONS(75), + [sym_numeric_character_reference] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_BANG] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_POUND] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(79), + [anon_sym_PERCENT] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_STAR] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_COMMA] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_DOT] = ACTIONS(77), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_COLON] = ACTIONS(79), + [anon_sym_SEMI] = ACTIONS(79), + [anon_sym_EQ] = ACTIONS(79), + [anon_sym_QMARK] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(83), + [anon_sym_BSLASH] = ACTIONS(85), + [anon_sym_RBRACK] = ACTIONS(617), + [anon_sym_CARET] = ACTIONS(77), + [anon_sym__] = ACTIONS(79), + [anon_sym_BQUOTE] = ACTIONS(79), + [anon_sym_LBRACE] = ACTIONS(89), + [anon_sym_PIPE] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(79), + [anon_sym_RPAREN] = ACTIONS(79), + [sym__newline_token] = ACTIONS(91), + [aux_sym_insert_token1] = ACTIONS(93), + [aux_sym_delete_token1] = ACTIONS(95), + [aux_sym_highlight_token1] = ACTIONS(97), + [aux_sym_edit_comment_token1] = ACTIONS(99), + [anon_sym_CARET_LBRACK] = ACTIONS(101), + [anon_sym_LBRACK_CARET] = ACTIONS(103), + [sym_uri_autolink] = ACTIONS(75), + [sym_email_autolink] = ACTIONS(75), + [sym__whitespace_ge_2] = ACTIONS(105), + [aux_sym__whitespace_token1] = ACTIONS(107), + [sym__word_no_digit] = ACTIONS(109), + [sym__digits] = ACTIONS(109), + [anon_sym_DASH_DASH] = ACTIONS(111), + [anon_sym_DASH_DASH_DASH] = ACTIONS(109), + [anon_sym_DOT_DOT_DOT] = ACTIONS(109), + [sym__code_span_start] = ACTIONS(113), + [sym__emphasis_open_star] = ACTIONS(115), + [sym__emphasis_open_underscore] = ACTIONS(117), + [sym__last_token_punctuation] = ACTIONS(619), + [sym__strikeout_open] = ACTIONS(121), + [sym__latex_span_start] = ACTIONS(123), + [sym__single_quote_open] = ACTIONS(125), + [sym__double_quote_open] = ACTIONS(127), + [sym__superscript_open] = ACTIONS(129), + [sym__subscript_open] = ACTIONS(131), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(133), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(135), + [sym__cite_author_in_text] = ACTIONS(137), + [sym__cite_suppress_author] = ACTIONS(139), + [sym__shortcode_open_escaped] = ACTIONS(141), + [sym__shortcode_open] = ACTIONS(143), + [sym__unclosed_span] = ACTIONS(75), }, [STATE(26)] = { - [sym_backslash_escape] = STATE(271), - [sym_commonmark_attribute] = STATE(271), - [sym_code_span] = STATE(271), - [sym_latex_span] = STATE(271), - [sym_superscript] = STATE(271), - [sym_subscript] = STATE(271), - [sym_strikeout] = STATE(271), - [sym_quoted_span] = STATE(271), - [sym_inline_note] = STATE(271), - [sym_citation] = STATE(271), - [sym_shortcode_escaped] = STATE(271), - [sym_shortcode] = STATE(271), - [sym_note_reference] = STATE(271), - [sym__link_text] = STATE(424), - [sym__link_text_non_empty] = STATE(425), - [sym_inline_link] = STATE(191), - [sym_image] = STATE(271), - [sym__image_inline_link] = STATE(883), - [sym__image_description] = STATE(1998), - [sym__image_description_non_empty] = STATE(1998), - [sym_hard_line_break] = STATE(271), - [sym__whitespace] = STATE(881), - [sym__word] = STATE(881), - [sym__soft_line_break] = STATE(884), - [sym__inline_base] = STATE(191), - [sym__text_base] = STATE(271), - [sym__inline_element] = STATE(191), - [sym__emphasis_star] = STATE(710), - [sym__strong_emphasis_star] = STATE(191), - [sym__emphasis_underscore] = STATE(710), - [sym__strong_emphasis_underscore] = STATE(191), - [aux_sym_superscript_repeat1] = STATE(191), - [aux_sym__inline_base_repeat1] = STATE(271), - [sym__backslash_escape] = ACTIONS(159), - [sym_entity_reference] = ACTIONS(161), - [sym_numeric_character_reference] = ACTIONS(161), - [anon_sym_LT] = ACTIONS(163), - [anon_sym_GT] = ACTIONS(165), - [anon_sym_BANG] = ACTIONS(167), - [anon_sym_DQUOTE] = ACTIONS(165), - [anon_sym_POUND] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(165), - [anon_sym_PERCENT] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_SQUOTE] = ACTIONS(165), - [anon_sym_STAR] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(165), - [anon_sym_COMMA] = ACTIONS(165), - [anon_sym_DASH] = ACTIONS(163), - [anon_sym_DOT] = ACTIONS(163), - [anon_sym_SLASH] = ACTIONS(165), - [anon_sym_COLON] = ACTIONS(165), - [anon_sym_SEMI] = ACTIONS(165), - [anon_sym_EQ] = ACTIONS(165), - [anon_sym_QMARK] = ACTIONS(165), - [anon_sym_LBRACK] = ACTIONS(169), - [anon_sym_BSLASH] = ACTIONS(171), - [anon_sym_RBRACK] = ACTIONS(555), - [anon_sym_CARET] = ACTIONS(163), - [anon_sym__] = ACTIONS(165), - [anon_sym_BQUOTE] = ACTIONS(165), - [anon_sym_LBRACE] = ACTIONS(175), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(165), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_RPAREN] = ACTIONS(165), - [sym__newline_token] = ACTIONS(177), - [anon_sym_CARET_LBRACK] = ACTIONS(179), - [anon_sym_LBRACK_CARET] = ACTIONS(181), - [sym_uri_autolink] = ACTIONS(161), - [sym_email_autolink] = ACTIONS(161), - [sym__whitespace_ge_2] = ACTIONS(183), - [aux_sym__whitespace_token1] = ACTIONS(185), - [sym__word_no_digit] = ACTIONS(187), - [sym__digits] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_DASH_DASH_DASH] = ACTIONS(187), - [anon_sym_DOT_DOT_DOT] = ACTIONS(187), - [sym__code_span_start] = ACTIONS(191), - [sym__emphasis_open_star] = ACTIONS(193), - [sym__emphasis_open_underscore] = ACTIONS(195), - [sym__last_token_punctuation] = ACTIONS(557), - [sym__strikeout_open] = ACTIONS(199), - [sym__latex_span_start] = ACTIONS(201), - [sym__single_quote_open] = ACTIONS(203), - [sym__double_quote_open] = ACTIONS(205), - [sym__superscript_open] = ACTIONS(207), - [sym__subscript_open] = ACTIONS(209), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(211), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(213), - [sym__cite_author_in_text] = ACTIONS(215), - [sym__cite_suppress_author] = ACTIONS(217), - [sym__shortcode_open_escaped] = ACTIONS(219), - [sym__shortcode_open] = ACTIONS(221), - [sym__unclosed_span] = ACTIONS(161), + [sym_backslash_escape] = STATE(370), + [sym_commonmark_attribute] = STATE(370), + [sym_code_span] = STATE(370), + [sym_latex_span] = STATE(370), + [sym_insert] = STATE(370), + [sym_delete] = STATE(370), + [sym_highlight] = STATE(370), + [sym_edit_comment] = STATE(370), + [sym_superscript] = STATE(370), + [sym_subscript] = STATE(370), + [sym_strikeout] = STATE(370), + [sym_quoted_span] = STATE(370), + [sym_inline_note] = STATE(370), + [sym_citation] = STATE(370), + [sym_shortcode_escaped] = STATE(370), + [sym_shortcode] = STATE(370), + [sym_note_reference] = STATE(370), + [sym__link_text] = STATE(472), + [sym__link_text_non_empty] = STATE(473), + [sym_inline_link] = STATE(214), + [sym_image] = STATE(370), + [sym__image_inline_link] = STATE(923), + [sym__image_description] = STATE(2342), + [sym__image_description_non_empty] = STATE(2342), + [sym_hard_line_break] = STATE(370), + [sym__whitespace] = STATE(920), + [sym__word] = STATE(920), + [sym__soft_line_break] = STATE(924), + [sym__inline_base] = STATE(214), + [sym__text_base] = STATE(370), + [sym__inline_element] = STATE(214), + [sym__emphasis_star] = STATE(821), + [sym__strong_emphasis_star] = STATE(214), + [sym__emphasis_underscore] = STATE(821), + [sym__strong_emphasis_underscore] = STATE(214), + [aux_sym_insert_repeat1] = STATE(214), + [aux_sym__inline_base_repeat1] = STATE(370), + [sym__backslash_escape] = ACTIONS(73), + [sym_entity_reference] = ACTIONS(75), + [sym_numeric_character_reference] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_BANG] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_POUND] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(79), + [anon_sym_PERCENT] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_STAR] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_COMMA] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_DOT] = ACTIONS(77), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_COLON] = ACTIONS(79), + [anon_sym_SEMI] = ACTIONS(79), + [anon_sym_EQ] = ACTIONS(79), + [anon_sym_QMARK] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(83), + [anon_sym_BSLASH] = ACTIONS(85), + [anon_sym_RBRACK] = ACTIONS(621), + [anon_sym_CARET] = ACTIONS(77), + [anon_sym__] = ACTIONS(79), + [anon_sym_BQUOTE] = ACTIONS(79), + [anon_sym_LBRACE] = ACTIONS(89), + [anon_sym_PIPE] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(79), + [anon_sym_RPAREN] = ACTIONS(79), + [sym__newline_token] = ACTIONS(91), + [aux_sym_insert_token1] = ACTIONS(93), + [aux_sym_delete_token1] = ACTIONS(95), + [aux_sym_highlight_token1] = ACTIONS(97), + [aux_sym_edit_comment_token1] = ACTIONS(99), + [anon_sym_CARET_LBRACK] = ACTIONS(101), + [anon_sym_LBRACK_CARET] = ACTIONS(103), + [sym_uri_autolink] = ACTIONS(75), + [sym_email_autolink] = ACTIONS(75), + [sym__whitespace_ge_2] = ACTIONS(105), + [aux_sym__whitespace_token1] = ACTIONS(107), + [sym__word_no_digit] = ACTIONS(109), + [sym__digits] = ACTIONS(109), + [anon_sym_DASH_DASH] = ACTIONS(111), + [anon_sym_DASH_DASH_DASH] = ACTIONS(109), + [anon_sym_DOT_DOT_DOT] = ACTIONS(109), + [sym__code_span_start] = ACTIONS(113), + [sym__emphasis_open_star] = ACTIONS(115), + [sym__emphasis_open_underscore] = ACTIONS(117), + [sym__last_token_punctuation] = ACTIONS(623), + [sym__strikeout_open] = ACTIONS(121), + [sym__latex_span_start] = ACTIONS(123), + [sym__single_quote_open] = ACTIONS(125), + [sym__double_quote_open] = ACTIONS(127), + [sym__superscript_open] = ACTIONS(129), + [sym__subscript_open] = ACTIONS(131), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(133), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(135), + [sym__cite_author_in_text] = ACTIONS(137), + [sym__cite_suppress_author] = ACTIONS(139), + [sym__shortcode_open_escaped] = ACTIONS(141), + [sym__shortcode_open] = ACTIONS(143), + [sym__unclosed_span] = ACTIONS(75), }, [STATE(27)] = { - [sym_backslash_escape] = STATE(266), - [sym_commonmark_attribute] = STATE(266), - [sym_code_span] = STATE(266), - [sym_latex_span] = STATE(266), - [sym_superscript] = STATE(266), - [sym_subscript] = STATE(266), - [sym_strikeout] = STATE(266), - [sym_quoted_span] = STATE(266), - [sym_inline_note] = STATE(266), - [sym_citation] = STATE(266), - [sym_shortcode_escaped] = STATE(266), - [sym_shortcode] = STATE(266), - [sym_note_reference] = STATE(266), - [sym__link_text] = STATE(375), - [sym__link_text_non_empty] = STATE(376), - [sym_inline_link] = STATE(29), - [sym_image] = STATE(266), - [sym__image_inline_link] = STATE(1042), - [sym__image_description] = STATE(2044), - [sym__image_description_non_empty] = STATE(2044), - [sym_hard_line_break] = STATE(266), - [sym__whitespace] = STATE(1040), - [sym__word] = STATE(1040), - [sym__soft_line_break] = STATE(1043), - [sym__inline_base] = STATE(29), - [sym__text_base] = STATE(266), - [sym__inline_element] = STATE(29), - [sym__emphasis_star] = STATE(602), - [sym__strong_emphasis_star] = STATE(29), - [sym__emphasis_underscore] = STATE(602), - [sym__strong_emphasis_underscore] = STATE(29), - [aux_sym_superscript_repeat1] = STATE(29), - [aux_sym__inline_base_repeat1] = STATE(266), - [sym__backslash_escape] = ACTIONS(559), - [sym_entity_reference] = ACTIONS(561), - [sym_numeric_character_reference] = ACTIONS(561), - [anon_sym_LT] = ACTIONS(563), - [anon_sym_GT] = ACTIONS(565), - [anon_sym_BANG] = ACTIONS(567), - [anon_sym_DQUOTE] = ACTIONS(565), - [anon_sym_POUND] = ACTIONS(565), - [anon_sym_DOLLAR] = ACTIONS(565), - [anon_sym_PERCENT] = ACTIONS(565), - [anon_sym_AMP] = ACTIONS(563), - [anon_sym_SQUOTE] = ACTIONS(565), - [anon_sym_STAR] = ACTIONS(565), - [anon_sym_PLUS] = ACTIONS(565), - [anon_sym_COMMA] = ACTIONS(565), - [anon_sym_DASH] = ACTIONS(563), - [anon_sym_DOT] = ACTIONS(563), - [anon_sym_SLASH] = ACTIONS(565), - [anon_sym_COLON] = ACTIONS(565), - [anon_sym_SEMI] = ACTIONS(565), - [anon_sym_EQ] = ACTIONS(565), - [anon_sym_QMARK] = ACTIONS(565), - [anon_sym_LBRACK] = ACTIONS(569), - [anon_sym_BSLASH] = ACTIONS(571), - [anon_sym_CARET] = ACTIONS(563), - [anon_sym__] = ACTIONS(565), - [anon_sym_BQUOTE] = ACTIONS(565), - [anon_sym_LBRACE] = ACTIONS(573), - [anon_sym_PIPE] = ACTIONS(565), - [anon_sym_TILDE] = ACTIONS(565), - [anon_sym_LPAREN] = ACTIONS(565), - [anon_sym_RPAREN] = ACTIONS(565), - [sym__newline_token] = ACTIONS(575), - [anon_sym_CARET_LBRACK] = ACTIONS(577), - [anon_sym_LBRACK_CARET] = ACTIONS(579), - [sym_uri_autolink] = ACTIONS(561), - [sym_email_autolink] = ACTIONS(561), - [sym__whitespace_ge_2] = ACTIONS(581), - [aux_sym__whitespace_token1] = ACTIONS(583), - [sym__word_no_digit] = ACTIONS(585), - [sym__digits] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(587), - [anon_sym_DASH_DASH_DASH] = ACTIONS(585), - [anon_sym_DOT_DOT_DOT] = ACTIONS(585), - [sym__code_span_start] = ACTIONS(589), - [sym__emphasis_open_star] = ACTIONS(591), - [sym__emphasis_open_underscore] = ACTIONS(593), - [sym__strikeout_open] = ACTIONS(595), - [sym__strikeout_close] = ACTIONS(597), - [sym__latex_span_start] = ACTIONS(599), - [sym__single_quote_open] = ACTIONS(601), - [sym__double_quote_open] = ACTIONS(603), - [sym__superscript_open] = ACTIONS(605), - [sym__subscript_open] = ACTIONS(607), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(609), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(611), - [sym__cite_author_in_text] = ACTIONS(613), - [sym__cite_suppress_author] = ACTIONS(615), - [sym__shortcode_open_escaped] = ACTIONS(617), - [sym__shortcode_open] = ACTIONS(619), - [sym__unclosed_span] = ACTIONS(561), + [sym_backslash_escape] = STATE(370), + [sym_commonmark_attribute] = STATE(370), + [sym_code_span] = STATE(370), + [sym_latex_span] = STATE(370), + [sym_insert] = STATE(370), + [sym_delete] = STATE(370), + [sym_highlight] = STATE(370), + [sym_edit_comment] = STATE(370), + [sym_superscript] = STATE(370), + [sym_subscript] = STATE(370), + [sym_strikeout] = STATE(370), + [sym_quoted_span] = STATE(370), + [sym_inline_note] = STATE(370), + [sym_citation] = STATE(370), + [sym_shortcode_escaped] = STATE(370), + [sym_shortcode] = STATE(370), + [sym_note_reference] = STATE(370), + [sym__link_text] = STATE(472), + [sym__link_text_non_empty] = STATE(473), + [sym_inline_link] = STATE(240), + [sym_image] = STATE(370), + [sym__image_inline_link] = STATE(923), + [sym__image_description] = STATE(2342), + [sym__image_description_non_empty] = STATE(2342), + [sym_hard_line_break] = STATE(370), + [sym__whitespace] = STATE(920), + [sym__word] = STATE(920), + [sym__soft_line_break] = STATE(924), + [sym__inline_base] = STATE(240), + [sym__text_base] = STATE(370), + [sym__inline_element] = STATE(240), + [sym__emphasis_star] = STATE(821), + [sym__strong_emphasis_star] = STATE(240), + [sym__emphasis_underscore] = STATE(821), + [sym__strong_emphasis_underscore] = STATE(240), + [aux_sym_insert_repeat1] = STATE(240), + [aux_sym__inline_base_repeat1] = STATE(370), + [sym__backslash_escape] = ACTIONS(73), + [sym_entity_reference] = ACTIONS(75), + [sym_numeric_character_reference] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_BANG] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_POUND] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(79), + [anon_sym_PERCENT] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_STAR] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_COMMA] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_DOT] = ACTIONS(77), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_COLON] = ACTIONS(79), + [anon_sym_SEMI] = ACTIONS(79), + [anon_sym_EQ] = ACTIONS(79), + [anon_sym_QMARK] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(83), + [anon_sym_BSLASH] = ACTIONS(85), + [anon_sym_RBRACK] = ACTIONS(625), + [anon_sym_CARET] = ACTIONS(77), + [anon_sym__] = ACTIONS(79), + [anon_sym_BQUOTE] = ACTIONS(79), + [anon_sym_LBRACE] = ACTIONS(89), + [anon_sym_PIPE] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(79), + [anon_sym_RPAREN] = ACTIONS(79), + [sym__newline_token] = ACTIONS(91), + [aux_sym_insert_token1] = ACTIONS(93), + [aux_sym_delete_token1] = ACTIONS(95), + [aux_sym_highlight_token1] = ACTIONS(97), + [aux_sym_edit_comment_token1] = ACTIONS(99), + [anon_sym_CARET_LBRACK] = ACTIONS(101), + [anon_sym_LBRACK_CARET] = ACTIONS(103), + [sym_uri_autolink] = ACTIONS(75), + [sym_email_autolink] = ACTIONS(75), + [sym__whitespace_ge_2] = ACTIONS(105), + [aux_sym__whitespace_token1] = ACTIONS(107), + [sym__word_no_digit] = ACTIONS(109), + [sym__digits] = ACTIONS(109), + [anon_sym_DASH_DASH] = ACTIONS(111), + [anon_sym_DASH_DASH_DASH] = ACTIONS(109), + [anon_sym_DOT_DOT_DOT] = ACTIONS(109), + [sym__code_span_start] = ACTIONS(113), + [sym__emphasis_open_star] = ACTIONS(115), + [sym__emphasis_open_underscore] = ACTIONS(117), + [sym__last_token_punctuation] = ACTIONS(627), + [sym__strikeout_open] = ACTIONS(121), + [sym__latex_span_start] = ACTIONS(123), + [sym__single_quote_open] = ACTIONS(125), + [sym__double_quote_open] = ACTIONS(127), + [sym__superscript_open] = ACTIONS(129), + [sym__subscript_open] = ACTIONS(131), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(133), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(135), + [sym__cite_author_in_text] = ACTIONS(137), + [sym__cite_suppress_author] = ACTIONS(139), + [sym__shortcode_open_escaped] = ACTIONS(141), + [sym__shortcode_open] = ACTIONS(143), + [sym__unclosed_span] = ACTIONS(75), }, [STATE(28)] = { - [sym_backslash_escape] = STATE(265), - [sym_commonmark_attribute] = STATE(265), - [sym_code_span] = STATE(265), - [sym_latex_span] = STATE(265), - [sym_superscript] = STATE(265), - [sym_subscript] = STATE(265), - [sym_strikeout] = STATE(265), - [sym_quoted_span] = STATE(265), - [sym_inline_note] = STATE(265), - [sym_citation] = STATE(265), - [sym_shortcode_escaped] = STATE(265), - [sym_shortcode] = STATE(265), - [sym_note_reference] = STATE(265), - [sym__link_text] = STATE(310), - [sym__link_text_non_empty] = STATE(311), - [sym_inline_link] = STATE(885), - [sym_image] = STATE(265), - [sym__image_inline_link] = STATE(662), - [sym__image_description] = STATE(1978), - [sym__image_description_non_empty] = STATE(1978), - [sym_hard_line_break] = STATE(265), - [sym__whitespace] = STATE(579), - [sym__word] = STATE(579), - [sym__soft_line_break] = STATE(707), - [sym__inline_base] = STATE(885), - [sym__text_base] = STATE(265), - [sym__inline_element] = STATE(885), - [aux_sym__inline] = STATE(37), - [sym__emphasis_star] = STATE(1121), - [sym__strong_emphasis_star] = STATE(885), - [sym__emphasis_underscore] = STATE(1121), - [sym__strong_emphasis_underscore] = STATE(885), - [aux_sym__inline_base_repeat1] = STATE(265), - [ts_builtin_sym_end] = ACTIONS(621), - [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__] = ACTIONS(9), - [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), - [anon_sym_CARET_LBRACK] = ACTIONS(21), - [anon_sym_LBRACK_CARET] = ACTIONS(23), - [sym_uri_autolink] = ACTIONS(5), - [sym_email_autolink] = ACTIONS(5), - [sym__whitespace_ge_2] = ACTIONS(25), - [aux_sym__whitespace_token1] = ACTIONS(27), - [sym__word_no_digit] = ACTIONS(29), - [sym__digits] = ACTIONS(29), - [anon_sym_DASH_DASH] = ACTIONS(31), - [anon_sym_DASH_DASH_DASH] = ACTIONS(29), - [anon_sym_DOT_DOT_DOT] = ACTIONS(29), - [sym__code_span_start] = ACTIONS(33), - [sym__emphasis_open_star] = ACTIONS(35), - [sym__emphasis_open_underscore] = ACTIONS(37), - [sym__strikeout_open] = ACTIONS(41), - [sym__latex_span_start] = ACTIONS(43), - [sym__single_quote_open] = ACTIONS(45), - [sym__double_quote_open] = ACTIONS(47), - [sym__superscript_open] = ACTIONS(49), - [sym__subscript_open] = ACTIONS(51), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(53), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(55), - [sym__cite_author_in_text] = ACTIONS(57), - [sym__cite_suppress_author] = ACTIONS(59), - [sym__shortcode_open_escaped] = ACTIONS(61), - [sym__shortcode_open] = ACTIONS(63), - [sym__unclosed_span] = ACTIONS(5), + [sym_backslash_escape] = STATE(370), + [sym_commonmark_attribute] = STATE(370), + [sym_code_span] = STATE(370), + [sym_latex_span] = STATE(370), + [sym_insert] = STATE(370), + [sym_delete] = STATE(370), + [sym_highlight] = STATE(370), + [sym_edit_comment] = STATE(370), + [sym_superscript] = STATE(370), + [sym_subscript] = STATE(370), + [sym_strikeout] = STATE(370), + [sym_quoted_span] = STATE(370), + [sym_inline_note] = STATE(370), + [sym_citation] = STATE(370), + [sym_shortcode_escaped] = STATE(370), + [sym_shortcode] = STATE(370), + [sym_note_reference] = STATE(370), + [sym__link_text] = STATE(472), + [sym__link_text_non_empty] = STATE(473), + [sym_inline_link] = STATE(266), + [sym_image] = STATE(370), + [sym__image_inline_link] = STATE(923), + [sym__image_description] = STATE(2342), + [sym__image_description_non_empty] = STATE(2342), + [sym_hard_line_break] = STATE(370), + [sym__whitespace] = STATE(920), + [sym__word] = STATE(920), + [sym__soft_line_break] = STATE(924), + [sym__inline_base] = STATE(266), + [sym__text_base] = STATE(370), + [sym__inline_element] = STATE(266), + [sym__emphasis_star] = STATE(821), + [sym__strong_emphasis_star] = STATE(266), + [sym__emphasis_underscore] = STATE(821), + [sym__strong_emphasis_underscore] = STATE(266), + [aux_sym_insert_repeat1] = STATE(266), + [aux_sym__inline_base_repeat1] = STATE(370), + [sym__backslash_escape] = ACTIONS(73), + [sym_entity_reference] = ACTIONS(75), + [sym_numeric_character_reference] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_BANG] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_POUND] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(79), + [anon_sym_PERCENT] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_STAR] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_COMMA] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_DOT] = ACTIONS(77), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_COLON] = ACTIONS(79), + [anon_sym_SEMI] = ACTIONS(79), + [anon_sym_EQ] = ACTIONS(79), + [anon_sym_QMARK] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(83), + [anon_sym_BSLASH] = ACTIONS(85), + [anon_sym_RBRACK] = ACTIONS(629), + [anon_sym_CARET] = ACTIONS(77), + [anon_sym__] = ACTIONS(79), + [anon_sym_BQUOTE] = ACTIONS(79), + [anon_sym_LBRACE] = ACTIONS(89), + [anon_sym_PIPE] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(79), + [anon_sym_RPAREN] = ACTIONS(79), + [sym__newline_token] = ACTIONS(91), + [aux_sym_insert_token1] = ACTIONS(93), + [aux_sym_delete_token1] = ACTIONS(95), + [aux_sym_highlight_token1] = ACTIONS(97), + [aux_sym_edit_comment_token1] = ACTIONS(99), + [anon_sym_CARET_LBRACK] = ACTIONS(101), + [anon_sym_LBRACK_CARET] = ACTIONS(103), + [sym_uri_autolink] = ACTIONS(75), + [sym_email_autolink] = ACTIONS(75), + [sym__whitespace_ge_2] = ACTIONS(105), + [aux_sym__whitespace_token1] = ACTIONS(107), + [sym__word_no_digit] = ACTIONS(109), + [sym__digits] = ACTIONS(109), + [anon_sym_DASH_DASH] = ACTIONS(111), + [anon_sym_DASH_DASH_DASH] = ACTIONS(109), + [anon_sym_DOT_DOT_DOT] = ACTIONS(109), + [sym__code_span_start] = ACTIONS(113), + [sym__emphasis_open_star] = ACTIONS(115), + [sym__emphasis_open_underscore] = ACTIONS(117), + [sym__last_token_punctuation] = ACTIONS(631), + [sym__strikeout_open] = ACTIONS(121), + [sym__latex_span_start] = ACTIONS(123), + [sym__single_quote_open] = ACTIONS(125), + [sym__double_quote_open] = ACTIONS(127), + [sym__superscript_open] = ACTIONS(129), + [sym__subscript_open] = ACTIONS(131), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(133), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(135), + [sym__cite_author_in_text] = ACTIONS(137), + [sym__cite_suppress_author] = ACTIONS(139), + [sym__shortcode_open_escaped] = ACTIONS(141), + [sym__shortcode_open] = ACTIONS(143), + [sym__unclosed_span] = ACTIONS(75), }, [STATE(29)] = { - [sym_backslash_escape] = STATE(266), - [sym_commonmark_attribute] = STATE(266), - [sym_code_span] = STATE(266), - [sym_latex_span] = STATE(266), - [sym_superscript] = STATE(266), - [sym_subscript] = STATE(266), - [sym_strikeout] = STATE(266), - [sym_quoted_span] = STATE(266), - [sym_inline_note] = STATE(266), - [sym_citation] = STATE(266), - [sym_shortcode_escaped] = STATE(266), - [sym_shortcode] = STATE(266), - [sym_note_reference] = STATE(266), - [sym__link_text] = STATE(375), - [sym__link_text_non_empty] = STATE(376), - [sym_inline_link] = STATE(42), - [sym_image] = STATE(266), - [sym__image_inline_link] = STATE(1042), - [sym__image_description] = STATE(2044), - [sym__image_description_non_empty] = STATE(2044), - [sym_hard_line_break] = STATE(266), - [sym__whitespace] = STATE(1040), - [sym__word] = STATE(1040), - [sym__soft_line_break] = STATE(1043), - [sym__inline_base] = STATE(42), - [sym__text_base] = STATE(266), - [sym__inline_element] = STATE(42), - [sym__emphasis_star] = STATE(602), - [sym__strong_emphasis_star] = STATE(42), - [sym__emphasis_underscore] = STATE(602), - [sym__strong_emphasis_underscore] = STATE(42), - [aux_sym_superscript_repeat1] = STATE(42), - [aux_sym__inline_base_repeat1] = STATE(266), - [sym__backslash_escape] = ACTIONS(559), - [sym_entity_reference] = ACTIONS(561), - [sym_numeric_character_reference] = ACTIONS(561), - [anon_sym_LT] = ACTIONS(563), - [anon_sym_GT] = ACTIONS(565), - [anon_sym_BANG] = ACTIONS(567), - [anon_sym_DQUOTE] = ACTIONS(565), - [anon_sym_POUND] = ACTIONS(565), - [anon_sym_DOLLAR] = ACTIONS(565), - [anon_sym_PERCENT] = ACTIONS(565), - [anon_sym_AMP] = ACTIONS(563), - [anon_sym_SQUOTE] = ACTIONS(565), - [anon_sym_STAR] = ACTIONS(565), - [anon_sym_PLUS] = ACTIONS(565), - [anon_sym_COMMA] = ACTIONS(565), - [anon_sym_DASH] = ACTIONS(563), - [anon_sym_DOT] = ACTIONS(563), - [anon_sym_SLASH] = ACTIONS(565), - [anon_sym_COLON] = ACTIONS(565), - [anon_sym_SEMI] = ACTIONS(565), - [anon_sym_EQ] = ACTIONS(565), - [anon_sym_QMARK] = ACTIONS(565), - [anon_sym_LBRACK] = ACTIONS(569), - [anon_sym_BSLASH] = ACTIONS(571), - [anon_sym_CARET] = ACTIONS(563), - [anon_sym__] = ACTIONS(565), - [anon_sym_BQUOTE] = ACTIONS(565), - [anon_sym_LBRACE] = ACTIONS(573), - [anon_sym_PIPE] = ACTIONS(565), - [anon_sym_TILDE] = ACTIONS(565), - [anon_sym_LPAREN] = ACTIONS(565), - [anon_sym_RPAREN] = ACTIONS(565), - [sym__newline_token] = ACTIONS(575), - [anon_sym_CARET_LBRACK] = ACTIONS(577), - [anon_sym_LBRACK_CARET] = ACTIONS(579), - [sym_uri_autolink] = ACTIONS(561), - [sym_email_autolink] = ACTIONS(561), - [sym__whitespace_ge_2] = ACTIONS(581), - [aux_sym__whitespace_token1] = ACTIONS(583), - [sym__word_no_digit] = ACTIONS(585), - [sym__digits] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(587), - [anon_sym_DASH_DASH_DASH] = ACTIONS(585), - [anon_sym_DOT_DOT_DOT] = ACTIONS(585), - [sym__code_span_start] = ACTIONS(589), - [sym__emphasis_open_star] = ACTIONS(591), - [sym__emphasis_open_underscore] = ACTIONS(593), - [sym__strikeout_open] = ACTIONS(595), - [sym__strikeout_close] = ACTIONS(623), - [sym__latex_span_start] = ACTIONS(599), - [sym__single_quote_open] = ACTIONS(601), - [sym__double_quote_open] = ACTIONS(603), - [sym__superscript_open] = ACTIONS(605), - [sym__subscript_open] = ACTIONS(607), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(609), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(611), - [sym__cite_author_in_text] = ACTIONS(613), - [sym__cite_suppress_author] = ACTIONS(615), - [sym__shortcode_open_escaped] = ACTIONS(617), - [sym__shortcode_open] = ACTIONS(619), - [sym__unclosed_span] = ACTIONS(561), + [sym_backslash_escape] = STATE(370), + [sym_commonmark_attribute] = STATE(370), + [sym_code_span] = STATE(370), + [sym_latex_span] = STATE(370), + [sym_insert] = STATE(370), + [sym_delete] = STATE(370), + [sym_highlight] = STATE(370), + [sym_edit_comment] = STATE(370), + [sym_superscript] = STATE(370), + [sym_subscript] = STATE(370), + [sym_strikeout] = STATE(370), + [sym_quoted_span] = STATE(370), + [sym_inline_note] = STATE(370), + [sym_citation] = STATE(370), + [sym_shortcode_escaped] = STATE(370), + [sym_shortcode] = STATE(370), + [sym_note_reference] = STATE(370), + [sym__link_text] = STATE(472), + [sym__link_text_non_empty] = STATE(473), + [sym_inline_link] = STATE(292), + [sym_image] = STATE(370), + [sym__image_inline_link] = STATE(923), + [sym__image_description] = STATE(2342), + [sym__image_description_non_empty] = STATE(2342), + [sym_hard_line_break] = STATE(370), + [sym__whitespace] = STATE(920), + [sym__word] = STATE(920), + [sym__soft_line_break] = STATE(924), + [sym__inline_base] = STATE(292), + [sym__text_base] = STATE(370), + [sym__inline_element] = STATE(292), + [sym__emphasis_star] = STATE(821), + [sym__strong_emphasis_star] = STATE(292), + [sym__emphasis_underscore] = STATE(821), + [sym__strong_emphasis_underscore] = STATE(292), + [aux_sym_insert_repeat1] = STATE(292), + [aux_sym__inline_base_repeat1] = STATE(370), + [sym__backslash_escape] = ACTIONS(73), + [sym_entity_reference] = ACTIONS(75), + [sym_numeric_character_reference] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_BANG] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_POUND] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(79), + [anon_sym_PERCENT] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_STAR] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_COMMA] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_DOT] = ACTIONS(77), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_COLON] = ACTIONS(79), + [anon_sym_SEMI] = ACTIONS(79), + [anon_sym_EQ] = ACTIONS(79), + [anon_sym_QMARK] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(83), + [anon_sym_BSLASH] = ACTIONS(85), + [anon_sym_RBRACK] = ACTIONS(633), + [anon_sym_CARET] = ACTIONS(77), + [anon_sym__] = ACTIONS(79), + [anon_sym_BQUOTE] = ACTIONS(79), + [anon_sym_LBRACE] = ACTIONS(89), + [anon_sym_PIPE] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(79), + [anon_sym_RPAREN] = ACTIONS(79), + [sym__newline_token] = ACTIONS(91), + [aux_sym_insert_token1] = ACTIONS(93), + [aux_sym_delete_token1] = ACTIONS(95), + [aux_sym_highlight_token1] = ACTIONS(97), + [aux_sym_edit_comment_token1] = ACTIONS(99), + [anon_sym_CARET_LBRACK] = ACTIONS(101), + [anon_sym_LBRACK_CARET] = ACTIONS(103), + [sym_uri_autolink] = ACTIONS(75), + [sym_email_autolink] = ACTIONS(75), + [sym__whitespace_ge_2] = ACTIONS(105), + [aux_sym__whitespace_token1] = ACTIONS(107), + [sym__word_no_digit] = ACTIONS(109), + [sym__digits] = ACTIONS(109), + [anon_sym_DASH_DASH] = ACTIONS(111), + [anon_sym_DASH_DASH_DASH] = ACTIONS(109), + [anon_sym_DOT_DOT_DOT] = ACTIONS(109), + [sym__code_span_start] = ACTIONS(113), + [sym__emphasis_open_star] = ACTIONS(115), + [sym__emphasis_open_underscore] = ACTIONS(117), + [sym__last_token_punctuation] = ACTIONS(635), + [sym__strikeout_open] = ACTIONS(121), + [sym__latex_span_start] = ACTIONS(123), + [sym__single_quote_open] = ACTIONS(125), + [sym__double_quote_open] = ACTIONS(127), + [sym__superscript_open] = ACTIONS(129), + [sym__subscript_open] = ACTIONS(131), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(133), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(135), + [sym__cite_author_in_text] = ACTIONS(137), + [sym__cite_suppress_author] = ACTIONS(139), + [sym__shortcode_open_escaped] = ACTIONS(141), + [sym__shortcode_open] = ACTIONS(143), + [sym__unclosed_span] = ACTIONS(75), }, [STATE(30)] = { - [sym_backslash_escape] = STATE(272), - [sym_commonmark_attribute] = STATE(272), - [sym_code_span] = STATE(272), - [sym_latex_span] = STATE(272), - [sym_superscript] = STATE(272), - [sym_subscript] = STATE(272), - [sym_strikeout] = STATE(272), - [sym_quoted_span] = STATE(272), - [sym_inline_note] = STATE(272), - [sym_citation] = STATE(272), - [sym_shortcode_escaped] = STATE(272), - [sym_shortcode] = STATE(272), - [sym_note_reference] = STATE(272), - [sym__link_text] = STATE(401), - [sym__link_text_non_empty] = STATE(402), - [sym_inline_link] = STATE(49), - [sym_image] = STATE(272), - [sym__image_inline_link] = STATE(1136), - [sym__image_description] = STATE(1942), - [sym__image_description_non_empty] = STATE(1942), - [sym_hard_line_break] = STATE(272), - [sym__whitespace] = STATE(1133), - [sym__word] = STATE(1133), - [sym__soft_line_break] = STATE(1137), - [sym__inline_base] = STATE(49), - [sym__text_base] = STATE(272), - [sym__inline_element] = STATE(49), - [sym__emphasis_star] = STATE(902), - [sym__strong_emphasis_star] = STATE(49), - [sym__emphasis_underscore] = STATE(902), - [sym__strong_emphasis_underscore] = STATE(49), - [aux_sym_superscript_repeat1] = STATE(49), - [aux_sym__inline_base_repeat1] = STATE(272), - [sym__backslash_escape] = ACTIONS(625), - [sym_entity_reference] = ACTIONS(627), - [sym_numeric_character_reference] = ACTIONS(627), - [anon_sym_LT] = ACTIONS(629), - [anon_sym_GT] = ACTIONS(631), - [anon_sym_BANG] = ACTIONS(633), - [anon_sym_DQUOTE] = ACTIONS(631), - [anon_sym_POUND] = ACTIONS(631), - [anon_sym_DOLLAR] = ACTIONS(631), - [anon_sym_PERCENT] = ACTIONS(631), - [anon_sym_AMP] = ACTIONS(629), - [anon_sym_SQUOTE] = ACTIONS(631), - [anon_sym_STAR] = ACTIONS(631), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_COMMA] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(629), - [anon_sym_DOT] = ACTIONS(629), - [anon_sym_SLASH] = ACTIONS(631), - [anon_sym_COLON] = ACTIONS(631), - [anon_sym_SEMI] = ACTIONS(631), - [anon_sym_EQ] = ACTIONS(631), - [anon_sym_QMARK] = ACTIONS(631), - [anon_sym_LBRACK] = ACTIONS(635), - [anon_sym_BSLASH] = ACTIONS(637), - [anon_sym_CARET] = ACTIONS(629), - [anon_sym__] = ACTIONS(631), - [anon_sym_BQUOTE] = ACTIONS(631), - [anon_sym_LBRACE] = ACTIONS(639), - [anon_sym_PIPE] = ACTIONS(631), - [anon_sym_TILDE] = ACTIONS(631), - [anon_sym_LPAREN] = ACTIONS(631), - [anon_sym_RPAREN] = ACTIONS(631), - [sym__newline_token] = ACTIONS(641), - [anon_sym_CARET_LBRACK] = ACTIONS(643), - [anon_sym_LBRACK_CARET] = ACTIONS(645), - [sym_uri_autolink] = ACTIONS(627), - [sym_email_autolink] = ACTIONS(627), - [sym__whitespace_ge_2] = ACTIONS(647), - [aux_sym__whitespace_token1] = ACTIONS(649), - [sym__word_no_digit] = ACTIONS(651), - [sym__digits] = ACTIONS(651), - [anon_sym_DASH_DASH] = ACTIONS(653), - [anon_sym_DASH_DASH_DASH] = ACTIONS(651), - [anon_sym_DOT_DOT_DOT] = ACTIONS(651), - [sym__code_span_start] = ACTIONS(655), - [sym__emphasis_open_star] = ACTIONS(657), - [sym__emphasis_open_underscore] = ACTIONS(659), - [sym__strikeout_open] = ACTIONS(661), - [sym__latex_span_start] = ACTIONS(663), - [sym__single_quote_open] = ACTIONS(665), - [sym__single_quote_close] = ACTIONS(667), - [sym__double_quote_open] = ACTIONS(669), - [sym__superscript_open] = ACTIONS(671), - [sym__subscript_open] = ACTIONS(673), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(675), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(677), - [sym__cite_author_in_text] = ACTIONS(679), - [sym__cite_suppress_author] = ACTIONS(681), - [sym__shortcode_open_escaped] = ACTIONS(683), - [sym__shortcode_open] = ACTIONS(685), - [sym__unclosed_span] = ACTIONS(627), + [sym_backslash_escape] = STATE(383), + [sym_commonmark_attribute] = STATE(383), + [sym_code_span] = STATE(383), + [sym_latex_span] = STATE(383), + [sym_insert] = STATE(383), + [sym_delete] = STATE(383), + [sym_highlight] = STATE(383), + [sym_edit_comment] = STATE(383), + [sym_superscript] = STATE(383), + [sym_subscript] = STATE(383), + [sym_strikeout] = STATE(383), + [sym_quoted_span] = STATE(383), + [sym_inline_note] = STATE(383), + [sym_citation] = STATE(383), + [sym_shortcode_escaped] = STATE(383), + [sym_shortcode] = STATE(383), + [sym_note_reference] = STATE(383), + [sym__link_text] = STATE(395), + [sym__link_text_non_empty] = STATE(396), + [sym_inline_link] = STATE(180), + [sym_image] = STATE(383), + [sym__image_inline_link] = STATE(1263), + [sym__image_description] = STATE(2300), + [sym__image_description_non_empty] = STATE(2300), + [sym_hard_line_break] = STATE(383), + [sym__whitespace] = STATE(1259), + [sym__word] = STATE(1259), + [sym__soft_line_break] = STATE(1264), + [sym__inline_base] = STATE(180), + [sym__text_base] = STATE(383), + [sym__inline_element] = STATE(180), + [sym__emphasis_star] = STATE(1249), + [sym__strong_emphasis_star] = STATE(180), + [sym__emphasis_underscore] = STATE(1249), + [sym__strong_emphasis_underscore] = STATE(180), + [aux_sym_insert_repeat1] = STATE(180), + [aux_sym__inline_base_repeat1] = STATE(383), + [sym__backslash_escape] = ACTIONS(637), + [sym_entity_reference] = ACTIONS(639), + [sym_numeric_character_reference] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_GT] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(645), + [anon_sym_DQUOTE] = ACTIONS(643), + [anon_sym_POUND] = ACTIONS(643), + [anon_sym_DOLLAR] = ACTIONS(643), + [anon_sym_PERCENT] = ACTIONS(643), + [anon_sym_AMP] = ACTIONS(641), + [anon_sym_SQUOTE] = ACTIONS(643), + [anon_sym_STAR] = ACTIONS(643), + [anon_sym_PLUS] = ACTIONS(643), + [anon_sym_COMMA] = ACTIONS(643), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_DOT] = ACTIONS(641), + [anon_sym_SLASH] = ACTIONS(643), + [anon_sym_COLON] = ACTIONS(643), + [anon_sym_SEMI] = ACTIONS(643), + [anon_sym_EQ] = ACTIONS(643), + [anon_sym_QMARK] = ACTIONS(643), + [anon_sym_LBRACK] = ACTIONS(647), + [anon_sym_BSLASH] = ACTIONS(649), + [anon_sym_CARET] = ACTIONS(641), + [anon_sym__] = ACTIONS(643), + [anon_sym_BQUOTE] = ACTIONS(643), + [anon_sym_LBRACE] = ACTIONS(651), + [anon_sym_PIPE] = ACTIONS(643), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_LPAREN] = ACTIONS(643), + [anon_sym_RPAREN] = ACTIONS(643), + [sym__newline_token] = ACTIONS(653), + [aux_sym_insert_token1] = ACTIONS(655), + [aux_sym_delete_token1] = ACTIONS(657), + [aux_sym_highlight_token1] = ACTIONS(659), + [aux_sym_edit_comment_token1] = ACTIONS(661), + [anon_sym_CARET_LBRACK] = ACTIONS(663), + [anon_sym_LBRACK_CARET] = ACTIONS(665), + [sym_uri_autolink] = ACTIONS(639), + [sym_email_autolink] = ACTIONS(639), + [sym__whitespace_ge_2] = ACTIONS(667), + [aux_sym__whitespace_token1] = ACTIONS(669), + [sym__word_no_digit] = ACTIONS(671), + [sym__digits] = ACTIONS(671), + [anon_sym_DASH_DASH] = ACTIONS(673), + [anon_sym_DASH_DASH_DASH] = ACTIONS(671), + [anon_sym_DOT_DOT_DOT] = ACTIONS(671), + [sym__code_span_start] = ACTIONS(675), + [sym__emphasis_open_star] = ACTIONS(677), + [sym__emphasis_open_underscore] = ACTIONS(679), + [sym__strikeout_open] = ACTIONS(681), + [sym__latex_span_start] = ACTIONS(683), + [sym__single_quote_open] = ACTIONS(685), + [sym__double_quote_open] = ACTIONS(687), + [sym__double_quote_close] = ACTIONS(689), + [sym__superscript_open] = ACTIONS(691), + [sym__subscript_open] = ACTIONS(693), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(695), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(697), + [sym__cite_author_in_text] = ACTIONS(699), + [sym__cite_suppress_author] = ACTIONS(701), + [sym__shortcode_open_escaped] = ACTIONS(703), + [sym__shortcode_open] = ACTIONS(705), + [sym__unclosed_span] = ACTIONS(639), }, [STATE(31)] = { - [sym_backslash_escape] = STATE(277), - [sym_commonmark_attribute] = STATE(277), - [sym_code_span] = STATE(277), - [sym_latex_span] = STATE(277), - [sym_superscript] = STATE(277), - [sym_subscript] = STATE(277), - [sym_strikeout] = STATE(277), - [sym_quoted_span] = STATE(277), - [sym_inline_note] = STATE(277), - [sym_citation] = STATE(277), - [sym_shortcode_escaped] = STATE(277), - [sym_shortcode] = STATE(277), - [sym_note_reference] = STATE(277), - [sym__link_text] = STATE(427), - [sym__link_text_non_empty] = STATE(428), - [sym_inline_link] = STATE(50), - [sym_image] = STATE(277), - [sym__image_inline_link] = STATE(613), - [sym__image_description] = STATE(1930), - [sym__image_description_non_empty] = STATE(1930), - [sym_hard_line_break] = STATE(277), - [sym__whitespace] = STATE(610), - [sym__word] = STATE(610), - [sym__soft_line_break] = STATE(614), - [sym__inline_base] = STATE(50), - [sym__text_base] = STATE(277), - [sym__inline_element] = STATE(50), - [sym__emphasis_star] = STATE(1044), - [sym__strong_emphasis_star] = STATE(50), - [sym__emphasis_underscore] = STATE(1044), - [sym__strong_emphasis_underscore] = STATE(50), - [aux_sym_superscript_repeat1] = STATE(50), - [aux_sym__inline_base_repeat1] = STATE(277), - [sym__backslash_escape] = ACTIONS(687), - [sym_entity_reference] = ACTIONS(689), - [sym_numeric_character_reference] = ACTIONS(689), - [anon_sym_LT] = ACTIONS(691), - [anon_sym_GT] = ACTIONS(693), - [anon_sym_BANG] = ACTIONS(695), - [anon_sym_DQUOTE] = ACTIONS(693), - [anon_sym_POUND] = ACTIONS(693), - [anon_sym_DOLLAR] = ACTIONS(693), - [anon_sym_PERCENT] = ACTIONS(693), - [anon_sym_AMP] = ACTIONS(691), - [anon_sym_SQUOTE] = ACTIONS(693), - [anon_sym_STAR] = ACTIONS(693), - [anon_sym_PLUS] = ACTIONS(693), - [anon_sym_COMMA] = ACTIONS(693), - [anon_sym_DASH] = ACTIONS(691), - [anon_sym_DOT] = ACTIONS(691), - [anon_sym_SLASH] = ACTIONS(693), - [anon_sym_COLON] = ACTIONS(693), - [anon_sym_SEMI] = ACTIONS(693), - [anon_sym_EQ] = ACTIONS(693), - [anon_sym_QMARK] = ACTIONS(693), - [anon_sym_LBRACK] = ACTIONS(697), - [anon_sym_BSLASH] = ACTIONS(699), - [anon_sym_CARET] = ACTIONS(691), - [anon_sym__] = ACTIONS(693), - [anon_sym_BQUOTE] = ACTIONS(693), - [anon_sym_LBRACE] = ACTIONS(701), - [anon_sym_PIPE] = ACTIONS(693), - [anon_sym_TILDE] = ACTIONS(693), - [anon_sym_LPAREN] = ACTIONS(693), - [anon_sym_RPAREN] = ACTIONS(693), - [sym__newline_token] = ACTIONS(703), - [anon_sym_CARET_LBRACK] = ACTIONS(705), - [anon_sym_LBRACK_CARET] = ACTIONS(707), - [sym_uri_autolink] = ACTIONS(689), - [sym_email_autolink] = ACTIONS(689), - [sym__whitespace_ge_2] = ACTIONS(709), - [aux_sym__whitespace_token1] = ACTIONS(711), - [sym__word_no_digit] = ACTIONS(713), - [sym__digits] = ACTIONS(713), - [anon_sym_DASH_DASH] = ACTIONS(715), - [anon_sym_DASH_DASH_DASH] = ACTIONS(713), - [anon_sym_DOT_DOT_DOT] = ACTIONS(713), - [sym__code_span_start] = ACTIONS(717), - [sym__emphasis_open_star] = ACTIONS(719), - [sym__emphasis_open_underscore] = ACTIONS(721), - [sym__strikeout_open] = ACTIONS(723), - [sym__latex_span_start] = ACTIONS(725), - [sym__single_quote_open] = ACTIONS(727), - [sym__double_quote_open] = ACTIONS(729), - [sym__double_quote_close] = ACTIONS(667), - [sym__superscript_open] = ACTIONS(731), - [sym__subscript_open] = ACTIONS(733), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(735), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(737), - [sym__cite_author_in_text] = ACTIONS(739), - [sym__cite_suppress_author] = ACTIONS(741), - [sym__shortcode_open_escaped] = ACTIONS(743), - [sym__shortcode_open] = ACTIONS(745), - [sym__unclosed_span] = ACTIONS(689), + [sym_backslash_escape] = STATE(372), + [sym_commonmark_attribute] = STATE(372), + [sym_code_span] = STATE(372), + [sym_latex_span] = STATE(372), + [sym_insert] = STATE(372), + [sym_delete] = STATE(372), + [sym_highlight] = STATE(372), + [sym_edit_comment] = STATE(372), + [sym_superscript] = STATE(372), + [sym_subscript] = STATE(372), + [sym_strikeout] = STATE(372), + [sym_quoted_span] = STATE(372), + [sym_inline_note] = STATE(372), + [sym_citation] = STATE(372), + [sym_shortcode_escaped] = STATE(372), + [sym_shortcode] = STATE(372), + [sym_note_reference] = STATE(372), + [sym__link_text] = STATE(454), + [sym__link_text_non_empty] = STATE(455), + [sym_inline_link] = STATE(57), + [sym_image] = STATE(372), + [sym__image_inline_link] = STATE(1025), + [sym__image_description] = STATE(2356), + [sym__image_description_non_empty] = STATE(2356), + [sym_hard_line_break] = STATE(372), + [sym__whitespace] = STATE(1022), + [sym__word] = STATE(1022), + [sym__soft_line_break] = STATE(1026), + [sym__inline_base] = STATE(57), + [sym__text_base] = STATE(372), + [sym__inline_element] = STATE(57), + [sym__emphasis_star] = STATE(714), + [sym__strong_emphasis_star] = STATE(57), + [sym__emphasis_underscore] = STATE(714), + [sym__strong_emphasis_underscore] = STATE(57), + [aux_sym_insert_repeat1] = STATE(57), + [aux_sym__inline_base_repeat1] = STATE(372), + [sym__backslash_escape] = ACTIONS(707), + [sym_entity_reference] = ACTIONS(709), + [sym_numeric_character_reference] = ACTIONS(709), + [anon_sym_LT] = ACTIONS(711), + [anon_sym_GT] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(715), + [anon_sym_DQUOTE] = ACTIONS(713), + [anon_sym_POUND] = ACTIONS(713), + [anon_sym_DOLLAR] = ACTIONS(713), + [anon_sym_PERCENT] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(711), + [anon_sym_SQUOTE] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_COMMA] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_DOT] = ACTIONS(711), + [anon_sym_SLASH] = ACTIONS(713), + [anon_sym_COLON] = ACTIONS(713), + [anon_sym_SEMI] = ACTIONS(713), + [anon_sym_EQ] = ACTIONS(713), + [anon_sym_QMARK] = ACTIONS(713), + [anon_sym_LBRACK] = ACTIONS(717), + [anon_sym_BSLASH] = ACTIONS(719), + [anon_sym_CARET] = ACTIONS(711), + [anon_sym__] = ACTIONS(713), + [anon_sym_BQUOTE] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(721), + [anon_sym_PIPE] = ACTIONS(713), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_LPAREN] = ACTIONS(713), + [anon_sym_RPAREN] = ACTIONS(713), + [sym__newline_token] = ACTIONS(723), + [aux_sym_insert_token1] = ACTIONS(725), + [aux_sym_insert_token2] = ACTIONS(727), + [aux_sym_delete_token1] = ACTIONS(729), + [aux_sym_highlight_token1] = ACTIONS(731), + [aux_sym_edit_comment_token1] = ACTIONS(733), + [anon_sym_CARET_LBRACK] = ACTIONS(735), + [anon_sym_LBRACK_CARET] = ACTIONS(737), + [sym_uri_autolink] = ACTIONS(709), + [sym_email_autolink] = ACTIONS(709), + [sym__whitespace_ge_2] = ACTIONS(739), + [aux_sym__whitespace_token1] = ACTIONS(741), + [sym__word_no_digit] = ACTIONS(743), + [sym__digits] = ACTIONS(743), + [anon_sym_DASH_DASH] = ACTIONS(745), + [anon_sym_DASH_DASH_DASH] = ACTIONS(743), + [anon_sym_DOT_DOT_DOT] = ACTIONS(743), + [sym__code_span_start] = ACTIONS(747), + [sym__emphasis_open_star] = ACTIONS(749), + [sym__emphasis_open_underscore] = ACTIONS(751), + [sym__strikeout_open] = ACTIONS(753), + [sym__latex_span_start] = ACTIONS(755), + [sym__single_quote_open] = ACTIONS(757), + [sym__double_quote_open] = ACTIONS(759), + [sym__superscript_open] = ACTIONS(761), + [sym__subscript_open] = ACTIONS(763), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(765), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(767), + [sym__cite_author_in_text] = ACTIONS(769), + [sym__cite_suppress_author] = ACTIONS(771), + [sym__shortcode_open_escaped] = ACTIONS(773), + [sym__shortcode_open] = ACTIONS(775), + [sym__unclosed_span] = ACTIONS(709), }, [STATE(32)] = { - [sym_backslash_escape] = STATE(262), - [sym_commonmark_attribute] = STATE(262), - [sym_code_span] = STATE(262), - [sym_latex_span] = STATE(262), - [sym_superscript] = STATE(262), - [sym_subscript] = STATE(262), - [sym_strikeout] = STATE(262), - [sym_quoted_span] = STATE(262), - [sym_inline_note] = STATE(262), - [sym_citation] = STATE(262), - [sym_shortcode_escaped] = STATE(262), - [sym_shortcode] = STATE(262), - [sym_note_reference] = STATE(262), - [sym__link_text] = STATE(313), - [sym__link_text_non_empty] = STATE(314), - [sym_inline_link] = STATE(51), - [sym_image] = STATE(262), - [sym__image_inline_link] = STATE(708), - [sym__image_description] = STATE(1970), - [sym__image_description_non_empty] = STATE(1970), - [sym_hard_line_break] = STATE(262), - [sym__whitespace] = STATE(705), - [sym__word] = STATE(705), - [sym__soft_line_break] = STATE(709), - [sym__inline_base] = STATE(51), - [sym__text_base] = STATE(262), - [sym__inline_element] = STATE(51), - [sym__emphasis_star] = STATE(1138), - [sym__strong_emphasis_star] = STATE(51), - [sym__emphasis_underscore] = STATE(1138), - [sym__strong_emphasis_underscore] = STATE(51), - [aux_sym_superscript_repeat1] = STATE(51), - [aux_sym__inline_base_repeat1] = STATE(262), - [sym__backslash_escape] = ACTIONS(747), - [sym_entity_reference] = ACTIONS(749), - [sym_numeric_character_reference] = ACTIONS(749), - [anon_sym_LT] = ACTIONS(751), - [anon_sym_GT] = ACTIONS(753), - [anon_sym_BANG] = ACTIONS(755), - [anon_sym_DQUOTE] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(753), - [anon_sym_DOLLAR] = ACTIONS(753), - [anon_sym_PERCENT] = ACTIONS(753), - [anon_sym_AMP] = ACTIONS(751), - [anon_sym_SQUOTE] = ACTIONS(753), - [anon_sym_STAR] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(753), - [anon_sym_COMMA] = ACTIONS(753), - [anon_sym_DASH] = ACTIONS(751), - [anon_sym_DOT] = ACTIONS(751), - [anon_sym_SLASH] = ACTIONS(753), - [anon_sym_COLON] = ACTIONS(753), - [anon_sym_SEMI] = ACTIONS(753), - [anon_sym_EQ] = ACTIONS(753), - [anon_sym_QMARK] = ACTIONS(753), - [anon_sym_LBRACK] = ACTIONS(757), - [anon_sym_BSLASH] = ACTIONS(759), - [anon_sym_CARET] = ACTIONS(751), - [anon_sym__] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(753), - [anon_sym_LBRACE] = ACTIONS(761), - [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_TILDE] = ACTIONS(753), - [anon_sym_LPAREN] = ACTIONS(753), - [anon_sym_RPAREN] = ACTIONS(753), - [sym__newline_token] = ACTIONS(763), - [anon_sym_CARET_LBRACK] = ACTIONS(765), - [anon_sym_LBRACK_CARET] = ACTIONS(767), - [sym_uri_autolink] = ACTIONS(749), - [sym_email_autolink] = ACTIONS(749), - [sym__whitespace_ge_2] = ACTIONS(769), - [aux_sym__whitespace_token1] = ACTIONS(771), - [sym__word_no_digit] = ACTIONS(773), - [sym__digits] = ACTIONS(773), - [anon_sym_DASH_DASH] = ACTIONS(775), - [anon_sym_DASH_DASH_DASH] = ACTIONS(773), - [anon_sym_DOT_DOT_DOT] = ACTIONS(773), - [sym__code_span_start] = ACTIONS(777), - [sym__emphasis_open_star] = ACTIONS(779), - [sym__emphasis_open_underscore] = ACTIONS(781), - [sym__strikeout_open] = ACTIONS(783), - [sym__latex_span_start] = ACTIONS(785), - [sym__single_quote_open] = ACTIONS(787), - [sym__double_quote_open] = ACTIONS(789), - [sym__superscript_open] = ACTIONS(791), - [sym__superscript_close] = ACTIONS(793), - [sym__subscript_open] = ACTIONS(795), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(797), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(799), - [sym__cite_author_in_text] = ACTIONS(801), - [sym__cite_suppress_author] = ACTIONS(803), - [sym__shortcode_open_escaped] = ACTIONS(805), - [sym__shortcode_open] = ACTIONS(807), - [sym__unclosed_span] = ACTIONS(749), + [sym_backslash_escape] = STATE(370), + [sym_commonmark_attribute] = STATE(370), + [sym_code_span] = STATE(370), + [sym_latex_span] = STATE(370), + [sym_insert] = STATE(370), + [sym_delete] = STATE(370), + [sym_highlight] = STATE(370), + [sym_edit_comment] = STATE(370), + [sym_superscript] = STATE(370), + [sym_subscript] = STATE(370), + [sym_strikeout] = STATE(370), + [sym_quoted_span] = STATE(370), + [sym_inline_note] = STATE(370), + [sym_citation] = STATE(370), + [sym_shortcode_escaped] = STATE(370), + [sym_shortcode] = STATE(370), + [sym_note_reference] = STATE(370), + [sym__link_text] = STATE(472), + [sym__link_text_non_empty] = STATE(473), + [sym_inline_link] = STATE(43), + [sym_image] = STATE(370), + [sym__image_inline_link] = STATE(923), + [sym__image_description] = STATE(2342), + [sym__image_description_non_empty] = STATE(2342), + [sym_hard_line_break] = STATE(370), + [sym__whitespace] = STATE(920), + [sym__word] = STATE(920), + [sym__soft_line_break] = STATE(924), + [sym__inline_base] = STATE(43), + [sym__text_base] = STATE(370), + [sym__inline_element] = STATE(43), + [sym__emphasis_star] = STATE(821), + [sym__strong_emphasis_star] = STATE(43), + [sym__emphasis_underscore] = STATE(821), + [sym__strong_emphasis_underscore] = STATE(43), + [aux_sym_insert_repeat1] = STATE(43), + [aux_sym__inline_base_repeat1] = STATE(370), + [sym__backslash_escape] = ACTIONS(73), + [sym_entity_reference] = ACTIONS(75), + [sym_numeric_character_reference] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_BANG] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_POUND] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(79), + [anon_sym_PERCENT] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_STAR] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_COMMA] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_DOT] = ACTIONS(77), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_COLON] = ACTIONS(79), + [anon_sym_SEMI] = ACTIONS(79), + [anon_sym_EQ] = ACTIONS(79), + [anon_sym_QMARK] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(83), + [anon_sym_BSLASH] = ACTIONS(85), + [anon_sym_RBRACK] = ACTIONS(777), + [anon_sym_CARET] = ACTIONS(77), + [anon_sym__] = ACTIONS(79), + [anon_sym_BQUOTE] = ACTIONS(79), + [anon_sym_LBRACE] = ACTIONS(89), + [anon_sym_PIPE] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(79), + [anon_sym_RPAREN] = ACTIONS(79), + [sym__newline_token] = ACTIONS(91), + [aux_sym_insert_token1] = ACTIONS(93), + [aux_sym_delete_token1] = ACTIONS(95), + [aux_sym_highlight_token1] = ACTIONS(97), + [aux_sym_edit_comment_token1] = ACTIONS(99), + [anon_sym_CARET_LBRACK] = ACTIONS(101), + [anon_sym_LBRACK_CARET] = ACTIONS(103), + [sym_uri_autolink] = ACTIONS(75), + [sym_email_autolink] = ACTIONS(75), + [sym__whitespace_ge_2] = ACTIONS(105), + [aux_sym__whitespace_token1] = ACTIONS(107), + [sym__word_no_digit] = ACTIONS(109), + [sym__digits] = ACTIONS(109), + [anon_sym_DASH_DASH] = ACTIONS(111), + [anon_sym_DASH_DASH_DASH] = ACTIONS(109), + [anon_sym_DOT_DOT_DOT] = ACTIONS(109), + [sym__code_span_start] = ACTIONS(113), + [sym__emphasis_open_star] = ACTIONS(115), + [sym__emphasis_open_underscore] = ACTIONS(117), + [sym__strikeout_open] = ACTIONS(121), + [sym__latex_span_start] = ACTIONS(123), + [sym__single_quote_open] = ACTIONS(125), + [sym__double_quote_open] = ACTIONS(127), + [sym__superscript_open] = ACTIONS(129), + [sym__subscript_open] = ACTIONS(131), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(133), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(135), + [sym__cite_author_in_text] = ACTIONS(137), + [sym__cite_suppress_author] = ACTIONS(139), + [sym__shortcode_open_escaped] = ACTIONS(141), + [sym__shortcode_open] = ACTIONS(143), + [sym__unclosed_span] = ACTIONS(75), }, [STATE(33)] = { - [sym_backslash_escape] = STATE(270), - [sym_commonmark_attribute] = STATE(270), - [sym_code_span] = STATE(270), - [sym_latex_span] = STATE(270), - [sym_superscript] = STATE(270), - [sym_subscript] = STATE(270), - [sym_strikeout] = STATE(270), - [sym_quoted_span] = STATE(270), - [sym_inline_note] = STATE(270), - [sym_citation] = STATE(270), - [sym_shortcode_escaped] = STATE(270), - [sym_shortcode] = STATE(270), - [sym_note_reference] = STATE(270), - [sym__link_text] = STATE(359), - [sym__link_text_non_empty] = STATE(364), - [sym_inline_link] = STATE(52), - [sym_image] = STATE(270), - [sym__image_inline_link] = STATE(795), - [sym__image_description] = STATE(1984), - [sym__image_description_non_empty] = STATE(1984), - [sym_hard_line_break] = STATE(270), - [sym__whitespace] = STATE(792), - [sym__word] = STATE(792), - [sym__soft_line_break] = STATE(796), - [sym__inline_base] = STATE(52), - [sym__text_base] = STATE(270), - [sym__inline_element] = STATE(52), - [sym__emphasis_star] = STATE(615), - [sym__strong_emphasis_star] = STATE(52), - [sym__emphasis_underscore] = STATE(615), - [sym__strong_emphasis_underscore] = STATE(52), - [aux_sym_superscript_repeat1] = STATE(52), - [aux_sym__inline_base_repeat1] = STATE(270), - [sym__backslash_escape] = ACTIONS(809), - [sym_entity_reference] = ACTIONS(811), - [sym_numeric_character_reference] = ACTIONS(811), - [anon_sym_LT] = ACTIONS(813), - [anon_sym_GT] = ACTIONS(815), - [anon_sym_BANG] = ACTIONS(817), - [anon_sym_DQUOTE] = ACTIONS(815), - [anon_sym_POUND] = ACTIONS(815), - [anon_sym_DOLLAR] = ACTIONS(815), - [anon_sym_PERCENT] = ACTIONS(815), - [anon_sym_AMP] = ACTIONS(813), - [anon_sym_SQUOTE] = ACTIONS(815), - [anon_sym_STAR] = ACTIONS(815), - [anon_sym_PLUS] = ACTIONS(815), - [anon_sym_COMMA] = ACTIONS(815), - [anon_sym_DASH] = ACTIONS(813), - [anon_sym_DOT] = ACTIONS(813), - [anon_sym_SLASH] = ACTIONS(815), - [anon_sym_COLON] = ACTIONS(815), - [anon_sym_SEMI] = ACTIONS(815), - [anon_sym_EQ] = ACTIONS(815), - [anon_sym_QMARK] = ACTIONS(815), - [anon_sym_LBRACK] = ACTIONS(819), - [anon_sym_BSLASH] = ACTIONS(821), - [anon_sym_CARET] = ACTIONS(813), - [anon_sym__] = ACTIONS(815), - [anon_sym_BQUOTE] = ACTIONS(815), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_PIPE] = ACTIONS(815), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_RPAREN] = ACTIONS(815), - [sym__newline_token] = ACTIONS(825), - [anon_sym_CARET_LBRACK] = ACTIONS(827), - [anon_sym_LBRACK_CARET] = ACTIONS(829), - [sym_uri_autolink] = ACTIONS(811), - [sym_email_autolink] = ACTIONS(811), - [sym__whitespace_ge_2] = ACTIONS(831), - [aux_sym__whitespace_token1] = ACTIONS(833), - [sym__word_no_digit] = ACTIONS(835), - [sym__digits] = ACTIONS(835), - [anon_sym_DASH_DASH] = ACTIONS(837), - [anon_sym_DASH_DASH_DASH] = ACTIONS(835), - [anon_sym_DOT_DOT_DOT] = ACTIONS(835), - [sym__code_span_start] = ACTIONS(839), - [sym__emphasis_open_star] = ACTIONS(841), - [sym__emphasis_open_underscore] = ACTIONS(843), - [sym__strikeout_open] = ACTIONS(845), - [sym__latex_span_start] = ACTIONS(847), - [sym__single_quote_open] = ACTIONS(849), - [sym__double_quote_open] = ACTIONS(851), - [sym__superscript_open] = ACTIONS(853), - [sym__subscript_open] = ACTIONS(855), - [sym__subscript_close] = ACTIONS(857), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(859), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(861), - [sym__cite_author_in_text] = ACTIONS(863), - [sym__cite_suppress_author] = ACTIONS(865), - [sym__shortcode_open_escaped] = ACTIONS(867), - [sym__shortcode_open] = ACTIONS(869), - [sym__unclosed_span] = ACTIONS(811), + [sym_backslash_escape] = STATE(370), + [sym_commonmark_attribute] = STATE(370), + [sym_code_span] = STATE(370), + [sym_latex_span] = STATE(370), + [sym_insert] = STATE(370), + [sym_delete] = STATE(370), + [sym_highlight] = STATE(370), + [sym_edit_comment] = STATE(370), + [sym_superscript] = STATE(370), + [sym_subscript] = STATE(370), + [sym_strikeout] = STATE(370), + [sym_quoted_span] = STATE(370), + [sym_inline_note] = STATE(370), + [sym_citation] = STATE(370), + [sym_shortcode_escaped] = STATE(370), + [sym_shortcode] = STATE(370), + [sym_note_reference] = STATE(370), + [sym__link_text] = STATE(472), + [sym__link_text_non_empty] = STATE(473), + [sym_inline_link] = STATE(60), + [sym_image] = STATE(370), + [sym__image_inline_link] = STATE(923), + [sym__image_description] = STATE(2342), + [sym__image_description_non_empty] = STATE(2342), + [sym_hard_line_break] = STATE(370), + [sym__whitespace] = STATE(920), + [sym__word] = STATE(920), + [sym__soft_line_break] = STATE(924), + [sym__inline_base] = STATE(60), + [sym__text_base] = STATE(370), + [sym__inline_element] = STATE(60), + [sym__emphasis_star] = STATE(821), + [sym__strong_emphasis_star] = STATE(60), + [sym__emphasis_underscore] = STATE(821), + [sym__strong_emphasis_underscore] = STATE(60), + [aux_sym_insert_repeat1] = STATE(60), + [aux_sym__inline_base_repeat1] = STATE(370), + [sym__backslash_escape] = ACTIONS(73), + [sym_entity_reference] = ACTIONS(75), + [sym_numeric_character_reference] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_BANG] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_POUND] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(79), + [anon_sym_PERCENT] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_STAR] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_COMMA] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_DOT] = ACTIONS(77), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_COLON] = ACTIONS(79), + [anon_sym_SEMI] = ACTIONS(79), + [anon_sym_EQ] = ACTIONS(79), + [anon_sym_QMARK] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(83), + [anon_sym_BSLASH] = ACTIONS(85), + [anon_sym_RBRACK] = ACTIONS(779), + [anon_sym_CARET] = ACTIONS(77), + [anon_sym__] = ACTIONS(79), + [anon_sym_BQUOTE] = ACTIONS(79), + [anon_sym_LBRACE] = ACTIONS(89), + [anon_sym_PIPE] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(79), + [anon_sym_RPAREN] = ACTIONS(79), + [sym__newline_token] = ACTIONS(91), + [aux_sym_insert_token1] = ACTIONS(93), + [aux_sym_delete_token1] = ACTIONS(95), + [aux_sym_highlight_token1] = ACTIONS(97), + [aux_sym_edit_comment_token1] = ACTIONS(99), + [anon_sym_CARET_LBRACK] = ACTIONS(101), + [anon_sym_LBRACK_CARET] = ACTIONS(103), + [sym_uri_autolink] = ACTIONS(75), + [sym_email_autolink] = ACTIONS(75), + [sym__whitespace_ge_2] = ACTIONS(105), + [aux_sym__whitespace_token1] = ACTIONS(107), + [sym__word_no_digit] = ACTIONS(109), + [sym__digits] = ACTIONS(109), + [anon_sym_DASH_DASH] = ACTIONS(111), + [anon_sym_DASH_DASH_DASH] = ACTIONS(109), + [anon_sym_DOT_DOT_DOT] = ACTIONS(109), + [sym__code_span_start] = ACTIONS(113), + [sym__emphasis_open_star] = ACTIONS(115), + [sym__emphasis_open_underscore] = ACTIONS(117), + [sym__strikeout_open] = ACTIONS(121), + [sym__latex_span_start] = ACTIONS(123), + [sym__single_quote_open] = ACTIONS(125), + [sym__double_quote_open] = ACTIONS(127), + [sym__superscript_open] = ACTIONS(129), + [sym__subscript_open] = ACTIONS(131), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(133), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(135), + [sym__cite_author_in_text] = ACTIONS(137), + [sym__cite_suppress_author] = ACTIONS(139), + [sym__shortcode_open_escaped] = ACTIONS(141), + [sym__shortcode_open] = ACTIONS(143), + [sym__unclosed_span] = ACTIONS(75), }, [STATE(34)] = { - [sym_backslash_escape] = STATE(271), - [sym_commonmark_attribute] = STATE(271), - [sym_code_span] = STATE(271), - [sym_latex_span] = STATE(271), - [sym_superscript] = STATE(271), - [sym_subscript] = STATE(271), - [sym_strikeout] = STATE(271), - [sym_quoted_span] = STATE(271), - [sym_inline_note] = STATE(271), - [sym_citation] = STATE(271), - [sym_shortcode_escaped] = STATE(271), - [sym_shortcode] = STATE(271), - [sym_note_reference] = STATE(271), - [sym__link_text] = STATE(424), - [sym__link_text_non_empty] = STATE(425), - [sym_inline_link] = STATE(599), - [sym_image] = STATE(271), - [sym__image_inline_link] = STATE(883), - [sym__image_description] = STATE(1998), - [sym__image_description_non_empty] = STATE(1998), - [sym_hard_line_break] = STATE(271), - [sym__whitespace] = STATE(881), - [sym__word] = STATE(881), - [sym__soft_line_break] = STATE(884), - [sym__inline_base] = STATE(599), - [sym__text_base] = STATE(271), - [sym__inline_element] = STATE(599), - [aux_sym__inline] = STATE(43), - [sym__emphasis_star] = STATE(710), - [sym__strong_emphasis_star] = STATE(599), - [sym__emphasis_underscore] = STATE(710), - [sym__strong_emphasis_underscore] = STATE(599), - [aux_sym__inline_base_repeat1] = STATE(271), - [sym__backslash_escape] = ACTIONS(159), - [sym_entity_reference] = ACTIONS(161), - [sym_numeric_character_reference] = ACTIONS(161), - [anon_sym_LT] = ACTIONS(163), - [anon_sym_GT] = ACTIONS(165), - [anon_sym_BANG] = ACTIONS(167), - [anon_sym_DQUOTE] = ACTIONS(165), - [anon_sym_POUND] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(165), - [anon_sym_PERCENT] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_SQUOTE] = ACTIONS(165), - [anon_sym_STAR] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(165), - [anon_sym_COMMA] = ACTIONS(165), - [anon_sym_DASH] = ACTIONS(163), - [anon_sym_DOT] = ACTIONS(163), - [anon_sym_SLASH] = ACTIONS(165), - [anon_sym_COLON] = ACTIONS(165), - [anon_sym_SEMI] = ACTIONS(165), - [anon_sym_EQ] = ACTIONS(165), - [anon_sym_QMARK] = ACTIONS(165), - [anon_sym_LBRACK] = ACTIONS(169), - [anon_sym_BSLASH] = ACTIONS(171), - [anon_sym_RBRACK] = ACTIONS(871), - [anon_sym_CARET] = ACTIONS(163), - [anon_sym__] = ACTIONS(165), - [anon_sym_BQUOTE] = ACTIONS(165), - [anon_sym_LBRACE] = ACTIONS(175), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(165), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_RPAREN] = ACTIONS(165), - [sym__newline_token] = ACTIONS(177), - [anon_sym_CARET_LBRACK] = ACTIONS(179), - [anon_sym_LBRACK_CARET] = ACTIONS(181), - [sym_uri_autolink] = ACTIONS(161), - [sym_email_autolink] = ACTIONS(161), - [sym__whitespace_ge_2] = ACTIONS(183), - [aux_sym__whitespace_token1] = ACTIONS(185), - [sym__word_no_digit] = ACTIONS(187), - [sym__digits] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_DASH_DASH_DASH] = ACTIONS(187), - [anon_sym_DOT_DOT_DOT] = ACTIONS(187), - [sym__code_span_start] = ACTIONS(191), - [sym__emphasis_open_star] = ACTIONS(193), - [sym__emphasis_open_underscore] = ACTIONS(195), - [sym__strikeout_open] = ACTIONS(199), - [sym__latex_span_start] = ACTIONS(201), - [sym__single_quote_open] = ACTIONS(203), - [sym__double_quote_open] = ACTIONS(205), - [sym__superscript_open] = ACTIONS(207), - [sym__subscript_open] = ACTIONS(209), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(211), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(213), - [sym__cite_author_in_text] = ACTIONS(215), - [sym__cite_suppress_author] = ACTIONS(217), - [sym__shortcode_open_escaped] = ACTIONS(219), - [sym__shortcode_open] = ACTIONS(221), - [sym__unclosed_span] = ACTIONS(161), + [sym_backslash_escape] = STATE(377), + [sym_commonmark_attribute] = STATE(377), + [sym_code_span] = STATE(377), + [sym_latex_span] = STATE(377), + [sym_insert] = STATE(377), + [sym_delete] = STATE(377), + [sym_highlight] = STATE(377), + [sym_edit_comment] = STATE(377), + [sym_superscript] = STATE(377), + [sym_subscript] = STATE(377), + [sym_strikeout] = STATE(377), + [sym_quoted_span] = STATE(377), + [sym_inline_note] = STATE(377), + [sym_citation] = STATE(377), + [sym_shortcode_escaped] = STATE(377), + [sym_shortcode] = STATE(377), + [sym_note_reference] = STATE(377), + [sym__link_text] = STATE(496), + [sym__link_text_non_empty] = STATE(521), + [sym_inline_link] = STATE(1131), + [sym_image] = STATE(377), + [sym__image_inline_link] = STATE(1305), + [sym__image_description] = STATE(2302), + [sym__image_description_non_empty] = STATE(2302), + [sym_hard_line_break] = STATE(377), + [sym__whitespace] = STATE(1160), + [sym__word] = STATE(1160), + [sym__soft_line_break] = STATE(1375), + [sym__inline_base] = STATE(1131), + [sym__text_base] = STATE(377), + [sym__inline_element] = STATE(1131), + [aux_sym__inline] = STATE(34), + [sym__emphasis_star] = STATE(1094), + [sym__strong_emphasis_star] = STATE(1131), + [sym__emphasis_underscore] = STATE(1094), + [sym__strong_emphasis_underscore] = STATE(1131), + [aux_sym__inline_base_repeat1] = STATE(377), + [ts_builtin_sym_end] = ACTIONS(781), + [sym__backslash_escape] = ACTIONS(783), + [sym_entity_reference] = ACTIONS(786), + [sym_numeric_character_reference] = ACTIONS(786), + [anon_sym_LT] = ACTIONS(789), + [anon_sym_GT] = ACTIONS(792), + [anon_sym_BANG] = ACTIONS(795), + [anon_sym_DQUOTE] = ACTIONS(792), + [anon_sym_POUND] = ACTIONS(792), + [anon_sym_DOLLAR] = ACTIONS(792), + [anon_sym_PERCENT] = ACTIONS(792), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_SQUOTE] = ACTIONS(792), + [anon_sym_STAR] = ACTIONS(792), + [anon_sym_PLUS] = ACTIONS(792), + [anon_sym_COMMA] = ACTIONS(792), + [anon_sym_DASH] = ACTIONS(789), + [anon_sym_DOT] = ACTIONS(789), + [anon_sym_SLASH] = ACTIONS(792), + [anon_sym_COLON] = ACTIONS(792), + [anon_sym_SEMI] = ACTIONS(792), + [anon_sym_EQ] = ACTIONS(792), + [anon_sym_QMARK] = ACTIONS(792), + [anon_sym_LBRACK] = ACTIONS(798), + [anon_sym_BSLASH] = ACTIONS(801), + [anon_sym_CARET] = ACTIONS(789), + [anon_sym__] = ACTIONS(792), + [anon_sym_BQUOTE] = ACTIONS(792), + [anon_sym_LBRACE] = ACTIONS(804), + [anon_sym_PIPE] = ACTIONS(792), + [anon_sym_TILDE] = ACTIONS(792), + [anon_sym_LPAREN] = ACTIONS(792), + [anon_sym_RPAREN] = ACTIONS(792), + [sym__newline_token] = ACTIONS(807), + [aux_sym_insert_token1] = ACTIONS(810), + [aux_sym_delete_token1] = ACTIONS(813), + [aux_sym_highlight_token1] = ACTIONS(816), + [aux_sym_edit_comment_token1] = ACTIONS(819), + [anon_sym_CARET_LBRACK] = ACTIONS(822), + [anon_sym_LBRACK_CARET] = ACTIONS(825), + [sym_uri_autolink] = ACTIONS(786), + [sym_email_autolink] = ACTIONS(786), + [sym__whitespace_ge_2] = ACTIONS(828), + [aux_sym__whitespace_token1] = ACTIONS(831), + [sym__word_no_digit] = ACTIONS(834), + [sym__digits] = ACTIONS(834), + [anon_sym_DASH_DASH] = ACTIONS(837), + [anon_sym_DASH_DASH_DASH] = ACTIONS(834), + [anon_sym_DOT_DOT_DOT] = ACTIONS(834), + [sym__code_span_start] = ACTIONS(840), + [sym__emphasis_open_star] = ACTIONS(843), + [sym__emphasis_open_underscore] = ACTIONS(846), + [sym__strikeout_open] = ACTIONS(849), + [sym__latex_span_start] = ACTIONS(852), + [sym__single_quote_open] = ACTIONS(855), + [sym__double_quote_open] = ACTIONS(858), + [sym__superscript_open] = ACTIONS(861), + [sym__subscript_open] = ACTIONS(864), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(867), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(870), + [sym__cite_author_in_text] = ACTIONS(873), + [sym__cite_suppress_author] = ACTIONS(876), + [sym__shortcode_open_escaped] = ACTIONS(879), + [sym__shortcode_open] = ACTIONS(882), + [sym__unclosed_span] = ACTIONS(786), }, [STATE(35)] = { - [sym_backslash_escape] = STATE(271), - [sym_commonmark_attribute] = STATE(271), - [sym_code_span] = STATE(271), - [sym_latex_span] = STATE(271), - [sym_superscript] = STATE(271), - [sym_subscript] = STATE(271), - [sym_strikeout] = STATE(271), - [sym_quoted_span] = STATE(271), - [sym_inline_note] = STATE(271), - [sym_citation] = STATE(271), - [sym_shortcode_escaped] = STATE(271), - [sym_shortcode] = STATE(271), - [sym_note_reference] = STATE(271), - [sym__link_text] = STATE(424), - [sym__link_text_non_empty] = STATE(425), - [sym_inline_link] = STATE(44), - [sym_image] = STATE(271), - [sym__image_inline_link] = STATE(883), - [sym__image_description] = STATE(1998), - [sym__image_description_non_empty] = STATE(1998), - [sym_hard_line_break] = STATE(271), - [sym__whitespace] = STATE(881), - [sym__word] = STATE(881), - [sym__soft_line_break] = STATE(884), - [sym__inline_base] = STATE(44), - [sym__text_base] = STATE(271), - [sym__inline_element] = STATE(44), - [sym__emphasis_star] = STATE(710), - [sym__strong_emphasis_star] = STATE(44), - [sym__emphasis_underscore] = STATE(710), - [sym__strong_emphasis_underscore] = STATE(44), - [aux_sym_superscript_repeat1] = STATE(44), - [aux_sym__inline_base_repeat1] = STATE(271), - [sym__backslash_escape] = ACTIONS(159), - [sym_entity_reference] = ACTIONS(161), - [sym_numeric_character_reference] = ACTIONS(161), - [anon_sym_LT] = ACTIONS(163), - [anon_sym_GT] = ACTIONS(165), - [anon_sym_BANG] = ACTIONS(167), - [anon_sym_DQUOTE] = ACTIONS(165), - [anon_sym_POUND] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(165), - [anon_sym_PERCENT] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_SQUOTE] = ACTIONS(165), - [anon_sym_STAR] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(165), - [anon_sym_COMMA] = ACTIONS(165), - [anon_sym_DASH] = ACTIONS(163), - [anon_sym_DOT] = ACTIONS(163), - [anon_sym_SLASH] = ACTIONS(165), - [anon_sym_COLON] = ACTIONS(165), - [anon_sym_SEMI] = ACTIONS(165), - [anon_sym_EQ] = ACTIONS(165), - [anon_sym_QMARK] = ACTIONS(165), - [anon_sym_LBRACK] = ACTIONS(169), - [anon_sym_BSLASH] = ACTIONS(171), - [anon_sym_RBRACK] = ACTIONS(873), - [anon_sym_CARET] = ACTIONS(163), - [anon_sym__] = ACTIONS(165), - [anon_sym_BQUOTE] = ACTIONS(165), - [anon_sym_LBRACE] = ACTIONS(175), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(165), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_RPAREN] = ACTIONS(165), - [sym__newline_token] = ACTIONS(177), - [anon_sym_CARET_LBRACK] = ACTIONS(179), - [anon_sym_LBRACK_CARET] = ACTIONS(181), - [sym_uri_autolink] = ACTIONS(161), - [sym_email_autolink] = ACTIONS(161), - [sym__whitespace_ge_2] = ACTIONS(183), - [aux_sym__whitespace_token1] = ACTIONS(185), - [sym__word_no_digit] = ACTIONS(187), - [sym__digits] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_DASH_DASH_DASH] = ACTIONS(187), - [anon_sym_DOT_DOT_DOT] = ACTIONS(187), - [sym__code_span_start] = ACTIONS(191), - [sym__emphasis_open_star] = ACTIONS(193), - [sym__emphasis_open_underscore] = ACTIONS(195), - [sym__strikeout_open] = ACTIONS(199), - [sym__latex_span_start] = ACTIONS(201), - [sym__single_quote_open] = ACTIONS(203), - [sym__double_quote_open] = ACTIONS(205), - [sym__superscript_open] = ACTIONS(207), - [sym__subscript_open] = ACTIONS(209), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(211), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(213), - [sym__cite_author_in_text] = ACTIONS(215), - [sym__cite_suppress_author] = ACTIONS(217), - [sym__shortcode_open_escaped] = ACTIONS(219), - [sym__shortcode_open] = ACTIONS(221), - [sym__unclosed_span] = ACTIONS(161), + [sym_backslash_escape] = STATE(373), + [sym_commonmark_attribute] = STATE(373), + [sym_code_span] = STATE(373), + [sym_latex_span] = STATE(373), + [sym_insert] = STATE(373), + [sym_delete] = STATE(373), + [sym_highlight] = STATE(373), + [sym_edit_comment] = STATE(373), + [sym_superscript] = STATE(373), + [sym_subscript] = STATE(373), + [sym_strikeout] = STATE(373), + [sym_quoted_span] = STATE(373), + [sym_inline_note] = STATE(373), + [sym_citation] = STATE(373), + [sym_shortcode_escaped] = STATE(373), + [sym_shortcode] = STATE(373), + [sym_note_reference] = STATE(373), + [sym__link_text] = STATE(522), + [sym__link_text_non_empty] = STATE(523), + [sym_inline_link] = STATE(36), + [sym_image] = STATE(373), + [sym__image_inline_link] = STATE(1265), + [sym__image_description] = STATE(2331), + [sym__image_description_non_empty] = STATE(2331), + [sym_hard_line_break] = STATE(373), + [sym__whitespace] = STATE(1262), + [sym__word] = STATE(1262), + [sym__soft_line_break] = STATE(1267), + [sym__inline_base] = STATE(36), + [sym__text_base] = STATE(373), + [sym__inline_element_no_star] = STATE(36), + [aux_sym__inline_no_star] = STATE(36), + [sym__emphasis_star] = STATE(1147), + [sym__strong_emphasis_star] = STATE(36), + [sym__emphasis_underscore] = STATE(1147), + [sym__strong_emphasis_underscore] = STATE(36), + [aux_sym__inline_base_repeat1] = STATE(373), + [sym__backslash_escape] = ACTIONS(885), + [sym_entity_reference] = ACTIONS(887), + [sym_numeric_character_reference] = ACTIONS(887), + [anon_sym_LT] = ACTIONS(889), + [anon_sym_GT] = ACTIONS(891), + [anon_sym_BANG] = ACTIONS(893), + [anon_sym_DQUOTE] = ACTIONS(891), + [anon_sym_POUND] = ACTIONS(891), + [anon_sym_DOLLAR] = ACTIONS(891), + [anon_sym_PERCENT] = ACTIONS(891), + [anon_sym_AMP] = ACTIONS(889), + [anon_sym_SQUOTE] = ACTIONS(891), + [anon_sym_STAR] = ACTIONS(891), + [anon_sym_PLUS] = ACTIONS(891), + [anon_sym_COMMA] = ACTIONS(891), + [anon_sym_DASH] = ACTIONS(889), + [anon_sym_DOT] = ACTIONS(889), + [anon_sym_SLASH] = ACTIONS(891), + [anon_sym_COLON] = ACTIONS(891), + [anon_sym_SEMI] = ACTIONS(891), + [anon_sym_EQ] = ACTIONS(891), + [anon_sym_QMARK] = ACTIONS(891), + [anon_sym_LBRACK] = ACTIONS(895), + [anon_sym_BSLASH] = ACTIONS(897), + [anon_sym_CARET] = ACTIONS(889), + [anon_sym__] = ACTIONS(891), + [anon_sym_BQUOTE] = ACTIONS(891), + [anon_sym_LBRACE] = ACTIONS(899), + [anon_sym_PIPE] = ACTIONS(891), + [anon_sym_TILDE] = ACTIONS(891), + [anon_sym_LPAREN] = ACTIONS(891), + [anon_sym_RPAREN] = ACTIONS(891), + [sym__newline_token] = ACTIONS(901), + [aux_sym_insert_token1] = ACTIONS(903), + [aux_sym_delete_token1] = ACTIONS(905), + [aux_sym_highlight_token1] = ACTIONS(907), + [aux_sym_edit_comment_token1] = ACTIONS(909), + [anon_sym_CARET_LBRACK] = ACTIONS(911), + [anon_sym_LBRACK_CARET] = ACTIONS(913), + [sym_uri_autolink] = ACTIONS(887), + [sym_email_autolink] = ACTIONS(887), + [sym__whitespace_ge_2] = ACTIONS(915), + [aux_sym__whitespace_token1] = ACTIONS(917), + [sym__word_no_digit] = ACTIONS(919), + [sym__digits] = ACTIONS(919), + [anon_sym_DASH_DASH] = ACTIONS(921), + [anon_sym_DASH_DASH_DASH] = ACTIONS(919), + [anon_sym_DOT_DOT_DOT] = ACTIONS(919), + [sym__code_span_start] = ACTIONS(923), + [sym__emphasis_open_star] = ACTIONS(925), + [sym__emphasis_open_underscore] = ACTIONS(927), + [sym__emphasis_close_star] = ACTIONS(929), + [sym__strikeout_open] = ACTIONS(931), + [sym__latex_span_start] = ACTIONS(933), + [sym__single_quote_open] = ACTIONS(935), + [sym__double_quote_open] = ACTIONS(937), + [sym__superscript_open] = ACTIONS(939), + [sym__subscript_open] = ACTIONS(941), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(943), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(945), + [sym__cite_author_in_text] = ACTIONS(947), + [sym__cite_suppress_author] = ACTIONS(949), + [sym__shortcode_open_escaped] = ACTIONS(951), + [sym__shortcode_open] = ACTIONS(953), + [sym__unclosed_span] = ACTIONS(887), }, [STATE(36)] = { - [sym_backslash_escape] = STATE(271), - [sym_commonmark_attribute] = STATE(271), - [sym_code_span] = STATE(271), - [sym_latex_span] = STATE(271), - [sym_superscript] = STATE(271), - [sym_subscript] = STATE(271), - [sym_strikeout] = STATE(271), - [sym_quoted_span] = STATE(271), - [sym_inline_note] = STATE(271), - [sym_citation] = STATE(271), - [sym_shortcode_escaped] = STATE(271), - [sym_shortcode] = STATE(271), - [sym_note_reference] = STATE(271), - [sym__link_text] = STATE(424), - [sym__link_text_non_empty] = STATE(425), - [sym_inline_link] = STATE(53), - [sym_image] = STATE(271), - [sym__image_inline_link] = STATE(883), - [sym__image_description] = STATE(1998), - [sym__image_description_non_empty] = STATE(1998), - [sym_hard_line_break] = STATE(271), - [sym__whitespace] = STATE(881), - [sym__word] = STATE(881), - [sym__soft_line_break] = STATE(884), - [sym__inline_base] = STATE(53), - [sym__text_base] = STATE(271), - [sym__inline_element] = STATE(53), - [sym__emphasis_star] = STATE(710), - [sym__strong_emphasis_star] = STATE(53), - [sym__emphasis_underscore] = STATE(710), - [sym__strong_emphasis_underscore] = STATE(53), - [aux_sym_superscript_repeat1] = STATE(53), - [aux_sym__inline_base_repeat1] = STATE(271), - [sym__backslash_escape] = ACTIONS(159), - [sym_entity_reference] = ACTIONS(161), - [sym_numeric_character_reference] = ACTIONS(161), - [anon_sym_LT] = ACTIONS(163), - [anon_sym_GT] = ACTIONS(165), - [anon_sym_BANG] = ACTIONS(167), - [anon_sym_DQUOTE] = ACTIONS(165), - [anon_sym_POUND] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(165), - [anon_sym_PERCENT] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_SQUOTE] = ACTIONS(165), - [anon_sym_STAR] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(165), - [anon_sym_COMMA] = ACTIONS(165), - [anon_sym_DASH] = ACTIONS(163), - [anon_sym_DOT] = ACTIONS(163), - [anon_sym_SLASH] = ACTIONS(165), - [anon_sym_COLON] = ACTIONS(165), - [anon_sym_SEMI] = ACTIONS(165), - [anon_sym_EQ] = ACTIONS(165), - [anon_sym_QMARK] = ACTIONS(165), - [anon_sym_LBRACK] = ACTIONS(169), - [anon_sym_BSLASH] = ACTIONS(171), - [anon_sym_RBRACK] = ACTIONS(875), - [anon_sym_CARET] = ACTIONS(163), - [anon_sym__] = ACTIONS(165), - [anon_sym_BQUOTE] = ACTIONS(165), - [anon_sym_LBRACE] = ACTIONS(175), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(165), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_RPAREN] = ACTIONS(165), - [sym__newline_token] = ACTIONS(177), - [anon_sym_CARET_LBRACK] = ACTIONS(179), - [anon_sym_LBRACK_CARET] = ACTIONS(181), - [sym_uri_autolink] = ACTIONS(161), - [sym_email_autolink] = ACTIONS(161), - [sym__whitespace_ge_2] = ACTIONS(183), - [aux_sym__whitespace_token1] = ACTIONS(185), - [sym__word_no_digit] = ACTIONS(187), - [sym__digits] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_DASH_DASH_DASH] = ACTIONS(187), - [anon_sym_DOT_DOT_DOT] = ACTIONS(187), - [sym__code_span_start] = ACTIONS(191), - [sym__emphasis_open_star] = ACTIONS(193), - [sym__emphasis_open_underscore] = ACTIONS(195), - [sym__strikeout_open] = ACTIONS(199), - [sym__latex_span_start] = ACTIONS(201), - [sym__single_quote_open] = ACTIONS(203), - [sym__double_quote_open] = ACTIONS(205), - [sym__superscript_open] = ACTIONS(207), - [sym__subscript_open] = ACTIONS(209), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(211), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(213), - [sym__cite_author_in_text] = ACTIONS(215), - [sym__cite_suppress_author] = ACTIONS(217), - [sym__shortcode_open_escaped] = ACTIONS(219), - [sym__shortcode_open] = ACTIONS(221), - [sym__unclosed_span] = ACTIONS(161), + [sym_backslash_escape] = STATE(373), + [sym_commonmark_attribute] = STATE(373), + [sym_code_span] = STATE(373), + [sym_latex_span] = STATE(373), + [sym_insert] = STATE(373), + [sym_delete] = STATE(373), + [sym_highlight] = STATE(373), + [sym_edit_comment] = STATE(373), + [sym_superscript] = STATE(373), + [sym_subscript] = STATE(373), + [sym_strikeout] = STATE(373), + [sym_quoted_span] = STATE(373), + [sym_inline_note] = STATE(373), + [sym_citation] = STATE(373), + [sym_shortcode_escaped] = STATE(373), + [sym_shortcode] = STATE(373), + [sym_note_reference] = STATE(373), + [sym__link_text] = STATE(522), + [sym__link_text_non_empty] = STATE(523), + [sym_inline_link] = STATE(36), + [sym_image] = STATE(373), + [sym__image_inline_link] = STATE(1265), + [sym__image_description] = STATE(2331), + [sym__image_description_non_empty] = STATE(2331), + [sym_hard_line_break] = STATE(373), + [sym__whitespace] = STATE(1262), + [sym__word] = STATE(1262), + [sym__soft_line_break] = STATE(1267), + [sym__inline_base] = STATE(36), + [sym__text_base] = STATE(373), + [sym__inline_element_no_star] = STATE(36), + [aux_sym__inline_no_star] = STATE(36), + [sym__emphasis_star] = STATE(1147), + [sym__strong_emphasis_star] = STATE(36), + [sym__emphasis_underscore] = STATE(1147), + [sym__strong_emphasis_underscore] = STATE(36), + [aux_sym__inline_base_repeat1] = STATE(373), + [sym__backslash_escape] = ACTIONS(955), + [sym_entity_reference] = ACTIONS(958), + [sym_numeric_character_reference] = ACTIONS(958), + [anon_sym_LT] = ACTIONS(961), + [anon_sym_GT] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(967), + [anon_sym_DQUOTE] = ACTIONS(964), + [anon_sym_POUND] = ACTIONS(964), + [anon_sym_DOLLAR] = ACTIONS(964), + [anon_sym_PERCENT] = ACTIONS(964), + [anon_sym_AMP] = ACTIONS(961), + [anon_sym_SQUOTE] = ACTIONS(964), + [anon_sym_STAR] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(964), + [anon_sym_COMMA] = ACTIONS(964), + [anon_sym_DASH] = ACTIONS(961), + [anon_sym_DOT] = ACTIONS(961), + [anon_sym_SLASH] = ACTIONS(964), + [anon_sym_COLON] = ACTIONS(964), + [anon_sym_SEMI] = ACTIONS(964), + [anon_sym_EQ] = ACTIONS(964), + [anon_sym_QMARK] = ACTIONS(964), + [anon_sym_LBRACK] = ACTIONS(970), + [anon_sym_BSLASH] = ACTIONS(973), + [anon_sym_CARET] = ACTIONS(961), + [anon_sym__] = ACTIONS(964), + [anon_sym_BQUOTE] = ACTIONS(964), + [anon_sym_LBRACE] = ACTIONS(976), + [anon_sym_PIPE] = ACTIONS(964), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_LPAREN] = ACTIONS(964), + [anon_sym_RPAREN] = ACTIONS(964), + [sym__newline_token] = ACTIONS(979), + [aux_sym_insert_token1] = ACTIONS(982), + [aux_sym_delete_token1] = ACTIONS(985), + [aux_sym_highlight_token1] = ACTIONS(988), + [aux_sym_edit_comment_token1] = ACTIONS(991), + [anon_sym_CARET_LBRACK] = ACTIONS(994), + [anon_sym_LBRACK_CARET] = ACTIONS(997), + [sym_uri_autolink] = ACTIONS(958), + [sym_email_autolink] = ACTIONS(958), + [sym__whitespace_ge_2] = ACTIONS(1000), + [aux_sym__whitespace_token1] = ACTIONS(1003), + [sym__word_no_digit] = ACTIONS(1006), + [sym__digits] = ACTIONS(1006), + [anon_sym_DASH_DASH] = ACTIONS(1009), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1006), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1006), + [sym__code_span_start] = ACTIONS(1012), + [sym__emphasis_open_star] = ACTIONS(1015), + [sym__emphasis_open_underscore] = ACTIONS(1018), + [sym__emphasis_close_star] = ACTIONS(1021), + [sym__strikeout_open] = ACTIONS(1023), + [sym__latex_span_start] = ACTIONS(1026), + [sym__single_quote_open] = ACTIONS(1029), + [sym__double_quote_open] = ACTIONS(1032), + [sym__superscript_open] = ACTIONS(1035), + [sym__subscript_open] = ACTIONS(1038), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1041), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1044), + [sym__cite_author_in_text] = ACTIONS(1047), + [sym__cite_suppress_author] = ACTIONS(1050), + [sym__shortcode_open_escaped] = ACTIONS(1053), + [sym__shortcode_open] = ACTIONS(1056), + [sym__unclosed_span] = ACTIONS(958), }, [STATE(37)] = { - [sym_backslash_escape] = STATE(265), - [sym_commonmark_attribute] = STATE(265), - [sym_code_span] = STATE(265), - [sym_latex_span] = STATE(265), - [sym_superscript] = STATE(265), - [sym_subscript] = STATE(265), - [sym_strikeout] = STATE(265), - [sym_quoted_span] = STATE(265), - [sym_inline_note] = STATE(265), - [sym_citation] = STATE(265), - [sym_shortcode_escaped] = STATE(265), - [sym_shortcode] = STATE(265), - [sym_note_reference] = STATE(265), - [sym__link_text] = STATE(310), - [sym__link_text_non_empty] = STATE(311), - [sym_inline_link] = STATE(885), - [sym_image] = STATE(265), - [sym__image_inline_link] = STATE(662), - [sym__image_description] = STATE(1978), - [sym__image_description_non_empty] = STATE(1978), - [sym_hard_line_break] = STATE(265), - [sym__whitespace] = STATE(579), - [sym__word] = STATE(579), - [sym__soft_line_break] = STATE(707), - [sym__inline_base] = STATE(885), - [sym__text_base] = STATE(265), - [sym__inline_element] = STATE(885), - [aux_sym__inline] = STATE(37), - [sym__emphasis_star] = STATE(1121), - [sym__strong_emphasis_star] = STATE(885), - [sym__emphasis_underscore] = STATE(1121), - [sym__strong_emphasis_underscore] = STATE(885), - [aux_sym__inline_base_repeat1] = STATE(265), - [ts_builtin_sym_end] = ACTIONS(877), - [sym__backslash_escape] = ACTIONS(879), - [sym_entity_reference] = ACTIONS(882), - [sym_numeric_character_reference] = ACTIONS(882), - [anon_sym_LT] = ACTIONS(885), - [anon_sym_GT] = ACTIONS(888), - [anon_sym_BANG] = ACTIONS(891), - [anon_sym_DQUOTE] = ACTIONS(888), - [anon_sym_POUND] = ACTIONS(888), - [anon_sym_DOLLAR] = ACTIONS(888), - [anon_sym_PERCENT] = ACTIONS(888), - [anon_sym_AMP] = ACTIONS(885), - [anon_sym_SQUOTE] = ACTIONS(888), - [anon_sym_STAR] = ACTIONS(888), - [anon_sym_PLUS] = ACTIONS(888), - [anon_sym_COMMA] = ACTIONS(888), - [anon_sym_DASH] = ACTIONS(885), - [anon_sym_DOT] = ACTIONS(885), - [anon_sym_SLASH] = ACTIONS(888), - [anon_sym_COLON] = ACTIONS(888), - [anon_sym_SEMI] = ACTIONS(888), - [anon_sym_EQ] = ACTIONS(888), - [anon_sym_QMARK] = ACTIONS(888), - [anon_sym_LBRACK] = ACTIONS(894), - [anon_sym_BSLASH] = ACTIONS(897), - [anon_sym_CARET] = ACTIONS(885), - [anon_sym__] = ACTIONS(888), - [anon_sym_BQUOTE] = ACTIONS(888), - [anon_sym_LBRACE] = ACTIONS(900), - [anon_sym_PIPE] = ACTIONS(888), - [anon_sym_TILDE] = ACTIONS(888), - [anon_sym_LPAREN] = ACTIONS(888), - [anon_sym_RPAREN] = ACTIONS(888), - [sym__newline_token] = ACTIONS(903), - [anon_sym_CARET_LBRACK] = ACTIONS(906), - [anon_sym_LBRACK_CARET] = ACTIONS(909), - [sym_uri_autolink] = ACTIONS(882), - [sym_email_autolink] = ACTIONS(882), - [sym__whitespace_ge_2] = ACTIONS(912), - [aux_sym__whitespace_token1] = ACTIONS(915), - [sym__word_no_digit] = ACTIONS(918), - [sym__digits] = ACTIONS(918), - [anon_sym_DASH_DASH] = ACTIONS(921), - [anon_sym_DASH_DASH_DASH] = ACTIONS(918), - [anon_sym_DOT_DOT_DOT] = ACTIONS(918), - [sym__code_span_start] = ACTIONS(924), - [sym__emphasis_open_star] = ACTIONS(927), - [sym__emphasis_open_underscore] = ACTIONS(930), - [sym__strikeout_open] = ACTIONS(933), - [sym__latex_span_start] = ACTIONS(936), - [sym__single_quote_open] = ACTIONS(939), - [sym__double_quote_open] = ACTIONS(942), - [sym__superscript_open] = ACTIONS(945), - [sym__subscript_open] = ACTIONS(948), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(951), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(954), - [sym__cite_author_in_text] = ACTIONS(957), - [sym__cite_suppress_author] = ACTIONS(960), - [sym__shortcode_open_escaped] = ACTIONS(963), - [sym__shortcode_open] = ACTIONS(966), - [sym__unclosed_span] = ACTIONS(882), + [sym_backslash_escape] = STATE(379), + [sym_commonmark_attribute] = STATE(379), + [sym_code_span] = STATE(379), + [sym_latex_span] = STATE(379), + [sym_insert] = STATE(379), + [sym_delete] = STATE(379), + [sym_highlight] = STATE(379), + [sym_edit_comment] = STATE(379), + [sym_superscript] = STATE(379), + [sym_subscript] = STATE(379), + [sym_strikeout] = STATE(379), + [sym_quoted_span] = STATE(379), + [sym_inline_note] = STATE(379), + [sym_citation] = STATE(379), + [sym_shortcode_escaped] = STATE(379), + [sym_shortcode] = STATE(379), + [sym_note_reference] = STATE(379), + [sym__link_text] = STATE(545), + [sym__link_text_non_empty] = STATE(546), + [sym_inline_link] = STATE(38), + [sym_image] = STATE(379), + [sym__image_inline_link] = STATE(1390), + [sym__image_description] = STATE(2363), + [sym__image_description_non_empty] = STATE(2363), + [sym_hard_line_break] = STATE(379), + [sym__whitespace] = STATE(1385), + [sym__word] = STATE(1385), + [sym__soft_line_break] = STATE(1391), + [sym__inline_base] = STATE(38), + [sym__text_base] = STATE(379), + [sym__inline_element_no_underscore] = STATE(38), + [aux_sym__inline_no_underscore] = STATE(38), + [sym__emphasis_star] = STATE(1168), + [sym__strong_emphasis_star] = STATE(38), + [sym__emphasis_underscore] = STATE(1168), + [sym__strong_emphasis_underscore] = STATE(38), + [aux_sym__inline_base_repeat1] = STATE(379), + [sym__backslash_escape] = ACTIONS(1059), + [sym_entity_reference] = ACTIONS(1061), + [sym_numeric_character_reference] = ACTIONS(1061), + [anon_sym_LT] = ACTIONS(1063), + [anon_sym_GT] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1067), + [anon_sym_DQUOTE] = ACTIONS(1065), + [anon_sym_POUND] = ACTIONS(1065), + [anon_sym_DOLLAR] = ACTIONS(1065), + [anon_sym_PERCENT] = ACTIONS(1065), + [anon_sym_AMP] = ACTIONS(1063), + [anon_sym_SQUOTE] = ACTIONS(1065), + [anon_sym_STAR] = ACTIONS(1065), + [anon_sym_PLUS] = ACTIONS(1065), + [anon_sym_COMMA] = ACTIONS(1065), + [anon_sym_DASH] = ACTIONS(1063), + [anon_sym_DOT] = ACTIONS(1063), + [anon_sym_SLASH] = ACTIONS(1065), + [anon_sym_COLON] = ACTIONS(1065), + [anon_sym_SEMI] = ACTIONS(1065), + [anon_sym_EQ] = ACTIONS(1065), + [anon_sym_QMARK] = ACTIONS(1065), + [anon_sym_LBRACK] = ACTIONS(1069), + [anon_sym_BSLASH] = ACTIONS(1071), + [anon_sym_CARET] = ACTIONS(1063), + [anon_sym__] = ACTIONS(1065), + [anon_sym_BQUOTE] = ACTIONS(1065), + [anon_sym_LBRACE] = ACTIONS(1073), + [anon_sym_PIPE] = ACTIONS(1065), + [anon_sym_TILDE] = ACTIONS(1065), + [anon_sym_LPAREN] = ACTIONS(1065), + [anon_sym_RPAREN] = ACTIONS(1065), + [sym__newline_token] = ACTIONS(1075), + [aux_sym_insert_token1] = ACTIONS(1077), + [aux_sym_delete_token1] = ACTIONS(1079), + [aux_sym_highlight_token1] = ACTIONS(1081), + [aux_sym_edit_comment_token1] = ACTIONS(1083), + [anon_sym_CARET_LBRACK] = ACTIONS(1085), + [anon_sym_LBRACK_CARET] = ACTIONS(1087), + [sym_uri_autolink] = ACTIONS(1061), + [sym_email_autolink] = ACTIONS(1061), + [sym__whitespace_ge_2] = ACTIONS(1089), + [aux_sym__whitespace_token1] = ACTIONS(1091), + [sym__word_no_digit] = ACTIONS(1093), + [sym__digits] = ACTIONS(1093), + [anon_sym_DASH_DASH] = ACTIONS(1095), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1093), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1093), + [sym__code_span_start] = ACTIONS(1097), + [sym__emphasis_open_star] = ACTIONS(1099), + [sym__emphasis_open_underscore] = ACTIONS(1101), + [sym__emphasis_close_underscore] = ACTIONS(1103), + [sym__strikeout_open] = ACTIONS(1105), + [sym__latex_span_start] = ACTIONS(1107), + [sym__single_quote_open] = ACTIONS(1109), + [sym__double_quote_open] = ACTIONS(1111), + [sym__superscript_open] = ACTIONS(1113), + [sym__subscript_open] = ACTIONS(1115), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1117), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1119), + [sym__cite_author_in_text] = ACTIONS(1121), + [sym__cite_suppress_author] = ACTIONS(1123), + [sym__shortcode_open_escaped] = ACTIONS(1125), + [sym__shortcode_open] = ACTIONS(1127), + [sym__unclosed_span] = ACTIONS(1061), }, [STATE(38)] = { - [sym_backslash_escape] = STATE(261), - [sym_commonmark_attribute] = STATE(261), - [sym_code_span] = STATE(261), - [sym_latex_span] = STATE(261), - [sym_superscript] = STATE(261), - [sym_subscript] = STATE(261), - [sym_strikeout] = STATE(261), - [sym_quoted_span] = STATE(261), - [sym_inline_note] = STATE(261), - [sym_citation] = STATE(261), - [sym_shortcode_escaped] = STATE(261), - [sym_shortcode] = STATE(261), - [sym_note_reference] = STATE(261), - [sym__link_text] = STATE(322), - [sym__link_text_non_empty] = STATE(323), - [sym_inline_link] = STATE(39), - [sym_image] = STATE(261), - [sym__image_inline_link] = STATE(595), - [sym__image_description] = STATE(1972), - [sym__image_description_non_empty] = STATE(1972), - [sym_hard_line_break] = STATE(261), - [sym__whitespace] = STATE(587), - [sym__word] = STATE(587), - [sym__soft_line_break] = STATE(597), - [sym__inline_base] = STATE(39), - [sym__text_base] = STATE(261), - [sym__inline_element_no_star] = STATE(39), - [aux_sym__inline_no_star] = STATE(39), - [sym__emphasis_star] = STATE(544), - [sym__strong_emphasis_star] = STATE(39), - [sym__emphasis_underscore] = STATE(544), - [sym__strong_emphasis_underscore] = STATE(39), - [aux_sym__inline_base_repeat1] = STATE(261), - [sym__backslash_escape] = ACTIONS(969), - [sym_entity_reference] = ACTIONS(971), - [sym_numeric_character_reference] = ACTIONS(971), - [anon_sym_LT] = ACTIONS(973), - [anon_sym_GT] = ACTIONS(975), - [anon_sym_BANG] = ACTIONS(977), - [anon_sym_DQUOTE] = ACTIONS(975), - [anon_sym_POUND] = ACTIONS(975), - [anon_sym_DOLLAR] = ACTIONS(975), - [anon_sym_PERCENT] = ACTIONS(975), - [anon_sym_AMP] = ACTIONS(973), - [anon_sym_SQUOTE] = ACTIONS(975), - [anon_sym_STAR] = ACTIONS(975), - [anon_sym_PLUS] = ACTIONS(975), - [anon_sym_COMMA] = ACTIONS(975), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_DOT] = ACTIONS(973), - [anon_sym_SLASH] = ACTIONS(975), - [anon_sym_COLON] = ACTIONS(975), - [anon_sym_SEMI] = ACTIONS(975), - [anon_sym_EQ] = ACTIONS(975), - [anon_sym_QMARK] = ACTIONS(975), - [anon_sym_LBRACK] = ACTIONS(979), - [anon_sym_BSLASH] = ACTIONS(981), - [anon_sym_CARET] = ACTIONS(973), - [anon_sym__] = ACTIONS(975), - [anon_sym_BQUOTE] = ACTIONS(975), - [anon_sym_LBRACE] = ACTIONS(983), - [anon_sym_PIPE] = ACTIONS(975), - [anon_sym_TILDE] = ACTIONS(975), - [anon_sym_LPAREN] = ACTIONS(975), - [anon_sym_RPAREN] = ACTIONS(975), - [sym__newline_token] = ACTIONS(985), - [anon_sym_CARET_LBRACK] = ACTIONS(987), - [anon_sym_LBRACK_CARET] = ACTIONS(989), - [sym_uri_autolink] = ACTIONS(971), - [sym_email_autolink] = ACTIONS(971), - [sym__whitespace_ge_2] = ACTIONS(991), - [aux_sym__whitespace_token1] = ACTIONS(993), - [sym__word_no_digit] = ACTIONS(995), - [sym__digits] = ACTIONS(995), - [anon_sym_DASH_DASH] = ACTIONS(997), - [anon_sym_DASH_DASH_DASH] = ACTIONS(995), - [anon_sym_DOT_DOT_DOT] = ACTIONS(995), - [sym__code_span_start] = ACTIONS(999), - [sym__emphasis_open_star] = ACTIONS(1001), - [sym__emphasis_open_underscore] = ACTIONS(1003), - [sym__emphasis_close_star] = ACTIONS(1005), - [sym__strikeout_open] = ACTIONS(1007), - [sym__latex_span_start] = ACTIONS(1009), - [sym__single_quote_open] = ACTIONS(1011), - [sym__double_quote_open] = ACTIONS(1013), - [sym__superscript_open] = ACTIONS(1015), - [sym__subscript_open] = ACTIONS(1017), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1019), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1021), - [sym__cite_author_in_text] = ACTIONS(1023), - [sym__cite_suppress_author] = ACTIONS(1025), - [sym__shortcode_open_escaped] = ACTIONS(1027), - [sym__shortcode_open] = ACTIONS(1029), - [sym__unclosed_span] = ACTIONS(971), + [sym_backslash_escape] = STATE(379), + [sym_commonmark_attribute] = STATE(379), + [sym_code_span] = STATE(379), + [sym_latex_span] = STATE(379), + [sym_insert] = STATE(379), + [sym_delete] = STATE(379), + [sym_highlight] = STATE(379), + [sym_edit_comment] = STATE(379), + [sym_superscript] = STATE(379), + [sym_subscript] = STATE(379), + [sym_strikeout] = STATE(379), + [sym_quoted_span] = STATE(379), + [sym_inline_note] = STATE(379), + [sym_citation] = STATE(379), + [sym_shortcode_escaped] = STATE(379), + [sym_shortcode] = STATE(379), + [sym_note_reference] = STATE(379), + [sym__link_text] = STATE(545), + [sym__link_text_non_empty] = STATE(546), + [sym_inline_link] = STATE(38), + [sym_image] = STATE(379), + [sym__image_inline_link] = STATE(1390), + [sym__image_description] = STATE(2363), + [sym__image_description_non_empty] = STATE(2363), + [sym_hard_line_break] = STATE(379), + [sym__whitespace] = STATE(1385), + [sym__word] = STATE(1385), + [sym__soft_line_break] = STATE(1391), + [sym__inline_base] = STATE(38), + [sym__text_base] = STATE(379), + [sym__inline_element_no_underscore] = STATE(38), + [aux_sym__inline_no_underscore] = STATE(38), + [sym__emphasis_star] = STATE(1168), + [sym__strong_emphasis_star] = STATE(38), + [sym__emphasis_underscore] = STATE(1168), + [sym__strong_emphasis_underscore] = STATE(38), + [aux_sym__inline_base_repeat1] = STATE(379), + [sym__backslash_escape] = ACTIONS(1129), + [sym_entity_reference] = ACTIONS(1132), + [sym_numeric_character_reference] = ACTIONS(1132), + [anon_sym_LT] = ACTIONS(1135), + [anon_sym_GT] = ACTIONS(1138), + [anon_sym_BANG] = ACTIONS(1141), + [anon_sym_DQUOTE] = ACTIONS(1138), + [anon_sym_POUND] = ACTIONS(1138), + [anon_sym_DOLLAR] = ACTIONS(1138), + [anon_sym_PERCENT] = ACTIONS(1138), + [anon_sym_AMP] = ACTIONS(1135), + [anon_sym_SQUOTE] = ACTIONS(1138), + [anon_sym_STAR] = ACTIONS(1138), + [anon_sym_PLUS] = ACTIONS(1138), + [anon_sym_COMMA] = ACTIONS(1138), + [anon_sym_DASH] = ACTIONS(1135), + [anon_sym_DOT] = ACTIONS(1135), + [anon_sym_SLASH] = ACTIONS(1138), + [anon_sym_COLON] = ACTIONS(1138), + [anon_sym_SEMI] = ACTIONS(1138), + [anon_sym_EQ] = ACTIONS(1138), + [anon_sym_QMARK] = ACTIONS(1138), + [anon_sym_LBRACK] = ACTIONS(1144), + [anon_sym_BSLASH] = ACTIONS(1147), + [anon_sym_CARET] = ACTIONS(1135), + [anon_sym__] = ACTIONS(1138), + [anon_sym_BQUOTE] = ACTIONS(1138), + [anon_sym_LBRACE] = ACTIONS(1150), + [anon_sym_PIPE] = ACTIONS(1138), + [anon_sym_TILDE] = ACTIONS(1138), + [anon_sym_LPAREN] = ACTIONS(1138), + [anon_sym_RPAREN] = ACTIONS(1138), + [sym__newline_token] = ACTIONS(1153), + [aux_sym_insert_token1] = ACTIONS(1156), + [aux_sym_delete_token1] = ACTIONS(1159), + [aux_sym_highlight_token1] = ACTIONS(1162), + [aux_sym_edit_comment_token1] = ACTIONS(1165), + [anon_sym_CARET_LBRACK] = ACTIONS(1168), + [anon_sym_LBRACK_CARET] = ACTIONS(1171), + [sym_uri_autolink] = ACTIONS(1132), + [sym_email_autolink] = ACTIONS(1132), + [sym__whitespace_ge_2] = ACTIONS(1174), + [aux_sym__whitespace_token1] = ACTIONS(1177), + [sym__word_no_digit] = ACTIONS(1180), + [sym__digits] = ACTIONS(1180), + [anon_sym_DASH_DASH] = ACTIONS(1183), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1180), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1180), + [sym__code_span_start] = ACTIONS(1186), + [sym__emphasis_open_star] = ACTIONS(1189), + [sym__emphasis_open_underscore] = ACTIONS(1192), + [sym__emphasis_close_underscore] = ACTIONS(1195), + [sym__strikeout_open] = ACTIONS(1197), + [sym__latex_span_start] = ACTIONS(1200), + [sym__single_quote_open] = ACTIONS(1203), + [sym__double_quote_open] = ACTIONS(1206), + [sym__superscript_open] = ACTIONS(1209), + [sym__subscript_open] = ACTIONS(1212), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1215), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1218), + [sym__cite_author_in_text] = ACTIONS(1221), + [sym__cite_suppress_author] = ACTIONS(1224), + [sym__shortcode_open_escaped] = ACTIONS(1227), + [sym__shortcode_open] = ACTIONS(1230), + [sym__unclosed_span] = ACTIONS(1132), }, [STATE(39)] = { - [sym_backslash_escape] = STATE(261), - [sym_commonmark_attribute] = STATE(261), - [sym_code_span] = STATE(261), - [sym_latex_span] = STATE(261), - [sym_superscript] = STATE(261), - [sym_subscript] = STATE(261), - [sym_strikeout] = STATE(261), - [sym_quoted_span] = STATE(261), - [sym_inline_note] = STATE(261), - [sym_citation] = STATE(261), - [sym_shortcode_escaped] = STATE(261), - [sym_shortcode] = STATE(261), - [sym_note_reference] = STATE(261), - [sym__link_text] = STATE(322), - [sym__link_text_non_empty] = STATE(323), + [sym_backslash_escape] = STATE(366), + [sym_commonmark_attribute] = STATE(366), + [sym_code_span] = STATE(366), + [sym_latex_span] = STATE(366), + [sym_insert] = STATE(366), + [sym_delete] = STATE(366), + [sym_highlight] = STATE(366), + [sym_edit_comment] = STATE(366), + [sym_superscript] = STATE(366), + [sym_subscript] = STATE(366), + [sym_strikeout] = STATE(366), + [sym_quoted_span] = STATE(366), + [sym_inline_note] = STATE(366), + [sym_citation] = STATE(366), + [sym_shortcode_escaped] = STATE(366), + [sym_shortcode] = STATE(366), + [sym_note_reference] = STATE(366), + [sym__link_text] = STATE(490), + [sym__link_text_non_empty] = STATE(491), [sym_inline_link] = STATE(39), - [sym_image] = STATE(261), - [sym__image_inline_link] = STATE(595), - [sym__image_description] = STATE(1972), - [sym__image_description_non_empty] = STATE(1972), - [sym_hard_line_break] = STATE(261), - [sym__whitespace] = STATE(587), - [sym__word] = STATE(587), - [sym__soft_line_break] = STATE(597), + [sym_image] = STATE(366), + [sym__image_inline_link] = STATE(1244), + [sym__image_description] = STATE(2280), + [sym__image_description_non_empty] = STATE(2280), + [sym_hard_line_break] = STATE(366), + [sym__whitespace] = STATE(1218), + [sym__word] = STATE(1218), + [sym__soft_line_break] = STATE(1245), [sym__inline_base] = STATE(39), - [sym__text_base] = STATE(261), - [sym__inline_element_no_star] = STATE(39), - [aux_sym__inline_no_star] = STATE(39), - [sym__emphasis_star] = STATE(544), + [sym__text_base] = STATE(366), + [sym__inline_element] = STATE(39), + [sym__emphasis_star] = STATE(1270), [sym__strong_emphasis_star] = STATE(39), - [sym__emphasis_underscore] = STATE(544), + [sym__emphasis_underscore] = STATE(1270), [sym__strong_emphasis_underscore] = STATE(39), - [aux_sym__inline_base_repeat1] = STATE(261), - [sym__backslash_escape] = ACTIONS(1031), - [sym_entity_reference] = ACTIONS(1034), - [sym_numeric_character_reference] = ACTIONS(1034), - [anon_sym_LT] = ACTIONS(1037), - [anon_sym_GT] = ACTIONS(1040), - [anon_sym_BANG] = ACTIONS(1043), - [anon_sym_DQUOTE] = ACTIONS(1040), - [anon_sym_POUND] = ACTIONS(1040), - [anon_sym_DOLLAR] = ACTIONS(1040), - [anon_sym_PERCENT] = ACTIONS(1040), - [anon_sym_AMP] = ACTIONS(1037), - [anon_sym_SQUOTE] = ACTIONS(1040), - [anon_sym_STAR] = ACTIONS(1040), - [anon_sym_PLUS] = ACTIONS(1040), - [anon_sym_COMMA] = ACTIONS(1040), - [anon_sym_DASH] = ACTIONS(1037), - [anon_sym_DOT] = ACTIONS(1037), - [anon_sym_SLASH] = ACTIONS(1040), - [anon_sym_COLON] = ACTIONS(1040), - [anon_sym_SEMI] = ACTIONS(1040), - [anon_sym_EQ] = ACTIONS(1040), - [anon_sym_QMARK] = ACTIONS(1040), - [anon_sym_LBRACK] = ACTIONS(1046), - [anon_sym_BSLASH] = ACTIONS(1049), - [anon_sym_CARET] = ACTIONS(1037), - [anon_sym__] = ACTIONS(1040), - [anon_sym_BQUOTE] = ACTIONS(1040), - [anon_sym_LBRACE] = ACTIONS(1052), - [anon_sym_PIPE] = ACTIONS(1040), - [anon_sym_TILDE] = ACTIONS(1040), - [anon_sym_LPAREN] = ACTIONS(1040), - [anon_sym_RPAREN] = ACTIONS(1040), - [sym__newline_token] = ACTIONS(1055), - [anon_sym_CARET_LBRACK] = ACTIONS(1058), - [anon_sym_LBRACK_CARET] = ACTIONS(1061), - [sym_uri_autolink] = ACTIONS(1034), - [sym_email_autolink] = ACTIONS(1034), - [sym__whitespace_ge_2] = ACTIONS(1064), - [aux_sym__whitespace_token1] = ACTIONS(1067), - [sym__word_no_digit] = ACTIONS(1070), - [sym__digits] = ACTIONS(1070), - [anon_sym_DASH_DASH] = ACTIONS(1073), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1070), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1070), - [sym__code_span_start] = ACTIONS(1076), - [sym__emphasis_open_star] = ACTIONS(1079), - [sym__emphasis_open_underscore] = ACTIONS(1082), - [sym__emphasis_close_star] = ACTIONS(1085), - [sym__strikeout_open] = ACTIONS(1087), - [sym__latex_span_start] = ACTIONS(1090), - [sym__single_quote_open] = ACTIONS(1093), - [sym__double_quote_open] = ACTIONS(1096), - [sym__superscript_open] = ACTIONS(1099), - [sym__subscript_open] = ACTIONS(1102), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1105), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1108), - [sym__cite_author_in_text] = ACTIONS(1111), - [sym__cite_suppress_author] = ACTIONS(1114), - [sym__shortcode_open_escaped] = ACTIONS(1117), - [sym__shortcode_open] = ACTIONS(1120), - [sym__unclosed_span] = ACTIONS(1034), + [aux_sym_insert_repeat1] = STATE(39), + [aux_sym__inline_base_repeat1] = STATE(366), + [sym__backslash_escape] = ACTIONS(1233), + [sym_entity_reference] = ACTIONS(1236), + [sym_numeric_character_reference] = ACTIONS(1236), + [anon_sym_LT] = ACTIONS(1239), + [anon_sym_GT] = ACTIONS(1242), + [anon_sym_BANG] = ACTIONS(1245), + [anon_sym_DQUOTE] = ACTIONS(1242), + [anon_sym_POUND] = ACTIONS(1242), + [anon_sym_DOLLAR] = ACTIONS(1242), + [anon_sym_PERCENT] = ACTIONS(1242), + [anon_sym_AMP] = ACTIONS(1239), + [anon_sym_SQUOTE] = ACTIONS(1242), + [anon_sym_STAR] = ACTIONS(1242), + [anon_sym_PLUS] = ACTIONS(1242), + [anon_sym_COMMA] = ACTIONS(1242), + [anon_sym_DASH] = ACTIONS(1239), + [anon_sym_DOT] = ACTIONS(1239), + [anon_sym_SLASH] = ACTIONS(1242), + [anon_sym_COLON] = ACTIONS(1242), + [anon_sym_SEMI] = ACTIONS(1242), + [anon_sym_EQ] = ACTIONS(1242), + [anon_sym_QMARK] = ACTIONS(1242), + [anon_sym_LBRACK] = ACTIONS(1248), + [anon_sym_BSLASH] = ACTIONS(1251), + [anon_sym_CARET] = ACTIONS(1239), + [anon_sym__] = ACTIONS(1242), + [anon_sym_BQUOTE] = ACTIONS(1242), + [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_PIPE] = ACTIONS(1242), + [anon_sym_TILDE] = ACTIONS(1242), + [anon_sym_LPAREN] = ACTIONS(1242), + [anon_sym_RPAREN] = ACTIONS(1242), + [sym__newline_token] = ACTIONS(1257), + [aux_sym_insert_token1] = ACTIONS(1260), + [aux_sym_delete_token1] = ACTIONS(1263), + [aux_sym_highlight_token1] = ACTIONS(1266), + [aux_sym_edit_comment_token1] = ACTIONS(1269), + [anon_sym_CARET_LBRACK] = ACTIONS(1272), + [anon_sym_LBRACK_CARET] = ACTIONS(1275), + [sym_uri_autolink] = ACTIONS(1236), + [sym_email_autolink] = ACTIONS(1236), + [sym__whitespace_ge_2] = ACTIONS(1278), + [aux_sym__whitespace_token1] = ACTIONS(1281), + [sym__word_no_digit] = ACTIONS(1284), + [sym__digits] = ACTIONS(1284), + [anon_sym_DASH_DASH] = ACTIONS(1287), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1284), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1284), + [sym__code_span_start] = ACTIONS(1290), + [sym__emphasis_open_star] = ACTIONS(1293), + [sym__emphasis_open_underscore] = ACTIONS(1296), + [sym__strikeout_open] = ACTIONS(1299), + [sym__strikeout_close] = ACTIONS(1302), + [sym__latex_span_start] = ACTIONS(1304), + [sym__single_quote_open] = ACTIONS(1307), + [sym__double_quote_open] = ACTIONS(1310), + [sym__superscript_open] = ACTIONS(1313), + [sym__subscript_open] = ACTIONS(1316), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1319), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1322), + [sym__cite_author_in_text] = ACTIONS(1325), + [sym__cite_suppress_author] = ACTIONS(1328), + [sym__shortcode_open_escaped] = ACTIONS(1331), + [sym__shortcode_open] = ACTIONS(1334), + [sym__unclosed_span] = ACTIONS(1236), }, [STATE(40)] = { - [sym_backslash_escape] = STATE(274), - [sym_commonmark_attribute] = STATE(274), - [sym_code_span] = STATE(274), - [sym_latex_span] = STATE(274), - [sym_superscript] = STATE(274), - [sym_subscript] = STATE(274), - [sym_strikeout] = STATE(274), - [sym_quoted_span] = STATE(274), - [sym_inline_note] = STATE(274), - [sym_citation] = STATE(274), - [sym_shortcode_escaped] = STATE(274), - [sym_shortcode] = STATE(274), - [sym_note_reference] = STATE(274), - [sym__link_text] = STATE(351), - [sym__link_text_non_empty] = STATE(352), - [sym_inline_link] = STATE(41), - [sym_image] = STATE(274), - [sym__image_inline_link] = STATE(894), - [sym__image_description] = STATE(2008), - [sym__image_description_non_empty] = STATE(2008), - [sym_hard_line_break] = STATE(274), - [sym__whitespace] = STATE(882), - [sym__word] = STATE(882), - [sym__soft_line_break] = STATE(898), - [sym__inline_base] = STATE(41), - [sym__text_base] = STATE(274), - [sym__inline_element_no_underscore] = STATE(41), - [aux_sym__inline_no_underscore] = STATE(41), - [sym__emphasis_star] = STATE(711), - [sym__strong_emphasis_star] = STATE(41), - [sym__emphasis_underscore] = STATE(711), - [sym__strong_emphasis_underscore] = STATE(41), - [aux_sym__inline_base_repeat1] = STATE(274), - [sym__backslash_escape] = ACTIONS(1123), - [sym_entity_reference] = ACTIONS(1125), - [sym_numeric_character_reference] = ACTIONS(1125), - [anon_sym_LT] = ACTIONS(1127), - [anon_sym_GT] = ACTIONS(1129), - [anon_sym_BANG] = ACTIONS(1131), - [anon_sym_DQUOTE] = ACTIONS(1129), - [anon_sym_POUND] = ACTIONS(1129), - [anon_sym_DOLLAR] = ACTIONS(1129), - [anon_sym_PERCENT] = ACTIONS(1129), - [anon_sym_AMP] = ACTIONS(1127), - [anon_sym_SQUOTE] = ACTIONS(1129), - [anon_sym_STAR] = ACTIONS(1129), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_COMMA] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1127), - [anon_sym_DOT] = ACTIONS(1127), - [anon_sym_SLASH] = ACTIONS(1129), - [anon_sym_COLON] = ACTIONS(1129), - [anon_sym_SEMI] = ACTIONS(1129), - [anon_sym_EQ] = ACTIONS(1129), - [anon_sym_QMARK] = ACTIONS(1129), - [anon_sym_LBRACK] = ACTIONS(1133), - [anon_sym_BSLASH] = ACTIONS(1135), - [anon_sym_CARET] = ACTIONS(1127), - [anon_sym__] = ACTIONS(1129), - [anon_sym_BQUOTE] = ACTIONS(1129), - [anon_sym_LBRACE] = ACTIONS(1137), - [anon_sym_PIPE] = ACTIONS(1129), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1129), - [anon_sym_RPAREN] = ACTIONS(1129), - [sym__newline_token] = ACTIONS(1139), - [anon_sym_CARET_LBRACK] = ACTIONS(1141), - [anon_sym_LBRACK_CARET] = ACTIONS(1143), - [sym_uri_autolink] = ACTIONS(1125), - [sym_email_autolink] = ACTIONS(1125), - [sym__whitespace_ge_2] = ACTIONS(1145), - [aux_sym__whitespace_token1] = ACTIONS(1147), - [sym__word_no_digit] = ACTIONS(1149), - [sym__digits] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1151), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1149), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1149), - [sym__code_span_start] = ACTIONS(1153), - [sym__emphasis_open_star] = ACTIONS(1155), - [sym__emphasis_open_underscore] = ACTIONS(1157), - [sym__emphasis_close_underscore] = ACTIONS(1159), - [sym__strikeout_open] = ACTIONS(1161), - [sym__latex_span_start] = ACTIONS(1163), - [sym__single_quote_open] = ACTIONS(1165), - [sym__double_quote_open] = ACTIONS(1167), - [sym__superscript_open] = ACTIONS(1169), - [sym__subscript_open] = ACTIONS(1171), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1173), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1175), - [sym__cite_author_in_text] = ACTIONS(1177), - [sym__cite_suppress_author] = ACTIONS(1179), - [sym__shortcode_open_escaped] = ACTIONS(1181), - [sym__shortcode_open] = ACTIONS(1183), - [sym__unclosed_span] = ACTIONS(1125), + [sym_backslash_escape] = STATE(370), + [sym_commonmark_attribute] = STATE(370), + [sym_code_span] = STATE(370), + [sym_latex_span] = STATE(370), + [sym_insert] = STATE(370), + [sym_delete] = STATE(370), + [sym_highlight] = STATE(370), + [sym_edit_comment] = STATE(370), + [sym_superscript] = STATE(370), + [sym_subscript] = STATE(370), + [sym_strikeout] = STATE(370), + [sym_quoted_span] = STATE(370), + [sym_inline_note] = STATE(370), + [sym_citation] = STATE(370), + [sym_shortcode_escaped] = STATE(370), + [sym_shortcode] = STATE(370), + [sym_note_reference] = STATE(370), + [sym__link_text] = STATE(472), + [sym__link_text_non_empty] = STATE(473), + [sym_inline_link] = STATE(1269), + [sym_image] = STATE(370), + [sym__image_inline_link] = STATE(923), + [sym__image_description] = STATE(2342), + [sym__image_description_non_empty] = STATE(2342), + [sym_hard_line_break] = STATE(370), + [sym__whitespace] = STATE(920), + [sym__word] = STATE(920), + [sym__soft_line_break] = STATE(924), + [sym__inline_base] = STATE(1269), + [sym__text_base] = STATE(370), + [sym__inline_element] = STATE(1269), + [aux_sym__inline] = STATE(46), + [sym__emphasis_star] = STATE(821), + [sym__strong_emphasis_star] = STATE(1269), + [sym__emphasis_underscore] = STATE(821), + [sym__strong_emphasis_underscore] = STATE(1269), + [aux_sym__inline_base_repeat1] = STATE(370), + [sym__backslash_escape] = ACTIONS(73), + [sym_entity_reference] = ACTIONS(75), + [sym_numeric_character_reference] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_BANG] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_POUND] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(79), + [anon_sym_PERCENT] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_STAR] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_COMMA] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_DOT] = ACTIONS(77), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_COLON] = ACTIONS(79), + [anon_sym_SEMI] = ACTIONS(79), + [anon_sym_EQ] = ACTIONS(79), + [anon_sym_QMARK] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(83), + [anon_sym_BSLASH] = ACTIONS(85), + [anon_sym_RBRACK] = ACTIONS(1337), + [anon_sym_CARET] = ACTIONS(77), + [anon_sym__] = ACTIONS(79), + [anon_sym_BQUOTE] = ACTIONS(79), + [anon_sym_LBRACE] = ACTIONS(89), + [anon_sym_PIPE] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(79), + [anon_sym_RPAREN] = ACTIONS(79), + [sym__newline_token] = ACTIONS(91), + [aux_sym_insert_token1] = ACTIONS(93), + [aux_sym_delete_token1] = ACTIONS(95), + [aux_sym_highlight_token1] = ACTIONS(97), + [aux_sym_edit_comment_token1] = ACTIONS(99), + [anon_sym_CARET_LBRACK] = ACTIONS(101), + [anon_sym_LBRACK_CARET] = ACTIONS(103), + [sym_uri_autolink] = ACTIONS(75), + [sym_email_autolink] = ACTIONS(75), + [sym__whitespace_ge_2] = ACTIONS(105), + [aux_sym__whitespace_token1] = ACTIONS(107), + [sym__word_no_digit] = ACTIONS(109), + [sym__digits] = ACTIONS(109), + [anon_sym_DASH_DASH] = ACTIONS(111), + [anon_sym_DASH_DASH_DASH] = ACTIONS(109), + [anon_sym_DOT_DOT_DOT] = ACTIONS(109), + [sym__code_span_start] = ACTIONS(113), + [sym__emphasis_open_star] = ACTIONS(115), + [sym__emphasis_open_underscore] = ACTIONS(117), + [sym__strikeout_open] = ACTIONS(121), + [sym__latex_span_start] = ACTIONS(123), + [sym__single_quote_open] = ACTIONS(125), + [sym__double_quote_open] = ACTIONS(127), + [sym__superscript_open] = ACTIONS(129), + [sym__subscript_open] = ACTIONS(131), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(133), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(135), + [sym__cite_author_in_text] = ACTIONS(137), + [sym__cite_suppress_author] = ACTIONS(139), + [sym__shortcode_open_escaped] = ACTIONS(141), + [sym__shortcode_open] = ACTIONS(143), + [sym__unclosed_span] = ACTIONS(75), }, [STATE(41)] = { - [sym_backslash_escape] = STATE(274), - [sym_commonmark_attribute] = STATE(274), - [sym_code_span] = STATE(274), - [sym_latex_span] = STATE(274), - [sym_superscript] = STATE(274), - [sym_subscript] = STATE(274), - [sym_strikeout] = STATE(274), - [sym_quoted_span] = STATE(274), - [sym_inline_note] = STATE(274), - [sym_citation] = STATE(274), - [sym_shortcode_escaped] = STATE(274), - [sym_shortcode] = STATE(274), - [sym_note_reference] = STATE(274), - [sym__link_text] = STATE(351), - [sym__link_text_non_empty] = STATE(352), - [sym_inline_link] = STATE(41), - [sym_image] = STATE(274), - [sym__image_inline_link] = STATE(894), - [sym__image_description] = STATE(2008), - [sym__image_description_non_empty] = STATE(2008), - [sym_hard_line_break] = STATE(274), - [sym__whitespace] = STATE(882), - [sym__word] = STATE(882), - [sym__soft_line_break] = STATE(898), - [sym__inline_base] = STATE(41), - [sym__text_base] = STATE(274), - [sym__inline_element_no_underscore] = STATE(41), - [aux_sym__inline_no_underscore] = STATE(41), - [sym__emphasis_star] = STATE(711), - [sym__strong_emphasis_star] = STATE(41), - [sym__emphasis_underscore] = STATE(711), - [sym__strong_emphasis_underscore] = STATE(41), - [aux_sym__inline_base_repeat1] = STATE(274), - [sym__backslash_escape] = ACTIONS(1185), - [sym_entity_reference] = ACTIONS(1188), - [sym_numeric_character_reference] = ACTIONS(1188), - [anon_sym_LT] = ACTIONS(1191), - [anon_sym_GT] = ACTIONS(1194), - [anon_sym_BANG] = ACTIONS(1197), - [anon_sym_DQUOTE] = ACTIONS(1194), - [anon_sym_POUND] = ACTIONS(1194), - [anon_sym_DOLLAR] = ACTIONS(1194), - [anon_sym_PERCENT] = ACTIONS(1194), - [anon_sym_AMP] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1194), - [anon_sym_STAR] = ACTIONS(1194), - [anon_sym_PLUS] = ACTIONS(1194), - [anon_sym_COMMA] = ACTIONS(1194), - [anon_sym_DASH] = ACTIONS(1191), - [anon_sym_DOT] = ACTIONS(1191), - [anon_sym_SLASH] = ACTIONS(1194), - [anon_sym_COLON] = ACTIONS(1194), - [anon_sym_SEMI] = ACTIONS(1194), - [anon_sym_EQ] = ACTIONS(1194), - [anon_sym_QMARK] = ACTIONS(1194), - [anon_sym_LBRACK] = ACTIONS(1200), - [anon_sym_BSLASH] = ACTIONS(1203), - [anon_sym_CARET] = ACTIONS(1191), - [anon_sym__] = ACTIONS(1194), - [anon_sym_BQUOTE] = ACTIONS(1194), - [anon_sym_LBRACE] = ACTIONS(1206), - [anon_sym_PIPE] = ACTIONS(1194), - [anon_sym_TILDE] = ACTIONS(1194), - [anon_sym_LPAREN] = ACTIONS(1194), - [anon_sym_RPAREN] = ACTIONS(1194), - [sym__newline_token] = ACTIONS(1209), - [anon_sym_CARET_LBRACK] = ACTIONS(1212), - [anon_sym_LBRACK_CARET] = ACTIONS(1215), - [sym_uri_autolink] = ACTIONS(1188), - [sym_email_autolink] = ACTIONS(1188), - [sym__whitespace_ge_2] = ACTIONS(1218), - [aux_sym__whitespace_token1] = ACTIONS(1221), - [sym__word_no_digit] = ACTIONS(1224), - [sym__digits] = ACTIONS(1224), - [anon_sym_DASH_DASH] = ACTIONS(1227), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1224), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1224), - [sym__code_span_start] = ACTIONS(1230), - [sym__emphasis_open_star] = ACTIONS(1233), - [sym__emphasis_open_underscore] = ACTIONS(1236), - [sym__emphasis_close_underscore] = ACTIONS(1239), - [sym__strikeout_open] = ACTIONS(1241), - [sym__latex_span_start] = ACTIONS(1244), - [sym__single_quote_open] = ACTIONS(1247), - [sym__double_quote_open] = ACTIONS(1250), - [sym__superscript_open] = ACTIONS(1253), - [sym__subscript_open] = ACTIONS(1256), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1259), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1262), - [sym__cite_author_in_text] = ACTIONS(1265), - [sym__cite_suppress_author] = ACTIONS(1268), - [sym__shortcode_open_escaped] = ACTIONS(1271), - [sym__shortcode_open] = ACTIONS(1274), - [sym__unclosed_span] = ACTIONS(1188), + [sym_backslash_escape] = STATE(383), + [sym_commonmark_attribute] = STATE(383), + [sym_code_span] = STATE(383), + [sym_latex_span] = STATE(383), + [sym_insert] = STATE(383), + [sym_delete] = STATE(383), + [sym_highlight] = STATE(383), + [sym_edit_comment] = STATE(383), + [sym_superscript] = STATE(383), + [sym_subscript] = STATE(383), + [sym_strikeout] = STATE(383), + [sym_quoted_span] = STATE(383), + [sym_inline_note] = STATE(383), + [sym_citation] = STATE(383), + [sym_shortcode_escaped] = STATE(383), + [sym_shortcode] = STATE(383), + [sym_note_reference] = STATE(383), + [sym__link_text] = STATE(395), + [sym__link_text_non_empty] = STATE(396), + [sym_inline_link] = STATE(168), + [sym_image] = STATE(383), + [sym__image_inline_link] = STATE(1263), + [sym__image_description] = STATE(2300), + [sym__image_description_non_empty] = STATE(2300), + [sym_hard_line_break] = STATE(383), + [sym__whitespace] = STATE(1259), + [sym__word] = STATE(1259), + [sym__soft_line_break] = STATE(1264), + [sym__inline_base] = STATE(168), + [sym__text_base] = STATE(383), + [sym__inline_element] = STATE(168), + [sym__emphasis_star] = STATE(1249), + [sym__strong_emphasis_star] = STATE(168), + [sym__emphasis_underscore] = STATE(1249), + [sym__strong_emphasis_underscore] = STATE(168), + [aux_sym_insert_repeat1] = STATE(168), + [aux_sym__inline_base_repeat1] = STATE(383), + [sym__backslash_escape] = ACTIONS(637), + [sym_entity_reference] = ACTIONS(639), + [sym_numeric_character_reference] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_GT] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(645), + [anon_sym_DQUOTE] = ACTIONS(643), + [anon_sym_POUND] = ACTIONS(643), + [anon_sym_DOLLAR] = ACTIONS(643), + [anon_sym_PERCENT] = ACTIONS(643), + [anon_sym_AMP] = ACTIONS(641), + [anon_sym_SQUOTE] = ACTIONS(643), + [anon_sym_STAR] = ACTIONS(643), + [anon_sym_PLUS] = ACTIONS(643), + [anon_sym_COMMA] = ACTIONS(643), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_DOT] = ACTIONS(641), + [anon_sym_SLASH] = ACTIONS(643), + [anon_sym_COLON] = ACTIONS(643), + [anon_sym_SEMI] = ACTIONS(643), + [anon_sym_EQ] = ACTIONS(643), + [anon_sym_QMARK] = ACTIONS(643), + [anon_sym_LBRACK] = ACTIONS(647), + [anon_sym_BSLASH] = ACTIONS(649), + [anon_sym_CARET] = ACTIONS(641), + [anon_sym__] = ACTIONS(643), + [anon_sym_BQUOTE] = ACTIONS(643), + [anon_sym_LBRACE] = ACTIONS(651), + [anon_sym_PIPE] = ACTIONS(643), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_LPAREN] = ACTIONS(643), + [anon_sym_RPAREN] = ACTIONS(643), + [sym__newline_token] = ACTIONS(653), + [aux_sym_insert_token1] = ACTIONS(655), + [aux_sym_delete_token1] = ACTIONS(657), + [aux_sym_highlight_token1] = ACTIONS(659), + [aux_sym_edit_comment_token1] = ACTIONS(661), + [anon_sym_CARET_LBRACK] = ACTIONS(663), + [anon_sym_LBRACK_CARET] = ACTIONS(665), + [sym_uri_autolink] = ACTIONS(639), + [sym_email_autolink] = ACTIONS(639), + [sym__whitespace_ge_2] = ACTIONS(667), + [aux_sym__whitespace_token1] = ACTIONS(669), + [sym__word_no_digit] = ACTIONS(671), + [sym__digits] = ACTIONS(671), + [anon_sym_DASH_DASH] = ACTIONS(673), + [anon_sym_DASH_DASH_DASH] = ACTIONS(671), + [anon_sym_DOT_DOT_DOT] = ACTIONS(671), + [sym__code_span_start] = ACTIONS(675), + [sym__emphasis_open_star] = ACTIONS(677), + [sym__emphasis_open_underscore] = ACTIONS(679), + [sym__strikeout_open] = ACTIONS(681), + [sym__latex_span_start] = ACTIONS(683), + [sym__single_quote_open] = ACTIONS(685), + [sym__double_quote_open] = ACTIONS(687), + [sym__double_quote_close] = ACTIONS(1339), + [sym__superscript_open] = ACTIONS(691), + [sym__subscript_open] = ACTIONS(693), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(695), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(697), + [sym__cite_author_in_text] = ACTIONS(699), + [sym__cite_suppress_author] = ACTIONS(701), + [sym__shortcode_open_escaped] = ACTIONS(703), + [sym__shortcode_open] = ACTIONS(705), + [sym__unclosed_span] = ACTIONS(639), }, [STATE(42)] = { - [sym_backslash_escape] = STATE(266), - [sym_commonmark_attribute] = STATE(266), - [sym_code_span] = STATE(266), - [sym_latex_span] = STATE(266), - [sym_superscript] = STATE(266), - [sym_subscript] = STATE(266), - [sym_strikeout] = STATE(266), - [sym_quoted_span] = STATE(266), - [sym_inline_note] = STATE(266), - [sym_citation] = STATE(266), - [sym_shortcode_escaped] = STATE(266), - [sym_shortcode] = STATE(266), - [sym_note_reference] = STATE(266), - [sym__link_text] = STATE(375), - [sym__link_text_non_empty] = STATE(376), - [sym_inline_link] = STATE(42), - [sym_image] = STATE(266), - [sym__image_inline_link] = STATE(1042), - [sym__image_description] = STATE(2044), - [sym__image_description_non_empty] = STATE(2044), - [sym_hard_line_break] = STATE(266), - [sym__whitespace] = STATE(1040), - [sym__word] = STATE(1040), - [sym__soft_line_break] = STATE(1043), - [sym__inline_base] = STATE(42), - [sym__text_base] = STATE(266), - [sym__inline_element] = STATE(42), - [sym__emphasis_star] = STATE(602), - [sym__strong_emphasis_star] = STATE(42), - [sym__emphasis_underscore] = STATE(602), - [sym__strong_emphasis_underscore] = STATE(42), - [aux_sym_superscript_repeat1] = STATE(42), - [aux_sym__inline_base_repeat1] = STATE(266), - [sym__backslash_escape] = ACTIONS(1277), - [sym_entity_reference] = ACTIONS(1280), - [sym_numeric_character_reference] = ACTIONS(1280), - [anon_sym_LT] = ACTIONS(1283), - [anon_sym_GT] = ACTIONS(1286), - [anon_sym_BANG] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1286), - [anon_sym_POUND] = ACTIONS(1286), - [anon_sym_DOLLAR] = ACTIONS(1286), - [anon_sym_PERCENT] = ACTIONS(1286), - [anon_sym_AMP] = ACTIONS(1283), - [anon_sym_SQUOTE] = ACTIONS(1286), - [anon_sym_STAR] = ACTIONS(1286), - [anon_sym_PLUS] = ACTIONS(1286), - [anon_sym_COMMA] = ACTIONS(1286), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_DOT] = ACTIONS(1283), - [anon_sym_SLASH] = ACTIONS(1286), - [anon_sym_COLON] = ACTIONS(1286), - [anon_sym_SEMI] = ACTIONS(1286), - [anon_sym_EQ] = ACTIONS(1286), - [anon_sym_QMARK] = ACTIONS(1286), - [anon_sym_LBRACK] = ACTIONS(1292), - [anon_sym_BSLASH] = ACTIONS(1295), - [anon_sym_CARET] = ACTIONS(1283), - [anon_sym__] = ACTIONS(1286), - [anon_sym_BQUOTE] = ACTIONS(1286), - [anon_sym_LBRACE] = ACTIONS(1298), - [anon_sym_PIPE] = ACTIONS(1286), - [anon_sym_TILDE] = ACTIONS(1286), - [anon_sym_LPAREN] = ACTIONS(1286), - [anon_sym_RPAREN] = ACTIONS(1286), - [sym__newline_token] = ACTIONS(1301), - [anon_sym_CARET_LBRACK] = ACTIONS(1304), - [anon_sym_LBRACK_CARET] = ACTIONS(1307), - [sym_uri_autolink] = ACTIONS(1280), - [sym_email_autolink] = ACTIONS(1280), - [sym__whitespace_ge_2] = ACTIONS(1310), - [aux_sym__whitespace_token1] = ACTIONS(1313), - [sym__word_no_digit] = ACTIONS(1316), - [sym__digits] = ACTIONS(1316), - [anon_sym_DASH_DASH] = ACTIONS(1319), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1316), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1316), - [sym__code_span_start] = ACTIONS(1322), - [sym__emphasis_open_star] = ACTIONS(1325), - [sym__emphasis_open_underscore] = ACTIONS(1328), - [sym__strikeout_open] = ACTIONS(1331), - [sym__strikeout_close] = ACTIONS(1334), - [sym__latex_span_start] = ACTIONS(1336), - [sym__single_quote_open] = ACTIONS(1339), - [sym__double_quote_open] = ACTIONS(1342), - [sym__superscript_open] = ACTIONS(1345), - [sym__subscript_open] = ACTIONS(1348), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1351), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1354), - [sym__cite_author_in_text] = ACTIONS(1357), - [sym__cite_suppress_author] = ACTIONS(1360), - [sym__shortcode_open_escaped] = ACTIONS(1363), - [sym__shortcode_open] = ACTIONS(1366), - [sym__unclosed_span] = ACTIONS(1280), + [sym_backslash_escape] = STATE(365), + [sym_commonmark_attribute] = STATE(365), + [sym_code_span] = STATE(365), + [sym_latex_span] = STATE(365), + [sym_insert] = STATE(365), + [sym_delete] = STATE(365), + [sym_highlight] = STATE(365), + [sym_edit_comment] = STATE(365), + [sym_superscript] = STATE(365), + [sym_subscript] = STATE(365), + [sym_strikeout] = STATE(365), + [sym_quoted_span] = STATE(365), + [sym_inline_note] = STATE(365), + [sym_citation] = STATE(365), + [sym_shortcode_escaped] = STATE(365), + [sym_shortcode] = STATE(365), + [sym_note_reference] = STATE(365), + [sym__link_text] = STATE(416), + [sym__link_text_non_empty] = STATE(417), + [sym_inline_link] = STATE(175), + [sym_image] = STATE(365), + [sym__image_inline_link] = STATE(712), + [sym__image_description] = STATE(2314), + [sym__image_description_non_empty] = STATE(2314), + [sym_hard_line_break] = STATE(365), + [sym__whitespace] = STATE(709), + [sym__word] = STATE(709), + [sym__soft_line_break] = STATE(713), + [sym__inline_base] = STATE(175), + [sym__text_base] = STATE(365), + [sym__inline_element] = STATE(175), + [sym__emphasis_star] = STATE(979), + [sym__strong_emphasis_star] = STATE(175), + [sym__emphasis_underscore] = STATE(979), + [sym__strong_emphasis_underscore] = STATE(175), + [aux_sym_insert_repeat1] = STATE(175), + [aux_sym__inline_base_repeat1] = STATE(365), + [sym__backslash_escape] = ACTIONS(1341), + [sym_entity_reference] = ACTIONS(1343), + [sym_numeric_character_reference] = ACTIONS(1343), + [anon_sym_LT] = ACTIONS(1345), + [anon_sym_GT] = ACTIONS(1347), + [anon_sym_BANG] = ACTIONS(1349), + [anon_sym_DQUOTE] = ACTIONS(1347), + [anon_sym_POUND] = ACTIONS(1347), + [anon_sym_DOLLAR] = ACTIONS(1347), + [anon_sym_PERCENT] = ACTIONS(1347), + [anon_sym_AMP] = ACTIONS(1345), + [anon_sym_SQUOTE] = ACTIONS(1347), + [anon_sym_STAR] = ACTIONS(1347), + [anon_sym_PLUS] = ACTIONS(1347), + [anon_sym_COMMA] = ACTIONS(1347), + [anon_sym_DASH] = ACTIONS(1345), + [anon_sym_DOT] = ACTIONS(1345), + [anon_sym_SLASH] = ACTIONS(1347), + [anon_sym_COLON] = ACTIONS(1347), + [anon_sym_SEMI] = ACTIONS(1347), + [anon_sym_EQ] = ACTIONS(1347), + [anon_sym_QMARK] = ACTIONS(1347), + [anon_sym_LBRACK] = ACTIONS(1351), + [anon_sym_BSLASH] = ACTIONS(1353), + [anon_sym_CARET] = ACTIONS(1345), + [anon_sym__] = ACTIONS(1347), + [anon_sym_BQUOTE] = ACTIONS(1347), + [anon_sym_LBRACE] = ACTIONS(1355), + [anon_sym_PIPE] = ACTIONS(1347), + [anon_sym_TILDE] = ACTIONS(1347), + [anon_sym_LPAREN] = ACTIONS(1347), + [anon_sym_RPAREN] = ACTIONS(1347), + [sym__newline_token] = ACTIONS(1357), + [aux_sym_insert_token1] = ACTIONS(1359), + [aux_sym_delete_token1] = ACTIONS(1361), + [aux_sym_highlight_token1] = ACTIONS(1363), + [aux_sym_edit_comment_token1] = ACTIONS(1365), + [anon_sym_CARET_LBRACK] = ACTIONS(1367), + [anon_sym_LBRACK_CARET] = ACTIONS(1369), + [sym_uri_autolink] = ACTIONS(1343), + [sym_email_autolink] = ACTIONS(1343), + [sym__whitespace_ge_2] = ACTIONS(1371), + [aux_sym__whitespace_token1] = ACTIONS(1373), + [sym__word_no_digit] = ACTIONS(1375), + [sym__digits] = ACTIONS(1375), + [anon_sym_DASH_DASH] = ACTIONS(1377), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1375), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1375), + [sym__code_span_start] = ACTIONS(1379), + [sym__emphasis_open_star] = ACTIONS(1381), + [sym__emphasis_open_underscore] = ACTIONS(1383), + [sym__strikeout_open] = ACTIONS(1385), + [sym__latex_span_start] = ACTIONS(1387), + [sym__single_quote_open] = ACTIONS(1389), + [sym__double_quote_open] = ACTIONS(1391), + [sym__superscript_open] = ACTIONS(1393), + [sym__superscript_close] = ACTIONS(1395), + [sym__subscript_open] = ACTIONS(1397), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1399), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1401), + [sym__cite_author_in_text] = ACTIONS(1403), + [sym__cite_suppress_author] = ACTIONS(1405), + [sym__shortcode_open_escaped] = ACTIONS(1407), + [sym__shortcode_open] = ACTIONS(1409), + [sym__unclosed_span] = ACTIONS(1343), }, [STATE(43)] = { - [sym_backslash_escape] = STATE(271), - [sym_commonmark_attribute] = STATE(271), - [sym_code_span] = STATE(271), - [sym_latex_span] = STATE(271), - [sym_superscript] = STATE(271), - [sym_subscript] = STATE(271), - [sym_strikeout] = STATE(271), - [sym_quoted_span] = STATE(271), - [sym_inline_note] = STATE(271), - [sym_citation] = STATE(271), - [sym_shortcode_escaped] = STATE(271), - [sym_shortcode] = STATE(271), - [sym_note_reference] = STATE(271), - [sym__link_text] = STATE(424), - [sym__link_text_non_empty] = STATE(425), - [sym_inline_link] = STATE(599), - [sym_image] = STATE(271), - [sym__image_inline_link] = STATE(883), - [sym__image_description] = STATE(1998), - [sym__image_description_non_empty] = STATE(1998), - [sym_hard_line_break] = STATE(271), - [sym__whitespace] = STATE(881), - [sym__word] = STATE(881), - [sym__soft_line_break] = STATE(884), - [sym__inline_base] = STATE(599), - [sym__text_base] = STATE(271), - [sym__inline_element] = STATE(599), - [aux_sym__inline] = STATE(48), - [sym__emphasis_star] = STATE(710), - [sym__strong_emphasis_star] = STATE(599), - [sym__emphasis_underscore] = STATE(710), - [sym__strong_emphasis_underscore] = STATE(599), - [aux_sym__inline_base_repeat1] = STATE(271), - [sym__backslash_escape] = ACTIONS(159), - [sym_entity_reference] = ACTIONS(161), - [sym_numeric_character_reference] = ACTIONS(161), - [anon_sym_LT] = ACTIONS(163), - [anon_sym_GT] = ACTIONS(165), - [anon_sym_BANG] = ACTIONS(167), - [anon_sym_DQUOTE] = ACTIONS(165), - [anon_sym_POUND] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(165), - [anon_sym_PERCENT] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_SQUOTE] = ACTIONS(165), - [anon_sym_STAR] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(165), - [anon_sym_COMMA] = ACTIONS(165), - [anon_sym_DASH] = ACTIONS(163), - [anon_sym_DOT] = ACTIONS(163), - [anon_sym_SLASH] = ACTIONS(165), - [anon_sym_COLON] = ACTIONS(165), - [anon_sym_SEMI] = ACTIONS(165), - [anon_sym_EQ] = ACTIONS(165), - [anon_sym_QMARK] = ACTIONS(165), - [anon_sym_LBRACK] = ACTIONS(169), - [anon_sym_BSLASH] = ACTIONS(171), - [anon_sym_RBRACK] = ACTIONS(1369), - [anon_sym_CARET] = ACTIONS(163), - [anon_sym__] = ACTIONS(165), - [anon_sym_BQUOTE] = ACTIONS(165), - [anon_sym_LBRACE] = ACTIONS(175), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(165), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_RPAREN] = ACTIONS(165), - [sym__newline_token] = ACTIONS(177), - [anon_sym_CARET_LBRACK] = ACTIONS(179), - [anon_sym_LBRACK_CARET] = ACTIONS(181), - [sym_uri_autolink] = ACTIONS(161), - [sym_email_autolink] = ACTIONS(161), - [sym__whitespace_ge_2] = ACTIONS(183), - [aux_sym__whitespace_token1] = ACTIONS(185), - [sym__word_no_digit] = ACTIONS(187), - [sym__digits] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_DASH_DASH_DASH] = ACTIONS(187), - [anon_sym_DOT_DOT_DOT] = ACTIONS(187), - [sym__code_span_start] = ACTIONS(191), - [sym__emphasis_open_star] = ACTIONS(193), - [sym__emphasis_open_underscore] = ACTIONS(195), - [sym__strikeout_open] = ACTIONS(199), - [sym__latex_span_start] = ACTIONS(201), - [sym__single_quote_open] = ACTIONS(203), - [sym__double_quote_open] = ACTIONS(205), - [sym__superscript_open] = ACTIONS(207), - [sym__subscript_open] = ACTIONS(209), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(211), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(213), - [sym__cite_author_in_text] = ACTIONS(215), - [sym__cite_suppress_author] = ACTIONS(217), - [sym__shortcode_open_escaped] = ACTIONS(219), - [sym__shortcode_open] = ACTIONS(221), - [sym__unclosed_span] = ACTIONS(161), + [sym_backslash_escape] = STATE(370), + [sym_commonmark_attribute] = STATE(370), + [sym_code_span] = STATE(370), + [sym_latex_span] = STATE(370), + [sym_insert] = STATE(370), + [sym_delete] = STATE(370), + [sym_highlight] = STATE(370), + [sym_edit_comment] = STATE(370), + [sym_superscript] = STATE(370), + [sym_subscript] = STATE(370), + [sym_strikeout] = STATE(370), + [sym_quoted_span] = STATE(370), + [sym_inline_note] = STATE(370), + [sym_citation] = STATE(370), + [sym_shortcode_escaped] = STATE(370), + [sym_shortcode] = STATE(370), + [sym_note_reference] = STATE(370), + [sym__link_text] = STATE(472), + [sym__link_text_non_empty] = STATE(473), + [sym_inline_link] = STATE(60), + [sym_image] = STATE(370), + [sym__image_inline_link] = STATE(923), + [sym__image_description] = STATE(2342), + [sym__image_description_non_empty] = STATE(2342), + [sym_hard_line_break] = STATE(370), + [sym__whitespace] = STATE(920), + [sym__word] = STATE(920), + [sym__soft_line_break] = STATE(924), + [sym__inline_base] = STATE(60), + [sym__text_base] = STATE(370), + [sym__inline_element] = STATE(60), + [sym__emphasis_star] = STATE(821), + [sym__strong_emphasis_star] = STATE(60), + [sym__emphasis_underscore] = STATE(821), + [sym__strong_emphasis_underscore] = STATE(60), + [aux_sym_insert_repeat1] = STATE(60), + [aux_sym__inline_base_repeat1] = STATE(370), + [sym__backslash_escape] = ACTIONS(73), + [sym_entity_reference] = ACTIONS(75), + [sym_numeric_character_reference] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_BANG] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_POUND] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(79), + [anon_sym_PERCENT] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_STAR] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_COMMA] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_DOT] = ACTIONS(77), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_COLON] = ACTIONS(79), + [anon_sym_SEMI] = ACTIONS(79), + [anon_sym_EQ] = ACTIONS(79), + [anon_sym_QMARK] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(83), + [anon_sym_BSLASH] = ACTIONS(85), + [anon_sym_RBRACK] = ACTIONS(1411), + [anon_sym_CARET] = ACTIONS(77), + [anon_sym__] = ACTIONS(79), + [anon_sym_BQUOTE] = ACTIONS(79), + [anon_sym_LBRACE] = ACTIONS(89), + [anon_sym_PIPE] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(79), + [anon_sym_RPAREN] = ACTIONS(79), + [sym__newline_token] = ACTIONS(91), + [aux_sym_insert_token1] = ACTIONS(93), + [aux_sym_delete_token1] = ACTIONS(95), + [aux_sym_highlight_token1] = ACTIONS(97), + [aux_sym_edit_comment_token1] = ACTIONS(99), + [anon_sym_CARET_LBRACK] = ACTIONS(101), + [anon_sym_LBRACK_CARET] = ACTIONS(103), + [sym_uri_autolink] = ACTIONS(75), + [sym_email_autolink] = ACTIONS(75), + [sym__whitespace_ge_2] = ACTIONS(105), + [aux_sym__whitespace_token1] = ACTIONS(107), + [sym__word_no_digit] = ACTIONS(109), + [sym__digits] = ACTIONS(109), + [anon_sym_DASH_DASH] = ACTIONS(111), + [anon_sym_DASH_DASH_DASH] = ACTIONS(109), + [anon_sym_DOT_DOT_DOT] = ACTIONS(109), + [sym__code_span_start] = ACTIONS(113), + [sym__emphasis_open_star] = ACTIONS(115), + [sym__emphasis_open_underscore] = ACTIONS(117), + [sym__strikeout_open] = ACTIONS(121), + [sym__latex_span_start] = ACTIONS(123), + [sym__single_quote_open] = ACTIONS(125), + [sym__double_quote_open] = ACTIONS(127), + [sym__superscript_open] = ACTIONS(129), + [sym__subscript_open] = ACTIONS(131), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(133), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(135), + [sym__cite_author_in_text] = ACTIONS(137), + [sym__cite_suppress_author] = ACTIONS(139), + [sym__shortcode_open_escaped] = ACTIONS(141), + [sym__shortcode_open] = ACTIONS(143), + [sym__unclosed_span] = ACTIONS(75), }, [STATE(44)] = { - [sym_backslash_escape] = STATE(271), - [sym_commonmark_attribute] = STATE(271), - [sym_code_span] = STATE(271), - [sym_latex_span] = STATE(271), - [sym_superscript] = STATE(271), - [sym_subscript] = STATE(271), - [sym_strikeout] = STATE(271), - [sym_quoted_span] = STATE(271), - [sym_inline_note] = STATE(271), - [sym_citation] = STATE(271), - [sym_shortcode_escaped] = STATE(271), - [sym_shortcode] = STATE(271), - [sym_note_reference] = STATE(271), - [sym__link_text] = STATE(424), - [sym__link_text_non_empty] = STATE(425), - [sym_inline_link] = STATE(53), - [sym_image] = STATE(271), - [sym__image_inline_link] = STATE(883), - [sym__image_description] = STATE(1998), - [sym__image_description_non_empty] = STATE(1998), - [sym_hard_line_break] = STATE(271), - [sym__whitespace] = STATE(881), - [sym__word] = STATE(881), - [sym__soft_line_break] = STATE(884), - [sym__inline_base] = STATE(53), - [sym__text_base] = STATE(271), - [sym__inline_element] = STATE(53), - [sym__emphasis_star] = STATE(710), - [sym__strong_emphasis_star] = STATE(53), - [sym__emphasis_underscore] = STATE(710), - [sym__strong_emphasis_underscore] = STATE(53), - [aux_sym_superscript_repeat1] = STATE(53), - [aux_sym__inline_base_repeat1] = STATE(271), - [sym__backslash_escape] = ACTIONS(159), - [sym_entity_reference] = ACTIONS(161), - [sym_numeric_character_reference] = ACTIONS(161), - [anon_sym_LT] = ACTIONS(163), - [anon_sym_GT] = ACTIONS(165), - [anon_sym_BANG] = ACTIONS(167), - [anon_sym_DQUOTE] = ACTIONS(165), - [anon_sym_POUND] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(165), - [anon_sym_PERCENT] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_SQUOTE] = ACTIONS(165), - [anon_sym_STAR] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(165), - [anon_sym_COMMA] = ACTIONS(165), - [anon_sym_DASH] = ACTIONS(163), - [anon_sym_DOT] = ACTIONS(163), - [anon_sym_SLASH] = ACTIONS(165), - [anon_sym_COLON] = ACTIONS(165), - [anon_sym_SEMI] = ACTIONS(165), - [anon_sym_EQ] = ACTIONS(165), - [anon_sym_QMARK] = ACTIONS(165), - [anon_sym_LBRACK] = ACTIONS(169), - [anon_sym_BSLASH] = ACTIONS(171), - [anon_sym_RBRACK] = ACTIONS(1371), - [anon_sym_CARET] = ACTIONS(163), - [anon_sym__] = ACTIONS(165), - [anon_sym_BQUOTE] = ACTIONS(165), - [anon_sym_LBRACE] = ACTIONS(175), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(165), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_RPAREN] = ACTIONS(165), - [sym__newline_token] = ACTIONS(177), - [anon_sym_CARET_LBRACK] = ACTIONS(179), - [anon_sym_LBRACK_CARET] = ACTIONS(181), - [sym_uri_autolink] = ACTIONS(161), - [sym_email_autolink] = ACTIONS(161), - [sym__whitespace_ge_2] = ACTIONS(183), - [aux_sym__whitespace_token1] = ACTIONS(185), - [sym__word_no_digit] = ACTIONS(187), - [sym__digits] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_DASH_DASH_DASH] = ACTIONS(187), - [anon_sym_DOT_DOT_DOT] = ACTIONS(187), - [sym__code_span_start] = ACTIONS(191), - [sym__emphasis_open_star] = ACTIONS(193), - [sym__emphasis_open_underscore] = ACTIONS(195), - [sym__strikeout_open] = ACTIONS(199), - [sym__latex_span_start] = ACTIONS(201), - [sym__single_quote_open] = ACTIONS(203), - [sym__double_quote_open] = ACTIONS(205), - [sym__superscript_open] = ACTIONS(207), - [sym__subscript_open] = ACTIONS(209), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(211), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(213), - [sym__cite_author_in_text] = ACTIONS(215), - [sym__cite_suppress_author] = ACTIONS(217), - [sym__shortcode_open_escaped] = ACTIONS(219), - [sym__shortcode_open] = ACTIONS(221), - [sym__unclosed_span] = ACTIONS(161), + [sym_backslash_escape] = STATE(367), + [sym_commonmark_attribute] = STATE(367), + [sym_code_span] = STATE(367), + [sym_latex_span] = STATE(367), + [sym_insert] = STATE(367), + [sym_delete] = STATE(367), + [sym_highlight] = STATE(367), + [sym_edit_comment] = STATE(367), + [sym_superscript] = STATE(367), + [sym_subscript] = STATE(367), + [sym_strikeout] = STATE(367), + [sym_quoted_span] = STATE(367), + [sym_inline_note] = STATE(367), + [sym_citation] = STATE(367), + [sym_shortcode_escaped] = STATE(367), + [sym_shortcode] = STATE(367), + [sym_note_reference] = STATE(367), + [sym__link_text] = STATE(435), + [sym__link_text_non_empty] = STATE(436), + [sym_inline_link] = STATE(201), + [sym_image] = STATE(367), + [sym__image_inline_link] = STATE(819), + [sym__image_description] = STATE(2328), + [sym__image_description_non_empty] = STATE(2328), + [sym_hard_line_break] = STATE(367), + [sym__whitespace] = STATE(816), + [sym__word] = STATE(816), + [sym__soft_line_break] = STATE(820), + [sym__inline_base] = STATE(201), + [sym__text_base] = STATE(367), + [sym__inline_element] = STATE(201), + [sym__emphasis_star] = STATE(1271), + [sym__strong_emphasis_star] = STATE(201), + [sym__emphasis_underscore] = STATE(1271), + [sym__strong_emphasis_underscore] = STATE(201), + [aux_sym_insert_repeat1] = STATE(201), + [aux_sym__inline_base_repeat1] = STATE(367), + [sym__backslash_escape] = ACTIONS(1413), + [sym_entity_reference] = ACTIONS(1415), + [sym_numeric_character_reference] = ACTIONS(1415), + [anon_sym_LT] = ACTIONS(1417), + [anon_sym_GT] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1419), + [anon_sym_POUND] = ACTIONS(1419), + [anon_sym_DOLLAR] = ACTIONS(1419), + [anon_sym_PERCENT] = ACTIONS(1419), + [anon_sym_AMP] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [anon_sym_STAR] = ACTIONS(1419), + [anon_sym_PLUS] = ACTIONS(1419), + [anon_sym_COMMA] = ACTIONS(1419), + [anon_sym_DASH] = ACTIONS(1417), + [anon_sym_DOT] = ACTIONS(1417), + [anon_sym_SLASH] = ACTIONS(1419), + [anon_sym_COLON] = ACTIONS(1419), + [anon_sym_SEMI] = ACTIONS(1419), + [anon_sym_EQ] = ACTIONS(1419), + [anon_sym_QMARK] = ACTIONS(1419), + [anon_sym_LBRACK] = ACTIONS(1423), + [anon_sym_BSLASH] = ACTIONS(1425), + [anon_sym_CARET] = ACTIONS(1417), + [anon_sym__] = ACTIONS(1419), + [anon_sym_BQUOTE] = ACTIONS(1419), + [anon_sym_LBRACE] = ACTIONS(1427), + [anon_sym_PIPE] = ACTIONS(1419), + [anon_sym_TILDE] = ACTIONS(1419), + [anon_sym_LPAREN] = ACTIONS(1419), + [anon_sym_RPAREN] = ACTIONS(1419), + [sym__newline_token] = ACTIONS(1429), + [aux_sym_insert_token1] = ACTIONS(1431), + [aux_sym_delete_token1] = ACTIONS(1433), + [aux_sym_highlight_token1] = ACTIONS(1435), + [aux_sym_edit_comment_token1] = ACTIONS(1437), + [anon_sym_CARET_LBRACK] = ACTIONS(1439), + [anon_sym_LBRACK_CARET] = ACTIONS(1441), + [sym_uri_autolink] = ACTIONS(1415), + [sym_email_autolink] = ACTIONS(1415), + [sym__whitespace_ge_2] = ACTIONS(1443), + [aux_sym__whitespace_token1] = ACTIONS(1445), + [sym__word_no_digit] = ACTIONS(1447), + [sym__digits] = ACTIONS(1447), + [anon_sym_DASH_DASH] = ACTIONS(1449), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1447), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1447), + [sym__code_span_start] = ACTIONS(1451), + [sym__emphasis_open_star] = ACTIONS(1453), + [sym__emphasis_open_underscore] = ACTIONS(1455), + [sym__strikeout_open] = ACTIONS(1457), + [sym__latex_span_start] = ACTIONS(1459), + [sym__single_quote_open] = ACTIONS(1461), + [sym__double_quote_open] = ACTIONS(1463), + [sym__superscript_open] = ACTIONS(1465), + [sym__subscript_open] = ACTIONS(1467), + [sym__subscript_close] = ACTIONS(1469), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1471), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1473), + [sym__cite_author_in_text] = ACTIONS(1475), + [sym__cite_suppress_author] = ACTIONS(1477), + [sym__shortcode_open_escaped] = ACTIONS(1479), + [sym__shortcode_open] = ACTIONS(1481), + [sym__unclosed_span] = ACTIONS(1415), }, [STATE(45)] = { - [sym_backslash_escape] = STATE(277), - [sym_commonmark_attribute] = STATE(277), - [sym_code_span] = STATE(277), - [sym_latex_span] = STATE(277), - [sym_superscript] = STATE(277), - [sym_subscript] = STATE(277), - [sym_strikeout] = STATE(277), - [sym_quoted_span] = STATE(277), - [sym_inline_note] = STATE(277), - [sym_citation] = STATE(277), - [sym_shortcode_escaped] = STATE(277), - [sym_shortcode] = STATE(277), - [sym_note_reference] = STATE(277), - [sym__link_text] = STATE(427), - [sym__link_text_non_empty] = STATE(428), - [sym_inline_link] = STATE(31), - [sym_image] = STATE(277), - [sym__image_inline_link] = STATE(613), - [sym__image_description] = STATE(1930), - [sym__image_description_non_empty] = STATE(1930), - [sym_hard_line_break] = STATE(277), - [sym__whitespace] = STATE(610), - [sym__word] = STATE(610), - [sym__soft_line_break] = STATE(614), - [sym__inline_base] = STATE(31), - [sym__text_base] = STATE(277), - [sym__inline_element] = STATE(31), - [sym__emphasis_star] = STATE(1044), - [sym__strong_emphasis_star] = STATE(31), - [sym__emphasis_underscore] = STATE(1044), - [sym__strong_emphasis_underscore] = STATE(31), - [aux_sym_superscript_repeat1] = STATE(31), - [aux_sym__inline_base_repeat1] = STATE(277), - [sym__backslash_escape] = ACTIONS(687), - [sym_entity_reference] = ACTIONS(689), - [sym_numeric_character_reference] = ACTIONS(689), - [anon_sym_LT] = ACTIONS(691), - [anon_sym_GT] = ACTIONS(693), - [anon_sym_BANG] = ACTIONS(695), - [anon_sym_DQUOTE] = ACTIONS(693), - [anon_sym_POUND] = ACTIONS(693), - [anon_sym_DOLLAR] = ACTIONS(693), - [anon_sym_PERCENT] = ACTIONS(693), - [anon_sym_AMP] = ACTIONS(691), - [anon_sym_SQUOTE] = ACTIONS(693), - [anon_sym_STAR] = ACTIONS(693), - [anon_sym_PLUS] = ACTIONS(693), - [anon_sym_COMMA] = ACTIONS(693), - [anon_sym_DASH] = ACTIONS(691), - [anon_sym_DOT] = ACTIONS(691), - [anon_sym_SLASH] = ACTIONS(693), - [anon_sym_COLON] = ACTIONS(693), - [anon_sym_SEMI] = ACTIONS(693), - [anon_sym_EQ] = ACTIONS(693), - [anon_sym_QMARK] = ACTIONS(693), - [anon_sym_LBRACK] = ACTIONS(697), - [anon_sym_BSLASH] = ACTIONS(699), - [anon_sym_CARET] = ACTIONS(691), - [anon_sym__] = ACTIONS(693), - [anon_sym_BQUOTE] = ACTIONS(693), - [anon_sym_LBRACE] = ACTIONS(701), - [anon_sym_PIPE] = ACTIONS(693), - [anon_sym_TILDE] = ACTIONS(693), - [anon_sym_LPAREN] = ACTIONS(693), - [anon_sym_RPAREN] = ACTIONS(693), - [sym__newline_token] = ACTIONS(703), - [anon_sym_CARET_LBRACK] = ACTIONS(705), - [anon_sym_LBRACK_CARET] = ACTIONS(707), - [sym_uri_autolink] = ACTIONS(689), - [sym_email_autolink] = ACTIONS(689), - [sym__whitespace_ge_2] = ACTIONS(709), - [aux_sym__whitespace_token1] = ACTIONS(711), - [sym__word_no_digit] = ACTIONS(713), - [sym__digits] = ACTIONS(713), - [anon_sym_DASH_DASH] = ACTIONS(715), - [anon_sym_DASH_DASH_DASH] = ACTIONS(713), - [anon_sym_DOT_DOT_DOT] = ACTIONS(713), - [sym__code_span_start] = ACTIONS(717), - [sym__emphasis_open_star] = ACTIONS(719), - [sym__emphasis_open_underscore] = ACTIONS(721), - [sym__strikeout_open] = ACTIONS(723), - [sym__latex_span_start] = ACTIONS(725), - [sym__single_quote_open] = ACTIONS(727), - [sym__double_quote_open] = ACTIONS(729), - [sym__double_quote_close] = ACTIONS(1373), - [sym__superscript_open] = ACTIONS(731), - [sym__subscript_open] = ACTIONS(733), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(735), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(737), - [sym__cite_author_in_text] = ACTIONS(739), - [sym__cite_suppress_author] = ACTIONS(741), - [sym__shortcode_open_escaped] = ACTIONS(743), - [sym__shortcode_open] = ACTIONS(745), - [sym__unclosed_span] = ACTIONS(689), + [sym_backslash_escape] = STATE(372), + [sym_commonmark_attribute] = STATE(372), + [sym_code_span] = STATE(372), + [sym_latex_span] = STATE(372), + [sym_insert] = STATE(372), + [sym_delete] = STATE(372), + [sym_highlight] = STATE(372), + [sym_edit_comment] = STATE(372), + [sym_superscript] = STATE(372), + [sym_subscript] = STATE(372), + [sym_strikeout] = STATE(372), + [sym_quoted_span] = STATE(372), + [sym_inline_note] = STATE(372), + [sym_citation] = STATE(372), + [sym_shortcode_escaped] = STATE(372), + [sym_shortcode] = STATE(372), + [sym_note_reference] = STATE(372), + [sym__link_text] = STATE(454), + [sym__link_text_non_empty] = STATE(455), + [sym_inline_link] = STATE(253), + [sym_image] = STATE(372), + [sym__image_inline_link] = STATE(1025), + [sym__image_description] = STATE(2356), + [sym__image_description_non_empty] = STATE(2356), + [sym_hard_line_break] = STATE(372), + [sym__whitespace] = STATE(1022), + [sym__word] = STATE(1022), + [sym__soft_line_break] = STATE(1026), + [sym__inline_base] = STATE(253), + [sym__text_base] = STATE(372), + [sym__inline_element] = STATE(253), + [sym__emphasis_star] = STATE(714), + [sym__strong_emphasis_star] = STATE(253), + [sym__emphasis_underscore] = STATE(714), + [sym__strong_emphasis_underscore] = STATE(253), + [aux_sym_insert_repeat1] = STATE(253), + [aux_sym__inline_base_repeat1] = STATE(372), + [sym__backslash_escape] = ACTIONS(707), + [sym_entity_reference] = ACTIONS(709), + [sym_numeric_character_reference] = ACTIONS(709), + [anon_sym_LT] = ACTIONS(711), + [anon_sym_GT] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(715), + [anon_sym_DQUOTE] = ACTIONS(713), + [anon_sym_POUND] = ACTIONS(713), + [anon_sym_DOLLAR] = ACTIONS(713), + [anon_sym_PERCENT] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(711), + [anon_sym_SQUOTE] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_COMMA] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_DOT] = ACTIONS(711), + [anon_sym_SLASH] = ACTIONS(713), + [anon_sym_COLON] = ACTIONS(713), + [anon_sym_SEMI] = ACTIONS(713), + [anon_sym_EQ] = ACTIONS(713), + [anon_sym_QMARK] = ACTIONS(713), + [anon_sym_LBRACK] = ACTIONS(717), + [anon_sym_BSLASH] = ACTIONS(719), + [anon_sym_CARET] = ACTIONS(711), + [anon_sym__] = ACTIONS(713), + [anon_sym_BQUOTE] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(721), + [anon_sym_PIPE] = ACTIONS(713), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_LPAREN] = ACTIONS(713), + [anon_sym_RPAREN] = ACTIONS(713), + [sym__newline_token] = ACTIONS(723), + [aux_sym_insert_token1] = ACTIONS(725), + [aux_sym_insert_token2] = ACTIONS(1483), + [aux_sym_delete_token1] = ACTIONS(729), + [aux_sym_highlight_token1] = ACTIONS(731), + [aux_sym_edit_comment_token1] = ACTIONS(733), + [anon_sym_CARET_LBRACK] = ACTIONS(735), + [anon_sym_LBRACK_CARET] = ACTIONS(737), + [sym_uri_autolink] = ACTIONS(709), + [sym_email_autolink] = ACTIONS(709), + [sym__whitespace_ge_2] = ACTIONS(739), + [aux_sym__whitespace_token1] = ACTIONS(741), + [sym__word_no_digit] = ACTIONS(743), + [sym__digits] = ACTIONS(743), + [anon_sym_DASH_DASH] = ACTIONS(745), + [anon_sym_DASH_DASH_DASH] = ACTIONS(743), + [anon_sym_DOT_DOT_DOT] = ACTIONS(743), + [sym__code_span_start] = ACTIONS(747), + [sym__emphasis_open_star] = ACTIONS(749), + [sym__emphasis_open_underscore] = ACTIONS(751), + [sym__strikeout_open] = ACTIONS(753), + [sym__latex_span_start] = ACTIONS(755), + [sym__single_quote_open] = ACTIONS(757), + [sym__double_quote_open] = ACTIONS(759), + [sym__superscript_open] = ACTIONS(761), + [sym__subscript_open] = ACTIONS(763), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(765), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(767), + [sym__cite_author_in_text] = ACTIONS(769), + [sym__cite_suppress_author] = ACTIONS(771), + [sym__shortcode_open_escaped] = ACTIONS(773), + [sym__shortcode_open] = ACTIONS(775), + [sym__unclosed_span] = ACTIONS(709), }, [STATE(46)] = { - [sym_backslash_escape] = STATE(262), - [sym_commonmark_attribute] = STATE(262), - [sym_code_span] = STATE(262), - [sym_latex_span] = STATE(262), - [sym_superscript] = STATE(262), - [sym_subscript] = STATE(262), - [sym_strikeout] = STATE(262), - [sym_quoted_span] = STATE(262), - [sym_inline_note] = STATE(262), - [sym_citation] = STATE(262), - [sym_shortcode_escaped] = STATE(262), - [sym_shortcode] = STATE(262), - [sym_note_reference] = STATE(262), - [sym__link_text] = STATE(313), - [sym__link_text_non_empty] = STATE(314), - [sym_inline_link] = STATE(32), - [sym_image] = STATE(262), - [sym__image_inline_link] = STATE(708), - [sym__image_description] = STATE(1970), - [sym__image_description_non_empty] = STATE(1970), - [sym_hard_line_break] = STATE(262), - [sym__whitespace] = STATE(705), - [sym__word] = STATE(705), - [sym__soft_line_break] = STATE(709), - [sym__inline_base] = STATE(32), - [sym__text_base] = STATE(262), - [sym__inline_element] = STATE(32), - [sym__emphasis_star] = STATE(1138), - [sym__strong_emphasis_star] = STATE(32), - [sym__emphasis_underscore] = STATE(1138), - [sym__strong_emphasis_underscore] = STATE(32), - [aux_sym_superscript_repeat1] = STATE(32), - [aux_sym__inline_base_repeat1] = STATE(262), - [sym__backslash_escape] = ACTIONS(747), - [sym_entity_reference] = ACTIONS(749), - [sym_numeric_character_reference] = ACTIONS(749), - [anon_sym_LT] = ACTIONS(751), - [anon_sym_GT] = ACTIONS(753), - [anon_sym_BANG] = ACTIONS(755), - [anon_sym_DQUOTE] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(753), - [anon_sym_DOLLAR] = ACTIONS(753), - [anon_sym_PERCENT] = ACTIONS(753), - [anon_sym_AMP] = ACTIONS(751), - [anon_sym_SQUOTE] = ACTIONS(753), - [anon_sym_STAR] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(753), - [anon_sym_COMMA] = ACTIONS(753), - [anon_sym_DASH] = ACTIONS(751), - [anon_sym_DOT] = ACTIONS(751), - [anon_sym_SLASH] = ACTIONS(753), - [anon_sym_COLON] = ACTIONS(753), - [anon_sym_SEMI] = ACTIONS(753), - [anon_sym_EQ] = ACTIONS(753), - [anon_sym_QMARK] = ACTIONS(753), - [anon_sym_LBRACK] = ACTIONS(757), - [anon_sym_BSLASH] = ACTIONS(759), - [anon_sym_CARET] = ACTIONS(751), - [anon_sym__] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(753), - [anon_sym_LBRACE] = ACTIONS(761), - [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_TILDE] = ACTIONS(753), - [anon_sym_LPAREN] = ACTIONS(753), - [anon_sym_RPAREN] = ACTIONS(753), - [sym__newline_token] = ACTIONS(763), - [anon_sym_CARET_LBRACK] = ACTIONS(765), - [anon_sym_LBRACK_CARET] = ACTIONS(767), - [sym_uri_autolink] = ACTIONS(749), - [sym_email_autolink] = ACTIONS(749), - [sym__whitespace_ge_2] = ACTIONS(769), - [aux_sym__whitespace_token1] = ACTIONS(771), - [sym__word_no_digit] = ACTIONS(773), - [sym__digits] = ACTIONS(773), - [anon_sym_DASH_DASH] = ACTIONS(775), - [anon_sym_DASH_DASH_DASH] = ACTIONS(773), - [anon_sym_DOT_DOT_DOT] = ACTIONS(773), - [sym__code_span_start] = ACTIONS(777), - [sym__emphasis_open_star] = ACTIONS(779), - [sym__emphasis_open_underscore] = ACTIONS(781), - [sym__strikeout_open] = ACTIONS(783), - [sym__latex_span_start] = ACTIONS(785), - [sym__single_quote_open] = ACTIONS(787), - [sym__double_quote_open] = ACTIONS(789), - [sym__superscript_open] = ACTIONS(791), - [sym__superscript_close] = ACTIONS(1375), - [sym__subscript_open] = ACTIONS(795), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(797), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(799), - [sym__cite_author_in_text] = ACTIONS(801), - [sym__cite_suppress_author] = ACTIONS(803), - [sym__shortcode_open_escaped] = ACTIONS(805), - [sym__shortcode_open] = ACTIONS(807), - [sym__unclosed_span] = ACTIONS(749), + [sym_backslash_escape] = STATE(370), + [sym_commonmark_attribute] = STATE(370), + [sym_code_span] = STATE(370), + [sym_latex_span] = STATE(370), + [sym_insert] = STATE(370), + [sym_delete] = STATE(370), + [sym_highlight] = STATE(370), + [sym_edit_comment] = STATE(370), + [sym_superscript] = STATE(370), + [sym_subscript] = STATE(370), + [sym_strikeout] = STATE(370), + [sym_quoted_span] = STATE(370), + [sym_inline_note] = STATE(370), + [sym_citation] = STATE(370), + [sym_shortcode_escaped] = STATE(370), + [sym_shortcode] = STATE(370), + [sym_note_reference] = STATE(370), + [sym__link_text] = STATE(472), + [sym__link_text_non_empty] = STATE(473), + [sym_inline_link] = STATE(1269), + [sym_image] = STATE(370), + [sym__image_inline_link] = STATE(923), + [sym__image_description] = STATE(2342), + [sym__image_description_non_empty] = STATE(2342), + [sym_hard_line_break] = STATE(370), + [sym__whitespace] = STATE(920), + [sym__word] = STATE(920), + [sym__soft_line_break] = STATE(924), + [sym__inline_base] = STATE(1269), + [sym__text_base] = STATE(370), + [sym__inline_element] = STATE(1269), + [aux_sym__inline] = STATE(46), + [sym__emphasis_star] = STATE(821), + [sym__strong_emphasis_star] = STATE(1269), + [sym__emphasis_underscore] = STATE(821), + [sym__strong_emphasis_underscore] = STATE(1269), + [aux_sym__inline_base_repeat1] = STATE(370), + [sym__backslash_escape] = ACTIONS(1485), + [sym_entity_reference] = ACTIONS(1488), + [sym_numeric_character_reference] = ACTIONS(1488), + [anon_sym_LT] = ACTIONS(1491), + [anon_sym_GT] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1497), + [anon_sym_DQUOTE] = ACTIONS(1494), + [anon_sym_POUND] = ACTIONS(1494), + [anon_sym_DOLLAR] = ACTIONS(1494), + [anon_sym_PERCENT] = ACTIONS(1494), + [anon_sym_AMP] = ACTIONS(1491), + [anon_sym_SQUOTE] = ACTIONS(1494), + [anon_sym_STAR] = ACTIONS(1494), + [anon_sym_PLUS] = ACTIONS(1494), + [anon_sym_COMMA] = ACTIONS(1494), + [anon_sym_DASH] = ACTIONS(1491), + [anon_sym_DOT] = ACTIONS(1491), + [anon_sym_SLASH] = ACTIONS(1494), + [anon_sym_COLON] = ACTIONS(1494), + [anon_sym_SEMI] = ACTIONS(1494), + [anon_sym_EQ] = ACTIONS(1494), + [anon_sym_QMARK] = ACTIONS(1494), + [anon_sym_LBRACK] = ACTIONS(1500), + [anon_sym_BSLASH] = ACTIONS(1503), + [anon_sym_RBRACK] = ACTIONS(781), + [anon_sym_CARET] = ACTIONS(1491), + [anon_sym__] = ACTIONS(1494), + [anon_sym_BQUOTE] = ACTIONS(1494), + [anon_sym_LBRACE] = ACTIONS(1506), + [anon_sym_PIPE] = ACTIONS(1494), + [anon_sym_TILDE] = ACTIONS(1494), + [anon_sym_LPAREN] = ACTIONS(1494), + [anon_sym_RPAREN] = ACTIONS(1494), + [sym__newline_token] = ACTIONS(1509), + [aux_sym_insert_token1] = ACTIONS(1512), + [aux_sym_delete_token1] = ACTIONS(1515), + [aux_sym_highlight_token1] = ACTIONS(1518), + [aux_sym_edit_comment_token1] = ACTIONS(1521), + [anon_sym_CARET_LBRACK] = ACTIONS(1524), + [anon_sym_LBRACK_CARET] = ACTIONS(1527), + [sym_uri_autolink] = ACTIONS(1488), + [sym_email_autolink] = ACTIONS(1488), + [sym__whitespace_ge_2] = ACTIONS(1530), + [aux_sym__whitespace_token1] = ACTIONS(1533), + [sym__word_no_digit] = ACTIONS(1536), + [sym__digits] = ACTIONS(1536), + [anon_sym_DASH_DASH] = ACTIONS(1539), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1536), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1536), + [sym__code_span_start] = ACTIONS(1542), + [sym__emphasis_open_star] = ACTIONS(1545), + [sym__emphasis_open_underscore] = ACTIONS(1548), + [sym__strikeout_open] = ACTIONS(1551), + [sym__latex_span_start] = ACTIONS(1554), + [sym__single_quote_open] = ACTIONS(1557), + [sym__double_quote_open] = ACTIONS(1560), + [sym__superscript_open] = ACTIONS(1563), + [sym__subscript_open] = ACTIONS(1566), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1569), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1572), + [sym__cite_author_in_text] = ACTIONS(1575), + [sym__cite_suppress_author] = ACTIONS(1578), + [sym__shortcode_open_escaped] = ACTIONS(1581), + [sym__shortcode_open] = ACTIONS(1584), + [sym__unclosed_span] = ACTIONS(1488), }, [STATE(47)] = { - [sym_backslash_escape] = STATE(270), - [sym_commonmark_attribute] = STATE(270), - [sym_code_span] = STATE(270), - [sym_latex_span] = STATE(270), - [sym_superscript] = STATE(270), - [sym_subscript] = STATE(270), - [sym_strikeout] = STATE(270), - [sym_quoted_span] = STATE(270), - [sym_inline_note] = STATE(270), - [sym_citation] = STATE(270), - [sym_shortcode_escaped] = STATE(270), - [sym_shortcode] = STATE(270), - [sym_note_reference] = STATE(270), - [sym__link_text] = STATE(359), - [sym__link_text_non_empty] = STATE(364), - [sym_inline_link] = STATE(33), - [sym_image] = STATE(270), - [sym__image_inline_link] = STATE(795), - [sym__image_description] = STATE(1984), - [sym__image_description_non_empty] = STATE(1984), - [sym_hard_line_break] = STATE(270), - [sym__whitespace] = STATE(792), - [sym__word] = STATE(792), - [sym__soft_line_break] = STATE(796), - [sym__inline_base] = STATE(33), - [sym__text_base] = STATE(270), - [sym__inline_element] = STATE(33), - [sym__emphasis_star] = STATE(615), - [sym__strong_emphasis_star] = STATE(33), - [sym__emphasis_underscore] = STATE(615), - [sym__strong_emphasis_underscore] = STATE(33), - [aux_sym_superscript_repeat1] = STATE(33), - [aux_sym__inline_base_repeat1] = STATE(270), - [sym__backslash_escape] = ACTIONS(809), - [sym_entity_reference] = ACTIONS(811), - [sym_numeric_character_reference] = ACTIONS(811), - [anon_sym_LT] = ACTIONS(813), - [anon_sym_GT] = ACTIONS(815), - [anon_sym_BANG] = ACTIONS(817), - [anon_sym_DQUOTE] = ACTIONS(815), - [anon_sym_POUND] = ACTIONS(815), - [anon_sym_DOLLAR] = ACTIONS(815), - [anon_sym_PERCENT] = ACTIONS(815), - [anon_sym_AMP] = ACTIONS(813), - [anon_sym_SQUOTE] = ACTIONS(815), - [anon_sym_STAR] = ACTIONS(815), - [anon_sym_PLUS] = ACTIONS(815), - [anon_sym_COMMA] = ACTIONS(815), - [anon_sym_DASH] = ACTIONS(813), - [anon_sym_DOT] = ACTIONS(813), - [anon_sym_SLASH] = ACTIONS(815), - [anon_sym_COLON] = ACTIONS(815), - [anon_sym_SEMI] = ACTIONS(815), - [anon_sym_EQ] = ACTIONS(815), - [anon_sym_QMARK] = ACTIONS(815), - [anon_sym_LBRACK] = ACTIONS(819), - [anon_sym_BSLASH] = ACTIONS(821), - [anon_sym_CARET] = ACTIONS(813), - [anon_sym__] = ACTIONS(815), - [anon_sym_BQUOTE] = ACTIONS(815), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_PIPE] = ACTIONS(815), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_RPAREN] = ACTIONS(815), - [sym__newline_token] = ACTIONS(825), - [anon_sym_CARET_LBRACK] = ACTIONS(827), - [anon_sym_LBRACK_CARET] = ACTIONS(829), - [sym_uri_autolink] = ACTIONS(811), - [sym_email_autolink] = ACTIONS(811), - [sym__whitespace_ge_2] = ACTIONS(831), - [aux_sym__whitespace_token1] = ACTIONS(833), - [sym__word_no_digit] = ACTIONS(835), - [sym__digits] = ACTIONS(835), - [anon_sym_DASH_DASH] = ACTIONS(837), - [anon_sym_DASH_DASH_DASH] = ACTIONS(835), - [anon_sym_DOT_DOT_DOT] = ACTIONS(835), - [sym__code_span_start] = ACTIONS(839), - [sym__emphasis_open_star] = ACTIONS(841), - [sym__emphasis_open_underscore] = ACTIONS(843), - [sym__strikeout_open] = ACTIONS(845), - [sym__latex_span_start] = ACTIONS(847), - [sym__single_quote_open] = ACTIONS(849), - [sym__double_quote_open] = ACTIONS(851), - [sym__superscript_open] = ACTIONS(853), - [sym__subscript_open] = ACTIONS(855), - [sym__subscript_close] = ACTIONS(1377), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(859), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(861), - [sym__cite_author_in_text] = ACTIONS(863), - [sym__cite_suppress_author] = ACTIONS(865), - [sym__shortcode_open_escaped] = ACTIONS(867), - [sym__shortcode_open] = ACTIONS(869), - [sym__unclosed_span] = ACTIONS(811), + [sym_backslash_escape] = STATE(375), + [sym_commonmark_attribute] = STATE(375), + [sym_code_span] = STATE(375), + [sym_latex_span] = STATE(375), + [sym_insert] = STATE(375), + [sym_delete] = STATE(375), + [sym_highlight] = STATE(375), + [sym_edit_comment] = STATE(375), + [sym_superscript] = STATE(375), + [sym_subscript] = STATE(375), + [sym_strikeout] = STATE(375), + [sym_quoted_span] = STATE(375), + [sym_inline_note] = STATE(375), + [sym_citation] = STATE(375), + [sym_shortcode_escaped] = STATE(375), + [sym_shortcode] = STATE(375), + [sym_note_reference] = STATE(375), + [sym__link_text] = STATE(525), + [sym__link_text_non_empty] = STATE(527), + [sym_inline_link] = STATE(47), + [sym_image] = STATE(375), + [sym__image_inline_link] = STATE(972), + [sym__image_description] = STATE(2286), + [sym__image_description_non_empty] = STATE(2286), + [sym_hard_line_break] = STATE(375), + [sym__whitespace] = STATE(949), + [sym__word] = STATE(949), + [sym__soft_line_break] = STATE(973), + [sym__inline_base] = STATE(47), + [sym__text_base] = STATE(375), + [sym__inline_element] = STATE(47), + [sym__emphasis_star] = STATE(1392), + [sym__strong_emphasis_star] = STATE(47), + [sym__emphasis_underscore] = STATE(1392), + [sym__strong_emphasis_underscore] = STATE(47), + [aux_sym_insert_repeat1] = STATE(47), + [aux_sym__inline_base_repeat1] = STATE(375), + [sym__backslash_escape] = ACTIONS(1587), + [sym_entity_reference] = ACTIONS(1590), + [sym_numeric_character_reference] = ACTIONS(1590), + [anon_sym_LT] = ACTIONS(1593), + [anon_sym_GT] = ACTIONS(1596), + [anon_sym_BANG] = ACTIONS(1599), + [anon_sym_DQUOTE] = ACTIONS(1596), + [anon_sym_POUND] = ACTIONS(1596), + [anon_sym_DOLLAR] = ACTIONS(1596), + [anon_sym_PERCENT] = ACTIONS(1596), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_SQUOTE] = ACTIONS(1596), + [anon_sym_STAR] = ACTIONS(1596), + [anon_sym_PLUS] = ACTIONS(1596), + [anon_sym_COMMA] = ACTIONS(1596), + [anon_sym_DASH] = ACTIONS(1593), + [anon_sym_DOT] = ACTIONS(1593), + [anon_sym_SLASH] = ACTIONS(1596), + [anon_sym_COLON] = ACTIONS(1596), + [anon_sym_SEMI] = ACTIONS(1596), + [anon_sym_EQ] = ACTIONS(1596), + [anon_sym_QMARK] = ACTIONS(1596), + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_BSLASH] = ACTIONS(1605), + [anon_sym_CARET] = ACTIONS(1593), + [anon_sym__] = ACTIONS(1596), + [anon_sym_BQUOTE] = ACTIONS(1596), + [anon_sym_LBRACE] = ACTIONS(1608), + [anon_sym_PIPE] = ACTIONS(1596), + [anon_sym_TILDE] = ACTIONS(1596), + [anon_sym_LPAREN] = ACTIONS(1596), + [anon_sym_RPAREN] = ACTIONS(1596), + [sym__newline_token] = ACTIONS(1611), + [aux_sym_insert_token1] = ACTIONS(1614), + [aux_sym_delete_token1] = ACTIONS(1617), + [aux_sym_highlight_token1] = ACTIONS(1620), + [aux_sym_edit_comment_token1] = ACTIONS(1623), + [anon_sym_CARET_LBRACK] = ACTIONS(1626), + [anon_sym_LBRACK_CARET] = ACTIONS(1629), + [sym_uri_autolink] = ACTIONS(1590), + [sym_email_autolink] = ACTIONS(1590), + [sym__whitespace_ge_2] = ACTIONS(1632), + [aux_sym__whitespace_token1] = ACTIONS(1635), + [sym__word_no_digit] = ACTIONS(1638), + [sym__digits] = ACTIONS(1638), + [anon_sym_DASH_DASH] = ACTIONS(1641), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1638), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1638), + [sym__code_span_start] = ACTIONS(1644), + [sym__emphasis_open_star] = ACTIONS(1647), + [sym__emphasis_open_underscore] = ACTIONS(1650), + [sym__strikeout_open] = ACTIONS(1653), + [sym__latex_span_start] = ACTIONS(1656), + [sym__single_quote_open] = ACTIONS(1659), + [sym__single_quote_close] = ACTIONS(1302), + [sym__double_quote_open] = ACTIONS(1662), + [sym__superscript_open] = ACTIONS(1665), + [sym__subscript_open] = ACTIONS(1668), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1671), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1674), + [sym__cite_author_in_text] = ACTIONS(1677), + [sym__cite_suppress_author] = ACTIONS(1680), + [sym__shortcode_open_escaped] = ACTIONS(1683), + [sym__shortcode_open] = ACTIONS(1686), + [sym__unclosed_span] = ACTIONS(1590), }, [STATE(48)] = { - [sym_backslash_escape] = STATE(271), - [sym_commonmark_attribute] = STATE(271), - [sym_code_span] = STATE(271), - [sym_latex_span] = STATE(271), - [sym_superscript] = STATE(271), - [sym_subscript] = STATE(271), - [sym_strikeout] = STATE(271), - [sym_quoted_span] = STATE(271), - [sym_inline_note] = STATE(271), - [sym_citation] = STATE(271), - [sym_shortcode_escaped] = STATE(271), - [sym_shortcode] = STATE(271), - [sym_note_reference] = STATE(271), - [sym__link_text] = STATE(424), - [sym__link_text_non_empty] = STATE(425), - [sym_inline_link] = STATE(599), - [sym_image] = STATE(271), - [sym__image_inline_link] = STATE(883), - [sym__image_description] = STATE(1998), - [sym__image_description_non_empty] = STATE(1998), - [sym_hard_line_break] = STATE(271), - [sym__whitespace] = STATE(881), - [sym__word] = STATE(881), - [sym__soft_line_break] = STATE(884), - [sym__inline_base] = STATE(599), - [sym__text_base] = STATE(271), - [sym__inline_element] = STATE(599), - [aux_sym__inline] = STATE(48), - [sym__emphasis_star] = STATE(710), - [sym__strong_emphasis_star] = STATE(599), - [sym__emphasis_underscore] = STATE(710), - [sym__strong_emphasis_underscore] = STATE(599), - [aux_sym__inline_base_repeat1] = STATE(271), - [sym__backslash_escape] = ACTIONS(1379), - [sym_entity_reference] = ACTIONS(1382), - [sym_numeric_character_reference] = ACTIONS(1382), - [anon_sym_LT] = ACTIONS(1385), - [anon_sym_GT] = ACTIONS(1388), - [anon_sym_BANG] = ACTIONS(1391), - [anon_sym_DQUOTE] = ACTIONS(1388), - [anon_sym_POUND] = ACTIONS(1388), - [anon_sym_DOLLAR] = ACTIONS(1388), - [anon_sym_PERCENT] = ACTIONS(1388), - [anon_sym_AMP] = ACTIONS(1385), - [anon_sym_SQUOTE] = ACTIONS(1388), - [anon_sym_STAR] = ACTIONS(1388), - [anon_sym_PLUS] = ACTIONS(1388), - [anon_sym_COMMA] = ACTIONS(1388), - [anon_sym_DASH] = ACTIONS(1385), - [anon_sym_DOT] = ACTIONS(1385), - [anon_sym_SLASH] = ACTIONS(1388), - [anon_sym_COLON] = ACTIONS(1388), - [anon_sym_SEMI] = ACTIONS(1388), - [anon_sym_EQ] = ACTIONS(1388), - [anon_sym_QMARK] = ACTIONS(1388), - [anon_sym_LBRACK] = ACTIONS(1394), - [anon_sym_BSLASH] = ACTIONS(1397), - [anon_sym_RBRACK] = ACTIONS(877), - [anon_sym_CARET] = ACTIONS(1385), - [anon_sym__] = ACTIONS(1388), - [anon_sym_BQUOTE] = ACTIONS(1388), - [anon_sym_LBRACE] = ACTIONS(1400), - [anon_sym_PIPE] = ACTIONS(1388), - [anon_sym_TILDE] = ACTIONS(1388), - [anon_sym_LPAREN] = ACTIONS(1388), - [anon_sym_RPAREN] = ACTIONS(1388), - [sym__newline_token] = ACTIONS(1403), - [anon_sym_CARET_LBRACK] = ACTIONS(1406), - [anon_sym_LBRACK_CARET] = ACTIONS(1409), - [sym_uri_autolink] = ACTIONS(1382), - [sym_email_autolink] = ACTIONS(1382), - [sym__whitespace_ge_2] = ACTIONS(1412), - [aux_sym__whitespace_token1] = ACTIONS(1415), - [sym__word_no_digit] = ACTIONS(1418), - [sym__digits] = ACTIONS(1418), - [anon_sym_DASH_DASH] = ACTIONS(1421), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1418), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1418), - [sym__code_span_start] = ACTIONS(1424), - [sym__emphasis_open_star] = ACTIONS(1427), - [sym__emphasis_open_underscore] = ACTIONS(1430), - [sym__strikeout_open] = ACTIONS(1433), - [sym__latex_span_start] = ACTIONS(1436), - [sym__single_quote_open] = ACTIONS(1439), - [sym__double_quote_open] = ACTIONS(1442), - [sym__superscript_open] = ACTIONS(1445), - [sym__subscript_open] = ACTIONS(1448), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1451), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1454), - [sym__cite_author_in_text] = ACTIONS(1457), - [sym__cite_suppress_author] = ACTIONS(1460), - [sym__shortcode_open_escaped] = ACTIONS(1463), - [sym__shortcode_open] = ACTIONS(1466), - [sym__unclosed_span] = ACTIONS(1382), + [sym_backslash_escape] = STATE(372), + [sym_commonmark_attribute] = STATE(372), + [sym_code_span] = STATE(372), + [sym_latex_span] = STATE(372), + [sym_insert] = STATE(372), + [sym_delete] = STATE(372), + [sym_highlight] = STATE(372), + [sym_edit_comment] = STATE(372), + [sym_superscript] = STATE(372), + [sym_subscript] = STATE(372), + [sym_strikeout] = STATE(372), + [sym_quoted_span] = STATE(372), + [sym_inline_note] = STATE(372), + [sym_citation] = STATE(372), + [sym_shortcode_escaped] = STATE(372), + [sym_shortcode] = STATE(372), + [sym_note_reference] = STATE(372), + [sym__link_text] = STATE(454), + [sym__link_text_non_empty] = STATE(455), + [sym_inline_link] = STATE(279), + [sym_image] = STATE(372), + [sym__image_inline_link] = STATE(1025), + [sym__image_description] = STATE(2356), + [sym__image_description_non_empty] = STATE(2356), + [sym_hard_line_break] = STATE(372), + [sym__whitespace] = STATE(1022), + [sym__word] = STATE(1022), + [sym__soft_line_break] = STATE(1026), + [sym__inline_base] = STATE(279), + [sym__text_base] = STATE(372), + [sym__inline_element] = STATE(279), + [sym__emphasis_star] = STATE(714), + [sym__strong_emphasis_star] = STATE(279), + [sym__emphasis_underscore] = STATE(714), + [sym__strong_emphasis_underscore] = STATE(279), + [aux_sym_insert_repeat1] = STATE(279), + [aux_sym__inline_base_repeat1] = STATE(372), + [sym__backslash_escape] = ACTIONS(707), + [sym_entity_reference] = ACTIONS(709), + [sym_numeric_character_reference] = ACTIONS(709), + [anon_sym_LT] = ACTIONS(711), + [anon_sym_GT] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(715), + [anon_sym_DQUOTE] = ACTIONS(713), + [anon_sym_POUND] = ACTIONS(713), + [anon_sym_DOLLAR] = ACTIONS(713), + [anon_sym_PERCENT] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(711), + [anon_sym_SQUOTE] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_COMMA] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_DOT] = ACTIONS(711), + [anon_sym_SLASH] = ACTIONS(713), + [anon_sym_COLON] = ACTIONS(713), + [anon_sym_SEMI] = ACTIONS(713), + [anon_sym_EQ] = ACTIONS(713), + [anon_sym_QMARK] = ACTIONS(713), + [anon_sym_LBRACK] = ACTIONS(717), + [anon_sym_BSLASH] = ACTIONS(719), + [anon_sym_CARET] = ACTIONS(711), + [anon_sym__] = ACTIONS(713), + [anon_sym_BQUOTE] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(721), + [anon_sym_PIPE] = ACTIONS(713), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_LPAREN] = ACTIONS(713), + [anon_sym_RPAREN] = ACTIONS(713), + [sym__newline_token] = ACTIONS(723), + [aux_sym_insert_token1] = ACTIONS(725), + [aux_sym_insert_token2] = ACTIONS(1689), + [aux_sym_delete_token1] = ACTIONS(729), + [aux_sym_highlight_token1] = ACTIONS(731), + [aux_sym_edit_comment_token1] = ACTIONS(733), + [anon_sym_CARET_LBRACK] = ACTIONS(735), + [anon_sym_LBRACK_CARET] = ACTIONS(737), + [sym_uri_autolink] = ACTIONS(709), + [sym_email_autolink] = ACTIONS(709), + [sym__whitespace_ge_2] = ACTIONS(739), + [aux_sym__whitespace_token1] = ACTIONS(741), + [sym__word_no_digit] = ACTIONS(743), + [sym__digits] = ACTIONS(743), + [anon_sym_DASH_DASH] = ACTIONS(745), + [anon_sym_DASH_DASH_DASH] = ACTIONS(743), + [anon_sym_DOT_DOT_DOT] = ACTIONS(743), + [sym__code_span_start] = ACTIONS(747), + [sym__emphasis_open_star] = ACTIONS(749), + [sym__emphasis_open_underscore] = ACTIONS(751), + [sym__strikeout_open] = ACTIONS(753), + [sym__latex_span_start] = ACTIONS(755), + [sym__single_quote_open] = ACTIONS(757), + [sym__double_quote_open] = ACTIONS(759), + [sym__superscript_open] = ACTIONS(761), + [sym__subscript_open] = ACTIONS(763), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(765), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(767), + [sym__cite_author_in_text] = ACTIONS(769), + [sym__cite_suppress_author] = ACTIONS(771), + [sym__shortcode_open_escaped] = ACTIONS(773), + [sym__shortcode_open] = ACTIONS(775), + [sym__unclosed_span] = ACTIONS(709), }, [STATE(49)] = { - [sym_backslash_escape] = STATE(272), - [sym_commonmark_attribute] = STATE(272), - [sym_code_span] = STATE(272), - [sym_latex_span] = STATE(272), - [sym_superscript] = STATE(272), - [sym_subscript] = STATE(272), - [sym_strikeout] = STATE(272), - [sym_quoted_span] = STATE(272), - [sym_inline_note] = STATE(272), - [sym_citation] = STATE(272), - [sym_shortcode_escaped] = STATE(272), - [sym_shortcode] = STATE(272), - [sym_note_reference] = STATE(272), - [sym__link_text] = STATE(401), - [sym__link_text_non_empty] = STATE(402), - [sym_inline_link] = STATE(49), - [sym_image] = STATE(272), - [sym__image_inline_link] = STATE(1136), - [sym__image_description] = STATE(1942), - [sym__image_description_non_empty] = STATE(1942), - [sym_hard_line_break] = STATE(272), - [sym__whitespace] = STATE(1133), - [sym__word] = STATE(1133), - [sym__soft_line_break] = STATE(1137), - [sym__inline_base] = STATE(49), - [sym__text_base] = STATE(272), - [sym__inline_element] = STATE(49), - [sym__emphasis_star] = STATE(902), - [sym__strong_emphasis_star] = STATE(49), - [sym__emphasis_underscore] = STATE(902), - [sym__strong_emphasis_underscore] = STATE(49), - [aux_sym_superscript_repeat1] = STATE(49), - [aux_sym__inline_base_repeat1] = STATE(272), - [sym__backslash_escape] = ACTIONS(1469), - [sym_entity_reference] = ACTIONS(1472), - [sym_numeric_character_reference] = ACTIONS(1472), - [anon_sym_LT] = ACTIONS(1475), - [anon_sym_GT] = ACTIONS(1478), - [anon_sym_BANG] = ACTIONS(1481), - [anon_sym_DQUOTE] = ACTIONS(1478), - [anon_sym_POUND] = ACTIONS(1478), - [anon_sym_DOLLAR] = ACTIONS(1478), - [anon_sym_PERCENT] = ACTIONS(1478), - [anon_sym_AMP] = ACTIONS(1475), - [anon_sym_SQUOTE] = ACTIONS(1478), - [anon_sym_STAR] = ACTIONS(1478), - [anon_sym_PLUS] = ACTIONS(1478), - [anon_sym_COMMA] = ACTIONS(1478), - [anon_sym_DASH] = ACTIONS(1475), - [anon_sym_DOT] = ACTIONS(1475), - [anon_sym_SLASH] = ACTIONS(1478), - [anon_sym_COLON] = ACTIONS(1478), - [anon_sym_SEMI] = ACTIONS(1478), - [anon_sym_EQ] = ACTIONS(1478), - [anon_sym_QMARK] = ACTIONS(1478), - [anon_sym_LBRACK] = ACTIONS(1484), - [anon_sym_BSLASH] = ACTIONS(1487), - [anon_sym_CARET] = ACTIONS(1475), - [anon_sym__] = ACTIONS(1478), - [anon_sym_BQUOTE] = ACTIONS(1478), - [anon_sym_LBRACE] = ACTIONS(1490), - [anon_sym_PIPE] = ACTIONS(1478), - [anon_sym_TILDE] = ACTIONS(1478), - [anon_sym_LPAREN] = ACTIONS(1478), - [anon_sym_RPAREN] = ACTIONS(1478), - [sym__newline_token] = ACTIONS(1493), - [anon_sym_CARET_LBRACK] = ACTIONS(1496), - [anon_sym_LBRACK_CARET] = ACTIONS(1499), - [sym_uri_autolink] = ACTIONS(1472), - [sym_email_autolink] = ACTIONS(1472), - [sym__whitespace_ge_2] = ACTIONS(1502), - [aux_sym__whitespace_token1] = ACTIONS(1505), - [sym__word_no_digit] = ACTIONS(1508), - [sym__digits] = ACTIONS(1508), - [anon_sym_DASH_DASH] = ACTIONS(1511), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1508), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1508), - [sym__code_span_start] = ACTIONS(1514), - [sym__emphasis_open_star] = ACTIONS(1517), - [sym__emphasis_open_underscore] = ACTIONS(1520), - [sym__strikeout_open] = ACTIONS(1523), - [sym__latex_span_start] = ACTIONS(1526), - [sym__single_quote_open] = ACTIONS(1529), - [sym__single_quote_close] = ACTIONS(1334), - [sym__double_quote_open] = ACTIONS(1532), - [sym__superscript_open] = ACTIONS(1535), - [sym__subscript_open] = ACTIONS(1538), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1541), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1544), - [sym__cite_author_in_text] = ACTIONS(1547), - [sym__cite_suppress_author] = ACTIONS(1550), - [sym__shortcode_open_escaped] = ACTIONS(1553), - [sym__shortcode_open] = ACTIONS(1556), - [sym__unclosed_span] = ACTIONS(1472), + [sym_backslash_escape] = STATE(372), + [sym_commonmark_attribute] = STATE(372), + [sym_code_span] = STATE(372), + [sym_latex_span] = STATE(372), + [sym_insert] = STATE(372), + [sym_delete] = STATE(372), + [sym_highlight] = STATE(372), + [sym_edit_comment] = STATE(372), + [sym_superscript] = STATE(372), + [sym_subscript] = STATE(372), + [sym_strikeout] = STATE(372), + [sym_quoted_span] = STATE(372), + [sym_inline_note] = STATE(372), + [sym_citation] = STATE(372), + [sym_shortcode_escaped] = STATE(372), + [sym_shortcode] = STATE(372), + [sym_note_reference] = STATE(372), + [sym__link_text] = STATE(454), + [sym__link_text_non_empty] = STATE(455), + [sym_inline_link] = STATE(183), + [sym_image] = STATE(372), + [sym__image_inline_link] = STATE(1025), + [sym__image_description] = STATE(2356), + [sym__image_description_non_empty] = STATE(2356), + [sym_hard_line_break] = STATE(372), + [sym__whitespace] = STATE(1022), + [sym__word] = STATE(1022), + [sym__soft_line_break] = STATE(1026), + [sym__inline_base] = STATE(183), + [sym__text_base] = STATE(372), + [sym__inline_element] = STATE(183), + [sym__emphasis_star] = STATE(714), + [sym__strong_emphasis_star] = STATE(183), + [sym__emphasis_underscore] = STATE(714), + [sym__strong_emphasis_underscore] = STATE(183), + [aux_sym_insert_repeat1] = STATE(183), + [aux_sym__inline_base_repeat1] = STATE(372), + [sym__backslash_escape] = ACTIONS(707), + [sym_entity_reference] = ACTIONS(709), + [sym_numeric_character_reference] = ACTIONS(709), + [anon_sym_LT] = ACTIONS(711), + [anon_sym_GT] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(715), + [anon_sym_DQUOTE] = ACTIONS(713), + [anon_sym_POUND] = ACTIONS(713), + [anon_sym_DOLLAR] = ACTIONS(713), + [anon_sym_PERCENT] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(711), + [anon_sym_SQUOTE] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_COMMA] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_DOT] = ACTIONS(711), + [anon_sym_SLASH] = ACTIONS(713), + [anon_sym_COLON] = ACTIONS(713), + [anon_sym_SEMI] = ACTIONS(713), + [anon_sym_EQ] = ACTIONS(713), + [anon_sym_QMARK] = ACTIONS(713), + [anon_sym_LBRACK] = ACTIONS(717), + [anon_sym_BSLASH] = ACTIONS(719), + [anon_sym_CARET] = ACTIONS(711), + [anon_sym__] = ACTIONS(713), + [anon_sym_BQUOTE] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(721), + [anon_sym_PIPE] = ACTIONS(713), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_LPAREN] = ACTIONS(713), + [anon_sym_RPAREN] = ACTIONS(713), + [sym__newline_token] = ACTIONS(723), + [aux_sym_insert_token1] = ACTIONS(725), + [aux_sym_insert_token2] = ACTIONS(1691), + [aux_sym_delete_token1] = ACTIONS(729), + [aux_sym_highlight_token1] = ACTIONS(731), + [aux_sym_edit_comment_token1] = ACTIONS(733), + [anon_sym_CARET_LBRACK] = ACTIONS(735), + [anon_sym_LBRACK_CARET] = ACTIONS(737), + [sym_uri_autolink] = ACTIONS(709), + [sym_email_autolink] = ACTIONS(709), + [sym__whitespace_ge_2] = ACTIONS(739), + [aux_sym__whitespace_token1] = ACTIONS(741), + [sym__word_no_digit] = ACTIONS(743), + [sym__digits] = ACTIONS(743), + [anon_sym_DASH_DASH] = ACTIONS(745), + [anon_sym_DASH_DASH_DASH] = ACTIONS(743), + [anon_sym_DOT_DOT_DOT] = ACTIONS(743), + [sym__code_span_start] = ACTIONS(747), + [sym__emphasis_open_star] = ACTIONS(749), + [sym__emphasis_open_underscore] = ACTIONS(751), + [sym__strikeout_open] = ACTIONS(753), + [sym__latex_span_start] = ACTIONS(755), + [sym__single_quote_open] = ACTIONS(757), + [sym__double_quote_open] = ACTIONS(759), + [sym__superscript_open] = ACTIONS(761), + [sym__subscript_open] = ACTIONS(763), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(765), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(767), + [sym__cite_author_in_text] = ACTIONS(769), + [sym__cite_suppress_author] = ACTIONS(771), + [sym__shortcode_open_escaped] = ACTIONS(773), + [sym__shortcode_open] = ACTIONS(775), + [sym__unclosed_span] = ACTIONS(709), }, [STATE(50)] = { - [sym_backslash_escape] = STATE(277), - [sym_commonmark_attribute] = STATE(277), - [sym_code_span] = STATE(277), - [sym_latex_span] = STATE(277), - [sym_superscript] = STATE(277), - [sym_subscript] = STATE(277), - [sym_strikeout] = STATE(277), - [sym_quoted_span] = STATE(277), - [sym_inline_note] = STATE(277), - [sym_citation] = STATE(277), - [sym_shortcode_escaped] = STATE(277), - [sym_shortcode] = STATE(277), - [sym_note_reference] = STATE(277), - [sym__link_text] = STATE(427), - [sym__link_text_non_empty] = STATE(428), + [sym_backslash_escape] = STATE(383), + [sym_commonmark_attribute] = STATE(383), + [sym_code_span] = STATE(383), + [sym_latex_span] = STATE(383), + [sym_insert] = STATE(383), + [sym_delete] = STATE(383), + [sym_highlight] = STATE(383), + [sym_edit_comment] = STATE(383), + [sym_superscript] = STATE(383), + [sym_subscript] = STATE(383), + [sym_strikeout] = STATE(383), + [sym_quoted_span] = STATE(383), + [sym_inline_note] = STATE(383), + [sym_citation] = STATE(383), + [sym_shortcode_escaped] = STATE(383), + [sym_shortcode] = STATE(383), + [sym_note_reference] = STATE(383), + [sym__link_text] = STATE(395), + [sym__link_text_non_empty] = STATE(396), [sym_inline_link] = STATE(50), - [sym_image] = STATE(277), - [sym__image_inline_link] = STATE(613), - [sym__image_description] = STATE(1930), - [sym__image_description_non_empty] = STATE(1930), - [sym_hard_line_break] = STATE(277), - [sym__whitespace] = STATE(610), - [sym__word] = STATE(610), - [sym__soft_line_break] = STATE(614), + [sym_image] = STATE(383), + [sym__image_inline_link] = STATE(1263), + [sym__image_description] = STATE(2300), + [sym__image_description_non_empty] = STATE(2300), + [sym_hard_line_break] = STATE(383), + [sym__whitespace] = STATE(1259), + [sym__word] = STATE(1259), + [sym__soft_line_break] = STATE(1264), [sym__inline_base] = STATE(50), - [sym__text_base] = STATE(277), + [sym__text_base] = STATE(383), [sym__inline_element] = STATE(50), - [sym__emphasis_star] = STATE(1044), + [sym__emphasis_star] = STATE(1249), [sym__strong_emphasis_star] = STATE(50), - [sym__emphasis_underscore] = STATE(1044), + [sym__emphasis_underscore] = STATE(1249), [sym__strong_emphasis_underscore] = STATE(50), - [aux_sym_superscript_repeat1] = STATE(50), - [aux_sym__inline_base_repeat1] = STATE(277), - [sym__backslash_escape] = ACTIONS(1559), - [sym_entity_reference] = ACTIONS(1562), - [sym_numeric_character_reference] = ACTIONS(1562), - [anon_sym_LT] = ACTIONS(1565), - [anon_sym_GT] = ACTIONS(1568), - [anon_sym_BANG] = ACTIONS(1571), - [anon_sym_DQUOTE] = ACTIONS(1568), - [anon_sym_POUND] = ACTIONS(1568), - [anon_sym_DOLLAR] = ACTIONS(1568), - [anon_sym_PERCENT] = ACTIONS(1568), - [anon_sym_AMP] = ACTIONS(1565), - [anon_sym_SQUOTE] = ACTIONS(1568), - [anon_sym_STAR] = ACTIONS(1568), - [anon_sym_PLUS] = ACTIONS(1568), - [anon_sym_COMMA] = ACTIONS(1568), - [anon_sym_DASH] = ACTIONS(1565), - [anon_sym_DOT] = ACTIONS(1565), - [anon_sym_SLASH] = ACTIONS(1568), - [anon_sym_COLON] = ACTIONS(1568), - [anon_sym_SEMI] = ACTIONS(1568), - [anon_sym_EQ] = ACTIONS(1568), - [anon_sym_QMARK] = ACTIONS(1568), - [anon_sym_LBRACK] = ACTIONS(1574), - [anon_sym_BSLASH] = ACTIONS(1577), - [anon_sym_CARET] = ACTIONS(1565), - [anon_sym__] = ACTIONS(1568), - [anon_sym_BQUOTE] = ACTIONS(1568), - [anon_sym_LBRACE] = ACTIONS(1580), - [anon_sym_PIPE] = ACTIONS(1568), - [anon_sym_TILDE] = ACTIONS(1568), - [anon_sym_LPAREN] = ACTIONS(1568), - [anon_sym_RPAREN] = ACTIONS(1568), - [sym__newline_token] = ACTIONS(1583), - [anon_sym_CARET_LBRACK] = ACTIONS(1586), - [anon_sym_LBRACK_CARET] = ACTIONS(1589), - [sym_uri_autolink] = ACTIONS(1562), - [sym_email_autolink] = ACTIONS(1562), - [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__strikeout_open] = ACTIONS(1613), - [sym__latex_span_start] = ACTIONS(1616), - [sym__single_quote_open] = ACTIONS(1619), - [sym__double_quote_open] = ACTIONS(1622), - [sym__double_quote_close] = ACTIONS(1334), - [sym__superscript_open] = ACTIONS(1625), - [sym__subscript_open] = ACTIONS(1628), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1631), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1634), - [sym__cite_author_in_text] = ACTIONS(1637), - [sym__cite_suppress_author] = ACTIONS(1640), - [sym__shortcode_open_escaped] = ACTIONS(1643), - [sym__shortcode_open] = ACTIONS(1646), - [sym__unclosed_span] = ACTIONS(1562), + [aux_sym_insert_repeat1] = STATE(50), + [aux_sym__inline_base_repeat1] = STATE(383), + [sym__backslash_escape] = ACTIONS(1693), + [sym_entity_reference] = ACTIONS(1696), + [sym_numeric_character_reference] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1699), + [anon_sym_GT] = ACTIONS(1702), + [anon_sym_BANG] = ACTIONS(1705), + [anon_sym_DQUOTE] = ACTIONS(1702), + [anon_sym_POUND] = ACTIONS(1702), + [anon_sym_DOLLAR] = ACTIONS(1702), + [anon_sym_PERCENT] = ACTIONS(1702), + [anon_sym_AMP] = ACTIONS(1699), + [anon_sym_SQUOTE] = ACTIONS(1702), + [anon_sym_STAR] = ACTIONS(1702), + [anon_sym_PLUS] = ACTIONS(1702), + [anon_sym_COMMA] = ACTIONS(1702), + [anon_sym_DASH] = ACTIONS(1699), + [anon_sym_DOT] = ACTIONS(1699), + [anon_sym_SLASH] = ACTIONS(1702), + [anon_sym_COLON] = ACTIONS(1702), + [anon_sym_SEMI] = ACTIONS(1702), + [anon_sym_EQ] = ACTIONS(1702), + [anon_sym_QMARK] = ACTIONS(1702), + [anon_sym_LBRACK] = ACTIONS(1708), + [anon_sym_BSLASH] = ACTIONS(1711), + [anon_sym_CARET] = ACTIONS(1699), + [anon_sym__] = ACTIONS(1702), + [anon_sym_BQUOTE] = ACTIONS(1702), + [anon_sym_LBRACE] = ACTIONS(1714), + [anon_sym_PIPE] = ACTIONS(1702), + [anon_sym_TILDE] = ACTIONS(1702), + [anon_sym_LPAREN] = ACTIONS(1702), + [anon_sym_RPAREN] = ACTIONS(1702), + [sym__newline_token] = ACTIONS(1717), + [aux_sym_insert_token1] = ACTIONS(1720), + [aux_sym_delete_token1] = ACTIONS(1723), + [aux_sym_highlight_token1] = ACTIONS(1726), + [aux_sym_edit_comment_token1] = ACTIONS(1729), + [anon_sym_CARET_LBRACK] = ACTIONS(1732), + [anon_sym_LBRACK_CARET] = ACTIONS(1735), + [sym_uri_autolink] = ACTIONS(1696), + [sym_email_autolink] = ACTIONS(1696), + [sym__whitespace_ge_2] = ACTIONS(1738), + [aux_sym__whitespace_token1] = ACTIONS(1741), + [sym__word_no_digit] = ACTIONS(1744), + [sym__digits] = ACTIONS(1744), + [anon_sym_DASH_DASH] = ACTIONS(1747), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1744), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1744), + [sym__code_span_start] = ACTIONS(1750), + [sym__emphasis_open_star] = ACTIONS(1753), + [sym__emphasis_open_underscore] = ACTIONS(1756), + [sym__strikeout_open] = ACTIONS(1759), + [sym__latex_span_start] = ACTIONS(1762), + [sym__single_quote_open] = ACTIONS(1765), + [sym__double_quote_open] = ACTIONS(1768), + [sym__double_quote_close] = ACTIONS(1302), + [sym__superscript_open] = ACTIONS(1771), + [sym__subscript_open] = ACTIONS(1774), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1777), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1780), + [sym__cite_author_in_text] = ACTIONS(1783), + [sym__cite_suppress_author] = ACTIONS(1786), + [sym__shortcode_open_escaped] = ACTIONS(1789), + [sym__shortcode_open] = ACTIONS(1792), + [sym__unclosed_span] = ACTIONS(1696), }, [STATE(51)] = { - [sym_backslash_escape] = STATE(262), - [sym_commonmark_attribute] = STATE(262), - [sym_code_span] = STATE(262), - [sym_latex_span] = STATE(262), - [sym_superscript] = STATE(262), - [sym_subscript] = STATE(262), - [sym_strikeout] = STATE(262), - [sym_quoted_span] = STATE(262), - [sym_inline_note] = STATE(262), - [sym_citation] = STATE(262), - [sym_shortcode_escaped] = STATE(262), - [sym_shortcode] = STATE(262), - [sym_note_reference] = STATE(262), - [sym__link_text] = STATE(313), - [sym__link_text_non_empty] = STATE(314), - [sym_inline_link] = STATE(51), - [sym_image] = STATE(262), - [sym__image_inline_link] = STATE(708), - [sym__image_description] = STATE(1970), - [sym__image_description_non_empty] = STATE(1970), - [sym_hard_line_break] = STATE(262), - [sym__whitespace] = STATE(705), - [sym__word] = STATE(705), - [sym__soft_line_break] = STATE(709), - [sym__inline_base] = STATE(51), - [sym__text_base] = STATE(262), - [sym__inline_element] = STATE(51), - [sym__emphasis_star] = STATE(1138), - [sym__strong_emphasis_star] = STATE(51), - [sym__emphasis_underscore] = STATE(1138), - [sym__strong_emphasis_underscore] = STATE(51), - [aux_sym_superscript_repeat1] = STATE(51), - [aux_sym__inline_base_repeat1] = STATE(262), - [sym__backslash_escape] = ACTIONS(1649), - [sym_entity_reference] = ACTIONS(1652), - [sym_numeric_character_reference] = ACTIONS(1652), - [anon_sym_LT] = ACTIONS(1655), - [anon_sym_GT] = ACTIONS(1658), - [anon_sym_BANG] = ACTIONS(1661), - [anon_sym_DQUOTE] = ACTIONS(1658), - [anon_sym_POUND] = ACTIONS(1658), - [anon_sym_DOLLAR] = ACTIONS(1658), - [anon_sym_PERCENT] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1655), - [anon_sym_SQUOTE] = ACTIONS(1658), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_PLUS] = ACTIONS(1658), - [anon_sym_COMMA] = ACTIONS(1658), - [anon_sym_DASH] = ACTIONS(1655), - [anon_sym_DOT] = ACTIONS(1655), - [anon_sym_SLASH] = ACTIONS(1658), - [anon_sym_COLON] = ACTIONS(1658), - [anon_sym_SEMI] = ACTIONS(1658), - [anon_sym_EQ] = ACTIONS(1658), - [anon_sym_QMARK] = ACTIONS(1658), - [anon_sym_LBRACK] = ACTIONS(1664), - [anon_sym_BSLASH] = ACTIONS(1667), - [anon_sym_CARET] = ACTIONS(1655), - [anon_sym__] = ACTIONS(1658), - [anon_sym_BQUOTE] = ACTIONS(1658), - [anon_sym_LBRACE] = ACTIONS(1670), - [anon_sym_PIPE] = ACTIONS(1658), - [anon_sym_TILDE] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(1658), - [anon_sym_RPAREN] = ACTIONS(1658), - [sym__newline_token] = ACTIONS(1673), - [anon_sym_CARET_LBRACK] = ACTIONS(1676), - [anon_sym_LBRACK_CARET] = ACTIONS(1679), - [sym_uri_autolink] = ACTIONS(1652), - [sym_email_autolink] = ACTIONS(1652), - [sym__whitespace_ge_2] = ACTIONS(1682), - [aux_sym__whitespace_token1] = ACTIONS(1685), - [sym__word_no_digit] = ACTIONS(1688), - [sym__digits] = ACTIONS(1688), - [anon_sym_DASH_DASH] = ACTIONS(1691), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1688), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1688), - [sym__code_span_start] = ACTIONS(1694), - [sym__emphasis_open_star] = ACTIONS(1697), - [sym__emphasis_open_underscore] = ACTIONS(1700), - [sym__strikeout_open] = ACTIONS(1703), - [sym__latex_span_start] = ACTIONS(1706), - [sym__single_quote_open] = ACTIONS(1709), - [sym__double_quote_open] = ACTIONS(1712), - [sym__superscript_open] = ACTIONS(1715), - [sym__superscript_close] = ACTIONS(1334), - [sym__subscript_open] = ACTIONS(1718), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1721), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1724), - [sym__cite_author_in_text] = ACTIONS(1727), - [sym__cite_suppress_author] = ACTIONS(1730), - [sym__shortcode_open_escaped] = ACTIONS(1733), - [sym__shortcode_open] = ACTIONS(1736), - [sym__unclosed_span] = ACTIONS(1652), + [sym_backslash_escape] = STATE(372), + [sym_commonmark_attribute] = STATE(372), + [sym_code_span] = STATE(372), + [sym_latex_span] = STATE(372), + [sym_insert] = STATE(372), + [sym_delete] = STATE(372), + [sym_highlight] = STATE(372), + [sym_edit_comment] = STATE(372), + [sym_superscript] = STATE(372), + [sym_subscript] = STATE(372), + [sym_strikeout] = STATE(372), + [sym_quoted_span] = STATE(372), + [sym_inline_note] = STATE(372), + [sym_citation] = STATE(372), + [sym_shortcode_escaped] = STATE(372), + [sym_shortcode] = STATE(372), + [sym_note_reference] = STATE(372), + [sym__link_text] = STATE(454), + [sym__link_text_non_empty] = STATE(455), + [sym_inline_link] = STATE(31), + [sym_image] = STATE(372), + [sym__image_inline_link] = STATE(1025), + [sym__image_description] = STATE(2356), + [sym__image_description_non_empty] = STATE(2356), + [sym_hard_line_break] = STATE(372), + [sym__whitespace] = STATE(1022), + [sym__word] = STATE(1022), + [sym__soft_line_break] = STATE(1026), + [sym__inline_base] = STATE(31), + [sym__text_base] = STATE(372), + [sym__inline_element] = STATE(31), + [sym__emphasis_star] = STATE(714), + [sym__strong_emphasis_star] = STATE(31), + [sym__emphasis_underscore] = STATE(714), + [sym__strong_emphasis_underscore] = STATE(31), + [aux_sym_insert_repeat1] = STATE(31), + [aux_sym__inline_base_repeat1] = STATE(372), + [sym__backslash_escape] = ACTIONS(707), + [sym_entity_reference] = ACTIONS(709), + [sym_numeric_character_reference] = ACTIONS(709), + [anon_sym_LT] = ACTIONS(711), + [anon_sym_GT] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(715), + [anon_sym_DQUOTE] = ACTIONS(713), + [anon_sym_POUND] = ACTIONS(713), + [anon_sym_DOLLAR] = ACTIONS(713), + [anon_sym_PERCENT] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(711), + [anon_sym_SQUOTE] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_COMMA] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_DOT] = ACTIONS(711), + [anon_sym_SLASH] = ACTIONS(713), + [anon_sym_COLON] = ACTIONS(713), + [anon_sym_SEMI] = ACTIONS(713), + [anon_sym_EQ] = ACTIONS(713), + [anon_sym_QMARK] = ACTIONS(713), + [anon_sym_LBRACK] = ACTIONS(717), + [anon_sym_BSLASH] = ACTIONS(719), + [anon_sym_CARET] = ACTIONS(711), + [anon_sym__] = ACTIONS(713), + [anon_sym_BQUOTE] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(721), + [anon_sym_PIPE] = ACTIONS(713), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_LPAREN] = ACTIONS(713), + [anon_sym_RPAREN] = ACTIONS(713), + [sym__newline_token] = ACTIONS(723), + [aux_sym_insert_token1] = ACTIONS(725), + [aux_sym_insert_token2] = ACTIONS(1795), + [aux_sym_delete_token1] = ACTIONS(729), + [aux_sym_highlight_token1] = ACTIONS(731), + [aux_sym_edit_comment_token1] = ACTIONS(733), + [anon_sym_CARET_LBRACK] = ACTIONS(735), + [anon_sym_LBRACK_CARET] = ACTIONS(737), + [sym_uri_autolink] = ACTIONS(709), + [sym_email_autolink] = ACTIONS(709), + [sym__whitespace_ge_2] = ACTIONS(739), + [aux_sym__whitespace_token1] = ACTIONS(741), + [sym__word_no_digit] = ACTIONS(743), + [sym__digits] = ACTIONS(743), + [anon_sym_DASH_DASH] = ACTIONS(745), + [anon_sym_DASH_DASH_DASH] = ACTIONS(743), + [anon_sym_DOT_DOT_DOT] = ACTIONS(743), + [sym__code_span_start] = ACTIONS(747), + [sym__emphasis_open_star] = ACTIONS(749), + [sym__emphasis_open_underscore] = ACTIONS(751), + [sym__strikeout_open] = ACTIONS(753), + [sym__latex_span_start] = ACTIONS(755), + [sym__single_quote_open] = ACTIONS(757), + [sym__double_quote_open] = ACTIONS(759), + [sym__superscript_open] = ACTIONS(761), + [sym__subscript_open] = ACTIONS(763), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(765), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(767), + [sym__cite_author_in_text] = ACTIONS(769), + [sym__cite_suppress_author] = ACTIONS(771), + [sym__shortcode_open_escaped] = ACTIONS(773), + [sym__shortcode_open] = ACTIONS(775), + [sym__unclosed_span] = ACTIONS(709), }, [STATE(52)] = { - [sym_backslash_escape] = STATE(270), - [sym_commonmark_attribute] = STATE(270), - [sym_code_span] = STATE(270), - [sym_latex_span] = STATE(270), - [sym_superscript] = STATE(270), - [sym_subscript] = STATE(270), - [sym_strikeout] = STATE(270), - [sym_quoted_span] = STATE(270), - [sym_inline_note] = STATE(270), - [sym_citation] = STATE(270), - [sym_shortcode_escaped] = STATE(270), - [sym_shortcode] = STATE(270), - [sym_note_reference] = STATE(270), - [sym__link_text] = STATE(359), - [sym__link_text_non_empty] = STATE(364), + [sym_backslash_escape] = STATE(365), + [sym_commonmark_attribute] = STATE(365), + [sym_code_span] = STATE(365), + [sym_latex_span] = STATE(365), + [sym_insert] = STATE(365), + [sym_delete] = STATE(365), + [sym_highlight] = STATE(365), + [sym_edit_comment] = STATE(365), + [sym_superscript] = STATE(365), + [sym_subscript] = STATE(365), + [sym_strikeout] = STATE(365), + [sym_quoted_span] = STATE(365), + [sym_inline_note] = STATE(365), + [sym_citation] = STATE(365), + [sym_shortcode_escaped] = STATE(365), + [sym_shortcode] = STATE(365), + [sym_note_reference] = STATE(365), + [sym__link_text] = STATE(416), + [sym__link_text_non_empty] = STATE(417), [sym_inline_link] = STATE(52), - [sym_image] = STATE(270), - [sym__image_inline_link] = STATE(795), - [sym__image_description] = STATE(1984), - [sym__image_description_non_empty] = STATE(1984), - [sym_hard_line_break] = STATE(270), - [sym__whitespace] = STATE(792), - [sym__word] = STATE(792), - [sym__soft_line_break] = STATE(796), + [sym_image] = STATE(365), + [sym__image_inline_link] = STATE(712), + [sym__image_description] = STATE(2314), + [sym__image_description_non_empty] = STATE(2314), + [sym_hard_line_break] = STATE(365), + [sym__whitespace] = STATE(709), + [sym__word] = STATE(709), + [sym__soft_line_break] = STATE(713), [sym__inline_base] = STATE(52), - [sym__text_base] = STATE(270), + [sym__text_base] = STATE(365), [sym__inline_element] = STATE(52), - [sym__emphasis_star] = STATE(615), + [sym__emphasis_star] = STATE(979), [sym__strong_emphasis_star] = STATE(52), - [sym__emphasis_underscore] = STATE(615), + [sym__emphasis_underscore] = STATE(979), [sym__strong_emphasis_underscore] = STATE(52), - [aux_sym_superscript_repeat1] = STATE(52), - [aux_sym__inline_base_repeat1] = STATE(270), - [sym__backslash_escape] = ACTIONS(1739), - [sym_entity_reference] = ACTIONS(1742), - [sym_numeric_character_reference] = ACTIONS(1742), - [anon_sym_LT] = ACTIONS(1745), - [anon_sym_GT] = ACTIONS(1748), - [anon_sym_BANG] = ACTIONS(1751), - [anon_sym_DQUOTE] = ACTIONS(1748), - [anon_sym_POUND] = ACTIONS(1748), - [anon_sym_DOLLAR] = ACTIONS(1748), - [anon_sym_PERCENT] = ACTIONS(1748), - [anon_sym_AMP] = ACTIONS(1745), - [anon_sym_SQUOTE] = ACTIONS(1748), - [anon_sym_STAR] = ACTIONS(1748), - [anon_sym_PLUS] = ACTIONS(1748), - [anon_sym_COMMA] = ACTIONS(1748), - [anon_sym_DASH] = ACTIONS(1745), - [anon_sym_DOT] = ACTIONS(1745), - [anon_sym_SLASH] = ACTIONS(1748), - [anon_sym_COLON] = ACTIONS(1748), - [anon_sym_SEMI] = ACTIONS(1748), - [anon_sym_EQ] = ACTIONS(1748), - [anon_sym_QMARK] = ACTIONS(1748), - [anon_sym_LBRACK] = ACTIONS(1754), - [anon_sym_BSLASH] = ACTIONS(1757), - [anon_sym_CARET] = ACTIONS(1745), - [anon_sym__] = ACTIONS(1748), - [anon_sym_BQUOTE] = ACTIONS(1748), - [anon_sym_LBRACE] = ACTIONS(1760), - [anon_sym_PIPE] = ACTIONS(1748), - [anon_sym_TILDE] = ACTIONS(1748), - [anon_sym_LPAREN] = ACTIONS(1748), - [anon_sym_RPAREN] = ACTIONS(1748), - [sym__newline_token] = ACTIONS(1763), - [anon_sym_CARET_LBRACK] = ACTIONS(1766), - [anon_sym_LBRACK_CARET] = ACTIONS(1769), - [sym_uri_autolink] = ACTIONS(1742), - [sym_email_autolink] = ACTIONS(1742), - [sym__whitespace_ge_2] = ACTIONS(1772), - [aux_sym__whitespace_token1] = ACTIONS(1775), - [sym__word_no_digit] = ACTIONS(1778), - [sym__digits] = ACTIONS(1778), - [anon_sym_DASH_DASH] = ACTIONS(1781), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1778), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1778), - [sym__code_span_start] = ACTIONS(1784), - [sym__emphasis_open_star] = ACTIONS(1787), - [sym__emphasis_open_underscore] = ACTIONS(1790), - [sym__strikeout_open] = ACTIONS(1793), - [sym__latex_span_start] = ACTIONS(1796), - [sym__single_quote_open] = ACTIONS(1799), - [sym__double_quote_open] = ACTIONS(1802), - [sym__superscript_open] = ACTIONS(1805), - [sym__subscript_open] = ACTIONS(1808), - [sym__subscript_close] = ACTIONS(1334), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1811), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1814), - [sym__cite_author_in_text] = ACTIONS(1817), - [sym__cite_suppress_author] = ACTIONS(1820), - [sym__shortcode_open_escaped] = ACTIONS(1823), - [sym__shortcode_open] = ACTIONS(1826), - [sym__unclosed_span] = ACTIONS(1742), + [aux_sym_insert_repeat1] = STATE(52), + [aux_sym__inline_base_repeat1] = STATE(365), + [sym__backslash_escape] = ACTIONS(1797), + [sym_entity_reference] = ACTIONS(1800), + [sym_numeric_character_reference] = ACTIONS(1800), + [anon_sym_LT] = ACTIONS(1803), + [anon_sym_GT] = ACTIONS(1806), + [anon_sym_BANG] = ACTIONS(1809), + [anon_sym_DQUOTE] = ACTIONS(1806), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR] = ACTIONS(1806), + [anon_sym_PERCENT] = ACTIONS(1806), + [anon_sym_AMP] = ACTIONS(1803), + [anon_sym_SQUOTE] = ACTIONS(1806), + [anon_sym_STAR] = ACTIONS(1806), + [anon_sym_PLUS] = ACTIONS(1806), + [anon_sym_COMMA] = ACTIONS(1806), + [anon_sym_DASH] = ACTIONS(1803), + [anon_sym_DOT] = ACTIONS(1803), + [anon_sym_SLASH] = ACTIONS(1806), + [anon_sym_COLON] = ACTIONS(1806), + [anon_sym_SEMI] = ACTIONS(1806), + [anon_sym_EQ] = ACTIONS(1806), + [anon_sym_QMARK] = ACTIONS(1806), + [anon_sym_LBRACK] = ACTIONS(1812), + [anon_sym_BSLASH] = ACTIONS(1815), + [anon_sym_CARET] = ACTIONS(1803), + [anon_sym__] = ACTIONS(1806), + [anon_sym_BQUOTE] = ACTIONS(1806), + [anon_sym_LBRACE] = ACTIONS(1818), + [anon_sym_PIPE] = ACTIONS(1806), + [anon_sym_TILDE] = ACTIONS(1806), + [anon_sym_LPAREN] = ACTIONS(1806), + [anon_sym_RPAREN] = ACTIONS(1806), + [sym__newline_token] = ACTIONS(1821), + [aux_sym_insert_token1] = ACTIONS(1824), + [aux_sym_delete_token1] = ACTIONS(1827), + [aux_sym_highlight_token1] = ACTIONS(1830), + [aux_sym_edit_comment_token1] = ACTIONS(1833), + [anon_sym_CARET_LBRACK] = ACTIONS(1836), + [anon_sym_LBRACK_CARET] = ACTIONS(1839), + [sym_uri_autolink] = ACTIONS(1800), + [sym_email_autolink] = ACTIONS(1800), + [sym__whitespace_ge_2] = ACTIONS(1842), + [aux_sym__whitespace_token1] = ACTIONS(1845), + [sym__word_no_digit] = ACTIONS(1848), + [sym__digits] = ACTIONS(1848), + [anon_sym_DASH_DASH] = ACTIONS(1851), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1848), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1848), + [sym__code_span_start] = ACTIONS(1854), + [sym__emphasis_open_star] = ACTIONS(1857), + [sym__emphasis_open_underscore] = ACTIONS(1860), + [sym__strikeout_open] = ACTIONS(1863), + [sym__latex_span_start] = ACTIONS(1866), + [sym__single_quote_open] = ACTIONS(1869), + [sym__double_quote_open] = ACTIONS(1872), + [sym__superscript_open] = ACTIONS(1875), + [sym__superscript_close] = ACTIONS(1302), + [sym__subscript_open] = ACTIONS(1878), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1881), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1884), + [sym__cite_author_in_text] = ACTIONS(1887), + [sym__cite_suppress_author] = ACTIONS(1890), + [sym__shortcode_open_escaped] = ACTIONS(1893), + [sym__shortcode_open] = ACTIONS(1896), + [sym__unclosed_span] = ACTIONS(1800), }, [STATE(53)] = { - [sym_backslash_escape] = STATE(271), - [sym_commonmark_attribute] = STATE(271), - [sym_code_span] = STATE(271), - [sym_latex_span] = STATE(271), - [sym_superscript] = STATE(271), - [sym_subscript] = STATE(271), - [sym_strikeout] = STATE(271), - [sym_quoted_span] = STATE(271), - [sym_inline_note] = STATE(271), - [sym_citation] = STATE(271), - [sym_shortcode_escaped] = STATE(271), - [sym_shortcode] = STATE(271), - [sym_note_reference] = STATE(271), - [sym__link_text] = STATE(424), - [sym__link_text_non_empty] = STATE(425), - [sym_inline_link] = STATE(53), - [sym_image] = STATE(271), - [sym__image_inline_link] = STATE(883), - [sym__image_description] = STATE(1998), - [sym__image_description_non_empty] = STATE(1998), - [sym_hard_line_break] = STATE(271), - [sym__whitespace] = STATE(881), - [sym__word] = STATE(881), - [sym__soft_line_break] = STATE(884), - [sym__inline_base] = STATE(53), - [sym__text_base] = STATE(271), - [sym__inline_element] = STATE(53), - [sym__emphasis_star] = STATE(710), - [sym__strong_emphasis_star] = STATE(53), - [sym__emphasis_underscore] = STATE(710), - [sym__strong_emphasis_underscore] = STATE(53), - [aux_sym_superscript_repeat1] = STATE(53), - [aux_sym__inline_base_repeat1] = STATE(271), - [sym__backslash_escape] = ACTIONS(1829), - [sym_entity_reference] = ACTIONS(1832), - [sym_numeric_character_reference] = ACTIONS(1832), - [anon_sym_LT] = ACTIONS(1835), - [anon_sym_GT] = ACTIONS(1838), - [anon_sym_BANG] = ACTIONS(1841), - [anon_sym_DQUOTE] = ACTIONS(1838), - [anon_sym_POUND] = ACTIONS(1838), - [anon_sym_DOLLAR] = ACTIONS(1838), - [anon_sym_PERCENT] = ACTIONS(1838), - [anon_sym_AMP] = ACTIONS(1835), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_STAR] = ACTIONS(1838), - [anon_sym_PLUS] = ACTIONS(1838), - [anon_sym_COMMA] = ACTIONS(1838), - [anon_sym_DASH] = ACTIONS(1835), - [anon_sym_DOT] = ACTIONS(1835), - [anon_sym_SLASH] = ACTIONS(1838), - [anon_sym_COLON] = ACTIONS(1838), - [anon_sym_SEMI] = ACTIONS(1838), - [anon_sym_EQ] = ACTIONS(1838), - [anon_sym_QMARK] = ACTIONS(1838), - [anon_sym_LBRACK] = ACTIONS(1844), - [anon_sym_BSLASH] = ACTIONS(1847), - [anon_sym_RBRACK] = ACTIONS(1334), - [anon_sym_CARET] = ACTIONS(1835), - [anon_sym__] = ACTIONS(1838), - [anon_sym_BQUOTE] = ACTIONS(1838), - [anon_sym_LBRACE] = ACTIONS(1850), - [anon_sym_PIPE] = ACTIONS(1838), - [anon_sym_TILDE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(1838), - [anon_sym_RPAREN] = ACTIONS(1838), - [sym__newline_token] = ACTIONS(1853), - [anon_sym_CARET_LBRACK] = ACTIONS(1856), - [anon_sym_LBRACK_CARET] = ACTIONS(1859), - [sym_uri_autolink] = ACTIONS(1832), - [sym_email_autolink] = ACTIONS(1832), - [sym__whitespace_ge_2] = ACTIONS(1862), - [aux_sym__whitespace_token1] = ACTIONS(1865), - [sym__word_no_digit] = ACTIONS(1868), - [sym__digits] = ACTIONS(1868), - [anon_sym_DASH_DASH] = ACTIONS(1871), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1868), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1868), - [sym__code_span_start] = ACTIONS(1874), - [sym__emphasis_open_star] = ACTIONS(1877), - [sym__emphasis_open_underscore] = ACTIONS(1880), - [sym__strikeout_open] = ACTIONS(1883), - [sym__latex_span_start] = ACTIONS(1886), - [sym__single_quote_open] = ACTIONS(1889), - [sym__double_quote_open] = ACTIONS(1892), - [sym__superscript_open] = ACTIONS(1895), - [sym__subscript_open] = ACTIONS(1898), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1901), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1904), - [sym__cite_author_in_text] = ACTIONS(1907), - [sym__cite_suppress_author] = ACTIONS(1910), - [sym__shortcode_open_escaped] = ACTIONS(1913), - [sym__shortcode_open] = ACTIONS(1916), - [sym__unclosed_span] = ACTIONS(1832), - }, - [STATE(54)] = { - [sym_backslash_escape] = STATE(265), - [sym_commonmark_attribute] = STATE(265), - [sym_code_span] = STATE(265), - [sym_latex_span] = STATE(265), - [sym_superscript] = STATE(265), - [sym_subscript] = STATE(265), - [sym_strikeout] = STATE(265), - [sym_quoted_span] = STATE(265), - [sym_inline_note] = STATE(265), - [sym_citation] = STATE(265), - [sym_shortcode_escaped] = STATE(265), - [sym_shortcode] = STATE(265), - [sym_note_reference] = STATE(265), - [sym__link_text] = STATE(310), - [sym__link_text_non_empty] = STATE(311), - [sym_inline_link] = STATE(885), - [sym_image] = STATE(265), - [sym__image_inline_link] = STATE(662), - [sym__image_description] = STATE(1978), - [sym__image_description_non_empty] = STATE(1978), - [sym_hard_line_break] = STATE(265), - [sym__whitespace] = STATE(579), - [sym__word] = STATE(579), - [sym__soft_line_break] = STATE(707), - [sym__inline_base] = STATE(885), - [sym__text_base] = STATE(265), - [sym__inline_element] = STATE(885), - [aux_sym__inline] = STATE(37), - [sym__emphasis_star] = STATE(1121), - [sym__strong_emphasis_star] = STATE(885), - [sym__emphasis_underscore] = STATE(1121), - [sym__strong_emphasis_underscore] = STATE(885), - [aux_sym__inline_base_repeat1] = STATE(265), - [ts_builtin_sym_end] = ACTIONS(1919), + [sym_backslash_escape] = STATE(377), + [sym_commonmark_attribute] = STATE(377), + [sym_code_span] = STATE(377), + [sym_latex_span] = STATE(377), + [sym_insert] = STATE(377), + [sym_delete] = STATE(377), + [sym_highlight] = STATE(377), + [sym_edit_comment] = STATE(377), + [sym_superscript] = STATE(377), + [sym_subscript] = STATE(377), + [sym_strikeout] = STATE(377), + [sym_quoted_span] = STATE(377), + [sym_inline_note] = STATE(377), + [sym_citation] = STATE(377), + [sym_shortcode_escaped] = STATE(377), + [sym_shortcode] = STATE(377), + [sym_note_reference] = STATE(377), + [sym__link_text] = STATE(496), + [sym__link_text_non_empty] = STATE(521), + [sym_inline_link] = STATE(1131), + [sym_image] = STATE(377), + [sym__image_inline_link] = STATE(1305), + [sym__image_description] = STATE(2302), + [sym__image_description_non_empty] = STATE(2302), + [sym_hard_line_break] = STATE(377), + [sym__whitespace] = STATE(1160), + [sym__word] = STATE(1160), + [sym__soft_line_break] = STATE(1375), + [sym__inline_base] = STATE(1131), + [sym__text_base] = STATE(377), + [sym__inline_element] = STATE(1131), + [aux_sym__inline] = STATE(34), + [sym__emphasis_star] = STATE(1094), + [sym__strong_emphasis_star] = STATE(1131), + [sym__emphasis_underscore] = STATE(1094), + [sym__strong_emphasis_underscore] = STATE(1131), + [aux_sym__inline_base_repeat1] = STATE(377), + [ts_builtin_sym_end] = ACTIONS(1899), [sym__backslash_escape] = ACTIONS(3), [sym_entity_reference] = ACTIONS(5), [sym_numeric_character_reference] = ACTIONS(5), @@ -33157,76836 +34399,104681 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(9), [anon_sym_RPAREN] = ACTIONS(9), [sym__newline_token] = ACTIONS(19), - [anon_sym_CARET_LBRACK] = ACTIONS(21), - [anon_sym_LBRACK_CARET] = ACTIONS(23), + [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(25), - [aux_sym__whitespace_token1] = ACTIONS(27), - [sym__word_no_digit] = ACTIONS(29), - [sym__digits] = ACTIONS(29), - [anon_sym_DASH_DASH] = ACTIONS(31), - [anon_sym_DASH_DASH_DASH] = ACTIONS(29), - [anon_sym_DOT_DOT_DOT] = ACTIONS(29), - [sym__code_span_start] = ACTIONS(33), - [sym__emphasis_open_star] = ACTIONS(35), - [sym__emphasis_open_underscore] = ACTIONS(37), - [sym__strikeout_open] = ACTIONS(41), - [sym__latex_span_start] = ACTIONS(43), - [sym__single_quote_open] = ACTIONS(45), - [sym__double_quote_open] = ACTIONS(47), - [sym__superscript_open] = ACTIONS(49), - [sym__subscript_open] = ACTIONS(51), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(53), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(55), - [sym__cite_author_in_text] = ACTIONS(57), - [sym__cite_suppress_author] = ACTIONS(59), - [sym__shortcode_open_escaped] = ACTIONS(61), - [sym__shortcode_open] = ACTIONS(63), + [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), }, + [STATE(54)] = { + [sym_backslash_escape] = STATE(373), + [sym_commonmark_attribute] = STATE(373), + [sym_code_span] = STATE(373), + [sym_latex_span] = STATE(373), + [sym_insert] = STATE(373), + [sym_delete] = STATE(373), + [sym_highlight] = STATE(373), + [sym_edit_comment] = STATE(373), + [sym_superscript] = STATE(373), + [sym_subscript] = STATE(373), + [sym_strikeout] = STATE(373), + [sym_quoted_span] = STATE(373), + [sym_inline_note] = STATE(373), + [sym_citation] = STATE(373), + [sym_shortcode_escaped] = STATE(373), + [sym_shortcode] = STATE(373), + [sym_note_reference] = STATE(373), + [sym__link_text] = STATE(522), + [sym__link_text_non_empty] = STATE(523), + [sym_inline_link] = STATE(72), + [sym_image] = STATE(373), + [sym__image_inline_link] = STATE(1265), + [sym__image_description] = STATE(2331), + [sym__image_description_non_empty] = STATE(2331), + [sym_hard_line_break] = STATE(373), + [sym__whitespace] = STATE(1262), + [sym__word] = STATE(1262), + [sym__soft_line_break] = STATE(1267), + [sym__inline_base] = STATE(72), + [sym__text_base] = STATE(373), + [sym__inline_element_no_star] = STATE(72), + [aux_sym__inline_no_star] = STATE(72), + [sym__emphasis_star] = STATE(1138), + [sym__strong_emphasis_star] = STATE(72), + [sym__emphasis_underscore] = STATE(1147), + [sym__strong_emphasis_underscore] = STATE(72), + [aux_sym__inline_base_repeat1] = STATE(373), + [sym__backslash_escape] = ACTIONS(885), + [sym_entity_reference] = ACTIONS(887), + [sym_numeric_character_reference] = ACTIONS(887), + [anon_sym_LT] = ACTIONS(889), + [anon_sym_GT] = ACTIONS(891), + [anon_sym_BANG] = ACTIONS(893), + [anon_sym_DQUOTE] = ACTIONS(891), + [anon_sym_POUND] = ACTIONS(891), + [anon_sym_DOLLAR] = ACTIONS(891), + [anon_sym_PERCENT] = ACTIONS(891), + [anon_sym_AMP] = ACTIONS(889), + [anon_sym_SQUOTE] = ACTIONS(891), + [anon_sym_STAR] = ACTIONS(891), + [anon_sym_PLUS] = ACTIONS(891), + [anon_sym_COMMA] = ACTIONS(891), + [anon_sym_DASH] = ACTIONS(889), + [anon_sym_DOT] = ACTIONS(889), + [anon_sym_SLASH] = ACTIONS(891), + [anon_sym_COLON] = ACTIONS(891), + [anon_sym_SEMI] = ACTIONS(891), + [anon_sym_EQ] = ACTIONS(891), + [anon_sym_QMARK] = ACTIONS(891), + [anon_sym_LBRACK] = ACTIONS(895), + [anon_sym_BSLASH] = ACTIONS(897), + [anon_sym_CARET] = ACTIONS(889), + [anon_sym__] = ACTIONS(891), + [anon_sym_BQUOTE] = ACTIONS(891), + [anon_sym_LBRACE] = ACTIONS(899), + [anon_sym_PIPE] = ACTIONS(891), + [anon_sym_TILDE] = ACTIONS(891), + [anon_sym_LPAREN] = ACTIONS(891), + [anon_sym_RPAREN] = ACTIONS(891), + [sym__newline_token] = ACTIONS(901), + [aux_sym_insert_token1] = ACTIONS(903), + [aux_sym_delete_token1] = ACTIONS(905), + [aux_sym_highlight_token1] = ACTIONS(907), + [aux_sym_edit_comment_token1] = ACTIONS(909), + [anon_sym_CARET_LBRACK] = ACTIONS(911), + [anon_sym_LBRACK_CARET] = ACTIONS(913), + [sym_uri_autolink] = ACTIONS(887), + [sym_email_autolink] = ACTIONS(887), + [sym__whitespace_ge_2] = ACTIONS(915), + [aux_sym__whitespace_token1] = ACTIONS(917), + [sym__word_no_digit] = ACTIONS(919), + [sym__digits] = ACTIONS(919), + [anon_sym_DASH_DASH] = ACTIONS(921), + [anon_sym_DASH_DASH_DASH] = ACTIONS(919), + [anon_sym_DOT_DOT_DOT] = ACTIONS(919), + [sym__code_span_start] = ACTIONS(923), + [sym__emphasis_open_star] = ACTIONS(925), + [sym__emphasis_open_underscore] = ACTIONS(927), + [sym__last_token_punctuation] = ACTIONS(1901), + [sym__strikeout_open] = ACTIONS(931), + [sym__latex_span_start] = ACTIONS(933), + [sym__single_quote_open] = ACTIONS(935), + [sym__double_quote_open] = ACTIONS(937), + [sym__superscript_open] = ACTIONS(939), + [sym__subscript_open] = ACTIONS(941), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(943), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(945), + [sym__cite_author_in_text] = ACTIONS(947), + [sym__cite_suppress_author] = ACTIONS(949), + [sym__shortcode_open_escaped] = ACTIONS(951), + [sym__shortcode_open] = ACTIONS(953), + [sym__unclosed_span] = ACTIONS(887), + }, [STATE(55)] = { - [sym_backslash_escape] = STATE(266), - [sym_commonmark_attribute] = STATE(266), - [sym_code_span] = STATE(266), - [sym_latex_span] = STATE(266), - [sym_superscript] = STATE(266), - [sym_subscript] = STATE(266), - [sym_strikeout] = STATE(266), - [sym_quoted_span] = STATE(266), - [sym_inline_note] = STATE(266), - [sym_citation] = STATE(266), - [sym_shortcode_escaped] = STATE(266), - [sym_shortcode] = STATE(266), - [sym_note_reference] = STATE(266), - [sym__link_text] = STATE(375), - [sym__link_text_non_empty] = STATE(376), - [sym_inline_link] = STATE(62), - [sym_image] = STATE(266), - [sym__image_inline_link] = STATE(1042), - [sym__image_description] = STATE(2044), - [sym__image_description_non_empty] = STATE(2044), - [sym_hard_line_break] = STATE(266), - [sym__whitespace] = STATE(1040), - [sym__word] = STATE(1040), - [sym__soft_line_break] = STATE(1043), - [sym__inline_base] = STATE(62), - [sym__text_base] = STATE(266), - [sym__inline_element] = STATE(62), - [sym__emphasis_star] = STATE(602), - [sym__strong_emphasis_star] = STATE(62), - [sym__emphasis_underscore] = STATE(602), - [sym__strong_emphasis_underscore] = STATE(62), - [aux_sym_superscript_repeat1] = STATE(62), - [aux_sym__inline_base_repeat1] = STATE(266), - [sym__backslash_escape] = ACTIONS(559), - [sym_entity_reference] = ACTIONS(561), - [sym_numeric_character_reference] = ACTIONS(561), - [anon_sym_LT] = ACTIONS(563), - [anon_sym_GT] = ACTIONS(565), - [anon_sym_BANG] = ACTIONS(567), - [anon_sym_DQUOTE] = ACTIONS(565), - [anon_sym_POUND] = ACTIONS(565), - [anon_sym_DOLLAR] = ACTIONS(565), - [anon_sym_PERCENT] = ACTIONS(565), - [anon_sym_AMP] = ACTIONS(563), - [anon_sym_SQUOTE] = ACTIONS(565), - [anon_sym_STAR] = ACTIONS(565), - [anon_sym_PLUS] = ACTIONS(565), - [anon_sym_COMMA] = ACTIONS(565), - [anon_sym_DASH] = ACTIONS(563), - [anon_sym_DOT] = ACTIONS(563), - [anon_sym_SLASH] = ACTIONS(565), - [anon_sym_COLON] = ACTIONS(565), - [anon_sym_SEMI] = ACTIONS(565), - [anon_sym_EQ] = ACTIONS(565), - [anon_sym_QMARK] = ACTIONS(565), - [anon_sym_LBRACK] = ACTIONS(569), - [anon_sym_BSLASH] = ACTIONS(571), - [anon_sym_CARET] = ACTIONS(563), - [anon_sym__] = ACTIONS(565), - [anon_sym_BQUOTE] = ACTIONS(565), - [anon_sym_LBRACE] = ACTIONS(573), - [anon_sym_PIPE] = ACTIONS(565), - [anon_sym_TILDE] = ACTIONS(565), - [anon_sym_LPAREN] = ACTIONS(565), - [anon_sym_RPAREN] = ACTIONS(565), - [sym__newline_token] = ACTIONS(575), - [anon_sym_CARET_LBRACK] = ACTIONS(577), - [anon_sym_LBRACK_CARET] = ACTIONS(579), - [sym_uri_autolink] = ACTIONS(561), - [sym_email_autolink] = ACTIONS(561), - [sym__whitespace_ge_2] = ACTIONS(581), - [aux_sym__whitespace_token1] = ACTIONS(583), - [sym__word_no_digit] = ACTIONS(585), - [sym__digits] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(587), - [anon_sym_DASH_DASH_DASH] = ACTIONS(585), - [anon_sym_DOT_DOT_DOT] = ACTIONS(585), - [sym__code_span_start] = ACTIONS(589), - [sym__emphasis_open_star] = ACTIONS(591), - [sym__emphasis_open_underscore] = ACTIONS(593), - [sym__strikeout_open] = ACTIONS(595), - [sym__strikeout_close] = ACTIONS(1921), - [sym__latex_span_start] = ACTIONS(599), - [sym__single_quote_open] = ACTIONS(601), - [sym__double_quote_open] = ACTIONS(603), - [sym__superscript_open] = ACTIONS(605), - [sym__subscript_open] = ACTIONS(607), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(609), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(611), - [sym__cite_author_in_text] = ACTIONS(613), - [sym__cite_suppress_author] = ACTIONS(615), - [sym__shortcode_open_escaped] = ACTIONS(617), - [sym__shortcode_open] = ACTIONS(619), - [sym__unclosed_span] = ACTIONS(561), + [sym_backslash_escape] = STATE(367), + [sym_commonmark_attribute] = STATE(367), + [sym_code_span] = STATE(367), + [sym_latex_span] = STATE(367), + [sym_insert] = STATE(367), + [sym_delete] = STATE(367), + [sym_highlight] = STATE(367), + [sym_edit_comment] = STATE(367), + [sym_superscript] = STATE(367), + [sym_subscript] = STATE(367), + [sym_strikeout] = STATE(367), + [sym_quoted_span] = STATE(367), + [sym_inline_note] = STATE(367), + [sym_citation] = STATE(367), + [sym_shortcode_escaped] = STATE(367), + [sym_shortcode] = STATE(367), + [sym_note_reference] = STATE(367), + [sym__link_text] = STATE(435), + [sym__link_text_non_empty] = STATE(436), + [sym_inline_link] = STATE(55), + [sym_image] = STATE(367), + [sym__image_inline_link] = STATE(819), + [sym__image_description] = STATE(2328), + [sym__image_description_non_empty] = STATE(2328), + [sym_hard_line_break] = STATE(367), + [sym__whitespace] = STATE(816), + [sym__word] = STATE(816), + [sym__soft_line_break] = STATE(820), + [sym__inline_base] = STATE(55), + [sym__text_base] = STATE(367), + [sym__inline_element] = STATE(55), + [sym__emphasis_star] = STATE(1271), + [sym__strong_emphasis_star] = STATE(55), + [sym__emphasis_underscore] = STATE(1271), + [sym__strong_emphasis_underscore] = STATE(55), + [aux_sym_insert_repeat1] = STATE(55), + [aux_sym__inline_base_repeat1] = STATE(367), + [sym__backslash_escape] = ACTIONS(1903), + [sym_entity_reference] = ACTIONS(1906), + [sym_numeric_character_reference] = ACTIONS(1906), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_GT] = ACTIONS(1912), + [anon_sym_BANG] = ACTIONS(1915), + [anon_sym_DQUOTE] = ACTIONS(1912), + [anon_sym_POUND] = ACTIONS(1912), + [anon_sym_DOLLAR] = ACTIONS(1912), + [anon_sym_PERCENT] = ACTIONS(1912), + [anon_sym_AMP] = ACTIONS(1909), + [anon_sym_SQUOTE] = ACTIONS(1912), + [anon_sym_STAR] = ACTIONS(1912), + [anon_sym_PLUS] = ACTIONS(1912), + [anon_sym_COMMA] = ACTIONS(1912), + [anon_sym_DASH] = ACTIONS(1909), + [anon_sym_DOT] = ACTIONS(1909), + [anon_sym_SLASH] = ACTIONS(1912), + [anon_sym_COLON] = ACTIONS(1912), + [anon_sym_SEMI] = ACTIONS(1912), + [anon_sym_EQ] = ACTIONS(1912), + [anon_sym_QMARK] = ACTIONS(1912), + [anon_sym_LBRACK] = ACTIONS(1918), + [anon_sym_BSLASH] = ACTIONS(1921), + [anon_sym_CARET] = ACTIONS(1909), + [anon_sym__] = ACTIONS(1912), + [anon_sym_BQUOTE] = ACTIONS(1912), + [anon_sym_LBRACE] = ACTIONS(1924), + [anon_sym_PIPE] = ACTIONS(1912), + [anon_sym_TILDE] = ACTIONS(1912), + [anon_sym_LPAREN] = ACTIONS(1912), + [anon_sym_RPAREN] = ACTIONS(1912), + [sym__newline_token] = ACTIONS(1927), + [aux_sym_insert_token1] = ACTIONS(1930), + [aux_sym_delete_token1] = ACTIONS(1933), + [aux_sym_highlight_token1] = ACTIONS(1936), + [aux_sym_edit_comment_token1] = ACTIONS(1939), + [anon_sym_CARET_LBRACK] = ACTIONS(1942), + [anon_sym_LBRACK_CARET] = ACTIONS(1945), + [sym_uri_autolink] = ACTIONS(1906), + [sym_email_autolink] = ACTIONS(1906), + [sym__whitespace_ge_2] = ACTIONS(1948), + [aux_sym__whitespace_token1] = ACTIONS(1951), + [sym__word_no_digit] = ACTIONS(1954), + [sym__digits] = ACTIONS(1954), + [anon_sym_DASH_DASH] = ACTIONS(1957), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1954), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1954), + [sym__code_span_start] = ACTIONS(1960), + [sym__emphasis_open_star] = ACTIONS(1963), + [sym__emphasis_open_underscore] = ACTIONS(1966), + [sym__strikeout_open] = ACTIONS(1969), + [sym__latex_span_start] = ACTIONS(1972), + [sym__single_quote_open] = ACTIONS(1975), + [sym__double_quote_open] = ACTIONS(1978), + [sym__superscript_open] = ACTIONS(1981), + [sym__subscript_open] = ACTIONS(1984), + [sym__subscript_close] = ACTIONS(1302), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1987), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1990), + [sym__cite_author_in_text] = ACTIONS(1993), + [sym__cite_suppress_author] = ACTIONS(1996), + [sym__shortcode_open_escaped] = ACTIONS(1999), + [sym__shortcode_open] = ACTIONS(2002), + [sym__unclosed_span] = ACTIONS(1906), }, [STATE(56)] = { - [sym_backslash_escape] = STATE(272), - [sym_commonmark_attribute] = STATE(272), - [sym_code_span] = STATE(272), - [sym_latex_span] = STATE(272), - [sym_superscript] = STATE(272), - [sym_subscript] = STATE(272), - [sym_strikeout] = STATE(272), - [sym_quoted_span] = STATE(272), - [sym_inline_note] = STATE(272), - [sym_citation] = STATE(272), - [sym_shortcode_escaped] = STATE(272), - [sym_shortcode] = STATE(272), - [sym_note_reference] = STATE(272), - [sym__link_text] = STATE(401), - [sym__link_text_non_empty] = STATE(402), - [sym_inline_link] = STATE(63), - [sym_image] = STATE(272), - [sym__image_inline_link] = STATE(1136), - [sym__image_description] = STATE(1942), - [sym__image_description_non_empty] = STATE(1942), - [sym_hard_line_break] = STATE(272), - [sym__whitespace] = STATE(1133), - [sym__word] = STATE(1133), - [sym__soft_line_break] = STATE(1137), - [sym__inline_base] = STATE(63), - [sym__text_base] = STATE(272), - [sym__inline_element] = STATE(63), - [sym__emphasis_star] = STATE(902), - [sym__strong_emphasis_star] = STATE(63), - [sym__emphasis_underscore] = STATE(902), - [sym__strong_emphasis_underscore] = STATE(63), - [aux_sym_superscript_repeat1] = STATE(63), - [aux_sym__inline_base_repeat1] = STATE(272), - [sym__backslash_escape] = ACTIONS(625), - [sym_entity_reference] = ACTIONS(627), - [sym_numeric_character_reference] = ACTIONS(627), - [anon_sym_LT] = ACTIONS(629), - [anon_sym_GT] = ACTIONS(631), - [anon_sym_BANG] = ACTIONS(633), - [anon_sym_DQUOTE] = ACTIONS(631), - [anon_sym_POUND] = ACTIONS(631), - [anon_sym_DOLLAR] = ACTIONS(631), - [anon_sym_PERCENT] = ACTIONS(631), - [anon_sym_AMP] = ACTIONS(629), - [anon_sym_SQUOTE] = ACTIONS(631), - [anon_sym_STAR] = ACTIONS(631), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_COMMA] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(629), - [anon_sym_DOT] = ACTIONS(629), - [anon_sym_SLASH] = ACTIONS(631), - [anon_sym_COLON] = ACTIONS(631), - [anon_sym_SEMI] = ACTIONS(631), - [anon_sym_EQ] = ACTIONS(631), - [anon_sym_QMARK] = ACTIONS(631), - [anon_sym_LBRACK] = ACTIONS(635), - [anon_sym_BSLASH] = ACTIONS(637), - [anon_sym_CARET] = ACTIONS(629), - [anon_sym__] = ACTIONS(631), - [anon_sym_BQUOTE] = ACTIONS(631), - [anon_sym_LBRACE] = ACTIONS(639), - [anon_sym_PIPE] = ACTIONS(631), - [anon_sym_TILDE] = ACTIONS(631), - [anon_sym_LPAREN] = ACTIONS(631), - [anon_sym_RPAREN] = ACTIONS(631), - [sym__newline_token] = ACTIONS(641), - [anon_sym_CARET_LBRACK] = ACTIONS(643), - [anon_sym_LBRACK_CARET] = ACTIONS(645), - [sym_uri_autolink] = ACTIONS(627), - [sym_email_autolink] = ACTIONS(627), - [sym__whitespace_ge_2] = ACTIONS(647), - [aux_sym__whitespace_token1] = ACTIONS(649), - [sym__word_no_digit] = ACTIONS(651), - [sym__digits] = ACTIONS(651), - [anon_sym_DASH_DASH] = ACTIONS(653), - [anon_sym_DASH_DASH_DASH] = ACTIONS(651), - [anon_sym_DOT_DOT_DOT] = ACTIONS(651), - [sym__code_span_start] = ACTIONS(655), - [sym__emphasis_open_star] = ACTIONS(657), - [sym__emphasis_open_underscore] = ACTIONS(659), - [sym__strikeout_open] = ACTIONS(661), - [sym__latex_span_start] = ACTIONS(663), - [sym__single_quote_open] = ACTIONS(665), - [sym__single_quote_close] = ACTIONS(1923), - [sym__double_quote_open] = ACTIONS(669), - [sym__superscript_open] = ACTIONS(671), - [sym__subscript_open] = ACTIONS(673), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(675), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(677), - [sym__cite_author_in_text] = ACTIONS(679), - [sym__cite_suppress_author] = ACTIONS(681), - [sym__shortcode_open_escaped] = ACTIONS(683), - [sym__shortcode_open] = ACTIONS(685), - [sym__unclosed_span] = ACTIONS(627), + [sym_backslash_escape] = STATE(366), + [sym_commonmark_attribute] = STATE(366), + [sym_code_span] = STATE(366), + [sym_latex_span] = STATE(366), + [sym_insert] = STATE(366), + [sym_delete] = STATE(366), + [sym_highlight] = STATE(366), + [sym_edit_comment] = STATE(366), + [sym_superscript] = STATE(366), + [sym_subscript] = STATE(366), + [sym_strikeout] = STATE(366), + [sym_quoted_span] = STATE(366), + [sym_inline_note] = STATE(366), + [sym_citation] = STATE(366), + [sym_shortcode_escaped] = STATE(366), + [sym_shortcode] = STATE(366), + [sym_note_reference] = STATE(366), + [sym__link_text] = STATE(490), + [sym__link_text_non_empty] = STATE(491), + [sym_inline_link] = STATE(123), + [sym_image] = STATE(366), + [sym__image_inline_link] = STATE(1244), + [sym__image_description] = STATE(2280), + [sym__image_description_non_empty] = STATE(2280), + [sym_hard_line_break] = STATE(366), + [sym__whitespace] = STATE(1218), + [sym__word] = STATE(1218), + [sym__soft_line_break] = STATE(1245), + [sym__inline_base] = STATE(123), + [sym__text_base] = STATE(366), + [sym__inline_element] = STATE(123), + [sym__emphasis_star] = STATE(1270), + [sym__strong_emphasis_star] = STATE(123), + [sym__emphasis_underscore] = STATE(1270), + [sym__strong_emphasis_underscore] = STATE(123), + [aux_sym_insert_repeat1] = STATE(123), + [aux_sym__inline_base_repeat1] = STATE(366), + [sym__backslash_escape] = ACTIONS(2005), + [sym_entity_reference] = ACTIONS(2007), + [sym_numeric_character_reference] = ACTIONS(2007), + [anon_sym_LT] = ACTIONS(2009), + [anon_sym_GT] = ACTIONS(2011), + [anon_sym_BANG] = ACTIONS(2013), + [anon_sym_DQUOTE] = ACTIONS(2011), + [anon_sym_POUND] = ACTIONS(2011), + [anon_sym_DOLLAR] = ACTIONS(2011), + [anon_sym_PERCENT] = ACTIONS(2011), + [anon_sym_AMP] = ACTIONS(2009), + [anon_sym_SQUOTE] = ACTIONS(2011), + [anon_sym_STAR] = ACTIONS(2011), + [anon_sym_PLUS] = ACTIONS(2011), + [anon_sym_COMMA] = ACTIONS(2011), + [anon_sym_DASH] = ACTIONS(2009), + [anon_sym_DOT] = ACTIONS(2009), + [anon_sym_SLASH] = ACTIONS(2011), + [anon_sym_COLON] = ACTIONS(2011), + [anon_sym_SEMI] = ACTIONS(2011), + [anon_sym_EQ] = ACTIONS(2011), + [anon_sym_QMARK] = ACTIONS(2011), + [anon_sym_LBRACK] = ACTIONS(2015), + [anon_sym_BSLASH] = ACTIONS(2017), + [anon_sym_CARET] = ACTIONS(2009), + [anon_sym__] = ACTIONS(2011), + [anon_sym_BQUOTE] = ACTIONS(2011), + [anon_sym_LBRACE] = ACTIONS(2019), + [anon_sym_PIPE] = ACTIONS(2011), + [anon_sym_TILDE] = ACTIONS(2011), + [anon_sym_LPAREN] = ACTIONS(2011), + [anon_sym_RPAREN] = ACTIONS(2011), + [sym__newline_token] = ACTIONS(2021), + [aux_sym_insert_token1] = ACTIONS(2023), + [aux_sym_delete_token1] = ACTIONS(2025), + [aux_sym_highlight_token1] = ACTIONS(2027), + [aux_sym_edit_comment_token1] = ACTIONS(2029), + [anon_sym_CARET_LBRACK] = ACTIONS(2031), + [anon_sym_LBRACK_CARET] = ACTIONS(2033), + [sym_uri_autolink] = ACTIONS(2007), + [sym_email_autolink] = ACTIONS(2007), + [sym__whitespace_ge_2] = ACTIONS(2035), + [aux_sym__whitespace_token1] = ACTIONS(2037), + [sym__word_no_digit] = ACTIONS(2039), + [sym__digits] = ACTIONS(2039), + [anon_sym_DASH_DASH] = ACTIONS(2041), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2039), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2039), + [sym__code_span_start] = ACTIONS(2043), + [sym__emphasis_open_star] = ACTIONS(2045), + [sym__emphasis_open_underscore] = ACTIONS(2047), + [sym__strikeout_open] = ACTIONS(2049), + [sym__strikeout_close] = ACTIONS(2051), + [sym__latex_span_start] = ACTIONS(2053), + [sym__single_quote_open] = ACTIONS(2055), + [sym__double_quote_open] = ACTIONS(2057), + [sym__superscript_open] = ACTIONS(2059), + [sym__subscript_open] = ACTIONS(2061), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2063), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2065), + [sym__cite_author_in_text] = ACTIONS(2067), + [sym__cite_suppress_author] = ACTIONS(2069), + [sym__shortcode_open_escaped] = ACTIONS(2071), + [sym__shortcode_open] = ACTIONS(2073), + [sym__unclosed_span] = ACTIONS(2007), }, [STATE(57)] = { - [sym_backslash_escape] = STATE(277), - [sym_commonmark_attribute] = STATE(277), - [sym_code_span] = STATE(277), - [sym_latex_span] = STATE(277), - [sym_superscript] = STATE(277), - [sym_subscript] = STATE(277), - [sym_strikeout] = STATE(277), - [sym_quoted_span] = STATE(277), - [sym_inline_note] = STATE(277), - [sym_citation] = STATE(277), - [sym_shortcode_escaped] = STATE(277), - [sym_shortcode] = STATE(277), - [sym_note_reference] = STATE(277), - [sym__link_text] = STATE(427), - [sym__link_text_non_empty] = STATE(428), - [sym_inline_link] = STATE(64), - [sym_image] = STATE(277), - [sym__image_inline_link] = STATE(613), - [sym__image_description] = STATE(1930), - [sym__image_description_non_empty] = STATE(1930), - [sym_hard_line_break] = STATE(277), - [sym__whitespace] = STATE(610), - [sym__word] = STATE(610), - [sym__soft_line_break] = STATE(614), - [sym__inline_base] = STATE(64), - [sym__text_base] = STATE(277), - [sym__inline_element] = STATE(64), - [sym__emphasis_star] = STATE(1044), - [sym__strong_emphasis_star] = STATE(64), - [sym__emphasis_underscore] = STATE(1044), - [sym__strong_emphasis_underscore] = STATE(64), - [aux_sym_superscript_repeat1] = STATE(64), - [aux_sym__inline_base_repeat1] = STATE(277), - [sym__backslash_escape] = ACTIONS(687), - [sym_entity_reference] = ACTIONS(689), - [sym_numeric_character_reference] = ACTIONS(689), - [anon_sym_LT] = ACTIONS(691), - [anon_sym_GT] = ACTIONS(693), - [anon_sym_BANG] = ACTIONS(695), - [anon_sym_DQUOTE] = ACTIONS(693), - [anon_sym_POUND] = ACTIONS(693), - [anon_sym_DOLLAR] = ACTIONS(693), - [anon_sym_PERCENT] = ACTIONS(693), - [anon_sym_AMP] = ACTIONS(691), - [anon_sym_SQUOTE] = ACTIONS(693), - [anon_sym_STAR] = ACTIONS(693), - [anon_sym_PLUS] = ACTIONS(693), - [anon_sym_COMMA] = ACTIONS(693), - [anon_sym_DASH] = ACTIONS(691), - [anon_sym_DOT] = ACTIONS(691), - [anon_sym_SLASH] = ACTIONS(693), - [anon_sym_COLON] = ACTIONS(693), - [anon_sym_SEMI] = ACTIONS(693), - [anon_sym_EQ] = ACTIONS(693), - [anon_sym_QMARK] = ACTIONS(693), - [anon_sym_LBRACK] = ACTIONS(697), - [anon_sym_BSLASH] = ACTIONS(699), - [anon_sym_CARET] = ACTIONS(691), - [anon_sym__] = ACTIONS(693), - [anon_sym_BQUOTE] = ACTIONS(693), - [anon_sym_LBRACE] = ACTIONS(701), - [anon_sym_PIPE] = ACTIONS(693), - [anon_sym_TILDE] = ACTIONS(693), - [anon_sym_LPAREN] = ACTIONS(693), - [anon_sym_RPAREN] = ACTIONS(693), - [sym__newline_token] = ACTIONS(703), - [anon_sym_CARET_LBRACK] = ACTIONS(705), - [anon_sym_LBRACK_CARET] = ACTIONS(707), - [sym_uri_autolink] = ACTIONS(689), - [sym_email_autolink] = ACTIONS(689), - [sym__whitespace_ge_2] = ACTIONS(709), - [aux_sym__whitespace_token1] = ACTIONS(711), - [sym__word_no_digit] = ACTIONS(713), - [sym__digits] = ACTIONS(713), - [anon_sym_DASH_DASH] = ACTIONS(715), - [anon_sym_DASH_DASH_DASH] = ACTIONS(713), - [anon_sym_DOT_DOT_DOT] = ACTIONS(713), - [sym__code_span_start] = ACTIONS(717), - [sym__emphasis_open_star] = ACTIONS(719), - [sym__emphasis_open_underscore] = ACTIONS(721), - [sym__strikeout_open] = ACTIONS(723), - [sym__latex_span_start] = ACTIONS(725), - [sym__single_quote_open] = ACTIONS(727), - [sym__double_quote_open] = ACTIONS(729), - [sym__double_quote_close] = ACTIONS(1923), - [sym__superscript_open] = ACTIONS(731), - [sym__subscript_open] = ACTIONS(733), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(735), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(737), - [sym__cite_author_in_text] = ACTIONS(739), - [sym__cite_suppress_author] = ACTIONS(741), - [sym__shortcode_open_escaped] = ACTIONS(743), - [sym__shortcode_open] = ACTIONS(745), - [sym__unclosed_span] = ACTIONS(689), + [sym_backslash_escape] = STATE(372), + [sym_commonmark_attribute] = STATE(372), + [sym_code_span] = STATE(372), + [sym_latex_span] = STATE(372), + [sym_insert] = STATE(372), + [sym_delete] = STATE(372), + [sym_highlight] = STATE(372), + [sym_edit_comment] = STATE(372), + [sym_superscript] = STATE(372), + [sym_subscript] = STATE(372), + [sym_strikeout] = STATE(372), + [sym_quoted_span] = STATE(372), + [sym_inline_note] = STATE(372), + [sym_citation] = STATE(372), + [sym_shortcode_escaped] = STATE(372), + [sym_shortcode] = STATE(372), + [sym_note_reference] = STATE(372), + [sym__link_text] = STATE(454), + [sym__link_text_non_empty] = STATE(455), + [sym_inline_link] = STATE(57), + [sym_image] = STATE(372), + [sym__image_inline_link] = STATE(1025), + [sym__image_description] = STATE(2356), + [sym__image_description_non_empty] = STATE(2356), + [sym_hard_line_break] = STATE(372), + [sym__whitespace] = STATE(1022), + [sym__word] = STATE(1022), + [sym__soft_line_break] = STATE(1026), + [sym__inline_base] = STATE(57), + [sym__text_base] = STATE(372), + [sym__inline_element] = STATE(57), + [sym__emphasis_star] = STATE(714), + [sym__strong_emphasis_star] = STATE(57), + [sym__emphasis_underscore] = STATE(714), + [sym__strong_emphasis_underscore] = STATE(57), + [aux_sym_insert_repeat1] = STATE(57), + [aux_sym__inline_base_repeat1] = STATE(372), + [sym__backslash_escape] = ACTIONS(2075), + [sym_entity_reference] = ACTIONS(2078), + [sym_numeric_character_reference] = ACTIONS(2078), + [anon_sym_LT] = ACTIONS(2081), + [anon_sym_GT] = ACTIONS(2084), + [anon_sym_BANG] = ACTIONS(2087), + [anon_sym_DQUOTE] = ACTIONS(2084), + [anon_sym_POUND] = ACTIONS(2084), + [anon_sym_DOLLAR] = ACTIONS(2084), + [anon_sym_PERCENT] = ACTIONS(2084), + [anon_sym_AMP] = ACTIONS(2081), + [anon_sym_SQUOTE] = ACTIONS(2084), + [anon_sym_STAR] = ACTIONS(2084), + [anon_sym_PLUS] = ACTIONS(2084), + [anon_sym_COMMA] = ACTIONS(2084), + [anon_sym_DASH] = ACTIONS(2081), + [anon_sym_DOT] = ACTIONS(2081), + [anon_sym_SLASH] = ACTIONS(2084), + [anon_sym_COLON] = ACTIONS(2084), + [anon_sym_SEMI] = ACTIONS(2084), + [anon_sym_EQ] = ACTIONS(2084), + [anon_sym_QMARK] = ACTIONS(2084), + [anon_sym_LBRACK] = ACTIONS(2090), + [anon_sym_BSLASH] = ACTIONS(2093), + [anon_sym_CARET] = ACTIONS(2081), + [anon_sym__] = ACTIONS(2084), + [anon_sym_BQUOTE] = ACTIONS(2084), + [anon_sym_LBRACE] = ACTIONS(2096), + [anon_sym_PIPE] = ACTIONS(2084), + [anon_sym_TILDE] = ACTIONS(2084), + [anon_sym_LPAREN] = ACTIONS(2084), + [anon_sym_RPAREN] = ACTIONS(2084), + [sym__newline_token] = ACTIONS(2099), + [aux_sym_insert_token1] = ACTIONS(2102), + [aux_sym_insert_token2] = ACTIONS(1302), + [aux_sym_delete_token1] = ACTIONS(2105), + [aux_sym_highlight_token1] = ACTIONS(2108), + [aux_sym_edit_comment_token1] = ACTIONS(2111), + [anon_sym_CARET_LBRACK] = ACTIONS(2114), + [anon_sym_LBRACK_CARET] = ACTIONS(2117), + [sym_uri_autolink] = ACTIONS(2078), + [sym_email_autolink] = ACTIONS(2078), + [sym__whitespace_ge_2] = ACTIONS(2120), + [aux_sym__whitespace_token1] = ACTIONS(2123), + [sym__word_no_digit] = ACTIONS(2126), + [sym__digits] = ACTIONS(2126), + [anon_sym_DASH_DASH] = ACTIONS(2129), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2126), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2126), + [sym__code_span_start] = ACTIONS(2132), + [sym__emphasis_open_star] = ACTIONS(2135), + [sym__emphasis_open_underscore] = ACTIONS(2138), + [sym__strikeout_open] = ACTIONS(2141), + [sym__latex_span_start] = ACTIONS(2144), + [sym__single_quote_open] = ACTIONS(2147), + [sym__double_quote_open] = ACTIONS(2150), + [sym__superscript_open] = ACTIONS(2153), + [sym__subscript_open] = ACTIONS(2156), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2159), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2162), + [sym__cite_author_in_text] = ACTIONS(2165), + [sym__cite_suppress_author] = ACTIONS(2168), + [sym__shortcode_open_escaped] = ACTIONS(2171), + [sym__shortcode_open] = ACTIONS(2174), + [sym__unclosed_span] = ACTIONS(2078), }, [STATE(58)] = { - [sym_backslash_escape] = STATE(262), - [sym_commonmark_attribute] = STATE(262), - [sym_code_span] = STATE(262), - [sym_latex_span] = STATE(262), - [sym_superscript] = STATE(262), - [sym_subscript] = STATE(262), - [sym_strikeout] = STATE(262), - [sym_quoted_span] = STATE(262), - [sym_inline_note] = STATE(262), - [sym_citation] = STATE(262), - [sym_shortcode_escaped] = STATE(262), - [sym_shortcode] = STATE(262), - [sym_note_reference] = STATE(262), - [sym__link_text] = STATE(313), - [sym__link_text_non_empty] = STATE(314), - [sym_inline_link] = STATE(65), - [sym_image] = STATE(262), - [sym__image_inline_link] = STATE(708), - [sym__image_description] = STATE(1970), - [sym__image_description_non_empty] = STATE(1970), - [sym_hard_line_break] = STATE(262), - [sym__whitespace] = STATE(705), - [sym__word] = STATE(705), - [sym__soft_line_break] = STATE(709), - [sym__inline_base] = STATE(65), - [sym__text_base] = STATE(262), - [sym__inline_element] = STATE(65), - [sym__emphasis_star] = STATE(1138), - [sym__strong_emphasis_star] = STATE(65), - [sym__emphasis_underscore] = STATE(1138), - [sym__strong_emphasis_underscore] = STATE(65), - [aux_sym_superscript_repeat1] = STATE(65), - [aux_sym__inline_base_repeat1] = STATE(262), - [sym__backslash_escape] = ACTIONS(747), - [sym_entity_reference] = ACTIONS(749), - [sym_numeric_character_reference] = ACTIONS(749), - [anon_sym_LT] = ACTIONS(751), - [anon_sym_GT] = ACTIONS(753), - [anon_sym_BANG] = ACTIONS(755), - [anon_sym_DQUOTE] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(753), - [anon_sym_DOLLAR] = ACTIONS(753), - [anon_sym_PERCENT] = ACTIONS(753), - [anon_sym_AMP] = ACTIONS(751), - [anon_sym_SQUOTE] = ACTIONS(753), - [anon_sym_STAR] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(753), - [anon_sym_COMMA] = ACTIONS(753), - [anon_sym_DASH] = ACTIONS(751), - [anon_sym_DOT] = ACTIONS(751), - [anon_sym_SLASH] = ACTIONS(753), - [anon_sym_COLON] = ACTIONS(753), - [anon_sym_SEMI] = ACTIONS(753), - [anon_sym_EQ] = ACTIONS(753), - [anon_sym_QMARK] = ACTIONS(753), - [anon_sym_LBRACK] = ACTIONS(757), - [anon_sym_BSLASH] = ACTIONS(759), - [anon_sym_CARET] = ACTIONS(751), - [anon_sym__] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(753), - [anon_sym_LBRACE] = ACTIONS(761), - [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_TILDE] = ACTIONS(753), - [anon_sym_LPAREN] = ACTIONS(753), - [anon_sym_RPAREN] = ACTIONS(753), - [sym__newline_token] = ACTIONS(763), - [anon_sym_CARET_LBRACK] = ACTIONS(765), - [anon_sym_LBRACK_CARET] = ACTIONS(767), - [sym_uri_autolink] = ACTIONS(749), - [sym_email_autolink] = ACTIONS(749), - [sym__whitespace_ge_2] = ACTIONS(769), - [aux_sym__whitespace_token1] = ACTIONS(771), - [sym__word_no_digit] = ACTIONS(773), - [sym__digits] = ACTIONS(773), - [anon_sym_DASH_DASH] = ACTIONS(775), - [anon_sym_DASH_DASH_DASH] = ACTIONS(773), - [anon_sym_DOT_DOT_DOT] = ACTIONS(773), - [sym__code_span_start] = ACTIONS(777), - [sym__emphasis_open_star] = ACTIONS(779), - [sym__emphasis_open_underscore] = ACTIONS(781), - [sym__strikeout_open] = ACTIONS(783), - [sym__latex_span_start] = ACTIONS(785), - [sym__single_quote_open] = ACTIONS(787), - [sym__double_quote_open] = ACTIONS(789), - [sym__superscript_open] = ACTIONS(791), - [sym__superscript_close] = ACTIONS(1925), - [sym__subscript_open] = ACTIONS(795), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(797), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(799), - [sym__cite_author_in_text] = ACTIONS(801), - [sym__cite_suppress_author] = ACTIONS(803), - [sym__shortcode_open_escaped] = ACTIONS(805), - [sym__shortcode_open] = ACTIONS(807), - [sym__unclosed_span] = ACTIONS(749), + [sym_backslash_escape] = STATE(373), + [sym_commonmark_attribute] = STATE(373), + [sym_code_span] = STATE(373), + [sym_latex_span] = STATE(373), + [sym_insert] = STATE(373), + [sym_delete] = STATE(373), + [sym_highlight] = STATE(373), + [sym_edit_comment] = STATE(373), + [sym_superscript] = STATE(373), + [sym_subscript] = STATE(373), + [sym_strikeout] = STATE(373), + [sym_quoted_span] = STATE(373), + [sym_inline_note] = STATE(373), + [sym_citation] = STATE(373), + [sym_shortcode_escaped] = STATE(373), + [sym_shortcode] = STATE(373), + [sym_note_reference] = STATE(373), + [sym__link_text] = STATE(522), + [sym__link_text_non_empty] = STATE(523), + [sym_inline_link] = STATE(36), + [sym_image] = STATE(373), + [sym__image_inline_link] = STATE(1265), + [sym__image_description] = STATE(2331), + [sym__image_description_non_empty] = STATE(2331), + [sym_hard_line_break] = STATE(373), + [sym__whitespace] = STATE(1262), + [sym__word] = STATE(1262), + [sym__soft_line_break] = STATE(1267), + [sym__inline_base] = STATE(36), + [sym__text_base] = STATE(373), + [sym__inline_element_no_star] = STATE(36), + [aux_sym__inline_no_star] = STATE(36), + [sym__emphasis_star] = STATE(1147), + [sym__strong_emphasis_star] = STATE(36), + [sym__emphasis_underscore] = STATE(1147), + [sym__strong_emphasis_underscore] = STATE(36), + [aux_sym__inline_base_repeat1] = STATE(373), + [sym__backslash_escape] = ACTIONS(885), + [sym_entity_reference] = ACTIONS(887), + [sym_numeric_character_reference] = ACTIONS(887), + [anon_sym_LT] = ACTIONS(889), + [anon_sym_GT] = ACTIONS(891), + [anon_sym_BANG] = ACTIONS(893), + [anon_sym_DQUOTE] = ACTIONS(891), + [anon_sym_POUND] = ACTIONS(891), + [anon_sym_DOLLAR] = ACTIONS(891), + [anon_sym_PERCENT] = ACTIONS(891), + [anon_sym_AMP] = ACTIONS(889), + [anon_sym_SQUOTE] = ACTIONS(891), + [anon_sym_STAR] = ACTIONS(891), + [anon_sym_PLUS] = ACTIONS(891), + [anon_sym_COMMA] = ACTIONS(891), + [anon_sym_DASH] = ACTIONS(889), + [anon_sym_DOT] = ACTIONS(889), + [anon_sym_SLASH] = ACTIONS(891), + [anon_sym_COLON] = ACTIONS(891), + [anon_sym_SEMI] = ACTIONS(891), + [anon_sym_EQ] = ACTIONS(891), + [anon_sym_QMARK] = ACTIONS(891), + [anon_sym_LBRACK] = ACTIONS(895), + [anon_sym_BSLASH] = ACTIONS(897), + [anon_sym_CARET] = ACTIONS(889), + [anon_sym__] = ACTIONS(891), + [anon_sym_BQUOTE] = ACTIONS(891), + [anon_sym_LBRACE] = ACTIONS(899), + [anon_sym_PIPE] = ACTIONS(891), + [anon_sym_TILDE] = ACTIONS(891), + [anon_sym_LPAREN] = ACTIONS(891), + [anon_sym_RPAREN] = ACTIONS(891), + [sym__newline_token] = ACTIONS(901), + [aux_sym_insert_token1] = ACTIONS(903), + [aux_sym_delete_token1] = ACTIONS(905), + [aux_sym_highlight_token1] = ACTIONS(907), + [aux_sym_edit_comment_token1] = ACTIONS(909), + [anon_sym_CARET_LBRACK] = ACTIONS(911), + [anon_sym_LBRACK_CARET] = ACTIONS(913), + [sym_uri_autolink] = ACTIONS(887), + [sym_email_autolink] = ACTIONS(887), + [sym__whitespace_ge_2] = ACTIONS(915), + [aux_sym__whitespace_token1] = ACTIONS(917), + [sym__word_no_digit] = ACTIONS(919), + [sym__digits] = ACTIONS(919), + [anon_sym_DASH_DASH] = ACTIONS(921), + [anon_sym_DASH_DASH_DASH] = ACTIONS(919), + [anon_sym_DOT_DOT_DOT] = ACTIONS(919), + [sym__code_span_start] = ACTIONS(923), + [sym__emphasis_open_star] = ACTIONS(925), + [sym__emphasis_open_underscore] = ACTIONS(927), + [sym__emphasis_close_star] = ACTIONS(2177), + [sym__strikeout_open] = ACTIONS(931), + [sym__latex_span_start] = ACTIONS(933), + [sym__single_quote_open] = ACTIONS(935), + [sym__double_quote_open] = ACTIONS(937), + [sym__superscript_open] = ACTIONS(939), + [sym__subscript_open] = ACTIONS(941), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(943), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(945), + [sym__cite_author_in_text] = ACTIONS(947), + [sym__cite_suppress_author] = ACTIONS(949), + [sym__shortcode_open_escaped] = ACTIONS(951), + [sym__shortcode_open] = ACTIONS(953), + [sym__unclosed_span] = ACTIONS(887), }, [STATE(59)] = { - [sym_backslash_escape] = STATE(270), - [sym_commonmark_attribute] = STATE(270), - [sym_code_span] = STATE(270), - [sym_latex_span] = STATE(270), - [sym_superscript] = STATE(270), - [sym_subscript] = STATE(270), - [sym_strikeout] = STATE(270), - [sym_quoted_span] = STATE(270), - [sym_inline_note] = STATE(270), - [sym_citation] = STATE(270), - [sym_shortcode_escaped] = STATE(270), - [sym_shortcode] = STATE(270), - [sym_note_reference] = STATE(270), - [sym__link_text] = STATE(359), - [sym__link_text_non_empty] = STATE(364), - [sym_inline_link] = STATE(66), - [sym_image] = STATE(270), - [sym__image_inline_link] = STATE(795), - [sym__image_description] = STATE(1984), - [sym__image_description_non_empty] = STATE(1984), - [sym_hard_line_break] = STATE(270), - [sym__whitespace] = STATE(792), - [sym__word] = STATE(792), - [sym__soft_line_break] = STATE(796), - [sym__inline_base] = STATE(66), - [sym__text_base] = STATE(270), - [sym__inline_element] = STATE(66), - [sym__emphasis_star] = STATE(615), - [sym__strong_emphasis_star] = STATE(66), - [sym__emphasis_underscore] = STATE(615), - [sym__strong_emphasis_underscore] = STATE(66), - [aux_sym_superscript_repeat1] = STATE(66), - [aux_sym__inline_base_repeat1] = STATE(270), - [sym__backslash_escape] = ACTIONS(809), - [sym_entity_reference] = ACTIONS(811), - [sym_numeric_character_reference] = ACTIONS(811), - [anon_sym_LT] = ACTIONS(813), - [anon_sym_GT] = ACTIONS(815), - [anon_sym_BANG] = ACTIONS(817), - [anon_sym_DQUOTE] = ACTIONS(815), - [anon_sym_POUND] = ACTIONS(815), - [anon_sym_DOLLAR] = ACTIONS(815), - [anon_sym_PERCENT] = ACTIONS(815), - [anon_sym_AMP] = ACTIONS(813), - [anon_sym_SQUOTE] = ACTIONS(815), - [anon_sym_STAR] = ACTIONS(815), - [anon_sym_PLUS] = ACTIONS(815), - [anon_sym_COMMA] = ACTIONS(815), - [anon_sym_DASH] = ACTIONS(813), - [anon_sym_DOT] = ACTIONS(813), - [anon_sym_SLASH] = ACTIONS(815), - [anon_sym_COLON] = ACTIONS(815), - [anon_sym_SEMI] = ACTIONS(815), - [anon_sym_EQ] = ACTIONS(815), - [anon_sym_QMARK] = ACTIONS(815), - [anon_sym_LBRACK] = ACTIONS(819), - [anon_sym_BSLASH] = ACTIONS(821), - [anon_sym_CARET] = ACTIONS(813), - [anon_sym__] = ACTIONS(815), - [anon_sym_BQUOTE] = ACTIONS(815), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_PIPE] = ACTIONS(815), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_RPAREN] = ACTIONS(815), - [sym__newline_token] = ACTIONS(825), - [anon_sym_CARET_LBRACK] = ACTIONS(827), - [anon_sym_LBRACK_CARET] = ACTIONS(829), - [sym_uri_autolink] = ACTIONS(811), - [sym_email_autolink] = ACTIONS(811), - [sym__whitespace_ge_2] = ACTIONS(831), - [aux_sym__whitespace_token1] = ACTIONS(833), - [sym__word_no_digit] = ACTIONS(835), - [sym__digits] = ACTIONS(835), - [anon_sym_DASH_DASH] = ACTIONS(837), - [anon_sym_DASH_DASH_DASH] = ACTIONS(835), - [anon_sym_DOT_DOT_DOT] = ACTIONS(835), - [sym__code_span_start] = ACTIONS(839), - [sym__emphasis_open_star] = ACTIONS(841), - [sym__emphasis_open_underscore] = ACTIONS(843), - [sym__strikeout_open] = ACTIONS(845), - [sym__latex_span_start] = ACTIONS(847), - [sym__single_quote_open] = ACTIONS(849), - [sym__double_quote_open] = ACTIONS(851), - [sym__superscript_open] = ACTIONS(853), - [sym__subscript_open] = ACTIONS(855), - [sym__subscript_close] = ACTIONS(1927), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(859), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(861), - [sym__cite_author_in_text] = ACTIONS(863), - [sym__cite_suppress_author] = ACTIONS(865), - [sym__shortcode_open_escaped] = ACTIONS(867), - [sym__shortcode_open] = ACTIONS(869), - [sym__unclosed_span] = ACTIONS(811), + [sym_backslash_escape] = STATE(375), + [sym_commonmark_attribute] = STATE(375), + [sym_code_span] = STATE(375), + [sym_latex_span] = STATE(375), + [sym_insert] = STATE(375), + [sym_delete] = STATE(375), + [sym_highlight] = STATE(375), + [sym_edit_comment] = STATE(375), + [sym_superscript] = STATE(375), + [sym_subscript] = STATE(375), + [sym_strikeout] = STATE(375), + [sym_quoted_span] = STATE(375), + [sym_inline_note] = STATE(375), + [sym_citation] = STATE(375), + [sym_shortcode_escaped] = STATE(375), + [sym_shortcode] = STATE(375), + [sym_note_reference] = STATE(375), + [sym__link_text] = STATE(525), + [sym__link_text_non_empty] = STATE(527), + [sym_inline_link] = STATE(149), + [sym_image] = STATE(375), + [sym__image_inline_link] = STATE(972), + [sym__image_description] = STATE(2286), + [sym__image_description_non_empty] = STATE(2286), + [sym_hard_line_break] = STATE(375), + [sym__whitespace] = STATE(949), + [sym__word] = STATE(949), + [sym__soft_line_break] = STATE(973), + [sym__inline_base] = STATE(149), + [sym__text_base] = STATE(375), + [sym__inline_element] = STATE(149), + [sym__emphasis_star] = STATE(1392), + [sym__strong_emphasis_star] = STATE(149), + [sym__emphasis_underscore] = STATE(1392), + [sym__strong_emphasis_underscore] = STATE(149), + [aux_sym_insert_repeat1] = STATE(149), + [aux_sym__inline_base_repeat1] = STATE(375), + [sym__backslash_escape] = ACTIONS(2179), + [sym_entity_reference] = ACTIONS(2181), + [sym_numeric_character_reference] = ACTIONS(2181), + [anon_sym_LT] = ACTIONS(2183), + [anon_sym_GT] = ACTIONS(2185), + [anon_sym_BANG] = ACTIONS(2187), + [anon_sym_DQUOTE] = ACTIONS(2185), + [anon_sym_POUND] = ACTIONS(2185), + [anon_sym_DOLLAR] = ACTIONS(2185), + [anon_sym_PERCENT] = ACTIONS(2185), + [anon_sym_AMP] = ACTIONS(2183), + [anon_sym_SQUOTE] = ACTIONS(2185), + [anon_sym_STAR] = ACTIONS(2185), + [anon_sym_PLUS] = ACTIONS(2185), + [anon_sym_COMMA] = ACTIONS(2185), + [anon_sym_DASH] = ACTIONS(2183), + [anon_sym_DOT] = ACTIONS(2183), + [anon_sym_SLASH] = ACTIONS(2185), + [anon_sym_COLON] = ACTIONS(2185), + [anon_sym_SEMI] = ACTIONS(2185), + [anon_sym_EQ] = ACTIONS(2185), + [anon_sym_QMARK] = ACTIONS(2185), + [anon_sym_LBRACK] = ACTIONS(2189), + [anon_sym_BSLASH] = ACTIONS(2191), + [anon_sym_CARET] = ACTIONS(2183), + [anon_sym__] = ACTIONS(2185), + [anon_sym_BQUOTE] = ACTIONS(2185), + [anon_sym_LBRACE] = ACTIONS(2193), + [anon_sym_PIPE] = ACTIONS(2185), + [anon_sym_TILDE] = ACTIONS(2185), + [anon_sym_LPAREN] = ACTIONS(2185), + [anon_sym_RPAREN] = ACTIONS(2185), + [sym__newline_token] = ACTIONS(2195), + [aux_sym_insert_token1] = ACTIONS(2197), + [aux_sym_delete_token1] = ACTIONS(2199), + [aux_sym_highlight_token1] = ACTIONS(2201), + [aux_sym_edit_comment_token1] = ACTIONS(2203), + [anon_sym_CARET_LBRACK] = ACTIONS(2205), + [anon_sym_LBRACK_CARET] = ACTIONS(2207), + [sym_uri_autolink] = ACTIONS(2181), + [sym_email_autolink] = ACTIONS(2181), + [sym__whitespace_ge_2] = ACTIONS(2209), + [aux_sym__whitespace_token1] = ACTIONS(2211), + [sym__word_no_digit] = ACTIONS(2213), + [sym__digits] = ACTIONS(2213), + [anon_sym_DASH_DASH] = ACTIONS(2215), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2213), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2213), + [sym__code_span_start] = ACTIONS(2217), + [sym__emphasis_open_star] = ACTIONS(2219), + [sym__emphasis_open_underscore] = ACTIONS(2221), + [sym__strikeout_open] = ACTIONS(2223), + [sym__latex_span_start] = ACTIONS(2225), + [sym__single_quote_open] = ACTIONS(2227), + [sym__single_quote_close] = ACTIONS(1339), + [sym__double_quote_open] = ACTIONS(2229), + [sym__superscript_open] = ACTIONS(2231), + [sym__subscript_open] = ACTIONS(2233), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2235), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2237), + [sym__cite_author_in_text] = ACTIONS(2239), + [sym__cite_suppress_author] = ACTIONS(2241), + [sym__shortcode_open_escaped] = ACTIONS(2243), + [sym__shortcode_open] = ACTIONS(2245), + [sym__unclosed_span] = ACTIONS(2181), }, [STATE(60)] = { - [sym_backslash_escape] = STATE(261), - [sym_commonmark_attribute] = STATE(261), - [sym_code_span] = STATE(261), - [sym_latex_span] = STATE(261), - [sym_superscript] = STATE(261), - [sym_subscript] = STATE(261), - [sym_strikeout] = STATE(261), - [sym_quoted_span] = STATE(261), - [sym_inline_note] = STATE(261), - [sym_citation] = STATE(261), - [sym_shortcode_escaped] = STATE(261), - [sym_shortcode] = STATE(261), - [sym_note_reference] = STATE(261), - [sym__link_text] = STATE(322), - [sym__link_text_non_empty] = STATE(323), - [sym_inline_link] = STATE(39), - [sym_image] = STATE(261), - [sym__image_inline_link] = STATE(595), - [sym__image_description] = STATE(1972), - [sym__image_description_non_empty] = STATE(1972), - [sym_hard_line_break] = STATE(261), - [sym__whitespace] = STATE(587), - [sym__word] = STATE(587), - [sym__soft_line_break] = STATE(597), - [sym__inline_base] = STATE(39), - [sym__text_base] = STATE(261), - [sym__inline_element_no_star] = STATE(39), - [aux_sym__inline_no_star] = STATE(39), - [sym__emphasis_star] = STATE(544), - [sym__strong_emphasis_star] = STATE(39), - [sym__emphasis_underscore] = STATE(544), - [sym__strong_emphasis_underscore] = STATE(39), - [aux_sym__inline_base_repeat1] = STATE(261), - [sym__backslash_escape] = ACTIONS(969), - [sym_entity_reference] = ACTIONS(971), - [sym_numeric_character_reference] = ACTIONS(971), - [anon_sym_LT] = ACTIONS(973), - [anon_sym_GT] = ACTIONS(975), - [anon_sym_BANG] = ACTIONS(977), - [anon_sym_DQUOTE] = ACTIONS(975), - [anon_sym_POUND] = ACTIONS(975), - [anon_sym_DOLLAR] = ACTIONS(975), - [anon_sym_PERCENT] = ACTIONS(975), - [anon_sym_AMP] = ACTIONS(973), - [anon_sym_SQUOTE] = ACTIONS(975), - [anon_sym_STAR] = ACTIONS(975), - [anon_sym_PLUS] = ACTIONS(975), - [anon_sym_COMMA] = ACTIONS(975), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_DOT] = ACTIONS(973), - [anon_sym_SLASH] = ACTIONS(975), - [anon_sym_COLON] = ACTIONS(975), - [anon_sym_SEMI] = ACTIONS(975), - [anon_sym_EQ] = ACTIONS(975), - [anon_sym_QMARK] = ACTIONS(975), - [anon_sym_LBRACK] = ACTIONS(979), - [anon_sym_BSLASH] = ACTIONS(981), - [anon_sym_CARET] = ACTIONS(973), - [anon_sym__] = ACTIONS(975), - [anon_sym_BQUOTE] = ACTIONS(975), - [anon_sym_LBRACE] = ACTIONS(983), - [anon_sym_PIPE] = ACTIONS(975), - [anon_sym_TILDE] = ACTIONS(975), - [anon_sym_LPAREN] = ACTIONS(975), - [anon_sym_RPAREN] = ACTIONS(975), - [sym__newline_token] = ACTIONS(985), - [anon_sym_CARET_LBRACK] = ACTIONS(987), - [anon_sym_LBRACK_CARET] = ACTIONS(989), - [sym_uri_autolink] = ACTIONS(971), - [sym_email_autolink] = ACTIONS(971), - [sym__whitespace_ge_2] = ACTIONS(991), - [aux_sym__whitespace_token1] = ACTIONS(993), - [sym__word_no_digit] = ACTIONS(995), - [sym__digits] = ACTIONS(995), - [anon_sym_DASH_DASH] = ACTIONS(997), - [anon_sym_DASH_DASH_DASH] = ACTIONS(995), - [anon_sym_DOT_DOT_DOT] = ACTIONS(995), - [sym__code_span_start] = ACTIONS(999), - [sym__emphasis_open_star] = ACTIONS(1001), - [sym__emphasis_open_underscore] = ACTIONS(1003), - [sym__emphasis_close_star] = ACTIONS(1929), - [sym__strikeout_open] = ACTIONS(1007), - [sym__latex_span_start] = ACTIONS(1009), - [sym__single_quote_open] = ACTIONS(1011), - [sym__double_quote_open] = ACTIONS(1013), - [sym__superscript_open] = ACTIONS(1015), - [sym__subscript_open] = ACTIONS(1017), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1019), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1021), - [sym__cite_author_in_text] = ACTIONS(1023), - [sym__cite_suppress_author] = ACTIONS(1025), - [sym__shortcode_open_escaped] = ACTIONS(1027), - [sym__shortcode_open] = ACTIONS(1029), - [sym__unclosed_span] = ACTIONS(971), + [sym_backslash_escape] = STATE(370), + [sym_commonmark_attribute] = STATE(370), + [sym_code_span] = STATE(370), + [sym_latex_span] = STATE(370), + [sym_insert] = STATE(370), + [sym_delete] = STATE(370), + [sym_highlight] = STATE(370), + [sym_edit_comment] = STATE(370), + [sym_superscript] = STATE(370), + [sym_subscript] = STATE(370), + [sym_strikeout] = STATE(370), + [sym_quoted_span] = STATE(370), + [sym_inline_note] = STATE(370), + [sym_citation] = STATE(370), + [sym_shortcode_escaped] = STATE(370), + [sym_shortcode] = STATE(370), + [sym_note_reference] = STATE(370), + [sym__link_text] = STATE(472), + [sym__link_text_non_empty] = STATE(473), + [sym_inline_link] = STATE(60), + [sym_image] = STATE(370), + [sym__image_inline_link] = STATE(923), + [sym__image_description] = STATE(2342), + [sym__image_description_non_empty] = STATE(2342), + [sym_hard_line_break] = STATE(370), + [sym__whitespace] = STATE(920), + [sym__word] = STATE(920), + [sym__soft_line_break] = STATE(924), + [sym__inline_base] = STATE(60), + [sym__text_base] = STATE(370), + [sym__inline_element] = STATE(60), + [sym__emphasis_star] = STATE(821), + [sym__strong_emphasis_star] = STATE(60), + [sym__emphasis_underscore] = STATE(821), + [sym__strong_emphasis_underscore] = STATE(60), + [aux_sym_insert_repeat1] = STATE(60), + [aux_sym__inline_base_repeat1] = STATE(370), + [sym__backslash_escape] = ACTIONS(2247), + [sym_entity_reference] = ACTIONS(2250), + [sym_numeric_character_reference] = ACTIONS(2250), + [anon_sym_LT] = ACTIONS(2253), + [anon_sym_GT] = ACTIONS(2256), + [anon_sym_BANG] = ACTIONS(2259), + [anon_sym_DQUOTE] = ACTIONS(2256), + [anon_sym_POUND] = ACTIONS(2256), + [anon_sym_DOLLAR] = ACTIONS(2256), + [anon_sym_PERCENT] = ACTIONS(2256), + [anon_sym_AMP] = ACTIONS(2253), + [anon_sym_SQUOTE] = ACTIONS(2256), + [anon_sym_STAR] = ACTIONS(2256), + [anon_sym_PLUS] = ACTIONS(2256), + [anon_sym_COMMA] = ACTIONS(2256), + [anon_sym_DASH] = ACTIONS(2253), + [anon_sym_DOT] = ACTIONS(2253), + [anon_sym_SLASH] = ACTIONS(2256), + [anon_sym_COLON] = ACTIONS(2256), + [anon_sym_SEMI] = ACTIONS(2256), + [anon_sym_EQ] = ACTIONS(2256), + [anon_sym_QMARK] = ACTIONS(2256), + [anon_sym_LBRACK] = ACTIONS(2262), + [anon_sym_BSLASH] = ACTIONS(2265), + [anon_sym_RBRACK] = ACTIONS(1302), + [anon_sym_CARET] = ACTIONS(2253), + [anon_sym__] = ACTIONS(2256), + [anon_sym_BQUOTE] = ACTIONS(2256), + [anon_sym_LBRACE] = ACTIONS(2268), + [anon_sym_PIPE] = ACTIONS(2256), + [anon_sym_TILDE] = ACTIONS(2256), + [anon_sym_LPAREN] = ACTIONS(2256), + [anon_sym_RPAREN] = ACTIONS(2256), + [sym__newline_token] = ACTIONS(2271), + [aux_sym_insert_token1] = ACTIONS(2274), + [aux_sym_delete_token1] = ACTIONS(2277), + [aux_sym_highlight_token1] = ACTIONS(2280), + [aux_sym_edit_comment_token1] = ACTIONS(2283), + [anon_sym_CARET_LBRACK] = ACTIONS(2286), + [anon_sym_LBRACK_CARET] = ACTIONS(2289), + [sym_uri_autolink] = ACTIONS(2250), + [sym_email_autolink] = ACTIONS(2250), + [sym__whitespace_ge_2] = ACTIONS(2292), + [aux_sym__whitespace_token1] = ACTIONS(2295), + [sym__word_no_digit] = ACTIONS(2298), + [sym__digits] = ACTIONS(2298), + [anon_sym_DASH_DASH] = ACTIONS(2301), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2298), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2298), + [sym__code_span_start] = ACTIONS(2304), + [sym__emphasis_open_star] = ACTIONS(2307), + [sym__emphasis_open_underscore] = ACTIONS(2310), + [sym__strikeout_open] = ACTIONS(2313), + [sym__latex_span_start] = ACTIONS(2316), + [sym__single_quote_open] = ACTIONS(2319), + [sym__double_quote_open] = ACTIONS(2322), + [sym__superscript_open] = ACTIONS(2325), + [sym__subscript_open] = ACTIONS(2328), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2331), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2334), + [sym__cite_author_in_text] = ACTIONS(2337), + [sym__cite_suppress_author] = ACTIONS(2340), + [sym__shortcode_open_escaped] = ACTIONS(2343), + [sym__shortcode_open] = ACTIONS(2346), + [sym__unclosed_span] = ACTIONS(2250), }, [STATE(61)] = { - [sym_backslash_escape] = STATE(274), - [sym_commonmark_attribute] = STATE(274), - [sym_code_span] = STATE(274), - [sym_latex_span] = STATE(274), - [sym_superscript] = STATE(274), - [sym_subscript] = STATE(274), - [sym_strikeout] = STATE(274), - [sym_quoted_span] = STATE(274), - [sym_inline_note] = STATE(274), - [sym_citation] = STATE(274), - [sym_shortcode_escaped] = STATE(274), - [sym_shortcode] = STATE(274), - [sym_note_reference] = STATE(274), - [sym__link_text] = STATE(351), - [sym__link_text_non_empty] = STATE(352), - [sym_inline_link] = STATE(41), - [sym_image] = STATE(274), - [sym__image_inline_link] = STATE(894), - [sym__image_description] = STATE(2008), - [sym__image_description_non_empty] = STATE(2008), - [sym_hard_line_break] = STATE(274), - [sym__whitespace] = STATE(882), - [sym__word] = STATE(882), - [sym__soft_line_break] = STATE(898), - [sym__inline_base] = STATE(41), - [sym__text_base] = STATE(274), - [sym__inline_element_no_underscore] = STATE(41), - [aux_sym__inline_no_underscore] = STATE(41), - [sym__emphasis_star] = STATE(711), - [sym__strong_emphasis_star] = STATE(41), - [sym__emphasis_underscore] = STATE(711), - [sym__strong_emphasis_underscore] = STATE(41), - [aux_sym__inline_base_repeat1] = STATE(274), - [sym__backslash_escape] = ACTIONS(1123), - [sym_entity_reference] = ACTIONS(1125), - [sym_numeric_character_reference] = ACTIONS(1125), - [anon_sym_LT] = ACTIONS(1127), - [anon_sym_GT] = ACTIONS(1129), - [anon_sym_BANG] = ACTIONS(1131), - [anon_sym_DQUOTE] = ACTIONS(1129), - [anon_sym_POUND] = ACTIONS(1129), - [anon_sym_DOLLAR] = ACTIONS(1129), - [anon_sym_PERCENT] = ACTIONS(1129), - [anon_sym_AMP] = ACTIONS(1127), - [anon_sym_SQUOTE] = ACTIONS(1129), - [anon_sym_STAR] = ACTIONS(1129), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_COMMA] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1127), - [anon_sym_DOT] = ACTIONS(1127), - [anon_sym_SLASH] = ACTIONS(1129), - [anon_sym_COLON] = ACTIONS(1129), - [anon_sym_SEMI] = ACTIONS(1129), - [anon_sym_EQ] = ACTIONS(1129), - [anon_sym_QMARK] = ACTIONS(1129), - [anon_sym_LBRACK] = ACTIONS(1133), - [anon_sym_BSLASH] = ACTIONS(1135), - [anon_sym_CARET] = ACTIONS(1127), - [anon_sym__] = ACTIONS(1129), - [anon_sym_BQUOTE] = ACTIONS(1129), - [anon_sym_LBRACE] = ACTIONS(1137), - [anon_sym_PIPE] = ACTIONS(1129), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1129), - [anon_sym_RPAREN] = ACTIONS(1129), - [sym__newline_token] = ACTIONS(1139), - [anon_sym_CARET_LBRACK] = ACTIONS(1141), - [anon_sym_LBRACK_CARET] = ACTIONS(1143), - [sym_uri_autolink] = ACTIONS(1125), - [sym_email_autolink] = ACTIONS(1125), - [sym__whitespace_ge_2] = ACTIONS(1145), - [aux_sym__whitespace_token1] = ACTIONS(1147), - [sym__word_no_digit] = ACTIONS(1149), - [sym__digits] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1151), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1149), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1149), - [sym__code_span_start] = ACTIONS(1153), - [sym__emphasis_open_star] = ACTIONS(1155), - [sym__emphasis_open_underscore] = ACTIONS(1157), - [sym__emphasis_close_underscore] = ACTIONS(1931), - [sym__strikeout_open] = ACTIONS(1161), - [sym__latex_span_start] = ACTIONS(1163), - [sym__single_quote_open] = ACTIONS(1165), - [sym__double_quote_open] = ACTIONS(1167), - [sym__superscript_open] = ACTIONS(1169), - [sym__subscript_open] = ACTIONS(1171), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1173), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1175), - [sym__cite_author_in_text] = ACTIONS(1177), - [sym__cite_suppress_author] = ACTIONS(1179), - [sym__shortcode_open_escaped] = ACTIONS(1181), - [sym__shortcode_open] = ACTIONS(1183), - [sym__unclosed_span] = ACTIONS(1125), + [sym_backslash_escape] = STATE(379), + [sym_commonmark_attribute] = STATE(379), + [sym_code_span] = STATE(379), + [sym_latex_span] = STATE(379), + [sym_insert] = STATE(379), + [sym_delete] = STATE(379), + [sym_highlight] = STATE(379), + [sym_edit_comment] = STATE(379), + [sym_superscript] = STATE(379), + [sym_subscript] = STATE(379), + [sym_strikeout] = STATE(379), + [sym_quoted_span] = STATE(379), + [sym_inline_note] = STATE(379), + [sym_citation] = STATE(379), + [sym_shortcode_escaped] = STATE(379), + [sym_shortcode] = STATE(379), + [sym_note_reference] = STATE(379), + [sym__link_text] = STATE(545), + [sym__link_text_non_empty] = STATE(546), + [sym_inline_link] = STATE(99), + [sym_image] = STATE(379), + [sym__image_inline_link] = STATE(1390), + [sym__image_description] = STATE(2363), + [sym__image_description_non_empty] = STATE(2363), + [sym_hard_line_break] = STATE(379), + [sym__whitespace] = STATE(1385), + [sym__word] = STATE(1385), + [sym__soft_line_break] = STATE(1391), + [sym__inline_base] = STATE(99), + [sym__text_base] = STATE(379), + [sym__inline_element_no_underscore] = STATE(99), + [aux_sym__inline_no_underscore] = STATE(99), + [sym__emphasis_star] = STATE(1168), + [sym__strong_emphasis_star] = STATE(99), + [sym__emphasis_underscore] = STATE(1174), + [sym__strong_emphasis_underscore] = STATE(99), + [aux_sym__inline_base_repeat1] = STATE(379), + [sym__backslash_escape] = ACTIONS(1059), + [sym_entity_reference] = ACTIONS(1061), + [sym_numeric_character_reference] = ACTIONS(1061), + [anon_sym_LT] = ACTIONS(1063), + [anon_sym_GT] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1067), + [anon_sym_DQUOTE] = ACTIONS(1065), + [anon_sym_POUND] = ACTIONS(1065), + [anon_sym_DOLLAR] = ACTIONS(1065), + [anon_sym_PERCENT] = ACTIONS(1065), + [anon_sym_AMP] = ACTIONS(1063), + [anon_sym_SQUOTE] = ACTIONS(1065), + [anon_sym_STAR] = ACTIONS(1065), + [anon_sym_PLUS] = ACTIONS(1065), + [anon_sym_COMMA] = ACTIONS(1065), + [anon_sym_DASH] = ACTIONS(1063), + [anon_sym_DOT] = ACTIONS(1063), + [anon_sym_SLASH] = ACTIONS(1065), + [anon_sym_COLON] = ACTIONS(1065), + [anon_sym_SEMI] = ACTIONS(1065), + [anon_sym_EQ] = ACTIONS(1065), + [anon_sym_QMARK] = ACTIONS(1065), + [anon_sym_LBRACK] = ACTIONS(1069), + [anon_sym_BSLASH] = ACTIONS(1071), + [anon_sym_CARET] = ACTIONS(1063), + [anon_sym__] = ACTIONS(1065), + [anon_sym_BQUOTE] = ACTIONS(1065), + [anon_sym_LBRACE] = ACTIONS(1073), + [anon_sym_PIPE] = ACTIONS(1065), + [anon_sym_TILDE] = ACTIONS(1065), + [anon_sym_LPAREN] = ACTIONS(1065), + [anon_sym_RPAREN] = ACTIONS(1065), + [sym__newline_token] = ACTIONS(1075), + [aux_sym_insert_token1] = ACTIONS(1077), + [aux_sym_delete_token1] = ACTIONS(1079), + [aux_sym_highlight_token1] = ACTIONS(1081), + [aux_sym_edit_comment_token1] = ACTIONS(1083), + [anon_sym_CARET_LBRACK] = ACTIONS(1085), + [anon_sym_LBRACK_CARET] = ACTIONS(1087), + [sym_uri_autolink] = ACTIONS(1061), + [sym_email_autolink] = ACTIONS(1061), + [sym__whitespace_ge_2] = ACTIONS(1089), + [aux_sym__whitespace_token1] = ACTIONS(1091), + [sym__word_no_digit] = ACTIONS(1093), + [sym__digits] = ACTIONS(1093), + [anon_sym_DASH_DASH] = ACTIONS(1095), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1093), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1093), + [sym__code_span_start] = ACTIONS(1097), + [sym__emphasis_open_star] = ACTIONS(1099), + [sym__emphasis_open_underscore] = ACTIONS(1101), + [sym__last_token_punctuation] = ACTIONS(2349), + [sym__strikeout_open] = ACTIONS(1105), + [sym__latex_span_start] = ACTIONS(1107), + [sym__single_quote_open] = ACTIONS(1109), + [sym__double_quote_open] = ACTIONS(1111), + [sym__superscript_open] = ACTIONS(1113), + [sym__subscript_open] = ACTIONS(1115), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1117), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1119), + [sym__cite_author_in_text] = ACTIONS(1121), + [sym__cite_suppress_author] = ACTIONS(1123), + [sym__shortcode_open_escaped] = ACTIONS(1125), + [sym__shortcode_open] = ACTIONS(1127), + [sym__unclosed_span] = ACTIONS(1061), }, [STATE(62)] = { - [sym_backslash_escape] = STATE(266), - [sym_commonmark_attribute] = STATE(266), - [sym_code_span] = STATE(266), - [sym_latex_span] = STATE(266), - [sym_superscript] = STATE(266), - [sym_subscript] = STATE(266), - [sym_strikeout] = STATE(266), - [sym_quoted_span] = STATE(266), - [sym_inline_note] = STATE(266), - [sym_citation] = STATE(266), - [sym_shortcode_escaped] = STATE(266), - [sym_shortcode] = STATE(266), - [sym_note_reference] = STATE(266), - [sym__link_text] = STATE(375), - [sym__link_text_non_empty] = STATE(376), - [sym_inline_link] = STATE(42), - [sym_image] = STATE(266), - [sym__image_inline_link] = STATE(1042), - [sym__image_description] = STATE(2044), - [sym__image_description_non_empty] = STATE(2044), - [sym_hard_line_break] = STATE(266), - [sym__whitespace] = STATE(1040), - [sym__word] = STATE(1040), - [sym__soft_line_break] = STATE(1043), - [sym__inline_base] = STATE(42), - [sym__text_base] = STATE(266), - [sym__inline_element] = STATE(42), - [sym__emphasis_star] = STATE(602), - [sym__strong_emphasis_star] = STATE(42), - [sym__emphasis_underscore] = STATE(602), - [sym__strong_emphasis_underscore] = STATE(42), - [aux_sym_superscript_repeat1] = STATE(42), - [aux_sym__inline_base_repeat1] = STATE(266), - [sym__backslash_escape] = ACTIONS(559), - [sym_entity_reference] = ACTIONS(561), - [sym_numeric_character_reference] = ACTIONS(561), - [anon_sym_LT] = ACTIONS(563), - [anon_sym_GT] = ACTIONS(565), - [anon_sym_BANG] = ACTIONS(567), - [anon_sym_DQUOTE] = ACTIONS(565), - [anon_sym_POUND] = ACTIONS(565), - [anon_sym_DOLLAR] = ACTIONS(565), - [anon_sym_PERCENT] = ACTIONS(565), - [anon_sym_AMP] = ACTIONS(563), - [anon_sym_SQUOTE] = ACTIONS(565), - [anon_sym_STAR] = ACTIONS(565), - [anon_sym_PLUS] = ACTIONS(565), - [anon_sym_COMMA] = ACTIONS(565), - [anon_sym_DASH] = ACTIONS(563), - [anon_sym_DOT] = ACTIONS(563), - [anon_sym_SLASH] = ACTIONS(565), - [anon_sym_COLON] = ACTIONS(565), - [anon_sym_SEMI] = ACTIONS(565), - [anon_sym_EQ] = ACTIONS(565), - [anon_sym_QMARK] = ACTIONS(565), - [anon_sym_LBRACK] = ACTIONS(569), - [anon_sym_BSLASH] = ACTIONS(571), - [anon_sym_CARET] = ACTIONS(563), - [anon_sym__] = ACTIONS(565), - [anon_sym_BQUOTE] = ACTIONS(565), - [anon_sym_LBRACE] = ACTIONS(573), - [anon_sym_PIPE] = ACTIONS(565), - [anon_sym_TILDE] = ACTIONS(565), - [anon_sym_LPAREN] = ACTIONS(565), - [anon_sym_RPAREN] = ACTIONS(565), - [sym__newline_token] = ACTIONS(575), - [anon_sym_CARET_LBRACK] = ACTIONS(577), - [anon_sym_LBRACK_CARET] = ACTIONS(579), - [sym_uri_autolink] = ACTIONS(561), - [sym_email_autolink] = ACTIONS(561), - [sym__whitespace_ge_2] = ACTIONS(581), - [aux_sym__whitespace_token1] = ACTIONS(583), - [sym__word_no_digit] = ACTIONS(585), - [sym__digits] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(587), - [anon_sym_DASH_DASH_DASH] = ACTIONS(585), - [anon_sym_DOT_DOT_DOT] = ACTIONS(585), - [sym__code_span_start] = ACTIONS(589), - [sym__emphasis_open_star] = ACTIONS(591), - [sym__emphasis_open_underscore] = ACTIONS(593), - [sym__strikeout_open] = ACTIONS(595), - [sym__strikeout_close] = ACTIONS(1933), - [sym__latex_span_start] = ACTIONS(599), - [sym__single_quote_open] = ACTIONS(601), - [sym__double_quote_open] = ACTIONS(603), - [sym__superscript_open] = ACTIONS(605), - [sym__subscript_open] = ACTIONS(607), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(609), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(611), - [sym__cite_author_in_text] = ACTIONS(613), - [sym__cite_suppress_author] = ACTIONS(615), - [sym__shortcode_open_escaped] = ACTIONS(617), - [sym__shortcode_open] = ACTIONS(619), - [sym__unclosed_span] = ACTIONS(561), + [sym_backslash_escape] = STATE(366), + [sym_commonmark_attribute] = STATE(366), + [sym_code_span] = STATE(366), + [sym_latex_span] = STATE(366), + [sym_insert] = STATE(366), + [sym_delete] = STATE(366), + [sym_highlight] = STATE(366), + [sym_edit_comment] = STATE(366), + [sym_superscript] = STATE(366), + [sym_subscript] = STATE(366), + [sym_strikeout] = STATE(366), + [sym_quoted_span] = STATE(366), + [sym_inline_note] = STATE(366), + [sym_citation] = STATE(366), + [sym_shortcode_escaped] = STATE(366), + [sym_shortcode] = STATE(366), + [sym_note_reference] = STATE(366), + [sym__link_text] = STATE(490), + [sym__link_text_non_empty] = STATE(491), + [sym_inline_link] = STATE(74), + [sym_image] = STATE(366), + [sym__image_inline_link] = STATE(1244), + [sym__image_description] = STATE(2280), + [sym__image_description_non_empty] = STATE(2280), + [sym_hard_line_break] = STATE(366), + [sym__whitespace] = STATE(1218), + [sym__word] = STATE(1218), + [sym__soft_line_break] = STATE(1245), + [sym__inline_base] = STATE(74), + [sym__text_base] = STATE(366), + [sym__inline_element] = STATE(74), + [sym__emphasis_star] = STATE(1270), + [sym__strong_emphasis_star] = STATE(74), + [sym__emphasis_underscore] = STATE(1270), + [sym__strong_emphasis_underscore] = STATE(74), + [aux_sym_insert_repeat1] = STATE(74), + [aux_sym__inline_base_repeat1] = STATE(366), + [sym__backslash_escape] = ACTIONS(2005), + [sym_entity_reference] = ACTIONS(2007), + [sym_numeric_character_reference] = ACTIONS(2007), + [anon_sym_LT] = ACTIONS(2009), + [anon_sym_GT] = ACTIONS(2011), + [anon_sym_BANG] = ACTIONS(2013), + [anon_sym_DQUOTE] = ACTIONS(2011), + [anon_sym_POUND] = ACTIONS(2011), + [anon_sym_DOLLAR] = ACTIONS(2011), + [anon_sym_PERCENT] = ACTIONS(2011), + [anon_sym_AMP] = ACTIONS(2009), + [anon_sym_SQUOTE] = ACTIONS(2011), + [anon_sym_STAR] = ACTIONS(2011), + [anon_sym_PLUS] = ACTIONS(2011), + [anon_sym_COMMA] = ACTIONS(2011), + [anon_sym_DASH] = ACTIONS(2009), + [anon_sym_DOT] = ACTIONS(2009), + [anon_sym_SLASH] = ACTIONS(2011), + [anon_sym_COLON] = ACTIONS(2011), + [anon_sym_SEMI] = ACTIONS(2011), + [anon_sym_EQ] = ACTIONS(2011), + [anon_sym_QMARK] = ACTIONS(2011), + [anon_sym_LBRACK] = ACTIONS(2015), + [anon_sym_BSLASH] = ACTIONS(2017), + [anon_sym_CARET] = ACTIONS(2009), + [anon_sym__] = ACTIONS(2011), + [anon_sym_BQUOTE] = ACTIONS(2011), + [anon_sym_LBRACE] = ACTIONS(2019), + [anon_sym_PIPE] = ACTIONS(2011), + [anon_sym_TILDE] = ACTIONS(2011), + [anon_sym_LPAREN] = ACTIONS(2011), + [anon_sym_RPAREN] = ACTIONS(2011), + [sym__newline_token] = ACTIONS(2021), + [aux_sym_insert_token1] = ACTIONS(2023), + [aux_sym_delete_token1] = ACTIONS(2025), + [aux_sym_highlight_token1] = ACTIONS(2027), + [aux_sym_edit_comment_token1] = ACTIONS(2029), + [anon_sym_CARET_LBRACK] = ACTIONS(2031), + [anon_sym_LBRACK_CARET] = ACTIONS(2033), + [sym_uri_autolink] = ACTIONS(2007), + [sym_email_autolink] = ACTIONS(2007), + [sym__whitespace_ge_2] = ACTIONS(2035), + [aux_sym__whitespace_token1] = ACTIONS(2037), + [sym__word_no_digit] = ACTIONS(2039), + [sym__digits] = ACTIONS(2039), + [anon_sym_DASH_DASH] = ACTIONS(2041), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2039), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2039), + [sym__code_span_start] = ACTIONS(2043), + [sym__emphasis_open_star] = ACTIONS(2045), + [sym__emphasis_open_underscore] = ACTIONS(2047), + [sym__strikeout_open] = ACTIONS(2049), + [sym__strikeout_close] = ACTIONS(2351), + [sym__latex_span_start] = ACTIONS(2053), + [sym__single_quote_open] = ACTIONS(2055), + [sym__double_quote_open] = ACTIONS(2057), + [sym__superscript_open] = ACTIONS(2059), + [sym__subscript_open] = ACTIONS(2061), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2063), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2065), + [sym__cite_author_in_text] = ACTIONS(2067), + [sym__cite_suppress_author] = ACTIONS(2069), + [sym__shortcode_open_escaped] = ACTIONS(2071), + [sym__shortcode_open] = ACTIONS(2073), + [sym__unclosed_span] = ACTIONS(2007), }, [STATE(63)] = { - [sym_backslash_escape] = STATE(272), - [sym_commonmark_attribute] = STATE(272), - [sym_code_span] = STATE(272), - [sym_latex_span] = STATE(272), - [sym_superscript] = STATE(272), - [sym_subscript] = STATE(272), - [sym_strikeout] = STATE(272), - [sym_quoted_span] = STATE(272), - [sym_inline_note] = STATE(272), - [sym_citation] = STATE(272), - [sym_shortcode_escaped] = STATE(272), - [sym_shortcode] = STATE(272), - [sym_note_reference] = STATE(272), - [sym__link_text] = STATE(401), - [sym__link_text_non_empty] = STATE(402), - [sym_inline_link] = STATE(49), - [sym_image] = STATE(272), - [sym__image_inline_link] = STATE(1136), - [sym__image_description] = STATE(1942), - [sym__image_description_non_empty] = STATE(1942), - [sym_hard_line_break] = STATE(272), - [sym__whitespace] = STATE(1133), - [sym__word] = STATE(1133), - [sym__soft_line_break] = STATE(1137), - [sym__inline_base] = STATE(49), - [sym__text_base] = STATE(272), - [sym__inline_element] = STATE(49), - [sym__emphasis_star] = STATE(902), - [sym__strong_emphasis_star] = STATE(49), - [sym__emphasis_underscore] = STATE(902), - [sym__strong_emphasis_underscore] = STATE(49), - [aux_sym_superscript_repeat1] = STATE(49), - [aux_sym__inline_base_repeat1] = STATE(272), - [sym__backslash_escape] = ACTIONS(625), - [sym_entity_reference] = ACTIONS(627), - [sym_numeric_character_reference] = ACTIONS(627), - [anon_sym_LT] = ACTIONS(629), - [anon_sym_GT] = ACTIONS(631), - [anon_sym_BANG] = ACTIONS(633), - [anon_sym_DQUOTE] = ACTIONS(631), - [anon_sym_POUND] = ACTIONS(631), - [anon_sym_DOLLAR] = ACTIONS(631), - [anon_sym_PERCENT] = ACTIONS(631), - [anon_sym_AMP] = ACTIONS(629), - [anon_sym_SQUOTE] = ACTIONS(631), - [anon_sym_STAR] = ACTIONS(631), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_COMMA] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(629), - [anon_sym_DOT] = ACTIONS(629), - [anon_sym_SLASH] = ACTIONS(631), - [anon_sym_COLON] = ACTIONS(631), - [anon_sym_SEMI] = ACTIONS(631), - [anon_sym_EQ] = ACTIONS(631), - [anon_sym_QMARK] = ACTIONS(631), - [anon_sym_LBRACK] = ACTIONS(635), - [anon_sym_BSLASH] = ACTIONS(637), - [anon_sym_CARET] = ACTIONS(629), - [anon_sym__] = ACTIONS(631), - [anon_sym_BQUOTE] = ACTIONS(631), - [anon_sym_LBRACE] = ACTIONS(639), - [anon_sym_PIPE] = ACTIONS(631), - [anon_sym_TILDE] = ACTIONS(631), - [anon_sym_LPAREN] = ACTIONS(631), - [anon_sym_RPAREN] = ACTIONS(631), - [sym__newline_token] = ACTIONS(641), - [anon_sym_CARET_LBRACK] = ACTIONS(643), - [anon_sym_LBRACK_CARET] = ACTIONS(645), - [sym_uri_autolink] = ACTIONS(627), - [sym_email_autolink] = ACTIONS(627), - [sym__whitespace_ge_2] = ACTIONS(647), - [aux_sym__whitespace_token1] = ACTIONS(649), - [sym__word_no_digit] = ACTIONS(651), - [sym__digits] = ACTIONS(651), - [anon_sym_DASH_DASH] = ACTIONS(653), - [anon_sym_DASH_DASH_DASH] = ACTIONS(651), - [anon_sym_DOT_DOT_DOT] = ACTIONS(651), - [sym__code_span_start] = ACTIONS(655), - [sym__emphasis_open_star] = ACTIONS(657), - [sym__emphasis_open_underscore] = ACTIONS(659), - [sym__strikeout_open] = ACTIONS(661), - [sym__latex_span_start] = ACTIONS(663), - [sym__single_quote_open] = ACTIONS(665), - [sym__single_quote_close] = ACTIONS(1935), - [sym__double_quote_open] = ACTIONS(669), - [sym__superscript_open] = ACTIONS(671), - [sym__subscript_open] = ACTIONS(673), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(675), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(677), - [sym__cite_author_in_text] = ACTIONS(679), - [sym__cite_suppress_author] = ACTIONS(681), - [sym__shortcode_open_escaped] = ACTIONS(683), - [sym__shortcode_open] = ACTIONS(685), - [sym__unclosed_span] = ACTIONS(627), + [sym_backslash_escape] = STATE(375), + [sym_commonmark_attribute] = STATE(375), + [sym_code_span] = STATE(375), + [sym_latex_span] = STATE(375), + [sym_insert] = STATE(375), + [sym_delete] = STATE(375), + [sym_highlight] = STATE(375), + [sym_edit_comment] = STATE(375), + [sym_superscript] = STATE(375), + [sym_subscript] = STATE(375), + [sym_strikeout] = STATE(375), + [sym_quoted_span] = STATE(375), + [sym_inline_note] = STATE(375), + [sym_citation] = STATE(375), + [sym_shortcode_escaped] = STATE(375), + [sym_shortcode] = STATE(375), + [sym_note_reference] = STATE(375), + [sym__link_text] = STATE(525), + [sym__link_text_non_empty] = STATE(527), + [sym_inline_link] = STATE(75), + [sym_image] = STATE(375), + [sym__image_inline_link] = STATE(972), + [sym__image_description] = STATE(2286), + [sym__image_description_non_empty] = STATE(2286), + [sym_hard_line_break] = STATE(375), + [sym__whitespace] = STATE(949), + [sym__word] = STATE(949), + [sym__soft_line_break] = STATE(973), + [sym__inline_base] = STATE(75), + [sym__text_base] = STATE(375), + [sym__inline_element] = STATE(75), + [sym__emphasis_star] = STATE(1392), + [sym__strong_emphasis_star] = STATE(75), + [sym__emphasis_underscore] = STATE(1392), + [sym__strong_emphasis_underscore] = STATE(75), + [aux_sym_insert_repeat1] = STATE(75), + [aux_sym__inline_base_repeat1] = STATE(375), + [sym__backslash_escape] = ACTIONS(2179), + [sym_entity_reference] = ACTIONS(2181), + [sym_numeric_character_reference] = ACTIONS(2181), + [anon_sym_LT] = ACTIONS(2183), + [anon_sym_GT] = ACTIONS(2185), + [anon_sym_BANG] = ACTIONS(2187), + [anon_sym_DQUOTE] = ACTIONS(2185), + [anon_sym_POUND] = ACTIONS(2185), + [anon_sym_DOLLAR] = ACTIONS(2185), + [anon_sym_PERCENT] = ACTIONS(2185), + [anon_sym_AMP] = ACTIONS(2183), + [anon_sym_SQUOTE] = ACTIONS(2185), + [anon_sym_STAR] = ACTIONS(2185), + [anon_sym_PLUS] = ACTIONS(2185), + [anon_sym_COMMA] = ACTIONS(2185), + [anon_sym_DASH] = ACTIONS(2183), + [anon_sym_DOT] = ACTIONS(2183), + [anon_sym_SLASH] = ACTIONS(2185), + [anon_sym_COLON] = ACTIONS(2185), + [anon_sym_SEMI] = ACTIONS(2185), + [anon_sym_EQ] = ACTIONS(2185), + [anon_sym_QMARK] = ACTIONS(2185), + [anon_sym_LBRACK] = ACTIONS(2189), + [anon_sym_BSLASH] = ACTIONS(2191), + [anon_sym_CARET] = ACTIONS(2183), + [anon_sym__] = ACTIONS(2185), + [anon_sym_BQUOTE] = ACTIONS(2185), + [anon_sym_LBRACE] = ACTIONS(2193), + [anon_sym_PIPE] = ACTIONS(2185), + [anon_sym_TILDE] = ACTIONS(2185), + [anon_sym_LPAREN] = ACTIONS(2185), + [anon_sym_RPAREN] = ACTIONS(2185), + [sym__newline_token] = ACTIONS(2195), + [aux_sym_insert_token1] = ACTIONS(2197), + [aux_sym_delete_token1] = ACTIONS(2199), + [aux_sym_highlight_token1] = ACTIONS(2201), + [aux_sym_edit_comment_token1] = ACTIONS(2203), + [anon_sym_CARET_LBRACK] = ACTIONS(2205), + [anon_sym_LBRACK_CARET] = ACTIONS(2207), + [sym_uri_autolink] = ACTIONS(2181), + [sym_email_autolink] = ACTIONS(2181), + [sym__whitespace_ge_2] = ACTIONS(2209), + [aux_sym__whitespace_token1] = ACTIONS(2211), + [sym__word_no_digit] = ACTIONS(2213), + [sym__digits] = ACTIONS(2213), + [anon_sym_DASH_DASH] = ACTIONS(2215), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2213), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2213), + [sym__code_span_start] = ACTIONS(2217), + [sym__emphasis_open_star] = ACTIONS(2219), + [sym__emphasis_open_underscore] = ACTIONS(2221), + [sym__strikeout_open] = ACTIONS(2223), + [sym__latex_span_start] = ACTIONS(2225), + [sym__single_quote_open] = ACTIONS(2227), + [sym__single_quote_close] = ACTIONS(2353), + [sym__double_quote_open] = ACTIONS(2229), + [sym__superscript_open] = ACTIONS(2231), + [sym__subscript_open] = ACTIONS(2233), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2235), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2237), + [sym__cite_author_in_text] = ACTIONS(2239), + [sym__cite_suppress_author] = ACTIONS(2241), + [sym__shortcode_open_escaped] = ACTIONS(2243), + [sym__shortcode_open] = ACTIONS(2245), + [sym__unclosed_span] = ACTIONS(2181), }, [STATE(64)] = { - [sym_backslash_escape] = STATE(277), - [sym_commonmark_attribute] = STATE(277), - [sym_code_span] = STATE(277), - [sym_latex_span] = STATE(277), - [sym_superscript] = STATE(277), - [sym_subscript] = STATE(277), - [sym_strikeout] = STATE(277), - [sym_quoted_span] = STATE(277), - [sym_inline_note] = STATE(277), - [sym_citation] = STATE(277), - [sym_shortcode_escaped] = STATE(277), - [sym_shortcode] = STATE(277), - [sym_note_reference] = STATE(277), - [sym__link_text] = STATE(427), - [sym__link_text_non_empty] = STATE(428), - [sym_inline_link] = STATE(50), - [sym_image] = STATE(277), - [sym__image_inline_link] = STATE(613), - [sym__image_description] = STATE(1930), - [sym__image_description_non_empty] = STATE(1930), - [sym_hard_line_break] = STATE(277), - [sym__whitespace] = STATE(610), - [sym__word] = STATE(610), - [sym__soft_line_break] = STATE(614), - [sym__inline_base] = STATE(50), - [sym__text_base] = STATE(277), - [sym__inline_element] = STATE(50), - [sym__emphasis_star] = STATE(1044), - [sym__strong_emphasis_star] = STATE(50), - [sym__emphasis_underscore] = STATE(1044), - [sym__strong_emphasis_underscore] = STATE(50), - [aux_sym_superscript_repeat1] = STATE(50), - [aux_sym__inline_base_repeat1] = STATE(277), - [sym__backslash_escape] = ACTIONS(687), - [sym_entity_reference] = ACTIONS(689), - [sym_numeric_character_reference] = ACTIONS(689), - [anon_sym_LT] = ACTIONS(691), - [anon_sym_GT] = ACTIONS(693), - [anon_sym_BANG] = ACTIONS(695), - [anon_sym_DQUOTE] = ACTIONS(693), - [anon_sym_POUND] = ACTIONS(693), - [anon_sym_DOLLAR] = ACTIONS(693), - [anon_sym_PERCENT] = ACTIONS(693), - [anon_sym_AMP] = ACTIONS(691), - [anon_sym_SQUOTE] = ACTIONS(693), - [anon_sym_STAR] = ACTIONS(693), - [anon_sym_PLUS] = ACTIONS(693), - [anon_sym_COMMA] = ACTIONS(693), - [anon_sym_DASH] = ACTIONS(691), - [anon_sym_DOT] = ACTIONS(691), - [anon_sym_SLASH] = ACTIONS(693), - [anon_sym_COLON] = ACTIONS(693), - [anon_sym_SEMI] = ACTIONS(693), - [anon_sym_EQ] = ACTIONS(693), - [anon_sym_QMARK] = ACTIONS(693), - [anon_sym_LBRACK] = ACTIONS(697), - [anon_sym_BSLASH] = ACTIONS(699), - [anon_sym_CARET] = ACTIONS(691), - [anon_sym__] = ACTIONS(693), - [anon_sym_BQUOTE] = ACTIONS(693), - [anon_sym_LBRACE] = ACTIONS(701), - [anon_sym_PIPE] = ACTIONS(693), - [anon_sym_TILDE] = ACTIONS(693), - [anon_sym_LPAREN] = ACTIONS(693), - [anon_sym_RPAREN] = ACTIONS(693), - [sym__newline_token] = ACTIONS(703), - [anon_sym_CARET_LBRACK] = ACTIONS(705), - [anon_sym_LBRACK_CARET] = ACTIONS(707), - [sym_uri_autolink] = ACTIONS(689), - [sym_email_autolink] = ACTIONS(689), - [sym__whitespace_ge_2] = ACTIONS(709), - [aux_sym__whitespace_token1] = ACTIONS(711), - [sym__word_no_digit] = ACTIONS(713), - [sym__digits] = ACTIONS(713), - [anon_sym_DASH_DASH] = ACTIONS(715), - [anon_sym_DASH_DASH_DASH] = ACTIONS(713), - [anon_sym_DOT_DOT_DOT] = ACTIONS(713), - [sym__code_span_start] = ACTIONS(717), - [sym__emphasis_open_star] = ACTIONS(719), - [sym__emphasis_open_underscore] = ACTIONS(721), - [sym__strikeout_open] = ACTIONS(723), - [sym__latex_span_start] = ACTIONS(725), - [sym__single_quote_open] = ACTIONS(727), - [sym__double_quote_open] = ACTIONS(729), - [sym__double_quote_close] = ACTIONS(1935), - [sym__superscript_open] = ACTIONS(731), - [sym__subscript_open] = ACTIONS(733), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(735), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(737), - [sym__cite_author_in_text] = ACTIONS(739), - [sym__cite_suppress_author] = ACTIONS(741), - [sym__shortcode_open_escaped] = ACTIONS(743), - [sym__shortcode_open] = ACTIONS(745), - [sym__unclosed_span] = ACTIONS(689), + [sym_backslash_escape] = STATE(383), + [sym_commonmark_attribute] = STATE(383), + [sym_code_span] = STATE(383), + [sym_latex_span] = STATE(383), + [sym_insert] = STATE(383), + [sym_delete] = STATE(383), + [sym_highlight] = STATE(383), + [sym_edit_comment] = STATE(383), + [sym_superscript] = STATE(383), + [sym_subscript] = STATE(383), + [sym_strikeout] = STATE(383), + [sym_quoted_span] = STATE(383), + [sym_inline_note] = STATE(383), + [sym_citation] = STATE(383), + [sym_shortcode_escaped] = STATE(383), + [sym_shortcode] = STATE(383), + [sym_note_reference] = STATE(383), + [sym__link_text] = STATE(395), + [sym__link_text_non_empty] = STATE(396), + [sym_inline_link] = STATE(76), + [sym_image] = STATE(383), + [sym__image_inline_link] = STATE(1263), + [sym__image_description] = STATE(2300), + [sym__image_description_non_empty] = STATE(2300), + [sym_hard_line_break] = STATE(383), + [sym__whitespace] = STATE(1259), + [sym__word] = STATE(1259), + [sym__soft_line_break] = STATE(1264), + [sym__inline_base] = STATE(76), + [sym__text_base] = STATE(383), + [sym__inline_element] = STATE(76), + [sym__emphasis_star] = STATE(1249), + [sym__strong_emphasis_star] = STATE(76), + [sym__emphasis_underscore] = STATE(1249), + [sym__strong_emphasis_underscore] = STATE(76), + [aux_sym_insert_repeat1] = STATE(76), + [aux_sym__inline_base_repeat1] = STATE(383), + [sym__backslash_escape] = ACTIONS(637), + [sym_entity_reference] = ACTIONS(639), + [sym_numeric_character_reference] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_GT] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(645), + [anon_sym_DQUOTE] = ACTIONS(643), + [anon_sym_POUND] = ACTIONS(643), + [anon_sym_DOLLAR] = ACTIONS(643), + [anon_sym_PERCENT] = ACTIONS(643), + [anon_sym_AMP] = ACTIONS(641), + [anon_sym_SQUOTE] = ACTIONS(643), + [anon_sym_STAR] = ACTIONS(643), + [anon_sym_PLUS] = ACTIONS(643), + [anon_sym_COMMA] = ACTIONS(643), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_DOT] = ACTIONS(641), + [anon_sym_SLASH] = ACTIONS(643), + [anon_sym_COLON] = ACTIONS(643), + [anon_sym_SEMI] = ACTIONS(643), + [anon_sym_EQ] = ACTIONS(643), + [anon_sym_QMARK] = ACTIONS(643), + [anon_sym_LBRACK] = ACTIONS(647), + [anon_sym_BSLASH] = ACTIONS(649), + [anon_sym_CARET] = ACTIONS(641), + [anon_sym__] = ACTIONS(643), + [anon_sym_BQUOTE] = ACTIONS(643), + [anon_sym_LBRACE] = ACTIONS(651), + [anon_sym_PIPE] = ACTIONS(643), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_LPAREN] = ACTIONS(643), + [anon_sym_RPAREN] = ACTIONS(643), + [sym__newline_token] = ACTIONS(653), + [aux_sym_insert_token1] = ACTIONS(655), + [aux_sym_delete_token1] = ACTIONS(657), + [aux_sym_highlight_token1] = ACTIONS(659), + [aux_sym_edit_comment_token1] = ACTIONS(661), + [anon_sym_CARET_LBRACK] = ACTIONS(663), + [anon_sym_LBRACK_CARET] = ACTIONS(665), + [sym_uri_autolink] = ACTIONS(639), + [sym_email_autolink] = ACTIONS(639), + [sym__whitespace_ge_2] = ACTIONS(667), + [aux_sym__whitespace_token1] = ACTIONS(669), + [sym__word_no_digit] = ACTIONS(671), + [sym__digits] = ACTIONS(671), + [anon_sym_DASH_DASH] = ACTIONS(673), + [anon_sym_DASH_DASH_DASH] = ACTIONS(671), + [anon_sym_DOT_DOT_DOT] = ACTIONS(671), + [sym__code_span_start] = ACTIONS(675), + [sym__emphasis_open_star] = ACTIONS(677), + [sym__emphasis_open_underscore] = ACTIONS(679), + [sym__strikeout_open] = ACTIONS(681), + [sym__latex_span_start] = ACTIONS(683), + [sym__single_quote_open] = ACTIONS(685), + [sym__double_quote_open] = ACTIONS(687), + [sym__double_quote_close] = ACTIONS(2353), + [sym__superscript_open] = ACTIONS(691), + [sym__subscript_open] = ACTIONS(693), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(695), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(697), + [sym__cite_author_in_text] = ACTIONS(699), + [sym__cite_suppress_author] = ACTIONS(701), + [sym__shortcode_open_escaped] = ACTIONS(703), + [sym__shortcode_open] = ACTIONS(705), + [sym__unclosed_span] = ACTIONS(639), }, [STATE(65)] = { - [sym_backslash_escape] = STATE(262), - [sym_commonmark_attribute] = STATE(262), - [sym_code_span] = STATE(262), - [sym_latex_span] = STATE(262), - [sym_superscript] = STATE(262), - [sym_subscript] = STATE(262), - [sym_strikeout] = STATE(262), - [sym_quoted_span] = STATE(262), - [sym_inline_note] = STATE(262), - [sym_citation] = STATE(262), - [sym_shortcode_escaped] = STATE(262), - [sym_shortcode] = STATE(262), - [sym_note_reference] = STATE(262), - [sym__link_text] = STATE(313), - [sym__link_text_non_empty] = STATE(314), - [sym_inline_link] = STATE(51), - [sym_image] = STATE(262), - [sym__image_inline_link] = STATE(708), - [sym__image_description] = STATE(1970), - [sym__image_description_non_empty] = STATE(1970), - [sym_hard_line_break] = STATE(262), - [sym__whitespace] = STATE(705), - [sym__word] = STATE(705), - [sym__soft_line_break] = STATE(709), - [sym__inline_base] = STATE(51), - [sym__text_base] = STATE(262), - [sym__inline_element] = STATE(51), - [sym__emphasis_star] = STATE(1138), - [sym__strong_emphasis_star] = STATE(51), - [sym__emphasis_underscore] = STATE(1138), - [sym__strong_emphasis_underscore] = STATE(51), - [aux_sym_superscript_repeat1] = STATE(51), - [aux_sym__inline_base_repeat1] = STATE(262), - [sym__backslash_escape] = ACTIONS(747), - [sym_entity_reference] = ACTIONS(749), - [sym_numeric_character_reference] = ACTIONS(749), - [anon_sym_LT] = ACTIONS(751), - [anon_sym_GT] = ACTIONS(753), - [anon_sym_BANG] = ACTIONS(755), - [anon_sym_DQUOTE] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(753), - [anon_sym_DOLLAR] = ACTIONS(753), - [anon_sym_PERCENT] = ACTIONS(753), - [anon_sym_AMP] = ACTIONS(751), - [anon_sym_SQUOTE] = ACTIONS(753), - [anon_sym_STAR] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(753), - [anon_sym_COMMA] = ACTIONS(753), - [anon_sym_DASH] = ACTIONS(751), - [anon_sym_DOT] = ACTIONS(751), - [anon_sym_SLASH] = ACTIONS(753), - [anon_sym_COLON] = ACTIONS(753), - [anon_sym_SEMI] = ACTIONS(753), - [anon_sym_EQ] = ACTIONS(753), - [anon_sym_QMARK] = ACTIONS(753), - [anon_sym_LBRACK] = ACTIONS(757), - [anon_sym_BSLASH] = ACTIONS(759), - [anon_sym_CARET] = ACTIONS(751), - [anon_sym__] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(753), - [anon_sym_LBRACE] = ACTIONS(761), - [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_TILDE] = ACTIONS(753), - [anon_sym_LPAREN] = ACTIONS(753), - [anon_sym_RPAREN] = ACTIONS(753), - [sym__newline_token] = ACTIONS(763), - [anon_sym_CARET_LBRACK] = ACTIONS(765), - [anon_sym_LBRACK_CARET] = ACTIONS(767), - [sym_uri_autolink] = ACTIONS(749), - [sym_email_autolink] = ACTIONS(749), - [sym__whitespace_ge_2] = ACTIONS(769), - [aux_sym__whitespace_token1] = ACTIONS(771), - [sym__word_no_digit] = ACTIONS(773), - [sym__digits] = ACTIONS(773), - [anon_sym_DASH_DASH] = ACTIONS(775), - [anon_sym_DASH_DASH_DASH] = ACTIONS(773), - [anon_sym_DOT_DOT_DOT] = ACTIONS(773), - [sym__code_span_start] = ACTIONS(777), - [sym__emphasis_open_star] = ACTIONS(779), - [sym__emphasis_open_underscore] = ACTIONS(781), - [sym__strikeout_open] = ACTIONS(783), - [sym__latex_span_start] = ACTIONS(785), - [sym__single_quote_open] = ACTIONS(787), - [sym__double_quote_open] = ACTIONS(789), - [sym__superscript_open] = ACTIONS(791), - [sym__superscript_close] = ACTIONS(1937), - [sym__subscript_open] = ACTIONS(795), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(797), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(799), - [sym__cite_author_in_text] = ACTIONS(801), - [sym__cite_suppress_author] = ACTIONS(803), - [sym__shortcode_open_escaped] = ACTIONS(805), - [sym__shortcode_open] = ACTIONS(807), - [sym__unclosed_span] = ACTIONS(749), + [sym_backslash_escape] = STATE(365), + [sym_commonmark_attribute] = STATE(365), + [sym_code_span] = STATE(365), + [sym_latex_span] = STATE(365), + [sym_insert] = STATE(365), + [sym_delete] = STATE(365), + [sym_highlight] = STATE(365), + [sym_edit_comment] = STATE(365), + [sym_superscript] = STATE(365), + [sym_subscript] = STATE(365), + [sym_strikeout] = STATE(365), + [sym_quoted_span] = STATE(365), + [sym_inline_note] = STATE(365), + [sym_citation] = STATE(365), + [sym_shortcode_escaped] = STATE(365), + [sym_shortcode] = STATE(365), + [sym_note_reference] = STATE(365), + [sym__link_text] = STATE(416), + [sym__link_text_non_empty] = STATE(417), + [sym_inline_link] = STATE(77), + [sym_image] = STATE(365), + [sym__image_inline_link] = STATE(712), + [sym__image_description] = STATE(2314), + [sym__image_description_non_empty] = STATE(2314), + [sym_hard_line_break] = STATE(365), + [sym__whitespace] = STATE(709), + [sym__word] = STATE(709), + [sym__soft_line_break] = STATE(713), + [sym__inline_base] = STATE(77), + [sym__text_base] = STATE(365), + [sym__inline_element] = STATE(77), + [sym__emphasis_star] = STATE(979), + [sym__strong_emphasis_star] = STATE(77), + [sym__emphasis_underscore] = STATE(979), + [sym__strong_emphasis_underscore] = STATE(77), + [aux_sym_insert_repeat1] = STATE(77), + [aux_sym__inline_base_repeat1] = STATE(365), + [sym__backslash_escape] = ACTIONS(1341), + [sym_entity_reference] = ACTIONS(1343), + [sym_numeric_character_reference] = ACTIONS(1343), + [anon_sym_LT] = ACTIONS(1345), + [anon_sym_GT] = ACTIONS(1347), + [anon_sym_BANG] = ACTIONS(1349), + [anon_sym_DQUOTE] = ACTIONS(1347), + [anon_sym_POUND] = ACTIONS(1347), + [anon_sym_DOLLAR] = ACTIONS(1347), + [anon_sym_PERCENT] = ACTIONS(1347), + [anon_sym_AMP] = ACTIONS(1345), + [anon_sym_SQUOTE] = ACTIONS(1347), + [anon_sym_STAR] = ACTIONS(1347), + [anon_sym_PLUS] = ACTIONS(1347), + [anon_sym_COMMA] = ACTIONS(1347), + [anon_sym_DASH] = ACTIONS(1345), + [anon_sym_DOT] = ACTIONS(1345), + [anon_sym_SLASH] = ACTIONS(1347), + [anon_sym_COLON] = ACTIONS(1347), + [anon_sym_SEMI] = ACTIONS(1347), + [anon_sym_EQ] = ACTIONS(1347), + [anon_sym_QMARK] = ACTIONS(1347), + [anon_sym_LBRACK] = ACTIONS(1351), + [anon_sym_BSLASH] = ACTIONS(1353), + [anon_sym_CARET] = ACTIONS(1345), + [anon_sym__] = ACTIONS(1347), + [anon_sym_BQUOTE] = ACTIONS(1347), + [anon_sym_LBRACE] = ACTIONS(1355), + [anon_sym_PIPE] = ACTIONS(1347), + [anon_sym_TILDE] = ACTIONS(1347), + [anon_sym_LPAREN] = ACTIONS(1347), + [anon_sym_RPAREN] = ACTIONS(1347), + [sym__newline_token] = ACTIONS(1357), + [aux_sym_insert_token1] = ACTIONS(1359), + [aux_sym_delete_token1] = ACTIONS(1361), + [aux_sym_highlight_token1] = ACTIONS(1363), + [aux_sym_edit_comment_token1] = ACTIONS(1365), + [anon_sym_CARET_LBRACK] = ACTIONS(1367), + [anon_sym_LBRACK_CARET] = ACTIONS(1369), + [sym_uri_autolink] = ACTIONS(1343), + [sym_email_autolink] = ACTIONS(1343), + [sym__whitespace_ge_2] = ACTIONS(1371), + [aux_sym__whitespace_token1] = ACTIONS(1373), + [sym__word_no_digit] = ACTIONS(1375), + [sym__digits] = ACTIONS(1375), + [anon_sym_DASH_DASH] = ACTIONS(1377), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1375), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1375), + [sym__code_span_start] = ACTIONS(1379), + [sym__emphasis_open_star] = ACTIONS(1381), + [sym__emphasis_open_underscore] = ACTIONS(1383), + [sym__strikeout_open] = ACTIONS(1385), + [sym__latex_span_start] = ACTIONS(1387), + [sym__single_quote_open] = ACTIONS(1389), + [sym__double_quote_open] = ACTIONS(1391), + [sym__superscript_open] = ACTIONS(1393), + [sym__superscript_close] = ACTIONS(2355), + [sym__subscript_open] = ACTIONS(1397), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1399), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1401), + [sym__cite_author_in_text] = ACTIONS(1403), + [sym__cite_suppress_author] = ACTIONS(1405), + [sym__shortcode_open_escaped] = ACTIONS(1407), + [sym__shortcode_open] = ACTIONS(1409), + [sym__unclosed_span] = ACTIONS(1343), }, [STATE(66)] = { - [sym_backslash_escape] = STATE(270), - [sym_commonmark_attribute] = STATE(270), - [sym_code_span] = STATE(270), - [sym_latex_span] = STATE(270), - [sym_superscript] = STATE(270), - [sym_subscript] = STATE(270), - [sym_strikeout] = STATE(270), - [sym_quoted_span] = STATE(270), - [sym_inline_note] = STATE(270), - [sym_citation] = STATE(270), - [sym_shortcode_escaped] = STATE(270), - [sym_shortcode] = STATE(270), - [sym_note_reference] = STATE(270), - [sym__link_text] = STATE(359), - [sym__link_text_non_empty] = STATE(364), - [sym_inline_link] = STATE(52), - [sym_image] = STATE(270), - [sym__image_inline_link] = STATE(795), - [sym__image_description] = STATE(1984), - [sym__image_description_non_empty] = STATE(1984), - [sym_hard_line_break] = STATE(270), - [sym__whitespace] = STATE(792), - [sym__word] = STATE(792), - [sym__soft_line_break] = STATE(796), - [sym__inline_base] = STATE(52), - [sym__text_base] = STATE(270), - [sym__inline_element] = STATE(52), - [sym__emphasis_star] = STATE(615), - [sym__strong_emphasis_star] = STATE(52), - [sym__emphasis_underscore] = STATE(615), - [sym__strong_emphasis_underscore] = STATE(52), - [aux_sym_superscript_repeat1] = STATE(52), - [aux_sym__inline_base_repeat1] = STATE(270), - [sym__backslash_escape] = ACTIONS(809), - [sym_entity_reference] = ACTIONS(811), - [sym_numeric_character_reference] = ACTIONS(811), - [anon_sym_LT] = ACTIONS(813), - [anon_sym_GT] = ACTIONS(815), - [anon_sym_BANG] = ACTIONS(817), - [anon_sym_DQUOTE] = ACTIONS(815), - [anon_sym_POUND] = ACTIONS(815), - [anon_sym_DOLLAR] = ACTIONS(815), - [anon_sym_PERCENT] = ACTIONS(815), - [anon_sym_AMP] = ACTIONS(813), - [anon_sym_SQUOTE] = ACTIONS(815), - [anon_sym_STAR] = ACTIONS(815), - [anon_sym_PLUS] = ACTIONS(815), - [anon_sym_COMMA] = ACTIONS(815), - [anon_sym_DASH] = ACTIONS(813), - [anon_sym_DOT] = ACTIONS(813), - [anon_sym_SLASH] = ACTIONS(815), - [anon_sym_COLON] = ACTIONS(815), - [anon_sym_SEMI] = ACTIONS(815), - [anon_sym_EQ] = ACTIONS(815), - [anon_sym_QMARK] = ACTIONS(815), - [anon_sym_LBRACK] = ACTIONS(819), - [anon_sym_BSLASH] = ACTIONS(821), - [anon_sym_CARET] = ACTIONS(813), - [anon_sym__] = ACTIONS(815), - [anon_sym_BQUOTE] = ACTIONS(815), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_PIPE] = ACTIONS(815), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_RPAREN] = ACTIONS(815), - [sym__newline_token] = ACTIONS(825), - [anon_sym_CARET_LBRACK] = ACTIONS(827), - [anon_sym_LBRACK_CARET] = ACTIONS(829), - [sym_uri_autolink] = ACTIONS(811), - [sym_email_autolink] = ACTIONS(811), - [sym__whitespace_ge_2] = ACTIONS(831), - [aux_sym__whitespace_token1] = ACTIONS(833), - [sym__word_no_digit] = ACTIONS(835), - [sym__digits] = ACTIONS(835), - [anon_sym_DASH_DASH] = ACTIONS(837), - [anon_sym_DASH_DASH_DASH] = ACTIONS(835), - [anon_sym_DOT_DOT_DOT] = ACTIONS(835), - [sym__code_span_start] = ACTIONS(839), - [sym__emphasis_open_star] = ACTIONS(841), - [sym__emphasis_open_underscore] = ACTIONS(843), - [sym__strikeout_open] = ACTIONS(845), - [sym__latex_span_start] = ACTIONS(847), - [sym__single_quote_open] = ACTIONS(849), - [sym__double_quote_open] = ACTIONS(851), - [sym__superscript_open] = ACTIONS(853), - [sym__subscript_open] = ACTIONS(855), - [sym__subscript_close] = ACTIONS(1939), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(859), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(861), - [sym__cite_author_in_text] = ACTIONS(863), - [sym__cite_suppress_author] = ACTIONS(865), - [sym__shortcode_open_escaped] = ACTIONS(867), - [sym__shortcode_open] = ACTIONS(869), - [sym__unclosed_span] = ACTIONS(811), + [sym_backslash_escape] = STATE(367), + [sym_commonmark_attribute] = STATE(367), + [sym_code_span] = STATE(367), + [sym_latex_span] = STATE(367), + [sym_insert] = STATE(367), + [sym_delete] = STATE(367), + [sym_highlight] = STATE(367), + [sym_edit_comment] = STATE(367), + [sym_superscript] = STATE(367), + [sym_subscript] = STATE(367), + [sym_strikeout] = STATE(367), + [sym_quoted_span] = STATE(367), + [sym_inline_note] = STATE(367), + [sym_citation] = STATE(367), + [sym_shortcode_escaped] = STATE(367), + [sym_shortcode] = STATE(367), + [sym_note_reference] = STATE(367), + [sym__link_text] = STATE(435), + [sym__link_text_non_empty] = STATE(436), + [sym_inline_link] = STATE(78), + [sym_image] = STATE(367), + [sym__image_inline_link] = STATE(819), + [sym__image_description] = STATE(2328), + [sym__image_description_non_empty] = STATE(2328), + [sym_hard_line_break] = STATE(367), + [sym__whitespace] = STATE(816), + [sym__word] = STATE(816), + [sym__soft_line_break] = STATE(820), + [sym__inline_base] = STATE(78), + [sym__text_base] = STATE(367), + [sym__inline_element] = STATE(78), + [sym__emphasis_star] = STATE(1271), + [sym__strong_emphasis_star] = STATE(78), + [sym__emphasis_underscore] = STATE(1271), + [sym__strong_emphasis_underscore] = STATE(78), + [aux_sym_insert_repeat1] = STATE(78), + [aux_sym__inline_base_repeat1] = STATE(367), + [sym__backslash_escape] = ACTIONS(1413), + [sym_entity_reference] = ACTIONS(1415), + [sym_numeric_character_reference] = ACTIONS(1415), + [anon_sym_LT] = ACTIONS(1417), + [anon_sym_GT] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1419), + [anon_sym_POUND] = ACTIONS(1419), + [anon_sym_DOLLAR] = ACTIONS(1419), + [anon_sym_PERCENT] = ACTIONS(1419), + [anon_sym_AMP] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [anon_sym_STAR] = ACTIONS(1419), + [anon_sym_PLUS] = ACTIONS(1419), + [anon_sym_COMMA] = ACTIONS(1419), + [anon_sym_DASH] = ACTIONS(1417), + [anon_sym_DOT] = ACTIONS(1417), + [anon_sym_SLASH] = ACTIONS(1419), + [anon_sym_COLON] = ACTIONS(1419), + [anon_sym_SEMI] = ACTIONS(1419), + [anon_sym_EQ] = ACTIONS(1419), + [anon_sym_QMARK] = ACTIONS(1419), + [anon_sym_LBRACK] = ACTIONS(1423), + [anon_sym_BSLASH] = ACTIONS(1425), + [anon_sym_CARET] = ACTIONS(1417), + [anon_sym__] = ACTIONS(1419), + [anon_sym_BQUOTE] = ACTIONS(1419), + [anon_sym_LBRACE] = ACTIONS(1427), + [anon_sym_PIPE] = ACTIONS(1419), + [anon_sym_TILDE] = ACTIONS(1419), + [anon_sym_LPAREN] = ACTIONS(1419), + [anon_sym_RPAREN] = ACTIONS(1419), + [sym__newline_token] = ACTIONS(1429), + [aux_sym_insert_token1] = ACTIONS(1431), + [aux_sym_delete_token1] = ACTIONS(1433), + [aux_sym_highlight_token1] = ACTIONS(1435), + [aux_sym_edit_comment_token1] = ACTIONS(1437), + [anon_sym_CARET_LBRACK] = ACTIONS(1439), + [anon_sym_LBRACK_CARET] = ACTIONS(1441), + [sym_uri_autolink] = ACTIONS(1415), + [sym_email_autolink] = ACTIONS(1415), + [sym__whitespace_ge_2] = ACTIONS(1443), + [aux_sym__whitespace_token1] = ACTIONS(1445), + [sym__word_no_digit] = ACTIONS(1447), + [sym__digits] = ACTIONS(1447), + [anon_sym_DASH_DASH] = ACTIONS(1449), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1447), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1447), + [sym__code_span_start] = ACTIONS(1451), + [sym__emphasis_open_star] = ACTIONS(1453), + [sym__emphasis_open_underscore] = ACTIONS(1455), + [sym__strikeout_open] = ACTIONS(1457), + [sym__latex_span_start] = ACTIONS(1459), + [sym__single_quote_open] = ACTIONS(1461), + [sym__double_quote_open] = ACTIONS(1463), + [sym__superscript_open] = ACTIONS(1465), + [sym__subscript_open] = ACTIONS(1467), + [sym__subscript_close] = ACTIONS(2357), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1471), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1473), + [sym__cite_author_in_text] = ACTIONS(1475), + [sym__cite_suppress_author] = ACTIONS(1477), + [sym__shortcode_open_escaped] = ACTIONS(1479), + [sym__shortcode_open] = ACTIONS(1481), + [sym__unclosed_span] = ACTIONS(1415), }, [STATE(67)] = { - [sym_backslash_escape] = STATE(271), - [sym_commonmark_attribute] = STATE(271), - [sym_code_span] = STATE(271), - [sym_latex_span] = STATE(271), - [sym_superscript] = STATE(271), - [sym_subscript] = STATE(271), - [sym_strikeout] = STATE(271), - [sym_quoted_span] = STATE(271), - [sym_inline_note] = STATE(271), - [sym_citation] = STATE(271), - [sym_shortcode_escaped] = STATE(271), - [sym_shortcode] = STATE(271), - [sym_note_reference] = STATE(271), - [sym__link_text] = STATE(424), - [sym__link_text_non_empty] = STATE(425), - [sym_inline_link] = STATE(71), - [sym_image] = STATE(271), - [sym__image_inline_link] = STATE(883), - [sym__image_description] = STATE(1998), - [sym__image_description_non_empty] = STATE(1998), - [sym_hard_line_break] = STATE(271), - [sym__whitespace] = STATE(881), - [sym__word] = STATE(881), - [sym__soft_line_break] = STATE(884), - [sym__inline_base] = STATE(71), - [sym__text_base] = STATE(271), - [sym__inline_element] = STATE(71), - [sym__emphasis_star] = STATE(710), - [sym__strong_emphasis_star] = STATE(71), - [sym__emphasis_underscore] = STATE(710), - [sym__strong_emphasis_underscore] = STATE(71), - [aux_sym_superscript_repeat1] = STATE(71), - [aux_sym__inline_base_repeat1] = STATE(271), - [sym__backslash_escape] = ACTIONS(159), - [sym_entity_reference] = ACTIONS(161), - [sym_numeric_character_reference] = ACTIONS(161), - [anon_sym_LT] = ACTIONS(163), - [anon_sym_GT] = ACTIONS(165), - [anon_sym_BANG] = ACTIONS(167), - [anon_sym_DQUOTE] = ACTIONS(165), - [anon_sym_POUND] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(165), - [anon_sym_PERCENT] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_SQUOTE] = ACTIONS(165), - [anon_sym_STAR] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(165), - [anon_sym_COMMA] = ACTIONS(165), - [anon_sym_DASH] = ACTIONS(163), - [anon_sym_DOT] = ACTIONS(163), - [anon_sym_SLASH] = ACTIONS(165), - [anon_sym_COLON] = ACTIONS(165), - [anon_sym_SEMI] = ACTIONS(165), - [anon_sym_EQ] = ACTIONS(165), - [anon_sym_QMARK] = ACTIONS(165), - [anon_sym_LBRACK] = ACTIONS(169), - [anon_sym_BSLASH] = ACTIONS(171), - [anon_sym_RBRACK] = ACTIONS(1941), - [anon_sym_CARET] = ACTIONS(163), - [anon_sym__] = ACTIONS(165), - [anon_sym_BQUOTE] = ACTIONS(165), - [anon_sym_LBRACE] = ACTIONS(175), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(165), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_RPAREN] = ACTIONS(165), - [sym__newline_token] = ACTIONS(177), - [anon_sym_CARET_LBRACK] = ACTIONS(179), - [anon_sym_LBRACK_CARET] = ACTIONS(181), - [sym_uri_autolink] = ACTIONS(161), - [sym_email_autolink] = ACTIONS(161), - [sym__whitespace_ge_2] = ACTIONS(183), - [aux_sym__whitespace_token1] = ACTIONS(185), - [sym__word_no_digit] = ACTIONS(187), - [sym__digits] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_DASH_DASH_DASH] = ACTIONS(187), - [anon_sym_DOT_DOT_DOT] = ACTIONS(187), - [sym__code_span_start] = ACTIONS(191), - [sym__emphasis_open_star] = ACTIONS(193), - [sym__emphasis_open_underscore] = ACTIONS(195), - [sym__strikeout_open] = ACTIONS(199), - [sym__latex_span_start] = ACTIONS(201), - [sym__single_quote_open] = ACTIONS(203), - [sym__double_quote_open] = ACTIONS(205), - [sym__superscript_open] = ACTIONS(207), - [sym__subscript_open] = ACTIONS(209), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(211), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(213), - [sym__cite_author_in_text] = ACTIONS(215), - [sym__cite_suppress_author] = ACTIONS(217), - [sym__shortcode_open_escaped] = ACTIONS(219), - [sym__shortcode_open] = ACTIONS(221), - [sym__unclosed_span] = ACTIONS(161), - }, - [STATE(68)] = { - [sym_backslash_escape] = STATE(271), - [sym_commonmark_attribute] = STATE(271), - [sym_code_span] = STATE(271), - [sym_latex_span] = STATE(271), - [sym_superscript] = STATE(271), - [sym_subscript] = STATE(271), - [sym_strikeout] = STATE(271), - [sym_quoted_span] = STATE(271), - [sym_inline_note] = STATE(271), - [sym_citation] = STATE(271), - [sym_shortcode_escaped] = STATE(271), - [sym_shortcode] = STATE(271), - [sym_note_reference] = STATE(271), - [sym__link_text] = STATE(424), - [sym__link_text_non_empty] = STATE(425), - [sym_inline_link] = STATE(53), - [sym_image] = STATE(271), - [sym__image_inline_link] = STATE(883), - [sym__image_description] = STATE(1998), - [sym__image_description_non_empty] = STATE(1998), - [sym_hard_line_break] = STATE(271), - [sym__whitespace] = STATE(881), - [sym__word] = STATE(881), - [sym__soft_line_break] = STATE(884), - [sym__inline_base] = STATE(53), - [sym__text_base] = STATE(271), - [sym__inline_element] = STATE(53), - [sym__emphasis_star] = STATE(710), - [sym__strong_emphasis_star] = STATE(53), - [sym__emphasis_underscore] = STATE(710), - [sym__strong_emphasis_underscore] = STATE(53), - [aux_sym_superscript_repeat1] = STATE(53), - [aux_sym__inline_base_repeat1] = STATE(271), - [sym__backslash_escape] = ACTIONS(159), - [sym_entity_reference] = ACTIONS(161), - [sym_numeric_character_reference] = ACTIONS(161), - [anon_sym_LT] = ACTIONS(163), - [anon_sym_GT] = ACTIONS(165), - [anon_sym_BANG] = ACTIONS(167), - [anon_sym_DQUOTE] = ACTIONS(165), - [anon_sym_POUND] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(165), - [anon_sym_PERCENT] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_SQUOTE] = ACTIONS(165), - [anon_sym_STAR] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(165), - [anon_sym_COMMA] = ACTIONS(165), - [anon_sym_DASH] = ACTIONS(163), - [anon_sym_DOT] = ACTIONS(163), - [anon_sym_SLASH] = ACTIONS(165), - [anon_sym_COLON] = ACTIONS(165), - [anon_sym_SEMI] = ACTIONS(165), - [anon_sym_EQ] = ACTIONS(165), - [anon_sym_QMARK] = ACTIONS(165), - [anon_sym_LBRACK] = ACTIONS(169), - [anon_sym_BSLASH] = ACTIONS(171), - [anon_sym_RBRACK] = ACTIONS(1943), - [anon_sym_CARET] = ACTIONS(163), - [anon_sym__] = ACTIONS(165), - [anon_sym_BQUOTE] = ACTIONS(165), - [anon_sym_LBRACE] = ACTIONS(175), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(165), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_RPAREN] = ACTIONS(165), - [sym__newline_token] = ACTIONS(177), - [anon_sym_CARET_LBRACK] = ACTIONS(179), - [anon_sym_LBRACK_CARET] = ACTIONS(181), - [sym_uri_autolink] = ACTIONS(161), - [sym_email_autolink] = ACTIONS(161), - [sym__whitespace_ge_2] = ACTIONS(183), - [aux_sym__whitespace_token1] = ACTIONS(185), - [sym__word_no_digit] = ACTIONS(187), - [sym__digits] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_DASH_DASH_DASH] = ACTIONS(187), - [anon_sym_DOT_DOT_DOT] = ACTIONS(187), - [sym__code_span_start] = ACTIONS(191), - [sym__emphasis_open_star] = ACTIONS(193), - [sym__emphasis_open_underscore] = ACTIONS(195), - [sym__strikeout_open] = ACTIONS(199), - [sym__latex_span_start] = ACTIONS(201), - [sym__single_quote_open] = ACTIONS(203), - [sym__double_quote_open] = ACTIONS(205), - [sym__superscript_open] = ACTIONS(207), - [sym__subscript_open] = ACTIONS(209), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(211), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(213), - [sym__cite_author_in_text] = ACTIONS(215), - [sym__cite_suppress_author] = ACTIONS(217), - [sym__shortcode_open_escaped] = ACTIONS(219), - [sym__shortcode_open] = ACTIONS(221), - [sym__unclosed_span] = ACTIONS(161), - }, - [STATE(69)] = { - [sym_backslash_escape] = STATE(261), - [sym_commonmark_attribute] = STATE(261), - [sym_code_span] = STATE(261), - [sym_latex_span] = STATE(261), - [sym_superscript] = STATE(261), - [sym_subscript] = STATE(261), - [sym_strikeout] = STATE(261), - [sym_quoted_span] = STATE(261), - [sym_inline_note] = STATE(261), - [sym_citation] = STATE(261), - [sym_shortcode_escaped] = STATE(261), - [sym_shortcode] = STATE(261), - [sym_note_reference] = STATE(261), - [sym__link_text] = STATE(322), - [sym__link_text_non_empty] = STATE(323), - [sym_inline_link] = STATE(39), - [sym_image] = STATE(261), - [sym__image_inline_link] = STATE(595), - [sym__image_description] = STATE(1972), - [sym__image_description_non_empty] = STATE(1972), - [sym_hard_line_break] = STATE(261), - [sym__whitespace] = STATE(587), - [sym__word] = STATE(587), - [sym__soft_line_break] = STATE(597), - [sym__inline_base] = STATE(39), - [sym__text_base] = STATE(261), - [sym__inline_element_no_star] = STATE(39), - [aux_sym__inline_no_star] = STATE(39), - [sym__emphasis_star] = STATE(544), - [sym__strong_emphasis_star] = STATE(39), - [sym__emphasis_underscore] = STATE(544), - [sym__strong_emphasis_underscore] = STATE(39), - [aux_sym__inline_base_repeat1] = STATE(261), - [sym__backslash_escape] = ACTIONS(969), - [sym_entity_reference] = ACTIONS(971), - [sym_numeric_character_reference] = ACTIONS(971), - [anon_sym_LT] = ACTIONS(973), - [anon_sym_GT] = ACTIONS(975), - [anon_sym_BANG] = ACTIONS(977), - [anon_sym_DQUOTE] = ACTIONS(975), - [anon_sym_POUND] = ACTIONS(975), - [anon_sym_DOLLAR] = ACTIONS(975), - [anon_sym_PERCENT] = ACTIONS(975), - [anon_sym_AMP] = ACTIONS(973), - [anon_sym_SQUOTE] = ACTIONS(975), - [anon_sym_STAR] = ACTIONS(975), - [anon_sym_PLUS] = ACTIONS(975), - [anon_sym_COMMA] = ACTIONS(975), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_DOT] = ACTIONS(973), - [anon_sym_SLASH] = ACTIONS(975), - [anon_sym_COLON] = ACTIONS(975), - [anon_sym_SEMI] = ACTIONS(975), - [anon_sym_EQ] = ACTIONS(975), - [anon_sym_QMARK] = ACTIONS(975), - [anon_sym_LBRACK] = ACTIONS(979), - [anon_sym_BSLASH] = ACTIONS(981), - [anon_sym_CARET] = ACTIONS(973), - [anon_sym__] = ACTIONS(975), - [anon_sym_BQUOTE] = ACTIONS(975), - [anon_sym_LBRACE] = ACTIONS(983), - [anon_sym_PIPE] = ACTIONS(975), - [anon_sym_TILDE] = ACTIONS(975), - [anon_sym_LPAREN] = ACTIONS(975), - [anon_sym_RPAREN] = ACTIONS(975), - [sym__newline_token] = ACTIONS(985), - [anon_sym_CARET_LBRACK] = ACTIONS(987), - [anon_sym_LBRACK_CARET] = ACTIONS(989), - [sym_uri_autolink] = ACTIONS(971), - [sym_email_autolink] = ACTIONS(971), - [sym__whitespace_ge_2] = ACTIONS(991), - [aux_sym__whitespace_token1] = ACTIONS(993), - [sym__word_no_digit] = ACTIONS(995), - [sym__digits] = ACTIONS(995), - [anon_sym_DASH_DASH] = ACTIONS(997), - [anon_sym_DASH_DASH_DASH] = ACTIONS(995), - [anon_sym_DOT_DOT_DOT] = ACTIONS(995), - [sym__code_span_start] = ACTIONS(999), - [sym__emphasis_open_star] = ACTIONS(1001), - [sym__emphasis_open_underscore] = ACTIONS(1003), - [sym__emphasis_close_star] = ACTIONS(1945), - [sym__strikeout_open] = ACTIONS(1007), - [sym__latex_span_start] = ACTIONS(1009), - [sym__single_quote_open] = ACTIONS(1011), - [sym__double_quote_open] = ACTIONS(1013), - [sym__superscript_open] = ACTIONS(1015), - [sym__subscript_open] = ACTIONS(1017), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1019), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1021), - [sym__cite_author_in_text] = ACTIONS(1023), - [sym__cite_suppress_author] = ACTIONS(1025), - [sym__shortcode_open_escaped] = ACTIONS(1027), - [sym__shortcode_open] = ACTIONS(1029), - [sym__unclosed_span] = ACTIONS(971), - }, - [STATE(70)] = { - [sym_backslash_escape] = STATE(274), - [sym_commonmark_attribute] = STATE(274), - [sym_code_span] = STATE(274), - [sym_latex_span] = STATE(274), - [sym_superscript] = STATE(274), - [sym_subscript] = STATE(274), - [sym_strikeout] = STATE(274), - [sym_quoted_span] = STATE(274), - [sym_inline_note] = STATE(274), - [sym_citation] = STATE(274), - [sym_shortcode_escaped] = STATE(274), - [sym_shortcode] = STATE(274), - [sym_note_reference] = STATE(274), - [sym__link_text] = STATE(351), - [sym__link_text_non_empty] = STATE(352), - [sym_inline_link] = STATE(41), - [sym_image] = STATE(274), - [sym__image_inline_link] = STATE(894), - [sym__image_description] = STATE(2008), - [sym__image_description_non_empty] = STATE(2008), - [sym_hard_line_break] = STATE(274), - [sym__whitespace] = STATE(882), - [sym__word] = STATE(882), - [sym__soft_line_break] = STATE(898), - [sym__inline_base] = STATE(41), - [sym__text_base] = STATE(274), - [sym__inline_element_no_underscore] = STATE(41), - [aux_sym__inline_no_underscore] = STATE(41), - [sym__emphasis_star] = STATE(711), - [sym__strong_emphasis_star] = STATE(41), - [sym__emphasis_underscore] = STATE(711), - [sym__strong_emphasis_underscore] = STATE(41), - [aux_sym__inline_base_repeat1] = STATE(274), - [sym__backslash_escape] = ACTIONS(1123), - [sym_entity_reference] = ACTIONS(1125), - [sym_numeric_character_reference] = ACTIONS(1125), - [anon_sym_LT] = ACTIONS(1127), - [anon_sym_GT] = ACTIONS(1129), - [anon_sym_BANG] = ACTIONS(1131), - [anon_sym_DQUOTE] = ACTIONS(1129), - [anon_sym_POUND] = ACTIONS(1129), - [anon_sym_DOLLAR] = ACTIONS(1129), - [anon_sym_PERCENT] = ACTIONS(1129), - [anon_sym_AMP] = ACTIONS(1127), - [anon_sym_SQUOTE] = ACTIONS(1129), - [anon_sym_STAR] = ACTIONS(1129), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_COMMA] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1127), - [anon_sym_DOT] = ACTIONS(1127), - [anon_sym_SLASH] = ACTIONS(1129), - [anon_sym_COLON] = ACTIONS(1129), - [anon_sym_SEMI] = ACTIONS(1129), - [anon_sym_EQ] = ACTIONS(1129), - [anon_sym_QMARK] = ACTIONS(1129), - [anon_sym_LBRACK] = ACTIONS(1133), - [anon_sym_BSLASH] = ACTIONS(1135), - [anon_sym_CARET] = ACTIONS(1127), - [anon_sym__] = ACTIONS(1129), - [anon_sym_BQUOTE] = ACTIONS(1129), - [anon_sym_LBRACE] = ACTIONS(1137), - [anon_sym_PIPE] = ACTIONS(1129), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1129), - [anon_sym_RPAREN] = ACTIONS(1129), - [sym__newline_token] = ACTIONS(1139), - [anon_sym_CARET_LBRACK] = ACTIONS(1141), - [anon_sym_LBRACK_CARET] = ACTIONS(1143), - [sym_uri_autolink] = ACTIONS(1125), - [sym_email_autolink] = ACTIONS(1125), - [sym__whitespace_ge_2] = ACTIONS(1145), - [aux_sym__whitespace_token1] = ACTIONS(1147), - [sym__word_no_digit] = ACTIONS(1149), - [sym__digits] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1151), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1149), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1149), - [sym__code_span_start] = ACTIONS(1153), - [sym__emphasis_open_star] = ACTIONS(1155), - [sym__emphasis_open_underscore] = ACTIONS(1157), - [sym__emphasis_close_underscore] = ACTIONS(1947), - [sym__strikeout_open] = ACTIONS(1161), - [sym__latex_span_start] = ACTIONS(1163), - [sym__single_quote_open] = ACTIONS(1165), - [sym__double_quote_open] = ACTIONS(1167), - [sym__superscript_open] = ACTIONS(1169), - [sym__subscript_open] = ACTIONS(1171), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1173), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1175), - [sym__cite_author_in_text] = ACTIONS(1177), - [sym__cite_suppress_author] = ACTIONS(1179), - [sym__shortcode_open_escaped] = ACTIONS(1181), - [sym__shortcode_open] = ACTIONS(1183), - [sym__unclosed_span] = ACTIONS(1125), - }, - [STATE(71)] = { - [sym_backslash_escape] = STATE(271), - [sym_commonmark_attribute] = STATE(271), - [sym_code_span] = STATE(271), - [sym_latex_span] = STATE(271), - [sym_superscript] = STATE(271), - [sym_subscript] = STATE(271), - [sym_strikeout] = STATE(271), - [sym_quoted_span] = STATE(271), - [sym_inline_note] = STATE(271), - [sym_citation] = STATE(271), - [sym_shortcode_escaped] = STATE(271), - [sym_shortcode] = STATE(271), - [sym_note_reference] = STATE(271), - [sym__link_text] = STATE(424), - [sym__link_text_non_empty] = STATE(425), - [sym_inline_link] = STATE(53), - [sym_image] = STATE(271), - [sym__image_inline_link] = STATE(883), - [sym__image_description] = STATE(1998), - [sym__image_description_non_empty] = STATE(1998), - [sym_hard_line_break] = STATE(271), - [sym__whitespace] = STATE(881), - [sym__word] = STATE(881), - [sym__soft_line_break] = STATE(884), - [sym__inline_base] = STATE(53), - [sym__text_base] = STATE(271), - [sym__inline_element] = STATE(53), - [sym__emphasis_star] = STATE(710), - [sym__strong_emphasis_star] = STATE(53), - [sym__emphasis_underscore] = STATE(710), - [sym__strong_emphasis_underscore] = STATE(53), - [aux_sym_superscript_repeat1] = STATE(53), - [aux_sym__inline_base_repeat1] = STATE(271), - [sym__backslash_escape] = ACTIONS(159), - [sym_entity_reference] = ACTIONS(161), - [sym_numeric_character_reference] = ACTIONS(161), - [anon_sym_LT] = ACTIONS(163), - [anon_sym_GT] = ACTIONS(165), - [anon_sym_BANG] = ACTIONS(167), - [anon_sym_DQUOTE] = ACTIONS(165), - [anon_sym_POUND] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(165), - [anon_sym_PERCENT] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_SQUOTE] = ACTIONS(165), - [anon_sym_STAR] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(165), - [anon_sym_COMMA] = ACTIONS(165), - [anon_sym_DASH] = ACTIONS(163), - [anon_sym_DOT] = ACTIONS(163), - [anon_sym_SLASH] = ACTIONS(165), - [anon_sym_COLON] = ACTIONS(165), - [anon_sym_SEMI] = ACTIONS(165), - [anon_sym_EQ] = ACTIONS(165), - [anon_sym_QMARK] = ACTIONS(165), - [anon_sym_LBRACK] = ACTIONS(169), - [anon_sym_BSLASH] = ACTIONS(171), - [anon_sym_RBRACK] = ACTIONS(1949), - [anon_sym_CARET] = ACTIONS(163), - [anon_sym__] = ACTIONS(165), - [anon_sym_BQUOTE] = ACTIONS(165), - [anon_sym_LBRACE] = ACTIONS(175), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(165), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_RPAREN] = ACTIONS(165), - [sym__newline_token] = ACTIONS(177), - [anon_sym_CARET_LBRACK] = ACTIONS(179), - [anon_sym_LBRACK_CARET] = ACTIONS(181), - [sym_uri_autolink] = ACTIONS(161), - [sym_email_autolink] = ACTIONS(161), - [sym__whitespace_ge_2] = ACTIONS(183), - [aux_sym__whitespace_token1] = ACTIONS(185), - [sym__word_no_digit] = ACTIONS(187), - [sym__digits] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_DASH_DASH_DASH] = ACTIONS(187), - [anon_sym_DOT_DOT_DOT] = ACTIONS(187), - [sym__code_span_start] = ACTIONS(191), - [sym__emphasis_open_star] = ACTIONS(193), - [sym__emphasis_open_underscore] = ACTIONS(195), - [sym__strikeout_open] = ACTIONS(199), - [sym__latex_span_start] = ACTIONS(201), - [sym__single_quote_open] = ACTIONS(203), - [sym__double_quote_open] = ACTIONS(205), - [sym__superscript_open] = ACTIONS(207), - [sym__subscript_open] = ACTIONS(209), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(211), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(213), - [sym__cite_author_in_text] = ACTIONS(215), - [sym__cite_suppress_author] = ACTIONS(217), - [sym__shortcode_open_escaped] = ACTIONS(219), - [sym__shortcode_open] = ACTIONS(221), - [sym__unclosed_span] = ACTIONS(161), - }, - [STATE(72)] = { - [sym_backslash_escape] = STATE(266), - [sym_commonmark_attribute] = STATE(266), - [sym_code_span] = STATE(266), - [sym_latex_span] = STATE(266), - [sym_superscript] = STATE(266), - [sym_subscript] = STATE(266), - [sym_strikeout] = STATE(266), - [sym_quoted_span] = STATE(266), - [sym_inline_note] = STATE(266), - [sym_citation] = STATE(266), - [sym_shortcode_escaped] = STATE(266), - [sym_shortcode] = STATE(266), - [sym_note_reference] = STATE(266), - [sym__link_text] = STATE(375), - [sym__link_text_non_empty] = STATE(376), + [sym_backslash_escape] = STATE(372), + [sym_commonmark_attribute] = STATE(372), + [sym_code_span] = STATE(372), + [sym_latex_span] = STATE(372), + [sym_insert] = STATE(372), + [sym_delete] = STATE(372), + [sym_highlight] = STATE(372), + [sym_edit_comment] = STATE(372), + [sym_superscript] = STATE(372), + [sym_subscript] = STATE(372), + [sym_strikeout] = STATE(372), + [sym_quoted_span] = STATE(372), + [sym_inline_note] = STATE(372), + [sym_citation] = STATE(372), + [sym_shortcode_escaped] = STATE(372), + [sym_shortcode] = STATE(372), + [sym_note_reference] = STATE(372), + [sym__link_text] = STATE(454), + [sym__link_text_non_empty] = STATE(455), [sym_inline_link] = STATE(79), - [sym_image] = STATE(266), - [sym__image_inline_link] = STATE(1042), - [sym__image_description] = STATE(2044), - [sym__image_description_non_empty] = STATE(2044), - [sym_hard_line_break] = STATE(266), - [sym__whitespace] = STATE(1040), - [sym__word] = STATE(1040), - [sym__soft_line_break] = STATE(1043), + [sym_image] = STATE(372), + [sym__image_inline_link] = STATE(1025), + [sym__image_description] = STATE(2356), + [sym__image_description_non_empty] = STATE(2356), + [sym_hard_line_break] = STATE(372), + [sym__whitespace] = STATE(1022), + [sym__word] = STATE(1022), + [sym__soft_line_break] = STATE(1026), [sym__inline_base] = STATE(79), - [sym__text_base] = STATE(266), + [sym__text_base] = STATE(372), [sym__inline_element] = STATE(79), - [sym__emphasis_star] = STATE(602), + [sym__emphasis_star] = STATE(714), [sym__strong_emphasis_star] = STATE(79), - [sym__emphasis_underscore] = STATE(602), + [sym__emphasis_underscore] = STATE(714), [sym__strong_emphasis_underscore] = STATE(79), - [aux_sym_superscript_repeat1] = STATE(79), - [aux_sym__inline_base_repeat1] = STATE(266), - [sym__backslash_escape] = ACTIONS(559), - [sym_entity_reference] = ACTIONS(561), - [sym_numeric_character_reference] = ACTIONS(561), - [anon_sym_LT] = ACTIONS(563), - [anon_sym_GT] = ACTIONS(565), - [anon_sym_BANG] = ACTIONS(567), - [anon_sym_DQUOTE] = ACTIONS(565), - [anon_sym_POUND] = ACTIONS(565), - [anon_sym_DOLLAR] = ACTIONS(565), - [anon_sym_PERCENT] = ACTIONS(565), - [anon_sym_AMP] = ACTIONS(563), - [anon_sym_SQUOTE] = ACTIONS(565), - [anon_sym_STAR] = ACTIONS(565), - [anon_sym_PLUS] = ACTIONS(565), - [anon_sym_COMMA] = ACTIONS(565), - [anon_sym_DASH] = ACTIONS(563), - [anon_sym_DOT] = ACTIONS(563), - [anon_sym_SLASH] = ACTIONS(565), - [anon_sym_COLON] = ACTIONS(565), - [anon_sym_SEMI] = ACTIONS(565), - [anon_sym_EQ] = ACTIONS(565), - [anon_sym_QMARK] = ACTIONS(565), - [anon_sym_LBRACK] = ACTIONS(569), - [anon_sym_BSLASH] = ACTIONS(571), - [anon_sym_CARET] = ACTIONS(563), - [anon_sym__] = ACTIONS(565), - [anon_sym_BQUOTE] = ACTIONS(565), - [anon_sym_LBRACE] = ACTIONS(573), - [anon_sym_PIPE] = ACTIONS(565), - [anon_sym_TILDE] = ACTIONS(565), - [anon_sym_LPAREN] = ACTIONS(565), - [anon_sym_RPAREN] = ACTIONS(565), - [sym__newline_token] = ACTIONS(575), - [anon_sym_CARET_LBRACK] = ACTIONS(577), - [anon_sym_LBRACK_CARET] = ACTIONS(579), - [sym_uri_autolink] = ACTIONS(561), - [sym_email_autolink] = ACTIONS(561), - [sym__whitespace_ge_2] = ACTIONS(581), - [aux_sym__whitespace_token1] = ACTIONS(583), - [sym__word_no_digit] = ACTIONS(585), - [sym__digits] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(587), - [anon_sym_DASH_DASH_DASH] = ACTIONS(585), - [anon_sym_DOT_DOT_DOT] = ACTIONS(585), - [sym__code_span_start] = ACTIONS(589), - [sym__emphasis_open_star] = ACTIONS(591), - [sym__emphasis_open_underscore] = ACTIONS(593), - [sym__strikeout_open] = ACTIONS(595), - [sym__strikeout_close] = ACTIONS(1951), - [sym__latex_span_start] = ACTIONS(599), - [sym__single_quote_open] = ACTIONS(601), - [sym__double_quote_open] = ACTIONS(603), - [sym__superscript_open] = ACTIONS(605), - [sym__subscript_open] = ACTIONS(607), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(609), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(611), - [sym__cite_author_in_text] = ACTIONS(613), - [sym__cite_suppress_author] = ACTIONS(615), - [sym__shortcode_open_escaped] = ACTIONS(617), - [sym__shortcode_open] = ACTIONS(619), - [sym__unclosed_span] = ACTIONS(561), + [aux_sym_insert_repeat1] = STATE(79), + [aux_sym__inline_base_repeat1] = STATE(372), + [sym__backslash_escape] = ACTIONS(707), + [sym_entity_reference] = ACTIONS(709), + [sym_numeric_character_reference] = ACTIONS(709), + [anon_sym_LT] = ACTIONS(711), + [anon_sym_GT] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(715), + [anon_sym_DQUOTE] = ACTIONS(713), + [anon_sym_POUND] = ACTIONS(713), + [anon_sym_DOLLAR] = ACTIONS(713), + [anon_sym_PERCENT] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(711), + [anon_sym_SQUOTE] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_COMMA] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_DOT] = ACTIONS(711), + [anon_sym_SLASH] = ACTIONS(713), + [anon_sym_COLON] = ACTIONS(713), + [anon_sym_SEMI] = ACTIONS(713), + [anon_sym_EQ] = ACTIONS(713), + [anon_sym_QMARK] = ACTIONS(713), + [anon_sym_LBRACK] = ACTIONS(717), + [anon_sym_BSLASH] = ACTIONS(719), + [anon_sym_CARET] = ACTIONS(711), + [anon_sym__] = ACTIONS(713), + [anon_sym_BQUOTE] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(721), + [anon_sym_PIPE] = ACTIONS(713), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_LPAREN] = ACTIONS(713), + [anon_sym_RPAREN] = ACTIONS(713), + [sym__newline_token] = ACTIONS(723), + [aux_sym_insert_token1] = ACTIONS(725), + [aux_sym_insert_token2] = ACTIONS(2359), + [aux_sym_delete_token1] = ACTIONS(729), + [aux_sym_highlight_token1] = ACTIONS(731), + [aux_sym_edit_comment_token1] = ACTIONS(733), + [anon_sym_CARET_LBRACK] = ACTIONS(735), + [anon_sym_LBRACK_CARET] = ACTIONS(737), + [sym_uri_autolink] = ACTIONS(709), + [sym_email_autolink] = ACTIONS(709), + [sym__whitespace_ge_2] = ACTIONS(739), + [aux_sym__whitespace_token1] = ACTIONS(741), + [sym__word_no_digit] = ACTIONS(743), + [sym__digits] = ACTIONS(743), + [anon_sym_DASH_DASH] = ACTIONS(745), + [anon_sym_DASH_DASH_DASH] = ACTIONS(743), + [anon_sym_DOT_DOT_DOT] = ACTIONS(743), + [sym__code_span_start] = ACTIONS(747), + [sym__emphasis_open_star] = ACTIONS(749), + [sym__emphasis_open_underscore] = ACTIONS(751), + [sym__strikeout_open] = ACTIONS(753), + [sym__latex_span_start] = ACTIONS(755), + [sym__single_quote_open] = ACTIONS(757), + [sym__double_quote_open] = ACTIONS(759), + [sym__superscript_open] = ACTIONS(761), + [sym__subscript_open] = ACTIONS(763), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(765), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(767), + [sym__cite_author_in_text] = ACTIONS(769), + [sym__cite_suppress_author] = ACTIONS(771), + [sym__shortcode_open_escaped] = ACTIONS(773), + [sym__shortcode_open] = ACTIONS(775), + [sym__unclosed_span] = ACTIONS(709), }, - [STATE(73)] = { - [sym_backslash_escape] = STATE(272), - [sym_commonmark_attribute] = STATE(272), - [sym_code_span] = STATE(272), - [sym_latex_span] = STATE(272), - [sym_superscript] = STATE(272), - [sym_subscript] = STATE(272), - [sym_strikeout] = STATE(272), - [sym_quoted_span] = STATE(272), - [sym_inline_note] = STATE(272), - [sym_citation] = STATE(272), - [sym_shortcode_escaped] = STATE(272), - [sym_shortcode] = STATE(272), - [sym_note_reference] = STATE(272), - [sym__link_text] = STATE(401), - [sym__link_text_non_empty] = STATE(402), + [STATE(68)] = { + [sym_backslash_escape] = STATE(372), + [sym_commonmark_attribute] = STATE(372), + [sym_code_span] = STATE(372), + [sym_latex_span] = STATE(372), + [sym_insert] = STATE(372), + [sym_delete] = STATE(372), + [sym_highlight] = STATE(372), + [sym_edit_comment] = STATE(372), + [sym_superscript] = STATE(372), + [sym_subscript] = STATE(372), + [sym_strikeout] = STATE(372), + [sym_quoted_span] = STATE(372), + [sym_inline_note] = STATE(372), + [sym_citation] = STATE(372), + [sym_shortcode_escaped] = STATE(372), + [sym_shortcode] = STATE(372), + [sym_note_reference] = STATE(372), + [sym__link_text] = STATE(454), + [sym__link_text_non_empty] = STATE(455), [sym_inline_link] = STATE(80), - [sym_image] = STATE(272), - [sym__image_inline_link] = STATE(1136), - [sym__image_description] = STATE(1942), - [sym__image_description_non_empty] = STATE(1942), - [sym_hard_line_break] = STATE(272), - [sym__whitespace] = STATE(1133), - [sym__word] = STATE(1133), - [sym__soft_line_break] = STATE(1137), + [sym_image] = STATE(372), + [sym__image_inline_link] = STATE(1025), + [sym__image_description] = STATE(2356), + [sym__image_description_non_empty] = STATE(2356), + [sym_hard_line_break] = STATE(372), + [sym__whitespace] = STATE(1022), + [sym__word] = STATE(1022), + [sym__soft_line_break] = STATE(1026), [sym__inline_base] = STATE(80), - [sym__text_base] = STATE(272), + [sym__text_base] = STATE(372), [sym__inline_element] = STATE(80), - [sym__emphasis_star] = STATE(902), + [sym__emphasis_star] = STATE(714), [sym__strong_emphasis_star] = STATE(80), - [sym__emphasis_underscore] = STATE(902), + [sym__emphasis_underscore] = STATE(714), [sym__strong_emphasis_underscore] = STATE(80), - [aux_sym_superscript_repeat1] = STATE(80), - [aux_sym__inline_base_repeat1] = STATE(272), - [sym__backslash_escape] = ACTIONS(625), - [sym_entity_reference] = ACTIONS(627), - [sym_numeric_character_reference] = ACTIONS(627), - [anon_sym_LT] = ACTIONS(629), - [anon_sym_GT] = ACTIONS(631), - [anon_sym_BANG] = ACTIONS(633), - [anon_sym_DQUOTE] = ACTIONS(631), - [anon_sym_POUND] = ACTIONS(631), - [anon_sym_DOLLAR] = ACTIONS(631), - [anon_sym_PERCENT] = ACTIONS(631), - [anon_sym_AMP] = ACTIONS(629), - [anon_sym_SQUOTE] = ACTIONS(631), - [anon_sym_STAR] = ACTIONS(631), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_COMMA] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(629), - [anon_sym_DOT] = ACTIONS(629), - [anon_sym_SLASH] = ACTIONS(631), - [anon_sym_COLON] = ACTIONS(631), - [anon_sym_SEMI] = ACTIONS(631), - [anon_sym_EQ] = ACTIONS(631), - [anon_sym_QMARK] = ACTIONS(631), - [anon_sym_LBRACK] = ACTIONS(635), - [anon_sym_BSLASH] = ACTIONS(637), - [anon_sym_CARET] = ACTIONS(629), - [anon_sym__] = ACTIONS(631), - [anon_sym_BQUOTE] = ACTIONS(631), - [anon_sym_LBRACE] = ACTIONS(639), - [anon_sym_PIPE] = ACTIONS(631), - [anon_sym_TILDE] = ACTIONS(631), - [anon_sym_LPAREN] = ACTIONS(631), - [anon_sym_RPAREN] = ACTIONS(631), - [sym__newline_token] = ACTIONS(641), - [anon_sym_CARET_LBRACK] = ACTIONS(643), - [anon_sym_LBRACK_CARET] = ACTIONS(645), - [sym_uri_autolink] = ACTIONS(627), - [sym_email_autolink] = ACTIONS(627), - [sym__whitespace_ge_2] = ACTIONS(647), - [aux_sym__whitespace_token1] = ACTIONS(649), - [sym__word_no_digit] = ACTIONS(651), - [sym__digits] = ACTIONS(651), - [anon_sym_DASH_DASH] = ACTIONS(653), - [anon_sym_DASH_DASH_DASH] = ACTIONS(651), - [anon_sym_DOT_DOT_DOT] = ACTIONS(651), - [sym__code_span_start] = ACTIONS(655), - [sym__emphasis_open_star] = ACTIONS(657), - [sym__emphasis_open_underscore] = ACTIONS(659), - [sym__strikeout_open] = ACTIONS(661), - [sym__latex_span_start] = ACTIONS(663), - [sym__single_quote_open] = ACTIONS(665), - [sym__single_quote_close] = ACTIONS(1953), - [sym__double_quote_open] = ACTIONS(669), - [sym__superscript_open] = ACTIONS(671), - [sym__subscript_open] = ACTIONS(673), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(675), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(677), - [sym__cite_author_in_text] = ACTIONS(679), - [sym__cite_suppress_author] = ACTIONS(681), - [sym__shortcode_open_escaped] = ACTIONS(683), - [sym__shortcode_open] = ACTIONS(685), - [sym__unclosed_span] = ACTIONS(627), + [aux_sym_insert_repeat1] = STATE(80), + [aux_sym__inline_base_repeat1] = STATE(372), + [sym__backslash_escape] = ACTIONS(707), + [sym_entity_reference] = ACTIONS(709), + [sym_numeric_character_reference] = ACTIONS(709), + [anon_sym_LT] = ACTIONS(711), + [anon_sym_GT] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(715), + [anon_sym_DQUOTE] = ACTIONS(713), + [anon_sym_POUND] = ACTIONS(713), + [anon_sym_DOLLAR] = ACTIONS(713), + [anon_sym_PERCENT] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(711), + [anon_sym_SQUOTE] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_COMMA] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_DOT] = ACTIONS(711), + [anon_sym_SLASH] = ACTIONS(713), + [anon_sym_COLON] = ACTIONS(713), + [anon_sym_SEMI] = ACTIONS(713), + [anon_sym_EQ] = ACTIONS(713), + [anon_sym_QMARK] = ACTIONS(713), + [anon_sym_LBRACK] = ACTIONS(717), + [anon_sym_BSLASH] = ACTIONS(719), + [anon_sym_CARET] = ACTIONS(711), + [anon_sym__] = ACTIONS(713), + [anon_sym_BQUOTE] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(721), + [anon_sym_PIPE] = ACTIONS(713), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_LPAREN] = ACTIONS(713), + [anon_sym_RPAREN] = ACTIONS(713), + [sym__newline_token] = ACTIONS(723), + [aux_sym_insert_token1] = ACTIONS(725), + [aux_sym_insert_token2] = ACTIONS(2361), + [aux_sym_delete_token1] = ACTIONS(729), + [aux_sym_highlight_token1] = ACTIONS(731), + [aux_sym_edit_comment_token1] = ACTIONS(733), + [anon_sym_CARET_LBRACK] = ACTIONS(735), + [anon_sym_LBRACK_CARET] = ACTIONS(737), + [sym_uri_autolink] = ACTIONS(709), + [sym_email_autolink] = ACTIONS(709), + [sym__whitespace_ge_2] = ACTIONS(739), + [aux_sym__whitespace_token1] = ACTIONS(741), + [sym__word_no_digit] = ACTIONS(743), + [sym__digits] = ACTIONS(743), + [anon_sym_DASH_DASH] = ACTIONS(745), + [anon_sym_DASH_DASH_DASH] = ACTIONS(743), + [anon_sym_DOT_DOT_DOT] = ACTIONS(743), + [sym__code_span_start] = ACTIONS(747), + [sym__emphasis_open_star] = ACTIONS(749), + [sym__emphasis_open_underscore] = ACTIONS(751), + [sym__strikeout_open] = ACTIONS(753), + [sym__latex_span_start] = ACTIONS(755), + [sym__single_quote_open] = ACTIONS(757), + [sym__double_quote_open] = ACTIONS(759), + [sym__superscript_open] = ACTIONS(761), + [sym__subscript_open] = ACTIONS(763), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(765), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(767), + [sym__cite_author_in_text] = ACTIONS(769), + [sym__cite_suppress_author] = ACTIONS(771), + [sym__shortcode_open_escaped] = ACTIONS(773), + [sym__shortcode_open] = ACTIONS(775), + [sym__unclosed_span] = ACTIONS(709), }, - [STATE(74)] = { - [sym_backslash_escape] = STATE(277), - [sym_commonmark_attribute] = STATE(277), - [sym_code_span] = STATE(277), - [sym_latex_span] = STATE(277), - [sym_superscript] = STATE(277), - [sym_subscript] = STATE(277), - [sym_strikeout] = STATE(277), - [sym_quoted_span] = STATE(277), - [sym_inline_note] = STATE(277), - [sym_citation] = STATE(277), - [sym_shortcode_escaped] = STATE(277), - [sym_shortcode] = STATE(277), - [sym_note_reference] = STATE(277), - [sym__link_text] = STATE(427), - [sym__link_text_non_empty] = STATE(428), + [STATE(69)] = { + [sym_backslash_escape] = STATE(372), + [sym_commonmark_attribute] = STATE(372), + [sym_code_span] = STATE(372), + [sym_latex_span] = STATE(372), + [sym_insert] = STATE(372), + [sym_delete] = STATE(372), + [sym_highlight] = STATE(372), + [sym_edit_comment] = STATE(372), + [sym_superscript] = STATE(372), + [sym_subscript] = STATE(372), + [sym_strikeout] = STATE(372), + [sym_quoted_span] = STATE(372), + [sym_inline_note] = STATE(372), + [sym_citation] = STATE(372), + [sym_shortcode_escaped] = STATE(372), + [sym_shortcode] = STATE(372), + [sym_note_reference] = STATE(372), + [sym__link_text] = STATE(454), + [sym__link_text_non_empty] = STATE(455), [sym_inline_link] = STATE(81), - [sym_image] = STATE(277), - [sym__image_inline_link] = STATE(613), - [sym__image_description] = STATE(1930), - [sym__image_description_non_empty] = STATE(1930), - [sym_hard_line_break] = STATE(277), - [sym__whitespace] = STATE(610), - [sym__word] = STATE(610), - [sym__soft_line_break] = STATE(614), + [sym_image] = STATE(372), + [sym__image_inline_link] = STATE(1025), + [sym__image_description] = STATE(2356), + [sym__image_description_non_empty] = STATE(2356), + [sym_hard_line_break] = STATE(372), + [sym__whitespace] = STATE(1022), + [sym__word] = STATE(1022), + [sym__soft_line_break] = STATE(1026), [sym__inline_base] = STATE(81), - [sym__text_base] = STATE(277), + [sym__text_base] = STATE(372), [sym__inline_element] = STATE(81), - [sym__emphasis_star] = STATE(1044), + [sym__emphasis_star] = STATE(714), [sym__strong_emphasis_star] = STATE(81), - [sym__emphasis_underscore] = STATE(1044), + [sym__emphasis_underscore] = STATE(714), [sym__strong_emphasis_underscore] = STATE(81), - [aux_sym_superscript_repeat1] = STATE(81), - [aux_sym__inline_base_repeat1] = STATE(277), - [sym__backslash_escape] = ACTIONS(687), - [sym_entity_reference] = ACTIONS(689), - [sym_numeric_character_reference] = ACTIONS(689), - [anon_sym_LT] = ACTIONS(691), - [anon_sym_GT] = ACTIONS(693), - [anon_sym_BANG] = ACTIONS(695), - [anon_sym_DQUOTE] = ACTIONS(693), - [anon_sym_POUND] = ACTIONS(693), - [anon_sym_DOLLAR] = ACTIONS(693), - [anon_sym_PERCENT] = ACTIONS(693), - [anon_sym_AMP] = ACTIONS(691), - [anon_sym_SQUOTE] = ACTIONS(693), - [anon_sym_STAR] = ACTIONS(693), - [anon_sym_PLUS] = ACTIONS(693), - [anon_sym_COMMA] = ACTIONS(693), - [anon_sym_DASH] = ACTIONS(691), - [anon_sym_DOT] = ACTIONS(691), - [anon_sym_SLASH] = ACTIONS(693), - [anon_sym_COLON] = ACTIONS(693), - [anon_sym_SEMI] = ACTIONS(693), - [anon_sym_EQ] = ACTIONS(693), - [anon_sym_QMARK] = ACTIONS(693), - [anon_sym_LBRACK] = ACTIONS(697), - [anon_sym_BSLASH] = ACTIONS(699), - [anon_sym_CARET] = ACTIONS(691), - [anon_sym__] = ACTIONS(693), - [anon_sym_BQUOTE] = ACTIONS(693), - [anon_sym_LBRACE] = ACTIONS(701), - [anon_sym_PIPE] = ACTIONS(693), - [anon_sym_TILDE] = ACTIONS(693), - [anon_sym_LPAREN] = ACTIONS(693), - [anon_sym_RPAREN] = ACTIONS(693), - [sym__newline_token] = ACTIONS(703), - [anon_sym_CARET_LBRACK] = ACTIONS(705), - [anon_sym_LBRACK_CARET] = ACTIONS(707), - [sym_uri_autolink] = ACTIONS(689), - [sym_email_autolink] = ACTIONS(689), - [sym__whitespace_ge_2] = ACTIONS(709), - [aux_sym__whitespace_token1] = ACTIONS(711), - [sym__word_no_digit] = ACTIONS(713), - [sym__digits] = ACTIONS(713), - [anon_sym_DASH_DASH] = ACTIONS(715), - [anon_sym_DASH_DASH_DASH] = ACTIONS(713), - [anon_sym_DOT_DOT_DOT] = ACTIONS(713), - [sym__code_span_start] = ACTIONS(717), - [sym__emphasis_open_star] = ACTIONS(719), - [sym__emphasis_open_underscore] = ACTIONS(721), - [sym__strikeout_open] = ACTIONS(723), - [sym__latex_span_start] = ACTIONS(725), - [sym__single_quote_open] = ACTIONS(727), - [sym__double_quote_open] = ACTIONS(729), - [sym__double_quote_close] = ACTIONS(1953), - [sym__superscript_open] = ACTIONS(731), - [sym__subscript_open] = ACTIONS(733), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(735), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(737), - [sym__cite_author_in_text] = ACTIONS(739), - [sym__cite_suppress_author] = ACTIONS(741), - [sym__shortcode_open_escaped] = ACTIONS(743), - [sym__shortcode_open] = ACTIONS(745), - [sym__unclosed_span] = ACTIONS(689), + [aux_sym_insert_repeat1] = STATE(81), + [aux_sym__inline_base_repeat1] = STATE(372), + [sym__backslash_escape] = ACTIONS(707), + [sym_entity_reference] = ACTIONS(709), + [sym_numeric_character_reference] = ACTIONS(709), + [anon_sym_LT] = ACTIONS(711), + [anon_sym_GT] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(715), + [anon_sym_DQUOTE] = ACTIONS(713), + [anon_sym_POUND] = ACTIONS(713), + [anon_sym_DOLLAR] = ACTIONS(713), + [anon_sym_PERCENT] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(711), + [anon_sym_SQUOTE] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_COMMA] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_DOT] = ACTIONS(711), + [anon_sym_SLASH] = ACTIONS(713), + [anon_sym_COLON] = ACTIONS(713), + [anon_sym_SEMI] = ACTIONS(713), + [anon_sym_EQ] = ACTIONS(713), + [anon_sym_QMARK] = ACTIONS(713), + [anon_sym_LBRACK] = ACTIONS(717), + [anon_sym_BSLASH] = ACTIONS(719), + [anon_sym_CARET] = ACTIONS(711), + [anon_sym__] = ACTIONS(713), + [anon_sym_BQUOTE] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(721), + [anon_sym_PIPE] = ACTIONS(713), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_LPAREN] = ACTIONS(713), + [anon_sym_RPAREN] = ACTIONS(713), + [sym__newline_token] = ACTIONS(723), + [aux_sym_insert_token1] = ACTIONS(725), + [aux_sym_insert_token2] = ACTIONS(2363), + [aux_sym_delete_token1] = ACTIONS(729), + [aux_sym_highlight_token1] = ACTIONS(731), + [aux_sym_edit_comment_token1] = ACTIONS(733), + [anon_sym_CARET_LBRACK] = ACTIONS(735), + [anon_sym_LBRACK_CARET] = ACTIONS(737), + [sym_uri_autolink] = ACTIONS(709), + [sym_email_autolink] = ACTIONS(709), + [sym__whitespace_ge_2] = ACTIONS(739), + [aux_sym__whitespace_token1] = ACTIONS(741), + [sym__word_no_digit] = ACTIONS(743), + [sym__digits] = ACTIONS(743), + [anon_sym_DASH_DASH] = ACTIONS(745), + [anon_sym_DASH_DASH_DASH] = ACTIONS(743), + [anon_sym_DOT_DOT_DOT] = ACTIONS(743), + [sym__code_span_start] = ACTIONS(747), + [sym__emphasis_open_star] = ACTIONS(749), + [sym__emphasis_open_underscore] = ACTIONS(751), + [sym__strikeout_open] = ACTIONS(753), + [sym__latex_span_start] = ACTIONS(755), + [sym__single_quote_open] = ACTIONS(757), + [sym__double_quote_open] = ACTIONS(759), + [sym__superscript_open] = ACTIONS(761), + [sym__subscript_open] = ACTIONS(763), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(765), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(767), + [sym__cite_author_in_text] = ACTIONS(769), + [sym__cite_suppress_author] = ACTIONS(771), + [sym__shortcode_open_escaped] = ACTIONS(773), + [sym__shortcode_open] = ACTIONS(775), + [sym__unclosed_span] = ACTIONS(709), }, - [STATE(75)] = { - [sym_backslash_escape] = STATE(262), - [sym_commonmark_attribute] = STATE(262), - [sym_code_span] = STATE(262), - [sym_latex_span] = STATE(262), - [sym_superscript] = STATE(262), - [sym_subscript] = STATE(262), - [sym_strikeout] = STATE(262), - [sym_quoted_span] = STATE(262), - [sym_inline_note] = STATE(262), - [sym_citation] = STATE(262), - [sym_shortcode_escaped] = STATE(262), - [sym_shortcode] = STATE(262), - [sym_note_reference] = STATE(262), - [sym__link_text] = STATE(313), - [sym__link_text_non_empty] = STATE(314), + [STATE(70)] = { + [sym_backslash_escape] = STATE(372), + [sym_commonmark_attribute] = STATE(372), + [sym_code_span] = STATE(372), + [sym_latex_span] = STATE(372), + [sym_insert] = STATE(372), + [sym_delete] = STATE(372), + [sym_highlight] = STATE(372), + [sym_edit_comment] = STATE(372), + [sym_superscript] = STATE(372), + [sym_subscript] = STATE(372), + [sym_strikeout] = STATE(372), + [sym_quoted_span] = STATE(372), + [sym_inline_note] = STATE(372), + [sym_citation] = STATE(372), + [sym_shortcode_escaped] = STATE(372), + [sym_shortcode] = STATE(372), + [sym_note_reference] = STATE(372), + [sym__link_text] = STATE(454), + [sym__link_text_non_empty] = STATE(455), [sym_inline_link] = STATE(82), - [sym_image] = STATE(262), - [sym__image_inline_link] = STATE(708), - [sym__image_description] = STATE(1970), - [sym__image_description_non_empty] = STATE(1970), - [sym_hard_line_break] = STATE(262), - [sym__whitespace] = STATE(705), - [sym__word] = STATE(705), - [sym__soft_line_break] = STATE(709), + [sym_image] = STATE(372), + [sym__image_inline_link] = STATE(1025), + [sym__image_description] = STATE(2356), + [sym__image_description_non_empty] = STATE(2356), + [sym_hard_line_break] = STATE(372), + [sym__whitespace] = STATE(1022), + [sym__word] = STATE(1022), + [sym__soft_line_break] = STATE(1026), [sym__inline_base] = STATE(82), - [sym__text_base] = STATE(262), + [sym__text_base] = STATE(372), [sym__inline_element] = STATE(82), - [sym__emphasis_star] = STATE(1138), + [sym__emphasis_star] = STATE(714), [sym__strong_emphasis_star] = STATE(82), - [sym__emphasis_underscore] = STATE(1138), + [sym__emphasis_underscore] = STATE(714), [sym__strong_emphasis_underscore] = STATE(82), - [aux_sym_superscript_repeat1] = STATE(82), - [aux_sym__inline_base_repeat1] = STATE(262), - [sym__backslash_escape] = ACTIONS(747), - [sym_entity_reference] = ACTIONS(749), - [sym_numeric_character_reference] = ACTIONS(749), - [anon_sym_LT] = ACTIONS(751), - [anon_sym_GT] = ACTIONS(753), - [anon_sym_BANG] = ACTIONS(755), - [anon_sym_DQUOTE] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(753), - [anon_sym_DOLLAR] = ACTIONS(753), - [anon_sym_PERCENT] = ACTIONS(753), - [anon_sym_AMP] = ACTIONS(751), - [anon_sym_SQUOTE] = ACTIONS(753), - [anon_sym_STAR] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(753), - [anon_sym_COMMA] = ACTIONS(753), - [anon_sym_DASH] = ACTIONS(751), - [anon_sym_DOT] = ACTIONS(751), - [anon_sym_SLASH] = ACTIONS(753), - [anon_sym_COLON] = ACTIONS(753), - [anon_sym_SEMI] = ACTIONS(753), - [anon_sym_EQ] = ACTIONS(753), - [anon_sym_QMARK] = ACTIONS(753), - [anon_sym_LBRACK] = ACTIONS(757), - [anon_sym_BSLASH] = ACTIONS(759), - [anon_sym_CARET] = ACTIONS(751), - [anon_sym__] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(753), - [anon_sym_LBRACE] = ACTIONS(761), - [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_TILDE] = ACTIONS(753), - [anon_sym_LPAREN] = ACTIONS(753), - [anon_sym_RPAREN] = ACTIONS(753), - [sym__newline_token] = ACTIONS(763), - [anon_sym_CARET_LBRACK] = ACTIONS(765), - [anon_sym_LBRACK_CARET] = ACTIONS(767), - [sym_uri_autolink] = ACTIONS(749), - [sym_email_autolink] = ACTIONS(749), - [sym__whitespace_ge_2] = ACTIONS(769), - [aux_sym__whitespace_token1] = ACTIONS(771), - [sym__word_no_digit] = ACTIONS(773), - [sym__digits] = ACTIONS(773), - [anon_sym_DASH_DASH] = ACTIONS(775), - [anon_sym_DASH_DASH_DASH] = ACTIONS(773), - [anon_sym_DOT_DOT_DOT] = ACTIONS(773), - [sym__code_span_start] = ACTIONS(777), - [sym__emphasis_open_star] = ACTIONS(779), - [sym__emphasis_open_underscore] = ACTIONS(781), - [sym__strikeout_open] = ACTIONS(783), - [sym__latex_span_start] = ACTIONS(785), - [sym__single_quote_open] = ACTIONS(787), - [sym__double_quote_open] = ACTIONS(789), - [sym__superscript_open] = ACTIONS(791), - [sym__superscript_close] = ACTIONS(1955), - [sym__subscript_open] = ACTIONS(795), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(797), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(799), - [sym__cite_author_in_text] = ACTIONS(801), - [sym__cite_suppress_author] = ACTIONS(803), - [sym__shortcode_open_escaped] = ACTIONS(805), - [sym__shortcode_open] = ACTIONS(807), - [sym__unclosed_span] = ACTIONS(749), + [aux_sym_insert_repeat1] = STATE(82), + [aux_sym__inline_base_repeat1] = STATE(372), + [sym__backslash_escape] = ACTIONS(707), + [sym_entity_reference] = ACTIONS(709), + [sym_numeric_character_reference] = ACTIONS(709), + [anon_sym_LT] = ACTIONS(711), + [anon_sym_GT] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(715), + [anon_sym_DQUOTE] = ACTIONS(713), + [anon_sym_POUND] = ACTIONS(713), + [anon_sym_DOLLAR] = ACTIONS(713), + [anon_sym_PERCENT] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(711), + [anon_sym_SQUOTE] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_COMMA] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_DOT] = ACTIONS(711), + [anon_sym_SLASH] = ACTIONS(713), + [anon_sym_COLON] = ACTIONS(713), + [anon_sym_SEMI] = ACTIONS(713), + [anon_sym_EQ] = ACTIONS(713), + [anon_sym_QMARK] = ACTIONS(713), + [anon_sym_LBRACK] = ACTIONS(717), + [anon_sym_BSLASH] = ACTIONS(719), + [anon_sym_CARET] = ACTIONS(711), + [anon_sym__] = ACTIONS(713), + [anon_sym_BQUOTE] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(721), + [anon_sym_PIPE] = ACTIONS(713), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_LPAREN] = ACTIONS(713), + [anon_sym_RPAREN] = ACTIONS(713), + [sym__newline_token] = ACTIONS(723), + [aux_sym_insert_token1] = ACTIONS(725), + [aux_sym_insert_token2] = ACTIONS(2365), + [aux_sym_delete_token1] = ACTIONS(729), + [aux_sym_highlight_token1] = ACTIONS(731), + [aux_sym_edit_comment_token1] = ACTIONS(733), + [anon_sym_CARET_LBRACK] = ACTIONS(735), + [anon_sym_LBRACK_CARET] = ACTIONS(737), + [sym_uri_autolink] = ACTIONS(709), + [sym_email_autolink] = ACTIONS(709), + [sym__whitespace_ge_2] = ACTIONS(739), + [aux_sym__whitespace_token1] = ACTIONS(741), + [sym__word_no_digit] = ACTIONS(743), + [sym__digits] = ACTIONS(743), + [anon_sym_DASH_DASH] = ACTIONS(745), + [anon_sym_DASH_DASH_DASH] = ACTIONS(743), + [anon_sym_DOT_DOT_DOT] = ACTIONS(743), + [sym__code_span_start] = ACTIONS(747), + [sym__emphasis_open_star] = ACTIONS(749), + [sym__emphasis_open_underscore] = ACTIONS(751), + [sym__strikeout_open] = ACTIONS(753), + [sym__latex_span_start] = ACTIONS(755), + [sym__single_quote_open] = ACTIONS(757), + [sym__double_quote_open] = ACTIONS(759), + [sym__superscript_open] = ACTIONS(761), + [sym__subscript_open] = ACTIONS(763), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(765), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(767), + [sym__cite_author_in_text] = ACTIONS(769), + [sym__cite_suppress_author] = ACTIONS(771), + [sym__shortcode_open_escaped] = ACTIONS(773), + [sym__shortcode_open] = ACTIONS(775), + [sym__unclosed_span] = ACTIONS(709), }, - [STATE(76)] = { - [sym_backslash_escape] = STATE(270), - [sym_commonmark_attribute] = STATE(270), - [sym_code_span] = STATE(270), - [sym_latex_span] = STATE(270), - [sym_superscript] = STATE(270), - [sym_subscript] = STATE(270), - [sym_strikeout] = STATE(270), - [sym_quoted_span] = STATE(270), - [sym_inline_note] = STATE(270), - [sym_citation] = STATE(270), - [sym_shortcode_escaped] = STATE(270), - [sym_shortcode] = STATE(270), - [sym_note_reference] = STATE(270), - [sym__link_text] = STATE(359), - [sym__link_text_non_empty] = STATE(364), - [sym_inline_link] = STATE(83), - [sym_image] = STATE(270), - [sym__image_inline_link] = STATE(795), - [sym__image_description] = STATE(1984), - [sym__image_description_non_empty] = STATE(1984), - [sym_hard_line_break] = STATE(270), - [sym__whitespace] = STATE(792), - [sym__word] = STATE(792), - [sym__soft_line_break] = STATE(796), - [sym__inline_base] = STATE(83), - [sym__text_base] = STATE(270), - [sym__inline_element] = STATE(83), - [sym__emphasis_star] = STATE(615), - [sym__strong_emphasis_star] = STATE(83), - [sym__emphasis_underscore] = STATE(615), - [sym__strong_emphasis_underscore] = STATE(83), - [aux_sym_superscript_repeat1] = STATE(83), - [aux_sym__inline_base_repeat1] = STATE(270), - [sym__backslash_escape] = ACTIONS(809), - [sym_entity_reference] = ACTIONS(811), - [sym_numeric_character_reference] = ACTIONS(811), - [anon_sym_LT] = ACTIONS(813), - [anon_sym_GT] = ACTIONS(815), - [anon_sym_BANG] = ACTIONS(817), - [anon_sym_DQUOTE] = ACTIONS(815), - [anon_sym_POUND] = ACTIONS(815), - [anon_sym_DOLLAR] = ACTIONS(815), - [anon_sym_PERCENT] = ACTIONS(815), - [anon_sym_AMP] = ACTIONS(813), - [anon_sym_SQUOTE] = ACTIONS(815), - [anon_sym_STAR] = ACTIONS(815), - [anon_sym_PLUS] = ACTIONS(815), - [anon_sym_COMMA] = ACTIONS(815), - [anon_sym_DASH] = ACTIONS(813), - [anon_sym_DOT] = ACTIONS(813), - [anon_sym_SLASH] = ACTIONS(815), - [anon_sym_COLON] = ACTIONS(815), - [anon_sym_SEMI] = ACTIONS(815), - [anon_sym_EQ] = ACTIONS(815), - [anon_sym_QMARK] = ACTIONS(815), - [anon_sym_LBRACK] = ACTIONS(819), - [anon_sym_BSLASH] = ACTIONS(821), - [anon_sym_CARET] = ACTIONS(813), - [anon_sym__] = ACTIONS(815), - [anon_sym_BQUOTE] = ACTIONS(815), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_PIPE] = ACTIONS(815), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_RPAREN] = ACTIONS(815), - [sym__newline_token] = ACTIONS(825), - [anon_sym_CARET_LBRACK] = ACTIONS(827), - [anon_sym_LBRACK_CARET] = ACTIONS(829), - [sym_uri_autolink] = ACTIONS(811), - [sym_email_autolink] = ACTIONS(811), - [sym__whitespace_ge_2] = ACTIONS(831), - [aux_sym__whitespace_token1] = ACTIONS(833), - [sym__word_no_digit] = ACTIONS(835), - [sym__digits] = ACTIONS(835), - [anon_sym_DASH_DASH] = ACTIONS(837), - [anon_sym_DASH_DASH_DASH] = ACTIONS(835), - [anon_sym_DOT_DOT_DOT] = ACTIONS(835), - [sym__code_span_start] = ACTIONS(839), - [sym__emphasis_open_star] = ACTIONS(841), - [sym__emphasis_open_underscore] = ACTIONS(843), - [sym__strikeout_open] = ACTIONS(845), - [sym__latex_span_start] = ACTIONS(847), - [sym__single_quote_open] = ACTIONS(849), - [sym__double_quote_open] = ACTIONS(851), - [sym__superscript_open] = ACTIONS(853), - [sym__subscript_open] = ACTIONS(855), - [sym__subscript_close] = ACTIONS(1957), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(859), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(861), - [sym__cite_author_in_text] = ACTIONS(863), - [sym__cite_suppress_author] = ACTIONS(865), - [sym__shortcode_open_escaped] = ACTIONS(867), - [sym__shortcode_open] = ACTIONS(869), - [sym__unclosed_span] = ACTIONS(811), + [STATE(71)] = { + [sym_backslash_escape] = STATE(379), + [sym_commonmark_attribute] = STATE(379), + [sym_code_span] = STATE(379), + [sym_latex_span] = STATE(379), + [sym_insert] = STATE(379), + [sym_delete] = STATE(379), + [sym_highlight] = STATE(379), + [sym_edit_comment] = STATE(379), + [sym_superscript] = STATE(379), + [sym_subscript] = STATE(379), + [sym_strikeout] = STATE(379), + [sym_quoted_span] = STATE(379), + [sym_inline_note] = STATE(379), + [sym_citation] = STATE(379), + [sym_shortcode_escaped] = STATE(379), + [sym_shortcode] = STATE(379), + [sym_note_reference] = STATE(379), + [sym__link_text] = STATE(545), + [sym__link_text_non_empty] = STATE(546), + [sym_inline_link] = STATE(38), + [sym_image] = STATE(379), + [sym__image_inline_link] = STATE(1390), + [sym__image_description] = STATE(2363), + [sym__image_description_non_empty] = STATE(2363), + [sym_hard_line_break] = STATE(379), + [sym__whitespace] = STATE(1385), + [sym__word] = STATE(1385), + [sym__soft_line_break] = STATE(1391), + [sym__inline_base] = STATE(38), + [sym__text_base] = STATE(379), + [sym__inline_element_no_underscore] = STATE(38), + [aux_sym__inline_no_underscore] = STATE(38), + [sym__emphasis_star] = STATE(1168), + [sym__strong_emphasis_star] = STATE(38), + [sym__emphasis_underscore] = STATE(1168), + [sym__strong_emphasis_underscore] = STATE(38), + [aux_sym__inline_base_repeat1] = STATE(379), + [sym__backslash_escape] = ACTIONS(1059), + [sym_entity_reference] = ACTIONS(1061), + [sym_numeric_character_reference] = ACTIONS(1061), + [anon_sym_LT] = ACTIONS(1063), + [anon_sym_GT] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1067), + [anon_sym_DQUOTE] = ACTIONS(1065), + [anon_sym_POUND] = ACTIONS(1065), + [anon_sym_DOLLAR] = ACTIONS(1065), + [anon_sym_PERCENT] = ACTIONS(1065), + [anon_sym_AMP] = ACTIONS(1063), + [anon_sym_SQUOTE] = ACTIONS(1065), + [anon_sym_STAR] = ACTIONS(1065), + [anon_sym_PLUS] = ACTIONS(1065), + [anon_sym_COMMA] = ACTIONS(1065), + [anon_sym_DASH] = ACTIONS(1063), + [anon_sym_DOT] = ACTIONS(1063), + [anon_sym_SLASH] = ACTIONS(1065), + [anon_sym_COLON] = ACTIONS(1065), + [anon_sym_SEMI] = ACTIONS(1065), + [anon_sym_EQ] = ACTIONS(1065), + [anon_sym_QMARK] = ACTIONS(1065), + [anon_sym_LBRACK] = ACTIONS(1069), + [anon_sym_BSLASH] = ACTIONS(1071), + [anon_sym_CARET] = ACTIONS(1063), + [anon_sym__] = ACTIONS(1065), + [anon_sym_BQUOTE] = ACTIONS(1065), + [anon_sym_LBRACE] = ACTIONS(1073), + [anon_sym_PIPE] = ACTIONS(1065), + [anon_sym_TILDE] = ACTIONS(1065), + [anon_sym_LPAREN] = ACTIONS(1065), + [anon_sym_RPAREN] = ACTIONS(1065), + [sym__newline_token] = ACTIONS(1075), + [aux_sym_insert_token1] = ACTIONS(1077), + [aux_sym_delete_token1] = ACTIONS(1079), + [aux_sym_highlight_token1] = ACTIONS(1081), + [aux_sym_edit_comment_token1] = ACTIONS(1083), + [anon_sym_CARET_LBRACK] = ACTIONS(1085), + [anon_sym_LBRACK_CARET] = ACTIONS(1087), + [sym_uri_autolink] = ACTIONS(1061), + [sym_email_autolink] = ACTIONS(1061), + [sym__whitespace_ge_2] = ACTIONS(1089), + [aux_sym__whitespace_token1] = ACTIONS(1091), + [sym__word_no_digit] = ACTIONS(1093), + [sym__digits] = ACTIONS(1093), + [anon_sym_DASH_DASH] = ACTIONS(1095), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1093), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1093), + [sym__code_span_start] = ACTIONS(1097), + [sym__emphasis_open_star] = ACTIONS(1099), + [sym__emphasis_open_underscore] = ACTIONS(1101), + [sym__emphasis_close_underscore] = ACTIONS(2367), + [sym__strikeout_open] = ACTIONS(1105), + [sym__latex_span_start] = ACTIONS(1107), + [sym__single_quote_open] = ACTIONS(1109), + [sym__double_quote_open] = ACTIONS(1111), + [sym__superscript_open] = ACTIONS(1113), + [sym__subscript_open] = ACTIONS(1115), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1117), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1119), + [sym__cite_author_in_text] = ACTIONS(1121), + [sym__cite_suppress_author] = ACTIONS(1123), + [sym__shortcode_open_escaped] = ACTIONS(1125), + [sym__shortcode_open] = ACTIONS(1127), + [sym__unclosed_span] = ACTIONS(1061), }, - [STATE(77)] = { - [sym_backslash_escape] = STATE(261), - [sym_commonmark_attribute] = STATE(261), - [sym_code_span] = STATE(261), - [sym_latex_span] = STATE(261), - [sym_superscript] = STATE(261), - [sym_subscript] = STATE(261), - [sym_strikeout] = STATE(261), - [sym_quoted_span] = STATE(261), - [sym_inline_note] = STATE(261), - [sym_citation] = STATE(261), - [sym_shortcode_escaped] = STATE(261), - [sym_shortcode] = STATE(261), - [sym_note_reference] = STATE(261), - [sym__link_text] = STATE(322), - [sym__link_text_non_empty] = STATE(323), + [STATE(72)] = { + [sym_backslash_escape] = STATE(373), + [sym_commonmark_attribute] = STATE(373), + [sym_code_span] = STATE(373), + [sym_latex_span] = STATE(373), + [sym_insert] = STATE(373), + [sym_delete] = STATE(373), + [sym_highlight] = STATE(373), + [sym_edit_comment] = STATE(373), + [sym_superscript] = STATE(373), + [sym_subscript] = STATE(373), + [sym_strikeout] = STATE(373), + [sym_quoted_span] = STATE(373), + [sym_inline_note] = STATE(373), + [sym_citation] = STATE(373), + [sym_shortcode_escaped] = STATE(373), + [sym_shortcode] = STATE(373), + [sym_note_reference] = STATE(373), + [sym__link_text] = STATE(522), + [sym__link_text_non_empty] = STATE(523), + [sym_inline_link] = STATE(36), + [sym_image] = STATE(373), + [sym__image_inline_link] = STATE(1265), + [sym__image_description] = STATE(2331), + [sym__image_description_non_empty] = STATE(2331), + [sym_hard_line_break] = STATE(373), + [sym__whitespace] = STATE(1262), + [sym__word] = STATE(1262), + [sym__soft_line_break] = STATE(1267), + [sym__inline_base] = STATE(36), + [sym__text_base] = STATE(373), + [sym__inline_element_no_star] = STATE(36), + [aux_sym__inline_no_star] = STATE(36), + [sym__emphasis_star] = STATE(1147), + [sym__strong_emphasis_star] = STATE(36), + [sym__emphasis_underscore] = STATE(1147), + [sym__strong_emphasis_underscore] = STATE(36), + [aux_sym__inline_base_repeat1] = STATE(373), + [sym__backslash_escape] = ACTIONS(885), + [sym_entity_reference] = ACTIONS(887), + [sym_numeric_character_reference] = ACTIONS(887), + [anon_sym_LT] = ACTIONS(889), + [anon_sym_GT] = ACTIONS(891), + [anon_sym_BANG] = ACTIONS(893), + [anon_sym_DQUOTE] = ACTIONS(891), + [anon_sym_POUND] = ACTIONS(891), + [anon_sym_DOLLAR] = ACTIONS(891), + [anon_sym_PERCENT] = ACTIONS(891), + [anon_sym_AMP] = ACTIONS(889), + [anon_sym_SQUOTE] = ACTIONS(891), + [anon_sym_STAR] = ACTIONS(891), + [anon_sym_PLUS] = ACTIONS(891), + [anon_sym_COMMA] = ACTIONS(891), + [anon_sym_DASH] = ACTIONS(889), + [anon_sym_DOT] = ACTIONS(889), + [anon_sym_SLASH] = ACTIONS(891), + [anon_sym_COLON] = ACTIONS(891), + [anon_sym_SEMI] = ACTIONS(891), + [anon_sym_EQ] = ACTIONS(891), + [anon_sym_QMARK] = ACTIONS(891), + [anon_sym_LBRACK] = ACTIONS(895), + [anon_sym_BSLASH] = ACTIONS(897), + [anon_sym_CARET] = ACTIONS(889), + [anon_sym__] = ACTIONS(891), + [anon_sym_BQUOTE] = ACTIONS(891), + [anon_sym_LBRACE] = ACTIONS(899), + [anon_sym_PIPE] = ACTIONS(891), + [anon_sym_TILDE] = ACTIONS(891), + [anon_sym_LPAREN] = ACTIONS(891), + [anon_sym_RPAREN] = ACTIONS(891), + [sym__newline_token] = ACTIONS(901), + [aux_sym_insert_token1] = ACTIONS(903), + [aux_sym_delete_token1] = ACTIONS(905), + [aux_sym_highlight_token1] = ACTIONS(907), + [aux_sym_edit_comment_token1] = ACTIONS(909), + [anon_sym_CARET_LBRACK] = ACTIONS(911), + [anon_sym_LBRACK_CARET] = ACTIONS(913), + [sym_uri_autolink] = ACTIONS(887), + [sym_email_autolink] = ACTIONS(887), + [sym__whitespace_ge_2] = ACTIONS(915), + [aux_sym__whitespace_token1] = ACTIONS(917), + [sym__word_no_digit] = ACTIONS(919), + [sym__digits] = ACTIONS(919), + [anon_sym_DASH_DASH] = ACTIONS(921), + [anon_sym_DASH_DASH_DASH] = ACTIONS(919), + [anon_sym_DOT_DOT_DOT] = ACTIONS(919), + [sym__code_span_start] = ACTIONS(923), + [sym__emphasis_open_star] = ACTIONS(925), + [sym__emphasis_open_underscore] = ACTIONS(927), + [sym__emphasis_close_star] = ACTIONS(2369), + [sym__strikeout_open] = ACTIONS(931), + [sym__latex_span_start] = ACTIONS(933), + [sym__single_quote_open] = ACTIONS(935), + [sym__double_quote_open] = ACTIONS(937), + [sym__superscript_open] = ACTIONS(939), + [sym__subscript_open] = ACTIONS(941), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(943), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(945), + [sym__cite_author_in_text] = ACTIONS(947), + [sym__cite_suppress_author] = ACTIONS(949), + [sym__shortcode_open_escaped] = ACTIONS(951), + [sym__shortcode_open] = ACTIONS(953), + [sym__unclosed_span] = ACTIONS(887), + }, + [STATE(73)] = { + [sym_backslash_escape] = STATE(379), + [sym_commonmark_attribute] = STATE(379), + [sym_code_span] = STATE(379), + [sym_latex_span] = STATE(379), + [sym_insert] = STATE(379), + [sym_delete] = STATE(379), + [sym_highlight] = STATE(379), + [sym_edit_comment] = STATE(379), + [sym_superscript] = STATE(379), + [sym_subscript] = STATE(379), + [sym_strikeout] = STATE(379), + [sym_quoted_span] = STATE(379), + [sym_inline_note] = STATE(379), + [sym_citation] = STATE(379), + [sym_shortcode_escaped] = STATE(379), + [sym_shortcode] = STATE(379), + [sym_note_reference] = STATE(379), + [sym__link_text] = STATE(545), + [sym__link_text_non_empty] = STATE(546), + [sym_inline_link] = STATE(38), + [sym_image] = STATE(379), + [sym__image_inline_link] = STATE(1390), + [sym__image_description] = STATE(2363), + [sym__image_description_non_empty] = STATE(2363), + [sym_hard_line_break] = STATE(379), + [sym__whitespace] = STATE(1385), + [sym__word] = STATE(1385), + [sym__soft_line_break] = STATE(1391), + [sym__inline_base] = STATE(38), + [sym__text_base] = STATE(379), + [sym__inline_element_no_underscore] = STATE(38), + [aux_sym__inline_no_underscore] = STATE(38), + [sym__emphasis_star] = STATE(1168), + [sym__strong_emphasis_star] = STATE(38), + [sym__emphasis_underscore] = STATE(1168), + [sym__strong_emphasis_underscore] = STATE(38), + [aux_sym__inline_base_repeat1] = STATE(379), + [sym__backslash_escape] = ACTIONS(1059), + [sym_entity_reference] = ACTIONS(1061), + [sym_numeric_character_reference] = ACTIONS(1061), + [anon_sym_LT] = ACTIONS(1063), + [anon_sym_GT] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1067), + [anon_sym_DQUOTE] = ACTIONS(1065), + [anon_sym_POUND] = ACTIONS(1065), + [anon_sym_DOLLAR] = ACTIONS(1065), + [anon_sym_PERCENT] = ACTIONS(1065), + [anon_sym_AMP] = ACTIONS(1063), + [anon_sym_SQUOTE] = ACTIONS(1065), + [anon_sym_STAR] = ACTIONS(1065), + [anon_sym_PLUS] = ACTIONS(1065), + [anon_sym_COMMA] = ACTIONS(1065), + [anon_sym_DASH] = ACTIONS(1063), + [anon_sym_DOT] = ACTIONS(1063), + [anon_sym_SLASH] = ACTIONS(1065), + [anon_sym_COLON] = ACTIONS(1065), + [anon_sym_SEMI] = ACTIONS(1065), + [anon_sym_EQ] = ACTIONS(1065), + [anon_sym_QMARK] = ACTIONS(1065), + [anon_sym_LBRACK] = ACTIONS(1069), + [anon_sym_BSLASH] = ACTIONS(1071), + [anon_sym_CARET] = ACTIONS(1063), + [anon_sym__] = ACTIONS(1065), + [anon_sym_BQUOTE] = ACTIONS(1065), + [anon_sym_LBRACE] = ACTIONS(1073), + [anon_sym_PIPE] = ACTIONS(1065), + [anon_sym_TILDE] = ACTIONS(1065), + [anon_sym_LPAREN] = ACTIONS(1065), + [anon_sym_RPAREN] = ACTIONS(1065), + [sym__newline_token] = ACTIONS(1075), + [aux_sym_insert_token1] = ACTIONS(1077), + [aux_sym_delete_token1] = ACTIONS(1079), + [aux_sym_highlight_token1] = ACTIONS(1081), + [aux_sym_edit_comment_token1] = ACTIONS(1083), + [anon_sym_CARET_LBRACK] = ACTIONS(1085), + [anon_sym_LBRACK_CARET] = ACTIONS(1087), + [sym_uri_autolink] = ACTIONS(1061), + [sym_email_autolink] = ACTIONS(1061), + [sym__whitespace_ge_2] = ACTIONS(1089), + [aux_sym__whitespace_token1] = ACTIONS(1091), + [sym__word_no_digit] = ACTIONS(1093), + [sym__digits] = ACTIONS(1093), + [anon_sym_DASH_DASH] = ACTIONS(1095), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1093), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1093), + [sym__code_span_start] = ACTIONS(1097), + [sym__emphasis_open_star] = ACTIONS(1099), + [sym__emphasis_open_underscore] = ACTIONS(1101), + [sym__emphasis_close_underscore] = ACTIONS(2371), + [sym__strikeout_open] = ACTIONS(1105), + [sym__latex_span_start] = ACTIONS(1107), + [sym__single_quote_open] = ACTIONS(1109), + [sym__double_quote_open] = ACTIONS(1111), + [sym__superscript_open] = ACTIONS(1113), + [sym__subscript_open] = ACTIONS(1115), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1117), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1119), + [sym__cite_author_in_text] = ACTIONS(1121), + [sym__cite_suppress_author] = ACTIONS(1123), + [sym__shortcode_open_escaped] = ACTIONS(1125), + [sym__shortcode_open] = ACTIONS(1127), + [sym__unclosed_span] = ACTIONS(1061), + }, + [STATE(74)] = { + [sym_backslash_escape] = STATE(366), + [sym_commonmark_attribute] = STATE(366), + [sym_code_span] = STATE(366), + [sym_latex_span] = STATE(366), + [sym_insert] = STATE(366), + [sym_delete] = STATE(366), + [sym_highlight] = STATE(366), + [sym_edit_comment] = STATE(366), + [sym_superscript] = STATE(366), + [sym_subscript] = STATE(366), + [sym_strikeout] = STATE(366), + [sym_quoted_span] = STATE(366), + [sym_inline_note] = STATE(366), + [sym_citation] = STATE(366), + [sym_shortcode_escaped] = STATE(366), + [sym_shortcode] = STATE(366), + [sym_note_reference] = STATE(366), + [sym__link_text] = STATE(490), + [sym__link_text_non_empty] = STATE(491), [sym_inline_link] = STATE(39), - [sym_image] = STATE(261), - [sym__image_inline_link] = STATE(595), - [sym__image_description] = STATE(1972), - [sym__image_description_non_empty] = STATE(1972), - [sym_hard_line_break] = STATE(261), - [sym__whitespace] = STATE(587), - [sym__word] = STATE(587), - [sym__soft_line_break] = STATE(597), + [sym_image] = STATE(366), + [sym__image_inline_link] = STATE(1244), + [sym__image_description] = STATE(2280), + [sym__image_description_non_empty] = STATE(2280), + [sym_hard_line_break] = STATE(366), + [sym__whitespace] = STATE(1218), + [sym__word] = STATE(1218), + [sym__soft_line_break] = STATE(1245), [sym__inline_base] = STATE(39), - [sym__text_base] = STATE(261), - [sym__inline_element_no_star] = STATE(39), - [aux_sym__inline_no_star] = STATE(39), - [sym__emphasis_star] = STATE(544), + [sym__text_base] = STATE(366), + [sym__inline_element] = STATE(39), + [sym__emphasis_star] = STATE(1270), [sym__strong_emphasis_star] = STATE(39), - [sym__emphasis_underscore] = STATE(544), + [sym__emphasis_underscore] = STATE(1270), [sym__strong_emphasis_underscore] = STATE(39), - [aux_sym__inline_base_repeat1] = STATE(261), - [sym__backslash_escape] = ACTIONS(969), - [sym_entity_reference] = ACTIONS(971), - [sym_numeric_character_reference] = ACTIONS(971), - [anon_sym_LT] = ACTIONS(973), - [anon_sym_GT] = ACTIONS(975), - [anon_sym_BANG] = ACTIONS(977), - [anon_sym_DQUOTE] = ACTIONS(975), - [anon_sym_POUND] = ACTIONS(975), - [anon_sym_DOLLAR] = ACTIONS(975), - [anon_sym_PERCENT] = ACTIONS(975), - [anon_sym_AMP] = ACTIONS(973), - [anon_sym_SQUOTE] = ACTIONS(975), - [anon_sym_STAR] = ACTIONS(975), - [anon_sym_PLUS] = ACTIONS(975), - [anon_sym_COMMA] = ACTIONS(975), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_DOT] = ACTIONS(973), - [anon_sym_SLASH] = ACTIONS(975), - [anon_sym_COLON] = ACTIONS(975), - [anon_sym_SEMI] = ACTIONS(975), - [anon_sym_EQ] = ACTIONS(975), - [anon_sym_QMARK] = ACTIONS(975), - [anon_sym_LBRACK] = ACTIONS(979), - [anon_sym_BSLASH] = ACTIONS(981), - [anon_sym_CARET] = ACTIONS(973), - [anon_sym__] = ACTIONS(975), - [anon_sym_BQUOTE] = ACTIONS(975), - [anon_sym_LBRACE] = ACTIONS(983), - [anon_sym_PIPE] = ACTIONS(975), - [anon_sym_TILDE] = ACTIONS(975), - [anon_sym_LPAREN] = ACTIONS(975), - [anon_sym_RPAREN] = ACTIONS(975), - [sym__newline_token] = ACTIONS(985), - [anon_sym_CARET_LBRACK] = ACTIONS(987), - [anon_sym_LBRACK_CARET] = ACTIONS(989), - [sym_uri_autolink] = ACTIONS(971), - [sym_email_autolink] = ACTIONS(971), - [sym__whitespace_ge_2] = ACTIONS(991), - [aux_sym__whitespace_token1] = ACTIONS(993), - [sym__word_no_digit] = ACTIONS(995), - [sym__digits] = ACTIONS(995), - [anon_sym_DASH_DASH] = ACTIONS(997), - [anon_sym_DASH_DASH_DASH] = ACTIONS(995), - [anon_sym_DOT_DOT_DOT] = ACTIONS(995), - [sym__code_span_start] = ACTIONS(999), - [sym__emphasis_open_star] = ACTIONS(1001), - [sym__emphasis_open_underscore] = ACTIONS(1003), - [sym__emphasis_close_star] = ACTIONS(1959), - [sym__strikeout_open] = ACTIONS(1007), - [sym__latex_span_start] = ACTIONS(1009), - [sym__single_quote_open] = ACTIONS(1011), - [sym__double_quote_open] = ACTIONS(1013), - [sym__superscript_open] = ACTIONS(1015), - [sym__subscript_open] = ACTIONS(1017), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1019), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1021), - [sym__cite_author_in_text] = ACTIONS(1023), - [sym__cite_suppress_author] = ACTIONS(1025), - [sym__shortcode_open_escaped] = ACTIONS(1027), - [sym__shortcode_open] = ACTIONS(1029), - [sym__unclosed_span] = ACTIONS(971), - }, - [STATE(78)] = { - [sym_backslash_escape] = STATE(274), - [sym_commonmark_attribute] = STATE(274), - [sym_code_span] = STATE(274), - [sym_latex_span] = STATE(274), - [sym_superscript] = STATE(274), - [sym_subscript] = STATE(274), - [sym_strikeout] = STATE(274), - [sym_quoted_span] = STATE(274), - [sym_inline_note] = STATE(274), - [sym_citation] = STATE(274), - [sym_shortcode_escaped] = STATE(274), - [sym_shortcode] = STATE(274), - [sym_note_reference] = STATE(274), - [sym__link_text] = STATE(351), - [sym__link_text_non_empty] = STATE(352), - [sym_inline_link] = STATE(41), - [sym_image] = STATE(274), - [sym__image_inline_link] = STATE(894), - [sym__image_description] = STATE(2008), - [sym__image_description_non_empty] = STATE(2008), - [sym_hard_line_break] = STATE(274), - [sym__whitespace] = STATE(882), - [sym__word] = STATE(882), - [sym__soft_line_break] = STATE(898), - [sym__inline_base] = STATE(41), - [sym__text_base] = STATE(274), - [sym__inline_element_no_underscore] = STATE(41), - [aux_sym__inline_no_underscore] = STATE(41), - [sym__emphasis_star] = STATE(711), - [sym__strong_emphasis_star] = STATE(41), - [sym__emphasis_underscore] = STATE(711), - [sym__strong_emphasis_underscore] = STATE(41), - [aux_sym__inline_base_repeat1] = STATE(274), - [sym__backslash_escape] = ACTIONS(1123), - [sym_entity_reference] = ACTIONS(1125), - [sym_numeric_character_reference] = ACTIONS(1125), - [anon_sym_LT] = ACTIONS(1127), - [anon_sym_GT] = ACTIONS(1129), - [anon_sym_BANG] = ACTIONS(1131), - [anon_sym_DQUOTE] = ACTIONS(1129), - [anon_sym_POUND] = ACTIONS(1129), - [anon_sym_DOLLAR] = ACTIONS(1129), - [anon_sym_PERCENT] = ACTIONS(1129), - [anon_sym_AMP] = ACTIONS(1127), - [anon_sym_SQUOTE] = ACTIONS(1129), - [anon_sym_STAR] = ACTIONS(1129), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_COMMA] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1127), - [anon_sym_DOT] = ACTIONS(1127), - [anon_sym_SLASH] = ACTIONS(1129), - [anon_sym_COLON] = ACTIONS(1129), - [anon_sym_SEMI] = ACTIONS(1129), - [anon_sym_EQ] = ACTIONS(1129), - [anon_sym_QMARK] = ACTIONS(1129), - [anon_sym_LBRACK] = ACTIONS(1133), - [anon_sym_BSLASH] = ACTIONS(1135), - [anon_sym_CARET] = ACTIONS(1127), - [anon_sym__] = ACTIONS(1129), - [anon_sym_BQUOTE] = ACTIONS(1129), - [anon_sym_LBRACE] = ACTIONS(1137), - [anon_sym_PIPE] = ACTIONS(1129), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1129), - [anon_sym_RPAREN] = ACTIONS(1129), - [sym__newline_token] = ACTIONS(1139), - [anon_sym_CARET_LBRACK] = ACTIONS(1141), - [anon_sym_LBRACK_CARET] = ACTIONS(1143), - [sym_uri_autolink] = ACTIONS(1125), - [sym_email_autolink] = ACTIONS(1125), - [sym__whitespace_ge_2] = ACTIONS(1145), - [aux_sym__whitespace_token1] = ACTIONS(1147), - [sym__word_no_digit] = ACTIONS(1149), - [sym__digits] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1151), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1149), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1149), - [sym__code_span_start] = ACTIONS(1153), - [sym__emphasis_open_star] = ACTIONS(1155), - [sym__emphasis_open_underscore] = ACTIONS(1157), - [sym__emphasis_close_underscore] = ACTIONS(1961), - [sym__strikeout_open] = ACTIONS(1161), - [sym__latex_span_start] = ACTIONS(1163), - [sym__single_quote_open] = ACTIONS(1165), - [sym__double_quote_open] = ACTIONS(1167), - [sym__superscript_open] = ACTIONS(1169), - [sym__subscript_open] = ACTIONS(1171), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1173), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1175), - [sym__cite_author_in_text] = ACTIONS(1177), - [sym__cite_suppress_author] = ACTIONS(1179), - [sym__shortcode_open_escaped] = ACTIONS(1181), - [sym__shortcode_open] = ACTIONS(1183), - [sym__unclosed_span] = ACTIONS(1125), - }, - [STATE(79)] = { - [sym_backslash_escape] = STATE(266), - [sym_commonmark_attribute] = STATE(266), - [sym_code_span] = STATE(266), - [sym_latex_span] = STATE(266), - [sym_superscript] = STATE(266), - [sym_subscript] = STATE(266), - [sym_strikeout] = STATE(266), - [sym_quoted_span] = STATE(266), - [sym_inline_note] = STATE(266), - [sym_citation] = STATE(266), - [sym_shortcode_escaped] = STATE(266), - [sym_shortcode] = STATE(266), - [sym_note_reference] = STATE(266), - [sym__link_text] = STATE(375), - [sym__link_text_non_empty] = STATE(376), - [sym_inline_link] = STATE(42), - [sym_image] = STATE(266), - [sym__image_inline_link] = STATE(1042), - [sym__image_description] = STATE(2044), - [sym__image_description_non_empty] = STATE(2044), - [sym_hard_line_break] = STATE(266), - [sym__whitespace] = STATE(1040), - [sym__word] = STATE(1040), - [sym__soft_line_break] = STATE(1043), - [sym__inline_base] = STATE(42), - [sym__text_base] = STATE(266), - [sym__inline_element] = STATE(42), - [sym__emphasis_star] = STATE(602), - [sym__strong_emphasis_star] = STATE(42), - [sym__emphasis_underscore] = STATE(602), - [sym__strong_emphasis_underscore] = STATE(42), - [aux_sym_superscript_repeat1] = STATE(42), - [aux_sym__inline_base_repeat1] = STATE(266), - [sym__backslash_escape] = ACTIONS(559), - [sym_entity_reference] = ACTIONS(561), - [sym_numeric_character_reference] = ACTIONS(561), - [anon_sym_LT] = ACTIONS(563), - [anon_sym_GT] = ACTIONS(565), - [anon_sym_BANG] = ACTIONS(567), - [anon_sym_DQUOTE] = ACTIONS(565), - [anon_sym_POUND] = ACTIONS(565), - [anon_sym_DOLLAR] = ACTIONS(565), - [anon_sym_PERCENT] = ACTIONS(565), - [anon_sym_AMP] = ACTIONS(563), - [anon_sym_SQUOTE] = ACTIONS(565), - [anon_sym_STAR] = ACTIONS(565), - [anon_sym_PLUS] = ACTIONS(565), - [anon_sym_COMMA] = ACTIONS(565), - [anon_sym_DASH] = ACTIONS(563), - [anon_sym_DOT] = ACTIONS(563), - [anon_sym_SLASH] = ACTIONS(565), - [anon_sym_COLON] = ACTIONS(565), - [anon_sym_SEMI] = ACTIONS(565), - [anon_sym_EQ] = ACTIONS(565), - [anon_sym_QMARK] = ACTIONS(565), - [anon_sym_LBRACK] = ACTIONS(569), - [anon_sym_BSLASH] = ACTIONS(571), - [anon_sym_CARET] = ACTIONS(563), - [anon_sym__] = ACTIONS(565), - [anon_sym_BQUOTE] = ACTIONS(565), - [anon_sym_LBRACE] = ACTIONS(573), - [anon_sym_PIPE] = ACTIONS(565), - [anon_sym_TILDE] = ACTIONS(565), - [anon_sym_LPAREN] = ACTIONS(565), - [anon_sym_RPAREN] = ACTIONS(565), - [sym__newline_token] = ACTIONS(575), - [anon_sym_CARET_LBRACK] = ACTIONS(577), - [anon_sym_LBRACK_CARET] = ACTIONS(579), - [sym_uri_autolink] = ACTIONS(561), - [sym_email_autolink] = ACTIONS(561), - [sym__whitespace_ge_2] = ACTIONS(581), - [aux_sym__whitespace_token1] = ACTIONS(583), - [sym__word_no_digit] = ACTIONS(585), - [sym__digits] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(587), - [anon_sym_DASH_DASH_DASH] = ACTIONS(585), - [anon_sym_DOT_DOT_DOT] = ACTIONS(585), - [sym__code_span_start] = ACTIONS(589), - [sym__emphasis_open_star] = ACTIONS(591), - [sym__emphasis_open_underscore] = ACTIONS(593), - [sym__strikeout_open] = ACTIONS(595), - [sym__strikeout_close] = ACTIONS(1963), - [sym__latex_span_start] = ACTIONS(599), - [sym__single_quote_open] = ACTIONS(601), - [sym__double_quote_open] = ACTIONS(603), - [sym__superscript_open] = ACTIONS(605), - [sym__subscript_open] = ACTIONS(607), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(609), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(611), - [sym__cite_author_in_text] = ACTIONS(613), - [sym__cite_suppress_author] = ACTIONS(615), - [sym__shortcode_open_escaped] = ACTIONS(617), - [sym__shortcode_open] = ACTIONS(619), - [sym__unclosed_span] = ACTIONS(561), + [aux_sym_insert_repeat1] = STATE(39), + [aux_sym__inline_base_repeat1] = STATE(366), + [sym__backslash_escape] = ACTIONS(2005), + [sym_entity_reference] = ACTIONS(2007), + [sym_numeric_character_reference] = ACTIONS(2007), + [anon_sym_LT] = ACTIONS(2009), + [anon_sym_GT] = ACTIONS(2011), + [anon_sym_BANG] = ACTIONS(2013), + [anon_sym_DQUOTE] = ACTIONS(2011), + [anon_sym_POUND] = ACTIONS(2011), + [anon_sym_DOLLAR] = ACTIONS(2011), + [anon_sym_PERCENT] = ACTIONS(2011), + [anon_sym_AMP] = ACTIONS(2009), + [anon_sym_SQUOTE] = ACTIONS(2011), + [anon_sym_STAR] = ACTIONS(2011), + [anon_sym_PLUS] = ACTIONS(2011), + [anon_sym_COMMA] = ACTIONS(2011), + [anon_sym_DASH] = ACTIONS(2009), + [anon_sym_DOT] = ACTIONS(2009), + [anon_sym_SLASH] = ACTIONS(2011), + [anon_sym_COLON] = ACTIONS(2011), + [anon_sym_SEMI] = ACTIONS(2011), + [anon_sym_EQ] = ACTIONS(2011), + [anon_sym_QMARK] = ACTIONS(2011), + [anon_sym_LBRACK] = ACTIONS(2015), + [anon_sym_BSLASH] = ACTIONS(2017), + [anon_sym_CARET] = ACTIONS(2009), + [anon_sym__] = ACTIONS(2011), + [anon_sym_BQUOTE] = ACTIONS(2011), + [anon_sym_LBRACE] = ACTIONS(2019), + [anon_sym_PIPE] = ACTIONS(2011), + [anon_sym_TILDE] = ACTIONS(2011), + [anon_sym_LPAREN] = ACTIONS(2011), + [anon_sym_RPAREN] = ACTIONS(2011), + [sym__newline_token] = ACTIONS(2021), + [aux_sym_insert_token1] = ACTIONS(2023), + [aux_sym_delete_token1] = ACTIONS(2025), + [aux_sym_highlight_token1] = ACTIONS(2027), + [aux_sym_edit_comment_token1] = ACTIONS(2029), + [anon_sym_CARET_LBRACK] = ACTIONS(2031), + [anon_sym_LBRACK_CARET] = ACTIONS(2033), + [sym_uri_autolink] = ACTIONS(2007), + [sym_email_autolink] = ACTIONS(2007), + [sym__whitespace_ge_2] = ACTIONS(2035), + [aux_sym__whitespace_token1] = ACTIONS(2037), + [sym__word_no_digit] = ACTIONS(2039), + [sym__digits] = ACTIONS(2039), + [anon_sym_DASH_DASH] = ACTIONS(2041), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2039), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2039), + [sym__code_span_start] = ACTIONS(2043), + [sym__emphasis_open_star] = ACTIONS(2045), + [sym__emphasis_open_underscore] = ACTIONS(2047), + [sym__strikeout_open] = ACTIONS(2049), + [sym__strikeout_close] = ACTIONS(2373), + [sym__latex_span_start] = ACTIONS(2053), + [sym__single_quote_open] = ACTIONS(2055), + [sym__double_quote_open] = ACTIONS(2057), + [sym__superscript_open] = ACTIONS(2059), + [sym__subscript_open] = ACTIONS(2061), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2063), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2065), + [sym__cite_author_in_text] = ACTIONS(2067), + [sym__cite_suppress_author] = ACTIONS(2069), + [sym__shortcode_open_escaped] = ACTIONS(2071), + [sym__shortcode_open] = ACTIONS(2073), + [sym__unclosed_span] = ACTIONS(2007), }, - [STATE(80)] = { - [sym_backslash_escape] = STATE(272), - [sym_commonmark_attribute] = STATE(272), - [sym_code_span] = STATE(272), - [sym_latex_span] = STATE(272), - [sym_superscript] = STATE(272), - [sym_subscript] = STATE(272), - [sym_strikeout] = STATE(272), - [sym_quoted_span] = STATE(272), - [sym_inline_note] = STATE(272), - [sym_citation] = STATE(272), - [sym_shortcode_escaped] = STATE(272), - [sym_shortcode] = STATE(272), - [sym_note_reference] = STATE(272), - [sym__link_text] = STATE(401), - [sym__link_text_non_empty] = STATE(402), - [sym_inline_link] = STATE(49), - [sym_image] = STATE(272), - [sym__image_inline_link] = STATE(1136), - [sym__image_description] = STATE(1942), - [sym__image_description_non_empty] = STATE(1942), - [sym_hard_line_break] = STATE(272), - [sym__whitespace] = STATE(1133), - [sym__word] = STATE(1133), - [sym__soft_line_break] = STATE(1137), - [sym__inline_base] = STATE(49), - [sym__text_base] = STATE(272), - [sym__inline_element] = STATE(49), - [sym__emphasis_star] = STATE(902), - [sym__strong_emphasis_star] = STATE(49), - [sym__emphasis_underscore] = STATE(902), - [sym__strong_emphasis_underscore] = STATE(49), - [aux_sym_superscript_repeat1] = STATE(49), - [aux_sym__inline_base_repeat1] = STATE(272), - [sym__backslash_escape] = ACTIONS(625), - [sym_entity_reference] = ACTIONS(627), - [sym_numeric_character_reference] = ACTIONS(627), - [anon_sym_LT] = ACTIONS(629), - [anon_sym_GT] = ACTIONS(631), - [anon_sym_BANG] = ACTIONS(633), - [anon_sym_DQUOTE] = ACTIONS(631), - [anon_sym_POUND] = ACTIONS(631), - [anon_sym_DOLLAR] = ACTIONS(631), - [anon_sym_PERCENT] = ACTIONS(631), - [anon_sym_AMP] = ACTIONS(629), - [anon_sym_SQUOTE] = ACTIONS(631), - [anon_sym_STAR] = ACTIONS(631), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_COMMA] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(629), - [anon_sym_DOT] = ACTIONS(629), - [anon_sym_SLASH] = ACTIONS(631), - [anon_sym_COLON] = ACTIONS(631), - [anon_sym_SEMI] = ACTIONS(631), - [anon_sym_EQ] = ACTIONS(631), - [anon_sym_QMARK] = ACTIONS(631), - [anon_sym_LBRACK] = ACTIONS(635), - [anon_sym_BSLASH] = ACTIONS(637), - [anon_sym_CARET] = ACTIONS(629), - [anon_sym__] = ACTIONS(631), - [anon_sym_BQUOTE] = ACTIONS(631), - [anon_sym_LBRACE] = ACTIONS(639), - [anon_sym_PIPE] = ACTIONS(631), - [anon_sym_TILDE] = ACTIONS(631), - [anon_sym_LPAREN] = ACTIONS(631), - [anon_sym_RPAREN] = ACTIONS(631), - [sym__newline_token] = ACTIONS(641), - [anon_sym_CARET_LBRACK] = ACTIONS(643), - [anon_sym_LBRACK_CARET] = ACTIONS(645), - [sym_uri_autolink] = ACTIONS(627), - [sym_email_autolink] = ACTIONS(627), - [sym__whitespace_ge_2] = ACTIONS(647), - [aux_sym__whitespace_token1] = ACTIONS(649), - [sym__word_no_digit] = ACTIONS(651), - [sym__digits] = ACTIONS(651), - [anon_sym_DASH_DASH] = ACTIONS(653), - [anon_sym_DASH_DASH_DASH] = ACTIONS(651), - [anon_sym_DOT_DOT_DOT] = ACTIONS(651), - [sym__code_span_start] = ACTIONS(655), - [sym__emphasis_open_star] = ACTIONS(657), - [sym__emphasis_open_underscore] = ACTIONS(659), - [sym__strikeout_open] = ACTIONS(661), - [sym__latex_span_start] = ACTIONS(663), - [sym__single_quote_open] = ACTIONS(665), - [sym__single_quote_close] = ACTIONS(1965), - [sym__double_quote_open] = ACTIONS(669), - [sym__superscript_open] = ACTIONS(671), - [sym__subscript_open] = ACTIONS(673), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(675), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(677), - [sym__cite_author_in_text] = ACTIONS(679), - [sym__cite_suppress_author] = ACTIONS(681), - [sym__shortcode_open_escaped] = ACTIONS(683), - [sym__shortcode_open] = ACTIONS(685), - [sym__unclosed_span] = ACTIONS(627), + [STATE(75)] = { + [sym_backslash_escape] = STATE(375), + [sym_commonmark_attribute] = STATE(375), + [sym_code_span] = STATE(375), + [sym_latex_span] = STATE(375), + [sym_insert] = STATE(375), + [sym_delete] = STATE(375), + [sym_highlight] = STATE(375), + [sym_edit_comment] = STATE(375), + [sym_superscript] = STATE(375), + [sym_subscript] = STATE(375), + [sym_strikeout] = STATE(375), + [sym_quoted_span] = STATE(375), + [sym_inline_note] = STATE(375), + [sym_citation] = STATE(375), + [sym_shortcode_escaped] = STATE(375), + [sym_shortcode] = STATE(375), + [sym_note_reference] = STATE(375), + [sym__link_text] = STATE(525), + [sym__link_text_non_empty] = STATE(527), + [sym_inline_link] = STATE(47), + [sym_image] = STATE(375), + [sym__image_inline_link] = STATE(972), + [sym__image_description] = STATE(2286), + [sym__image_description_non_empty] = STATE(2286), + [sym_hard_line_break] = STATE(375), + [sym__whitespace] = STATE(949), + [sym__word] = STATE(949), + [sym__soft_line_break] = STATE(973), + [sym__inline_base] = STATE(47), + [sym__text_base] = STATE(375), + [sym__inline_element] = STATE(47), + [sym__emphasis_star] = STATE(1392), + [sym__strong_emphasis_star] = STATE(47), + [sym__emphasis_underscore] = STATE(1392), + [sym__strong_emphasis_underscore] = STATE(47), + [aux_sym_insert_repeat1] = STATE(47), + [aux_sym__inline_base_repeat1] = STATE(375), + [sym__backslash_escape] = ACTIONS(2179), + [sym_entity_reference] = ACTIONS(2181), + [sym_numeric_character_reference] = ACTIONS(2181), + [anon_sym_LT] = ACTIONS(2183), + [anon_sym_GT] = ACTIONS(2185), + [anon_sym_BANG] = ACTIONS(2187), + [anon_sym_DQUOTE] = ACTIONS(2185), + [anon_sym_POUND] = ACTIONS(2185), + [anon_sym_DOLLAR] = ACTIONS(2185), + [anon_sym_PERCENT] = ACTIONS(2185), + [anon_sym_AMP] = ACTIONS(2183), + [anon_sym_SQUOTE] = ACTIONS(2185), + [anon_sym_STAR] = ACTIONS(2185), + [anon_sym_PLUS] = ACTIONS(2185), + [anon_sym_COMMA] = ACTIONS(2185), + [anon_sym_DASH] = ACTIONS(2183), + [anon_sym_DOT] = ACTIONS(2183), + [anon_sym_SLASH] = ACTIONS(2185), + [anon_sym_COLON] = ACTIONS(2185), + [anon_sym_SEMI] = ACTIONS(2185), + [anon_sym_EQ] = ACTIONS(2185), + [anon_sym_QMARK] = ACTIONS(2185), + [anon_sym_LBRACK] = ACTIONS(2189), + [anon_sym_BSLASH] = ACTIONS(2191), + [anon_sym_CARET] = ACTIONS(2183), + [anon_sym__] = ACTIONS(2185), + [anon_sym_BQUOTE] = ACTIONS(2185), + [anon_sym_LBRACE] = ACTIONS(2193), + [anon_sym_PIPE] = ACTIONS(2185), + [anon_sym_TILDE] = ACTIONS(2185), + [anon_sym_LPAREN] = ACTIONS(2185), + [anon_sym_RPAREN] = ACTIONS(2185), + [sym__newline_token] = ACTIONS(2195), + [aux_sym_insert_token1] = ACTIONS(2197), + [aux_sym_delete_token1] = ACTIONS(2199), + [aux_sym_highlight_token1] = ACTIONS(2201), + [aux_sym_edit_comment_token1] = ACTIONS(2203), + [anon_sym_CARET_LBRACK] = ACTIONS(2205), + [anon_sym_LBRACK_CARET] = ACTIONS(2207), + [sym_uri_autolink] = ACTIONS(2181), + [sym_email_autolink] = ACTIONS(2181), + [sym__whitespace_ge_2] = ACTIONS(2209), + [aux_sym__whitespace_token1] = ACTIONS(2211), + [sym__word_no_digit] = ACTIONS(2213), + [sym__digits] = ACTIONS(2213), + [anon_sym_DASH_DASH] = ACTIONS(2215), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2213), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2213), + [sym__code_span_start] = ACTIONS(2217), + [sym__emphasis_open_star] = ACTIONS(2219), + [sym__emphasis_open_underscore] = ACTIONS(2221), + [sym__strikeout_open] = ACTIONS(2223), + [sym__latex_span_start] = ACTIONS(2225), + [sym__single_quote_open] = ACTIONS(2227), + [sym__single_quote_close] = ACTIONS(2375), + [sym__double_quote_open] = ACTIONS(2229), + [sym__superscript_open] = ACTIONS(2231), + [sym__subscript_open] = ACTIONS(2233), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2235), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2237), + [sym__cite_author_in_text] = ACTIONS(2239), + [sym__cite_suppress_author] = ACTIONS(2241), + [sym__shortcode_open_escaped] = ACTIONS(2243), + [sym__shortcode_open] = ACTIONS(2245), + [sym__unclosed_span] = ACTIONS(2181), }, - [STATE(81)] = { - [sym_backslash_escape] = STATE(277), - [sym_commonmark_attribute] = STATE(277), - [sym_code_span] = STATE(277), - [sym_latex_span] = STATE(277), - [sym_superscript] = STATE(277), - [sym_subscript] = STATE(277), - [sym_strikeout] = STATE(277), - [sym_quoted_span] = STATE(277), - [sym_inline_note] = STATE(277), - [sym_citation] = STATE(277), - [sym_shortcode_escaped] = STATE(277), - [sym_shortcode] = STATE(277), - [sym_note_reference] = STATE(277), - [sym__link_text] = STATE(427), - [sym__link_text_non_empty] = STATE(428), + [STATE(76)] = { + [sym_backslash_escape] = STATE(383), + [sym_commonmark_attribute] = STATE(383), + [sym_code_span] = STATE(383), + [sym_latex_span] = STATE(383), + [sym_insert] = STATE(383), + [sym_delete] = STATE(383), + [sym_highlight] = STATE(383), + [sym_edit_comment] = STATE(383), + [sym_superscript] = STATE(383), + [sym_subscript] = STATE(383), + [sym_strikeout] = STATE(383), + [sym_quoted_span] = STATE(383), + [sym_inline_note] = STATE(383), + [sym_citation] = STATE(383), + [sym_shortcode_escaped] = STATE(383), + [sym_shortcode] = STATE(383), + [sym_note_reference] = STATE(383), + [sym__link_text] = STATE(395), + [sym__link_text_non_empty] = STATE(396), [sym_inline_link] = STATE(50), - [sym_image] = STATE(277), - [sym__image_inline_link] = STATE(613), - [sym__image_description] = STATE(1930), - [sym__image_description_non_empty] = STATE(1930), - [sym_hard_line_break] = STATE(277), - [sym__whitespace] = STATE(610), - [sym__word] = STATE(610), - [sym__soft_line_break] = STATE(614), + [sym_image] = STATE(383), + [sym__image_inline_link] = STATE(1263), + [sym__image_description] = STATE(2300), + [sym__image_description_non_empty] = STATE(2300), + [sym_hard_line_break] = STATE(383), + [sym__whitespace] = STATE(1259), + [sym__word] = STATE(1259), + [sym__soft_line_break] = STATE(1264), [sym__inline_base] = STATE(50), - [sym__text_base] = STATE(277), + [sym__text_base] = STATE(383), [sym__inline_element] = STATE(50), - [sym__emphasis_star] = STATE(1044), + [sym__emphasis_star] = STATE(1249), [sym__strong_emphasis_star] = STATE(50), - [sym__emphasis_underscore] = STATE(1044), + [sym__emphasis_underscore] = STATE(1249), [sym__strong_emphasis_underscore] = STATE(50), - [aux_sym_superscript_repeat1] = STATE(50), - [aux_sym__inline_base_repeat1] = STATE(277), - [sym__backslash_escape] = ACTIONS(687), - [sym_entity_reference] = ACTIONS(689), - [sym_numeric_character_reference] = ACTIONS(689), - [anon_sym_LT] = ACTIONS(691), - [anon_sym_GT] = ACTIONS(693), - [anon_sym_BANG] = ACTIONS(695), - [anon_sym_DQUOTE] = ACTIONS(693), - [anon_sym_POUND] = ACTIONS(693), - [anon_sym_DOLLAR] = ACTIONS(693), - [anon_sym_PERCENT] = ACTIONS(693), - [anon_sym_AMP] = ACTIONS(691), - [anon_sym_SQUOTE] = ACTIONS(693), - [anon_sym_STAR] = ACTIONS(693), - [anon_sym_PLUS] = ACTIONS(693), - [anon_sym_COMMA] = ACTIONS(693), - [anon_sym_DASH] = ACTIONS(691), - [anon_sym_DOT] = ACTIONS(691), - [anon_sym_SLASH] = ACTIONS(693), - [anon_sym_COLON] = ACTIONS(693), - [anon_sym_SEMI] = ACTIONS(693), - [anon_sym_EQ] = ACTIONS(693), - [anon_sym_QMARK] = ACTIONS(693), - [anon_sym_LBRACK] = ACTIONS(697), - [anon_sym_BSLASH] = ACTIONS(699), - [anon_sym_CARET] = ACTIONS(691), - [anon_sym__] = ACTIONS(693), - [anon_sym_BQUOTE] = ACTIONS(693), - [anon_sym_LBRACE] = ACTIONS(701), - [anon_sym_PIPE] = ACTIONS(693), - [anon_sym_TILDE] = ACTIONS(693), - [anon_sym_LPAREN] = ACTIONS(693), - [anon_sym_RPAREN] = ACTIONS(693), - [sym__newline_token] = ACTIONS(703), - [anon_sym_CARET_LBRACK] = ACTIONS(705), - [anon_sym_LBRACK_CARET] = ACTIONS(707), - [sym_uri_autolink] = ACTIONS(689), - [sym_email_autolink] = ACTIONS(689), - [sym__whitespace_ge_2] = ACTIONS(709), - [aux_sym__whitespace_token1] = ACTIONS(711), - [sym__word_no_digit] = ACTIONS(713), - [sym__digits] = ACTIONS(713), - [anon_sym_DASH_DASH] = ACTIONS(715), - [anon_sym_DASH_DASH_DASH] = ACTIONS(713), - [anon_sym_DOT_DOT_DOT] = ACTIONS(713), - [sym__code_span_start] = ACTIONS(717), - [sym__emphasis_open_star] = ACTIONS(719), - [sym__emphasis_open_underscore] = ACTIONS(721), - [sym__strikeout_open] = ACTIONS(723), - [sym__latex_span_start] = ACTIONS(725), - [sym__single_quote_open] = ACTIONS(727), - [sym__double_quote_open] = ACTIONS(729), - [sym__double_quote_close] = ACTIONS(1965), - [sym__superscript_open] = ACTIONS(731), - [sym__subscript_open] = ACTIONS(733), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(735), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(737), - [sym__cite_author_in_text] = ACTIONS(739), - [sym__cite_suppress_author] = ACTIONS(741), - [sym__shortcode_open_escaped] = ACTIONS(743), - [sym__shortcode_open] = ACTIONS(745), - [sym__unclosed_span] = ACTIONS(689), - }, - [STATE(82)] = { - [sym_backslash_escape] = STATE(262), - [sym_commonmark_attribute] = STATE(262), - [sym_code_span] = STATE(262), - [sym_latex_span] = STATE(262), - [sym_superscript] = STATE(262), - [sym_subscript] = STATE(262), - [sym_strikeout] = STATE(262), - [sym_quoted_span] = STATE(262), - [sym_inline_note] = STATE(262), - [sym_citation] = STATE(262), - [sym_shortcode_escaped] = STATE(262), - [sym_shortcode] = STATE(262), - [sym_note_reference] = STATE(262), - [sym__link_text] = STATE(313), - [sym__link_text_non_empty] = STATE(314), - [sym_inline_link] = STATE(51), - [sym_image] = STATE(262), - [sym__image_inline_link] = STATE(708), - [sym__image_description] = STATE(1970), - [sym__image_description_non_empty] = STATE(1970), - [sym_hard_line_break] = STATE(262), - [sym__whitespace] = STATE(705), - [sym__word] = STATE(705), - [sym__soft_line_break] = STATE(709), - [sym__inline_base] = STATE(51), - [sym__text_base] = STATE(262), - [sym__inline_element] = STATE(51), - [sym__emphasis_star] = STATE(1138), - [sym__strong_emphasis_star] = STATE(51), - [sym__emphasis_underscore] = STATE(1138), - [sym__strong_emphasis_underscore] = STATE(51), - [aux_sym_superscript_repeat1] = STATE(51), - [aux_sym__inline_base_repeat1] = STATE(262), - [sym__backslash_escape] = ACTIONS(747), - [sym_entity_reference] = ACTIONS(749), - [sym_numeric_character_reference] = ACTIONS(749), - [anon_sym_LT] = ACTIONS(751), - [anon_sym_GT] = ACTIONS(753), - [anon_sym_BANG] = ACTIONS(755), - [anon_sym_DQUOTE] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(753), - [anon_sym_DOLLAR] = ACTIONS(753), - [anon_sym_PERCENT] = ACTIONS(753), - [anon_sym_AMP] = ACTIONS(751), - [anon_sym_SQUOTE] = ACTIONS(753), - [anon_sym_STAR] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(753), - [anon_sym_COMMA] = ACTIONS(753), - [anon_sym_DASH] = ACTIONS(751), - [anon_sym_DOT] = ACTIONS(751), - [anon_sym_SLASH] = ACTIONS(753), - [anon_sym_COLON] = ACTIONS(753), - [anon_sym_SEMI] = ACTIONS(753), - [anon_sym_EQ] = ACTIONS(753), - [anon_sym_QMARK] = ACTIONS(753), - [anon_sym_LBRACK] = ACTIONS(757), - [anon_sym_BSLASH] = ACTIONS(759), - [anon_sym_CARET] = ACTIONS(751), - [anon_sym__] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(753), - [anon_sym_LBRACE] = ACTIONS(761), - [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_TILDE] = ACTIONS(753), - [anon_sym_LPAREN] = ACTIONS(753), - [anon_sym_RPAREN] = ACTIONS(753), - [sym__newline_token] = ACTIONS(763), - [anon_sym_CARET_LBRACK] = ACTIONS(765), - [anon_sym_LBRACK_CARET] = ACTIONS(767), - [sym_uri_autolink] = ACTIONS(749), - [sym_email_autolink] = ACTIONS(749), - [sym__whitespace_ge_2] = ACTIONS(769), - [aux_sym__whitespace_token1] = ACTIONS(771), - [sym__word_no_digit] = ACTIONS(773), - [sym__digits] = ACTIONS(773), - [anon_sym_DASH_DASH] = ACTIONS(775), - [anon_sym_DASH_DASH_DASH] = ACTIONS(773), - [anon_sym_DOT_DOT_DOT] = ACTIONS(773), - [sym__code_span_start] = ACTIONS(777), - [sym__emphasis_open_star] = ACTIONS(779), - [sym__emphasis_open_underscore] = ACTIONS(781), - [sym__strikeout_open] = ACTIONS(783), - [sym__latex_span_start] = ACTIONS(785), - [sym__single_quote_open] = ACTIONS(787), - [sym__double_quote_open] = ACTIONS(789), - [sym__superscript_open] = ACTIONS(791), - [sym__superscript_close] = ACTIONS(1967), - [sym__subscript_open] = ACTIONS(795), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(797), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(799), - [sym__cite_author_in_text] = ACTIONS(801), - [sym__cite_suppress_author] = ACTIONS(803), - [sym__shortcode_open_escaped] = ACTIONS(805), - [sym__shortcode_open] = ACTIONS(807), - [sym__unclosed_span] = ACTIONS(749), + [aux_sym_insert_repeat1] = STATE(50), + [aux_sym__inline_base_repeat1] = STATE(383), + [sym__backslash_escape] = ACTIONS(637), + [sym_entity_reference] = ACTIONS(639), + [sym_numeric_character_reference] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_GT] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(645), + [anon_sym_DQUOTE] = ACTIONS(643), + [anon_sym_POUND] = ACTIONS(643), + [anon_sym_DOLLAR] = ACTIONS(643), + [anon_sym_PERCENT] = ACTIONS(643), + [anon_sym_AMP] = ACTIONS(641), + [anon_sym_SQUOTE] = ACTIONS(643), + [anon_sym_STAR] = ACTIONS(643), + [anon_sym_PLUS] = ACTIONS(643), + [anon_sym_COMMA] = ACTIONS(643), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_DOT] = ACTIONS(641), + [anon_sym_SLASH] = ACTIONS(643), + [anon_sym_COLON] = ACTIONS(643), + [anon_sym_SEMI] = ACTIONS(643), + [anon_sym_EQ] = ACTIONS(643), + [anon_sym_QMARK] = ACTIONS(643), + [anon_sym_LBRACK] = ACTIONS(647), + [anon_sym_BSLASH] = ACTIONS(649), + [anon_sym_CARET] = ACTIONS(641), + [anon_sym__] = ACTIONS(643), + [anon_sym_BQUOTE] = ACTIONS(643), + [anon_sym_LBRACE] = ACTIONS(651), + [anon_sym_PIPE] = ACTIONS(643), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_LPAREN] = ACTIONS(643), + [anon_sym_RPAREN] = ACTIONS(643), + [sym__newline_token] = ACTIONS(653), + [aux_sym_insert_token1] = ACTIONS(655), + [aux_sym_delete_token1] = ACTIONS(657), + [aux_sym_highlight_token1] = ACTIONS(659), + [aux_sym_edit_comment_token1] = ACTIONS(661), + [anon_sym_CARET_LBRACK] = ACTIONS(663), + [anon_sym_LBRACK_CARET] = ACTIONS(665), + [sym_uri_autolink] = ACTIONS(639), + [sym_email_autolink] = ACTIONS(639), + [sym__whitespace_ge_2] = ACTIONS(667), + [aux_sym__whitespace_token1] = ACTIONS(669), + [sym__word_no_digit] = ACTIONS(671), + [sym__digits] = ACTIONS(671), + [anon_sym_DASH_DASH] = ACTIONS(673), + [anon_sym_DASH_DASH_DASH] = ACTIONS(671), + [anon_sym_DOT_DOT_DOT] = ACTIONS(671), + [sym__code_span_start] = ACTIONS(675), + [sym__emphasis_open_star] = ACTIONS(677), + [sym__emphasis_open_underscore] = ACTIONS(679), + [sym__strikeout_open] = ACTIONS(681), + [sym__latex_span_start] = ACTIONS(683), + [sym__single_quote_open] = ACTIONS(685), + [sym__double_quote_open] = ACTIONS(687), + [sym__double_quote_close] = ACTIONS(2375), + [sym__superscript_open] = ACTIONS(691), + [sym__subscript_open] = ACTIONS(693), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(695), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(697), + [sym__cite_author_in_text] = ACTIONS(699), + [sym__cite_suppress_author] = ACTIONS(701), + [sym__shortcode_open_escaped] = ACTIONS(703), + [sym__shortcode_open] = ACTIONS(705), + [sym__unclosed_span] = ACTIONS(639), }, - [STATE(83)] = { - [sym_backslash_escape] = STATE(270), - [sym_commonmark_attribute] = STATE(270), - [sym_code_span] = STATE(270), - [sym_latex_span] = STATE(270), - [sym_superscript] = STATE(270), - [sym_subscript] = STATE(270), - [sym_strikeout] = STATE(270), - [sym_quoted_span] = STATE(270), - [sym_inline_note] = STATE(270), - [sym_citation] = STATE(270), - [sym_shortcode_escaped] = STATE(270), - [sym_shortcode] = STATE(270), - [sym_note_reference] = STATE(270), - [sym__link_text] = STATE(359), - [sym__link_text_non_empty] = STATE(364), + [STATE(77)] = { + [sym_backslash_escape] = STATE(365), + [sym_commonmark_attribute] = STATE(365), + [sym_code_span] = STATE(365), + [sym_latex_span] = STATE(365), + [sym_insert] = STATE(365), + [sym_delete] = STATE(365), + [sym_highlight] = STATE(365), + [sym_edit_comment] = STATE(365), + [sym_superscript] = STATE(365), + [sym_subscript] = STATE(365), + [sym_strikeout] = STATE(365), + [sym_quoted_span] = STATE(365), + [sym_inline_note] = STATE(365), + [sym_citation] = STATE(365), + [sym_shortcode_escaped] = STATE(365), + [sym_shortcode] = STATE(365), + [sym_note_reference] = STATE(365), + [sym__link_text] = STATE(416), + [sym__link_text_non_empty] = STATE(417), [sym_inline_link] = STATE(52), - [sym_image] = STATE(270), - [sym__image_inline_link] = STATE(795), - [sym__image_description] = STATE(1984), - [sym__image_description_non_empty] = STATE(1984), - [sym_hard_line_break] = STATE(270), - [sym__whitespace] = STATE(792), - [sym__word] = STATE(792), - [sym__soft_line_break] = STATE(796), + [sym_image] = STATE(365), + [sym__image_inline_link] = STATE(712), + [sym__image_description] = STATE(2314), + [sym__image_description_non_empty] = STATE(2314), + [sym_hard_line_break] = STATE(365), + [sym__whitespace] = STATE(709), + [sym__word] = STATE(709), + [sym__soft_line_break] = STATE(713), [sym__inline_base] = STATE(52), - [sym__text_base] = STATE(270), + [sym__text_base] = STATE(365), [sym__inline_element] = STATE(52), - [sym__emphasis_star] = STATE(615), + [sym__emphasis_star] = STATE(979), [sym__strong_emphasis_star] = STATE(52), - [sym__emphasis_underscore] = STATE(615), + [sym__emphasis_underscore] = STATE(979), [sym__strong_emphasis_underscore] = STATE(52), - [aux_sym_superscript_repeat1] = STATE(52), - [aux_sym__inline_base_repeat1] = STATE(270), - [sym__backslash_escape] = ACTIONS(809), - [sym_entity_reference] = ACTIONS(811), - [sym_numeric_character_reference] = ACTIONS(811), - [anon_sym_LT] = ACTIONS(813), - [anon_sym_GT] = ACTIONS(815), - [anon_sym_BANG] = ACTIONS(817), - [anon_sym_DQUOTE] = ACTIONS(815), - [anon_sym_POUND] = ACTIONS(815), - [anon_sym_DOLLAR] = ACTIONS(815), - [anon_sym_PERCENT] = ACTIONS(815), - [anon_sym_AMP] = ACTIONS(813), - [anon_sym_SQUOTE] = ACTIONS(815), - [anon_sym_STAR] = ACTIONS(815), - [anon_sym_PLUS] = ACTIONS(815), - [anon_sym_COMMA] = ACTIONS(815), - [anon_sym_DASH] = ACTIONS(813), - [anon_sym_DOT] = ACTIONS(813), - [anon_sym_SLASH] = ACTIONS(815), - [anon_sym_COLON] = ACTIONS(815), - [anon_sym_SEMI] = ACTIONS(815), - [anon_sym_EQ] = ACTIONS(815), - [anon_sym_QMARK] = ACTIONS(815), - [anon_sym_LBRACK] = ACTIONS(819), - [anon_sym_BSLASH] = ACTIONS(821), - [anon_sym_CARET] = ACTIONS(813), - [anon_sym__] = ACTIONS(815), - [anon_sym_BQUOTE] = ACTIONS(815), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_PIPE] = ACTIONS(815), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_RPAREN] = ACTIONS(815), - [sym__newline_token] = ACTIONS(825), - [anon_sym_CARET_LBRACK] = ACTIONS(827), - [anon_sym_LBRACK_CARET] = ACTIONS(829), - [sym_uri_autolink] = ACTIONS(811), - [sym_email_autolink] = ACTIONS(811), - [sym__whitespace_ge_2] = ACTIONS(831), - [aux_sym__whitespace_token1] = ACTIONS(833), - [sym__word_no_digit] = ACTIONS(835), - [sym__digits] = ACTIONS(835), - [anon_sym_DASH_DASH] = ACTIONS(837), - [anon_sym_DASH_DASH_DASH] = ACTIONS(835), - [anon_sym_DOT_DOT_DOT] = ACTIONS(835), - [sym__code_span_start] = ACTIONS(839), - [sym__emphasis_open_star] = ACTIONS(841), - [sym__emphasis_open_underscore] = ACTIONS(843), - [sym__strikeout_open] = ACTIONS(845), - [sym__latex_span_start] = ACTIONS(847), - [sym__single_quote_open] = ACTIONS(849), - [sym__double_quote_open] = ACTIONS(851), - [sym__superscript_open] = ACTIONS(853), - [sym__subscript_open] = ACTIONS(855), - [sym__subscript_close] = ACTIONS(1969), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(859), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(861), - [sym__cite_author_in_text] = ACTIONS(863), - [sym__cite_suppress_author] = ACTIONS(865), - [sym__shortcode_open_escaped] = ACTIONS(867), - [sym__shortcode_open] = ACTIONS(869), - [sym__unclosed_span] = ACTIONS(811), + [aux_sym_insert_repeat1] = STATE(52), + [aux_sym__inline_base_repeat1] = STATE(365), + [sym__backslash_escape] = ACTIONS(1341), + [sym_entity_reference] = ACTIONS(1343), + [sym_numeric_character_reference] = ACTIONS(1343), + [anon_sym_LT] = ACTIONS(1345), + [anon_sym_GT] = ACTIONS(1347), + [anon_sym_BANG] = ACTIONS(1349), + [anon_sym_DQUOTE] = ACTIONS(1347), + [anon_sym_POUND] = ACTIONS(1347), + [anon_sym_DOLLAR] = ACTIONS(1347), + [anon_sym_PERCENT] = ACTIONS(1347), + [anon_sym_AMP] = ACTIONS(1345), + [anon_sym_SQUOTE] = ACTIONS(1347), + [anon_sym_STAR] = ACTIONS(1347), + [anon_sym_PLUS] = ACTIONS(1347), + [anon_sym_COMMA] = ACTIONS(1347), + [anon_sym_DASH] = ACTIONS(1345), + [anon_sym_DOT] = ACTIONS(1345), + [anon_sym_SLASH] = ACTIONS(1347), + [anon_sym_COLON] = ACTIONS(1347), + [anon_sym_SEMI] = ACTIONS(1347), + [anon_sym_EQ] = ACTIONS(1347), + [anon_sym_QMARK] = ACTIONS(1347), + [anon_sym_LBRACK] = ACTIONS(1351), + [anon_sym_BSLASH] = ACTIONS(1353), + [anon_sym_CARET] = ACTIONS(1345), + [anon_sym__] = ACTIONS(1347), + [anon_sym_BQUOTE] = ACTIONS(1347), + [anon_sym_LBRACE] = ACTIONS(1355), + [anon_sym_PIPE] = ACTIONS(1347), + [anon_sym_TILDE] = ACTIONS(1347), + [anon_sym_LPAREN] = ACTIONS(1347), + [anon_sym_RPAREN] = ACTIONS(1347), + [sym__newline_token] = ACTIONS(1357), + [aux_sym_insert_token1] = ACTIONS(1359), + [aux_sym_delete_token1] = ACTIONS(1361), + [aux_sym_highlight_token1] = ACTIONS(1363), + [aux_sym_edit_comment_token1] = ACTIONS(1365), + [anon_sym_CARET_LBRACK] = ACTIONS(1367), + [anon_sym_LBRACK_CARET] = ACTIONS(1369), + [sym_uri_autolink] = ACTIONS(1343), + [sym_email_autolink] = ACTIONS(1343), + [sym__whitespace_ge_2] = ACTIONS(1371), + [aux_sym__whitespace_token1] = ACTIONS(1373), + [sym__word_no_digit] = ACTIONS(1375), + [sym__digits] = ACTIONS(1375), + [anon_sym_DASH_DASH] = ACTIONS(1377), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1375), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1375), + [sym__code_span_start] = ACTIONS(1379), + [sym__emphasis_open_star] = ACTIONS(1381), + [sym__emphasis_open_underscore] = ACTIONS(1383), + [sym__strikeout_open] = ACTIONS(1385), + [sym__latex_span_start] = ACTIONS(1387), + [sym__single_quote_open] = ACTIONS(1389), + [sym__double_quote_open] = ACTIONS(1391), + [sym__superscript_open] = ACTIONS(1393), + [sym__superscript_close] = ACTIONS(2377), + [sym__subscript_open] = ACTIONS(1397), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1399), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1401), + [sym__cite_author_in_text] = ACTIONS(1403), + [sym__cite_suppress_author] = ACTIONS(1405), + [sym__shortcode_open_escaped] = ACTIONS(1407), + [sym__shortcode_open] = ACTIONS(1409), + [sym__unclosed_span] = ACTIONS(1343), + }, + [STATE(78)] = { + [sym_backslash_escape] = STATE(367), + [sym_commonmark_attribute] = STATE(367), + [sym_code_span] = STATE(367), + [sym_latex_span] = STATE(367), + [sym_insert] = STATE(367), + [sym_delete] = STATE(367), + [sym_highlight] = STATE(367), + [sym_edit_comment] = STATE(367), + [sym_superscript] = STATE(367), + [sym_subscript] = STATE(367), + [sym_strikeout] = STATE(367), + [sym_quoted_span] = STATE(367), + [sym_inline_note] = STATE(367), + [sym_citation] = STATE(367), + [sym_shortcode_escaped] = STATE(367), + [sym_shortcode] = STATE(367), + [sym_note_reference] = STATE(367), + [sym__link_text] = STATE(435), + [sym__link_text_non_empty] = STATE(436), + [sym_inline_link] = STATE(55), + [sym_image] = STATE(367), + [sym__image_inline_link] = STATE(819), + [sym__image_description] = STATE(2328), + [sym__image_description_non_empty] = STATE(2328), + [sym_hard_line_break] = STATE(367), + [sym__whitespace] = STATE(816), + [sym__word] = STATE(816), + [sym__soft_line_break] = STATE(820), + [sym__inline_base] = STATE(55), + [sym__text_base] = STATE(367), + [sym__inline_element] = STATE(55), + [sym__emphasis_star] = STATE(1271), + [sym__strong_emphasis_star] = STATE(55), + [sym__emphasis_underscore] = STATE(1271), + [sym__strong_emphasis_underscore] = STATE(55), + [aux_sym_insert_repeat1] = STATE(55), + [aux_sym__inline_base_repeat1] = STATE(367), + [sym__backslash_escape] = ACTIONS(1413), + [sym_entity_reference] = ACTIONS(1415), + [sym_numeric_character_reference] = ACTIONS(1415), + [anon_sym_LT] = ACTIONS(1417), + [anon_sym_GT] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1419), + [anon_sym_POUND] = ACTIONS(1419), + [anon_sym_DOLLAR] = ACTIONS(1419), + [anon_sym_PERCENT] = ACTIONS(1419), + [anon_sym_AMP] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [anon_sym_STAR] = ACTIONS(1419), + [anon_sym_PLUS] = ACTIONS(1419), + [anon_sym_COMMA] = ACTIONS(1419), + [anon_sym_DASH] = ACTIONS(1417), + [anon_sym_DOT] = ACTIONS(1417), + [anon_sym_SLASH] = ACTIONS(1419), + [anon_sym_COLON] = ACTIONS(1419), + [anon_sym_SEMI] = ACTIONS(1419), + [anon_sym_EQ] = ACTIONS(1419), + [anon_sym_QMARK] = ACTIONS(1419), + [anon_sym_LBRACK] = ACTIONS(1423), + [anon_sym_BSLASH] = ACTIONS(1425), + [anon_sym_CARET] = ACTIONS(1417), + [anon_sym__] = ACTIONS(1419), + [anon_sym_BQUOTE] = ACTIONS(1419), + [anon_sym_LBRACE] = ACTIONS(1427), + [anon_sym_PIPE] = ACTIONS(1419), + [anon_sym_TILDE] = ACTIONS(1419), + [anon_sym_LPAREN] = ACTIONS(1419), + [anon_sym_RPAREN] = ACTIONS(1419), + [sym__newline_token] = ACTIONS(1429), + [aux_sym_insert_token1] = ACTIONS(1431), + [aux_sym_delete_token1] = ACTIONS(1433), + [aux_sym_highlight_token1] = ACTIONS(1435), + [aux_sym_edit_comment_token1] = ACTIONS(1437), + [anon_sym_CARET_LBRACK] = ACTIONS(1439), + [anon_sym_LBRACK_CARET] = ACTIONS(1441), + [sym_uri_autolink] = ACTIONS(1415), + [sym_email_autolink] = ACTIONS(1415), + [sym__whitespace_ge_2] = ACTIONS(1443), + [aux_sym__whitespace_token1] = ACTIONS(1445), + [sym__word_no_digit] = ACTIONS(1447), + [sym__digits] = ACTIONS(1447), + [anon_sym_DASH_DASH] = ACTIONS(1449), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1447), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1447), + [sym__code_span_start] = ACTIONS(1451), + [sym__emphasis_open_star] = ACTIONS(1453), + [sym__emphasis_open_underscore] = ACTIONS(1455), + [sym__strikeout_open] = ACTIONS(1457), + [sym__latex_span_start] = ACTIONS(1459), + [sym__single_quote_open] = ACTIONS(1461), + [sym__double_quote_open] = ACTIONS(1463), + [sym__superscript_open] = ACTIONS(1465), + [sym__subscript_open] = ACTIONS(1467), + [sym__subscript_close] = ACTIONS(2379), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1471), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1473), + [sym__cite_author_in_text] = ACTIONS(1475), + [sym__cite_suppress_author] = ACTIONS(1477), + [sym__shortcode_open_escaped] = ACTIONS(1479), + [sym__shortcode_open] = ACTIONS(1481), + [sym__unclosed_span] = ACTIONS(1415), + }, + [STATE(79)] = { + [sym_backslash_escape] = STATE(372), + [sym_commonmark_attribute] = STATE(372), + [sym_code_span] = STATE(372), + [sym_latex_span] = STATE(372), + [sym_insert] = STATE(372), + [sym_delete] = STATE(372), + [sym_highlight] = STATE(372), + [sym_edit_comment] = STATE(372), + [sym_superscript] = STATE(372), + [sym_subscript] = STATE(372), + [sym_strikeout] = STATE(372), + [sym_quoted_span] = STATE(372), + [sym_inline_note] = STATE(372), + [sym_citation] = STATE(372), + [sym_shortcode_escaped] = STATE(372), + [sym_shortcode] = STATE(372), + [sym_note_reference] = STATE(372), + [sym__link_text] = STATE(454), + [sym__link_text_non_empty] = STATE(455), + [sym_inline_link] = STATE(57), + [sym_image] = STATE(372), + [sym__image_inline_link] = STATE(1025), + [sym__image_description] = STATE(2356), + [sym__image_description_non_empty] = STATE(2356), + [sym_hard_line_break] = STATE(372), + [sym__whitespace] = STATE(1022), + [sym__word] = STATE(1022), + [sym__soft_line_break] = STATE(1026), + [sym__inline_base] = STATE(57), + [sym__text_base] = STATE(372), + [sym__inline_element] = STATE(57), + [sym__emphasis_star] = STATE(714), + [sym__strong_emphasis_star] = STATE(57), + [sym__emphasis_underscore] = STATE(714), + [sym__strong_emphasis_underscore] = STATE(57), + [aux_sym_insert_repeat1] = STATE(57), + [aux_sym__inline_base_repeat1] = STATE(372), + [sym__backslash_escape] = ACTIONS(707), + [sym_entity_reference] = ACTIONS(709), + [sym_numeric_character_reference] = ACTIONS(709), + [anon_sym_LT] = ACTIONS(711), + [anon_sym_GT] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(715), + [anon_sym_DQUOTE] = ACTIONS(713), + [anon_sym_POUND] = ACTIONS(713), + [anon_sym_DOLLAR] = ACTIONS(713), + [anon_sym_PERCENT] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(711), + [anon_sym_SQUOTE] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_COMMA] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_DOT] = ACTIONS(711), + [anon_sym_SLASH] = ACTIONS(713), + [anon_sym_COLON] = ACTIONS(713), + [anon_sym_SEMI] = ACTIONS(713), + [anon_sym_EQ] = ACTIONS(713), + [anon_sym_QMARK] = ACTIONS(713), + [anon_sym_LBRACK] = ACTIONS(717), + [anon_sym_BSLASH] = ACTIONS(719), + [anon_sym_CARET] = ACTIONS(711), + [anon_sym__] = ACTIONS(713), + [anon_sym_BQUOTE] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(721), + [anon_sym_PIPE] = ACTIONS(713), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_LPAREN] = ACTIONS(713), + [anon_sym_RPAREN] = ACTIONS(713), + [sym__newline_token] = ACTIONS(723), + [aux_sym_insert_token1] = ACTIONS(725), + [aux_sym_insert_token2] = ACTIONS(2381), + [aux_sym_delete_token1] = ACTIONS(729), + [aux_sym_highlight_token1] = ACTIONS(731), + [aux_sym_edit_comment_token1] = ACTIONS(733), + [anon_sym_CARET_LBRACK] = ACTIONS(735), + [anon_sym_LBRACK_CARET] = ACTIONS(737), + [sym_uri_autolink] = ACTIONS(709), + [sym_email_autolink] = ACTIONS(709), + [sym__whitespace_ge_2] = ACTIONS(739), + [aux_sym__whitespace_token1] = ACTIONS(741), + [sym__word_no_digit] = ACTIONS(743), + [sym__digits] = ACTIONS(743), + [anon_sym_DASH_DASH] = ACTIONS(745), + [anon_sym_DASH_DASH_DASH] = ACTIONS(743), + [anon_sym_DOT_DOT_DOT] = ACTIONS(743), + [sym__code_span_start] = ACTIONS(747), + [sym__emphasis_open_star] = ACTIONS(749), + [sym__emphasis_open_underscore] = ACTIONS(751), + [sym__strikeout_open] = ACTIONS(753), + [sym__latex_span_start] = ACTIONS(755), + [sym__single_quote_open] = ACTIONS(757), + [sym__double_quote_open] = ACTIONS(759), + [sym__superscript_open] = ACTIONS(761), + [sym__subscript_open] = ACTIONS(763), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(765), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(767), + [sym__cite_author_in_text] = ACTIONS(769), + [sym__cite_suppress_author] = ACTIONS(771), + [sym__shortcode_open_escaped] = ACTIONS(773), + [sym__shortcode_open] = ACTIONS(775), + [sym__unclosed_span] = ACTIONS(709), + }, + [STATE(80)] = { + [sym_backslash_escape] = STATE(372), + [sym_commonmark_attribute] = STATE(372), + [sym_code_span] = STATE(372), + [sym_latex_span] = STATE(372), + [sym_insert] = STATE(372), + [sym_delete] = STATE(372), + [sym_highlight] = STATE(372), + [sym_edit_comment] = STATE(372), + [sym_superscript] = STATE(372), + [sym_subscript] = STATE(372), + [sym_strikeout] = STATE(372), + [sym_quoted_span] = STATE(372), + [sym_inline_note] = STATE(372), + [sym_citation] = STATE(372), + [sym_shortcode_escaped] = STATE(372), + [sym_shortcode] = STATE(372), + [sym_note_reference] = STATE(372), + [sym__link_text] = STATE(454), + [sym__link_text_non_empty] = STATE(455), + [sym_inline_link] = STATE(57), + [sym_image] = STATE(372), + [sym__image_inline_link] = STATE(1025), + [sym__image_description] = STATE(2356), + [sym__image_description_non_empty] = STATE(2356), + [sym_hard_line_break] = STATE(372), + [sym__whitespace] = STATE(1022), + [sym__word] = STATE(1022), + [sym__soft_line_break] = STATE(1026), + [sym__inline_base] = STATE(57), + [sym__text_base] = STATE(372), + [sym__inline_element] = STATE(57), + [sym__emphasis_star] = STATE(714), + [sym__strong_emphasis_star] = STATE(57), + [sym__emphasis_underscore] = STATE(714), + [sym__strong_emphasis_underscore] = STATE(57), + [aux_sym_insert_repeat1] = STATE(57), + [aux_sym__inline_base_repeat1] = STATE(372), + [sym__backslash_escape] = ACTIONS(707), + [sym_entity_reference] = ACTIONS(709), + [sym_numeric_character_reference] = ACTIONS(709), + [anon_sym_LT] = ACTIONS(711), + [anon_sym_GT] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(715), + [anon_sym_DQUOTE] = ACTIONS(713), + [anon_sym_POUND] = ACTIONS(713), + [anon_sym_DOLLAR] = ACTIONS(713), + [anon_sym_PERCENT] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(711), + [anon_sym_SQUOTE] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_COMMA] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_DOT] = ACTIONS(711), + [anon_sym_SLASH] = ACTIONS(713), + [anon_sym_COLON] = ACTIONS(713), + [anon_sym_SEMI] = ACTIONS(713), + [anon_sym_EQ] = ACTIONS(713), + [anon_sym_QMARK] = ACTIONS(713), + [anon_sym_LBRACK] = ACTIONS(717), + [anon_sym_BSLASH] = ACTIONS(719), + [anon_sym_CARET] = ACTIONS(711), + [anon_sym__] = ACTIONS(713), + [anon_sym_BQUOTE] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(721), + [anon_sym_PIPE] = ACTIONS(713), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_LPAREN] = ACTIONS(713), + [anon_sym_RPAREN] = ACTIONS(713), + [sym__newline_token] = ACTIONS(723), + [aux_sym_insert_token1] = ACTIONS(725), + [aux_sym_insert_token2] = ACTIONS(2383), + [aux_sym_delete_token1] = ACTIONS(729), + [aux_sym_highlight_token1] = ACTIONS(731), + [aux_sym_edit_comment_token1] = ACTIONS(733), + [anon_sym_CARET_LBRACK] = ACTIONS(735), + [anon_sym_LBRACK_CARET] = ACTIONS(737), + [sym_uri_autolink] = ACTIONS(709), + [sym_email_autolink] = ACTIONS(709), + [sym__whitespace_ge_2] = ACTIONS(739), + [aux_sym__whitespace_token1] = ACTIONS(741), + [sym__word_no_digit] = ACTIONS(743), + [sym__digits] = ACTIONS(743), + [anon_sym_DASH_DASH] = ACTIONS(745), + [anon_sym_DASH_DASH_DASH] = ACTIONS(743), + [anon_sym_DOT_DOT_DOT] = ACTIONS(743), + [sym__code_span_start] = ACTIONS(747), + [sym__emphasis_open_star] = ACTIONS(749), + [sym__emphasis_open_underscore] = ACTIONS(751), + [sym__strikeout_open] = ACTIONS(753), + [sym__latex_span_start] = ACTIONS(755), + [sym__single_quote_open] = ACTIONS(757), + [sym__double_quote_open] = ACTIONS(759), + [sym__superscript_open] = ACTIONS(761), + [sym__subscript_open] = ACTIONS(763), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(765), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(767), + [sym__cite_author_in_text] = ACTIONS(769), + [sym__cite_suppress_author] = ACTIONS(771), + [sym__shortcode_open_escaped] = ACTIONS(773), + [sym__shortcode_open] = ACTIONS(775), + [sym__unclosed_span] = ACTIONS(709), + }, + [STATE(81)] = { + [sym_backslash_escape] = STATE(372), + [sym_commonmark_attribute] = STATE(372), + [sym_code_span] = STATE(372), + [sym_latex_span] = STATE(372), + [sym_insert] = STATE(372), + [sym_delete] = STATE(372), + [sym_highlight] = STATE(372), + [sym_edit_comment] = STATE(372), + [sym_superscript] = STATE(372), + [sym_subscript] = STATE(372), + [sym_strikeout] = STATE(372), + [sym_quoted_span] = STATE(372), + [sym_inline_note] = STATE(372), + [sym_citation] = STATE(372), + [sym_shortcode_escaped] = STATE(372), + [sym_shortcode] = STATE(372), + [sym_note_reference] = STATE(372), + [sym__link_text] = STATE(454), + [sym__link_text_non_empty] = STATE(455), + [sym_inline_link] = STATE(57), + [sym_image] = STATE(372), + [sym__image_inline_link] = STATE(1025), + [sym__image_description] = STATE(2356), + [sym__image_description_non_empty] = STATE(2356), + [sym_hard_line_break] = STATE(372), + [sym__whitespace] = STATE(1022), + [sym__word] = STATE(1022), + [sym__soft_line_break] = STATE(1026), + [sym__inline_base] = STATE(57), + [sym__text_base] = STATE(372), + [sym__inline_element] = STATE(57), + [sym__emphasis_star] = STATE(714), + [sym__strong_emphasis_star] = STATE(57), + [sym__emphasis_underscore] = STATE(714), + [sym__strong_emphasis_underscore] = STATE(57), + [aux_sym_insert_repeat1] = STATE(57), + [aux_sym__inline_base_repeat1] = STATE(372), + [sym__backslash_escape] = ACTIONS(707), + [sym_entity_reference] = ACTIONS(709), + [sym_numeric_character_reference] = ACTIONS(709), + [anon_sym_LT] = ACTIONS(711), + [anon_sym_GT] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(715), + [anon_sym_DQUOTE] = ACTIONS(713), + [anon_sym_POUND] = ACTIONS(713), + [anon_sym_DOLLAR] = ACTIONS(713), + [anon_sym_PERCENT] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(711), + [anon_sym_SQUOTE] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_COMMA] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_DOT] = ACTIONS(711), + [anon_sym_SLASH] = ACTIONS(713), + [anon_sym_COLON] = ACTIONS(713), + [anon_sym_SEMI] = ACTIONS(713), + [anon_sym_EQ] = ACTIONS(713), + [anon_sym_QMARK] = ACTIONS(713), + [anon_sym_LBRACK] = ACTIONS(717), + [anon_sym_BSLASH] = ACTIONS(719), + [anon_sym_CARET] = ACTIONS(711), + [anon_sym__] = ACTIONS(713), + [anon_sym_BQUOTE] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(721), + [anon_sym_PIPE] = ACTIONS(713), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_LPAREN] = ACTIONS(713), + [anon_sym_RPAREN] = ACTIONS(713), + [sym__newline_token] = ACTIONS(723), + [aux_sym_insert_token1] = ACTIONS(725), + [aux_sym_insert_token2] = ACTIONS(2385), + [aux_sym_delete_token1] = ACTIONS(729), + [aux_sym_highlight_token1] = ACTIONS(731), + [aux_sym_edit_comment_token1] = ACTIONS(733), + [anon_sym_CARET_LBRACK] = ACTIONS(735), + [anon_sym_LBRACK_CARET] = ACTIONS(737), + [sym_uri_autolink] = ACTIONS(709), + [sym_email_autolink] = ACTIONS(709), + [sym__whitespace_ge_2] = ACTIONS(739), + [aux_sym__whitespace_token1] = ACTIONS(741), + [sym__word_no_digit] = ACTIONS(743), + [sym__digits] = ACTIONS(743), + [anon_sym_DASH_DASH] = ACTIONS(745), + [anon_sym_DASH_DASH_DASH] = ACTIONS(743), + [anon_sym_DOT_DOT_DOT] = ACTIONS(743), + [sym__code_span_start] = ACTIONS(747), + [sym__emphasis_open_star] = ACTIONS(749), + [sym__emphasis_open_underscore] = ACTIONS(751), + [sym__strikeout_open] = ACTIONS(753), + [sym__latex_span_start] = ACTIONS(755), + [sym__single_quote_open] = ACTIONS(757), + [sym__double_quote_open] = ACTIONS(759), + [sym__superscript_open] = ACTIONS(761), + [sym__subscript_open] = ACTIONS(763), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(765), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(767), + [sym__cite_author_in_text] = ACTIONS(769), + [sym__cite_suppress_author] = ACTIONS(771), + [sym__shortcode_open_escaped] = ACTIONS(773), + [sym__shortcode_open] = ACTIONS(775), + [sym__unclosed_span] = ACTIONS(709), + }, + [STATE(82)] = { + [sym_backslash_escape] = STATE(372), + [sym_commonmark_attribute] = STATE(372), + [sym_code_span] = STATE(372), + [sym_latex_span] = STATE(372), + [sym_insert] = STATE(372), + [sym_delete] = STATE(372), + [sym_highlight] = STATE(372), + [sym_edit_comment] = STATE(372), + [sym_superscript] = STATE(372), + [sym_subscript] = STATE(372), + [sym_strikeout] = STATE(372), + [sym_quoted_span] = STATE(372), + [sym_inline_note] = STATE(372), + [sym_citation] = STATE(372), + [sym_shortcode_escaped] = STATE(372), + [sym_shortcode] = STATE(372), + [sym_note_reference] = STATE(372), + [sym__link_text] = STATE(454), + [sym__link_text_non_empty] = STATE(455), + [sym_inline_link] = STATE(57), + [sym_image] = STATE(372), + [sym__image_inline_link] = STATE(1025), + [sym__image_description] = STATE(2356), + [sym__image_description_non_empty] = STATE(2356), + [sym_hard_line_break] = STATE(372), + [sym__whitespace] = STATE(1022), + [sym__word] = STATE(1022), + [sym__soft_line_break] = STATE(1026), + [sym__inline_base] = STATE(57), + [sym__text_base] = STATE(372), + [sym__inline_element] = STATE(57), + [sym__emphasis_star] = STATE(714), + [sym__strong_emphasis_star] = STATE(57), + [sym__emphasis_underscore] = STATE(714), + [sym__strong_emphasis_underscore] = STATE(57), + [aux_sym_insert_repeat1] = STATE(57), + [aux_sym__inline_base_repeat1] = STATE(372), + [sym__backslash_escape] = ACTIONS(707), + [sym_entity_reference] = ACTIONS(709), + [sym_numeric_character_reference] = ACTIONS(709), + [anon_sym_LT] = ACTIONS(711), + [anon_sym_GT] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(715), + [anon_sym_DQUOTE] = ACTIONS(713), + [anon_sym_POUND] = ACTIONS(713), + [anon_sym_DOLLAR] = ACTIONS(713), + [anon_sym_PERCENT] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(711), + [anon_sym_SQUOTE] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_COMMA] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_DOT] = ACTIONS(711), + [anon_sym_SLASH] = ACTIONS(713), + [anon_sym_COLON] = ACTIONS(713), + [anon_sym_SEMI] = ACTIONS(713), + [anon_sym_EQ] = ACTIONS(713), + [anon_sym_QMARK] = ACTIONS(713), + [anon_sym_LBRACK] = ACTIONS(717), + [anon_sym_BSLASH] = ACTIONS(719), + [anon_sym_CARET] = ACTIONS(711), + [anon_sym__] = ACTIONS(713), + [anon_sym_BQUOTE] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(721), + [anon_sym_PIPE] = ACTIONS(713), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_LPAREN] = ACTIONS(713), + [anon_sym_RPAREN] = ACTIONS(713), + [sym__newline_token] = ACTIONS(723), + [aux_sym_insert_token1] = ACTIONS(725), + [aux_sym_insert_token2] = ACTIONS(2387), + [aux_sym_delete_token1] = ACTIONS(729), + [aux_sym_highlight_token1] = ACTIONS(731), + [aux_sym_edit_comment_token1] = ACTIONS(733), + [anon_sym_CARET_LBRACK] = ACTIONS(735), + [anon_sym_LBRACK_CARET] = ACTIONS(737), + [sym_uri_autolink] = ACTIONS(709), + [sym_email_autolink] = ACTIONS(709), + [sym__whitespace_ge_2] = ACTIONS(739), + [aux_sym__whitespace_token1] = ACTIONS(741), + [sym__word_no_digit] = ACTIONS(743), + [sym__digits] = ACTIONS(743), + [anon_sym_DASH_DASH] = ACTIONS(745), + [anon_sym_DASH_DASH_DASH] = ACTIONS(743), + [anon_sym_DOT_DOT_DOT] = ACTIONS(743), + [sym__code_span_start] = ACTIONS(747), + [sym__emphasis_open_star] = ACTIONS(749), + [sym__emphasis_open_underscore] = ACTIONS(751), + [sym__strikeout_open] = ACTIONS(753), + [sym__latex_span_start] = ACTIONS(755), + [sym__single_quote_open] = ACTIONS(757), + [sym__double_quote_open] = ACTIONS(759), + [sym__superscript_open] = ACTIONS(761), + [sym__subscript_open] = ACTIONS(763), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(765), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(767), + [sym__cite_author_in_text] = ACTIONS(769), + [sym__cite_suppress_author] = ACTIONS(771), + [sym__shortcode_open_escaped] = ACTIONS(773), + [sym__shortcode_open] = ACTIONS(775), + [sym__unclosed_span] = ACTIONS(709), + }, + [STATE(83)] = { + [sym_backslash_escape] = STATE(370), + [sym_commonmark_attribute] = STATE(370), + [sym_code_span] = STATE(370), + [sym_latex_span] = STATE(370), + [sym_insert] = STATE(370), + [sym_delete] = STATE(370), + [sym_highlight] = STATE(370), + [sym_edit_comment] = STATE(370), + [sym_superscript] = STATE(370), + [sym_subscript] = STATE(370), + [sym_strikeout] = STATE(370), + [sym_quoted_span] = STATE(370), + [sym_inline_note] = STATE(370), + [sym_citation] = STATE(370), + [sym_shortcode_escaped] = STATE(370), + [sym_shortcode] = STATE(370), + [sym_note_reference] = STATE(370), + [sym__link_text] = STATE(472), + [sym__link_text_non_empty] = STATE(473), + [sym_inline_link] = STATE(87), + [sym_image] = STATE(370), + [sym__image_inline_link] = STATE(923), + [sym__image_description] = STATE(2342), + [sym__image_description_non_empty] = STATE(2342), + [sym_hard_line_break] = STATE(370), + [sym__whitespace] = STATE(920), + [sym__word] = STATE(920), + [sym__soft_line_break] = STATE(924), + [sym__inline_base] = STATE(87), + [sym__text_base] = STATE(370), + [sym__inline_element] = STATE(87), + [sym__emphasis_star] = STATE(821), + [sym__strong_emphasis_star] = STATE(87), + [sym__emphasis_underscore] = STATE(821), + [sym__strong_emphasis_underscore] = STATE(87), + [aux_sym_insert_repeat1] = STATE(87), + [aux_sym__inline_base_repeat1] = STATE(370), + [sym__backslash_escape] = ACTIONS(73), + [sym_entity_reference] = ACTIONS(75), + [sym_numeric_character_reference] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_BANG] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_POUND] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(79), + [anon_sym_PERCENT] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_STAR] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_COMMA] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_DOT] = ACTIONS(77), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_COLON] = ACTIONS(79), + [anon_sym_SEMI] = ACTIONS(79), + [anon_sym_EQ] = ACTIONS(79), + [anon_sym_QMARK] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(83), + [anon_sym_BSLASH] = ACTIONS(85), + [anon_sym_RBRACK] = ACTIONS(2389), + [anon_sym_CARET] = ACTIONS(77), + [anon_sym__] = ACTIONS(79), + [anon_sym_BQUOTE] = ACTIONS(79), + [anon_sym_LBRACE] = ACTIONS(89), + [anon_sym_PIPE] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(79), + [anon_sym_RPAREN] = ACTIONS(79), + [sym__newline_token] = ACTIONS(91), + [aux_sym_insert_token1] = ACTIONS(93), + [aux_sym_delete_token1] = ACTIONS(95), + [aux_sym_highlight_token1] = ACTIONS(97), + [aux_sym_edit_comment_token1] = ACTIONS(99), + [anon_sym_CARET_LBRACK] = ACTIONS(101), + [anon_sym_LBRACK_CARET] = ACTIONS(103), + [sym_uri_autolink] = ACTIONS(75), + [sym_email_autolink] = ACTIONS(75), + [sym__whitespace_ge_2] = ACTIONS(105), + [aux_sym__whitespace_token1] = ACTIONS(107), + [sym__word_no_digit] = ACTIONS(109), + [sym__digits] = ACTIONS(109), + [anon_sym_DASH_DASH] = ACTIONS(111), + [anon_sym_DASH_DASH_DASH] = ACTIONS(109), + [anon_sym_DOT_DOT_DOT] = ACTIONS(109), + [sym__code_span_start] = ACTIONS(113), + [sym__emphasis_open_star] = ACTIONS(115), + [sym__emphasis_open_underscore] = ACTIONS(117), + [sym__strikeout_open] = ACTIONS(121), + [sym__latex_span_start] = ACTIONS(123), + [sym__single_quote_open] = ACTIONS(125), + [sym__double_quote_open] = ACTIONS(127), + [sym__superscript_open] = ACTIONS(129), + [sym__subscript_open] = ACTIONS(131), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(133), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(135), + [sym__cite_author_in_text] = ACTIONS(137), + [sym__cite_suppress_author] = ACTIONS(139), + [sym__shortcode_open_escaped] = ACTIONS(141), + [sym__shortcode_open] = ACTIONS(143), + [sym__unclosed_span] = ACTIONS(75), }, [STATE(84)] = { - [sym_backslash_escape] = STATE(271), - [sym_commonmark_attribute] = STATE(271), - [sym_code_span] = STATE(271), - [sym_latex_span] = STATE(271), - [sym_superscript] = STATE(271), - [sym_subscript] = STATE(271), - [sym_strikeout] = STATE(271), - [sym_quoted_span] = STATE(271), - [sym_inline_note] = STATE(271), - [sym_citation] = STATE(271), - [sym_shortcode_escaped] = STATE(271), - [sym_shortcode] = STATE(271), - [sym_note_reference] = STATE(271), - [sym__link_text] = STATE(424), - [sym__link_text_non_empty] = STATE(425), - [sym_inline_link] = STATE(88), - [sym_image] = STATE(271), - [sym__image_inline_link] = STATE(883), - [sym__image_description] = STATE(1998), - [sym__image_description_non_empty] = STATE(1998), - [sym_hard_line_break] = STATE(271), - [sym__whitespace] = STATE(881), - [sym__word] = STATE(881), - [sym__soft_line_break] = STATE(884), - [sym__inline_base] = STATE(88), - [sym__text_base] = STATE(271), - [sym__inline_element] = STATE(88), - [sym__emphasis_star] = STATE(710), - [sym__strong_emphasis_star] = STATE(88), - [sym__emphasis_underscore] = STATE(710), - [sym__strong_emphasis_underscore] = STATE(88), - [aux_sym_superscript_repeat1] = STATE(88), - [aux_sym__inline_base_repeat1] = STATE(271), - [sym__backslash_escape] = ACTIONS(159), - [sym_entity_reference] = ACTIONS(161), - [sym_numeric_character_reference] = ACTIONS(161), - [anon_sym_LT] = ACTIONS(163), - [anon_sym_GT] = ACTIONS(165), - [anon_sym_BANG] = ACTIONS(167), - [anon_sym_DQUOTE] = ACTIONS(165), - [anon_sym_POUND] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(165), - [anon_sym_PERCENT] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_SQUOTE] = ACTIONS(165), - [anon_sym_STAR] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(165), - [anon_sym_COMMA] = ACTIONS(165), - [anon_sym_DASH] = ACTIONS(163), - [anon_sym_DOT] = ACTIONS(163), - [anon_sym_SLASH] = ACTIONS(165), - [anon_sym_COLON] = ACTIONS(165), - [anon_sym_SEMI] = ACTIONS(165), - [anon_sym_EQ] = ACTIONS(165), - [anon_sym_QMARK] = ACTIONS(165), - [anon_sym_LBRACK] = ACTIONS(169), - [anon_sym_BSLASH] = ACTIONS(171), - [anon_sym_RBRACK] = ACTIONS(1971), - [anon_sym_CARET] = ACTIONS(163), - [anon_sym__] = ACTIONS(165), - [anon_sym_BQUOTE] = ACTIONS(165), - [anon_sym_LBRACE] = ACTIONS(175), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(165), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_RPAREN] = ACTIONS(165), - [sym__newline_token] = ACTIONS(177), - [anon_sym_CARET_LBRACK] = ACTIONS(179), - [anon_sym_LBRACK_CARET] = ACTIONS(181), - [sym_uri_autolink] = ACTIONS(161), - [sym_email_autolink] = ACTIONS(161), - [sym__whitespace_ge_2] = ACTIONS(183), - [aux_sym__whitespace_token1] = ACTIONS(185), - [sym__word_no_digit] = ACTIONS(187), - [sym__digits] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_DASH_DASH_DASH] = ACTIONS(187), - [anon_sym_DOT_DOT_DOT] = ACTIONS(187), - [sym__code_span_start] = ACTIONS(191), - [sym__emphasis_open_star] = ACTIONS(193), - [sym__emphasis_open_underscore] = ACTIONS(195), - [sym__strikeout_open] = ACTIONS(199), - [sym__latex_span_start] = ACTIONS(201), - [sym__single_quote_open] = ACTIONS(203), - [sym__double_quote_open] = ACTIONS(205), - [sym__superscript_open] = ACTIONS(207), - [sym__subscript_open] = ACTIONS(209), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(211), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(213), - [sym__cite_author_in_text] = ACTIONS(215), - [sym__cite_suppress_author] = ACTIONS(217), - [sym__shortcode_open_escaped] = ACTIONS(219), - [sym__shortcode_open] = ACTIONS(221), - [sym__unclosed_span] = ACTIONS(161), + [sym_backslash_escape] = STATE(370), + [sym_commonmark_attribute] = STATE(370), + [sym_code_span] = STATE(370), + [sym_latex_span] = STATE(370), + [sym_insert] = STATE(370), + [sym_delete] = STATE(370), + [sym_highlight] = STATE(370), + [sym_edit_comment] = STATE(370), + [sym_superscript] = STATE(370), + [sym_subscript] = STATE(370), + [sym_strikeout] = STATE(370), + [sym_quoted_span] = STATE(370), + [sym_inline_note] = STATE(370), + [sym_citation] = STATE(370), + [sym_shortcode_escaped] = STATE(370), + [sym_shortcode] = STATE(370), + [sym_note_reference] = STATE(370), + [sym__link_text] = STATE(472), + [sym__link_text_non_empty] = STATE(473), + [sym_inline_link] = STATE(60), + [sym_image] = STATE(370), + [sym__image_inline_link] = STATE(923), + [sym__image_description] = STATE(2342), + [sym__image_description_non_empty] = STATE(2342), + [sym_hard_line_break] = STATE(370), + [sym__whitespace] = STATE(920), + [sym__word] = STATE(920), + [sym__soft_line_break] = STATE(924), + [sym__inline_base] = STATE(60), + [sym__text_base] = STATE(370), + [sym__inline_element] = STATE(60), + [sym__emphasis_star] = STATE(821), + [sym__strong_emphasis_star] = STATE(60), + [sym__emphasis_underscore] = STATE(821), + [sym__strong_emphasis_underscore] = STATE(60), + [aux_sym_insert_repeat1] = STATE(60), + [aux_sym__inline_base_repeat1] = STATE(370), + [sym__backslash_escape] = ACTIONS(73), + [sym_entity_reference] = ACTIONS(75), + [sym_numeric_character_reference] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_BANG] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_POUND] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(79), + [anon_sym_PERCENT] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_STAR] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_COMMA] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_DOT] = ACTIONS(77), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_COLON] = ACTIONS(79), + [anon_sym_SEMI] = ACTIONS(79), + [anon_sym_EQ] = ACTIONS(79), + [anon_sym_QMARK] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(83), + [anon_sym_BSLASH] = ACTIONS(85), + [anon_sym_RBRACK] = ACTIONS(2391), + [anon_sym_CARET] = ACTIONS(77), + [anon_sym__] = ACTIONS(79), + [anon_sym_BQUOTE] = ACTIONS(79), + [anon_sym_LBRACE] = ACTIONS(89), + [anon_sym_PIPE] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(79), + [anon_sym_RPAREN] = ACTIONS(79), + [sym__newline_token] = ACTIONS(91), + [aux_sym_insert_token1] = ACTIONS(93), + [aux_sym_delete_token1] = ACTIONS(95), + [aux_sym_highlight_token1] = ACTIONS(97), + [aux_sym_edit_comment_token1] = ACTIONS(99), + [anon_sym_CARET_LBRACK] = ACTIONS(101), + [anon_sym_LBRACK_CARET] = ACTIONS(103), + [sym_uri_autolink] = ACTIONS(75), + [sym_email_autolink] = ACTIONS(75), + [sym__whitespace_ge_2] = ACTIONS(105), + [aux_sym__whitespace_token1] = ACTIONS(107), + [sym__word_no_digit] = ACTIONS(109), + [sym__digits] = ACTIONS(109), + [anon_sym_DASH_DASH] = ACTIONS(111), + [anon_sym_DASH_DASH_DASH] = ACTIONS(109), + [anon_sym_DOT_DOT_DOT] = ACTIONS(109), + [sym__code_span_start] = ACTIONS(113), + [sym__emphasis_open_star] = ACTIONS(115), + [sym__emphasis_open_underscore] = ACTIONS(117), + [sym__strikeout_open] = ACTIONS(121), + [sym__latex_span_start] = ACTIONS(123), + [sym__single_quote_open] = ACTIONS(125), + [sym__double_quote_open] = ACTIONS(127), + [sym__superscript_open] = ACTIONS(129), + [sym__subscript_open] = ACTIONS(131), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(133), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(135), + [sym__cite_author_in_text] = ACTIONS(137), + [sym__cite_suppress_author] = ACTIONS(139), + [sym__shortcode_open_escaped] = ACTIONS(141), + [sym__shortcode_open] = ACTIONS(143), + [sym__unclosed_span] = ACTIONS(75), }, [STATE(85)] = { - [sym_backslash_escape] = STATE(271), - [sym_commonmark_attribute] = STATE(271), - [sym_code_span] = STATE(271), - [sym_latex_span] = STATE(271), - [sym_superscript] = STATE(271), - [sym_subscript] = STATE(271), - [sym_strikeout] = STATE(271), - [sym_quoted_span] = STATE(271), - [sym_inline_note] = STATE(271), - [sym_citation] = STATE(271), - [sym_shortcode_escaped] = STATE(271), - [sym_shortcode] = STATE(271), - [sym_note_reference] = STATE(271), - [sym__link_text] = STATE(424), - [sym__link_text_non_empty] = STATE(425), - [sym_inline_link] = STATE(53), - [sym_image] = STATE(271), - [sym__image_inline_link] = STATE(883), - [sym__image_description] = STATE(1998), - [sym__image_description_non_empty] = STATE(1998), - [sym_hard_line_break] = STATE(271), - [sym__whitespace] = STATE(881), - [sym__word] = STATE(881), - [sym__soft_line_break] = STATE(884), - [sym__inline_base] = STATE(53), - [sym__text_base] = STATE(271), - [sym__inline_element] = STATE(53), - [sym__emphasis_star] = STATE(710), - [sym__strong_emphasis_star] = STATE(53), - [sym__emphasis_underscore] = STATE(710), - [sym__strong_emphasis_underscore] = STATE(53), - [aux_sym_superscript_repeat1] = STATE(53), - [aux_sym__inline_base_repeat1] = STATE(271), - [sym__backslash_escape] = ACTIONS(159), - [sym_entity_reference] = ACTIONS(161), - [sym_numeric_character_reference] = ACTIONS(161), - [anon_sym_LT] = ACTIONS(163), - [anon_sym_GT] = ACTIONS(165), - [anon_sym_BANG] = ACTIONS(167), - [anon_sym_DQUOTE] = ACTIONS(165), - [anon_sym_POUND] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(165), - [anon_sym_PERCENT] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_SQUOTE] = ACTIONS(165), - [anon_sym_STAR] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(165), - [anon_sym_COMMA] = ACTIONS(165), - [anon_sym_DASH] = ACTIONS(163), - [anon_sym_DOT] = ACTIONS(163), - [anon_sym_SLASH] = ACTIONS(165), - [anon_sym_COLON] = ACTIONS(165), - [anon_sym_SEMI] = ACTIONS(165), - [anon_sym_EQ] = ACTIONS(165), - [anon_sym_QMARK] = ACTIONS(165), - [anon_sym_LBRACK] = ACTIONS(169), - [anon_sym_BSLASH] = ACTIONS(171), - [anon_sym_RBRACK] = ACTIONS(1973), - [anon_sym_CARET] = ACTIONS(163), - [anon_sym__] = ACTIONS(165), - [anon_sym_BQUOTE] = ACTIONS(165), - [anon_sym_LBRACE] = ACTIONS(175), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(165), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_RPAREN] = ACTIONS(165), - [sym__newline_token] = ACTIONS(177), - [anon_sym_CARET_LBRACK] = ACTIONS(179), - [anon_sym_LBRACK_CARET] = ACTIONS(181), - [sym_uri_autolink] = ACTIONS(161), - [sym_email_autolink] = ACTIONS(161), - [sym__whitespace_ge_2] = ACTIONS(183), - [aux_sym__whitespace_token1] = ACTIONS(185), - [sym__word_no_digit] = ACTIONS(187), - [sym__digits] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_DASH_DASH_DASH] = ACTIONS(187), - [anon_sym_DOT_DOT_DOT] = ACTIONS(187), - [sym__code_span_start] = ACTIONS(191), - [sym__emphasis_open_star] = ACTIONS(193), - [sym__emphasis_open_underscore] = ACTIONS(195), - [sym__strikeout_open] = ACTIONS(199), - [sym__latex_span_start] = ACTIONS(201), - [sym__single_quote_open] = ACTIONS(203), - [sym__double_quote_open] = ACTIONS(205), - [sym__superscript_open] = ACTIONS(207), - [sym__subscript_open] = ACTIONS(209), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(211), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(213), - [sym__cite_author_in_text] = ACTIONS(215), - [sym__cite_suppress_author] = ACTIONS(217), - [sym__shortcode_open_escaped] = ACTIONS(219), - [sym__shortcode_open] = ACTIONS(221), - [sym__unclosed_span] = ACTIONS(161), + [sym_backslash_escape] = STATE(373), + [sym_commonmark_attribute] = STATE(373), + [sym_code_span] = STATE(373), + [sym_latex_span] = STATE(373), + [sym_insert] = STATE(373), + [sym_delete] = STATE(373), + [sym_highlight] = STATE(373), + [sym_edit_comment] = STATE(373), + [sym_superscript] = STATE(373), + [sym_subscript] = STATE(373), + [sym_strikeout] = STATE(373), + [sym_quoted_span] = STATE(373), + [sym_inline_note] = STATE(373), + [sym_citation] = STATE(373), + [sym_shortcode_escaped] = STATE(373), + [sym_shortcode] = STATE(373), + [sym_note_reference] = STATE(373), + [sym__link_text] = STATE(522), + [sym__link_text_non_empty] = STATE(523), + [sym_inline_link] = STATE(36), + [sym_image] = STATE(373), + [sym__image_inline_link] = STATE(1265), + [sym__image_description] = STATE(2331), + [sym__image_description_non_empty] = STATE(2331), + [sym_hard_line_break] = STATE(373), + [sym__whitespace] = STATE(1262), + [sym__word] = STATE(1262), + [sym__soft_line_break] = STATE(1267), + [sym__inline_base] = STATE(36), + [sym__text_base] = STATE(373), + [sym__inline_element_no_star] = STATE(36), + [aux_sym__inline_no_star] = STATE(36), + [sym__emphasis_star] = STATE(1147), + [sym__strong_emphasis_star] = STATE(36), + [sym__emphasis_underscore] = STATE(1147), + [sym__strong_emphasis_underscore] = STATE(36), + [aux_sym__inline_base_repeat1] = STATE(373), + [sym__backslash_escape] = ACTIONS(885), + [sym_entity_reference] = ACTIONS(887), + [sym_numeric_character_reference] = ACTIONS(887), + [anon_sym_LT] = ACTIONS(889), + [anon_sym_GT] = ACTIONS(891), + [anon_sym_BANG] = ACTIONS(893), + [anon_sym_DQUOTE] = ACTIONS(891), + [anon_sym_POUND] = ACTIONS(891), + [anon_sym_DOLLAR] = ACTIONS(891), + [anon_sym_PERCENT] = ACTIONS(891), + [anon_sym_AMP] = ACTIONS(889), + [anon_sym_SQUOTE] = ACTIONS(891), + [anon_sym_STAR] = ACTIONS(891), + [anon_sym_PLUS] = ACTIONS(891), + [anon_sym_COMMA] = ACTIONS(891), + [anon_sym_DASH] = ACTIONS(889), + [anon_sym_DOT] = ACTIONS(889), + [anon_sym_SLASH] = ACTIONS(891), + [anon_sym_COLON] = ACTIONS(891), + [anon_sym_SEMI] = ACTIONS(891), + [anon_sym_EQ] = ACTIONS(891), + [anon_sym_QMARK] = ACTIONS(891), + [anon_sym_LBRACK] = ACTIONS(895), + [anon_sym_BSLASH] = ACTIONS(897), + [anon_sym_CARET] = ACTIONS(889), + [anon_sym__] = ACTIONS(891), + [anon_sym_BQUOTE] = ACTIONS(891), + [anon_sym_LBRACE] = ACTIONS(899), + [anon_sym_PIPE] = ACTIONS(891), + [anon_sym_TILDE] = ACTIONS(891), + [anon_sym_LPAREN] = ACTIONS(891), + [anon_sym_RPAREN] = ACTIONS(891), + [sym__newline_token] = ACTIONS(901), + [aux_sym_insert_token1] = ACTIONS(903), + [aux_sym_delete_token1] = ACTIONS(905), + [aux_sym_highlight_token1] = ACTIONS(907), + [aux_sym_edit_comment_token1] = ACTIONS(909), + [anon_sym_CARET_LBRACK] = ACTIONS(911), + [anon_sym_LBRACK_CARET] = ACTIONS(913), + [sym_uri_autolink] = ACTIONS(887), + [sym_email_autolink] = ACTIONS(887), + [sym__whitespace_ge_2] = ACTIONS(915), + [aux_sym__whitespace_token1] = ACTIONS(917), + [sym__word_no_digit] = ACTIONS(919), + [sym__digits] = ACTIONS(919), + [anon_sym_DASH_DASH] = ACTIONS(921), + [anon_sym_DASH_DASH_DASH] = ACTIONS(919), + [anon_sym_DOT_DOT_DOT] = ACTIONS(919), + [sym__code_span_start] = ACTIONS(923), + [sym__emphasis_open_star] = ACTIONS(925), + [sym__emphasis_open_underscore] = ACTIONS(927), + [sym__emphasis_close_star] = ACTIONS(2393), + [sym__strikeout_open] = ACTIONS(931), + [sym__latex_span_start] = ACTIONS(933), + [sym__single_quote_open] = ACTIONS(935), + [sym__double_quote_open] = ACTIONS(937), + [sym__superscript_open] = ACTIONS(939), + [sym__subscript_open] = ACTIONS(941), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(943), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(945), + [sym__cite_author_in_text] = ACTIONS(947), + [sym__cite_suppress_author] = ACTIONS(949), + [sym__shortcode_open_escaped] = ACTIONS(951), + [sym__shortcode_open] = ACTIONS(953), + [sym__unclosed_span] = ACTIONS(887), }, [STATE(86)] = { - [sym_backslash_escape] = STATE(261), - [sym_commonmark_attribute] = STATE(261), - [sym_code_span] = STATE(261), - [sym_latex_span] = STATE(261), - [sym_superscript] = STATE(261), - [sym_subscript] = STATE(261), - [sym_strikeout] = STATE(261), - [sym_quoted_span] = STATE(261), - [sym_inline_note] = STATE(261), - [sym_citation] = STATE(261), - [sym_shortcode_escaped] = STATE(261), - [sym_shortcode] = STATE(261), - [sym_note_reference] = STATE(261), - [sym__link_text] = STATE(322), - [sym__link_text_non_empty] = STATE(323), - [sym_inline_link] = STATE(39), - [sym_image] = STATE(261), - [sym__image_inline_link] = STATE(595), - [sym__image_description] = STATE(1972), - [sym__image_description_non_empty] = STATE(1972), - [sym_hard_line_break] = STATE(261), - [sym__whitespace] = STATE(587), - [sym__word] = STATE(587), - [sym__soft_line_break] = STATE(597), - [sym__inline_base] = STATE(39), - [sym__text_base] = STATE(261), - [sym__inline_element_no_star] = STATE(39), - [aux_sym__inline_no_star] = STATE(39), - [sym__emphasis_star] = STATE(544), - [sym__strong_emphasis_star] = STATE(39), - [sym__emphasis_underscore] = STATE(544), - [sym__strong_emphasis_underscore] = STATE(39), - [aux_sym__inline_base_repeat1] = STATE(261), - [sym__backslash_escape] = ACTIONS(969), - [sym_entity_reference] = ACTIONS(971), - [sym_numeric_character_reference] = ACTIONS(971), - [anon_sym_LT] = ACTIONS(973), - [anon_sym_GT] = ACTIONS(975), - [anon_sym_BANG] = ACTIONS(977), - [anon_sym_DQUOTE] = ACTIONS(975), - [anon_sym_POUND] = ACTIONS(975), - [anon_sym_DOLLAR] = ACTIONS(975), - [anon_sym_PERCENT] = ACTIONS(975), - [anon_sym_AMP] = ACTIONS(973), - [anon_sym_SQUOTE] = ACTIONS(975), - [anon_sym_STAR] = ACTIONS(975), - [anon_sym_PLUS] = ACTIONS(975), - [anon_sym_COMMA] = ACTIONS(975), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_DOT] = ACTIONS(973), - [anon_sym_SLASH] = ACTIONS(975), - [anon_sym_COLON] = ACTIONS(975), - [anon_sym_SEMI] = ACTIONS(975), - [anon_sym_EQ] = ACTIONS(975), - [anon_sym_QMARK] = ACTIONS(975), - [anon_sym_LBRACK] = ACTIONS(979), - [anon_sym_BSLASH] = ACTIONS(981), - [anon_sym_CARET] = ACTIONS(973), - [anon_sym__] = ACTIONS(975), - [anon_sym_BQUOTE] = ACTIONS(975), - [anon_sym_LBRACE] = ACTIONS(983), - [anon_sym_PIPE] = ACTIONS(975), - [anon_sym_TILDE] = ACTIONS(975), - [anon_sym_LPAREN] = ACTIONS(975), - [anon_sym_RPAREN] = ACTIONS(975), - [sym__newline_token] = ACTIONS(985), - [anon_sym_CARET_LBRACK] = ACTIONS(987), - [anon_sym_LBRACK_CARET] = ACTIONS(989), - [sym_uri_autolink] = ACTIONS(971), - [sym_email_autolink] = ACTIONS(971), - [sym__whitespace_ge_2] = ACTIONS(991), - [aux_sym__whitespace_token1] = ACTIONS(993), - [sym__word_no_digit] = ACTIONS(995), - [sym__digits] = ACTIONS(995), - [anon_sym_DASH_DASH] = ACTIONS(997), - [anon_sym_DASH_DASH_DASH] = ACTIONS(995), - [anon_sym_DOT_DOT_DOT] = ACTIONS(995), - [sym__code_span_start] = ACTIONS(999), - [sym__emphasis_open_star] = ACTIONS(1001), - [sym__emphasis_open_underscore] = ACTIONS(1003), - [sym__emphasis_close_star] = ACTIONS(1975), - [sym__strikeout_open] = ACTIONS(1007), - [sym__latex_span_start] = ACTIONS(1009), - [sym__single_quote_open] = ACTIONS(1011), - [sym__double_quote_open] = ACTIONS(1013), - [sym__superscript_open] = ACTIONS(1015), - [sym__subscript_open] = ACTIONS(1017), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1019), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1021), - [sym__cite_author_in_text] = ACTIONS(1023), - [sym__cite_suppress_author] = ACTIONS(1025), - [sym__shortcode_open_escaped] = ACTIONS(1027), - [sym__shortcode_open] = ACTIONS(1029), - [sym__unclosed_span] = ACTIONS(971), + [sym_backslash_escape] = STATE(379), + [sym_commonmark_attribute] = STATE(379), + [sym_code_span] = STATE(379), + [sym_latex_span] = STATE(379), + [sym_insert] = STATE(379), + [sym_delete] = STATE(379), + [sym_highlight] = STATE(379), + [sym_edit_comment] = STATE(379), + [sym_superscript] = STATE(379), + [sym_subscript] = STATE(379), + [sym_strikeout] = STATE(379), + [sym_quoted_span] = STATE(379), + [sym_inline_note] = STATE(379), + [sym_citation] = STATE(379), + [sym_shortcode_escaped] = STATE(379), + [sym_shortcode] = STATE(379), + [sym_note_reference] = STATE(379), + [sym__link_text] = STATE(545), + [sym__link_text_non_empty] = STATE(546), + [sym_inline_link] = STATE(38), + [sym_image] = STATE(379), + [sym__image_inline_link] = STATE(1390), + [sym__image_description] = STATE(2363), + [sym__image_description_non_empty] = STATE(2363), + [sym_hard_line_break] = STATE(379), + [sym__whitespace] = STATE(1385), + [sym__word] = STATE(1385), + [sym__soft_line_break] = STATE(1391), + [sym__inline_base] = STATE(38), + [sym__text_base] = STATE(379), + [sym__inline_element_no_underscore] = STATE(38), + [aux_sym__inline_no_underscore] = STATE(38), + [sym__emphasis_star] = STATE(1168), + [sym__strong_emphasis_star] = STATE(38), + [sym__emphasis_underscore] = STATE(1168), + [sym__strong_emphasis_underscore] = STATE(38), + [aux_sym__inline_base_repeat1] = STATE(379), + [sym__backslash_escape] = ACTIONS(1059), + [sym_entity_reference] = ACTIONS(1061), + [sym_numeric_character_reference] = ACTIONS(1061), + [anon_sym_LT] = ACTIONS(1063), + [anon_sym_GT] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1067), + [anon_sym_DQUOTE] = ACTIONS(1065), + [anon_sym_POUND] = ACTIONS(1065), + [anon_sym_DOLLAR] = ACTIONS(1065), + [anon_sym_PERCENT] = ACTIONS(1065), + [anon_sym_AMP] = ACTIONS(1063), + [anon_sym_SQUOTE] = ACTIONS(1065), + [anon_sym_STAR] = ACTIONS(1065), + [anon_sym_PLUS] = ACTIONS(1065), + [anon_sym_COMMA] = ACTIONS(1065), + [anon_sym_DASH] = ACTIONS(1063), + [anon_sym_DOT] = ACTIONS(1063), + [anon_sym_SLASH] = ACTIONS(1065), + [anon_sym_COLON] = ACTIONS(1065), + [anon_sym_SEMI] = ACTIONS(1065), + [anon_sym_EQ] = ACTIONS(1065), + [anon_sym_QMARK] = ACTIONS(1065), + [anon_sym_LBRACK] = ACTIONS(1069), + [anon_sym_BSLASH] = ACTIONS(1071), + [anon_sym_CARET] = ACTIONS(1063), + [anon_sym__] = ACTIONS(1065), + [anon_sym_BQUOTE] = ACTIONS(1065), + [anon_sym_LBRACE] = ACTIONS(1073), + [anon_sym_PIPE] = ACTIONS(1065), + [anon_sym_TILDE] = ACTIONS(1065), + [anon_sym_LPAREN] = ACTIONS(1065), + [anon_sym_RPAREN] = ACTIONS(1065), + [sym__newline_token] = ACTIONS(1075), + [aux_sym_insert_token1] = ACTIONS(1077), + [aux_sym_delete_token1] = ACTIONS(1079), + [aux_sym_highlight_token1] = ACTIONS(1081), + [aux_sym_edit_comment_token1] = ACTIONS(1083), + [anon_sym_CARET_LBRACK] = ACTIONS(1085), + [anon_sym_LBRACK_CARET] = ACTIONS(1087), + [sym_uri_autolink] = ACTIONS(1061), + [sym_email_autolink] = ACTIONS(1061), + [sym__whitespace_ge_2] = ACTIONS(1089), + [aux_sym__whitespace_token1] = ACTIONS(1091), + [sym__word_no_digit] = ACTIONS(1093), + [sym__digits] = ACTIONS(1093), + [anon_sym_DASH_DASH] = ACTIONS(1095), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1093), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1093), + [sym__code_span_start] = ACTIONS(1097), + [sym__emphasis_open_star] = ACTIONS(1099), + [sym__emphasis_open_underscore] = ACTIONS(1101), + [sym__emphasis_close_underscore] = ACTIONS(2395), + [sym__strikeout_open] = ACTIONS(1105), + [sym__latex_span_start] = ACTIONS(1107), + [sym__single_quote_open] = ACTIONS(1109), + [sym__double_quote_open] = ACTIONS(1111), + [sym__superscript_open] = ACTIONS(1113), + [sym__subscript_open] = ACTIONS(1115), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1117), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1119), + [sym__cite_author_in_text] = ACTIONS(1121), + [sym__cite_suppress_author] = ACTIONS(1123), + [sym__shortcode_open_escaped] = ACTIONS(1125), + [sym__shortcode_open] = ACTIONS(1127), + [sym__unclosed_span] = ACTIONS(1061), }, [STATE(87)] = { - [sym_backslash_escape] = STATE(274), - [sym_commonmark_attribute] = STATE(274), - [sym_code_span] = STATE(274), - [sym_latex_span] = STATE(274), - [sym_superscript] = STATE(274), - [sym_subscript] = STATE(274), - [sym_strikeout] = STATE(274), - [sym_quoted_span] = STATE(274), - [sym_inline_note] = STATE(274), - [sym_citation] = STATE(274), - [sym_shortcode_escaped] = STATE(274), - [sym_shortcode] = STATE(274), - [sym_note_reference] = STATE(274), - [sym__link_text] = STATE(351), - [sym__link_text_non_empty] = STATE(352), - [sym_inline_link] = STATE(41), - [sym_image] = STATE(274), - [sym__image_inline_link] = STATE(894), - [sym__image_description] = STATE(2008), - [sym__image_description_non_empty] = STATE(2008), - [sym_hard_line_break] = STATE(274), - [sym__whitespace] = STATE(882), - [sym__word] = STATE(882), - [sym__soft_line_break] = STATE(898), - [sym__inline_base] = STATE(41), - [sym__text_base] = STATE(274), - [sym__inline_element_no_underscore] = STATE(41), - [aux_sym__inline_no_underscore] = STATE(41), - [sym__emphasis_star] = STATE(711), - [sym__strong_emphasis_star] = STATE(41), - [sym__emphasis_underscore] = STATE(711), - [sym__strong_emphasis_underscore] = STATE(41), - [aux_sym__inline_base_repeat1] = STATE(274), - [sym__backslash_escape] = ACTIONS(1123), - [sym_entity_reference] = ACTIONS(1125), - [sym_numeric_character_reference] = ACTIONS(1125), - [anon_sym_LT] = ACTIONS(1127), - [anon_sym_GT] = ACTIONS(1129), - [anon_sym_BANG] = ACTIONS(1131), - [anon_sym_DQUOTE] = ACTIONS(1129), - [anon_sym_POUND] = ACTIONS(1129), - [anon_sym_DOLLAR] = ACTIONS(1129), - [anon_sym_PERCENT] = ACTIONS(1129), - [anon_sym_AMP] = ACTIONS(1127), - [anon_sym_SQUOTE] = ACTIONS(1129), - [anon_sym_STAR] = ACTIONS(1129), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_COMMA] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1127), - [anon_sym_DOT] = ACTIONS(1127), - [anon_sym_SLASH] = ACTIONS(1129), - [anon_sym_COLON] = ACTIONS(1129), - [anon_sym_SEMI] = ACTIONS(1129), - [anon_sym_EQ] = ACTIONS(1129), - [anon_sym_QMARK] = ACTIONS(1129), - [anon_sym_LBRACK] = ACTIONS(1133), - [anon_sym_BSLASH] = ACTIONS(1135), - [anon_sym_CARET] = ACTIONS(1127), - [anon_sym__] = ACTIONS(1129), - [anon_sym_BQUOTE] = ACTIONS(1129), - [anon_sym_LBRACE] = ACTIONS(1137), - [anon_sym_PIPE] = ACTIONS(1129), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1129), - [anon_sym_RPAREN] = ACTIONS(1129), - [sym__newline_token] = ACTIONS(1139), - [anon_sym_CARET_LBRACK] = ACTIONS(1141), - [anon_sym_LBRACK_CARET] = ACTIONS(1143), - [sym_uri_autolink] = ACTIONS(1125), - [sym_email_autolink] = ACTIONS(1125), - [sym__whitespace_ge_2] = ACTIONS(1145), - [aux_sym__whitespace_token1] = ACTIONS(1147), - [sym__word_no_digit] = ACTIONS(1149), - [sym__digits] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1151), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1149), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1149), - [sym__code_span_start] = ACTIONS(1153), - [sym__emphasis_open_star] = ACTIONS(1155), - [sym__emphasis_open_underscore] = ACTIONS(1157), - [sym__emphasis_close_underscore] = ACTIONS(1977), - [sym__strikeout_open] = ACTIONS(1161), - [sym__latex_span_start] = ACTIONS(1163), - [sym__single_quote_open] = ACTIONS(1165), - [sym__double_quote_open] = ACTIONS(1167), - [sym__superscript_open] = ACTIONS(1169), - [sym__subscript_open] = ACTIONS(1171), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1173), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1175), - [sym__cite_author_in_text] = ACTIONS(1177), - [sym__cite_suppress_author] = ACTIONS(1179), - [sym__shortcode_open_escaped] = ACTIONS(1181), - [sym__shortcode_open] = ACTIONS(1183), - [sym__unclosed_span] = ACTIONS(1125), + [sym_backslash_escape] = STATE(370), + [sym_commonmark_attribute] = STATE(370), + [sym_code_span] = STATE(370), + [sym_latex_span] = STATE(370), + [sym_insert] = STATE(370), + [sym_delete] = STATE(370), + [sym_highlight] = STATE(370), + [sym_edit_comment] = STATE(370), + [sym_superscript] = STATE(370), + [sym_subscript] = STATE(370), + [sym_strikeout] = STATE(370), + [sym_quoted_span] = STATE(370), + [sym_inline_note] = STATE(370), + [sym_citation] = STATE(370), + [sym_shortcode_escaped] = STATE(370), + [sym_shortcode] = STATE(370), + [sym_note_reference] = STATE(370), + [sym__link_text] = STATE(472), + [sym__link_text_non_empty] = STATE(473), + [sym_inline_link] = STATE(60), + [sym_image] = STATE(370), + [sym__image_inline_link] = STATE(923), + [sym__image_description] = STATE(2342), + [sym__image_description_non_empty] = STATE(2342), + [sym_hard_line_break] = STATE(370), + [sym__whitespace] = STATE(920), + [sym__word] = STATE(920), + [sym__soft_line_break] = STATE(924), + [sym__inline_base] = STATE(60), + [sym__text_base] = STATE(370), + [sym__inline_element] = STATE(60), + [sym__emphasis_star] = STATE(821), + [sym__strong_emphasis_star] = STATE(60), + [sym__emphasis_underscore] = STATE(821), + [sym__strong_emphasis_underscore] = STATE(60), + [aux_sym_insert_repeat1] = STATE(60), + [aux_sym__inline_base_repeat1] = STATE(370), + [sym__backslash_escape] = ACTIONS(73), + [sym_entity_reference] = ACTIONS(75), + [sym_numeric_character_reference] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_BANG] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_POUND] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(79), + [anon_sym_PERCENT] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_STAR] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_COMMA] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_DOT] = ACTIONS(77), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_COLON] = ACTIONS(79), + [anon_sym_SEMI] = ACTIONS(79), + [anon_sym_EQ] = ACTIONS(79), + [anon_sym_QMARK] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(83), + [anon_sym_BSLASH] = ACTIONS(85), + [anon_sym_RBRACK] = ACTIONS(2397), + [anon_sym_CARET] = ACTIONS(77), + [anon_sym__] = ACTIONS(79), + [anon_sym_BQUOTE] = ACTIONS(79), + [anon_sym_LBRACE] = ACTIONS(89), + [anon_sym_PIPE] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(79), + [anon_sym_RPAREN] = ACTIONS(79), + [sym__newline_token] = ACTIONS(91), + [aux_sym_insert_token1] = ACTIONS(93), + [aux_sym_delete_token1] = ACTIONS(95), + [aux_sym_highlight_token1] = ACTIONS(97), + [aux_sym_edit_comment_token1] = ACTIONS(99), + [anon_sym_CARET_LBRACK] = ACTIONS(101), + [anon_sym_LBRACK_CARET] = ACTIONS(103), + [sym_uri_autolink] = ACTIONS(75), + [sym_email_autolink] = ACTIONS(75), + [sym__whitespace_ge_2] = ACTIONS(105), + [aux_sym__whitespace_token1] = ACTIONS(107), + [sym__word_no_digit] = ACTIONS(109), + [sym__digits] = ACTIONS(109), + [anon_sym_DASH_DASH] = ACTIONS(111), + [anon_sym_DASH_DASH_DASH] = ACTIONS(109), + [anon_sym_DOT_DOT_DOT] = ACTIONS(109), + [sym__code_span_start] = ACTIONS(113), + [sym__emphasis_open_star] = ACTIONS(115), + [sym__emphasis_open_underscore] = ACTIONS(117), + [sym__strikeout_open] = ACTIONS(121), + [sym__latex_span_start] = ACTIONS(123), + [sym__single_quote_open] = ACTIONS(125), + [sym__double_quote_open] = ACTIONS(127), + [sym__superscript_open] = ACTIONS(129), + [sym__subscript_open] = ACTIONS(131), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(133), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(135), + [sym__cite_author_in_text] = ACTIONS(137), + [sym__cite_suppress_author] = ACTIONS(139), + [sym__shortcode_open_escaped] = ACTIONS(141), + [sym__shortcode_open] = ACTIONS(143), + [sym__unclosed_span] = ACTIONS(75), }, [STATE(88)] = { - [sym_backslash_escape] = STATE(271), - [sym_commonmark_attribute] = STATE(271), - [sym_code_span] = STATE(271), - [sym_latex_span] = STATE(271), - [sym_superscript] = STATE(271), - [sym_subscript] = STATE(271), - [sym_strikeout] = STATE(271), - [sym_quoted_span] = STATE(271), - [sym_inline_note] = STATE(271), - [sym_citation] = STATE(271), - [sym_shortcode_escaped] = STATE(271), - [sym_shortcode] = STATE(271), - [sym_note_reference] = STATE(271), - [sym__link_text] = STATE(424), - [sym__link_text_non_empty] = STATE(425), - [sym_inline_link] = STATE(53), - [sym_image] = STATE(271), - [sym__image_inline_link] = STATE(883), - [sym__image_description] = STATE(1998), - [sym__image_description_non_empty] = STATE(1998), - [sym_hard_line_break] = STATE(271), - [sym__whitespace] = STATE(881), - [sym__word] = STATE(881), - [sym__soft_line_break] = STATE(884), - [sym__inline_base] = STATE(53), - [sym__text_base] = STATE(271), - [sym__inline_element] = STATE(53), - [sym__emphasis_star] = STATE(710), - [sym__strong_emphasis_star] = STATE(53), - [sym__emphasis_underscore] = STATE(710), - [sym__strong_emphasis_underscore] = STATE(53), - [aux_sym_superscript_repeat1] = STATE(53), - [aux_sym__inline_base_repeat1] = STATE(271), - [sym__backslash_escape] = ACTIONS(159), - [sym_entity_reference] = ACTIONS(161), - [sym_numeric_character_reference] = ACTIONS(161), - [anon_sym_LT] = ACTIONS(163), - [anon_sym_GT] = ACTIONS(165), - [anon_sym_BANG] = ACTIONS(167), - [anon_sym_DQUOTE] = ACTIONS(165), - [anon_sym_POUND] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(165), - [anon_sym_PERCENT] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_SQUOTE] = ACTIONS(165), - [anon_sym_STAR] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(165), - [anon_sym_COMMA] = ACTIONS(165), - [anon_sym_DASH] = ACTIONS(163), - [anon_sym_DOT] = ACTIONS(163), - [anon_sym_SLASH] = ACTIONS(165), - [anon_sym_COLON] = ACTIONS(165), - [anon_sym_SEMI] = ACTIONS(165), - [anon_sym_EQ] = ACTIONS(165), - [anon_sym_QMARK] = ACTIONS(165), - [anon_sym_LBRACK] = ACTIONS(169), - [anon_sym_BSLASH] = ACTIONS(171), - [anon_sym_RBRACK] = ACTIONS(1979), - [anon_sym_CARET] = ACTIONS(163), - [anon_sym__] = ACTIONS(165), - [anon_sym_BQUOTE] = ACTIONS(165), - [anon_sym_LBRACE] = ACTIONS(175), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(165), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_RPAREN] = ACTIONS(165), - [sym__newline_token] = ACTIONS(177), - [anon_sym_CARET_LBRACK] = ACTIONS(179), - [anon_sym_LBRACK_CARET] = ACTIONS(181), - [sym_uri_autolink] = ACTIONS(161), - [sym_email_autolink] = ACTIONS(161), - [sym__whitespace_ge_2] = ACTIONS(183), - [aux_sym__whitespace_token1] = ACTIONS(185), - [sym__word_no_digit] = ACTIONS(187), - [sym__digits] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_DASH_DASH_DASH] = ACTIONS(187), - [anon_sym_DOT_DOT_DOT] = ACTIONS(187), - [sym__code_span_start] = ACTIONS(191), - [sym__emphasis_open_star] = ACTIONS(193), - [sym__emphasis_open_underscore] = ACTIONS(195), - [sym__strikeout_open] = ACTIONS(199), - [sym__latex_span_start] = ACTIONS(201), - [sym__single_quote_open] = ACTIONS(203), - [sym__double_quote_open] = ACTIONS(205), - [sym__superscript_open] = ACTIONS(207), - [sym__subscript_open] = ACTIONS(209), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(211), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(213), - [sym__cite_author_in_text] = ACTIONS(215), - [sym__cite_suppress_author] = ACTIONS(217), - [sym__shortcode_open_escaped] = ACTIONS(219), - [sym__shortcode_open] = ACTIONS(221), - [sym__unclosed_span] = ACTIONS(161), - }, - [STATE(89)] = { - [sym_backslash_escape] = STATE(266), - [sym_commonmark_attribute] = STATE(266), - [sym_code_span] = STATE(266), - [sym_latex_span] = STATE(266), - [sym_superscript] = STATE(266), - [sym_subscript] = STATE(266), - [sym_strikeout] = STATE(266), - [sym_quoted_span] = STATE(266), - [sym_inline_note] = STATE(266), - [sym_citation] = STATE(266), - [sym_shortcode_escaped] = STATE(266), - [sym_shortcode] = STATE(266), - [sym_note_reference] = STATE(266), - [sym__link_text] = STATE(375), - [sym__link_text_non_empty] = STATE(376), - [sym_inline_link] = STATE(97), - [sym_image] = STATE(266), - [sym__image_inline_link] = STATE(1042), - [sym__image_description] = STATE(2044), - [sym__image_description_non_empty] = STATE(2044), - [sym_hard_line_break] = STATE(266), - [sym__whitespace] = STATE(1040), - [sym__word] = STATE(1040), - [sym__soft_line_break] = STATE(1043), - [sym__inline_base] = STATE(97), - [sym__text_base] = STATE(266), - [sym__inline_element] = STATE(97), - [sym__emphasis_star] = STATE(602), - [sym__strong_emphasis_star] = STATE(97), - [sym__emphasis_underscore] = STATE(602), - [sym__strong_emphasis_underscore] = STATE(97), - [aux_sym_superscript_repeat1] = STATE(97), - [aux_sym__inline_base_repeat1] = STATE(266), - [sym__backslash_escape] = ACTIONS(559), - [sym_entity_reference] = ACTIONS(561), - [sym_numeric_character_reference] = ACTIONS(561), - [anon_sym_LT] = ACTIONS(563), - [anon_sym_GT] = ACTIONS(565), - [anon_sym_BANG] = ACTIONS(567), - [anon_sym_DQUOTE] = ACTIONS(565), - [anon_sym_POUND] = ACTIONS(565), - [anon_sym_DOLLAR] = ACTIONS(565), - [anon_sym_PERCENT] = ACTIONS(565), - [anon_sym_AMP] = ACTIONS(563), - [anon_sym_SQUOTE] = ACTIONS(565), - [anon_sym_STAR] = ACTIONS(565), - [anon_sym_PLUS] = ACTIONS(565), - [anon_sym_COMMA] = ACTIONS(565), - [anon_sym_DASH] = ACTIONS(563), - [anon_sym_DOT] = ACTIONS(563), - [anon_sym_SLASH] = ACTIONS(565), - [anon_sym_COLON] = ACTIONS(565), - [anon_sym_SEMI] = ACTIONS(565), - [anon_sym_EQ] = ACTIONS(565), - [anon_sym_QMARK] = ACTIONS(565), - [anon_sym_LBRACK] = ACTIONS(569), - [anon_sym_BSLASH] = ACTIONS(571), - [anon_sym_CARET] = ACTIONS(563), - [anon_sym__] = ACTIONS(565), - [anon_sym_BQUOTE] = ACTIONS(565), - [anon_sym_LBRACE] = ACTIONS(573), - [anon_sym_PIPE] = ACTIONS(565), - [anon_sym_TILDE] = ACTIONS(565), - [anon_sym_LPAREN] = ACTIONS(565), - [anon_sym_RPAREN] = ACTIONS(565), - [sym__newline_token] = ACTIONS(575), - [anon_sym_CARET_LBRACK] = ACTIONS(577), - [anon_sym_LBRACK_CARET] = ACTIONS(579), - [sym_uri_autolink] = ACTIONS(561), - [sym_email_autolink] = ACTIONS(561), - [sym__whitespace_ge_2] = ACTIONS(581), - [aux_sym__whitespace_token1] = ACTIONS(583), - [sym__word_no_digit] = ACTIONS(585), - [sym__digits] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(587), - [anon_sym_DASH_DASH_DASH] = ACTIONS(585), - [anon_sym_DOT_DOT_DOT] = ACTIONS(585), - [sym__code_span_start] = ACTIONS(589), - [sym__emphasis_open_star] = ACTIONS(591), - [sym__emphasis_open_underscore] = ACTIONS(593), - [sym__strikeout_open] = ACTIONS(595), - [sym__strikeout_close] = ACTIONS(1981), - [sym__latex_span_start] = ACTIONS(599), - [sym__single_quote_open] = ACTIONS(601), - [sym__double_quote_open] = ACTIONS(603), - [sym__superscript_open] = ACTIONS(605), - [sym__subscript_open] = ACTIONS(607), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(609), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(611), - [sym__cite_author_in_text] = ACTIONS(613), - [sym__cite_suppress_author] = ACTIONS(615), - [sym__shortcode_open_escaped] = ACTIONS(617), - [sym__shortcode_open] = ACTIONS(619), - [sym__unclosed_span] = ACTIONS(561), - }, - [STATE(90)] = { - [sym_backslash_escape] = STATE(272), - [sym_commonmark_attribute] = STATE(272), - [sym_code_span] = STATE(272), - [sym_latex_span] = STATE(272), - [sym_superscript] = STATE(272), - [sym_subscript] = STATE(272), - [sym_strikeout] = STATE(272), - [sym_quoted_span] = STATE(272), - [sym_inline_note] = STATE(272), - [sym_citation] = STATE(272), - [sym_shortcode_escaped] = STATE(272), - [sym_shortcode] = STATE(272), - [sym_note_reference] = STATE(272), - [sym__link_text] = STATE(401), - [sym__link_text_non_empty] = STATE(402), - [sym_inline_link] = STATE(98), - [sym_image] = STATE(272), - [sym__image_inline_link] = STATE(1136), - [sym__image_description] = STATE(1942), - [sym__image_description_non_empty] = STATE(1942), - [sym_hard_line_break] = STATE(272), - [sym__whitespace] = STATE(1133), - [sym__word] = STATE(1133), - [sym__soft_line_break] = STATE(1137), - [sym__inline_base] = STATE(98), - [sym__text_base] = STATE(272), - [sym__inline_element] = STATE(98), - [sym__emphasis_star] = STATE(902), - [sym__strong_emphasis_star] = STATE(98), - [sym__emphasis_underscore] = STATE(902), - [sym__strong_emphasis_underscore] = STATE(98), - [aux_sym_superscript_repeat1] = STATE(98), - [aux_sym__inline_base_repeat1] = STATE(272), - [sym__backslash_escape] = ACTIONS(625), - [sym_entity_reference] = ACTIONS(627), - [sym_numeric_character_reference] = ACTIONS(627), - [anon_sym_LT] = ACTIONS(629), - [anon_sym_GT] = ACTIONS(631), - [anon_sym_BANG] = ACTIONS(633), - [anon_sym_DQUOTE] = ACTIONS(631), - [anon_sym_POUND] = ACTIONS(631), - [anon_sym_DOLLAR] = ACTIONS(631), - [anon_sym_PERCENT] = ACTIONS(631), - [anon_sym_AMP] = ACTIONS(629), - [anon_sym_SQUOTE] = ACTIONS(631), - [anon_sym_STAR] = ACTIONS(631), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_COMMA] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(629), - [anon_sym_DOT] = ACTIONS(629), - [anon_sym_SLASH] = ACTIONS(631), - [anon_sym_COLON] = ACTIONS(631), - [anon_sym_SEMI] = ACTIONS(631), - [anon_sym_EQ] = ACTIONS(631), - [anon_sym_QMARK] = ACTIONS(631), - [anon_sym_LBRACK] = ACTIONS(635), - [anon_sym_BSLASH] = ACTIONS(637), - [anon_sym_CARET] = ACTIONS(629), - [anon_sym__] = ACTIONS(631), - [anon_sym_BQUOTE] = ACTIONS(631), - [anon_sym_LBRACE] = ACTIONS(639), - [anon_sym_PIPE] = ACTIONS(631), - [anon_sym_TILDE] = ACTIONS(631), - [anon_sym_LPAREN] = ACTIONS(631), - [anon_sym_RPAREN] = ACTIONS(631), - [sym__newline_token] = ACTIONS(641), - [anon_sym_CARET_LBRACK] = ACTIONS(643), - [anon_sym_LBRACK_CARET] = ACTIONS(645), - [sym_uri_autolink] = ACTIONS(627), - [sym_email_autolink] = ACTIONS(627), - [sym__whitespace_ge_2] = ACTIONS(647), - [aux_sym__whitespace_token1] = ACTIONS(649), - [sym__word_no_digit] = ACTIONS(651), - [sym__digits] = ACTIONS(651), - [anon_sym_DASH_DASH] = ACTIONS(653), - [anon_sym_DASH_DASH_DASH] = ACTIONS(651), - [anon_sym_DOT_DOT_DOT] = ACTIONS(651), - [sym__code_span_start] = ACTIONS(655), - [sym__emphasis_open_star] = ACTIONS(657), - [sym__emphasis_open_underscore] = ACTIONS(659), - [sym__strikeout_open] = ACTIONS(661), - [sym__latex_span_start] = ACTIONS(663), - [sym__single_quote_open] = ACTIONS(665), - [sym__single_quote_close] = ACTIONS(1983), - [sym__double_quote_open] = ACTIONS(669), - [sym__superscript_open] = ACTIONS(671), - [sym__subscript_open] = ACTIONS(673), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(675), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(677), - [sym__cite_author_in_text] = ACTIONS(679), - [sym__cite_suppress_author] = ACTIONS(681), - [sym__shortcode_open_escaped] = ACTIONS(683), - [sym__shortcode_open] = ACTIONS(685), - [sym__unclosed_span] = ACTIONS(627), - }, - [STATE(91)] = { - [sym_backslash_escape] = STATE(277), - [sym_commonmark_attribute] = STATE(277), - [sym_code_span] = STATE(277), - [sym_latex_span] = STATE(277), - [sym_superscript] = STATE(277), - [sym_subscript] = STATE(277), - [sym_strikeout] = STATE(277), - [sym_quoted_span] = STATE(277), - [sym_inline_note] = STATE(277), - [sym_citation] = STATE(277), - [sym_shortcode_escaped] = STATE(277), - [sym_shortcode] = STATE(277), - [sym_note_reference] = STATE(277), - [sym__link_text] = STATE(427), - [sym__link_text_non_empty] = STATE(428), - [sym_inline_link] = STATE(99), - [sym_image] = STATE(277), - [sym__image_inline_link] = STATE(613), - [sym__image_description] = STATE(1930), - [sym__image_description_non_empty] = STATE(1930), - [sym_hard_line_break] = STATE(277), - [sym__whitespace] = STATE(610), - [sym__word] = STATE(610), - [sym__soft_line_break] = STATE(614), - [sym__inline_base] = STATE(99), - [sym__text_base] = STATE(277), - [sym__inline_element] = STATE(99), - [sym__emphasis_star] = STATE(1044), - [sym__strong_emphasis_star] = STATE(99), - [sym__emphasis_underscore] = STATE(1044), - [sym__strong_emphasis_underscore] = STATE(99), - [aux_sym_superscript_repeat1] = STATE(99), - [aux_sym__inline_base_repeat1] = STATE(277), - [sym__backslash_escape] = ACTIONS(687), - [sym_entity_reference] = ACTIONS(689), - [sym_numeric_character_reference] = ACTIONS(689), - [anon_sym_LT] = ACTIONS(691), - [anon_sym_GT] = ACTIONS(693), - [anon_sym_BANG] = ACTIONS(695), - [anon_sym_DQUOTE] = ACTIONS(693), - [anon_sym_POUND] = ACTIONS(693), - [anon_sym_DOLLAR] = ACTIONS(693), - [anon_sym_PERCENT] = ACTIONS(693), - [anon_sym_AMP] = ACTIONS(691), - [anon_sym_SQUOTE] = ACTIONS(693), - [anon_sym_STAR] = ACTIONS(693), - [anon_sym_PLUS] = ACTIONS(693), - [anon_sym_COMMA] = ACTIONS(693), - [anon_sym_DASH] = ACTIONS(691), - [anon_sym_DOT] = ACTIONS(691), - [anon_sym_SLASH] = ACTIONS(693), - [anon_sym_COLON] = ACTIONS(693), - [anon_sym_SEMI] = ACTIONS(693), - [anon_sym_EQ] = ACTIONS(693), - [anon_sym_QMARK] = ACTIONS(693), - [anon_sym_LBRACK] = ACTIONS(697), - [anon_sym_BSLASH] = ACTIONS(699), - [anon_sym_CARET] = ACTIONS(691), - [anon_sym__] = ACTIONS(693), - [anon_sym_BQUOTE] = ACTIONS(693), - [anon_sym_LBRACE] = ACTIONS(701), - [anon_sym_PIPE] = ACTIONS(693), - [anon_sym_TILDE] = ACTIONS(693), - [anon_sym_LPAREN] = ACTIONS(693), - [anon_sym_RPAREN] = ACTIONS(693), - [sym__newline_token] = ACTIONS(703), - [anon_sym_CARET_LBRACK] = ACTIONS(705), - [anon_sym_LBRACK_CARET] = ACTIONS(707), - [sym_uri_autolink] = ACTIONS(689), - [sym_email_autolink] = ACTIONS(689), - [sym__whitespace_ge_2] = ACTIONS(709), - [aux_sym__whitespace_token1] = ACTIONS(711), - [sym__word_no_digit] = ACTIONS(713), - [sym__digits] = ACTIONS(713), - [anon_sym_DASH_DASH] = ACTIONS(715), - [anon_sym_DASH_DASH_DASH] = ACTIONS(713), - [anon_sym_DOT_DOT_DOT] = ACTIONS(713), - [sym__code_span_start] = ACTIONS(717), - [sym__emphasis_open_star] = ACTIONS(719), - [sym__emphasis_open_underscore] = ACTIONS(721), - [sym__strikeout_open] = ACTIONS(723), - [sym__latex_span_start] = ACTIONS(725), - [sym__single_quote_open] = ACTIONS(727), - [sym__double_quote_open] = ACTIONS(729), - [sym__double_quote_close] = ACTIONS(1983), - [sym__superscript_open] = ACTIONS(731), - [sym__subscript_open] = ACTIONS(733), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(735), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(737), - [sym__cite_author_in_text] = ACTIONS(739), - [sym__cite_suppress_author] = ACTIONS(741), - [sym__shortcode_open_escaped] = ACTIONS(743), - [sym__shortcode_open] = ACTIONS(745), - [sym__unclosed_span] = ACTIONS(689), - }, - [STATE(92)] = { - [sym_backslash_escape] = STATE(262), - [sym_commonmark_attribute] = STATE(262), - [sym_code_span] = STATE(262), - [sym_latex_span] = STATE(262), - [sym_superscript] = STATE(262), - [sym_subscript] = STATE(262), - [sym_strikeout] = STATE(262), - [sym_quoted_span] = STATE(262), - [sym_inline_note] = STATE(262), - [sym_citation] = STATE(262), - [sym_shortcode_escaped] = STATE(262), - [sym_shortcode] = STATE(262), - [sym_note_reference] = STATE(262), - [sym__link_text] = STATE(313), - [sym__link_text_non_empty] = STATE(314), + [sym_backslash_escape] = STATE(366), + [sym_commonmark_attribute] = STATE(366), + [sym_code_span] = STATE(366), + [sym_latex_span] = STATE(366), + [sym_insert] = STATE(366), + [sym_delete] = STATE(366), + [sym_highlight] = STATE(366), + [sym_edit_comment] = STATE(366), + [sym_superscript] = STATE(366), + [sym_subscript] = STATE(366), + [sym_strikeout] = STATE(366), + [sym_quoted_span] = STATE(366), + [sym_inline_note] = STATE(366), + [sym_citation] = STATE(366), + [sym_shortcode_escaped] = STATE(366), + [sym_shortcode] = STATE(366), + [sym_note_reference] = STATE(366), + [sym__link_text] = STATE(490), + [sym__link_text_non_empty] = STATE(491), [sym_inline_link] = STATE(100), - [sym_image] = STATE(262), - [sym__image_inline_link] = STATE(708), - [sym__image_description] = STATE(1970), - [sym__image_description_non_empty] = STATE(1970), - [sym_hard_line_break] = STATE(262), - [sym__whitespace] = STATE(705), - [sym__word] = STATE(705), - [sym__soft_line_break] = STATE(709), + [sym_image] = STATE(366), + [sym__image_inline_link] = STATE(1244), + [sym__image_description] = STATE(2280), + [sym__image_description_non_empty] = STATE(2280), + [sym_hard_line_break] = STATE(366), + [sym__whitespace] = STATE(1218), + [sym__word] = STATE(1218), + [sym__soft_line_break] = STATE(1245), [sym__inline_base] = STATE(100), - [sym__text_base] = STATE(262), + [sym__text_base] = STATE(366), [sym__inline_element] = STATE(100), - [sym__emphasis_star] = STATE(1138), + [sym__emphasis_star] = STATE(1270), [sym__strong_emphasis_star] = STATE(100), - [sym__emphasis_underscore] = STATE(1138), + [sym__emphasis_underscore] = STATE(1270), [sym__strong_emphasis_underscore] = STATE(100), - [aux_sym_superscript_repeat1] = STATE(100), - [aux_sym__inline_base_repeat1] = STATE(262), - [sym__backslash_escape] = ACTIONS(747), - [sym_entity_reference] = ACTIONS(749), - [sym_numeric_character_reference] = ACTIONS(749), - [anon_sym_LT] = ACTIONS(751), - [anon_sym_GT] = ACTIONS(753), - [anon_sym_BANG] = ACTIONS(755), - [anon_sym_DQUOTE] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(753), - [anon_sym_DOLLAR] = ACTIONS(753), - [anon_sym_PERCENT] = ACTIONS(753), - [anon_sym_AMP] = ACTIONS(751), - [anon_sym_SQUOTE] = ACTIONS(753), - [anon_sym_STAR] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(753), - [anon_sym_COMMA] = ACTIONS(753), - [anon_sym_DASH] = ACTIONS(751), - [anon_sym_DOT] = ACTIONS(751), - [anon_sym_SLASH] = ACTIONS(753), - [anon_sym_COLON] = ACTIONS(753), - [anon_sym_SEMI] = ACTIONS(753), - [anon_sym_EQ] = ACTIONS(753), - [anon_sym_QMARK] = ACTIONS(753), - [anon_sym_LBRACK] = ACTIONS(757), - [anon_sym_BSLASH] = ACTIONS(759), - [anon_sym_CARET] = ACTIONS(751), - [anon_sym__] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(753), - [anon_sym_LBRACE] = ACTIONS(761), - [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_TILDE] = ACTIONS(753), - [anon_sym_LPAREN] = ACTIONS(753), - [anon_sym_RPAREN] = ACTIONS(753), - [sym__newline_token] = ACTIONS(763), - [anon_sym_CARET_LBRACK] = ACTIONS(765), - [anon_sym_LBRACK_CARET] = ACTIONS(767), - [sym_uri_autolink] = ACTIONS(749), - [sym_email_autolink] = ACTIONS(749), - [sym__whitespace_ge_2] = ACTIONS(769), - [aux_sym__whitespace_token1] = ACTIONS(771), - [sym__word_no_digit] = ACTIONS(773), - [sym__digits] = ACTIONS(773), - [anon_sym_DASH_DASH] = ACTIONS(775), - [anon_sym_DASH_DASH_DASH] = ACTIONS(773), - [anon_sym_DOT_DOT_DOT] = ACTIONS(773), - [sym__code_span_start] = ACTIONS(777), - [sym__emphasis_open_star] = ACTIONS(779), - [sym__emphasis_open_underscore] = ACTIONS(781), - [sym__strikeout_open] = ACTIONS(783), - [sym__latex_span_start] = ACTIONS(785), - [sym__single_quote_open] = ACTIONS(787), - [sym__double_quote_open] = ACTIONS(789), - [sym__superscript_open] = ACTIONS(791), - [sym__superscript_close] = ACTIONS(1985), - [sym__subscript_open] = ACTIONS(795), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(797), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(799), - [sym__cite_author_in_text] = ACTIONS(801), - [sym__cite_suppress_author] = ACTIONS(803), - [sym__shortcode_open_escaped] = ACTIONS(805), - [sym__shortcode_open] = ACTIONS(807), - [sym__unclosed_span] = ACTIONS(749), + [aux_sym_insert_repeat1] = STATE(100), + [aux_sym__inline_base_repeat1] = STATE(366), + [sym__backslash_escape] = ACTIONS(2005), + [sym_entity_reference] = ACTIONS(2007), + [sym_numeric_character_reference] = ACTIONS(2007), + [anon_sym_LT] = ACTIONS(2009), + [anon_sym_GT] = ACTIONS(2011), + [anon_sym_BANG] = ACTIONS(2013), + [anon_sym_DQUOTE] = ACTIONS(2011), + [anon_sym_POUND] = ACTIONS(2011), + [anon_sym_DOLLAR] = ACTIONS(2011), + [anon_sym_PERCENT] = ACTIONS(2011), + [anon_sym_AMP] = ACTIONS(2009), + [anon_sym_SQUOTE] = ACTIONS(2011), + [anon_sym_STAR] = ACTIONS(2011), + [anon_sym_PLUS] = ACTIONS(2011), + [anon_sym_COMMA] = ACTIONS(2011), + [anon_sym_DASH] = ACTIONS(2009), + [anon_sym_DOT] = ACTIONS(2009), + [anon_sym_SLASH] = ACTIONS(2011), + [anon_sym_COLON] = ACTIONS(2011), + [anon_sym_SEMI] = ACTIONS(2011), + [anon_sym_EQ] = ACTIONS(2011), + [anon_sym_QMARK] = ACTIONS(2011), + [anon_sym_LBRACK] = ACTIONS(2015), + [anon_sym_BSLASH] = ACTIONS(2017), + [anon_sym_CARET] = ACTIONS(2009), + [anon_sym__] = ACTIONS(2011), + [anon_sym_BQUOTE] = ACTIONS(2011), + [anon_sym_LBRACE] = ACTIONS(2019), + [anon_sym_PIPE] = ACTIONS(2011), + [anon_sym_TILDE] = ACTIONS(2011), + [anon_sym_LPAREN] = ACTIONS(2011), + [anon_sym_RPAREN] = ACTIONS(2011), + [sym__newline_token] = ACTIONS(2021), + [aux_sym_insert_token1] = ACTIONS(2023), + [aux_sym_delete_token1] = ACTIONS(2025), + [aux_sym_highlight_token1] = ACTIONS(2027), + [aux_sym_edit_comment_token1] = ACTIONS(2029), + [anon_sym_CARET_LBRACK] = ACTIONS(2031), + [anon_sym_LBRACK_CARET] = ACTIONS(2033), + [sym_uri_autolink] = ACTIONS(2007), + [sym_email_autolink] = ACTIONS(2007), + [sym__whitespace_ge_2] = ACTIONS(2035), + [aux_sym__whitespace_token1] = ACTIONS(2037), + [sym__word_no_digit] = ACTIONS(2039), + [sym__digits] = ACTIONS(2039), + [anon_sym_DASH_DASH] = ACTIONS(2041), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2039), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2039), + [sym__code_span_start] = ACTIONS(2043), + [sym__emphasis_open_star] = ACTIONS(2045), + [sym__emphasis_open_underscore] = ACTIONS(2047), + [sym__strikeout_open] = ACTIONS(2049), + [sym__strikeout_close] = ACTIONS(2399), + [sym__latex_span_start] = ACTIONS(2053), + [sym__single_quote_open] = ACTIONS(2055), + [sym__double_quote_open] = ACTIONS(2057), + [sym__superscript_open] = ACTIONS(2059), + [sym__subscript_open] = ACTIONS(2061), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2063), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2065), + [sym__cite_author_in_text] = ACTIONS(2067), + [sym__cite_suppress_author] = ACTIONS(2069), + [sym__shortcode_open_escaped] = ACTIONS(2071), + [sym__shortcode_open] = ACTIONS(2073), + [sym__unclosed_span] = ACTIONS(2007), }, - [STATE(93)] = { - [sym_backslash_escape] = STATE(270), - [sym_commonmark_attribute] = STATE(270), - [sym_code_span] = STATE(270), - [sym_latex_span] = STATE(270), - [sym_superscript] = STATE(270), - [sym_subscript] = STATE(270), - [sym_strikeout] = STATE(270), - [sym_quoted_span] = STATE(270), - [sym_inline_note] = STATE(270), - [sym_citation] = STATE(270), - [sym_shortcode_escaped] = STATE(270), - [sym_shortcode] = STATE(270), - [sym_note_reference] = STATE(270), - [sym__link_text] = STATE(359), - [sym__link_text_non_empty] = STATE(364), + [STATE(89)] = { + [sym_backslash_escape] = STATE(375), + [sym_commonmark_attribute] = STATE(375), + [sym_code_span] = STATE(375), + [sym_latex_span] = STATE(375), + [sym_insert] = STATE(375), + [sym_delete] = STATE(375), + [sym_highlight] = STATE(375), + [sym_edit_comment] = STATE(375), + [sym_superscript] = STATE(375), + [sym_subscript] = STATE(375), + [sym_strikeout] = STATE(375), + [sym_quoted_span] = STATE(375), + [sym_inline_note] = STATE(375), + [sym_citation] = STATE(375), + [sym_shortcode_escaped] = STATE(375), + [sym_shortcode] = STATE(375), + [sym_note_reference] = STATE(375), + [sym__link_text] = STATE(525), + [sym__link_text_non_empty] = STATE(527), [sym_inline_link] = STATE(101), - [sym_image] = STATE(270), - [sym__image_inline_link] = STATE(795), - [sym__image_description] = STATE(1984), - [sym__image_description_non_empty] = STATE(1984), - [sym_hard_line_break] = STATE(270), - [sym__whitespace] = STATE(792), - [sym__word] = STATE(792), - [sym__soft_line_break] = STATE(796), + [sym_image] = STATE(375), + [sym__image_inline_link] = STATE(972), + [sym__image_description] = STATE(2286), + [sym__image_description_non_empty] = STATE(2286), + [sym_hard_line_break] = STATE(375), + [sym__whitespace] = STATE(949), + [sym__word] = STATE(949), + [sym__soft_line_break] = STATE(973), [sym__inline_base] = STATE(101), - [sym__text_base] = STATE(270), + [sym__text_base] = STATE(375), [sym__inline_element] = STATE(101), - [sym__emphasis_star] = STATE(615), + [sym__emphasis_star] = STATE(1392), [sym__strong_emphasis_star] = STATE(101), - [sym__emphasis_underscore] = STATE(615), + [sym__emphasis_underscore] = STATE(1392), [sym__strong_emphasis_underscore] = STATE(101), - [aux_sym_superscript_repeat1] = STATE(101), - [aux_sym__inline_base_repeat1] = STATE(270), - [sym__backslash_escape] = ACTIONS(809), - [sym_entity_reference] = ACTIONS(811), - [sym_numeric_character_reference] = ACTIONS(811), - [anon_sym_LT] = ACTIONS(813), - [anon_sym_GT] = ACTIONS(815), - [anon_sym_BANG] = ACTIONS(817), - [anon_sym_DQUOTE] = ACTIONS(815), - [anon_sym_POUND] = ACTIONS(815), - [anon_sym_DOLLAR] = ACTIONS(815), - [anon_sym_PERCENT] = ACTIONS(815), - [anon_sym_AMP] = ACTIONS(813), - [anon_sym_SQUOTE] = ACTIONS(815), - [anon_sym_STAR] = ACTIONS(815), - [anon_sym_PLUS] = ACTIONS(815), - [anon_sym_COMMA] = ACTIONS(815), - [anon_sym_DASH] = ACTIONS(813), - [anon_sym_DOT] = ACTIONS(813), - [anon_sym_SLASH] = ACTIONS(815), - [anon_sym_COLON] = ACTIONS(815), - [anon_sym_SEMI] = ACTIONS(815), - [anon_sym_EQ] = ACTIONS(815), - [anon_sym_QMARK] = ACTIONS(815), - [anon_sym_LBRACK] = ACTIONS(819), - [anon_sym_BSLASH] = ACTIONS(821), - [anon_sym_CARET] = ACTIONS(813), - [anon_sym__] = ACTIONS(815), - [anon_sym_BQUOTE] = ACTIONS(815), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_PIPE] = ACTIONS(815), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_RPAREN] = ACTIONS(815), - [sym__newline_token] = ACTIONS(825), - [anon_sym_CARET_LBRACK] = ACTIONS(827), - [anon_sym_LBRACK_CARET] = ACTIONS(829), - [sym_uri_autolink] = ACTIONS(811), - [sym_email_autolink] = ACTIONS(811), - [sym__whitespace_ge_2] = ACTIONS(831), - [aux_sym__whitespace_token1] = ACTIONS(833), - [sym__word_no_digit] = ACTIONS(835), - [sym__digits] = ACTIONS(835), - [anon_sym_DASH_DASH] = ACTIONS(837), - [anon_sym_DASH_DASH_DASH] = ACTIONS(835), - [anon_sym_DOT_DOT_DOT] = ACTIONS(835), - [sym__code_span_start] = ACTIONS(839), - [sym__emphasis_open_star] = ACTIONS(841), - [sym__emphasis_open_underscore] = ACTIONS(843), - [sym__strikeout_open] = ACTIONS(845), - [sym__latex_span_start] = ACTIONS(847), - [sym__single_quote_open] = ACTIONS(849), - [sym__double_quote_open] = ACTIONS(851), - [sym__superscript_open] = ACTIONS(853), - [sym__subscript_open] = ACTIONS(855), - [sym__subscript_close] = ACTIONS(1987), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(859), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(861), - [sym__cite_author_in_text] = ACTIONS(863), - [sym__cite_suppress_author] = ACTIONS(865), - [sym__shortcode_open_escaped] = ACTIONS(867), - [sym__shortcode_open] = ACTIONS(869), - [sym__unclosed_span] = ACTIONS(811), + [aux_sym_insert_repeat1] = STATE(101), + [aux_sym__inline_base_repeat1] = STATE(375), + [sym__backslash_escape] = ACTIONS(2179), + [sym_entity_reference] = ACTIONS(2181), + [sym_numeric_character_reference] = ACTIONS(2181), + [anon_sym_LT] = ACTIONS(2183), + [anon_sym_GT] = ACTIONS(2185), + [anon_sym_BANG] = ACTIONS(2187), + [anon_sym_DQUOTE] = ACTIONS(2185), + [anon_sym_POUND] = ACTIONS(2185), + [anon_sym_DOLLAR] = ACTIONS(2185), + [anon_sym_PERCENT] = ACTIONS(2185), + [anon_sym_AMP] = ACTIONS(2183), + [anon_sym_SQUOTE] = ACTIONS(2185), + [anon_sym_STAR] = ACTIONS(2185), + [anon_sym_PLUS] = ACTIONS(2185), + [anon_sym_COMMA] = ACTIONS(2185), + [anon_sym_DASH] = ACTIONS(2183), + [anon_sym_DOT] = ACTIONS(2183), + [anon_sym_SLASH] = ACTIONS(2185), + [anon_sym_COLON] = ACTIONS(2185), + [anon_sym_SEMI] = ACTIONS(2185), + [anon_sym_EQ] = ACTIONS(2185), + [anon_sym_QMARK] = ACTIONS(2185), + [anon_sym_LBRACK] = ACTIONS(2189), + [anon_sym_BSLASH] = ACTIONS(2191), + [anon_sym_CARET] = ACTIONS(2183), + [anon_sym__] = ACTIONS(2185), + [anon_sym_BQUOTE] = ACTIONS(2185), + [anon_sym_LBRACE] = ACTIONS(2193), + [anon_sym_PIPE] = ACTIONS(2185), + [anon_sym_TILDE] = ACTIONS(2185), + [anon_sym_LPAREN] = ACTIONS(2185), + [anon_sym_RPAREN] = ACTIONS(2185), + [sym__newline_token] = ACTIONS(2195), + [aux_sym_insert_token1] = ACTIONS(2197), + [aux_sym_delete_token1] = ACTIONS(2199), + [aux_sym_highlight_token1] = ACTIONS(2201), + [aux_sym_edit_comment_token1] = ACTIONS(2203), + [anon_sym_CARET_LBRACK] = ACTIONS(2205), + [anon_sym_LBRACK_CARET] = ACTIONS(2207), + [sym_uri_autolink] = ACTIONS(2181), + [sym_email_autolink] = ACTIONS(2181), + [sym__whitespace_ge_2] = ACTIONS(2209), + [aux_sym__whitespace_token1] = ACTIONS(2211), + [sym__word_no_digit] = ACTIONS(2213), + [sym__digits] = ACTIONS(2213), + [anon_sym_DASH_DASH] = ACTIONS(2215), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2213), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2213), + [sym__code_span_start] = ACTIONS(2217), + [sym__emphasis_open_star] = ACTIONS(2219), + [sym__emphasis_open_underscore] = ACTIONS(2221), + [sym__strikeout_open] = ACTIONS(2223), + [sym__latex_span_start] = ACTIONS(2225), + [sym__single_quote_open] = ACTIONS(2227), + [sym__single_quote_close] = ACTIONS(2401), + [sym__double_quote_open] = ACTIONS(2229), + [sym__superscript_open] = ACTIONS(2231), + [sym__subscript_open] = ACTIONS(2233), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2235), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2237), + [sym__cite_author_in_text] = ACTIONS(2239), + [sym__cite_suppress_author] = ACTIONS(2241), + [sym__shortcode_open_escaped] = ACTIONS(2243), + [sym__shortcode_open] = ACTIONS(2245), + [sym__unclosed_span] = ACTIONS(2181), }, - [STATE(94)] = { - [sym_backslash_escape] = STATE(261), - [sym_commonmark_attribute] = STATE(261), - [sym_code_span] = STATE(261), - [sym_latex_span] = STATE(261), - [sym_superscript] = STATE(261), - [sym_subscript] = STATE(261), - [sym_strikeout] = STATE(261), - [sym_quoted_span] = STATE(261), - [sym_inline_note] = STATE(261), - [sym_citation] = STATE(261), - [sym_shortcode_escaped] = STATE(261), - [sym_shortcode] = STATE(261), - [sym_note_reference] = STATE(261), - [sym__link_text] = STATE(322), - [sym__link_text_non_empty] = STATE(323), - [sym_inline_link] = STATE(60), - [sym_image] = STATE(261), - [sym__image_inline_link] = STATE(595), - [sym__image_description] = STATE(1972), - [sym__image_description_non_empty] = STATE(1972), - [sym_hard_line_break] = STATE(261), - [sym__whitespace] = STATE(587), - [sym__word] = STATE(587), - [sym__soft_line_break] = STATE(597), - [sym__inline_base] = STATE(60), - [sym__text_base] = STATE(261), - [sym__inline_element_no_star] = STATE(60), - [aux_sym__inline_no_star] = STATE(60), + [STATE(90)] = { + [sym_backslash_escape] = STATE(383), + [sym_commonmark_attribute] = STATE(383), + [sym_code_span] = STATE(383), + [sym_latex_span] = STATE(383), + [sym_insert] = STATE(383), + [sym_delete] = STATE(383), + [sym_highlight] = STATE(383), + [sym_edit_comment] = STATE(383), + [sym_superscript] = STATE(383), + [sym_subscript] = STATE(383), + [sym_strikeout] = STATE(383), + [sym_quoted_span] = STATE(383), + [sym_inline_note] = STATE(383), + [sym_citation] = STATE(383), + [sym_shortcode_escaped] = STATE(383), + [sym_shortcode] = STATE(383), + [sym_note_reference] = STATE(383), + [sym__link_text] = STATE(395), + [sym__link_text_non_empty] = STATE(396), + [sym_inline_link] = STATE(102), + [sym_image] = STATE(383), + [sym__image_inline_link] = STATE(1263), + [sym__image_description] = STATE(2300), + [sym__image_description_non_empty] = STATE(2300), + [sym_hard_line_break] = STATE(383), + [sym__whitespace] = STATE(1259), + [sym__word] = STATE(1259), + [sym__soft_line_break] = STATE(1264), + [sym__inline_base] = STATE(102), + [sym__text_base] = STATE(383), + [sym__inline_element] = STATE(102), + [sym__emphasis_star] = STATE(1249), + [sym__strong_emphasis_star] = STATE(102), + [sym__emphasis_underscore] = STATE(1249), + [sym__strong_emphasis_underscore] = STATE(102), + [aux_sym_insert_repeat1] = STATE(102), + [aux_sym__inline_base_repeat1] = STATE(383), + [sym__backslash_escape] = ACTIONS(637), + [sym_entity_reference] = ACTIONS(639), + [sym_numeric_character_reference] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_GT] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(645), + [anon_sym_DQUOTE] = ACTIONS(643), + [anon_sym_POUND] = ACTIONS(643), + [anon_sym_DOLLAR] = ACTIONS(643), + [anon_sym_PERCENT] = ACTIONS(643), + [anon_sym_AMP] = ACTIONS(641), + [anon_sym_SQUOTE] = ACTIONS(643), + [anon_sym_STAR] = ACTIONS(643), + [anon_sym_PLUS] = ACTIONS(643), + [anon_sym_COMMA] = ACTIONS(643), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_DOT] = ACTIONS(641), + [anon_sym_SLASH] = ACTIONS(643), + [anon_sym_COLON] = ACTIONS(643), + [anon_sym_SEMI] = ACTIONS(643), + [anon_sym_EQ] = ACTIONS(643), + [anon_sym_QMARK] = ACTIONS(643), + [anon_sym_LBRACK] = ACTIONS(647), + [anon_sym_BSLASH] = ACTIONS(649), + [anon_sym_CARET] = ACTIONS(641), + [anon_sym__] = ACTIONS(643), + [anon_sym_BQUOTE] = ACTIONS(643), + [anon_sym_LBRACE] = ACTIONS(651), + [anon_sym_PIPE] = ACTIONS(643), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_LPAREN] = ACTIONS(643), + [anon_sym_RPAREN] = ACTIONS(643), + [sym__newline_token] = ACTIONS(653), + [aux_sym_insert_token1] = ACTIONS(655), + [aux_sym_delete_token1] = ACTIONS(657), + [aux_sym_highlight_token1] = ACTIONS(659), + [aux_sym_edit_comment_token1] = ACTIONS(661), + [anon_sym_CARET_LBRACK] = ACTIONS(663), + [anon_sym_LBRACK_CARET] = ACTIONS(665), + [sym_uri_autolink] = ACTIONS(639), + [sym_email_autolink] = ACTIONS(639), + [sym__whitespace_ge_2] = ACTIONS(667), + [aux_sym__whitespace_token1] = ACTIONS(669), + [sym__word_no_digit] = ACTIONS(671), + [sym__digits] = ACTIONS(671), + [anon_sym_DASH_DASH] = ACTIONS(673), + [anon_sym_DASH_DASH_DASH] = ACTIONS(671), + [anon_sym_DOT_DOT_DOT] = ACTIONS(671), + [sym__code_span_start] = ACTIONS(675), + [sym__emphasis_open_star] = ACTIONS(677), + [sym__emphasis_open_underscore] = ACTIONS(679), + [sym__strikeout_open] = ACTIONS(681), + [sym__latex_span_start] = ACTIONS(683), + [sym__single_quote_open] = ACTIONS(685), + [sym__double_quote_open] = ACTIONS(687), + [sym__double_quote_close] = ACTIONS(2401), + [sym__superscript_open] = ACTIONS(691), + [sym__subscript_open] = ACTIONS(693), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(695), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(697), + [sym__cite_author_in_text] = ACTIONS(699), + [sym__cite_suppress_author] = ACTIONS(701), + [sym__shortcode_open_escaped] = ACTIONS(703), + [sym__shortcode_open] = ACTIONS(705), + [sym__unclosed_span] = ACTIONS(639), + }, + [STATE(91)] = { + [sym_backslash_escape] = STATE(365), + [sym_commonmark_attribute] = STATE(365), + [sym_code_span] = STATE(365), + [sym_latex_span] = STATE(365), + [sym_insert] = STATE(365), + [sym_delete] = STATE(365), + [sym_highlight] = STATE(365), + [sym_edit_comment] = STATE(365), + [sym_superscript] = STATE(365), + [sym_subscript] = STATE(365), + [sym_strikeout] = STATE(365), + [sym_quoted_span] = STATE(365), + [sym_inline_note] = STATE(365), + [sym_citation] = STATE(365), + [sym_shortcode_escaped] = STATE(365), + [sym_shortcode] = STATE(365), + [sym_note_reference] = STATE(365), + [sym__link_text] = STATE(416), + [sym__link_text_non_empty] = STATE(417), + [sym_inline_link] = STATE(103), + [sym_image] = STATE(365), + [sym__image_inline_link] = STATE(712), + [sym__image_description] = STATE(2314), + [sym__image_description_non_empty] = STATE(2314), + [sym_hard_line_break] = STATE(365), + [sym__whitespace] = STATE(709), + [sym__word] = STATE(709), + [sym__soft_line_break] = STATE(713), + [sym__inline_base] = STATE(103), + [sym__text_base] = STATE(365), + [sym__inline_element] = STATE(103), [sym__emphasis_star] = STATE(979), - [sym__strong_emphasis_star] = STATE(60), - [sym__emphasis_underscore] = STATE(544), - [sym__strong_emphasis_underscore] = STATE(60), - [aux_sym__inline_base_repeat1] = STATE(261), - [sym__backslash_escape] = ACTIONS(969), - [sym_entity_reference] = ACTIONS(971), - [sym_numeric_character_reference] = ACTIONS(971), - [anon_sym_LT] = ACTIONS(973), - [anon_sym_GT] = ACTIONS(975), - [anon_sym_BANG] = ACTIONS(977), - [anon_sym_DQUOTE] = ACTIONS(975), - [anon_sym_POUND] = ACTIONS(975), - [anon_sym_DOLLAR] = ACTIONS(975), - [anon_sym_PERCENT] = ACTIONS(975), - [anon_sym_AMP] = ACTIONS(973), - [anon_sym_SQUOTE] = ACTIONS(975), - [anon_sym_STAR] = ACTIONS(975), - [anon_sym_PLUS] = ACTIONS(975), - [anon_sym_COMMA] = ACTIONS(975), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_DOT] = ACTIONS(973), - [anon_sym_SLASH] = ACTIONS(975), - [anon_sym_COLON] = ACTIONS(975), - [anon_sym_SEMI] = ACTIONS(975), - [anon_sym_EQ] = ACTIONS(975), - [anon_sym_QMARK] = ACTIONS(975), - [anon_sym_LBRACK] = ACTIONS(979), - [anon_sym_BSLASH] = ACTIONS(981), - [anon_sym_CARET] = ACTIONS(973), - [anon_sym__] = ACTIONS(975), - [anon_sym_BQUOTE] = ACTIONS(975), - [anon_sym_LBRACE] = ACTIONS(983), - [anon_sym_PIPE] = ACTIONS(975), - [anon_sym_TILDE] = ACTIONS(975), - [anon_sym_LPAREN] = ACTIONS(975), - [anon_sym_RPAREN] = ACTIONS(975), - [sym__newline_token] = ACTIONS(985), - [anon_sym_CARET_LBRACK] = ACTIONS(987), - [anon_sym_LBRACK_CARET] = ACTIONS(989), - [sym_uri_autolink] = ACTIONS(971), - [sym_email_autolink] = ACTIONS(971), - [sym__whitespace_ge_2] = ACTIONS(991), - [aux_sym__whitespace_token1] = ACTIONS(993), - [sym__word_no_digit] = ACTIONS(995), - [sym__digits] = ACTIONS(995), - [anon_sym_DASH_DASH] = ACTIONS(997), - [anon_sym_DASH_DASH_DASH] = ACTIONS(995), - [anon_sym_DOT_DOT_DOT] = ACTIONS(995), - [sym__code_span_start] = ACTIONS(999), - [sym__emphasis_open_star] = ACTIONS(1001), - [sym__emphasis_open_underscore] = ACTIONS(1003), - [sym__last_token_punctuation] = ACTIONS(1989), - [sym__strikeout_open] = ACTIONS(1007), - [sym__latex_span_start] = ACTIONS(1009), - [sym__single_quote_open] = ACTIONS(1011), - [sym__double_quote_open] = ACTIONS(1013), - [sym__superscript_open] = ACTIONS(1015), - [sym__subscript_open] = ACTIONS(1017), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1019), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1021), - [sym__cite_author_in_text] = ACTIONS(1023), - [sym__cite_suppress_author] = ACTIONS(1025), - [sym__shortcode_open_escaped] = ACTIONS(1027), - [sym__shortcode_open] = ACTIONS(1029), - [sym__unclosed_span] = ACTIONS(971), + [sym__strong_emphasis_star] = STATE(103), + [sym__emphasis_underscore] = STATE(979), + [sym__strong_emphasis_underscore] = STATE(103), + [aux_sym_insert_repeat1] = STATE(103), + [aux_sym__inline_base_repeat1] = STATE(365), + [sym__backslash_escape] = ACTIONS(1341), + [sym_entity_reference] = ACTIONS(1343), + [sym_numeric_character_reference] = ACTIONS(1343), + [anon_sym_LT] = ACTIONS(1345), + [anon_sym_GT] = ACTIONS(1347), + [anon_sym_BANG] = ACTIONS(1349), + [anon_sym_DQUOTE] = ACTIONS(1347), + [anon_sym_POUND] = ACTIONS(1347), + [anon_sym_DOLLAR] = ACTIONS(1347), + [anon_sym_PERCENT] = ACTIONS(1347), + [anon_sym_AMP] = ACTIONS(1345), + [anon_sym_SQUOTE] = ACTIONS(1347), + [anon_sym_STAR] = ACTIONS(1347), + [anon_sym_PLUS] = ACTIONS(1347), + [anon_sym_COMMA] = ACTIONS(1347), + [anon_sym_DASH] = ACTIONS(1345), + [anon_sym_DOT] = ACTIONS(1345), + [anon_sym_SLASH] = ACTIONS(1347), + [anon_sym_COLON] = ACTIONS(1347), + [anon_sym_SEMI] = ACTIONS(1347), + [anon_sym_EQ] = ACTIONS(1347), + [anon_sym_QMARK] = ACTIONS(1347), + [anon_sym_LBRACK] = ACTIONS(1351), + [anon_sym_BSLASH] = ACTIONS(1353), + [anon_sym_CARET] = ACTIONS(1345), + [anon_sym__] = ACTIONS(1347), + [anon_sym_BQUOTE] = ACTIONS(1347), + [anon_sym_LBRACE] = ACTIONS(1355), + [anon_sym_PIPE] = ACTIONS(1347), + [anon_sym_TILDE] = ACTIONS(1347), + [anon_sym_LPAREN] = ACTIONS(1347), + [anon_sym_RPAREN] = ACTIONS(1347), + [sym__newline_token] = ACTIONS(1357), + [aux_sym_insert_token1] = ACTIONS(1359), + [aux_sym_delete_token1] = ACTIONS(1361), + [aux_sym_highlight_token1] = ACTIONS(1363), + [aux_sym_edit_comment_token1] = ACTIONS(1365), + [anon_sym_CARET_LBRACK] = ACTIONS(1367), + [anon_sym_LBRACK_CARET] = ACTIONS(1369), + [sym_uri_autolink] = ACTIONS(1343), + [sym_email_autolink] = ACTIONS(1343), + [sym__whitespace_ge_2] = ACTIONS(1371), + [aux_sym__whitespace_token1] = ACTIONS(1373), + [sym__word_no_digit] = ACTIONS(1375), + [sym__digits] = ACTIONS(1375), + [anon_sym_DASH_DASH] = ACTIONS(1377), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1375), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1375), + [sym__code_span_start] = ACTIONS(1379), + [sym__emphasis_open_star] = ACTIONS(1381), + [sym__emphasis_open_underscore] = ACTIONS(1383), + [sym__strikeout_open] = ACTIONS(1385), + [sym__latex_span_start] = ACTIONS(1387), + [sym__single_quote_open] = ACTIONS(1389), + [sym__double_quote_open] = ACTIONS(1391), + [sym__superscript_open] = ACTIONS(1393), + [sym__superscript_close] = ACTIONS(2403), + [sym__subscript_open] = ACTIONS(1397), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1399), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1401), + [sym__cite_author_in_text] = ACTIONS(1403), + [sym__cite_suppress_author] = ACTIONS(1405), + [sym__shortcode_open_escaped] = ACTIONS(1407), + [sym__shortcode_open] = ACTIONS(1409), + [sym__unclosed_span] = ACTIONS(1343), }, - [STATE(95)] = { - [sym_backslash_escape] = STATE(261), - [sym_commonmark_attribute] = STATE(261), - [sym_code_span] = STATE(261), - [sym_latex_span] = STATE(261), - [sym_superscript] = STATE(261), - [sym_subscript] = STATE(261), - [sym_strikeout] = STATE(261), - [sym_quoted_span] = STATE(261), - [sym_inline_note] = STATE(261), - [sym_citation] = STATE(261), - [sym_shortcode_escaped] = STATE(261), - [sym_shortcode] = STATE(261), - [sym_note_reference] = STATE(261), - [sym__link_text] = STATE(322), - [sym__link_text_non_empty] = STATE(323), - [sym_inline_link] = STATE(39), - [sym_image] = STATE(261), - [sym__image_inline_link] = STATE(595), - [sym__image_description] = STATE(1972), - [sym__image_description_non_empty] = STATE(1972), - [sym_hard_line_break] = STATE(261), - [sym__whitespace] = STATE(587), - [sym__word] = STATE(587), - [sym__soft_line_break] = STATE(597), - [sym__inline_base] = STATE(39), - [sym__text_base] = STATE(261), - [sym__inline_element_no_star] = STATE(39), - [aux_sym__inline_no_star] = STATE(39), - [sym__emphasis_star] = STATE(544), - [sym__strong_emphasis_star] = STATE(39), - [sym__emphasis_underscore] = STATE(544), - [sym__strong_emphasis_underscore] = STATE(39), - [aux_sym__inline_base_repeat1] = STATE(261), - [sym__backslash_escape] = ACTIONS(969), - [sym_entity_reference] = ACTIONS(971), - [sym_numeric_character_reference] = ACTIONS(971), - [anon_sym_LT] = ACTIONS(973), - [anon_sym_GT] = ACTIONS(975), - [anon_sym_BANG] = ACTIONS(977), - [anon_sym_DQUOTE] = ACTIONS(975), - [anon_sym_POUND] = ACTIONS(975), - [anon_sym_DOLLAR] = ACTIONS(975), - [anon_sym_PERCENT] = ACTIONS(975), - [anon_sym_AMP] = ACTIONS(973), - [anon_sym_SQUOTE] = ACTIONS(975), - [anon_sym_STAR] = ACTIONS(975), - [anon_sym_PLUS] = ACTIONS(975), - [anon_sym_COMMA] = ACTIONS(975), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_DOT] = ACTIONS(973), - [anon_sym_SLASH] = ACTIONS(975), - [anon_sym_COLON] = ACTIONS(975), - [anon_sym_SEMI] = ACTIONS(975), - [anon_sym_EQ] = ACTIONS(975), - [anon_sym_QMARK] = ACTIONS(975), - [anon_sym_LBRACK] = ACTIONS(979), - [anon_sym_BSLASH] = ACTIONS(981), - [anon_sym_CARET] = ACTIONS(973), - [anon_sym__] = ACTIONS(975), - [anon_sym_BQUOTE] = ACTIONS(975), - [anon_sym_LBRACE] = ACTIONS(983), - [anon_sym_PIPE] = ACTIONS(975), - [anon_sym_TILDE] = ACTIONS(975), - [anon_sym_LPAREN] = ACTIONS(975), - [anon_sym_RPAREN] = ACTIONS(975), - [sym__newline_token] = ACTIONS(985), - [anon_sym_CARET_LBRACK] = ACTIONS(987), - [anon_sym_LBRACK_CARET] = ACTIONS(989), - [sym_uri_autolink] = ACTIONS(971), - [sym_email_autolink] = ACTIONS(971), - [sym__whitespace_ge_2] = ACTIONS(991), - [aux_sym__whitespace_token1] = ACTIONS(993), - [sym__word_no_digit] = ACTIONS(995), - [sym__digits] = ACTIONS(995), - [anon_sym_DASH_DASH] = ACTIONS(997), - [anon_sym_DASH_DASH_DASH] = ACTIONS(995), - [anon_sym_DOT_DOT_DOT] = ACTIONS(995), - [sym__code_span_start] = ACTIONS(999), - [sym__emphasis_open_star] = ACTIONS(1001), - [sym__emphasis_open_underscore] = ACTIONS(1003), - [sym__emphasis_close_star] = ACTIONS(1991), - [sym__strikeout_open] = ACTIONS(1007), - [sym__latex_span_start] = ACTIONS(1009), - [sym__single_quote_open] = ACTIONS(1011), - [sym__double_quote_open] = ACTIONS(1013), - [sym__superscript_open] = ACTIONS(1015), - [sym__subscript_open] = ACTIONS(1017), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1019), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1021), - [sym__cite_author_in_text] = ACTIONS(1023), - [sym__cite_suppress_author] = ACTIONS(1025), - [sym__shortcode_open_escaped] = ACTIONS(1027), - [sym__shortcode_open] = ACTIONS(1029), - [sym__unclosed_span] = ACTIONS(971), + [STATE(92)] = { + [sym_backslash_escape] = STATE(367), + [sym_commonmark_attribute] = STATE(367), + [sym_code_span] = STATE(367), + [sym_latex_span] = STATE(367), + [sym_insert] = STATE(367), + [sym_delete] = STATE(367), + [sym_highlight] = STATE(367), + [sym_edit_comment] = STATE(367), + [sym_superscript] = STATE(367), + [sym_subscript] = STATE(367), + [sym_strikeout] = STATE(367), + [sym_quoted_span] = STATE(367), + [sym_inline_note] = STATE(367), + [sym_citation] = STATE(367), + [sym_shortcode_escaped] = STATE(367), + [sym_shortcode] = STATE(367), + [sym_note_reference] = STATE(367), + [sym__link_text] = STATE(435), + [sym__link_text_non_empty] = STATE(436), + [sym_inline_link] = STATE(104), + [sym_image] = STATE(367), + [sym__image_inline_link] = STATE(819), + [sym__image_description] = STATE(2328), + [sym__image_description_non_empty] = STATE(2328), + [sym_hard_line_break] = STATE(367), + [sym__whitespace] = STATE(816), + [sym__word] = STATE(816), + [sym__soft_line_break] = STATE(820), + [sym__inline_base] = STATE(104), + [sym__text_base] = STATE(367), + [sym__inline_element] = STATE(104), + [sym__emphasis_star] = STATE(1271), + [sym__strong_emphasis_star] = STATE(104), + [sym__emphasis_underscore] = STATE(1271), + [sym__strong_emphasis_underscore] = STATE(104), + [aux_sym_insert_repeat1] = STATE(104), + [aux_sym__inline_base_repeat1] = STATE(367), + [sym__backslash_escape] = ACTIONS(1413), + [sym_entity_reference] = ACTIONS(1415), + [sym_numeric_character_reference] = ACTIONS(1415), + [anon_sym_LT] = ACTIONS(1417), + [anon_sym_GT] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1419), + [anon_sym_POUND] = ACTIONS(1419), + [anon_sym_DOLLAR] = ACTIONS(1419), + [anon_sym_PERCENT] = ACTIONS(1419), + [anon_sym_AMP] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [anon_sym_STAR] = ACTIONS(1419), + [anon_sym_PLUS] = ACTIONS(1419), + [anon_sym_COMMA] = ACTIONS(1419), + [anon_sym_DASH] = ACTIONS(1417), + [anon_sym_DOT] = ACTIONS(1417), + [anon_sym_SLASH] = ACTIONS(1419), + [anon_sym_COLON] = ACTIONS(1419), + [anon_sym_SEMI] = ACTIONS(1419), + [anon_sym_EQ] = ACTIONS(1419), + [anon_sym_QMARK] = ACTIONS(1419), + [anon_sym_LBRACK] = ACTIONS(1423), + [anon_sym_BSLASH] = ACTIONS(1425), + [anon_sym_CARET] = ACTIONS(1417), + [anon_sym__] = ACTIONS(1419), + [anon_sym_BQUOTE] = ACTIONS(1419), + [anon_sym_LBRACE] = ACTIONS(1427), + [anon_sym_PIPE] = ACTIONS(1419), + [anon_sym_TILDE] = ACTIONS(1419), + [anon_sym_LPAREN] = ACTIONS(1419), + [anon_sym_RPAREN] = ACTIONS(1419), + [sym__newline_token] = ACTIONS(1429), + [aux_sym_insert_token1] = ACTIONS(1431), + [aux_sym_delete_token1] = ACTIONS(1433), + [aux_sym_highlight_token1] = ACTIONS(1435), + [aux_sym_edit_comment_token1] = ACTIONS(1437), + [anon_sym_CARET_LBRACK] = ACTIONS(1439), + [anon_sym_LBRACK_CARET] = ACTIONS(1441), + [sym_uri_autolink] = ACTIONS(1415), + [sym_email_autolink] = ACTIONS(1415), + [sym__whitespace_ge_2] = ACTIONS(1443), + [aux_sym__whitespace_token1] = ACTIONS(1445), + [sym__word_no_digit] = ACTIONS(1447), + [sym__digits] = ACTIONS(1447), + [anon_sym_DASH_DASH] = ACTIONS(1449), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1447), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1447), + [sym__code_span_start] = ACTIONS(1451), + [sym__emphasis_open_star] = ACTIONS(1453), + [sym__emphasis_open_underscore] = ACTIONS(1455), + [sym__strikeout_open] = ACTIONS(1457), + [sym__latex_span_start] = ACTIONS(1459), + [sym__single_quote_open] = ACTIONS(1461), + [sym__double_quote_open] = ACTIONS(1463), + [sym__superscript_open] = ACTIONS(1465), + [sym__subscript_open] = ACTIONS(1467), + [sym__subscript_close] = ACTIONS(2405), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1471), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1473), + [sym__cite_author_in_text] = ACTIONS(1475), + [sym__cite_suppress_author] = ACTIONS(1477), + [sym__shortcode_open_escaped] = ACTIONS(1479), + [sym__shortcode_open] = ACTIONS(1481), + [sym__unclosed_span] = ACTIONS(1415), }, - [STATE(96)] = { - [sym_backslash_escape] = STATE(274), - [sym_commonmark_attribute] = STATE(274), - [sym_code_span] = STATE(274), - [sym_latex_span] = STATE(274), - [sym_superscript] = STATE(274), - [sym_subscript] = STATE(274), - [sym_strikeout] = STATE(274), - [sym_quoted_span] = STATE(274), - [sym_inline_note] = STATE(274), - [sym_citation] = STATE(274), - [sym_shortcode_escaped] = STATE(274), - [sym_shortcode] = STATE(274), - [sym_note_reference] = STATE(274), - [sym__link_text] = STATE(351), - [sym__link_text_non_empty] = STATE(352), - [sym_inline_link] = STATE(41), - [sym_image] = STATE(274), - [sym__image_inline_link] = STATE(894), - [sym__image_description] = STATE(2008), - [sym__image_description_non_empty] = STATE(2008), - [sym_hard_line_break] = STATE(274), - [sym__whitespace] = STATE(882), - [sym__word] = STATE(882), - [sym__soft_line_break] = STATE(898), - [sym__inline_base] = STATE(41), - [sym__text_base] = STATE(274), - [sym__inline_element_no_underscore] = STATE(41), - [aux_sym__inline_no_underscore] = STATE(41), - [sym__emphasis_star] = STATE(711), - [sym__strong_emphasis_star] = STATE(41), - [sym__emphasis_underscore] = STATE(711), - [sym__strong_emphasis_underscore] = STATE(41), - [aux_sym__inline_base_repeat1] = STATE(274), - [sym__backslash_escape] = ACTIONS(1123), - [sym_entity_reference] = ACTIONS(1125), - [sym_numeric_character_reference] = ACTIONS(1125), - [anon_sym_LT] = ACTIONS(1127), - [anon_sym_GT] = ACTIONS(1129), - [anon_sym_BANG] = ACTIONS(1131), - [anon_sym_DQUOTE] = ACTIONS(1129), - [anon_sym_POUND] = ACTIONS(1129), - [anon_sym_DOLLAR] = ACTIONS(1129), - [anon_sym_PERCENT] = ACTIONS(1129), - [anon_sym_AMP] = ACTIONS(1127), - [anon_sym_SQUOTE] = ACTIONS(1129), - [anon_sym_STAR] = ACTIONS(1129), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_COMMA] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1127), - [anon_sym_DOT] = ACTIONS(1127), - [anon_sym_SLASH] = ACTIONS(1129), - [anon_sym_COLON] = ACTIONS(1129), - [anon_sym_SEMI] = ACTIONS(1129), - [anon_sym_EQ] = ACTIONS(1129), - [anon_sym_QMARK] = ACTIONS(1129), - [anon_sym_LBRACK] = ACTIONS(1133), - [anon_sym_BSLASH] = ACTIONS(1135), - [anon_sym_CARET] = ACTIONS(1127), - [anon_sym__] = ACTIONS(1129), - [anon_sym_BQUOTE] = ACTIONS(1129), - [anon_sym_LBRACE] = ACTIONS(1137), - [anon_sym_PIPE] = ACTIONS(1129), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1129), - [anon_sym_RPAREN] = ACTIONS(1129), - [sym__newline_token] = ACTIONS(1139), - [anon_sym_CARET_LBRACK] = ACTIONS(1141), - [anon_sym_LBRACK_CARET] = ACTIONS(1143), - [sym_uri_autolink] = ACTIONS(1125), - [sym_email_autolink] = ACTIONS(1125), - [sym__whitespace_ge_2] = ACTIONS(1145), - [aux_sym__whitespace_token1] = ACTIONS(1147), - [sym__word_no_digit] = ACTIONS(1149), - [sym__digits] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1151), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1149), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1149), - [sym__code_span_start] = ACTIONS(1153), - [sym__emphasis_open_star] = ACTIONS(1155), - [sym__emphasis_open_underscore] = ACTIONS(1157), - [sym__emphasis_close_underscore] = ACTIONS(1993), - [sym__strikeout_open] = ACTIONS(1161), - [sym__latex_span_start] = ACTIONS(1163), - [sym__single_quote_open] = ACTIONS(1165), - [sym__double_quote_open] = ACTIONS(1167), - [sym__superscript_open] = ACTIONS(1169), - [sym__subscript_open] = ACTIONS(1171), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1173), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1175), - [sym__cite_author_in_text] = ACTIONS(1177), - [sym__cite_suppress_author] = ACTIONS(1179), - [sym__shortcode_open_escaped] = ACTIONS(1181), - [sym__shortcode_open] = ACTIONS(1183), - [sym__unclosed_span] = ACTIONS(1125), + [STATE(93)] = { + [sym_backslash_escape] = STATE(372), + [sym_commonmark_attribute] = STATE(372), + [sym_code_span] = STATE(372), + [sym_latex_span] = STATE(372), + [sym_insert] = STATE(372), + [sym_delete] = STATE(372), + [sym_highlight] = STATE(372), + [sym_edit_comment] = STATE(372), + [sym_superscript] = STATE(372), + [sym_subscript] = STATE(372), + [sym_strikeout] = STATE(372), + [sym_quoted_span] = STATE(372), + [sym_inline_note] = STATE(372), + [sym_citation] = STATE(372), + [sym_shortcode_escaped] = STATE(372), + [sym_shortcode] = STATE(372), + [sym_note_reference] = STATE(372), + [sym__link_text] = STATE(454), + [sym__link_text_non_empty] = STATE(455), + [sym_inline_link] = STATE(105), + [sym_image] = STATE(372), + [sym__image_inline_link] = STATE(1025), + [sym__image_description] = STATE(2356), + [sym__image_description_non_empty] = STATE(2356), + [sym_hard_line_break] = STATE(372), + [sym__whitespace] = STATE(1022), + [sym__word] = STATE(1022), + [sym__soft_line_break] = STATE(1026), + [sym__inline_base] = STATE(105), + [sym__text_base] = STATE(372), + [sym__inline_element] = STATE(105), + [sym__emphasis_star] = STATE(714), + [sym__strong_emphasis_star] = STATE(105), + [sym__emphasis_underscore] = STATE(714), + [sym__strong_emphasis_underscore] = STATE(105), + [aux_sym_insert_repeat1] = STATE(105), + [aux_sym__inline_base_repeat1] = STATE(372), + [sym__backslash_escape] = ACTIONS(707), + [sym_entity_reference] = ACTIONS(709), + [sym_numeric_character_reference] = ACTIONS(709), + [anon_sym_LT] = ACTIONS(711), + [anon_sym_GT] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(715), + [anon_sym_DQUOTE] = ACTIONS(713), + [anon_sym_POUND] = ACTIONS(713), + [anon_sym_DOLLAR] = ACTIONS(713), + [anon_sym_PERCENT] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(711), + [anon_sym_SQUOTE] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_COMMA] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_DOT] = ACTIONS(711), + [anon_sym_SLASH] = ACTIONS(713), + [anon_sym_COLON] = ACTIONS(713), + [anon_sym_SEMI] = ACTIONS(713), + [anon_sym_EQ] = ACTIONS(713), + [anon_sym_QMARK] = ACTIONS(713), + [anon_sym_LBRACK] = ACTIONS(717), + [anon_sym_BSLASH] = ACTIONS(719), + [anon_sym_CARET] = ACTIONS(711), + [anon_sym__] = ACTIONS(713), + [anon_sym_BQUOTE] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(721), + [anon_sym_PIPE] = ACTIONS(713), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_LPAREN] = ACTIONS(713), + [anon_sym_RPAREN] = ACTIONS(713), + [sym__newline_token] = ACTIONS(723), + [aux_sym_insert_token1] = ACTIONS(725), + [aux_sym_insert_token2] = ACTIONS(2407), + [aux_sym_delete_token1] = ACTIONS(729), + [aux_sym_highlight_token1] = ACTIONS(731), + [aux_sym_edit_comment_token1] = ACTIONS(733), + [anon_sym_CARET_LBRACK] = ACTIONS(735), + [anon_sym_LBRACK_CARET] = ACTIONS(737), + [sym_uri_autolink] = ACTIONS(709), + [sym_email_autolink] = ACTIONS(709), + [sym__whitespace_ge_2] = ACTIONS(739), + [aux_sym__whitespace_token1] = ACTIONS(741), + [sym__word_no_digit] = ACTIONS(743), + [sym__digits] = ACTIONS(743), + [anon_sym_DASH_DASH] = ACTIONS(745), + [anon_sym_DASH_DASH_DASH] = ACTIONS(743), + [anon_sym_DOT_DOT_DOT] = ACTIONS(743), + [sym__code_span_start] = ACTIONS(747), + [sym__emphasis_open_star] = ACTIONS(749), + [sym__emphasis_open_underscore] = ACTIONS(751), + [sym__strikeout_open] = ACTIONS(753), + [sym__latex_span_start] = ACTIONS(755), + [sym__single_quote_open] = ACTIONS(757), + [sym__double_quote_open] = ACTIONS(759), + [sym__superscript_open] = ACTIONS(761), + [sym__subscript_open] = ACTIONS(763), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(765), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(767), + [sym__cite_author_in_text] = ACTIONS(769), + [sym__cite_suppress_author] = ACTIONS(771), + [sym__shortcode_open_escaped] = ACTIONS(773), + [sym__shortcode_open] = ACTIONS(775), + [sym__unclosed_span] = ACTIONS(709), }, - [STATE(97)] = { - [sym_backslash_escape] = STATE(266), - [sym_commonmark_attribute] = STATE(266), - [sym_code_span] = STATE(266), - [sym_latex_span] = STATE(266), - [sym_superscript] = STATE(266), - [sym_subscript] = STATE(266), - [sym_strikeout] = STATE(266), - [sym_quoted_span] = STATE(266), - [sym_inline_note] = STATE(266), - [sym_citation] = STATE(266), - [sym_shortcode_escaped] = STATE(266), - [sym_shortcode] = STATE(266), - [sym_note_reference] = STATE(266), - [sym__link_text] = STATE(375), - [sym__link_text_non_empty] = STATE(376), - [sym_inline_link] = STATE(42), - [sym_image] = STATE(266), - [sym__image_inline_link] = STATE(1042), - [sym__image_description] = STATE(2044), - [sym__image_description_non_empty] = STATE(2044), - [sym_hard_line_break] = STATE(266), - [sym__whitespace] = STATE(1040), - [sym__word] = STATE(1040), - [sym__soft_line_break] = STATE(1043), - [sym__inline_base] = STATE(42), - [sym__text_base] = STATE(266), - [sym__inline_element] = STATE(42), - [sym__emphasis_star] = STATE(602), - [sym__strong_emphasis_star] = STATE(42), - [sym__emphasis_underscore] = STATE(602), - [sym__strong_emphasis_underscore] = STATE(42), - [aux_sym_superscript_repeat1] = STATE(42), - [aux_sym__inline_base_repeat1] = STATE(266), - [sym__backslash_escape] = ACTIONS(559), - [sym_entity_reference] = ACTIONS(561), - [sym_numeric_character_reference] = ACTIONS(561), - [anon_sym_LT] = ACTIONS(563), - [anon_sym_GT] = ACTIONS(565), - [anon_sym_BANG] = ACTIONS(567), - [anon_sym_DQUOTE] = ACTIONS(565), - [anon_sym_POUND] = ACTIONS(565), - [anon_sym_DOLLAR] = ACTIONS(565), - [anon_sym_PERCENT] = ACTIONS(565), - [anon_sym_AMP] = ACTIONS(563), - [anon_sym_SQUOTE] = ACTIONS(565), - [anon_sym_STAR] = ACTIONS(565), - [anon_sym_PLUS] = ACTIONS(565), - [anon_sym_COMMA] = ACTIONS(565), - [anon_sym_DASH] = ACTIONS(563), - [anon_sym_DOT] = ACTIONS(563), - [anon_sym_SLASH] = ACTIONS(565), - [anon_sym_COLON] = ACTIONS(565), - [anon_sym_SEMI] = ACTIONS(565), - [anon_sym_EQ] = ACTIONS(565), - [anon_sym_QMARK] = ACTIONS(565), - [anon_sym_LBRACK] = ACTIONS(569), - [anon_sym_BSLASH] = ACTIONS(571), - [anon_sym_CARET] = ACTIONS(563), - [anon_sym__] = ACTIONS(565), - [anon_sym_BQUOTE] = ACTIONS(565), - [anon_sym_LBRACE] = ACTIONS(573), - [anon_sym_PIPE] = ACTIONS(565), - [anon_sym_TILDE] = ACTIONS(565), - [anon_sym_LPAREN] = ACTIONS(565), - [anon_sym_RPAREN] = ACTIONS(565), - [sym__newline_token] = ACTIONS(575), - [anon_sym_CARET_LBRACK] = ACTIONS(577), - [anon_sym_LBRACK_CARET] = ACTIONS(579), - [sym_uri_autolink] = ACTIONS(561), - [sym_email_autolink] = ACTIONS(561), - [sym__whitespace_ge_2] = ACTIONS(581), - [aux_sym__whitespace_token1] = ACTIONS(583), - [sym__word_no_digit] = ACTIONS(585), - [sym__digits] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(587), - [anon_sym_DASH_DASH_DASH] = ACTIONS(585), - [anon_sym_DOT_DOT_DOT] = ACTIONS(585), - [sym__code_span_start] = ACTIONS(589), - [sym__emphasis_open_star] = ACTIONS(591), - [sym__emphasis_open_underscore] = ACTIONS(593), - [sym__strikeout_open] = ACTIONS(595), - [sym__strikeout_close] = ACTIONS(1995), - [sym__latex_span_start] = ACTIONS(599), - [sym__single_quote_open] = ACTIONS(601), - [sym__double_quote_open] = ACTIONS(603), - [sym__superscript_open] = ACTIONS(605), - [sym__subscript_open] = ACTIONS(607), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(609), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(611), - [sym__cite_author_in_text] = ACTIONS(613), - [sym__cite_suppress_author] = ACTIONS(615), - [sym__shortcode_open_escaped] = ACTIONS(617), - [sym__shortcode_open] = ACTIONS(619), - [sym__unclosed_span] = ACTIONS(561), + [STATE(94)] = { + [sym_backslash_escape] = STATE(372), + [sym_commonmark_attribute] = STATE(372), + [sym_code_span] = STATE(372), + [sym_latex_span] = STATE(372), + [sym_insert] = STATE(372), + [sym_delete] = STATE(372), + [sym_highlight] = STATE(372), + [sym_edit_comment] = STATE(372), + [sym_superscript] = STATE(372), + [sym_subscript] = STATE(372), + [sym_strikeout] = STATE(372), + [sym_quoted_span] = STATE(372), + [sym_inline_note] = STATE(372), + [sym_citation] = STATE(372), + [sym_shortcode_escaped] = STATE(372), + [sym_shortcode] = STATE(372), + [sym_note_reference] = STATE(372), + [sym__link_text] = STATE(454), + [sym__link_text_non_empty] = STATE(455), + [sym_inline_link] = STATE(106), + [sym_image] = STATE(372), + [sym__image_inline_link] = STATE(1025), + [sym__image_description] = STATE(2356), + [sym__image_description_non_empty] = STATE(2356), + [sym_hard_line_break] = STATE(372), + [sym__whitespace] = STATE(1022), + [sym__word] = STATE(1022), + [sym__soft_line_break] = STATE(1026), + [sym__inline_base] = STATE(106), + [sym__text_base] = STATE(372), + [sym__inline_element] = STATE(106), + [sym__emphasis_star] = STATE(714), + [sym__strong_emphasis_star] = STATE(106), + [sym__emphasis_underscore] = STATE(714), + [sym__strong_emphasis_underscore] = STATE(106), + [aux_sym_insert_repeat1] = STATE(106), + [aux_sym__inline_base_repeat1] = STATE(372), + [sym__backslash_escape] = ACTIONS(707), + [sym_entity_reference] = ACTIONS(709), + [sym_numeric_character_reference] = ACTIONS(709), + [anon_sym_LT] = ACTIONS(711), + [anon_sym_GT] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(715), + [anon_sym_DQUOTE] = ACTIONS(713), + [anon_sym_POUND] = ACTIONS(713), + [anon_sym_DOLLAR] = ACTIONS(713), + [anon_sym_PERCENT] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(711), + [anon_sym_SQUOTE] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_COMMA] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_DOT] = ACTIONS(711), + [anon_sym_SLASH] = ACTIONS(713), + [anon_sym_COLON] = ACTIONS(713), + [anon_sym_SEMI] = ACTIONS(713), + [anon_sym_EQ] = ACTIONS(713), + [anon_sym_QMARK] = ACTIONS(713), + [anon_sym_LBRACK] = ACTIONS(717), + [anon_sym_BSLASH] = ACTIONS(719), + [anon_sym_CARET] = ACTIONS(711), + [anon_sym__] = ACTIONS(713), + [anon_sym_BQUOTE] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(721), + [anon_sym_PIPE] = ACTIONS(713), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_LPAREN] = ACTIONS(713), + [anon_sym_RPAREN] = ACTIONS(713), + [sym__newline_token] = ACTIONS(723), + [aux_sym_insert_token1] = ACTIONS(725), + [aux_sym_insert_token2] = ACTIONS(2409), + [aux_sym_delete_token1] = ACTIONS(729), + [aux_sym_highlight_token1] = ACTIONS(731), + [aux_sym_edit_comment_token1] = ACTIONS(733), + [anon_sym_CARET_LBRACK] = ACTIONS(735), + [anon_sym_LBRACK_CARET] = ACTIONS(737), + [sym_uri_autolink] = ACTIONS(709), + [sym_email_autolink] = ACTIONS(709), + [sym__whitespace_ge_2] = ACTIONS(739), + [aux_sym__whitespace_token1] = ACTIONS(741), + [sym__word_no_digit] = ACTIONS(743), + [sym__digits] = ACTIONS(743), + [anon_sym_DASH_DASH] = ACTIONS(745), + [anon_sym_DASH_DASH_DASH] = ACTIONS(743), + [anon_sym_DOT_DOT_DOT] = ACTIONS(743), + [sym__code_span_start] = ACTIONS(747), + [sym__emphasis_open_star] = ACTIONS(749), + [sym__emphasis_open_underscore] = ACTIONS(751), + [sym__strikeout_open] = ACTIONS(753), + [sym__latex_span_start] = ACTIONS(755), + [sym__single_quote_open] = ACTIONS(757), + [sym__double_quote_open] = ACTIONS(759), + [sym__superscript_open] = ACTIONS(761), + [sym__subscript_open] = ACTIONS(763), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(765), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(767), + [sym__cite_author_in_text] = ACTIONS(769), + [sym__cite_suppress_author] = ACTIONS(771), + [sym__shortcode_open_escaped] = ACTIONS(773), + [sym__shortcode_open] = ACTIONS(775), + [sym__unclosed_span] = ACTIONS(709), }, - [STATE(98)] = { - [sym_backslash_escape] = STATE(272), - [sym_commonmark_attribute] = STATE(272), - [sym_code_span] = STATE(272), - [sym_latex_span] = STATE(272), - [sym_superscript] = STATE(272), - [sym_subscript] = STATE(272), - [sym_strikeout] = STATE(272), - [sym_quoted_span] = STATE(272), - [sym_inline_note] = STATE(272), - [sym_citation] = STATE(272), - [sym_shortcode_escaped] = STATE(272), - [sym_shortcode] = STATE(272), - [sym_note_reference] = STATE(272), - [sym__link_text] = STATE(401), - [sym__link_text_non_empty] = STATE(402), - [sym_inline_link] = STATE(49), - [sym_image] = STATE(272), - [sym__image_inline_link] = STATE(1136), - [sym__image_description] = STATE(1942), - [sym__image_description_non_empty] = STATE(1942), - [sym_hard_line_break] = STATE(272), - [sym__whitespace] = STATE(1133), - [sym__word] = STATE(1133), - [sym__soft_line_break] = STATE(1137), - [sym__inline_base] = STATE(49), - [sym__text_base] = STATE(272), - [sym__inline_element] = STATE(49), - [sym__emphasis_star] = STATE(902), - [sym__strong_emphasis_star] = STATE(49), - [sym__emphasis_underscore] = STATE(902), - [sym__strong_emphasis_underscore] = STATE(49), - [aux_sym_superscript_repeat1] = STATE(49), - [aux_sym__inline_base_repeat1] = STATE(272), - [sym__backslash_escape] = ACTIONS(625), - [sym_entity_reference] = ACTIONS(627), - [sym_numeric_character_reference] = ACTIONS(627), - [anon_sym_LT] = ACTIONS(629), - [anon_sym_GT] = ACTIONS(631), - [anon_sym_BANG] = ACTIONS(633), - [anon_sym_DQUOTE] = ACTIONS(631), - [anon_sym_POUND] = ACTIONS(631), - [anon_sym_DOLLAR] = ACTIONS(631), - [anon_sym_PERCENT] = ACTIONS(631), - [anon_sym_AMP] = ACTIONS(629), - [anon_sym_SQUOTE] = ACTIONS(631), - [anon_sym_STAR] = ACTIONS(631), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_COMMA] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(629), - [anon_sym_DOT] = ACTIONS(629), - [anon_sym_SLASH] = ACTIONS(631), - [anon_sym_COLON] = ACTIONS(631), - [anon_sym_SEMI] = ACTIONS(631), - [anon_sym_EQ] = ACTIONS(631), - [anon_sym_QMARK] = ACTIONS(631), - [anon_sym_LBRACK] = ACTIONS(635), - [anon_sym_BSLASH] = ACTIONS(637), - [anon_sym_CARET] = ACTIONS(629), - [anon_sym__] = ACTIONS(631), - [anon_sym_BQUOTE] = ACTIONS(631), - [anon_sym_LBRACE] = ACTIONS(639), - [anon_sym_PIPE] = ACTIONS(631), - [anon_sym_TILDE] = ACTIONS(631), - [anon_sym_LPAREN] = ACTIONS(631), - [anon_sym_RPAREN] = ACTIONS(631), - [sym__newline_token] = ACTIONS(641), - [anon_sym_CARET_LBRACK] = ACTIONS(643), - [anon_sym_LBRACK_CARET] = ACTIONS(645), - [sym_uri_autolink] = ACTIONS(627), - [sym_email_autolink] = ACTIONS(627), - [sym__whitespace_ge_2] = ACTIONS(647), - [aux_sym__whitespace_token1] = ACTIONS(649), - [sym__word_no_digit] = ACTIONS(651), - [sym__digits] = ACTIONS(651), - [anon_sym_DASH_DASH] = ACTIONS(653), - [anon_sym_DASH_DASH_DASH] = ACTIONS(651), - [anon_sym_DOT_DOT_DOT] = ACTIONS(651), - [sym__code_span_start] = ACTIONS(655), - [sym__emphasis_open_star] = ACTIONS(657), - [sym__emphasis_open_underscore] = ACTIONS(659), - [sym__strikeout_open] = ACTIONS(661), - [sym__latex_span_start] = ACTIONS(663), - [sym__single_quote_open] = ACTIONS(665), - [sym__single_quote_close] = ACTIONS(1997), - [sym__double_quote_open] = ACTIONS(669), - [sym__superscript_open] = ACTIONS(671), - [sym__subscript_open] = ACTIONS(673), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(675), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(677), - [sym__cite_author_in_text] = ACTIONS(679), - [sym__cite_suppress_author] = ACTIONS(681), - [sym__shortcode_open_escaped] = ACTIONS(683), - [sym__shortcode_open] = ACTIONS(685), - [sym__unclosed_span] = ACTIONS(627), + [STATE(95)] = { + [sym_backslash_escape] = STATE(372), + [sym_commonmark_attribute] = STATE(372), + [sym_code_span] = STATE(372), + [sym_latex_span] = STATE(372), + [sym_insert] = STATE(372), + [sym_delete] = STATE(372), + [sym_highlight] = STATE(372), + [sym_edit_comment] = STATE(372), + [sym_superscript] = STATE(372), + [sym_subscript] = STATE(372), + [sym_strikeout] = STATE(372), + [sym_quoted_span] = STATE(372), + [sym_inline_note] = STATE(372), + [sym_citation] = STATE(372), + [sym_shortcode_escaped] = STATE(372), + [sym_shortcode] = STATE(372), + [sym_note_reference] = STATE(372), + [sym__link_text] = STATE(454), + [sym__link_text_non_empty] = STATE(455), + [sym_inline_link] = STATE(107), + [sym_image] = STATE(372), + [sym__image_inline_link] = STATE(1025), + [sym__image_description] = STATE(2356), + [sym__image_description_non_empty] = STATE(2356), + [sym_hard_line_break] = STATE(372), + [sym__whitespace] = STATE(1022), + [sym__word] = STATE(1022), + [sym__soft_line_break] = STATE(1026), + [sym__inline_base] = STATE(107), + [sym__text_base] = STATE(372), + [sym__inline_element] = STATE(107), + [sym__emphasis_star] = STATE(714), + [sym__strong_emphasis_star] = STATE(107), + [sym__emphasis_underscore] = STATE(714), + [sym__strong_emphasis_underscore] = STATE(107), + [aux_sym_insert_repeat1] = STATE(107), + [aux_sym__inline_base_repeat1] = STATE(372), + [sym__backslash_escape] = ACTIONS(707), + [sym_entity_reference] = ACTIONS(709), + [sym_numeric_character_reference] = ACTIONS(709), + [anon_sym_LT] = ACTIONS(711), + [anon_sym_GT] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(715), + [anon_sym_DQUOTE] = ACTIONS(713), + [anon_sym_POUND] = ACTIONS(713), + [anon_sym_DOLLAR] = ACTIONS(713), + [anon_sym_PERCENT] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(711), + [anon_sym_SQUOTE] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_COMMA] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_DOT] = ACTIONS(711), + [anon_sym_SLASH] = ACTIONS(713), + [anon_sym_COLON] = ACTIONS(713), + [anon_sym_SEMI] = ACTIONS(713), + [anon_sym_EQ] = ACTIONS(713), + [anon_sym_QMARK] = ACTIONS(713), + [anon_sym_LBRACK] = ACTIONS(717), + [anon_sym_BSLASH] = ACTIONS(719), + [anon_sym_CARET] = ACTIONS(711), + [anon_sym__] = ACTIONS(713), + [anon_sym_BQUOTE] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(721), + [anon_sym_PIPE] = ACTIONS(713), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_LPAREN] = ACTIONS(713), + [anon_sym_RPAREN] = ACTIONS(713), + [sym__newline_token] = ACTIONS(723), + [aux_sym_insert_token1] = ACTIONS(725), + [aux_sym_insert_token2] = ACTIONS(2411), + [aux_sym_delete_token1] = ACTIONS(729), + [aux_sym_highlight_token1] = ACTIONS(731), + [aux_sym_edit_comment_token1] = ACTIONS(733), + [anon_sym_CARET_LBRACK] = ACTIONS(735), + [anon_sym_LBRACK_CARET] = ACTIONS(737), + [sym_uri_autolink] = ACTIONS(709), + [sym_email_autolink] = ACTIONS(709), + [sym__whitespace_ge_2] = ACTIONS(739), + [aux_sym__whitespace_token1] = ACTIONS(741), + [sym__word_no_digit] = ACTIONS(743), + [sym__digits] = ACTIONS(743), + [anon_sym_DASH_DASH] = ACTIONS(745), + [anon_sym_DASH_DASH_DASH] = ACTIONS(743), + [anon_sym_DOT_DOT_DOT] = ACTIONS(743), + [sym__code_span_start] = ACTIONS(747), + [sym__emphasis_open_star] = ACTIONS(749), + [sym__emphasis_open_underscore] = ACTIONS(751), + [sym__strikeout_open] = ACTIONS(753), + [sym__latex_span_start] = ACTIONS(755), + [sym__single_quote_open] = ACTIONS(757), + [sym__double_quote_open] = ACTIONS(759), + [sym__superscript_open] = ACTIONS(761), + [sym__subscript_open] = ACTIONS(763), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(765), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(767), + [sym__cite_author_in_text] = ACTIONS(769), + [sym__cite_suppress_author] = ACTIONS(771), + [sym__shortcode_open_escaped] = ACTIONS(773), + [sym__shortcode_open] = ACTIONS(775), + [sym__unclosed_span] = ACTIONS(709), }, - [STATE(99)] = { - [sym_backslash_escape] = STATE(277), - [sym_commonmark_attribute] = STATE(277), - [sym_code_span] = STATE(277), - [sym_latex_span] = STATE(277), - [sym_superscript] = STATE(277), - [sym_subscript] = STATE(277), - [sym_strikeout] = STATE(277), - [sym_quoted_span] = STATE(277), - [sym_inline_note] = STATE(277), - [sym_citation] = STATE(277), - [sym_shortcode_escaped] = STATE(277), - [sym_shortcode] = STATE(277), - [sym_note_reference] = STATE(277), - [sym__link_text] = STATE(427), - [sym__link_text_non_empty] = STATE(428), - [sym_inline_link] = STATE(50), - [sym_image] = STATE(277), - [sym__image_inline_link] = STATE(613), - [sym__image_description] = STATE(1930), - [sym__image_description_non_empty] = STATE(1930), - [sym_hard_line_break] = STATE(277), - [sym__whitespace] = STATE(610), - [sym__word] = STATE(610), - [sym__soft_line_break] = STATE(614), - [sym__inline_base] = STATE(50), - [sym__text_base] = STATE(277), - [sym__inline_element] = STATE(50), - [sym__emphasis_star] = STATE(1044), - [sym__strong_emphasis_star] = STATE(50), - [sym__emphasis_underscore] = STATE(1044), - [sym__strong_emphasis_underscore] = STATE(50), - [aux_sym_superscript_repeat1] = STATE(50), - [aux_sym__inline_base_repeat1] = STATE(277), - [sym__backslash_escape] = ACTIONS(687), - [sym_entity_reference] = ACTIONS(689), - [sym_numeric_character_reference] = ACTIONS(689), - [anon_sym_LT] = ACTIONS(691), - [anon_sym_GT] = ACTIONS(693), - [anon_sym_BANG] = ACTIONS(695), - [anon_sym_DQUOTE] = ACTIONS(693), - [anon_sym_POUND] = ACTIONS(693), - [anon_sym_DOLLAR] = ACTIONS(693), - [anon_sym_PERCENT] = ACTIONS(693), - [anon_sym_AMP] = ACTIONS(691), - [anon_sym_SQUOTE] = ACTIONS(693), - [anon_sym_STAR] = ACTIONS(693), - [anon_sym_PLUS] = ACTIONS(693), - [anon_sym_COMMA] = ACTIONS(693), - [anon_sym_DASH] = ACTIONS(691), - [anon_sym_DOT] = ACTIONS(691), - [anon_sym_SLASH] = ACTIONS(693), - [anon_sym_COLON] = ACTIONS(693), - [anon_sym_SEMI] = ACTIONS(693), - [anon_sym_EQ] = ACTIONS(693), - [anon_sym_QMARK] = ACTIONS(693), - [anon_sym_LBRACK] = ACTIONS(697), - [anon_sym_BSLASH] = ACTIONS(699), - [anon_sym_CARET] = ACTIONS(691), - [anon_sym__] = ACTIONS(693), - [anon_sym_BQUOTE] = ACTIONS(693), - [anon_sym_LBRACE] = ACTIONS(701), - [anon_sym_PIPE] = ACTIONS(693), - [anon_sym_TILDE] = ACTIONS(693), - [anon_sym_LPAREN] = ACTIONS(693), - [anon_sym_RPAREN] = ACTIONS(693), - [sym__newline_token] = ACTIONS(703), - [anon_sym_CARET_LBRACK] = ACTIONS(705), - [anon_sym_LBRACK_CARET] = ACTIONS(707), - [sym_uri_autolink] = ACTIONS(689), - [sym_email_autolink] = ACTIONS(689), - [sym__whitespace_ge_2] = ACTIONS(709), - [aux_sym__whitespace_token1] = ACTIONS(711), - [sym__word_no_digit] = ACTIONS(713), - [sym__digits] = ACTIONS(713), - [anon_sym_DASH_DASH] = ACTIONS(715), - [anon_sym_DASH_DASH_DASH] = ACTIONS(713), - [anon_sym_DOT_DOT_DOT] = ACTIONS(713), - [sym__code_span_start] = ACTIONS(717), - [sym__emphasis_open_star] = ACTIONS(719), - [sym__emphasis_open_underscore] = ACTIONS(721), - [sym__strikeout_open] = ACTIONS(723), - [sym__latex_span_start] = ACTIONS(725), - [sym__single_quote_open] = ACTIONS(727), - [sym__double_quote_open] = ACTIONS(729), - [sym__double_quote_close] = ACTIONS(1997), - [sym__superscript_open] = ACTIONS(731), - [sym__subscript_open] = ACTIONS(733), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(735), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(737), - [sym__cite_author_in_text] = ACTIONS(739), - [sym__cite_suppress_author] = ACTIONS(741), - [sym__shortcode_open_escaped] = ACTIONS(743), - [sym__shortcode_open] = ACTIONS(745), - [sym__unclosed_span] = ACTIONS(689), + [STATE(96)] = { + [sym_backslash_escape] = STATE(372), + [sym_commonmark_attribute] = STATE(372), + [sym_code_span] = STATE(372), + [sym_latex_span] = STATE(372), + [sym_insert] = STATE(372), + [sym_delete] = STATE(372), + [sym_highlight] = STATE(372), + [sym_edit_comment] = STATE(372), + [sym_superscript] = STATE(372), + [sym_subscript] = STATE(372), + [sym_strikeout] = STATE(372), + [sym_quoted_span] = STATE(372), + [sym_inline_note] = STATE(372), + [sym_citation] = STATE(372), + [sym_shortcode_escaped] = STATE(372), + [sym_shortcode] = STATE(372), + [sym_note_reference] = STATE(372), + [sym__link_text] = STATE(454), + [sym__link_text_non_empty] = STATE(455), + [sym_inline_link] = STATE(108), + [sym_image] = STATE(372), + [sym__image_inline_link] = STATE(1025), + [sym__image_description] = STATE(2356), + [sym__image_description_non_empty] = STATE(2356), + [sym_hard_line_break] = STATE(372), + [sym__whitespace] = STATE(1022), + [sym__word] = STATE(1022), + [sym__soft_line_break] = STATE(1026), + [sym__inline_base] = STATE(108), + [sym__text_base] = STATE(372), + [sym__inline_element] = STATE(108), + [sym__emphasis_star] = STATE(714), + [sym__strong_emphasis_star] = STATE(108), + [sym__emphasis_underscore] = STATE(714), + [sym__strong_emphasis_underscore] = STATE(108), + [aux_sym_insert_repeat1] = STATE(108), + [aux_sym__inline_base_repeat1] = STATE(372), + [sym__backslash_escape] = ACTIONS(707), + [sym_entity_reference] = ACTIONS(709), + [sym_numeric_character_reference] = ACTIONS(709), + [anon_sym_LT] = ACTIONS(711), + [anon_sym_GT] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(715), + [anon_sym_DQUOTE] = ACTIONS(713), + [anon_sym_POUND] = ACTIONS(713), + [anon_sym_DOLLAR] = ACTIONS(713), + [anon_sym_PERCENT] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(711), + [anon_sym_SQUOTE] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_COMMA] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_DOT] = ACTIONS(711), + [anon_sym_SLASH] = ACTIONS(713), + [anon_sym_COLON] = ACTIONS(713), + [anon_sym_SEMI] = ACTIONS(713), + [anon_sym_EQ] = ACTIONS(713), + [anon_sym_QMARK] = ACTIONS(713), + [anon_sym_LBRACK] = ACTIONS(717), + [anon_sym_BSLASH] = ACTIONS(719), + [anon_sym_CARET] = ACTIONS(711), + [anon_sym__] = ACTIONS(713), + [anon_sym_BQUOTE] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(721), + [anon_sym_PIPE] = ACTIONS(713), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_LPAREN] = ACTIONS(713), + [anon_sym_RPAREN] = ACTIONS(713), + [sym__newline_token] = ACTIONS(723), + [aux_sym_insert_token1] = ACTIONS(725), + [aux_sym_insert_token2] = ACTIONS(2413), + [aux_sym_delete_token1] = ACTIONS(729), + [aux_sym_highlight_token1] = ACTIONS(731), + [aux_sym_edit_comment_token1] = ACTIONS(733), + [anon_sym_CARET_LBRACK] = ACTIONS(735), + [anon_sym_LBRACK_CARET] = ACTIONS(737), + [sym_uri_autolink] = ACTIONS(709), + [sym_email_autolink] = ACTIONS(709), + [sym__whitespace_ge_2] = ACTIONS(739), + [aux_sym__whitespace_token1] = ACTIONS(741), + [sym__word_no_digit] = ACTIONS(743), + [sym__digits] = ACTIONS(743), + [anon_sym_DASH_DASH] = ACTIONS(745), + [anon_sym_DASH_DASH_DASH] = ACTIONS(743), + [anon_sym_DOT_DOT_DOT] = ACTIONS(743), + [sym__code_span_start] = ACTIONS(747), + [sym__emphasis_open_star] = ACTIONS(749), + [sym__emphasis_open_underscore] = ACTIONS(751), + [sym__strikeout_open] = ACTIONS(753), + [sym__latex_span_start] = ACTIONS(755), + [sym__single_quote_open] = ACTIONS(757), + [sym__double_quote_open] = ACTIONS(759), + [sym__superscript_open] = ACTIONS(761), + [sym__subscript_open] = ACTIONS(763), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(765), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(767), + [sym__cite_author_in_text] = ACTIONS(769), + [sym__cite_suppress_author] = ACTIONS(771), + [sym__shortcode_open_escaped] = ACTIONS(773), + [sym__shortcode_open] = ACTIONS(775), + [sym__unclosed_span] = ACTIONS(709), }, - [STATE(100)] = { - [sym_backslash_escape] = STATE(262), - [sym_commonmark_attribute] = STATE(262), - [sym_code_span] = STATE(262), - [sym_latex_span] = STATE(262), - [sym_superscript] = STATE(262), - [sym_subscript] = STATE(262), - [sym_strikeout] = STATE(262), - [sym_quoted_span] = STATE(262), - [sym_inline_note] = STATE(262), - [sym_citation] = STATE(262), - [sym_shortcode_escaped] = STATE(262), - [sym_shortcode] = STATE(262), - [sym_note_reference] = STATE(262), - [sym__link_text] = STATE(313), - [sym__link_text_non_empty] = STATE(314), - [sym_inline_link] = STATE(51), - [sym_image] = STATE(262), - [sym__image_inline_link] = STATE(708), - [sym__image_description] = STATE(1970), - [sym__image_description_non_empty] = STATE(1970), - [sym_hard_line_break] = STATE(262), - [sym__whitespace] = STATE(705), - [sym__word] = STATE(705), - [sym__soft_line_break] = STATE(709), - [sym__inline_base] = STATE(51), - [sym__text_base] = STATE(262), - [sym__inline_element] = STATE(51), - [sym__emphasis_star] = STATE(1138), - [sym__strong_emphasis_star] = STATE(51), - [sym__emphasis_underscore] = STATE(1138), - [sym__strong_emphasis_underscore] = STATE(51), - [aux_sym_superscript_repeat1] = STATE(51), - [aux_sym__inline_base_repeat1] = STATE(262), - [sym__backslash_escape] = ACTIONS(747), - [sym_entity_reference] = ACTIONS(749), - [sym_numeric_character_reference] = ACTIONS(749), - [anon_sym_LT] = ACTIONS(751), - [anon_sym_GT] = ACTIONS(753), - [anon_sym_BANG] = ACTIONS(755), - [anon_sym_DQUOTE] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(753), - [anon_sym_DOLLAR] = ACTIONS(753), - [anon_sym_PERCENT] = ACTIONS(753), - [anon_sym_AMP] = ACTIONS(751), - [anon_sym_SQUOTE] = ACTIONS(753), - [anon_sym_STAR] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(753), - [anon_sym_COMMA] = ACTIONS(753), - [anon_sym_DASH] = ACTIONS(751), - [anon_sym_DOT] = ACTIONS(751), - [anon_sym_SLASH] = ACTIONS(753), - [anon_sym_COLON] = ACTIONS(753), - [anon_sym_SEMI] = ACTIONS(753), - [anon_sym_EQ] = ACTIONS(753), - [anon_sym_QMARK] = ACTIONS(753), - [anon_sym_LBRACK] = ACTIONS(757), - [anon_sym_BSLASH] = ACTIONS(759), - [anon_sym_CARET] = ACTIONS(751), - [anon_sym__] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(753), - [anon_sym_LBRACE] = ACTIONS(761), - [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_TILDE] = ACTIONS(753), - [anon_sym_LPAREN] = ACTIONS(753), - [anon_sym_RPAREN] = ACTIONS(753), - [sym__newline_token] = ACTIONS(763), - [anon_sym_CARET_LBRACK] = ACTIONS(765), - [anon_sym_LBRACK_CARET] = ACTIONS(767), - [sym_uri_autolink] = ACTIONS(749), - [sym_email_autolink] = ACTIONS(749), - [sym__whitespace_ge_2] = ACTIONS(769), - [aux_sym__whitespace_token1] = ACTIONS(771), - [sym__word_no_digit] = ACTIONS(773), - [sym__digits] = ACTIONS(773), - [anon_sym_DASH_DASH] = ACTIONS(775), - [anon_sym_DASH_DASH_DASH] = ACTIONS(773), - [anon_sym_DOT_DOT_DOT] = ACTIONS(773), - [sym__code_span_start] = ACTIONS(777), - [sym__emphasis_open_star] = ACTIONS(779), - [sym__emphasis_open_underscore] = ACTIONS(781), - [sym__strikeout_open] = ACTIONS(783), - [sym__latex_span_start] = ACTIONS(785), - [sym__single_quote_open] = ACTIONS(787), - [sym__double_quote_open] = ACTIONS(789), - [sym__superscript_open] = ACTIONS(791), - [sym__superscript_close] = ACTIONS(1999), - [sym__subscript_open] = ACTIONS(795), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(797), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(799), - [sym__cite_author_in_text] = ACTIONS(801), - [sym__cite_suppress_author] = ACTIONS(803), - [sym__shortcode_open_escaped] = ACTIONS(805), - [sym__shortcode_open] = ACTIONS(807), - [sym__unclosed_span] = ACTIONS(749), + [STATE(97)] = { + [sym_backslash_escape] = STATE(377), + [sym_commonmark_attribute] = STATE(377), + [sym_code_span] = STATE(377), + [sym_latex_span] = STATE(377), + [sym_insert] = STATE(377), + [sym_delete] = STATE(377), + [sym_highlight] = STATE(377), + [sym_edit_comment] = STATE(377), + [sym_superscript] = STATE(377), + [sym_subscript] = STATE(377), + [sym_strikeout] = STATE(377), + [sym_quoted_span] = STATE(377), + [sym_inline_note] = STATE(377), + [sym_citation] = STATE(377), + [sym_shortcode_escaped] = STATE(377), + [sym_shortcode] = STATE(377), + [sym_note_reference] = STATE(377), + [sym__link_text] = STATE(496), + [sym__link_text_non_empty] = STATE(521), + [sym_inline_link] = STATE(1131), + [sym_image] = STATE(377), + [sym__image_inline_link] = STATE(1305), + [sym__image_description] = STATE(2302), + [sym__image_description_non_empty] = STATE(2302), + [sym_hard_line_break] = STATE(377), + [sym__whitespace] = STATE(1160), + [sym__word] = STATE(1160), + [sym__soft_line_break] = STATE(1375), + [sym__inline_base] = STATE(1131), + [sym__text_base] = STATE(377), + [sym__inline_element] = STATE(1131), + [aux_sym__inline] = STATE(34), + [sym__emphasis_star] = STATE(1094), + [sym__strong_emphasis_star] = STATE(1131), + [sym__emphasis_underscore] = STATE(1094), + [sym__strong_emphasis_underscore] = STATE(1131), + [aux_sym__inline_base_repeat1] = STATE(377), + [ts_builtin_sym_end] = ACTIONS(2415), + [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__] = ACTIONS(9), + [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), + }, + [STATE(98)] = { + [sym_backslash_escape] = STATE(373), + [sym_commonmark_attribute] = STATE(373), + [sym_code_span] = STATE(373), + [sym_latex_span] = STATE(373), + [sym_insert] = STATE(373), + [sym_delete] = STATE(373), + [sym_highlight] = STATE(373), + [sym_edit_comment] = STATE(373), + [sym_superscript] = STATE(373), + [sym_subscript] = STATE(373), + [sym_strikeout] = STATE(373), + [sym_quoted_span] = STATE(373), + [sym_inline_note] = STATE(373), + [sym_citation] = STATE(373), + [sym_shortcode_escaped] = STATE(373), + [sym_shortcode] = STATE(373), + [sym_note_reference] = STATE(373), + [sym__link_text] = STATE(522), + [sym__link_text_non_empty] = STATE(523), + [sym_inline_link] = STATE(36), + [sym_image] = STATE(373), + [sym__image_inline_link] = STATE(1265), + [sym__image_description] = STATE(2331), + [sym__image_description_non_empty] = STATE(2331), + [sym_hard_line_break] = STATE(373), + [sym__whitespace] = STATE(1262), + [sym__word] = STATE(1262), + [sym__soft_line_break] = STATE(1267), + [sym__inline_base] = STATE(36), + [sym__text_base] = STATE(373), + [sym__inline_element_no_star] = STATE(36), + [aux_sym__inline_no_star] = STATE(36), + [sym__emphasis_star] = STATE(1147), + [sym__strong_emphasis_star] = STATE(36), + [sym__emphasis_underscore] = STATE(1147), + [sym__strong_emphasis_underscore] = STATE(36), + [aux_sym__inline_base_repeat1] = STATE(373), + [sym__backslash_escape] = ACTIONS(885), + [sym_entity_reference] = ACTIONS(887), + [sym_numeric_character_reference] = ACTIONS(887), + [anon_sym_LT] = ACTIONS(889), + [anon_sym_GT] = ACTIONS(891), + [anon_sym_BANG] = ACTIONS(893), + [anon_sym_DQUOTE] = ACTIONS(891), + [anon_sym_POUND] = ACTIONS(891), + [anon_sym_DOLLAR] = ACTIONS(891), + [anon_sym_PERCENT] = ACTIONS(891), + [anon_sym_AMP] = ACTIONS(889), + [anon_sym_SQUOTE] = ACTIONS(891), + [anon_sym_STAR] = ACTIONS(891), + [anon_sym_PLUS] = ACTIONS(891), + [anon_sym_COMMA] = ACTIONS(891), + [anon_sym_DASH] = ACTIONS(889), + [anon_sym_DOT] = ACTIONS(889), + [anon_sym_SLASH] = ACTIONS(891), + [anon_sym_COLON] = ACTIONS(891), + [anon_sym_SEMI] = ACTIONS(891), + [anon_sym_EQ] = ACTIONS(891), + [anon_sym_QMARK] = ACTIONS(891), + [anon_sym_LBRACK] = ACTIONS(895), + [anon_sym_BSLASH] = ACTIONS(897), + [anon_sym_CARET] = ACTIONS(889), + [anon_sym__] = ACTIONS(891), + [anon_sym_BQUOTE] = ACTIONS(891), + [anon_sym_LBRACE] = ACTIONS(899), + [anon_sym_PIPE] = ACTIONS(891), + [anon_sym_TILDE] = ACTIONS(891), + [anon_sym_LPAREN] = ACTIONS(891), + [anon_sym_RPAREN] = ACTIONS(891), + [sym__newline_token] = ACTIONS(901), + [aux_sym_insert_token1] = ACTIONS(903), + [aux_sym_delete_token1] = ACTIONS(905), + [aux_sym_highlight_token1] = ACTIONS(907), + [aux_sym_edit_comment_token1] = ACTIONS(909), + [anon_sym_CARET_LBRACK] = ACTIONS(911), + [anon_sym_LBRACK_CARET] = ACTIONS(913), + [sym_uri_autolink] = ACTIONS(887), + [sym_email_autolink] = ACTIONS(887), + [sym__whitespace_ge_2] = ACTIONS(915), + [aux_sym__whitespace_token1] = ACTIONS(917), + [sym__word_no_digit] = ACTIONS(919), + [sym__digits] = ACTIONS(919), + [anon_sym_DASH_DASH] = ACTIONS(921), + [anon_sym_DASH_DASH_DASH] = ACTIONS(919), + [anon_sym_DOT_DOT_DOT] = ACTIONS(919), + [sym__code_span_start] = ACTIONS(923), + [sym__emphasis_open_star] = ACTIONS(925), + [sym__emphasis_open_underscore] = ACTIONS(927), + [sym__emphasis_close_star] = ACTIONS(2417), + [sym__strikeout_open] = ACTIONS(931), + [sym__latex_span_start] = ACTIONS(933), + [sym__single_quote_open] = ACTIONS(935), + [sym__double_quote_open] = ACTIONS(937), + [sym__superscript_open] = ACTIONS(939), + [sym__subscript_open] = ACTIONS(941), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(943), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(945), + [sym__cite_author_in_text] = ACTIONS(947), + [sym__cite_suppress_author] = ACTIONS(949), + [sym__shortcode_open_escaped] = ACTIONS(951), + [sym__shortcode_open] = ACTIONS(953), + [sym__unclosed_span] = ACTIONS(887), + }, + [STATE(99)] = { + [sym_backslash_escape] = STATE(379), + [sym_commonmark_attribute] = STATE(379), + [sym_code_span] = STATE(379), + [sym_latex_span] = STATE(379), + [sym_insert] = STATE(379), + [sym_delete] = STATE(379), + [sym_highlight] = STATE(379), + [sym_edit_comment] = STATE(379), + [sym_superscript] = STATE(379), + [sym_subscript] = STATE(379), + [sym_strikeout] = STATE(379), + [sym_quoted_span] = STATE(379), + [sym_inline_note] = STATE(379), + [sym_citation] = STATE(379), + [sym_shortcode_escaped] = STATE(379), + [sym_shortcode] = STATE(379), + [sym_note_reference] = STATE(379), + [sym__link_text] = STATE(545), + [sym__link_text_non_empty] = STATE(546), + [sym_inline_link] = STATE(38), + [sym_image] = STATE(379), + [sym__image_inline_link] = STATE(1390), + [sym__image_description] = STATE(2363), + [sym__image_description_non_empty] = STATE(2363), + [sym_hard_line_break] = STATE(379), + [sym__whitespace] = STATE(1385), + [sym__word] = STATE(1385), + [sym__soft_line_break] = STATE(1391), + [sym__inline_base] = STATE(38), + [sym__text_base] = STATE(379), + [sym__inline_element_no_underscore] = STATE(38), + [aux_sym__inline_no_underscore] = STATE(38), + [sym__emphasis_star] = STATE(1168), + [sym__strong_emphasis_star] = STATE(38), + [sym__emphasis_underscore] = STATE(1168), + [sym__strong_emphasis_underscore] = STATE(38), + [aux_sym__inline_base_repeat1] = STATE(379), + [sym__backslash_escape] = ACTIONS(1059), + [sym_entity_reference] = ACTIONS(1061), + [sym_numeric_character_reference] = ACTIONS(1061), + [anon_sym_LT] = ACTIONS(1063), + [anon_sym_GT] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1067), + [anon_sym_DQUOTE] = ACTIONS(1065), + [anon_sym_POUND] = ACTIONS(1065), + [anon_sym_DOLLAR] = ACTIONS(1065), + [anon_sym_PERCENT] = ACTIONS(1065), + [anon_sym_AMP] = ACTIONS(1063), + [anon_sym_SQUOTE] = ACTIONS(1065), + [anon_sym_STAR] = ACTIONS(1065), + [anon_sym_PLUS] = ACTIONS(1065), + [anon_sym_COMMA] = ACTIONS(1065), + [anon_sym_DASH] = ACTIONS(1063), + [anon_sym_DOT] = ACTIONS(1063), + [anon_sym_SLASH] = ACTIONS(1065), + [anon_sym_COLON] = ACTIONS(1065), + [anon_sym_SEMI] = ACTIONS(1065), + [anon_sym_EQ] = ACTIONS(1065), + [anon_sym_QMARK] = ACTIONS(1065), + [anon_sym_LBRACK] = ACTIONS(1069), + [anon_sym_BSLASH] = ACTIONS(1071), + [anon_sym_CARET] = ACTIONS(1063), + [anon_sym__] = ACTIONS(1065), + [anon_sym_BQUOTE] = ACTIONS(1065), + [anon_sym_LBRACE] = ACTIONS(1073), + [anon_sym_PIPE] = ACTIONS(1065), + [anon_sym_TILDE] = ACTIONS(1065), + [anon_sym_LPAREN] = ACTIONS(1065), + [anon_sym_RPAREN] = ACTIONS(1065), + [sym__newline_token] = ACTIONS(1075), + [aux_sym_insert_token1] = ACTIONS(1077), + [aux_sym_delete_token1] = ACTIONS(1079), + [aux_sym_highlight_token1] = ACTIONS(1081), + [aux_sym_edit_comment_token1] = ACTIONS(1083), + [anon_sym_CARET_LBRACK] = ACTIONS(1085), + [anon_sym_LBRACK_CARET] = ACTIONS(1087), + [sym_uri_autolink] = ACTIONS(1061), + [sym_email_autolink] = ACTIONS(1061), + [sym__whitespace_ge_2] = ACTIONS(1089), + [aux_sym__whitespace_token1] = ACTIONS(1091), + [sym__word_no_digit] = ACTIONS(1093), + [sym__digits] = ACTIONS(1093), + [anon_sym_DASH_DASH] = ACTIONS(1095), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1093), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1093), + [sym__code_span_start] = ACTIONS(1097), + [sym__emphasis_open_star] = ACTIONS(1099), + [sym__emphasis_open_underscore] = ACTIONS(1101), + [sym__emphasis_close_underscore] = ACTIONS(2419), + [sym__strikeout_open] = ACTIONS(1105), + [sym__latex_span_start] = ACTIONS(1107), + [sym__single_quote_open] = ACTIONS(1109), + [sym__double_quote_open] = ACTIONS(1111), + [sym__superscript_open] = ACTIONS(1113), + [sym__subscript_open] = ACTIONS(1115), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1117), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1119), + [sym__cite_author_in_text] = ACTIONS(1121), + [sym__cite_suppress_author] = ACTIONS(1123), + [sym__shortcode_open_escaped] = ACTIONS(1125), + [sym__shortcode_open] = ACTIONS(1127), + [sym__unclosed_span] = ACTIONS(1061), + }, + [STATE(100)] = { + [sym_backslash_escape] = STATE(366), + [sym_commonmark_attribute] = STATE(366), + [sym_code_span] = STATE(366), + [sym_latex_span] = STATE(366), + [sym_insert] = STATE(366), + [sym_delete] = STATE(366), + [sym_highlight] = STATE(366), + [sym_edit_comment] = STATE(366), + [sym_superscript] = STATE(366), + [sym_subscript] = STATE(366), + [sym_strikeout] = STATE(366), + [sym_quoted_span] = STATE(366), + [sym_inline_note] = STATE(366), + [sym_citation] = STATE(366), + [sym_shortcode_escaped] = STATE(366), + [sym_shortcode] = STATE(366), + [sym_note_reference] = STATE(366), + [sym__link_text] = STATE(490), + [sym__link_text_non_empty] = STATE(491), + [sym_inline_link] = STATE(39), + [sym_image] = STATE(366), + [sym__image_inline_link] = STATE(1244), + [sym__image_description] = STATE(2280), + [sym__image_description_non_empty] = STATE(2280), + [sym_hard_line_break] = STATE(366), + [sym__whitespace] = STATE(1218), + [sym__word] = STATE(1218), + [sym__soft_line_break] = STATE(1245), + [sym__inline_base] = STATE(39), + [sym__text_base] = STATE(366), + [sym__inline_element] = STATE(39), + [sym__emphasis_star] = STATE(1270), + [sym__strong_emphasis_star] = STATE(39), + [sym__emphasis_underscore] = STATE(1270), + [sym__strong_emphasis_underscore] = STATE(39), + [aux_sym_insert_repeat1] = STATE(39), + [aux_sym__inline_base_repeat1] = STATE(366), + [sym__backslash_escape] = ACTIONS(2005), + [sym_entity_reference] = ACTIONS(2007), + [sym_numeric_character_reference] = ACTIONS(2007), + [anon_sym_LT] = ACTIONS(2009), + [anon_sym_GT] = ACTIONS(2011), + [anon_sym_BANG] = ACTIONS(2013), + [anon_sym_DQUOTE] = ACTIONS(2011), + [anon_sym_POUND] = ACTIONS(2011), + [anon_sym_DOLLAR] = ACTIONS(2011), + [anon_sym_PERCENT] = ACTIONS(2011), + [anon_sym_AMP] = ACTIONS(2009), + [anon_sym_SQUOTE] = ACTIONS(2011), + [anon_sym_STAR] = ACTIONS(2011), + [anon_sym_PLUS] = ACTIONS(2011), + [anon_sym_COMMA] = ACTIONS(2011), + [anon_sym_DASH] = ACTIONS(2009), + [anon_sym_DOT] = ACTIONS(2009), + [anon_sym_SLASH] = ACTIONS(2011), + [anon_sym_COLON] = ACTIONS(2011), + [anon_sym_SEMI] = ACTIONS(2011), + [anon_sym_EQ] = ACTIONS(2011), + [anon_sym_QMARK] = ACTIONS(2011), + [anon_sym_LBRACK] = ACTIONS(2015), + [anon_sym_BSLASH] = ACTIONS(2017), + [anon_sym_CARET] = ACTIONS(2009), + [anon_sym__] = ACTIONS(2011), + [anon_sym_BQUOTE] = ACTIONS(2011), + [anon_sym_LBRACE] = ACTIONS(2019), + [anon_sym_PIPE] = ACTIONS(2011), + [anon_sym_TILDE] = ACTIONS(2011), + [anon_sym_LPAREN] = ACTIONS(2011), + [anon_sym_RPAREN] = ACTIONS(2011), + [sym__newline_token] = ACTIONS(2021), + [aux_sym_insert_token1] = ACTIONS(2023), + [aux_sym_delete_token1] = ACTIONS(2025), + [aux_sym_highlight_token1] = ACTIONS(2027), + [aux_sym_edit_comment_token1] = ACTIONS(2029), + [anon_sym_CARET_LBRACK] = ACTIONS(2031), + [anon_sym_LBRACK_CARET] = ACTIONS(2033), + [sym_uri_autolink] = ACTIONS(2007), + [sym_email_autolink] = ACTIONS(2007), + [sym__whitespace_ge_2] = ACTIONS(2035), + [aux_sym__whitespace_token1] = ACTIONS(2037), + [sym__word_no_digit] = ACTIONS(2039), + [sym__digits] = ACTIONS(2039), + [anon_sym_DASH_DASH] = ACTIONS(2041), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2039), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2039), + [sym__code_span_start] = ACTIONS(2043), + [sym__emphasis_open_star] = ACTIONS(2045), + [sym__emphasis_open_underscore] = ACTIONS(2047), + [sym__strikeout_open] = ACTIONS(2049), + [sym__strikeout_close] = ACTIONS(2421), + [sym__latex_span_start] = ACTIONS(2053), + [sym__single_quote_open] = ACTIONS(2055), + [sym__double_quote_open] = ACTIONS(2057), + [sym__superscript_open] = ACTIONS(2059), + [sym__subscript_open] = ACTIONS(2061), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2063), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2065), + [sym__cite_author_in_text] = ACTIONS(2067), + [sym__cite_suppress_author] = ACTIONS(2069), + [sym__shortcode_open_escaped] = ACTIONS(2071), + [sym__shortcode_open] = ACTIONS(2073), + [sym__unclosed_span] = ACTIONS(2007), }, [STATE(101)] = { - [sym_backslash_escape] = STATE(270), - [sym_commonmark_attribute] = STATE(270), - [sym_code_span] = STATE(270), - [sym_latex_span] = STATE(270), - [sym_superscript] = STATE(270), - [sym_subscript] = STATE(270), - [sym_strikeout] = STATE(270), - [sym_quoted_span] = STATE(270), - [sym_inline_note] = STATE(270), - [sym_citation] = STATE(270), - [sym_shortcode_escaped] = STATE(270), - [sym_shortcode] = STATE(270), - [sym_note_reference] = STATE(270), - [sym__link_text] = STATE(359), - [sym__link_text_non_empty] = STATE(364), + [sym_backslash_escape] = STATE(375), + [sym_commonmark_attribute] = STATE(375), + [sym_code_span] = STATE(375), + [sym_latex_span] = STATE(375), + [sym_insert] = STATE(375), + [sym_delete] = STATE(375), + [sym_highlight] = STATE(375), + [sym_edit_comment] = STATE(375), + [sym_superscript] = STATE(375), + [sym_subscript] = STATE(375), + [sym_strikeout] = STATE(375), + [sym_quoted_span] = STATE(375), + [sym_inline_note] = STATE(375), + [sym_citation] = STATE(375), + [sym_shortcode_escaped] = STATE(375), + [sym_shortcode] = STATE(375), + [sym_note_reference] = STATE(375), + [sym__link_text] = STATE(525), + [sym__link_text_non_empty] = STATE(527), + [sym_inline_link] = STATE(47), + [sym_image] = STATE(375), + [sym__image_inline_link] = STATE(972), + [sym__image_description] = STATE(2286), + [sym__image_description_non_empty] = STATE(2286), + [sym_hard_line_break] = STATE(375), + [sym__whitespace] = STATE(949), + [sym__word] = STATE(949), + [sym__soft_line_break] = STATE(973), + [sym__inline_base] = STATE(47), + [sym__text_base] = STATE(375), + [sym__inline_element] = STATE(47), + [sym__emphasis_star] = STATE(1392), + [sym__strong_emphasis_star] = STATE(47), + [sym__emphasis_underscore] = STATE(1392), + [sym__strong_emphasis_underscore] = STATE(47), + [aux_sym_insert_repeat1] = STATE(47), + [aux_sym__inline_base_repeat1] = STATE(375), + [sym__backslash_escape] = ACTIONS(2179), + [sym_entity_reference] = ACTIONS(2181), + [sym_numeric_character_reference] = ACTIONS(2181), + [anon_sym_LT] = ACTIONS(2183), + [anon_sym_GT] = ACTIONS(2185), + [anon_sym_BANG] = ACTIONS(2187), + [anon_sym_DQUOTE] = ACTIONS(2185), + [anon_sym_POUND] = ACTIONS(2185), + [anon_sym_DOLLAR] = ACTIONS(2185), + [anon_sym_PERCENT] = ACTIONS(2185), + [anon_sym_AMP] = ACTIONS(2183), + [anon_sym_SQUOTE] = ACTIONS(2185), + [anon_sym_STAR] = ACTIONS(2185), + [anon_sym_PLUS] = ACTIONS(2185), + [anon_sym_COMMA] = ACTIONS(2185), + [anon_sym_DASH] = ACTIONS(2183), + [anon_sym_DOT] = ACTIONS(2183), + [anon_sym_SLASH] = ACTIONS(2185), + [anon_sym_COLON] = ACTIONS(2185), + [anon_sym_SEMI] = ACTIONS(2185), + [anon_sym_EQ] = ACTIONS(2185), + [anon_sym_QMARK] = ACTIONS(2185), + [anon_sym_LBRACK] = ACTIONS(2189), + [anon_sym_BSLASH] = ACTIONS(2191), + [anon_sym_CARET] = ACTIONS(2183), + [anon_sym__] = ACTIONS(2185), + [anon_sym_BQUOTE] = ACTIONS(2185), + [anon_sym_LBRACE] = ACTIONS(2193), + [anon_sym_PIPE] = ACTIONS(2185), + [anon_sym_TILDE] = ACTIONS(2185), + [anon_sym_LPAREN] = ACTIONS(2185), + [anon_sym_RPAREN] = ACTIONS(2185), + [sym__newline_token] = ACTIONS(2195), + [aux_sym_insert_token1] = ACTIONS(2197), + [aux_sym_delete_token1] = ACTIONS(2199), + [aux_sym_highlight_token1] = ACTIONS(2201), + [aux_sym_edit_comment_token1] = ACTIONS(2203), + [anon_sym_CARET_LBRACK] = ACTIONS(2205), + [anon_sym_LBRACK_CARET] = ACTIONS(2207), + [sym_uri_autolink] = ACTIONS(2181), + [sym_email_autolink] = ACTIONS(2181), + [sym__whitespace_ge_2] = ACTIONS(2209), + [aux_sym__whitespace_token1] = ACTIONS(2211), + [sym__word_no_digit] = ACTIONS(2213), + [sym__digits] = ACTIONS(2213), + [anon_sym_DASH_DASH] = ACTIONS(2215), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2213), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2213), + [sym__code_span_start] = ACTIONS(2217), + [sym__emphasis_open_star] = ACTIONS(2219), + [sym__emphasis_open_underscore] = ACTIONS(2221), + [sym__strikeout_open] = ACTIONS(2223), + [sym__latex_span_start] = ACTIONS(2225), + [sym__single_quote_open] = ACTIONS(2227), + [sym__single_quote_close] = ACTIONS(2423), + [sym__double_quote_open] = ACTIONS(2229), + [sym__superscript_open] = ACTIONS(2231), + [sym__subscript_open] = ACTIONS(2233), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2235), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2237), + [sym__cite_author_in_text] = ACTIONS(2239), + [sym__cite_suppress_author] = ACTIONS(2241), + [sym__shortcode_open_escaped] = ACTIONS(2243), + [sym__shortcode_open] = ACTIONS(2245), + [sym__unclosed_span] = ACTIONS(2181), + }, + [STATE(102)] = { + [sym_backslash_escape] = STATE(383), + [sym_commonmark_attribute] = STATE(383), + [sym_code_span] = STATE(383), + [sym_latex_span] = STATE(383), + [sym_insert] = STATE(383), + [sym_delete] = STATE(383), + [sym_highlight] = STATE(383), + [sym_edit_comment] = STATE(383), + [sym_superscript] = STATE(383), + [sym_subscript] = STATE(383), + [sym_strikeout] = STATE(383), + [sym_quoted_span] = STATE(383), + [sym_inline_note] = STATE(383), + [sym_citation] = STATE(383), + [sym_shortcode_escaped] = STATE(383), + [sym_shortcode] = STATE(383), + [sym_note_reference] = STATE(383), + [sym__link_text] = STATE(395), + [sym__link_text_non_empty] = STATE(396), + [sym_inline_link] = STATE(50), + [sym_image] = STATE(383), + [sym__image_inline_link] = STATE(1263), + [sym__image_description] = STATE(2300), + [sym__image_description_non_empty] = STATE(2300), + [sym_hard_line_break] = STATE(383), + [sym__whitespace] = STATE(1259), + [sym__word] = STATE(1259), + [sym__soft_line_break] = STATE(1264), + [sym__inline_base] = STATE(50), + [sym__text_base] = STATE(383), + [sym__inline_element] = STATE(50), + [sym__emphasis_star] = STATE(1249), + [sym__strong_emphasis_star] = STATE(50), + [sym__emphasis_underscore] = STATE(1249), + [sym__strong_emphasis_underscore] = STATE(50), + [aux_sym_insert_repeat1] = STATE(50), + [aux_sym__inline_base_repeat1] = STATE(383), + [sym__backslash_escape] = ACTIONS(637), + [sym_entity_reference] = ACTIONS(639), + [sym_numeric_character_reference] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_GT] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(645), + [anon_sym_DQUOTE] = ACTIONS(643), + [anon_sym_POUND] = ACTIONS(643), + [anon_sym_DOLLAR] = ACTIONS(643), + [anon_sym_PERCENT] = ACTIONS(643), + [anon_sym_AMP] = ACTIONS(641), + [anon_sym_SQUOTE] = ACTIONS(643), + [anon_sym_STAR] = ACTIONS(643), + [anon_sym_PLUS] = ACTIONS(643), + [anon_sym_COMMA] = ACTIONS(643), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_DOT] = ACTIONS(641), + [anon_sym_SLASH] = ACTIONS(643), + [anon_sym_COLON] = ACTIONS(643), + [anon_sym_SEMI] = ACTIONS(643), + [anon_sym_EQ] = ACTIONS(643), + [anon_sym_QMARK] = ACTIONS(643), + [anon_sym_LBRACK] = ACTIONS(647), + [anon_sym_BSLASH] = ACTIONS(649), + [anon_sym_CARET] = ACTIONS(641), + [anon_sym__] = ACTIONS(643), + [anon_sym_BQUOTE] = ACTIONS(643), + [anon_sym_LBRACE] = ACTIONS(651), + [anon_sym_PIPE] = ACTIONS(643), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_LPAREN] = ACTIONS(643), + [anon_sym_RPAREN] = ACTIONS(643), + [sym__newline_token] = ACTIONS(653), + [aux_sym_insert_token1] = ACTIONS(655), + [aux_sym_delete_token1] = ACTIONS(657), + [aux_sym_highlight_token1] = ACTIONS(659), + [aux_sym_edit_comment_token1] = ACTIONS(661), + [anon_sym_CARET_LBRACK] = ACTIONS(663), + [anon_sym_LBRACK_CARET] = ACTIONS(665), + [sym_uri_autolink] = ACTIONS(639), + [sym_email_autolink] = ACTIONS(639), + [sym__whitespace_ge_2] = ACTIONS(667), + [aux_sym__whitespace_token1] = ACTIONS(669), + [sym__word_no_digit] = ACTIONS(671), + [sym__digits] = ACTIONS(671), + [anon_sym_DASH_DASH] = ACTIONS(673), + [anon_sym_DASH_DASH_DASH] = ACTIONS(671), + [anon_sym_DOT_DOT_DOT] = ACTIONS(671), + [sym__code_span_start] = ACTIONS(675), + [sym__emphasis_open_star] = ACTIONS(677), + [sym__emphasis_open_underscore] = ACTIONS(679), + [sym__strikeout_open] = ACTIONS(681), + [sym__latex_span_start] = ACTIONS(683), + [sym__single_quote_open] = ACTIONS(685), + [sym__double_quote_open] = ACTIONS(687), + [sym__double_quote_close] = ACTIONS(2423), + [sym__superscript_open] = ACTIONS(691), + [sym__subscript_open] = ACTIONS(693), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(695), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(697), + [sym__cite_author_in_text] = ACTIONS(699), + [sym__cite_suppress_author] = ACTIONS(701), + [sym__shortcode_open_escaped] = ACTIONS(703), + [sym__shortcode_open] = ACTIONS(705), + [sym__unclosed_span] = ACTIONS(639), + }, + [STATE(103)] = { + [sym_backslash_escape] = STATE(365), + [sym_commonmark_attribute] = STATE(365), + [sym_code_span] = STATE(365), + [sym_latex_span] = STATE(365), + [sym_insert] = STATE(365), + [sym_delete] = STATE(365), + [sym_highlight] = STATE(365), + [sym_edit_comment] = STATE(365), + [sym_superscript] = STATE(365), + [sym_subscript] = STATE(365), + [sym_strikeout] = STATE(365), + [sym_quoted_span] = STATE(365), + [sym_inline_note] = STATE(365), + [sym_citation] = STATE(365), + [sym_shortcode_escaped] = STATE(365), + [sym_shortcode] = STATE(365), + [sym_note_reference] = STATE(365), + [sym__link_text] = STATE(416), + [sym__link_text_non_empty] = STATE(417), [sym_inline_link] = STATE(52), - [sym_image] = STATE(270), - [sym__image_inline_link] = STATE(795), - [sym__image_description] = STATE(1984), - [sym__image_description_non_empty] = STATE(1984), - [sym_hard_line_break] = STATE(270), - [sym__whitespace] = STATE(792), - [sym__word] = STATE(792), - [sym__soft_line_break] = STATE(796), + [sym_image] = STATE(365), + [sym__image_inline_link] = STATE(712), + [sym__image_description] = STATE(2314), + [sym__image_description_non_empty] = STATE(2314), + [sym_hard_line_break] = STATE(365), + [sym__whitespace] = STATE(709), + [sym__word] = STATE(709), + [sym__soft_line_break] = STATE(713), [sym__inline_base] = STATE(52), - [sym__text_base] = STATE(270), + [sym__text_base] = STATE(365), [sym__inline_element] = STATE(52), - [sym__emphasis_star] = STATE(615), + [sym__emphasis_star] = STATE(979), [sym__strong_emphasis_star] = STATE(52), - [sym__emphasis_underscore] = STATE(615), + [sym__emphasis_underscore] = STATE(979), [sym__strong_emphasis_underscore] = STATE(52), - [aux_sym_superscript_repeat1] = STATE(52), - [aux_sym__inline_base_repeat1] = STATE(270), - [sym__backslash_escape] = ACTIONS(809), - [sym_entity_reference] = ACTIONS(811), - [sym_numeric_character_reference] = ACTIONS(811), - [anon_sym_LT] = ACTIONS(813), - [anon_sym_GT] = ACTIONS(815), - [anon_sym_BANG] = ACTIONS(817), - [anon_sym_DQUOTE] = ACTIONS(815), - [anon_sym_POUND] = ACTIONS(815), - [anon_sym_DOLLAR] = ACTIONS(815), - [anon_sym_PERCENT] = ACTIONS(815), - [anon_sym_AMP] = ACTIONS(813), - [anon_sym_SQUOTE] = ACTIONS(815), - [anon_sym_STAR] = ACTIONS(815), - [anon_sym_PLUS] = ACTIONS(815), - [anon_sym_COMMA] = ACTIONS(815), - [anon_sym_DASH] = ACTIONS(813), - [anon_sym_DOT] = ACTIONS(813), - [anon_sym_SLASH] = ACTIONS(815), - [anon_sym_COLON] = ACTIONS(815), - [anon_sym_SEMI] = ACTIONS(815), - [anon_sym_EQ] = ACTIONS(815), - [anon_sym_QMARK] = ACTIONS(815), - [anon_sym_LBRACK] = ACTIONS(819), - [anon_sym_BSLASH] = ACTIONS(821), - [anon_sym_CARET] = ACTIONS(813), - [anon_sym__] = ACTIONS(815), - [anon_sym_BQUOTE] = ACTIONS(815), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_PIPE] = ACTIONS(815), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_RPAREN] = ACTIONS(815), - [sym__newline_token] = ACTIONS(825), - [anon_sym_CARET_LBRACK] = ACTIONS(827), - [anon_sym_LBRACK_CARET] = ACTIONS(829), - [sym_uri_autolink] = ACTIONS(811), - [sym_email_autolink] = ACTIONS(811), - [sym__whitespace_ge_2] = ACTIONS(831), - [aux_sym__whitespace_token1] = ACTIONS(833), - [sym__word_no_digit] = ACTIONS(835), - [sym__digits] = ACTIONS(835), - [anon_sym_DASH_DASH] = ACTIONS(837), - [anon_sym_DASH_DASH_DASH] = ACTIONS(835), - [anon_sym_DOT_DOT_DOT] = ACTIONS(835), - [sym__code_span_start] = ACTIONS(839), - [sym__emphasis_open_star] = ACTIONS(841), - [sym__emphasis_open_underscore] = ACTIONS(843), - [sym__strikeout_open] = ACTIONS(845), - [sym__latex_span_start] = ACTIONS(847), - [sym__single_quote_open] = ACTIONS(849), - [sym__double_quote_open] = ACTIONS(851), - [sym__superscript_open] = ACTIONS(853), - [sym__subscript_open] = ACTIONS(855), - [sym__subscript_close] = ACTIONS(2001), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(859), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(861), - [sym__cite_author_in_text] = ACTIONS(863), - [sym__cite_suppress_author] = ACTIONS(865), - [sym__shortcode_open_escaped] = ACTIONS(867), - [sym__shortcode_open] = ACTIONS(869), - [sym__unclosed_span] = ACTIONS(811), - }, - [STATE(102)] = { - [sym_backslash_escape] = STATE(271), - [sym_commonmark_attribute] = STATE(271), - [sym_code_span] = STATE(271), - [sym_latex_span] = STATE(271), - [sym_superscript] = STATE(271), - [sym_subscript] = STATE(271), - [sym_strikeout] = STATE(271), - [sym_quoted_span] = STATE(271), - [sym_inline_note] = STATE(271), - [sym_citation] = STATE(271), - [sym_shortcode_escaped] = STATE(271), - [sym_shortcode] = STATE(271), - [sym_note_reference] = STATE(271), - [sym__link_text] = STATE(424), - [sym__link_text_non_empty] = STATE(425), - [sym_inline_link] = STATE(106), - [sym_image] = STATE(271), - [sym__image_inline_link] = STATE(883), - [sym__image_description] = STATE(1998), - [sym__image_description_non_empty] = STATE(1998), - [sym_hard_line_break] = STATE(271), - [sym__whitespace] = STATE(881), - [sym__word] = STATE(881), - [sym__soft_line_break] = STATE(884), - [sym__inline_base] = STATE(106), - [sym__text_base] = STATE(271), - [sym__inline_element] = STATE(106), - [sym__emphasis_star] = STATE(710), - [sym__strong_emphasis_star] = STATE(106), - [sym__emphasis_underscore] = STATE(710), - [sym__strong_emphasis_underscore] = STATE(106), - [aux_sym_superscript_repeat1] = STATE(106), - [aux_sym__inline_base_repeat1] = STATE(271), - [sym__backslash_escape] = ACTIONS(159), - [sym_entity_reference] = ACTIONS(161), - [sym_numeric_character_reference] = ACTIONS(161), - [anon_sym_LT] = ACTIONS(163), - [anon_sym_GT] = ACTIONS(165), - [anon_sym_BANG] = ACTIONS(167), - [anon_sym_DQUOTE] = ACTIONS(165), - [anon_sym_POUND] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(165), - [anon_sym_PERCENT] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_SQUOTE] = ACTIONS(165), - [anon_sym_STAR] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(165), - [anon_sym_COMMA] = ACTIONS(165), - [anon_sym_DASH] = ACTIONS(163), - [anon_sym_DOT] = ACTIONS(163), - [anon_sym_SLASH] = ACTIONS(165), - [anon_sym_COLON] = ACTIONS(165), - [anon_sym_SEMI] = ACTIONS(165), - [anon_sym_EQ] = ACTIONS(165), - [anon_sym_QMARK] = ACTIONS(165), - [anon_sym_LBRACK] = ACTIONS(169), - [anon_sym_BSLASH] = ACTIONS(171), - [anon_sym_RBRACK] = ACTIONS(2003), - [anon_sym_CARET] = ACTIONS(163), - [anon_sym__] = ACTIONS(165), - [anon_sym_BQUOTE] = ACTIONS(165), - [anon_sym_LBRACE] = ACTIONS(175), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(165), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_RPAREN] = ACTIONS(165), - [sym__newline_token] = ACTIONS(177), - [anon_sym_CARET_LBRACK] = ACTIONS(179), - [anon_sym_LBRACK_CARET] = ACTIONS(181), - [sym_uri_autolink] = ACTIONS(161), - [sym_email_autolink] = ACTIONS(161), - [sym__whitespace_ge_2] = ACTIONS(183), - [aux_sym__whitespace_token1] = ACTIONS(185), - [sym__word_no_digit] = ACTIONS(187), - [sym__digits] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_DASH_DASH_DASH] = ACTIONS(187), - [anon_sym_DOT_DOT_DOT] = ACTIONS(187), - [sym__code_span_start] = ACTIONS(191), - [sym__emphasis_open_star] = ACTIONS(193), - [sym__emphasis_open_underscore] = ACTIONS(195), - [sym__strikeout_open] = ACTIONS(199), - [sym__latex_span_start] = ACTIONS(201), - [sym__single_quote_open] = ACTIONS(203), - [sym__double_quote_open] = ACTIONS(205), - [sym__superscript_open] = ACTIONS(207), - [sym__subscript_open] = ACTIONS(209), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(211), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(213), - [sym__cite_author_in_text] = ACTIONS(215), - [sym__cite_suppress_author] = ACTIONS(217), - [sym__shortcode_open_escaped] = ACTIONS(219), - [sym__shortcode_open] = ACTIONS(221), - [sym__unclosed_span] = ACTIONS(161), - }, - [STATE(103)] = { - [sym_backslash_escape] = STATE(271), - [sym_commonmark_attribute] = STATE(271), - [sym_code_span] = STATE(271), - [sym_latex_span] = STATE(271), - [sym_superscript] = STATE(271), - [sym_subscript] = STATE(271), - [sym_strikeout] = STATE(271), - [sym_quoted_span] = STATE(271), - [sym_inline_note] = STATE(271), - [sym_citation] = STATE(271), - [sym_shortcode_escaped] = STATE(271), - [sym_shortcode] = STATE(271), - [sym_note_reference] = STATE(271), - [sym__link_text] = STATE(424), - [sym__link_text_non_empty] = STATE(425), - [sym_inline_link] = STATE(53), - [sym_image] = STATE(271), - [sym__image_inline_link] = STATE(883), - [sym__image_description] = STATE(1998), - [sym__image_description_non_empty] = STATE(1998), - [sym_hard_line_break] = STATE(271), - [sym__whitespace] = STATE(881), - [sym__word] = STATE(881), - [sym__soft_line_break] = STATE(884), - [sym__inline_base] = STATE(53), - [sym__text_base] = STATE(271), - [sym__inline_element] = STATE(53), - [sym__emphasis_star] = STATE(710), - [sym__strong_emphasis_star] = STATE(53), - [sym__emphasis_underscore] = STATE(710), - [sym__strong_emphasis_underscore] = STATE(53), - [aux_sym_superscript_repeat1] = STATE(53), - [aux_sym__inline_base_repeat1] = STATE(271), - [sym__backslash_escape] = ACTIONS(159), - [sym_entity_reference] = ACTIONS(161), - [sym_numeric_character_reference] = ACTIONS(161), - [anon_sym_LT] = ACTIONS(163), - [anon_sym_GT] = ACTIONS(165), - [anon_sym_BANG] = ACTIONS(167), - [anon_sym_DQUOTE] = ACTIONS(165), - [anon_sym_POUND] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(165), - [anon_sym_PERCENT] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_SQUOTE] = ACTIONS(165), - [anon_sym_STAR] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(165), - [anon_sym_COMMA] = ACTIONS(165), - [anon_sym_DASH] = ACTIONS(163), - [anon_sym_DOT] = ACTIONS(163), - [anon_sym_SLASH] = ACTIONS(165), - [anon_sym_COLON] = ACTIONS(165), - [anon_sym_SEMI] = ACTIONS(165), - [anon_sym_EQ] = ACTIONS(165), - [anon_sym_QMARK] = ACTIONS(165), - [anon_sym_LBRACK] = ACTIONS(169), - [anon_sym_BSLASH] = ACTIONS(171), - [anon_sym_RBRACK] = ACTIONS(2005), - [anon_sym_CARET] = ACTIONS(163), - [anon_sym__] = ACTIONS(165), - [anon_sym_BQUOTE] = ACTIONS(165), - [anon_sym_LBRACE] = ACTIONS(175), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(165), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_RPAREN] = ACTIONS(165), - [sym__newline_token] = ACTIONS(177), - [anon_sym_CARET_LBRACK] = ACTIONS(179), - [anon_sym_LBRACK_CARET] = ACTIONS(181), - [sym_uri_autolink] = ACTIONS(161), - [sym_email_autolink] = ACTIONS(161), - [sym__whitespace_ge_2] = ACTIONS(183), - [aux_sym__whitespace_token1] = ACTIONS(185), - [sym__word_no_digit] = ACTIONS(187), - [sym__digits] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_DASH_DASH_DASH] = ACTIONS(187), - [anon_sym_DOT_DOT_DOT] = ACTIONS(187), - [sym__code_span_start] = ACTIONS(191), - [sym__emphasis_open_star] = ACTIONS(193), - [sym__emphasis_open_underscore] = ACTIONS(195), - [sym__strikeout_open] = ACTIONS(199), - [sym__latex_span_start] = ACTIONS(201), - [sym__single_quote_open] = ACTIONS(203), - [sym__double_quote_open] = ACTIONS(205), - [sym__superscript_open] = ACTIONS(207), - [sym__subscript_open] = ACTIONS(209), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(211), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(213), - [sym__cite_author_in_text] = ACTIONS(215), - [sym__cite_suppress_author] = ACTIONS(217), - [sym__shortcode_open_escaped] = ACTIONS(219), - [sym__shortcode_open] = ACTIONS(221), - [sym__unclosed_span] = ACTIONS(161), + [aux_sym_insert_repeat1] = STATE(52), + [aux_sym__inline_base_repeat1] = STATE(365), + [sym__backslash_escape] = ACTIONS(1341), + [sym_entity_reference] = ACTIONS(1343), + [sym_numeric_character_reference] = ACTIONS(1343), + [anon_sym_LT] = ACTIONS(1345), + [anon_sym_GT] = ACTIONS(1347), + [anon_sym_BANG] = ACTIONS(1349), + [anon_sym_DQUOTE] = ACTIONS(1347), + [anon_sym_POUND] = ACTIONS(1347), + [anon_sym_DOLLAR] = ACTIONS(1347), + [anon_sym_PERCENT] = ACTIONS(1347), + [anon_sym_AMP] = ACTIONS(1345), + [anon_sym_SQUOTE] = ACTIONS(1347), + [anon_sym_STAR] = ACTIONS(1347), + [anon_sym_PLUS] = ACTIONS(1347), + [anon_sym_COMMA] = ACTIONS(1347), + [anon_sym_DASH] = ACTIONS(1345), + [anon_sym_DOT] = ACTIONS(1345), + [anon_sym_SLASH] = ACTIONS(1347), + [anon_sym_COLON] = ACTIONS(1347), + [anon_sym_SEMI] = ACTIONS(1347), + [anon_sym_EQ] = ACTIONS(1347), + [anon_sym_QMARK] = ACTIONS(1347), + [anon_sym_LBRACK] = ACTIONS(1351), + [anon_sym_BSLASH] = ACTIONS(1353), + [anon_sym_CARET] = ACTIONS(1345), + [anon_sym__] = ACTIONS(1347), + [anon_sym_BQUOTE] = ACTIONS(1347), + [anon_sym_LBRACE] = ACTIONS(1355), + [anon_sym_PIPE] = ACTIONS(1347), + [anon_sym_TILDE] = ACTIONS(1347), + [anon_sym_LPAREN] = ACTIONS(1347), + [anon_sym_RPAREN] = ACTIONS(1347), + [sym__newline_token] = ACTIONS(1357), + [aux_sym_insert_token1] = ACTIONS(1359), + [aux_sym_delete_token1] = ACTIONS(1361), + [aux_sym_highlight_token1] = ACTIONS(1363), + [aux_sym_edit_comment_token1] = ACTIONS(1365), + [anon_sym_CARET_LBRACK] = ACTIONS(1367), + [anon_sym_LBRACK_CARET] = ACTIONS(1369), + [sym_uri_autolink] = ACTIONS(1343), + [sym_email_autolink] = ACTIONS(1343), + [sym__whitespace_ge_2] = ACTIONS(1371), + [aux_sym__whitespace_token1] = ACTIONS(1373), + [sym__word_no_digit] = ACTIONS(1375), + [sym__digits] = ACTIONS(1375), + [anon_sym_DASH_DASH] = ACTIONS(1377), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1375), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1375), + [sym__code_span_start] = ACTIONS(1379), + [sym__emphasis_open_star] = ACTIONS(1381), + [sym__emphasis_open_underscore] = ACTIONS(1383), + [sym__strikeout_open] = ACTIONS(1385), + [sym__latex_span_start] = ACTIONS(1387), + [sym__single_quote_open] = ACTIONS(1389), + [sym__double_quote_open] = ACTIONS(1391), + [sym__superscript_open] = ACTIONS(1393), + [sym__superscript_close] = ACTIONS(2425), + [sym__subscript_open] = ACTIONS(1397), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1399), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1401), + [sym__cite_author_in_text] = ACTIONS(1403), + [sym__cite_suppress_author] = ACTIONS(1405), + [sym__shortcode_open_escaped] = ACTIONS(1407), + [sym__shortcode_open] = ACTIONS(1409), + [sym__unclosed_span] = ACTIONS(1343), }, [STATE(104)] = { - [sym_backslash_escape] = STATE(261), - [sym_commonmark_attribute] = STATE(261), - [sym_code_span] = STATE(261), - [sym_latex_span] = STATE(261), - [sym_superscript] = STATE(261), - [sym_subscript] = STATE(261), - [sym_strikeout] = STATE(261), - [sym_quoted_span] = STATE(261), - [sym_inline_note] = STATE(261), - [sym_citation] = STATE(261), - [sym_shortcode_escaped] = STATE(261), - [sym_shortcode] = STATE(261), - [sym_note_reference] = STATE(261), - [sym__link_text] = STATE(322), - [sym__link_text_non_empty] = STATE(323), - [sym_inline_link] = STATE(39), - [sym_image] = STATE(261), - [sym__image_inline_link] = STATE(595), - [sym__image_description] = STATE(1972), - [sym__image_description_non_empty] = STATE(1972), - [sym_hard_line_break] = STATE(261), - [sym__whitespace] = STATE(587), - [sym__word] = STATE(587), - [sym__soft_line_break] = STATE(597), - [sym__inline_base] = STATE(39), - [sym__text_base] = STATE(261), - [sym__inline_element_no_star] = STATE(39), - [aux_sym__inline_no_star] = STATE(39), - [sym__emphasis_star] = STATE(544), - [sym__strong_emphasis_star] = STATE(39), - [sym__emphasis_underscore] = STATE(544), - [sym__strong_emphasis_underscore] = STATE(39), - [aux_sym__inline_base_repeat1] = STATE(261), - [sym__backslash_escape] = ACTIONS(969), - [sym_entity_reference] = ACTIONS(971), - [sym_numeric_character_reference] = ACTIONS(971), - [anon_sym_LT] = ACTIONS(973), - [anon_sym_GT] = ACTIONS(975), - [anon_sym_BANG] = ACTIONS(977), - [anon_sym_DQUOTE] = ACTIONS(975), - [anon_sym_POUND] = ACTIONS(975), - [anon_sym_DOLLAR] = ACTIONS(975), - [anon_sym_PERCENT] = ACTIONS(975), - [anon_sym_AMP] = ACTIONS(973), - [anon_sym_SQUOTE] = ACTIONS(975), - [anon_sym_STAR] = ACTIONS(975), - [anon_sym_PLUS] = ACTIONS(975), - [anon_sym_COMMA] = ACTIONS(975), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_DOT] = ACTIONS(973), - [anon_sym_SLASH] = ACTIONS(975), - [anon_sym_COLON] = ACTIONS(975), - [anon_sym_SEMI] = ACTIONS(975), - [anon_sym_EQ] = ACTIONS(975), - [anon_sym_QMARK] = ACTIONS(975), - [anon_sym_LBRACK] = ACTIONS(979), - [anon_sym_BSLASH] = ACTIONS(981), - [anon_sym_CARET] = ACTIONS(973), - [anon_sym__] = ACTIONS(975), - [anon_sym_BQUOTE] = ACTIONS(975), - [anon_sym_LBRACE] = ACTIONS(983), - [anon_sym_PIPE] = ACTIONS(975), - [anon_sym_TILDE] = ACTIONS(975), - [anon_sym_LPAREN] = ACTIONS(975), - [anon_sym_RPAREN] = ACTIONS(975), - [sym__newline_token] = ACTIONS(985), - [anon_sym_CARET_LBRACK] = ACTIONS(987), - [anon_sym_LBRACK_CARET] = ACTIONS(989), - [sym_uri_autolink] = ACTIONS(971), - [sym_email_autolink] = ACTIONS(971), - [sym__whitespace_ge_2] = ACTIONS(991), - [aux_sym__whitespace_token1] = ACTIONS(993), - [sym__word_no_digit] = ACTIONS(995), - [sym__digits] = ACTIONS(995), - [anon_sym_DASH_DASH] = ACTIONS(997), - [anon_sym_DASH_DASH_DASH] = ACTIONS(995), - [anon_sym_DOT_DOT_DOT] = ACTIONS(995), - [sym__code_span_start] = ACTIONS(999), - [sym__emphasis_open_star] = ACTIONS(1001), - [sym__emphasis_open_underscore] = ACTIONS(1003), - [sym__emphasis_close_star] = ACTIONS(2007), - [sym__strikeout_open] = ACTIONS(1007), - [sym__latex_span_start] = ACTIONS(1009), - [sym__single_quote_open] = ACTIONS(1011), - [sym__double_quote_open] = ACTIONS(1013), - [sym__superscript_open] = ACTIONS(1015), - [sym__subscript_open] = ACTIONS(1017), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1019), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1021), - [sym__cite_author_in_text] = ACTIONS(1023), - [sym__cite_suppress_author] = ACTIONS(1025), - [sym__shortcode_open_escaped] = ACTIONS(1027), - [sym__shortcode_open] = ACTIONS(1029), - [sym__unclosed_span] = ACTIONS(971), + [sym_backslash_escape] = STATE(367), + [sym_commonmark_attribute] = STATE(367), + [sym_code_span] = STATE(367), + [sym_latex_span] = STATE(367), + [sym_insert] = STATE(367), + [sym_delete] = STATE(367), + [sym_highlight] = STATE(367), + [sym_edit_comment] = STATE(367), + [sym_superscript] = STATE(367), + [sym_subscript] = STATE(367), + [sym_strikeout] = STATE(367), + [sym_quoted_span] = STATE(367), + [sym_inline_note] = STATE(367), + [sym_citation] = STATE(367), + [sym_shortcode_escaped] = STATE(367), + [sym_shortcode] = STATE(367), + [sym_note_reference] = STATE(367), + [sym__link_text] = STATE(435), + [sym__link_text_non_empty] = STATE(436), + [sym_inline_link] = STATE(55), + [sym_image] = STATE(367), + [sym__image_inline_link] = STATE(819), + [sym__image_description] = STATE(2328), + [sym__image_description_non_empty] = STATE(2328), + [sym_hard_line_break] = STATE(367), + [sym__whitespace] = STATE(816), + [sym__word] = STATE(816), + [sym__soft_line_break] = STATE(820), + [sym__inline_base] = STATE(55), + [sym__text_base] = STATE(367), + [sym__inline_element] = STATE(55), + [sym__emphasis_star] = STATE(1271), + [sym__strong_emphasis_star] = STATE(55), + [sym__emphasis_underscore] = STATE(1271), + [sym__strong_emphasis_underscore] = STATE(55), + [aux_sym_insert_repeat1] = STATE(55), + [aux_sym__inline_base_repeat1] = STATE(367), + [sym__backslash_escape] = ACTIONS(1413), + [sym_entity_reference] = ACTIONS(1415), + [sym_numeric_character_reference] = ACTIONS(1415), + [anon_sym_LT] = ACTIONS(1417), + [anon_sym_GT] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1419), + [anon_sym_POUND] = ACTIONS(1419), + [anon_sym_DOLLAR] = ACTIONS(1419), + [anon_sym_PERCENT] = ACTIONS(1419), + [anon_sym_AMP] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [anon_sym_STAR] = ACTIONS(1419), + [anon_sym_PLUS] = ACTIONS(1419), + [anon_sym_COMMA] = ACTIONS(1419), + [anon_sym_DASH] = ACTIONS(1417), + [anon_sym_DOT] = ACTIONS(1417), + [anon_sym_SLASH] = ACTIONS(1419), + [anon_sym_COLON] = ACTIONS(1419), + [anon_sym_SEMI] = ACTIONS(1419), + [anon_sym_EQ] = ACTIONS(1419), + [anon_sym_QMARK] = ACTIONS(1419), + [anon_sym_LBRACK] = ACTIONS(1423), + [anon_sym_BSLASH] = ACTIONS(1425), + [anon_sym_CARET] = ACTIONS(1417), + [anon_sym__] = ACTIONS(1419), + [anon_sym_BQUOTE] = ACTIONS(1419), + [anon_sym_LBRACE] = ACTIONS(1427), + [anon_sym_PIPE] = ACTIONS(1419), + [anon_sym_TILDE] = ACTIONS(1419), + [anon_sym_LPAREN] = ACTIONS(1419), + [anon_sym_RPAREN] = ACTIONS(1419), + [sym__newline_token] = ACTIONS(1429), + [aux_sym_insert_token1] = ACTIONS(1431), + [aux_sym_delete_token1] = ACTIONS(1433), + [aux_sym_highlight_token1] = ACTIONS(1435), + [aux_sym_edit_comment_token1] = ACTIONS(1437), + [anon_sym_CARET_LBRACK] = ACTIONS(1439), + [anon_sym_LBRACK_CARET] = ACTIONS(1441), + [sym_uri_autolink] = ACTIONS(1415), + [sym_email_autolink] = ACTIONS(1415), + [sym__whitespace_ge_2] = ACTIONS(1443), + [aux_sym__whitespace_token1] = ACTIONS(1445), + [sym__word_no_digit] = ACTIONS(1447), + [sym__digits] = ACTIONS(1447), + [anon_sym_DASH_DASH] = ACTIONS(1449), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1447), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1447), + [sym__code_span_start] = ACTIONS(1451), + [sym__emphasis_open_star] = ACTIONS(1453), + [sym__emphasis_open_underscore] = ACTIONS(1455), + [sym__strikeout_open] = ACTIONS(1457), + [sym__latex_span_start] = ACTIONS(1459), + [sym__single_quote_open] = ACTIONS(1461), + [sym__double_quote_open] = ACTIONS(1463), + [sym__superscript_open] = ACTIONS(1465), + [sym__subscript_open] = ACTIONS(1467), + [sym__subscript_close] = ACTIONS(2427), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1471), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1473), + [sym__cite_author_in_text] = ACTIONS(1475), + [sym__cite_suppress_author] = ACTIONS(1477), + [sym__shortcode_open_escaped] = ACTIONS(1479), + [sym__shortcode_open] = ACTIONS(1481), + [sym__unclosed_span] = ACTIONS(1415), }, [STATE(105)] = { - [sym_backslash_escape] = STATE(274), - [sym_commonmark_attribute] = STATE(274), - [sym_code_span] = STATE(274), - [sym_latex_span] = STATE(274), - [sym_superscript] = STATE(274), - [sym_subscript] = STATE(274), - [sym_strikeout] = STATE(274), - [sym_quoted_span] = STATE(274), - [sym_inline_note] = STATE(274), - [sym_citation] = STATE(274), - [sym_shortcode_escaped] = STATE(274), - [sym_shortcode] = STATE(274), - [sym_note_reference] = STATE(274), - [sym__link_text] = STATE(351), - [sym__link_text_non_empty] = STATE(352), - [sym_inline_link] = STATE(41), - [sym_image] = STATE(274), - [sym__image_inline_link] = STATE(894), - [sym__image_description] = STATE(2008), - [sym__image_description_non_empty] = STATE(2008), - [sym_hard_line_break] = STATE(274), - [sym__whitespace] = STATE(882), - [sym__word] = STATE(882), - [sym__soft_line_break] = STATE(898), - [sym__inline_base] = STATE(41), - [sym__text_base] = STATE(274), - [sym__inline_element_no_underscore] = STATE(41), - [aux_sym__inline_no_underscore] = STATE(41), - [sym__emphasis_star] = STATE(711), - [sym__strong_emphasis_star] = STATE(41), - [sym__emphasis_underscore] = STATE(711), - [sym__strong_emphasis_underscore] = STATE(41), - [aux_sym__inline_base_repeat1] = STATE(274), - [sym__backslash_escape] = ACTIONS(1123), - [sym_entity_reference] = ACTIONS(1125), - [sym_numeric_character_reference] = ACTIONS(1125), - [anon_sym_LT] = ACTIONS(1127), - [anon_sym_GT] = ACTIONS(1129), - [anon_sym_BANG] = ACTIONS(1131), - [anon_sym_DQUOTE] = ACTIONS(1129), - [anon_sym_POUND] = ACTIONS(1129), - [anon_sym_DOLLAR] = ACTIONS(1129), - [anon_sym_PERCENT] = ACTIONS(1129), - [anon_sym_AMP] = ACTIONS(1127), - [anon_sym_SQUOTE] = ACTIONS(1129), - [anon_sym_STAR] = ACTIONS(1129), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_COMMA] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1127), - [anon_sym_DOT] = ACTIONS(1127), - [anon_sym_SLASH] = ACTIONS(1129), - [anon_sym_COLON] = ACTIONS(1129), - [anon_sym_SEMI] = ACTIONS(1129), - [anon_sym_EQ] = ACTIONS(1129), - [anon_sym_QMARK] = ACTIONS(1129), - [anon_sym_LBRACK] = ACTIONS(1133), - [anon_sym_BSLASH] = ACTIONS(1135), - [anon_sym_CARET] = ACTIONS(1127), - [anon_sym__] = ACTIONS(1129), - [anon_sym_BQUOTE] = ACTIONS(1129), - [anon_sym_LBRACE] = ACTIONS(1137), - [anon_sym_PIPE] = ACTIONS(1129), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1129), - [anon_sym_RPAREN] = ACTIONS(1129), - [sym__newline_token] = ACTIONS(1139), - [anon_sym_CARET_LBRACK] = ACTIONS(1141), - [anon_sym_LBRACK_CARET] = ACTIONS(1143), - [sym_uri_autolink] = ACTIONS(1125), - [sym_email_autolink] = ACTIONS(1125), - [sym__whitespace_ge_2] = ACTIONS(1145), - [aux_sym__whitespace_token1] = ACTIONS(1147), - [sym__word_no_digit] = ACTIONS(1149), - [sym__digits] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1151), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1149), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1149), - [sym__code_span_start] = ACTIONS(1153), - [sym__emphasis_open_star] = ACTIONS(1155), - [sym__emphasis_open_underscore] = ACTIONS(1157), - [sym__emphasis_close_underscore] = ACTIONS(2009), - [sym__strikeout_open] = ACTIONS(1161), - [sym__latex_span_start] = ACTIONS(1163), - [sym__single_quote_open] = ACTIONS(1165), - [sym__double_quote_open] = ACTIONS(1167), - [sym__superscript_open] = ACTIONS(1169), - [sym__subscript_open] = ACTIONS(1171), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1173), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1175), - [sym__cite_author_in_text] = ACTIONS(1177), - [sym__cite_suppress_author] = ACTIONS(1179), - [sym__shortcode_open_escaped] = ACTIONS(1181), - [sym__shortcode_open] = ACTIONS(1183), - [sym__unclosed_span] = ACTIONS(1125), + [sym_backslash_escape] = STATE(372), + [sym_commonmark_attribute] = STATE(372), + [sym_code_span] = STATE(372), + [sym_latex_span] = STATE(372), + [sym_insert] = STATE(372), + [sym_delete] = STATE(372), + [sym_highlight] = STATE(372), + [sym_edit_comment] = STATE(372), + [sym_superscript] = STATE(372), + [sym_subscript] = STATE(372), + [sym_strikeout] = STATE(372), + [sym_quoted_span] = STATE(372), + [sym_inline_note] = STATE(372), + [sym_citation] = STATE(372), + [sym_shortcode_escaped] = STATE(372), + [sym_shortcode] = STATE(372), + [sym_note_reference] = STATE(372), + [sym__link_text] = STATE(454), + [sym__link_text_non_empty] = STATE(455), + [sym_inline_link] = STATE(57), + [sym_image] = STATE(372), + [sym__image_inline_link] = STATE(1025), + [sym__image_description] = STATE(2356), + [sym__image_description_non_empty] = STATE(2356), + [sym_hard_line_break] = STATE(372), + [sym__whitespace] = STATE(1022), + [sym__word] = STATE(1022), + [sym__soft_line_break] = STATE(1026), + [sym__inline_base] = STATE(57), + [sym__text_base] = STATE(372), + [sym__inline_element] = STATE(57), + [sym__emphasis_star] = STATE(714), + [sym__strong_emphasis_star] = STATE(57), + [sym__emphasis_underscore] = STATE(714), + [sym__strong_emphasis_underscore] = STATE(57), + [aux_sym_insert_repeat1] = STATE(57), + [aux_sym__inline_base_repeat1] = STATE(372), + [sym__backslash_escape] = ACTIONS(707), + [sym_entity_reference] = ACTIONS(709), + [sym_numeric_character_reference] = ACTIONS(709), + [anon_sym_LT] = ACTIONS(711), + [anon_sym_GT] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(715), + [anon_sym_DQUOTE] = ACTIONS(713), + [anon_sym_POUND] = ACTIONS(713), + [anon_sym_DOLLAR] = ACTIONS(713), + [anon_sym_PERCENT] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(711), + [anon_sym_SQUOTE] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_COMMA] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_DOT] = ACTIONS(711), + [anon_sym_SLASH] = ACTIONS(713), + [anon_sym_COLON] = ACTIONS(713), + [anon_sym_SEMI] = ACTIONS(713), + [anon_sym_EQ] = ACTIONS(713), + [anon_sym_QMARK] = ACTIONS(713), + [anon_sym_LBRACK] = ACTIONS(717), + [anon_sym_BSLASH] = ACTIONS(719), + [anon_sym_CARET] = ACTIONS(711), + [anon_sym__] = ACTIONS(713), + [anon_sym_BQUOTE] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(721), + [anon_sym_PIPE] = ACTIONS(713), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_LPAREN] = ACTIONS(713), + [anon_sym_RPAREN] = ACTIONS(713), + [sym__newline_token] = ACTIONS(723), + [aux_sym_insert_token1] = ACTIONS(725), + [aux_sym_insert_token2] = ACTIONS(2429), + [aux_sym_delete_token1] = ACTIONS(729), + [aux_sym_highlight_token1] = ACTIONS(731), + [aux_sym_edit_comment_token1] = ACTIONS(733), + [anon_sym_CARET_LBRACK] = ACTIONS(735), + [anon_sym_LBRACK_CARET] = ACTIONS(737), + [sym_uri_autolink] = ACTIONS(709), + [sym_email_autolink] = ACTIONS(709), + [sym__whitespace_ge_2] = ACTIONS(739), + [aux_sym__whitespace_token1] = ACTIONS(741), + [sym__word_no_digit] = ACTIONS(743), + [sym__digits] = ACTIONS(743), + [anon_sym_DASH_DASH] = ACTIONS(745), + [anon_sym_DASH_DASH_DASH] = ACTIONS(743), + [anon_sym_DOT_DOT_DOT] = ACTIONS(743), + [sym__code_span_start] = ACTIONS(747), + [sym__emphasis_open_star] = ACTIONS(749), + [sym__emphasis_open_underscore] = ACTIONS(751), + [sym__strikeout_open] = ACTIONS(753), + [sym__latex_span_start] = ACTIONS(755), + [sym__single_quote_open] = ACTIONS(757), + [sym__double_quote_open] = ACTIONS(759), + [sym__superscript_open] = ACTIONS(761), + [sym__subscript_open] = ACTIONS(763), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(765), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(767), + [sym__cite_author_in_text] = ACTIONS(769), + [sym__cite_suppress_author] = ACTIONS(771), + [sym__shortcode_open_escaped] = ACTIONS(773), + [sym__shortcode_open] = ACTIONS(775), + [sym__unclosed_span] = ACTIONS(709), }, [STATE(106)] = { - [sym_backslash_escape] = STATE(271), - [sym_commonmark_attribute] = STATE(271), - [sym_code_span] = STATE(271), - [sym_latex_span] = STATE(271), - [sym_superscript] = STATE(271), - [sym_subscript] = STATE(271), - [sym_strikeout] = STATE(271), - [sym_quoted_span] = STATE(271), - [sym_inline_note] = STATE(271), - [sym_citation] = STATE(271), - [sym_shortcode_escaped] = STATE(271), - [sym_shortcode] = STATE(271), - [sym_note_reference] = STATE(271), - [sym__link_text] = STATE(424), - [sym__link_text_non_empty] = STATE(425), - [sym_inline_link] = STATE(53), - [sym_image] = STATE(271), - [sym__image_inline_link] = STATE(883), - [sym__image_description] = STATE(1998), - [sym__image_description_non_empty] = STATE(1998), - [sym_hard_line_break] = STATE(271), - [sym__whitespace] = STATE(881), - [sym__word] = STATE(881), - [sym__soft_line_break] = STATE(884), - [sym__inline_base] = STATE(53), - [sym__text_base] = STATE(271), - [sym__inline_element] = STATE(53), - [sym__emphasis_star] = STATE(710), - [sym__strong_emphasis_star] = STATE(53), - [sym__emphasis_underscore] = STATE(710), - [sym__strong_emphasis_underscore] = STATE(53), - [aux_sym_superscript_repeat1] = STATE(53), - [aux_sym__inline_base_repeat1] = STATE(271), - [sym__backslash_escape] = ACTIONS(159), - [sym_entity_reference] = ACTIONS(161), - [sym_numeric_character_reference] = ACTIONS(161), - [anon_sym_LT] = ACTIONS(163), - [anon_sym_GT] = ACTIONS(165), - [anon_sym_BANG] = ACTIONS(167), - [anon_sym_DQUOTE] = ACTIONS(165), - [anon_sym_POUND] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(165), - [anon_sym_PERCENT] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_SQUOTE] = ACTIONS(165), - [anon_sym_STAR] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(165), - [anon_sym_COMMA] = ACTIONS(165), - [anon_sym_DASH] = ACTIONS(163), - [anon_sym_DOT] = ACTIONS(163), - [anon_sym_SLASH] = ACTIONS(165), - [anon_sym_COLON] = ACTIONS(165), - [anon_sym_SEMI] = ACTIONS(165), - [anon_sym_EQ] = ACTIONS(165), - [anon_sym_QMARK] = ACTIONS(165), - [anon_sym_LBRACK] = ACTIONS(169), - [anon_sym_BSLASH] = ACTIONS(171), - [anon_sym_RBRACK] = ACTIONS(2011), - [anon_sym_CARET] = ACTIONS(163), - [anon_sym__] = ACTIONS(165), - [anon_sym_BQUOTE] = ACTIONS(165), - [anon_sym_LBRACE] = ACTIONS(175), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(165), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_RPAREN] = ACTIONS(165), - [sym__newline_token] = ACTIONS(177), - [anon_sym_CARET_LBRACK] = ACTIONS(179), - [anon_sym_LBRACK_CARET] = ACTIONS(181), - [sym_uri_autolink] = ACTIONS(161), - [sym_email_autolink] = ACTIONS(161), - [sym__whitespace_ge_2] = ACTIONS(183), - [aux_sym__whitespace_token1] = ACTIONS(185), - [sym__word_no_digit] = ACTIONS(187), - [sym__digits] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_DASH_DASH_DASH] = ACTIONS(187), - [anon_sym_DOT_DOT_DOT] = ACTIONS(187), - [sym__code_span_start] = ACTIONS(191), - [sym__emphasis_open_star] = ACTIONS(193), - [sym__emphasis_open_underscore] = ACTIONS(195), - [sym__strikeout_open] = ACTIONS(199), - [sym__latex_span_start] = ACTIONS(201), - [sym__single_quote_open] = ACTIONS(203), - [sym__double_quote_open] = ACTIONS(205), - [sym__superscript_open] = ACTIONS(207), - [sym__subscript_open] = ACTIONS(209), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(211), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(213), - [sym__cite_author_in_text] = ACTIONS(215), - [sym__cite_suppress_author] = ACTIONS(217), - [sym__shortcode_open_escaped] = ACTIONS(219), - [sym__shortcode_open] = ACTIONS(221), - [sym__unclosed_span] = ACTIONS(161), + [sym_backslash_escape] = STATE(372), + [sym_commonmark_attribute] = STATE(372), + [sym_code_span] = STATE(372), + [sym_latex_span] = STATE(372), + [sym_insert] = STATE(372), + [sym_delete] = STATE(372), + [sym_highlight] = STATE(372), + [sym_edit_comment] = STATE(372), + [sym_superscript] = STATE(372), + [sym_subscript] = STATE(372), + [sym_strikeout] = STATE(372), + [sym_quoted_span] = STATE(372), + [sym_inline_note] = STATE(372), + [sym_citation] = STATE(372), + [sym_shortcode_escaped] = STATE(372), + [sym_shortcode] = STATE(372), + [sym_note_reference] = STATE(372), + [sym__link_text] = STATE(454), + [sym__link_text_non_empty] = STATE(455), + [sym_inline_link] = STATE(57), + [sym_image] = STATE(372), + [sym__image_inline_link] = STATE(1025), + [sym__image_description] = STATE(2356), + [sym__image_description_non_empty] = STATE(2356), + [sym_hard_line_break] = STATE(372), + [sym__whitespace] = STATE(1022), + [sym__word] = STATE(1022), + [sym__soft_line_break] = STATE(1026), + [sym__inline_base] = STATE(57), + [sym__text_base] = STATE(372), + [sym__inline_element] = STATE(57), + [sym__emphasis_star] = STATE(714), + [sym__strong_emphasis_star] = STATE(57), + [sym__emphasis_underscore] = STATE(714), + [sym__strong_emphasis_underscore] = STATE(57), + [aux_sym_insert_repeat1] = STATE(57), + [aux_sym__inline_base_repeat1] = STATE(372), + [sym__backslash_escape] = ACTIONS(707), + [sym_entity_reference] = ACTIONS(709), + [sym_numeric_character_reference] = ACTIONS(709), + [anon_sym_LT] = ACTIONS(711), + [anon_sym_GT] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(715), + [anon_sym_DQUOTE] = ACTIONS(713), + [anon_sym_POUND] = ACTIONS(713), + [anon_sym_DOLLAR] = ACTIONS(713), + [anon_sym_PERCENT] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(711), + [anon_sym_SQUOTE] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_COMMA] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_DOT] = ACTIONS(711), + [anon_sym_SLASH] = ACTIONS(713), + [anon_sym_COLON] = ACTIONS(713), + [anon_sym_SEMI] = ACTIONS(713), + [anon_sym_EQ] = ACTIONS(713), + [anon_sym_QMARK] = ACTIONS(713), + [anon_sym_LBRACK] = ACTIONS(717), + [anon_sym_BSLASH] = ACTIONS(719), + [anon_sym_CARET] = ACTIONS(711), + [anon_sym__] = ACTIONS(713), + [anon_sym_BQUOTE] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(721), + [anon_sym_PIPE] = ACTIONS(713), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_LPAREN] = ACTIONS(713), + [anon_sym_RPAREN] = ACTIONS(713), + [sym__newline_token] = ACTIONS(723), + [aux_sym_insert_token1] = ACTIONS(725), + [aux_sym_insert_token2] = ACTIONS(2431), + [aux_sym_delete_token1] = ACTIONS(729), + [aux_sym_highlight_token1] = ACTIONS(731), + [aux_sym_edit_comment_token1] = ACTIONS(733), + [anon_sym_CARET_LBRACK] = ACTIONS(735), + [anon_sym_LBRACK_CARET] = ACTIONS(737), + [sym_uri_autolink] = ACTIONS(709), + [sym_email_autolink] = ACTIONS(709), + [sym__whitespace_ge_2] = ACTIONS(739), + [aux_sym__whitespace_token1] = ACTIONS(741), + [sym__word_no_digit] = ACTIONS(743), + [sym__digits] = ACTIONS(743), + [anon_sym_DASH_DASH] = ACTIONS(745), + [anon_sym_DASH_DASH_DASH] = ACTIONS(743), + [anon_sym_DOT_DOT_DOT] = ACTIONS(743), + [sym__code_span_start] = ACTIONS(747), + [sym__emphasis_open_star] = ACTIONS(749), + [sym__emphasis_open_underscore] = ACTIONS(751), + [sym__strikeout_open] = ACTIONS(753), + [sym__latex_span_start] = ACTIONS(755), + [sym__single_quote_open] = ACTIONS(757), + [sym__double_quote_open] = ACTIONS(759), + [sym__superscript_open] = ACTIONS(761), + [sym__subscript_open] = ACTIONS(763), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(765), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(767), + [sym__cite_author_in_text] = ACTIONS(769), + [sym__cite_suppress_author] = ACTIONS(771), + [sym__shortcode_open_escaped] = ACTIONS(773), + [sym__shortcode_open] = ACTIONS(775), + [sym__unclosed_span] = ACTIONS(709), }, [STATE(107)] = { - [sym_backslash_escape] = STATE(266), - [sym_commonmark_attribute] = STATE(266), - [sym_code_span] = STATE(266), - [sym_latex_span] = STATE(266), - [sym_superscript] = STATE(266), - [sym_subscript] = STATE(266), - [sym_strikeout] = STATE(266), - [sym_quoted_span] = STATE(266), - [sym_inline_note] = STATE(266), - [sym_citation] = STATE(266), - [sym_shortcode_escaped] = STATE(266), - [sym_shortcode] = STATE(266), - [sym_note_reference] = STATE(266), - [sym__link_text] = STATE(375), - [sym__link_text_non_empty] = STATE(376), - [sym_inline_link] = STATE(114), - [sym_image] = STATE(266), - [sym__image_inline_link] = STATE(1042), - [sym__image_description] = STATE(2044), - [sym__image_description_non_empty] = STATE(2044), - [sym_hard_line_break] = STATE(266), - [sym__whitespace] = STATE(1040), - [sym__word] = STATE(1040), - [sym__soft_line_break] = STATE(1043), - [sym__inline_base] = STATE(114), - [sym__text_base] = STATE(266), - [sym__inline_element] = STATE(114), - [sym__emphasis_star] = STATE(602), - [sym__strong_emphasis_star] = STATE(114), - [sym__emphasis_underscore] = STATE(602), - [sym__strong_emphasis_underscore] = STATE(114), - [aux_sym_superscript_repeat1] = STATE(114), - [aux_sym__inline_base_repeat1] = STATE(266), - [sym__backslash_escape] = ACTIONS(559), - [sym_entity_reference] = ACTIONS(561), - [sym_numeric_character_reference] = ACTIONS(561), - [anon_sym_LT] = ACTIONS(563), - [anon_sym_GT] = ACTIONS(565), - [anon_sym_BANG] = ACTIONS(567), - [anon_sym_DQUOTE] = ACTIONS(565), - [anon_sym_POUND] = ACTIONS(565), - [anon_sym_DOLLAR] = ACTIONS(565), - [anon_sym_PERCENT] = ACTIONS(565), - [anon_sym_AMP] = ACTIONS(563), - [anon_sym_SQUOTE] = ACTIONS(565), - [anon_sym_STAR] = ACTIONS(565), - [anon_sym_PLUS] = ACTIONS(565), - [anon_sym_COMMA] = ACTIONS(565), - [anon_sym_DASH] = ACTIONS(563), - [anon_sym_DOT] = ACTIONS(563), - [anon_sym_SLASH] = ACTIONS(565), - [anon_sym_COLON] = ACTIONS(565), - [anon_sym_SEMI] = ACTIONS(565), - [anon_sym_EQ] = ACTIONS(565), - [anon_sym_QMARK] = ACTIONS(565), - [anon_sym_LBRACK] = ACTIONS(569), - [anon_sym_BSLASH] = ACTIONS(571), - [anon_sym_CARET] = ACTIONS(563), - [anon_sym__] = ACTIONS(565), - [anon_sym_BQUOTE] = ACTIONS(565), - [anon_sym_LBRACE] = ACTIONS(573), - [anon_sym_PIPE] = ACTIONS(565), - [anon_sym_TILDE] = ACTIONS(565), - [anon_sym_LPAREN] = ACTIONS(565), - [anon_sym_RPAREN] = ACTIONS(565), - [sym__newline_token] = ACTIONS(575), - [anon_sym_CARET_LBRACK] = ACTIONS(577), - [anon_sym_LBRACK_CARET] = ACTIONS(579), - [sym_uri_autolink] = ACTIONS(561), - [sym_email_autolink] = ACTIONS(561), - [sym__whitespace_ge_2] = ACTIONS(581), - [aux_sym__whitespace_token1] = ACTIONS(583), - [sym__word_no_digit] = ACTIONS(585), - [sym__digits] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(587), - [anon_sym_DASH_DASH_DASH] = ACTIONS(585), - [anon_sym_DOT_DOT_DOT] = ACTIONS(585), - [sym__code_span_start] = ACTIONS(589), - [sym__emphasis_open_star] = ACTIONS(591), - [sym__emphasis_open_underscore] = ACTIONS(593), - [sym__strikeout_open] = ACTIONS(595), - [sym__strikeout_close] = ACTIONS(2013), - [sym__latex_span_start] = ACTIONS(599), - [sym__single_quote_open] = ACTIONS(601), - [sym__double_quote_open] = ACTIONS(603), - [sym__superscript_open] = ACTIONS(605), - [sym__subscript_open] = ACTIONS(607), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(609), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(611), - [sym__cite_author_in_text] = ACTIONS(613), - [sym__cite_suppress_author] = ACTIONS(615), - [sym__shortcode_open_escaped] = ACTIONS(617), - [sym__shortcode_open] = ACTIONS(619), - [sym__unclosed_span] = ACTIONS(561), + [sym_backslash_escape] = STATE(372), + [sym_commonmark_attribute] = STATE(372), + [sym_code_span] = STATE(372), + [sym_latex_span] = STATE(372), + [sym_insert] = STATE(372), + [sym_delete] = STATE(372), + [sym_highlight] = STATE(372), + [sym_edit_comment] = STATE(372), + [sym_superscript] = STATE(372), + [sym_subscript] = STATE(372), + [sym_strikeout] = STATE(372), + [sym_quoted_span] = STATE(372), + [sym_inline_note] = STATE(372), + [sym_citation] = STATE(372), + [sym_shortcode_escaped] = STATE(372), + [sym_shortcode] = STATE(372), + [sym_note_reference] = STATE(372), + [sym__link_text] = STATE(454), + [sym__link_text_non_empty] = STATE(455), + [sym_inline_link] = STATE(57), + [sym_image] = STATE(372), + [sym__image_inline_link] = STATE(1025), + [sym__image_description] = STATE(2356), + [sym__image_description_non_empty] = STATE(2356), + [sym_hard_line_break] = STATE(372), + [sym__whitespace] = STATE(1022), + [sym__word] = STATE(1022), + [sym__soft_line_break] = STATE(1026), + [sym__inline_base] = STATE(57), + [sym__text_base] = STATE(372), + [sym__inline_element] = STATE(57), + [sym__emphasis_star] = STATE(714), + [sym__strong_emphasis_star] = STATE(57), + [sym__emphasis_underscore] = STATE(714), + [sym__strong_emphasis_underscore] = STATE(57), + [aux_sym_insert_repeat1] = STATE(57), + [aux_sym__inline_base_repeat1] = STATE(372), + [sym__backslash_escape] = ACTIONS(707), + [sym_entity_reference] = ACTIONS(709), + [sym_numeric_character_reference] = ACTIONS(709), + [anon_sym_LT] = ACTIONS(711), + [anon_sym_GT] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(715), + [anon_sym_DQUOTE] = ACTIONS(713), + [anon_sym_POUND] = ACTIONS(713), + [anon_sym_DOLLAR] = ACTIONS(713), + [anon_sym_PERCENT] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(711), + [anon_sym_SQUOTE] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_COMMA] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_DOT] = ACTIONS(711), + [anon_sym_SLASH] = ACTIONS(713), + [anon_sym_COLON] = ACTIONS(713), + [anon_sym_SEMI] = ACTIONS(713), + [anon_sym_EQ] = ACTIONS(713), + [anon_sym_QMARK] = ACTIONS(713), + [anon_sym_LBRACK] = ACTIONS(717), + [anon_sym_BSLASH] = ACTIONS(719), + [anon_sym_CARET] = ACTIONS(711), + [anon_sym__] = ACTIONS(713), + [anon_sym_BQUOTE] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(721), + [anon_sym_PIPE] = ACTIONS(713), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_LPAREN] = ACTIONS(713), + [anon_sym_RPAREN] = ACTIONS(713), + [sym__newline_token] = ACTIONS(723), + [aux_sym_insert_token1] = ACTIONS(725), + [aux_sym_insert_token2] = ACTIONS(2433), + [aux_sym_delete_token1] = ACTIONS(729), + [aux_sym_highlight_token1] = ACTIONS(731), + [aux_sym_edit_comment_token1] = ACTIONS(733), + [anon_sym_CARET_LBRACK] = ACTIONS(735), + [anon_sym_LBRACK_CARET] = ACTIONS(737), + [sym_uri_autolink] = ACTIONS(709), + [sym_email_autolink] = ACTIONS(709), + [sym__whitespace_ge_2] = ACTIONS(739), + [aux_sym__whitespace_token1] = ACTIONS(741), + [sym__word_no_digit] = ACTIONS(743), + [sym__digits] = ACTIONS(743), + [anon_sym_DASH_DASH] = ACTIONS(745), + [anon_sym_DASH_DASH_DASH] = ACTIONS(743), + [anon_sym_DOT_DOT_DOT] = ACTIONS(743), + [sym__code_span_start] = ACTIONS(747), + [sym__emphasis_open_star] = ACTIONS(749), + [sym__emphasis_open_underscore] = ACTIONS(751), + [sym__strikeout_open] = ACTIONS(753), + [sym__latex_span_start] = ACTIONS(755), + [sym__single_quote_open] = ACTIONS(757), + [sym__double_quote_open] = ACTIONS(759), + [sym__superscript_open] = ACTIONS(761), + [sym__subscript_open] = ACTIONS(763), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(765), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(767), + [sym__cite_author_in_text] = ACTIONS(769), + [sym__cite_suppress_author] = ACTIONS(771), + [sym__shortcode_open_escaped] = ACTIONS(773), + [sym__shortcode_open] = ACTIONS(775), + [sym__unclosed_span] = ACTIONS(709), }, [STATE(108)] = { - [sym_backslash_escape] = STATE(272), - [sym_commonmark_attribute] = STATE(272), - [sym_code_span] = STATE(272), - [sym_latex_span] = STATE(272), - [sym_superscript] = STATE(272), - [sym_subscript] = STATE(272), - [sym_strikeout] = STATE(272), - [sym_quoted_span] = STATE(272), - [sym_inline_note] = STATE(272), - [sym_citation] = STATE(272), - [sym_shortcode_escaped] = STATE(272), - [sym_shortcode] = STATE(272), - [sym_note_reference] = STATE(272), - [sym__link_text] = STATE(401), - [sym__link_text_non_empty] = STATE(402), - [sym_inline_link] = STATE(115), - [sym_image] = STATE(272), - [sym__image_inline_link] = STATE(1136), - [sym__image_description] = STATE(1942), - [sym__image_description_non_empty] = STATE(1942), - [sym_hard_line_break] = STATE(272), - [sym__whitespace] = STATE(1133), - [sym__word] = STATE(1133), - [sym__soft_line_break] = STATE(1137), - [sym__inline_base] = STATE(115), - [sym__text_base] = STATE(272), - [sym__inline_element] = STATE(115), - [sym__emphasis_star] = STATE(902), - [sym__strong_emphasis_star] = STATE(115), - [sym__emphasis_underscore] = STATE(902), - [sym__strong_emphasis_underscore] = STATE(115), - [aux_sym_superscript_repeat1] = STATE(115), - [aux_sym__inline_base_repeat1] = STATE(272), - [sym__backslash_escape] = ACTIONS(625), - [sym_entity_reference] = ACTIONS(627), - [sym_numeric_character_reference] = ACTIONS(627), - [anon_sym_LT] = ACTIONS(629), - [anon_sym_GT] = ACTIONS(631), - [anon_sym_BANG] = ACTIONS(633), - [anon_sym_DQUOTE] = ACTIONS(631), - [anon_sym_POUND] = ACTIONS(631), - [anon_sym_DOLLAR] = ACTIONS(631), - [anon_sym_PERCENT] = ACTIONS(631), - [anon_sym_AMP] = ACTIONS(629), - [anon_sym_SQUOTE] = ACTIONS(631), - [anon_sym_STAR] = ACTIONS(631), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_COMMA] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(629), - [anon_sym_DOT] = ACTIONS(629), - [anon_sym_SLASH] = ACTIONS(631), - [anon_sym_COLON] = ACTIONS(631), - [anon_sym_SEMI] = ACTIONS(631), - [anon_sym_EQ] = ACTIONS(631), - [anon_sym_QMARK] = ACTIONS(631), - [anon_sym_LBRACK] = ACTIONS(635), - [anon_sym_BSLASH] = ACTIONS(637), - [anon_sym_CARET] = ACTIONS(629), - [anon_sym__] = ACTIONS(631), - [anon_sym_BQUOTE] = ACTIONS(631), - [anon_sym_LBRACE] = ACTIONS(639), - [anon_sym_PIPE] = ACTIONS(631), - [anon_sym_TILDE] = ACTIONS(631), - [anon_sym_LPAREN] = ACTIONS(631), - [anon_sym_RPAREN] = ACTIONS(631), - [sym__newline_token] = ACTIONS(641), - [anon_sym_CARET_LBRACK] = ACTIONS(643), - [anon_sym_LBRACK_CARET] = ACTIONS(645), - [sym_uri_autolink] = ACTIONS(627), - [sym_email_autolink] = ACTIONS(627), - [sym__whitespace_ge_2] = ACTIONS(647), - [aux_sym__whitespace_token1] = ACTIONS(649), - [sym__word_no_digit] = ACTIONS(651), - [sym__digits] = ACTIONS(651), - [anon_sym_DASH_DASH] = ACTIONS(653), - [anon_sym_DASH_DASH_DASH] = ACTIONS(651), - [anon_sym_DOT_DOT_DOT] = ACTIONS(651), - [sym__code_span_start] = ACTIONS(655), - [sym__emphasis_open_star] = ACTIONS(657), - [sym__emphasis_open_underscore] = ACTIONS(659), - [sym__strikeout_open] = ACTIONS(661), - [sym__latex_span_start] = ACTIONS(663), - [sym__single_quote_open] = ACTIONS(665), - [sym__single_quote_close] = ACTIONS(2015), - [sym__double_quote_open] = ACTIONS(669), - [sym__superscript_open] = ACTIONS(671), - [sym__subscript_open] = ACTIONS(673), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(675), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(677), - [sym__cite_author_in_text] = ACTIONS(679), - [sym__cite_suppress_author] = ACTIONS(681), - [sym__shortcode_open_escaped] = ACTIONS(683), - [sym__shortcode_open] = ACTIONS(685), - [sym__unclosed_span] = ACTIONS(627), + [sym_backslash_escape] = STATE(372), + [sym_commonmark_attribute] = STATE(372), + [sym_code_span] = STATE(372), + [sym_latex_span] = STATE(372), + [sym_insert] = STATE(372), + [sym_delete] = STATE(372), + [sym_highlight] = STATE(372), + [sym_edit_comment] = STATE(372), + [sym_superscript] = STATE(372), + [sym_subscript] = STATE(372), + [sym_strikeout] = STATE(372), + [sym_quoted_span] = STATE(372), + [sym_inline_note] = STATE(372), + [sym_citation] = STATE(372), + [sym_shortcode_escaped] = STATE(372), + [sym_shortcode] = STATE(372), + [sym_note_reference] = STATE(372), + [sym__link_text] = STATE(454), + [sym__link_text_non_empty] = STATE(455), + [sym_inline_link] = STATE(57), + [sym_image] = STATE(372), + [sym__image_inline_link] = STATE(1025), + [sym__image_description] = STATE(2356), + [sym__image_description_non_empty] = STATE(2356), + [sym_hard_line_break] = STATE(372), + [sym__whitespace] = STATE(1022), + [sym__word] = STATE(1022), + [sym__soft_line_break] = STATE(1026), + [sym__inline_base] = STATE(57), + [sym__text_base] = STATE(372), + [sym__inline_element] = STATE(57), + [sym__emphasis_star] = STATE(714), + [sym__strong_emphasis_star] = STATE(57), + [sym__emphasis_underscore] = STATE(714), + [sym__strong_emphasis_underscore] = STATE(57), + [aux_sym_insert_repeat1] = STATE(57), + [aux_sym__inline_base_repeat1] = STATE(372), + [sym__backslash_escape] = ACTIONS(707), + [sym_entity_reference] = ACTIONS(709), + [sym_numeric_character_reference] = ACTIONS(709), + [anon_sym_LT] = ACTIONS(711), + [anon_sym_GT] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(715), + [anon_sym_DQUOTE] = ACTIONS(713), + [anon_sym_POUND] = ACTIONS(713), + [anon_sym_DOLLAR] = ACTIONS(713), + [anon_sym_PERCENT] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(711), + [anon_sym_SQUOTE] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_COMMA] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_DOT] = ACTIONS(711), + [anon_sym_SLASH] = ACTIONS(713), + [anon_sym_COLON] = ACTIONS(713), + [anon_sym_SEMI] = ACTIONS(713), + [anon_sym_EQ] = ACTIONS(713), + [anon_sym_QMARK] = ACTIONS(713), + [anon_sym_LBRACK] = ACTIONS(717), + [anon_sym_BSLASH] = ACTIONS(719), + [anon_sym_CARET] = ACTIONS(711), + [anon_sym__] = ACTIONS(713), + [anon_sym_BQUOTE] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(721), + [anon_sym_PIPE] = ACTIONS(713), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_LPAREN] = ACTIONS(713), + [anon_sym_RPAREN] = ACTIONS(713), + [sym__newline_token] = ACTIONS(723), + [aux_sym_insert_token1] = ACTIONS(725), + [aux_sym_insert_token2] = ACTIONS(2435), + [aux_sym_delete_token1] = ACTIONS(729), + [aux_sym_highlight_token1] = ACTIONS(731), + [aux_sym_edit_comment_token1] = ACTIONS(733), + [anon_sym_CARET_LBRACK] = ACTIONS(735), + [anon_sym_LBRACK_CARET] = ACTIONS(737), + [sym_uri_autolink] = ACTIONS(709), + [sym_email_autolink] = ACTIONS(709), + [sym__whitespace_ge_2] = ACTIONS(739), + [aux_sym__whitespace_token1] = ACTIONS(741), + [sym__word_no_digit] = ACTIONS(743), + [sym__digits] = ACTIONS(743), + [anon_sym_DASH_DASH] = ACTIONS(745), + [anon_sym_DASH_DASH_DASH] = ACTIONS(743), + [anon_sym_DOT_DOT_DOT] = ACTIONS(743), + [sym__code_span_start] = ACTIONS(747), + [sym__emphasis_open_star] = ACTIONS(749), + [sym__emphasis_open_underscore] = ACTIONS(751), + [sym__strikeout_open] = ACTIONS(753), + [sym__latex_span_start] = ACTIONS(755), + [sym__single_quote_open] = ACTIONS(757), + [sym__double_quote_open] = ACTIONS(759), + [sym__superscript_open] = ACTIONS(761), + [sym__subscript_open] = ACTIONS(763), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(765), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(767), + [sym__cite_author_in_text] = ACTIONS(769), + [sym__cite_suppress_author] = ACTIONS(771), + [sym__shortcode_open_escaped] = ACTIONS(773), + [sym__shortcode_open] = ACTIONS(775), + [sym__unclosed_span] = ACTIONS(709), }, [STATE(109)] = { - [sym_backslash_escape] = STATE(277), - [sym_commonmark_attribute] = STATE(277), - [sym_code_span] = STATE(277), - [sym_latex_span] = STATE(277), - [sym_superscript] = STATE(277), - [sym_subscript] = STATE(277), - [sym_strikeout] = STATE(277), - [sym_quoted_span] = STATE(277), - [sym_inline_note] = STATE(277), - [sym_citation] = STATE(277), - [sym_shortcode_escaped] = STATE(277), - [sym_shortcode] = STATE(277), - [sym_note_reference] = STATE(277), - [sym__link_text] = STATE(427), - [sym__link_text_non_empty] = STATE(428), - [sym_inline_link] = STATE(116), - [sym_image] = STATE(277), - [sym__image_inline_link] = STATE(613), - [sym__image_description] = STATE(1930), - [sym__image_description_non_empty] = STATE(1930), - [sym_hard_line_break] = STATE(277), - [sym__whitespace] = STATE(610), - [sym__word] = STATE(610), - [sym__soft_line_break] = STATE(614), - [sym__inline_base] = STATE(116), - [sym__text_base] = STATE(277), - [sym__inline_element] = STATE(116), - [sym__emphasis_star] = STATE(1044), - [sym__strong_emphasis_star] = STATE(116), - [sym__emphasis_underscore] = STATE(1044), - [sym__strong_emphasis_underscore] = STATE(116), - [aux_sym_superscript_repeat1] = STATE(116), - [aux_sym__inline_base_repeat1] = STATE(277), - [sym__backslash_escape] = ACTIONS(687), - [sym_entity_reference] = ACTIONS(689), - [sym_numeric_character_reference] = ACTIONS(689), - [anon_sym_LT] = ACTIONS(691), - [anon_sym_GT] = ACTIONS(693), - [anon_sym_BANG] = ACTIONS(695), - [anon_sym_DQUOTE] = ACTIONS(693), - [anon_sym_POUND] = ACTIONS(693), - [anon_sym_DOLLAR] = ACTIONS(693), - [anon_sym_PERCENT] = ACTIONS(693), - [anon_sym_AMP] = ACTIONS(691), - [anon_sym_SQUOTE] = ACTIONS(693), - [anon_sym_STAR] = ACTIONS(693), - [anon_sym_PLUS] = ACTIONS(693), - [anon_sym_COMMA] = ACTIONS(693), - [anon_sym_DASH] = ACTIONS(691), - [anon_sym_DOT] = ACTIONS(691), - [anon_sym_SLASH] = ACTIONS(693), - [anon_sym_COLON] = ACTIONS(693), - [anon_sym_SEMI] = ACTIONS(693), - [anon_sym_EQ] = ACTIONS(693), - [anon_sym_QMARK] = ACTIONS(693), - [anon_sym_LBRACK] = ACTIONS(697), - [anon_sym_BSLASH] = ACTIONS(699), - [anon_sym_CARET] = ACTIONS(691), - [anon_sym__] = ACTIONS(693), - [anon_sym_BQUOTE] = ACTIONS(693), - [anon_sym_LBRACE] = ACTIONS(701), - [anon_sym_PIPE] = ACTIONS(693), - [anon_sym_TILDE] = ACTIONS(693), - [anon_sym_LPAREN] = ACTIONS(693), - [anon_sym_RPAREN] = ACTIONS(693), - [sym__newline_token] = ACTIONS(703), - [anon_sym_CARET_LBRACK] = ACTIONS(705), - [anon_sym_LBRACK_CARET] = ACTIONS(707), - [sym_uri_autolink] = ACTIONS(689), - [sym_email_autolink] = ACTIONS(689), - [sym__whitespace_ge_2] = ACTIONS(709), - [aux_sym__whitespace_token1] = ACTIONS(711), - [sym__word_no_digit] = ACTIONS(713), - [sym__digits] = ACTIONS(713), - [anon_sym_DASH_DASH] = ACTIONS(715), - [anon_sym_DASH_DASH_DASH] = ACTIONS(713), - [anon_sym_DOT_DOT_DOT] = ACTIONS(713), - [sym__code_span_start] = ACTIONS(717), - [sym__emphasis_open_star] = ACTIONS(719), - [sym__emphasis_open_underscore] = ACTIONS(721), - [sym__strikeout_open] = ACTIONS(723), - [sym__latex_span_start] = ACTIONS(725), - [sym__single_quote_open] = ACTIONS(727), - [sym__double_quote_open] = ACTIONS(729), - [sym__double_quote_close] = ACTIONS(2015), - [sym__superscript_open] = ACTIONS(731), - [sym__subscript_open] = ACTIONS(733), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(735), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(737), - [sym__cite_author_in_text] = ACTIONS(739), - [sym__cite_suppress_author] = ACTIONS(741), - [sym__shortcode_open_escaped] = ACTIONS(743), - [sym__shortcode_open] = ACTIONS(745), - [sym__unclosed_span] = ACTIONS(689), + [sym_backslash_escape] = STATE(370), + [sym_commonmark_attribute] = STATE(370), + [sym_code_span] = STATE(370), + [sym_latex_span] = STATE(370), + [sym_insert] = STATE(370), + [sym_delete] = STATE(370), + [sym_highlight] = STATE(370), + [sym_edit_comment] = STATE(370), + [sym_superscript] = STATE(370), + [sym_subscript] = STATE(370), + [sym_strikeout] = STATE(370), + [sym_quoted_span] = STATE(370), + [sym_inline_note] = STATE(370), + [sym_citation] = STATE(370), + [sym_shortcode_escaped] = STATE(370), + [sym_shortcode] = STATE(370), + [sym_note_reference] = STATE(370), + [sym__link_text] = STATE(472), + [sym__link_text_non_empty] = STATE(473), + [sym_inline_link] = STATE(113), + [sym_image] = STATE(370), + [sym__image_inline_link] = STATE(923), + [sym__image_description] = STATE(2342), + [sym__image_description_non_empty] = STATE(2342), + [sym_hard_line_break] = STATE(370), + [sym__whitespace] = STATE(920), + [sym__word] = STATE(920), + [sym__soft_line_break] = STATE(924), + [sym__inline_base] = STATE(113), + [sym__text_base] = STATE(370), + [sym__inline_element] = STATE(113), + [sym__emphasis_star] = STATE(821), + [sym__strong_emphasis_star] = STATE(113), + [sym__emphasis_underscore] = STATE(821), + [sym__strong_emphasis_underscore] = STATE(113), + [aux_sym_insert_repeat1] = STATE(113), + [aux_sym__inline_base_repeat1] = STATE(370), + [sym__backslash_escape] = ACTIONS(73), + [sym_entity_reference] = ACTIONS(75), + [sym_numeric_character_reference] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_BANG] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_POUND] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(79), + [anon_sym_PERCENT] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_STAR] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_COMMA] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_DOT] = ACTIONS(77), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_COLON] = ACTIONS(79), + [anon_sym_SEMI] = ACTIONS(79), + [anon_sym_EQ] = ACTIONS(79), + [anon_sym_QMARK] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(83), + [anon_sym_BSLASH] = ACTIONS(85), + [anon_sym_RBRACK] = ACTIONS(2437), + [anon_sym_CARET] = ACTIONS(77), + [anon_sym__] = ACTIONS(79), + [anon_sym_BQUOTE] = ACTIONS(79), + [anon_sym_LBRACE] = ACTIONS(89), + [anon_sym_PIPE] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(79), + [anon_sym_RPAREN] = ACTIONS(79), + [sym__newline_token] = ACTIONS(91), + [aux_sym_insert_token1] = ACTIONS(93), + [aux_sym_delete_token1] = ACTIONS(95), + [aux_sym_highlight_token1] = ACTIONS(97), + [aux_sym_edit_comment_token1] = ACTIONS(99), + [anon_sym_CARET_LBRACK] = ACTIONS(101), + [anon_sym_LBRACK_CARET] = ACTIONS(103), + [sym_uri_autolink] = ACTIONS(75), + [sym_email_autolink] = ACTIONS(75), + [sym__whitespace_ge_2] = ACTIONS(105), + [aux_sym__whitespace_token1] = ACTIONS(107), + [sym__word_no_digit] = ACTIONS(109), + [sym__digits] = ACTIONS(109), + [anon_sym_DASH_DASH] = ACTIONS(111), + [anon_sym_DASH_DASH_DASH] = ACTIONS(109), + [anon_sym_DOT_DOT_DOT] = ACTIONS(109), + [sym__code_span_start] = ACTIONS(113), + [sym__emphasis_open_star] = ACTIONS(115), + [sym__emphasis_open_underscore] = ACTIONS(117), + [sym__strikeout_open] = ACTIONS(121), + [sym__latex_span_start] = ACTIONS(123), + [sym__single_quote_open] = ACTIONS(125), + [sym__double_quote_open] = ACTIONS(127), + [sym__superscript_open] = ACTIONS(129), + [sym__subscript_open] = ACTIONS(131), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(133), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(135), + [sym__cite_author_in_text] = ACTIONS(137), + [sym__cite_suppress_author] = ACTIONS(139), + [sym__shortcode_open_escaped] = ACTIONS(141), + [sym__shortcode_open] = ACTIONS(143), + [sym__unclosed_span] = ACTIONS(75), }, [STATE(110)] = { - [sym_backslash_escape] = STATE(262), - [sym_commonmark_attribute] = STATE(262), - [sym_code_span] = STATE(262), - [sym_latex_span] = STATE(262), - [sym_superscript] = STATE(262), - [sym_subscript] = STATE(262), - [sym_strikeout] = STATE(262), - [sym_quoted_span] = STATE(262), - [sym_inline_note] = STATE(262), - [sym_citation] = STATE(262), - [sym_shortcode_escaped] = STATE(262), - [sym_shortcode] = STATE(262), - [sym_note_reference] = STATE(262), - [sym__link_text] = STATE(313), - [sym__link_text_non_empty] = STATE(314), - [sym_inline_link] = STATE(117), - [sym_image] = STATE(262), - [sym__image_inline_link] = STATE(708), - [sym__image_description] = STATE(1970), - [sym__image_description_non_empty] = STATE(1970), - [sym_hard_line_break] = STATE(262), - [sym__whitespace] = STATE(705), - [sym__word] = STATE(705), - [sym__soft_line_break] = STATE(709), - [sym__inline_base] = STATE(117), - [sym__text_base] = STATE(262), - [sym__inline_element] = STATE(117), - [sym__emphasis_star] = STATE(1138), - [sym__strong_emphasis_star] = STATE(117), - [sym__emphasis_underscore] = STATE(1138), - [sym__strong_emphasis_underscore] = STATE(117), - [aux_sym_superscript_repeat1] = STATE(117), - [aux_sym__inline_base_repeat1] = STATE(262), - [sym__backslash_escape] = ACTIONS(747), - [sym_entity_reference] = ACTIONS(749), - [sym_numeric_character_reference] = ACTIONS(749), - [anon_sym_LT] = ACTIONS(751), - [anon_sym_GT] = ACTIONS(753), - [anon_sym_BANG] = ACTIONS(755), - [anon_sym_DQUOTE] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(753), - [anon_sym_DOLLAR] = ACTIONS(753), - [anon_sym_PERCENT] = ACTIONS(753), - [anon_sym_AMP] = ACTIONS(751), - [anon_sym_SQUOTE] = ACTIONS(753), - [anon_sym_STAR] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(753), - [anon_sym_COMMA] = ACTIONS(753), - [anon_sym_DASH] = ACTIONS(751), - [anon_sym_DOT] = ACTIONS(751), - [anon_sym_SLASH] = ACTIONS(753), - [anon_sym_COLON] = ACTIONS(753), - [anon_sym_SEMI] = ACTIONS(753), - [anon_sym_EQ] = ACTIONS(753), - [anon_sym_QMARK] = ACTIONS(753), - [anon_sym_LBRACK] = ACTIONS(757), - [anon_sym_BSLASH] = ACTIONS(759), - [anon_sym_CARET] = ACTIONS(751), - [anon_sym__] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(753), - [anon_sym_LBRACE] = ACTIONS(761), - [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_TILDE] = ACTIONS(753), - [anon_sym_LPAREN] = ACTIONS(753), - [anon_sym_RPAREN] = ACTIONS(753), - [sym__newline_token] = ACTIONS(763), - [anon_sym_CARET_LBRACK] = ACTIONS(765), - [anon_sym_LBRACK_CARET] = ACTIONS(767), - [sym_uri_autolink] = ACTIONS(749), - [sym_email_autolink] = ACTIONS(749), - [sym__whitespace_ge_2] = ACTIONS(769), - [aux_sym__whitespace_token1] = ACTIONS(771), - [sym__word_no_digit] = ACTIONS(773), - [sym__digits] = ACTIONS(773), - [anon_sym_DASH_DASH] = ACTIONS(775), - [anon_sym_DASH_DASH_DASH] = ACTIONS(773), - [anon_sym_DOT_DOT_DOT] = ACTIONS(773), - [sym__code_span_start] = ACTIONS(777), - [sym__emphasis_open_star] = ACTIONS(779), - [sym__emphasis_open_underscore] = ACTIONS(781), - [sym__strikeout_open] = ACTIONS(783), - [sym__latex_span_start] = ACTIONS(785), - [sym__single_quote_open] = ACTIONS(787), - [sym__double_quote_open] = ACTIONS(789), - [sym__superscript_open] = ACTIONS(791), - [sym__superscript_close] = ACTIONS(2017), - [sym__subscript_open] = ACTIONS(795), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(797), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(799), - [sym__cite_author_in_text] = ACTIONS(801), - [sym__cite_suppress_author] = ACTIONS(803), - [sym__shortcode_open_escaped] = ACTIONS(805), - [sym__shortcode_open] = ACTIONS(807), - [sym__unclosed_span] = ACTIONS(749), + [sym_backslash_escape] = STATE(370), + [sym_commonmark_attribute] = STATE(370), + [sym_code_span] = STATE(370), + [sym_latex_span] = STATE(370), + [sym_insert] = STATE(370), + [sym_delete] = STATE(370), + [sym_highlight] = STATE(370), + [sym_edit_comment] = STATE(370), + [sym_superscript] = STATE(370), + [sym_subscript] = STATE(370), + [sym_strikeout] = STATE(370), + [sym_quoted_span] = STATE(370), + [sym_inline_note] = STATE(370), + [sym_citation] = STATE(370), + [sym_shortcode_escaped] = STATE(370), + [sym_shortcode] = STATE(370), + [sym_note_reference] = STATE(370), + [sym__link_text] = STATE(472), + [sym__link_text_non_empty] = STATE(473), + [sym_inline_link] = STATE(60), + [sym_image] = STATE(370), + [sym__image_inline_link] = STATE(923), + [sym__image_description] = STATE(2342), + [sym__image_description_non_empty] = STATE(2342), + [sym_hard_line_break] = STATE(370), + [sym__whitespace] = STATE(920), + [sym__word] = STATE(920), + [sym__soft_line_break] = STATE(924), + [sym__inline_base] = STATE(60), + [sym__text_base] = STATE(370), + [sym__inline_element] = STATE(60), + [sym__emphasis_star] = STATE(821), + [sym__strong_emphasis_star] = STATE(60), + [sym__emphasis_underscore] = STATE(821), + [sym__strong_emphasis_underscore] = STATE(60), + [aux_sym_insert_repeat1] = STATE(60), + [aux_sym__inline_base_repeat1] = STATE(370), + [sym__backslash_escape] = ACTIONS(73), + [sym_entity_reference] = ACTIONS(75), + [sym_numeric_character_reference] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_BANG] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_POUND] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(79), + [anon_sym_PERCENT] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_STAR] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_COMMA] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_DOT] = ACTIONS(77), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_COLON] = ACTIONS(79), + [anon_sym_SEMI] = ACTIONS(79), + [anon_sym_EQ] = ACTIONS(79), + [anon_sym_QMARK] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(83), + [anon_sym_BSLASH] = ACTIONS(85), + [anon_sym_RBRACK] = ACTIONS(2439), + [anon_sym_CARET] = ACTIONS(77), + [anon_sym__] = ACTIONS(79), + [anon_sym_BQUOTE] = ACTIONS(79), + [anon_sym_LBRACE] = ACTIONS(89), + [anon_sym_PIPE] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(79), + [anon_sym_RPAREN] = ACTIONS(79), + [sym__newline_token] = ACTIONS(91), + [aux_sym_insert_token1] = ACTIONS(93), + [aux_sym_delete_token1] = ACTIONS(95), + [aux_sym_highlight_token1] = ACTIONS(97), + [aux_sym_edit_comment_token1] = ACTIONS(99), + [anon_sym_CARET_LBRACK] = ACTIONS(101), + [anon_sym_LBRACK_CARET] = ACTIONS(103), + [sym_uri_autolink] = ACTIONS(75), + [sym_email_autolink] = ACTIONS(75), + [sym__whitespace_ge_2] = ACTIONS(105), + [aux_sym__whitespace_token1] = ACTIONS(107), + [sym__word_no_digit] = ACTIONS(109), + [sym__digits] = ACTIONS(109), + [anon_sym_DASH_DASH] = ACTIONS(111), + [anon_sym_DASH_DASH_DASH] = ACTIONS(109), + [anon_sym_DOT_DOT_DOT] = ACTIONS(109), + [sym__code_span_start] = ACTIONS(113), + [sym__emphasis_open_star] = ACTIONS(115), + [sym__emphasis_open_underscore] = ACTIONS(117), + [sym__strikeout_open] = ACTIONS(121), + [sym__latex_span_start] = ACTIONS(123), + [sym__single_quote_open] = ACTIONS(125), + [sym__double_quote_open] = ACTIONS(127), + [sym__superscript_open] = ACTIONS(129), + [sym__subscript_open] = ACTIONS(131), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(133), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(135), + [sym__cite_author_in_text] = ACTIONS(137), + [sym__cite_suppress_author] = ACTIONS(139), + [sym__shortcode_open_escaped] = ACTIONS(141), + [sym__shortcode_open] = ACTIONS(143), + [sym__unclosed_span] = ACTIONS(75), }, [STATE(111)] = { - [sym_backslash_escape] = STATE(270), - [sym_commonmark_attribute] = STATE(270), - [sym_code_span] = STATE(270), - [sym_latex_span] = STATE(270), - [sym_superscript] = STATE(270), - [sym_subscript] = STATE(270), - [sym_strikeout] = STATE(270), - [sym_quoted_span] = STATE(270), - [sym_inline_note] = STATE(270), - [sym_citation] = STATE(270), - [sym_shortcode_escaped] = STATE(270), - [sym_shortcode] = STATE(270), - [sym_note_reference] = STATE(270), - [sym__link_text] = STATE(359), - [sym__link_text_non_empty] = STATE(364), - [sym_inline_link] = STATE(118), - [sym_image] = STATE(270), - [sym__image_inline_link] = STATE(795), - [sym__image_description] = STATE(1984), - [sym__image_description_non_empty] = STATE(1984), - [sym_hard_line_break] = STATE(270), - [sym__whitespace] = STATE(792), - [sym__word] = STATE(792), - [sym__soft_line_break] = STATE(796), - [sym__inline_base] = STATE(118), - [sym__text_base] = STATE(270), - [sym__inline_element] = STATE(118), - [sym__emphasis_star] = STATE(615), - [sym__strong_emphasis_star] = STATE(118), - [sym__emphasis_underscore] = STATE(615), - [sym__strong_emphasis_underscore] = STATE(118), - [aux_sym_superscript_repeat1] = STATE(118), - [aux_sym__inline_base_repeat1] = STATE(270), - [sym__backslash_escape] = ACTIONS(809), - [sym_entity_reference] = ACTIONS(811), - [sym_numeric_character_reference] = ACTIONS(811), - [anon_sym_LT] = ACTIONS(813), - [anon_sym_GT] = ACTIONS(815), - [anon_sym_BANG] = ACTIONS(817), - [anon_sym_DQUOTE] = ACTIONS(815), - [anon_sym_POUND] = ACTIONS(815), - [anon_sym_DOLLAR] = ACTIONS(815), - [anon_sym_PERCENT] = ACTIONS(815), - [anon_sym_AMP] = ACTIONS(813), - [anon_sym_SQUOTE] = ACTIONS(815), - [anon_sym_STAR] = ACTIONS(815), - [anon_sym_PLUS] = ACTIONS(815), - [anon_sym_COMMA] = ACTIONS(815), - [anon_sym_DASH] = ACTIONS(813), - [anon_sym_DOT] = ACTIONS(813), - [anon_sym_SLASH] = ACTIONS(815), - [anon_sym_COLON] = ACTIONS(815), - [anon_sym_SEMI] = ACTIONS(815), - [anon_sym_EQ] = ACTIONS(815), - [anon_sym_QMARK] = ACTIONS(815), - [anon_sym_LBRACK] = ACTIONS(819), - [anon_sym_BSLASH] = ACTIONS(821), - [anon_sym_CARET] = ACTIONS(813), - [anon_sym__] = ACTIONS(815), - [anon_sym_BQUOTE] = ACTIONS(815), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_PIPE] = ACTIONS(815), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_RPAREN] = ACTIONS(815), - [sym__newline_token] = ACTIONS(825), - [anon_sym_CARET_LBRACK] = ACTIONS(827), - [anon_sym_LBRACK_CARET] = ACTIONS(829), - [sym_uri_autolink] = ACTIONS(811), - [sym_email_autolink] = ACTIONS(811), - [sym__whitespace_ge_2] = ACTIONS(831), - [aux_sym__whitespace_token1] = ACTIONS(833), - [sym__word_no_digit] = ACTIONS(835), - [sym__digits] = ACTIONS(835), - [anon_sym_DASH_DASH] = ACTIONS(837), - [anon_sym_DASH_DASH_DASH] = ACTIONS(835), - [anon_sym_DOT_DOT_DOT] = ACTIONS(835), - [sym__code_span_start] = ACTIONS(839), - [sym__emphasis_open_star] = ACTIONS(841), - [sym__emphasis_open_underscore] = ACTIONS(843), - [sym__strikeout_open] = ACTIONS(845), - [sym__latex_span_start] = ACTIONS(847), - [sym__single_quote_open] = ACTIONS(849), - [sym__double_quote_open] = ACTIONS(851), - [sym__superscript_open] = ACTIONS(853), - [sym__subscript_open] = ACTIONS(855), - [sym__subscript_close] = ACTIONS(2019), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(859), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(861), - [sym__cite_author_in_text] = ACTIONS(863), - [sym__cite_suppress_author] = ACTIONS(865), - [sym__shortcode_open_escaped] = ACTIONS(867), - [sym__shortcode_open] = ACTIONS(869), - [sym__unclosed_span] = ACTIONS(811), + [sym_backslash_escape] = STATE(373), + [sym_commonmark_attribute] = STATE(373), + [sym_code_span] = STATE(373), + [sym_latex_span] = STATE(373), + [sym_insert] = STATE(373), + [sym_delete] = STATE(373), + [sym_highlight] = STATE(373), + [sym_edit_comment] = STATE(373), + [sym_superscript] = STATE(373), + [sym_subscript] = STATE(373), + [sym_strikeout] = STATE(373), + [sym_quoted_span] = STATE(373), + [sym_inline_note] = STATE(373), + [sym_citation] = STATE(373), + [sym_shortcode_escaped] = STATE(373), + [sym_shortcode] = STATE(373), + [sym_note_reference] = STATE(373), + [sym__link_text] = STATE(522), + [sym__link_text_non_empty] = STATE(523), + [sym_inline_link] = STATE(36), + [sym_image] = STATE(373), + [sym__image_inline_link] = STATE(1265), + [sym__image_description] = STATE(2331), + [sym__image_description_non_empty] = STATE(2331), + [sym_hard_line_break] = STATE(373), + [sym__whitespace] = STATE(1262), + [sym__word] = STATE(1262), + [sym__soft_line_break] = STATE(1267), + [sym__inline_base] = STATE(36), + [sym__text_base] = STATE(373), + [sym__inline_element_no_star] = STATE(36), + [aux_sym__inline_no_star] = STATE(36), + [sym__emphasis_star] = STATE(1147), + [sym__strong_emphasis_star] = STATE(36), + [sym__emphasis_underscore] = STATE(1147), + [sym__strong_emphasis_underscore] = STATE(36), + [aux_sym__inline_base_repeat1] = STATE(373), + [sym__backslash_escape] = ACTIONS(885), + [sym_entity_reference] = ACTIONS(887), + [sym_numeric_character_reference] = ACTIONS(887), + [anon_sym_LT] = ACTIONS(889), + [anon_sym_GT] = ACTIONS(891), + [anon_sym_BANG] = ACTIONS(893), + [anon_sym_DQUOTE] = ACTIONS(891), + [anon_sym_POUND] = ACTIONS(891), + [anon_sym_DOLLAR] = ACTIONS(891), + [anon_sym_PERCENT] = ACTIONS(891), + [anon_sym_AMP] = ACTIONS(889), + [anon_sym_SQUOTE] = ACTIONS(891), + [anon_sym_STAR] = ACTIONS(891), + [anon_sym_PLUS] = ACTIONS(891), + [anon_sym_COMMA] = ACTIONS(891), + [anon_sym_DASH] = ACTIONS(889), + [anon_sym_DOT] = ACTIONS(889), + [anon_sym_SLASH] = ACTIONS(891), + [anon_sym_COLON] = ACTIONS(891), + [anon_sym_SEMI] = ACTIONS(891), + [anon_sym_EQ] = ACTIONS(891), + [anon_sym_QMARK] = ACTIONS(891), + [anon_sym_LBRACK] = ACTIONS(895), + [anon_sym_BSLASH] = ACTIONS(897), + [anon_sym_CARET] = ACTIONS(889), + [anon_sym__] = ACTIONS(891), + [anon_sym_BQUOTE] = ACTIONS(891), + [anon_sym_LBRACE] = ACTIONS(899), + [anon_sym_PIPE] = ACTIONS(891), + [anon_sym_TILDE] = ACTIONS(891), + [anon_sym_LPAREN] = ACTIONS(891), + [anon_sym_RPAREN] = ACTIONS(891), + [sym__newline_token] = ACTIONS(901), + [aux_sym_insert_token1] = ACTIONS(903), + [aux_sym_delete_token1] = ACTIONS(905), + [aux_sym_highlight_token1] = ACTIONS(907), + [aux_sym_edit_comment_token1] = ACTIONS(909), + [anon_sym_CARET_LBRACK] = ACTIONS(911), + [anon_sym_LBRACK_CARET] = ACTIONS(913), + [sym_uri_autolink] = ACTIONS(887), + [sym_email_autolink] = ACTIONS(887), + [sym__whitespace_ge_2] = ACTIONS(915), + [aux_sym__whitespace_token1] = ACTIONS(917), + [sym__word_no_digit] = ACTIONS(919), + [sym__digits] = ACTIONS(919), + [anon_sym_DASH_DASH] = ACTIONS(921), + [anon_sym_DASH_DASH_DASH] = ACTIONS(919), + [anon_sym_DOT_DOT_DOT] = ACTIONS(919), + [sym__code_span_start] = ACTIONS(923), + [sym__emphasis_open_star] = ACTIONS(925), + [sym__emphasis_open_underscore] = ACTIONS(927), + [sym__emphasis_close_star] = ACTIONS(2441), + [sym__strikeout_open] = ACTIONS(931), + [sym__latex_span_start] = ACTIONS(933), + [sym__single_quote_open] = ACTIONS(935), + [sym__double_quote_open] = ACTIONS(937), + [sym__superscript_open] = ACTIONS(939), + [sym__subscript_open] = ACTIONS(941), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(943), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(945), + [sym__cite_author_in_text] = ACTIONS(947), + [sym__cite_suppress_author] = ACTIONS(949), + [sym__shortcode_open_escaped] = ACTIONS(951), + [sym__shortcode_open] = ACTIONS(953), + [sym__unclosed_span] = ACTIONS(887), }, [STATE(112)] = { - [sym_backslash_escape] = STATE(261), - [sym_commonmark_attribute] = STATE(261), - [sym_code_span] = STATE(261), - [sym_latex_span] = STATE(261), - [sym_superscript] = STATE(261), - [sym_subscript] = STATE(261), - [sym_strikeout] = STATE(261), - [sym_quoted_span] = STATE(261), - [sym_inline_note] = STATE(261), - [sym_citation] = STATE(261), - [sym_shortcode_escaped] = STATE(261), - [sym_shortcode] = STATE(261), - [sym_note_reference] = STATE(261), - [sym__link_text] = STATE(322), - [sym__link_text_non_empty] = STATE(323), - [sym_inline_link] = STATE(39), - [sym_image] = STATE(261), - [sym__image_inline_link] = STATE(595), - [sym__image_description] = STATE(1972), - [sym__image_description_non_empty] = STATE(1972), - [sym_hard_line_break] = STATE(261), - [sym__whitespace] = STATE(587), - [sym__word] = STATE(587), - [sym__soft_line_break] = STATE(597), - [sym__inline_base] = STATE(39), - [sym__text_base] = STATE(261), - [sym__inline_element_no_star] = STATE(39), - [aux_sym__inline_no_star] = STATE(39), - [sym__emphasis_star] = STATE(544), - [sym__strong_emphasis_star] = STATE(39), - [sym__emphasis_underscore] = STATE(544), - [sym__strong_emphasis_underscore] = STATE(39), - [aux_sym__inline_base_repeat1] = STATE(261), - [sym__backslash_escape] = ACTIONS(969), - [sym_entity_reference] = ACTIONS(971), - [sym_numeric_character_reference] = ACTIONS(971), - [anon_sym_LT] = ACTIONS(973), - [anon_sym_GT] = ACTIONS(975), - [anon_sym_BANG] = ACTIONS(977), - [anon_sym_DQUOTE] = ACTIONS(975), - [anon_sym_POUND] = ACTIONS(975), - [anon_sym_DOLLAR] = ACTIONS(975), - [anon_sym_PERCENT] = ACTIONS(975), - [anon_sym_AMP] = ACTIONS(973), - [anon_sym_SQUOTE] = ACTIONS(975), - [anon_sym_STAR] = ACTIONS(975), - [anon_sym_PLUS] = ACTIONS(975), - [anon_sym_COMMA] = ACTIONS(975), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_DOT] = ACTIONS(973), - [anon_sym_SLASH] = ACTIONS(975), - [anon_sym_COLON] = ACTIONS(975), - [anon_sym_SEMI] = ACTIONS(975), - [anon_sym_EQ] = ACTIONS(975), - [anon_sym_QMARK] = ACTIONS(975), - [anon_sym_LBRACK] = ACTIONS(979), - [anon_sym_BSLASH] = ACTIONS(981), - [anon_sym_CARET] = ACTIONS(973), - [anon_sym__] = ACTIONS(975), - [anon_sym_BQUOTE] = ACTIONS(975), - [anon_sym_LBRACE] = ACTIONS(983), - [anon_sym_PIPE] = ACTIONS(975), - [anon_sym_TILDE] = ACTIONS(975), - [anon_sym_LPAREN] = ACTIONS(975), - [anon_sym_RPAREN] = ACTIONS(975), - [sym__newline_token] = ACTIONS(985), - [anon_sym_CARET_LBRACK] = ACTIONS(987), - [anon_sym_LBRACK_CARET] = ACTIONS(989), - [sym_uri_autolink] = ACTIONS(971), - [sym_email_autolink] = ACTIONS(971), - [sym__whitespace_ge_2] = ACTIONS(991), - [aux_sym__whitespace_token1] = ACTIONS(993), - [sym__word_no_digit] = ACTIONS(995), - [sym__digits] = ACTIONS(995), - [anon_sym_DASH_DASH] = ACTIONS(997), - [anon_sym_DASH_DASH_DASH] = ACTIONS(995), - [anon_sym_DOT_DOT_DOT] = ACTIONS(995), - [sym__code_span_start] = ACTIONS(999), - [sym__emphasis_open_star] = ACTIONS(1001), - [sym__emphasis_open_underscore] = ACTIONS(1003), - [sym__emphasis_close_star] = ACTIONS(2021), - [sym__strikeout_open] = ACTIONS(1007), - [sym__latex_span_start] = ACTIONS(1009), - [sym__single_quote_open] = ACTIONS(1011), - [sym__double_quote_open] = ACTIONS(1013), - [sym__superscript_open] = ACTIONS(1015), - [sym__subscript_open] = ACTIONS(1017), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1019), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1021), - [sym__cite_author_in_text] = ACTIONS(1023), - [sym__cite_suppress_author] = ACTIONS(1025), - [sym__shortcode_open_escaped] = ACTIONS(1027), - [sym__shortcode_open] = ACTIONS(1029), - [sym__unclosed_span] = ACTIONS(971), + [sym_backslash_escape] = STATE(379), + [sym_commonmark_attribute] = STATE(379), + [sym_code_span] = STATE(379), + [sym_latex_span] = STATE(379), + [sym_insert] = STATE(379), + [sym_delete] = STATE(379), + [sym_highlight] = STATE(379), + [sym_edit_comment] = STATE(379), + [sym_superscript] = STATE(379), + [sym_subscript] = STATE(379), + [sym_strikeout] = STATE(379), + [sym_quoted_span] = STATE(379), + [sym_inline_note] = STATE(379), + [sym_citation] = STATE(379), + [sym_shortcode_escaped] = STATE(379), + [sym_shortcode] = STATE(379), + [sym_note_reference] = STATE(379), + [sym__link_text] = STATE(545), + [sym__link_text_non_empty] = STATE(546), + [sym_inline_link] = STATE(38), + [sym_image] = STATE(379), + [sym__image_inline_link] = STATE(1390), + [sym__image_description] = STATE(2363), + [sym__image_description_non_empty] = STATE(2363), + [sym_hard_line_break] = STATE(379), + [sym__whitespace] = STATE(1385), + [sym__word] = STATE(1385), + [sym__soft_line_break] = STATE(1391), + [sym__inline_base] = STATE(38), + [sym__text_base] = STATE(379), + [sym__inline_element_no_underscore] = STATE(38), + [aux_sym__inline_no_underscore] = STATE(38), + [sym__emphasis_star] = STATE(1168), + [sym__strong_emphasis_star] = STATE(38), + [sym__emphasis_underscore] = STATE(1168), + [sym__strong_emphasis_underscore] = STATE(38), + [aux_sym__inline_base_repeat1] = STATE(379), + [sym__backslash_escape] = ACTIONS(1059), + [sym_entity_reference] = ACTIONS(1061), + [sym_numeric_character_reference] = ACTIONS(1061), + [anon_sym_LT] = ACTIONS(1063), + [anon_sym_GT] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1067), + [anon_sym_DQUOTE] = ACTIONS(1065), + [anon_sym_POUND] = ACTIONS(1065), + [anon_sym_DOLLAR] = ACTIONS(1065), + [anon_sym_PERCENT] = ACTIONS(1065), + [anon_sym_AMP] = ACTIONS(1063), + [anon_sym_SQUOTE] = ACTIONS(1065), + [anon_sym_STAR] = ACTIONS(1065), + [anon_sym_PLUS] = ACTIONS(1065), + [anon_sym_COMMA] = ACTIONS(1065), + [anon_sym_DASH] = ACTIONS(1063), + [anon_sym_DOT] = ACTIONS(1063), + [anon_sym_SLASH] = ACTIONS(1065), + [anon_sym_COLON] = ACTIONS(1065), + [anon_sym_SEMI] = ACTIONS(1065), + [anon_sym_EQ] = ACTIONS(1065), + [anon_sym_QMARK] = ACTIONS(1065), + [anon_sym_LBRACK] = ACTIONS(1069), + [anon_sym_BSLASH] = ACTIONS(1071), + [anon_sym_CARET] = ACTIONS(1063), + [anon_sym__] = ACTIONS(1065), + [anon_sym_BQUOTE] = ACTIONS(1065), + [anon_sym_LBRACE] = ACTIONS(1073), + [anon_sym_PIPE] = ACTIONS(1065), + [anon_sym_TILDE] = ACTIONS(1065), + [anon_sym_LPAREN] = ACTIONS(1065), + [anon_sym_RPAREN] = ACTIONS(1065), + [sym__newline_token] = ACTIONS(1075), + [aux_sym_insert_token1] = ACTIONS(1077), + [aux_sym_delete_token1] = ACTIONS(1079), + [aux_sym_highlight_token1] = ACTIONS(1081), + [aux_sym_edit_comment_token1] = ACTIONS(1083), + [anon_sym_CARET_LBRACK] = ACTIONS(1085), + [anon_sym_LBRACK_CARET] = ACTIONS(1087), + [sym_uri_autolink] = ACTIONS(1061), + [sym_email_autolink] = ACTIONS(1061), + [sym__whitespace_ge_2] = ACTIONS(1089), + [aux_sym__whitespace_token1] = ACTIONS(1091), + [sym__word_no_digit] = ACTIONS(1093), + [sym__digits] = ACTIONS(1093), + [anon_sym_DASH_DASH] = ACTIONS(1095), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1093), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1093), + [sym__code_span_start] = ACTIONS(1097), + [sym__emphasis_open_star] = ACTIONS(1099), + [sym__emphasis_open_underscore] = ACTIONS(1101), + [sym__emphasis_close_underscore] = ACTIONS(2443), + [sym__strikeout_open] = ACTIONS(1105), + [sym__latex_span_start] = ACTIONS(1107), + [sym__single_quote_open] = ACTIONS(1109), + [sym__double_quote_open] = ACTIONS(1111), + [sym__superscript_open] = ACTIONS(1113), + [sym__subscript_open] = ACTIONS(1115), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1117), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1119), + [sym__cite_author_in_text] = ACTIONS(1121), + [sym__cite_suppress_author] = ACTIONS(1123), + [sym__shortcode_open_escaped] = ACTIONS(1125), + [sym__shortcode_open] = ACTIONS(1127), + [sym__unclosed_span] = ACTIONS(1061), }, [STATE(113)] = { - [sym_backslash_escape] = STATE(274), - [sym_commonmark_attribute] = STATE(274), - [sym_code_span] = STATE(274), - [sym_latex_span] = STATE(274), - [sym_superscript] = STATE(274), - [sym_subscript] = STATE(274), - [sym_strikeout] = STATE(274), - [sym_quoted_span] = STATE(274), - [sym_inline_note] = STATE(274), - [sym_citation] = STATE(274), - [sym_shortcode_escaped] = STATE(274), - [sym_shortcode] = STATE(274), - [sym_note_reference] = STATE(274), - [sym__link_text] = STATE(351), - [sym__link_text_non_empty] = STATE(352), - [sym_inline_link] = STATE(41), - [sym_image] = STATE(274), - [sym__image_inline_link] = STATE(894), - [sym__image_description] = STATE(2008), - [sym__image_description_non_empty] = STATE(2008), - [sym_hard_line_break] = STATE(274), - [sym__whitespace] = STATE(882), - [sym__word] = STATE(882), - [sym__soft_line_break] = STATE(898), - [sym__inline_base] = STATE(41), - [sym__text_base] = STATE(274), - [sym__inline_element_no_underscore] = STATE(41), - [aux_sym__inline_no_underscore] = STATE(41), - [sym__emphasis_star] = STATE(711), - [sym__strong_emphasis_star] = STATE(41), - [sym__emphasis_underscore] = STATE(711), - [sym__strong_emphasis_underscore] = STATE(41), - [aux_sym__inline_base_repeat1] = STATE(274), - [sym__backslash_escape] = ACTIONS(1123), - [sym_entity_reference] = ACTIONS(1125), - [sym_numeric_character_reference] = ACTIONS(1125), - [anon_sym_LT] = ACTIONS(1127), - [anon_sym_GT] = ACTIONS(1129), - [anon_sym_BANG] = ACTIONS(1131), - [anon_sym_DQUOTE] = ACTIONS(1129), - [anon_sym_POUND] = ACTIONS(1129), - [anon_sym_DOLLAR] = ACTIONS(1129), - [anon_sym_PERCENT] = ACTIONS(1129), - [anon_sym_AMP] = ACTIONS(1127), - [anon_sym_SQUOTE] = ACTIONS(1129), - [anon_sym_STAR] = ACTIONS(1129), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_COMMA] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1127), - [anon_sym_DOT] = ACTIONS(1127), - [anon_sym_SLASH] = ACTIONS(1129), - [anon_sym_COLON] = ACTIONS(1129), - [anon_sym_SEMI] = ACTIONS(1129), - [anon_sym_EQ] = ACTIONS(1129), - [anon_sym_QMARK] = ACTIONS(1129), - [anon_sym_LBRACK] = ACTIONS(1133), - [anon_sym_BSLASH] = ACTIONS(1135), - [anon_sym_CARET] = ACTIONS(1127), - [anon_sym__] = ACTIONS(1129), - [anon_sym_BQUOTE] = ACTIONS(1129), - [anon_sym_LBRACE] = ACTIONS(1137), - [anon_sym_PIPE] = ACTIONS(1129), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1129), - [anon_sym_RPAREN] = ACTIONS(1129), - [sym__newline_token] = ACTIONS(1139), - [anon_sym_CARET_LBRACK] = ACTIONS(1141), - [anon_sym_LBRACK_CARET] = ACTIONS(1143), - [sym_uri_autolink] = ACTIONS(1125), - [sym_email_autolink] = ACTIONS(1125), - [sym__whitespace_ge_2] = ACTIONS(1145), - [aux_sym__whitespace_token1] = ACTIONS(1147), - [sym__word_no_digit] = ACTIONS(1149), - [sym__digits] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1151), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1149), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1149), - [sym__code_span_start] = ACTIONS(1153), - [sym__emphasis_open_star] = ACTIONS(1155), - [sym__emphasis_open_underscore] = ACTIONS(1157), - [sym__emphasis_close_underscore] = ACTIONS(2023), - [sym__strikeout_open] = ACTIONS(1161), - [sym__latex_span_start] = ACTIONS(1163), - [sym__single_quote_open] = ACTIONS(1165), - [sym__double_quote_open] = ACTIONS(1167), - [sym__superscript_open] = ACTIONS(1169), - [sym__subscript_open] = ACTIONS(1171), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1173), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1175), - [sym__cite_author_in_text] = ACTIONS(1177), - [sym__cite_suppress_author] = ACTIONS(1179), - [sym__shortcode_open_escaped] = ACTIONS(1181), - [sym__shortcode_open] = ACTIONS(1183), - [sym__unclosed_span] = ACTIONS(1125), + [sym_backslash_escape] = STATE(370), + [sym_commonmark_attribute] = STATE(370), + [sym_code_span] = STATE(370), + [sym_latex_span] = STATE(370), + [sym_insert] = STATE(370), + [sym_delete] = STATE(370), + [sym_highlight] = STATE(370), + [sym_edit_comment] = STATE(370), + [sym_superscript] = STATE(370), + [sym_subscript] = STATE(370), + [sym_strikeout] = STATE(370), + [sym_quoted_span] = STATE(370), + [sym_inline_note] = STATE(370), + [sym_citation] = STATE(370), + [sym_shortcode_escaped] = STATE(370), + [sym_shortcode] = STATE(370), + [sym_note_reference] = STATE(370), + [sym__link_text] = STATE(472), + [sym__link_text_non_empty] = STATE(473), + [sym_inline_link] = STATE(60), + [sym_image] = STATE(370), + [sym__image_inline_link] = STATE(923), + [sym__image_description] = STATE(2342), + [sym__image_description_non_empty] = STATE(2342), + [sym_hard_line_break] = STATE(370), + [sym__whitespace] = STATE(920), + [sym__word] = STATE(920), + [sym__soft_line_break] = STATE(924), + [sym__inline_base] = STATE(60), + [sym__text_base] = STATE(370), + [sym__inline_element] = STATE(60), + [sym__emphasis_star] = STATE(821), + [sym__strong_emphasis_star] = STATE(60), + [sym__emphasis_underscore] = STATE(821), + [sym__strong_emphasis_underscore] = STATE(60), + [aux_sym_insert_repeat1] = STATE(60), + [aux_sym__inline_base_repeat1] = STATE(370), + [sym__backslash_escape] = ACTIONS(73), + [sym_entity_reference] = ACTIONS(75), + [sym_numeric_character_reference] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_BANG] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_POUND] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(79), + [anon_sym_PERCENT] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_STAR] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_COMMA] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_DOT] = ACTIONS(77), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_COLON] = ACTIONS(79), + [anon_sym_SEMI] = ACTIONS(79), + [anon_sym_EQ] = ACTIONS(79), + [anon_sym_QMARK] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(83), + [anon_sym_BSLASH] = ACTIONS(85), + [anon_sym_RBRACK] = ACTIONS(2445), + [anon_sym_CARET] = ACTIONS(77), + [anon_sym__] = ACTIONS(79), + [anon_sym_BQUOTE] = ACTIONS(79), + [anon_sym_LBRACE] = ACTIONS(89), + [anon_sym_PIPE] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(79), + [anon_sym_RPAREN] = ACTIONS(79), + [sym__newline_token] = ACTIONS(91), + [aux_sym_insert_token1] = ACTIONS(93), + [aux_sym_delete_token1] = ACTIONS(95), + [aux_sym_highlight_token1] = ACTIONS(97), + [aux_sym_edit_comment_token1] = ACTIONS(99), + [anon_sym_CARET_LBRACK] = ACTIONS(101), + [anon_sym_LBRACK_CARET] = ACTIONS(103), + [sym_uri_autolink] = ACTIONS(75), + [sym_email_autolink] = ACTIONS(75), + [sym__whitespace_ge_2] = ACTIONS(105), + [aux_sym__whitespace_token1] = ACTIONS(107), + [sym__word_no_digit] = ACTIONS(109), + [sym__digits] = ACTIONS(109), + [anon_sym_DASH_DASH] = ACTIONS(111), + [anon_sym_DASH_DASH_DASH] = ACTIONS(109), + [anon_sym_DOT_DOT_DOT] = ACTIONS(109), + [sym__code_span_start] = ACTIONS(113), + [sym__emphasis_open_star] = ACTIONS(115), + [sym__emphasis_open_underscore] = ACTIONS(117), + [sym__strikeout_open] = ACTIONS(121), + [sym__latex_span_start] = ACTIONS(123), + [sym__single_quote_open] = ACTIONS(125), + [sym__double_quote_open] = ACTIONS(127), + [sym__superscript_open] = ACTIONS(129), + [sym__subscript_open] = ACTIONS(131), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(133), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(135), + [sym__cite_author_in_text] = ACTIONS(137), + [sym__cite_suppress_author] = ACTIONS(139), + [sym__shortcode_open_escaped] = ACTIONS(141), + [sym__shortcode_open] = ACTIONS(143), + [sym__unclosed_span] = ACTIONS(75), }, [STATE(114)] = { - [sym_backslash_escape] = STATE(266), - [sym_commonmark_attribute] = STATE(266), - [sym_code_span] = STATE(266), - [sym_latex_span] = STATE(266), - [sym_superscript] = STATE(266), - [sym_subscript] = STATE(266), - [sym_strikeout] = STATE(266), - [sym_quoted_span] = STATE(266), - [sym_inline_note] = STATE(266), - [sym_citation] = STATE(266), - [sym_shortcode_escaped] = STATE(266), - [sym_shortcode] = STATE(266), - [sym_note_reference] = STATE(266), - [sym__link_text] = STATE(375), - [sym__link_text_non_empty] = STATE(376), - [sym_inline_link] = STATE(42), - [sym_image] = STATE(266), - [sym__image_inline_link] = STATE(1042), - [sym__image_description] = STATE(2044), - [sym__image_description_non_empty] = STATE(2044), - [sym_hard_line_break] = STATE(266), - [sym__whitespace] = STATE(1040), - [sym__word] = STATE(1040), - [sym__soft_line_break] = STATE(1043), - [sym__inline_base] = STATE(42), - [sym__text_base] = STATE(266), - [sym__inline_element] = STATE(42), - [sym__emphasis_star] = STATE(602), - [sym__strong_emphasis_star] = STATE(42), - [sym__emphasis_underscore] = STATE(602), - [sym__strong_emphasis_underscore] = STATE(42), - [aux_sym_superscript_repeat1] = STATE(42), - [aux_sym__inline_base_repeat1] = STATE(266), - [sym__backslash_escape] = ACTIONS(559), - [sym_entity_reference] = ACTIONS(561), - [sym_numeric_character_reference] = ACTIONS(561), - [anon_sym_LT] = ACTIONS(563), - [anon_sym_GT] = ACTIONS(565), - [anon_sym_BANG] = ACTIONS(567), - [anon_sym_DQUOTE] = ACTIONS(565), - [anon_sym_POUND] = ACTIONS(565), - [anon_sym_DOLLAR] = ACTIONS(565), - [anon_sym_PERCENT] = ACTIONS(565), - [anon_sym_AMP] = ACTIONS(563), - [anon_sym_SQUOTE] = ACTIONS(565), - [anon_sym_STAR] = ACTIONS(565), - [anon_sym_PLUS] = ACTIONS(565), - [anon_sym_COMMA] = ACTIONS(565), - [anon_sym_DASH] = ACTIONS(563), - [anon_sym_DOT] = ACTIONS(563), - [anon_sym_SLASH] = ACTIONS(565), - [anon_sym_COLON] = ACTIONS(565), - [anon_sym_SEMI] = ACTIONS(565), - [anon_sym_EQ] = ACTIONS(565), - [anon_sym_QMARK] = ACTIONS(565), - [anon_sym_LBRACK] = ACTIONS(569), - [anon_sym_BSLASH] = ACTIONS(571), - [anon_sym_CARET] = ACTIONS(563), - [anon_sym__] = ACTIONS(565), - [anon_sym_BQUOTE] = ACTIONS(565), - [anon_sym_LBRACE] = ACTIONS(573), - [anon_sym_PIPE] = ACTIONS(565), - [anon_sym_TILDE] = ACTIONS(565), - [anon_sym_LPAREN] = ACTIONS(565), - [anon_sym_RPAREN] = ACTIONS(565), - [sym__newline_token] = ACTIONS(575), - [anon_sym_CARET_LBRACK] = ACTIONS(577), - [anon_sym_LBRACK_CARET] = ACTIONS(579), - [sym_uri_autolink] = ACTIONS(561), - [sym_email_autolink] = ACTIONS(561), - [sym__whitespace_ge_2] = ACTIONS(581), - [aux_sym__whitespace_token1] = ACTIONS(583), - [sym__word_no_digit] = ACTIONS(585), - [sym__digits] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(587), - [anon_sym_DASH_DASH_DASH] = ACTIONS(585), - [anon_sym_DOT_DOT_DOT] = ACTIONS(585), - [sym__code_span_start] = ACTIONS(589), - [sym__emphasis_open_star] = ACTIONS(591), - [sym__emphasis_open_underscore] = ACTIONS(593), - [sym__strikeout_open] = ACTIONS(595), - [sym__strikeout_close] = ACTIONS(2025), - [sym__latex_span_start] = ACTIONS(599), - [sym__single_quote_open] = ACTIONS(601), - [sym__double_quote_open] = ACTIONS(603), - [sym__superscript_open] = ACTIONS(605), - [sym__subscript_open] = ACTIONS(607), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(609), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(611), - [sym__cite_author_in_text] = ACTIONS(613), - [sym__cite_suppress_author] = ACTIONS(615), - [sym__shortcode_open_escaped] = ACTIONS(617), - [sym__shortcode_open] = ACTIONS(619), - [sym__unclosed_span] = ACTIONS(561), + [sym_backslash_escape] = STATE(366), + [sym_commonmark_attribute] = STATE(366), + [sym_code_span] = STATE(366), + [sym_latex_span] = STATE(366), + [sym_insert] = STATE(366), + [sym_delete] = STATE(366), + [sym_highlight] = STATE(366), + [sym_edit_comment] = STATE(366), + [sym_superscript] = STATE(366), + [sym_subscript] = STATE(366), + [sym_strikeout] = STATE(366), + [sym_quoted_span] = STATE(366), + [sym_inline_note] = STATE(366), + [sym_citation] = STATE(366), + [sym_shortcode_escaped] = STATE(366), + [sym_shortcode] = STATE(366), + [sym_note_reference] = STATE(366), + [sym__link_text] = STATE(490), + [sym__link_text_non_empty] = STATE(491), + [sym_inline_link] = STATE(126), + [sym_image] = STATE(366), + [sym__image_inline_link] = STATE(1244), + [sym__image_description] = STATE(2280), + [sym__image_description_non_empty] = STATE(2280), + [sym_hard_line_break] = STATE(366), + [sym__whitespace] = STATE(1218), + [sym__word] = STATE(1218), + [sym__soft_line_break] = STATE(1245), + [sym__inline_base] = STATE(126), + [sym__text_base] = STATE(366), + [sym__inline_element] = STATE(126), + [sym__emphasis_star] = STATE(1270), + [sym__strong_emphasis_star] = STATE(126), + [sym__emphasis_underscore] = STATE(1270), + [sym__strong_emphasis_underscore] = STATE(126), + [aux_sym_insert_repeat1] = STATE(126), + [aux_sym__inline_base_repeat1] = STATE(366), + [sym__backslash_escape] = ACTIONS(2005), + [sym_entity_reference] = ACTIONS(2007), + [sym_numeric_character_reference] = ACTIONS(2007), + [anon_sym_LT] = ACTIONS(2009), + [anon_sym_GT] = ACTIONS(2011), + [anon_sym_BANG] = ACTIONS(2013), + [anon_sym_DQUOTE] = ACTIONS(2011), + [anon_sym_POUND] = ACTIONS(2011), + [anon_sym_DOLLAR] = ACTIONS(2011), + [anon_sym_PERCENT] = ACTIONS(2011), + [anon_sym_AMP] = ACTIONS(2009), + [anon_sym_SQUOTE] = ACTIONS(2011), + [anon_sym_STAR] = ACTIONS(2011), + [anon_sym_PLUS] = ACTIONS(2011), + [anon_sym_COMMA] = ACTIONS(2011), + [anon_sym_DASH] = ACTIONS(2009), + [anon_sym_DOT] = ACTIONS(2009), + [anon_sym_SLASH] = ACTIONS(2011), + [anon_sym_COLON] = ACTIONS(2011), + [anon_sym_SEMI] = ACTIONS(2011), + [anon_sym_EQ] = ACTIONS(2011), + [anon_sym_QMARK] = ACTIONS(2011), + [anon_sym_LBRACK] = ACTIONS(2015), + [anon_sym_BSLASH] = ACTIONS(2017), + [anon_sym_CARET] = ACTIONS(2009), + [anon_sym__] = ACTIONS(2011), + [anon_sym_BQUOTE] = ACTIONS(2011), + [anon_sym_LBRACE] = ACTIONS(2019), + [anon_sym_PIPE] = ACTIONS(2011), + [anon_sym_TILDE] = ACTIONS(2011), + [anon_sym_LPAREN] = ACTIONS(2011), + [anon_sym_RPAREN] = ACTIONS(2011), + [sym__newline_token] = ACTIONS(2021), + [aux_sym_insert_token1] = ACTIONS(2023), + [aux_sym_delete_token1] = ACTIONS(2025), + [aux_sym_highlight_token1] = ACTIONS(2027), + [aux_sym_edit_comment_token1] = ACTIONS(2029), + [anon_sym_CARET_LBRACK] = ACTIONS(2031), + [anon_sym_LBRACK_CARET] = ACTIONS(2033), + [sym_uri_autolink] = ACTIONS(2007), + [sym_email_autolink] = ACTIONS(2007), + [sym__whitespace_ge_2] = ACTIONS(2035), + [aux_sym__whitespace_token1] = ACTIONS(2037), + [sym__word_no_digit] = ACTIONS(2039), + [sym__digits] = ACTIONS(2039), + [anon_sym_DASH_DASH] = ACTIONS(2041), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2039), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2039), + [sym__code_span_start] = ACTIONS(2043), + [sym__emphasis_open_star] = ACTIONS(2045), + [sym__emphasis_open_underscore] = ACTIONS(2047), + [sym__strikeout_open] = ACTIONS(2049), + [sym__strikeout_close] = ACTIONS(2447), + [sym__latex_span_start] = ACTIONS(2053), + [sym__single_quote_open] = ACTIONS(2055), + [sym__double_quote_open] = ACTIONS(2057), + [sym__superscript_open] = ACTIONS(2059), + [sym__subscript_open] = ACTIONS(2061), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2063), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2065), + [sym__cite_author_in_text] = ACTIONS(2067), + [sym__cite_suppress_author] = ACTIONS(2069), + [sym__shortcode_open_escaped] = ACTIONS(2071), + [sym__shortcode_open] = ACTIONS(2073), + [sym__unclosed_span] = ACTIONS(2007), }, [STATE(115)] = { - [sym_backslash_escape] = STATE(272), - [sym_commonmark_attribute] = STATE(272), - [sym_code_span] = STATE(272), - [sym_latex_span] = STATE(272), - [sym_superscript] = STATE(272), - [sym_subscript] = STATE(272), - [sym_strikeout] = STATE(272), - [sym_quoted_span] = STATE(272), - [sym_inline_note] = STATE(272), - [sym_citation] = STATE(272), - [sym_shortcode_escaped] = STATE(272), - [sym_shortcode] = STATE(272), - [sym_note_reference] = STATE(272), - [sym__link_text] = STATE(401), - [sym__link_text_non_empty] = STATE(402), - [sym_inline_link] = STATE(49), - [sym_image] = STATE(272), - [sym__image_inline_link] = STATE(1136), - [sym__image_description] = STATE(1942), - [sym__image_description_non_empty] = STATE(1942), - [sym_hard_line_break] = STATE(272), - [sym__whitespace] = STATE(1133), - [sym__word] = STATE(1133), - [sym__soft_line_break] = STATE(1137), - [sym__inline_base] = STATE(49), - [sym__text_base] = STATE(272), - [sym__inline_element] = STATE(49), - [sym__emphasis_star] = STATE(902), - [sym__strong_emphasis_star] = STATE(49), - [sym__emphasis_underscore] = STATE(902), - [sym__strong_emphasis_underscore] = STATE(49), - [aux_sym_superscript_repeat1] = STATE(49), - [aux_sym__inline_base_repeat1] = STATE(272), - [sym__backslash_escape] = ACTIONS(625), - [sym_entity_reference] = ACTIONS(627), - [sym_numeric_character_reference] = ACTIONS(627), - [anon_sym_LT] = ACTIONS(629), - [anon_sym_GT] = ACTIONS(631), - [anon_sym_BANG] = ACTIONS(633), - [anon_sym_DQUOTE] = ACTIONS(631), - [anon_sym_POUND] = ACTIONS(631), - [anon_sym_DOLLAR] = ACTIONS(631), - [anon_sym_PERCENT] = ACTIONS(631), - [anon_sym_AMP] = ACTIONS(629), - [anon_sym_SQUOTE] = ACTIONS(631), - [anon_sym_STAR] = ACTIONS(631), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_COMMA] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(629), - [anon_sym_DOT] = ACTIONS(629), - [anon_sym_SLASH] = ACTIONS(631), - [anon_sym_COLON] = ACTIONS(631), - [anon_sym_SEMI] = ACTIONS(631), - [anon_sym_EQ] = ACTIONS(631), - [anon_sym_QMARK] = ACTIONS(631), - [anon_sym_LBRACK] = ACTIONS(635), - [anon_sym_BSLASH] = ACTIONS(637), - [anon_sym_CARET] = ACTIONS(629), - [anon_sym__] = ACTIONS(631), - [anon_sym_BQUOTE] = ACTIONS(631), - [anon_sym_LBRACE] = ACTIONS(639), - [anon_sym_PIPE] = ACTIONS(631), - [anon_sym_TILDE] = ACTIONS(631), - [anon_sym_LPAREN] = ACTIONS(631), - [anon_sym_RPAREN] = ACTIONS(631), - [sym__newline_token] = ACTIONS(641), - [anon_sym_CARET_LBRACK] = ACTIONS(643), - [anon_sym_LBRACK_CARET] = ACTIONS(645), - [sym_uri_autolink] = ACTIONS(627), - [sym_email_autolink] = ACTIONS(627), - [sym__whitespace_ge_2] = ACTIONS(647), - [aux_sym__whitespace_token1] = ACTIONS(649), - [sym__word_no_digit] = ACTIONS(651), - [sym__digits] = ACTIONS(651), - [anon_sym_DASH_DASH] = ACTIONS(653), - [anon_sym_DASH_DASH_DASH] = ACTIONS(651), - [anon_sym_DOT_DOT_DOT] = ACTIONS(651), - [sym__code_span_start] = ACTIONS(655), - [sym__emphasis_open_star] = ACTIONS(657), - [sym__emphasis_open_underscore] = ACTIONS(659), - [sym__strikeout_open] = ACTIONS(661), - [sym__latex_span_start] = ACTIONS(663), - [sym__single_quote_open] = ACTIONS(665), - [sym__single_quote_close] = ACTIONS(2027), - [sym__double_quote_open] = ACTIONS(669), - [sym__superscript_open] = ACTIONS(671), - [sym__subscript_open] = ACTIONS(673), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(675), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(677), - [sym__cite_author_in_text] = ACTIONS(679), - [sym__cite_suppress_author] = ACTIONS(681), - [sym__shortcode_open_escaped] = ACTIONS(683), - [sym__shortcode_open] = ACTIONS(685), - [sym__unclosed_span] = ACTIONS(627), + [sym_backslash_escape] = STATE(375), + [sym_commonmark_attribute] = STATE(375), + [sym_code_span] = STATE(375), + [sym_latex_span] = STATE(375), + [sym_insert] = STATE(375), + [sym_delete] = STATE(375), + [sym_highlight] = STATE(375), + [sym_edit_comment] = STATE(375), + [sym_superscript] = STATE(375), + [sym_subscript] = STATE(375), + [sym_strikeout] = STATE(375), + [sym_quoted_span] = STATE(375), + [sym_inline_note] = STATE(375), + [sym_citation] = STATE(375), + [sym_shortcode_escaped] = STATE(375), + [sym_shortcode] = STATE(375), + [sym_note_reference] = STATE(375), + [sym__link_text] = STATE(525), + [sym__link_text_non_empty] = STATE(527), + [sym_inline_link] = STATE(127), + [sym_image] = STATE(375), + [sym__image_inline_link] = STATE(972), + [sym__image_description] = STATE(2286), + [sym__image_description_non_empty] = STATE(2286), + [sym_hard_line_break] = STATE(375), + [sym__whitespace] = STATE(949), + [sym__word] = STATE(949), + [sym__soft_line_break] = STATE(973), + [sym__inline_base] = STATE(127), + [sym__text_base] = STATE(375), + [sym__inline_element] = STATE(127), + [sym__emphasis_star] = STATE(1392), + [sym__strong_emphasis_star] = STATE(127), + [sym__emphasis_underscore] = STATE(1392), + [sym__strong_emphasis_underscore] = STATE(127), + [aux_sym_insert_repeat1] = STATE(127), + [aux_sym__inline_base_repeat1] = STATE(375), + [sym__backslash_escape] = ACTIONS(2179), + [sym_entity_reference] = ACTIONS(2181), + [sym_numeric_character_reference] = ACTIONS(2181), + [anon_sym_LT] = ACTIONS(2183), + [anon_sym_GT] = ACTIONS(2185), + [anon_sym_BANG] = ACTIONS(2187), + [anon_sym_DQUOTE] = ACTIONS(2185), + [anon_sym_POUND] = ACTIONS(2185), + [anon_sym_DOLLAR] = ACTIONS(2185), + [anon_sym_PERCENT] = ACTIONS(2185), + [anon_sym_AMP] = ACTIONS(2183), + [anon_sym_SQUOTE] = ACTIONS(2185), + [anon_sym_STAR] = ACTIONS(2185), + [anon_sym_PLUS] = ACTIONS(2185), + [anon_sym_COMMA] = ACTIONS(2185), + [anon_sym_DASH] = ACTIONS(2183), + [anon_sym_DOT] = ACTIONS(2183), + [anon_sym_SLASH] = ACTIONS(2185), + [anon_sym_COLON] = ACTIONS(2185), + [anon_sym_SEMI] = ACTIONS(2185), + [anon_sym_EQ] = ACTIONS(2185), + [anon_sym_QMARK] = ACTIONS(2185), + [anon_sym_LBRACK] = ACTIONS(2189), + [anon_sym_BSLASH] = ACTIONS(2191), + [anon_sym_CARET] = ACTIONS(2183), + [anon_sym__] = ACTIONS(2185), + [anon_sym_BQUOTE] = ACTIONS(2185), + [anon_sym_LBRACE] = ACTIONS(2193), + [anon_sym_PIPE] = ACTIONS(2185), + [anon_sym_TILDE] = ACTIONS(2185), + [anon_sym_LPAREN] = ACTIONS(2185), + [anon_sym_RPAREN] = ACTIONS(2185), + [sym__newline_token] = ACTIONS(2195), + [aux_sym_insert_token1] = ACTIONS(2197), + [aux_sym_delete_token1] = ACTIONS(2199), + [aux_sym_highlight_token1] = ACTIONS(2201), + [aux_sym_edit_comment_token1] = ACTIONS(2203), + [anon_sym_CARET_LBRACK] = ACTIONS(2205), + [anon_sym_LBRACK_CARET] = ACTIONS(2207), + [sym_uri_autolink] = ACTIONS(2181), + [sym_email_autolink] = ACTIONS(2181), + [sym__whitespace_ge_2] = ACTIONS(2209), + [aux_sym__whitespace_token1] = ACTIONS(2211), + [sym__word_no_digit] = ACTIONS(2213), + [sym__digits] = ACTIONS(2213), + [anon_sym_DASH_DASH] = ACTIONS(2215), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2213), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2213), + [sym__code_span_start] = ACTIONS(2217), + [sym__emphasis_open_star] = ACTIONS(2219), + [sym__emphasis_open_underscore] = ACTIONS(2221), + [sym__strikeout_open] = ACTIONS(2223), + [sym__latex_span_start] = ACTIONS(2225), + [sym__single_quote_open] = ACTIONS(2227), + [sym__single_quote_close] = ACTIONS(2449), + [sym__double_quote_open] = ACTIONS(2229), + [sym__superscript_open] = ACTIONS(2231), + [sym__subscript_open] = ACTIONS(2233), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2235), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2237), + [sym__cite_author_in_text] = ACTIONS(2239), + [sym__cite_suppress_author] = ACTIONS(2241), + [sym__shortcode_open_escaped] = ACTIONS(2243), + [sym__shortcode_open] = ACTIONS(2245), + [sym__unclosed_span] = ACTIONS(2181), }, [STATE(116)] = { - [sym_backslash_escape] = STATE(277), - [sym_commonmark_attribute] = STATE(277), - [sym_code_span] = STATE(277), - [sym_latex_span] = STATE(277), - [sym_superscript] = STATE(277), - [sym_subscript] = STATE(277), - [sym_strikeout] = STATE(277), - [sym_quoted_span] = STATE(277), - [sym_inline_note] = STATE(277), - [sym_citation] = STATE(277), - [sym_shortcode_escaped] = STATE(277), - [sym_shortcode] = STATE(277), - [sym_note_reference] = STATE(277), - [sym__link_text] = STATE(427), - [sym__link_text_non_empty] = STATE(428), - [sym_inline_link] = STATE(50), - [sym_image] = STATE(277), - [sym__image_inline_link] = STATE(613), - [sym__image_description] = STATE(1930), - [sym__image_description_non_empty] = STATE(1930), - [sym_hard_line_break] = STATE(277), - [sym__whitespace] = STATE(610), - [sym__word] = STATE(610), - [sym__soft_line_break] = STATE(614), - [sym__inline_base] = STATE(50), - [sym__text_base] = STATE(277), - [sym__inline_element] = STATE(50), - [sym__emphasis_star] = STATE(1044), - [sym__strong_emphasis_star] = STATE(50), - [sym__emphasis_underscore] = STATE(1044), - [sym__strong_emphasis_underscore] = STATE(50), - [aux_sym_superscript_repeat1] = STATE(50), - [aux_sym__inline_base_repeat1] = STATE(277), - [sym__backslash_escape] = ACTIONS(687), - [sym_entity_reference] = ACTIONS(689), - [sym_numeric_character_reference] = ACTIONS(689), - [anon_sym_LT] = ACTIONS(691), - [anon_sym_GT] = ACTIONS(693), - [anon_sym_BANG] = ACTIONS(695), - [anon_sym_DQUOTE] = ACTIONS(693), - [anon_sym_POUND] = ACTIONS(693), - [anon_sym_DOLLAR] = ACTIONS(693), - [anon_sym_PERCENT] = ACTIONS(693), - [anon_sym_AMP] = ACTIONS(691), - [anon_sym_SQUOTE] = ACTIONS(693), - [anon_sym_STAR] = ACTIONS(693), - [anon_sym_PLUS] = ACTIONS(693), - [anon_sym_COMMA] = ACTIONS(693), - [anon_sym_DASH] = ACTIONS(691), - [anon_sym_DOT] = ACTIONS(691), - [anon_sym_SLASH] = ACTIONS(693), - [anon_sym_COLON] = ACTIONS(693), - [anon_sym_SEMI] = ACTIONS(693), - [anon_sym_EQ] = ACTIONS(693), - [anon_sym_QMARK] = ACTIONS(693), - [anon_sym_LBRACK] = ACTIONS(697), - [anon_sym_BSLASH] = ACTIONS(699), - [anon_sym_CARET] = ACTIONS(691), - [anon_sym__] = ACTIONS(693), - [anon_sym_BQUOTE] = ACTIONS(693), - [anon_sym_LBRACE] = ACTIONS(701), - [anon_sym_PIPE] = ACTIONS(693), - [anon_sym_TILDE] = ACTIONS(693), - [anon_sym_LPAREN] = ACTIONS(693), - [anon_sym_RPAREN] = ACTIONS(693), - [sym__newline_token] = ACTIONS(703), - [anon_sym_CARET_LBRACK] = ACTIONS(705), - [anon_sym_LBRACK_CARET] = ACTIONS(707), - [sym_uri_autolink] = ACTIONS(689), - [sym_email_autolink] = ACTIONS(689), - [sym__whitespace_ge_2] = ACTIONS(709), - [aux_sym__whitespace_token1] = ACTIONS(711), - [sym__word_no_digit] = ACTIONS(713), - [sym__digits] = ACTIONS(713), - [anon_sym_DASH_DASH] = ACTIONS(715), - [anon_sym_DASH_DASH_DASH] = ACTIONS(713), - [anon_sym_DOT_DOT_DOT] = ACTIONS(713), - [sym__code_span_start] = ACTIONS(717), - [sym__emphasis_open_star] = ACTIONS(719), - [sym__emphasis_open_underscore] = ACTIONS(721), - [sym__strikeout_open] = ACTIONS(723), - [sym__latex_span_start] = ACTIONS(725), - [sym__single_quote_open] = ACTIONS(727), - [sym__double_quote_open] = ACTIONS(729), - [sym__double_quote_close] = ACTIONS(2027), - [sym__superscript_open] = ACTIONS(731), - [sym__subscript_open] = ACTIONS(733), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(735), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(737), - [sym__cite_author_in_text] = ACTIONS(739), - [sym__cite_suppress_author] = ACTIONS(741), - [sym__shortcode_open_escaped] = ACTIONS(743), - [sym__shortcode_open] = ACTIONS(745), - [sym__unclosed_span] = ACTIONS(689), + [sym_backslash_escape] = STATE(383), + [sym_commonmark_attribute] = STATE(383), + [sym_code_span] = STATE(383), + [sym_latex_span] = STATE(383), + [sym_insert] = STATE(383), + [sym_delete] = STATE(383), + [sym_highlight] = STATE(383), + [sym_edit_comment] = STATE(383), + [sym_superscript] = STATE(383), + [sym_subscript] = STATE(383), + [sym_strikeout] = STATE(383), + [sym_quoted_span] = STATE(383), + [sym_inline_note] = STATE(383), + [sym_citation] = STATE(383), + [sym_shortcode_escaped] = STATE(383), + [sym_shortcode] = STATE(383), + [sym_note_reference] = STATE(383), + [sym__link_text] = STATE(395), + [sym__link_text_non_empty] = STATE(396), + [sym_inline_link] = STATE(128), + [sym_image] = STATE(383), + [sym__image_inline_link] = STATE(1263), + [sym__image_description] = STATE(2300), + [sym__image_description_non_empty] = STATE(2300), + [sym_hard_line_break] = STATE(383), + [sym__whitespace] = STATE(1259), + [sym__word] = STATE(1259), + [sym__soft_line_break] = STATE(1264), + [sym__inline_base] = STATE(128), + [sym__text_base] = STATE(383), + [sym__inline_element] = STATE(128), + [sym__emphasis_star] = STATE(1249), + [sym__strong_emphasis_star] = STATE(128), + [sym__emphasis_underscore] = STATE(1249), + [sym__strong_emphasis_underscore] = STATE(128), + [aux_sym_insert_repeat1] = STATE(128), + [aux_sym__inline_base_repeat1] = STATE(383), + [sym__backslash_escape] = ACTIONS(637), + [sym_entity_reference] = ACTIONS(639), + [sym_numeric_character_reference] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_GT] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(645), + [anon_sym_DQUOTE] = ACTIONS(643), + [anon_sym_POUND] = ACTIONS(643), + [anon_sym_DOLLAR] = ACTIONS(643), + [anon_sym_PERCENT] = ACTIONS(643), + [anon_sym_AMP] = ACTIONS(641), + [anon_sym_SQUOTE] = ACTIONS(643), + [anon_sym_STAR] = ACTIONS(643), + [anon_sym_PLUS] = ACTIONS(643), + [anon_sym_COMMA] = ACTIONS(643), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_DOT] = ACTIONS(641), + [anon_sym_SLASH] = ACTIONS(643), + [anon_sym_COLON] = ACTIONS(643), + [anon_sym_SEMI] = ACTIONS(643), + [anon_sym_EQ] = ACTIONS(643), + [anon_sym_QMARK] = ACTIONS(643), + [anon_sym_LBRACK] = ACTIONS(647), + [anon_sym_BSLASH] = ACTIONS(649), + [anon_sym_CARET] = ACTIONS(641), + [anon_sym__] = ACTIONS(643), + [anon_sym_BQUOTE] = ACTIONS(643), + [anon_sym_LBRACE] = ACTIONS(651), + [anon_sym_PIPE] = ACTIONS(643), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_LPAREN] = ACTIONS(643), + [anon_sym_RPAREN] = ACTIONS(643), + [sym__newline_token] = ACTIONS(653), + [aux_sym_insert_token1] = ACTIONS(655), + [aux_sym_delete_token1] = ACTIONS(657), + [aux_sym_highlight_token1] = ACTIONS(659), + [aux_sym_edit_comment_token1] = ACTIONS(661), + [anon_sym_CARET_LBRACK] = ACTIONS(663), + [anon_sym_LBRACK_CARET] = ACTIONS(665), + [sym_uri_autolink] = ACTIONS(639), + [sym_email_autolink] = ACTIONS(639), + [sym__whitespace_ge_2] = ACTIONS(667), + [aux_sym__whitespace_token1] = ACTIONS(669), + [sym__word_no_digit] = ACTIONS(671), + [sym__digits] = ACTIONS(671), + [anon_sym_DASH_DASH] = ACTIONS(673), + [anon_sym_DASH_DASH_DASH] = ACTIONS(671), + [anon_sym_DOT_DOT_DOT] = ACTIONS(671), + [sym__code_span_start] = ACTIONS(675), + [sym__emphasis_open_star] = ACTIONS(677), + [sym__emphasis_open_underscore] = ACTIONS(679), + [sym__strikeout_open] = ACTIONS(681), + [sym__latex_span_start] = ACTIONS(683), + [sym__single_quote_open] = ACTIONS(685), + [sym__double_quote_open] = ACTIONS(687), + [sym__double_quote_close] = ACTIONS(2449), + [sym__superscript_open] = ACTIONS(691), + [sym__subscript_open] = ACTIONS(693), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(695), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(697), + [sym__cite_author_in_text] = ACTIONS(699), + [sym__cite_suppress_author] = ACTIONS(701), + [sym__shortcode_open_escaped] = ACTIONS(703), + [sym__shortcode_open] = ACTIONS(705), + [sym__unclosed_span] = ACTIONS(639), }, [STATE(117)] = { - [sym_backslash_escape] = STATE(262), - [sym_commonmark_attribute] = STATE(262), - [sym_code_span] = STATE(262), - [sym_latex_span] = STATE(262), - [sym_superscript] = STATE(262), - [sym_subscript] = STATE(262), - [sym_strikeout] = STATE(262), - [sym_quoted_span] = STATE(262), - [sym_inline_note] = STATE(262), - [sym_citation] = STATE(262), - [sym_shortcode_escaped] = STATE(262), - [sym_shortcode] = STATE(262), - [sym_note_reference] = STATE(262), - [sym__link_text] = STATE(313), - [sym__link_text_non_empty] = STATE(314), - [sym_inline_link] = STATE(51), - [sym_image] = STATE(262), - [sym__image_inline_link] = STATE(708), - [sym__image_description] = STATE(1970), - [sym__image_description_non_empty] = STATE(1970), - [sym_hard_line_break] = STATE(262), - [sym__whitespace] = STATE(705), - [sym__word] = STATE(705), - [sym__soft_line_break] = STATE(709), - [sym__inline_base] = STATE(51), - [sym__text_base] = STATE(262), - [sym__inline_element] = STATE(51), - [sym__emphasis_star] = STATE(1138), - [sym__strong_emphasis_star] = STATE(51), - [sym__emphasis_underscore] = STATE(1138), - [sym__strong_emphasis_underscore] = STATE(51), - [aux_sym_superscript_repeat1] = STATE(51), - [aux_sym__inline_base_repeat1] = STATE(262), - [sym__backslash_escape] = ACTIONS(747), - [sym_entity_reference] = ACTIONS(749), - [sym_numeric_character_reference] = ACTIONS(749), - [anon_sym_LT] = ACTIONS(751), - [anon_sym_GT] = ACTIONS(753), - [anon_sym_BANG] = ACTIONS(755), - [anon_sym_DQUOTE] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(753), - [anon_sym_DOLLAR] = ACTIONS(753), - [anon_sym_PERCENT] = ACTIONS(753), - [anon_sym_AMP] = ACTIONS(751), - [anon_sym_SQUOTE] = ACTIONS(753), - [anon_sym_STAR] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(753), - [anon_sym_COMMA] = ACTIONS(753), - [anon_sym_DASH] = ACTIONS(751), - [anon_sym_DOT] = ACTIONS(751), - [anon_sym_SLASH] = ACTIONS(753), - [anon_sym_COLON] = ACTIONS(753), - [anon_sym_SEMI] = ACTIONS(753), - [anon_sym_EQ] = ACTIONS(753), - [anon_sym_QMARK] = ACTIONS(753), - [anon_sym_LBRACK] = ACTIONS(757), - [anon_sym_BSLASH] = ACTIONS(759), - [anon_sym_CARET] = ACTIONS(751), - [anon_sym__] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(753), - [anon_sym_LBRACE] = ACTIONS(761), - [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_TILDE] = ACTIONS(753), - [anon_sym_LPAREN] = ACTIONS(753), - [anon_sym_RPAREN] = ACTIONS(753), - [sym__newline_token] = ACTIONS(763), - [anon_sym_CARET_LBRACK] = ACTIONS(765), - [anon_sym_LBRACK_CARET] = ACTIONS(767), - [sym_uri_autolink] = ACTIONS(749), - [sym_email_autolink] = ACTIONS(749), - [sym__whitespace_ge_2] = ACTIONS(769), - [aux_sym__whitespace_token1] = ACTIONS(771), - [sym__word_no_digit] = ACTIONS(773), - [sym__digits] = ACTIONS(773), - [anon_sym_DASH_DASH] = ACTIONS(775), - [anon_sym_DASH_DASH_DASH] = ACTIONS(773), - [anon_sym_DOT_DOT_DOT] = ACTIONS(773), - [sym__code_span_start] = ACTIONS(777), - [sym__emphasis_open_star] = ACTIONS(779), - [sym__emphasis_open_underscore] = ACTIONS(781), - [sym__strikeout_open] = ACTIONS(783), - [sym__latex_span_start] = ACTIONS(785), - [sym__single_quote_open] = ACTIONS(787), - [sym__double_quote_open] = ACTIONS(789), - [sym__superscript_open] = ACTIONS(791), - [sym__superscript_close] = ACTIONS(2029), - [sym__subscript_open] = ACTIONS(795), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(797), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(799), - [sym__cite_author_in_text] = ACTIONS(801), - [sym__cite_suppress_author] = ACTIONS(803), - [sym__shortcode_open_escaped] = ACTIONS(805), - [sym__shortcode_open] = ACTIONS(807), - [sym__unclosed_span] = ACTIONS(749), + [sym_backslash_escape] = STATE(365), + [sym_commonmark_attribute] = STATE(365), + [sym_code_span] = STATE(365), + [sym_latex_span] = STATE(365), + [sym_insert] = STATE(365), + [sym_delete] = STATE(365), + [sym_highlight] = STATE(365), + [sym_edit_comment] = STATE(365), + [sym_superscript] = STATE(365), + [sym_subscript] = STATE(365), + [sym_strikeout] = STATE(365), + [sym_quoted_span] = STATE(365), + [sym_inline_note] = STATE(365), + [sym_citation] = STATE(365), + [sym_shortcode_escaped] = STATE(365), + [sym_shortcode] = STATE(365), + [sym_note_reference] = STATE(365), + [sym__link_text] = STATE(416), + [sym__link_text_non_empty] = STATE(417), + [sym_inline_link] = STATE(129), + [sym_image] = STATE(365), + [sym__image_inline_link] = STATE(712), + [sym__image_description] = STATE(2314), + [sym__image_description_non_empty] = STATE(2314), + [sym_hard_line_break] = STATE(365), + [sym__whitespace] = STATE(709), + [sym__word] = STATE(709), + [sym__soft_line_break] = STATE(713), + [sym__inline_base] = STATE(129), + [sym__text_base] = STATE(365), + [sym__inline_element] = STATE(129), + [sym__emphasis_star] = STATE(979), + [sym__strong_emphasis_star] = STATE(129), + [sym__emphasis_underscore] = STATE(979), + [sym__strong_emphasis_underscore] = STATE(129), + [aux_sym_insert_repeat1] = STATE(129), + [aux_sym__inline_base_repeat1] = STATE(365), + [sym__backslash_escape] = ACTIONS(1341), + [sym_entity_reference] = ACTIONS(1343), + [sym_numeric_character_reference] = ACTIONS(1343), + [anon_sym_LT] = ACTIONS(1345), + [anon_sym_GT] = ACTIONS(1347), + [anon_sym_BANG] = ACTIONS(1349), + [anon_sym_DQUOTE] = ACTIONS(1347), + [anon_sym_POUND] = ACTIONS(1347), + [anon_sym_DOLLAR] = ACTIONS(1347), + [anon_sym_PERCENT] = ACTIONS(1347), + [anon_sym_AMP] = ACTIONS(1345), + [anon_sym_SQUOTE] = ACTIONS(1347), + [anon_sym_STAR] = ACTIONS(1347), + [anon_sym_PLUS] = ACTIONS(1347), + [anon_sym_COMMA] = ACTIONS(1347), + [anon_sym_DASH] = ACTIONS(1345), + [anon_sym_DOT] = ACTIONS(1345), + [anon_sym_SLASH] = ACTIONS(1347), + [anon_sym_COLON] = ACTIONS(1347), + [anon_sym_SEMI] = ACTIONS(1347), + [anon_sym_EQ] = ACTIONS(1347), + [anon_sym_QMARK] = ACTIONS(1347), + [anon_sym_LBRACK] = ACTIONS(1351), + [anon_sym_BSLASH] = ACTIONS(1353), + [anon_sym_CARET] = ACTIONS(1345), + [anon_sym__] = ACTIONS(1347), + [anon_sym_BQUOTE] = ACTIONS(1347), + [anon_sym_LBRACE] = ACTIONS(1355), + [anon_sym_PIPE] = ACTIONS(1347), + [anon_sym_TILDE] = ACTIONS(1347), + [anon_sym_LPAREN] = ACTIONS(1347), + [anon_sym_RPAREN] = ACTIONS(1347), + [sym__newline_token] = ACTIONS(1357), + [aux_sym_insert_token1] = ACTIONS(1359), + [aux_sym_delete_token1] = ACTIONS(1361), + [aux_sym_highlight_token1] = ACTIONS(1363), + [aux_sym_edit_comment_token1] = ACTIONS(1365), + [anon_sym_CARET_LBRACK] = ACTIONS(1367), + [anon_sym_LBRACK_CARET] = ACTIONS(1369), + [sym_uri_autolink] = ACTIONS(1343), + [sym_email_autolink] = ACTIONS(1343), + [sym__whitespace_ge_2] = ACTIONS(1371), + [aux_sym__whitespace_token1] = ACTIONS(1373), + [sym__word_no_digit] = ACTIONS(1375), + [sym__digits] = ACTIONS(1375), + [anon_sym_DASH_DASH] = ACTIONS(1377), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1375), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1375), + [sym__code_span_start] = ACTIONS(1379), + [sym__emphasis_open_star] = ACTIONS(1381), + [sym__emphasis_open_underscore] = ACTIONS(1383), + [sym__strikeout_open] = ACTIONS(1385), + [sym__latex_span_start] = ACTIONS(1387), + [sym__single_quote_open] = ACTIONS(1389), + [sym__double_quote_open] = ACTIONS(1391), + [sym__superscript_open] = ACTIONS(1393), + [sym__superscript_close] = ACTIONS(2451), + [sym__subscript_open] = ACTIONS(1397), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1399), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1401), + [sym__cite_author_in_text] = ACTIONS(1403), + [sym__cite_suppress_author] = ACTIONS(1405), + [sym__shortcode_open_escaped] = ACTIONS(1407), + [sym__shortcode_open] = ACTIONS(1409), + [sym__unclosed_span] = ACTIONS(1343), }, [STATE(118)] = { - [sym_backslash_escape] = STATE(270), - [sym_commonmark_attribute] = STATE(270), - [sym_code_span] = STATE(270), - [sym_latex_span] = STATE(270), - [sym_superscript] = STATE(270), - [sym_subscript] = STATE(270), - [sym_strikeout] = STATE(270), - [sym_quoted_span] = STATE(270), - [sym_inline_note] = STATE(270), - [sym_citation] = STATE(270), - [sym_shortcode_escaped] = STATE(270), - [sym_shortcode] = STATE(270), - [sym_note_reference] = STATE(270), - [sym__link_text] = STATE(359), - [sym__link_text_non_empty] = STATE(364), - [sym_inline_link] = STATE(52), - [sym_image] = STATE(270), - [sym__image_inline_link] = STATE(795), - [sym__image_description] = STATE(1984), - [sym__image_description_non_empty] = STATE(1984), - [sym_hard_line_break] = STATE(270), - [sym__whitespace] = STATE(792), - [sym__word] = STATE(792), - [sym__soft_line_break] = STATE(796), - [sym__inline_base] = STATE(52), - [sym__text_base] = STATE(270), - [sym__inline_element] = STATE(52), - [sym__emphasis_star] = STATE(615), - [sym__strong_emphasis_star] = STATE(52), - [sym__emphasis_underscore] = STATE(615), - [sym__strong_emphasis_underscore] = STATE(52), - [aux_sym_superscript_repeat1] = STATE(52), - [aux_sym__inline_base_repeat1] = STATE(270), - [sym__backslash_escape] = ACTIONS(809), - [sym_entity_reference] = ACTIONS(811), - [sym_numeric_character_reference] = ACTIONS(811), - [anon_sym_LT] = ACTIONS(813), - [anon_sym_GT] = ACTIONS(815), - [anon_sym_BANG] = ACTIONS(817), - [anon_sym_DQUOTE] = ACTIONS(815), - [anon_sym_POUND] = ACTIONS(815), - [anon_sym_DOLLAR] = ACTIONS(815), - [anon_sym_PERCENT] = ACTIONS(815), - [anon_sym_AMP] = ACTIONS(813), - [anon_sym_SQUOTE] = ACTIONS(815), - [anon_sym_STAR] = ACTIONS(815), - [anon_sym_PLUS] = ACTIONS(815), - [anon_sym_COMMA] = ACTIONS(815), - [anon_sym_DASH] = ACTIONS(813), - [anon_sym_DOT] = ACTIONS(813), - [anon_sym_SLASH] = ACTIONS(815), - [anon_sym_COLON] = ACTIONS(815), - [anon_sym_SEMI] = ACTIONS(815), - [anon_sym_EQ] = ACTIONS(815), - [anon_sym_QMARK] = ACTIONS(815), - [anon_sym_LBRACK] = ACTIONS(819), - [anon_sym_BSLASH] = ACTIONS(821), - [anon_sym_CARET] = ACTIONS(813), - [anon_sym__] = ACTIONS(815), - [anon_sym_BQUOTE] = ACTIONS(815), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_PIPE] = ACTIONS(815), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_RPAREN] = ACTIONS(815), - [sym__newline_token] = ACTIONS(825), - [anon_sym_CARET_LBRACK] = ACTIONS(827), - [anon_sym_LBRACK_CARET] = ACTIONS(829), - [sym_uri_autolink] = ACTIONS(811), - [sym_email_autolink] = ACTIONS(811), - [sym__whitespace_ge_2] = ACTIONS(831), - [aux_sym__whitespace_token1] = ACTIONS(833), - [sym__word_no_digit] = ACTIONS(835), - [sym__digits] = ACTIONS(835), - [anon_sym_DASH_DASH] = ACTIONS(837), - [anon_sym_DASH_DASH_DASH] = ACTIONS(835), - [anon_sym_DOT_DOT_DOT] = ACTIONS(835), - [sym__code_span_start] = ACTIONS(839), - [sym__emphasis_open_star] = ACTIONS(841), - [sym__emphasis_open_underscore] = ACTIONS(843), - [sym__strikeout_open] = ACTIONS(845), - [sym__latex_span_start] = ACTIONS(847), - [sym__single_quote_open] = ACTIONS(849), - [sym__double_quote_open] = ACTIONS(851), - [sym__superscript_open] = ACTIONS(853), - [sym__subscript_open] = ACTIONS(855), - [sym__subscript_close] = ACTIONS(2031), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(859), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(861), - [sym__cite_author_in_text] = ACTIONS(863), - [sym__cite_suppress_author] = ACTIONS(865), - [sym__shortcode_open_escaped] = ACTIONS(867), - [sym__shortcode_open] = ACTIONS(869), - [sym__unclosed_span] = ACTIONS(811), + [sym_backslash_escape] = STATE(367), + [sym_commonmark_attribute] = STATE(367), + [sym_code_span] = STATE(367), + [sym_latex_span] = STATE(367), + [sym_insert] = STATE(367), + [sym_delete] = STATE(367), + [sym_highlight] = STATE(367), + [sym_edit_comment] = STATE(367), + [sym_superscript] = STATE(367), + [sym_subscript] = STATE(367), + [sym_strikeout] = STATE(367), + [sym_quoted_span] = STATE(367), + [sym_inline_note] = STATE(367), + [sym_citation] = STATE(367), + [sym_shortcode_escaped] = STATE(367), + [sym_shortcode] = STATE(367), + [sym_note_reference] = STATE(367), + [sym__link_text] = STATE(435), + [sym__link_text_non_empty] = STATE(436), + [sym_inline_link] = STATE(130), + [sym_image] = STATE(367), + [sym__image_inline_link] = STATE(819), + [sym__image_description] = STATE(2328), + [sym__image_description_non_empty] = STATE(2328), + [sym_hard_line_break] = STATE(367), + [sym__whitespace] = STATE(816), + [sym__word] = STATE(816), + [sym__soft_line_break] = STATE(820), + [sym__inline_base] = STATE(130), + [sym__text_base] = STATE(367), + [sym__inline_element] = STATE(130), + [sym__emphasis_star] = STATE(1271), + [sym__strong_emphasis_star] = STATE(130), + [sym__emphasis_underscore] = STATE(1271), + [sym__strong_emphasis_underscore] = STATE(130), + [aux_sym_insert_repeat1] = STATE(130), + [aux_sym__inline_base_repeat1] = STATE(367), + [sym__backslash_escape] = ACTIONS(1413), + [sym_entity_reference] = ACTIONS(1415), + [sym_numeric_character_reference] = ACTIONS(1415), + [anon_sym_LT] = ACTIONS(1417), + [anon_sym_GT] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1419), + [anon_sym_POUND] = ACTIONS(1419), + [anon_sym_DOLLAR] = ACTIONS(1419), + [anon_sym_PERCENT] = ACTIONS(1419), + [anon_sym_AMP] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [anon_sym_STAR] = ACTIONS(1419), + [anon_sym_PLUS] = ACTIONS(1419), + [anon_sym_COMMA] = ACTIONS(1419), + [anon_sym_DASH] = ACTIONS(1417), + [anon_sym_DOT] = ACTIONS(1417), + [anon_sym_SLASH] = ACTIONS(1419), + [anon_sym_COLON] = ACTIONS(1419), + [anon_sym_SEMI] = ACTIONS(1419), + [anon_sym_EQ] = ACTIONS(1419), + [anon_sym_QMARK] = ACTIONS(1419), + [anon_sym_LBRACK] = ACTIONS(1423), + [anon_sym_BSLASH] = ACTIONS(1425), + [anon_sym_CARET] = ACTIONS(1417), + [anon_sym__] = ACTIONS(1419), + [anon_sym_BQUOTE] = ACTIONS(1419), + [anon_sym_LBRACE] = ACTIONS(1427), + [anon_sym_PIPE] = ACTIONS(1419), + [anon_sym_TILDE] = ACTIONS(1419), + [anon_sym_LPAREN] = ACTIONS(1419), + [anon_sym_RPAREN] = ACTIONS(1419), + [sym__newline_token] = ACTIONS(1429), + [aux_sym_insert_token1] = ACTIONS(1431), + [aux_sym_delete_token1] = ACTIONS(1433), + [aux_sym_highlight_token1] = ACTIONS(1435), + [aux_sym_edit_comment_token1] = ACTIONS(1437), + [anon_sym_CARET_LBRACK] = ACTIONS(1439), + [anon_sym_LBRACK_CARET] = ACTIONS(1441), + [sym_uri_autolink] = ACTIONS(1415), + [sym_email_autolink] = ACTIONS(1415), + [sym__whitespace_ge_2] = ACTIONS(1443), + [aux_sym__whitespace_token1] = ACTIONS(1445), + [sym__word_no_digit] = ACTIONS(1447), + [sym__digits] = ACTIONS(1447), + [anon_sym_DASH_DASH] = ACTIONS(1449), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1447), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1447), + [sym__code_span_start] = ACTIONS(1451), + [sym__emphasis_open_star] = ACTIONS(1453), + [sym__emphasis_open_underscore] = ACTIONS(1455), + [sym__strikeout_open] = ACTIONS(1457), + [sym__latex_span_start] = ACTIONS(1459), + [sym__single_quote_open] = ACTIONS(1461), + [sym__double_quote_open] = ACTIONS(1463), + [sym__superscript_open] = ACTIONS(1465), + [sym__subscript_open] = ACTIONS(1467), + [sym__subscript_close] = ACTIONS(2453), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1471), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1473), + [sym__cite_author_in_text] = ACTIONS(1475), + [sym__cite_suppress_author] = ACTIONS(1477), + [sym__shortcode_open_escaped] = ACTIONS(1479), + [sym__shortcode_open] = ACTIONS(1481), + [sym__unclosed_span] = ACTIONS(1415), }, [STATE(119)] = { - [sym_backslash_escape] = STATE(271), - [sym_commonmark_attribute] = STATE(271), - [sym_code_span] = STATE(271), - [sym_latex_span] = STATE(271), - [sym_superscript] = STATE(271), - [sym_subscript] = STATE(271), - [sym_strikeout] = STATE(271), - [sym_quoted_span] = STATE(271), - [sym_inline_note] = STATE(271), - [sym_citation] = STATE(271), - [sym_shortcode_escaped] = STATE(271), - [sym_shortcode] = STATE(271), - [sym_note_reference] = STATE(271), - [sym__link_text] = STATE(424), - [sym__link_text_non_empty] = STATE(425), - [sym_inline_link] = STATE(123), - [sym_image] = STATE(271), - [sym__image_inline_link] = STATE(883), - [sym__image_description] = STATE(1998), - [sym__image_description_non_empty] = STATE(1998), - [sym_hard_line_break] = STATE(271), - [sym__whitespace] = STATE(881), - [sym__word] = STATE(881), - [sym__soft_line_break] = STATE(884), - [sym__inline_base] = STATE(123), - [sym__text_base] = STATE(271), - [sym__inline_element] = STATE(123), - [sym__emphasis_star] = STATE(710), - [sym__strong_emphasis_star] = STATE(123), - [sym__emphasis_underscore] = STATE(710), - [sym__strong_emphasis_underscore] = STATE(123), - [aux_sym_superscript_repeat1] = STATE(123), - [aux_sym__inline_base_repeat1] = STATE(271), - [sym__backslash_escape] = ACTIONS(159), - [sym_entity_reference] = ACTIONS(161), - [sym_numeric_character_reference] = ACTIONS(161), - [anon_sym_LT] = ACTIONS(163), - [anon_sym_GT] = ACTIONS(165), - [anon_sym_BANG] = ACTIONS(167), - [anon_sym_DQUOTE] = ACTIONS(165), - [anon_sym_POUND] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(165), - [anon_sym_PERCENT] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_SQUOTE] = ACTIONS(165), - [anon_sym_STAR] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(165), - [anon_sym_COMMA] = ACTIONS(165), - [anon_sym_DASH] = ACTIONS(163), - [anon_sym_DOT] = ACTIONS(163), - [anon_sym_SLASH] = ACTIONS(165), - [anon_sym_COLON] = ACTIONS(165), - [anon_sym_SEMI] = ACTIONS(165), - [anon_sym_EQ] = ACTIONS(165), - [anon_sym_QMARK] = ACTIONS(165), - [anon_sym_LBRACK] = ACTIONS(169), - [anon_sym_BSLASH] = ACTIONS(171), - [anon_sym_RBRACK] = ACTIONS(2033), - [anon_sym_CARET] = ACTIONS(163), - [anon_sym__] = ACTIONS(165), - [anon_sym_BQUOTE] = ACTIONS(165), - [anon_sym_LBRACE] = ACTIONS(175), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(165), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_RPAREN] = ACTIONS(165), - [sym__newline_token] = ACTIONS(177), - [anon_sym_CARET_LBRACK] = ACTIONS(179), - [anon_sym_LBRACK_CARET] = ACTIONS(181), - [sym_uri_autolink] = ACTIONS(161), - [sym_email_autolink] = ACTIONS(161), - [sym__whitespace_ge_2] = ACTIONS(183), - [aux_sym__whitespace_token1] = ACTIONS(185), - [sym__word_no_digit] = ACTIONS(187), - [sym__digits] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_DASH_DASH_DASH] = ACTIONS(187), - [anon_sym_DOT_DOT_DOT] = ACTIONS(187), - [sym__code_span_start] = ACTIONS(191), - [sym__emphasis_open_star] = ACTIONS(193), - [sym__emphasis_open_underscore] = ACTIONS(195), - [sym__strikeout_open] = ACTIONS(199), - [sym__latex_span_start] = ACTIONS(201), - [sym__single_quote_open] = ACTIONS(203), - [sym__double_quote_open] = ACTIONS(205), - [sym__superscript_open] = ACTIONS(207), - [sym__subscript_open] = ACTIONS(209), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(211), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(213), - [sym__cite_author_in_text] = ACTIONS(215), - [sym__cite_suppress_author] = ACTIONS(217), - [sym__shortcode_open_escaped] = ACTIONS(219), - [sym__shortcode_open] = ACTIONS(221), - [sym__unclosed_span] = ACTIONS(161), - }, - [STATE(120)] = { - [sym_backslash_escape] = STATE(274), - [sym_commonmark_attribute] = STATE(274), - [sym_code_span] = STATE(274), - [sym_latex_span] = STATE(274), - [sym_superscript] = STATE(274), - [sym_subscript] = STATE(274), - [sym_strikeout] = STATE(274), - [sym_quoted_span] = STATE(274), - [sym_inline_note] = STATE(274), - [sym_citation] = STATE(274), - [sym_shortcode_escaped] = STATE(274), - [sym_shortcode] = STATE(274), - [sym_note_reference] = STATE(274), - [sym__link_text] = STATE(351), - [sym__link_text_non_empty] = STATE(352), - [sym_inline_link] = STATE(41), - [sym_image] = STATE(274), - [sym__image_inline_link] = STATE(894), - [sym__image_description] = STATE(2008), - [sym__image_description_non_empty] = STATE(2008), - [sym_hard_line_break] = STATE(274), - [sym__whitespace] = STATE(882), - [sym__word] = STATE(882), - [sym__soft_line_break] = STATE(898), - [sym__inline_base] = STATE(41), - [sym__text_base] = STATE(274), - [sym__inline_element_no_underscore] = STATE(41), - [aux_sym__inline_no_underscore] = STATE(41), - [sym__emphasis_star] = STATE(711), - [sym__strong_emphasis_star] = STATE(41), - [sym__emphasis_underscore] = STATE(711), - [sym__strong_emphasis_underscore] = STATE(41), - [aux_sym__inline_base_repeat1] = STATE(274), - [sym__backslash_escape] = ACTIONS(1123), - [sym_entity_reference] = ACTIONS(1125), - [sym_numeric_character_reference] = ACTIONS(1125), - [anon_sym_LT] = ACTIONS(1127), - [anon_sym_GT] = ACTIONS(1129), - [anon_sym_BANG] = ACTIONS(1131), - [anon_sym_DQUOTE] = ACTIONS(1129), - [anon_sym_POUND] = ACTIONS(1129), - [anon_sym_DOLLAR] = ACTIONS(1129), - [anon_sym_PERCENT] = ACTIONS(1129), - [anon_sym_AMP] = ACTIONS(1127), - [anon_sym_SQUOTE] = ACTIONS(1129), - [anon_sym_STAR] = ACTIONS(1129), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_COMMA] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1127), - [anon_sym_DOT] = ACTIONS(1127), - [anon_sym_SLASH] = ACTIONS(1129), - [anon_sym_COLON] = ACTIONS(1129), - [anon_sym_SEMI] = ACTIONS(1129), - [anon_sym_EQ] = ACTIONS(1129), - [anon_sym_QMARK] = ACTIONS(1129), - [anon_sym_LBRACK] = ACTIONS(1133), - [anon_sym_BSLASH] = ACTIONS(1135), - [anon_sym_CARET] = ACTIONS(1127), - [anon_sym__] = ACTIONS(1129), - [anon_sym_BQUOTE] = ACTIONS(1129), - [anon_sym_LBRACE] = ACTIONS(1137), - [anon_sym_PIPE] = ACTIONS(1129), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1129), - [anon_sym_RPAREN] = ACTIONS(1129), - [sym__newline_token] = ACTIONS(1139), - [anon_sym_CARET_LBRACK] = ACTIONS(1141), - [anon_sym_LBRACK_CARET] = ACTIONS(1143), - [sym_uri_autolink] = ACTIONS(1125), - [sym_email_autolink] = ACTIONS(1125), - [sym__whitespace_ge_2] = ACTIONS(1145), - [aux_sym__whitespace_token1] = ACTIONS(1147), - [sym__word_no_digit] = ACTIONS(1149), - [sym__digits] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1151), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1149), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1149), - [sym__code_span_start] = ACTIONS(1153), - [sym__emphasis_open_star] = ACTIONS(1155), - [sym__emphasis_open_underscore] = ACTIONS(1157), - [sym__emphasis_close_underscore] = ACTIONS(2035), - [sym__strikeout_open] = ACTIONS(1161), - [sym__latex_span_start] = ACTIONS(1163), - [sym__single_quote_open] = ACTIONS(1165), - [sym__double_quote_open] = ACTIONS(1167), - [sym__superscript_open] = ACTIONS(1169), - [sym__subscript_open] = ACTIONS(1171), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1173), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1175), - [sym__cite_author_in_text] = ACTIONS(1177), - [sym__cite_suppress_author] = ACTIONS(1179), - [sym__shortcode_open_escaped] = ACTIONS(1181), - [sym__shortcode_open] = ACTIONS(1183), - [sym__unclosed_span] = ACTIONS(1125), - }, - [STATE(121)] = { - [sym_backslash_escape] = STATE(261), - [sym_commonmark_attribute] = STATE(261), - [sym_code_span] = STATE(261), - [sym_latex_span] = STATE(261), - [sym_superscript] = STATE(261), - [sym_subscript] = STATE(261), - [sym_strikeout] = STATE(261), - [sym_quoted_span] = STATE(261), - [sym_inline_note] = STATE(261), - [sym_citation] = STATE(261), - [sym_shortcode_escaped] = STATE(261), - [sym_shortcode] = STATE(261), - [sym_note_reference] = STATE(261), - [sym__link_text] = STATE(322), - [sym__link_text_non_empty] = STATE(323), - [sym_inline_link] = STATE(39), - [sym_image] = STATE(261), - [sym__image_inline_link] = STATE(595), - [sym__image_description] = STATE(1972), - [sym__image_description_non_empty] = STATE(1972), - [sym_hard_line_break] = STATE(261), - [sym__whitespace] = STATE(587), - [sym__word] = STATE(587), - [sym__soft_line_break] = STATE(597), - [sym__inline_base] = STATE(39), - [sym__text_base] = STATE(261), - [sym__inline_element_no_star] = STATE(39), - [aux_sym__inline_no_star] = STATE(39), - [sym__emphasis_star] = STATE(544), - [sym__strong_emphasis_star] = STATE(39), - [sym__emphasis_underscore] = STATE(544), - [sym__strong_emphasis_underscore] = STATE(39), - [aux_sym__inline_base_repeat1] = STATE(261), - [sym__backslash_escape] = ACTIONS(969), - [sym_entity_reference] = ACTIONS(971), - [sym_numeric_character_reference] = ACTIONS(971), - [anon_sym_LT] = ACTIONS(973), - [anon_sym_GT] = ACTIONS(975), - [anon_sym_BANG] = ACTIONS(977), - [anon_sym_DQUOTE] = ACTIONS(975), - [anon_sym_POUND] = ACTIONS(975), - [anon_sym_DOLLAR] = ACTIONS(975), - [anon_sym_PERCENT] = ACTIONS(975), - [anon_sym_AMP] = ACTIONS(973), - [anon_sym_SQUOTE] = ACTIONS(975), - [anon_sym_STAR] = ACTIONS(975), - [anon_sym_PLUS] = ACTIONS(975), - [anon_sym_COMMA] = ACTIONS(975), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_DOT] = ACTIONS(973), - [anon_sym_SLASH] = ACTIONS(975), - [anon_sym_COLON] = ACTIONS(975), - [anon_sym_SEMI] = ACTIONS(975), - [anon_sym_EQ] = ACTIONS(975), - [anon_sym_QMARK] = ACTIONS(975), - [anon_sym_LBRACK] = ACTIONS(979), - [anon_sym_BSLASH] = ACTIONS(981), - [anon_sym_CARET] = ACTIONS(973), - [anon_sym__] = ACTIONS(975), - [anon_sym_BQUOTE] = ACTIONS(975), - [anon_sym_LBRACE] = ACTIONS(983), - [anon_sym_PIPE] = ACTIONS(975), - [anon_sym_TILDE] = ACTIONS(975), - [anon_sym_LPAREN] = ACTIONS(975), - [anon_sym_RPAREN] = ACTIONS(975), - [sym__newline_token] = ACTIONS(985), - [anon_sym_CARET_LBRACK] = ACTIONS(987), - [anon_sym_LBRACK_CARET] = ACTIONS(989), - [sym_uri_autolink] = ACTIONS(971), - [sym_email_autolink] = ACTIONS(971), - [sym__whitespace_ge_2] = ACTIONS(991), - [aux_sym__whitespace_token1] = ACTIONS(993), - [sym__word_no_digit] = ACTIONS(995), - [sym__digits] = ACTIONS(995), - [anon_sym_DASH_DASH] = ACTIONS(997), - [anon_sym_DASH_DASH_DASH] = ACTIONS(995), - [anon_sym_DOT_DOT_DOT] = ACTIONS(995), - [sym__code_span_start] = ACTIONS(999), - [sym__emphasis_open_star] = ACTIONS(1001), - [sym__emphasis_open_underscore] = ACTIONS(1003), - [sym__emphasis_close_star] = ACTIONS(2037), - [sym__strikeout_open] = ACTIONS(1007), - [sym__latex_span_start] = ACTIONS(1009), - [sym__single_quote_open] = ACTIONS(1011), - [sym__double_quote_open] = ACTIONS(1013), - [sym__superscript_open] = ACTIONS(1015), - [sym__subscript_open] = ACTIONS(1017), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1019), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1021), - [sym__cite_author_in_text] = ACTIONS(1023), - [sym__cite_suppress_author] = ACTIONS(1025), - [sym__shortcode_open_escaped] = ACTIONS(1027), - [sym__shortcode_open] = ACTIONS(1029), - [sym__unclosed_span] = ACTIONS(971), - }, - [STATE(122)] = { - [sym_backslash_escape] = STATE(274), - [sym_commonmark_attribute] = STATE(274), - [sym_code_span] = STATE(274), - [sym_latex_span] = STATE(274), - [sym_superscript] = STATE(274), - [sym_subscript] = STATE(274), - [sym_strikeout] = STATE(274), - [sym_quoted_span] = STATE(274), - [sym_inline_note] = STATE(274), - [sym_citation] = STATE(274), - [sym_shortcode_escaped] = STATE(274), - [sym_shortcode] = STATE(274), - [sym_note_reference] = STATE(274), - [sym__link_text] = STATE(351), - [sym__link_text_non_empty] = STATE(352), - [sym_inline_link] = STATE(41), - [sym_image] = STATE(274), - [sym__image_inline_link] = STATE(894), - [sym__image_description] = STATE(2008), - [sym__image_description_non_empty] = STATE(2008), - [sym_hard_line_break] = STATE(274), - [sym__whitespace] = STATE(882), - [sym__word] = STATE(882), - [sym__soft_line_break] = STATE(898), - [sym__inline_base] = STATE(41), - [sym__text_base] = STATE(274), - [sym__inline_element_no_underscore] = STATE(41), - [aux_sym__inline_no_underscore] = STATE(41), - [sym__emphasis_star] = STATE(711), - [sym__strong_emphasis_star] = STATE(41), - [sym__emphasis_underscore] = STATE(711), - [sym__strong_emphasis_underscore] = STATE(41), - [aux_sym__inline_base_repeat1] = STATE(274), - [sym__backslash_escape] = ACTIONS(1123), - [sym_entity_reference] = ACTIONS(1125), - [sym_numeric_character_reference] = ACTIONS(1125), - [anon_sym_LT] = ACTIONS(1127), - [anon_sym_GT] = ACTIONS(1129), - [anon_sym_BANG] = ACTIONS(1131), - [anon_sym_DQUOTE] = ACTIONS(1129), - [anon_sym_POUND] = ACTIONS(1129), - [anon_sym_DOLLAR] = ACTIONS(1129), - [anon_sym_PERCENT] = ACTIONS(1129), - [anon_sym_AMP] = ACTIONS(1127), - [anon_sym_SQUOTE] = ACTIONS(1129), - [anon_sym_STAR] = ACTIONS(1129), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_COMMA] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1127), - [anon_sym_DOT] = ACTIONS(1127), - [anon_sym_SLASH] = ACTIONS(1129), - [anon_sym_COLON] = ACTIONS(1129), - [anon_sym_SEMI] = ACTIONS(1129), - [anon_sym_EQ] = ACTIONS(1129), - [anon_sym_QMARK] = ACTIONS(1129), - [anon_sym_LBRACK] = ACTIONS(1133), - [anon_sym_BSLASH] = ACTIONS(1135), - [anon_sym_CARET] = ACTIONS(1127), - [anon_sym__] = ACTIONS(1129), - [anon_sym_BQUOTE] = ACTIONS(1129), - [anon_sym_LBRACE] = ACTIONS(1137), - [anon_sym_PIPE] = ACTIONS(1129), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1129), - [anon_sym_RPAREN] = ACTIONS(1129), - [sym__newline_token] = ACTIONS(1139), - [anon_sym_CARET_LBRACK] = ACTIONS(1141), - [anon_sym_LBRACK_CARET] = ACTIONS(1143), - [sym_uri_autolink] = ACTIONS(1125), - [sym_email_autolink] = ACTIONS(1125), - [sym__whitespace_ge_2] = ACTIONS(1145), - [aux_sym__whitespace_token1] = ACTIONS(1147), - [sym__word_no_digit] = ACTIONS(1149), - [sym__digits] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1151), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1149), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1149), - [sym__code_span_start] = ACTIONS(1153), - [sym__emphasis_open_star] = ACTIONS(1155), - [sym__emphasis_open_underscore] = ACTIONS(1157), - [sym__emphasis_close_underscore] = ACTIONS(2039), - [sym__strikeout_open] = ACTIONS(1161), - [sym__latex_span_start] = ACTIONS(1163), - [sym__single_quote_open] = ACTIONS(1165), - [sym__double_quote_open] = ACTIONS(1167), - [sym__superscript_open] = ACTIONS(1169), - [sym__subscript_open] = ACTIONS(1171), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1173), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1175), - [sym__cite_author_in_text] = ACTIONS(1177), - [sym__cite_suppress_author] = ACTIONS(1179), - [sym__shortcode_open_escaped] = ACTIONS(1181), - [sym__shortcode_open] = ACTIONS(1183), - [sym__unclosed_span] = ACTIONS(1125), - }, - [STATE(123)] = { - [sym_backslash_escape] = STATE(271), - [sym_commonmark_attribute] = STATE(271), - [sym_code_span] = STATE(271), - [sym_latex_span] = STATE(271), - [sym_superscript] = STATE(271), - [sym_subscript] = STATE(271), - [sym_strikeout] = STATE(271), - [sym_quoted_span] = STATE(271), - [sym_inline_note] = STATE(271), - [sym_citation] = STATE(271), - [sym_shortcode_escaped] = STATE(271), - [sym_shortcode] = STATE(271), - [sym_note_reference] = STATE(271), - [sym__link_text] = STATE(424), - [sym__link_text_non_empty] = STATE(425), - [sym_inline_link] = STATE(53), - [sym_image] = STATE(271), - [sym__image_inline_link] = STATE(883), - [sym__image_description] = STATE(1998), - [sym__image_description_non_empty] = STATE(1998), - [sym_hard_line_break] = STATE(271), - [sym__whitespace] = STATE(881), - [sym__word] = STATE(881), - [sym__soft_line_break] = STATE(884), - [sym__inline_base] = STATE(53), - [sym__text_base] = STATE(271), - [sym__inline_element] = STATE(53), - [sym__emphasis_star] = STATE(710), - [sym__strong_emphasis_star] = STATE(53), - [sym__emphasis_underscore] = STATE(710), - [sym__strong_emphasis_underscore] = STATE(53), - [aux_sym_superscript_repeat1] = STATE(53), - [aux_sym__inline_base_repeat1] = STATE(271), - [sym__backslash_escape] = ACTIONS(159), - [sym_entity_reference] = ACTIONS(161), - [sym_numeric_character_reference] = ACTIONS(161), - [anon_sym_LT] = ACTIONS(163), - [anon_sym_GT] = ACTIONS(165), - [anon_sym_BANG] = ACTIONS(167), - [anon_sym_DQUOTE] = ACTIONS(165), - [anon_sym_POUND] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(165), - [anon_sym_PERCENT] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_SQUOTE] = ACTIONS(165), - [anon_sym_STAR] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(165), - [anon_sym_COMMA] = ACTIONS(165), - [anon_sym_DASH] = ACTIONS(163), - [anon_sym_DOT] = ACTIONS(163), - [anon_sym_SLASH] = ACTIONS(165), - [anon_sym_COLON] = ACTIONS(165), - [anon_sym_SEMI] = ACTIONS(165), - [anon_sym_EQ] = ACTIONS(165), - [anon_sym_QMARK] = ACTIONS(165), - [anon_sym_LBRACK] = ACTIONS(169), - [anon_sym_BSLASH] = ACTIONS(171), - [anon_sym_RBRACK] = ACTIONS(2041), - [anon_sym_CARET] = ACTIONS(163), - [anon_sym__] = ACTIONS(165), - [anon_sym_BQUOTE] = ACTIONS(165), - [anon_sym_LBRACE] = ACTIONS(175), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(165), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_RPAREN] = ACTIONS(165), - [sym__newline_token] = ACTIONS(177), - [anon_sym_CARET_LBRACK] = ACTIONS(179), - [anon_sym_LBRACK_CARET] = ACTIONS(181), - [sym_uri_autolink] = ACTIONS(161), - [sym_email_autolink] = ACTIONS(161), - [sym__whitespace_ge_2] = ACTIONS(183), - [aux_sym__whitespace_token1] = ACTIONS(185), - [sym__word_no_digit] = ACTIONS(187), - [sym__digits] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_DASH_DASH_DASH] = ACTIONS(187), - [anon_sym_DOT_DOT_DOT] = ACTIONS(187), - [sym__code_span_start] = ACTIONS(191), - [sym__emphasis_open_star] = ACTIONS(193), - [sym__emphasis_open_underscore] = ACTIONS(195), - [sym__strikeout_open] = ACTIONS(199), - [sym__latex_span_start] = ACTIONS(201), - [sym__single_quote_open] = ACTIONS(203), - [sym__double_quote_open] = ACTIONS(205), - [sym__superscript_open] = ACTIONS(207), - [sym__subscript_open] = ACTIONS(209), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(211), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(213), - [sym__cite_author_in_text] = ACTIONS(215), - [sym__cite_suppress_author] = ACTIONS(217), - [sym__shortcode_open_escaped] = ACTIONS(219), - [sym__shortcode_open] = ACTIONS(221), - [sym__unclosed_span] = ACTIONS(161), - }, - [STATE(124)] = { - [sym_backslash_escape] = STATE(266), - [sym_commonmark_attribute] = STATE(266), - [sym_code_span] = STATE(266), - [sym_latex_span] = STATE(266), - [sym_superscript] = STATE(266), - [sym_subscript] = STATE(266), - [sym_strikeout] = STATE(266), - [sym_quoted_span] = STATE(266), - [sym_inline_note] = STATE(266), - [sym_citation] = STATE(266), - [sym_shortcode_escaped] = STATE(266), - [sym_shortcode] = STATE(266), - [sym_note_reference] = STATE(266), - [sym__link_text] = STATE(375), - [sym__link_text_non_empty] = STATE(376), + [sym_backslash_escape] = STATE(372), + [sym_commonmark_attribute] = STATE(372), + [sym_code_span] = STATE(372), + [sym_latex_span] = STATE(372), + [sym_insert] = STATE(372), + [sym_delete] = STATE(372), + [sym_highlight] = STATE(372), + [sym_edit_comment] = STATE(372), + [sym_superscript] = STATE(372), + [sym_subscript] = STATE(372), + [sym_strikeout] = STATE(372), + [sym_quoted_span] = STATE(372), + [sym_inline_note] = STATE(372), + [sym_citation] = STATE(372), + [sym_shortcode_escaped] = STATE(372), + [sym_shortcode] = STATE(372), + [sym_note_reference] = STATE(372), + [sym__link_text] = STATE(454), + [sym__link_text_non_empty] = STATE(455), [sym_inline_link] = STATE(131), - [sym_image] = STATE(266), - [sym__image_inline_link] = STATE(1042), - [sym__image_description] = STATE(2044), - [sym__image_description_non_empty] = STATE(2044), - [sym_hard_line_break] = STATE(266), - [sym__whitespace] = STATE(1040), - [sym__word] = STATE(1040), - [sym__soft_line_break] = STATE(1043), + [sym_image] = STATE(372), + [sym__image_inline_link] = STATE(1025), + [sym__image_description] = STATE(2356), + [sym__image_description_non_empty] = STATE(2356), + [sym_hard_line_break] = STATE(372), + [sym__whitespace] = STATE(1022), + [sym__word] = STATE(1022), + [sym__soft_line_break] = STATE(1026), [sym__inline_base] = STATE(131), - [sym__text_base] = STATE(266), + [sym__text_base] = STATE(372), [sym__inline_element] = STATE(131), - [sym__emphasis_star] = STATE(602), + [sym__emphasis_star] = STATE(714), [sym__strong_emphasis_star] = STATE(131), - [sym__emphasis_underscore] = STATE(602), + [sym__emphasis_underscore] = STATE(714), [sym__strong_emphasis_underscore] = STATE(131), - [aux_sym_superscript_repeat1] = STATE(131), - [aux_sym__inline_base_repeat1] = STATE(266), - [sym__backslash_escape] = ACTIONS(559), - [sym_entity_reference] = ACTIONS(561), - [sym_numeric_character_reference] = ACTIONS(561), - [anon_sym_LT] = ACTIONS(563), - [anon_sym_GT] = ACTIONS(565), - [anon_sym_BANG] = ACTIONS(567), - [anon_sym_DQUOTE] = ACTIONS(565), - [anon_sym_POUND] = ACTIONS(565), - [anon_sym_DOLLAR] = ACTIONS(565), - [anon_sym_PERCENT] = ACTIONS(565), - [anon_sym_AMP] = ACTIONS(563), - [anon_sym_SQUOTE] = ACTIONS(565), - [anon_sym_STAR] = ACTIONS(565), - [anon_sym_PLUS] = ACTIONS(565), - [anon_sym_COMMA] = ACTIONS(565), - [anon_sym_DASH] = ACTIONS(563), - [anon_sym_DOT] = ACTIONS(563), - [anon_sym_SLASH] = ACTIONS(565), - [anon_sym_COLON] = ACTIONS(565), - [anon_sym_SEMI] = ACTIONS(565), - [anon_sym_EQ] = ACTIONS(565), - [anon_sym_QMARK] = ACTIONS(565), - [anon_sym_LBRACK] = ACTIONS(569), - [anon_sym_BSLASH] = ACTIONS(571), - [anon_sym_CARET] = ACTIONS(563), - [anon_sym__] = ACTIONS(565), - [anon_sym_BQUOTE] = ACTIONS(565), - [anon_sym_LBRACE] = ACTIONS(573), - [anon_sym_PIPE] = ACTIONS(565), - [anon_sym_TILDE] = ACTIONS(565), - [anon_sym_LPAREN] = ACTIONS(565), - [anon_sym_RPAREN] = ACTIONS(565), - [sym__newline_token] = ACTIONS(575), - [anon_sym_CARET_LBRACK] = ACTIONS(577), - [anon_sym_LBRACK_CARET] = ACTIONS(579), - [sym_uri_autolink] = ACTIONS(561), - [sym_email_autolink] = ACTIONS(561), - [sym__whitespace_ge_2] = ACTIONS(581), - [aux_sym__whitespace_token1] = ACTIONS(583), - [sym__word_no_digit] = ACTIONS(585), - [sym__digits] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(587), - [anon_sym_DASH_DASH_DASH] = ACTIONS(585), - [anon_sym_DOT_DOT_DOT] = ACTIONS(585), - [sym__code_span_start] = ACTIONS(589), - [sym__emphasis_open_star] = ACTIONS(591), - [sym__emphasis_open_underscore] = ACTIONS(593), - [sym__strikeout_open] = ACTIONS(595), - [sym__strikeout_close] = ACTIONS(2043), - [sym__latex_span_start] = ACTIONS(599), - [sym__single_quote_open] = ACTIONS(601), - [sym__double_quote_open] = ACTIONS(603), - [sym__superscript_open] = ACTIONS(605), - [sym__subscript_open] = ACTIONS(607), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(609), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(611), - [sym__cite_author_in_text] = ACTIONS(613), - [sym__cite_suppress_author] = ACTIONS(615), - [sym__shortcode_open_escaped] = ACTIONS(617), - [sym__shortcode_open] = ACTIONS(619), - [sym__unclosed_span] = ACTIONS(561), + [aux_sym_insert_repeat1] = STATE(131), + [aux_sym__inline_base_repeat1] = STATE(372), + [sym__backslash_escape] = ACTIONS(707), + [sym_entity_reference] = ACTIONS(709), + [sym_numeric_character_reference] = ACTIONS(709), + [anon_sym_LT] = ACTIONS(711), + [anon_sym_GT] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(715), + [anon_sym_DQUOTE] = ACTIONS(713), + [anon_sym_POUND] = ACTIONS(713), + [anon_sym_DOLLAR] = ACTIONS(713), + [anon_sym_PERCENT] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(711), + [anon_sym_SQUOTE] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_COMMA] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_DOT] = ACTIONS(711), + [anon_sym_SLASH] = ACTIONS(713), + [anon_sym_COLON] = ACTIONS(713), + [anon_sym_SEMI] = ACTIONS(713), + [anon_sym_EQ] = ACTIONS(713), + [anon_sym_QMARK] = ACTIONS(713), + [anon_sym_LBRACK] = ACTIONS(717), + [anon_sym_BSLASH] = ACTIONS(719), + [anon_sym_CARET] = ACTIONS(711), + [anon_sym__] = ACTIONS(713), + [anon_sym_BQUOTE] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(721), + [anon_sym_PIPE] = ACTIONS(713), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_LPAREN] = ACTIONS(713), + [anon_sym_RPAREN] = ACTIONS(713), + [sym__newline_token] = ACTIONS(723), + [aux_sym_insert_token1] = ACTIONS(725), + [aux_sym_insert_token2] = ACTIONS(2455), + [aux_sym_delete_token1] = ACTIONS(729), + [aux_sym_highlight_token1] = ACTIONS(731), + [aux_sym_edit_comment_token1] = ACTIONS(733), + [anon_sym_CARET_LBRACK] = ACTIONS(735), + [anon_sym_LBRACK_CARET] = ACTIONS(737), + [sym_uri_autolink] = ACTIONS(709), + [sym_email_autolink] = ACTIONS(709), + [sym__whitespace_ge_2] = ACTIONS(739), + [aux_sym__whitespace_token1] = ACTIONS(741), + [sym__word_no_digit] = ACTIONS(743), + [sym__digits] = ACTIONS(743), + [anon_sym_DASH_DASH] = ACTIONS(745), + [anon_sym_DASH_DASH_DASH] = ACTIONS(743), + [anon_sym_DOT_DOT_DOT] = ACTIONS(743), + [sym__code_span_start] = ACTIONS(747), + [sym__emphasis_open_star] = ACTIONS(749), + [sym__emphasis_open_underscore] = ACTIONS(751), + [sym__strikeout_open] = ACTIONS(753), + [sym__latex_span_start] = ACTIONS(755), + [sym__single_quote_open] = ACTIONS(757), + [sym__double_quote_open] = ACTIONS(759), + [sym__superscript_open] = ACTIONS(761), + [sym__subscript_open] = ACTIONS(763), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(765), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(767), + [sym__cite_author_in_text] = ACTIONS(769), + [sym__cite_suppress_author] = ACTIONS(771), + [sym__shortcode_open_escaped] = ACTIONS(773), + [sym__shortcode_open] = ACTIONS(775), + [sym__unclosed_span] = ACTIONS(709), }, - [STATE(125)] = { - [sym_backslash_escape] = STATE(272), - [sym_commonmark_attribute] = STATE(272), - [sym_code_span] = STATE(272), - [sym_latex_span] = STATE(272), - [sym_superscript] = STATE(272), - [sym_subscript] = STATE(272), - [sym_strikeout] = STATE(272), - [sym_quoted_span] = STATE(272), - [sym_inline_note] = STATE(272), - [sym_citation] = STATE(272), - [sym_shortcode_escaped] = STATE(272), - [sym_shortcode] = STATE(272), - [sym_note_reference] = STATE(272), - [sym__link_text] = STATE(401), - [sym__link_text_non_empty] = STATE(402), + [STATE(120)] = { + [sym_backslash_escape] = STATE(372), + [sym_commonmark_attribute] = STATE(372), + [sym_code_span] = STATE(372), + [sym_latex_span] = STATE(372), + [sym_insert] = STATE(372), + [sym_delete] = STATE(372), + [sym_highlight] = STATE(372), + [sym_edit_comment] = STATE(372), + [sym_superscript] = STATE(372), + [sym_subscript] = STATE(372), + [sym_strikeout] = STATE(372), + [sym_quoted_span] = STATE(372), + [sym_inline_note] = STATE(372), + [sym_citation] = STATE(372), + [sym_shortcode_escaped] = STATE(372), + [sym_shortcode] = STATE(372), + [sym_note_reference] = STATE(372), + [sym__link_text] = STATE(454), + [sym__link_text_non_empty] = STATE(455), [sym_inline_link] = STATE(132), - [sym_image] = STATE(272), - [sym__image_inline_link] = STATE(1136), - [sym__image_description] = STATE(1942), - [sym__image_description_non_empty] = STATE(1942), - [sym_hard_line_break] = STATE(272), - [sym__whitespace] = STATE(1133), - [sym__word] = STATE(1133), - [sym__soft_line_break] = STATE(1137), + [sym_image] = STATE(372), + [sym__image_inline_link] = STATE(1025), + [sym__image_description] = STATE(2356), + [sym__image_description_non_empty] = STATE(2356), + [sym_hard_line_break] = STATE(372), + [sym__whitespace] = STATE(1022), + [sym__word] = STATE(1022), + [sym__soft_line_break] = STATE(1026), [sym__inline_base] = STATE(132), - [sym__text_base] = STATE(272), + [sym__text_base] = STATE(372), [sym__inline_element] = STATE(132), - [sym__emphasis_star] = STATE(902), + [sym__emphasis_star] = STATE(714), [sym__strong_emphasis_star] = STATE(132), - [sym__emphasis_underscore] = STATE(902), + [sym__emphasis_underscore] = STATE(714), [sym__strong_emphasis_underscore] = STATE(132), - [aux_sym_superscript_repeat1] = STATE(132), - [aux_sym__inline_base_repeat1] = STATE(272), - [sym__backslash_escape] = ACTIONS(625), - [sym_entity_reference] = ACTIONS(627), - [sym_numeric_character_reference] = ACTIONS(627), - [anon_sym_LT] = ACTIONS(629), - [anon_sym_GT] = ACTIONS(631), - [anon_sym_BANG] = ACTIONS(633), - [anon_sym_DQUOTE] = ACTIONS(631), - [anon_sym_POUND] = ACTIONS(631), - [anon_sym_DOLLAR] = ACTIONS(631), - [anon_sym_PERCENT] = ACTIONS(631), - [anon_sym_AMP] = ACTIONS(629), - [anon_sym_SQUOTE] = ACTIONS(631), - [anon_sym_STAR] = ACTIONS(631), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_COMMA] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(629), - [anon_sym_DOT] = ACTIONS(629), - [anon_sym_SLASH] = ACTIONS(631), - [anon_sym_COLON] = ACTIONS(631), - [anon_sym_SEMI] = ACTIONS(631), - [anon_sym_EQ] = ACTIONS(631), - [anon_sym_QMARK] = ACTIONS(631), - [anon_sym_LBRACK] = ACTIONS(635), - [anon_sym_BSLASH] = ACTIONS(637), - [anon_sym_CARET] = ACTIONS(629), - [anon_sym__] = ACTIONS(631), - [anon_sym_BQUOTE] = ACTIONS(631), - [anon_sym_LBRACE] = ACTIONS(639), - [anon_sym_PIPE] = ACTIONS(631), - [anon_sym_TILDE] = ACTIONS(631), - [anon_sym_LPAREN] = ACTIONS(631), - [anon_sym_RPAREN] = ACTIONS(631), - [sym__newline_token] = ACTIONS(641), - [anon_sym_CARET_LBRACK] = ACTIONS(643), - [anon_sym_LBRACK_CARET] = ACTIONS(645), - [sym_uri_autolink] = ACTIONS(627), - [sym_email_autolink] = ACTIONS(627), - [sym__whitespace_ge_2] = ACTIONS(647), - [aux_sym__whitespace_token1] = ACTIONS(649), - [sym__word_no_digit] = ACTIONS(651), - [sym__digits] = ACTIONS(651), - [anon_sym_DASH_DASH] = ACTIONS(653), - [anon_sym_DASH_DASH_DASH] = ACTIONS(651), - [anon_sym_DOT_DOT_DOT] = ACTIONS(651), - [sym__code_span_start] = ACTIONS(655), - [sym__emphasis_open_star] = ACTIONS(657), - [sym__emphasis_open_underscore] = ACTIONS(659), - [sym__strikeout_open] = ACTIONS(661), - [sym__latex_span_start] = ACTIONS(663), - [sym__single_quote_open] = ACTIONS(665), - [sym__single_quote_close] = ACTIONS(2045), - [sym__double_quote_open] = ACTIONS(669), - [sym__superscript_open] = ACTIONS(671), - [sym__subscript_open] = ACTIONS(673), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(675), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(677), - [sym__cite_author_in_text] = ACTIONS(679), - [sym__cite_suppress_author] = ACTIONS(681), - [sym__shortcode_open_escaped] = ACTIONS(683), - [sym__shortcode_open] = ACTIONS(685), - [sym__unclosed_span] = ACTIONS(627), + [aux_sym_insert_repeat1] = STATE(132), + [aux_sym__inline_base_repeat1] = STATE(372), + [sym__backslash_escape] = ACTIONS(707), + [sym_entity_reference] = ACTIONS(709), + [sym_numeric_character_reference] = ACTIONS(709), + [anon_sym_LT] = ACTIONS(711), + [anon_sym_GT] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(715), + [anon_sym_DQUOTE] = ACTIONS(713), + [anon_sym_POUND] = ACTIONS(713), + [anon_sym_DOLLAR] = ACTIONS(713), + [anon_sym_PERCENT] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(711), + [anon_sym_SQUOTE] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_COMMA] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_DOT] = ACTIONS(711), + [anon_sym_SLASH] = ACTIONS(713), + [anon_sym_COLON] = ACTIONS(713), + [anon_sym_SEMI] = ACTIONS(713), + [anon_sym_EQ] = ACTIONS(713), + [anon_sym_QMARK] = ACTIONS(713), + [anon_sym_LBRACK] = ACTIONS(717), + [anon_sym_BSLASH] = ACTIONS(719), + [anon_sym_CARET] = ACTIONS(711), + [anon_sym__] = ACTIONS(713), + [anon_sym_BQUOTE] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(721), + [anon_sym_PIPE] = ACTIONS(713), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_LPAREN] = ACTIONS(713), + [anon_sym_RPAREN] = ACTIONS(713), + [sym__newline_token] = ACTIONS(723), + [aux_sym_insert_token1] = ACTIONS(725), + [aux_sym_insert_token2] = ACTIONS(2457), + [aux_sym_delete_token1] = ACTIONS(729), + [aux_sym_highlight_token1] = ACTIONS(731), + [aux_sym_edit_comment_token1] = ACTIONS(733), + [anon_sym_CARET_LBRACK] = ACTIONS(735), + [anon_sym_LBRACK_CARET] = ACTIONS(737), + [sym_uri_autolink] = ACTIONS(709), + [sym_email_autolink] = ACTIONS(709), + [sym__whitespace_ge_2] = ACTIONS(739), + [aux_sym__whitespace_token1] = ACTIONS(741), + [sym__word_no_digit] = ACTIONS(743), + [sym__digits] = ACTIONS(743), + [anon_sym_DASH_DASH] = ACTIONS(745), + [anon_sym_DASH_DASH_DASH] = ACTIONS(743), + [anon_sym_DOT_DOT_DOT] = ACTIONS(743), + [sym__code_span_start] = ACTIONS(747), + [sym__emphasis_open_star] = ACTIONS(749), + [sym__emphasis_open_underscore] = ACTIONS(751), + [sym__strikeout_open] = ACTIONS(753), + [sym__latex_span_start] = ACTIONS(755), + [sym__single_quote_open] = ACTIONS(757), + [sym__double_quote_open] = ACTIONS(759), + [sym__superscript_open] = ACTIONS(761), + [sym__subscript_open] = ACTIONS(763), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(765), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(767), + [sym__cite_author_in_text] = ACTIONS(769), + [sym__cite_suppress_author] = ACTIONS(771), + [sym__shortcode_open_escaped] = ACTIONS(773), + [sym__shortcode_open] = ACTIONS(775), + [sym__unclosed_span] = ACTIONS(709), }, - [STATE(126)] = { - [sym_backslash_escape] = STATE(277), - [sym_commonmark_attribute] = STATE(277), - [sym_code_span] = STATE(277), - [sym_latex_span] = STATE(277), - [sym_superscript] = STATE(277), - [sym_subscript] = STATE(277), - [sym_strikeout] = STATE(277), - [sym_quoted_span] = STATE(277), - [sym_inline_note] = STATE(277), - [sym_citation] = STATE(277), - [sym_shortcode_escaped] = STATE(277), - [sym_shortcode] = STATE(277), - [sym_note_reference] = STATE(277), - [sym__link_text] = STATE(427), - [sym__link_text_non_empty] = STATE(428), + [STATE(121)] = { + [sym_backslash_escape] = STATE(372), + [sym_commonmark_attribute] = STATE(372), + [sym_code_span] = STATE(372), + [sym_latex_span] = STATE(372), + [sym_insert] = STATE(372), + [sym_delete] = STATE(372), + [sym_highlight] = STATE(372), + [sym_edit_comment] = STATE(372), + [sym_superscript] = STATE(372), + [sym_subscript] = STATE(372), + [sym_strikeout] = STATE(372), + [sym_quoted_span] = STATE(372), + [sym_inline_note] = STATE(372), + [sym_citation] = STATE(372), + [sym_shortcode_escaped] = STATE(372), + [sym_shortcode] = STATE(372), + [sym_note_reference] = STATE(372), + [sym__link_text] = STATE(454), + [sym__link_text_non_empty] = STATE(455), [sym_inline_link] = STATE(133), - [sym_image] = STATE(277), - [sym__image_inline_link] = STATE(613), - [sym__image_description] = STATE(1930), - [sym__image_description_non_empty] = STATE(1930), - [sym_hard_line_break] = STATE(277), - [sym__whitespace] = STATE(610), - [sym__word] = STATE(610), - [sym__soft_line_break] = STATE(614), + [sym_image] = STATE(372), + [sym__image_inline_link] = STATE(1025), + [sym__image_description] = STATE(2356), + [sym__image_description_non_empty] = STATE(2356), + [sym_hard_line_break] = STATE(372), + [sym__whitespace] = STATE(1022), + [sym__word] = STATE(1022), + [sym__soft_line_break] = STATE(1026), [sym__inline_base] = STATE(133), - [sym__text_base] = STATE(277), + [sym__text_base] = STATE(372), [sym__inline_element] = STATE(133), - [sym__emphasis_star] = STATE(1044), + [sym__emphasis_star] = STATE(714), [sym__strong_emphasis_star] = STATE(133), - [sym__emphasis_underscore] = STATE(1044), + [sym__emphasis_underscore] = STATE(714), [sym__strong_emphasis_underscore] = STATE(133), - [aux_sym_superscript_repeat1] = STATE(133), - [aux_sym__inline_base_repeat1] = STATE(277), - [sym__backslash_escape] = ACTIONS(687), - [sym_entity_reference] = ACTIONS(689), - [sym_numeric_character_reference] = ACTIONS(689), - [anon_sym_LT] = ACTIONS(691), - [anon_sym_GT] = ACTIONS(693), - [anon_sym_BANG] = ACTIONS(695), - [anon_sym_DQUOTE] = ACTIONS(693), - [anon_sym_POUND] = ACTIONS(693), - [anon_sym_DOLLAR] = ACTIONS(693), - [anon_sym_PERCENT] = ACTIONS(693), - [anon_sym_AMP] = ACTIONS(691), - [anon_sym_SQUOTE] = ACTIONS(693), - [anon_sym_STAR] = ACTIONS(693), - [anon_sym_PLUS] = ACTIONS(693), - [anon_sym_COMMA] = ACTIONS(693), - [anon_sym_DASH] = ACTIONS(691), - [anon_sym_DOT] = ACTIONS(691), - [anon_sym_SLASH] = ACTIONS(693), - [anon_sym_COLON] = ACTIONS(693), - [anon_sym_SEMI] = ACTIONS(693), - [anon_sym_EQ] = ACTIONS(693), - [anon_sym_QMARK] = ACTIONS(693), - [anon_sym_LBRACK] = ACTIONS(697), - [anon_sym_BSLASH] = ACTIONS(699), - [anon_sym_CARET] = ACTIONS(691), - [anon_sym__] = ACTIONS(693), - [anon_sym_BQUOTE] = ACTIONS(693), - [anon_sym_LBRACE] = ACTIONS(701), - [anon_sym_PIPE] = ACTIONS(693), - [anon_sym_TILDE] = ACTIONS(693), - [anon_sym_LPAREN] = ACTIONS(693), - [anon_sym_RPAREN] = ACTIONS(693), - [sym__newline_token] = ACTIONS(703), - [anon_sym_CARET_LBRACK] = ACTIONS(705), - [anon_sym_LBRACK_CARET] = ACTIONS(707), - [sym_uri_autolink] = ACTIONS(689), - [sym_email_autolink] = ACTIONS(689), - [sym__whitespace_ge_2] = ACTIONS(709), - [aux_sym__whitespace_token1] = ACTIONS(711), - [sym__word_no_digit] = ACTIONS(713), - [sym__digits] = ACTIONS(713), - [anon_sym_DASH_DASH] = ACTIONS(715), - [anon_sym_DASH_DASH_DASH] = ACTIONS(713), - [anon_sym_DOT_DOT_DOT] = ACTIONS(713), - [sym__code_span_start] = ACTIONS(717), - [sym__emphasis_open_star] = ACTIONS(719), - [sym__emphasis_open_underscore] = ACTIONS(721), - [sym__strikeout_open] = ACTIONS(723), - [sym__latex_span_start] = ACTIONS(725), - [sym__single_quote_open] = ACTIONS(727), - [sym__double_quote_open] = ACTIONS(729), - [sym__double_quote_close] = ACTIONS(2045), - [sym__superscript_open] = ACTIONS(731), - [sym__subscript_open] = ACTIONS(733), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(735), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(737), - [sym__cite_author_in_text] = ACTIONS(739), - [sym__cite_suppress_author] = ACTIONS(741), - [sym__shortcode_open_escaped] = ACTIONS(743), - [sym__shortcode_open] = ACTIONS(745), - [sym__unclosed_span] = ACTIONS(689), + [aux_sym_insert_repeat1] = STATE(133), + [aux_sym__inline_base_repeat1] = STATE(372), + [sym__backslash_escape] = ACTIONS(707), + [sym_entity_reference] = ACTIONS(709), + [sym_numeric_character_reference] = ACTIONS(709), + [anon_sym_LT] = ACTIONS(711), + [anon_sym_GT] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(715), + [anon_sym_DQUOTE] = ACTIONS(713), + [anon_sym_POUND] = ACTIONS(713), + [anon_sym_DOLLAR] = ACTIONS(713), + [anon_sym_PERCENT] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(711), + [anon_sym_SQUOTE] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_COMMA] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_DOT] = ACTIONS(711), + [anon_sym_SLASH] = ACTIONS(713), + [anon_sym_COLON] = ACTIONS(713), + [anon_sym_SEMI] = ACTIONS(713), + [anon_sym_EQ] = ACTIONS(713), + [anon_sym_QMARK] = ACTIONS(713), + [anon_sym_LBRACK] = ACTIONS(717), + [anon_sym_BSLASH] = ACTIONS(719), + [anon_sym_CARET] = ACTIONS(711), + [anon_sym__] = ACTIONS(713), + [anon_sym_BQUOTE] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(721), + [anon_sym_PIPE] = ACTIONS(713), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_LPAREN] = ACTIONS(713), + [anon_sym_RPAREN] = ACTIONS(713), + [sym__newline_token] = ACTIONS(723), + [aux_sym_insert_token1] = ACTIONS(725), + [aux_sym_insert_token2] = ACTIONS(2459), + [aux_sym_delete_token1] = ACTIONS(729), + [aux_sym_highlight_token1] = ACTIONS(731), + [aux_sym_edit_comment_token1] = ACTIONS(733), + [anon_sym_CARET_LBRACK] = ACTIONS(735), + [anon_sym_LBRACK_CARET] = ACTIONS(737), + [sym_uri_autolink] = ACTIONS(709), + [sym_email_autolink] = ACTIONS(709), + [sym__whitespace_ge_2] = ACTIONS(739), + [aux_sym__whitespace_token1] = ACTIONS(741), + [sym__word_no_digit] = ACTIONS(743), + [sym__digits] = ACTIONS(743), + [anon_sym_DASH_DASH] = ACTIONS(745), + [anon_sym_DASH_DASH_DASH] = ACTIONS(743), + [anon_sym_DOT_DOT_DOT] = ACTIONS(743), + [sym__code_span_start] = ACTIONS(747), + [sym__emphasis_open_star] = ACTIONS(749), + [sym__emphasis_open_underscore] = ACTIONS(751), + [sym__strikeout_open] = ACTIONS(753), + [sym__latex_span_start] = ACTIONS(755), + [sym__single_quote_open] = ACTIONS(757), + [sym__double_quote_open] = ACTIONS(759), + [sym__superscript_open] = ACTIONS(761), + [sym__subscript_open] = ACTIONS(763), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(765), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(767), + [sym__cite_author_in_text] = ACTIONS(769), + [sym__cite_suppress_author] = ACTIONS(771), + [sym__shortcode_open_escaped] = ACTIONS(773), + [sym__shortcode_open] = ACTIONS(775), + [sym__unclosed_span] = ACTIONS(709), }, - [STATE(127)] = { - [sym_backslash_escape] = STATE(262), - [sym_commonmark_attribute] = STATE(262), - [sym_code_span] = STATE(262), - [sym_latex_span] = STATE(262), - [sym_superscript] = STATE(262), - [sym_subscript] = STATE(262), - [sym_strikeout] = STATE(262), - [sym_quoted_span] = STATE(262), - [sym_inline_note] = STATE(262), - [sym_citation] = STATE(262), - [sym_shortcode_escaped] = STATE(262), - [sym_shortcode] = STATE(262), - [sym_note_reference] = STATE(262), - [sym__link_text] = STATE(313), - [sym__link_text_non_empty] = STATE(314), + [STATE(122)] = { + [sym_backslash_escape] = STATE(372), + [sym_commonmark_attribute] = STATE(372), + [sym_code_span] = STATE(372), + [sym_latex_span] = STATE(372), + [sym_insert] = STATE(372), + [sym_delete] = STATE(372), + [sym_highlight] = STATE(372), + [sym_edit_comment] = STATE(372), + [sym_superscript] = STATE(372), + [sym_subscript] = STATE(372), + [sym_strikeout] = STATE(372), + [sym_quoted_span] = STATE(372), + [sym_inline_note] = STATE(372), + [sym_citation] = STATE(372), + [sym_shortcode_escaped] = STATE(372), + [sym_shortcode] = STATE(372), + [sym_note_reference] = STATE(372), + [sym__link_text] = STATE(454), + [sym__link_text_non_empty] = STATE(455), [sym_inline_link] = STATE(134), - [sym_image] = STATE(262), - [sym__image_inline_link] = STATE(708), - [sym__image_description] = STATE(1970), - [sym__image_description_non_empty] = STATE(1970), - [sym_hard_line_break] = STATE(262), - [sym__whitespace] = STATE(705), - [sym__word] = STATE(705), - [sym__soft_line_break] = STATE(709), + [sym_image] = STATE(372), + [sym__image_inline_link] = STATE(1025), + [sym__image_description] = STATE(2356), + [sym__image_description_non_empty] = STATE(2356), + [sym_hard_line_break] = STATE(372), + [sym__whitespace] = STATE(1022), + [sym__word] = STATE(1022), + [sym__soft_line_break] = STATE(1026), [sym__inline_base] = STATE(134), - [sym__text_base] = STATE(262), + [sym__text_base] = STATE(372), [sym__inline_element] = STATE(134), - [sym__emphasis_star] = STATE(1138), + [sym__emphasis_star] = STATE(714), [sym__strong_emphasis_star] = STATE(134), - [sym__emphasis_underscore] = STATE(1138), + [sym__emphasis_underscore] = STATE(714), [sym__strong_emphasis_underscore] = STATE(134), - [aux_sym_superscript_repeat1] = STATE(134), - [aux_sym__inline_base_repeat1] = STATE(262), - [sym__backslash_escape] = ACTIONS(747), - [sym_entity_reference] = ACTIONS(749), - [sym_numeric_character_reference] = ACTIONS(749), - [anon_sym_LT] = ACTIONS(751), - [anon_sym_GT] = ACTIONS(753), - [anon_sym_BANG] = ACTIONS(755), - [anon_sym_DQUOTE] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(753), - [anon_sym_DOLLAR] = ACTIONS(753), - [anon_sym_PERCENT] = ACTIONS(753), - [anon_sym_AMP] = ACTIONS(751), - [anon_sym_SQUOTE] = ACTIONS(753), - [anon_sym_STAR] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(753), - [anon_sym_COMMA] = ACTIONS(753), - [anon_sym_DASH] = ACTIONS(751), - [anon_sym_DOT] = ACTIONS(751), - [anon_sym_SLASH] = ACTIONS(753), - [anon_sym_COLON] = ACTIONS(753), - [anon_sym_SEMI] = ACTIONS(753), - [anon_sym_EQ] = ACTIONS(753), - [anon_sym_QMARK] = ACTIONS(753), - [anon_sym_LBRACK] = ACTIONS(757), - [anon_sym_BSLASH] = ACTIONS(759), - [anon_sym_CARET] = ACTIONS(751), - [anon_sym__] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(753), - [anon_sym_LBRACE] = ACTIONS(761), - [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_TILDE] = ACTIONS(753), - [anon_sym_LPAREN] = ACTIONS(753), - [anon_sym_RPAREN] = ACTIONS(753), - [sym__newline_token] = ACTIONS(763), - [anon_sym_CARET_LBRACK] = ACTIONS(765), - [anon_sym_LBRACK_CARET] = ACTIONS(767), - [sym_uri_autolink] = ACTIONS(749), - [sym_email_autolink] = ACTIONS(749), - [sym__whitespace_ge_2] = ACTIONS(769), - [aux_sym__whitespace_token1] = ACTIONS(771), - [sym__word_no_digit] = ACTIONS(773), - [sym__digits] = ACTIONS(773), - [anon_sym_DASH_DASH] = ACTIONS(775), - [anon_sym_DASH_DASH_DASH] = ACTIONS(773), - [anon_sym_DOT_DOT_DOT] = ACTIONS(773), - [sym__code_span_start] = ACTIONS(777), - [sym__emphasis_open_star] = ACTIONS(779), - [sym__emphasis_open_underscore] = ACTIONS(781), - [sym__strikeout_open] = ACTIONS(783), - [sym__latex_span_start] = ACTIONS(785), - [sym__single_quote_open] = ACTIONS(787), - [sym__double_quote_open] = ACTIONS(789), - [sym__superscript_open] = ACTIONS(791), - [sym__superscript_close] = ACTIONS(2047), - [sym__subscript_open] = ACTIONS(795), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(797), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(799), - [sym__cite_author_in_text] = ACTIONS(801), - [sym__cite_suppress_author] = ACTIONS(803), - [sym__shortcode_open_escaped] = ACTIONS(805), - [sym__shortcode_open] = ACTIONS(807), - [sym__unclosed_span] = ACTIONS(749), - }, - [STATE(128)] = { - [sym_backslash_escape] = STATE(270), - [sym_commonmark_attribute] = STATE(270), - [sym_code_span] = STATE(270), - [sym_latex_span] = STATE(270), - [sym_superscript] = STATE(270), - [sym_subscript] = STATE(270), - [sym_strikeout] = STATE(270), - [sym_quoted_span] = STATE(270), - [sym_inline_note] = STATE(270), - [sym_citation] = STATE(270), - [sym_shortcode_escaped] = STATE(270), - [sym_shortcode] = STATE(270), - [sym_note_reference] = STATE(270), - [sym__link_text] = STATE(359), - [sym__link_text_non_empty] = STATE(364), - [sym_inline_link] = STATE(135), - [sym_image] = STATE(270), - [sym__image_inline_link] = STATE(795), - [sym__image_description] = STATE(1984), - [sym__image_description_non_empty] = STATE(1984), - [sym_hard_line_break] = STATE(270), - [sym__whitespace] = STATE(792), - [sym__word] = STATE(792), - [sym__soft_line_break] = STATE(796), - [sym__inline_base] = STATE(135), - [sym__text_base] = STATE(270), - [sym__inline_element] = STATE(135), - [sym__emphasis_star] = STATE(615), - [sym__strong_emphasis_star] = STATE(135), - [sym__emphasis_underscore] = STATE(615), - [sym__strong_emphasis_underscore] = STATE(135), - [aux_sym_superscript_repeat1] = STATE(135), - [aux_sym__inline_base_repeat1] = STATE(270), - [sym__backslash_escape] = ACTIONS(809), - [sym_entity_reference] = ACTIONS(811), - [sym_numeric_character_reference] = ACTIONS(811), - [anon_sym_LT] = ACTIONS(813), - [anon_sym_GT] = ACTIONS(815), - [anon_sym_BANG] = ACTIONS(817), - [anon_sym_DQUOTE] = ACTIONS(815), - [anon_sym_POUND] = ACTIONS(815), - [anon_sym_DOLLAR] = ACTIONS(815), - [anon_sym_PERCENT] = ACTIONS(815), - [anon_sym_AMP] = ACTIONS(813), - [anon_sym_SQUOTE] = ACTIONS(815), - [anon_sym_STAR] = ACTIONS(815), - [anon_sym_PLUS] = ACTIONS(815), - [anon_sym_COMMA] = ACTIONS(815), - [anon_sym_DASH] = ACTIONS(813), - [anon_sym_DOT] = ACTIONS(813), - [anon_sym_SLASH] = ACTIONS(815), - [anon_sym_COLON] = ACTIONS(815), - [anon_sym_SEMI] = ACTIONS(815), - [anon_sym_EQ] = ACTIONS(815), - [anon_sym_QMARK] = ACTIONS(815), - [anon_sym_LBRACK] = ACTIONS(819), - [anon_sym_BSLASH] = ACTIONS(821), - [anon_sym_CARET] = ACTIONS(813), - [anon_sym__] = ACTIONS(815), - [anon_sym_BQUOTE] = ACTIONS(815), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_PIPE] = ACTIONS(815), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_RPAREN] = ACTIONS(815), - [sym__newline_token] = ACTIONS(825), - [anon_sym_CARET_LBRACK] = ACTIONS(827), - [anon_sym_LBRACK_CARET] = ACTIONS(829), - [sym_uri_autolink] = ACTIONS(811), - [sym_email_autolink] = ACTIONS(811), - [sym__whitespace_ge_2] = ACTIONS(831), - [aux_sym__whitespace_token1] = ACTIONS(833), - [sym__word_no_digit] = ACTIONS(835), - [sym__digits] = ACTIONS(835), - [anon_sym_DASH_DASH] = ACTIONS(837), - [anon_sym_DASH_DASH_DASH] = ACTIONS(835), - [anon_sym_DOT_DOT_DOT] = ACTIONS(835), - [sym__code_span_start] = ACTIONS(839), - [sym__emphasis_open_star] = ACTIONS(841), - [sym__emphasis_open_underscore] = ACTIONS(843), - [sym__strikeout_open] = ACTIONS(845), - [sym__latex_span_start] = ACTIONS(847), - [sym__single_quote_open] = ACTIONS(849), - [sym__double_quote_open] = ACTIONS(851), - [sym__superscript_open] = ACTIONS(853), - [sym__subscript_open] = ACTIONS(855), - [sym__subscript_close] = ACTIONS(2049), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(859), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(861), - [sym__cite_author_in_text] = ACTIONS(863), - [sym__cite_suppress_author] = ACTIONS(865), - [sym__shortcode_open_escaped] = ACTIONS(867), - [sym__shortcode_open] = ACTIONS(869), - [sym__unclosed_span] = ACTIONS(811), + [aux_sym_insert_repeat1] = STATE(134), + [aux_sym__inline_base_repeat1] = STATE(372), + [sym__backslash_escape] = ACTIONS(707), + [sym_entity_reference] = ACTIONS(709), + [sym_numeric_character_reference] = ACTIONS(709), + [anon_sym_LT] = ACTIONS(711), + [anon_sym_GT] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(715), + [anon_sym_DQUOTE] = ACTIONS(713), + [anon_sym_POUND] = ACTIONS(713), + [anon_sym_DOLLAR] = ACTIONS(713), + [anon_sym_PERCENT] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(711), + [anon_sym_SQUOTE] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_COMMA] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_DOT] = ACTIONS(711), + [anon_sym_SLASH] = ACTIONS(713), + [anon_sym_COLON] = ACTIONS(713), + [anon_sym_SEMI] = ACTIONS(713), + [anon_sym_EQ] = ACTIONS(713), + [anon_sym_QMARK] = ACTIONS(713), + [anon_sym_LBRACK] = ACTIONS(717), + [anon_sym_BSLASH] = ACTIONS(719), + [anon_sym_CARET] = ACTIONS(711), + [anon_sym__] = ACTIONS(713), + [anon_sym_BQUOTE] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(721), + [anon_sym_PIPE] = ACTIONS(713), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_LPAREN] = ACTIONS(713), + [anon_sym_RPAREN] = ACTIONS(713), + [sym__newline_token] = ACTIONS(723), + [aux_sym_insert_token1] = ACTIONS(725), + [aux_sym_insert_token2] = ACTIONS(2461), + [aux_sym_delete_token1] = ACTIONS(729), + [aux_sym_highlight_token1] = ACTIONS(731), + [aux_sym_edit_comment_token1] = ACTIONS(733), + [anon_sym_CARET_LBRACK] = ACTIONS(735), + [anon_sym_LBRACK_CARET] = ACTIONS(737), + [sym_uri_autolink] = ACTIONS(709), + [sym_email_autolink] = ACTIONS(709), + [sym__whitespace_ge_2] = ACTIONS(739), + [aux_sym__whitespace_token1] = ACTIONS(741), + [sym__word_no_digit] = ACTIONS(743), + [sym__digits] = ACTIONS(743), + [anon_sym_DASH_DASH] = ACTIONS(745), + [anon_sym_DASH_DASH_DASH] = ACTIONS(743), + [anon_sym_DOT_DOT_DOT] = ACTIONS(743), + [sym__code_span_start] = ACTIONS(747), + [sym__emphasis_open_star] = ACTIONS(749), + [sym__emphasis_open_underscore] = ACTIONS(751), + [sym__strikeout_open] = ACTIONS(753), + [sym__latex_span_start] = ACTIONS(755), + [sym__single_quote_open] = ACTIONS(757), + [sym__double_quote_open] = ACTIONS(759), + [sym__superscript_open] = ACTIONS(761), + [sym__subscript_open] = ACTIONS(763), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(765), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(767), + [sym__cite_author_in_text] = ACTIONS(769), + [sym__cite_suppress_author] = ACTIONS(771), + [sym__shortcode_open_escaped] = ACTIONS(773), + [sym__shortcode_open] = ACTIONS(775), + [sym__unclosed_span] = ACTIONS(709), }, - [STATE(129)] = { - [sym_backslash_escape] = STATE(261), - [sym_commonmark_attribute] = STATE(261), - [sym_code_span] = STATE(261), - [sym_latex_span] = STATE(261), - [sym_superscript] = STATE(261), - [sym_subscript] = STATE(261), - [sym_strikeout] = STATE(261), - [sym_quoted_span] = STATE(261), - [sym_inline_note] = STATE(261), - [sym_citation] = STATE(261), - [sym_shortcode_escaped] = STATE(261), - [sym_shortcode] = STATE(261), - [sym_note_reference] = STATE(261), - [sym__link_text] = STATE(322), - [sym__link_text_non_empty] = STATE(323), + [STATE(123)] = { + [sym_backslash_escape] = STATE(366), + [sym_commonmark_attribute] = STATE(366), + [sym_code_span] = STATE(366), + [sym_latex_span] = STATE(366), + [sym_insert] = STATE(366), + [sym_delete] = STATE(366), + [sym_highlight] = STATE(366), + [sym_edit_comment] = STATE(366), + [sym_superscript] = STATE(366), + [sym_subscript] = STATE(366), + [sym_strikeout] = STATE(366), + [sym_quoted_span] = STATE(366), + [sym_inline_note] = STATE(366), + [sym_citation] = STATE(366), + [sym_shortcode_escaped] = STATE(366), + [sym_shortcode] = STATE(366), + [sym_note_reference] = STATE(366), + [sym__link_text] = STATE(490), + [sym__link_text_non_empty] = STATE(491), [sym_inline_link] = STATE(39), - [sym_image] = STATE(261), - [sym__image_inline_link] = STATE(595), - [sym__image_description] = STATE(1972), - [sym__image_description_non_empty] = STATE(1972), - [sym_hard_line_break] = STATE(261), - [sym__whitespace] = STATE(587), - [sym__word] = STATE(587), - [sym__soft_line_break] = STATE(597), + [sym_image] = STATE(366), + [sym__image_inline_link] = STATE(1244), + [sym__image_description] = STATE(2280), + [sym__image_description_non_empty] = STATE(2280), + [sym_hard_line_break] = STATE(366), + [sym__whitespace] = STATE(1218), + [sym__word] = STATE(1218), + [sym__soft_line_break] = STATE(1245), [sym__inline_base] = STATE(39), - [sym__text_base] = STATE(261), - [sym__inline_element_no_star] = STATE(39), - [aux_sym__inline_no_star] = STATE(39), - [sym__emphasis_star] = STATE(544), + [sym__text_base] = STATE(366), + [sym__inline_element] = STATE(39), + [sym__emphasis_star] = STATE(1270), [sym__strong_emphasis_star] = STATE(39), - [sym__emphasis_underscore] = STATE(544), + [sym__emphasis_underscore] = STATE(1270), [sym__strong_emphasis_underscore] = STATE(39), - [aux_sym__inline_base_repeat1] = STATE(261), - [sym__backslash_escape] = ACTIONS(969), - [sym_entity_reference] = ACTIONS(971), - [sym_numeric_character_reference] = ACTIONS(971), - [anon_sym_LT] = ACTIONS(973), - [anon_sym_GT] = ACTIONS(975), - [anon_sym_BANG] = ACTIONS(977), - [anon_sym_DQUOTE] = ACTIONS(975), - [anon_sym_POUND] = ACTIONS(975), - [anon_sym_DOLLAR] = ACTIONS(975), - [anon_sym_PERCENT] = ACTIONS(975), - [anon_sym_AMP] = ACTIONS(973), - [anon_sym_SQUOTE] = ACTIONS(975), - [anon_sym_STAR] = ACTIONS(975), - [anon_sym_PLUS] = ACTIONS(975), - [anon_sym_COMMA] = ACTIONS(975), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_DOT] = ACTIONS(973), - [anon_sym_SLASH] = ACTIONS(975), - [anon_sym_COLON] = ACTIONS(975), - [anon_sym_SEMI] = ACTIONS(975), - [anon_sym_EQ] = ACTIONS(975), - [anon_sym_QMARK] = ACTIONS(975), - [anon_sym_LBRACK] = ACTIONS(979), - [anon_sym_BSLASH] = ACTIONS(981), - [anon_sym_CARET] = ACTIONS(973), - [anon_sym__] = ACTIONS(975), - [anon_sym_BQUOTE] = ACTIONS(975), - [anon_sym_LBRACE] = ACTIONS(983), - [anon_sym_PIPE] = ACTIONS(975), - [anon_sym_TILDE] = ACTIONS(975), - [anon_sym_LPAREN] = ACTIONS(975), - [anon_sym_RPAREN] = ACTIONS(975), - [sym__newline_token] = ACTIONS(985), - [anon_sym_CARET_LBRACK] = ACTIONS(987), - [anon_sym_LBRACK_CARET] = ACTIONS(989), - [sym_uri_autolink] = ACTIONS(971), - [sym_email_autolink] = ACTIONS(971), - [sym__whitespace_ge_2] = ACTIONS(991), - [aux_sym__whitespace_token1] = ACTIONS(993), - [sym__word_no_digit] = ACTIONS(995), - [sym__digits] = ACTIONS(995), - [anon_sym_DASH_DASH] = ACTIONS(997), - [anon_sym_DASH_DASH_DASH] = ACTIONS(995), - [anon_sym_DOT_DOT_DOT] = ACTIONS(995), - [sym__code_span_start] = ACTIONS(999), - [sym__emphasis_open_star] = ACTIONS(1001), - [sym__emphasis_open_underscore] = ACTIONS(1003), - [sym__emphasis_close_star] = ACTIONS(2051), - [sym__strikeout_open] = ACTIONS(1007), - [sym__latex_span_start] = ACTIONS(1009), - [sym__single_quote_open] = ACTIONS(1011), - [sym__double_quote_open] = ACTIONS(1013), - [sym__superscript_open] = ACTIONS(1015), - [sym__subscript_open] = ACTIONS(1017), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1019), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1021), - [sym__cite_author_in_text] = ACTIONS(1023), - [sym__cite_suppress_author] = ACTIONS(1025), - [sym__shortcode_open_escaped] = ACTIONS(1027), - [sym__shortcode_open] = ACTIONS(1029), - [sym__unclosed_span] = ACTIONS(971), + [aux_sym_insert_repeat1] = STATE(39), + [aux_sym__inline_base_repeat1] = STATE(366), + [sym__backslash_escape] = ACTIONS(2005), + [sym_entity_reference] = ACTIONS(2007), + [sym_numeric_character_reference] = ACTIONS(2007), + [anon_sym_LT] = ACTIONS(2009), + [anon_sym_GT] = ACTIONS(2011), + [anon_sym_BANG] = ACTIONS(2013), + [anon_sym_DQUOTE] = ACTIONS(2011), + [anon_sym_POUND] = ACTIONS(2011), + [anon_sym_DOLLAR] = ACTIONS(2011), + [anon_sym_PERCENT] = ACTIONS(2011), + [anon_sym_AMP] = ACTIONS(2009), + [anon_sym_SQUOTE] = ACTIONS(2011), + [anon_sym_STAR] = ACTIONS(2011), + [anon_sym_PLUS] = ACTIONS(2011), + [anon_sym_COMMA] = ACTIONS(2011), + [anon_sym_DASH] = ACTIONS(2009), + [anon_sym_DOT] = ACTIONS(2009), + [anon_sym_SLASH] = ACTIONS(2011), + [anon_sym_COLON] = ACTIONS(2011), + [anon_sym_SEMI] = ACTIONS(2011), + [anon_sym_EQ] = ACTIONS(2011), + [anon_sym_QMARK] = ACTIONS(2011), + [anon_sym_LBRACK] = ACTIONS(2015), + [anon_sym_BSLASH] = ACTIONS(2017), + [anon_sym_CARET] = ACTIONS(2009), + [anon_sym__] = ACTIONS(2011), + [anon_sym_BQUOTE] = ACTIONS(2011), + [anon_sym_LBRACE] = ACTIONS(2019), + [anon_sym_PIPE] = ACTIONS(2011), + [anon_sym_TILDE] = ACTIONS(2011), + [anon_sym_LPAREN] = ACTIONS(2011), + [anon_sym_RPAREN] = ACTIONS(2011), + [sym__newline_token] = ACTIONS(2021), + [aux_sym_insert_token1] = ACTIONS(2023), + [aux_sym_delete_token1] = ACTIONS(2025), + [aux_sym_highlight_token1] = ACTIONS(2027), + [aux_sym_edit_comment_token1] = ACTIONS(2029), + [anon_sym_CARET_LBRACK] = ACTIONS(2031), + [anon_sym_LBRACK_CARET] = ACTIONS(2033), + [sym_uri_autolink] = ACTIONS(2007), + [sym_email_autolink] = ACTIONS(2007), + [sym__whitespace_ge_2] = ACTIONS(2035), + [aux_sym__whitespace_token1] = ACTIONS(2037), + [sym__word_no_digit] = ACTIONS(2039), + [sym__digits] = ACTIONS(2039), + [anon_sym_DASH_DASH] = ACTIONS(2041), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2039), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2039), + [sym__code_span_start] = ACTIONS(2043), + [sym__emphasis_open_star] = ACTIONS(2045), + [sym__emphasis_open_underscore] = ACTIONS(2047), + [sym__strikeout_open] = ACTIONS(2049), + [sym__strikeout_close] = ACTIONS(2463), + [sym__latex_span_start] = ACTIONS(2053), + [sym__single_quote_open] = ACTIONS(2055), + [sym__double_quote_open] = ACTIONS(2057), + [sym__superscript_open] = ACTIONS(2059), + [sym__subscript_open] = ACTIONS(2061), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2063), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2065), + [sym__cite_author_in_text] = ACTIONS(2067), + [sym__cite_suppress_author] = ACTIONS(2069), + [sym__shortcode_open_escaped] = ACTIONS(2071), + [sym__shortcode_open] = ACTIONS(2073), + [sym__unclosed_span] = ACTIONS(2007), }, - [STATE(130)] = { - [sym_backslash_escape] = STATE(274), - [sym_commonmark_attribute] = STATE(274), - [sym_code_span] = STATE(274), - [sym_latex_span] = STATE(274), - [sym_superscript] = STATE(274), - [sym_subscript] = STATE(274), - [sym_strikeout] = STATE(274), - [sym_quoted_span] = STATE(274), - [sym_inline_note] = STATE(274), - [sym_citation] = STATE(274), - [sym_shortcode_escaped] = STATE(274), - [sym_shortcode] = STATE(274), - [sym_note_reference] = STATE(274), - [sym__link_text] = STATE(351), - [sym__link_text_non_empty] = STATE(352), - [sym_inline_link] = STATE(41), - [sym_image] = STATE(274), - [sym__image_inline_link] = STATE(894), - [sym__image_description] = STATE(2008), - [sym__image_description_non_empty] = STATE(2008), - [sym_hard_line_break] = STATE(274), - [sym__whitespace] = STATE(882), - [sym__word] = STATE(882), - [sym__soft_line_break] = STATE(898), - [sym__inline_base] = STATE(41), - [sym__text_base] = STATE(274), - [sym__inline_element_no_underscore] = STATE(41), - [aux_sym__inline_no_underscore] = STATE(41), - [sym__emphasis_star] = STATE(711), - [sym__strong_emphasis_star] = STATE(41), - [sym__emphasis_underscore] = STATE(711), - [sym__strong_emphasis_underscore] = STATE(41), - [aux_sym__inline_base_repeat1] = STATE(274), - [sym__backslash_escape] = ACTIONS(1123), - [sym_entity_reference] = ACTIONS(1125), - [sym_numeric_character_reference] = ACTIONS(1125), - [anon_sym_LT] = ACTIONS(1127), - [anon_sym_GT] = ACTIONS(1129), - [anon_sym_BANG] = ACTIONS(1131), - [anon_sym_DQUOTE] = ACTIONS(1129), - [anon_sym_POUND] = ACTIONS(1129), - [anon_sym_DOLLAR] = ACTIONS(1129), - [anon_sym_PERCENT] = ACTIONS(1129), - [anon_sym_AMP] = ACTIONS(1127), - [anon_sym_SQUOTE] = ACTIONS(1129), - [anon_sym_STAR] = ACTIONS(1129), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_COMMA] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1127), - [anon_sym_DOT] = ACTIONS(1127), - [anon_sym_SLASH] = ACTIONS(1129), - [anon_sym_COLON] = ACTIONS(1129), - [anon_sym_SEMI] = ACTIONS(1129), - [anon_sym_EQ] = ACTIONS(1129), - [anon_sym_QMARK] = ACTIONS(1129), - [anon_sym_LBRACK] = ACTIONS(1133), - [anon_sym_BSLASH] = ACTIONS(1135), - [anon_sym_CARET] = ACTIONS(1127), - [anon_sym__] = ACTIONS(1129), - [anon_sym_BQUOTE] = ACTIONS(1129), - [anon_sym_LBRACE] = ACTIONS(1137), - [anon_sym_PIPE] = ACTIONS(1129), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1129), - [anon_sym_RPAREN] = ACTIONS(1129), - [sym__newline_token] = ACTIONS(1139), - [anon_sym_CARET_LBRACK] = ACTIONS(1141), - [anon_sym_LBRACK_CARET] = ACTIONS(1143), - [sym_uri_autolink] = ACTIONS(1125), - [sym_email_autolink] = ACTIONS(1125), - [sym__whitespace_ge_2] = ACTIONS(1145), - [aux_sym__whitespace_token1] = ACTIONS(1147), - [sym__word_no_digit] = ACTIONS(1149), - [sym__digits] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1151), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1149), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1149), - [sym__code_span_start] = ACTIONS(1153), - [sym__emphasis_open_star] = ACTIONS(1155), - [sym__emphasis_open_underscore] = ACTIONS(1157), - [sym__emphasis_close_underscore] = ACTIONS(2053), - [sym__strikeout_open] = ACTIONS(1161), - [sym__latex_span_start] = ACTIONS(1163), - [sym__single_quote_open] = ACTIONS(1165), - [sym__double_quote_open] = ACTIONS(1167), - [sym__superscript_open] = ACTIONS(1169), - [sym__subscript_open] = ACTIONS(1171), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1173), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1175), - [sym__cite_author_in_text] = ACTIONS(1177), - [sym__cite_suppress_author] = ACTIONS(1179), - [sym__shortcode_open_escaped] = ACTIONS(1181), - [sym__shortcode_open] = ACTIONS(1183), - [sym__unclosed_span] = ACTIONS(1125), + [STATE(124)] = { + [sym_backslash_escape] = STATE(373), + [sym_commonmark_attribute] = STATE(373), + [sym_code_span] = STATE(373), + [sym_latex_span] = STATE(373), + [sym_insert] = STATE(373), + [sym_delete] = STATE(373), + [sym_highlight] = STATE(373), + [sym_edit_comment] = STATE(373), + [sym_superscript] = STATE(373), + [sym_subscript] = STATE(373), + [sym_strikeout] = STATE(373), + [sym_quoted_span] = STATE(373), + [sym_inline_note] = STATE(373), + [sym_citation] = STATE(373), + [sym_shortcode_escaped] = STATE(373), + [sym_shortcode] = STATE(373), + [sym_note_reference] = STATE(373), + [sym__link_text] = STATE(522), + [sym__link_text_non_empty] = STATE(523), + [sym_inline_link] = STATE(36), + [sym_image] = STATE(373), + [sym__image_inline_link] = STATE(1265), + [sym__image_description] = STATE(2331), + [sym__image_description_non_empty] = STATE(2331), + [sym_hard_line_break] = STATE(373), + [sym__whitespace] = STATE(1262), + [sym__word] = STATE(1262), + [sym__soft_line_break] = STATE(1267), + [sym__inline_base] = STATE(36), + [sym__text_base] = STATE(373), + [sym__inline_element_no_star] = STATE(36), + [aux_sym__inline_no_star] = STATE(36), + [sym__emphasis_star] = STATE(1147), + [sym__strong_emphasis_star] = STATE(36), + [sym__emphasis_underscore] = STATE(1147), + [sym__strong_emphasis_underscore] = STATE(36), + [aux_sym__inline_base_repeat1] = STATE(373), + [sym__backslash_escape] = ACTIONS(885), + [sym_entity_reference] = ACTIONS(887), + [sym_numeric_character_reference] = ACTIONS(887), + [anon_sym_LT] = ACTIONS(889), + [anon_sym_GT] = ACTIONS(891), + [anon_sym_BANG] = ACTIONS(893), + [anon_sym_DQUOTE] = ACTIONS(891), + [anon_sym_POUND] = ACTIONS(891), + [anon_sym_DOLLAR] = ACTIONS(891), + [anon_sym_PERCENT] = ACTIONS(891), + [anon_sym_AMP] = ACTIONS(889), + [anon_sym_SQUOTE] = ACTIONS(891), + [anon_sym_STAR] = ACTIONS(891), + [anon_sym_PLUS] = ACTIONS(891), + [anon_sym_COMMA] = ACTIONS(891), + [anon_sym_DASH] = ACTIONS(889), + [anon_sym_DOT] = ACTIONS(889), + [anon_sym_SLASH] = ACTIONS(891), + [anon_sym_COLON] = ACTIONS(891), + [anon_sym_SEMI] = ACTIONS(891), + [anon_sym_EQ] = ACTIONS(891), + [anon_sym_QMARK] = ACTIONS(891), + [anon_sym_LBRACK] = ACTIONS(895), + [anon_sym_BSLASH] = ACTIONS(897), + [anon_sym_CARET] = ACTIONS(889), + [anon_sym__] = ACTIONS(891), + [anon_sym_BQUOTE] = ACTIONS(891), + [anon_sym_LBRACE] = ACTIONS(899), + [anon_sym_PIPE] = ACTIONS(891), + [anon_sym_TILDE] = ACTIONS(891), + [anon_sym_LPAREN] = ACTIONS(891), + [anon_sym_RPAREN] = ACTIONS(891), + [sym__newline_token] = ACTIONS(901), + [aux_sym_insert_token1] = ACTIONS(903), + [aux_sym_delete_token1] = ACTIONS(905), + [aux_sym_highlight_token1] = ACTIONS(907), + [aux_sym_edit_comment_token1] = ACTIONS(909), + [anon_sym_CARET_LBRACK] = ACTIONS(911), + [anon_sym_LBRACK_CARET] = ACTIONS(913), + [sym_uri_autolink] = ACTIONS(887), + [sym_email_autolink] = ACTIONS(887), + [sym__whitespace_ge_2] = ACTIONS(915), + [aux_sym__whitespace_token1] = ACTIONS(917), + [sym__word_no_digit] = ACTIONS(919), + [sym__digits] = ACTIONS(919), + [anon_sym_DASH_DASH] = ACTIONS(921), + [anon_sym_DASH_DASH_DASH] = ACTIONS(919), + [anon_sym_DOT_DOT_DOT] = ACTIONS(919), + [sym__code_span_start] = ACTIONS(923), + [sym__emphasis_open_star] = ACTIONS(925), + [sym__emphasis_open_underscore] = ACTIONS(927), + [sym__emphasis_close_star] = ACTIONS(2465), + [sym__strikeout_open] = ACTIONS(931), + [sym__latex_span_start] = ACTIONS(933), + [sym__single_quote_open] = ACTIONS(935), + [sym__double_quote_open] = ACTIONS(937), + [sym__superscript_open] = ACTIONS(939), + [sym__subscript_open] = ACTIONS(941), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(943), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(945), + [sym__cite_author_in_text] = ACTIONS(947), + [sym__cite_suppress_author] = ACTIONS(949), + [sym__shortcode_open_escaped] = ACTIONS(951), + [sym__shortcode_open] = ACTIONS(953), + [sym__unclosed_span] = ACTIONS(887), }, - [STATE(131)] = { - [sym_backslash_escape] = STATE(266), - [sym_commonmark_attribute] = STATE(266), - [sym_code_span] = STATE(266), - [sym_latex_span] = STATE(266), - [sym_superscript] = STATE(266), - [sym_subscript] = STATE(266), - [sym_strikeout] = STATE(266), - [sym_quoted_span] = STATE(266), - [sym_inline_note] = STATE(266), - [sym_citation] = STATE(266), - [sym_shortcode_escaped] = STATE(266), - [sym_shortcode] = STATE(266), - [sym_note_reference] = STATE(266), - [sym__link_text] = STATE(375), - [sym__link_text_non_empty] = STATE(376), - [sym_inline_link] = STATE(42), - [sym_image] = STATE(266), - [sym__image_inline_link] = STATE(1042), - [sym__image_description] = STATE(2044), - [sym__image_description_non_empty] = STATE(2044), - [sym_hard_line_break] = STATE(266), - [sym__whitespace] = STATE(1040), - [sym__word] = STATE(1040), - [sym__soft_line_break] = STATE(1043), - [sym__inline_base] = STATE(42), - [sym__text_base] = STATE(266), - [sym__inline_element] = STATE(42), - [sym__emphasis_star] = STATE(602), - [sym__strong_emphasis_star] = STATE(42), - [sym__emphasis_underscore] = STATE(602), - [sym__strong_emphasis_underscore] = STATE(42), - [aux_sym_superscript_repeat1] = STATE(42), - [aux_sym__inline_base_repeat1] = STATE(266), - [sym__backslash_escape] = ACTIONS(559), - [sym_entity_reference] = ACTIONS(561), - [sym_numeric_character_reference] = ACTIONS(561), - [anon_sym_LT] = ACTIONS(563), - [anon_sym_GT] = ACTIONS(565), - [anon_sym_BANG] = ACTIONS(567), - [anon_sym_DQUOTE] = ACTIONS(565), - [anon_sym_POUND] = ACTIONS(565), - [anon_sym_DOLLAR] = ACTIONS(565), - [anon_sym_PERCENT] = ACTIONS(565), - [anon_sym_AMP] = ACTIONS(563), - [anon_sym_SQUOTE] = ACTIONS(565), - [anon_sym_STAR] = ACTIONS(565), - [anon_sym_PLUS] = ACTIONS(565), - [anon_sym_COMMA] = ACTIONS(565), - [anon_sym_DASH] = ACTIONS(563), - [anon_sym_DOT] = ACTIONS(563), - [anon_sym_SLASH] = ACTIONS(565), - [anon_sym_COLON] = ACTIONS(565), - [anon_sym_SEMI] = ACTIONS(565), - [anon_sym_EQ] = ACTIONS(565), - [anon_sym_QMARK] = ACTIONS(565), - [anon_sym_LBRACK] = ACTIONS(569), - [anon_sym_BSLASH] = ACTIONS(571), - [anon_sym_CARET] = ACTIONS(563), - [anon_sym__] = ACTIONS(565), - [anon_sym_BQUOTE] = ACTIONS(565), - [anon_sym_LBRACE] = ACTIONS(573), - [anon_sym_PIPE] = ACTIONS(565), - [anon_sym_TILDE] = ACTIONS(565), - [anon_sym_LPAREN] = ACTIONS(565), - [anon_sym_RPAREN] = ACTIONS(565), - [sym__newline_token] = ACTIONS(575), - [anon_sym_CARET_LBRACK] = ACTIONS(577), - [anon_sym_LBRACK_CARET] = ACTIONS(579), - [sym_uri_autolink] = ACTIONS(561), - [sym_email_autolink] = ACTIONS(561), - [sym__whitespace_ge_2] = ACTIONS(581), - [aux_sym__whitespace_token1] = ACTIONS(583), - [sym__word_no_digit] = ACTIONS(585), - [sym__digits] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(587), - [anon_sym_DASH_DASH_DASH] = ACTIONS(585), - [anon_sym_DOT_DOT_DOT] = ACTIONS(585), - [sym__code_span_start] = ACTIONS(589), - [sym__emphasis_open_star] = ACTIONS(591), - [sym__emphasis_open_underscore] = ACTIONS(593), - [sym__strikeout_open] = ACTIONS(595), - [sym__strikeout_close] = ACTIONS(2055), - [sym__latex_span_start] = ACTIONS(599), - [sym__single_quote_open] = ACTIONS(601), - [sym__double_quote_open] = ACTIONS(603), - [sym__superscript_open] = ACTIONS(605), - [sym__subscript_open] = ACTIONS(607), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(609), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(611), - [sym__cite_author_in_text] = ACTIONS(613), - [sym__cite_suppress_author] = ACTIONS(615), - [sym__shortcode_open_escaped] = ACTIONS(617), - [sym__shortcode_open] = ACTIONS(619), - [sym__unclosed_span] = ACTIONS(561), + [STATE(125)] = { + [sym_backslash_escape] = STATE(379), + [sym_commonmark_attribute] = STATE(379), + [sym_code_span] = STATE(379), + [sym_latex_span] = STATE(379), + [sym_insert] = STATE(379), + [sym_delete] = STATE(379), + [sym_highlight] = STATE(379), + [sym_edit_comment] = STATE(379), + [sym_superscript] = STATE(379), + [sym_subscript] = STATE(379), + [sym_strikeout] = STATE(379), + [sym_quoted_span] = STATE(379), + [sym_inline_note] = STATE(379), + [sym_citation] = STATE(379), + [sym_shortcode_escaped] = STATE(379), + [sym_shortcode] = STATE(379), + [sym_note_reference] = STATE(379), + [sym__link_text] = STATE(545), + [sym__link_text_non_empty] = STATE(546), + [sym_inline_link] = STATE(38), + [sym_image] = STATE(379), + [sym__image_inline_link] = STATE(1390), + [sym__image_description] = STATE(2363), + [sym__image_description_non_empty] = STATE(2363), + [sym_hard_line_break] = STATE(379), + [sym__whitespace] = STATE(1385), + [sym__word] = STATE(1385), + [sym__soft_line_break] = STATE(1391), + [sym__inline_base] = STATE(38), + [sym__text_base] = STATE(379), + [sym__inline_element_no_underscore] = STATE(38), + [aux_sym__inline_no_underscore] = STATE(38), + [sym__emphasis_star] = STATE(1168), + [sym__strong_emphasis_star] = STATE(38), + [sym__emphasis_underscore] = STATE(1168), + [sym__strong_emphasis_underscore] = STATE(38), + [aux_sym__inline_base_repeat1] = STATE(379), + [sym__backslash_escape] = ACTIONS(1059), + [sym_entity_reference] = ACTIONS(1061), + [sym_numeric_character_reference] = ACTIONS(1061), + [anon_sym_LT] = ACTIONS(1063), + [anon_sym_GT] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1067), + [anon_sym_DQUOTE] = ACTIONS(1065), + [anon_sym_POUND] = ACTIONS(1065), + [anon_sym_DOLLAR] = ACTIONS(1065), + [anon_sym_PERCENT] = ACTIONS(1065), + [anon_sym_AMP] = ACTIONS(1063), + [anon_sym_SQUOTE] = ACTIONS(1065), + [anon_sym_STAR] = ACTIONS(1065), + [anon_sym_PLUS] = ACTIONS(1065), + [anon_sym_COMMA] = ACTIONS(1065), + [anon_sym_DASH] = ACTIONS(1063), + [anon_sym_DOT] = ACTIONS(1063), + [anon_sym_SLASH] = ACTIONS(1065), + [anon_sym_COLON] = ACTIONS(1065), + [anon_sym_SEMI] = ACTIONS(1065), + [anon_sym_EQ] = ACTIONS(1065), + [anon_sym_QMARK] = ACTIONS(1065), + [anon_sym_LBRACK] = ACTIONS(1069), + [anon_sym_BSLASH] = ACTIONS(1071), + [anon_sym_CARET] = ACTIONS(1063), + [anon_sym__] = ACTIONS(1065), + [anon_sym_BQUOTE] = ACTIONS(1065), + [anon_sym_LBRACE] = ACTIONS(1073), + [anon_sym_PIPE] = ACTIONS(1065), + [anon_sym_TILDE] = ACTIONS(1065), + [anon_sym_LPAREN] = ACTIONS(1065), + [anon_sym_RPAREN] = ACTIONS(1065), + [sym__newline_token] = ACTIONS(1075), + [aux_sym_insert_token1] = ACTIONS(1077), + [aux_sym_delete_token1] = ACTIONS(1079), + [aux_sym_highlight_token1] = ACTIONS(1081), + [aux_sym_edit_comment_token1] = ACTIONS(1083), + [anon_sym_CARET_LBRACK] = ACTIONS(1085), + [anon_sym_LBRACK_CARET] = ACTIONS(1087), + [sym_uri_autolink] = ACTIONS(1061), + [sym_email_autolink] = ACTIONS(1061), + [sym__whitespace_ge_2] = ACTIONS(1089), + [aux_sym__whitespace_token1] = ACTIONS(1091), + [sym__word_no_digit] = ACTIONS(1093), + [sym__digits] = ACTIONS(1093), + [anon_sym_DASH_DASH] = ACTIONS(1095), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1093), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1093), + [sym__code_span_start] = ACTIONS(1097), + [sym__emphasis_open_star] = ACTIONS(1099), + [sym__emphasis_open_underscore] = ACTIONS(1101), + [sym__emphasis_close_underscore] = ACTIONS(2467), + [sym__strikeout_open] = ACTIONS(1105), + [sym__latex_span_start] = ACTIONS(1107), + [sym__single_quote_open] = ACTIONS(1109), + [sym__double_quote_open] = ACTIONS(1111), + [sym__superscript_open] = ACTIONS(1113), + [sym__subscript_open] = ACTIONS(1115), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1117), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1119), + [sym__cite_author_in_text] = ACTIONS(1121), + [sym__cite_suppress_author] = ACTIONS(1123), + [sym__shortcode_open_escaped] = ACTIONS(1125), + [sym__shortcode_open] = ACTIONS(1127), + [sym__unclosed_span] = ACTIONS(1061), }, - [STATE(132)] = { - [sym_backslash_escape] = STATE(272), - [sym_commonmark_attribute] = STATE(272), - [sym_code_span] = STATE(272), - [sym_latex_span] = STATE(272), - [sym_superscript] = STATE(272), - [sym_subscript] = STATE(272), - [sym_strikeout] = STATE(272), - [sym_quoted_span] = STATE(272), - [sym_inline_note] = STATE(272), - [sym_citation] = STATE(272), - [sym_shortcode_escaped] = STATE(272), - [sym_shortcode] = STATE(272), - [sym_note_reference] = STATE(272), - [sym__link_text] = STATE(401), - [sym__link_text_non_empty] = STATE(402), - [sym_inline_link] = STATE(49), - [sym_image] = STATE(272), - [sym__image_inline_link] = STATE(1136), - [sym__image_description] = STATE(1942), - [sym__image_description_non_empty] = STATE(1942), - [sym_hard_line_break] = STATE(272), - [sym__whitespace] = STATE(1133), - [sym__word] = STATE(1133), - [sym__soft_line_break] = STATE(1137), - [sym__inline_base] = STATE(49), - [sym__text_base] = STATE(272), - [sym__inline_element] = STATE(49), - [sym__emphasis_star] = STATE(902), - [sym__strong_emphasis_star] = STATE(49), - [sym__emphasis_underscore] = STATE(902), - [sym__strong_emphasis_underscore] = STATE(49), - [aux_sym_superscript_repeat1] = STATE(49), - [aux_sym__inline_base_repeat1] = STATE(272), - [sym__backslash_escape] = ACTIONS(625), - [sym_entity_reference] = ACTIONS(627), - [sym_numeric_character_reference] = ACTIONS(627), - [anon_sym_LT] = ACTIONS(629), - [anon_sym_GT] = ACTIONS(631), - [anon_sym_BANG] = ACTIONS(633), - [anon_sym_DQUOTE] = ACTIONS(631), - [anon_sym_POUND] = ACTIONS(631), - [anon_sym_DOLLAR] = ACTIONS(631), - [anon_sym_PERCENT] = ACTIONS(631), - [anon_sym_AMP] = ACTIONS(629), - [anon_sym_SQUOTE] = ACTIONS(631), - [anon_sym_STAR] = ACTIONS(631), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_COMMA] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(629), - [anon_sym_DOT] = ACTIONS(629), - [anon_sym_SLASH] = ACTIONS(631), - [anon_sym_COLON] = ACTIONS(631), - [anon_sym_SEMI] = ACTIONS(631), - [anon_sym_EQ] = ACTIONS(631), - [anon_sym_QMARK] = ACTIONS(631), - [anon_sym_LBRACK] = ACTIONS(635), - [anon_sym_BSLASH] = ACTIONS(637), - [anon_sym_CARET] = ACTIONS(629), - [anon_sym__] = ACTIONS(631), - [anon_sym_BQUOTE] = ACTIONS(631), - [anon_sym_LBRACE] = ACTIONS(639), - [anon_sym_PIPE] = ACTIONS(631), - [anon_sym_TILDE] = ACTIONS(631), - [anon_sym_LPAREN] = ACTIONS(631), - [anon_sym_RPAREN] = ACTIONS(631), - [sym__newline_token] = ACTIONS(641), - [anon_sym_CARET_LBRACK] = ACTIONS(643), - [anon_sym_LBRACK_CARET] = ACTIONS(645), - [sym_uri_autolink] = ACTIONS(627), - [sym_email_autolink] = ACTIONS(627), - [sym__whitespace_ge_2] = ACTIONS(647), - [aux_sym__whitespace_token1] = ACTIONS(649), - [sym__word_no_digit] = ACTIONS(651), - [sym__digits] = ACTIONS(651), - [anon_sym_DASH_DASH] = ACTIONS(653), - [anon_sym_DASH_DASH_DASH] = ACTIONS(651), - [anon_sym_DOT_DOT_DOT] = ACTIONS(651), - [sym__code_span_start] = ACTIONS(655), - [sym__emphasis_open_star] = ACTIONS(657), - [sym__emphasis_open_underscore] = ACTIONS(659), - [sym__strikeout_open] = ACTIONS(661), - [sym__latex_span_start] = ACTIONS(663), - [sym__single_quote_open] = ACTIONS(665), - [sym__single_quote_close] = ACTIONS(2057), - [sym__double_quote_open] = ACTIONS(669), - [sym__superscript_open] = ACTIONS(671), - [sym__subscript_open] = ACTIONS(673), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(675), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(677), - [sym__cite_author_in_text] = ACTIONS(679), - [sym__cite_suppress_author] = ACTIONS(681), - [sym__shortcode_open_escaped] = ACTIONS(683), - [sym__shortcode_open] = ACTIONS(685), - [sym__unclosed_span] = ACTIONS(627), + [STATE(126)] = { + [sym_backslash_escape] = STATE(366), + [sym_commonmark_attribute] = STATE(366), + [sym_code_span] = STATE(366), + [sym_latex_span] = STATE(366), + [sym_insert] = STATE(366), + [sym_delete] = STATE(366), + [sym_highlight] = STATE(366), + [sym_edit_comment] = STATE(366), + [sym_superscript] = STATE(366), + [sym_subscript] = STATE(366), + [sym_strikeout] = STATE(366), + [sym_quoted_span] = STATE(366), + [sym_inline_note] = STATE(366), + [sym_citation] = STATE(366), + [sym_shortcode_escaped] = STATE(366), + [sym_shortcode] = STATE(366), + [sym_note_reference] = STATE(366), + [sym__link_text] = STATE(490), + [sym__link_text_non_empty] = STATE(491), + [sym_inline_link] = STATE(39), + [sym_image] = STATE(366), + [sym__image_inline_link] = STATE(1244), + [sym__image_description] = STATE(2280), + [sym__image_description_non_empty] = STATE(2280), + [sym_hard_line_break] = STATE(366), + [sym__whitespace] = STATE(1218), + [sym__word] = STATE(1218), + [sym__soft_line_break] = STATE(1245), + [sym__inline_base] = STATE(39), + [sym__text_base] = STATE(366), + [sym__inline_element] = STATE(39), + [sym__emphasis_star] = STATE(1270), + [sym__strong_emphasis_star] = STATE(39), + [sym__emphasis_underscore] = STATE(1270), + [sym__strong_emphasis_underscore] = STATE(39), + [aux_sym_insert_repeat1] = STATE(39), + [aux_sym__inline_base_repeat1] = STATE(366), + [sym__backslash_escape] = ACTIONS(2005), + [sym_entity_reference] = ACTIONS(2007), + [sym_numeric_character_reference] = ACTIONS(2007), + [anon_sym_LT] = ACTIONS(2009), + [anon_sym_GT] = ACTIONS(2011), + [anon_sym_BANG] = ACTIONS(2013), + [anon_sym_DQUOTE] = ACTIONS(2011), + [anon_sym_POUND] = ACTIONS(2011), + [anon_sym_DOLLAR] = ACTIONS(2011), + [anon_sym_PERCENT] = ACTIONS(2011), + [anon_sym_AMP] = ACTIONS(2009), + [anon_sym_SQUOTE] = ACTIONS(2011), + [anon_sym_STAR] = ACTIONS(2011), + [anon_sym_PLUS] = ACTIONS(2011), + [anon_sym_COMMA] = ACTIONS(2011), + [anon_sym_DASH] = ACTIONS(2009), + [anon_sym_DOT] = ACTIONS(2009), + [anon_sym_SLASH] = ACTIONS(2011), + [anon_sym_COLON] = ACTIONS(2011), + [anon_sym_SEMI] = ACTIONS(2011), + [anon_sym_EQ] = ACTIONS(2011), + [anon_sym_QMARK] = ACTIONS(2011), + [anon_sym_LBRACK] = ACTIONS(2015), + [anon_sym_BSLASH] = ACTIONS(2017), + [anon_sym_CARET] = ACTIONS(2009), + [anon_sym__] = ACTIONS(2011), + [anon_sym_BQUOTE] = ACTIONS(2011), + [anon_sym_LBRACE] = ACTIONS(2019), + [anon_sym_PIPE] = ACTIONS(2011), + [anon_sym_TILDE] = ACTIONS(2011), + [anon_sym_LPAREN] = ACTIONS(2011), + [anon_sym_RPAREN] = ACTIONS(2011), + [sym__newline_token] = ACTIONS(2021), + [aux_sym_insert_token1] = ACTIONS(2023), + [aux_sym_delete_token1] = ACTIONS(2025), + [aux_sym_highlight_token1] = ACTIONS(2027), + [aux_sym_edit_comment_token1] = ACTIONS(2029), + [anon_sym_CARET_LBRACK] = ACTIONS(2031), + [anon_sym_LBRACK_CARET] = ACTIONS(2033), + [sym_uri_autolink] = ACTIONS(2007), + [sym_email_autolink] = ACTIONS(2007), + [sym__whitespace_ge_2] = ACTIONS(2035), + [aux_sym__whitespace_token1] = ACTIONS(2037), + [sym__word_no_digit] = ACTIONS(2039), + [sym__digits] = ACTIONS(2039), + [anon_sym_DASH_DASH] = ACTIONS(2041), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2039), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2039), + [sym__code_span_start] = ACTIONS(2043), + [sym__emphasis_open_star] = ACTIONS(2045), + [sym__emphasis_open_underscore] = ACTIONS(2047), + [sym__strikeout_open] = ACTIONS(2049), + [sym__strikeout_close] = ACTIONS(2469), + [sym__latex_span_start] = ACTIONS(2053), + [sym__single_quote_open] = ACTIONS(2055), + [sym__double_quote_open] = ACTIONS(2057), + [sym__superscript_open] = ACTIONS(2059), + [sym__subscript_open] = ACTIONS(2061), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2063), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2065), + [sym__cite_author_in_text] = ACTIONS(2067), + [sym__cite_suppress_author] = ACTIONS(2069), + [sym__shortcode_open_escaped] = ACTIONS(2071), + [sym__shortcode_open] = ACTIONS(2073), + [sym__unclosed_span] = ACTIONS(2007), }, - [STATE(133)] = { - [sym_backslash_escape] = STATE(277), - [sym_commonmark_attribute] = STATE(277), - [sym_code_span] = STATE(277), - [sym_latex_span] = STATE(277), - [sym_superscript] = STATE(277), - [sym_subscript] = STATE(277), - [sym_strikeout] = STATE(277), - [sym_quoted_span] = STATE(277), - [sym_inline_note] = STATE(277), - [sym_citation] = STATE(277), - [sym_shortcode_escaped] = STATE(277), - [sym_shortcode] = STATE(277), - [sym_note_reference] = STATE(277), - [sym__link_text] = STATE(427), - [sym__link_text_non_empty] = STATE(428), + [STATE(127)] = { + [sym_backslash_escape] = STATE(375), + [sym_commonmark_attribute] = STATE(375), + [sym_code_span] = STATE(375), + [sym_latex_span] = STATE(375), + [sym_insert] = STATE(375), + [sym_delete] = STATE(375), + [sym_highlight] = STATE(375), + [sym_edit_comment] = STATE(375), + [sym_superscript] = STATE(375), + [sym_subscript] = STATE(375), + [sym_strikeout] = STATE(375), + [sym_quoted_span] = STATE(375), + [sym_inline_note] = STATE(375), + [sym_citation] = STATE(375), + [sym_shortcode_escaped] = STATE(375), + [sym_shortcode] = STATE(375), + [sym_note_reference] = STATE(375), + [sym__link_text] = STATE(525), + [sym__link_text_non_empty] = STATE(527), + [sym_inline_link] = STATE(47), + [sym_image] = STATE(375), + [sym__image_inline_link] = STATE(972), + [sym__image_description] = STATE(2286), + [sym__image_description_non_empty] = STATE(2286), + [sym_hard_line_break] = STATE(375), + [sym__whitespace] = STATE(949), + [sym__word] = STATE(949), + [sym__soft_line_break] = STATE(973), + [sym__inline_base] = STATE(47), + [sym__text_base] = STATE(375), + [sym__inline_element] = STATE(47), + [sym__emphasis_star] = STATE(1392), + [sym__strong_emphasis_star] = STATE(47), + [sym__emphasis_underscore] = STATE(1392), + [sym__strong_emphasis_underscore] = STATE(47), + [aux_sym_insert_repeat1] = STATE(47), + [aux_sym__inline_base_repeat1] = STATE(375), + [sym__backslash_escape] = ACTIONS(2179), + [sym_entity_reference] = ACTIONS(2181), + [sym_numeric_character_reference] = ACTIONS(2181), + [anon_sym_LT] = ACTIONS(2183), + [anon_sym_GT] = ACTIONS(2185), + [anon_sym_BANG] = ACTIONS(2187), + [anon_sym_DQUOTE] = ACTIONS(2185), + [anon_sym_POUND] = ACTIONS(2185), + [anon_sym_DOLLAR] = ACTIONS(2185), + [anon_sym_PERCENT] = ACTIONS(2185), + [anon_sym_AMP] = ACTIONS(2183), + [anon_sym_SQUOTE] = ACTIONS(2185), + [anon_sym_STAR] = ACTIONS(2185), + [anon_sym_PLUS] = ACTIONS(2185), + [anon_sym_COMMA] = ACTIONS(2185), + [anon_sym_DASH] = ACTIONS(2183), + [anon_sym_DOT] = ACTIONS(2183), + [anon_sym_SLASH] = ACTIONS(2185), + [anon_sym_COLON] = ACTIONS(2185), + [anon_sym_SEMI] = ACTIONS(2185), + [anon_sym_EQ] = ACTIONS(2185), + [anon_sym_QMARK] = ACTIONS(2185), + [anon_sym_LBRACK] = ACTIONS(2189), + [anon_sym_BSLASH] = ACTIONS(2191), + [anon_sym_CARET] = ACTIONS(2183), + [anon_sym__] = ACTIONS(2185), + [anon_sym_BQUOTE] = ACTIONS(2185), + [anon_sym_LBRACE] = ACTIONS(2193), + [anon_sym_PIPE] = ACTIONS(2185), + [anon_sym_TILDE] = ACTIONS(2185), + [anon_sym_LPAREN] = ACTIONS(2185), + [anon_sym_RPAREN] = ACTIONS(2185), + [sym__newline_token] = ACTIONS(2195), + [aux_sym_insert_token1] = ACTIONS(2197), + [aux_sym_delete_token1] = ACTIONS(2199), + [aux_sym_highlight_token1] = ACTIONS(2201), + [aux_sym_edit_comment_token1] = ACTIONS(2203), + [anon_sym_CARET_LBRACK] = ACTIONS(2205), + [anon_sym_LBRACK_CARET] = ACTIONS(2207), + [sym_uri_autolink] = ACTIONS(2181), + [sym_email_autolink] = ACTIONS(2181), + [sym__whitespace_ge_2] = ACTIONS(2209), + [aux_sym__whitespace_token1] = ACTIONS(2211), + [sym__word_no_digit] = ACTIONS(2213), + [sym__digits] = ACTIONS(2213), + [anon_sym_DASH_DASH] = ACTIONS(2215), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2213), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2213), + [sym__code_span_start] = ACTIONS(2217), + [sym__emphasis_open_star] = ACTIONS(2219), + [sym__emphasis_open_underscore] = ACTIONS(2221), + [sym__strikeout_open] = ACTIONS(2223), + [sym__latex_span_start] = ACTIONS(2225), + [sym__single_quote_open] = ACTIONS(2227), + [sym__single_quote_close] = ACTIONS(2471), + [sym__double_quote_open] = ACTIONS(2229), + [sym__superscript_open] = ACTIONS(2231), + [sym__subscript_open] = ACTIONS(2233), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2235), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2237), + [sym__cite_author_in_text] = ACTIONS(2239), + [sym__cite_suppress_author] = ACTIONS(2241), + [sym__shortcode_open_escaped] = ACTIONS(2243), + [sym__shortcode_open] = ACTIONS(2245), + [sym__unclosed_span] = ACTIONS(2181), + }, + [STATE(128)] = { + [sym_backslash_escape] = STATE(383), + [sym_commonmark_attribute] = STATE(383), + [sym_code_span] = STATE(383), + [sym_latex_span] = STATE(383), + [sym_insert] = STATE(383), + [sym_delete] = STATE(383), + [sym_highlight] = STATE(383), + [sym_edit_comment] = STATE(383), + [sym_superscript] = STATE(383), + [sym_subscript] = STATE(383), + [sym_strikeout] = STATE(383), + [sym_quoted_span] = STATE(383), + [sym_inline_note] = STATE(383), + [sym_citation] = STATE(383), + [sym_shortcode_escaped] = STATE(383), + [sym_shortcode] = STATE(383), + [sym_note_reference] = STATE(383), + [sym__link_text] = STATE(395), + [sym__link_text_non_empty] = STATE(396), [sym_inline_link] = STATE(50), - [sym_image] = STATE(277), - [sym__image_inline_link] = STATE(613), - [sym__image_description] = STATE(1930), - [sym__image_description_non_empty] = STATE(1930), - [sym_hard_line_break] = STATE(277), - [sym__whitespace] = STATE(610), - [sym__word] = STATE(610), - [sym__soft_line_break] = STATE(614), + [sym_image] = STATE(383), + [sym__image_inline_link] = STATE(1263), + [sym__image_description] = STATE(2300), + [sym__image_description_non_empty] = STATE(2300), + [sym_hard_line_break] = STATE(383), + [sym__whitespace] = STATE(1259), + [sym__word] = STATE(1259), + [sym__soft_line_break] = STATE(1264), [sym__inline_base] = STATE(50), - [sym__text_base] = STATE(277), + [sym__text_base] = STATE(383), [sym__inline_element] = STATE(50), - [sym__emphasis_star] = STATE(1044), + [sym__emphasis_star] = STATE(1249), [sym__strong_emphasis_star] = STATE(50), - [sym__emphasis_underscore] = STATE(1044), + [sym__emphasis_underscore] = STATE(1249), [sym__strong_emphasis_underscore] = STATE(50), - [aux_sym_superscript_repeat1] = STATE(50), - [aux_sym__inline_base_repeat1] = STATE(277), - [sym__backslash_escape] = ACTIONS(687), - [sym_entity_reference] = ACTIONS(689), - [sym_numeric_character_reference] = ACTIONS(689), - [anon_sym_LT] = ACTIONS(691), - [anon_sym_GT] = ACTIONS(693), - [anon_sym_BANG] = ACTIONS(695), - [anon_sym_DQUOTE] = ACTIONS(693), - [anon_sym_POUND] = ACTIONS(693), - [anon_sym_DOLLAR] = ACTIONS(693), - [anon_sym_PERCENT] = ACTIONS(693), - [anon_sym_AMP] = ACTIONS(691), - [anon_sym_SQUOTE] = ACTIONS(693), - [anon_sym_STAR] = ACTIONS(693), - [anon_sym_PLUS] = ACTIONS(693), - [anon_sym_COMMA] = ACTIONS(693), - [anon_sym_DASH] = ACTIONS(691), - [anon_sym_DOT] = ACTIONS(691), - [anon_sym_SLASH] = ACTIONS(693), - [anon_sym_COLON] = ACTIONS(693), - [anon_sym_SEMI] = ACTIONS(693), - [anon_sym_EQ] = ACTIONS(693), - [anon_sym_QMARK] = ACTIONS(693), - [anon_sym_LBRACK] = ACTIONS(697), - [anon_sym_BSLASH] = ACTIONS(699), - [anon_sym_CARET] = ACTIONS(691), - [anon_sym__] = ACTIONS(693), - [anon_sym_BQUOTE] = ACTIONS(693), - [anon_sym_LBRACE] = ACTIONS(701), - [anon_sym_PIPE] = ACTIONS(693), - [anon_sym_TILDE] = ACTIONS(693), - [anon_sym_LPAREN] = ACTIONS(693), - [anon_sym_RPAREN] = ACTIONS(693), - [sym__newline_token] = ACTIONS(703), - [anon_sym_CARET_LBRACK] = ACTIONS(705), - [anon_sym_LBRACK_CARET] = ACTIONS(707), - [sym_uri_autolink] = ACTIONS(689), - [sym_email_autolink] = ACTIONS(689), - [sym__whitespace_ge_2] = ACTIONS(709), - [aux_sym__whitespace_token1] = ACTIONS(711), - [sym__word_no_digit] = ACTIONS(713), - [sym__digits] = ACTIONS(713), - [anon_sym_DASH_DASH] = ACTIONS(715), - [anon_sym_DASH_DASH_DASH] = ACTIONS(713), - [anon_sym_DOT_DOT_DOT] = ACTIONS(713), - [sym__code_span_start] = ACTIONS(717), - [sym__emphasis_open_star] = ACTIONS(719), - [sym__emphasis_open_underscore] = ACTIONS(721), - [sym__strikeout_open] = ACTIONS(723), - [sym__latex_span_start] = ACTIONS(725), - [sym__single_quote_open] = ACTIONS(727), - [sym__double_quote_open] = ACTIONS(729), - [sym__double_quote_close] = ACTIONS(2057), - [sym__superscript_open] = ACTIONS(731), - [sym__subscript_open] = ACTIONS(733), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(735), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(737), - [sym__cite_author_in_text] = ACTIONS(739), - [sym__cite_suppress_author] = ACTIONS(741), - [sym__shortcode_open_escaped] = ACTIONS(743), - [sym__shortcode_open] = ACTIONS(745), - [sym__unclosed_span] = ACTIONS(689), - }, - [STATE(134)] = { - [sym_backslash_escape] = STATE(262), - [sym_commonmark_attribute] = STATE(262), - [sym_code_span] = STATE(262), - [sym_latex_span] = STATE(262), - [sym_superscript] = STATE(262), - [sym_subscript] = STATE(262), - [sym_strikeout] = STATE(262), - [sym_quoted_span] = STATE(262), - [sym_inline_note] = STATE(262), - [sym_citation] = STATE(262), - [sym_shortcode_escaped] = STATE(262), - [sym_shortcode] = STATE(262), - [sym_note_reference] = STATE(262), - [sym__link_text] = STATE(313), - [sym__link_text_non_empty] = STATE(314), - [sym_inline_link] = STATE(51), - [sym_image] = STATE(262), - [sym__image_inline_link] = STATE(708), - [sym__image_description] = STATE(1970), - [sym__image_description_non_empty] = STATE(1970), - [sym_hard_line_break] = STATE(262), - [sym__whitespace] = STATE(705), - [sym__word] = STATE(705), - [sym__soft_line_break] = STATE(709), - [sym__inline_base] = STATE(51), - [sym__text_base] = STATE(262), - [sym__inline_element] = STATE(51), - [sym__emphasis_star] = STATE(1138), - [sym__strong_emphasis_star] = STATE(51), - [sym__emphasis_underscore] = STATE(1138), - [sym__strong_emphasis_underscore] = STATE(51), - [aux_sym_superscript_repeat1] = STATE(51), - [aux_sym__inline_base_repeat1] = STATE(262), - [sym__backslash_escape] = ACTIONS(747), - [sym_entity_reference] = ACTIONS(749), - [sym_numeric_character_reference] = ACTIONS(749), - [anon_sym_LT] = ACTIONS(751), - [anon_sym_GT] = ACTIONS(753), - [anon_sym_BANG] = ACTIONS(755), - [anon_sym_DQUOTE] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(753), - [anon_sym_DOLLAR] = ACTIONS(753), - [anon_sym_PERCENT] = ACTIONS(753), - [anon_sym_AMP] = ACTIONS(751), - [anon_sym_SQUOTE] = ACTIONS(753), - [anon_sym_STAR] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(753), - [anon_sym_COMMA] = ACTIONS(753), - [anon_sym_DASH] = ACTIONS(751), - [anon_sym_DOT] = ACTIONS(751), - [anon_sym_SLASH] = ACTIONS(753), - [anon_sym_COLON] = ACTIONS(753), - [anon_sym_SEMI] = ACTIONS(753), - [anon_sym_EQ] = ACTIONS(753), - [anon_sym_QMARK] = ACTIONS(753), - [anon_sym_LBRACK] = ACTIONS(757), - [anon_sym_BSLASH] = ACTIONS(759), - [anon_sym_CARET] = ACTIONS(751), - [anon_sym__] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(753), - [anon_sym_LBRACE] = ACTIONS(761), - [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_TILDE] = ACTIONS(753), - [anon_sym_LPAREN] = ACTIONS(753), - [anon_sym_RPAREN] = ACTIONS(753), - [sym__newline_token] = ACTIONS(763), - [anon_sym_CARET_LBRACK] = ACTIONS(765), - [anon_sym_LBRACK_CARET] = ACTIONS(767), - [sym_uri_autolink] = ACTIONS(749), - [sym_email_autolink] = ACTIONS(749), - [sym__whitespace_ge_2] = ACTIONS(769), - [aux_sym__whitespace_token1] = ACTIONS(771), - [sym__word_no_digit] = ACTIONS(773), - [sym__digits] = ACTIONS(773), - [anon_sym_DASH_DASH] = ACTIONS(775), - [anon_sym_DASH_DASH_DASH] = ACTIONS(773), - [anon_sym_DOT_DOT_DOT] = ACTIONS(773), - [sym__code_span_start] = ACTIONS(777), - [sym__emphasis_open_star] = ACTIONS(779), - [sym__emphasis_open_underscore] = ACTIONS(781), - [sym__strikeout_open] = ACTIONS(783), - [sym__latex_span_start] = ACTIONS(785), - [sym__single_quote_open] = ACTIONS(787), - [sym__double_quote_open] = ACTIONS(789), - [sym__superscript_open] = ACTIONS(791), - [sym__superscript_close] = ACTIONS(2059), - [sym__subscript_open] = ACTIONS(795), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(797), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(799), - [sym__cite_author_in_text] = ACTIONS(801), - [sym__cite_suppress_author] = ACTIONS(803), - [sym__shortcode_open_escaped] = ACTIONS(805), - [sym__shortcode_open] = ACTIONS(807), - [sym__unclosed_span] = ACTIONS(749), + [aux_sym_insert_repeat1] = STATE(50), + [aux_sym__inline_base_repeat1] = STATE(383), + [sym__backslash_escape] = ACTIONS(637), + [sym_entity_reference] = ACTIONS(639), + [sym_numeric_character_reference] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_GT] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(645), + [anon_sym_DQUOTE] = ACTIONS(643), + [anon_sym_POUND] = ACTIONS(643), + [anon_sym_DOLLAR] = ACTIONS(643), + [anon_sym_PERCENT] = ACTIONS(643), + [anon_sym_AMP] = ACTIONS(641), + [anon_sym_SQUOTE] = ACTIONS(643), + [anon_sym_STAR] = ACTIONS(643), + [anon_sym_PLUS] = ACTIONS(643), + [anon_sym_COMMA] = ACTIONS(643), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_DOT] = ACTIONS(641), + [anon_sym_SLASH] = ACTIONS(643), + [anon_sym_COLON] = ACTIONS(643), + [anon_sym_SEMI] = ACTIONS(643), + [anon_sym_EQ] = ACTIONS(643), + [anon_sym_QMARK] = ACTIONS(643), + [anon_sym_LBRACK] = ACTIONS(647), + [anon_sym_BSLASH] = ACTIONS(649), + [anon_sym_CARET] = ACTIONS(641), + [anon_sym__] = ACTIONS(643), + [anon_sym_BQUOTE] = ACTIONS(643), + [anon_sym_LBRACE] = ACTIONS(651), + [anon_sym_PIPE] = ACTIONS(643), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_LPAREN] = ACTIONS(643), + [anon_sym_RPAREN] = ACTIONS(643), + [sym__newline_token] = ACTIONS(653), + [aux_sym_insert_token1] = ACTIONS(655), + [aux_sym_delete_token1] = ACTIONS(657), + [aux_sym_highlight_token1] = ACTIONS(659), + [aux_sym_edit_comment_token1] = ACTIONS(661), + [anon_sym_CARET_LBRACK] = ACTIONS(663), + [anon_sym_LBRACK_CARET] = ACTIONS(665), + [sym_uri_autolink] = ACTIONS(639), + [sym_email_autolink] = ACTIONS(639), + [sym__whitespace_ge_2] = ACTIONS(667), + [aux_sym__whitespace_token1] = ACTIONS(669), + [sym__word_no_digit] = ACTIONS(671), + [sym__digits] = ACTIONS(671), + [anon_sym_DASH_DASH] = ACTIONS(673), + [anon_sym_DASH_DASH_DASH] = ACTIONS(671), + [anon_sym_DOT_DOT_DOT] = ACTIONS(671), + [sym__code_span_start] = ACTIONS(675), + [sym__emphasis_open_star] = ACTIONS(677), + [sym__emphasis_open_underscore] = ACTIONS(679), + [sym__strikeout_open] = ACTIONS(681), + [sym__latex_span_start] = ACTIONS(683), + [sym__single_quote_open] = ACTIONS(685), + [sym__double_quote_open] = ACTIONS(687), + [sym__double_quote_close] = ACTIONS(2471), + [sym__superscript_open] = ACTIONS(691), + [sym__subscript_open] = ACTIONS(693), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(695), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(697), + [sym__cite_author_in_text] = ACTIONS(699), + [sym__cite_suppress_author] = ACTIONS(701), + [sym__shortcode_open_escaped] = ACTIONS(703), + [sym__shortcode_open] = ACTIONS(705), + [sym__unclosed_span] = ACTIONS(639), }, - [STATE(135)] = { - [sym_backslash_escape] = STATE(270), - [sym_commonmark_attribute] = STATE(270), - [sym_code_span] = STATE(270), - [sym_latex_span] = STATE(270), - [sym_superscript] = STATE(270), - [sym_subscript] = STATE(270), - [sym_strikeout] = STATE(270), - [sym_quoted_span] = STATE(270), - [sym_inline_note] = STATE(270), - [sym_citation] = STATE(270), - [sym_shortcode_escaped] = STATE(270), - [sym_shortcode] = STATE(270), - [sym_note_reference] = STATE(270), - [sym__link_text] = STATE(359), - [sym__link_text_non_empty] = STATE(364), + [STATE(129)] = { + [sym_backslash_escape] = STATE(365), + [sym_commonmark_attribute] = STATE(365), + [sym_code_span] = STATE(365), + [sym_latex_span] = STATE(365), + [sym_insert] = STATE(365), + [sym_delete] = STATE(365), + [sym_highlight] = STATE(365), + [sym_edit_comment] = STATE(365), + [sym_superscript] = STATE(365), + [sym_subscript] = STATE(365), + [sym_strikeout] = STATE(365), + [sym_quoted_span] = STATE(365), + [sym_inline_note] = STATE(365), + [sym_citation] = STATE(365), + [sym_shortcode_escaped] = STATE(365), + [sym_shortcode] = STATE(365), + [sym_note_reference] = STATE(365), + [sym__link_text] = STATE(416), + [sym__link_text_non_empty] = STATE(417), [sym_inline_link] = STATE(52), - [sym_image] = STATE(270), - [sym__image_inline_link] = STATE(795), - [sym__image_description] = STATE(1984), - [sym__image_description_non_empty] = STATE(1984), - [sym_hard_line_break] = STATE(270), - [sym__whitespace] = STATE(792), - [sym__word] = STATE(792), - [sym__soft_line_break] = STATE(796), + [sym_image] = STATE(365), + [sym__image_inline_link] = STATE(712), + [sym__image_description] = STATE(2314), + [sym__image_description_non_empty] = STATE(2314), + [sym_hard_line_break] = STATE(365), + [sym__whitespace] = STATE(709), + [sym__word] = STATE(709), + [sym__soft_line_break] = STATE(713), [sym__inline_base] = STATE(52), - [sym__text_base] = STATE(270), + [sym__text_base] = STATE(365), [sym__inline_element] = STATE(52), - [sym__emphasis_star] = STATE(615), + [sym__emphasis_star] = STATE(979), [sym__strong_emphasis_star] = STATE(52), - [sym__emphasis_underscore] = STATE(615), + [sym__emphasis_underscore] = STATE(979), [sym__strong_emphasis_underscore] = STATE(52), - [aux_sym_superscript_repeat1] = STATE(52), - [aux_sym__inline_base_repeat1] = STATE(270), - [sym__backslash_escape] = ACTIONS(809), - [sym_entity_reference] = ACTIONS(811), - [sym_numeric_character_reference] = ACTIONS(811), - [anon_sym_LT] = ACTIONS(813), - [anon_sym_GT] = ACTIONS(815), - [anon_sym_BANG] = ACTIONS(817), - [anon_sym_DQUOTE] = ACTIONS(815), - [anon_sym_POUND] = ACTIONS(815), - [anon_sym_DOLLAR] = ACTIONS(815), - [anon_sym_PERCENT] = ACTIONS(815), - [anon_sym_AMP] = ACTIONS(813), - [anon_sym_SQUOTE] = ACTIONS(815), - [anon_sym_STAR] = ACTIONS(815), - [anon_sym_PLUS] = ACTIONS(815), - [anon_sym_COMMA] = ACTIONS(815), - [anon_sym_DASH] = ACTIONS(813), - [anon_sym_DOT] = ACTIONS(813), - [anon_sym_SLASH] = ACTIONS(815), - [anon_sym_COLON] = ACTIONS(815), - [anon_sym_SEMI] = ACTIONS(815), - [anon_sym_EQ] = ACTIONS(815), - [anon_sym_QMARK] = ACTIONS(815), - [anon_sym_LBRACK] = ACTIONS(819), - [anon_sym_BSLASH] = ACTIONS(821), - [anon_sym_CARET] = ACTIONS(813), - [anon_sym__] = ACTIONS(815), - [anon_sym_BQUOTE] = ACTIONS(815), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_PIPE] = ACTIONS(815), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_RPAREN] = ACTIONS(815), - [sym__newline_token] = ACTIONS(825), - [anon_sym_CARET_LBRACK] = ACTIONS(827), - [anon_sym_LBRACK_CARET] = ACTIONS(829), - [sym_uri_autolink] = ACTIONS(811), - [sym_email_autolink] = ACTIONS(811), - [sym__whitespace_ge_2] = ACTIONS(831), - [aux_sym__whitespace_token1] = ACTIONS(833), - [sym__word_no_digit] = ACTIONS(835), - [sym__digits] = ACTIONS(835), - [anon_sym_DASH_DASH] = ACTIONS(837), - [anon_sym_DASH_DASH_DASH] = ACTIONS(835), - [anon_sym_DOT_DOT_DOT] = ACTIONS(835), - [sym__code_span_start] = ACTIONS(839), - [sym__emphasis_open_star] = ACTIONS(841), - [sym__emphasis_open_underscore] = ACTIONS(843), - [sym__strikeout_open] = ACTIONS(845), - [sym__latex_span_start] = ACTIONS(847), - [sym__single_quote_open] = ACTIONS(849), - [sym__double_quote_open] = ACTIONS(851), - [sym__superscript_open] = ACTIONS(853), - [sym__subscript_open] = ACTIONS(855), - [sym__subscript_close] = ACTIONS(2061), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(859), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(861), - [sym__cite_author_in_text] = ACTIONS(863), - [sym__cite_suppress_author] = ACTIONS(865), - [sym__shortcode_open_escaped] = ACTIONS(867), - [sym__shortcode_open] = ACTIONS(869), - [sym__unclosed_span] = ACTIONS(811), + [aux_sym_insert_repeat1] = STATE(52), + [aux_sym__inline_base_repeat1] = STATE(365), + [sym__backslash_escape] = ACTIONS(1341), + [sym_entity_reference] = ACTIONS(1343), + [sym_numeric_character_reference] = ACTIONS(1343), + [anon_sym_LT] = ACTIONS(1345), + [anon_sym_GT] = ACTIONS(1347), + [anon_sym_BANG] = ACTIONS(1349), + [anon_sym_DQUOTE] = ACTIONS(1347), + [anon_sym_POUND] = ACTIONS(1347), + [anon_sym_DOLLAR] = ACTIONS(1347), + [anon_sym_PERCENT] = ACTIONS(1347), + [anon_sym_AMP] = ACTIONS(1345), + [anon_sym_SQUOTE] = ACTIONS(1347), + [anon_sym_STAR] = ACTIONS(1347), + [anon_sym_PLUS] = ACTIONS(1347), + [anon_sym_COMMA] = ACTIONS(1347), + [anon_sym_DASH] = ACTIONS(1345), + [anon_sym_DOT] = ACTIONS(1345), + [anon_sym_SLASH] = ACTIONS(1347), + [anon_sym_COLON] = ACTIONS(1347), + [anon_sym_SEMI] = ACTIONS(1347), + [anon_sym_EQ] = ACTIONS(1347), + [anon_sym_QMARK] = ACTIONS(1347), + [anon_sym_LBRACK] = ACTIONS(1351), + [anon_sym_BSLASH] = ACTIONS(1353), + [anon_sym_CARET] = ACTIONS(1345), + [anon_sym__] = ACTIONS(1347), + [anon_sym_BQUOTE] = ACTIONS(1347), + [anon_sym_LBRACE] = ACTIONS(1355), + [anon_sym_PIPE] = ACTIONS(1347), + [anon_sym_TILDE] = ACTIONS(1347), + [anon_sym_LPAREN] = ACTIONS(1347), + [anon_sym_RPAREN] = ACTIONS(1347), + [sym__newline_token] = ACTIONS(1357), + [aux_sym_insert_token1] = ACTIONS(1359), + [aux_sym_delete_token1] = ACTIONS(1361), + [aux_sym_highlight_token1] = ACTIONS(1363), + [aux_sym_edit_comment_token1] = ACTIONS(1365), + [anon_sym_CARET_LBRACK] = ACTIONS(1367), + [anon_sym_LBRACK_CARET] = ACTIONS(1369), + [sym_uri_autolink] = ACTIONS(1343), + [sym_email_autolink] = ACTIONS(1343), + [sym__whitespace_ge_2] = ACTIONS(1371), + [aux_sym__whitespace_token1] = ACTIONS(1373), + [sym__word_no_digit] = ACTIONS(1375), + [sym__digits] = ACTIONS(1375), + [anon_sym_DASH_DASH] = ACTIONS(1377), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1375), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1375), + [sym__code_span_start] = ACTIONS(1379), + [sym__emphasis_open_star] = ACTIONS(1381), + [sym__emphasis_open_underscore] = ACTIONS(1383), + [sym__strikeout_open] = ACTIONS(1385), + [sym__latex_span_start] = ACTIONS(1387), + [sym__single_quote_open] = ACTIONS(1389), + [sym__double_quote_open] = ACTIONS(1391), + [sym__superscript_open] = ACTIONS(1393), + [sym__superscript_close] = ACTIONS(2473), + [sym__subscript_open] = ACTIONS(1397), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1399), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1401), + [sym__cite_author_in_text] = ACTIONS(1403), + [sym__cite_suppress_author] = ACTIONS(1405), + [sym__shortcode_open_escaped] = ACTIONS(1407), + [sym__shortcode_open] = ACTIONS(1409), + [sym__unclosed_span] = ACTIONS(1343), + }, + [STATE(130)] = { + [sym_backslash_escape] = STATE(367), + [sym_commonmark_attribute] = STATE(367), + [sym_code_span] = STATE(367), + [sym_latex_span] = STATE(367), + [sym_insert] = STATE(367), + [sym_delete] = STATE(367), + [sym_highlight] = STATE(367), + [sym_edit_comment] = STATE(367), + [sym_superscript] = STATE(367), + [sym_subscript] = STATE(367), + [sym_strikeout] = STATE(367), + [sym_quoted_span] = STATE(367), + [sym_inline_note] = STATE(367), + [sym_citation] = STATE(367), + [sym_shortcode_escaped] = STATE(367), + [sym_shortcode] = STATE(367), + [sym_note_reference] = STATE(367), + [sym__link_text] = STATE(435), + [sym__link_text_non_empty] = STATE(436), + [sym_inline_link] = STATE(55), + [sym_image] = STATE(367), + [sym__image_inline_link] = STATE(819), + [sym__image_description] = STATE(2328), + [sym__image_description_non_empty] = STATE(2328), + [sym_hard_line_break] = STATE(367), + [sym__whitespace] = STATE(816), + [sym__word] = STATE(816), + [sym__soft_line_break] = STATE(820), + [sym__inline_base] = STATE(55), + [sym__text_base] = STATE(367), + [sym__inline_element] = STATE(55), + [sym__emphasis_star] = STATE(1271), + [sym__strong_emphasis_star] = STATE(55), + [sym__emphasis_underscore] = STATE(1271), + [sym__strong_emphasis_underscore] = STATE(55), + [aux_sym_insert_repeat1] = STATE(55), + [aux_sym__inline_base_repeat1] = STATE(367), + [sym__backslash_escape] = ACTIONS(1413), + [sym_entity_reference] = ACTIONS(1415), + [sym_numeric_character_reference] = ACTIONS(1415), + [anon_sym_LT] = ACTIONS(1417), + [anon_sym_GT] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1419), + [anon_sym_POUND] = ACTIONS(1419), + [anon_sym_DOLLAR] = ACTIONS(1419), + [anon_sym_PERCENT] = ACTIONS(1419), + [anon_sym_AMP] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [anon_sym_STAR] = ACTIONS(1419), + [anon_sym_PLUS] = ACTIONS(1419), + [anon_sym_COMMA] = ACTIONS(1419), + [anon_sym_DASH] = ACTIONS(1417), + [anon_sym_DOT] = ACTIONS(1417), + [anon_sym_SLASH] = ACTIONS(1419), + [anon_sym_COLON] = ACTIONS(1419), + [anon_sym_SEMI] = ACTIONS(1419), + [anon_sym_EQ] = ACTIONS(1419), + [anon_sym_QMARK] = ACTIONS(1419), + [anon_sym_LBRACK] = ACTIONS(1423), + [anon_sym_BSLASH] = ACTIONS(1425), + [anon_sym_CARET] = ACTIONS(1417), + [anon_sym__] = ACTIONS(1419), + [anon_sym_BQUOTE] = ACTIONS(1419), + [anon_sym_LBRACE] = ACTIONS(1427), + [anon_sym_PIPE] = ACTIONS(1419), + [anon_sym_TILDE] = ACTIONS(1419), + [anon_sym_LPAREN] = ACTIONS(1419), + [anon_sym_RPAREN] = ACTIONS(1419), + [sym__newline_token] = ACTIONS(1429), + [aux_sym_insert_token1] = ACTIONS(1431), + [aux_sym_delete_token1] = ACTIONS(1433), + [aux_sym_highlight_token1] = ACTIONS(1435), + [aux_sym_edit_comment_token1] = ACTIONS(1437), + [anon_sym_CARET_LBRACK] = ACTIONS(1439), + [anon_sym_LBRACK_CARET] = ACTIONS(1441), + [sym_uri_autolink] = ACTIONS(1415), + [sym_email_autolink] = ACTIONS(1415), + [sym__whitespace_ge_2] = ACTIONS(1443), + [aux_sym__whitespace_token1] = ACTIONS(1445), + [sym__word_no_digit] = ACTIONS(1447), + [sym__digits] = ACTIONS(1447), + [anon_sym_DASH_DASH] = ACTIONS(1449), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1447), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1447), + [sym__code_span_start] = ACTIONS(1451), + [sym__emphasis_open_star] = ACTIONS(1453), + [sym__emphasis_open_underscore] = ACTIONS(1455), + [sym__strikeout_open] = ACTIONS(1457), + [sym__latex_span_start] = ACTIONS(1459), + [sym__single_quote_open] = ACTIONS(1461), + [sym__double_quote_open] = ACTIONS(1463), + [sym__superscript_open] = ACTIONS(1465), + [sym__subscript_open] = ACTIONS(1467), + [sym__subscript_close] = ACTIONS(2475), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1471), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1473), + [sym__cite_author_in_text] = ACTIONS(1475), + [sym__cite_suppress_author] = ACTIONS(1477), + [sym__shortcode_open_escaped] = ACTIONS(1479), + [sym__shortcode_open] = ACTIONS(1481), + [sym__unclosed_span] = ACTIONS(1415), + }, + [STATE(131)] = { + [sym_backslash_escape] = STATE(372), + [sym_commonmark_attribute] = STATE(372), + [sym_code_span] = STATE(372), + [sym_latex_span] = STATE(372), + [sym_insert] = STATE(372), + [sym_delete] = STATE(372), + [sym_highlight] = STATE(372), + [sym_edit_comment] = STATE(372), + [sym_superscript] = STATE(372), + [sym_subscript] = STATE(372), + [sym_strikeout] = STATE(372), + [sym_quoted_span] = STATE(372), + [sym_inline_note] = STATE(372), + [sym_citation] = STATE(372), + [sym_shortcode_escaped] = STATE(372), + [sym_shortcode] = STATE(372), + [sym_note_reference] = STATE(372), + [sym__link_text] = STATE(454), + [sym__link_text_non_empty] = STATE(455), + [sym_inline_link] = STATE(57), + [sym_image] = STATE(372), + [sym__image_inline_link] = STATE(1025), + [sym__image_description] = STATE(2356), + [sym__image_description_non_empty] = STATE(2356), + [sym_hard_line_break] = STATE(372), + [sym__whitespace] = STATE(1022), + [sym__word] = STATE(1022), + [sym__soft_line_break] = STATE(1026), + [sym__inline_base] = STATE(57), + [sym__text_base] = STATE(372), + [sym__inline_element] = STATE(57), + [sym__emphasis_star] = STATE(714), + [sym__strong_emphasis_star] = STATE(57), + [sym__emphasis_underscore] = STATE(714), + [sym__strong_emphasis_underscore] = STATE(57), + [aux_sym_insert_repeat1] = STATE(57), + [aux_sym__inline_base_repeat1] = STATE(372), + [sym__backslash_escape] = ACTIONS(707), + [sym_entity_reference] = ACTIONS(709), + [sym_numeric_character_reference] = ACTIONS(709), + [anon_sym_LT] = ACTIONS(711), + [anon_sym_GT] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(715), + [anon_sym_DQUOTE] = ACTIONS(713), + [anon_sym_POUND] = ACTIONS(713), + [anon_sym_DOLLAR] = ACTIONS(713), + [anon_sym_PERCENT] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(711), + [anon_sym_SQUOTE] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_COMMA] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_DOT] = ACTIONS(711), + [anon_sym_SLASH] = ACTIONS(713), + [anon_sym_COLON] = ACTIONS(713), + [anon_sym_SEMI] = ACTIONS(713), + [anon_sym_EQ] = ACTIONS(713), + [anon_sym_QMARK] = ACTIONS(713), + [anon_sym_LBRACK] = ACTIONS(717), + [anon_sym_BSLASH] = ACTIONS(719), + [anon_sym_CARET] = ACTIONS(711), + [anon_sym__] = ACTIONS(713), + [anon_sym_BQUOTE] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(721), + [anon_sym_PIPE] = ACTIONS(713), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_LPAREN] = ACTIONS(713), + [anon_sym_RPAREN] = ACTIONS(713), + [sym__newline_token] = ACTIONS(723), + [aux_sym_insert_token1] = ACTIONS(725), + [aux_sym_insert_token2] = ACTIONS(2477), + [aux_sym_delete_token1] = ACTIONS(729), + [aux_sym_highlight_token1] = ACTIONS(731), + [aux_sym_edit_comment_token1] = ACTIONS(733), + [anon_sym_CARET_LBRACK] = ACTIONS(735), + [anon_sym_LBRACK_CARET] = ACTIONS(737), + [sym_uri_autolink] = ACTIONS(709), + [sym_email_autolink] = ACTIONS(709), + [sym__whitespace_ge_2] = ACTIONS(739), + [aux_sym__whitespace_token1] = ACTIONS(741), + [sym__word_no_digit] = ACTIONS(743), + [sym__digits] = ACTIONS(743), + [anon_sym_DASH_DASH] = ACTIONS(745), + [anon_sym_DASH_DASH_DASH] = ACTIONS(743), + [anon_sym_DOT_DOT_DOT] = ACTIONS(743), + [sym__code_span_start] = ACTIONS(747), + [sym__emphasis_open_star] = ACTIONS(749), + [sym__emphasis_open_underscore] = ACTIONS(751), + [sym__strikeout_open] = ACTIONS(753), + [sym__latex_span_start] = ACTIONS(755), + [sym__single_quote_open] = ACTIONS(757), + [sym__double_quote_open] = ACTIONS(759), + [sym__superscript_open] = ACTIONS(761), + [sym__subscript_open] = ACTIONS(763), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(765), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(767), + [sym__cite_author_in_text] = ACTIONS(769), + [sym__cite_suppress_author] = ACTIONS(771), + [sym__shortcode_open_escaped] = ACTIONS(773), + [sym__shortcode_open] = ACTIONS(775), + [sym__unclosed_span] = ACTIONS(709), + }, + [STATE(132)] = { + [sym_backslash_escape] = STATE(372), + [sym_commonmark_attribute] = STATE(372), + [sym_code_span] = STATE(372), + [sym_latex_span] = STATE(372), + [sym_insert] = STATE(372), + [sym_delete] = STATE(372), + [sym_highlight] = STATE(372), + [sym_edit_comment] = STATE(372), + [sym_superscript] = STATE(372), + [sym_subscript] = STATE(372), + [sym_strikeout] = STATE(372), + [sym_quoted_span] = STATE(372), + [sym_inline_note] = STATE(372), + [sym_citation] = STATE(372), + [sym_shortcode_escaped] = STATE(372), + [sym_shortcode] = STATE(372), + [sym_note_reference] = STATE(372), + [sym__link_text] = STATE(454), + [sym__link_text_non_empty] = STATE(455), + [sym_inline_link] = STATE(57), + [sym_image] = STATE(372), + [sym__image_inline_link] = STATE(1025), + [sym__image_description] = STATE(2356), + [sym__image_description_non_empty] = STATE(2356), + [sym_hard_line_break] = STATE(372), + [sym__whitespace] = STATE(1022), + [sym__word] = STATE(1022), + [sym__soft_line_break] = STATE(1026), + [sym__inline_base] = STATE(57), + [sym__text_base] = STATE(372), + [sym__inline_element] = STATE(57), + [sym__emphasis_star] = STATE(714), + [sym__strong_emphasis_star] = STATE(57), + [sym__emphasis_underscore] = STATE(714), + [sym__strong_emphasis_underscore] = STATE(57), + [aux_sym_insert_repeat1] = STATE(57), + [aux_sym__inline_base_repeat1] = STATE(372), + [sym__backslash_escape] = ACTIONS(707), + [sym_entity_reference] = ACTIONS(709), + [sym_numeric_character_reference] = ACTIONS(709), + [anon_sym_LT] = ACTIONS(711), + [anon_sym_GT] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(715), + [anon_sym_DQUOTE] = ACTIONS(713), + [anon_sym_POUND] = ACTIONS(713), + [anon_sym_DOLLAR] = ACTIONS(713), + [anon_sym_PERCENT] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(711), + [anon_sym_SQUOTE] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_COMMA] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_DOT] = ACTIONS(711), + [anon_sym_SLASH] = ACTIONS(713), + [anon_sym_COLON] = ACTIONS(713), + [anon_sym_SEMI] = ACTIONS(713), + [anon_sym_EQ] = ACTIONS(713), + [anon_sym_QMARK] = ACTIONS(713), + [anon_sym_LBRACK] = ACTIONS(717), + [anon_sym_BSLASH] = ACTIONS(719), + [anon_sym_CARET] = ACTIONS(711), + [anon_sym__] = ACTIONS(713), + [anon_sym_BQUOTE] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(721), + [anon_sym_PIPE] = ACTIONS(713), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_LPAREN] = ACTIONS(713), + [anon_sym_RPAREN] = ACTIONS(713), + [sym__newline_token] = ACTIONS(723), + [aux_sym_insert_token1] = ACTIONS(725), + [aux_sym_insert_token2] = ACTIONS(2479), + [aux_sym_delete_token1] = ACTIONS(729), + [aux_sym_highlight_token1] = ACTIONS(731), + [aux_sym_edit_comment_token1] = ACTIONS(733), + [anon_sym_CARET_LBRACK] = ACTIONS(735), + [anon_sym_LBRACK_CARET] = ACTIONS(737), + [sym_uri_autolink] = ACTIONS(709), + [sym_email_autolink] = ACTIONS(709), + [sym__whitespace_ge_2] = ACTIONS(739), + [aux_sym__whitespace_token1] = ACTIONS(741), + [sym__word_no_digit] = ACTIONS(743), + [sym__digits] = ACTIONS(743), + [anon_sym_DASH_DASH] = ACTIONS(745), + [anon_sym_DASH_DASH_DASH] = ACTIONS(743), + [anon_sym_DOT_DOT_DOT] = ACTIONS(743), + [sym__code_span_start] = ACTIONS(747), + [sym__emphasis_open_star] = ACTIONS(749), + [sym__emphasis_open_underscore] = ACTIONS(751), + [sym__strikeout_open] = ACTIONS(753), + [sym__latex_span_start] = ACTIONS(755), + [sym__single_quote_open] = ACTIONS(757), + [sym__double_quote_open] = ACTIONS(759), + [sym__superscript_open] = ACTIONS(761), + [sym__subscript_open] = ACTIONS(763), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(765), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(767), + [sym__cite_author_in_text] = ACTIONS(769), + [sym__cite_suppress_author] = ACTIONS(771), + [sym__shortcode_open_escaped] = ACTIONS(773), + [sym__shortcode_open] = ACTIONS(775), + [sym__unclosed_span] = ACTIONS(709), + }, + [STATE(133)] = { + [sym_backslash_escape] = STATE(372), + [sym_commonmark_attribute] = STATE(372), + [sym_code_span] = STATE(372), + [sym_latex_span] = STATE(372), + [sym_insert] = STATE(372), + [sym_delete] = STATE(372), + [sym_highlight] = STATE(372), + [sym_edit_comment] = STATE(372), + [sym_superscript] = STATE(372), + [sym_subscript] = STATE(372), + [sym_strikeout] = STATE(372), + [sym_quoted_span] = STATE(372), + [sym_inline_note] = STATE(372), + [sym_citation] = STATE(372), + [sym_shortcode_escaped] = STATE(372), + [sym_shortcode] = STATE(372), + [sym_note_reference] = STATE(372), + [sym__link_text] = STATE(454), + [sym__link_text_non_empty] = STATE(455), + [sym_inline_link] = STATE(57), + [sym_image] = STATE(372), + [sym__image_inline_link] = STATE(1025), + [sym__image_description] = STATE(2356), + [sym__image_description_non_empty] = STATE(2356), + [sym_hard_line_break] = STATE(372), + [sym__whitespace] = STATE(1022), + [sym__word] = STATE(1022), + [sym__soft_line_break] = STATE(1026), + [sym__inline_base] = STATE(57), + [sym__text_base] = STATE(372), + [sym__inline_element] = STATE(57), + [sym__emphasis_star] = STATE(714), + [sym__strong_emphasis_star] = STATE(57), + [sym__emphasis_underscore] = STATE(714), + [sym__strong_emphasis_underscore] = STATE(57), + [aux_sym_insert_repeat1] = STATE(57), + [aux_sym__inline_base_repeat1] = STATE(372), + [sym__backslash_escape] = ACTIONS(707), + [sym_entity_reference] = ACTIONS(709), + [sym_numeric_character_reference] = ACTIONS(709), + [anon_sym_LT] = ACTIONS(711), + [anon_sym_GT] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(715), + [anon_sym_DQUOTE] = ACTIONS(713), + [anon_sym_POUND] = ACTIONS(713), + [anon_sym_DOLLAR] = ACTIONS(713), + [anon_sym_PERCENT] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(711), + [anon_sym_SQUOTE] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_COMMA] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_DOT] = ACTIONS(711), + [anon_sym_SLASH] = ACTIONS(713), + [anon_sym_COLON] = ACTIONS(713), + [anon_sym_SEMI] = ACTIONS(713), + [anon_sym_EQ] = ACTIONS(713), + [anon_sym_QMARK] = ACTIONS(713), + [anon_sym_LBRACK] = ACTIONS(717), + [anon_sym_BSLASH] = ACTIONS(719), + [anon_sym_CARET] = ACTIONS(711), + [anon_sym__] = ACTIONS(713), + [anon_sym_BQUOTE] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(721), + [anon_sym_PIPE] = ACTIONS(713), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_LPAREN] = ACTIONS(713), + [anon_sym_RPAREN] = ACTIONS(713), + [sym__newline_token] = ACTIONS(723), + [aux_sym_insert_token1] = ACTIONS(725), + [aux_sym_insert_token2] = ACTIONS(2481), + [aux_sym_delete_token1] = ACTIONS(729), + [aux_sym_highlight_token1] = ACTIONS(731), + [aux_sym_edit_comment_token1] = ACTIONS(733), + [anon_sym_CARET_LBRACK] = ACTIONS(735), + [anon_sym_LBRACK_CARET] = ACTIONS(737), + [sym_uri_autolink] = ACTIONS(709), + [sym_email_autolink] = ACTIONS(709), + [sym__whitespace_ge_2] = ACTIONS(739), + [aux_sym__whitespace_token1] = ACTIONS(741), + [sym__word_no_digit] = ACTIONS(743), + [sym__digits] = ACTIONS(743), + [anon_sym_DASH_DASH] = ACTIONS(745), + [anon_sym_DASH_DASH_DASH] = ACTIONS(743), + [anon_sym_DOT_DOT_DOT] = ACTIONS(743), + [sym__code_span_start] = ACTIONS(747), + [sym__emphasis_open_star] = ACTIONS(749), + [sym__emphasis_open_underscore] = ACTIONS(751), + [sym__strikeout_open] = ACTIONS(753), + [sym__latex_span_start] = ACTIONS(755), + [sym__single_quote_open] = ACTIONS(757), + [sym__double_quote_open] = ACTIONS(759), + [sym__superscript_open] = ACTIONS(761), + [sym__subscript_open] = ACTIONS(763), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(765), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(767), + [sym__cite_author_in_text] = ACTIONS(769), + [sym__cite_suppress_author] = ACTIONS(771), + [sym__shortcode_open_escaped] = ACTIONS(773), + [sym__shortcode_open] = ACTIONS(775), + [sym__unclosed_span] = ACTIONS(709), + }, + [STATE(134)] = { + [sym_backslash_escape] = STATE(372), + [sym_commonmark_attribute] = STATE(372), + [sym_code_span] = STATE(372), + [sym_latex_span] = STATE(372), + [sym_insert] = STATE(372), + [sym_delete] = STATE(372), + [sym_highlight] = STATE(372), + [sym_edit_comment] = STATE(372), + [sym_superscript] = STATE(372), + [sym_subscript] = STATE(372), + [sym_strikeout] = STATE(372), + [sym_quoted_span] = STATE(372), + [sym_inline_note] = STATE(372), + [sym_citation] = STATE(372), + [sym_shortcode_escaped] = STATE(372), + [sym_shortcode] = STATE(372), + [sym_note_reference] = STATE(372), + [sym__link_text] = STATE(454), + [sym__link_text_non_empty] = STATE(455), + [sym_inline_link] = STATE(57), + [sym_image] = STATE(372), + [sym__image_inline_link] = STATE(1025), + [sym__image_description] = STATE(2356), + [sym__image_description_non_empty] = STATE(2356), + [sym_hard_line_break] = STATE(372), + [sym__whitespace] = STATE(1022), + [sym__word] = STATE(1022), + [sym__soft_line_break] = STATE(1026), + [sym__inline_base] = STATE(57), + [sym__text_base] = STATE(372), + [sym__inline_element] = STATE(57), + [sym__emphasis_star] = STATE(714), + [sym__strong_emphasis_star] = STATE(57), + [sym__emphasis_underscore] = STATE(714), + [sym__strong_emphasis_underscore] = STATE(57), + [aux_sym_insert_repeat1] = STATE(57), + [aux_sym__inline_base_repeat1] = STATE(372), + [sym__backslash_escape] = ACTIONS(707), + [sym_entity_reference] = ACTIONS(709), + [sym_numeric_character_reference] = ACTIONS(709), + [anon_sym_LT] = ACTIONS(711), + [anon_sym_GT] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(715), + [anon_sym_DQUOTE] = ACTIONS(713), + [anon_sym_POUND] = ACTIONS(713), + [anon_sym_DOLLAR] = ACTIONS(713), + [anon_sym_PERCENT] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(711), + [anon_sym_SQUOTE] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_COMMA] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_DOT] = ACTIONS(711), + [anon_sym_SLASH] = ACTIONS(713), + [anon_sym_COLON] = ACTIONS(713), + [anon_sym_SEMI] = ACTIONS(713), + [anon_sym_EQ] = ACTIONS(713), + [anon_sym_QMARK] = ACTIONS(713), + [anon_sym_LBRACK] = ACTIONS(717), + [anon_sym_BSLASH] = ACTIONS(719), + [anon_sym_CARET] = ACTIONS(711), + [anon_sym__] = ACTIONS(713), + [anon_sym_BQUOTE] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(721), + [anon_sym_PIPE] = ACTIONS(713), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_LPAREN] = ACTIONS(713), + [anon_sym_RPAREN] = ACTIONS(713), + [sym__newline_token] = ACTIONS(723), + [aux_sym_insert_token1] = ACTIONS(725), + [aux_sym_insert_token2] = ACTIONS(2483), + [aux_sym_delete_token1] = ACTIONS(729), + [aux_sym_highlight_token1] = ACTIONS(731), + [aux_sym_edit_comment_token1] = ACTIONS(733), + [anon_sym_CARET_LBRACK] = ACTIONS(735), + [anon_sym_LBRACK_CARET] = ACTIONS(737), + [sym_uri_autolink] = ACTIONS(709), + [sym_email_autolink] = ACTIONS(709), + [sym__whitespace_ge_2] = ACTIONS(739), + [aux_sym__whitespace_token1] = ACTIONS(741), + [sym__word_no_digit] = ACTIONS(743), + [sym__digits] = ACTIONS(743), + [anon_sym_DASH_DASH] = ACTIONS(745), + [anon_sym_DASH_DASH_DASH] = ACTIONS(743), + [anon_sym_DOT_DOT_DOT] = ACTIONS(743), + [sym__code_span_start] = ACTIONS(747), + [sym__emphasis_open_star] = ACTIONS(749), + [sym__emphasis_open_underscore] = ACTIONS(751), + [sym__strikeout_open] = ACTIONS(753), + [sym__latex_span_start] = ACTIONS(755), + [sym__single_quote_open] = ACTIONS(757), + [sym__double_quote_open] = ACTIONS(759), + [sym__superscript_open] = ACTIONS(761), + [sym__subscript_open] = ACTIONS(763), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(765), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(767), + [sym__cite_author_in_text] = ACTIONS(769), + [sym__cite_suppress_author] = ACTIONS(771), + [sym__shortcode_open_escaped] = ACTIONS(773), + [sym__shortcode_open] = ACTIONS(775), + [sym__unclosed_span] = ACTIONS(709), + }, + [STATE(135)] = { + [sym_backslash_escape] = STATE(370), + [sym_commonmark_attribute] = STATE(370), + [sym_code_span] = STATE(370), + [sym_latex_span] = STATE(370), + [sym_insert] = STATE(370), + [sym_delete] = STATE(370), + [sym_highlight] = STATE(370), + [sym_edit_comment] = STATE(370), + [sym_superscript] = STATE(370), + [sym_subscript] = STATE(370), + [sym_strikeout] = STATE(370), + [sym_quoted_span] = STATE(370), + [sym_inline_note] = STATE(370), + [sym_citation] = STATE(370), + [sym_shortcode_escaped] = STATE(370), + [sym_shortcode] = STATE(370), + [sym_note_reference] = STATE(370), + [sym__link_text] = STATE(472), + [sym__link_text_non_empty] = STATE(473), + [sym_inline_link] = STATE(139), + [sym_image] = STATE(370), + [sym__image_inline_link] = STATE(923), + [sym__image_description] = STATE(2342), + [sym__image_description_non_empty] = STATE(2342), + [sym_hard_line_break] = STATE(370), + [sym__whitespace] = STATE(920), + [sym__word] = STATE(920), + [sym__soft_line_break] = STATE(924), + [sym__inline_base] = STATE(139), + [sym__text_base] = STATE(370), + [sym__inline_element] = STATE(139), + [sym__emphasis_star] = STATE(821), + [sym__strong_emphasis_star] = STATE(139), + [sym__emphasis_underscore] = STATE(821), + [sym__strong_emphasis_underscore] = STATE(139), + [aux_sym_insert_repeat1] = STATE(139), + [aux_sym__inline_base_repeat1] = STATE(370), + [sym__backslash_escape] = ACTIONS(73), + [sym_entity_reference] = ACTIONS(75), + [sym_numeric_character_reference] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_BANG] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_POUND] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(79), + [anon_sym_PERCENT] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_STAR] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_COMMA] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_DOT] = ACTIONS(77), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_COLON] = ACTIONS(79), + [anon_sym_SEMI] = ACTIONS(79), + [anon_sym_EQ] = ACTIONS(79), + [anon_sym_QMARK] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(83), + [anon_sym_BSLASH] = ACTIONS(85), + [anon_sym_RBRACK] = ACTIONS(2485), + [anon_sym_CARET] = ACTIONS(77), + [anon_sym__] = ACTIONS(79), + [anon_sym_BQUOTE] = ACTIONS(79), + [anon_sym_LBRACE] = ACTIONS(89), + [anon_sym_PIPE] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(79), + [anon_sym_RPAREN] = ACTIONS(79), + [sym__newline_token] = ACTIONS(91), + [aux_sym_insert_token1] = ACTIONS(93), + [aux_sym_delete_token1] = ACTIONS(95), + [aux_sym_highlight_token1] = ACTIONS(97), + [aux_sym_edit_comment_token1] = ACTIONS(99), + [anon_sym_CARET_LBRACK] = ACTIONS(101), + [anon_sym_LBRACK_CARET] = ACTIONS(103), + [sym_uri_autolink] = ACTIONS(75), + [sym_email_autolink] = ACTIONS(75), + [sym__whitespace_ge_2] = ACTIONS(105), + [aux_sym__whitespace_token1] = ACTIONS(107), + [sym__word_no_digit] = ACTIONS(109), + [sym__digits] = ACTIONS(109), + [anon_sym_DASH_DASH] = ACTIONS(111), + [anon_sym_DASH_DASH_DASH] = ACTIONS(109), + [anon_sym_DOT_DOT_DOT] = ACTIONS(109), + [sym__code_span_start] = ACTIONS(113), + [sym__emphasis_open_star] = ACTIONS(115), + [sym__emphasis_open_underscore] = ACTIONS(117), + [sym__strikeout_open] = ACTIONS(121), + [sym__latex_span_start] = ACTIONS(123), + [sym__single_quote_open] = ACTIONS(125), + [sym__double_quote_open] = ACTIONS(127), + [sym__superscript_open] = ACTIONS(129), + [sym__subscript_open] = ACTIONS(131), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(133), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(135), + [sym__cite_author_in_text] = ACTIONS(137), + [sym__cite_suppress_author] = ACTIONS(139), + [sym__shortcode_open_escaped] = ACTIONS(141), + [sym__shortcode_open] = ACTIONS(143), + [sym__unclosed_span] = ACTIONS(75), }, [STATE(136)] = { - [sym_backslash_escape] = STATE(271), - [sym_commonmark_attribute] = STATE(271), - [sym_code_span] = STATE(271), - [sym_latex_span] = STATE(271), - [sym_superscript] = STATE(271), - [sym_subscript] = STATE(271), - [sym_strikeout] = STATE(271), - [sym_quoted_span] = STATE(271), - [sym_inline_note] = STATE(271), - [sym_citation] = STATE(271), - [sym_shortcode_escaped] = STATE(271), - [sym_shortcode] = STATE(271), - [sym_note_reference] = STATE(271), - [sym__link_text] = STATE(424), - [sym__link_text_non_empty] = STATE(425), - [sym_inline_link] = STATE(140), - [sym_image] = STATE(271), - [sym__image_inline_link] = STATE(883), - [sym__image_description] = STATE(1998), - [sym__image_description_non_empty] = STATE(1998), - [sym_hard_line_break] = STATE(271), - [sym__whitespace] = STATE(881), - [sym__word] = STATE(881), - [sym__soft_line_break] = STATE(884), - [sym__inline_base] = STATE(140), - [sym__text_base] = STATE(271), - [sym__inline_element] = STATE(140), - [sym__emphasis_star] = STATE(710), - [sym__strong_emphasis_star] = STATE(140), - [sym__emphasis_underscore] = STATE(710), - [sym__strong_emphasis_underscore] = STATE(140), - [aux_sym_superscript_repeat1] = STATE(140), - [aux_sym__inline_base_repeat1] = STATE(271), - [sym__backslash_escape] = ACTIONS(159), - [sym_entity_reference] = ACTIONS(161), - [sym_numeric_character_reference] = ACTIONS(161), - [anon_sym_LT] = ACTIONS(163), - [anon_sym_GT] = ACTIONS(165), - [anon_sym_BANG] = ACTIONS(167), - [anon_sym_DQUOTE] = ACTIONS(165), - [anon_sym_POUND] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(165), - [anon_sym_PERCENT] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_SQUOTE] = ACTIONS(165), - [anon_sym_STAR] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(165), - [anon_sym_COMMA] = ACTIONS(165), - [anon_sym_DASH] = ACTIONS(163), - [anon_sym_DOT] = ACTIONS(163), - [anon_sym_SLASH] = ACTIONS(165), - [anon_sym_COLON] = ACTIONS(165), - [anon_sym_SEMI] = ACTIONS(165), - [anon_sym_EQ] = ACTIONS(165), - [anon_sym_QMARK] = ACTIONS(165), - [anon_sym_LBRACK] = ACTIONS(169), - [anon_sym_BSLASH] = ACTIONS(171), - [anon_sym_RBRACK] = ACTIONS(2063), - [anon_sym_CARET] = ACTIONS(163), - [anon_sym__] = ACTIONS(165), - [anon_sym_BQUOTE] = ACTIONS(165), - [anon_sym_LBRACE] = ACTIONS(175), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(165), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_RPAREN] = ACTIONS(165), - [sym__newline_token] = ACTIONS(177), - [anon_sym_CARET_LBRACK] = ACTIONS(179), - [anon_sym_LBRACK_CARET] = ACTIONS(181), - [sym_uri_autolink] = ACTIONS(161), - [sym_email_autolink] = ACTIONS(161), - [sym__whitespace_ge_2] = ACTIONS(183), - [aux_sym__whitespace_token1] = ACTIONS(185), - [sym__word_no_digit] = ACTIONS(187), - [sym__digits] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_DASH_DASH_DASH] = ACTIONS(187), - [anon_sym_DOT_DOT_DOT] = ACTIONS(187), - [sym__code_span_start] = ACTIONS(191), - [sym__emphasis_open_star] = ACTIONS(193), - [sym__emphasis_open_underscore] = ACTIONS(195), - [sym__strikeout_open] = ACTIONS(199), - [sym__latex_span_start] = ACTIONS(201), - [sym__single_quote_open] = ACTIONS(203), - [sym__double_quote_open] = ACTIONS(205), - [sym__superscript_open] = ACTIONS(207), - [sym__subscript_open] = ACTIONS(209), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(211), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(213), - [sym__cite_author_in_text] = ACTIONS(215), - [sym__cite_suppress_author] = ACTIONS(217), - [sym__shortcode_open_escaped] = ACTIONS(219), - [sym__shortcode_open] = ACTIONS(221), - [sym__unclosed_span] = ACTIONS(161), + [sym_backslash_escape] = STATE(370), + [sym_commonmark_attribute] = STATE(370), + [sym_code_span] = STATE(370), + [sym_latex_span] = STATE(370), + [sym_insert] = STATE(370), + [sym_delete] = STATE(370), + [sym_highlight] = STATE(370), + [sym_edit_comment] = STATE(370), + [sym_superscript] = STATE(370), + [sym_subscript] = STATE(370), + [sym_strikeout] = STATE(370), + [sym_quoted_span] = STATE(370), + [sym_inline_note] = STATE(370), + [sym_citation] = STATE(370), + [sym_shortcode_escaped] = STATE(370), + [sym_shortcode] = STATE(370), + [sym_note_reference] = STATE(370), + [sym__link_text] = STATE(472), + [sym__link_text_non_empty] = STATE(473), + [sym_inline_link] = STATE(60), + [sym_image] = STATE(370), + [sym__image_inline_link] = STATE(923), + [sym__image_description] = STATE(2342), + [sym__image_description_non_empty] = STATE(2342), + [sym_hard_line_break] = STATE(370), + [sym__whitespace] = STATE(920), + [sym__word] = STATE(920), + [sym__soft_line_break] = STATE(924), + [sym__inline_base] = STATE(60), + [sym__text_base] = STATE(370), + [sym__inline_element] = STATE(60), + [sym__emphasis_star] = STATE(821), + [sym__strong_emphasis_star] = STATE(60), + [sym__emphasis_underscore] = STATE(821), + [sym__strong_emphasis_underscore] = STATE(60), + [aux_sym_insert_repeat1] = STATE(60), + [aux_sym__inline_base_repeat1] = STATE(370), + [sym__backslash_escape] = ACTIONS(73), + [sym_entity_reference] = ACTIONS(75), + [sym_numeric_character_reference] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_BANG] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_POUND] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(79), + [anon_sym_PERCENT] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_STAR] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_COMMA] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_DOT] = ACTIONS(77), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_COLON] = ACTIONS(79), + [anon_sym_SEMI] = ACTIONS(79), + [anon_sym_EQ] = ACTIONS(79), + [anon_sym_QMARK] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(83), + [anon_sym_BSLASH] = ACTIONS(85), + [anon_sym_RBRACK] = ACTIONS(2487), + [anon_sym_CARET] = ACTIONS(77), + [anon_sym__] = ACTIONS(79), + [anon_sym_BQUOTE] = ACTIONS(79), + [anon_sym_LBRACE] = ACTIONS(89), + [anon_sym_PIPE] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(79), + [anon_sym_RPAREN] = ACTIONS(79), + [sym__newline_token] = ACTIONS(91), + [aux_sym_insert_token1] = ACTIONS(93), + [aux_sym_delete_token1] = ACTIONS(95), + [aux_sym_highlight_token1] = ACTIONS(97), + [aux_sym_edit_comment_token1] = ACTIONS(99), + [anon_sym_CARET_LBRACK] = ACTIONS(101), + [anon_sym_LBRACK_CARET] = ACTIONS(103), + [sym_uri_autolink] = ACTIONS(75), + [sym_email_autolink] = ACTIONS(75), + [sym__whitespace_ge_2] = ACTIONS(105), + [aux_sym__whitespace_token1] = ACTIONS(107), + [sym__word_no_digit] = ACTIONS(109), + [sym__digits] = ACTIONS(109), + [anon_sym_DASH_DASH] = ACTIONS(111), + [anon_sym_DASH_DASH_DASH] = ACTIONS(109), + [anon_sym_DOT_DOT_DOT] = ACTIONS(109), + [sym__code_span_start] = ACTIONS(113), + [sym__emphasis_open_star] = ACTIONS(115), + [sym__emphasis_open_underscore] = ACTIONS(117), + [sym__strikeout_open] = ACTIONS(121), + [sym__latex_span_start] = ACTIONS(123), + [sym__single_quote_open] = ACTIONS(125), + [sym__double_quote_open] = ACTIONS(127), + [sym__superscript_open] = ACTIONS(129), + [sym__subscript_open] = ACTIONS(131), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(133), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(135), + [sym__cite_author_in_text] = ACTIONS(137), + [sym__cite_suppress_author] = ACTIONS(139), + [sym__shortcode_open_escaped] = ACTIONS(141), + [sym__shortcode_open] = ACTIONS(143), + [sym__unclosed_span] = ACTIONS(75), }, [STATE(137)] = { - [sym_backslash_escape] = STATE(271), - [sym_commonmark_attribute] = STATE(271), - [sym_code_span] = STATE(271), - [sym_latex_span] = STATE(271), - [sym_superscript] = STATE(271), - [sym_subscript] = STATE(271), - [sym_strikeout] = STATE(271), - [sym_quoted_span] = STATE(271), - [sym_inline_note] = STATE(271), - [sym_citation] = STATE(271), - [sym_shortcode_escaped] = STATE(271), - [sym_shortcode] = STATE(271), - [sym_note_reference] = STATE(271), - [sym__link_text] = STATE(424), - [sym__link_text_non_empty] = STATE(425), - [sym_inline_link] = STATE(53), - [sym_image] = STATE(271), - [sym__image_inline_link] = STATE(883), - [sym__image_description] = STATE(1998), - [sym__image_description_non_empty] = STATE(1998), - [sym_hard_line_break] = STATE(271), - [sym__whitespace] = STATE(881), - [sym__word] = STATE(881), - [sym__soft_line_break] = STATE(884), - [sym__inline_base] = STATE(53), - [sym__text_base] = STATE(271), - [sym__inline_element] = STATE(53), - [sym__emphasis_star] = STATE(710), - [sym__strong_emphasis_star] = STATE(53), - [sym__emphasis_underscore] = STATE(710), - [sym__strong_emphasis_underscore] = STATE(53), - [aux_sym_superscript_repeat1] = STATE(53), - [aux_sym__inline_base_repeat1] = STATE(271), - [sym__backslash_escape] = ACTIONS(159), - [sym_entity_reference] = ACTIONS(161), - [sym_numeric_character_reference] = ACTIONS(161), - [anon_sym_LT] = ACTIONS(163), - [anon_sym_GT] = ACTIONS(165), - [anon_sym_BANG] = ACTIONS(167), - [anon_sym_DQUOTE] = ACTIONS(165), - [anon_sym_POUND] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(165), - [anon_sym_PERCENT] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_SQUOTE] = ACTIONS(165), - [anon_sym_STAR] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(165), - [anon_sym_COMMA] = ACTIONS(165), - [anon_sym_DASH] = ACTIONS(163), - [anon_sym_DOT] = ACTIONS(163), - [anon_sym_SLASH] = ACTIONS(165), - [anon_sym_COLON] = ACTIONS(165), - [anon_sym_SEMI] = ACTIONS(165), - [anon_sym_EQ] = ACTIONS(165), - [anon_sym_QMARK] = ACTIONS(165), - [anon_sym_LBRACK] = ACTIONS(169), - [anon_sym_BSLASH] = ACTIONS(171), - [anon_sym_RBRACK] = ACTIONS(2065), - [anon_sym_CARET] = ACTIONS(163), - [anon_sym__] = ACTIONS(165), - [anon_sym_BQUOTE] = ACTIONS(165), - [anon_sym_LBRACE] = ACTIONS(175), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(165), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_RPAREN] = ACTIONS(165), - [sym__newline_token] = ACTIONS(177), - [anon_sym_CARET_LBRACK] = ACTIONS(179), - [anon_sym_LBRACK_CARET] = ACTIONS(181), - [sym_uri_autolink] = ACTIONS(161), - [sym_email_autolink] = ACTIONS(161), - [sym__whitespace_ge_2] = ACTIONS(183), - [aux_sym__whitespace_token1] = ACTIONS(185), - [sym__word_no_digit] = ACTIONS(187), - [sym__digits] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_DASH_DASH_DASH] = ACTIONS(187), - [anon_sym_DOT_DOT_DOT] = ACTIONS(187), - [sym__code_span_start] = ACTIONS(191), - [sym__emphasis_open_star] = ACTIONS(193), - [sym__emphasis_open_underscore] = ACTIONS(195), - [sym__strikeout_open] = ACTIONS(199), - [sym__latex_span_start] = ACTIONS(201), - [sym__single_quote_open] = ACTIONS(203), - [sym__double_quote_open] = ACTIONS(205), - [sym__superscript_open] = ACTIONS(207), - [sym__subscript_open] = ACTIONS(209), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(211), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(213), - [sym__cite_author_in_text] = ACTIONS(215), - [sym__cite_suppress_author] = ACTIONS(217), - [sym__shortcode_open_escaped] = ACTIONS(219), - [sym__shortcode_open] = ACTIONS(221), - [sym__unclosed_span] = ACTIONS(161), + [sym_backslash_escape] = STATE(373), + [sym_commonmark_attribute] = STATE(373), + [sym_code_span] = STATE(373), + [sym_latex_span] = STATE(373), + [sym_insert] = STATE(373), + [sym_delete] = STATE(373), + [sym_highlight] = STATE(373), + [sym_edit_comment] = STATE(373), + [sym_superscript] = STATE(373), + [sym_subscript] = STATE(373), + [sym_strikeout] = STATE(373), + [sym_quoted_span] = STATE(373), + [sym_inline_note] = STATE(373), + [sym_citation] = STATE(373), + [sym_shortcode_escaped] = STATE(373), + [sym_shortcode] = STATE(373), + [sym_note_reference] = STATE(373), + [sym__link_text] = STATE(522), + [sym__link_text_non_empty] = STATE(523), + [sym_inline_link] = STATE(36), + [sym_image] = STATE(373), + [sym__image_inline_link] = STATE(1265), + [sym__image_description] = STATE(2331), + [sym__image_description_non_empty] = STATE(2331), + [sym_hard_line_break] = STATE(373), + [sym__whitespace] = STATE(1262), + [sym__word] = STATE(1262), + [sym__soft_line_break] = STATE(1267), + [sym__inline_base] = STATE(36), + [sym__text_base] = STATE(373), + [sym__inline_element_no_star] = STATE(36), + [aux_sym__inline_no_star] = STATE(36), + [sym__emphasis_star] = STATE(1147), + [sym__strong_emphasis_star] = STATE(36), + [sym__emphasis_underscore] = STATE(1147), + [sym__strong_emphasis_underscore] = STATE(36), + [aux_sym__inline_base_repeat1] = STATE(373), + [sym__backslash_escape] = ACTIONS(885), + [sym_entity_reference] = ACTIONS(887), + [sym_numeric_character_reference] = ACTIONS(887), + [anon_sym_LT] = ACTIONS(889), + [anon_sym_GT] = ACTIONS(891), + [anon_sym_BANG] = ACTIONS(893), + [anon_sym_DQUOTE] = ACTIONS(891), + [anon_sym_POUND] = ACTIONS(891), + [anon_sym_DOLLAR] = ACTIONS(891), + [anon_sym_PERCENT] = ACTIONS(891), + [anon_sym_AMP] = ACTIONS(889), + [anon_sym_SQUOTE] = ACTIONS(891), + [anon_sym_STAR] = ACTIONS(891), + [anon_sym_PLUS] = ACTIONS(891), + [anon_sym_COMMA] = ACTIONS(891), + [anon_sym_DASH] = ACTIONS(889), + [anon_sym_DOT] = ACTIONS(889), + [anon_sym_SLASH] = ACTIONS(891), + [anon_sym_COLON] = ACTIONS(891), + [anon_sym_SEMI] = ACTIONS(891), + [anon_sym_EQ] = ACTIONS(891), + [anon_sym_QMARK] = ACTIONS(891), + [anon_sym_LBRACK] = ACTIONS(895), + [anon_sym_BSLASH] = ACTIONS(897), + [anon_sym_CARET] = ACTIONS(889), + [anon_sym__] = ACTIONS(891), + [anon_sym_BQUOTE] = ACTIONS(891), + [anon_sym_LBRACE] = ACTIONS(899), + [anon_sym_PIPE] = ACTIONS(891), + [anon_sym_TILDE] = ACTIONS(891), + [anon_sym_LPAREN] = ACTIONS(891), + [anon_sym_RPAREN] = ACTIONS(891), + [sym__newline_token] = ACTIONS(901), + [aux_sym_insert_token1] = ACTIONS(903), + [aux_sym_delete_token1] = ACTIONS(905), + [aux_sym_highlight_token1] = ACTIONS(907), + [aux_sym_edit_comment_token1] = ACTIONS(909), + [anon_sym_CARET_LBRACK] = ACTIONS(911), + [anon_sym_LBRACK_CARET] = ACTIONS(913), + [sym_uri_autolink] = ACTIONS(887), + [sym_email_autolink] = ACTIONS(887), + [sym__whitespace_ge_2] = ACTIONS(915), + [aux_sym__whitespace_token1] = ACTIONS(917), + [sym__word_no_digit] = ACTIONS(919), + [sym__digits] = ACTIONS(919), + [anon_sym_DASH_DASH] = ACTIONS(921), + [anon_sym_DASH_DASH_DASH] = ACTIONS(919), + [anon_sym_DOT_DOT_DOT] = ACTIONS(919), + [sym__code_span_start] = ACTIONS(923), + [sym__emphasis_open_star] = ACTIONS(925), + [sym__emphasis_open_underscore] = ACTIONS(927), + [sym__emphasis_close_star] = ACTIONS(2489), + [sym__strikeout_open] = ACTIONS(931), + [sym__latex_span_start] = ACTIONS(933), + [sym__single_quote_open] = ACTIONS(935), + [sym__double_quote_open] = ACTIONS(937), + [sym__superscript_open] = ACTIONS(939), + [sym__subscript_open] = ACTIONS(941), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(943), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(945), + [sym__cite_author_in_text] = ACTIONS(947), + [sym__cite_suppress_author] = ACTIONS(949), + [sym__shortcode_open_escaped] = ACTIONS(951), + [sym__shortcode_open] = ACTIONS(953), + [sym__unclosed_span] = ACTIONS(887), }, [STATE(138)] = { - [sym_backslash_escape] = STATE(261), - [sym_commonmark_attribute] = STATE(261), - [sym_code_span] = STATE(261), - [sym_latex_span] = STATE(261), - [sym_superscript] = STATE(261), - [sym_subscript] = STATE(261), - [sym_strikeout] = STATE(261), - [sym_quoted_span] = STATE(261), - [sym_inline_note] = STATE(261), - [sym_citation] = STATE(261), - [sym_shortcode_escaped] = STATE(261), - [sym_shortcode] = STATE(261), - [sym_note_reference] = STATE(261), - [sym__link_text] = STATE(322), - [sym__link_text_non_empty] = STATE(323), - [sym_inline_link] = STATE(39), - [sym_image] = STATE(261), - [sym__image_inline_link] = STATE(595), - [sym__image_description] = STATE(1972), - [sym__image_description_non_empty] = STATE(1972), - [sym_hard_line_break] = STATE(261), - [sym__whitespace] = STATE(587), - [sym__word] = STATE(587), - [sym__soft_line_break] = STATE(597), - [sym__inline_base] = STATE(39), - [sym__text_base] = STATE(261), - [sym__inline_element_no_star] = STATE(39), - [aux_sym__inline_no_star] = STATE(39), - [sym__emphasis_star] = STATE(544), - [sym__strong_emphasis_star] = STATE(39), - [sym__emphasis_underscore] = STATE(544), - [sym__strong_emphasis_underscore] = STATE(39), - [aux_sym__inline_base_repeat1] = STATE(261), - [sym__backslash_escape] = ACTIONS(969), - [sym_entity_reference] = ACTIONS(971), - [sym_numeric_character_reference] = ACTIONS(971), - [anon_sym_LT] = ACTIONS(973), - [anon_sym_GT] = ACTIONS(975), - [anon_sym_BANG] = ACTIONS(977), - [anon_sym_DQUOTE] = ACTIONS(975), - [anon_sym_POUND] = ACTIONS(975), - [anon_sym_DOLLAR] = ACTIONS(975), - [anon_sym_PERCENT] = ACTIONS(975), - [anon_sym_AMP] = ACTIONS(973), - [anon_sym_SQUOTE] = ACTIONS(975), - [anon_sym_STAR] = ACTIONS(975), - [anon_sym_PLUS] = ACTIONS(975), - [anon_sym_COMMA] = ACTIONS(975), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_DOT] = ACTIONS(973), - [anon_sym_SLASH] = ACTIONS(975), - [anon_sym_COLON] = ACTIONS(975), - [anon_sym_SEMI] = ACTIONS(975), - [anon_sym_EQ] = ACTIONS(975), - [anon_sym_QMARK] = ACTIONS(975), - [anon_sym_LBRACK] = ACTIONS(979), - [anon_sym_BSLASH] = ACTIONS(981), - [anon_sym_CARET] = ACTIONS(973), - [anon_sym__] = ACTIONS(975), - [anon_sym_BQUOTE] = ACTIONS(975), - [anon_sym_LBRACE] = ACTIONS(983), - [anon_sym_PIPE] = ACTIONS(975), - [anon_sym_TILDE] = ACTIONS(975), - [anon_sym_LPAREN] = ACTIONS(975), - [anon_sym_RPAREN] = ACTIONS(975), - [sym__newline_token] = ACTIONS(985), - [anon_sym_CARET_LBRACK] = ACTIONS(987), - [anon_sym_LBRACK_CARET] = ACTIONS(989), - [sym_uri_autolink] = ACTIONS(971), - [sym_email_autolink] = ACTIONS(971), - [sym__whitespace_ge_2] = ACTIONS(991), - [aux_sym__whitespace_token1] = ACTIONS(993), - [sym__word_no_digit] = ACTIONS(995), - [sym__digits] = ACTIONS(995), - [anon_sym_DASH_DASH] = ACTIONS(997), - [anon_sym_DASH_DASH_DASH] = ACTIONS(995), - [anon_sym_DOT_DOT_DOT] = ACTIONS(995), - [sym__code_span_start] = ACTIONS(999), - [sym__emphasis_open_star] = ACTIONS(1001), - [sym__emphasis_open_underscore] = ACTIONS(1003), - [sym__emphasis_close_star] = ACTIONS(2067), - [sym__strikeout_open] = ACTIONS(1007), - [sym__latex_span_start] = ACTIONS(1009), - [sym__single_quote_open] = ACTIONS(1011), - [sym__double_quote_open] = ACTIONS(1013), - [sym__superscript_open] = ACTIONS(1015), - [sym__subscript_open] = ACTIONS(1017), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1019), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1021), - [sym__cite_author_in_text] = ACTIONS(1023), - [sym__cite_suppress_author] = ACTIONS(1025), - [sym__shortcode_open_escaped] = ACTIONS(1027), - [sym__shortcode_open] = ACTIONS(1029), - [sym__unclosed_span] = ACTIONS(971), + [sym_backslash_escape] = STATE(379), + [sym_commonmark_attribute] = STATE(379), + [sym_code_span] = STATE(379), + [sym_latex_span] = STATE(379), + [sym_insert] = STATE(379), + [sym_delete] = STATE(379), + [sym_highlight] = STATE(379), + [sym_edit_comment] = STATE(379), + [sym_superscript] = STATE(379), + [sym_subscript] = STATE(379), + [sym_strikeout] = STATE(379), + [sym_quoted_span] = STATE(379), + [sym_inline_note] = STATE(379), + [sym_citation] = STATE(379), + [sym_shortcode_escaped] = STATE(379), + [sym_shortcode] = STATE(379), + [sym_note_reference] = STATE(379), + [sym__link_text] = STATE(545), + [sym__link_text_non_empty] = STATE(546), + [sym_inline_link] = STATE(38), + [sym_image] = STATE(379), + [sym__image_inline_link] = STATE(1390), + [sym__image_description] = STATE(2363), + [sym__image_description_non_empty] = STATE(2363), + [sym_hard_line_break] = STATE(379), + [sym__whitespace] = STATE(1385), + [sym__word] = STATE(1385), + [sym__soft_line_break] = STATE(1391), + [sym__inline_base] = STATE(38), + [sym__text_base] = STATE(379), + [sym__inline_element_no_underscore] = STATE(38), + [aux_sym__inline_no_underscore] = STATE(38), + [sym__emphasis_star] = STATE(1168), + [sym__strong_emphasis_star] = STATE(38), + [sym__emphasis_underscore] = STATE(1168), + [sym__strong_emphasis_underscore] = STATE(38), + [aux_sym__inline_base_repeat1] = STATE(379), + [sym__backslash_escape] = ACTIONS(1059), + [sym_entity_reference] = ACTIONS(1061), + [sym_numeric_character_reference] = ACTIONS(1061), + [anon_sym_LT] = ACTIONS(1063), + [anon_sym_GT] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1067), + [anon_sym_DQUOTE] = ACTIONS(1065), + [anon_sym_POUND] = ACTIONS(1065), + [anon_sym_DOLLAR] = ACTIONS(1065), + [anon_sym_PERCENT] = ACTIONS(1065), + [anon_sym_AMP] = ACTIONS(1063), + [anon_sym_SQUOTE] = ACTIONS(1065), + [anon_sym_STAR] = ACTIONS(1065), + [anon_sym_PLUS] = ACTIONS(1065), + [anon_sym_COMMA] = ACTIONS(1065), + [anon_sym_DASH] = ACTIONS(1063), + [anon_sym_DOT] = ACTIONS(1063), + [anon_sym_SLASH] = ACTIONS(1065), + [anon_sym_COLON] = ACTIONS(1065), + [anon_sym_SEMI] = ACTIONS(1065), + [anon_sym_EQ] = ACTIONS(1065), + [anon_sym_QMARK] = ACTIONS(1065), + [anon_sym_LBRACK] = ACTIONS(1069), + [anon_sym_BSLASH] = ACTIONS(1071), + [anon_sym_CARET] = ACTIONS(1063), + [anon_sym__] = ACTIONS(1065), + [anon_sym_BQUOTE] = ACTIONS(1065), + [anon_sym_LBRACE] = ACTIONS(1073), + [anon_sym_PIPE] = ACTIONS(1065), + [anon_sym_TILDE] = ACTIONS(1065), + [anon_sym_LPAREN] = ACTIONS(1065), + [anon_sym_RPAREN] = ACTIONS(1065), + [sym__newline_token] = ACTIONS(1075), + [aux_sym_insert_token1] = ACTIONS(1077), + [aux_sym_delete_token1] = ACTIONS(1079), + [aux_sym_highlight_token1] = ACTIONS(1081), + [aux_sym_edit_comment_token1] = ACTIONS(1083), + [anon_sym_CARET_LBRACK] = ACTIONS(1085), + [anon_sym_LBRACK_CARET] = ACTIONS(1087), + [sym_uri_autolink] = ACTIONS(1061), + [sym_email_autolink] = ACTIONS(1061), + [sym__whitespace_ge_2] = ACTIONS(1089), + [aux_sym__whitespace_token1] = ACTIONS(1091), + [sym__word_no_digit] = ACTIONS(1093), + [sym__digits] = ACTIONS(1093), + [anon_sym_DASH_DASH] = ACTIONS(1095), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1093), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1093), + [sym__code_span_start] = ACTIONS(1097), + [sym__emphasis_open_star] = ACTIONS(1099), + [sym__emphasis_open_underscore] = ACTIONS(1101), + [sym__emphasis_close_underscore] = ACTIONS(2491), + [sym__strikeout_open] = ACTIONS(1105), + [sym__latex_span_start] = ACTIONS(1107), + [sym__single_quote_open] = ACTIONS(1109), + [sym__double_quote_open] = ACTIONS(1111), + [sym__superscript_open] = ACTIONS(1113), + [sym__subscript_open] = ACTIONS(1115), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1117), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1119), + [sym__cite_author_in_text] = ACTIONS(1121), + [sym__cite_suppress_author] = ACTIONS(1123), + [sym__shortcode_open_escaped] = ACTIONS(1125), + [sym__shortcode_open] = ACTIONS(1127), + [sym__unclosed_span] = ACTIONS(1061), }, [STATE(139)] = { - [sym_backslash_escape] = STATE(274), - [sym_commonmark_attribute] = STATE(274), - [sym_code_span] = STATE(274), - [sym_latex_span] = STATE(274), - [sym_superscript] = STATE(274), - [sym_subscript] = STATE(274), - [sym_strikeout] = STATE(274), - [sym_quoted_span] = STATE(274), - [sym_inline_note] = STATE(274), - [sym_citation] = STATE(274), - [sym_shortcode_escaped] = STATE(274), - [sym_shortcode] = STATE(274), - [sym_note_reference] = STATE(274), - [sym__link_text] = STATE(351), - [sym__link_text_non_empty] = STATE(352), - [sym_inline_link] = STATE(41), - [sym_image] = STATE(274), - [sym__image_inline_link] = STATE(894), - [sym__image_description] = STATE(2008), - [sym__image_description_non_empty] = STATE(2008), - [sym_hard_line_break] = STATE(274), - [sym__whitespace] = STATE(882), - [sym__word] = STATE(882), - [sym__soft_line_break] = STATE(898), - [sym__inline_base] = STATE(41), - [sym__text_base] = STATE(274), - [sym__inline_element_no_underscore] = STATE(41), - [aux_sym__inline_no_underscore] = STATE(41), - [sym__emphasis_star] = STATE(711), - [sym__strong_emphasis_star] = STATE(41), - [sym__emphasis_underscore] = STATE(711), - [sym__strong_emphasis_underscore] = STATE(41), - [aux_sym__inline_base_repeat1] = STATE(274), - [sym__backslash_escape] = ACTIONS(1123), - [sym_entity_reference] = ACTIONS(1125), - [sym_numeric_character_reference] = ACTIONS(1125), - [anon_sym_LT] = ACTIONS(1127), - [anon_sym_GT] = ACTIONS(1129), - [anon_sym_BANG] = ACTIONS(1131), - [anon_sym_DQUOTE] = ACTIONS(1129), - [anon_sym_POUND] = ACTIONS(1129), - [anon_sym_DOLLAR] = ACTIONS(1129), - [anon_sym_PERCENT] = ACTIONS(1129), - [anon_sym_AMP] = ACTIONS(1127), - [anon_sym_SQUOTE] = ACTIONS(1129), - [anon_sym_STAR] = ACTIONS(1129), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_COMMA] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1127), - [anon_sym_DOT] = ACTIONS(1127), - [anon_sym_SLASH] = ACTIONS(1129), - [anon_sym_COLON] = ACTIONS(1129), - [anon_sym_SEMI] = ACTIONS(1129), - [anon_sym_EQ] = ACTIONS(1129), - [anon_sym_QMARK] = ACTIONS(1129), - [anon_sym_LBRACK] = ACTIONS(1133), - [anon_sym_BSLASH] = ACTIONS(1135), - [anon_sym_CARET] = ACTIONS(1127), - [anon_sym__] = ACTIONS(1129), - [anon_sym_BQUOTE] = ACTIONS(1129), - [anon_sym_LBRACE] = ACTIONS(1137), - [anon_sym_PIPE] = ACTIONS(1129), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1129), - [anon_sym_RPAREN] = ACTIONS(1129), - [sym__newline_token] = ACTIONS(1139), - [anon_sym_CARET_LBRACK] = ACTIONS(1141), - [anon_sym_LBRACK_CARET] = ACTIONS(1143), - [sym_uri_autolink] = ACTIONS(1125), - [sym_email_autolink] = ACTIONS(1125), - [sym__whitespace_ge_2] = ACTIONS(1145), - [aux_sym__whitespace_token1] = ACTIONS(1147), - [sym__word_no_digit] = ACTIONS(1149), - [sym__digits] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1151), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1149), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1149), - [sym__code_span_start] = ACTIONS(1153), - [sym__emphasis_open_star] = ACTIONS(1155), - [sym__emphasis_open_underscore] = ACTIONS(1157), - [sym__emphasis_close_underscore] = ACTIONS(2069), - [sym__strikeout_open] = ACTIONS(1161), - [sym__latex_span_start] = ACTIONS(1163), - [sym__single_quote_open] = ACTIONS(1165), - [sym__double_quote_open] = ACTIONS(1167), - [sym__superscript_open] = ACTIONS(1169), - [sym__subscript_open] = ACTIONS(1171), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1173), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1175), - [sym__cite_author_in_text] = ACTIONS(1177), - [sym__cite_suppress_author] = ACTIONS(1179), - [sym__shortcode_open_escaped] = ACTIONS(1181), - [sym__shortcode_open] = ACTIONS(1183), - [sym__unclosed_span] = ACTIONS(1125), + [sym_backslash_escape] = STATE(370), + [sym_commonmark_attribute] = STATE(370), + [sym_code_span] = STATE(370), + [sym_latex_span] = STATE(370), + [sym_insert] = STATE(370), + [sym_delete] = STATE(370), + [sym_highlight] = STATE(370), + [sym_edit_comment] = STATE(370), + [sym_superscript] = STATE(370), + [sym_subscript] = STATE(370), + [sym_strikeout] = STATE(370), + [sym_quoted_span] = STATE(370), + [sym_inline_note] = STATE(370), + [sym_citation] = STATE(370), + [sym_shortcode_escaped] = STATE(370), + [sym_shortcode] = STATE(370), + [sym_note_reference] = STATE(370), + [sym__link_text] = STATE(472), + [sym__link_text_non_empty] = STATE(473), + [sym_inline_link] = STATE(60), + [sym_image] = STATE(370), + [sym__image_inline_link] = STATE(923), + [sym__image_description] = STATE(2342), + [sym__image_description_non_empty] = STATE(2342), + [sym_hard_line_break] = STATE(370), + [sym__whitespace] = STATE(920), + [sym__word] = STATE(920), + [sym__soft_line_break] = STATE(924), + [sym__inline_base] = STATE(60), + [sym__text_base] = STATE(370), + [sym__inline_element] = STATE(60), + [sym__emphasis_star] = STATE(821), + [sym__strong_emphasis_star] = STATE(60), + [sym__emphasis_underscore] = STATE(821), + [sym__strong_emphasis_underscore] = STATE(60), + [aux_sym_insert_repeat1] = STATE(60), + [aux_sym__inline_base_repeat1] = STATE(370), + [sym__backslash_escape] = ACTIONS(73), + [sym_entity_reference] = ACTIONS(75), + [sym_numeric_character_reference] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_BANG] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_POUND] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(79), + [anon_sym_PERCENT] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_STAR] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_COMMA] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_DOT] = ACTIONS(77), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_COLON] = ACTIONS(79), + [anon_sym_SEMI] = ACTIONS(79), + [anon_sym_EQ] = ACTIONS(79), + [anon_sym_QMARK] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(83), + [anon_sym_BSLASH] = ACTIONS(85), + [anon_sym_RBRACK] = ACTIONS(2493), + [anon_sym_CARET] = ACTIONS(77), + [anon_sym__] = ACTIONS(79), + [anon_sym_BQUOTE] = ACTIONS(79), + [anon_sym_LBRACE] = ACTIONS(89), + [anon_sym_PIPE] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(79), + [anon_sym_RPAREN] = ACTIONS(79), + [sym__newline_token] = ACTIONS(91), + [aux_sym_insert_token1] = ACTIONS(93), + [aux_sym_delete_token1] = ACTIONS(95), + [aux_sym_highlight_token1] = ACTIONS(97), + [aux_sym_edit_comment_token1] = ACTIONS(99), + [anon_sym_CARET_LBRACK] = ACTIONS(101), + [anon_sym_LBRACK_CARET] = ACTIONS(103), + [sym_uri_autolink] = ACTIONS(75), + [sym_email_autolink] = ACTIONS(75), + [sym__whitespace_ge_2] = ACTIONS(105), + [aux_sym__whitespace_token1] = ACTIONS(107), + [sym__word_no_digit] = ACTIONS(109), + [sym__digits] = ACTIONS(109), + [anon_sym_DASH_DASH] = ACTIONS(111), + [anon_sym_DASH_DASH_DASH] = ACTIONS(109), + [anon_sym_DOT_DOT_DOT] = ACTIONS(109), + [sym__code_span_start] = ACTIONS(113), + [sym__emphasis_open_star] = ACTIONS(115), + [sym__emphasis_open_underscore] = ACTIONS(117), + [sym__strikeout_open] = ACTIONS(121), + [sym__latex_span_start] = ACTIONS(123), + [sym__single_quote_open] = ACTIONS(125), + [sym__double_quote_open] = ACTIONS(127), + [sym__superscript_open] = ACTIONS(129), + [sym__subscript_open] = ACTIONS(131), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(133), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(135), + [sym__cite_author_in_text] = ACTIONS(137), + [sym__cite_suppress_author] = ACTIONS(139), + [sym__shortcode_open_escaped] = ACTIONS(141), + [sym__shortcode_open] = ACTIONS(143), + [sym__unclosed_span] = ACTIONS(75), }, [STATE(140)] = { - [sym_backslash_escape] = STATE(271), - [sym_commonmark_attribute] = STATE(271), - [sym_code_span] = STATE(271), - [sym_latex_span] = STATE(271), - [sym_superscript] = STATE(271), - [sym_subscript] = STATE(271), - [sym_strikeout] = STATE(271), - [sym_quoted_span] = STATE(271), - [sym_inline_note] = STATE(271), - [sym_citation] = STATE(271), - [sym_shortcode_escaped] = STATE(271), - [sym_shortcode] = STATE(271), - [sym_note_reference] = STATE(271), - [sym__link_text] = STATE(424), - [sym__link_text_non_empty] = STATE(425), - [sym_inline_link] = STATE(53), - [sym_image] = STATE(271), - [sym__image_inline_link] = STATE(883), - [sym__image_description] = STATE(1998), - [sym__image_description_non_empty] = STATE(1998), - [sym_hard_line_break] = STATE(271), - [sym__whitespace] = STATE(881), - [sym__word] = STATE(881), - [sym__soft_line_break] = STATE(884), - [sym__inline_base] = STATE(53), - [sym__text_base] = STATE(271), - [sym__inline_element] = STATE(53), - [sym__emphasis_star] = STATE(710), - [sym__strong_emphasis_star] = STATE(53), - [sym__emphasis_underscore] = STATE(710), - [sym__strong_emphasis_underscore] = STATE(53), - [aux_sym_superscript_repeat1] = STATE(53), - [aux_sym__inline_base_repeat1] = STATE(271), - [sym__backslash_escape] = ACTIONS(159), - [sym_entity_reference] = ACTIONS(161), - [sym_numeric_character_reference] = ACTIONS(161), - [anon_sym_LT] = ACTIONS(163), - [anon_sym_GT] = ACTIONS(165), - [anon_sym_BANG] = ACTIONS(167), - [anon_sym_DQUOTE] = ACTIONS(165), - [anon_sym_POUND] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(165), - [anon_sym_PERCENT] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_SQUOTE] = ACTIONS(165), - [anon_sym_STAR] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(165), - [anon_sym_COMMA] = ACTIONS(165), - [anon_sym_DASH] = ACTIONS(163), - [anon_sym_DOT] = ACTIONS(163), - [anon_sym_SLASH] = ACTIONS(165), - [anon_sym_COLON] = ACTIONS(165), - [anon_sym_SEMI] = ACTIONS(165), - [anon_sym_EQ] = ACTIONS(165), - [anon_sym_QMARK] = ACTIONS(165), - [anon_sym_LBRACK] = ACTIONS(169), - [anon_sym_BSLASH] = ACTIONS(171), - [anon_sym_RBRACK] = ACTIONS(2071), - [anon_sym_CARET] = ACTIONS(163), - [anon_sym__] = ACTIONS(165), - [anon_sym_BQUOTE] = ACTIONS(165), - [anon_sym_LBRACE] = ACTIONS(175), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(165), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_RPAREN] = ACTIONS(165), - [sym__newline_token] = ACTIONS(177), - [anon_sym_CARET_LBRACK] = ACTIONS(179), - [anon_sym_LBRACK_CARET] = ACTIONS(181), - [sym_uri_autolink] = ACTIONS(161), - [sym_email_autolink] = ACTIONS(161), - [sym__whitespace_ge_2] = ACTIONS(183), - [aux_sym__whitespace_token1] = ACTIONS(185), - [sym__word_no_digit] = ACTIONS(187), - [sym__digits] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_DASH_DASH_DASH] = ACTIONS(187), - [anon_sym_DOT_DOT_DOT] = ACTIONS(187), - [sym__code_span_start] = ACTIONS(191), - [sym__emphasis_open_star] = ACTIONS(193), - [sym__emphasis_open_underscore] = ACTIONS(195), - [sym__strikeout_open] = ACTIONS(199), - [sym__latex_span_start] = ACTIONS(201), - [sym__single_quote_open] = ACTIONS(203), - [sym__double_quote_open] = ACTIONS(205), - [sym__superscript_open] = ACTIONS(207), - [sym__subscript_open] = ACTIONS(209), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(211), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(213), - [sym__cite_author_in_text] = ACTIONS(215), - [sym__cite_suppress_author] = ACTIONS(217), - [sym__shortcode_open_escaped] = ACTIONS(219), - [sym__shortcode_open] = ACTIONS(221), - [sym__unclosed_span] = ACTIONS(161), - }, - [STATE(141)] = { - [sym_backslash_escape] = STATE(266), - [sym_commonmark_attribute] = STATE(266), - [sym_code_span] = STATE(266), - [sym_latex_span] = STATE(266), - [sym_superscript] = STATE(266), - [sym_subscript] = STATE(266), - [sym_strikeout] = STATE(266), - [sym_quoted_span] = STATE(266), - [sym_inline_note] = STATE(266), - [sym_citation] = STATE(266), - [sym_shortcode_escaped] = STATE(266), - [sym_shortcode] = STATE(266), - [sym_note_reference] = STATE(266), - [sym__link_text] = STATE(375), - [sym__link_text_non_empty] = STATE(376), - [sym_inline_link] = STATE(149), - [sym_image] = STATE(266), - [sym__image_inline_link] = STATE(1042), - [sym__image_description] = STATE(2044), - [sym__image_description_non_empty] = STATE(2044), - [sym_hard_line_break] = STATE(266), - [sym__whitespace] = STATE(1040), - [sym__word] = STATE(1040), - [sym__soft_line_break] = STATE(1043), - [sym__inline_base] = STATE(149), - [sym__text_base] = STATE(266), - [sym__inline_element] = STATE(149), - [sym__emphasis_star] = STATE(602), - [sym__strong_emphasis_star] = STATE(149), - [sym__emphasis_underscore] = STATE(602), - [sym__strong_emphasis_underscore] = STATE(149), - [aux_sym_superscript_repeat1] = STATE(149), - [aux_sym__inline_base_repeat1] = STATE(266), - [sym__backslash_escape] = ACTIONS(559), - [sym_entity_reference] = ACTIONS(561), - [sym_numeric_character_reference] = ACTIONS(561), - [anon_sym_LT] = ACTIONS(563), - [anon_sym_GT] = ACTIONS(565), - [anon_sym_BANG] = ACTIONS(567), - [anon_sym_DQUOTE] = ACTIONS(565), - [anon_sym_POUND] = ACTIONS(565), - [anon_sym_DOLLAR] = ACTIONS(565), - [anon_sym_PERCENT] = ACTIONS(565), - [anon_sym_AMP] = ACTIONS(563), - [anon_sym_SQUOTE] = ACTIONS(565), - [anon_sym_STAR] = ACTIONS(565), - [anon_sym_PLUS] = ACTIONS(565), - [anon_sym_COMMA] = ACTIONS(565), - [anon_sym_DASH] = ACTIONS(563), - [anon_sym_DOT] = ACTIONS(563), - [anon_sym_SLASH] = ACTIONS(565), - [anon_sym_COLON] = ACTIONS(565), - [anon_sym_SEMI] = ACTIONS(565), - [anon_sym_EQ] = ACTIONS(565), - [anon_sym_QMARK] = ACTIONS(565), - [anon_sym_LBRACK] = ACTIONS(569), - [anon_sym_BSLASH] = ACTIONS(571), - [anon_sym_CARET] = ACTIONS(563), - [anon_sym__] = ACTIONS(565), - [anon_sym_BQUOTE] = ACTIONS(565), - [anon_sym_LBRACE] = ACTIONS(573), - [anon_sym_PIPE] = ACTIONS(565), - [anon_sym_TILDE] = ACTIONS(565), - [anon_sym_LPAREN] = ACTIONS(565), - [anon_sym_RPAREN] = ACTIONS(565), - [sym__newline_token] = ACTIONS(575), - [anon_sym_CARET_LBRACK] = ACTIONS(577), - [anon_sym_LBRACK_CARET] = ACTIONS(579), - [sym_uri_autolink] = ACTIONS(561), - [sym_email_autolink] = ACTIONS(561), - [sym__whitespace_ge_2] = ACTIONS(581), - [aux_sym__whitespace_token1] = ACTIONS(583), - [sym__word_no_digit] = ACTIONS(585), - [sym__digits] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(587), - [anon_sym_DASH_DASH_DASH] = ACTIONS(585), - [anon_sym_DOT_DOT_DOT] = ACTIONS(585), - [sym__code_span_start] = ACTIONS(589), - [sym__emphasis_open_star] = ACTIONS(591), - [sym__emphasis_open_underscore] = ACTIONS(593), - [sym__strikeout_open] = ACTIONS(595), - [sym__strikeout_close] = ACTIONS(2073), - [sym__latex_span_start] = ACTIONS(599), - [sym__single_quote_open] = ACTIONS(601), - [sym__double_quote_open] = ACTIONS(603), - [sym__superscript_open] = ACTIONS(605), - [sym__subscript_open] = ACTIONS(607), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(609), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(611), - [sym__cite_author_in_text] = ACTIONS(613), - [sym__cite_suppress_author] = ACTIONS(615), - [sym__shortcode_open_escaped] = ACTIONS(617), - [sym__shortcode_open] = ACTIONS(619), - [sym__unclosed_span] = ACTIONS(561), - }, - [STATE(142)] = { - [sym_backslash_escape] = STATE(272), - [sym_commonmark_attribute] = STATE(272), - [sym_code_span] = STATE(272), - [sym_latex_span] = STATE(272), - [sym_superscript] = STATE(272), - [sym_subscript] = STATE(272), - [sym_strikeout] = STATE(272), - [sym_quoted_span] = STATE(272), - [sym_inline_note] = STATE(272), - [sym_citation] = STATE(272), - [sym_shortcode_escaped] = STATE(272), - [sym_shortcode] = STATE(272), - [sym_note_reference] = STATE(272), - [sym__link_text] = STATE(401), - [sym__link_text_non_empty] = STATE(402), - [sym_inline_link] = STATE(150), - [sym_image] = STATE(272), - [sym__image_inline_link] = STATE(1136), - [sym__image_description] = STATE(1942), - [sym__image_description_non_empty] = STATE(1942), - [sym_hard_line_break] = STATE(272), - [sym__whitespace] = STATE(1133), - [sym__word] = STATE(1133), - [sym__soft_line_break] = STATE(1137), - [sym__inline_base] = STATE(150), - [sym__text_base] = STATE(272), - [sym__inline_element] = STATE(150), - [sym__emphasis_star] = STATE(902), - [sym__strong_emphasis_star] = STATE(150), - [sym__emphasis_underscore] = STATE(902), - [sym__strong_emphasis_underscore] = STATE(150), - [aux_sym_superscript_repeat1] = STATE(150), - [aux_sym__inline_base_repeat1] = STATE(272), - [sym__backslash_escape] = ACTIONS(625), - [sym_entity_reference] = ACTIONS(627), - [sym_numeric_character_reference] = ACTIONS(627), - [anon_sym_LT] = ACTIONS(629), - [anon_sym_GT] = ACTIONS(631), - [anon_sym_BANG] = ACTIONS(633), - [anon_sym_DQUOTE] = ACTIONS(631), - [anon_sym_POUND] = ACTIONS(631), - [anon_sym_DOLLAR] = ACTIONS(631), - [anon_sym_PERCENT] = ACTIONS(631), - [anon_sym_AMP] = ACTIONS(629), - [anon_sym_SQUOTE] = ACTIONS(631), - [anon_sym_STAR] = ACTIONS(631), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_COMMA] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(629), - [anon_sym_DOT] = ACTIONS(629), - [anon_sym_SLASH] = ACTIONS(631), - [anon_sym_COLON] = ACTIONS(631), - [anon_sym_SEMI] = ACTIONS(631), - [anon_sym_EQ] = ACTIONS(631), - [anon_sym_QMARK] = ACTIONS(631), - [anon_sym_LBRACK] = ACTIONS(635), - [anon_sym_BSLASH] = ACTIONS(637), - [anon_sym_CARET] = ACTIONS(629), - [anon_sym__] = ACTIONS(631), - [anon_sym_BQUOTE] = ACTIONS(631), - [anon_sym_LBRACE] = ACTIONS(639), - [anon_sym_PIPE] = ACTIONS(631), - [anon_sym_TILDE] = ACTIONS(631), - [anon_sym_LPAREN] = ACTIONS(631), - [anon_sym_RPAREN] = ACTIONS(631), - [sym__newline_token] = ACTIONS(641), - [anon_sym_CARET_LBRACK] = ACTIONS(643), - [anon_sym_LBRACK_CARET] = ACTIONS(645), - [sym_uri_autolink] = ACTIONS(627), - [sym_email_autolink] = ACTIONS(627), - [sym__whitespace_ge_2] = ACTIONS(647), - [aux_sym__whitespace_token1] = ACTIONS(649), - [sym__word_no_digit] = ACTIONS(651), - [sym__digits] = ACTIONS(651), - [anon_sym_DASH_DASH] = ACTIONS(653), - [anon_sym_DASH_DASH_DASH] = ACTIONS(651), - [anon_sym_DOT_DOT_DOT] = ACTIONS(651), - [sym__code_span_start] = ACTIONS(655), - [sym__emphasis_open_star] = ACTIONS(657), - [sym__emphasis_open_underscore] = ACTIONS(659), - [sym__strikeout_open] = ACTIONS(661), - [sym__latex_span_start] = ACTIONS(663), - [sym__single_quote_open] = ACTIONS(665), - [sym__single_quote_close] = ACTIONS(2075), - [sym__double_quote_open] = ACTIONS(669), - [sym__superscript_open] = ACTIONS(671), - [sym__subscript_open] = ACTIONS(673), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(675), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(677), - [sym__cite_author_in_text] = ACTIONS(679), - [sym__cite_suppress_author] = ACTIONS(681), - [sym__shortcode_open_escaped] = ACTIONS(683), - [sym__shortcode_open] = ACTIONS(685), - [sym__unclosed_span] = ACTIONS(627), - }, - [STATE(143)] = { - [sym_backslash_escape] = STATE(277), - [sym_commonmark_attribute] = STATE(277), - [sym_code_span] = STATE(277), - [sym_latex_span] = STATE(277), - [sym_superscript] = STATE(277), - [sym_subscript] = STATE(277), - [sym_strikeout] = STATE(277), - [sym_quoted_span] = STATE(277), - [sym_inline_note] = STATE(277), - [sym_citation] = STATE(277), - [sym_shortcode_escaped] = STATE(277), - [sym_shortcode] = STATE(277), - [sym_note_reference] = STATE(277), - [sym__link_text] = STATE(427), - [sym__link_text_non_empty] = STATE(428), - [sym_inline_link] = STATE(151), - [sym_image] = STATE(277), - [sym__image_inline_link] = STATE(613), - [sym__image_description] = STATE(1930), - [sym__image_description_non_empty] = STATE(1930), - [sym_hard_line_break] = STATE(277), - [sym__whitespace] = STATE(610), - [sym__word] = STATE(610), - [sym__soft_line_break] = STATE(614), - [sym__inline_base] = STATE(151), - [sym__text_base] = STATE(277), - [sym__inline_element] = STATE(151), - [sym__emphasis_star] = STATE(1044), - [sym__strong_emphasis_star] = STATE(151), - [sym__emphasis_underscore] = STATE(1044), - [sym__strong_emphasis_underscore] = STATE(151), - [aux_sym_superscript_repeat1] = STATE(151), - [aux_sym__inline_base_repeat1] = STATE(277), - [sym__backslash_escape] = ACTIONS(687), - [sym_entity_reference] = ACTIONS(689), - [sym_numeric_character_reference] = ACTIONS(689), - [anon_sym_LT] = ACTIONS(691), - [anon_sym_GT] = ACTIONS(693), - [anon_sym_BANG] = ACTIONS(695), - [anon_sym_DQUOTE] = ACTIONS(693), - [anon_sym_POUND] = ACTIONS(693), - [anon_sym_DOLLAR] = ACTIONS(693), - [anon_sym_PERCENT] = ACTIONS(693), - [anon_sym_AMP] = ACTIONS(691), - [anon_sym_SQUOTE] = ACTIONS(693), - [anon_sym_STAR] = ACTIONS(693), - [anon_sym_PLUS] = ACTIONS(693), - [anon_sym_COMMA] = ACTIONS(693), - [anon_sym_DASH] = ACTIONS(691), - [anon_sym_DOT] = ACTIONS(691), - [anon_sym_SLASH] = ACTIONS(693), - [anon_sym_COLON] = ACTIONS(693), - [anon_sym_SEMI] = ACTIONS(693), - [anon_sym_EQ] = ACTIONS(693), - [anon_sym_QMARK] = ACTIONS(693), - [anon_sym_LBRACK] = ACTIONS(697), - [anon_sym_BSLASH] = ACTIONS(699), - [anon_sym_CARET] = ACTIONS(691), - [anon_sym__] = ACTIONS(693), - [anon_sym_BQUOTE] = ACTIONS(693), - [anon_sym_LBRACE] = ACTIONS(701), - [anon_sym_PIPE] = ACTIONS(693), - [anon_sym_TILDE] = ACTIONS(693), - [anon_sym_LPAREN] = ACTIONS(693), - [anon_sym_RPAREN] = ACTIONS(693), - [sym__newline_token] = ACTIONS(703), - [anon_sym_CARET_LBRACK] = ACTIONS(705), - [anon_sym_LBRACK_CARET] = ACTIONS(707), - [sym_uri_autolink] = ACTIONS(689), - [sym_email_autolink] = ACTIONS(689), - [sym__whitespace_ge_2] = ACTIONS(709), - [aux_sym__whitespace_token1] = ACTIONS(711), - [sym__word_no_digit] = ACTIONS(713), - [sym__digits] = ACTIONS(713), - [anon_sym_DASH_DASH] = ACTIONS(715), - [anon_sym_DASH_DASH_DASH] = ACTIONS(713), - [anon_sym_DOT_DOT_DOT] = ACTIONS(713), - [sym__code_span_start] = ACTIONS(717), - [sym__emphasis_open_star] = ACTIONS(719), - [sym__emphasis_open_underscore] = ACTIONS(721), - [sym__strikeout_open] = ACTIONS(723), - [sym__latex_span_start] = ACTIONS(725), - [sym__single_quote_open] = ACTIONS(727), - [sym__double_quote_open] = ACTIONS(729), - [sym__double_quote_close] = ACTIONS(2075), - [sym__superscript_open] = ACTIONS(731), - [sym__subscript_open] = ACTIONS(733), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(735), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(737), - [sym__cite_author_in_text] = ACTIONS(739), - [sym__cite_suppress_author] = ACTIONS(741), - [sym__shortcode_open_escaped] = ACTIONS(743), - [sym__shortcode_open] = ACTIONS(745), - [sym__unclosed_span] = ACTIONS(689), - }, - [STATE(144)] = { - [sym_backslash_escape] = STATE(262), - [sym_commonmark_attribute] = STATE(262), - [sym_code_span] = STATE(262), - [sym_latex_span] = STATE(262), - [sym_superscript] = STATE(262), - [sym_subscript] = STATE(262), - [sym_strikeout] = STATE(262), - [sym_quoted_span] = STATE(262), - [sym_inline_note] = STATE(262), - [sym_citation] = STATE(262), - [sym_shortcode_escaped] = STATE(262), - [sym_shortcode] = STATE(262), - [sym_note_reference] = STATE(262), - [sym__link_text] = STATE(313), - [sym__link_text_non_empty] = STATE(314), + [sym_backslash_escape] = STATE(366), + [sym_commonmark_attribute] = STATE(366), + [sym_code_span] = STATE(366), + [sym_latex_span] = STATE(366), + [sym_insert] = STATE(366), + [sym_delete] = STATE(366), + [sym_highlight] = STATE(366), + [sym_edit_comment] = STATE(366), + [sym_superscript] = STATE(366), + [sym_subscript] = STATE(366), + [sym_strikeout] = STATE(366), + [sym_quoted_span] = STATE(366), + [sym_inline_note] = STATE(366), + [sym_citation] = STATE(366), + [sym_shortcode_escaped] = STATE(366), + [sym_shortcode] = STATE(366), + [sym_note_reference] = STATE(366), + [sym__link_text] = STATE(490), + [sym__link_text_non_empty] = STATE(491), [sym_inline_link] = STATE(152), - [sym_image] = STATE(262), - [sym__image_inline_link] = STATE(708), - [sym__image_description] = STATE(1970), - [sym__image_description_non_empty] = STATE(1970), - [sym_hard_line_break] = STATE(262), - [sym__whitespace] = STATE(705), - [sym__word] = STATE(705), - [sym__soft_line_break] = STATE(709), + [sym_image] = STATE(366), + [sym__image_inline_link] = STATE(1244), + [sym__image_description] = STATE(2280), + [sym__image_description_non_empty] = STATE(2280), + [sym_hard_line_break] = STATE(366), + [sym__whitespace] = STATE(1218), + [sym__word] = STATE(1218), + [sym__soft_line_break] = STATE(1245), [sym__inline_base] = STATE(152), - [sym__text_base] = STATE(262), + [sym__text_base] = STATE(366), [sym__inline_element] = STATE(152), - [sym__emphasis_star] = STATE(1138), + [sym__emphasis_star] = STATE(1270), [sym__strong_emphasis_star] = STATE(152), - [sym__emphasis_underscore] = STATE(1138), + [sym__emphasis_underscore] = STATE(1270), [sym__strong_emphasis_underscore] = STATE(152), - [aux_sym_superscript_repeat1] = STATE(152), - [aux_sym__inline_base_repeat1] = STATE(262), - [sym__backslash_escape] = ACTIONS(747), - [sym_entity_reference] = ACTIONS(749), - [sym_numeric_character_reference] = ACTIONS(749), - [anon_sym_LT] = ACTIONS(751), - [anon_sym_GT] = ACTIONS(753), - [anon_sym_BANG] = ACTIONS(755), - [anon_sym_DQUOTE] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(753), - [anon_sym_DOLLAR] = ACTIONS(753), - [anon_sym_PERCENT] = ACTIONS(753), - [anon_sym_AMP] = ACTIONS(751), - [anon_sym_SQUOTE] = ACTIONS(753), - [anon_sym_STAR] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(753), - [anon_sym_COMMA] = ACTIONS(753), - [anon_sym_DASH] = ACTIONS(751), - [anon_sym_DOT] = ACTIONS(751), - [anon_sym_SLASH] = ACTIONS(753), - [anon_sym_COLON] = ACTIONS(753), - [anon_sym_SEMI] = ACTIONS(753), - [anon_sym_EQ] = ACTIONS(753), - [anon_sym_QMARK] = ACTIONS(753), - [anon_sym_LBRACK] = ACTIONS(757), - [anon_sym_BSLASH] = ACTIONS(759), - [anon_sym_CARET] = ACTIONS(751), - [anon_sym__] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(753), - [anon_sym_LBRACE] = ACTIONS(761), - [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_TILDE] = ACTIONS(753), - [anon_sym_LPAREN] = ACTIONS(753), - [anon_sym_RPAREN] = ACTIONS(753), - [sym__newline_token] = ACTIONS(763), - [anon_sym_CARET_LBRACK] = ACTIONS(765), - [anon_sym_LBRACK_CARET] = ACTIONS(767), - [sym_uri_autolink] = ACTIONS(749), - [sym_email_autolink] = ACTIONS(749), - [sym__whitespace_ge_2] = ACTIONS(769), - [aux_sym__whitespace_token1] = ACTIONS(771), - [sym__word_no_digit] = ACTIONS(773), - [sym__digits] = ACTIONS(773), - [anon_sym_DASH_DASH] = ACTIONS(775), - [anon_sym_DASH_DASH_DASH] = ACTIONS(773), - [anon_sym_DOT_DOT_DOT] = ACTIONS(773), - [sym__code_span_start] = ACTIONS(777), - [sym__emphasis_open_star] = ACTIONS(779), - [sym__emphasis_open_underscore] = ACTIONS(781), - [sym__strikeout_open] = ACTIONS(783), - [sym__latex_span_start] = ACTIONS(785), - [sym__single_quote_open] = ACTIONS(787), - [sym__double_quote_open] = ACTIONS(789), - [sym__superscript_open] = ACTIONS(791), - [sym__superscript_close] = ACTIONS(2077), - [sym__subscript_open] = ACTIONS(795), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(797), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(799), - [sym__cite_author_in_text] = ACTIONS(801), - [sym__cite_suppress_author] = ACTIONS(803), - [sym__shortcode_open_escaped] = ACTIONS(805), - [sym__shortcode_open] = ACTIONS(807), - [sym__unclosed_span] = ACTIONS(749), + [aux_sym_insert_repeat1] = STATE(152), + [aux_sym__inline_base_repeat1] = STATE(366), + [sym__backslash_escape] = ACTIONS(2005), + [sym_entity_reference] = ACTIONS(2007), + [sym_numeric_character_reference] = ACTIONS(2007), + [anon_sym_LT] = ACTIONS(2009), + [anon_sym_GT] = ACTIONS(2011), + [anon_sym_BANG] = ACTIONS(2013), + [anon_sym_DQUOTE] = ACTIONS(2011), + [anon_sym_POUND] = ACTIONS(2011), + [anon_sym_DOLLAR] = ACTIONS(2011), + [anon_sym_PERCENT] = ACTIONS(2011), + [anon_sym_AMP] = ACTIONS(2009), + [anon_sym_SQUOTE] = ACTIONS(2011), + [anon_sym_STAR] = ACTIONS(2011), + [anon_sym_PLUS] = ACTIONS(2011), + [anon_sym_COMMA] = ACTIONS(2011), + [anon_sym_DASH] = ACTIONS(2009), + [anon_sym_DOT] = ACTIONS(2009), + [anon_sym_SLASH] = ACTIONS(2011), + [anon_sym_COLON] = ACTIONS(2011), + [anon_sym_SEMI] = ACTIONS(2011), + [anon_sym_EQ] = ACTIONS(2011), + [anon_sym_QMARK] = ACTIONS(2011), + [anon_sym_LBRACK] = ACTIONS(2015), + [anon_sym_BSLASH] = ACTIONS(2017), + [anon_sym_CARET] = ACTIONS(2009), + [anon_sym__] = ACTIONS(2011), + [anon_sym_BQUOTE] = ACTIONS(2011), + [anon_sym_LBRACE] = ACTIONS(2019), + [anon_sym_PIPE] = ACTIONS(2011), + [anon_sym_TILDE] = ACTIONS(2011), + [anon_sym_LPAREN] = ACTIONS(2011), + [anon_sym_RPAREN] = ACTIONS(2011), + [sym__newline_token] = ACTIONS(2021), + [aux_sym_insert_token1] = ACTIONS(2023), + [aux_sym_delete_token1] = ACTIONS(2025), + [aux_sym_highlight_token1] = ACTIONS(2027), + [aux_sym_edit_comment_token1] = ACTIONS(2029), + [anon_sym_CARET_LBRACK] = ACTIONS(2031), + [anon_sym_LBRACK_CARET] = ACTIONS(2033), + [sym_uri_autolink] = ACTIONS(2007), + [sym_email_autolink] = ACTIONS(2007), + [sym__whitespace_ge_2] = ACTIONS(2035), + [aux_sym__whitespace_token1] = ACTIONS(2037), + [sym__word_no_digit] = ACTIONS(2039), + [sym__digits] = ACTIONS(2039), + [anon_sym_DASH_DASH] = ACTIONS(2041), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2039), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2039), + [sym__code_span_start] = ACTIONS(2043), + [sym__emphasis_open_star] = ACTIONS(2045), + [sym__emphasis_open_underscore] = ACTIONS(2047), + [sym__strikeout_open] = ACTIONS(2049), + [sym__strikeout_close] = ACTIONS(2495), + [sym__latex_span_start] = ACTIONS(2053), + [sym__single_quote_open] = ACTIONS(2055), + [sym__double_quote_open] = ACTIONS(2057), + [sym__superscript_open] = ACTIONS(2059), + [sym__subscript_open] = ACTIONS(2061), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2063), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2065), + [sym__cite_author_in_text] = ACTIONS(2067), + [sym__cite_suppress_author] = ACTIONS(2069), + [sym__shortcode_open_escaped] = ACTIONS(2071), + [sym__shortcode_open] = ACTIONS(2073), + [sym__unclosed_span] = ACTIONS(2007), }, - [STATE(145)] = { - [sym_backslash_escape] = STATE(270), - [sym_commonmark_attribute] = STATE(270), - [sym_code_span] = STATE(270), - [sym_latex_span] = STATE(270), - [sym_superscript] = STATE(270), - [sym_subscript] = STATE(270), - [sym_strikeout] = STATE(270), - [sym_quoted_span] = STATE(270), - [sym_inline_note] = STATE(270), - [sym_citation] = STATE(270), - [sym_shortcode_escaped] = STATE(270), - [sym_shortcode] = STATE(270), - [sym_note_reference] = STATE(270), - [sym__link_text] = STATE(359), - [sym__link_text_non_empty] = STATE(364), + [STATE(141)] = { + [sym_backslash_escape] = STATE(375), + [sym_commonmark_attribute] = STATE(375), + [sym_code_span] = STATE(375), + [sym_latex_span] = STATE(375), + [sym_insert] = STATE(375), + [sym_delete] = STATE(375), + [sym_highlight] = STATE(375), + [sym_edit_comment] = STATE(375), + [sym_superscript] = STATE(375), + [sym_subscript] = STATE(375), + [sym_strikeout] = STATE(375), + [sym_quoted_span] = STATE(375), + [sym_inline_note] = STATE(375), + [sym_citation] = STATE(375), + [sym_shortcode_escaped] = STATE(375), + [sym_shortcode] = STATE(375), + [sym_note_reference] = STATE(375), + [sym__link_text] = STATE(525), + [sym__link_text_non_empty] = STATE(527), [sym_inline_link] = STATE(153), - [sym_image] = STATE(270), - [sym__image_inline_link] = STATE(795), - [sym__image_description] = STATE(1984), - [sym__image_description_non_empty] = STATE(1984), - [sym_hard_line_break] = STATE(270), - [sym__whitespace] = STATE(792), - [sym__word] = STATE(792), - [sym__soft_line_break] = STATE(796), + [sym_image] = STATE(375), + [sym__image_inline_link] = STATE(972), + [sym__image_description] = STATE(2286), + [sym__image_description_non_empty] = STATE(2286), + [sym_hard_line_break] = STATE(375), + [sym__whitespace] = STATE(949), + [sym__word] = STATE(949), + [sym__soft_line_break] = STATE(973), [sym__inline_base] = STATE(153), - [sym__text_base] = STATE(270), + [sym__text_base] = STATE(375), [sym__inline_element] = STATE(153), - [sym__emphasis_star] = STATE(615), + [sym__emphasis_star] = STATE(1392), [sym__strong_emphasis_star] = STATE(153), - [sym__emphasis_underscore] = STATE(615), + [sym__emphasis_underscore] = STATE(1392), [sym__strong_emphasis_underscore] = STATE(153), - [aux_sym_superscript_repeat1] = STATE(153), - [aux_sym__inline_base_repeat1] = STATE(270), - [sym__backslash_escape] = ACTIONS(809), - [sym_entity_reference] = ACTIONS(811), - [sym_numeric_character_reference] = ACTIONS(811), - [anon_sym_LT] = ACTIONS(813), - [anon_sym_GT] = ACTIONS(815), - [anon_sym_BANG] = ACTIONS(817), - [anon_sym_DQUOTE] = ACTIONS(815), - [anon_sym_POUND] = ACTIONS(815), - [anon_sym_DOLLAR] = ACTIONS(815), - [anon_sym_PERCENT] = ACTIONS(815), - [anon_sym_AMP] = ACTIONS(813), - [anon_sym_SQUOTE] = ACTIONS(815), - [anon_sym_STAR] = ACTIONS(815), - [anon_sym_PLUS] = ACTIONS(815), - [anon_sym_COMMA] = ACTIONS(815), - [anon_sym_DASH] = ACTIONS(813), - [anon_sym_DOT] = ACTIONS(813), - [anon_sym_SLASH] = ACTIONS(815), - [anon_sym_COLON] = ACTIONS(815), - [anon_sym_SEMI] = ACTIONS(815), - [anon_sym_EQ] = ACTIONS(815), - [anon_sym_QMARK] = ACTIONS(815), - [anon_sym_LBRACK] = ACTIONS(819), - [anon_sym_BSLASH] = ACTIONS(821), - [anon_sym_CARET] = ACTIONS(813), - [anon_sym__] = ACTIONS(815), - [anon_sym_BQUOTE] = ACTIONS(815), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_PIPE] = ACTIONS(815), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_RPAREN] = ACTIONS(815), - [sym__newline_token] = ACTIONS(825), - [anon_sym_CARET_LBRACK] = ACTIONS(827), - [anon_sym_LBRACK_CARET] = ACTIONS(829), - [sym_uri_autolink] = ACTIONS(811), - [sym_email_autolink] = ACTIONS(811), - [sym__whitespace_ge_2] = ACTIONS(831), - [aux_sym__whitespace_token1] = ACTIONS(833), - [sym__word_no_digit] = ACTIONS(835), - [sym__digits] = ACTIONS(835), - [anon_sym_DASH_DASH] = ACTIONS(837), - [anon_sym_DASH_DASH_DASH] = ACTIONS(835), - [anon_sym_DOT_DOT_DOT] = ACTIONS(835), - [sym__code_span_start] = ACTIONS(839), - [sym__emphasis_open_star] = ACTIONS(841), - [sym__emphasis_open_underscore] = ACTIONS(843), - [sym__strikeout_open] = ACTIONS(845), - [sym__latex_span_start] = ACTIONS(847), - [sym__single_quote_open] = ACTIONS(849), - [sym__double_quote_open] = ACTIONS(851), - [sym__superscript_open] = ACTIONS(853), - [sym__subscript_open] = ACTIONS(855), - [sym__subscript_close] = ACTIONS(2079), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(859), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(861), - [sym__cite_author_in_text] = ACTIONS(863), - [sym__cite_suppress_author] = ACTIONS(865), - [sym__shortcode_open_escaped] = ACTIONS(867), - [sym__shortcode_open] = ACTIONS(869), - [sym__unclosed_span] = ACTIONS(811), + [aux_sym_insert_repeat1] = STATE(153), + [aux_sym__inline_base_repeat1] = STATE(375), + [sym__backslash_escape] = ACTIONS(2179), + [sym_entity_reference] = ACTIONS(2181), + [sym_numeric_character_reference] = ACTIONS(2181), + [anon_sym_LT] = ACTIONS(2183), + [anon_sym_GT] = ACTIONS(2185), + [anon_sym_BANG] = ACTIONS(2187), + [anon_sym_DQUOTE] = ACTIONS(2185), + [anon_sym_POUND] = ACTIONS(2185), + [anon_sym_DOLLAR] = ACTIONS(2185), + [anon_sym_PERCENT] = ACTIONS(2185), + [anon_sym_AMP] = ACTIONS(2183), + [anon_sym_SQUOTE] = ACTIONS(2185), + [anon_sym_STAR] = ACTIONS(2185), + [anon_sym_PLUS] = ACTIONS(2185), + [anon_sym_COMMA] = ACTIONS(2185), + [anon_sym_DASH] = ACTIONS(2183), + [anon_sym_DOT] = ACTIONS(2183), + [anon_sym_SLASH] = ACTIONS(2185), + [anon_sym_COLON] = ACTIONS(2185), + [anon_sym_SEMI] = ACTIONS(2185), + [anon_sym_EQ] = ACTIONS(2185), + [anon_sym_QMARK] = ACTIONS(2185), + [anon_sym_LBRACK] = ACTIONS(2189), + [anon_sym_BSLASH] = ACTIONS(2191), + [anon_sym_CARET] = ACTIONS(2183), + [anon_sym__] = ACTIONS(2185), + [anon_sym_BQUOTE] = ACTIONS(2185), + [anon_sym_LBRACE] = ACTIONS(2193), + [anon_sym_PIPE] = ACTIONS(2185), + [anon_sym_TILDE] = ACTIONS(2185), + [anon_sym_LPAREN] = ACTIONS(2185), + [anon_sym_RPAREN] = ACTIONS(2185), + [sym__newline_token] = ACTIONS(2195), + [aux_sym_insert_token1] = ACTIONS(2197), + [aux_sym_delete_token1] = ACTIONS(2199), + [aux_sym_highlight_token1] = ACTIONS(2201), + [aux_sym_edit_comment_token1] = ACTIONS(2203), + [anon_sym_CARET_LBRACK] = ACTIONS(2205), + [anon_sym_LBRACK_CARET] = ACTIONS(2207), + [sym_uri_autolink] = ACTIONS(2181), + [sym_email_autolink] = ACTIONS(2181), + [sym__whitespace_ge_2] = ACTIONS(2209), + [aux_sym__whitespace_token1] = ACTIONS(2211), + [sym__word_no_digit] = ACTIONS(2213), + [sym__digits] = ACTIONS(2213), + [anon_sym_DASH_DASH] = ACTIONS(2215), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2213), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2213), + [sym__code_span_start] = ACTIONS(2217), + [sym__emphasis_open_star] = ACTIONS(2219), + [sym__emphasis_open_underscore] = ACTIONS(2221), + [sym__strikeout_open] = ACTIONS(2223), + [sym__latex_span_start] = ACTIONS(2225), + [sym__single_quote_open] = ACTIONS(2227), + [sym__single_quote_close] = ACTIONS(2497), + [sym__double_quote_open] = ACTIONS(2229), + [sym__superscript_open] = ACTIONS(2231), + [sym__subscript_open] = ACTIONS(2233), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2235), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2237), + [sym__cite_author_in_text] = ACTIONS(2239), + [sym__cite_suppress_author] = ACTIONS(2241), + [sym__shortcode_open_escaped] = ACTIONS(2243), + [sym__shortcode_open] = ACTIONS(2245), + [sym__unclosed_span] = ACTIONS(2181), + }, + [STATE(142)] = { + [sym_backslash_escape] = STATE(383), + [sym_commonmark_attribute] = STATE(383), + [sym_code_span] = STATE(383), + [sym_latex_span] = STATE(383), + [sym_insert] = STATE(383), + [sym_delete] = STATE(383), + [sym_highlight] = STATE(383), + [sym_edit_comment] = STATE(383), + [sym_superscript] = STATE(383), + [sym_subscript] = STATE(383), + [sym_strikeout] = STATE(383), + [sym_quoted_span] = STATE(383), + [sym_inline_note] = STATE(383), + [sym_citation] = STATE(383), + [sym_shortcode_escaped] = STATE(383), + [sym_shortcode] = STATE(383), + [sym_note_reference] = STATE(383), + [sym__link_text] = STATE(395), + [sym__link_text_non_empty] = STATE(396), + [sym_inline_link] = STATE(154), + [sym_image] = STATE(383), + [sym__image_inline_link] = STATE(1263), + [sym__image_description] = STATE(2300), + [sym__image_description_non_empty] = STATE(2300), + [sym_hard_line_break] = STATE(383), + [sym__whitespace] = STATE(1259), + [sym__word] = STATE(1259), + [sym__soft_line_break] = STATE(1264), + [sym__inline_base] = STATE(154), + [sym__text_base] = STATE(383), + [sym__inline_element] = STATE(154), + [sym__emphasis_star] = STATE(1249), + [sym__strong_emphasis_star] = STATE(154), + [sym__emphasis_underscore] = STATE(1249), + [sym__strong_emphasis_underscore] = STATE(154), + [aux_sym_insert_repeat1] = STATE(154), + [aux_sym__inline_base_repeat1] = STATE(383), + [sym__backslash_escape] = ACTIONS(637), + [sym_entity_reference] = ACTIONS(639), + [sym_numeric_character_reference] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_GT] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(645), + [anon_sym_DQUOTE] = ACTIONS(643), + [anon_sym_POUND] = ACTIONS(643), + [anon_sym_DOLLAR] = ACTIONS(643), + [anon_sym_PERCENT] = ACTIONS(643), + [anon_sym_AMP] = ACTIONS(641), + [anon_sym_SQUOTE] = ACTIONS(643), + [anon_sym_STAR] = ACTIONS(643), + [anon_sym_PLUS] = ACTIONS(643), + [anon_sym_COMMA] = ACTIONS(643), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_DOT] = ACTIONS(641), + [anon_sym_SLASH] = ACTIONS(643), + [anon_sym_COLON] = ACTIONS(643), + [anon_sym_SEMI] = ACTIONS(643), + [anon_sym_EQ] = ACTIONS(643), + [anon_sym_QMARK] = ACTIONS(643), + [anon_sym_LBRACK] = ACTIONS(647), + [anon_sym_BSLASH] = ACTIONS(649), + [anon_sym_CARET] = ACTIONS(641), + [anon_sym__] = ACTIONS(643), + [anon_sym_BQUOTE] = ACTIONS(643), + [anon_sym_LBRACE] = ACTIONS(651), + [anon_sym_PIPE] = ACTIONS(643), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_LPAREN] = ACTIONS(643), + [anon_sym_RPAREN] = ACTIONS(643), + [sym__newline_token] = ACTIONS(653), + [aux_sym_insert_token1] = ACTIONS(655), + [aux_sym_delete_token1] = ACTIONS(657), + [aux_sym_highlight_token1] = ACTIONS(659), + [aux_sym_edit_comment_token1] = ACTIONS(661), + [anon_sym_CARET_LBRACK] = ACTIONS(663), + [anon_sym_LBRACK_CARET] = ACTIONS(665), + [sym_uri_autolink] = ACTIONS(639), + [sym_email_autolink] = ACTIONS(639), + [sym__whitespace_ge_2] = ACTIONS(667), + [aux_sym__whitespace_token1] = ACTIONS(669), + [sym__word_no_digit] = ACTIONS(671), + [sym__digits] = ACTIONS(671), + [anon_sym_DASH_DASH] = ACTIONS(673), + [anon_sym_DASH_DASH_DASH] = ACTIONS(671), + [anon_sym_DOT_DOT_DOT] = ACTIONS(671), + [sym__code_span_start] = ACTIONS(675), + [sym__emphasis_open_star] = ACTIONS(677), + [sym__emphasis_open_underscore] = ACTIONS(679), + [sym__strikeout_open] = ACTIONS(681), + [sym__latex_span_start] = ACTIONS(683), + [sym__single_quote_open] = ACTIONS(685), + [sym__double_quote_open] = ACTIONS(687), + [sym__double_quote_close] = ACTIONS(2497), + [sym__superscript_open] = ACTIONS(691), + [sym__subscript_open] = ACTIONS(693), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(695), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(697), + [sym__cite_author_in_text] = ACTIONS(699), + [sym__cite_suppress_author] = ACTIONS(701), + [sym__shortcode_open_escaped] = ACTIONS(703), + [sym__shortcode_open] = ACTIONS(705), + [sym__unclosed_span] = ACTIONS(639), + }, + [STATE(143)] = { + [sym_backslash_escape] = STATE(365), + [sym_commonmark_attribute] = STATE(365), + [sym_code_span] = STATE(365), + [sym_latex_span] = STATE(365), + [sym_insert] = STATE(365), + [sym_delete] = STATE(365), + [sym_highlight] = STATE(365), + [sym_edit_comment] = STATE(365), + [sym_superscript] = STATE(365), + [sym_subscript] = STATE(365), + [sym_strikeout] = STATE(365), + [sym_quoted_span] = STATE(365), + [sym_inline_note] = STATE(365), + [sym_citation] = STATE(365), + [sym_shortcode_escaped] = STATE(365), + [sym_shortcode] = STATE(365), + [sym_note_reference] = STATE(365), + [sym__link_text] = STATE(416), + [sym__link_text_non_empty] = STATE(417), + [sym_inline_link] = STATE(155), + [sym_image] = STATE(365), + [sym__image_inline_link] = STATE(712), + [sym__image_description] = STATE(2314), + [sym__image_description_non_empty] = STATE(2314), + [sym_hard_line_break] = STATE(365), + [sym__whitespace] = STATE(709), + [sym__word] = STATE(709), + [sym__soft_line_break] = STATE(713), + [sym__inline_base] = STATE(155), + [sym__text_base] = STATE(365), + [sym__inline_element] = STATE(155), + [sym__emphasis_star] = STATE(979), + [sym__strong_emphasis_star] = STATE(155), + [sym__emphasis_underscore] = STATE(979), + [sym__strong_emphasis_underscore] = STATE(155), + [aux_sym_insert_repeat1] = STATE(155), + [aux_sym__inline_base_repeat1] = STATE(365), + [sym__backslash_escape] = ACTIONS(1341), + [sym_entity_reference] = ACTIONS(1343), + [sym_numeric_character_reference] = ACTIONS(1343), + [anon_sym_LT] = ACTIONS(1345), + [anon_sym_GT] = ACTIONS(1347), + [anon_sym_BANG] = ACTIONS(1349), + [anon_sym_DQUOTE] = ACTIONS(1347), + [anon_sym_POUND] = ACTIONS(1347), + [anon_sym_DOLLAR] = ACTIONS(1347), + [anon_sym_PERCENT] = ACTIONS(1347), + [anon_sym_AMP] = ACTIONS(1345), + [anon_sym_SQUOTE] = ACTIONS(1347), + [anon_sym_STAR] = ACTIONS(1347), + [anon_sym_PLUS] = ACTIONS(1347), + [anon_sym_COMMA] = ACTIONS(1347), + [anon_sym_DASH] = ACTIONS(1345), + [anon_sym_DOT] = ACTIONS(1345), + [anon_sym_SLASH] = ACTIONS(1347), + [anon_sym_COLON] = ACTIONS(1347), + [anon_sym_SEMI] = ACTIONS(1347), + [anon_sym_EQ] = ACTIONS(1347), + [anon_sym_QMARK] = ACTIONS(1347), + [anon_sym_LBRACK] = ACTIONS(1351), + [anon_sym_BSLASH] = ACTIONS(1353), + [anon_sym_CARET] = ACTIONS(1345), + [anon_sym__] = ACTIONS(1347), + [anon_sym_BQUOTE] = ACTIONS(1347), + [anon_sym_LBRACE] = ACTIONS(1355), + [anon_sym_PIPE] = ACTIONS(1347), + [anon_sym_TILDE] = ACTIONS(1347), + [anon_sym_LPAREN] = ACTIONS(1347), + [anon_sym_RPAREN] = ACTIONS(1347), + [sym__newline_token] = ACTIONS(1357), + [aux_sym_insert_token1] = ACTIONS(1359), + [aux_sym_delete_token1] = ACTIONS(1361), + [aux_sym_highlight_token1] = ACTIONS(1363), + [aux_sym_edit_comment_token1] = ACTIONS(1365), + [anon_sym_CARET_LBRACK] = ACTIONS(1367), + [anon_sym_LBRACK_CARET] = ACTIONS(1369), + [sym_uri_autolink] = ACTIONS(1343), + [sym_email_autolink] = ACTIONS(1343), + [sym__whitespace_ge_2] = ACTIONS(1371), + [aux_sym__whitespace_token1] = ACTIONS(1373), + [sym__word_no_digit] = ACTIONS(1375), + [sym__digits] = ACTIONS(1375), + [anon_sym_DASH_DASH] = ACTIONS(1377), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1375), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1375), + [sym__code_span_start] = ACTIONS(1379), + [sym__emphasis_open_star] = ACTIONS(1381), + [sym__emphasis_open_underscore] = ACTIONS(1383), + [sym__strikeout_open] = ACTIONS(1385), + [sym__latex_span_start] = ACTIONS(1387), + [sym__single_quote_open] = ACTIONS(1389), + [sym__double_quote_open] = ACTIONS(1391), + [sym__superscript_open] = ACTIONS(1393), + [sym__superscript_close] = ACTIONS(2499), + [sym__subscript_open] = ACTIONS(1397), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1399), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1401), + [sym__cite_author_in_text] = ACTIONS(1403), + [sym__cite_suppress_author] = ACTIONS(1405), + [sym__shortcode_open_escaped] = ACTIONS(1407), + [sym__shortcode_open] = ACTIONS(1409), + [sym__unclosed_span] = ACTIONS(1343), + }, + [STATE(144)] = { + [sym_backslash_escape] = STATE(367), + [sym_commonmark_attribute] = STATE(367), + [sym_code_span] = STATE(367), + [sym_latex_span] = STATE(367), + [sym_insert] = STATE(367), + [sym_delete] = STATE(367), + [sym_highlight] = STATE(367), + [sym_edit_comment] = STATE(367), + [sym_superscript] = STATE(367), + [sym_subscript] = STATE(367), + [sym_strikeout] = STATE(367), + [sym_quoted_span] = STATE(367), + [sym_inline_note] = STATE(367), + [sym_citation] = STATE(367), + [sym_shortcode_escaped] = STATE(367), + [sym_shortcode] = STATE(367), + [sym_note_reference] = STATE(367), + [sym__link_text] = STATE(435), + [sym__link_text_non_empty] = STATE(436), + [sym_inline_link] = STATE(156), + [sym_image] = STATE(367), + [sym__image_inline_link] = STATE(819), + [sym__image_description] = STATE(2328), + [sym__image_description_non_empty] = STATE(2328), + [sym_hard_line_break] = STATE(367), + [sym__whitespace] = STATE(816), + [sym__word] = STATE(816), + [sym__soft_line_break] = STATE(820), + [sym__inline_base] = STATE(156), + [sym__text_base] = STATE(367), + [sym__inline_element] = STATE(156), + [sym__emphasis_star] = STATE(1271), + [sym__strong_emphasis_star] = STATE(156), + [sym__emphasis_underscore] = STATE(1271), + [sym__strong_emphasis_underscore] = STATE(156), + [aux_sym_insert_repeat1] = STATE(156), + [aux_sym__inline_base_repeat1] = STATE(367), + [sym__backslash_escape] = ACTIONS(1413), + [sym_entity_reference] = ACTIONS(1415), + [sym_numeric_character_reference] = ACTIONS(1415), + [anon_sym_LT] = ACTIONS(1417), + [anon_sym_GT] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1419), + [anon_sym_POUND] = ACTIONS(1419), + [anon_sym_DOLLAR] = ACTIONS(1419), + [anon_sym_PERCENT] = ACTIONS(1419), + [anon_sym_AMP] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [anon_sym_STAR] = ACTIONS(1419), + [anon_sym_PLUS] = ACTIONS(1419), + [anon_sym_COMMA] = ACTIONS(1419), + [anon_sym_DASH] = ACTIONS(1417), + [anon_sym_DOT] = ACTIONS(1417), + [anon_sym_SLASH] = ACTIONS(1419), + [anon_sym_COLON] = ACTIONS(1419), + [anon_sym_SEMI] = ACTIONS(1419), + [anon_sym_EQ] = ACTIONS(1419), + [anon_sym_QMARK] = ACTIONS(1419), + [anon_sym_LBRACK] = ACTIONS(1423), + [anon_sym_BSLASH] = ACTIONS(1425), + [anon_sym_CARET] = ACTIONS(1417), + [anon_sym__] = ACTIONS(1419), + [anon_sym_BQUOTE] = ACTIONS(1419), + [anon_sym_LBRACE] = ACTIONS(1427), + [anon_sym_PIPE] = ACTIONS(1419), + [anon_sym_TILDE] = ACTIONS(1419), + [anon_sym_LPAREN] = ACTIONS(1419), + [anon_sym_RPAREN] = ACTIONS(1419), + [sym__newline_token] = ACTIONS(1429), + [aux_sym_insert_token1] = ACTIONS(1431), + [aux_sym_delete_token1] = ACTIONS(1433), + [aux_sym_highlight_token1] = ACTIONS(1435), + [aux_sym_edit_comment_token1] = ACTIONS(1437), + [anon_sym_CARET_LBRACK] = ACTIONS(1439), + [anon_sym_LBRACK_CARET] = ACTIONS(1441), + [sym_uri_autolink] = ACTIONS(1415), + [sym_email_autolink] = ACTIONS(1415), + [sym__whitespace_ge_2] = ACTIONS(1443), + [aux_sym__whitespace_token1] = ACTIONS(1445), + [sym__word_no_digit] = ACTIONS(1447), + [sym__digits] = ACTIONS(1447), + [anon_sym_DASH_DASH] = ACTIONS(1449), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1447), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1447), + [sym__code_span_start] = ACTIONS(1451), + [sym__emphasis_open_star] = ACTIONS(1453), + [sym__emphasis_open_underscore] = ACTIONS(1455), + [sym__strikeout_open] = ACTIONS(1457), + [sym__latex_span_start] = ACTIONS(1459), + [sym__single_quote_open] = ACTIONS(1461), + [sym__double_quote_open] = ACTIONS(1463), + [sym__superscript_open] = ACTIONS(1465), + [sym__subscript_open] = ACTIONS(1467), + [sym__subscript_close] = ACTIONS(2501), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1471), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1473), + [sym__cite_author_in_text] = ACTIONS(1475), + [sym__cite_suppress_author] = ACTIONS(1477), + [sym__shortcode_open_escaped] = ACTIONS(1479), + [sym__shortcode_open] = ACTIONS(1481), + [sym__unclosed_span] = ACTIONS(1415), + }, + [STATE(145)] = { + [sym_backslash_escape] = STATE(372), + [sym_commonmark_attribute] = STATE(372), + [sym_code_span] = STATE(372), + [sym_latex_span] = STATE(372), + [sym_insert] = STATE(372), + [sym_delete] = STATE(372), + [sym_highlight] = STATE(372), + [sym_edit_comment] = STATE(372), + [sym_superscript] = STATE(372), + [sym_subscript] = STATE(372), + [sym_strikeout] = STATE(372), + [sym_quoted_span] = STATE(372), + [sym_inline_note] = STATE(372), + [sym_citation] = STATE(372), + [sym_shortcode_escaped] = STATE(372), + [sym_shortcode] = STATE(372), + [sym_note_reference] = STATE(372), + [sym__link_text] = STATE(454), + [sym__link_text_non_empty] = STATE(455), + [sym_inline_link] = STATE(157), + [sym_image] = STATE(372), + [sym__image_inline_link] = STATE(1025), + [sym__image_description] = STATE(2356), + [sym__image_description_non_empty] = STATE(2356), + [sym_hard_line_break] = STATE(372), + [sym__whitespace] = STATE(1022), + [sym__word] = STATE(1022), + [sym__soft_line_break] = STATE(1026), + [sym__inline_base] = STATE(157), + [sym__text_base] = STATE(372), + [sym__inline_element] = STATE(157), + [sym__emphasis_star] = STATE(714), + [sym__strong_emphasis_star] = STATE(157), + [sym__emphasis_underscore] = STATE(714), + [sym__strong_emphasis_underscore] = STATE(157), + [aux_sym_insert_repeat1] = STATE(157), + [aux_sym__inline_base_repeat1] = STATE(372), + [sym__backslash_escape] = ACTIONS(707), + [sym_entity_reference] = ACTIONS(709), + [sym_numeric_character_reference] = ACTIONS(709), + [anon_sym_LT] = ACTIONS(711), + [anon_sym_GT] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(715), + [anon_sym_DQUOTE] = ACTIONS(713), + [anon_sym_POUND] = ACTIONS(713), + [anon_sym_DOLLAR] = ACTIONS(713), + [anon_sym_PERCENT] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(711), + [anon_sym_SQUOTE] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_COMMA] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_DOT] = ACTIONS(711), + [anon_sym_SLASH] = ACTIONS(713), + [anon_sym_COLON] = ACTIONS(713), + [anon_sym_SEMI] = ACTIONS(713), + [anon_sym_EQ] = ACTIONS(713), + [anon_sym_QMARK] = ACTIONS(713), + [anon_sym_LBRACK] = ACTIONS(717), + [anon_sym_BSLASH] = ACTIONS(719), + [anon_sym_CARET] = ACTIONS(711), + [anon_sym__] = ACTIONS(713), + [anon_sym_BQUOTE] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(721), + [anon_sym_PIPE] = ACTIONS(713), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_LPAREN] = ACTIONS(713), + [anon_sym_RPAREN] = ACTIONS(713), + [sym__newline_token] = ACTIONS(723), + [aux_sym_insert_token1] = ACTIONS(725), + [aux_sym_insert_token2] = ACTIONS(2503), + [aux_sym_delete_token1] = ACTIONS(729), + [aux_sym_highlight_token1] = ACTIONS(731), + [aux_sym_edit_comment_token1] = ACTIONS(733), + [anon_sym_CARET_LBRACK] = ACTIONS(735), + [anon_sym_LBRACK_CARET] = ACTIONS(737), + [sym_uri_autolink] = ACTIONS(709), + [sym_email_autolink] = ACTIONS(709), + [sym__whitespace_ge_2] = ACTIONS(739), + [aux_sym__whitespace_token1] = ACTIONS(741), + [sym__word_no_digit] = ACTIONS(743), + [sym__digits] = ACTIONS(743), + [anon_sym_DASH_DASH] = ACTIONS(745), + [anon_sym_DASH_DASH_DASH] = ACTIONS(743), + [anon_sym_DOT_DOT_DOT] = ACTIONS(743), + [sym__code_span_start] = ACTIONS(747), + [sym__emphasis_open_star] = ACTIONS(749), + [sym__emphasis_open_underscore] = ACTIONS(751), + [sym__strikeout_open] = ACTIONS(753), + [sym__latex_span_start] = ACTIONS(755), + [sym__single_quote_open] = ACTIONS(757), + [sym__double_quote_open] = ACTIONS(759), + [sym__superscript_open] = ACTIONS(761), + [sym__subscript_open] = ACTIONS(763), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(765), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(767), + [sym__cite_author_in_text] = ACTIONS(769), + [sym__cite_suppress_author] = ACTIONS(771), + [sym__shortcode_open_escaped] = ACTIONS(773), + [sym__shortcode_open] = ACTIONS(775), + [sym__unclosed_span] = ACTIONS(709), }, [STATE(146)] = { - [sym_backslash_escape] = STATE(261), - [sym_commonmark_attribute] = STATE(261), - [sym_code_span] = STATE(261), - [sym_latex_span] = STATE(261), - [sym_superscript] = STATE(261), - [sym_subscript] = STATE(261), - [sym_strikeout] = STATE(261), - [sym_quoted_span] = STATE(261), - [sym_inline_note] = STATE(261), - [sym_citation] = STATE(261), - [sym_shortcode_escaped] = STATE(261), - [sym_shortcode] = STATE(261), - [sym_note_reference] = STATE(261), - [sym__link_text] = STATE(322), - [sym__link_text_non_empty] = STATE(323), - [sym_inline_link] = STATE(39), - [sym_image] = STATE(261), - [sym__image_inline_link] = STATE(595), - [sym__image_description] = STATE(1972), - [sym__image_description_non_empty] = STATE(1972), - [sym_hard_line_break] = STATE(261), - [sym__whitespace] = STATE(587), - [sym__word] = STATE(587), - [sym__soft_line_break] = STATE(597), - [sym__inline_base] = STATE(39), - [sym__text_base] = STATE(261), - [sym__inline_element_no_star] = STATE(39), - [aux_sym__inline_no_star] = STATE(39), - [sym__emphasis_star] = STATE(544), - [sym__strong_emphasis_star] = STATE(39), - [sym__emphasis_underscore] = STATE(544), - [sym__strong_emphasis_underscore] = STATE(39), - [aux_sym__inline_base_repeat1] = STATE(261), - [sym__backslash_escape] = ACTIONS(969), - [sym_entity_reference] = ACTIONS(971), - [sym_numeric_character_reference] = ACTIONS(971), - [anon_sym_LT] = ACTIONS(973), - [anon_sym_GT] = ACTIONS(975), - [anon_sym_BANG] = ACTIONS(977), - [anon_sym_DQUOTE] = ACTIONS(975), - [anon_sym_POUND] = ACTIONS(975), - [anon_sym_DOLLAR] = ACTIONS(975), - [anon_sym_PERCENT] = ACTIONS(975), - [anon_sym_AMP] = ACTIONS(973), - [anon_sym_SQUOTE] = ACTIONS(975), - [anon_sym_STAR] = ACTIONS(975), - [anon_sym_PLUS] = ACTIONS(975), - [anon_sym_COMMA] = ACTIONS(975), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_DOT] = ACTIONS(973), - [anon_sym_SLASH] = ACTIONS(975), - [anon_sym_COLON] = ACTIONS(975), - [anon_sym_SEMI] = ACTIONS(975), - [anon_sym_EQ] = ACTIONS(975), - [anon_sym_QMARK] = ACTIONS(975), - [anon_sym_LBRACK] = ACTIONS(979), - [anon_sym_BSLASH] = ACTIONS(981), - [anon_sym_CARET] = ACTIONS(973), - [anon_sym__] = ACTIONS(975), - [anon_sym_BQUOTE] = ACTIONS(975), - [anon_sym_LBRACE] = ACTIONS(983), - [anon_sym_PIPE] = ACTIONS(975), - [anon_sym_TILDE] = ACTIONS(975), - [anon_sym_LPAREN] = ACTIONS(975), - [anon_sym_RPAREN] = ACTIONS(975), - [sym__newline_token] = ACTIONS(985), - [anon_sym_CARET_LBRACK] = ACTIONS(987), - [anon_sym_LBRACK_CARET] = ACTIONS(989), - [sym_uri_autolink] = ACTIONS(971), - [sym_email_autolink] = ACTIONS(971), - [sym__whitespace_ge_2] = ACTIONS(991), - [aux_sym__whitespace_token1] = ACTIONS(993), - [sym__word_no_digit] = ACTIONS(995), - [sym__digits] = ACTIONS(995), - [anon_sym_DASH_DASH] = ACTIONS(997), - [anon_sym_DASH_DASH_DASH] = ACTIONS(995), - [anon_sym_DOT_DOT_DOT] = ACTIONS(995), - [sym__code_span_start] = ACTIONS(999), - [sym__emphasis_open_star] = ACTIONS(1001), - [sym__emphasis_open_underscore] = ACTIONS(1003), - [sym__emphasis_close_star] = ACTIONS(2081), - [sym__strikeout_open] = ACTIONS(1007), - [sym__latex_span_start] = ACTIONS(1009), - [sym__single_quote_open] = ACTIONS(1011), - [sym__double_quote_open] = ACTIONS(1013), - [sym__superscript_open] = ACTIONS(1015), - [sym__subscript_open] = ACTIONS(1017), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1019), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1021), - [sym__cite_author_in_text] = ACTIONS(1023), - [sym__cite_suppress_author] = ACTIONS(1025), - [sym__shortcode_open_escaped] = ACTIONS(1027), - [sym__shortcode_open] = ACTIONS(1029), - [sym__unclosed_span] = ACTIONS(971), + [sym_backslash_escape] = STATE(372), + [sym_commonmark_attribute] = STATE(372), + [sym_code_span] = STATE(372), + [sym_latex_span] = STATE(372), + [sym_insert] = STATE(372), + [sym_delete] = STATE(372), + [sym_highlight] = STATE(372), + [sym_edit_comment] = STATE(372), + [sym_superscript] = STATE(372), + [sym_subscript] = STATE(372), + [sym_strikeout] = STATE(372), + [sym_quoted_span] = STATE(372), + [sym_inline_note] = STATE(372), + [sym_citation] = STATE(372), + [sym_shortcode_escaped] = STATE(372), + [sym_shortcode] = STATE(372), + [sym_note_reference] = STATE(372), + [sym__link_text] = STATE(454), + [sym__link_text_non_empty] = STATE(455), + [sym_inline_link] = STATE(158), + [sym_image] = STATE(372), + [sym__image_inline_link] = STATE(1025), + [sym__image_description] = STATE(2356), + [sym__image_description_non_empty] = STATE(2356), + [sym_hard_line_break] = STATE(372), + [sym__whitespace] = STATE(1022), + [sym__word] = STATE(1022), + [sym__soft_line_break] = STATE(1026), + [sym__inline_base] = STATE(158), + [sym__text_base] = STATE(372), + [sym__inline_element] = STATE(158), + [sym__emphasis_star] = STATE(714), + [sym__strong_emphasis_star] = STATE(158), + [sym__emphasis_underscore] = STATE(714), + [sym__strong_emphasis_underscore] = STATE(158), + [aux_sym_insert_repeat1] = STATE(158), + [aux_sym__inline_base_repeat1] = STATE(372), + [sym__backslash_escape] = ACTIONS(707), + [sym_entity_reference] = ACTIONS(709), + [sym_numeric_character_reference] = ACTIONS(709), + [anon_sym_LT] = ACTIONS(711), + [anon_sym_GT] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(715), + [anon_sym_DQUOTE] = ACTIONS(713), + [anon_sym_POUND] = ACTIONS(713), + [anon_sym_DOLLAR] = ACTIONS(713), + [anon_sym_PERCENT] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(711), + [anon_sym_SQUOTE] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_COMMA] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_DOT] = ACTIONS(711), + [anon_sym_SLASH] = ACTIONS(713), + [anon_sym_COLON] = ACTIONS(713), + [anon_sym_SEMI] = ACTIONS(713), + [anon_sym_EQ] = ACTIONS(713), + [anon_sym_QMARK] = ACTIONS(713), + [anon_sym_LBRACK] = ACTIONS(717), + [anon_sym_BSLASH] = ACTIONS(719), + [anon_sym_CARET] = ACTIONS(711), + [anon_sym__] = ACTIONS(713), + [anon_sym_BQUOTE] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(721), + [anon_sym_PIPE] = ACTIONS(713), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_LPAREN] = ACTIONS(713), + [anon_sym_RPAREN] = ACTIONS(713), + [sym__newline_token] = ACTIONS(723), + [aux_sym_insert_token1] = ACTIONS(725), + [aux_sym_insert_token2] = ACTIONS(2505), + [aux_sym_delete_token1] = ACTIONS(729), + [aux_sym_highlight_token1] = ACTIONS(731), + [aux_sym_edit_comment_token1] = ACTIONS(733), + [anon_sym_CARET_LBRACK] = ACTIONS(735), + [anon_sym_LBRACK_CARET] = ACTIONS(737), + [sym_uri_autolink] = ACTIONS(709), + [sym_email_autolink] = ACTIONS(709), + [sym__whitespace_ge_2] = ACTIONS(739), + [aux_sym__whitespace_token1] = ACTIONS(741), + [sym__word_no_digit] = ACTIONS(743), + [sym__digits] = ACTIONS(743), + [anon_sym_DASH_DASH] = ACTIONS(745), + [anon_sym_DASH_DASH_DASH] = ACTIONS(743), + [anon_sym_DOT_DOT_DOT] = ACTIONS(743), + [sym__code_span_start] = ACTIONS(747), + [sym__emphasis_open_star] = ACTIONS(749), + [sym__emphasis_open_underscore] = ACTIONS(751), + [sym__strikeout_open] = ACTIONS(753), + [sym__latex_span_start] = ACTIONS(755), + [sym__single_quote_open] = ACTIONS(757), + [sym__double_quote_open] = ACTIONS(759), + [sym__superscript_open] = ACTIONS(761), + [sym__subscript_open] = ACTIONS(763), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(765), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(767), + [sym__cite_author_in_text] = ACTIONS(769), + [sym__cite_suppress_author] = ACTIONS(771), + [sym__shortcode_open_escaped] = ACTIONS(773), + [sym__shortcode_open] = ACTIONS(775), + [sym__unclosed_span] = ACTIONS(709), }, [STATE(147)] = { - [sym_backslash_escape] = STATE(261), - [sym_commonmark_attribute] = STATE(261), - [sym_code_span] = STATE(261), - [sym_latex_span] = STATE(261), - [sym_superscript] = STATE(261), - [sym_subscript] = STATE(261), - [sym_strikeout] = STATE(261), - [sym_quoted_span] = STATE(261), - [sym_inline_note] = STATE(261), - [sym_citation] = STATE(261), - [sym_shortcode_escaped] = STATE(261), - [sym_shortcode] = STATE(261), - [sym_note_reference] = STATE(261), - [sym__link_text] = STATE(322), - [sym__link_text_non_empty] = STATE(323), - [sym_inline_link] = STATE(39), - [sym_image] = STATE(261), - [sym__image_inline_link] = STATE(595), - [sym__image_description] = STATE(1972), - [sym__image_description_non_empty] = STATE(1972), - [sym_hard_line_break] = STATE(261), - [sym__whitespace] = STATE(587), - [sym__word] = STATE(587), - [sym__soft_line_break] = STATE(597), - [sym__inline_base] = STATE(39), - [sym__text_base] = STATE(261), - [sym__inline_element_no_star] = STATE(39), - [aux_sym__inline_no_star] = STATE(39), - [sym__emphasis_star] = STATE(544), - [sym__strong_emphasis_star] = STATE(39), - [sym__emphasis_underscore] = STATE(544), - [sym__strong_emphasis_underscore] = STATE(39), - [aux_sym__inline_base_repeat1] = STATE(261), - [sym__backslash_escape] = ACTIONS(969), - [sym_entity_reference] = ACTIONS(971), - [sym_numeric_character_reference] = ACTIONS(971), - [anon_sym_LT] = ACTIONS(973), - [anon_sym_GT] = ACTIONS(975), - [anon_sym_BANG] = ACTIONS(977), - [anon_sym_DQUOTE] = ACTIONS(975), - [anon_sym_POUND] = ACTIONS(975), - [anon_sym_DOLLAR] = ACTIONS(975), - [anon_sym_PERCENT] = ACTIONS(975), - [anon_sym_AMP] = ACTIONS(973), - [anon_sym_SQUOTE] = ACTIONS(975), - [anon_sym_STAR] = ACTIONS(975), - [anon_sym_PLUS] = ACTIONS(975), - [anon_sym_COMMA] = ACTIONS(975), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_DOT] = ACTIONS(973), - [anon_sym_SLASH] = ACTIONS(975), - [anon_sym_COLON] = ACTIONS(975), - [anon_sym_SEMI] = ACTIONS(975), - [anon_sym_EQ] = ACTIONS(975), - [anon_sym_QMARK] = ACTIONS(975), - [anon_sym_LBRACK] = ACTIONS(979), - [anon_sym_BSLASH] = ACTIONS(981), - [anon_sym_CARET] = ACTIONS(973), - [anon_sym__] = ACTIONS(975), - [anon_sym_BQUOTE] = ACTIONS(975), - [anon_sym_LBRACE] = ACTIONS(983), - [anon_sym_PIPE] = ACTIONS(975), - [anon_sym_TILDE] = ACTIONS(975), - [anon_sym_LPAREN] = ACTIONS(975), - [anon_sym_RPAREN] = ACTIONS(975), - [sym__newline_token] = ACTIONS(985), - [anon_sym_CARET_LBRACK] = ACTIONS(987), - [anon_sym_LBRACK_CARET] = ACTIONS(989), - [sym_uri_autolink] = ACTIONS(971), - [sym_email_autolink] = ACTIONS(971), - [sym__whitespace_ge_2] = ACTIONS(991), - [aux_sym__whitespace_token1] = ACTIONS(993), - [sym__word_no_digit] = ACTIONS(995), - [sym__digits] = ACTIONS(995), - [anon_sym_DASH_DASH] = ACTIONS(997), - [anon_sym_DASH_DASH_DASH] = ACTIONS(995), - [anon_sym_DOT_DOT_DOT] = ACTIONS(995), - [sym__code_span_start] = ACTIONS(999), - [sym__emphasis_open_star] = ACTIONS(1001), - [sym__emphasis_open_underscore] = ACTIONS(1003), - [sym__emphasis_close_star] = ACTIONS(2083), - [sym__strikeout_open] = ACTIONS(1007), - [sym__latex_span_start] = ACTIONS(1009), - [sym__single_quote_open] = ACTIONS(1011), - [sym__double_quote_open] = ACTIONS(1013), - [sym__superscript_open] = ACTIONS(1015), - [sym__subscript_open] = ACTIONS(1017), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1019), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1021), - [sym__cite_author_in_text] = ACTIONS(1023), - [sym__cite_suppress_author] = ACTIONS(1025), - [sym__shortcode_open_escaped] = ACTIONS(1027), - [sym__shortcode_open] = ACTIONS(1029), - [sym__unclosed_span] = ACTIONS(971), + [sym_backslash_escape] = STATE(372), + [sym_commonmark_attribute] = STATE(372), + [sym_code_span] = STATE(372), + [sym_latex_span] = STATE(372), + [sym_insert] = STATE(372), + [sym_delete] = STATE(372), + [sym_highlight] = STATE(372), + [sym_edit_comment] = STATE(372), + [sym_superscript] = STATE(372), + [sym_subscript] = STATE(372), + [sym_strikeout] = STATE(372), + [sym_quoted_span] = STATE(372), + [sym_inline_note] = STATE(372), + [sym_citation] = STATE(372), + [sym_shortcode_escaped] = STATE(372), + [sym_shortcode] = STATE(372), + [sym_note_reference] = STATE(372), + [sym__link_text] = STATE(454), + [sym__link_text_non_empty] = STATE(455), + [sym_inline_link] = STATE(159), + [sym_image] = STATE(372), + [sym__image_inline_link] = STATE(1025), + [sym__image_description] = STATE(2356), + [sym__image_description_non_empty] = STATE(2356), + [sym_hard_line_break] = STATE(372), + [sym__whitespace] = STATE(1022), + [sym__word] = STATE(1022), + [sym__soft_line_break] = STATE(1026), + [sym__inline_base] = STATE(159), + [sym__text_base] = STATE(372), + [sym__inline_element] = STATE(159), + [sym__emphasis_star] = STATE(714), + [sym__strong_emphasis_star] = STATE(159), + [sym__emphasis_underscore] = STATE(714), + [sym__strong_emphasis_underscore] = STATE(159), + [aux_sym_insert_repeat1] = STATE(159), + [aux_sym__inline_base_repeat1] = STATE(372), + [sym__backslash_escape] = ACTIONS(707), + [sym_entity_reference] = ACTIONS(709), + [sym_numeric_character_reference] = ACTIONS(709), + [anon_sym_LT] = ACTIONS(711), + [anon_sym_GT] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(715), + [anon_sym_DQUOTE] = ACTIONS(713), + [anon_sym_POUND] = ACTIONS(713), + [anon_sym_DOLLAR] = ACTIONS(713), + [anon_sym_PERCENT] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(711), + [anon_sym_SQUOTE] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_COMMA] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_DOT] = ACTIONS(711), + [anon_sym_SLASH] = ACTIONS(713), + [anon_sym_COLON] = ACTIONS(713), + [anon_sym_SEMI] = ACTIONS(713), + [anon_sym_EQ] = ACTIONS(713), + [anon_sym_QMARK] = ACTIONS(713), + [anon_sym_LBRACK] = ACTIONS(717), + [anon_sym_BSLASH] = ACTIONS(719), + [anon_sym_CARET] = ACTIONS(711), + [anon_sym__] = ACTIONS(713), + [anon_sym_BQUOTE] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(721), + [anon_sym_PIPE] = ACTIONS(713), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_LPAREN] = ACTIONS(713), + [anon_sym_RPAREN] = ACTIONS(713), + [sym__newline_token] = ACTIONS(723), + [aux_sym_insert_token1] = ACTIONS(725), + [aux_sym_insert_token2] = ACTIONS(2507), + [aux_sym_delete_token1] = ACTIONS(729), + [aux_sym_highlight_token1] = ACTIONS(731), + [aux_sym_edit_comment_token1] = ACTIONS(733), + [anon_sym_CARET_LBRACK] = ACTIONS(735), + [anon_sym_LBRACK_CARET] = ACTIONS(737), + [sym_uri_autolink] = ACTIONS(709), + [sym_email_autolink] = ACTIONS(709), + [sym__whitespace_ge_2] = ACTIONS(739), + [aux_sym__whitespace_token1] = ACTIONS(741), + [sym__word_no_digit] = ACTIONS(743), + [sym__digits] = ACTIONS(743), + [anon_sym_DASH_DASH] = ACTIONS(745), + [anon_sym_DASH_DASH_DASH] = ACTIONS(743), + [anon_sym_DOT_DOT_DOT] = ACTIONS(743), + [sym__code_span_start] = ACTIONS(747), + [sym__emphasis_open_star] = ACTIONS(749), + [sym__emphasis_open_underscore] = ACTIONS(751), + [sym__strikeout_open] = ACTIONS(753), + [sym__latex_span_start] = ACTIONS(755), + [sym__single_quote_open] = ACTIONS(757), + [sym__double_quote_open] = ACTIONS(759), + [sym__superscript_open] = ACTIONS(761), + [sym__subscript_open] = ACTIONS(763), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(765), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(767), + [sym__cite_author_in_text] = ACTIONS(769), + [sym__cite_suppress_author] = ACTIONS(771), + [sym__shortcode_open_escaped] = ACTIONS(773), + [sym__shortcode_open] = ACTIONS(775), + [sym__unclosed_span] = ACTIONS(709), }, [STATE(148)] = { - [sym_backslash_escape] = STATE(274), - [sym_commonmark_attribute] = STATE(274), - [sym_code_span] = STATE(274), - [sym_latex_span] = STATE(274), - [sym_superscript] = STATE(274), - [sym_subscript] = STATE(274), - [sym_strikeout] = STATE(274), - [sym_quoted_span] = STATE(274), - [sym_inline_note] = STATE(274), - [sym_citation] = STATE(274), - [sym_shortcode_escaped] = STATE(274), - [sym_shortcode] = STATE(274), - [sym_note_reference] = STATE(274), - [sym__link_text] = STATE(351), - [sym__link_text_non_empty] = STATE(352), - [sym_inline_link] = STATE(41), - [sym_image] = STATE(274), - [sym__image_inline_link] = STATE(894), - [sym__image_description] = STATE(2008), - [sym__image_description_non_empty] = STATE(2008), - [sym_hard_line_break] = STATE(274), - [sym__whitespace] = STATE(882), - [sym__word] = STATE(882), - [sym__soft_line_break] = STATE(898), - [sym__inline_base] = STATE(41), - [sym__text_base] = STATE(274), - [sym__inline_element_no_underscore] = STATE(41), - [aux_sym__inline_no_underscore] = STATE(41), - [sym__emphasis_star] = STATE(711), - [sym__strong_emphasis_star] = STATE(41), - [sym__emphasis_underscore] = STATE(711), - [sym__strong_emphasis_underscore] = STATE(41), - [aux_sym__inline_base_repeat1] = STATE(274), - [sym__backslash_escape] = ACTIONS(1123), - [sym_entity_reference] = ACTIONS(1125), - [sym_numeric_character_reference] = ACTIONS(1125), - [anon_sym_LT] = ACTIONS(1127), - [anon_sym_GT] = ACTIONS(1129), - [anon_sym_BANG] = ACTIONS(1131), - [anon_sym_DQUOTE] = ACTIONS(1129), - [anon_sym_POUND] = ACTIONS(1129), - [anon_sym_DOLLAR] = ACTIONS(1129), - [anon_sym_PERCENT] = ACTIONS(1129), - [anon_sym_AMP] = ACTIONS(1127), - [anon_sym_SQUOTE] = ACTIONS(1129), - [anon_sym_STAR] = ACTIONS(1129), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_COMMA] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1127), - [anon_sym_DOT] = ACTIONS(1127), - [anon_sym_SLASH] = ACTIONS(1129), - [anon_sym_COLON] = ACTIONS(1129), - [anon_sym_SEMI] = ACTIONS(1129), - [anon_sym_EQ] = ACTIONS(1129), - [anon_sym_QMARK] = ACTIONS(1129), - [anon_sym_LBRACK] = ACTIONS(1133), - [anon_sym_BSLASH] = ACTIONS(1135), - [anon_sym_CARET] = ACTIONS(1127), - [anon_sym__] = ACTIONS(1129), - [anon_sym_BQUOTE] = ACTIONS(1129), - [anon_sym_LBRACE] = ACTIONS(1137), - [anon_sym_PIPE] = ACTIONS(1129), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1129), - [anon_sym_RPAREN] = ACTIONS(1129), - [sym__newline_token] = ACTIONS(1139), - [anon_sym_CARET_LBRACK] = ACTIONS(1141), - [anon_sym_LBRACK_CARET] = ACTIONS(1143), - [sym_uri_autolink] = ACTIONS(1125), - [sym_email_autolink] = ACTIONS(1125), - [sym__whitespace_ge_2] = ACTIONS(1145), - [aux_sym__whitespace_token1] = ACTIONS(1147), - [sym__word_no_digit] = ACTIONS(1149), - [sym__digits] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1151), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1149), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1149), - [sym__code_span_start] = ACTIONS(1153), - [sym__emphasis_open_star] = ACTIONS(1155), - [sym__emphasis_open_underscore] = ACTIONS(1157), - [sym__emphasis_close_underscore] = ACTIONS(2085), - [sym__strikeout_open] = ACTIONS(1161), - [sym__latex_span_start] = ACTIONS(1163), - [sym__single_quote_open] = ACTIONS(1165), - [sym__double_quote_open] = ACTIONS(1167), - [sym__superscript_open] = ACTIONS(1169), - [sym__subscript_open] = ACTIONS(1171), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1173), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1175), - [sym__cite_author_in_text] = ACTIONS(1177), - [sym__cite_suppress_author] = ACTIONS(1179), - [sym__shortcode_open_escaped] = ACTIONS(1181), - [sym__shortcode_open] = ACTIONS(1183), - [sym__unclosed_span] = ACTIONS(1125), + [sym_backslash_escape] = STATE(372), + [sym_commonmark_attribute] = STATE(372), + [sym_code_span] = STATE(372), + [sym_latex_span] = STATE(372), + [sym_insert] = STATE(372), + [sym_delete] = STATE(372), + [sym_highlight] = STATE(372), + [sym_edit_comment] = STATE(372), + [sym_superscript] = STATE(372), + [sym_subscript] = STATE(372), + [sym_strikeout] = STATE(372), + [sym_quoted_span] = STATE(372), + [sym_inline_note] = STATE(372), + [sym_citation] = STATE(372), + [sym_shortcode_escaped] = STATE(372), + [sym_shortcode] = STATE(372), + [sym_note_reference] = STATE(372), + [sym__link_text] = STATE(454), + [sym__link_text_non_empty] = STATE(455), + [sym_inline_link] = STATE(160), + [sym_image] = STATE(372), + [sym__image_inline_link] = STATE(1025), + [sym__image_description] = STATE(2356), + [sym__image_description_non_empty] = STATE(2356), + [sym_hard_line_break] = STATE(372), + [sym__whitespace] = STATE(1022), + [sym__word] = STATE(1022), + [sym__soft_line_break] = STATE(1026), + [sym__inline_base] = STATE(160), + [sym__text_base] = STATE(372), + [sym__inline_element] = STATE(160), + [sym__emphasis_star] = STATE(714), + [sym__strong_emphasis_star] = STATE(160), + [sym__emphasis_underscore] = STATE(714), + [sym__strong_emphasis_underscore] = STATE(160), + [aux_sym_insert_repeat1] = STATE(160), + [aux_sym__inline_base_repeat1] = STATE(372), + [sym__backslash_escape] = ACTIONS(707), + [sym_entity_reference] = ACTIONS(709), + [sym_numeric_character_reference] = ACTIONS(709), + [anon_sym_LT] = ACTIONS(711), + [anon_sym_GT] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(715), + [anon_sym_DQUOTE] = ACTIONS(713), + [anon_sym_POUND] = ACTIONS(713), + [anon_sym_DOLLAR] = ACTIONS(713), + [anon_sym_PERCENT] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(711), + [anon_sym_SQUOTE] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_COMMA] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_DOT] = ACTIONS(711), + [anon_sym_SLASH] = ACTIONS(713), + [anon_sym_COLON] = ACTIONS(713), + [anon_sym_SEMI] = ACTIONS(713), + [anon_sym_EQ] = ACTIONS(713), + [anon_sym_QMARK] = ACTIONS(713), + [anon_sym_LBRACK] = ACTIONS(717), + [anon_sym_BSLASH] = ACTIONS(719), + [anon_sym_CARET] = ACTIONS(711), + [anon_sym__] = ACTIONS(713), + [anon_sym_BQUOTE] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(721), + [anon_sym_PIPE] = ACTIONS(713), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_LPAREN] = ACTIONS(713), + [anon_sym_RPAREN] = ACTIONS(713), + [sym__newline_token] = ACTIONS(723), + [aux_sym_insert_token1] = ACTIONS(725), + [aux_sym_insert_token2] = ACTIONS(2509), + [aux_sym_delete_token1] = ACTIONS(729), + [aux_sym_highlight_token1] = ACTIONS(731), + [aux_sym_edit_comment_token1] = ACTIONS(733), + [anon_sym_CARET_LBRACK] = ACTIONS(735), + [anon_sym_LBRACK_CARET] = ACTIONS(737), + [sym_uri_autolink] = ACTIONS(709), + [sym_email_autolink] = ACTIONS(709), + [sym__whitespace_ge_2] = ACTIONS(739), + [aux_sym__whitespace_token1] = ACTIONS(741), + [sym__word_no_digit] = ACTIONS(743), + [sym__digits] = ACTIONS(743), + [anon_sym_DASH_DASH] = ACTIONS(745), + [anon_sym_DASH_DASH_DASH] = ACTIONS(743), + [anon_sym_DOT_DOT_DOT] = ACTIONS(743), + [sym__code_span_start] = ACTIONS(747), + [sym__emphasis_open_star] = ACTIONS(749), + [sym__emphasis_open_underscore] = ACTIONS(751), + [sym__strikeout_open] = ACTIONS(753), + [sym__latex_span_start] = ACTIONS(755), + [sym__single_quote_open] = ACTIONS(757), + [sym__double_quote_open] = ACTIONS(759), + [sym__superscript_open] = ACTIONS(761), + [sym__subscript_open] = ACTIONS(763), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(765), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(767), + [sym__cite_author_in_text] = ACTIONS(769), + [sym__cite_suppress_author] = ACTIONS(771), + [sym__shortcode_open_escaped] = ACTIONS(773), + [sym__shortcode_open] = ACTIONS(775), + [sym__unclosed_span] = ACTIONS(709), }, [STATE(149)] = { - [sym_backslash_escape] = STATE(266), - [sym_commonmark_attribute] = STATE(266), - [sym_code_span] = STATE(266), - [sym_latex_span] = STATE(266), - [sym_superscript] = STATE(266), - [sym_subscript] = STATE(266), - [sym_strikeout] = STATE(266), - [sym_quoted_span] = STATE(266), - [sym_inline_note] = STATE(266), - [sym_citation] = STATE(266), - [sym_shortcode_escaped] = STATE(266), - [sym_shortcode] = STATE(266), - [sym_note_reference] = STATE(266), - [sym__link_text] = STATE(375), - [sym__link_text_non_empty] = STATE(376), - [sym_inline_link] = STATE(42), - [sym_image] = STATE(266), - [sym__image_inline_link] = STATE(1042), - [sym__image_description] = STATE(2044), - [sym__image_description_non_empty] = STATE(2044), - [sym_hard_line_break] = STATE(266), - [sym__whitespace] = STATE(1040), - [sym__word] = STATE(1040), - [sym__soft_line_break] = STATE(1043), - [sym__inline_base] = STATE(42), - [sym__text_base] = STATE(266), - [sym__inline_element] = STATE(42), - [sym__emphasis_star] = STATE(602), - [sym__strong_emphasis_star] = STATE(42), - [sym__emphasis_underscore] = STATE(602), - [sym__strong_emphasis_underscore] = STATE(42), - [aux_sym_superscript_repeat1] = STATE(42), - [aux_sym__inline_base_repeat1] = STATE(266), - [sym__backslash_escape] = ACTIONS(559), - [sym_entity_reference] = ACTIONS(561), - [sym_numeric_character_reference] = ACTIONS(561), - [anon_sym_LT] = ACTIONS(563), - [anon_sym_GT] = ACTIONS(565), - [anon_sym_BANG] = ACTIONS(567), - [anon_sym_DQUOTE] = ACTIONS(565), - [anon_sym_POUND] = ACTIONS(565), - [anon_sym_DOLLAR] = ACTIONS(565), - [anon_sym_PERCENT] = ACTIONS(565), - [anon_sym_AMP] = ACTIONS(563), - [anon_sym_SQUOTE] = ACTIONS(565), - [anon_sym_STAR] = ACTIONS(565), - [anon_sym_PLUS] = ACTIONS(565), - [anon_sym_COMMA] = ACTIONS(565), - [anon_sym_DASH] = ACTIONS(563), - [anon_sym_DOT] = ACTIONS(563), - [anon_sym_SLASH] = ACTIONS(565), - [anon_sym_COLON] = ACTIONS(565), - [anon_sym_SEMI] = ACTIONS(565), - [anon_sym_EQ] = ACTIONS(565), - [anon_sym_QMARK] = ACTIONS(565), - [anon_sym_LBRACK] = ACTIONS(569), - [anon_sym_BSLASH] = ACTIONS(571), - [anon_sym_CARET] = ACTIONS(563), - [anon_sym__] = ACTIONS(565), - [anon_sym_BQUOTE] = ACTIONS(565), - [anon_sym_LBRACE] = ACTIONS(573), - [anon_sym_PIPE] = ACTIONS(565), - [anon_sym_TILDE] = ACTIONS(565), - [anon_sym_LPAREN] = ACTIONS(565), - [anon_sym_RPAREN] = ACTIONS(565), - [sym__newline_token] = ACTIONS(575), - [anon_sym_CARET_LBRACK] = ACTIONS(577), - [anon_sym_LBRACK_CARET] = ACTIONS(579), - [sym_uri_autolink] = ACTIONS(561), - [sym_email_autolink] = ACTIONS(561), - [sym__whitespace_ge_2] = ACTIONS(581), - [aux_sym__whitespace_token1] = ACTIONS(583), - [sym__word_no_digit] = ACTIONS(585), - [sym__digits] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(587), - [anon_sym_DASH_DASH_DASH] = ACTIONS(585), - [anon_sym_DOT_DOT_DOT] = ACTIONS(585), - [sym__code_span_start] = ACTIONS(589), - [sym__emphasis_open_star] = ACTIONS(591), - [sym__emphasis_open_underscore] = ACTIONS(593), - [sym__strikeout_open] = ACTIONS(595), - [sym__strikeout_close] = ACTIONS(2087), - [sym__latex_span_start] = ACTIONS(599), - [sym__single_quote_open] = ACTIONS(601), - [sym__double_quote_open] = ACTIONS(603), - [sym__superscript_open] = ACTIONS(605), - [sym__subscript_open] = ACTIONS(607), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(609), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(611), - [sym__cite_author_in_text] = ACTIONS(613), - [sym__cite_suppress_author] = ACTIONS(615), - [sym__shortcode_open_escaped] = ACTIONS(617), - [sym__shortcode_open] = ACTIONS(619), - [sym__unclosed_span] = ACTIONS(561), + [sym_backslash_escape] = STATE(375), + [sym_commonmark_attribute] = STATE(375), + [sym_code_span] = STATE(375), + [sym_latex_span] = STATE(375), + [sym_insert] = STATE(375), + [sym_delete] = STATE(375), + [sym_highlight] = STATE(375), + [sym_edit_comment] = STATE(375), + [sym_superscript] = STATE(375), + [sym_subscript] = STATE(375), + [sym_strikeout] = STATE(375), + [sym_quoted_span] = STATE(375), + [sym_inline_note] = STATE(375), + [sym_citation] = STATE(375), + [sym_shortcode_escaped] = STATE(375), + [sym_shortcode] = STATE(375), + [sym_note_reference] = STATE(375), + [sym__link_text] = STATE(525), + [sym__link_text_non_empty] = STATE(527), + [sym_inline_link] = STATE(47), + [sym_image] = STATE(375), + [sym__image_inline_link] = STATE(972), + [sym__image_description] = STATE(2286), + [sym__image_description_non_empty] = STATE(2286), + [sym_hard_line_break] = STATE(375), + [sym__whitespace] = STATE(949), + [sym__word] = STATE(949), + [sym__soft_line_break] = STATE(973), + [sym__inline_base] = STATE(47), + [sym__text_base] = STATE(375), + [sym__inline_element] = STATE(47), + [sym__emphasis_star] = STATE(1392), + [sym__strong_emphasis_star] = STATE(47), + [sym__emphasis_underscore] = STATE(1392), + [sym__strong_emphasis_underscore] = STATE(47), + [aux_sym_insert_repeat1] = STATE(47), + [aux_sym__inline_base_repeat1] = STATE(375), + [sym__backslash_escape] = ACTIONS(2179), + [sym_entity_reference] = ACTIONS(2181), + [sym_numeric_character_reference] = ACTIONS(2181), + [anon_sym_LT] = ACTIONS(2183), + [anon_sym_GT] = ACTIONS(2185), + [anon_sym_BANG] = ACTIONS(2187), + [anon_sym_DQUOTE] = ACTIONS(2185), + [anon_sym_POUND] = ACTIONS(2185), + [anon_sym_DOLLAR] = ACTIONS(2185), + [anon_sym_PERCENT] = ACTIONS(2185), + [anon_sym_AMP] = ACTIONS(2183), + [anon_sym_SQUOTE] = ACTIONS(2185), + [anon_sym_STAR] = ACTIONS(2185), + [anon_sym_PLUS] = ACTIONS(2185), + [anon_sym_COMMA] = ACTIONS(2185), + [anon_sym_DASH] = ACTIONS(2183), + [anon_sym_DOT] = ACTIONS(2183), + [anon_sym_SLASH] = ACTIONS(2185), + [anon_sym_COLON] = ACTIONS(2185), + [anon_sym_SEMI] = ACTIONS(2185), + [anon_sym_EQ] = ACTIONS(2185), + [anon_sym_QMARK] = ACTIONS(2185), + [anon_sym_LBRACK] = ACTIONS(2189), + [anon_sym_BSLASH] = ACTIONS(2191), + [anon_sym_CARET] = ACTIONS(2183), + [anon_sym__] = ACTIONS(2185), + [anon_sym_BQUOTE] = ACTIONS(2185), + [anon_sym_LBRACE] = ACTIONS(2193), + [anon_sym_PIPE] = ACTIONS(2185), + [anon_sym_TILDE] = ACTIONS(2185), + [anon_sym_LPAREN] = ACTIONS(2185), + [anon_sym_RPAREN] = ACTIONS(2185), + [sym__newline_token] = ACTIONS(2195), + [aux_sym_insert_token1] = ACTIONS(2197), + [aux_sym_delete_token1] = ACTIONS(2199), + [aux_sym_highlight_token1] = ACTIONS(2201), + [aux_sym_edit_comment_token1] = ACTIONS(2203), + [anon_sym_CARET_LBRACK] = ACTIONS(2205), + [anon_sym_LBRACK_CARET] = ACTIONS(2207), + [sym_uri_autolink] = ACTIONS(2181), + [sym_email_autolink] = ACTIONS(2181), + [sym__whitespace_ge_2] = ACTIONS(2209), + [aux_sym__whitespace_token1] = ACTIONS(2211), + [sym__word_no_digit] = ACTIONS(2213), + [sym__digits] = ACTIONS(2213), + [anon_sym_DASH_DASH] = ACTIONS(2215), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2213), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2213), + [sym__code_span_start] = ACTIONS(2217), + [sym__emphasis_open_star] = ACTIONS(2219), + [sym__emphasis_open_underscore] = ACTIONS(2221), + [sym__strikeout_open] = ACTIONS(2223), + [sym__latex_span_start] = ACTIONS(2225), + [sym__single_quote_open] = ACTIONS(2227), + [sym__single_quote_close] = ACTIONS(2511), + [sym__double_quote_open] = ACTIONS(2229), + [sym__superscript_open] = ACTIONS(2231), + [sym__subscript_open] = ACTIONS(2233), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2235), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2237), + [sym__cite_author_in_text] = ACTIONS(2239), + [sym__cite_suppress_author] = ACTIONS(2241), + [sym__shortcode_open_escaped] = ACTIONS(2243), + [sym__shortcode_open] = ACTIONS(2245), + [sym__unclosed_span] = ACTIONS(2181), }, [STATE(150)] = { - [sym_backslash_escape] = STATE(272), - [sym_commonmark_attribute] = STATE(272), - [sym_code_span] = STATE(272), - [sym_latex_span] = STATE(272), - [sym_superscript] = STATE(272), - [sym_subscript] = STATE(272), - [sym_strikeout] = STATE(272), - [sym_quoted_span] = STATE(272), - [sym_inline_note] = STATE(272), - [sym_citation] = STATE(272), - [sym_shortcode_escaped] = STATE(272), - [sym_shortcode] = STATE(272), - [sym_note_reference] = STATE(272), - [sym__link_text] = STATE(401), - [sym__link_text_non_empty] = STATE(402), - [sym_inline_link] = STATE(49), - [sym_image] = STATE(272), - [sym__image_inline_link] = STATE(1136), - [sym__image_description] = STATE(1942), - [sym__image_description_non_empty] = STATE(1942), - [sym_hard_line_break] = STATE(272), - [sym__whitespace] = STATE(1133), - [sym__word] = STATE(1133), - [sym__soft_line_break] = STATE(1137), - [sym__inline_base] = STATE(49), - [sym__text_base] = STATE(272), - [sym__inline_element] = STATE(49), - [sym__emphasis_star] = STATE(902), - [sym__strong_emphasis_star] = STATE(49), - [sym__emphasis_underscore] = STATE(902), - [sym__strong_emphasis_underscore] = STATE(49), - [aux_sym_superscript_repeat1] = STATE(49), - [aux_sym__inline_base_repeat1] = STATE(272), - [sym__backslash_escape] = ACTIONS(625), - [sym_entity_reference] = ACTIONS(627), - [sym_numeric_character_reference] = ACTIONS(627), - [anon_sym_LT] = ACTIONS(629), - [anon_sym_GT] = ACTIONS(631), - [anon_sym_BANG] = ACTIONS(633), - [anon_sym_DQUOTE] = ACTIONS(631), - [anon_sym_POUND] = ACTIONS(631), - [anon_sym_DOLLAR] = ACTIONS(631), - [anon_sym_PERCENT] = ACTIONS(631), - [anon_sym_AMP] = ACTIONS(629), - [anon_sym_SQUOTE] = ACTIONS(631), - [anon_sym_STAR] = ACTIONS(631), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_COMMA] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(629), - [anon_sym_DOT] = ACTIONS(629), - [anon_sym_SLASH] = ACTIONS(631), - [anon_sym_COLON] = ACTIONS(631), - [anon_sym_SEMI] = ACTIONS(631), - [anon_sym_EQ] = ACTIONS(631), - [anon_sym_QMARK] = ACTIONS(631), - [anon_sym_LBRACK] = ACTIONS(635), - [anon_sym_BSLASH] = ACTIONS(637), - [anon_sym_CARET] = ACTIONS(629), - [anon_sym__] = ACTIONS(631), - [anon_sym_BQUOTE] = ACTIONS(631), - [anon_sym_LBRACE] = ACTIONS(639), - [anon_sym_PIPE] = ACTIONS(631), - [anon_sym_TILDE] = ACTIONS(631), - [anon_sym_LPAREN] = ACTIONS(631), - [anon_sym_RPAREN] = ACTIONS(631), - [sym__newline_token] = ACTIONS(641), - [anon_sym_CARET_LBRACK] = ACTIONS(643), - [anon_sym_LBRACK_CARET] = ACTIONS(645), - [sym_uri_autolink] = ACTIONS(627), - [sym_email_autolink] = ACTIONS(627), - [sym__whitespace_ge_2] = ACTIONS(647), - [aux_sym__whitespace_token1] = ACTIONS(649), - [sym__word_no_digit] = ACTIONS(651), - [sym__digits] = ACTIONS(651), - [anon_sym_DASH_DASH] = ACTIONS(653), - [anon_sym_DASH_DASH_DASH] = ACTIONS(651), - [anon_sym_DOT_DOT_DOT] = ACTIONS(651), - [sym__code_span_start] = ACTIONS(655), - [sym__emphasis_open_star] = ACTIONS(657), - [sym__emphasis_open_underscore] = ACTIONS(659), - [sym__strikeout_open] = ACTIONS(661), - [sym__latex_span_start] = ACTIONS(663), - [sym__single_quote_open] = ACTIONS(665), - [sym__single_quote_close] = ACTIONS(2089), - [sym__double_quote_open] = ACTIONS(669), - [sym__superscript_open] = ACTIONS(671), - [sym__subscript_open] = ACTIONS(673), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(675), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(677), - [sym__cite_author_in_text] = ACTIONS(679), - [sym__cite_suppress_author] = ACTIONS(681), - [sym__shortcode_open_escaped] = ACTIONS(683), - [sym__shortcode_open] = ACTIONS(685), - [sym__unclosed_span] = ACTIONS(627), + [sym_backslash_escape] = STATE(373), + [sym_commonmark_attribute] = STATE(373), + [sym_code_span] = STATE(373), + [sym_latex_span] = STATE(373), + [sym_insert] = STATE(373), + [sym_delete] = STATE(373), + [sym_highlight] = STATE(373), + [sym_edit_comment] = STATE(373), + [sym_superscript] = STATE(373), + [sym_subscript] = STATE(373), + [sym_strikeout] = STATE(373), + [sym_quoted_span] = STATE(373), + [sym_inline_note] = STATE(373), + [sym_citation] = STATE(373), + [sym_shortcode_escaped] = STATE(373), + [sym_shortcode] = STATE(373), + [sym_note_reference] = STATE(373), + [sym__link_text] = STATE(522), + [sym__link_text_non_empty] = STATE(523), + [sym_inline_link] = STATE(36), + [sym_image] = STATE(373), + [sym__image_inline_link] = STATE(1265), + [sym__image_description] = STATE(2331), + [sym__image_description_non_empty] = STATE(2331), + [sym_hard_line_break] = STATE(373), + [sym__whitespace] = STATE(1262), + [sym__word] = STATE(1262), + [sym__soft_line_break] = STATE(1267), + [sym__inline_base] = STATE(36), + [sym__text_base] = STATE(373), + [sym__inline_element_no_star] = STATE(36), + [aux_sym__inline_no_star] = STATE(36), + [sym__emphasis_star] = STATE(1147), + [sym__strong_emphasis_star] = STATE(36), + [sym__emphasis_underscore] = STATE(1147), + [sym__strong_emphasis_underscore] = STATE(36), + [aux_sym__inline_base_repeat1] = STATE(373), + [sym__backslash_escape] = ACTIONS(885), + [sym_entity_reference] = ACTIONS(887), + [sym_numeric_character_reference] = ACTIONS(887), + [anon_sym_LT] = ACTIONS(889), + [anon_sym_GT] = ACTIONS(891), + [anon_sym_BANG] = ACTIONS(893), + [anon_sym_DQUOTE] = ACTIONS(891), + [anon_sym_POUND] = ACTIONS(891), + [anon_sym_DOLLAR] = ACTIONS(891), + [anon_sym_PERCENT] = ACTIONS(891), + [anon_sym_AMP] = ACTIONS(889), + [anon_sym_SQUOTE] = ACTIONS(891), + [anon_sym_STAR] = ACTIONS(891), + [anon_sym_PLUS] = ACTIONS(891), + [anon_sym_COMMA] = ACTIONS(891), + [anon_sym_DASH] = ACTIONS(889), + [anon_sym_DOT] = ACTIONS(889), + [anon_sym_SLASH] = ACTIONS(891), + [anon_sym_COLON] = ACTIONS(891), + [anon_sym_SEMI] = ACTIONS(891), + [anon_sym_EQ] = ACTIONS(891), + [anon_sym_QMARK] = ACTIONS(891), + [anon_sym_LBRACK] = ACTIONS(895), + [anon_sym_BSLASH] = ACTIONS(897), + [anon_sym_CARET] = ACTIONS(889), + [anon_sym__] = ACTIONS(891), + [anon_sym_BQUOTE] = ACTIONS(891), + [anon_sym_LBRACE] = ACTIONS(899), + [anon_sym_PIPE] = ACTIONS(891), + [anon_sym_TILDE] = ACTIONS(891), + [anon_sym_LPAREN] = ACTIONS(891), + [anon_sym_RPAREN] = ACTIONS(891), + [sym__newline_token] = ACTIONS(901), + [aux_sym_insert_token1] = ACTIONS(903), + [aux_sym_delete_token1] = ACTIONS(905), + [aux_sym_highlight_token1] = ACTIONS(907), + [aux_sym_edit_comment_token1] = ACTIONS(909), + [anon_sym_CARET_LBRACK] = ACTIONS(911), + [anon_sym_LBRACK_CARET] = ACTIONS(913), + [sym_uri_autolink] = ACTIONS(887), + [sym_email_autolink] = ACTIONS(887), + [sym__whitespace_ge_2] = ACTIONS(915), + [aux_sym__whitespace_token1] = ACTIONS(917), + [sym__word_no_digit] = ACTIONS(919), + [sym__digits] = ACTIONS(919), + [anon_sym_DASH_DASH] = ACTIONS(921), + [anon_sym_DASH_DASH_DASH] = ACTIONS(919), + [anon_sym_DOT_DOT_DOT] = ACTIONS(919), + [sym__code_span_start] = ACTIONS(923), + [sym__emphasis_open_star] = ACTIONS(925), + [sym__emphasis_open_underscore] = ACTIONS(927), + [sym__emphasis_close_star] = ACTIONS(2513), + [sym__strikeout_open] = ACTIONS(931), + [sym__latex_span_start] = ACTIONS(933), + [sym__single_quote_open] = ACTIONS(935), + [sym__double_quote_open] = ACTIONS(937), + [sym__superscript_open] = ACTIONS(939), + [sym__subscript_open] = ACTIONS(941), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(943), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(945), + [sym__cite_author_in_text] = ACTIONS(947), + [sym__cite_suppress_author] = ACTIONS(949), + [sym__shortcode_open_escaped] = ACTIONS(951), + [sym__shortcode_open] = ACTIONS(953), + [sym__unclosed_span] = ACTIONS(887), }, [STATE(151)] = { - [sym_backslash_escape] = STATE(277), - [sym_commonmark_attribute] = STATE(277), - [sym_code_span] = STATE(277), - [sym_latex_span] = STATE(277), - [sym_superscript] = STATE(277), - [sym_subscript] = STATE(277), - [sym_strikeout] = STATE(277), - [sym_quoted_span] = STATE(277), - [sym_inline_note] = STATE(277), - [sym_citation] = STATE(277), - [sym_shortcode_escaped] = STATE(277), - [sym_shortcode] = STATE(277), - [sym_note_reference] = STATE(277), - [sym__link_text] = STATE(427), - [sym__link_text_non_empty] = STATE(428), + [sym_backslash_escape] = STATE(379), + [sym_commonmark_attribute] = STATE(379), + [sym_code_span] = STATE(379), + [sym_latex_span] = STATE(379), + [sym_insert] = STATE(379), + [sym_delete] = STATE(379), + [sym_highlight] = STATE(379), + [sym_edit_comment] = STATE(379), + [sym_superscript] = STATE(379), + [sym_subscript] = STATE(379), + [sym_strikeout] = STATE(379), + [sym_quoted_span] = STATE(379), + [sym_inline_note] = STATE(379), + [sym_citation] = STATE(379), + [sym_shortcode_escaped] = STATE(379), + [sym_shortcode] = STATE(379), + [sym_note_reference] = STATE(379), + [sym__link_text] = STATE(545), + [sym__link_text_non_empty] = STATE(546), + [sym_inline_link] = STATE(38), + [sym_image] = STATE(379), + [sym__image_inline_link] = STATE(1390), + [sym__image_description] = STATE(2363), + [sym__image_description_non_empty] = STATE(2363), + [sym_hard_line_break] = STATE(379), + [sym__whitespace] = STATE(1385), + [sym__word] = STATE(1385), + [sym__soft_line_break] = STATE(1391), + [sym__inline_base] = STATE(38), + [sym__text_base] = STATE(379), + [sym__inline_element_no_underscore] = STATE(38), + [aux_sym__inline_no_underscore] = STATE(38), + [sym__emphasis_star] = STATE(1168), + [sym__strong_emphasis_star] = STATE(38), + [sym__emphasis_underscore] = STATE(1168), + [sym__strong_emphasis_underscore] = STATE(38), + [aux_sym__inline_base_repeat1] = STATE(379), + [sym__backslash_escape] = ACTIONS(1059), + [sym_entity_reference] = ACTIONS(1061), + [sym_numeric_character_reference] = ACTIONS(1061), + [anon_sym_LT] = ACTIONS(1063), + [anon_sym_GT] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1067), + [anon_sym_DQUOTE] = ACTIONS(1065), + [anon_sym_POUND] = ACTIONS(1065), + [anon_sym_DOLLAR] = ACTIONS(1065), + [anon_sym_PERCENT] = ACTIONS(1065), + [anon_sym_AMP] = ACTIONS(1063), + [anon_sym_SQUOTE] = ACTIONS(1065), + [anon_sym_STAR] = ACTIONS(1065), + [anon_sym_PLUS] = ACTIONS(1065), + [anon_sym_COMMA] = ACTIONS(1065), + [anon_sym_DASH] = ACTIONS(1063), + [anon_sym_DOT] = ACTIONS(1063), + [anon_sym_SLASH] = ACTIONS(1065), + [anon_sym_COLON] = ACTIONS(1065), + [anon_sym_SEMI] = ACTIONS(1065), + [anon_sym_EQ] = ACTIONS(1065), + [anon_sym_QMARK] = ACTIONS(1065), + [anon_sym_LBRACK] = ACTIONS(1069), + [anon_sym_BSLASH] = ACTIONS(1071), + [anon_sym_CARET] = ACTIONS(1063), + [anon_sym__] = ACTIONS(1065), + [anon_sym_BQUOTE] = ACTIONS(1065), + [anon_sym_LBRACE] = ACTIONS(1073), + [anon_sym_PIPE] = ACTIONS(1065), + [anon_sym_TILDE] = ACTIONS(1065), + [anon_sym_LPAREN] = ACTIONS(1065), + [anon_sym_RPAREN] = ACTIONS(1065), + [sym__newline_token] = ACTIONS(1075), + [aux_sym_insert_token1] = ACTIONS(1077), + [aux_sym_delete_token1] = ACTIONS(1079), + [aux_sym_highlight_token1] = ACTIONS(1081), + [aux_sym_edit_comment_token1] = ACTIONS(1083), + [anon_sym_CARET_LBRACK] = ACTIONS(1085), + [anon_sym_LBRACK_CARET] = ACTIONS(1087), + [sym_uri_autolink] = ACTIONS(1061), + [sym_email_autolink] = ACTIONS(1061), + [sym__whitespace_ge_2] = ACTIONS(1089), + [aux_sym__whitespace_token1] = ACTIONS(1091), + [sym__word_no_digit] = ACTIONS(1093), + [sym__digits] = ACTIONS(1093), + [anon_sym_DASH_DASH] = ACTIONS(1095), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1093), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1093), + [sym__code_span_start] = ACTIONS(1097), + [sym__emphasis_open_star] = ACTIONS(1099), + [sym__emphasis_open_underscore] = ACTIONS(1101), + [sym__emphasis_close_underscore] = ACTIONS(2515), + [sym__strikeout_open] = ACTIONS(1105), + [sym__latex_span_start] = ACTIONS(1107), + [sym__single_quote_open] = ACTIONS(1109), + [sym__double_quote_open] = ACTIONS(1111), + [sym__superscript_open] = ACTIONS(1113), + [sym__subscript_open] = ACTIONS(1115), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1117), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1119), + [sym__cite_author_in_text] = ACTIONS(1121), + [sym__cite_suppress_author] = ACTIONS(1123), + [sym__shortcode_open_escaped] = ACTIONS(1125), + [sym__shortcode_open] = ACTIONS(1127), + [sym__unclosed_span] = ACTIONS(1061), + }, + [STATE(152)] = { + [sym_backslash_escape] = STATE(366), + [sym_commonmark_attribute] = STATE(366), + [sym_code_span] = STATE(366), + [sym_latex_span] = STATE(366), + [sym_insert] = STATE(366), + [sym_delete] = STATE(366), + [sym_highlight] = STATE(366), + [sym_edit_comment] = STATE(366), + [sym_superscript] = STATE(366), + [sym_subscript] = STATE(366), + [sym_strikeout] = STATE(366), + [sym_quoted_span] = STATE(366), + [sym_inline_note] = STATE(366), + [sym_citation] = STATE(366), + [sym_shortcode_escaped] = STATE(366), + [sym_shortcode] = STATE(366), + [sym_note_reference] = STATE(366), + [sym__link_text] = STATE(490), + [sym__link_text_non_empty] = STATE(491), + [sym_inline_link] = STATE(39), + [sym_image] = STATE(366), + [sym__image_inline_link] = STATE(1244), + [sym__image_description] = STATE(2280), + [sym__image_description_non_empty] = STATE(2280), + [sym_hard_line_break] = STATE(366), + [sym__whitespace] = STATE(1218), + [sym__word] = STATE(1218), + [sym__soft_line_break] = STATE(1245), + [sym__inline_base] = STATE(39), + [sym__text_base] = STATE(366), + [sym__inline_element] = STATE(39), + [sym__emphasis_star] = STATE(1270), + [sym__strong_emphasis_star] = STATE(39), + [sym__emphasis_underscore] = STATE(1270), + [sym__strong_emphasis_underscore] = STATE(39), + [aux_sym_insert_repeat1] = STATE(39), + [aux_sym__inline_base_repeat1] = STATE(366), + [sym__backslash_escape] = ACTIONS(2005), + [sym_entity_reference] = ACTIONS(2007), + [sym_numeric_character_reference] = ACTIONS(2007), + [anon_sym_LT] = ACTIONS(2009), + [anon_sym_GT] = ACTIONS(2011), + [anon_sym_BANG] = ACTIONS(2013), + [anon_sym_DQUOTE] = ACTIONS(2011), + [anon_sym_POUND] = ACTIONS(2011), + [anon_sym_DOLLAR] = ACTIONS(2011), + [anon_sym_PERCENT] = ACTIONS(2011), + [anon_sym_AMP] = ACTIONS(2009), + [anon_sym_SQUOTE] = ACTIONS(2011), + [anon_sym_STAR] = ACTIONS(2011), + [anon_sym_PLUS] = ACTIONS(2011), + [anon_sym_COMMA] = ACTIONS(2011), + [anon_sym_DASH] = ACTIONS(2009), + [anon_sym_DOT] = ACTIONS(2009), + [anon_sym_SLASH] = ACTIONS(2011), + [anon_sym_COLON] = ACTIONS(2011), + [anon_sym_SEMI] = ACTIONS(2011), + [anon_sym_EQ] = ACTIONS(2011), + [anon_sym_QMARK] = ACTIONS(2011), + [anon_sym_LBRACK] = ACTIONS(2015), + [anon_sym_BSLASH] = ACTIONS(2017), + [anon_sym_CARET] = ACTIONS(2009), + [anon_sym__] = ACTIONS(2011), + [anon_sym_BQUOTE] = ACTIONS(2011), + [anon_sym_LBRACE] = ACTIONS(2019), + [anon_sym_PIPE] = ACTIONS(2011), + [anon_sym_TILDE] = ACTIONS(2011), + [anon_sym_LPAREN] = ACTIONS(2011), + [anon_sym_RPAREN] = ACTIONS(2011), + [sym__newline_token] = ACTIONS(2021), + [aux_sym_insert_token1] = ACTIONS(2023), + [aux_sym_delete_token1] = ACTIONS(2025), + [aux_sym_highlight_token1] = ACTIONS(2027), + [aux_sym_edit_comment_token1] = ACTIONS(2029), + [anon_sym_CARET_LBRACK] = ACTIONS(2031), + [anon_sym_LBRACK_CARET] = ACTIONS(2033), + [sym_uri_autolink] = ACTIONS(2007), + [sym_email_autolink] = ACTIONS(2007), + [sym__whitespace_ge_2] = ACTIONS(2035), + [aux_sym__whitespace_token1] = ACTIONS(2037), + [sym__word_no_digit] = ACTIONS(2039), + [sym__digits] = ACTIONS(2039), + [anon_sym_DASH_DASH] = ACTIONS(2041), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2039), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2039), + [sym__code_span_start] = ACTIONS(2043), + [sym__emphasis_open_star] = ACTIONS(2045), + [sym__emphasis_open_underscore] = ACTIONS(2047), + [sym__strikeout_open] = ACTIONS(2049), + [sym__strikeout_close] = ACTIONS(2517), + [sym__latex_span_start] = ACTIONS(2053), + [sym__single_quote_open] = ACTIONS(2055), + [sym__double_quote_open] = ACTIONS(2057), + [sym__superscript_open] = ACTIONS(2059), + [sym__subscript_open] = ACTIONS(2061), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2063), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2065), + [sym__cite_author_in_text] = ACTIONS(2067), + [sym__cite_suppress_author] = ACTIONS(2069), + [sym__shortcode_open_escaped] = ACTIONS(2071), + [sym__shortcode_open] = ACTIONS(2073), + [sym__unclosed_span] = ACTIONS(2007), + }, + [STATE(153)] = { + [sym_backslash_escape] = STATE(375), + [sym_commonmark_attribute] = STATE(375), + [sym_code_span] = STATE(375), + [sym_latex_span] = STATE(375), + [sym_insert] = STATE(375), + [sym_delete] = STATE(375), + [sym_highlight] = STATE(375), + [sym_edit_comment] = STATE(375), + [sym_superscript] = STATE(375), + [sym_subscript] = STATE(375), + [sym_strikeout] = STATE(375), + [sym_quoted_span] = STATE(375), + [sym_inline_note] = STATE(375), + [sym_citation] = STATE(375), + [sym_shortcode_escaped] = STATE(375), + [sym_shortcode] = STATE(375), + [sym_note_reference] = STATE(375), + [sym__link_text] = STATE(525), + [sym__link_text_non_empty] = STATE(527), + [sym_inline_link] = STATE(47), + [sym_image] = STATE(375), + [sym__image_inline_link] = STATE(972), + [sym__image_description] = STATE(2286), + [sym__image_description_non_empty] = STATE(2286), + [sym_hard_line_break] = STATE(375), + [sym__whitespace] = STATE(949), + [sym__word] = STATE(949), + [sym__soft_line_break] = STATE(973), + [sym__inline_base] = STATE(47), + [sym__text_base] = STATE(375), + [sym__inline_element] = STATE(47), + [sym__emphasis_star] = STATE(1392), + [sym__strong_emphasis_star] = STATE(47), + [sym__emphasis_underscore] = STATE(1392), + [sym__strong_emphasis_underscore] = STATE(47), + [aux_sym_insert_repeat1] = STATE(47), + [aux_sym__inline_base_repeat1] = STATE(375), + [sym__backslash_escape] = ACTIONS(2179), + [sym_entity_reference] = ACTIONS(2181), + [sym_numeric_character_reference] = ACTIONS(2181), + [anon_sym_LT] = ACTIONS(2183), + [anon_sym_GT] = ACTIONS(2185), + [anon_sym_BANG] = ACTIONS(2187), + [anon_sym_DQUOTE] = ACTIONS(2185), + [anon_sym_POUND] = ACTIONS(2185), + [anon_sym_DOLLAR] = ACTIONS(2185), + [anon_sym_PERCENT] = ACTIONS(2185), + [anon_sym_AMP] = ACTIONS(2183), + [anon_sym_SQUOTE] = ACTIONS(2185), + [anon_sym_STAR] = ACTIONS(2185), + [anon_sym_PLUS] = ACTIONS(2185), + [anon_sym_COMMA] = ACTIONS(2185), + [anon_sym_DASH] = ACTIONS(2183), + [anon_sym_DOT] = ACTIONS(2183), + [anon_sym_SLASH] = ACTIONS(2185), + [anon_sym_COLON] = ACTIONS(2185), + [anon_sym_SEMI] = ACTIONS(2185), + [anon_sym_EQ] = ACTIONS(2185), + [anon_sym_QMARK] = ACTIONS(2185), + [anon_sym_LBRACK] = ACTIONS(2189), + [anon_sym_BSLASH] = ACTIONS(2191), + [anon_sym_CARET] = ACTIONS(2183), + [anon_sym__] = ACTIONS(2185), + [anon_sym_BQUOTE] = ACTIONS(2185), + [anon_sym_LBRACE] = ACTIONS(2193), + [anon_sym_PIPE] = ACTIONS(2185), + [anon_sym_TILDE] = ACTIONS(2185), + [anon_sym_LPAREN] = ACTIONS(2185), + [anon_sym_RPAREN] = ACTIONS(2185), + [sym__newline_token] = ACTIONS(2195), + [aux_sym_insert_token1] = ACTIONS(2197), + [aux_sym_delete_token1] = ACTIONS(2199), + [aux_sym_highlight_token1] = ACTIONS(2201), + [aux_sym_edit_comment_token1] = ACTIONS(2203), + [anon_sym_CARET_LBRACK] = ACTIONS(2205), + [anon_sym_LBRACK_CARET] = ACTIONS(2207), + [sym_uri_autolink] = ACTIONS(2181), + [sym_email_autolink] = ACTIONS(2181), + [sym__whitespace_ge_2] = ACTIONS(2209), + [aux_sym__whitespace_token1] = ACTIONS(2211), + [sym__word_no_digit] = ACTIONS(2213), + [sym__digits] = ACTIONS(2213), + [anon_sym_DASH_DASH] = ACTIONS(2215), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2213), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2213), + [sym__code_span_start] = ACTIONS(2217), + [sym__emphasis_open_star] = ACTIONS(2219), + [sym__emphasis_open_underscore] = ACTIONS(2221), + [sym__strikeout_open] = ACTIONS(2223), + [sym__latex_span_start] = ACTIONS(2225), + [sym__single_quote_open] = ACTIONS(2227), + [sym__single_quote_close] = ACTIONS(2519), + [sym__double_quote_open] = ACTIONS(2229), + [sym__superscript_open] = ACTIONS(2231), + [sym__subscript_open] = ACTIONS(2233), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2235), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2237), + [sym__cite_author_in_text] = ACTIONS(2239), + [sym__cite_suppress_author] = ACTIONS(2241), + [sym__shortcode_open_escaped] = ACTIONS(2243), + [sym__shortcode_open] = ACTIONS(2245), + [sym__unclosed_span] = ACTIONS(2181), + }, + [STATE(154)] = { + [sym_backslash_escape] = STATE(383), + [sym_commonmark_attribute] = STATE(383), + [sym_code_span] = STATE(383), + [sym_latex_span] = STATE(383), + [sym_insert] = STATE(383), + [sym_delete] = STATE(383), + [sym_highlight] = STATE(383), + [sym_edit_comment] = STATE(383), + [sym_superscript] = STATE(383), + [sym_subscript] = STATE(383), + [sym_strikeout] = STATE(383), + [sym_quoted_span] = STATE(383), + [sym_inline_note] = STATE(383), + [sym_citation] = STATE(383), + [sym_shortcode_escaped] = STATE(383), + [sym_shortcode] = STATE(383), + [sym_note_reference] = STATE(383), + [sym__link_text] = STATE(395), + [sym__link_text_non_empty] = STATE(396), [sym_inline_link] = STATE(50), - [sym_image] = STATE(277), - [sym__image_inline_link] = STATE(613), - [sym__image_description] = STATE(1930), - [sym__image_description_non_empty] = STATE(1930), - [sym_hard_line_break] = STATE(277), - [sym__whitespace] = STATE(610), - [sym__word] = STATE(610), - [sym__soft_line_break] = STATE(614), + [sym_image] = STATE(383), + [sym__image_inline_link] = STATE(1263), + [sym__image_description] = STATE(2300), + [sym__image_description_non_empty] = STATE(2300), + [sym_hard_line_break] = STATE(383), + [sym__whitespace] = STATE(1259), + [sym__word] = STATE(1259), + [sym__soft_line_break] = STATE(1264), [sym__inline_base] = STATE(50), - [sym__text_base] = STATE(277), + [sym__text_base] = STATE(383), [sym__inline_element] = STATE(50), - [sym__emphasis_star] = STATE(1044), + [sym__emphasis_star] = STATE(1249), [sym__strong_emphasis_star] = STATE(50), - [sym__emphasis_underscore] = STATE(1044), + [sym__emphasis_underscore] = STATE(1249), [sym__strong_emphasis_underscore] = STATE(50), - [aux_sym_superscript_repeat1] = STATE(50), - [aux_sym__inline_base_repeat1] = STATE(277), - [sym__backslash_escape] = ACTIONS(687), - [sym_entity_reference] = ACTIONS(689), - [sym_numeric_character_reference] = ACTIONS(689), - [anon_sym_LT] = ACTIONS(691), - [anon_sym_GT] = ACTIONS(693), - [anon_sym_BANG] = ACTIONS(695), - [anon_sym_DQUOTE] = ACTIONS(693), - [anon_sym_POUND] = ACTIONS(693), - [anon_sym_DOLLAR] = ACTIONS(693), - [anon_sym_PERCENT] = ACTIONS(693), - [anon_sym_AMP] = ACTIONS(691), - [anon_sym_SQUOTE] = ACTIONS(693), - [anon_sym_STAR] = ACTIONS(693), - [anon_sym_PLUS] = ACTIONS(693), - [anon_sym_COMMA] = ACTIONS(693), - [anon_sym_DASH] = ACTIONS(691), - [anon_sym_DOT] = ACTIONS(691), - [anon_sym_SLASH] = ACTIONS(693), - [anon_sym_COLON] = ACTIONS(693), - [anon_sym_SEMI] = ACTIONS(693), - [anon_sym_EQ] = ACTIONS(693), - [anon_sym_QMARK] = ACTIONS(693), - [anon_sym_LBRACK] = ACTIONS(697), - [anon_sym_BSLASH] = ACTIONS(699), - [anon_sym_CARET] = ACTIONS(691), - [anon_sym__] = ACTIONS(693), - [anon_sym_BQUOTE] = ACTIONS(693), - [anon_sym_LBRACE] = ACTIONS(701), - [anon_sym_PIPE] = ACTIONS(693), - [anon_sym_TILDE] = ACTIONS(693), - [anon_sym_LPAREN] = ACTIONS(693), - [anon_sym_RPAREN] = ACTIONS(693), - [sym__newline_token] = ACTIONS(703), - [anon_sym_CARET_LBRACK] = ACTIONS(705), - [anon_sym_LBRACK_CARET] = ACTIONS(707), - [sym_uri_autolink] = ACTIONS(689), - [sym_email_autolink] = ACTIONS(689), - [sym__whitespace_ge_2] = ACTIONS(709), - [aux_sym__whitespace_token1] = ACTIONS(711), - [sym__word_no_digit] = ACTIONS(713), - [sym__digits] = ACTIONS(713), - [anon_sym_DASH_DASH] = ACTIONS(715), - [anon_sym_DASH_DASH_DASH] = ACTIONS(713), - [anon_sym_DOT_DOT_DOT] = ACTIONS(713), - [sym__code_span_start] = ACTIONS(717), - [sym__emphasis_open_star] = ACTIONS(719), - [sym__emphasis_open_underscore] = ACTIONS(721), - [sym__strikeout_open] = ACTIONS(723), - [sym__latex_span_start] = ACTIONS(725), - [sym__single_quote_open] = ACTIONS(727), - [sym__double_quote_open] = ACTIONS(729), - [sym__double_quote_close] = ACTIONS(2089), - [sym__superscript_open] = ACTIONS(731), - [sym__subscript_open] = ACTIONS(733), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(735), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(737), - [sym__cite_author_in_text] = ACTIONS(739), - [sym__cite_suppress_author] = ACTIONS(741), - [sym__shortcode_open_escaped] = ACTIONS(743), - [sym__shortcode_open] = ACTIONS(745), - [sym__unclosed_span] = ACTIONS(689), + [aux_sym_insert_repeat1] = STATE(50), + [aux_sym__inline_base_repeat1] = STATE(383), + [sym__backslash_escape] = ACTIONS(637), + [sym_entity_reference] = ACTIONS(639), + [sym_numeric_character_reference] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_GT] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(645), + [anon_sym_DQUOTE] = ACTIONS(643), + [anon_sym_POUND] = ACTIONS(643), + [anon_sym_DOLLAR] = ACTIONS(643), + [anon_sym_PERCENT] = ACTIONS(643), + [anon_sym_AMP] = ACTIONS(641), + [anon_sym_SQUOTE] = ACTIONS(643), + [anon_sym_STAR] = ACTIONS(643), + [anon_sym_PLUS] = ACTIONS(643), + [anon_sym_COMMA] = ACTIONS(643), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_DOT] = ACTIONS(641), + [anon_sym_SLASH] = ACTIONS(643), + [anon_sym_COLON] = ACTIONS(643), + [anon_sym_SEMI] = ACTIONS(643), + [anon_sym_EQ] = ACTIONS(643), + [anon_sym_QMARK] = ACTIONS(643), + [anon_sym_LBRACK] = ACTIONS(647), + [anon_sym_BSLASH] = ACTIONS(649), + [anon_sym_CARET] = ACTIONS(641), + [anon_sym__] = ACTIONS(643), + [anon_sym_BQUOTE] = ACTIONS(643), + [anon_sym_LBRACE] = ACTIONS(651), + [anon_sym_PIPE] = ACTIONS(643), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_LPAREN] = ACTIONS(643), + [anon_sym_RPAREN] = ACTIONS(643), + [sym__newline_token] = ACTIONS(653), + [aux_sym_insert_token1] = ACTIONS(655), + [aux_sym_delete_token1] = ACTIONS(657), + [aux_sym_highlight_token1] = ACTIONS(659), + [aux_sym_edit_comment_token1] = ACTIONS(661), + [anon_sym_CARET_LBRACK] = ACTIONS(663), + [anon_sym_LBRACK_CARET] = ACTIONS(665), + [sym_uri_autolink] = ACTIONS(639), + [sym_email_autolink] = ACTIONS(639), + [sym__whitespace_ge_2] = ACTIONS(667), + [aux_sym__whitespace_token1] = ACTIONS(669), + [sym__word_no_digit] = ACTIONS(671), + [sym__digits] = ACTIONS(671), + [anon_sym_DASH_DASH] = ACTIONS(673), + [anon_sym_DASH_DASH_DASH] = ACTIONS(671), + [anon_sym_DOT_DOT_DOT] = ACTIONS(671), + [sym__code_span_start] = ACTIONS(675), + [sym__emphasis_open_star] = ACTIONS(677), + [sym__emphasis_open_underscore] = ACTIONS(679), + [sym__strikeout_open] = ACTIONS(681), + [sym__latex_span_start] = ACTIONS(683), + [sym__single_quote_open] = ACTIONS(685), + [sym__double_quote_open] = ACTIONS(687), + [sym__double_quote_close] = ACTIONS(2519), + [sym__superscript_open] = ACTIONS(691), + [sym__subscript_open] = ACTIONS(693), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(695), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(697), + [sym__cite_author_in_text] = ACTIONS(699), + [sym__cite_suppress_author] = ACTIONS(701), + [sym__shortcode_open_escaped] = ACTIONS(703), + [sym__shortcode_open] = ACTIONS(705), + [sym__unclosed_span] = ACTIONS(639), }, - [STATE(152)] = { - [sym_backslash_escape] = STATE(262), - [sym_commonmark_attribute] = STATE(262), - [sym_code_span] = STATE(262), - [sym_latex_span] = STATE(262), - [sym_superscript] = STATE(262), - [sym_subscript] = STATE(262), - [sym_strikeout] = STATE(262), - [sym_quoted_span] = STATE(262), - [sym_inline_note] = STATE(262), - [sym_citation] = STATE(262), - [sym_shortcode_escaped] = STATE(262), - [sym_shortcode] = STATE(262), - [sym_note_reference] = STATE(262), - [sym__link_text] = STATE(313), - [sym__link_text_non_empty] = STATE(314), - [sym_inline_link] = STATE(51), - [sym_image] = STATE(262), - [sym__image_inline_link] = STATE(708), - [sym__image_description] = STATE(1970), - [sym__image_description_non_empty] = STATE(1970), - [sym_hard_line_break] = STATE(262), - [sym__whitespace] = STATE(705), - [sym__word] = STATE(705), - [sym__soft_line_break] = STATE(709), - [sym__inline_base] = STATE(51), - [sym__text_base] = STATE(262), - [sym__inline_element] = STATE(51), - [sym__emphasis_star] = STATE(1138), - [sym__strong_emphasis_star] = STATE(51), - [sym__emphasis_underscore] = STATE(1138), - [sym__strong_emphasis_underscore] = STATE(51), - [aux_sym_superscript_repeat1] = STATE(51), - [aux_sym__inline_base_repeat1] = STATE(262), - [sym__backslash_escape] = ACTIONS(747), - [sym_entity_reference] = ACTIONS(749), - [sym_numeric_character_reference] = ACTIONS(749), - [anon_sym_LT] = ACTIONS(751), - [anon_sym_GT] = ACTIONS(753), - [anon_sym_BANG] = ACTIONS(755), - [anon_sym_DQUOTE] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(753), - [anon_sym_DOLLAR] = ACTIONS(753), - [anon_sym_PERCENT] = ACTIONS(753), - [anon_sym_AMP] = ACTIONS(751), - [anon_sym_SQUOTE] = ACTIONS(753), - [anon_sym_STAR] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(753), - [anon_sym_COMMA] = ACTIONS(753), - [anon_sym_DASH] = ACTIONS(751), - [anon_sym_DOT] = ACTIONS(751), - [anon_sym_SLASH] = ACTIONS(753), - [anon_sym_COLON] = ACTIONS(753), - [anon_sym_SEMI] = ACTIONS(753), - [anon_sym_EQ] = ACTIONS(753), - [anon_sym_QMARK] = ACTIONS(753), - [anon_sym_LBRACK] = ACTIONS(757), - [anon_sym_BSLASH] = ACTIONS(759), - [anon_sym_CARET] = ACTIONS(751), - [anon_sym__] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(753), - [anon_sym_LBRACE] = ACTIONS(761), - [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_TILDE] = ACTIONS(753), - [anon_sym_LPAREN] = ACTIONS(753), - [anon_sym_RPAREN] = ACTIONS(753), - [sym__newline_token] = ACTIONS(763), - [anon_sym_CARET_LBRACK] = ACTIONS(765), - [anon_sym_LBRACK_CARET] = ACTIONS(767), - [sym_uri_autolink] = ACTIONS(749), - [sym_email_autolink] = ACTIONS(749), - [sym__whitespace_ge_2] = ACTIONS(769), - [aux_sym__whitespace_token1] = ACTIONS(771), - [sym__word_no_digit] = ACTIONS(773), - [sym__digits] = ACTIONS(773), - [anon_sym_DASH_DASH] = ACTIONS(775), - [anon_sym_DASH_DASH_DASH] = ACTIONS(773), - [anon_sym_DOT_DOT_DOT] = ACTIONS(773), - [sym__code_span_start] = ACTIONS(777), - [sym__emphasis_open_star] = ACTIONS(779), - [sym__emphasis_open_underscore] = ACTIONS(781), - [sym__strikeout_open] = ACTIONS(783), - [sym__latex_span_start] = ACTIONS(785), - [sym__single_quote_open] = ACTIONS(787), - [sym__double_quote_open] = ACTIONS(789), - [sym__superscript_open] = ACTIONS(791), - [sym__superscript_close] = ACTIONS(2091), - [sym__subscript_open] = ACTIONS(795), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(797), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(799), - [sym__cite_author_in_text] = ACTIONS(801), - [sym__cite_suppress_author] = ACTIONS(803), - [sym__shortcode_open_escaped] = ACTIONS(805), - [sym__shortcode_open] = ACTIONS(807), - [sym__unclosed_span] = ACTIONS(749), - }, - [STATE(153)] = { - [sym_backslash_escape] = STATE(270), - [sym_commonmark_attribute] = STATE(270), - [sym_code_span] = STATE(270), - [sym_latex_span] = STATE(270), - [sym_superscript] = STATE(270), - [sym_subscript] = STATE(270), - [sym_strikeout] = STATE(270), - [sym_quoted_span] = STATE(270), - [sym_inline_note] = STATE(270), - [sym_citation] = STATE(270), - [sym_shortcode_escaped] = STATE(270), - [sym_shortcode] = STATE(270), - [sym_note_reference] = STATE(270), - [sym__link_text] = STATE(359), - [sym__link_text_non_empty] = STATE(364), + [STATE(155)] = { + [sym_backslash_escape] = STATE(365), + [sym_commonmark_attribute] = STATE(365), + [sym_code_span] = STATE(365), + [sym_latex_span] = STATE(365), + [sym_insert] = STATE(365), + [sym_delete] = STATE(365), + [sym_highlight] = STATE(365), + [sym_edit_comment] = STATE(365), + [sym_superscript] = STATE(365), + [sym_subscript] = STATE(365), + [sym_strikeout] = STATE(365), + [sym_quoted_span] = STATE(365), + [sym_inline_note] = STATE(365), + [sym_citation] = STATE(365), + [sym_shortcode_escaped] = STATE(365), + [sym_shortcode] = STATE(365), + [sym_note_reference] = STATE(365), + [sym__link_text] = STATE(416), + [sym__link_text_non_empty] = STATE(417), [sym_inline_link] = STATE(52), - [sym_image] = STATE(270), - [sym__image_inline_link] = STATE(795), - [sym__image_description] = STATE(1984), - [sym__image_description_non_empty] = STATE(1984), - [sym_hard_line_break] = STATE(270), - [sym__whitespace] = STATE(792), - [sym__word] = STATE(792), - [sym__soft_line_break] = STATE(796), + [sym_image] = STATE(365), + [sym__image_inline_link] = STATE(712), + [sym__image_description] = STATE(2314), + [sym__image_description_non_empty] = STATE(2314), + [sym_hard_line_break] = STATE(365), + [sym__whitespace] = STATE(709), + [sym__word] = STATE(709), + [sym__soft_line_break] = STATE(713), [sym__inline_base] = STATE(52), - [sym__text_base] = STATE(270), + [sym__text_base] = STATE(365), [sym__inline_element] = STATE(52), - [sym__emphasis_star] = STATE(615), + [sym__emphasis_star] = STATE(979), [sym__strong_emphasis_star] = STATE(52), - [sym__emphasis_underscore] = STATE(615), + [sym__emphasis_underscore] = STATE(979), [sym__strong_emphasis_underscore] = STATE(52), - [aux_sym_superscript_repeat1] = STATE(52), - [aux_sym__inline_base_repeat1] = STATE(270), - [sym__backslash_escape] = ACTIONS(809), - [sym_entity_reference] = ACTIONS(811), - [sym_numeric_character_reference] = ACTIONS(811), - [anon_sym_LT] = ACTIONS(813), - [anon_sym_GT] = ACTIONS(815), - [anon_sym_BANG] = ACTIONS(817), - [anon_sym_DQUOTE] = ACTIONS(815), - [anon_sym_POUND] = ACTIONS(815), - [anon_sym_DOLLAR] = ACTIONS(815), - [anon_sym_PERCENT] = ACTIONS(815), - [anon_sym_AMP] = ACTIONS(813), - [anon_sym_SQUOTE] = ACTIONS(815), - [anon_sym_STAR] = ACTIONS(815), - [anon_sym_PLUS] = ACTIONS(815), - [anon_sym_COMMA] = ACTIONS(815), - [anon_sym_DASH] = ACTIONS(813), - [anon_sym_DOT] = ACTIONS(813), - [anon_sym_SLASH] = ACTIONS(815), - [anon_sym_COLON] = ACTIONS(815), - [anon_sym_SEMI] = ACTIONS(815), - [anon_sym_EQ] = ACTIONS(815), - [anon_sym_QMARK] = ACTIONS(815), - [anon_sym_LBRACK] = ACTIONS(819), - [anon_sym_BSLASH] = ACTIONS(821), - [anon_sym_CARET] = ACTIONS(813), - [anon_sym__] = ACTIONS(815), - [anon_sym_BQUOTE] = ACTIONS(815), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_PIPE] = ACTIONS(815), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_RPAREN] = ACTIONS(815), - [sym__newline_token] = ACTIONS(825), - [anon_sym_CARET_LBRACK] = ACTIONS(827), - [anon_sym_LBRACK_CARET] = ACTIONS(829), - [sym_uri_autolink] = ACTIONS(811), - [sym_email_autolink] = ACTIONS(811), - [sym__whitespace_ge_2] = ACTIONS(831), - [aux_sym__whitespace_token1] = ACTIONS(833), - [sym__word_no_digit] = ACTIONS(835), - [sym__digits] = ACTIONS(835), - [anon_sym_DASH_DASH] = ACTIONS(837), - [anon_sym_DASH_DASH_DASH] = ACTIONS(835), - [anon_sym_DOT_DOT_DOT] = ACTIONS(835), - [sym__code_span_start] = ACTIONS(839), - [sym__emphasis_open_star] = ACTIONS(841), - [sym__emphasis_open_underscore] = ACTIONS(843), - [sym__strikeout_open] = ACTIONS(845), - [sym__latex_span_start] = ACTIONS(847), - [sym__single_quote_open] = ACTIONS(849), - [sym__double_quote_open] = ACTIONS(851), - [sym__superscript_open] = ACTIONS(853), - [sym__subscript_open] = ACTIONS(855), - [sym__subscript_close] = ACTIONS(2093), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(859), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(861), - [sym__cite_author_in_text] = ACTIONS(863), - [sym__cite_suppress_author] = ACTIONS(865), - [sym__shortcode_open_escaped] = ACTIONS(867), - [sym__shortcode_open] = ACTIONS(869), - [sym__unclosed_span] = ACTIONS(811), - }, - [STATE(154)] = { - [sym_backslash_escape] = STATE(271), - [sym_commonmark_attribute] = STATE(271), - [sym_code_span] = STATE(271), - [sym_latex_span] = STATE(271), - [sym_superscript] = STATE(271), - [sym_subscript] = STATE(271), - [sym_strikeout] = STATE(271), - [sym_quoted_span] = STATE(271), - [sym_inline_note] = STATE(271), - [sym_citation] = STATE(271), - [sym_shortcode_escaped] = STATE(271), - [sym_shortcode] = STATE(271), - [sym_note_reference] = STATE(271), - [sym__link_text] = STATE(424), - [sym__link_text_non_empty] = STATE(425), - [sym_inline_link] = STATE(158), - [sym_image] = STATE(271), - [sym__image_inline_link] = STATE(883), - [sym__image_description] = STATE(1998), - [sym__image_description_non_empty] = STATE(1998), - [sym_hard_line_break] = STATE(271), - [sym__whitespace] = STATE(881), - [sym__word] = STATE(881), - [sym__soft_line_break] = STATE(884), - [sym__inline_base] = STATE(158), - [sym__text_base] = STATE(271), - [sym__inline_element] = STATE(158), - [sym__emphasis_star] = STATE(710), - [sym__strong_emphasis_star] = STATE(158), - [sym__emphasis_underscore] = STATE(710), - [sym__strong_emphasis_underscore] = STATE(158), - [aux_sym_superscript_repeat1] = STATE(158), - [aux_sym__inline_base_repeat1] = STATE(271), - [sym__backslash_escape] = ACTIONS(159), - [sym_entity_reference] = ACTIONS(161), - [sym_numeric_character_reference] = ACTIONS(161), - [anon_sym_LT] = ACTIONS(163), - [anon_sym_GT] = ACTIONS(165), - [anon_sym_BANG] = ACTIONS(167), - [anon_sym_DQUOTE] = ACTIONS(165), - [anon_sym_POUND] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(165), - [anon_sym_PERCENT] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_SQUOTE] = ACTIONS(165), - [anon_sym_STAR] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(165), - [anon_sym_COMMA] = ACTIONS(165), - [anon_sym_DASH] = ACTIONS(163), - [anon_sym_DOT] = ACTIONS(163), - [anon_sym_SLASH] = ACTIONS(165), - [anon_sym_COLON] = ACTIONS(165), - [anon_sym_SEMI] = ACTIONS(165), - [anon_sym_EQ] = ACTIONS(165), - [anon_sym_QMARK] = ACTIONS(165), - [anon_sym_LBRACK] = ACTIONS(169), - [anon_sym_BSLASH] = ACTIONS(171), - [anon_sym_RBRACK] = ACTIONS(2095), - [anon_sym_CARET] = ACTIONS(163), - [anon_sym__] = ACTIONS(165), - [anon_sym_BQUOTE] = ACTIONS(165), - [anon_sym_LBRACE] = ACTIONS(175), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(165), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_RPAREN] = ACTIONS(165), - [sym__newline_token] = ACTIONS(177), - [anon_sym_CARET_LBRACK] = ACTIONS(179), - [anon_sym_LBRACK_CARET] = ACTIONS(181), - [sym_uri_autolink] = ACTIONS(161), - [sym_email_autolink] = ACTIONS(161), - [sym__whitespace_ge_2] = ACTIONS(183), - [aux_sym__whitespace_token1] = ACTIONS(185), - [sym__word_no_digit] = ACTIONS(187), - [sym__digits] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_DASH_DASH_DASH] = ACTIONS(187), - [anon_sym_DOT_DOT_DOT] = ACTIONS(187), - [sym__code_span_start] = ACTIONS(191), - [sym__emphasis_open_star] = ACTIONS(193), - [sym__emphasis_open_underscore] = ACTIONS(195), - [sym__strikeout_open] = ACTIONS(199), - [sym__latex_span_start] = ACTIONS(201), - [sym__single_quote_open] = ACTIONS(203), - [sym__double_quote_open] = ACTIONS(205), - [sym__superscript_open] = ACTIONS(207), - [sym__subscript_open] = ACTIONS(209), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(211), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(213), - [sym__cite_author_in_text] = ACTIONS(215), - [sym__cite_suppress_author] = ACTIONS(217), - [sym__shortcode_open_escaped] = ACTIONS(219), - [sym__shortcode_open] = ACTIONS(221), - [sym__unclosed_span] = ACTIONS(161), - }, - [STATE(155)] = { - [sym_backslash_escape] = STATE(271), - [sym_commonmark_attribute] = STATE(271), - [sym_code_span] = STATE(271), - [sym_latex_span] = STATE(271), - [sym_superscript] = STATE(271), - [sym_subscript] = STATE(271), - [sym_strikeout] = STATE(271), - [sym_quoted_span] = STATE(271), - [sym_inline_note] = STATE(271), - [sym_citation] = STATE(271), - [sym_shortcode_escaped] = STATE(271), - [sym_shortcode] = STATE(271), - [sym_note_reference] = STATE(271), - [sym__link_text] = STATE(424), - [sym__link_text_non_empty] = STATE(425), - [sym_inline_link] = STATE(53), - [sym_image] = STATE(271), - [sym__image_inline_link] = STATE(883), - [sym__image_description] = STATE(1998), - [sym__image_description_non_empty] = STATE(1998), - [sym_hard_line_break] = STATE(271), - [sym__whitespace] = STATE(881), - [sym__word] = STATE(881), - [sym__soft_line_break] = STATE(884), - [sym__inline_base] = STATE(53), - [sym__text_base] = STATE(271), - [sym__inline_element] = STATE(53), - [sym__emphasis_star] = STATE(710), - [sym__strong_emphasis_star] = STATE(53), - [sym__emphasis_underscore] = STATE(710), - [sym__strong_emphasis_underscore] = STATE(53), - [aux_sym_superscript_repeat1] = STATE(53), - [aux_sym__inline_base_repeat1] = STATE(271), - [sym__backslash_escape] = ACTIONS(159), - [sym_entity_reference] = ACTIONS(161), - [sym_numeric_character_reference] = ACTIONS(161), - [anon_sym_LT] = ACTIONS(163), - [anon_sym_GT] = ACTIONS(165), - [anon_sym_BANG] = ACTIONS(167), - [anon_sym_DQUOTE] = ACTIONS(165), - [anon_sym_POUND] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(165), - [anon_sym_PERCENT] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_SQUOTE] = ACTIONS(165), - [anon_sym_STAR] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(165), - [anon_sym_COMMA] = ACTIONS(165), - [anon_sym_DASH] = ACTIONS(163), - [anon_sym_DOT] = ACTIONS(163), - [anon_sym_SLASH] = ACTIONS(165), - [anon_sym_COLON] = ACTIONS(165), - [anon_sym_SEMI] = ACTIONS(165), - [anon_sym_EQ] = ACTIONS(165), - [anon_sym_QMARK] = ACTIONS(165), - [anon_sym_LBRACK] = ACTIONS(169), - [anon_sym_BSLASH] = ACTIONS(171), - [anon_sym_RBRACK] = ACTIONS(2097), - [anon_sym_CARET] = ACTIONS(163), - [anon_sym__] = ACTIONS(165), - [anon_sym_BQUOTE] = ACTIONS(165), - [anon_sym_LBRACE] = ACTIONS(175), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(165), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_RPAREN] = ACTIONS(165), - [sym__newline_token] = ACTIONS(177), - [anon_sym_CARET_LBRACK] = ACTIONS(179), - [anon_sym_LBRACK_CARET] = ACTIONS(181), - [sym_uri_autolink] = ACTIONS(161), - [sym_email_autolink] = ACTIONS(161), - [sym__whitespace_ge_2] = ACTIONS(183), - [aux_sym__whitespace_token1] = ACTIONS(185), - [sym__word_no_digit] = ACTIONS(187), - [sym__digits] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_DASH_DASH_DASH] = ACTIONS(187), - [anon_sym_DOT_DOT_DOT] = ACTIONS(187), - [sym__code_span_start] = ACTIONS(191), - [sym__emphasis_open_star] = ACTIONS(193), - [sym__emphasis_open_underscore] = ACTIONS(195), - [sym__strikeout_open] = ACTIONS(199), - [sym__latex_span_start] = ACTIONS(201), - [sym__single_quote_open] = ACTIONS(203), - [sym__double_quote_open] = ACTIONS(205), - [sym__superscript_open] = ACTIONS(207), - [sym__subscript_open] = ACTIONS(209), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(211), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(213), - [sym__cite_author_in_text] = ACTIONS(215), - [sym__cite_suppress_author] = ACTIONS(217), - [sym__shortcode_open_escaped] = ACTIONS(219), - [sym__shortcode_open] = ACTIONS(221), - [sym__unclosed_span] = ACTIONS(161), + [aux_sym_insert_repeat1] = STATE(52), + [aux_sym__inline_base_repeat1] = STATE(365), + [sym__backslash_escape] = ACTIONS(1341), + [sym_entity_reference] = ACTIONS(1343), + [sym_numeric_character_reference] = ACTIONS(1343), + [anon_sym_LT] = ACTIONS(1345), + [anon_sym_GT] = ACTIONS(1347), + [anon_sym_BANG] = ACTIONS(1349), + [anon_sym_DQUOTE] = ACTIONS(1347), + [anon_sym_POUND] = ACTIONS(1347), + [anon_sym_DOLLAR] = ACTIONS(1347), + [anon_sym_PERCENT] = ACTIONS(1347), + [anon_sym_AMP] = ACTIONS(1345), + [anon_sym_SQUOTE] = ACTIONS(1347), + [anon_sym_STAR] = ACTIONS(1347), + [anon_sym_PLUS] = ACTIONS(1347), + [anon_sym_COMMA] = ACTIONS(1347), + [anon_sym_DASH] = ACTIONS(1345), + [anon_sym_DOT] = ACTIONS(1345), + [anon_sym_SLASH] = ACTIONS(1347), + [anon_sym_COLON] = ACTIONS(1347), + [anon_sym_SEMI] = ACTIONS(1347), + [anon_sym_EQ] = ACTIONS(1347), + [anon_sym_QMARK] = ACTIONS(1347), + [anon_sym_LBRACK] = ACTIONS(1351), + [anon_sym_BSLASH] = ACTIONS(1353), + [anon_sym_CARET] = ACTIONS(1345), + [anon_sym__] = ACTIONS(1347), + [anon_sym_BQUOTE] = ACTIONS(1347), + [anon_sym_LBRACE] = ACTIONS(1355), + [anon_sym_PIPE] = ACTIONS(1347), + [anon_sym_TILDE] = ACTIONS(1347), + [anon_sym_LPAREN] = ACTIONS(1347), + [anon_sym_RPAREN] = ACTIONS(1347), + [sym__newline_token] = ACTIONS(1357), + [aux_sym_insert_token1] = ACTIONS(1359), + [aux_sym_delete_token1] = ACTIONS(1361), + [aux_sym_highlight_token1] = ACTIONS(1363), + [aux_sym_edit_comment_token1] = ACTIONS(1365), + [anon_sym_CARET_LBRACK] = ACTIONS(1367), + [anon_sym_LBRACK_CARET] = ACTIONS(1369), + [sym_uri_autolink] = ACTIONS(1343), + [sym_email_autolink] = ACTIONS(1343), + [sym__whitespace_ge_2] = ACTIONS(1371), + [aux_sym__whitespace_token1] = ACTIONS(1373), + [sym__word_no_digit] = ACTIONS(1375), + [sym__digits] = ACTIONS(1375), + [anon_sym_DASH_DASH] = ACTIONS(1377), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1375), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1375), + [sym__code_span_start] = ACTIONS(1379), + [sym__emphasis_open_star] = ACTIONS(1381), + [sym__emphasis_open_underscore] = ACTIONS(1383), + [sym__strikeout_open] = ACTIONS(1385), + [sym__latex_span_start] = ACTIONS(1387), + [sym__single_quote_open] = ACTIONS(1389), + [sym__double_quote_open] = ACTIONS(1391), + [sym__superscript_open] = ACTIONS(1393), + [sym__superscript_close] = ACTIONS(2521), + [sym__subscript_open] = ACTIONS(1397), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1399), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1401), + [sym__cite_author_in_text] = ACTIONS(1403), + [sym__cite_suppress_author] = ACTIONS(1405), + [sym__shortcode_open_escaped] = ACTIONS(1407), + [sym__shortcode_open] = ACTIONS(1409), + [sym__unclosed_span] = ACTIONS(1343), }, [STATE(156)] = { - [sym_backslash_escape] = STATE(261), - [sym_commonmark_attribute] = STATE(261), - [sym_code_span] = STATE(261), - [sym_latex_span] = STATE(261), - [sym_superscript] = STATE(261), - [sym_subscript] = STATE(261), - [sym_strikeout] = STATE(261), - [sym_quoted_span] = STATE(261), - [sym_inline_note] = STATE(261), - [sym_citation] = STATE(261), - [sym_shortcode_escaped] = STATE(261), - [sym_shortcode] = STATE(261), - [sym_note_reference] = STATE(261), - [sym__link_text] = STATE(322), - [sym__link_text_non_empty] = STATE(323), - [sym_inline_link] = STATE(39), - [sym_image] = STATE(261), - [sym__image_inline_link] = STATE(595), - [sym__image_description] = STATE(1972), - [sym__image_description_non_empty] = STATE(1972), - [sym_hard_line_break] = STATE(261), - [sym__whitespace] = STATE(587), - [sym__word] = STATE(587), - [sym__soft_line_break] = STATE(597), - [sym__inline_base] = STATE(39), - [sym__text_base] = STATE(261), - [sym__inline_element_no_star] = STATE(39), - [aux_sym__inline_no_star] = STATE(39), - [sym__emphasis_star] = STATE(544), - [sym__strong_emphasis_star] = STATE(39), - [sym__emphasis_underscore] = STATE(544), - [sym__strong_emphasis_underscore] = STATE(39), - [aux_sym__inline_base_repeat1] = STATE(261), - [sym__backslash_escape] = ACTIONS(969), - [sym_entity_reference] = ACTIONS(971), - [sym_numeric_character_reference] = ACTIONS(971), - [anon_sym_LT] = ACTIONS(973), - [anon_sym_GT] = ACTIONS(975), - [anon_sym_BANG] = ACTIONS(977), - [anon_sym_DQUOTE] = ACTIONS(975), - [anon_sym_POUND] = ACTIONS(975), - [anon_sym_DOLLAR] = ACTIONS(975), - [anon_sym_PERCENT] = ACTIONS(975), - [anon_sym_AMP] = ACTIONS(973), - [anon_sym_SQUOTE] = ACTIONS(975), - [anon_sym_STAR] = ACTIONS(975), - [anon_sym_PLUS] = ACTIONS(975), - [anon_sym_COMMA] = ACTIONS(975), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_DOT] = ACTIONS(973), - [anon_sym_SLASH] = ACTIONS(975), - [anon_sym_COLON] = ACTIONS(975), - [anon_sym_SEMI] = ACTIONS(975), - [anon_sym_EQ] = ACTIONS(975), - [anon_sym_QMARK] = ACTIONS(975), - [anon_sym_LBRACK] = ACTIONS(979), - [anon_sym_BSLASH] = ACTIONS(981), - [anon_sym_CARET] = ACTIONS(973), - [anon_sym__] = ACTIONS(975), - [anon_sym_BQUOTE] = ACTIONS(975), - [anon_sym_LBRACE] = ACTIONS(983), - [anon_sym_PIPE] = ACTIONS(975), - [anon_sym_TILDE] = ACTIONS(975), - [anon_sym_LPAREN] = ACTIONS(975), - [anon_sym_RPAREN] = ACTIONS(975), - [sym__newline_token] = ACTIONS(985), - [anon_sym_CARET_LBRACK] = ACTIONS(987), - [anon_sym_LBRACK_CARET] = ACTIONS(989), - [sym_uri_autolink] = ACTIONS(971), - [sym_email_autolink] = ACTIONS(971), - [sym__whitespace_ge_2] = ACTIONS(991), - [aux_sym__whitespace_token1] = ACTIONS(993), - [sym__word_no_digit] = ACTIONS(995), - [sym__digits] = ACTIONS(995), - [anon_sym_DASH_DASH] = ACTIONS(997), - [anon_sym_DASH_DASH_DASH] = ACTIONS(995), - [anon_sym_DOT_DOT_DOT] = ACTIONS(995), - [sym__code_span_start] = ACTIONS(999), - [sym__emphasis_open_star] = ACTIONS(1001), - [sym__emphasis_open_underscore] = ACTIONS(1003), - [sym__emphasis_close_star] = ACTIONS(2099), - [sym__strikeout_open] = ACTIONS(1007), - [sym__latex_span_start] = ACTIONS(1009), - [sym__single_quote_open] = ACTIONS(1011), - [sym__double_quote_open] = ACTIONS(1013), - [sym__superscript_open] = ACTIONS(1015), - [sym__subscript_open] = ACTIONS(1017), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1019), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1021), - [sym__cite_author_in_text] = ACTIONS(1023), - [sym__cite_suppress_author] = ACTIONS(1025), - [sym__shortcode_open_escaped] = ACTIONS(1027), - [sym__shortcode_open] = ACTIONS(1029), - [sym__unclosed_span] = ACTIONS(971), + [sym_backslash_escape] = STATE(367), + [sym_commonmark_attribute] = STATE(367), + [sym_code_span] = STATE(367), + [sym_latex_span] = STATE(367), + [sym_insert] = STATE(367), + [sym_delete] = STATE(367), + [sym_highlight] = STATE(367), + [sym_edit_comment] = STATE(367), + [sym_superscript] = STATE(367), + [sym_subscript] = STATE(367), + [sym_strikeout] = STATE(367), + [sym_quoted_span] = STATE(367), + [sym_inline_note] = STATE(367), + [sym_citation] = STATE(367), + [sym_shortcode_escaped] = STATE(367), + [sym_shortcode] = STATE(367), + [sym_note_reference] = STATE(367), + [sym__link_text] = STATE(435), + [sym__link_text_non_empty] = STATE(436), + [sym_inline_link] = STATE(55), + [sym_image] = STATE(367), + [sym__image_inline_link] = STATE(819), + [sym__image_description] = STATE(2328), + [sym__image_description_non_empty] = STATE(2328), + [sym_hard_line_break] = STATE(367), + [sym__whitespace] = STATE(816), + [sym__word] = STATE(816), + [sym__soft_line_break] = STATE(820), + [sym__inline_base] = STATE(55), + [sym__text_base] = STATE(367), + [sym__inline_element] = STATE(55), + [sym__emphasis_star] = STATE(1271), + [sym__strong_emphasis_star] = STATE(55), + [sym__emphasis_underscore] = STATE(1271), + [sym__strong_emphasis_underscore] = STATE(55), + [aux_sym_insert_repeat1] = STATE(55), + [aux_sym__inline_base_repeat1] = STATE(367), + [sym__backslash_escape] = ACTIONS(1413), + [sym_entity_reference] = ACTIONS(1415), + [sym_numeric_character_reference] = ACTIONS(1415), + [anon_sym_LT] = ACTIONS(1417), + [anon_sym_GT] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1419), + [anon_sym_POUND] = ACTIONS(1419), + [anon_sym_DOLLAR] = ACTIONS(1419), + [anon_sym_PERCENT] = ACTIONS(1419), + [anon_sym_AMP] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [anon_sym_STAR] = ACTIONS(1419), + [anon_sym_PLUS] = ACTIONS(1419), + [anon_sym_COMMA] = ACTIONS(1419), + [anon_sym_DASH] = ACTIONS(1417), + [anon_sym_DOT] = ACTIONS(1417), + [anon_sym_SLASH] = ACTIONS(1419), + [anon_sym_COLON] = ACTIONS(1419), + [anon_sym_SEMI] = ACTIONS(1419), + [anon_sym_EQ] = ACTIONS(1419), + [anon_sym_QMARK] = ACTIONS(1419), + [anon_sym_LBRACK] = ACTIONS(1423), + [anon_sym_BSLASH] = ACTIONS(1425), + [anon_sym_CARET] = ACTIONS(1417), + [anon_sym__] = ACTIONS(1419), + [anon_sym_BQUOTE] = ACTIONS(1419), + [anon_sym_LBRACE] = ACTIONS(1427), + [anon_sym_PIPE] = ACTIONS(1419), + [anon_sym_TILDE] = ACTIONS(1419), + [anon_sym_LPAREN] = ACTIONS(1419), + [anon_sym_RPAREN] = ACTIONS(1419), + [sym__newline_token] = ACTIONS(1429), + [aux_sym_insert_token1] = ACTIONS(1431), + [aux_sym_delete_token1] = ACTIONS(1433), + [aux_sym_highlight_token1] = ACTIONS(1435), + [aux_sym_edit_comment_token1] = ACTIONS(1437), + [anon_sym_CARET_LBRACK] = ACTIONS(1439), + [anon_sym_LBRACK_CARET] = ACTIONS(1441), + [sym_uri_autolink] = ACTIONS(1415), + [sym_email_autolink] = ACTIONS(1415), + [sym__whitespace_ge_2] = ACTIONS(1443), + [aux_sym__whitespace_token1] = ACTIONS(1445), + [sym__word_no_digit] = ACTIONS(1447), + [sym__digits] = ACTIONS(1447), + [anon_sym_DASH_DASH] = ACTIONS(1449), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1447), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1447), + [sym__code_span_start] = ACTIONS(1451), + [sym__emphasis_open_star] = ACTIONS(1453), + [sym__emphasis_open_underscore] = ACTIONS(1455), + [sym__strikeout_open] = ACTIONS(1457), + [sym__latex_span_start] = ACTIONS(1459), + [sym__single_quote_open] = ACTIONS(1461), + [sym__double_quote_open] = ACTIONS(1463), + [sym__superscript_open] = ACTIONS(1465), + [sym__subscript_open] = ACTIONS(1467), + [sym__subscript_close] = ACTIONS(2523), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1471), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1473), + [sym__cite_author_in_text] = ACTIONS(1475), + [sym__cite_suppress_author] = ACTIONS(1477), + [sym__shortcode_open_escaped] = ACTIONS(1479), + [sym__shortcode_open] = ACTIONS(1481), + [sym__unclosed_span] = ACTIONS(1415), }, [STATE(157)] = { - [sym_backslash_escape] = STATE(274), - [sym_commonmark_attribute] = STATE(274), - [sym_code_span] = STATE(274), - [sym_latex_span] = STATE(274), - [sym_superscript] = STATE(274), - [sym_subscript] = STATE(274), - [sym_strikeout] = STATE(274), - [sym_quoted_span] = STATE(274), - [sym_inline_note] = STATE(274), - [sym_citation] = STATE(274), - [sym_shortcode_escaped] = STATE(274), - [sym_shortcode] = STATE(274), - [sym_note_reference] = STATE(274), - [sym__link_text] = STATE(351), - [sym__link_text_non_empty] = STATE(352), - [sym_inline_link] = STATE(41), - [sym_image] = STATE(274), - [sym__image_inline_link] = STATE(894), - [sym__image_description] = STATE(2008), - [sym__image_description_non_empty] = STATE(2008), - [sym_hard_line_break] = STATE(274), - [sym__whitespace] = STATE(882), - [sym__word] = STATE(882), - [sym__soft_line_break] = STATE(898), - [sym__inline_base] = STATE(41), - [sym__text_base] = STATE(274), - [sym__inline_element_no_underscore] = STATE(41), - [aux_sym__inline_no_underscore] = STATE(41), - [sym__emphasis_star] = STATE(711), - [sym__strong_emphasis_star] = STATE(41), - [sym__emphasis_underscore] = STATE(711), - [sym__strong_emphasis_underscore] = STATE(41), - [aux_sym__inline_base_repeat1] = STATE(274), - [sym__backslash_escape] = ACTIONS(1123), - [sym_entity_reference] = ACTIONS(1125), - [sym_numeric_character_reference] = ACTIONS(1125), - [anon_sym_LT] = ACTIONS(1127), - [anon_sym_GT] = ACTIONS(1129), - [anon_sym_BANG] = ACTIONS(1131), - [anon_sym_DQUOTE] = ACTIONS(1129), - [anon_sym_POUND] = ACTIONS(1129), - [anon_sym_DOLLAR] = ACTIONS(1129), - [anon_sym_PERCENT] = ACTIONS(1129), - [anon_sym_AMP] = ACTIONS(1127), - [anon_sym_SQUOTE] = ACTIONS(1129), - [anon_sym_STAR] = ACTIONS(1129), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_COMMA] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1127), - [anon_sym_DOT] = ACTIONS(1127), - [anon_sym_SLASH] = ACTIONS(1129), - [anon_sym_COLON] = ACTIONS(1129), - [anon_sym_SEMI] = ACTIONS(1129), - [anon_sym_EQ] = ACTIONS(1129), - [anon_sym_QMARK] = ACTIONS(1129), - [anon_sym_LBRACK] = ACTIONS(1133), - [anon_sym_BSLASH] = ACTIONS(1135), - [anon_sym_CARET] = ACTIONS(1127), - [anon_sym__] = ACTIONS(1129), - [anon_sym_BQUOTE] = ACTIONS(1129), - [anon_sym_LBRACE] = ACTIONS(1137), - [anon_sym_PIPE] = ACTIONS(1129), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1129), - [anon_sym_RPAREN] = ACTIONS(1129), - [sym__newline_token] = ACTIONS(1139), - [anon_sym_CARET_LBRACK] = ACTIONS(1141), - [anon_sym_LBRACK_CARET] = ACTIONS(1143), - [sym_uri_autolink] = ACTIONS(1125), - [sym_email_autolink] = ACTIONS(1125), - [sym__whitespace_ge_2] = ACTIONS(1145), - [aux_sym__whitespace_token1] = ACTIONS(1147), - [sym__word_no_digit] = ACTIONS(1149), - [sym__digits] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1151), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1149), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1149), - [sym__code_span_start] = ACTIONS(1153), - [sym__emphasis_open_star] = ACTIONS(1155), - [sym__emphasis_open_underscore] = ACTIONS(1157), - [sym__emphasis_close_underscore] = ACTIONS(2101), - [sym__strikeout_open] = ACTIONS(1161), - [sym__latex_span_start] = ACTIONS(1163), - [sym__single_quote_open] = ACTIONS(1165), - [sym__double_quote_open] = ACTIONS(1167), - [sym__superscript_open] = ACTIONS(1169), - [sym__subscript_open] = ACTIONS(1171), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1173), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1175), - [sym__cite_author_in_text] = ACTIONS(1177), - [sym__cite_suppress_author] = ACTIONS(1179), - [sym__shortcode_open_escaped] = ACTIONS(1181), - [sym__shortcode_open] = ACTIONS(1183), - [sym__unclosed_span] = ACTIONS(1125), + [sym_backslash_escape] = STATE(372), + [sym_commonmark_attribute] = STATE(372), + [sym_code_span] = STATE(372), + [sym_latex_span] = STATE(372), + [sym_insert] = STATE(372), + [sym_delete] = STATE(372), + [sym_highlight] = STATE(372), + [sym_edit_comment] = STATE(372), + [sym_superscript] = STATE(372), + [sym_subscript] = STATE(372), + [sym_strikeout] = STATE(372), + [sym_quoted_span] = STATE(372), + [sym_inline_note] = STATE(372), + [sym_citation] = STATE(372), + [sym_shortcode_escaped] = STATE(372), + [sym_shortcode] = STATE(372), + [sym_note_reference] = STATE(372), + [sym__link_text] = STATE(454), + [sym__link_text_non_empty] = STATE(455), + [sym_inline_link] = STATE(57), + [sym_image] = STATE(372), + [sym__image_inline_link] = STATE(1025), + [sym__image_description] = STATE(2356), + [sym__image_description_non_empty] = STATE(2356), + [sym_hard_line_break] = STATE(372), + [sym__whitespace] = STATE(1022), + [sym__word] = STATE(1022), + [sym__soft_line_break] = STATE(1026), + [sym__inline_base] = STATE(57), + [sym__text_base] = STATE(372), + [sym__inline_element] = STATE(57), + [sym__emphasis_star] = STATE(714), + [sym__strong_emphasis_star] = STATE(57), + [sym__emphasis_underscore] = STATE(714), + [sym__strong_emphasis_underscore] = STATE(57), + [aux_sym_insert_repeat1] = STATE(57), + [aux_sym__inline_base_repeat1] = STATE(372), + [sym__backslash_escape] = ACTIONS(707), + [sym_entity_reference] = ACTIONS(709), + [sym_numeric_character_reference] = ACTIONS(709), + [anon_sym_LT] = ACTIONS(711), + [anon_sym_GT] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(715), + [anon_sym_DQUOTE] = ACTIONS(713), + [anon_sym_POUND] = ACTIONS(713), + [anon_sym_DOLLAR] = ACTIONS(713), + [anon_sym_PERCENT] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(711), + [anon_sym_SQUOTE] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_COMMA] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_DOT] = ACTIONS(711), + [anon_sym_SLASH] = ACTIONS(713), + [anon_sym_COLON] = ACTIONS(713), + [anon_sym_SEMI] = ACTIONS(713), + [anon_sym_EQ] = ACTIONS(713), + [anon_sym_QMARK] = ACTIONS(713), + [anon_sym_LBRACK] = ACTIONS(717), + [anon_sym_BSLASH] = ACTIONS(719), + [anon_sym_CARET] = ACTIONS(711), + [anon_sym__] = ACTIONS(713), + [anon_sym_BQUOTE] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(721), + [anon_sym_PIPE] = ACTIONS(713), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_LPAREN] = ACTIONS(713), + [anon_sym_RPAREN] = ACTIONS(713), + [sym__newline_token] = ACTIONS(723), + [aux_sym_insert_token1] = ACTIONS(725), + [aux_sym_insert_token2] = ACTIONS(2525), + [aux_sym_delete_token1] = ACTIONS(729), + [aux_sym_highlight_token1] = ACTIONS(731), + [aux_sym_edit_comment_token1] = ACTIONS(733), + [anon_sym_CARET_LBRACK] = ACTIONS(735), + [anon_sym_LBRACK_CARET] = ACTIONS(737), + [sym_uri_autolink] = ACTIONS(709), + [sym_email_autolink] = ACTIONS(709), + [sym__whitespace_ge_2] = ACTIONS(739), + [aux_sym__whitespace_token1] = ACTIONS(741), + [sym__word_no_digit] = ACTIONS(743), + [sym__digits] = ACTIONS(743), + [anon_sym_DASH_DASH] = ACTIONS(745), + [anon_sym_DASH_DASH_DASH] = ACTIONS(743), + [anon_sym_DOT_DOT_DOT] = ACTIONS(743), + [sym__code_span_start] = ACTIONS(747), + [sym__emphasis_open_star] = ACTIONS(749), + [sym__emphasis_open_underscore] = ACTIONS(751), + [sym__strikeout_open] = ACTIONS(753), + [sym__latex_span_start] = ACTIONS(755), + [sym__single_quote_open] = ACTIONS(757), + [sym__double_quote_open] = ACTIONS(759), + [sym__superscript_open] = ACTIONS(761), + [sym__subscript_open] = ACTIONS(763), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(765), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(767), + [sym__cite_author_in_text] = ACTIONS(769), + [sym__cite_suppress_author] = ACTIONS(771), + [sym__shortcode_open_escaped] = ACTIONS(773), + [sym__shortcode_open] = ACTIONS(775), + [sym__unclosed_span] = ACTIONS(709), }, [STATE(158)] = { - [sym_backslash_escape] = STATE(271), - [sym_commonmark_attribute] = STATE(271), - [sym_code_span] = STATE(271), - [sym_latex_span] = STATE(271), - [sym_superscript] = STATE(271), - [sym_subscript] = STATE(271), - [sym_strikeout] = STATE(271), - [sym_quoted_span] = STATE(271), - [sym_inline_note] = STATE(271), - [sym_citation] = STATE(271), - [sym_shortcode_escaped] = STATE(271), - [sym_shortcode] = STATE(271), - [sym_note_reference] = STATE(271), - [sym__link_text] = STATE(424), - [sym__link_text_non_empty] = STATE(425), - [sym_inline_link] = STATE(53), - [sym_image] = STATE(271), - [sym__image_inline_link] = STATE(883), - [sym__image_description] = STATE(1998), - [sym__image_description_non_empty] = STATE(1998), - [sym_hard_line_break] = STATE(271), - [sym__whitespace] = STATE(881), - [sym__word] = STATE(881), - [sym__soft_line_break] = STATE(884), - [sym__inline_base] = STATE(53), - [sym__text_base] = STATE(271), - [sym__inline_element] = STATE(53), - [sym__emphasis_star] = STATE(710), - [sym__strong_emphasis_star] = STATE(53), - [sym__emphasis_underscore] = STATE(710), - [sym__strong_emphasis_underscore] = STATE(53), - [aux_sym_superscript_repeat1] = STATE(53), - [aux_sym__inline_base_repeat1] = STATE(271), - [sym__backslash_escape] = ACTIONS(159), - [sym_entity_reference] = ACTIONS(161), - [sym_numeric_character_reference] = ACTIONS(161), - [anon_sym_LT] = ACTIONS(163), - [anon_sym_GT] = ACTIONS(165), - [anon_sym_BANG] = ACTIONS(167), - [anon_sym_DQUOTE] = ACTIONS(165), - [anon_sym_POUND] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(165), - [anon_sym_PERCENT] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_SQUOTE] = ACTIONS(165), - [anon_sym_STAR] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(165), - [anon_sym_COMMA] = ACTIONS(165), - [anon_sym_DASH] = ACTIONS(163), - [anon_sym_DOT] = ACTIONS(163), - [anon_sym_SLASH] = ACTIONS(165), - [anon_sym_COLON] = ACTIONS(165), - [anon_sym_SEMI] = ACTIONS(165), - [anon_sym_EQ] = ACTIONS(165), - [anon_sym_QMARK] = ACTIONS(165), - [anon_sym_LBRACK] = ACTIONS(169), - [anon_sym_BSLASH] = ACTIONS(171), - [anon_sym_RBRACK] = ACTIONS(2103), - [anon_sym_CARET] = ACTIONS(163), - [anon_sym__] = ACTIONS(165), - [anon_sym_BQUOTE] = ACTIONS(165), - [anon_sym_LBRACE] = ACTIONS(175), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(165), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_RPAREN] = ACTIONS(165), - [sym__newline_token] = ACTIONS(177), - [anon_sym_CARET_LBRACK] = ACTIONS(179), - [anon_sym_LBRACK_CARET] = ACTIONS(181), - [sym_uri_autolink] = ACTIONS(161), - [sym_email_autolink] = ACTIONS(161), - [sym__whitespace_ge_2] = ACTIONS(183), - [aux_sym__whitespace_token1] = ACTIONS(185), - [sym__word_no_digit] = ACTIONS(187), - [sym__digits] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_DASH_DASH_DASH] = ACTIONS(187), - [anon_sym_DOT_DOT_DOT] = ACTIONS(187), - [sym__code_span_start] = ACTIONS(191), - [sym__emphasis_open_star] = ACTIONS(193), - [sym__emphasis_open_underscore] = ACTIONS(195), - [sym__strikeout_open] = ACTIONS(199), - [sym__latex_span_start] = ACTIONS(201), - [sym__single_quote_open] = ACTIONS(203), - [sym__double_quote_open] = ACTIONS(205), - [sym__superscript_open] = ACTIONS(207), - [sym__subscript_open] = ACTIONS(209), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(211), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(213), - [sym__cite_author_in_text] = ACTIONS(215), - [sym__cite_suppress_author] = ACTIONS(217), - [sym__shortcode_open_escaped] = ACTIONS(219), - [sym__shortcode_open] = ACTIONS(221), - [sym__unclosed_span] = ACTIONS(161), + [sym_backslash_escape] = STATE(372), + [sym_commonmark_attribute] = STATE(372), + [sym_code_span] = STATE(372), + [sym_latex_span] = STATE(372), + [sym_insert] = STATE(372), + [sym_delete] = STATE(372), + [sym_highlight] = STATE(372), + [sym_edit_comment] = STATE(372), + [sym_superscript] = STATE(372), + [sym_subscript] = STATE(372), + [sym_strikeout] = STATE(372), + [sym_quoted_span] = STATE(372), + [sym_inline_note] = STATE(372), + [sym_citation] = STATE(372), + [sym_shortcode_escaped] = STATE(372), + [sym_shortcode] = STATE(372), + [sym_note_reference] = STATE(372), + [sym__link_text] = STATE(454), + [sym__link_text_non_empty] = STATE(455), + [sym_inline_link] = STATE(57), + [sym_image] = STATE(372), + [sym__image_inline_link] = STATE(1025), + [sym__image_description] = STATE(2356), + [sym__image_description_non_empty] = STATE(2356), + [sym_hard_line_break] = STATE(372), + [sym__whitespace] = STATE(1022), + [sym__word] = STATE(1022), + [sym__soft_line_break] = STATE(1026), + [sym__inline_base] = STATE(57), + [sym__text_base] = STATE(372), + [sym__inline_element] = STATE(57), + [sym__emphasis_star] = STATE(714), + [sym__strong_emphasis_star] = STATE(57), + [sym__emphasis_underscore] = STATE(714), + [sym__strong_emphasis_underscore] = STATE(57), + [aux_sym_insert_repeat1] = STATE(57), + [aux_sym__inline_base_repeat1] = STATE(372), + [sym__backslash_escape] = ACTIONS(707), + [sym_entity_reference] = ACTIONS(709), + [sym_numeric_character_reference] = ACTIONS(709), + [anon_sym_LT] = ACTIONS(711), + [anon_sym_GT] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(715), + [anon_sym_DQUOTE] = ACTIONS(713), + [anon_sym_POUND] = ACTIONS(713), + [anon_sym_DOLLAR] = ACTIONS(713), + [anon_sym_PERCENT] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(711), + [anon_sym_SQUOTE] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_COMMA] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_DOT] = ACTIONS(711), + [anon_sym_SLASH] = ACTIONS(713), + [anon_sym_COLON] = ACTIONS(713), + [anon_sym_SEMI] = ACTIONS(713), + [anon_sym_EQ] = ACTIONS(713), + [anon_sym_QMARK] = ACTIONS(713), + [anon_sym_LBRACK] = ACTIONS(717), + [anon_sym_BSLASH] = ACTIONS(719), + [anon_sym_CARET] = ACTIONS(711), + [anon_sym__] = ACTIONS(713), + [anon_sym_BQUOTE] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(721), + [anon_sym_PIPE] = ACTIONS(713), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_LPAREN] = ACTIONS(713), + [anon_sym_RPAREN] = ACTIONS(713), + [sym__newline_token] = ACTIONS(723), + [aux_sym_insert_token1] = ACTIONS(725), + [aux_sym_insert_token2] = ACTIONS(2527), + [aux_sym_delete_token1] = ACTIONS(729), + [aux_sym_highlight_token1] = ACTIONS(731), + [aux_sym_edit_comment_token1] = ACTIONS(733), + [anon_sym_CARET_LBRACK] = ACTIONS(735), + [anon_sym_LBRACK_CARET] = ACTIONS(737), + [sym_uri_autolink] = ACTIONS(709), + [sym_email_autolink] = ACTIONS(709), + [sym__whitespace_ge_2] = ACTIONS(739), + [aux_sym__whitespace_token1] = ACTIONS(741), + [sym__word_no_digit] = ACTIONS(743), + [sym__digits] = ACTIONS(743), + [anon_sym_DASH_DASH] = ACTIONS(745), + [anon_sym_DASH_DASH_DASH] = ACTIONS(743), + [anon_sym_DOT_DOT_DOT] = ACTIONS(743), + [sym__code_span_start] = ACTIONS(747), + [sym__emphasis_open_star] = ACTIONS(749), + [sym__emphasis_open_underscore] = ACTIONS(751), + [sym__strikeout_open] = ACTIONS(753), + [sym__latex_span_start] = ACTIONS(755), + [sym__single_quote_open] = ACTIONS(757), + [sym__double_quote_open] = ACTIONS(759), + [sym__superscript_open] = ACTIONS(761), + [sym__subscript_open] = ACTIONS(763), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(765), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(767), + [sym__cite_author_in_text] = ACTIONS(769), + [sym__cite_suppress_author] = ACTIONS(771), + [sym__shortcode_open_escaped] = ACTIONS(773), + [sym__shortcode_open] = ACTIONS(775), + [sym__unclosed_span] = ACTIONS(709), }, [STATE(159)] = { - [sym_backslash_escape] = STATE(266), - [sym_commonmark_attribute] = STATE(266), - [sym_code_span] = STATE(266), - [sym_latex_span] = STATE(266), - [sym_superscript] = STATE(266), - [sym_subscript] = STATE(266), - [sym_strikeout] = STATE(266), - [sym_quoted_span] = STATE(266), - [sym_inline_note] = STATE(266), - [sym_citation] = STATE(266), - [sym_shortcode_escaped] = STATE(266), - [sym_shortcode] = STATE(266), - [sym_note_reference] = STATE(266), - [sym__link_text] = STATE(375), - [sym__link_text_non_empty] = STATE(376), - [sym_inline_link] = STATE(167), - [sym_image] = STATE(266), - [sym__image_inline_link] = STATE(1042), - [sym__image_description] = STATE(2044), - [sym__image_description_non_empty] = STATE(2044), - [sym_hard_line_break] = STATE(266), - [sym__whitespace] = STATE(1040), - [sym__word] = STATE(1040), - [sym__soft_line_break] = STATE(1043), - [sym__inline_base] = STATE(167), - [sym__text_base] = STATE(266), - [sym__inline_element] = STATE(167), - [sym__emphasis_star] = STATE(602), - [sym__strong_emphasis_star] = STATE(167), - [sym__emphasis_underscore] = STATE(602), - [sym__strong_emphasis_underscore] = STATE(167), - [aux_sym_superscript_repeat1] = STATE(167), - [aux_sym__inline_base_repeat1] = STATE(266), - [sym__backslash_escape] = ACTIONS(559), - [sym_entity_reference] = ACTIONS(561), - [sym_numeric_character_reference] = ACTIONS(561), - [anon_sym_LT] = ACTIONS(563), - [anon_sym_GT] = ACTIONS(565), - [anon_sym_BANG] = ACTIONS(567), - [anon_sym_DQUOTE] = ACTIONS(565), - [anon_sym_POUND] = ACTIONS(565), - [anon_sym_DOLLAR] = ACTIONS(565), - [anon_sym_PERCENT] = ACTIONS(565), - [anon_sym_AMP] = ACTIONS(563), - [anon_sym_SQUOTE] = ACTIONS(565), - [anon_sym_STAR] = ACTIONS(565), - [anon_sym_PLUS] = ACTIONS(565), - [anon_sym_COMMA] = ACTIONS(565), - [anon_sym_DASH] = ACTIONS(563), - [anon_sym_DOT] = ACTIONS(563), - [anon_sym_SLASH] = ACTIONS(565), - [anon_sym_COLON] = ACTIONS(565), - [anon_sym_SEMI] = ACTIONS(565), - [anon_sym_EQ] = ACTIONS(565), - [anon_sym_QMARK] = ACTIONS(565), - [anon_sym_LBRACK] = ACTIONS(569), - [anon_sym_BSLASH] = ACTIONS(571), - [anon_sym_CARET] = ACTIONS(563), - [anon_sym__] = ACTIONS(565), - [anon_sym_BQUOTE] = ACTIONS(565), - [anon_sym_LBRACE] = ACTIONS(573), - [anon_sym_PIPE] = ACTIONS(565), - [anon_sym_TILDE] = ACTIONS(565), - [anon_sym_LPAREN] = ACTIONS(565), - [anon_sym_RPAREN] = ACTIONS(565), - [sym__newline_token] = ACTIONS(575), - [anon_sym_CARET_LBRACK] = ACTIONS(577), - [anon_sym_LBRACK_CARET] = ACTIONS(579), - [sym_uri_autolink] = ACTIONS(561), - [sym_email_autolink] = ACTIONS(561), - [sym__whitespace_ge_2] = ACTIONS(581), - [aux_sym__whitespace_token1] = ACTIONS(583), - [sym__word_no_digit] = ACTIONS(585), - [sym__digits] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(587), - [anon_sym_DASH_DASH_DASH] = ACTIONS(585), - [anon_sym_DOT_DOT_DOT] = ACTIONS(585), - [sym__code_span_start] = ACTIONS(589), - [sym__emphasis_open_star] = ACTIONS(591), - [sym__emphasis_open_underscore] = ACTIONS(593), - [sym__strikeout_open] = ACTIONS(595), - [sym__strikeout_close] = ACTIONS(2105), - [sym__latex_span_start] = ACTIONS(599), - [sym__single_quote_open] = ACTIONS(601), - [sym__double_quote_open] = ACTIONS(603), - [sym__superscript_open] = ACTIONS(605), - [sym__subscript_open] = ACTIONS(607), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(609), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(611), - [sym__cite_author_in_text] = ACTIONS(613), - [sym__cite_suppress_author] = ACTIONS(615), - [sym__shortcode_open_escaped] = ACTIONS(617), - [sym__shortcode_open] = ACTIONS(619), - [sym__unclosed_span] = ACTIONS(561), + [sym_backslash_escape] = STATE(372), + [sym_commonmark_attribute] = STATE(372), + [sym_code_span] = STATE(372), + [sym_latex_span] = STATE(372), + [sym_insert] = STATE(372), + [sym_delete] = STATE(372), + [sym_highlight] = STATE(372), + [sym_edit_comment] = STATE(372), + [sym_superscript] = STATE(372), + [sym_subscript] = STATE(372), + [sym_strikeout] = STATE(372), + [sym_quoted_span] = STATE(372), + [sym_inline_note] = STATE(372), + [sym_citation] = STATE(372), + [sym_shortcode_escaped] = STATE(372), + [sym_shortcode] = STATE(372), + [sym_note_reference] = STATE(372), + [sym__link_text] = STATE(454), + [sym__link_text_non_empty] = STATE(455), + [sym_inline_link] = STATE(57), + [sym_image] = STATE(372), + [sym__image_inline_link] = STATE(1025), + [sym__image_description] = STATE(2356), + [sym__image_description_non_empty] = STATE(2356), + [sym_hard_line_break] = STATE(372), + [sym__whitespace] = STATE(1022), + [sym__word] = STATE(1022), + [sym__soft_line_break] = STATE(1026), + [sym__inline_base] = STATE(57), + [sym__text_base] = STATE(372), + [sym__inline_element] = STATE(57), + [sym__emphasis_star] = STATE(714), + [sym__strong_emphasis_star] = STATE(57), + [sym__emphasis_underscore] = STATE(714), + [sym__strong_emphasis_underscore] = STATE(57), + [aux_sym_insert_repeat1] = STATE(57), + [aux_sym__inline_base_repeat1] = STATE(372), + [sym__backslash_escape] = ACTIONS(707), + [sym_entity_reference] = ACTIONS(709), + [sym_numeric_character_reference] = ACTIONS(709), + [anon_sym_LT] = ACTIONS(711), + [anon_sym_GT] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(715), + [anon_sym_DQUOTE] = ACTIONS(713), + [anon_sym_POUND] = ACTIONS(713), + [anon_sym_DOLLAR] = ACTIONS(713), + [anon_sym_PERCENT] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(711), + [anon_sym_SQUOTE] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_COMMA] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_DOT] = ACTIONS(711), + [anon_sym_SLASH] = ACTIONS(713), + [anon_sym_COLON] = ACTIONS(713), + [anon_sym_SEMI] = ACTIONS(713), + [anon_sym_EQ] = ACTIONS(713), + [anon_sym_QMARK] = ACTIONS(713), + [anon_sym_LBRACK] = ACTIONS(717), + [anon_sym_BSLASH] = ACTIONS(719), + [anon_sym_CARET] = ACTIONS(711), + [anon_sym__] = ACTIONS(713), + [anon_sym_BQUOTE] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(721), + [anon_sym_PIPE] = ACTIONS(713), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_LPAREN] = ACTIONS(713), + [anon_sym_RPAREN] = ACTIONS(713), + [sym__newline_token] = ACTIONS(723), + [aux_sym_insert_token1] = ACTIONS(725), + [aux_sym_insert_token2] = ACTIONS(2529), + [aux_sym_delete_token1] = ACTIONS(729), + [aux_sym_highlight_token1] = ACTIONS(731), + [aux_sym_edit_comment_token1] = ACTIONS(733), + [anon_sym_CARET_LBRACK] = ACTIONS(735), + [anon_sym_LBRACK_CARET] = ACTIONS(737), + [sym_uri_autolink] = ACTIONS(709), + [sym_email_autolink] = ACTIONS(709), + [sym__whitespace_ge_2] = ACTIONS(739), + [aux_sym__whitespace_token1] = ACTIONS(741), + [sym__word_no_digit] = ACTIONS(743), + [sym__digits] = ACTIONS(743), + [anon_sym_DASH_DASH] = ACTIONS(745), + [anon_sym_DASH_DASH_DASH] = ACTIONS(743), + [anon_sym_DOT_DOT_DOT] = ACTIONS(743), + [sym__code_span_start] = ACTIONS(747), + [sym__emphasis_open_star] = ACTIONS(749), + [sym__emphasis_open_underscore] = ACTIONS(751), + [sym__strikeout_open] = ACTIONS(753), + [sym__latex_span_start] = ACTIONS(755), + [sym__single_quote_open] = ACTIONS(757), + [sym__double_quote_open] = ACTIONS(759), + [sym__superscript_open] = ACTIONS(761), + [sym__subscript_open] = ACTIONS(763), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(765), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(767), + [sym__cite_author_in_text] = ACTIONS(769), + [sym__cite_suppress_author] = ACTIONS(771), + [sym__shortcode_open_escaped] = ACTIONS(773), + [sym__shortcode_open] = ACTIONS(775), + [sym__unclosed_span] = ACTIONS(709), }, [STATE(160)] = { - [sym_backslash_escape] = STATE(272), - [sym_commonmark_attribute] = STATE(272), - [sym_code_span] = STATE(272), - [sym_latex_span] = STATE(272), - [sym_superscript] = STATE(272), - [sym_subscript] = STATE(272), - [sym_strikeout] = STATE(272), - [sym_quoted_span] = STATE(272), - [sym_inline_note] = STATE(272), - [sym_citation] = STATE(272), - [sym_shortcode_escaped] = STATE(272), - [sym_shortcode] = STATE(272), - [sym_note_reference] = STATE(272), - [sym__link_text] = STATE(401), - [sym__link_text_non_empty] = STATE(402), - [sym_inline_link] = STATE(168), - [sym_image] = STATE(272), - [sym__image_inline_link] = STATE(1136), - [sym__image_description] = STATE(1942), - [sym__image_description_non_empty] = STATE(1942), - [sym_hard_line_break] = STATE(272), - [sym__whitespace] = STATE(1133), - [sym__word] = STATE(1133), - [sym__soft_line_break] = STATE(1137), - [sym__inline_base] = STATE(168), - [sym__text_base] = STATE(272), - [sym__inline_element] = STATE(168), - [sym__emphasis_star] = STATE(902), - [sym__strong_emphasis_star] = STATE(168), - [sym__emphasis_underscore] = STATE(902), - [sym__strong_emphasis_underscore] = STATE(168), - [aux_sym_superscript_repeat1] = STATE(168), - [aux_sym__inline_base_repeat1] = STATE(272), - [sym__backslash_escape] = ACTIONS(625), - [sym_entity_reference] = ACTIONS(627), - [sym_numeric_character_reference] = ACTIONS(627), - [anon_sym_LT] = ACTIONS(629), - [anon_sym_GT] = ACTIONS(631), - [anon_sym_BANG] = ACTIONS(633), - [anon_sym_DQUOTE] = ACTIONS(631), - [anon_sym_POUND] = ACTIONS(631), - [anon_sym_DOLLAR] = ACTIONS(631), - [anon_sym_PERCENT] = ACTIONS(631), - [anon_sym_AMP] = ACTIONS(629), - [anon_sym_SQUOTE] = ACTIONS(631), - [anon_sym_STAR] = ACTIONS(631), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_COMMA] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(629), - [anon_sym_DOT] = ACTIONS(629), - [anon_sym_SLASH] = ACTIONS(631), - [anon_sym_COLON] = ACTIONS(631), - [anon_sym_SEMI] = ACTIONS(631), - [anon_sym_EQ] = ACTIONS(631), - [anon_sym_QMARK] = ACTIONS(631), - [anon_sym_LBRACK] = ACTIONS(635), - [anon_sym_BSLASH] = ACTIONS(637), - [anon_sym_CARET] = ACTIONS(629), - [anon_sym__] = ACTIONS(631), - [anon_sym_BQUOTE] = ACTIONS(631), - [anon_sym_LBRACE] = ACTIONS(639), - [anon_sym_PIPE] = ACTIONS(631), - [anon_sym_TILDE] = ACTIONS(631), - [anon_sym_LPAREN] = ACTIONS(631), - [anon_sym_RPAREN] = ACTIONS(631), - [sym__newline_token] = ACTIONS(641), - [anon_sym_CARET_LBRACK] = ACTIONS(643), - [anon_sym_LBRACK_CARET] = ACTIONS(645), - [sym_uri_autolink] = ACTIONS(627), - [sym_email_autolink] = ACTIONS(627), - [sym__whitespace_ge_2] = ACTIONS(647), - [aux_sym__whitespace_token1] = ACTIONS(649), - [sym__word_no_digit] = ACTIONS(651), - [sym__digits] = ACTIONS(651), - [anon_sym_DASH_DASH] = ACTIONS(653), - [anon_sym_DASH_DASH_DASH] = ACTIONS(651), - [anon_sym_DOT_DOT_DOT] = ACTIONS(651), - [sym__code_span_start] = ACTIONS(655), - [sym__emphasis_open_star] = ACTIONS(657), - [sym__emphasis_open_underscore] = ACTIONS(659), - [sym__strikeout_open] = ACTIONS(661), - [sym__latex_span_start] = ACTIONS(663), - [sym__single_quote_open] = ACTIONS(665), - [sym__single_quote_close] = ACTIONS(2107), - [sym__double_quote_open] = ACTIONS(669), - [sym__superscript_open] = ACTIONS(671), - [sym__subscript_open] = ACTIONS(673), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(675), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(677), - [sym__cite_author_in_text] = ACTIONS(679), - [sym__cite_suppress_author] = ACTIONS(681), - [sym__shortcode_open_escaped] = ACTIONS(683), - [sym__shortcode_open] = ACTIONS(685), - [sym__unclosed_span] = ACTIONS(627), + [sym_backslash_escape] = STATE(372), + [sym_commonmark_attribute] = STATE(372), + [sym_code_span] = STATE(372), + [sym_latex_span] = STATE(372), + [sym_insert] = STATE(372), + [sym_delete] = STATE(372), + [sym_highlight] = STATE(372), + [sym_edit_comment] = STATE(372), + [sym_superscript] = STATE(372), + [sym_subscript] = STATE(372), + [sym_strikeout] = STATE(372), + [sym_quoted_span] = STATE(372), + [sym_inline_note] = STATE(372), + [sym_citation] = STATE(372), + [sym_shortcode_escaped] = STATE(372), + [sym_shortcode] = STATE(372), + [sym_note_reference] = STATE(372), + [sym__link_text] = STATE(454), + [sym__link_text_non_empty] = STATE(455), + [sym_inline_link] = STATE(57), + [sym_image] = STATE(372), + [sym__image_inline_link] = STATE(1025), + [sym__image_description] = STATE(2356), + [sym__image_description_non_empty] = STATE(2356), + [sym_hard_line_break] = STATE(372), + [sym__whitespace] = STATE(1022), + [sym__word] = STATE(1022), + [sym__soft_line_break] = STATE(1026), + [sym__inline_base] = STATE(57), + [sym__text_base] = STATE(372), + [sym__inline_element] = STATE(57), + [sym__emphasis_star] = STATE(714), + [sym__strong_emphasis_star] = STATE(57), + [sym__emphasis_underscore] = STATE(714), + [sym__strong_emphasis_underscore] = STATE(57), + [aux_sym_insert_repeat1] = STATE(57), + [aux_sym__inline_base_repeat1] = STATE(372), + [sym__backslash_escape] = ACTIONS(707), + [sym_entity_reference] = ACTIONS(709), + [sym_numeric_character_reference] = ACTIONS(709), + [anon_sym_LT] = ACTIONS(711), + [anon_sym_GT] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(715), + [anon_sym_DQUOTE] = ACTIONS(713), + [anon_sym_POUND] = ACTIONS(713), + [anon_sym_DOLLAR] = ACTIONS(713), + [anon_sym_PERCENT] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(711), + [anon_sym_SQUOTE] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_COMMA] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_DOT] = ACTIONS(711), + [anon_sym_SLASH] = ACTIONS(713), + [anon_sym_COLON] = ACTIONS(713), + [anon_sym_SEMI] = ACTIONS(713), + [anon_sym_EQ] = ACTIONS(713), + [anon_sym_QMARK] = ACTIONS(713), + [anon_sym_LBRACK] = ACTIONS(717), + [anon_sym_BSLASH] = ACTIONS(719), + [anon_sym_CARET] = ACTIONS(711), + [anon_sym__] = ACTIONS(713), + [anon_sym_BQUOTE] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(721), + [anon_sym_PIPE] = ACTIONS(713), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_LPAREN] = ACTIONS(713), + [anon_sym_RPAREN] = ACTIONS(713), + [sym__newline_token] = ACTIONS(723), + [aux_sym_insert_token1] = ACTIONS(725), + [aux_sym_insert_token2] = ACTIONS(2531), + [aux_sym_delete_token1] = ACTIONS(729), + [aux_sym_highlight_token1] = ACTIONS(731), + [aux_sym_edit_comment_token1] = ACTIONS(733), + [anon_sym_CARET_LBRACK] = ACTIONS(735), + [anon_sym_LBRACK_CARET] = ACTIONS(737), + [sym_uri_autolink] = ACTIONS(709), + [sym_email_autolink] = ACTIONS(709), + [sym__whitespace_ge_2] = ACTIONS(739), + [aux_sym__whitespace_token1] = ACTIONS(741), + [sym__word_no_digit] = ACTIONS(743), + [sym__digits] = ACTIONS(743), + [anon_sym_DASH_DASH] = ACTIONS(745), + [anon_sym_DASH_DASH_DASH] = ACTIONS(743), + [anon_sym_DOT_DOT_DOT] = ACTIONS(743), + [sym__code_span_start] = ACTIONS(747), + [sym__emphasis_open_star] = ACTIONS(749), + [sym__emphasis_open_underscore] = ACTIONS(751), + [sym__strikeout_open] = ACTIONS(753), + [sym__latex_span_start] = ACTIONS(755), + [sym__single_quote_open] = ACTIONS(757), + [sym__double_quote_open] = ACTIONS(759), + [sym__superscript_open] = ACTIONS(761), + [sym__subscript_open] = ACTIONS(763), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(765), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(767), + [sym__cite_author_in_text] = ACTIONS(769), + [sym__cite_suppress_author] = ACTIONS(771), + [sym__shortcode_open_escaped] = ACTIONS(773), + [sym__shortcode_open] = ACTIONS(775), + [sym__unclosed_span] = ACTIONS(709), }, [STATE(161)] = { - [sym_backslash_escape] = STATE(277), - [sym_commonmark_attribute] = STATE(277), - [sym_code_span] = STATE(277), - [sym_latex_span] = STATE(277), - [sym_superscript] = STATE(277), - [sym_subscript] = STATE(277), - [sym_strikeout] = STATE(277), - [sym_quoted_span] = STATE(277), - [sym_inline_note] = STATE(277), - [sym_citation] = STATE(277), - [sym_shortcode_escaped] = STATE(277), - [sym_shortcode] = STATE(277), - [sym_note_reference] = STATE(277), - [sym__link_text] = STATE(427), - [sym__link_text_non_empty] = STATE(428), - [sym_inline_link] = STATE(169), - [sym_image] = STATE(277), - [sym__image_inline_link] = STATE(613), - [sym__image_description] = STATE(1930), - [sym__image_description_non_empty] = STATE(1930), - [sym_hard_line_break] = STATE(277), - [sym__whitespace] = STATE(610), - [sym__word] = STATE(610), - [sym__soft_line_break] = STATE(614), - [sym__inline_base] = STATE(169), - [sym__text_base] = STATE(277), - [sym__inline_element] = STATE(169), - [sym__emphasis_star] = STATE(1044), - [sym__strong_emphasis_star] = STATE(169), - [sym__emphasis_underscore] = STATE(1044), - [sym__strong_emphasis_underscore] = STATE(169), - [aux_sym_superscript_repeat1] = STATE(169), - [aux_sym__inline_base_repeat1] = STATE(277), - [sym__backslash_escape] = ACTIONS(687), - [sym_entity_reference] = ACTIONS(689), - [sym_numeric_character_reference] = ACTIONS(689), - [anon_sym_LT] = ACTIONS(691), - [anon_sym_GT] = ACTIONS(693), - [anon_sym_BANG] = ACTIONS(695), - [anon_sym_DQUOTE] = ACTIONS(693), - [anon_sym_POUND] = ACTIONS(693), - [anon_sym_DOLLAR] = ACTIONS(693), - [anon_sym_PERCENT] = ACTIONS(693), - [anon_sym_AMP] = ACTIONS(691), - [anon_sym_SQUOTE] = ACTIONS(693), - [anon_sym_STAR] = ACTIONS(693), - [anon_sym_PLUS] = ACTIONS(693), - [anon_sym_COMMA] = ACTIONS(693), - [anon_sym_DASH] = ACTIONS(691), - [anon_sym_DOT] = ACTIONS(691), - [anon_sym_SLASH] = ACTIONS(693), - [anon_sym_COLON] = ACTIONS(693), - [anon_sym_SEMI] = ACTIONS(693), - [anon_sym_EQ] = ACTIONS(693), - [anon_sym_QMARK] = ACTIONS(693), - [anon_sym_LBRACK] = ACTIONS(697), - [anon_sym_BSLASH] = ACTIONS(699), - [anon_sym_CARET] = ACTIONS(691), - [anon_sym__] = ACTIONS(693), - [anon_sym_BQUOTE] = ACTIONS(693), - [anon_sym_LBRACE] = ACTIONS(701), - [anon_sym_PIPE] = ACTIONS(693), - [anon_sym_TILDE] = ACTIONS(693), - [anon_sym_LPAREN] = ACTIONS(693), - [anon_sym_RPAREN] = ACTIONS(693), - [sym__newline_token] = ACTIONS(703), - [anon_sym_CARET_LBRACK] = ACTIONS(705), - [anon_sym_LBRACK_CARET] = ACTIONS(707), - [sym_uri_autolink] = ACTIONS(689), - [sym_email_autolink] = ACTIONS(689), - [sym__whitespace_ge_2] = ACTIONS(709), - [aux_sym__whitespace_token1] = ACTIONS(711), - [sym__word_no_digit] = ACTIONS(713), - [sym__digits] = ACTIONS(713), - [anon_sym_DASH_DASH] = ACTIONS(715), - [anon_sym_DASH_DASH_DASH] = ACTIONS(713), - [anon_sym_DOT_DOT_DOT] = ACTIONS(713), - [sym__code_span_start] = ACTIONS(717), - [sym__emphasis_open_star] = ACTIONS(719), - [sym__emphasis_open_underscore] = ACTIONS(721), - [sym__strikeout_open] = ACTIONS(723), - [sym__latex_span_start] = ACTIONS(725), - [sym__single_quote_open] = ACTIONS(727), - [sym__double_quote_open] = ACTIONS(729), - [sym__double_quote_close] = ACTIONS(2107), - [sym__superscript_open] = ACTIONS(731), - [sym__subscript_open] = ACTIONS(733), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(735), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(737), - [sym__cite_author_in_text] = ACTIONS(739), - [sym__cite_suppress_author] = ACTIONS(741), - [sym__shortcode_open_escaped] = ACTIONS(743), - [sym__shortcode_open] = ACTIONS(745), - [sym__unclosed_span] = ACTIONS(689), + [sym_backslash_escape] = STATE(370), + [sym_commonmark_attribute] = STATE(370), + [sym_code_span] = STATE(370), + [sym_latex_span] = STATE(370), + [sym_insert] = STATE(370), + [sym_delete] = STATE(370), + [sym_highlight] = STATE(370), + [sym_edit_comment] = STATE(370), + [sym_superscript] = STATE(370), + [sym_subscript] = STATE(370), + [sym_strikeout] = STATE(370), + [sym_quoted_span] = STATE(370), + [sym_inline_note] = STATE(370), + [sym_citation] = STATE(370), + [sym_shortcode_escaped] = STATE(370), + [sym_shortcode] = STATE(370), + [sym_note_reference] = STATE(370), + [sym__link_text] = STATE(472), + [sym__link_text_non_empty] = STATE(473), + [sym_inline_link] = STATE(165), + [sym_image] = STATE(370), + [sym__image_inline_link] = STATE(923), + [sym__image_description] = STATE(2342), + [sym__image_description_non_empty] = STATE(2342), + [sym_hard_line_break] = STATE(370), + [sym__whitespace] = STATE(920), + [sym__word] = STATE(920), + [sym__soft_line_break] = STATE(924), + [sym__inline_base] = STATE(165), + [sym__text_base] = STATE(370), + [sym__inline_element] = STATE(165), + [sym__emphasis_star] = STATE(821), + [sym__strong_emphasis_star] = STATE(165), + [sym__emphasis_underscore] = STATE(821), + [sym__strong_emphasis_underscore] = STATE(165), + [aux_sym_insert_repeat1] = STATE(165), + [aux_sym__inline_base_repeat1] = STATE(370), + [sym__backslash_escape] = ACTIONS(73), + [sym_entity_reference] = ACTIONS(75), + [sym_numeric_character_reference] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_BANG] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_POUND] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(79), + [anon_sym_PERCENT] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_STAR] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_COMMA] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_DOT] = ACTIONS(77), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_COLON] = ACTIONS(79), + [anon_sym_SEMI] = ACTIONS(79), + [anon_sym_EQ] = ACTIONS(79), + [anon_sym_QMARK] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(83), + [anon_sym_BSLASH] = ACTIONS(85), + [anon_sym_RBRACK] = ACTIONS(2533), + [anon_sym_CARET] = ACTIONS(77), + [anon_sym__] = ACTIONS(79), + [anon_sym_BQUOTE] = ACTIONS(79), + [anon_sym_LBRACE] = ACTIONS(89), + [anon_sym_PIPE] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(79), + [anon_sym_RPAREN] = ACTIONS(79), + [sym__newline_token] = ACTIONS(91), + [aux_sym_insert_token1] = ACTIONS(93), + [aux_sym_delete_token1] = ACTIONS(95), + [aux_sym_highlight_token1] = ACTIONS(97), + [aux_sym_edit_comment_token1] = ACTIONS(99), + [anon_sym_CARET_LBRACK] = ACTIONS(101), + [anon_sym_LBRACK_CARET] = ACTIONS(103), + [sym_uri_autolink] = ACTIONS(75), + [sym_email_autolink] = ACTIONS(75), + [sym__whitespace_ge_2] = ACTIONS(105), + [aux_sym__whitespace_token1] = ACTIONS(107), + [sym__word_no_digit] = ACTIONS(109), + [sym__digits] = ACTIONS(109), + [anon_sym_DASH_DASH] = ACTIONS(111), + [anon_sym_DASH_DASH_DASH] = ACTIONS(109), + [anon_sym_DOT_DOT_DOT] = ACTIONS(109), + [sym__code_span_start] = ACTIONS(113), + [sym__emphasis_open_star] = ACTIONS(115), + [sym__emphasis_open_underscore] = ACTIONS(117), + [sym__strikeout_open] = ACTIONS(121), + [sym__latex_span_start] = ACTIONS(123), + [sym__single_quote_open] = ACTIONS(125), + [sym__double_quote_open] = ACTIONS(127), + [sym__superscript_open] = ACTIONS(129), + [sym__subscript_open] = ACTIONS(131), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(133), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(135), + [sym__cite_author_in_text] = ACTIONS(137), + [sym__cite_suppress_author] = ACTIONS(139), + [sym__shortcode_open_escaped] = ACTIONS(141), + [sym__shortcode_open] = ACTIONS(143), + [sym__unclosed_span] = ACTIONS(75), }, [STATE(162)] = { - [sym_backslash_escape] = STATE(262), - [sym_commonmark_attribute] = STATE(262), - [sym_code_span] = STATE(262), - [sym_latex_span] = STATE(262), - [sym_superscript] = STATE(262), - [sym_subscript] = STATE(262), - [sym_strikeout] = STATE(262), - [sym_quoted_span] = STATE(262), - [sym_inline_note] = STATE(262), - [sym_citation] = STATE(262), - [sym_shortcode_escaped] = STATE(262), - [sym_shortcode] = STATE(262), - [sym_note_reference] = STATE(262), - [sym__link_text] = STATE(313), - [sym__link_text_non_empty] = STATE(314), - [sym_inline_link] = STATE(170), - [sym_image] = STATE(262), - [sym__image_inline_link] = STATE(708), - [sym__image_description] = STATE(1970), - [sym__image_description_non_empty] = STATE(1970), - [sym_hard_line_break] = STATE(262), - [sym__whitespace] = STATE(705), - [sym__word] = STATE(705), - [sym__soft_line_break] = STATE(709), - [sym__inline_base] = STATE(170), - [sym__text_base] = STATE(262), - [sym__inline_element] = STATE(170), - [sym__emphasis_star] = STATE(1138), - [sym__strong_emphasis_star] = STATE(170), - [sym__emphasis_underscore] = STATE(1138), - [sym__strong_emphasis_underscore] = STATE(170), - [aux_sym_superscript_repeat1] = STATE(170), - [aux_sym__inline_base_repeat1] = STATE(262), - [sym__backslash_escape] = ACTIONS(747), - [sym_entity_reference] = ACTIONS(749), - [sym_numeric_character_reference] = ACTIONS(749), - [anon_sym_LT] = ACTIONS(751), - [anon_sym_GT] = ACTIONS(753), - [anon_sym_BANG] = ACTIONS(755), - [anon_sym_DQUOTE] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(753), - [anon_sym_DOLLAR] = ACTIONS(753), - [anon_sym_PERCENT] = ACTIONS(753), - [anon_sym_AMP] = ACTIONS(751), - [anon_sym_SQUOTE] = ACTIONS(753), - [anon_sym_STAR] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(753), - [anon_sym_COMMA] = ACTIONS(753), - [anon_sym_DASH] = ACTIONS(751), - [anon_sym_DOT] = ACTIONS(751), - [anon_sym_SLASH] = ACTIONS(753), - [anon_sym_COLON] = ACTIONS(753), - [anon_sym_SEMI] = ACTIONS(753), - [anon_sym_EQ] = ACTIONS(753), - [anon_sym_QMARK] = ACTIONS(753), - [anon_sym_LBRACK] = ACTIONS(757), - [anon_sym_BSLASH] = ACTIONS(759), - [anon_sym_CARET] = ACTIONS(751), - [anon_sym__] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(753), - [anon_sym_LBRACE] = ACTIONS(761), - [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_TILDE] = ACTIONS(753), - [anon_sym_LPAREN] = ACTIONS(753), - [anon_sym_RPAREN] = ACTIONS(753), - [sym__newline_token] = ACTIONS(763), - [anon_sym_CARET_LBRACK] = ACTIONS(765), - [anon_sym_LBRACK_CARET] = ACTIONS(767), - [sym_uri_autolink] = ACTIONS(749), - [sym_email_autolink] = ACTIONS(749), - [sym__whitespace_ge_2] = ACTIONS(769), - [aux_sym__whitespace_token1] = ACTIONS(771), - [sym__word_no_digit] = ACTIONS(773), - [sym__digits] = ACTIONS(773), - [anon_sym_DASH_DASH] = ACTIONS(775), - [anon_sym_DASH_DASH_DASH] = ACTIONS(773), - [anon_sym_DOT_DOT_DOT] = ACTIONS(773), - [sym__code_span_start] = ACTIONS(777), - [sym__emphasis_open_star] = ACTIONS(779), - [sym__emphasis_open_underscore] = ACTIONS(781), - [sym__strikeout_open] = ACTIONS(783), - [sym__latex_span_start] = ACTIONS(785), - [sym__single_quote_open] = ACTIONS(787), - [sym__double_quote_open] = ACTIONS(789), - [sym__superscript_open] = ACTIONS(791), - [sym__superscript_close] = ACTIONS(2109), - [sym__subscript_open] = ACTIONS(795), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(797), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(799), - [sym__cite_author_in_text] = ACTIONS(801), - [sym__cite_suppress_author] = ACTIONS(803), - [sym__shortcode_open_escaped] = ACTIONS(805), - [sym__shortcode_open] = ACTIONS(807), - [sym__unclosed_span] = ACTIONS(749), + [sym_backslash_escape] = STATE(370), + [sym_commonmark_attribute] = STATE(370), + [sym_code_span] = STATE(370), + [sym_latex_span] = STATE(370), + [sym_insert] = STATE(370), + [sym_delete] = STATE(370), + [sym_highlight] = STATE(370), + [sym_edit_comment] = STATE(370), + [sym_superscript] = STATE(370), + [sym_subscript] = STATE(370), + [sym_strikeout] = STATE(370), + [sym_quoted_span] = STATE(370), + [sym_inline_note] = STATE(370), + [sym_citation] = STATE(370), + [sym_shortcode_escaped] = STATE(370), + [sym_shortcode] = STATE(370), + [sym_note_reference] = STATE(370), + [sym__link_text] = STATE(472), + [sym__link_text_non_empty] = STATE(473), + [sym_inline_link] = STATE(60), + [sym_image] = STATE(370), + [sym__image_inline_link] = STATE(923), + [sym__image_description] = STATE(2342), + [sym__image_description_non_empty] = STATE(2342), + [sym_hard_line_break] = STATE(370), + [sym__whitespace] = STATE(920), + [sym__word] = STATE(920), + [sym__soft_line_break] = STATE(924), + [sym__inline_base] = STATE(60), + [sym__text_base] = STATE(370), + [sym__inline_element] = STATE(60), + [sym__emphasis_star] = STATE(821), + [sym__strong_emphasis_star] = STATE(60), + [sym__emphasis_underscore] = STATE(821), + [sym__strong_emphasis_underscore] = STATE(60), + [aux_sym_insert_repeat1] = STATE(60), + [aux_sym__inline_base_repeat1] = STATE(370), + [sym__backslash_escape] = ACTIONS(73), + [sym_entity_reference] = ACTIONS(75), + [sym_numeric_character_reference] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_BANG] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_POUND] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(79), + [anon_sym_PERCENT] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_STAR] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_COMMA] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_DOT] = ACTIONS(77), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_COLON] = ACTIONS(79), + [anon_sym_SEMI] = ACTIONS(79), + [anon_sym_EQ] = ACTIONS(79), + [anon_sym_QMARK] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(83), + [anon_sym_BSLASH] = ACTIONS(85), + [anon_sym_RBRACK] = ACTIONS(2535), + [anon_sym_CARET] = ACTIONS(77), + [anon_sym__] = ACTIONS(79), + [anon_sym_BQUOTE] = ACTIONS(79), + [anon_sym_LBRACE] = ACTIONS(89), + [anon_sym_PIPE] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(79), + [anon_sym_RPAREN] = ACTIONS(79), + [sym__newline_token] = ACTIONS(91), + [aux_sym_insert_token1] = ACTIONS(93), + [aux_sym_delete_token1] = ACTIONS(95), + [aux_sym_highlight_token1] = ACTIONS(97), + [aux_sym_edit_comment_token1] = ACTIONS(99), + [anon_sym_CARET_LBRACK] = ACTIONS(101), + [anon_sym_LBRACK_CARET] = ACTIONS(103), + [sym_uri_autolink] = ACTIONS(75), + [sym_email_autolink] = ACTIONS(75), + [sym__whitespace_ge_2] = ACTIONS(105), + [aux_sym__whitespace_token1] = ACTIONS(107), + [sym__word_no_digit] = ACTIONS(109), + [sym__digits] = ACTIONS(109), + [anon_sym_DASH_DASH] = ACTIONS(111), + [anon_sym_DASH_DASH_DASH] = ACTIONS(109), + [anon_sym_DOT_DOT_DOT] = ACTIONS(109), + [sym__code_span_start] = ACTIONS(113), + [sym__emphasis_open_star] = ACTIONS(115), + [sym__emphasis_open_underscore] = ACTIONS(117), + [sym__strikeout_open] = ACTIONS(121), + [sym__latex_span_start] = ACTIONS(123), + [sym__single_quote_open] = ACTIONS(125), + [sym__double_quote_open] = ACTIONS(127), + [sym__superscript_open] = ACTIONS(129), + [sym__subscript_open] = ACTIONS(131), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(133), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(135), + [sym__cite_author_in_text] = ACTIONS(137), + [sym__cite_suppress_author] = ACTIONS(139), + [sym__shortcode_open_escaped] = ACTIONS(141), + [sym__shortcode_open] = ACTIONS(143), + [sym__unclosed_span] = ACTIONS(75), }, [STATE(163)] = { - [sym_backslash_escape] = STATE(270), - [sym_commonmark_attribute] = STATE(270), - [sym_code_span] = STATE(270), - [sym_latex_span] = STATE(270), - [sym_superscript] = STATE(270), - [sym_subscript] = STATE(270), - [sym_strikeout] = STATE(270), - [sym_quoted_span] = STATE(270), - [sym_inline_note] = STATE(270), - [sym_citation] = STATE(270), - [sym_shortcode_escaped] = STATE(270), - [sym_shortcode] = STATE(270), - [sym_note_reference] = STATE(270), - [sym__link_text] = STATE(359), - [sym__link_text_non_empty] = STATE(364), - [sym_inline_link] = STATE(171), - [sym_image] = STATE(270), - [sym__image_inline_link] = STATE(795), - [sym__image_description] = STATE(1984), - [sym__image_description_non_empty] = STATE(1984), - [sym_hard_line_break] = STATE(270), - [sym__whitespace] = STATE(792), - [sym__word] = STATE(792), - [sym__soft_line_break] = STATE(796), - [sym__inline_base] = STATE(171), - [sym__text_base] = STATE(270), - [sym__inline_element] = STATE(171), - [sym__emphasis_star] = STATE(615), - [sym__strong_emphasis_star] = STATE(171), - [sym__emphasis_underscore] = STATE(615), - [sym__strong_emphasis_underscore] = STATE(171), - [aux_sym_superscript_repeat1] = STATE(171), - [aux_sym__inline_base_repeat1] = STATE(270), - [sym__backslash_escape] = ACTIONS(809), - [sym_entity_reference] = ACTIONS(811), - [sym_numeric_character_reference] = ACTIONS(811), - [anon_sym_LT] = ACTIONS(813), - [anon_sym_GT] = ACTIONS(815), - [anon_sym_BANG] = ACTIONS(817), - [anon_sym_DQUOTE] = ACTIONS(815), - [anon_sym_POUND] = ACTIONS(815), - [anon_sym_DOLLAR] = ACTIONS(815), - [anon_sym_PERCENT] = ACTIONS(815), - [anon_sym_AMP] = ACTIONS(813), - [anon_sym_SQUOTE] = ACTIONS(815), - [anon_sym_STAR] = ACTIONS(815), - [anon_sym_PLUS] = ACTIONS(815), - [anon_sym_COMMA] = ACTIONS(815), - [anon_sym_DASH] = ACTIONS(813), - [anon_sym_DOT] = ACTIONS(813), - [anon_sym_SLASH] = ACTIONS(815), - [anon_sym_COLON] = ACTIONS(815), - [anon_sym_SEMI] = ACTIONS(815), - [anon_sym_EQ] = ACTIONS(815), - [anon_sym_QMARK] = ACTIONS(815), - [anon_sym_LBRACK] = ACTIONS(819), - [anon_sym_BSLASH] = ACTIONS(821), - [anon_sym_CARET] = ACTIONS(813), - [anon_sym__] = ACTIONS(815), - [anon_sym_BQUOTE] = ACTIONS(815), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_PIPE] = ACTIONS(815), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_RPAREN] = ACTIONS(815), - [sym__newline_token] = ACTIONS(825), - [anon_sym_CARET_LBRACK] = ACTIONS(827), - [anon_sym_LBRACK_CARET] = ACTIONS(829), - [sym_uri_autolink] = ACTIONS(811), - [sym_email_autolink] = ACTIONS(811), - [sym__whitespace_ge_2] = ACTIONS(831), - [aux_sym__whitespace_token1] = ACTIONS(833), - [sym__word_no_digit] = ACTIONS(835), - [sym__digits] = ACTIONS(835), - [anon_sym_DASH_DASH] = ACTIONS(837), - [anon_sym_DASH_DASH_DASH] = ACTIONS(835), - [anon_sym_DOT_DOT_DOT] = ACTIONS(835), - [sym__code_span_start] = ACTIONS(839), - [sym__emphasis_open_star] = ACTIONS(841), - [sym__emphasis_open_underscore] = ACTIONS(843), - [sym__strikeout_open] = ACTIONS(845), - [sym__latex_span_start] = ACTIONS(847), - [sym__single_quote_open] = ACTIONS(849), - [sym__double_quote_open] = ACTIONS(851), - [sym__superscript_open] = ACTIONS(853), - [sym__subscript_open] = ACTIONS(855), - [sym__subscript_close] = ACTIONS(2111), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(859), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(861), - [sym__cite_author_in_text] = ACTIONS(863), - [sym__cite_suppress_author] = ACTIONS(865), - [sym__shortcode_open_escaped] = ACTIONS(867), - [sym__shortcode_open] = ACTIONS(869), - [sym__unclosed_span] = ACTIONS(811), + [sym_backslash_escape] = STATE(373), + [sym_commonmark_attribute] = STATE(373), + [sym_code_span] = STATE(373), + [sym_latex_span] = STATE(373), + [sym_insert] = STATE(373), + [sym_delete] = STATE(373), + [sym_highlight] = STATE(373), + [sym_edit_comment] = STATE(373), + [sym_superscript] = STATE(373), + [sym_subscript] = STATE(373), + [sym_strikeout] = STATE(373), + [sym_quoted_span] = STATE(373), + [sym_inline_note] = STATE(373), + [sym_citation] = STATE(373), + [sym_shortcode_escaped] = STATE(373), + [sym_shortcode] = STATE(373), + [sym_note_reference] = STATE(373), + [sym__link_text] = STATE(522), + [sym__link_text_non_empty] = STATE(523), + [sym_inline_link] = STATE(36), + [sym_image] = STATE(373), + [sym__image_inline_link] = STATE(1265), + [sym__image_description] = STATE(2331), + [sym__image_description_non_empty] = STATE(2331), + [sym_hard_line_break] = STATE(373), + [sym__whitespace] = STATE(1262), + [sym__word] = STATE(1262), + [sym__soft_line_break] = STATE(1267), + [sym__inline_base] = STATE(36), + [sym__text_base] = STATE(373), + [sym__inline_element_no_star] = STATE(36), + [aux_sym__inline_no_star] = STATE(36), + [sym__emphasis_star] = STATE(1147), + [sym__strong_emphasis_star] = STATE(36), + [sym__emphasis_underscore] = STATE(1147), + [sym__strong_emphasis_underscore] = STATE(36), + [aux_sym__inline_base_repeat1] = STATE(373), + [sym__backslash_escape] = ACTIONS(885), + [sym_entity_reference] = ACTIONS(887), + [sym_numeric_character_reference] = ACTIONS(887), + [anon_sym_LT] = ACTIONS(889), + [anon_sym_GT] = ACTIONS(891), + [anon_sym_BANG] = ACTIONS(893), + [anon_sym_DQUOTE] = ACTIONS(891), + [anon_sym_POUND] = ACTIONS(891), + [anon_sym_DOLLAR] = ACTIONS(891), + [anon_sym_PERCENT] = ACTIONS(891), + [anon_sym_AMP] = ACTIONS(889), + [anon_sym_SQUOTE] = ACTIONS(891), + [anon_sym_STAR] = ACTIONS(891), + [anon_sym_PLUS] = ACTIONS(891), + [anon_sym_COMMA] = ACTIONS(891), + [anon_sym_DASH] = ACTIONS(889), + [anon_sym_DOT] = ACTIONS(889), + [anon_sym_SLASH] = ACTIONS(891), + [anon_sym_COLON] = ACTIONS(891), + [anon_sym_SEMI] = ACTIONS(891), + [anon_sym_EQ] = ACTIONS(891), + [anon_sym_QMARK] = ACTIONS(891), + [anon_sym_LBRACK] = ACTIONS(895), + [anon_sym_BSLASH] = ACTIONS(897), + [anon_sym_CARET] = ACTIONS(889), + [anon_sym__] = ACTIONS(891), + [anon_sym_BQUOTE] = ACTIONS(891), + [anon_sym_LBRACE] = ACTIONS(899), + [anon_sym_PIPE] = ACTIONS(891), + [anon_sym_TILDE] = ACTIONS(891), + [anon_sym_LPAREN] = ACTIONS(891), + [anon_sym_RPAREN] = ACTIONS(891), + [sym__newline_token] = ACTIONS(901), + [aux_sym_insert_token1] = ACTIONS(903), + [aux_sym_delete_token1] = ACTIONS(905), + [aux_sym_highlight_token1] = ACTIONS(907), + [aux_sym_edit_comment_token1] = ACTIONS(909), + [anon_sym_CARET_LBRACK] = ACTIONS(911), + [anon_sym_LBRACK_CARET] = ACTIONS(913), + [sym_uri_autolink] = ACTIONS(887), + [sym_email_autolink] = ACTIONS(887), + [sym__whitespace_ge_2] = ACTIONS(915), + [aux_sym__whitespace_token1] = ACTIONS(917), + [sym__word_no_digit] = ACTIONS(919), + [sym__digits] = ACTIONS(919), + [anon_sym_DASH_DASH] = ACTIONS(921), + [anon_sym_DASH_DASH_DASH] = ACTIONS(919), + [anon_sym_DOT_DOT_DOT] = ACTIONS(919), + [sym__code_span_start] = ACTIONS(923), + [sym__emphasis_open_star] = ACTIONS(925), + [sym__emphasis_open_underscore] = ACTIONS(927), + [sym__emphasis_close_star] = ACTIONS(2537), + [sym__strikeout_open] = ACTIONS(931), + [sym__latex_span_start] = ACTIONS(933), + [sym__single_quote_open] = ACTIONS(935), + [sym__double_quote_open] = ACTIONS(937), + [sym__superscript_open] = ACTIONS(939), + [sym__subscript_open] = ACTIONS(941), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(943), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(945), + [sym__cite_author_in_text] = ACTIONS(947), + [sym__cite_suppress_author] = ACTIONS(949), + [sym__shortcode_open_escaped] = ACTIONS(951), + [sym__shortcode_open] = ACTIONS(953), + [sym__unclosed_span] = ACTIONS(887), }, [STATE(164)] = { - [sym_backslash_escape] = STATE(272), - [sym_commonmark_attribute] = STATE(272), - [sym_code_span] = STATE(272), - [sym_latex_span] = STATE(272), - [sym_superscript] = STATE(272), - [sym_subscript] = STATE(272), - [sym_strikeout] = STATE(272), - [sym_quoted_span] = STATE(272), - [sym_inline_note] = STATE(272), - [sym_citation] = STATE(272), - [sym_shortcode_escaped] = STATE(272), - [sym_shortcode] = STATE(272), - [sym_note_reference] = STATE(272), - [sym__link_text] = STATE(401), - [sym__link_text_non_empty] = STATE(402), - [sym_inline_link] = STATE(30), - [sym_image] = STATE(272), - [sym__image_inline_link] = STATE(1136), - [sym__image_description] = STATE(1942), - [sym__image_description_non_empty] = STATE(1942), - [sym_hard_line_break] = STATE(272), - [sym__whitespace] = STATE(1133), - [sym__word] = STATE(1133), - [sym__soft_line_break] = STATE(1137), - [sym__inline_base] = STATE(30), - [sym__text_base] = STATE(272), - [sym__inline_element] = STATE(30), - [sym__emphasis_star] = STATE(902), - [sym__strong_emphasis_star] = STATE(30), - [sym__emphasis_underscore] = STATE(902), - [sym__strong_emphasis_underscore] = STATE(30), - [aux_sym_superscript_repeat1] = STATE(30), - [aux_sym__inline_base_repeat1] = STATE(272), - [sym__backslash_escape] = ACTIONS(625), - [sym_entity_reference] = ACTIONS(627), - [sym_numeric_character_reference] = ACTIONS(627), - [anon_sym_LT] = ACTIONS(629), - [anon_sym_GT] = ACTIONS(631), - [anon_sym_BANG] = ACTIONS(633), - [anon_sym_DQUOTE] = ACTIONS(631), - [anon_sym_POUND] = ACTIONS(631), - [anon_sym_DOLLAR] = ACTIONS(631), - [anon_sym_PERCENT] = ACTIONS(631), - [anon_sym_AMP] = ACTIONS(629), - [anon_sym_SQUOTE] = ACTIONS(631), - [anon_sym_STAR] = ACTIONS(631), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_COMMA] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(629), - [anon_sym_DOT] = ACTIONS(629), - [anon_sym_SLASH] = ACTIONS(631), - [anon_sym_COLON] = ACTIONS(631), - [anon_sym_SEMI] = ACTIONS(631), - [anon_sym_EQ] = ACTIONS(631), - [anon_sym_QMARK] = ACTIONS(631), - [anon_sym_LBRACK] = ACTIONS(635), - [anon_sym_BSLASH] = ACTIONS(637), - [anon_sym_CARET] = ACTIONS(629), - [anon_sym__] = ACTIONS(631), - [anon_sym_BQUOTE] = ACTIONS(631), - [anon_sym_LBRACE] = ACTIONS(639), - [anon_sym_PIPE] = ACTIONS(631), - [anon_sym_TILDE] = ACTIONS(631), - [anon_sym_LPAREN] = ACTIONS(631), - [anon_sym_RPAREN] = ACTIONS(631), - [sym__newline_token] = ACTIONS(641), - [anon_sym_CARET_LBRACK] = ACTIONS(643), - [anon_sym_LBRACK_CARET] = ACTIONS(645), - [sym_uri_autolink] = ACTIONS(627), - [sym_email_autolink] = ACTIONS(627), - [sym__whitespace_ge_2] = ACTIONS(647), - [aux_sym__whitespace_token1] = ACTIONS(649), - [sym__word_no_digit] = ACTIONS(651), - [sym__digits] = ACTIONS(651), - [anon_sym_DASH_DASH] = ACTIONS(653), - [anon_sym_DASH_DASH_DASH] = ACTIONS(651), - [anon_sym_DOT_DOT_DOT] = ACTIONS(651), - [sym__code_span_start] = ACTIONS(655), - [sym__emphasis_open_star] = ACTIONS(657), - [sym__emphasis_open_underscore] = ACTIONS(659), - [sym__strikeout_open] = ACTIONS(661), - [sym__latex_span_start] = ACTIONS(663), - [sym__single_quote_open] = ACTIONS(665), - [sym__single_quote_close] = ACTIONS(1373), - [sym__double_quote_open] = ACTIONS(669), - [sym__superscript_open] = ACTIONS(671), - [sym__subscript_open] = ACTIONS(673), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(675), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(677), - [sym__cite_author_in_text] = ACTIONS(679), - [sym__cite_suppress_author] = ACTIONS(681), - [sym__shortcode_open_escaped] = ACTIONS(683), - [sym__shortcode_open] = ACTIONS(685), - [sym__unclosed_span] = ACTIONS(627), + [sym_backslash_escape] = STATE(379), + [sym_commonmark_attribute] = STATE(379), + [sym_code_span] = STATE(379), + [sym_latex_span] = STATE(379), + [sym_insert] = STATE(379), + [sym_delete] = STATE(379), + [sym_highlight] = STATE(379), + [sym_edit_comment] = STATE(379), + [sym_superscript] = STATE(379), + [sym_subscript] = STATE(379), + [sym_strikeout] = STATE(379), + [sym_quoted_span] = STATE(379), + [sym_inline_note] = STATE(379), + [sym_citation] = STATE(379), + [sym_shortcode_escaped] = STATE(379), + [sym_shortcode] = STATE(379), + [sym_note_reference] = STATE(379), + [sym__link_text] = STATE(545), + [sym__link_text_non_empty] = STATE(546), + [sym_inline_link] = STATE(38), + [sym_image] = STATE(379), + [sym__image_inline_link] = STATE(1390), + [sym__image_description] = STATE(2363), + [sym__image_description_non_empty] = STATE(2363), + [sym_hard_line_break] = STATE(379), + [sym__whitespace] = STATE(1385), + [sym__word] = STATE(1385), + [sym__soft_line_break] = STATE(1391), + [sym__inline_base] = STATE(38), + [sym__text_base] = STATE(379), + [sym__inline_element_no_underscore] = STATE(38), + [aux_sym__inline_no_underscore] = STATE(38), + [sym__emphasis_star] = STATE(1168), + [sym__strong_emphasis_star] = STATE(38), + [sym__emphasis_underscore] = STATE(1168), + [sym__strong_emphasis_underscore] = STATE(38), + [aux_sym__inline_base_repeat1] = STATE(379), + [sym__backslash_escape] = ACTIONS(1059), + [sym_entity_reference] = ACTIONS(1061), + [sym_numeric_character_reference] = ACTIONS(1061), + [anon_sym_LT] = ACTIONS(1063), + [anon_sym_GT] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1067), + [anon_sym_DQUOTE] = ACTIONS(1065), + [anon_sym_POUND] = ACTIONS(1065), + [anon_sym_DOLLAR] = ACTIONS(1065), + [anon_sym_PERCENT] = ACTIONS(1065), + [anon_sym_AMP] = ACTIONS(1063), + [anon_sym_SQUOTE] = ACTIONS(1065), + [anon_sym_STAR] = ACTIONS(1065), + [anon_sym_PLUS] = ACTIONS(1065), + [anon_sym_COMMA] = ACTIONS(1065), + [anon_sym_DASH] = ACTIONS(1063), + [anon_sym_DOT] = ACTIONS(1063), + [anon_sym_SLASH] = ACTIONS(1065), + [anon_sym_COLON] = ACTIONS(1065), + [anon_sym_SEMI] = ACTIONS(1065), + [anon_sym_EQ] = ACTIONS(1065), + [anon_sym_QMARK] = ACTIONS(1065), + [anon_sym_LBRACK] = ACTIONS(1069), + [anon_sym_BSLASH] = ACTIONS(1071), + [anon_sym_CARET] = ACTIONS(1063), + [anon_sym__] = ACTIONS(1065), + [anon_sym_BQUOTE] = ACTIONS(1065), + [anon_sym_LBRACE] = ACTIONS(1073), + [anon_sym_PIPE] = ACTIONS(1065), + [anon_sym_TILDE] = ACTIONS(1065), + [anon_sym_LPAREN] = ACTIONS(1065), + [anon_sym_RPAREN] = ACTIONS(1065), + [sym__newline_token] = ACTIONS(1075), + [aux_sym_insert_token1] = ACTIONS(1077), + [aux_sym_delete_token1] = ACTIONS(1079), + [aux_sym_highlight_token1] = ACTIONS(1081), + [aux_sym_edit_comment_token1] = ACTIONS(1083), + [anon_sym_CARET_LBRACK] = ACTIONS(1085), + [anon_sym_LBRACK_CARET] = ACTIONS(1087), + [sym_uri_autolink] = ACTIONS(1061), + [sym_email_autolink] = ACTIONS(1061), + [sym__whitespace_ge_2] = ACTIONS(1089), + [aux_sym__whitespace_token1] = ACTIONS(1091), + [sym__word_no_digit] = ACTIONS(1093), + [sym__digits] = ACTIONS(1093), + [anon_sym_DASH_DASH] = ACTIONS(1095), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1093), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1093), + [sym__code_span_start] = ACTIONS(1097), + [sym__emphasis_open_star] = ACTIONS(1099), + [sym__emphasis_open_underscore] = ACTIONS(1101), + [sym__emphasis_close_underscore] = ACTIONS(2539), + [sym__strikeout_open] = ACTIONS(1105), + [sym__latex_span_start] = ACTIONS(1107), + [sym__single_quote_open] = ACTIONS(1109), + [sym__double_quote_open] = ACTIONS(1111), + [sym__superscript_open] = ACTIONS(1113), + [sym__subscript_open] = ACTIONS(1115), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1117), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1119), + [sym__cite_author_in_text] = ACTIONS(1121), + [sym__cite_suppress_author] = ACTIONS(1123), + [sym__shortcode_open_escaped] = ACTIONS(1125), + [sym__shortcode_open] = ACTIONS(1127), + [sym__unclosed_span] = ACTIONS(1061), }, [STATE(165)] = { - [sym_backslash_escape] = STATE(261), - [sym_commonmark_attribute] = STATE(261), - [sym_code_span] = STATE(261), - [sym_latex_span] = STATE(261), - [sym_superscript] = STATE(261), - [sym_subscript] = STATE(261), - [sym_strikeout] = STATE(261), - [sym_quoted_span] = STATE(261), - [sym_inline_note] = STATE(261), - [sym_citation] = STATE(261), - [sym_shortcode_escaped] = STATE(261), - [sym_shortcode] = STATE(261), - [sym_note_reference] = STATE(261), - [sym__link_text] = STATE(322), - [sym__link_text_non_empty] = STATE(323), - [sym_inline_link] = STATE(39), - [sym_image] = STATE(261), - [sym__image_inline_link] = STATE(595), - [sym__image_description] = STATE(1972), - [sym__image_description_non_empty] = STATE(1972), - [sym_hard_line_break] = STATE(261), - [sym__whitespace] = STATE(587), - [sym__word] = STATE(587), - [sym__soft_line_break] = STATE(597), - [sym__inline_base] = STATE(39), - [sym__text_base] = STATE(261), - [sym__inline_element_no_star] = STATE(39), - [aux_sym__inline_no_star] = STATE(39), - [sym__emphasis_star] = STATE(544), - [sym__strong_emphasis_star] = STATE(39), - [sym__emphasis_underscore] = STATE(544), - [sym__strong_emphasis_underscore] = STATE(39), - [aux_sym__inline_base_repeat1] = STATE(261), - [sym__backslash_escape] = ACTIONS(969), - [sym_entity_reference] = ACTIONS(971), - [sym_numeric_character_reference] = ACTIONS(971), - [anon_sym_LT] = ACTIONS(973), - [anon_sym_GT] = ACTIONS(975), - [anon_sym_BANG] = ACTIONS(977), - [anon_sym_DQUOTE] = ACTIONS(975), - [anon_sym_POUND] = ACTIONS(975), - [anon_sym_DOLLAR] = ACTIONS(975), - [anon_sym_PERCENT] = ACTIONS(975), - [anon_sym_AMP] = ACTIONS(973), - [anon_sym_SQUOTE] = ACTIONS(975), - [anon_sym_STAR] = ACTIONS(975), - [anon_sym_PLUS] = ACTIONS(975), - [anon_sym_COMMA] = ACTIONS(975), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_DOT] = ACTIONS(973), - [anon_sym_SLASH] = ACTIONS(975), - [anon_sym_COLON] = ACTIONS(975), - [anon_sym_SEMI] = ACTIONS(975), - [anon_sym_EQ] = ACTIONS(975), - [anon_sym_QMARK] = ACTIONS(975), - [anon_sym_LBRACK] = ACTIONS(979), - [anon_sym_BSLASH] = ACTIONS(981), - [anon_sym_CARET] = ACTIONS(973), - [anon_sym__] = ACTIONS(975), - [anon_sym_BQUOTE] = ACTIONS(975), - [anon_sym_LBRACE] = ACTIONS(983), - [anon_sym_PIPE] = ACTIONS(975), - [anon_sym_TILDE] = ACTIONS(975), - [anon_sym_LPAREN] = ACTIONS(975), - [anon_sym_RPAREN] = ACTIONS(975), - [sym__newline_token] = ACTIONS(985), - [anon_sym_CARET_LBRACK] = ACTIONS(987), - [anon_sym_LBRACK_CARET] = ACTIONS(989), - [sym_uri_autolink] = ACTIONS(971), - [sym_email_autolink] = ACTIONS(971), - [sym__whitespace_ge_2] = ACTIONS(991), - [aux_sym__whitespace_token1] = ACTIONS(993), - [sym__word_no_digit] = ACTIONS(995), - [sym__digits] = ACTIONS(995), - [anon_sym_DASH_DASH] = ACTIONS(997), - [anon_sym_DASH_DASH_DASH] = ACTIONS(995), - [anon_sym_DOT_DOT_DOT] = ACTIONS(995), - [sym__code_span_start] = ACTIONS(999), - [sym__emphasis_open_star] = ACTIONS(1001), - [sym__emphasis_open_underscore] = ACTIONS(1003), - [sym__emphasis_close_star] = ACTIONS(2113), - [sym__strikeout_open] = ACTIONS(1007), - [sym__latex_span_start] = ACTIONS(1009), - [sym__single_quote_open] = ACTIONS(1011), - [sym__double_quote_open] = ACTIONS(1013), - [sym__superscript_open] = ACTIONS(1015), - [sym__subscript_open] = ACTIONS(1017), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1019), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1021), - [sym__cite_author_in_text] = ACTIONS(1023), - [sym__cite_suppress_author] = ACTIONS(1025), - [sym__shortcode_open_escaped] = ACTIONS(1027), - [sym__shortcode_open] = ACTIONS(1029), - [sym__unclosed_span] = ACTIONS(971), + [sym_backslash_escape] = STATE(370), + [sym_commonmark_attribute] = STATE(370), + [sym_code_span] = STATE(370), + [sym_latex_span] = STATE(370), + [sym_insert] = STATE(370), + [sym_delete] = STATE(370), + [sym_highlight] = STATE(370), + [sym_edit_comment] = STATE(370), + [sym_superscript] = STATE(370), + [sym_subscript] = STATE(370), + [sym_strikeout] = STATE(370), + [sym_quoted_span] = STATE(370), + [sym_inline_note] = STATE(370), + [sym_citation] = STATE(370), + [sym_shortcode_escaped] = STATE(370), + [sym_shortcode] = STATE(370), + [sym_note_reference] = STATE(370), + [sym__link_text] = STATE(472), + [sym__link_text_non_empty] = STATE(473), + [sym_inline_link] = STATE(60), + [sym_image] = STATE(370), + [sym__image_inline_link] = STATE(923), + [sym__image_description] = STATE(2342), + [sym__image_description_non_empty] = STATE(2342), + [sym_hard_line_break] = STATE(370), + [sym__whitespace] = STATE(920), + [sym__word] = STATE(920), + [sym__soft_line_break] = STATE(924), + [sym__inline_base] = STATE(60), + [sym__text_base] = STATE(370), + [sym__inline_element] = STATE(60), + [sym__emphasis_star] = STATE(821), + [sym__strong_emphasis_star] = STATE(60), + [sym__emphasis_underscore] = STATE(821), + [sym__strong_emphasis_underscore] = STATE(60), + [aux_sym_insert_repeat1] = STATE(60), + [aux_sym__inline_base_repeat1] = STATE(370), + [sym__backslash_escape] = ACTIONS(73), + [sym_entity_reference] = ACTIONS(75), + [sym_numeric_character_reference] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_BANG] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_POUND] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(79), + [anon_sym_PERCENT] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_STAR] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_COMMA] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_DOT] = ACTIONS(77), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_COLON] = ACTIONS(79), + [anon_sym_SEMI] = ACTIONS(79), + [anon_sym_EQ] = ACTIONS(79), + [anon_sym_QMARK] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(83), + [anon_sym_BSLASH] = ACTIONS(85), + [anon_sym_RBRACK] = ACTIONS(2541), + [anon_sym_CARET] = ACTIONS(77), + [anon_sym__] = ACTIONS(79), + [anon_sym_BQUOTE] = ACTIONS(79), + [anon_sym_LBRACE] = ACTIONS(89), + [anon_sym_PIPE] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(79), + [anon_sym_RPAREN] = ACTIONS(79), + [sym__newline_token] = ACTIONS(91), + [aux_sym_insert_token1] = ACTIONS(93), + [aux_sym_delete_token1] = ACTIONS(95), + [aux_sym_highlight_token1] = ACTIONS(97), + [aux_sym_edit_comment_token1] = ACTIONS(99), + [anon_sym_CARET_LBRACK] = ACTIONS(101), + [anon_sym_LBRACK_CARET] = ACTIONS(103), + [sym_uri_autolink] = ACTIONS(75), + [sym_email_autolink] = ACTIONS(75), + [sym__whitespace_ge_2] = ACTIONS(105), + [aux_sym__whitespace_token1] = ACTIONS(107), + [sym__word_no_digit] = ACTIONS(109), + [sym__digits] = ACTIONS(109), + [anon_sym_DASH_DASH] = ACTIONS(111), + [anon_sym_DASH_DASH_DASH] = ACTIONS(109), + [anon_sym_DOT_DOT_DOT] = ACTIONS(109), + [sym__code_span_start] = ACTIONS(113), + [sym__emphasis_open_star] = ACTIONS(115), + [sym__emphasis_open_underscore] = ACTIONS(117), + [sym__strikeout_open] = ACTIONS(121), + [sym__latex_span_start] = ACTIONS(123), + [sym__single_quote_open] = ACTIONS(125), + [sym__double_quote_open] = ACTIONS(127), + [sym__superscript_open] = ACTIONS(129), + [sym__subscript_open] = ACTIONS(131), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(133), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(135), + [sym__cite_author_in_text] = ACTIONS(137), + [sym__cite_suppress_author] = ACTIONS(139), + [sym__shortcode_open_escaped] = ACTIONS(141), + [sym__shortcode_open] = ACTIONS(143), + [sym__unclosed_span] = ACTIONS(75), }, [STATE(166)] = { - [sym_backslash_escape] = STATE(274), - [sym_commonmark_attribute] = STATE(274), - [sym_code_span] = STATE(274), - [sym_latex_span] = STATE(274), - [sym_superscript] = STATE(274), - [sym_subscript] = STATE(274), - [sym_strikeout] = STATE(274), - [sym_quoted_span] = STATE(274), - [sym_inline_note] = STATE(274), - [sym_citation] = STATE(274), - [sym_shortcode_escaped] = STATE(274), - [sym_shortcode] = STATE(274), - [sym_note_reference] = STATE(274), - [sym__link_text] = STATE(351), - [sym__link_text_non_empty] = STATE(352), - [sym_inline_link] = STATE(41), - [sym_image] = STATE(274), - [sym__image_inline_link] = STATE(894), - [sym__image_description] = STATE(2008), - [sym__image_description_non_empty] = STATE(2008), - [sym_hard_line_break] = STATE(274), - [sym__whitespace] = STATE(882), - [sym__word] = STATE(882), - [sym__soft_line_break] = STATE(898), - [sym__inline_base] = STATE(41), - [sym__text_base] = STATE(274), - [sym__inline_element_no_underscore] = STATE(41), - [aux_sym__inline_no_underscore] = STATE(41), - [sym__emphasis_star] = STATE(711), - [sym__strong_emphasis_star] = STATE(41), - [sym__emphasis_underscore] = STATE(711), - [sym__strong_emphasis_underscore] = STATE(41), - [aux_sym__inline_base_repeat1] = STATE(274), - [sym__backslash_escape] = ACTIONS(1123), - [sym_entity_reference] = ACTIONS(1125), - [sym_numeric_character_reference] = ACTIONS(1125), - [anon_sym_LT] = ACTIONS(1127), - [anon_sym_GT] = ACTIONS(1129), - [anon_sym_BANG] = ACTIONS(1131), - [anon_sym_DQUOTE] = ACTIONS(1129), - [anon_sym_POUND] = ACTIONS(1129), - [anon_sym_DOLLAR] = ACTIONS(1129), - [anon_sym_PERCENT] = ACTIONS(1129), - [anon_sym_AMP] = ACTIONS(1127), - [anon_sym_SQUOTE] = ACTIONS(1129), - [anon_sym_STAR] = ACTIONS(1129), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_COMMA] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1127), - [anon_sym_DOT] = ACTIONS(1127), - [anon_sym_SLASH] = ACTIONS(1129), - [anon_sym_COLON] = ACTIONS(1129), - [anon_sym_SEMI] = ACTIONS(1129), - [anon_sym_EQ] = ACTIONS(1129), - [anon_sym_QMARK] = ACTIONS(1129), - [anon_sym_LBRACK] = ACTIONS(1133), - [anon_sym_BSLASH] = ACTIONS(1135), - [anon_sym_CARET] = ACTIONS(1127), - [anon_sym__] = ACTIONS(1129), - [anon_sym_BQUOTE] = ACTIONS(1129), - [anon_sym_LBRACE] = ACTIONS(1137), - [anon_sym_PIPE] = ACTIONS(1129), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1129), - [anon_sym_RPAREN] = ACTIONS(1129), - [sym__newline_token] = ACTIONS(1139), - [anon_sym_CARET_LBRACK] = ACTIONS(1141), - [anon_sym_LBRACK_CARET] = ACTIONS(1143), - [sym_uri_autolink] = ACTIONS(1125), - [sym_email_autolink] = ACTIONS(1125), - [sym__whitespace_ge_2] = ACTIONS(1145), - [aux_sym__whitespace_token1] = ACTIONS(1147), - [sym__word_no_digit] = ACTIONS(1149), - [sym__digits] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1151), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1149), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1149), - [sym__code_span_start] = ACTIONS(1153), - [sym__emphasis_open_star] = ACTIONS(1155), - [sym__emphasis_open_underscore] = ACTIONS(1157), - [sym__emphasis_close_underscore] = ACTIONS(2115), - [sym__strikeout_open] = ACTIONS(1161), - [sym__latex_span_start] = ACTIONS(1163), - [sym__single_quote_open] = ACTIONS(1165), - [sym__double_quote_open] = ACTIONS(1167), - [sym__superscript_open] = ACTIONS(1169), - [sym__subscript_open] = ACTIONS(1171), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1173), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1175), - [sym__cite_author_in_text] = ACTIONS(1177), - [sym__cite_suppress_author] = ACTIONS(1179), - [sym__shortcode_open_escaped] = ACTIONS(1181), - [sym__shortcode_open] = ACTIONS(1183), - [sym__unclosed_span] = ACTIONS(1125), + [sym_backslash_escape] = STATE(366), + [sym_commonmark_attribute] = STATE(366), + [sym_code_span] = STATE(366), + [sym_latex_span] = STATE(366), + [sym_insert] = STATE(366), + [sym_delete] = STATE(366), + [sym_highlight] = STATE(366), + [sym_edit_comment] = STATE(366), + [sym_superscript] = STATE(366), + [sym_subscript] = STATE(366), + [sym_strikeout] = STATE(366), + [sym_quoted_span] = STATE(366), + [sym_inline_note] = STATE(366), + [sym_citation] = STATE(366), + [sym_shortcode_escaped] = STATE(366), + [sym_shortcode] = STATE(366), + [sym_note_reference] = STATE(366), + [sym__link_text] = STATE(490), + [sym__link_text_non_empty] = STATE(491), + [sym_inline_link] = STATE(178), + [sym_image] = STATE(366), + [sym__image_inline_link] = STATE(1244), + [sym__image_description] = STATE(2280), + [sym__image_description_non_empty] = STATE(2280), + [sym_hard_line_break] = STATE(366), + [sym__whitespace] = STATE(1218), + [sym__word] = STATE(1218), + [sym__soft_line_break] = STATE(1245), + [sym__inline_base] = STATE(178), + [sym__text_base] = STATE(366), + [sym__inline_element] = STATE(178), + [sym__emphasis_star] = STATE(1270), + [sym__strong_emphasis_star] = STATE(178), + [sym__emphasis_underscore] = STATE(1270), + [sym__strong_emphasis_underscore] = STATE(178), + [aux_sym_insert_repeat1] = STATE(178), + [aux_sym__inline_base_repeat1] = STATE(366), + [sym__backslash_escape] = ACTIONS(2005), + [sym_entity_reference] = ACTIONS(2007), + [sym_numeric_character_reference] = ACTIONS(2007), + [anon_sym_LT] = ACTIONS(2009), + [anon_sym_GT] = ACTIONS(2011), + [anon_sym_BANG] = ACTIONS(2013), + [anon_sym_DQUOTE] = ACTIONS(2011), + [anon_sym_POUND] = ACTIONS(2011), + [anon_sym_DOLLAR] = ACTIONS(2011), + [anon_sym_PERCENT] = ACTIONS(2011), + [anon_sym_AMP] = ACTIONS(2009), + [anon_sym_SQUOTE] = ACTIONS(2011), + [anon_sym_STAR] = ACTIONS(2011), + [anon_sym_PLUS] = ACTIONS(2011), + [anon_sym_COMMA] = ACTIONS(2011), + [anon_sym_DASH] = ACTIONS(2009), + [anon_sym_DOT] = ACTIONS(2009), + [anon_sym_SLASH] = ACTIONS(2011), + [anon_sym_COLON] = ACTIONS(2011), + [anon_sym_SEMI] = ACTIONS(2011), + [anon_sym_EQ] = ACTIONS(2011), + [anon_sym_QMARK] = ACTIONS(2011), + [anon_sym_LBRACK] = ACTIONS(2015), + [anon_sym_BSLASH] = ACTIONS(2017), + [anon_sym_CARET] = ACTIONS(2009), + [anon_sym__] = ACTIONS(2011), + [anon_sym_BQUOTE] = ACTIONS(2011), + [anon_sym_LBRACE] = ACTIONS(2019), + [anon_sym_PIPE] = ACTIONS(2011), + [anon_sym_TILDE] = ACTIONS(2011), + [anon_sym_LPAREN] = ACTIONS(2011), + [anon_sym_RPAREN] = ACTIONS(2011), + [sym__newline_token] = ACTIONS(2021), + [aux_sym_insert_token1] = ACTIONS(2023), + [aux_sym_delete_token1] = ACTIONS(2025), + [aux_sym_highlight_token1] = ACTIONS(2027), + [aux_sym_edit_comment_token1] = ACTIONS(2029), + [anon_sym_CARET_LBRACK] = ACTIONS(2031), + [anon_sym_LBRACK_CARET] = ACTIONS(2033), + [sym_uri_autolink] = ACTIONS(2007), + [sym_email_autolink] = ACTIONS(2007), + [sym__whitespace_ge_2] = ACTIONS(2035), + [aux_sym__whitespace_token1] = ACTIONS(2037), + [sym__word_no_digit] = ACTIONS(2039), + [sym__digits] = ACTIONS(2039), + [anon_sym_DASH_DASH] = ACTIONS(2041), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2039), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2039), + [sym__code_span_start] = ACTIONS(2043), + [sym__emphasis_open_star] = ACTIONS(2045), + [sym__emphasis_open_underscore] = ACTIONS(2047), + [sym__strikeout_open] = ACTIONS(2049), + [sym__strikeout_close] = ACTIONS(2543), + [sym__latex_span_start] = ACTIONS(2053), + [sym__single_quote_open] = ACTIONS(2055), + [sym__double_quote_open] = ACTIONS(2057), + [sym__superscript_open] = ACTIONS(2059), + [sym__subscript_open] = ACTIONS(2061), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2063), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2065), + [sym__cite_author_in_text] = ACTIONS(2067), + [sym__cite_suppress_author] = ACTIONS(2069), + [sym__shortcode_open_escaped] = ACTIONS(2071), + [sym__shortcode_open] = ACTIONS(2073), + [sym__unclosed_span] = ACTIONS(2007), }, [STATE(167)] = { - [sym_backslash_escape] = STATE(266), - [sym_commonmark_attribute] = STATE(266), - [sym_code_span] = STATE(266), - [sym_latex_span] = STATE(266), - [sym_superscript] = STATE(266), - [sym_subscript] = STATE(266), - [sym_strikeout] = STATE(266), - [sym_quoted_span] = STATE(266), - [sym_inline_note] = STATE(266), - [sym_citation] = STATE(266), - [sym_shortcode_escaped] = STATE(266), - [sym_shortcode] = STATE(266), - [sym_note_reference] = STATE(266), - [sym__link_text] = STATE(375), - [sym__link_text_non_empty] = STATE(376), - [sym_inline_link] = STATE(42), - [sym_image] = STATE(266), - [sym__image_inline_link] = STATE(1042), - [sym__image_description] = STATE(2044), - [sym__image_description_non_empty] = STATE(2044), - [sym_hard_line_break] = STATE(266), - [sym__whitespace] = STATE(1040), - [sym__word] = STATE(1040), - [sym__soft_line_break] = STATE(1043), - [sym__inline_base] = STATE(42), - [sym__text_base] = STATE(266), - [sym__inline_element] = STATE(42), - [sym__emphasis_star] = STATE(602), - [sym__strong_emphasis_star] = STATE(42), - [sym__emphasis_underscore] = STATE(602), - [sym__strong_emphasis_underscore] = STATE(42), - [aux_sym_superscript_repeat1] = STATE(42), - [aux_sym__inline_base_repeat1] = STATE(266), - [sym__backslash_escape] = ACTIONS(559), - [sym_entity_reference] = ACTIONS(561), - [sym_numeric_character_reference] = ACTIONS(561), - [anon_sym_LT] = ACTIONS(563), - [anon_sym_GT] = ACTIONS(565), - [anon_sym_BANG] = ACTIONS(567), - [anon_sym_DQUOTE] = ACTIONS(565), - [anon_sym_POUND] = ACTIONS(565), - [anon_sym_DOLLAR] = ACTIONS(565), - [anon_sym_PERCENT] = ACTIONS(565), - [anon_sym_AMP] = ACTIONS(563), - [anon_sym_SQUOTE] = ACTIONS(565), - [anon_sym_STAR] = ACTIONS(565), - [anon_sym_PLUS] = ACTIONS(565), - [anon_sym_COMMA] = ACTIONS(565), - [anon_sym_DASH] = ACTIONS(563), - [anon_sym_DOT] = ACTIONS(563), - [anon_sym_SLASH] = ACTIONS(565), - [anon_sym_COLON] = ACTIONS(565), - [anon_sym_SEMI] = ACTIONS(565), - [anon_sym_EQ] = ACTIONS(565), - [anon_sym_QMARK] = ACTIONS(565), - [anon_sym_LBRACK] = ACTIONS(569), - [anon_sym_BSLASH] = ACTIONS(571), - [anon_sym_CARET] = ACTIONS(563), - [anon_sym__] = ACTIONS(565), - [anon_sym_BQUOTE] = ACTIONS(565), - [anon_sym_LBRACE] = ACTIONS(573), - [anon_sym_PIPE] = ACTIONS(565), - [anon_sym_TILDE] = ACTIONS(565), - [anon_sym_LPAREN] = ACTIONS(565), - [anon_sym_RPAREN] = ACTIONS(565), - [sym__newline_token] = ACTIONS(575), - [anon_sym_CARET_LBRACK] = ACTIONS(577), - [anon_sym_LBRACK_CARET] = ACTIONS(579), - [sym_uri_autolink] = ACTIONS(561), - [sym_email_autolink] = ACTIONS(561), - [sym__whitespace_ge_2] = ACTIONS(581), - [aux_sym__whitespace_token1] = ACTIONS(583), - [sym__word_no_digit] = ACTIONS(585), - [sym__digits] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(587), - [anon_sym_DASH_DASH_DASH] = ACTIONS(585), - [anon_sym_DOT_DOT_DOT] = ACTIONS(585), - [sym__code_span_start] = ACTIONS(589), - [sym__emphasis_open_star] = ACTIONS(591), - [sym__emphasis_open_underscore] = ACTIONS(593), - [sym__strikeout_open] = ACTIONS(595), - [sym__strikeout_close] = ACTIONS(2117), - [sym__latex_span_start] = ACTIONS(599), - [sym__single_quote_open] = ACTIONS(601), - [sym__double_quote_open] = ACTIONS(603), - [sym__superscript_open] = ACTIONS(605), - [sym__subscript_open] = ACTIONS(607), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(609), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(611), - [sym__cite_author_in_text] = ACTIONS(613), - [sym__cite_suppress_author] = ACTIONS(615), - [sym__shortcode_open_escaped] = ACTIONS(617), - [sym__shortcode_open] = ACTIONS(619), - [sym__unclosed_span] = ACTIONS(561), + [sym_backslash_escape] = STATE(375), + [sym_commonmark_attribute] = STATE(375), + [sym_code_span] = STATE(375), + [sym_latex_span] = STATE(375), + [sym_insert] = STATE(375), + [sym_delete] = STATE(375), + [sym_highlight] = STATE(375), + [sym_edit_comment] = STATE(375), + [sym_superscript] = STATE(375), + [sym_subscript] = STATE(375), + [sym_strikeout] = STATE(375), + [sym_quoted_span] = STATE(375), + [sym_inline_note] = STATE(375), + [sym_citation] = STATE(375), + [sym_shortcode_escaped] = STATE(375), + [sym_shortcode] = STATE(375), + [sym_note_reference] = STATE(375), + [sym__link_text] = STATE(525), + [sym__link_text_non_empty] = STATE(527), + [sym_inline_link] = STATE(179), + [sym_image] = STATE(375), + [sym__image_inline_link] = STATE(972), + [sym__image_description] = STATE(2286), + [sym__image_description_non_empty] = STATE(2286), + [sym_hard_line_break] = STATE(375), + [sym__whitespace] = STATE(949), + [sym__word] = STATE(949), + [sym__soft_line_break] = STATE(973), + [sym__inline_base] = STATE(179), + [sym__text_base] = STATE(375), + [sym__inline_element] = STATE(179), + [sym__emphasis_star] = STATE(1392), + [sym__strong_emphasis_star] = STATE(179), + [sym__emphasis_underscore] = STATE(1392), + [sym__strong_emphasis_underscore] = STATE(179), + [aux_sym_insert_repeat1] = STATE(179), + [aux_sym__inline_base_repeat1] = STATE(375), + [sym__backslash_escape] = ACTIONS(2179), + [sym_entity_reference] = ACTIONS(2181), + [sym_numeric_character_reference] = ACTIONS(2181), + [anon_sym_LT] = ACTIONS(2183), + [anon_sym_GT] = ACTIONS(2185), + [anon_sym_BANG] = ACTIONS(2187), + [anon_sym_DQUOTE] = ACTIONS(2185), + [anon_sym_POUND] = ACTIONS(2185), + [anon_sym_DOLLAR] = ACTIONS(2185), + [anon_sym_PERCENT] = ACTIONS(2185), + [anon_sym_AMP] = ACTIONS(2183), + [anon_sym_SQUOTE] = ACTIONS(2185), + [anon_sym_STAR] = ACTIONS(2185), + [anon_sym_PLUS] = ACTIONS(2185), + [anon_sym_COMMA] = ACTIONS(2185), + [anon_sym_DASH] = ACTIONS(2183), + [anon_sym_DOT] = ACTIONS(2183), + [anon_sym_SLASH] = ACTIONS(2185), + [anon_sym_COLON] = ACTIONS(2185), + [anon_sym_SEMI] = ACTIONS(2185), + [anon_sym_EQ] = ACTIONS(2185), + [anon_sym_QMARK] = ACTIONS(2185), + [anon_sym_LBRACK] = ACTIONS(2189), + [anon_sym_BSLASH] = ACTIONS(2191), + [anon_sym_CARET] = ACTIONS(2183), + [anon_sym__] = ACTIONS(2185), + [anon_sym_BQUOTE] = ACTIONS(2185), + [anon_sym_LBRACE] = ACTIONS(2193), + [anon_sym_PIPE] = ACTIONS(2185), + [anon_sym_TILDE] = ACTIONS(2185), + [anon_sym_LPAREN] = ACTIONS(2185), + [anon_sym_RPAREN] = ACTIONS(2185), + [sym__newline_token] = ACTIONS(2195), + [aux_sym_insert_token1] = ACTIONS(2197), + [aux_sym_delete_token1] = ACTIONS(2199), + [aux_sym_highlight_token1] = ACTIONS(2201), + [aux_sym_edit_comment_token1] = ACTIONS(2203), + [anon_sym_CARET_LBRACK] = ACTIONS(2205), + [anon_sym_LBRACK_CARET] = ACTIONS(2207), + [sym_uri_autolink] = ACTIONS(2181), + [sym_email_autolink] = ACTIONS(2181), + [sym__whitespace_ge_2] = ACTIONS(2209), + [aux_sym__whitespace_token1] = ACTIONS(2211), + [sym__word_no_digit] = ACTIONS(2213), + [sym__digits] = ACTIONS(2213), + [anon_sym_DASH_DASH] = ACTIONS(2215), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2213), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2213), + [sym__code_span_start] = ACTIONS(2217), + [sym__emphasis_open_star] = ACTIONS(2219), + [sym__emphasis_open_underscore] = ACTIONS(2221), + [sym__strikeout_open] = ACTIONS(2223), + [sym__latex_span_start] = ACTIONS(2225), + [sym__single_quote_open] = ACTIONS(2227), + [sym__single_quote_close] = ACTIONS(689), + [sym__double_quote_open] = ACTIONS(2229), + [sym__superscript_open] = ACTIONS(2231), + [sym__subscript_open] = ACTIONS(2233), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2235), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2237), + [sym__cite_author_in_text] = ACTIONS(2239), + [sym__cite_suppress_author] = ACTIONS(2241), + [sym__shortcode_open_escaped] = ACTIONS(2243), + [sym__shortcode_open] = ACTIONS(2245), + [sym__unclosed_span] = ACTIONS(2181), }, [STATE(168)] = { - [sym_backslash_escape] = STATE(272), - [sym_commonmark_attribute] = STATE(272), - [sym_code_span] = STATE(272), - [sym_latex_span] = STATE(272), - [sym_superscript] = STATE(272), - [sym_subscript] = STATE(272), - [sym_strikeout] = STATE(272), - [sym_quoted_span] = STATE(272), - [sym_inline_note] = STATE(272), - [sym_citation] = STATE(272), - [sym_shortcode_escaped] = STATE(272), - [sym_shortcode] = STATE(272), - [sym_note_reference] = STATE(272), - [sym__link_text] = STATE(401), - [sym__link_text_non_empty] = STATE(402), - [sym_inline_link] = STATE(49), - [sym_image] = STATE(272), - [sym__image_inline_link] = STATE(1136), - [sym__image_description] = STATE(1942), - [sym__image_description_non_empty] = STATE(1942), - [sym_hard_line_break] = STATE(272), - [sym__whitespace] = STATE(1133), - [sym__word] = STATE(1133), - [sym__soft_line_break] = STATE(1137), - [sym__inline_base] = STATE(49), - [sym__text_base] = STATE(272), - [sym__inline_element] = STATE(49), - [sym__emphasis_star] = STATE(902), - [sym__strong_emphasis_star] = STATE(49), - [sym__emphasis_underscore] = STATE(902), - [sym__strong_emphasis_underscore] = STATE(49), - [aux_sym_superscript_repeat1] = STATE(49), - [aux_sym__inline_base_repeat1] = STATE(272), - [sym__backslash_escape] = ACTIONS(625), - [sym_entity_reference] = ACTIONS(627), - [sym_numeric_character_reference] = ACTIONS(627), - [anon_sym_LT] = ACTIONS(629), - [anon_sym_GT] = ACTIONS(631), - [anon_sym_BANG] = ACTIONS(633), - [anon_sym_DQUOTE] = ACTIONS(631), - [anon_sym_POUND] = ACTIONS(631), - [anon_sym_DOLLAR] = ACTIONS(631), - [anon_sym_PERCENT] = ACTIONS(631), - [anon_sym_AMP] = ACTIONS(629), - [anon_sym_SQUOTE] = ACTIONS(631), - [anon_sym_STAR] = ACTIONS(631), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_COMMA] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(629), - [anon_sym_DOT] = ACTIONS(629), - [anon_sym_SLASH] = ACTIONS(631), - [anon_sym_COLON] = ACTIONS(631), - [anon_sym_SEMI] = ACTIONS(631), - [anon_sym_EQ] = ACTIONS(631), - [anon_sym_QMARK] = ACTIONS(631), - [anon_sym_LBRACK] = ACTIONS(635), - [anon_sym_BSLASH] = ACTIONS(637), - [anon_sym_CARET] = ACTIONS(629), - [anon_sym__] = ACTIONS(631), - [anon_sym_BQUOTE] = ACTIONS(631), - [anon_sym_LBRACE] = ACTIONS(639), - [anon_sym_PIPE] = ACTIONS(631), - [anon_sym_TILDE] = ACTIONS(631), - [anon_sym_LPAREN] = ACTIONS(631), - [anon_sym_RPAREN] = ACTIONS(631), - [sym__newline_token] = ACTIONS(641), - [anon_sym_CARET_LBRACK] = ACTIONS(643), - [anon_sym_LBRACK_CARET] = ACTIONS(645), - [sym_uri_autolink] = ACTIONS(627), - [sym_email_autolink] = ACTIONS(627), - [sym__whitespace_ge_2] = ACTIONS(647), - [aux_sym__whitespace_token1] = ACTIONS(649), - [sym__word_no_digit] = ACTIONS(651), - [sym__digits] = ACTIONS(651), - [anon_sym_DASH_DASH] = ACTIONS(653), - [anon_sym_DASH_DASH_DASH] = ACTIONS(651), - [anon_sym_DOT_DOT_DOT] = ACTIONS(651), - [sym__code_span_start] = ACTIONS(655), - [sym__emphasis_open_star] = ACTIONS(657), - [sym__emphasis_open_underscore] = ACTIONS(659), - [sym__strikeout_open] = ACTIONS(661), - [sym__latex_span_start] = ACTIONS(663), - [sym__single_quote_open] = ACTIONS(665), - [sym__single_quote_close] = ACTIONS(2119), - [sym__double_quote_open] = ACTIONS(669), - [sym__superscript_open] = ACTIONS(671), - [sym__subscript_open] = ACTIONS(673), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(675), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(677), - [sym__cite_author_in_text] = ACTIONS(679), - [sym__cite_suppress_author] = ACTIONS(681), - [sym__shortcode_open_escaped] = ACTIONS(683), - [sym__shortcode_open] = ACTIONS(685), - [sym__unclosed_span] = ACTIONS(627), - }, - [STATE(169)] = { - [sym_backslash_escape] = STATE(277), - [sym_commonmark_attribute] = STATE(277), - [sym_code_span] = STATE(277), - [sym_latex_span] = STATE(277), - [sym_superscript] = STATE(277), - [sym_subscript] = STATE(277), - [sym_strikeout] = STATE(277), - [sym_quoted_span] = STATE(277), - [sym_inline_note] = STATE(277), - [sym_citation] = STATE(277), - [sym_shortcode_escaped] = STATE(277), - [sym_shortcode] = STATE(277), - [sym_note_reference] = STATE(277), - [sym__link_text] = STATE(427), - [sym__link_text_non_empty] = STATE(428), + [sym_backslash_escape] = STATE(383), + [sym_commonmark_attribute] = STATE(383), + [sym_code_span] = STATE(383), + [sym_latex_span] = STATE(383), + [sym_insert] = STATE(383), + [sym_delete] = STATE(383), + [sym_highlight] = STATE(383), + [sym_edit_comment] = STATE(383), + [sym_superscript] = STATE(383), + [sym_subscript] = STATE(383), + [sym_strikeout] = STATE(383), + [sym_quoted_span] = STATE(383), + [sym_inline_note] = STATE(383), + [sym_citation] = STATE(383), + [sym_shortcode_escaped] = STATE(383), + [sym_shortcode] = STATE(383), + [sym_note_reference] = STATE(383), + [sym__link_text] = STATE(395), + [sym__link_text_non_empty] = STATE(396), [sym_inline_link] = STATE(50), - [sym_image] = STATE(277), - [sym__image_inline_link] = STATE(613), - [sym__image_description] = STATE(1930), - [sym__image_description_non_empty] = STATE(1930), - [sym_hard_line_break] = STATE(277), - [sym__whitespace] = STATE(610), - [sym__word] = STATE(610), - [sym__soft_line_break] = STATE(614), + [sym_image] = STATE(383), + [sym__image_inline_link] = STATE(1263), + [sym__image_description] = STATE(2300), + [sym__image_description_non_empty] = STATE(2300), + [sym_hard_line_break] = STATE(383), + [sym__whitespace] = STATE(1259), + [sym__word] = STATE(1259), + [sym__soft_line_break] = STATE(1264), [sym__inline_base] = STATE(50), - [sym__text_base] = STATE(277), + [sym__text_base] = STATE(383), [sym__inline_element] = STATE(50), - [sym__emphasis_star] = STATE(1044), + [sym__emphasis_star] = STATE(1249), [sym__strong_emphasis_star] = STATE(50), - [sym__emphasis_underscore] = STATE(1044), + [sym__emphasis_underscore] = STATE(1249), [sym__strong_emphasis_underscore] = STATE(50), - [aux_sym_superscript_repeat1] = STATE(50), - [aux_sym__inline_base_repeat1] = STATE(277), - [sym__backslash_escape] = ACTIONS(687), - [sym_entity_reference] = ACTIONS(689), - [sym_numeric_character_reference] = ACTIONS(689), - [anon_sym_LT] = ACTIONS(691), - [anon_sym_GT] = ACTIONS(693), - [anon_sym_BANG] = ACTIONS(695), - [anon_sym_DQUOTE] = ACTIONS(693), - [anon_sym_POUND] = ACTIONS(693), - [anon_sym_DOLLAR] = ACTIONS(693), - [anon_sym_PERCENT] = ACTIONS(693), - [anon_sym_AMP] = ACTIONS(691), - [anon_sym_SQUOTE] = ACTIONS(693), - [anon_sym_STAR] = ACTIONS(693), - [anon_sym_PLUS] = ACTIONS(693), - [anon_sym_COMMA] = ACTIONS(693), - [anon_sym_DASH] = ACTIONS(691), - [anon_sym_DOT] = ACTIONS(691), - [anon_sym_SLASH] = ACTIONS(693), - [anon_sym_COLON] = ACTIONS(693), - [anon_sym_SEMI] = ACTIONS(693), - [anon_sym_EQ] = ACTIONS(693), - [anon_sym_QMARK] = ACTIONS(693), - [anon_sym_LBRACK] = ACTIONS(697), - [anon_sym_BSLASH] = ACTIONS(699), - [anon_sym_CARET] = ACTIONS(691), - [anon_sym__] = ACTIONS(693), - [anon_sym_BQUOTE] = ACTIONS(693), - [anon_sym_LBRACE] = ACTIONS(701), - [anon_sym_PIPE] = ACTIONS(693), - [anon_sym_TILDE] = ACTIONS(693), - [anon_sym_LPAREN] = ACTIONS(693), - [anon_sym_RPAREN] = ACTIONS(693), - [sym__newline_token] = ACTIONS(703), - [anon_sym_CARET_LBRACK] = ACTIONS(705), - [anon_sym_LBRACK_CARET] = ACTIONS(707), - [sym_uri_autolink] = ACTIONS(689), - [sym_email_autolink] = ACTIONS(689), - [sym__whitespace_ge_2] = ACTIONS(709), - [aux_sym__whitespace_token1] = ACTIONS(711), - [sym__word_no_digit] = ACTIONS(713), - [sym__digits] = ACTIONS(713), - [anon_sym_DASH_DASH] = ACTIONS(715), - [anon_sym_DASH_DASH_DASH] = ACTIONS(713), - [anon_sym_DOT_DOT_DOT] = ACTIONS(713), - [sym__code_span_start] = ACTIONS(717), - [sym__emphasis_open_star] = ACTIONS(719), - [sym__emphasis_open_underscore] = ACTIONS(721), - [sym__strikeout_open] = ACTIONS(723), - [sym__latex_span_start] = ACTIONS(725), - [sym__single_quote_open] = ACTIONS(727), - [sym__double_quote_open] = ACTIONS(729), - [sym__double_quote_close] = ACTIONS(2119), - [sym__superscript_open] = ACTIONS(731), - [sym__subscript_open] = ACTIONS(733), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(735), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(737), - [sym__cite_author_in_text] = ACTIONS(739), - [sym__cite_suppress_author] = ACTIONS(741), - [sym__shortcode_open_escaped] = ACTIONS(743), - [sym__shortcode_open] = ACTIONS(745), - [sym__unclosed_span] = ACTIONS(689), + [aux_sym_insert_repeat1] = STATE(50), + [aux_sym__inline_base_repeat1] = STATE(383), + [sym__backslash_escape] = ACTIONS(637), + [sym_entity_reference] = ACTIONS(639), + [sym_numeric_character_reference] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_GT] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(645), + [anon_sym_DQUOTE] = ACTIONS(643), + [anon_sym_POUND] = ACTIONS(643), + [anon_sym_DOLLAR] = ACTIONS(643), + [anon_sym_PERCENT] = ACTIONS(643), + [anon_sym_AMP] = ACTIONS(641), + [anon_sym_SQUOTE] = ACTIONS(643), + [anon_sym_STAR] = ACTIONS(643), + [anon_sym_PLUS] = ACTIONS(643), + [anon_sym_COMMA] = ACTIONS(643), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_DOT] = ACTIONS(641), + [anon_sym_SLASH] = ACTIONS(643), + [anon_sym_COLON] = ACTIONS(643), + [anon_sym_SEMI] = ACTIONS(643), + [anon_sym_EQ] = ACTIONS(643), + [anon_sym_QMARK] = ACTIONS(643), + [anon_sym_LBRACK] = ACTIONS(647), + [anon_sym_BSLASH] = ACTIONS(649), + [anon_sym_CARET] = ACTIONS(641), + [anon_sym__] = ACTIONS(643), + [anon_sym_BQUOTE] = ACTIONS(643), + [anon_sym_LBRACE] = ACTIONS(651), + [anon_sym_PIPE] = ACTIONS(643), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_LPAREN] = ACTIONS(643), + [anon_sym_RPAREN] = ACTIONS(643), + [sym__newline_token] = ACTIONS(653), + [aux_sym_insert_token1] = ACTIONS(655), + [aux_sym_delete_token1] = ACTIONS(657), + [aux_sym_highlight_token1] = ACTIONS(659), + [aux_sym_edit_comment_token1] = ACTIONS(661), + [anon_sym_CARET_LBRACK] = ACTIONS(663), + [anon_sym_LBRACK_CARET] = ACTIONS(665), + [sym_uri_autolink] = ACTIONS(639), + [sym_email_autolink] = ACTIONS(639), + [sym__whitespace_ge_2] = ACTIONS(667), + [aux_sym__whitespace_token1] = ACTIONS(669), + [sym__word_no_digit] = ACTIONS(671), + [sym__digits] = ACTIONS(671), + [anon_sym_DASH_DASH] = ACTIONS(673), + [anon_sym_DASH_DASH_DASH] = ACTIONS(671), + [anon_sym_DOT_DOT_DOT] = ACTIONS(671), + [sym__code_span_start] = ACTIONS(675), + [sym__emphasis_open_star] = ACTIONS(677), + [sym__emphasis_open_underscore] = ACTIONS(679), + [sym__strikeout_open] = ACTIONS(681), + [sym__latex_span_start] = ACTIONS(683), + [sym__single_quote_open] = ACTIONS(685), + [sym__double_quote_open] = ACTIONS(687), + [sym__double_quote_close] = ACTIONS(2511), + [sym__superscript_open] = ACTIONS(691), + [sym__subscript_open] = ACTIONS(693), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(695), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(697), + [sym__cite_author_in_text] = ACTIONS(699), + [sym__cite_suppress_author] = ACTIONS(701), + [sym__shortcode_open_escaped] = ACTIONS(703), + [sym__shortcode_open] = ACTIONS(705), + [sym__unclosed_span] = ACTIONS(639), + }, + [STATE(169)] = { + [sym_backslash_escape] = STATE(365), + [sym_commonmark_attribute] = STATE(365), + [sym_code_span] = STATE(365), + [sym_latex_span] = STATE(365), + [sym_insert] = STATE(365), + [sym_delete] = STATE(365), + [sym_highlight] = STATE(365), + [sym_edit_comment] = STATE(365), + [sym_superscript] = STATE(365), + [sym_subscript] = STATE(365), + [sym_strikeout] = STATE(365), + [sym_quoted_span] = STATE(365), + [sym_inline_note] = STATE(365), + [sym_citation] = STATE(365), + [sym_shortcode_escaped] = STATE(365), + [sym_shortcode] = STATE(365), + [sym_note_reference] = STATE(365), + [sym__link_text] = STATE(416), + [sym__link_text_non_empty] = STATE(417), + [sym_inline_link] = STATE(181), + [sym_image] = STATE(365), + [sym__image_inline_link] = STATE(712), + [sym__image_description] = STATE(2314), + [sym__image_description_non_empty] = STATE(2314), + [sym_hard_line_break] = STATE(365), + [sym__whitespace] = STATE(709), + [sym__word] = STATE(709), + [sym__soft_line_break] = STATE(713), + [sym__inline_base] = STATE(181), + [sym__text_base] = STATE(365), + [sym__inline_element] = STATE(181), + [sym__emphasis_star] = STATE(979), + [sym__strong_emphasis_star] = STATE(181), + [sym__emphasis_underscore] = STATE(979), + [sym__strong_emphasis_underscore] = STATE(181), + [aux_sym_insert_repeat1] = STATE(181), + [aux_sym__inline_base_repeat1] = STATE(365), + [sym__backslash_escape] = ACTIONS(1341), + [sym_entity_reference] = ACTIONS(1343), + [sym_numeric_character_reference] = ACTIONS(1343), + [anon_sym_LT] = ACTIONS(1345), + [anon_sym_GT] = ACTIONS(1347), + [anon_sym_BANG] = ACTIONS(1349), + [anon_sym_DQUOTE] = ACTIONS(1347), + [anon_sym_POUND] = ACTIONS(1347), + [anon_sym_DOLLAR] = ACTIONS(1347), + [anon_sym_PERCENT] = ACTIONS(1347), + [anon_sym_AMP] = ACTIONS(1345), + [anon_sym_SQUOTE] = ACTIONS(1347), + [anon_sym_STAR] = ACTIONS(1347), + [anon_sym_PLUS] = ACTIONS(1347), + [anon_sym_COMMA] = ACTIONS(1347), + [anon_sym_DASH] = ACTIONS(1345), + [anon_sym_DOT] = ACTIONS(1345), + [anon_sym_SLASH] = ACTIONS(1347), + [anon_sym_COLON] = ACTIONS(1347), + [anon_sym_SEMI] = ACTIONS(1347), + [anon_sym_EQ] = ACTIONS(1347), + [anon_sym_QMARK] = ACTIONS(1347), + [anon_sym_LBRACK] = ACTIONS(1351), + [anon_sym_BSLASH] = ACTIONS(1353), + [anon_sym_CARET] = ACTIONS(1345), + [anon_sym__] = ACTIONS(1347), + [anon_sym_BQUOTE] = ACTIONS(1347), + [anon_sym_LBRACE] = ACTIONS(1355), + [anon_sym_PIPE] = ACTIONS(1347), + [anon_sym_TILDE] = ACTIONS(1347), + [anon_sym_LPAREN] = ACTIONS(1347), + [anon_sym_RPAREN] = ACTIONS(1347), + [sym__newline_token] = ACTIONS(1357), + [aux_sym_insert_token1] = ACTIONS(1359), + [aux_sym_delete_token1] = ACTIONS(1361), + [aux_sym_highlight_token1] = ACTIONS(1363), + [aux_sym_edit_comment_token1] = ACTIONS(1365), + [anon_sym_CARET_LBRACK] = ACTIONS(1367), + [anon_sym_LBRACK_CARET] = ACTIONS(1369), + [sym_uri_autolink] = ACTIONS(1343), + [sym_email_autolink] = ACTIONS(1343), + [sym__whitespace_ge_2] = ACTIONS(1371), + [aux_sym__whitespace_token1] = ACTIONS(1373), + [sym__word_no_digit] = ACTIONS(1375), + [sym__digits] = ACTIONS(1375), + [anon_sym_DASH_DASH] = ACTIONS(1377), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1375), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1375), + [sym__code_span_start] = ACTIONS(1379), + [sym__emphasis_open_star] = ACTIONS(1381), + [sym__emphasis_open_underscore] = ACTIONS(1383), + [sym__strikeout_open] = ACTIONS(1385), + [sym__latex_span_start] = ACTIONS(1387), + [sym__single_quote_open] = ACTIONS(1389), + [sym__double_quote_open] = ACTIONS(1391), + [sym__superscript_open] = ACTIONS(1393), + [sym__superscript_close] = ACTIONS(2545), + [sym__subscript_open] = ACTIONS(1397), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1399), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1401), + [sym__cite_author_in_text] = ACTIONS(1403), + [sym__cite_suppress_author] = ACTIONS(1405), + [sym__shortcode_open_escaped] = ACTIONS(1407), + [sym__shortcode_open] = ACTIONS(1409), + [sym__unclosed_span] = ACTIONS(1343), }, [STATE(170)] = { - [sym_backslash_escape] = STATE(262), - [sym_commonmark_attribute] = STATE(262), - [sym_code_span] = STATE(262), - [sym_latex_span] = STATE(262), - [sym_superscript] = STATE(262), - [sym_subscript] = STATE(262), - [sym_strikeout] = STATE(262), - [sym_quoted_span] = STATE(262), - [sym_inline_note] = STATE(262), - [sym_citation] = STATE(262), - [sym_shortcode_escaped] = STATE(262), - [sym_shortcode] = STATE(262), - [sym_note_reference] = STATE(262), - [sym__link_text] = STATE(313), - [sym__link_text_non_empty] = STATE(314), - [sym_inline_link] = STATE(51), - [sym_image] = STATE(262), - [sym__image_inline_link] = STATE(708), - [sym__image_description] = STATE(1970), - [sym__image_description_non_empty] = STATE(1970), - [sym_hard_line_break] = STATE(262), - [sym__whitespace] = STATE(705), - [sym__word] = STATE(705), - [sym__soft_line_break] = STATE(709), - [sym__inline_base] = STATE(51), - [sym__text_base] = STATE(262), - [sym__inline_element] = STATE(51), - [sym__emphasis_star] = STATE(1138), - [sym__strong_emphasis_star] = STATE(51), - [sym__emphasis_underscore] = STATE(1138), - [sym__strong_emphasis_underscore] = STATE(51), - [aux_sym_superscript_repeat1] = STATE(51), - [aux_sym__inline_base_repeat1] = STATE(262), - [sym__backslash_escape] = ACTIONS(747), - [sym_entity_reference] = ACTIONS(749), - [sym_numeric_character_reference] = ACTIONS(749), - [anon_sym_LT] = ACTIONS(751), - [anon_sym_GT] = ACTIONS(753), - [anon_sym_BANG] = ACTIONS(755), - [anon_sym_DQUOTE] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(753), - [anon_sym_DOLLAR] = ACTIONS(753), - [anon_sym_PERCENT] = ACTIONS(753), - [anon_sym_AMP] = ACTIONS(751), - [anon_sym_SQUOTE] = ACTIONS(753), - [anon_sym_STAR] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(753), - [anon_sym_COMMA] = ACTIONS(753), - [anon_sym_DASH] = ACTIONS(751), - [anon_sym_DOT] = ACTIONS(751), - [anon_sym_SLASH] = ACTIONS(753), - [anon_sym_COLON] = ACTIONS(753), - [anon_sym_SEMI] = ACTIONS(753), - [anon_sym_EQ] = ACTIONS(753), - [anon_sym_QMARK] = ACTIONS(753), - [anon_sym_LBRACK] = ACTIONS(757), - [anon_sym_BSLASH] = ACTIONS(759), - [anon_sym_CARET] = ACTIONS(751), - [anon_sym__] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(753), - [anon_sym_LBRACE] = ACTIONS(761), - [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_TILDE] = ACTIONS(753), - [anon_sym_LPAREN] = ACTIONS(753), - [anon_sym_RPAREN] = ACTIONS(753), - [sym__newline_token] = ACTIONS(763), - [anon_sym_CARET_LBRACK] = ACTIONS(765), - [anon_sym_LBRACK_CARET] = ACTIONS(767), - [sym_uri_autolink] = ACTIONS(749), - [sym_email_autolink] = ACTIONS(749), - [sym__whitespace_ge_2] = ACTIONS(769), - [aux_sym__whitespace_token1] = ACTIONS(771), - [sym__word_no_digit] = ACTIONS(773), - [sym__digits] = ACTIONS(773), - [anon_sym_DASH_DASH] = ACTIONS(775), - [anon_sym_DASH_DASH_DASH] = ACTIONS(773), - [anon_sym_DOT_DOT_DOT] = ACTIONS(773), - [sym__code_span_start] = ACTIONS(777), - [sym__emphasis_open_star] = ACTIONS(779), - [sym__emphasis_open_underscore] = ACTIONS(781), - [sym__strikeout_open] = ACTIONS(783), - [sym__latex_span_start] = ACTIONS(785), - [sym__single_quote_open] = ACTIONS(787), - [sym__double_quote_open] = ACTIONS(789), - [sym__superscript_open] = ACTIONS(791), - [sym__superscript_close] = ACTIONS(2121), - [sym__subscript_open] = ACTIONS(795), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(797), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(799), - [sym__cite_author_in_text] = ACTIONS(801), - [sym__cite_suppress_author] = ACTIONS(803), - [sym__shortcode_open_escaped] = ACTIONS(805), - [sym__shortcode_open] = ACTIONS(807), - [sym__unclosed_span] = ACTIONS(749), + [sym_backslash_escape] = STATE(367), + [sym_commonmark_attribute] = STATE(367), + [sym_code_span] = STATE(367), + [sym_latex_span] = STATE(367), + [sym_insert] = STATE(367), + [sym_delete] = STATE(367), + [sym_highlight] = STATE(367), + [sym_edit_comment] = STATE(367), + [sym_superscript] = STATE(367), + [sym_subscript] = STATE(367), + [sym_strikeout] = STATE(367), + [sym_quoted_span] = STATE(367), + [sym_inline_note] = STATE(367), + [sym_citation] = STATE(367), + [sym_shortcode_escaped] = STATE(367), + [sym_shortcode] = STATE(367), + [sym_note_reference] = STATE(367), + [sym__link_text] = STATE(435), + [sym__link_text_non_empty] = STATE(436), + [sym_inline_link] = STATE(182), + [sym_image] = STATE(367), + [sym__image_inline_link] = STATE(819), + [sym__image_description] = STATE(2328), + [sym__image_description_non_empty] = STATE(2328), + [sym_hard_line_break] = STATE(367), + [sym__whitespace] = STATE(816), + [sym__word] = STATE(816), + [sym__soft_line_break] = STATE(820), + [sym__inline_base] = STATE(182), + [sym__text_base] = STATE(367), + [sym__inline_element] = STATE(182), + [sym__emphasis_star] = STATE(1271), + [sym__strong_emphasis_star] = STATE(182), + [sym__emphasis_underscore] = STATE(1271), + [sym__strong_emphasis_underscore] = STATE(182), + [aux_sym_insert_repeat1] = STATE(182), + [aux_sym__inline_base_repeat1] = STATE(367), + [sym__backslash_escape] = ACTIONS(1413), + [sym_entity_reference] = ACTIONS(1415), + [sym_numeric_character_reference] = ACTIONS(1415), + [anon_sym_LT] = ACTIONS(1417), + [anon_sym_GT] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1419), + [anon_sym_POUND] = ACTIONS(1419), + [anon_sym_DOLLAR] = ACTIONS(1419), + [anon_sym_PERCENT] = ACTIONS(1419), + [anon_sym_AMP] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [anon_sym_STAR] = ACTIONS(1419), + [anon_sym_PLUS] = ACTIONS(1419), + [anon_sym_COMMA] = ACTIONS(1419), + [anon_sym_DASH] = ACTIONS(1417), + [anon_sym_DOT] = ACTIONS(1417), + [anon_sym_SLASH] = ACTIONS(1419), + [anon_sym_COLON] = ACTIONS(1419), + [anon_sym_SEMI] = ACTIONS(1419), + [anon_sym_EQ] = ACTIONS(1419), + [anon_sym_QMARK] = ACTIONS(1419), + [anon_sym_LBRACK] = ACTIONS(1423), + [anon_sym_BSLASH] = ACTIONS(1425), + [anon_sym_CARET] = ACTIONS(1417), + [anon_sym__] = ACTIONS(1419), + [anon_sym_BQUOTE] = ACTIONS(1419), + [anon_sym_LBRACE] = ACTIONS(1427), + [anon_sym_PIPE] = ACTIONS(1419), + [anon_sym_TILDE] = ACTIONS(1419), + [anon_sym_LPAREN] = ACTIONS(1419), + [anon_sym_RPAREN] = ACTIONS(1419), + [sym__newline_token] = ACTIONS(1429), + [aux_sym_insert_token1] = ACTIONS(1431), + [aux_sym_delete_token1] = ACTIONS(1433), + [aux_sym_highlight_token1] = ACTIONS(1435), + [aux_sym_edit_comment_token1] = ACTIONS(1437), + [anon_sym_CARET_LBRACK] = ACTIONS(1439), + [anon_sym_LBRACK_CARET] = ACTIONS(1441), + [sym_uri_autolink] = ACTIONS(1415), + [sym_email_autolink] = ACTIONS(1415), + [sym__whitespace_ge_2] = ACTIONS(1443), + [aux_sym__whitespace_token1] = ACTIONS(1445), + [sym__word_no_digit] = ACTIONS(1447), + [sym__digits] = ACTIONS(1447), + [anon_sym_DASH_DASH] = ACTIONS(1449), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1447), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1447), + [sym__code_span_start] = ACTIONS(1451), + [sym__emphasis_open_star] = ACTIONS(1453), + [sym__emphasis_open_underscore] = ACTIONS(1455), + [sym__strikeout_open] = ACTIONS(1457), + [sym__latex_span_start] = ACTIONS(1459), + [sym__single_quote_open] = ACTIONS(1461), + [sym__double_quote_open] = ACTIONS(1463), + [sym__superscript_open] = ACTIONS(1465), + [sym__subscript_open] = ACTIONS(1467), + [sym__subscript_close] = ACTIONS(2547), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1471), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1473), + [sym__cite_author_in_text] = ACTIONS(1475), + [sym__cite_suppress_author] = ACTIONS(1477), + [sym__shortcode_open_escaped] = ACTIONS(1479), + [sym__shortcode_open] = ACTIONS(1481), + [sym__unclosed_span] = ACTIONS(1415), }, [STATE(171)] = { - [sym_backslash_escape] = STATE(270), - [sym_commonmark_attribute] = STATE(270), - [sym_code_span] = STATE(270), - [sym_latex_span] = STATE(270), - [sym_superscript] = STATE(270), - [sym_subscript] = STATE(270), - [sym_strikeout] = STATE(270), - [sym_quoted_span] = STATE(270), - [sym_inline_note] = STATE(270), - [sym_citation] = STATE(270), - [sym_shortcode_escaped] = STATE(270), - [sym_shortcode] = STATE(270), - [sym_note_reference] = STATE(270), - [sym__link_text] = STATE(359), - [sym__link_text_non_empty] = STATE(364), - [sym_inline_link] = STATE(52), - [sym_image] = STATE(270), - [sym__image_inline_link] = STATE(795), - [sym__image_description] = STATE(1984), - [sym__image_description_non_empty] = STATE(1984), - [sym_hard_line_break] = STATE(270), - [sym__whitespace] = STATE(792), - [sym__word] = STATE(792), - [sym__soft_line_break] = STATE(796), - [sym__inline_base] = STATE(52), - [sym__text_base] = STATE(270), - [sym__inline_element] = STATE(52), - [sym__emphasis_star] = STATE(615), - [sym__strong_emphasis_star] = STATE(52), - [sym__emphasis_underscore] = STATE(615), - [sym__strong_emphasis_underscore] = STATE(52), - [aux_sym_superscript_repeat1] = STATE(52), - [aux_sym__inline_base_repeat1] = STATE(270), - [sym__backslash_escape] = ACTIONS(809), - [sym_entity_reference] = ACTIONS(811), - [sym_numeric_character_reference] = ACTIONS(811), - [anon_sym_LT] = ACTIONS(813), - [anon_sym_GT] = ACTIONS(815), - [anon_sym_BANG] = ACTIONS(817), - [anon_sym_DQUOTE] = ACTIONS(815), - [anon_sym_POUND] = ACTIONS(815), - [anon_sym_DOLLAR] = ACTIONS(815), - [anon_sym_PERCENT] = ACTIONS(815), - [anon_sym_AMP] = ACTIONS(813), - [anon_sym_SQUOTE] = ACTIONS(815), - [anon_sym_STAR] = ACTIONS(815), - [anon_sym_PLUS] = ACTIONS(815), - [anon_sym_COMMA] = ACTIONS(815), - [anon_sym_DASH] = ACTIONS(813), - [anon_sym_DOT] = ACTIONS(813), - [anon_sym_SLASH] = ACTIONS(815), - [anon_sym_COLON] = ACTIONS(815), - [anon_sym_SEMI] = ACTIONS(815), - [anon_sym_EQ] = ACTIONS(815), - [anon_sym_QMARK] = ACTIONS(815), - [anon_sym_LBRACK] = ACTIONS(819), - [anon_sym_BSLASH] = ACTIONS(821), - [anon_sym_CARET] = ACTIONS(813), - [anon_sym__] = ACTIONS(815), - [anon_sym_BQUOTE] = ACTIONS(815), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_PIPE] = ACTIONS(815), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_RPAREN] = ACTIONS(815), - [sym__newline_token] = ACTIONS(825), - [anon_sym_CARET_LBRACK] = ACTIONS(827), - [anon_sym_LBRACK_CARET] = ACTIONS(829), - [sym_uri_autolink] = ACTIONS(811), - [sym_email_autolink] = ACTIONS(811), - [sym__whitespace_ge_2] = ACTIONS(831), - [aux_sym__whitespace_token1] = ACTIONS(833), - [sym__word_no_digit] = ACTIONS(835), - [sym__digits] = ACTIONS(835), - [anon_sym_DASH_DASH] = ACTIONS(837), - [anon_sym_DASH_DASH_DASH] = ACTIONS(835), - [anon_sym_DOT_DOT_DOT] = ACTIONS(835), - [sym__code_span_start] = ACTIONS(839), - [sym__emphasis_open_star] = ACTIONS(841), - [sym__emphasis_open_underscore] = ACTIONS(843), - [sym__strikeout_open] = ACTIONS(845), - [sym__latex_span_start] = ACTIONS(847), - [sym__single_quote_open] = ACTIONS(849), - [sym__double_quote_open] = ACTIONS(851), - [sym__superscript_open] = ACTIONS(853), - [sym__subscript_open] = ACTIONS(855), - [sym__subscript_close] = ACTIONS(2123), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(859), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(861), - [sym__cite_author_in_text] = ACTIONS(863), - [sym__cite_suppress_author] = ACTIONS(865), - [sym__shortcode_open_escaped] = ACTIONS(867), - [sym__shortcode_open] = ACTIONS(869), - [sym__unclosed_span] = ACTIONS(811), + [sym_backslash_escape] = STATE(372), + [sym_commonmark_attribute] = STATE(372), + [sym_code_span] = STATE(372), + [sym_latex_span] = STATE(372), + [sym_insert] = STATE(372), + [sym_delete] = STATE(372), + [sym_highlight] = STATE(372), + [sym_edit_comment] = STATE(372), + [sym_superscript] = STATE(372), + [sym_subscript] = STATE(372), + [sym_strikeout] = STATE(372), + [sym_quoted_span] = STATE(372), + [sym_inline_note] = STATE(372), + [sym_citation] = STATE(372), + [sym_shortcode_escaped] = STATE(372), + [sym_shortcode] = STATE(372), + [sym_note_reference] = STATE(372), + [sym__link_text] = STATE(454), + [sym__link_text_non_empty] = STATE(455), + [sym_inline_link] = STATE(296), + [sym_image] = STATE(372), + [sym__image_inline_link] = STATE(1025), + [sym__image_description] = STATE(2356), + [sym__image_description_non_empty] = STATE(2356), + [sym_hard_line_break] = STATE(372), + [sym__whitespace] = STATE(1022), + [sym__word] = STATE(1022), + [sym__soft_line_break] = STATE(1026), + [sym__inline_base] = STATE(296), + [sym__text_base] = STATE(372), + [sym__inline_element] = STATE(296), + [sym__emphasis_star] = STATE(714), + [sym__strong_emphasis_star] = STATE(296), + [sym__emphasis_underscore] = STATE(714), + [sym__strong_emphasis_underscore] = STATE(296), + [aux_sym_insert_repeat1] = STATE(296), + [aux_sym__inline_base_repeat1] = STATE(372), + [sym__backslash_escape] = ACTIONS(707), + [sym_entity_reference] = ACTIONS(709), + [sym_numeric_character_reference] = ACTIONS(709), + [anon_sym_LT] = ACTIONS(711), + [anon_sym_GT] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(715), + [anon_sym_DQUOTE] = ACTIONS(713), + [anon_sym_POUND] = ACTIONS(713), + [anon_sym_DOLLAR] = ACTIONS(713), + [anon_sym_PERCENT] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(711), + [anon_sym_SQUOTE] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_COMMA] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_DOT] = ACTIONS(711), + [anon_sym_SLASH] = ACTIONS(713), + [anon_sym_COLON] = ACTIONS(713), + [anon_sym_SEMI] = ACTIONS(713), + [anon_sym_EQ] = ACTIONS(713), + [anon_sym_QMARK] = ACTIONS(713), + [anon_sym_LBRACK] = ACTIONS(717), + [anon_sym_BSLASH] = ACTIONS(719), + [anon_sym_CARET] = ACTIONS(711), + [anon_sym__] = ACTIONS(713), + [anon_sym_BQUOTE] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(721), + [anon_sym_PIPE] = ACTIONS(713), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_LPAREN] = ACTIONS(713), + [anon_sym_RPAREN] = ACTIONS(713), + [sym__newline_token] = ACTIONS(723), + [aux_sym_insert_token1] = ACTIONS(725), + [aux_sym_insert_token2] = ACTIONS(2549), + [aux_sym_delete_token1] = ACTIONS(729), + [aux_sym_highlight_token1] = ACTIONS(731), + [aux_sym_edit_comment_token1] = ACTIONS(733), + [anon_sym_CARET_LBRACK] = ACTIONS(735), + [anon_sym_LBRACK_CARET] = ACTIONS(737), + [sym_uri_autolink] = ACTIONS(709), + [sym_email_autolink] = ACTIONS(709), + [sym__whitespace_ge_2] = ACTIONS(739), + [aux_sym__whitespace_token1] = ACTIONS(741), + [sym__word_no_digit] = ACTIONS(743), + [sym__digits] = ACTIONS(743), + [anon_sym_DASH_DASH] = ACTIONS(745), + [anon_sym_DASH_DASH_DASH] = ACTIONS(743), + [anon_sym_DOT_DOT_DOT] = ACTIONS(743), + [sym__code_span_start] = ACTIONS(747), + [sym__emphasis_open_star] = ACTIONS(749), + [sym__emphasis_open_underscore] = ACTIONS(751), + [sym__strikeout_open] = ACTIONS(753), + [sym__latex_span_start] = ACTIONS(755), + [sym__single_quote_open] = ACTIONS(757), + [sym__double_quote_open] = ACTIONS(759), + [sym__superscript_open] = ACTIONS(761), + [sym__subscript_open] = ACTIONS(763), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(765), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(767), + [sym__cite_author_in_text] = ACTIONS(769), + [sym__cite_suppress_author] = ACTIONS(771), + [sym__shortcode_open_escaped] = ACTIONS(773), + [sym__shortcode_open] = ACTIONS(775), + [sym__unclosed_span] = ACTIONS(709), }, [STATE(172)] = { - [sym_backslash_escape] = STATE(271), - [sym_commonmark_attribute] = STATE(271), - [sym_code_span] = STATE(271), - [sym_latex_span] = STATE(271), - [sym_superscript] = STATE(271), - [sym_subscript] = STATE(271), - [sym_strikeout] = STATE(271), - [sym_quoted_span] = STATE(271), - [sym_inline_note] = STATE(271), - [sym_citation] = STATE(271), - [sym_shortcode_escaped] = STATE(271), - [sym_shortcode] = STATE(271), - [sym_note_reference] = STATE(271), - [sym__link_text] = STATE(424), - [sym__link_text_non_empty] = STATE(425), - [sym_inline_link] = STATE(176), - [sym_image] = STATE(271), - [sym__image_inline_link] = STATE(883), - [sym__image_description] = STATE(1998), - [sym__image_description_non_empty] = STATE(1998), - [sym_hard_line_break] = STATE(271), - [sym__whitespace] = STATE(881), - [sym__word] = STATE(881), - [sym__soft_line_break] = STATE(884), - [sym__inline_base] = STATE(176), - [sym__text_base] = STATE(271), - [sym__inline_element] = STATE(176), - [sym__emphasis_star] = STATE(710), - [sym__strong_emphasis_star] = STATE(176), - [sym__emphasis_underscore] = STATE(710), - [sym__strong_emphasis_underscore] = STATE(176), - [aux_sym_superscript_repeat1] = STATE(176), - [aux_sym__inline_base_repeat1] = STATE(271), - [sym__backslash_escape] = ACTIONS(159), - [sym_entity_reference] = ACTIONS(161), - [sym_numeric_character_reference] = ACTIONS(161), - [anon_sym_LT] = ACTIONS(163), - [anon_sym_GT] = ACTIONS(165), - [anon_sym_BANG] = ACTIONS(167), - [anon_sym_DQUOTE] = ACTIONS(165), - [anon_sym_POUND] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(165), - [anon_sym_PERCENT] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_SQUOTE] = ACTIONS(165), - [anon_sym_STAR] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(165), - [anon_sym_COMMA] = ACTIONS(165), - [anon_sym_DASH] = ACTIONS(163), - [anon_sym_DOT] = ACTIONS(163), - [anon_sym_SLASH] = ACTIONS(165), - [anon_sym_COLON] = ACTIONS(165), - [anon_sym_SEMI] = ACTIONS(165), - [anon_sym_EQ] = ACTIONS(165), - [anon_sym_QMARK] = ACTIONS(165), - [anon_sym_LBRACK] = ACTIONS(169), - [anon_sym_BSLASH] = ACTIONS(171), - [anon_sym_RBRACK] = ACTIONS(2125), - [anon_sym_CARET] = ACTIONS(163), - [anon_sym__] = ACTIONS(165), - [anon_sym_BQUOTE] = ACTIONS(165), - [anon_sym_LBRACE] = ACTIONS(175), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(165), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_RPAREN] = ACTIONS(165), - [sym__newline_token] = ACTIONS(177), - [anon_sym_CARET_LBRACK] = ACTIONS(179), - [anon_sym_LBRACK_CARET] = ACTIONS(181), - [sym_uri_autolink] = ACTIONS(161), - [sym_email_autolink] = ACTIONS(161), - [sym__whitespace_ge_2] = ACTIONS(183), - [aux_sym__whitespace_token1] = ACTIONS(185), - [sym__word_no_digit] = ACTIONS(187), - [sym__digits] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_DASH_DASH_DASH] = ACTIONS(187), - [anon_sym_DOT_DOT_DOT] = ACTIONS(187), - [sym__code_span_start] = ACTIONS(191), - [sym__emphasis_open_star] = ACTIONS(193), - [sym__emphasis_open_underscore] = ACTIONS(195), - [sym__strikeout_open] = ACTIONS(199), - [sym__latex_span_start] = ACTIONS(201), - [sym__single_quote_open] = ACTIONS(203), - [sym__double_quote_open] = ACTIONS(205), - [sym__superscript_open] = ACTIONS(207), - [sym__subscript_open] = ACTIONS(209), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(211), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(213), - [sym__cite_author_in_text] = ACTIONS(215), - [sym__cite_suppress_author] = ACTIONS(217), - [sym__shortcode_open_escaped] = ACTIONS(219), - [sym__shortcode_open] = ACTIONS(221), - [sym__unclosed_span] = ACTIONS(161), + [sym_backslash_escape] = STATE(372), + [sym_commonmark_attribute] = STATE(372), + [sym_code_span] = STATE(372), + [sym_latex_span] = STATE(372), + [sym_insert] = STATE(372), + [sym_delete] = STATE(372), + [sym_highlight] = STATE(372), + [sym_edit_comment] = STATE(372), + [sym_superscript] = STATE(372), + [sym_subscript] = STATE(372), + [sym_strikeout] = STATE(372), + [sym_quoted_span] = STATE(372), + [sym_inline_note] = STATE(372), + [sym_citation] = STATE(372), + [sym_shortcode_escaped] = STATE(372), + [sym_shortcode] = STATE(372), + [sym_note_reference] = STATE(372), + [sym__link_text] = STATE(454), + [sym__link_text_non_empty] = STATE(455), + [sym_inline_link] = STATE(184), + [sym_image] = STATE(372), + [sym__image_inline_link] = STATE(1025), + [sym__image_description] = STATE(2356), + [sym__image_description_non_empty] = STATE(2356), + [sym_hard_line_break] = STATE(372), + [sym__whitespace] = STATE(1022), + [sym__word] = STATE(1022), + [sym__soft_line_break] = STATE(1026), + [sym__inline_base] = STATE(184), + [sym__text_base] = STATE(372), + [sym__inline_element] = STATE(184), + [sym__emphasis_star] = STATE(714), + [sym__strong_emphasis_star] = STATE(184), + [sym__emphasis_underscore] = STATE(714), + [sym__strong_emphasis_underscore] = STATE(184), + [aux_sym_insert_repeat1] = STATE(184), + [aux_sym__inline_base_repeat1] = STATE(372), + [sym__backslash_escape] = ACTIONS(707), + [sym_entity_reference] = ACTIONS(709), + [sym_numeric_character_reference] = ACTIONS(709), + [anon_sym_LT] = ACTIONS(711), + [anon_sym_GT] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(715), + [anon_sym_DQUOTE] = ACTIONS(713), + [anon_sym_POUND] = ACTIONS(713), + [anon_sym_DOLLAR] = ACTIONS(713), + [anon_sym_PERCENT] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(711), + [anon_sym_SQUOTE] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_COMMA] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_DOT] = ACTIONS(711), + [anon_sym_SLASH] = ACTIONS(713), + [anon_sym_COLON] = ACTIONS(713), + [anon_sym_SEMI] = ACTIONS(713), + [anon_sym_EQ] = ACTIONS(713), + [anon_sym_QMARK] = ACTIONS(713), + [anon_sym_LBRACK] = ACTIONS(717), + [anon_sym_BSLASH] = ACTIONS(719), + [anon_sym_CARET] = ACTIONS(711), + [anon_sym__] = ACTIONS(713), + [anon_sym_BQUOTE] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(721), + [anon_sym_PIPE] = ACTIONS(713), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_LPAREN] = ACTIONS(713), + [anon_sym_RPAREN] = ACTIONS(713), + [sym__newline_token] = ACTIONS(723), + [aux_sym_insert_token1] = ACTIONS(725), + [aux_sym_insert_token2] = ACTIONS(2551), + [aux_sym_delete_token1] = ACTIONS(729), + [aux_sym_highlight_token1] = ACTIONS(731), + [aux_sym_edit_comment_token1] = ACTIONS(733), + [anon_sym_CARET_LBRACK] = ACTIONS(735), + [anon_sym_LBRACK_CARET] = ACTIONS(737), + [sym_uri_autolink] = ACTIONS(709), + [sym_email_autolink] = ACTIONS(709), + [sym__whitespace_ge_2] = ACTIONS(739), + [aux_sym__whitespace_token1] = ACTIONS(741), + [sym__word_no_digit] = ACTIONS(743), + [sym__digits] = ACTIONS(743), + [anon_sym_DASH_DASH] = ACTIONS(745), + [anon_sym_DASH_DASH_DASH] = ACTIONS(743), + [anon_sym_DOT_DOT_DOT] = ACTIONS(743), + [sym__code_span_start] = ACTIONS(747), + [sym__emphasis_open_star] = ACTIONS(749), + [sym__emphasis_open_underscore] = ACTIONS(751), + [sym__strikeout_open] = ACTIONS(753), + [sym__latex_span_start] = ACTIONS(755), + [sym__single_quote_open] = ACTIONS(757), + [sym__double_quote_open] = ACTIONS(759), + [sym__superscript_open] = ACTIONS(761), + [sym__subscript_open] = ACTIONS(763), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(765), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(767), + [sym__cite_author_in_text] = ACTIONS(769), + [sym__cite_suppress_author] = ACTIONS(771), + [sym__shortcode_open_escaped] = ACTIONS(773), + [sym__shortcode_open] = ACTIONS(775), + [sym__unclosed_span] = ACTIONS(709), }, [STATE(173)] = { - [sym_backslash_escape] = STATE(271), - [sym_commonmark_attribute] = STATE(271), - [sym_code_span] = STATE(271), - [sym_latex_span] = STATE(271), - [sym_superscript] = STATE(271), - [sym_subscript] = STATE(271), - [sym_strikeout] = STATE(271), - [sym_quoted_span] = STATE(271), - [sym_inline_note] = STATE(271), - [sym_citation] = STATE(271), - [sym_shortcode_escaped] = STATE(271), - [sym_shortcode] = STATE(271), - [sym_note_reference] = STATE(271), - [sym__link_text] = STATE(424), - [sym__link_text_non_empty] = STATE(425), - [sym_inline_link] = STATE(53), - [sym_image] = STATE(271), - [sym__image_inline_link] = STATE(883), - [sym__image_description] = STATE(1998), - [sym__image_description_non_empty] = STATE(1998), - [sym_hard_line_break] = STATE(271), - [sym__whitespace] = STATE(881), - [sym__word] = STATE(881), - [sym__soft_line_break] = STATE(884), - [sym__inline_base] = STATE(53), - [sym__text_base] = STATE(271), - [sym__inline_element] = STATE(53), - [sym__emphasis_star] = STATE(710), - [sym__strong_emphasis_star] = STATE(53), - [sym__emphasis_underscore] = STATE(710), - [sym__strong_emphasis_underscore] = STATE(53), - [aux_sym_superscript_repeat1] = STATE(53), - [aux_sym__inline_base_repeat1] = STATE(271), - [sym__backslash_escape] = ACTIONS(159), - [sym_entity_reference] = ACTIONS(161), - [sym_numeric_character_reference] = ACTIONS(161), - [anon_sym_LT] = ACTIONS(163), - [anon_sym_GT] = ACTIONS(165), - [anon_sym_BANG] = ACTIONS(167), - [anon_sym_DQUOTE] = ACTIONS(165), - [anon_sym_POUND] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(165), - [anon_sym_PERCENT] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_SQUOTE] = ACTIONS(165), - [anon_sym_STAR] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(165), - [anon_sym_COMMA] = ACTIONS(165), - [anon_sym_DASH] = ACTIONS(163), - [anon_sym_DOT] = ACTIONS(163), - [anon_sym_SLASH] = ACTIONS(165), - [anon_sym_COLON] = ACTIONS(165), - [anon_sym_SEMI] = ACTIONS(165), - [anon_sym_EQ] = ACTIONS(165), - [anon_sym_QMARK] = ACTIONS(165), - [anon_sym_LBRACK] = ACTIONS(169), - [anon_sym_BSLASH] = ACTIONS(171), - [anon_sym_RBRACK] = ACTIONS(2127), - [anon_sym_CARET] = ACTIONS(163), - [anon_sym__] = ACTIONS(165), - [anon_sym_BQUOTE] = ACTIONS(165), - [anon_sym_LBRACE] = ACTIONS(175), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(165), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_RPAREN] = ACTIONS(165), - [sym__newline_token] = ACTIONS(177), - [anon_sym_CARET_LBRACK] = ACTIONS(179), - [anon_sym_LBRACK_CARET] = ACTIONS(181), - [sym_uri_autolink] = ACTIONS(161), - [sym_email_autolink] = ACTIONS(161), - [sym__whitespace_ge_2] = ACTIONS(183), - [aux_sym__whitespace_token1] = ACTIONS(185), - [sym__word_no_digit] = ACTIONS(187), - [sym__digits] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_DASH_DASH_DASH] = ACTIONS(187), - [anon_sym_DOT_DOT_DOT] = ACTIONS(187), - [sym__code_span_start] = ACTIONS(191), - [sym__emphasis_open_star] = ACTIONS(193), - [sym__emphasis_open_underscore] = ACTIONS(195), - [sym__strikeout_open] = ACTIONS(199), - [sym__latex_span_start] = ACTIONS(201), - [sym__single_quote_open] = ACTIONS(203), - [sym__double_quote_open] = ACTIONS(205), - [sym__superscript_open] = ACTIONS(207), - [sym__subscript_open] = ACTIONS(209), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(211), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(213), - [sym__cite_author_in_text] = ACTIONS(215), - [sym__cite_suppress_author] = ACTIONS(217), - [sym__shortcode_open_escaped] = ACTIONS(219), - [sym__shortcode_open] = ACTIONS(221), - [sym__unclosed_span] = ACTIONS(161), - }, - [STATE(174)] = { - [sym_backslash_escape] = STATE(261), - [sym_commonmark_attribute] = STATE(261), - [sym_code_span] = STATE(261), - [sym_latex_span] = STATE(261), - [sym_superscript] = STATE(261), - [sym_subscript] = STATE(261), - [sym_strikeout] = STATE(261), - [sym_quoted_span] = STATE(261), - [sym_inline_note] = STATE(261), - [sym_citation] = STATE(261), - [sym_shortcode_escaped] = STATE(261), - [sym_shortcode] = STATE(261), - [sym_note_reference] = STATE(261), - [sym__link_text] = STATE(322), - [sym__link_text_non_empty] = STATE(323), - [sym_inline_link] = STATE(39), - [sym_image] = STATE(261), - [sym__image_inline_link] = STATE(595), - [sym__image_description] = STATE(1972), - [sym__image_description_non_empty] = STATE(1972), - [sym_hard_line_break] = STATE(261), - [sym__whitespace] = STATE(587), - [sym__word] = STATE(587), - [sym__soft_line_break] = STATE(597), - [sym__inline_base] = STATE(39), - [sym__text_base] = STATE(261), - [sym__inline_element_no_star] = STATE(39), - [aux_sym__inline_no_star] = STATE(39), - [sym__emphasis_star] = STATE(544), - [sym__strong_emphasis_star] = STATE(39), - [sym__emphasis_underscore] = STATE(544), - [sym__strong_emphasis_underscore] = STATE(39), - [aux_sym__inline_base_repeat1] = STATE(261), - [sym__backslash_escape] = ACTIONS(969), - [sym_entity_reference] = ACTIONS(971), - [sym_numeric_character_reference] = ACTIONS(971), - [anon_sym_LT] = ACTIONS(973), - [anon_sym_GT] = ACTIONS(975), - [anon_sym_BANG] = ACTIONS(977), - [anon_sym_DQUOTE] = ACTIONS(975), - [anon_sym_POUND] = ACTIONS(975), - [anon_sym_DOLLAR] = ACTIONS(975), - [anon_sym_PERCENT] = ACTIONS(975), - [anon_sym_AMP] = ACTIONS(973), - [anon_sym_SQUOTE] = ACTIONS(975), - [anon_sym_STAR] = ACTIONS(975), - [anon_sym_PLUS] = ACTIONS(975), - [anon_sym_COMMA] = ACTIONS(975), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_DOT] = ACTIONS(973), - [anon_sym_SLASH] = ACTIONS(975), - [anon_sym_COLON] = ACTIONS(975), - [anon_sym_SEMI] = ACTIONS(975), - [anon_sym_EQ] = ACTIONS(975), - [anon_sym_QMARK] = ACTIONS(975), - [anon_sym_LBRACK] = ACTIONS(979), - [anon_sym_BSLASH] = ACTIONS(981), - [anon_sym_CARET] = ACTIONS(973), - [anon_sym__] = ACTIONS(975), - [anon_sym_BQUOTE] = ACTIONS(975), - [anon_sym_LBRACE] = ACTIONS(983), - [anon_sym_PIPE] = ACTIONS(975), - [anon_sym_TILDE] = ACTIONS(975), - [anon_sym_LPAREN] = ACTIONS(975), - [anon_sym_RPAREN] = ACTIONS(975), - [sym__newline_token] = ACTIONS(985), - [anon_sym_CARET_LBRACK] = ACTIONS(987), - [anon_sym_LBRACK_CARET] = ACTIONS(989), - [sym_uri_autolink] = ACTIONS(971), - [sym_email_autolink] = ACTIONS(971), - [sym__whitespace_ge_2] = ACTIONS(991), - [aux_sym__whitespace_token1] = ACTIONS(993), - [sym__word_no_digit] = ACTIONS(995), - [sym__digits] = ACTIONS(995), - [anon_sym_DASH_DASH] = ACTIONS(997), - [anon_sym_DASH_DASH_DASH] = ACTIONS(995), - [anon_sym_DOT_DOT_DOT] = ACTIONS(995), - [sym__code_span_start] = ACTIONS(999), - [sym__emphasis_open_star] = ACTIONS(1001), - [sym__emphasis_open_underscore] = ACTIONS(1003), - [sym__emphasis_close_star] = ACTIONS(2129), - [sym__strikeout_open] = ACTIONS(1007), - [sym__latex_span_start] = ACTIONS(1009), - [sym__single_quote_open] = ACTIONS(1011), - [sym__double_quote_open] = ACTIONS(1013), - [sym__superscript_open] = ACTIONS(1015), - [sym__subscript_open] = ACTIONS(1017), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1019), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1021), - [sym__cite_author_in_text] = ACTIONS(1023), - [sym__cite_suppress_author] = ACTIONS(1025), - [sym__shortcode_open_escaped] = ACTIONS(1027), - [sym__shortcode_open] = ACTIONS(1029), - [sym__unclosed_span] = ACTIONS(971), - }, - [STATE(175)] = { - [sym_backslash_escape] = STATE(274), - [sym_commonmark_attribute] = STATE(274), - [sym_code_span] = STATE(274), - [sym_latex_span] = STATE(274), - [sym_superscript] = STATE(274), - [sym_subscript] = STATE(274), - [sym_strikeout] = STATE(274), - [sym_quoted_span] = STATE(274), - [sym_inline_note] = STATE(274), - [sym_citation] = STATE(274), - [sym_shortcode_escaped] = STATE(274), - [sym_shortcode] = STATE(274), - [sym_note_reference] = STATE(274), - [sym__link_text] = STATE(351), - [sym__link_text_non_empty] = STATE(352), - [sym_inline_link] = STATE(41), - [sym_image] = STATE(274), - [sym__image_inline_link] = STATE(894), - [sym__image_description] = STATE(2008), - [sym__image_description_non_empty] = STATE(2008), - [sym_hard_line_break] = STATE(274), - [sym__whitespace] = STATE(882), - [sym__word] = STATE(882), - [sym__soft_line_break] = STATE(898), - [sym__inline_base] = STATE(41), - [sym__text_base] = STATE(274), - [sym__inline_element_no_underscore] = STATE(41), - [aux_sym__inline_no_underscore] = STATE(41), - [sym__emphasis_star] = STATE(711), - [sym__strong_emphasis_star] = STATE(41), - [sym__emphasis_underscore] = STATE(711), - [sym__strong_emphasis_underscore] = STATE(41), - [aux_sym__inline_base_repeat1] = STATE(274), - [sym__backslash_escape] = ACTIONS(1123), - [sym_entity_reference] = ACTIONS(1125), - [sym_numeric_character_reference] = ACTIONS(1125), - [anon_sym_LT] = ACTIONS(1127), - [anon_sym_GT] = ACTIONS(1129), - [anon_sym_BANG] = ACTIONS(1131), - [anon_sym_DQUOTE] = ACTIONS(1129), - [anon_sym_POUND] = ACTIONS(1129), - [anon_sym_DOLLAR] = ACTIONS(1129), - [anon_sym_PERCENT] = ACTIONS(1129), - [anon_sym_AMP] = ACTIONS(1127), - [anon_sym_SQUOTE] = ACTIONS(1129), - [anon_sym_STAR] = ACTIONS(1129), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_COMMA] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1127), - [anon_sym_DOT] = ACTIONS(1127), - [anon_sym_SLASH] = ACTIONS(1129), - [anon_sym_COLON] = ACTIONS(1129), - [anon_sym_SEMI] = ACTIONS(1129), - [anon_sym_EQ] = ACTIONS(1129), - [anon_sym_QMARK] = ACTIONS(1129), - [anon_sym_LBRACK] = ACTIONS(1133), - [anon_sym_BSLASH] = ACTIONS(1135), - [anon_sym_CARET] = ACTIONS(1127), - [anon_sym__] = ACTIONS(1129), - [anon_sym_BQUOTE] = ACTIONS(1129), - [anon_sym_LBRACE] = ACTIONS(1137), - [anon_sym_PIPE] = ACTIONS(1129), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1129), - [anon_sym_RPAREN] = ACTIONS(1129), - [sym__newline_token] = ACTIONS(1139), - [anon_sym_CARET_LBRACK] = ACTIONS(1141), - [anon_sym_LBRACK_CARET] = ACTIONS(1143), - [sym_uri_autolink] = ACTIONS(1125), - [sym_email_autolink] = ACTIONS(1125), - [sym__whitespace_ge_2] = ACTIONS(1145), - [aux_sym__whitespace_token1] = ACTIONS(1147), - [sym__word_no_digit] = ACTIONS(1149), - [sym__digits] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1151), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1149), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1149), - [sym__code_span_start] = ACTIONS(1153), - [sym__emphasis_open_star] = ACTIONS(1155), - [sym__emphasis_open_underscore] = ACTIONS(1157), - [sym__emphasis_close_underscore] = ACTIONS(2131), - [sym__strikeout_open] = ACTIONS(1161), - [sym__latex_span_start] = ACTIONS(1163), - [sym__single_quote_open] = ACTIONS(1165), - [sym__double_quote_open] = ACTIONS(1167), - [sym__superscript_open] = ACTIONS(1169), - [sym__subscript_open] = ACTIONS(1171), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1173), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1175), - [sym__cite_author_in_text] = ACTIONS(1177), - [sym__cite_suppress_author] = ACTIONS(1179), - [sym__shortcode_open_escaped] = ACTIONS(1181), - [sym__shortcode_open] = ACTIONS(1183), - [sym__unclosed_span] = ACTIONS(1125), - }, - [STATE(176)] = { - [sym_backslash_escape] = STATE(271), - [sym_commonmark_attribute] = STATE(271), - [sym_code_span] = STATE(271), - [sym_latex_span] = STATE(271), - [sym_superscript] = STATE(271), - [sym_subscript] = STATE(271), - [sym_strikeout] = STATE(271), - [sym_quoted_span] = STATE(271), - [sym_inline_note] = STATE(271), - [sym_citation] = STATE(271), - [sym_shortcode_escaped] = STATE(271), - [sym_shortcode] = STATE(271), - [sym_note_reference] = STATE(271), - [sym__link_text] = STATE(424), - [sym__link_text_non_empty] = STATE(425), - [sym_inline_link] = STATE(53), - [sym_image] = STATE(271), - [sym__image_inline_link] = STATE(883), - [sym__image_description] = STATE(1998), - [sym__image_description_non_empty] = STATE(1998), - [sym_hard_line_break] = STATE(271), - [sym__whitespace] = STATE(881), - [sym__word] = STATE(881), - [sym__soft_line_break] = STATE(884), - [sym__inline_base] = STATE(53), - [sym__text_base] = STATE(271), - [sym__inline_element] = STATE(53), - [sym__emphasis_star] = STATE(710), - [sym__strong_emphasis_star] = STATE(53), - [sym__emphasis_underscore] = STATE(710), - [sym__strong_emphasis_underscore] = STATE(53), - [aux_sym_superscript_repeat1] = STATE(53), - [aux_sym__inline_base_repeat1] = STATE(271), - [sym__backslash_escape] = ACTIONS(159), - [sym_entity_reference] = ACTIONS(161), - [sym_numeric_character_reference] = ACTIONS(161), - [anon_sym_LT] = ACTIONS(163), - [anon_sym_GT] = ACTIONS(165), - [anon_sym_BANG] = ACTIONS(167), - [anon_sym_DQUOTE] = ACTIONS(165), - [anon_sym_POUND] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(165), - [anon_sym_PERCENT] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_SQUOTE] = ACTIONS(165), - [anon_sym_STAR] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(165), - [anon_sym_COMMA] = ACTIONS(165), - [anon_sym_DASH] = ACTIONS(163), - [anon_sym_DOT] = ACTIONS(163), - [anon_sym_SLASH] = ACTIONS(165), - [anon_sym_COLON] = ACTIONS(165), - [anon_sym_SEMI] = ACTIONS(165), - [anon_sym_EQ] = ACTIONS(165), - [anon_sym_QMARK] = ACTIONS(165), - [anon_sym_LBRACK] = ACTIONS(169), - [anon_sym_BSLASH] = ACTIONS(171), - [anon_sym_RBRACK] = ACTIONS(2133), - [anon_sym_CARET] = ACTIONS(163), - [anon_sym__] = ACTIONS(165), - [anon_sym_BQUOTE] = ACTIONS(165), - [anon_sym_LBRACE] = ACTIONS(175), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(165), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_RPAREN] = ACTIONS(165), - [sym__newline_token] = ACTIONS(177), - [anon_sym_CARET_LBRACK] = ACTIONS(179), - [anon_sym_LBRACK_CARET] = ACTIONS(181), - [sym_uri_autolink] = ACTIONS(161), - [sym_email_autolink] = ACTIONS(161), - [sym__whitespace_ge_2] = ACTIONS(183), - [aux_sym__whitespace_token1] = ACTIONS(185), - [sym__word_no_digit] = ACTIONS(187), - [sym__digits] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_DASH_DASH_DASH] = ACTIONS(187), - [anon_sym_DOT_DOT_DOT] = ACTIONS(187), - [sym__code_span_start] = ACTIONS(191), - [sym__emphasis_open_star] = ACTIONS(193), - [sym__emphasis_open_underscore] = ACTIONS(195), - [sym__strikeout_open] = ACTIONS(199), - [sym__latex_span_start] = ACTIONS(201), - [sym__single_quote_open] = ACTIONS(203), - [sym__double_quote_open] = ACTIONS(205), - [sym__superscript_open] = ACTIONS(207), - [sym__subscript_open] = ACTIONS(209), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(211), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(213), - [sym__cite_author_in_text] = ACTIONS(215), - [sym__cite_suppress_author] = ACTIONS(217), - [sym__shortcode_open_escaped] = ACTIONS(219), - [sym__shortcode_open] = ACTIONS(221), - [sym__unclosed_span] = ACTIONS(161), - }, - [STATE(177)] = { - [sym_backslash_escape] = STATE(266), - [sym_commonmark_attribute] = STATE(266), - [sym_code_span] = STATE(266), - [sym_latex_span] = STATE(266), - [sym_superscript] = STATE(266), - [sym_subscript] = STATE(266), - [sym_strikeout] = STATE(266), - [sym_quoted_span] = STATE(266), - [sym_inline_note] = STATE(266), - [sym_citation] = STATE(266), - [sym_shortcode_escaped] = STATE(266), - [sym_shortcode] = STATE(266), - [sym_note_reference] = STATE(266), - [sym__link_text] = STATE(375), - [sym__link_text_non_empty] = STATE(376), + [sym_backslash_escape] = STATE(372), + [sym_commonmark_attribute] = STATE(372), + [sym_code_span] = STATE(372), + [sym_latex_span] = STATE(372), + [sym_insert] = STATE(372), + [sym_delete] = STATE(372), + [sym_highlight] = STATE(372), + [sym_edit_comment] = STATE(372), + [sym_superscript] = STATE(372), + [sym_subscript] = STATE(372), + [sym_strikeout] = STATE(372), + [sym_quoted_span] = STATE(372), + [sym_inline_note] = STATE(372), + [sym_citation] = STATE(372), + [sym_shortcode_escaped] = STATE(372), + [sym_shortcode] = STATE(372), + [sym_note_reference] = STATE(372), + [sym__link_text] = STATE(454), + [sym__link_text_non_empty] = STATE(455), [sym_inline_link] = STATE(185), - [sym_image] = STATE(266), - [sym__image_inline_link] = STATE(1042), - [sym__image_description] = STATE(2044), - [sym__image_description_non_empty] = STATE(2044), - [sym_hard_line_break] = STATE(266), - [sym__whitespace] = STATE(1040), - [sym__word] = STATE(1040), - [sym__soft_line_break] = STATE(1043), + [sym_image] = STATE(372), + [sym__image_inline_link] = STATE(1025), + [sym__image_description] = STATE(2356), + [sym__image_description_non_empty] = STATE(2356), + [sym_hard_line_break] = STATE(372), + [sym__whitespace] = STATE(1022), + [sym__word] = STATE(1022), + [sym__soft_line_break] = STATE(1026), [sym__inline_base] = STATE(185), - [sym__text_base] = STATE(266), + [sym__text_base] = STATE(372), [sym__inline_element] = STATE(185), - [sym__emphasis_star] = STATE(602), + [sym__emphasis_star] = STATE(714), [sym__strong_emphasis_star] = STATE(185), - [sym__emphasis_underscore] = STATE(602), + [sym__emphasis_underscore] = STATE(714), [sym__strong_emphasis_underscore] = STATE(185), - [aux_sym_superscript_repeat1] = STATE(185), - [aux_sym__inline_base_repeat1] = STATE(266), - [sym__backslash_escape] = ACTIONS(559), - [sym_entity_reference] = ACTIONS(561), - [sym_numeric_character_reference] = ACTIONS(561), - [anon_sym_LT] = ACTIONS(563), - [anon_sym_GT] = ACTIONS(565), - [anon_sym_BANG] = ACTIONS(567), - [anon_sym_DQUOTE] = ACTIONS(565), - [anon_sym_POUND] = ACTIONS(565), - [anon_sym_DOLLAR] = ACTIONS(565), - [anon_sym_PERCENT] = ACTIONS(565), - [anon_sym_AMP] = ACTIONS(563), - [anon_sym_SQUOTE] = ACTIONS(565), - [anon_sym_STAR] = ACTIONS(565), - [anon_sym_PLUS] = ACTIONS(565), - [anon_sym_COMMA] = ACTIONS(565), - [anon_sym_DASH] = ACTIONS(563), - [anon_sym_DOT] = ACTIONS(563), - [anon_sym_SLASH] = ACTIONS(565), - [anon_sym_COLON] = ACTIONS(565), - [anon_sym_SEMI] = ACTIONS(565), - [anon_sym_EQ] = ACTIONS(565), - [anon_sym_QMARK] = ACTIONS(565), - [anon_sym_LBRACK] = ACTIONS(569), - [anon_sym_BSLASH] = ACTIONS(571), - [anon_sym_CARET] = ACTIONS(563), - [anon_sym__] = ACTIONS(565), - [anon_sym_BQUOTE] = ACTIONS(565), - [anon_sym_LBRACE] = ACTIONS(573), - [anon_sym_PIPE] = ACTIONS(565), - [anon_sym_TILDE] = ACTIONS(565), - [anon_sym_LPAREN] = ACTIONS(565), - [anon_sym_RPAREN] = ACTIONS(565), - [sym__newline_token] = ACTIONS(575), - [anon_sym_CARET_LBRACK] = ACTIONS(577), - [anon_sym_LBRACK_CARET] = ACTIONS(579), - [sym_uri_autolink] = ACTIONS(561), - [sym_email_autolink] = ACTIONS(561), - [sym__whitespace_ge_2] = ACTIONS(581), - [aux_sym__whitespace_token1] = ACTIONS(583), - [sym__word_no_digit] = ACTIONS(585), - [sym__digits] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(587), - [anon_sym_DASH_DASH_DASH] = ACTIONS(585), - [anon_sym_DOT_DOT_DOT] = ACTIONS(585), - [sym__code_span_start] = ACTIONS(589), - [sym__emphasis_open_star] = ACTIONS(591), - [sym__emphasis_open_underscore] = ACTIONS(593), - [sym__strikeout_open] = ACTIONS(595), - [sym__strikeout_close] = ACTIONS(2135), - [sym__latex_span_start] = ACTIONS(599), - [sym__single_quote_open] = ACTIONS(601), - [sym__double_quote_open] = ACTIONS(603), - [sym__superscript_open] = ACTIONS(605), - [sym__subscript_open] = ACTIONS(607), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(609), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(611), - [sym__cite_author_in_text] = ACTIONS(613), - [sym__cite_suppress_author] = ACTIONS(615), - [sym__shortcode_open_escaped] = ACTIONS(617), - [sym__shortcode_open] = ACTIONS(619), - [sym__unclosed_span] = ACTIONS(561), + [aux_sym_insert_repeat1] = STATE(185), + [aux_sym__inline_base_repeat1] = STATE(372), + [sym__backslash_escape] = ACTIONS(707), + [sym_entity_reference] = ACTIONS(709), + [sym_numeric_character_reference] = ACTIONS(709), + [anon_sym_LT] = ACTIONS(711), + [anon_sym_GT] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(715), + [anon_sym_DQUOTE] = ACTIONS(713), + [anon_sym_POUND] = ACTIONS(713), + [anon_sym_DOLLAR] = ACTIONS(713), + [anon_sym_PERCENT] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(711), + [anon_sym_SQUOTE] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_COMMA] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_DOT] = ACTIONS(711), + [anon_sym_SLASH] = ACTIONS(713), + [anon_sym_COLON] = ACTIONS(713), + [anon_sym_SEMI] = ACTIONS(713), + [anon_sym_EQ] = ACTIONS(713), + [anon_sym_QMARK] = ACTIONS(713), + [anon_sym_LBRACK] = ACTIONS(717), + [anon_sym_BSLASH] = ACTIONS(719), + [anon_sym_CARET] = ACTIONS(711), + [anon_sym__] = ACTIONS(713), + [anon_sym_BQUOTE] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(721), + [anon_sym_PIPE] = ACTIONS(713), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_LPAREN] = ACTIONS(713), + [anon_sym_RPAREN] = ACTIONS(713), + [sym__newline_token] = ACTIONS(723), + [aux_sym_insert_token1] = ACTIONS(725), + [aux_sym_insert_token2] = ACTIONS(2553), + [aux_sym_delete_token1] = ACTIONS(729), + [aux_sym_highlight_token1] = ACTIONS(731), + [aux_sym_edit_comment_token1] = ACTIONS(733), + [anon_sym_CARET_LBRACK] = ACTIONS(735), + [anon_sym_LBRACK_CARET] = ACTIONS(737), + [sym_uri_autolink] = ACTIONS(709), + [sym_email_autolink] = ACTIONS(709), + [sym__whitespace_ge_2] = ACTIONS(739), + [aux_sym__whitespace_token1] = ACTIONS(741), + [sym__word_no_digit] = ACTIONS(743), + [sym__digits] = ACTIONS(743), + [anon_sym_DASH_DASH] = ACTIONS(745), + [anon_sym_DASH_DASH_DASH] = ACTIONS(743), + [anon_sym_DOT_DOT_DOT] = ACTIONS(743), + [sym__code_span_start] = ACTIONS(747), + [sym__emphasis_open_star] = ACTIONS(749), + [sym__emphasis_open_underscore] = ACTIONS(751), + [sym__strikeout_open] = ACTIONS(753), + [sym__latex_span_start] = ACTIONS(755), + [sym__single_quote_open] = ACTIONS(757), + [sym__double_quote_open] = ACTIONS(759), + [sym__superscript_open] = ACTIONS(761), + [sym__subscript_open] = ACTIONS(763), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(765), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(767), + [sym__cite_author_in_text] = ACTIONS(769), + [sym__cite_suppress_author] = ACTIONS(771), + [sym__shortcode_open_escaped] = ACTIONS(773), + [sym__shortcode_open] = ACTIONS(775), + [sym__unclosed_span] = ACTIONS(709), }, - [STATE(178)] = { - [sym_backslash_escape] = STATE(272), - [sym_commonmark_attribute] = STATE(272), - [sym_code_span] = STATE(272), - [sym_latex_span] = STATE(272), - [sym_superscript] = STATE(272), - [sym_subscript] = STATE(272), - [sym_strikeout] = STATE(272), - [sym_quoted_span] = STATE(272), - [sym_inline_note] = STATE(272), - [sym_citation] = STATE(272), - [sym_shortcode_escaped] = STATE(272), - [sym_shortcode] = STATE(272), - [sym_note_reference] = STATE(272), - [sym__link_text] = STATE(401), - [sym__link_text_non_empty] = STATE(402), + [STATE(174)] = { + [sym_backslash_escape] = STATE(372), + [sym_commonmark_attribute] = STATE(372), + [sym_code_span] = STATE(372), + [sym_latex_span] = STATE(372), + [sym_insert] = STATE(372), + [sym_delete] = STATE(372), + [sym_highlight] = STATE(372), + [sym_edit_comment] = STATE(372), + [sym_superscript] = STATE(372), + [sym_subscript] = STATE(372), + [sym_strikeout] = STATE(372), + [sym_quoted_span] = STATE(372), + [sym_inline_note] = STATE(372), + [sym_citation] = STATE(372), + [sym_shortcode_escaped] = STATE(372), + [sym_shortcode] = STATE(372), + [sym_note_reference] = STATE(372), + [sym__link_text] = STATE(454), + [sym__link_text_non_empty] = STATE(455), [sym_inline_link] = STATE(186), - [sym_image] = STATE(272), - [sym__image_inline_link] = STATE(1136), - [sym__image_description] = STATE(1942), - [sym__image_description_non_empty] = STATE(1942), - [sym_hard_line_break] = STATE(272), - [sym__whitespace] = STATE(1133), - [sym__word] = STATE(1133), - [sym__soft_line_break] = STATE(1137), + [sym_image] = STATE(372), + [sym__image_inline_link] = STATE(1025), + [sym__image_description] = STATE(2356), + [sym__image_description_non_empty] = STATE(2356), + [sym_hard_line_break] = STATE(372), + [sym__whitespace] = STATE(1022), + [sym__word] = STATE(1022), + [sym__soft_line_break] = STATE(1026), [sym__inline_base] = STATE(186), - [sym__text_base] = STATE(272), + [sym__text_base] = STATE(372), [sym__inline_element] = STATE(186), - [sym__emphasis_star] = STATE(902), + [sym__emphasis_star] = STATE(714), [sym__strong_emphasis_star] = STATE(186), - [sym__emphasis_underscore] = STATE(902), + [sym__emphasis_underscore] = STATE(714), [sym__strong_emphasis_underscore] = STATE(186), - [aux_sym_superscript_repeat1] = STATE(186), - [aux_sym__inline_base_repeat1] = STATE(272), - [sym__backslash_escape] = ACTIONS(625), - [sym_entity_reference] = ACTIONS(627), - [sym_numeric_character_reference] = ACTIONS(627), - [anon_sym_LT] = ACTIONS(629), - [anon_sym_GT] = ACTIONS(631), - [anon_sym_BANG] = ACTIONS(633), - [anon_sym_DQUOTE] = ACTIONS(631), - [anon_sym_POUND] = ACTIONS(631), - [anon_sym_DOLLAR] = ACTIONS(631), - [anon_sym_PERCENT] = ACTIONS(631), - [anon_sym_AMP] = ACTIONS(629), - [anon_sym_SQUOTE] = ACTIONS(631), - [anon_sym_STAR] = ACTIONS(631), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_COMMA] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(629), - [anon_sym_DOT] = ACTIONS(629), - [anon_sym_SLASH] = ACTIONS(631), - [anon_sym_COLON] = ACTIONS(631), - [anon_sym_SEMI] = ACTIONS(631), - [anon_sym_EQ] = ACTIONS(631), - [anon_sym_QMARK] = ACTIONS(631), - [anon_sym_LBRACK] = ACTIONS(635), - [anon_sym_BSLASH] = ACTIONS(637), - [anon_sym_CARET] = ACTIONS(629), - [anon_sym__] = ACTIONS(631), - [anon_sym_BQUOTE] = ACTIONS(631), - [anon_sym_LBRACE] = ACTIONS(639), - [anon_sym_PIPE] = ACTIONS(631), - [anon_sym_TILDE] = ACTIONS(631), - [anon_sym_LPAREN] = ACTIONS(631), - [anon_sym_RPAREN] = ACTIONS(631), - [sym__newline_token] = ACTIONS(641), - [anon_sym_CARET_LBRACK] = ACTIONS(643), - [anon_sym_LBRACK_CARET] = ACTIONS(645), - [sym_uri_autolink] = ACTIONS(627), - [sym_email_autolink] = ACTIONS(627), - [sym__whitespace_ge_2] = ACTIONS(647), - [aux_sym__whitespace_token1] = ACTIONS(649), - [sym__word_no_digit] = ACTIONS(651), - [sym__digits] = ACTIONS(651), - [anon_sym_DASH_DASH] = ACTIONS(653), - [anon_sym_DASH_DASH_DASH] = ACTIONS(651), - [anon_sym_DOT_DOT_DOT] = ACTIONS(651), - [sym__code_span_start] = ACTIONS(655), - [sym__emphasis_open_star] = ACTIONS(657), - [sym__emphasis_open_underscore] = ACTIONS(659), - [sym__strikeout_open] = ACTIONS(661), - [sym__latex_span_start] = ACTIONS(663), - [sym__single_quote_open] = ACTIONS(665), - [sym__single_quote_close] = ACTIONS(2137), - [sym__double_quote_open] = ACTIONS(669), - [sym__superscript_open] = ACTIONS(671), - [sym__subscript_open] = ACTIONS(673), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(675), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(677), - [sym__cite_author_in_text] = ACTIONS(679), - [sym__cite_suppress_author] = ACTIONS(681), - [sym__shortcode_open_escaped] = ACTIONS(683), - [sym__shortcode_open] = ACTIONS(685), - [sym__unclosed_span] = ACTIONS(627), + [aux_sym_insert_repeat1] = STATE(186), + [aux_sym__inline_base_repeat1] = STATE(372), + [sym__backslash_escape] = ACTIONS(707), + [sym_entity_reference] = ACTIONS(709), + [sym_numeric_character_reference] = ACTIONS(709), + [anon_sym_LT] = ACTIONS(711), + [anon_sym_GT] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(715), + [anon_sym_DQUOTE] = ACTIONS(713), + [anon_sym_POUND] = ACTIONS(713), + [anon_sym_DOLLAR] = ACTIONS(713), + [anon_sym_PERCENT] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(711), + [anon_sym_SQUOTE] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_COMMA] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_DOT] = ACTIONS(711), + [anon_sym_SLASH] = ACTIONS(713), + [anon_sym_COLON] = ACTIONS(713), + [anon_sym_SEMI] = ACTIONS(713), + [anon_sym_EQ] = ACTIONS(713), + [anon_sym_QMARK] = ACTIONS(713), + [anon_sym_LBRACK] = ACTIONS(717), + [anon_sym_BSLASH] = ACTIONS(719), + [anon_sym_CARET] = ACTIONS(711), + [anon_sym__] = ACTIONS(713), + [anon_sym_BQUOTE] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(721), + [anon_sym_PIPE] = ACTIONS(713), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_LPAREN] = ACTIONS(713), + [anon_sym_RPAREN] = ACTIONS(713), + [sym__newline_token] = ACTIONS(723), + [aux_sym_insert_token1] = ACTIONS(725), + [aux_sym_insert_token2] = ACTIONS(2555), + [aux_sym_delete_token1] = ACTIONS(729), + [aux_sym_highlight_token1] = ACTIONS(731), + [aux_sym_edit_comment_token1] = ACTIONS(733), + [anon_sym_CARET_LBRACK] = ACTIONS(735), + [anon_sym_LBRACK_CARET] = ACTIONS(737), + [sym_uri_autolink] = ACTIONS(709), + [sym_email_autolink] = ACTIONS(709), + [sym__whitespace_ge_2] = ACTIONS(739), + [aux_sym__whitespace_token1] = ACTIONS(741), + [sym__word_no_digit] = ACTIONS(743), + [sym__digits] = ACTIONS(743), + [anon_sym_DASH_DASH] = ACTIONS(745), + [anon_sym_DASH_DASH_DASH] = ACTIONS(743), + [anon_sym_DOT_DOT_DOT] = ACTIONS(743), + [sym__code_span_start] = ACTIONS(747), + [sym__emphasis_open_star] = ACTIONS(749), + [sym__emphasis_open_underscore] = ACTIONS(751), + [sym__strikeout_open] = ACTIONS(753), + [sym__latex_span_start] = ACTIONS(755), + [sym__single_quote_open] = ACTIONS(757), + [sym__double_quote_open] = ACTIONS(759), + [sym__superscript_open] = ACTIONS(761), + [sym__subscript_open] = ACTIONS(763), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(765), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(767), + [sym__cite_author_in_text] = ACTIONS(769), + [sym__cite_suppress_author] = ACTIONS(771), + [sym__shortcode_open_escaped] = ACTIONS(773), + [sym__shortcode_open] = ACTIONS(775), + [sym__unclosed_span] = ACTIONS(709), }, - [STATE(179)] = { - [sym_backslash_escape] = STATE(277), - [sym_commonmark_attribute] = STATE(277), - [sym_code_span] = STATE(277), - [sym_latex_span] = STATE(277), - [sym_superscript] = STATE(277), - [sym_subscript] = STATE(277), - [sym_strikeout] = STATE(277), - [sym_quoted_span] = STATE(277), - [sym_inline_note] = STATE(277), - [sym_citation] = STATE(277), - [sym_shortcode_escaped] = STATE(277), - [sym_shortcode] = STATE(277), - [sym_note_reference] = STATE(277), - [sym__link_text] = STATE(427), - [sym__link_text_non_empty] = STATE(428), - [sym_inline_link] = STATE(187), - [sym_image] = STATE(277), - [sym__image_inline_link] = STATE(613), - [sym__image_description] = STATE(1930), - [sym__image_description_non_empty] = STATE(1930), - [sym_hard_line_break] = STATE(277), - [sym__whitespace] = STATE(610), - [sym__word] = STATE(610), - [sym__soft_line_break] = STATE(614), - [sym__inline_base] = STATE(187), - [sym__text_base] = STATE(277), - [sym__inline_element] = STATE(187), - [sym__emphasis_star] = STATE(1044), - [sym__strong_emphasis_star] = STATE(187), - [sym__emphasis_underscore] = STATE(1044), - [sym__strong_emphasis_underscore] = STATE(187), - [aux_sym_superscript_repeat1] = STATE(187), - [aux_sym__inline_base_repeat1] = STATE(277), - [sym__backslash_escape] = ACTIONS(687), - [sym_entity_reference] = ACTIONS(689), - [sym_numeric_character_reference] = ACTIONS(689), - [anon_sym_LT] = ACTIONS(691), - [anon_sym_GT] = ACTIONS(693), - [anon_sym_BANG] = ACTIONS(695), - [anon_sym_DQUOTE] = ACTIONS(693), - [anon_sym_POUND] = ACTIONS(693), - [anon_sym_DOLLAR] = ACTIONS(693), - [anon_sym_PERCENT] = ACTIONS(693), - [anon_sym_AMP] = ACTIONS(691), - [anon_sym_SQUOTE] = ACTIONS(693), - [anon_sym_STAR] = ACTIONS(693), - [anon_sym_PLUS] = ACTIONS(693), - [anon_sym_COMMA] = ACTIONS(693), - [anon_sym_DASH] = ACTIONS(691), - [anon_sym_DOT] = ACTIONS(691), - [anon_sym_SLASH] = ACTIONS(693), - [anon_sym_COLON] = ACTIONS(693), - [anon_sym_SEMI] = ACTIONS(693), - [anon_sym_EQ] = ACTIONS(693), - [anon_sym_QMARK] = ACTIONS(693), - [anon_sym_LBRACK] = ACTIONS(697), - [anon_sym_BSLASH] = ACTIONS(699), - [anon_sym_CARET] = ACTIONS(691), - [anon_sym__] = ACTIONS(693), - [anon_sym_BQUOTE] = ACTIONS(693), - [anon_sym_LBRACE] = ACTIONS(701), - [anon_sym_PIPE] = ACTIONS(693), - [anon_sym_TILDE] = ACTIONS(693), - [anon_sym_LPAREN] = ACTIONS(693), - [anon_sym_RPAREN] = ACTIONS(693), - [sym__newline_token] = ACTIONS(703), - [anon_sym_CARET_LBRACK] = ACTIONS(705), - [anon_sym_LBRACK_CARET] = ACTIONS(707), - [sym_uri_autolink] = ACTIONS(689), - [sym_email_autolink] = ACTIONS(689), - [sym__whitespace_ge_2] = ACTIONS(709), - [aux_sym__whitespace_token1] = ACTIONS(711), - [sym__word_no_digit] = ACTIONS(713), - [sym__digits] = ACTIONS(713), - [anon_sym_DASH_DASH] = ACTIONS(715), - [anon_sym_DASH_DASH_DASH] = ACTIONS(713), - [anon_sym_DOT_DOT_DOT] = ACTIONS(713), - [sym__code_span_start] = ACTIONS(717), - [sym__emphasis_open_star] = ACTIONS(719), - [sym__emphasis_open_underscore] = ACTIONS(721), - [sym__strikeout_open] = ACTIONS(723), - [sym__latex_span_start] = ACTIONS(725), - [sym__single_quote_open] = ACTIONS(727), - [sym__double_quote_open] = ACTIONS(729), - [sym__double_quote_close] = ACTIONS(2137), - [sym__superscript_open] = ACTIONS(731), - [sym__subscript_open] = ACTIONS(733), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(735), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(737), - [sym__cite_author_in_text] = ACTIONS(739), - [sym__cite_suppress_author] = ACTIONS(741), - [sym__shortcode_open_escaped] = ACTIONS(743), - [sym__shortcode_open] = ACTIONS(745), - [sym__unclosed_span] = ACTIONS(689), - }, - [STATE(180)] = { - [sym_backslash_escape] = STATE(262), - [sym_commonmark_attribute] = STATE(262), - [sym_code_span] = STATE(262), - [sym_latex_span] = STATE(262), - [sym_superscript] = STATE(262), - [sym_subscript] = STATE(262), - [sym_strikeout] = STATE(262), - [sym_quoted_span] = STATE(262), - [sym_inline_note] = STATE(262), - [sym_citation] = STATE(262), - [sym_shortcode_escaped] = STATE(262), - [sym_shortcode] = STATE(262), - [sym_note_reference] = STATE(262), - [sym__link_text] = STATE(313), - [sym__link_text_non_empty] = STATE(314), - [sym_inline_link] = STATE(188), - [sym_image] = STATE(262), - [sym__image_inline_link] = STATE(708), - [sym__image_description] = STATE(1970), - [sym__image_description_non_empty] = STATE(1970), - [sym_hard_line_break] = STATE(262), - [sym__whitespace] = STATE(705), - [sym__word] = STATE(705), - [sym__soft_line_break] = STATE(709), - [sym__inline_base] = STATE(188), - [sym__text_base] = STATE(262), - [sym__inline_element] = STATE(188), - [sym__emphasis_star] = STATE(1138), - [sym__strong_emphasis_star] = STATE(188), - [sym__emphasis_underscore] = STATE(1138), - [sym__strong_emphasis_underscore] = STATE(188), - [aux_sym_superscript_repeat1] = STATE(188), - [aux_sym__inline_base_repeat1] = STATE(262), - [sym__backslash_escape] = ACTIONS(747), - [sym_entity_reference] = ACTIONS(749), - [sym_numeric_character_reference] = ACTIONS(749), - [anon_sym_LT] = ACTIONS(751), - [anon_sym_GT] = ACTIONS(753), - [anon_sym_BANG] = ACTIONS(755), - [anon_sym_DQUOTE] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(753), - [anon_sym_DOLLAR] = ACTIONS(753), - [anon_sym_PERCENT] = ACTIONS(753), - [anon_sym_AMP] = ACTIONS(751), - [anon_sym_SQUOTE] = ACTIONS(753), - [anon_sym_STAR] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(753), - [anon_sym_COMMA] = ACTIONS(753), - [anon_sym_DASH] = ACTIONS(751), - [anon_sym_DOT] = ACTIONS(751), - [anon_sym_SLASH] = ACTIONS(753), - [anon_sym_COLON] = ACTIONS(753), - [anon_sym_SEMI] = ACTIONS(753), - [anon_sym_EQ] = ACTIONS(753), - [anon_sym_QMARK] = ACTIONS(753), - [anon_sym_LBRACK] = ACTIONS(757), - [anon_sym_BSLASH] = ACTIONS(759), - [anon_sym_CARET] = ACTIONS(751), - [anon_sym__] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(753), - [anon_sym_LBRACE] = ACTIONS(761), - [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_TILDE] = ACTIONS(753), - [anon_sym_LPAREN] = ACTIONS(753), - [anon_sym_RPAREN] = ACTIONS(753), - [sym__newline_token] = ACTIONS(763), - [anon_sym_CARET_LBRACK] = ACTIONS(765), - [anon_sym_LBRACK_CARET] = ACTIONS(767), - [sym_uri_autolink] = ACTIONS(749), - [sym_email_autolink] = ACTIONS(749), - [sym__whitespace_ge_2] = ACTIONS(769), - [aux_sym__whitespace_token1] = ACTIONS(771), - [sym__word_no_digit] = ACTIONS(773), - [sym__digits] = ACTIONS(773), - [anon_sym_DASH_DASH] = ACTIONS(775), - [anon_sym_DASH_DASH_DASH] = ACTIONS(773), - [anon_sym_DOT_DOT_DOT] = ACTIONS(773), - [sym__code_span_start] = ACTIONS(777), - [sym__emphasis_open_star] = ACTIONS(779), - [sym__emphasis_open_underscore] = ACTIONS(781), - [sym__strikeout_open] = ACTIONS(783), - [sym__latex_span_start] = ACTIONS(785), - [sym__single_quote_open] = ACTIONS(787), - [sym__double_quote_open] = ACTIONS(789), - [sym__superscript_open] = ACTIONS(791), - [sym__superscript_close] = ACTIONS(2139), - [sym__subscript_open] = ACTIONS(795), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(797), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(799), - [sym__cite_author_in_text] = ACTIONS(801), - [sym__cite_suppress_author] = ACTIONS(803), - [sym__shortcode_open_escaped] = ACTIONS(805), - [sym__shortcode_open] = ACTIONS(807), - [sym__unclosed_span] = ACTIONS(749), + [STATE(175)] = { + [sym_backslash_escape] = STATE(365), + [sym_commonmark_attribute] = STATE(365), + [sym_code_span] = STATE(365), + [sym_latex_span] = STATE(365), + [sym_insert] = STATE(365), + [sym_delete] = STATE(365), + [sym_highlight] = STATE(365), + [sym_edit_comment] = STATE(365), + [sym_superscript] = STATE(365), + [sym_subscript] = STATE(365), + [sym_strikeout] = STATE(365), + [sym_quoted_span] = STATE(365), + [sym_inline_note] = STATE(365), + [sym_citation] = STATE(365), + [sym_shortcode_escaped] = STATE(365), + [sym_shortcode] = STATE(365), + [sym_note_reference] = STATE(365), + [sym__link_text] = STATE(416), + [sym__link_text_non_empty] = STATE(417), + [sym_inline_link] = STATE(52), + [sym_image] = STATE(365), + [sym__image_inline_link] = STATE(712), + [sym__image_description] = STATE(2314), + [sym__image_description_non_empty] = STATE(2314), + [sym_hard_line_break] = STATE(365), + [sym__whitespace] = STATE(709), + [sym__word] = STATE(709), + [sym__soft_line_break] = STATE(713), + [sym__inline_base] = STATE(52), + [sym__text_base] = STATE(365), + [sym__inline_element] = STATE(52), + [sym__emphasis_star] = STATE(979), + [sym__strong_emphasis_star] = STATE(52), + [sym__emphasis_underscore] = STATE(979), + [sym__strong_emphasis_underscore] = STATE(52), + [aux_sym_insert_repeat1] = STATE(52), + [aux_sym__inline_base_repeat1] = STATE(365), + [sym__backslash_escape] = ACTIONS(1341), + [sym_entity_reference] = ACTIONS(1343), + [sym_numeric_character_reference] = ACTIONS(1343), + [anon_sym_LT] = ACTIONS(1345), + [anon_sym_GT] = ACTIONS(1347), + [anon_sym_BANG] = ACTIONS(1349), + [anon_sym_DQUOTE] = ACTIONS(1347), + [anon_sym_POUND] = ACTIONS(1347), + [anon_sym_DOLLAR] = ACTIONS(1347), + [anon_sym_PERCENT] = ACTIONS(1347), + [anon_sym_AMP] = ACTIONS(1345), + [anon_sym_SQUOTE] = ACTIONS(1347), + [anon_sym_STAR] = ACTIONS(1347), + [anon_sym_PLUS] = ACTIONS(1347), + [anon_sym_COMMA] = ACTIONS(1347), + [anon_sym_DASH] = ACTIONS(1345), + [anon_sym_DOT] = ACTIONS(1345), + [anon_sym_SLASH] = ACTIONS(1347), + [anon_sym_COLON] = ACTIONS(1347), + [anon_sym_SEMI] = ACTIONS(1347), + [anon_sym_EQ] = ACTIONS(1347), + [anon_sym_QMARK] = ACTIONS(1347), + [anon_sym_LBRACK] = ACTIONS(1351), + [anon_sym_BSLASH] = ACTIONS(1353), + [anon_sym_CARET] = ACTIONS(1345), + [anon_sym__] = ACTIONS(1347), + [anon_sym_BQUOTE] = ACTIONS(1347), + [anon_sym_LBRACE] = ACTIONS(1355), + [anon_sym_PIPE] = ACTIONS(1347), + [anon_sym_TILDE] = ACTIONS(1347), + [anon_sym_LPAREN] = ACTIONS(1347), + [anon_sym_RPAREN] = ACTIONS(1347), + [sym__newline_token] = ACTIONS(1357), + [aux_sym_insert_token1] = ACTIONS(1359), + [aux_sym_delete_token1] = ACTIONS(1361), + [aux_sym_highlight_token1] = ACTIONS(1363), + [aux_sym_edit_comment_token1] = ACTIONS(1365), + [anon_sym_CARET_LBRACK] = ACTIONS(1367), + [anon_sym_LBRACK_CARET] = ACTIONS(1369), + [sym_uri_autolink] = ACTIONS(1343), + [sym_email_autolink] = ACTIONS(1343), + [sym__whitespace_ge_2] = ACTIONS(1371), + [aux_sym__whitespace_token1] = ACTIONS(1373), + [sym__word_no_digit] = ACTIONS(1375), + [sym__digits] = ACTIONS(1375), + [anon_sym_DASH_DASH] = ACTIONS(1377), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1375), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1375), + [sym__code_span_start] = ACTIONS(1379), + [sym__emphasis_open_star] = ACTIONS(1381), + [sym__emphasis_open_underscore] = ACTIONS(1383), + [sym__strikeout_open] = ACTIONS(1385), + [sym__latex_span_start] = ACTIONS(1387), + [sym__single_quote_open] = ACTIONS(1389), + [sym__double_quote_open] = ACTIONS(1391), + [sym__superscript_open] = ACTIONS(1393), + [sym__superscript_close] = ACTIONS(2557), + [sym__subscript_open] = ACTIONS(1397), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1399), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1401), + [sym__cite_author_in_text] = ACTIONS(1403), + [sym__cite_suppress_author] = ACTIONS(1405), + [sym__shortcode_open_escaped] = ACTIONS(1407), + [sym__shortcode_open] = ACTIONS(1409), + [sym__unclosed_span] = ACTIONS(1343), }, - [STATE(181)] = { - [sym_backslash_escape] = STATE(270), - [sym_commonmark_attribute] = STATE(270), - [sym_code_span] = STATE(270), - [sym_latex_span] = STATE(270), - [sym_superscript] = STATE(270), - [sym_subscript] = STATE(270), - [sym_strikeout] = STATE(270), - [sym_quoted_span] = STATE(270), - [sym_inline_note] = STATE(270), - [sym_citation] = STATE(270), - [sym_shortcode_escaped] = STATE(270), - [sym_shortcode] = STATE(270), - [sym_note_reference] = STATE(270), - [sym__link_text] = STATE(359), - [sym__link_text_non_empty] = STATE(364), - [sym_inline_link] = STATE(189), - [sym_image] = STATE(270), - [sym__image_inline_link] = STATE(795), - [sym__image_description] = STATE(1984), - [sym__image_description_non_empty] = STATE(1984), - [sym_hard_line_break] = STATE(270), - [sym__whitespace] = STATE(792), - [sym__word] = STATE(792), - [sym__soft_line_break] = STATE(796), - [sym__inline_base] = STATE(189), - [sym__text_base] = STATE(270), - [sym__inline_element] = STATE(189), - [sym__emphasis_star] = STATE(615), - [sym__strong_emphasis_star] = STATE(189), - [sym__emphasis_underscore] = STATE(615), - [sym__strong_emphasis_underscore] = STATE(189), - [aux_sym_superscript_repeat1] = STATE(189), - [aux_sym__inline_base_repeat1] = STATE(270), - [sym__backslash_escape] = ACTIONS(809), - [sym_entity_reference] = ACTIONS(811), - [sym_numeric_character_reference] = ACTIONS(811), - [anon_sym_LT] = ACTIONS(813), - [anon_sym_GT] = ACTIONS(815), - [anon_sym_BANG] = ACTIONS(817), - [anon_sym_DQUOTE] = ACTIONS(815), - [anon_sym_POUND] = ACTIONS(815), - [anon_sym_DOLLAR] = ACTIONS(815), - [anon_sym_PERCENT] = ACTIONS(815), - [anon_sym_AMP] = ACTIONS(813), - [anon_sym_SQUOTE] = ACTIONS(815), - [anon_sym_STAR] = ACTIONS(815), - [anon_sym_PLUS] = ACTIONS(815), - [anon_sym_COMMA] = ACTIONS(815), - [anon_sym_DASH] = ACTIONS(813), - [anon_sym_DOT] = ACTIONS(813), - [anon_sym_SLASH] = ACTIONS(815), - [anon_sym_COLON] = ACTIONS(815), - [anon_sym_SEMI] = ACTIONS(815), - [anon_sym_EQ] = ACTIONS(815), - [anon_sym_QMARK] = ACTIONS(815), - [anon_sym_LBRACK] = ACTIONS(819), - [anon_sym_BSLASH] = ACTIONS(821), - [anon_sym_CARET] = ACTIONS(813), - [anon_sym__] = ACTIONS(815), - [anon_sym_BQUOTE] = ACTIONS(815), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_PIPE] = ACTIONS(815), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_RPAREN] = ACTIONS(815), - [sym__newline_token] = ACTIONS(825), - [anon_sym_CARET_LBRACK] = ACTIONS(827), - [anon_sym_LBRACK_CARET] = ACTIONS(829), - [sym_uri_autolink] = ACTIONS(811), - [sym_email_autolink] = ACTIONS(811), - [sym__whitespace_ge_2] = ACTIONS(831), - [aux_sym__whitespace_token1] = ACTIONS(833), - [sym__word_no_digit] = ACTIONS(835), - [sym__digits] = ACTIONS(835), - [anon_sym_DASH_DASH] = ACTIONS(837), - [anon_sym_DASH_DASH_DASH] = ACTIONS(835), - [anon_sym_DOT_DOT_DOT] = ACTIONS(835), - [sym__code_span_start] = ACTIONS(839), - [sym__emphasis_open_star] = ACTIONS(841), - [sym__emphasis_open_underscore] = ACTIONS(843), - [sym__strikeout_open] = ACTIONS(845), - [sym__latex_span_start] = ACTIONS(847), - [sym__single_quote_open] = ACTIONS(849), - [sym__double_quote_open] = ACTIONS(851), - [sym__superscript_open] = ACTIONS(853), - [sym__subscript_open] = ACTIONS(855), - [sym__subscript_close] = ACTIONS(2141), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(859), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(861), - [sym__cite_author_in_text] = ACTIONS(863), - [sym__cite_suppress_author] = ACTIONS(865), - [sym__shortcode_open_escaped] = ACTIONS(867), - [sym__shortcode_open] = ACTIONS(869), - [sym__unclosed_span] = ACTIONS(811), + [STATE(176)] = { + [sym_backslash_escape] = STATE(373), + [sym_commonmark_attribute] = STATE(373), + [sym_code_span] = STATE(373), + [sym_latex_span] = STATE(373), + [sym_insert] = STATE(373), + [sym_delete] = STATE(373), + [sym_highlight] = STATE(373), + [sym_edit_comment] = STATE(373), + [sym_superscript] = STATE(373), + [sym_subscript] = STATE(373), + [sym_strikeout] = STATE(373), + [sym_quoted_span] = STATE(373), + [sym_inline_note] = STATE(373), + [sym_citation] = STATE(373), + [sym_shortcode_escaped] = STATE(373), + [sym_shortcode] = STATE(373), + [sym_note_reference] = STATE(373), + [sym__link_text] = STATE(522), + [sym__link_text_non_empty] = STATE(523), + [sym_inline_link] = STATE(36), + [sym_image] = STATE(373), + [sym__image_inline_link] = STATE(1265), + [sym__image_description] = STATE(2331), + [sym__image_description_non_empty] = STATE(2331), + [sym_hard_line_break] = STATE(373), + [sym__whitespace] = STATE(1262), + [sym__word] = STATE(1262), + [sym__soft_line_break] = STATE(1267), + [sym__inline_base] = STATE(36), + [sym__text_base] = STATE(373), + [sym__inline_element_no_star] = STATE(36), + [aux_sym__inline_no_star] = STATE(36), + [sym__emphasis_star] = STATE(1147), + [sym__strong_emphasis_star] = STATE(36), + [sym__emphasis_underscore] = STATE(1147), + [sym__strong_emphasis_underscore] = STATE(36), + [aux_sym__inline_base_repeat1] = STATE(373), + [sym__backslash_escape] = ACTIONS(885), + [sym_entity_reference] = ACTIONS(887), + [sym_numeric_character_reference] = ACTIONS(887), + [anon_sym_LT] = ACTIONS(889), + [anon_sym_GT] = ACTIONS(891), + [anon_sym_BANG] = ACTIONS(893), + [anon_sym_DQUOTE] = ACTIONS(891), + [anon_sym_POUND] = ACTIONS(891), + [anon_sym_DOLLAR] = ACTIONS(891), + [anon_sym_PERCENT] = ACTIONS(891), + [anon_sym_AMP] = ACTIONS(889), + [anon_sym_SQUOTE] = ACTIONS(891), + [anon_sym_STAR] = ACTIONS(891), + [anon_sym_PLUS] = ACTIONS(891), + [anon_sym_COMMA] = ACTIONS(891), + [anon_sym_DASH] = ACTIONS(889), + [anon_sym_DOT] = ACTIONS(889), + [anon_sym_SLASH] = ACTIONS(891), + [anon_sym_COLON] = ACTIONS(891), + [anon_sym_SEMI] = ACTIONS(891), + [anon_sym_EQ] = ACTIONS(891), + [anon_sym_QMARK] = ACTIONS(891), + [anon_sym_LBRACK] = ACTIONS(895), + [anon_sym_BSLASH] = ACTIONS(897), + [anon_sym_CARET] = ACTIONS(889), + [anon_sym__] = ACTIONS(891), + [anon_sym_BQUOTE] = ACTIONS(891), + [anon_sym_LBRACE] = ACTIONS(899), + [anon_sym_PIPE] = ACTIONS(891), + [anon_sym_TILDE] = ACTIONS(891), + [anon_sym_LPAREN] = ACTIONS(891), + [anon_sym_RPAREN] = ACTIONS(891), + [sym__newline_token] = ACTIONS(901), + [aux_sym_insert_token1] = ACTIONS(903), + [aux_sym_delete_token1] = ACTIONS(905), + [aux_sym_highlight_token1] = ACTIONS(907), + [aux_sym_edit_comment_token1] = ACTIONS(909), + [anon_sym_CARET_LBRACK] = ACTIONS(911), + [anon_sym_LBRACK_CARET] = ACTIONS(913), + [sym_uri_autolink] = ACTIONS(887), + [sym_email_autolink] = ACTIONS(887), + [sym__whitespace_ge_2] = ACTIONS(915), + [aux_sym__whitespace_token1] = ACTIONS(917), + [sym__word_no_digit] = ACTIONS(919), + [sym__digits] = ACTIONS(919), + [anon_sym_DASH_DASH] = ACTIONS(921), + [anon_sym_DASH_DASH_DASH] = ACTIONS(919), + [anon_sym_DOT_DOT_DOT] = ACTIONS(919), + [sym__code_span_start] = ACTIONS(923), + [sym__emphasis_open_star] = ACTIONS(925), + [sym__emphasis_open_underscore] = ACTIONS(927), + [sym__emphasis_close_star] = ACTIONS(2559), + [sym__strikeout_open] = ACTIONS(931), + [sym__latex_span_start] = ACTIONS(933), + [sym__single_quote_open] = ACTIONS(935), + [sym__double_quote_open] = ACTIONS(937), + [sym__superscript_open] = ACTIONS(939), + [sym__subscript_open] = ACTIONS(941), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(943), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(945), + [sym__cite_author_in_text] = ACTIONS(947), + [sym__cite_suppress_author] = ACTIONS(949), + [sym__shortcode_open_escaped] = ACTIONS(951), + [sym__shortcode_open] = ACTIONS(953), + [sym__unclosed_span] = ACTIONS(887), }, - [STATE(182)] = { - [sym_backslash_escape] = STATE(274), - [sym_commonmark_attribute] = STATE(274), - [sym_code_span] = STATE(274), - [sym_latex_span] = STATE(274), - [sym_superscript] = STATE(274), - [sym_subscript] = STATE(274), - [sym_strikeout] = STATE(274), - [sym_quoted_span] = STATE(274), - [sym_inline_note] = STATE(274), - [sym_citation] = STATE(274), - [sym_shortcode_escaped] = STATE(274), - [sym_shortcode] = STATE(274), - [sym_note_reference] = STATE(274), - [sym__link_text] = STATE(351), - [sym__link_text_non_empty] = STATE(352), - [sym_inline_link] = STATE(78), - [sym_image] = STATE(274), - [sym__image_inline_link] = STATE(894), - [sym__image_description] = STATE(2008), - [sym__image_description_non_empty] = STATE(2008), - [sym_hard_line_break] = STATE(274), - [sym__whitespace] = STATE(882), - [sym__word] = STATE(882), - [sym__soft_line_break] = STATE(898), - [sym__inline_base] = STATE(78), - [sym__text_base] = STATE(274), - [sym__inline_element_no_underscore] = STATE(78), - [aux_sym__inline_no_underscore] = STATE(78), - [sym__emphasis_star] = STATE(711), - [sym__strong_emphasis_star] = STATE(78), - [sym__emphasis_underscore] = STATE(1000), - [sym__strong_emphasis_underscore] = STATE(78), - [aux_sym__inline_base_repeat1] = STATE(274), - [sym__backslash_escape] = ACTIONS(1123), - [sym_entity_reference] = ACTIONS(1125), - [sym_numeric_character_reference] = ACTIONS(1125), - [anon_sym_LT] = ACTIONS(1127), - [anon_sym_GT] = ACTIONS(1129), - [anon_sym_BANG] = ACTIONS(1131), - [anon_sym_DQUOTE] = ACTIONS(1129), - [anon_sym_POUND] = ACTIONS(1129), - [anon_sym_DOLLAR] = ACTIONS(1129), - [anon_sym_PERCENT] = ACTIONS(1129), - [anon_sym_AMP] = ACTIONS(1127), - [anon_sym_SQUOTE] = ACTIONS(1129), - [anon_sym_STAR] = ACTIONS(1129), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_COMMA] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1127), - [anon_sym_DOT] = ACTIONS(1127), - [anon_sym_SLASH] = ACTIONS(1129), - [anon_sym_COLON] = ACTIONS(1129), - [anon_sym_SEMI] = ACTIONS(1129), - [anon_sym_EQ] = ACTIONS(1129), - [anon_sym_QMARK] = ACTIONS(1129), - [anon_sym_LBRACK] = ACTIONS(1133), - [anon_sym_BSLASH] = ACTIONS(1135), - [anon_sym_CARET] = ACTIONS(1127), - [anon_sym__] = ACTIONS(1129), - [anon_sym_BQUOTE] = ACTIONS(1129), - [anon_sym_LBRACE] = ACTIONS(1137), - [anon_sym_PIPE] = ACTIONS(1129), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1129), - [anon_sym_RPAREN] = ACTIONS(1129), - [sym__newline_token] = ACTIONS(1139), - [anon_sym_CARET_LBRACK] = ACTIONS(1141), - [anon_sym_LBRACK_CARET] = ACTIONS(1143), - [sym_uri_autolink] = ACTIONS(1125), - [sym_email_autolink] = ACTIONS(1125), - [sym__whitespace_ge_2] = ACTIONS(1145), - [aux_sym__whitespace_token1] = ACTIONS(1147), - [sym__word_no_digit] = ACTIONS(1149), - [sym__digits] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1151), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1149), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1149), - [sym__code_span_start] = ACTIONS(1153), - [sym__emphasis_open_star] = ACTIONS(1155), - [sym__emphasis_open_underscore] = ACTIONS(1157), - [sym__last_token_punctuation] = ACTIONS(2143), - [sym__strikeout_open] = ACTIONS(1161), - [sym__latex_span_start] = ACTIONS(1163), - [sym__single_quote_open] = ACTIONS(1165), - [sym__double_quote_open] = ACTIONS(1167), - [sym__superscript_open] = ACTIONS(1169), - [sym__subscript_open] = ACTIONS(1171), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1173), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1175), - [sym__cite_author_in_text] = ACTIONS(1177), - [sym__cite_suppress_author] = ACTIONS(1179), - [sym__shortcode_open_escaped] = ACTIONS(1181), - [sym__shortcode_open] = ACTIONS(1183), - [sym__unclosed_span] = ACTIONS(1125), + [STATE(177)] = { + [sym_backslash_escape] = STATE(379), + [sym_commonmark_attribute] = STATE(379), + [sym_code_span] = STATE(379), + [sym_latex_span] = STATE(379), + [sym_insert] = STATE(379), + [sym_delete] = STATE(379), + [sym_highlight] = STATE(379), + [sym_edit_comment] = STATE(379), + [sym_superscript] = STATE(379), + [sym_subscript] = STATE(379), + [sym_strikeout] = STATE(379), + [sym_quoted_span] = STATE(379), + [sym_inline_note] = STATE(379), + [sym_citation] = STATE(379), + [sym_shortcode_escaped] = STATE(379), + [sym_shortcode] = STATE(379), + [sym_note_reference] = STATE(379), + [sym__link_text] = STATE(545), + [sym__link_text_non_empty] = STATE(546), + [sym_inline_link] = STATE(38), + [sym_image] = STATE(379), + [sym__image_inline_link] = STATE(1390), + [sym__image_description] = STATE(2363), + [sym__image_description_non_empty] = STATE(2363), + [sym_hard_line_break] = STATE(379), + [sym__whitespace] = STATE(1385), + [sym__word] = STATE(1385), + [sym__soft_line_break] = STATE(1391), + [sym__inline_base] = STATE(38), + [sym__text_base] = STATE(379), + [sym__inline_element_no_underscore] = STATE(38), + [aux_sym__inline_no_underscore] = STATE(38), + [sym__emphasis_star] = STATE(1168), + [sym__strong_emphasis_star] = STATE(38), + [sym__emphasis_underscore] = STATE(1168), + [sym__strong_emphasis_underscore] = STATE(38), + [aux_sym__inline_base_repeat1] = STATE(379), + [sym__backslash_escape] = ACTIONS(1059), + [sym_entity_reference] = ACTIONS(1061), + [sym_numeric_character_reference] = ACTIONS(1061), + [anon_sym_LT] = ACTIONS(1063), + [anon_sym_GT] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1067), + [anon_sym_DQUOTE] = ACTIONS(1065), + [anon_sym_POUND] = ACTIONS(1065), + [anon_sym_DOLLAR] = ACTIONS(1065), + [anon_sym_PERCENT] = ACTIONS(1065), + [anon_sym_AMP] = ACTIONS(1063), + [anon_sym_SQUOTE] = ACTIONS(1065), + [anon_sym_STAR] = ACTIONS(1065), + [anon_sym_PLUS] = ACTIONS(1065), + [anon_sym_COMMA] = ACTIONS(1065), + [anon_sym_DASH] = ACTIONS(1063), + [anon_sym_DOT] = ACTIONS(1063), + [anon_sym_SLASH] = ACTIONS(1065), + [anon_sym_COLON] = ACTIONS(1065), + [anon_sym_SEMI] = ACTIONS(1065), + [anon_sym_EQ] = ACTIONS(1065), + [anon_sym_QMARK] = ACTIONS(1065), + [anon_sym_LBRACK] = ACTIONS(1069), + [anon_sym_BSLASH] = ACTIONS(1071), + [anon_sym_CARET] = ACTIONS(1063), + [anon_sym__] = ACTIONS(1065), + [anon_sym_BQUOTE] = ACTIONS(1065), + [anon_sym_LBRACE] = ACTIONS(1073), + [anon_sym_PIPE] = ACTIONS(1065), + [anon_sym_TILDE] = ACTIONS(1065), + [anon_sym_LPAREN] = ACTIONS(1065), + [anon_sym_RPAREN] = ACTIONS(1065), + [sym__newline_token] = ACTIONS(1075), + [aux_sym_insert_token1] = ACTIONS(1077), + [aux_sym_delete_token1] = ACTIONS(1079), + [aux_sym_highlight_token1] = ACTIONS(1081), + [aux_sym_edit_comment_token1] = ACTIONS(1083), + [anon_sym_CARET_LBRACK] = ACTIONS(1085), + [anon_sym_LBRACK_CARET] = ACTIONS(1087), + [sym_uri_autolink] = ACTIONS(1061), + [sym_email_autolink] = ACTIONS(1061), + [sym__whitespace_ge_2] = ACTIONS(1089), + [aux_sym__whitespace_token1] = ACTIONS(1091), + [sym__word_no_digit] = ACTIONS(1093), + [sym__digits] = ACTIONS(1093), + [anon_sym_DASH_DASH] = ACTIONS(1095), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1093), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1093), + [sym__code_span_start] = ACTIONS(1097), + [sym__emphasis_open_star] = ACTIONS(1099), + [sym__emphasis_open_underscore] = ACTIONS(1101), + [sym__emphasis_close_underscore] = ACTIONS(2561), + [sym__strikeout_open] = ACTIONS(1105), + [sym__latex_span_start] = ACTIONS(1107), + [sym__single_quote_open] = ACTIONS(1109), + [sym__double_quote_open] = ACTIONS(1111), + [sym__superscript_open] = ACTIONS(1113), + [sym__subscript_open] = ACTIONS(1115), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1117), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1119), + [sym__cite_author_in_text] = ACTIONS(1121), + [sym__cite_suppress_author] = ACTIONS(1123), + [sym__shortcode_open_escaped] = ACTIONS(1125), + [sym__shortcode_open] = ACTIONS(1127), + [sym__unclosed_span] = ACTIONS(1061), }, - [STATE(183)] = { - [sym_backslash_escape] = STATE(261), - [sym_commonmark_attribute] = STATE(261), - [sym_code_span] = STATE(261), - [sym_latex_span] = STATE(261), - [sym_superscript] = STATE(261), - [sym_subscript] = STATE(261), - [sym_strikeout] = STATE(261), - [sym_quoted_span] = STATE(261), - [sym_inline_note] = STATE(261), - [sym_citation] = STATE(261), - [sym_shortcode_escaped] = STATE(261), - [sym_shortcode] = STATE(261), - [sym_note_reference] = STATE(261), - [sym__link_text] = STATE(322), - [sym__link_text_non_empty] = STATE(323), + [STATE(178)] = { + [sym_backslash_escape] = STATE(366), + [sym_commonmark_attribute] = STATE(366), + [sym_code_span] = STATE(366), + [sym_latex_span] = STATE(366), + [sym_insert] = STATE(366), + [sym_delete] = STATE(366), + [sym_highlight] = STATE(366), + [sym_edit_comment] = STATE(366), + [sym_superscript] = STATE(366), + [sym_subscript] = STATE(366), + [sym_strikeout] = STATE(366), + [sym_quoted_span] = STATE(366), + [sym_inline_note] = STATE(366), + [sym_citation] = STATE(366), + [sym_shortcode_escaped] = STATE(366), + [sym_shortcode] = STATE(366), + [sym_note_reference] = STATE(366), + [sym__link_text] = STATE(490), + [sym__link_text_non_empty] = STATE(491), [sym_inline_link] = STATE(39), - [sym_image] = STATE(261), - [sym__image_inline_link] = STATE(595), - [sym__image_description] = STATE(1972), - [sym__image_description_non_empty] = STATE(1972), - [sym_hard_line_break] = STATE(261), - [sym__whitespace] = STATE(587), - [sym__word] = STATE(587), - [sym__soft_line_break] = STATE(597), + [sym_image] = STATE(366), + [sym__image_inline_link] = STATE(1244), + [sym__image_description] = STATE(2280), + [sym__image_description_non_empty] = STATE(2280), + [sym_hard_line_break] = STATE(366), + [sym__whitespace] = STATE(1218), + [sym__word] = STATE(1218), + [sym__soft_line_break] = STATE(1245), [sym__inline_base] = STATE(39), - [sym__text_base] = STATE(261), - [sym__inline_element_no_star] = STATE(39), - [aux_sym__inline_no_star] = STATE(39), - [sym__emphasis_star] = STATE(544), + [sym__text_base] = STATE(366), + [sym__inline_element] = STATE(39), + [sym__emphasis_star] = STATE(1270), [sym__strong_emphasis_star] = STATE(39), - [sym__emphasis_underscore] = STATE(544), + [sym__emphasis_underscore] = STATE(1270), [sym__strong_emphasis_underscore] = STATE(39), - [aux_sym__inline_base_repeat1] = STATE(261), - [sym__backslash_escape] = ACTIONS(969), - [sym_entity_reference] = ACTIONS(971), - [sym_numeric_character_reference] = ACTIONS(971), - [anon_sym_LT] = ACTIONS(973), - [anon_sym_GT] = ACTIONS(975), - [anon_sym_BANG] = ACTIONS(977), - [anon_sym_DQUOTE] = ACTIONS(975), - [anon_sym_POUND] = ACTIONS(975), - [anon_sym_DOLLAR] = ACTIONS(975), - [anon_sym_PERCENT] = ACTIONS(975), - [anon_sym_AMP] = ACTIONS(973), - [anon_sym_SQUOTE] = ACTIONS(975), - [anon_sym_STAR] = ACTIONS(975), - [anon_sym_PLUS] = ACTIONS(975), - [anon_sym_COMMA] = ACTIONS(975), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_DOT] = ACTIONS(973), - [anon_sym_SLASH] = ACTIONS(975), - [anon_sym_COLON] = ACTIONS(975), - [anon_sym_SEMI] = ACTIONS(975), - [anon_sym_EQ] = ACTIONS(975), - [anon_sym_QMARK] = ACTIONS(975), - [anon_sym_LBRACK] = ACTIONS(979), - [anon_sym_BSLASH] = ACTIONS(981), - [anon_sym_CARET] = ACTIONS(973), - [anon_sym__] = ACTIONS(975), - [anon_sym_BQUOTE] = ACTIONS(975), - [anon_sym_LBRACE] = ACTIONS(983), - [anon_sym_PIPE] = ACTIONS(975), - [anon_sym_TILDE] = ACTIONS(975), - [anon_sym_LPAREN] = ACTIONS(975), - [anon_sym_RPAREN] = ACTIONS(975), - [sym__newline_token] = ACTIONS(985), - [anon_sym_CARET_LBRACK] = ACTIONS(987), - [anon_sym_LBRACK_CARET] = ACTIONS(989), - [sym_uri_autolink] = ACTIONS(971), - [sym_email_autolink] = ACTIONS(971), - [sym__whitespace_ge_2] = ACTIONS(991), - [aux_sym__whitespace_token1] = ACTIONS(993), - [sym__word_no_digit] = ACTIONS(995), - [sym__digits] = ACTIONS(995), - [anon_sym_DASH_DASH] = ACTIONS(997), - [anon_sym_DASH_DASH_DASH] = ACTIONS(995), - [anon_sym_DOT_DOT_DOT] = ACTIONS(995), - [sym__code_span_start] = ACTIONS(999), - [sym__emphasis_open_star] = ACTIONS(1001), - [sym__emphasis_open_underscore] = ACTIONS(1003), - [sym__emphasis_close_star] = ACTIONS(2145), - [sym__strikeout_open] = ACTIONS(1007), - [sym__latex_span_start] = ACTIONS(1009), - [sym__single_quote_open] = ACTIONS(1011), - [sym__double_quote_open] = ACTIONS(1013), - [sym__superscript_open] = ACTIONS(1015), - [sym__subscript_open] = ACTIONS(1017), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1019), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1021), - [sym__cite_author_in_text] = ACTIONS(1023), - [sym__cite_suppress_author] = ACTIONS(1025), - [sym__shortcode_open_escaped] = ACTIONS(1027), - [sym__shortcode_open] = ACTIONS(1029), - [sym__unclosed_span] = ACTIONS(971), - }, - [STATE(184)] = { - [sym_backslash_escape] = STATE(274), - [sym_commonmark_attribute] = STATE(274), - [sym_code_span] = STATE(274), - [sym_latex_span] = STATE(274), - [sym_superscript] = STATE(274), - [sym_subscript] = STATE(274), - [sym_strikeout] = STATE(274), - [sym_quoted_span] = STATE(274), - [sym_inline_note] = STATE(274), - [sym_citation] = STATE(274), - [sym_shortcode_escaped] = STATE(274), - [sym_shortcode] = STATE(274), - [sym_note_reference] = STATE(274), - [sym__link_text] = STATE(351), - [sym__link_text_non_empty] = STATE(352), - [sym_inline_link] = STATE(41), - [sym_image] = STATE(274), - [sym__image_inline_link] = STATE(894), - [sym__image_description] = STATE(2008), - [sym__image_description_non_empty] = STATE(2008), - [sym_hard_line_break] = STATE(274), - [sym__whitespace] = STATE(882), - [sym__word] = STATE(882), - [sym__soft_line_break] = STATE(898), - [sym__inline_base] = STATE(41), - [sym__text_base] = STATE(274), - [sym__inline_element_no_underscore] = STATE(41), - [aux_sym__inline_no_underscore] = STATE(41), - [sym__emphasis_star] = STATE(711), - [sym__strong_emphasis_star] = STATE(41), - [sym__emphasis_underscore] = STATE(711), - [sym__strong_emphasis_underscore] = STATE(41), - [aux_sym__inline_base_repeat1] = STATE(274), - [sym__backslash_escape] = ACTIONS(1123), - [sym_entity_reference] = ACTIONS(1125), - [sym_numeric_character_reference] = ACTIONS(1125), - [anon_sym_LT] = ACTIONS(1127), - [anon_sym_GT] = ACTIONS(1129), - [anon_sym_BANG] = ACTIONS(1131), - [anon_sym_DQUOTE] = ACTIONS(1129), - [anon_sym_POUND] = ACTIONS(1129), - [anon_sym_DOLLAR] = ACTIONS(1129), - [anon_sym_PERCENT] = ACTIONS(1129), - [anon_sym_AMP] = ACTIONS(1127), - [anon_sym_SQUOTE] = ACTIONS(1129), - [anon_sym_STAR] = ACTIONS(1129), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_COMMA] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1127), - [anon_sym_DOT] = ACTIONS(1127), - [anon_sym_SLASH] = ACTIONS(1129), - [anon_sym_COLON] = ACTIONS(1129), - [anon_sym_SEMI] = ACTIONS(1129), - [anon_sym_EQ] = ACTIONS(1129), - [anon_sym_QMARK] = ACTIONS(1129), - [anon_sym_LBRACK] = ACTIONS(1133), - [anon_sym_BSLASH] = ACTIONS(1135), - [anon_sym_CARET] = ACTIONS(1127), - [anon_sym__] = ACTIONS(1129), - [anon_sym_BQUOTE] = ACTIONS(1129), - [anon_sym_LBRACE] = ACTIONS(1137), - [anon_sym_PIPE] = ACTIONS(1129), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1129), - [anon_sym_RPAREN] = ACTIONS(1129), - [sym__newline_token] = ACTIONS(1139), - [anon_sym_CARET_LBRACK] = ACTIONS(1141), - [anon_sym_LBRACK_CARET] = ACTIONS(1143), - [sym_uri_autolink] = ACTIONS(1125), - [sym_email_autolink] = ACTIONS(1125), - [sym__whitespace_ge_2] = ACTIONS(1145), - [aux_sym__whitespace_token1] = ACTIONS(1147), - [sym__word_no_digit] = ACTIONS(1149), - [sym__digits] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1151), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1149), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1149), - [sym__code_span_start] = ACTIONS(1153), - [sym__emphasis_open_star] = ACTIONS(1155), - [sym__emphasis_open_underscore] = ACTIONS(1157), - [sym__emphasis_close_underscore] = ACTIONS(2147), - [sym__strikeout_open] = ACTIONS(1161), - [sym__latex_span_start] = ACTIONS(1163), - [sym__single_quote_open] = ACTIONS(1165), - [sym__double_quote_open] = ACTIONS(1167), - [sym__superscript_open] = ACTIONS(1169), - [sym__subscript_open] = ACTIONS(1171), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1173), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1175), - [sym__cite_author_in_text] = ACTIONS(1177), - [sym__cite_suppress_author] = ACTIONS(1179), - [sym__shortcode_open_escaped] = ACTIONS(1181), - [sym__shortcode_open] = ACTIONS(1183), - [sym__unclosed_span] = ACTIONS(1125), - }, - [STATE(185)] = { - [sym_backslash_escape] = STATE(266), - [sym_commonmark_attribute] = STATE(266), - [sym_code_span] = STATE(266), - [sym_latex_span] = STATE(266), - [sym_superscript] = STATE(266), - [sym_subscript] = STATE(266), - [sym_strikeout] = STATE(266), - [sym_quoted_span] = STATE(266), - [sym_inline_note] = STATE(266), - [sym_citation] = STATE(266), - [sym_shortcode_escaped] = STATE(266), - [sym_shortcode] = STATE(266), - [sym_note_reference] = STATE(266), - [sym__link_text] = STATE(375), - [sym__link_text_non_empty] = STATE(376), - [sym_inline_link] = STATE(42), - [sym_image] = STATE(266), - [sym__image_inline_link] = STATE(1042), - [sym__image_description] = STATE(2044), - [sym__image_description_non_empty] = STATE(2044), - [sym_hard_line_break] = STATE(266), - [sym__whitespace] = STATE(1040), - [sym__word] = STATE(1040), - [sym__soft_line_break] = STATE(1043), - [sym__inline_base] = STATE(42), - [sym__text_base] = STATE(266), - [sym__inline_element] = STATE(42), - [sym__emphasis_star] = STATE(602), - [sym__strong_emphasis_star] = STATE(42), - [sym__emphasis_underscore] = STATE(602), - [sym__strong_emphasis_underscore] = STATE(42), - [aux_sym_superscript_repeat1] = STATE(42), - [aux_sym__inline_base_repeat1] = STATE(266), - [sym__backslash_escape] = ACTIONS(559), - [sym_entity_reference] = ACTIONS(561), - [sym_numeric_character_reference] = ACTIONS(561), - [anon_sym_LT] = ACTIONS(563), - [anon_sym_GT] = ACTIONS(565), - [anon_sym_BANG] = ACTIONS(567), - [anon_sym_DQUOTE] = ACTIONS(565), - [anon_sym_POUND] = ACTIONS(565), - [anon_sym_DOLLAR] = ACTIONS(565), - [anon_sym_PERCENT] = ACTIONS(565), - [anon_sym_AMP] = ACTIONS(563), - [anon_sym_SQUOTE] = ACTIONS(565), - [anon_sym_STAR] = ACTIONS(565), - [anon_sym_PLUS] = ACTIONS(565), - [anon_sym_COMMA] = ACTIONS(565), - [anon_sym_DASH] = ACTIONS(563), - [anon_sym_DOT] = ACTIONS(563), - [anon_sym_SLASH] = ACTIONS(565), - [anon_sym_COLON] = ACTIONS(565), - [anon_sym_SEMI] = ACTIONS(565), - [anon_sym_EQ] = ACTIONS(565), - [anon_sym_QMARK] = ACTIONS(565), - [anon_sym_LBRACK] = ACTIONS(569), - [anon_sym_BSLASH] = ACTIONS(571), - [anon_sym_CARET] = ACTIONS(563), - [anon_sym__] = ACTIONS(565), - [anon_sym_BQUOTE] = ACTIONS(565), - [anon_sym_LBRACE] = ACTIONS(573), - [anon_sym_PIPE] = ACTIONS(565), - [anon_sym_TILDE] = ACTIONS(565), - [anon_sym_LPAREN] = ACTIONS(565), - [anon_sym_RPAREN] = ACTIONS(565), - [sym__newline_token] = ACTIONS(575), - [anon_sym_CARET_LBRACK] = ACTIONS(577), - [anon_sym_LBRACK_CARET] = ACTIONS(579), - [sym_uri_autolink] = ACTIONS(561), - [sym_email_autolink] = ACTIONS(561), - [sym__whitespace_ge_2] = ACTIONS(581), - [aux_sym__whitespace_token1] = ACTIONS(583), - [sym__word_no_digit] = ACTIONS(585), - [sym__digits] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(587), - [anon_sym_DASH_DASH_DASH] = ACTIONS(585), - [anon_sym_DOT_DOT_DOT] = ACTIONS(585), - [sym__code_span_start] = ACTIONS(589), - [sym__emphasis_open_star] = ACTIONS(591), - [sym__emphasis_open_underscore] = ACTIONS(593), - [sym__strikeout_open] = ACTIONS(595), - [sym__strikeout_close] = ACTIONS(2149), - [sym__latex_span_start] = ACTIONS(599), - [sym__single_quote_open] = ACTIONS(601), - [sym__double_quote_open] = ACTIONS(603), - [sym__superscript_open] = ACTIONS(605), - [sym__subscript_open] = ACTIONS(607), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(609), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(611), - [sym__cite_author_in_text] = ACTIONS(613), - [sym__cite_suppress_author] = ACTIONS(615), - [sym__shortcode_open_escaped] = ACTIONS(617), - [sym__shortcode_open] = ACTIONS(619), - [sym__unclosed_span] = ACTIONS(561), + [aux_sym_insert_repeat1] = STATE(39), + [aux_sym__inline_base_repeat1] = STATE(366), + [sym__backslash_escape] = ACTIONS(2005), + [sym_entity_reference] = ACTIONS(2007), + [sym_numeric_character_reference] = ACTIONS(2007), + [anon_sym_LT] = ACTIONS(2009), + [anon_sym_GT] = ACTIONS(2011), + [anon_sym_BANG] = ACTIONS(2013), + [anon_sym_DQUOTE] = ACTIONS(2011), + [anon_sym_POUND] = ACTIONS(2011), + [anon_sym_DOLLAR] = ACTIONS(2011), + [anon_sym_PERCENT] = ACTIONS(2011), + [anon_sym_AMP] = ACTIONS(2009), + [anon_sym_SQUOTE] = ACTIONS(2011), + [anon_sym_STAR] = ACTIONS(2011), + [anon_sym_PLUS] = ACTIONS(2011), + [anon_sym_COMMA] = ACTIONS(2011), + [anon_sym_DASH] = ACTIONS(2009), + [anon_sym_DOT] = ACTIONS(2009), + [anon_sym_SLASH] = ACTIONS(2011), + [anon_sym_COLON] = ACTIONS(2011), + [anon_sym_SEMI] = ACTIONS(2011), + [anon_sym_EQ] = ACTIONS(2011), + [anon_sym_QMARK] = ACTIONS(2011), + [anon_sym_LBRACK] = ACTIONS(2015), + [anon_sym_BSLASH] = ACTIONS(2017), + [anon_sym_CARET] = ACTIONS(2009), + [anon_sym__] = ACTIONS(2011), + [anon_sym_BQUOTE] = ACTIONS(2011), + [anon_sym_LBRACE] = ACTIONS(2019), + [anon_sym_PIPE] = ACTIONS(2011), + [anon_sym_TILDE] = ACTIONS(2011), + [anon_sym_LPAREN] = ACTIONS(2011), + [anon_sym_RPAREN] = ACTIONS(2011), + [sym__newline_token] = ACTIONS(2021), + [aux_sym_insert_token1] = ACTIONS(2023), + [aux_sym_delete_token1] = ACTIONS(2025), + [aux_sym_highlight_token1] = ACTIONS(2027), + [aux_sym_edit_comment_token1] = ACTIONS(2029), + [anon_sym_CARET_LBRACK] = ACTIONS(2031), + [anon_sym_LBRACK_CARET] = ACTIONS(2033), + [sym_uri_autolink] = ACTIONS(2007), + [sym_email_autolink] = ACTIONS(2007), + [sym__whitespace_ge_2] = ACTIONS(2035), + [aux_sym__whitespace_token1] = ACTIONS(2037), + [sym__word_no_digit] = ACTIONS(2039), + [sym__digits] = ACTIONS(2039), + [anon_sym_DASH_DASH] = ACTIONS(2041), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2039), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2039), + [sym__code_span_start] = ACTIONS(2043), + [sym__emphasis_open_star] = ACTIONS(2045), + [sym__emphasis_open_underscore] = ACTIONS(2047), + [sym__strikeout_open] = ACTIONS(2049), + [sym__strikeout_close] = ACTIONS(2563), + [sym__latex_span_start] = ACTIONS(2053), + [sym__single_quote_open] = ACTIONS(2055), + [sym__double_quote_open] = ACTIONS(2057), + [sym__superscript_open] = ACTIONS(2059), + [sym__subscript_open] = ACTIONS(2061), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2063), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2065), + [sym__cite_author_in_text] = ACTIONS(2067), + [sym__cite_suppress_author] = ACTIONS(2069), + [sym__shortcode_open_escaped] = ACTIONS(2071), + [sym__shortcode_open] = ACTIONS(2073), + [sym__unclosed_span] = ACTIONS(2007), }, - [STATE(186)] = { - [sym_backslash_escape] = STATE(272), - [sym_commonmark_attribute] = STATE(272), - [sym_code_span] = STATE(272), - [sym_latex_span] = STATE(272), - [sym_superscript] = STATE(272), - [sym_subscript] = STATE(272), - [sym_strikeout] = STATE(272), - [sym_quoted_span] = STATE(272), - [sym_inline_note] = STATE(272), - [sym_citation] = STATE(272), - [sym_shortcode_escaped] = STATE(272), - [sym_shortcode] = STATE(272), - [sym_note_reference] = STATE(272), - [sym__link_text] = STATE(401), - [sym__link_text_non_empty] = STATE(402), - [sym_inline_link] = STATE(49), - [sym_image] = STATE(272), - [sym__image_inline_link] = STATE(1136), - [sym__image_description] = STATE(1942), - [sym__image_description_non_empty] = STATE(1942), - [sym_hard_line_break] = STATE(272), - [sym__whitespace] = STATE(1133), - [sym__word] = STATE(1133), - [sym__soft_line_break] = STATE(1137), - [sym__inline_base] = STATE(49), - [sym__text_base] = STATE(272), - [sym__inline_element] = STATE(49), - [sym__emphasis_star] = STATE(902), - [sym__strong_emphasis_star] = STATE(49), - [sym__emphasis_underscore] = STATE(902), - [sym__strong_emphasis_underscore] = STATE(49), - [aux_sym_superscript_repeat1] = STATE(49), - [aux_sym__inline_base_repeat1] = STATE(272), - [sym__backslash_escape] = ACTIONS(625), - [sym_entity_reference] = ACTIONS(627), - [sym_numeric_character_reference] = ACTIONS(627), - [anon_sym_LT] = ACTIONS(629), - [anon_sym_GT] = ACTIONS(631), - [anon_sym_BANG] = ACTIONS(633), - [anon_sym_DQUOTE] = ACTIONS(631), - [anon_sym_POUND] = ACTIONS(631), - [anon_sym_DOLLAR] = ACTIONS(631), - [anon_sym_PERCENT] = ACTIONS(631), - [anon_sym_AMP] = ACTIONS(629), - [anon_sym_SQUOTE] = ACTIONS(631), - [anon_sym_STAR] = ACTIONS(631), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_COMMA] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(629), - [anon_sym_DOT] = ACTIONS(629), - [anon_sym_SLASH] = ACTIONS(631), - [anon_sym_COLON] = ACTIONS(631), - [anon_sym_SEMI] = ACTIONS(631), - [anon_sym_EQ] = ACTIONS(631), - [anon_sym_QMARK] = ACTIONS(631), - [anon_sym_LBRACK] = ACTIONS(635), - [anon_sym_BSLASH] = ACTIONS(637), - [anon_sym_CARET] = ACTIONS(629), - [anon_sym__] = ACTIONS(631), - [anon_sym_BQUOTE] = ACTIONS(631), - [anon_sym_LBRACE] = ACTIONS(639), - [anon_sym_PIPE] = ACTIONS(631), - [anon_sym_TILDE] = ACTIONS(631), - [anon_sym_LPAREN] = ACTIONS(631), - [anon_sym_RPAREN] = ACTIONS(631), - [sym__newline_token] = ACTIONS(641), - [anon_sym_CARET_LBRACK] = ACTIONS(643), - [anon_sym_LBRACK_CARET] = ACTIONS(645), - [sym_uri_autolink] = ACTIONS(627), - [sym_email_autolink] = ACTIONS(627), - [sym__whitespace_ge_2] = ACTIONS(647), - [aux_sym__whitespace_token1] = ACTIONS(649), - [sym__word_no_digit] = ACTIONS(651), - [sym__digits] = ACTIONS(651), - [anon_sym_DASH_DASH] = ACTIONS(653), - [anon_sym_DASH_DASH_DASH] = ACTIONS(651), - [anon_sym_DOT_DOT_DOT] = ACTIONS(651), - [sym__code_span_start] = ACTIONS(655), - [sym__emphasis_open_star] = ACTIONS(657), - [sym__emphasis_open_underscore] = ACTIONS(659), - [sym__strikeout_open] = ACTIONS(661), - [sym__latex_span_start] = ACTIONS(663), - [sym__single_quote_open] = ACTIONS(665), - [sym__single_quote_close] = ACTIONS(2151), - [sym__double_quote_open] = ACTIONS(669), - [sym__superscript_open] = ACTIONS(671), - [sym__subscript_open] = ACTIONS(673), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(675), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(677), - [sym__cite_author_in_text] = ACTIONS(679), - [sym__cite_suppress_author] = ACTIONS(681), - [sym__shortcode_open_escaped] = ACTIONS(683), - [sym__shortcode_open] = ACTIONS(685), - [sym__unclosed_span] = ACTIONS(627), + [STATE(179)] = { + [sym_backslash_escape] = STATE(375), + [sym_commonmark_attribute] = STATE(375), + [sym_code_span] = STATE(375), + [sym_latex_span] = STATE(375), + [sym_insert] = STATE(375), + [sym_delete] = STATE(375), + [sym_highlight] = STATE(375), + [sym_edit_comment] = STATE(375), + [sym_superscript] = STATE(375), + [sym_subscript] = STATE(375), + [sym_strikeout] = STATE(375), + [sym_quoted_span] = STATE(375), + [sym_inline_note] = STATE(375), + [sym_citation] = STATE(375), + [sym_shortcode_escaped] = STATE(375), + [sym_shortcode] = STATE(375), + [sym_note_reference] = STATE(375), + [sym__link_text] = STATE(525), + [sym__link_text_non_empty] = STATE(527), + [sym_inline_link] = STATE(47), + [sym_image] = STATE(375), + [sym__image_inline_link] = STATE(972), + [sym__image_description] = STATE(2286), + [sym__image_description_non_empty] = STATE(2286), + [sym_hard_line_break] = STATE(375), + [sym__whitespace] = STATE(949), + [sym__word] = STATE(949), + [sym__soft_line_break] = STATE(973), + [sym__inline_base] = STATE(47), + [sym__text_base] = STATE(375), + [sym__inline_element] = STATE(47), + [sym__emphasis_star] = STATE(1392), + [sym__strong_emphasis_star] = STATE(47), + [sym__emphasis_underscore] = STATE(1392), + [sym__strong_emphasis_underscore] = STATE(47), + [aux_sym_insert_repeat1] = STATE(47), + [aux_sym__inline_base_repeat1] = STATE(375), + [sym__backslash_escape] = ACTIONS(2179), + [sym_entity_reference] = ACTIONS(2181), + [sym_numeric_character_reference] = ACTIONS(2181), + [anon_sym_LT] = ACTIONS(2183), + [anon_sym_GT] = ACTIONS(2185), + [anon_sym_BANG] = ACTIONS(2187), + [anon_sym_DQUOTE] = ACTIONS(2185), + [anon_sym_POUND] = ACTIONS(2185), + [anon_sym_DOLLAR] = ACTIONS(2185), + [anon_sym_PERCENT] = ACTIONS(2185), + [anon_sym_AMP] = ACTIONS(2183), + [anon_sym_SQUOTE] = ACTIONS(2185), + [anon_sym_STAR] = ACTIONS(2185), + [anon_sym_PLUS] = ACTIONS(2185), + [anon_sym_COMMA] = ACTIONS(2185), + [anon_sym_DASH] = ACTIONS(2183), + [anon_sym_DOT] = ACTIONS(2183), + [anon_sym_SLASH] = ACTIONS(2185), + [anon_sym_COLON] = ACTIONS(2185), + [anon_sym_SEMI] = ACTIONS(2185), + [anon_sym_EQ] = ACTIONS(2185), + [anon_sym_QMARK] = ACTIONS(2185), + [anon_sym_LBRACK] = ACTIONS(2189), + [anon_sym_BSLASH] = ACTIONS(2191), + [anon_sym_CARET] = ACTIONS(2183), + [anon_sym__] = ACTIONS(2185), + [anon_sym_BQUOTE] = ACTIONS(2185), + [anon_sym_LBRACE] = ACTIONS(2193), + [anon_sym_PIPE] = ACTIONS(2185), + [anon_sym_TILDE] = ACTIONS(2185), + [anon_sym_LPAREN] = ACTIONS(2185), + [anon_sym_RPAREN] = ACTIONS(2185), + [sym__newline_token] = ACTIONS(2195), + [aux_sym_insert_token1] = ACTIONS(2197), + [aux_sym_delete_token1] = ACTIONS(2199), + [aux_sym_highlight_token1] = ACTIONS(2201), + [aux_sym_edit_comment_token1] = ACTIONS(2203), + [anon_sym_CARET_LBRACK] = ACTIONS(2205), + [anon_sym_LBRACK_CARET] = ACTIONS(2207), + [sym_uri_autolink] = ACTIONS(2181), + [sym_email_autolink] = ACTIONS(2181), + [sym__whitespace_ge_2] = ACTIONS(2209), + [aux_sym__whitespace_token1] = ACTIONS(2211), + [sym__word_no_digit] = ACTIONS(2213), + [sym__digits] = ACTIONS(2213), + [anon_sym_DASH_DASH] = ACTIONS(2215), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2213), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2213), + [sym__code_span_start] = ACTIONS(2217), + [sym__emphasis_open_star] = ACTIONS(2219), + [sym__emphasis_open_underscore] = ACTIONS(2221), + [sym__strikeout_open] = ACTIONS(2223), + [sym__latex_span_start] = ACTIONS(2225), + [sym__single_quote_open] = ACTIONS(2227), + [sym__single_quote_close] = ACTIONS(2565), + [sym__double_quote_open] = ACTIONS(2229), + [sym__superscript_open] = ACTIONS(2231), + [sym__subscript_open] = ACTIONS(2233), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2235), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2237), + [sym__cite_author_in_text] = ACTIONS(2239), + [sym__cite_suppress_author] = ACTIONS(2241), + [sym__shortcode_open_escaped] = ACTIONS(2243), + [sym__shortcode_open] = ACTIONS(2245), + [sym__unclosed_span] = ACTIONS(2181), }, - [STATE(187)] = { - [sym_backslash_escape] = STATE(277), - [sym_commonmark_attribute] = STATE(277), - [sym_code_span] = STATE(277), - [sym_latex_span] = STATE(277), - [sym_superscript] = STATE(277), - [sym_subscript] = STATE(277), - [sym_strikeout] = STATE(277), - [sym_quoted_span] = STATE(277), - [sym_inline_note] = STATE(277), - [sym_citation] = STATE(277), - [sym_shortcode_escaped] = STATE(277), - [sym_shortcode] = STATE(277), - [sym_note_reference] = STATE(277), - [sym__link_text] = STATE(427), - [sym__link_text_non_empty] = STATE(428), + [STATE(180)] = { + [sym_backslash_escape] = STATE(383), + [sym_commonmark_attribute] = STATE(383), + [sym_code_span] = STATE(383), + [sym_latex_span] = STATE(383), + [sym_insert] = STATE(383), + [sym_delete] = STATE(383), + [sym_highlight] = STATE(383), + [sym_edit_comment] = STATE(383), + [sym_superscript] = STATE(383), + [sym_subscript] = STATE(383), + [sym_strikeout] = STATE(383), + [sym_quoted_span] = STATE(383), + [sym_inline_note] = STATE(383), + [sym_citation] = STATE(383), + [sym_shortcode_escaped] = STATE(383), + [sym_shortcode] = STATE(383), + [sym_note_reference] = STATE(383), + [sym__link_text] = STATE(395), + [sym__link_text_non_empty] = STATE(396), [sym_inline_link] = STATE(50), - [sym_image] = STATE(277), - [sym__image_inline_link] = STATE(613), - [sym__image_description] = STATE(1930), - [sym__image_description_non_empty] = STATE(1930), - [sym_hard_line_break] = STATE(277), - [sym__whitespace] = STATE(610), - [sym__word] = STATE(610), - [sym__soft_line_break] = STATE(614), + [sym_image] = STATE(383), + [sym__image_inline_link] = STATE(1263), + [sym__image_description] = STATE(2300), + [sym__image_description_non_empty] = STATE(2300), + [sym_hard_line_break] = STATE(383), + [sym__whitespace] = STATE(1259), + [sym__word] = STATE(1259), + [sym__soft_line_break] = STATE(1264), [sym__inline_base] = STATE(50), - [sym__text_base] = STATE(277), + [sym__text_base] = STATE(383), [sym__inline_element] = STATE(50), - [sym__emphasis_star] = STATE(1044), + [sym__emphasis_star] = STATE(1249), [sym__strong_emphasis_star] = STATE(50), - [sym__emphasis_underscore] = STATE(1044), + [sym__emphasis_underscore] = STATE(1249), [sym__strong_emphasis_underscore] = STATE(50), - [aux_sym_superscript_repeat1] = STATE(50), - [aux_sym__inline_base_repeat1] = STATE(277), - [sym__backslash_escape] = ACTIONS(687), - [sym_entity_reference] = ACTIONS(689), - [sym_numeric_character_reference] = ACTIONS(689), - [anon_sym_LT] = ACTIONS(691), - [anon_sym_GT] = ACTIONS(693), - [anon_sym_BANG] = ACTIONS(695), - [anon_sym_DQUOTE] = ACTIONS(693), - [anon_sym_POUND] = ACTIONS(693), - [anon_sym_DOLLAR] = ACTIONS(693), - [anon_sym_PERCENT] = ACTIONS(693), - [anon_sym_AMP] = ACTIONS(691), - [anon_sym_SQUOTE] = ACTIONS(693), - [anon_sym_STAR] = ACTIONS(693), - [anon_sym_PLUS] = ACTIONS(693), - [anon_sym_COMMA] = ACTIONS(693), - [anon_sym_DASH] = ACTIONS(691), - [anon_sym_DOT] = ACTIONS(691), - [anon_sym_SLASH] = ACTIONS(693), - [anon_sym_COLON] = ACTIONS(693), - [anon_sym_SEMI] = ACTIONS(693), - [anon_sym_EQ] = ACTIONS(693), - [anon_sym_QMARK] = ACTIONS(693), - [anon_sym_LBRACK] = ACTIONS(697), - [anon_sym_BSLASH] = ACTIONS(699), - [anon_sym_CARET] = ACTIONS(691), - [anon_sym__] = ACTIONS(693), - [anon_sym_BQUOTE] = ACTIONS(693), - [anon_sym_LBRACE] = ACTIONS(701), - [anon_sym_PIPE] = ACTIONS(693), - [anon_sym_TILDE] = ACTIONS(693), - [anon_sym_LPAREN] = ACTIONS(693), - [anon_sym_RPAREN] = ACTIONS(693), - [sym__newline_token] = ACTIONS(703), - [anon_sym_CARET_LBRACK] = ACTIONS(705), - [anon_sym_LBRACK_CARET] = ACTIONS(707), - [sym_uri_autolink] = ACTIONS(689), - [sym_email_autolink] = ACTIONS(689), - [sym__whitespace_ge_2] = ACTIONS(709), - [aux_sym__whitespace_token1] = ACTIONS(711), - [sym__word_no_digit] = ACTIONS(713), - [sym__digits] = ACTIONS(713), - [anon_sym_DASH_DASH] = ACTIONS(715), - [anon_sym_DASH_DASH_DASH] = ACTIONS(713), - [anon_sym_DOT_DOT_DOT] = ACTIONS(713), - [sym__code_span_start] = ACTIONS(717), - [sym__emphasis_open_star] = ACTIONS(719), - [sym__emphasis_open_underscore] = ACTIONS(721), - [sym__strikeout_open] = ACTIONS(723), - [sym__latex_span_start] = ACTIONS(725), - [sym__single_quote_open] = ACTIONS(727), - [sym__double_quote_open] = ACTIONS(729), - [sym__double_quote_close] = ACTIONS(2151), - [sym__superscript_open] = ACTIONS(731), - [sym__subscript_open] = ACTIONS(733), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(735), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(737), - [sym__cite_author_in_text] = ACTIONS(739), - [sym__cite_suppress_author] = ACTIONS(741), - [sym__shortcode_open_escaped] = ACTIONS(743), - [sym__shortcode_open] = ACTIONS(745), - [sym__unclosed_span] = ACTIONS(689), - }, - [STATE(188)] = { - [sym_backslash_escape] = STATE(262), - [sym_commonmark_attribute] = STATE(262), - [sym_code_span] = STATE(262), - [sym_latex_span] = STATE(262), - [sym_superscript] = STATE(262), - [sym_subscript] = STATE(262), - [sym_strikeout] = STATE(262), - [sym_quoted_span] = STATE(262), - [sym_inline_note] = STATE(262), - [sym_citation] = STATE(262), - [sym_shortcode_escaped] = STATE(262), - [sym_shortcode] = STATE(262), - [sym_note_reference] = STATE(262), - [sym__link_text] = STATE(313), - [sym__link_text_non_empty] = STATE(314), - [sym_inline_link] = STATE(51), - [sym_image] = STATE(262), - [sym__image_inline_link] = STATE(708), - [sym__image_description] = STATE(1970), - [sym__image_description_non_empty] = STATE(1970), - [sym_hard_line_break] = STATE(262), - [sym__whitespace] = STATE(705), - [sym__word] = STATE(705), - [sym__soft_line_break] = STATE(709), - [sym__inline_base] = STATE(51), - [sym__text_base] = STATE(262), - [sym__inline_element] = STATE(51), - [sym__emphasis_star] = STATE(1138), - [sym__strong_emphasis_star] = STATE(51), - [sym__emphasis_underscore] = STATE(1138), - [sym__strong_emphasis_underscore] = STATE(51), - [aux_sym_superscript_repeat1] = STATE(51), - [aux_sym__inline_base_repeat1] = STATE(262), - [sym__backslash_escape] = ACTIONS(747), - [sym_entity_reference] = ACTIONS(749), - [sym_numeric_character_reference] = ACTIONS(749), - [anon_sym_LT] = ACTIONS(751), - [anon_sym_GT] = ACTIONS(753), - [anon_sym_BANG] = ACTIONS(755), - [anon_sym_DQUOTE] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(753), - [anon_sym_DOLLAR] = ACTIONS(753), - [anon_sym_PERCENT] = ACTIONS(753), - [anon_sym_AMP] = ACTIONS(751), - [anon_sym_SQUOTE] = ACTIONS(753), - [anon_sym_STAR] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(753), - [anon_sym_COMMA] = ACTIONS(753), - [anon_sym_DASH] = ACTIONS(751), - [anon_sym_DOT] = ACTIONS(751), - [anon_sym_SLASH] = ACTIONS(753), - [anon_sym_COLON] = ACTIONS(753), - [anon_sym_SEMI] = ACTIONS(753), - [anon_sym_EQ] = ACTIONS(753), - [anon_sym_QMARK] = ACTIONS(753), - [anon_sym_LBRACK] = ACTIONS(757), - [anon_sym_BSLASH] = ACTIONS(759), - [anon_sym_CARET] = ACTIONS(751), - [anon_sym__] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(753), - [anon_sym_LBRACE] = ACTIONS(761), - [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_TILDE] = ACTIONS(753), - [anon_sym_LPAREN] = ACTIONS(753), - [anon_sym_RPAREN] = ACTIONS(753), - [sym__newline_token] = ACTIONS(763), - [anon_sym_CARET_LBRACK] = ACTIONS(765), - [anon_sym_LBRACK_CARET] = ACTIONS(767), - [sym_uri_autolink] = ACTIONS(749), - [sym_email_autolink] = ACTIONS(749), - [sym__whitespace_ge_2] = ACTIONS(769), - [aux_sym__whitespace_token1] = ACTIONS(771), - [sym__word_no_digit] = ACTIONS(773), - [sym__digits] = ACTIONS(773), - [anon_sym_DASH_DASH] = ACTIONS(775), - [anon_sym_DASH_DASH_DASH] = ACTIONS(773), - [anon_sym_DOT_DOT_DOT] = ACTIONS(773), - [sym__code_span_start] = ACTIONS(777), - [sym__emphasis_open_star] = ACTIONS(779), - [sym__emphasis_open_underscore] = ACTIONS(781), - [sym__strikeout_open] = ACTIONS(783), - [sym__latex_span_start] = ACTIONS(785), - [sym__single_quote_open] = ACTIONS(787), - [sym__double_quote_open] = ACTIONS(789), - [sym__superscript_open] = ACTIONS(791), - [sym__superscript_close] = ACTIONS(2153), - [sym__subscript_open] = ACTIONS(795), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(797), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(799), - [sym__cite_author_in_text] = ACTIONS(801), - [sym__cite_suppress_author] = ACTIONS(803), - [sym__shortcode_open_escaped] = ACTIONS(805), - [sym__shortcode_open] = ACTIONS(807), - [sym__unclosed_span] = ACTIONS(749), + [aux_sym_insert_repeat1] = STATE(50), + [aux_sym__inline_base_repeat1] = STATE(383), + [sym__backslash_escape] = ACTIONS(637), + [sym_entity_reference] = ACTIONS(639), + [sym_numeric_character_reference] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_GT] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(645), + [anon_sym_DQUOTE] = ACTIONS(643), + [anon_sym_POUND] = ACTIONS(643), + [anon_sym_DOLLAR] = ACTIONS(643), + [anon_sym_PERCENT] = ACTIONS(643), + [anon_sym_AMP] = ACTIONS(641), + [anon_sym_SQUOTE] = ACTIONS(643), + [anon_sym_STAR] = ACTIONS(643), + [anon_sym_PLUS] = ACTIONS(643), + [anon_sym_COMMA] = ACTIONS(643), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_DOT] = ACTIONS(641), + [anon_sym_SLASH] = ACTIONS(643), + [anon_sym_COLON] = ACTIONS(643), + [anon_sym_SEMI] = ACTIONS(643), + [anon_sym_EQ] = ACTIONS(643), + [anon_sym_QMARK] = ACTIONS(643), + [anon_sym_LBRACK] = ACTIONS(647), + [anon_sym_BSLASH] = ACTIONS(649), + [anon_sym_CARET] = ACTIONS(641), + [anon_sym__] = ACTIONS(643), + [anon_sym_BQUOTE] = ACTIONS(643), + [anon_sym_LBRACE] = ACTIONS(651), + [anon_sym_PIPE] = ACTIONS(643), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_LPAREN] = ACTIONS(643), + [anon_sym_RPAREN] = ACTIONS(643), + [sym__newline_token] = ACTIONS(653), + [aux_sym_insert_token1] = ACTIONS(655), + [aux_sym_delete_token1] = ACTIONS(657), + [aux_sym_highlight_token1] = ACTIONS(659), + [aux_sym_edit_comment_token1] = ACTIONS(661), + [anon_sym_CARET_LBRACK] = ACTIONS(663), + [anon_sym_LBRACK_CARET] = ACTIONS(665), + [sym_uri_autolink] = ACTIONS(639), + [sym_email_autolink] = ACTIONS(639), + [sym__whitespace_ge_2] = ACTIONS(667), + [aux_sym__whitespace_token1] = ACTIONS(669), + [sym__word_no_digit] = ACTIONS(671), + [sym__digits] = ACTIONS(671), + [anon_sym_DASH_DASH] = ACTIONS(673), + [anon_sym_DASH_DASH_DASH] = ACTIONS(671), + [anon_sym_DOT_DOT_DOT] = ACTIONS(671), + [sym__code_span_start] = ACTIONS(675), + [sym__emphasis_open_star] = ACTIONS(677), + [sym__emphasis_open_underscore] = ACTIONS(679), + [sym__strikeout_open] = ACTIONS(681), + [sym__latex_span_start] = ACTIONS(683), + [sym__single_quote_open] = ACTIONS(685), + [sym__double_quote_open] = ACTIONS(687), + [sym__double_quote_close] = ACTIONS(2565), + [sym__superscript_open] = ACTIONS(691), + [sym__subscript_open] = ACTIONS(693), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(695), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(697), + [sym__cite_author_in_text] = ACTIONS(699), + [sym__cite_suppress_author] = ACTIONS(701), + [sym__shortcode_open_escaped] = ACTIONS(703), + [sym__shortcode_open] = ACTIONS(705), + [sym__unclosed_span] = ACTIONS(639), }, - [STATE(189)] = { - [sym_backslash_escape] = STATE(270), - [sym_commonmark_attribute] = STATE(270), - [sym_code_span] = STATE(270), - [sym_latex_span] = STATE(270), - [sym_superscript] = STATE(270), - [sym_subscript] = STATE(270), - [sym_strikeout] = STATE(270), - [sym_quoted_span] = STATE(270), - [sym_inline_note] = STATE(270), - [sym_citation] = STATE(270), - [sym_shortcode_escaped] = STATE(270), - [sym_shortcode] = STATE(270), - [sym_note_reference] = STATE(270), - [sym__link_text] = STATE(359), - [sym__link_text_non_empty] = STATE(364), + [STATE(181)] = { + [sym_backslash_escape] = STATE(365), + [sym_commonmark_attribute] = STATE(365), + [sym_code_span] = STATE(365), + [sym_latex_span] = STATE(365), + [sym_insert] = STATE(365), + [sym_delete] = STATE(365), + [sym_highlight] = STATE(365), + [sym_edit_comment] = STATE(365), + [sym_superscript] = STATE(365), + [sym_subscript] = STATE(365), + [sym_strikeout] = STATE(365), + [sym_quoted_span] = STATE(365), + [sym_inline_note] = STATE(365), + [sym_citation] = STATE(365), + [sym_shortcode_escaped] = STATE(365), + [sym_shortcode] = STATE(365), + [sym_note_reference] = STATE(365), + [sym__link_text] = STATE(416), + [sym__link_text_non_empty] = STATE(417), [sym_inline_link] = STATE(52), - [sym_image] = STATE(270), - [sym__image_inline_link] = STATE(795), - [sym__image_description] = STATE(1984), - [sym__image_description_non_empty] = STATE(1984), - [sym_hard_line_break] = STATE(270), - [sym__whitespace] = STATE(792), - [sym__word] = STATE(792), - [sym__soft_line_break] = STATE(796), + [sym_image] = STATE(365), + [sym__image_inline_link] = STATE(712), + [sym__image_description] = STATE(2314), + [sym__image_description_non_empty] = STATE(2314), + [sym_hard_line_break] = STATE(365), + [sym__whitespace] = STATE(709), + [sym__word] = STATE(709), + [sym__soft_line_break] = STATE(713), [sym__inline_base] = STATE(52), - [sym__text_base] = STATE(270), + [sym__text_base] = STATE(365), [sym__inline_element] = STATE(52), - [sym__emphasis_star] = STATE(615), + [sym__emphasis_star] = STATE(979), [sym__strong_emphasis_star] = STATE(52), - [sym__emphasis_underscore] = STATE(615), + [sym__emphasis_underscore] = STATE(979), [sym__strong_emphasis_underscore] = STATE(52), - [aux_sym_superscript_repeat1] = STATE(52), - [aux_sym__inline_base_repeat1] = STATE(270), - [sym__backslash_escape] = ACTIONS(809), - [sym_entity_reference] = ACTIONS(811), - [sym_numeric_character_reference] = ACTIONS(811), - [anon_sym_LT] = ACTIONS(813), - [anon_sym_GT] = ACTIONS(815), - [anon_sym_BANG] = ACTIONS(817), - [anon_sym_DQUOTE] = ACTIONS(815), - [anon_sym_POUND] = ACTIONS(815), - [anon_sym_DOLLAR] = ACTIONS(815), - [anon_sym_PERCENT] = ACTIONS(815), - [anon_sym_AMP] = ACTIONS(813), - [anon_sym_SQUOTE] = ACTIONS(815), - [anon_sym_STAR] = ACTIONS(815), - [anon_sym_PLUS] = ACTIONS(815), - [anon_sym_COMMA] = ACTIONS(815), - [anon_sym_DASH] = ACTIONS(813), - [anon_sym_DOT] = ACTIONS(813), - [anon_sym_SLASH] = ACTIONS(815), - [anon_sym_COLON] = ACTIONS(815), - [anon_sym_SEMI] = ACTIONS(815), - [anon_sym_EQ] = ACTIONS(815), - [anon_sym_QMARK] = ACTIONS(815), - [anon_sym_LBRACK] = ACTIONS(819), - [anon_sym_BSLASH] = ACTIONS(821), - [anon_sym_CARET] = ACTIONS(813), - [anon_sym__] = ACTIONS(815), - [anon_sym_BQUOTE] = ACTIONS(815), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_PIPE] = ACTIONS(815), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_RPAREN] = ACTIONS(815), - [sym__newline_token] = ACTIONS(825), - [anon_sym_CARET_LBRACK] = ACTIONS(827), - [anon_sym_LBRACK_CARET] = ACTIONS(829), - [sym_uri_autolink] = ACTIONS(811), - [sym_email_autolink] = ACTIONS(811), - [sym__whitespace_ge_2] = ACTIONS(831), - [aux_sym__whitespace_token1] = ACTIONS(833), - [sym__word_no_digit] = ACTIONS(835), - [sym__digits] = ACTIONS(835), - [anon_sym_DASH_DASH] = ACTIONS(837), - [anon_sym_DASH_DASH_DASH] = ACTIONS(835), - [anon_sym_DOT_DOT_DOT] = ACTIONS(835), - [sym__code_span_start] = ACTIONS(839), - [sym__emphasis_open_star] = ACTIONS(841), - [sym__emphasis_open_underscore] = ACTIONS(843), - [sym__strikeout_open] = ACTIONS(845), - [sym__latex_span_start] = ACTIONS(847), - [sym__single_quote_open] = ACTIONS(849), - [sym__double_quote_open] = ACTIONS(851), - [sym__superscript_open] = ACTIONS(853), - [sym__subscript_open] = ACTIONS(855), - [sym__subscript_close] = ACTIONS(2155), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(859), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(861), - [sym__cite_author_in_text] = ACTIONS(863), - [sym__cite_suppress_author] = ACTIONS(865), - [sym__shortcode_open_escaped] = ACTIONS(867), - [sym__shortcode_open] = ACTIONS(869), - [sym__unclosed_span] = ACTIONS(811), + [aux_sym_insert_repeat1] = STATE(52), + [aux_sym__inline_base_repeat1] = STATE(365), + [sym__backslash_escape] = ACTIONS(1341), + [sym_entity_reference] = ACTIONS(1343), + [sym_numeric_character_reference] = ACTIONS(1343), + [anon_sym_LT] = ACTIONS(1345), + [anon_sym_GT] = ACTIONS(1347), + [anon_sym_BANG] = ACTIONS(1349), + [anon_sym_DQUOTE] = ACTIONS(1347), + [anon_sym_POUND] = ACTIONS(1347), + [anon_sym_DOLLAR] = ACTIONS(1347), + [anon_sym_PERCENT] = ACTIONS(1347), + [anon_sym_AMP] = ACTIONS(1345), + [anon_sym_SQUOTE] = ACTIONS(1347), + [anon_sym_STAR] = ACTIONS(1347), + [anon_sym_PLUS] = ACTIONS(1347), + [anon_sym_COMMA] = ACTIONS(1347), + [anon_sym_DASH] = ACTIONS(1345), + [anon_sym_DOT] = ACTIONS(1345), + [anon_sym_SLASH] = ACTIONS(1347), + [anon_sym_COLON] = ACTIONS(1347), + [anon_sym_SEMI] = ACTIONS(1347), + [anon_sym_EQ] = ACTIONS(1347), + [anon_sym_QMARK] = ACTIONS(1347), + [anon_sym_LBRACK] = ACTIONS(1351), + [anon_sym_BSLASH] = ACTIONS(1353), + [anon_sym_CARET] = ACTIONS(1345), + [anon_sym__] = ACTIONS(1347), + [anon_sym_BQUOTE] = ACTIONS(1347), + [anon_sym_LBRACE] = ACTIONS(1355), + [anon_sym_PIPE] = ACTIONS(1347), + [anon_sym_TILDE] = ACTIONS(1347), + [anon_sym_LPAREN] = ACTIONS(1347), + [anon_sym_RPAREN] = ACTIONS(1347), + [sym__newline_token] = ACTIONS(1357), + [aux_sym_insert_token1] = ACTIONS(1359), + [aux_sym_delete_token1] = ACTIONS(1361), + [aux_sym_highlight_token1] = ACTIONS(1363), + [aux_sym_edit_comment_token1] = ACTIONS(1365), + [anon_sym_CARET_LBRACK] = ACTIONS(1367), + [anon_sym_LBRACK_CARET] = ACTIONS(1369), + [sym_uri_autolink] = ACTIONS(1343), + [sym_email_autolink] = ACTIONS(1343), + [sym__whitespace_ge_2] = ACTIONS(1371), + [aux_sym__whitespace_token1] = ACTIONS(1373), + [sym__word_no_digit] = ACTIONS(1375), + [sym__digits] = ACTIONS(1375), + [anon_sym_DASH_DASH] = ACTIONS(1377), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1375), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1375), + [sym__code_span_start] = ACTIONS(1379), + [sym__emphasis_open_star] = ACTIONS(1381), + [sym__emphasis_open_underscore] = ACTIONS(1383), + [sym__strikeout_open] = ACTIONS(1385), + [sym__latex_span_start] = ACTIONS(1387), + [sym__single_quote_open] = ACTIONS(1389), + [sym__double_quote_open] = ACTIONS(1391), + [sym__superscript_open] = ACTIONS(1393), + [sym__superscript_close] = ACTIONS(2567), + [sym__subscript_open] = ACTIONS(1397), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1399), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1401), + [sym__cite_author_in_text] = ACTIONS(1403), + [sym__cite_suppress_author] = ACTIONS(1405), + [sym__shortcode_open_escaped] = ACTIONS(1407), + [sym__shortcode_open] = ACTIONS(1409), + [sym__unclosed_span] = ACTIONS(1343), }, - [STATE(190)] = { - [sym_backslash_escape] = STATE(271), - [sym_commonmark_attribute] = STATE(271), - [sym_code_span] = STATE(271), - [sym_latex_span] = STATE(271), - [sym_superscript] = STATE(271), - [sym_subscript] = STATE(271), - [sym_strikeout] = STATE(271), - [sym_quoted_span] = STATE(271), - [sym_inline_note] = STATE(271), - [sym_citation] = STATE(271), - [sym_shortcode_escaped] = STATE(271), - [sym_shortcode] = STATE(271), - [sym_note_reference] = STATE(271), - [sym__link_text] = STATE(424), - [sym__link_text_non_empty] = STATE(425), - [sym_inline_link] = STATE(194), - [sym_image] = STATE(271), - [sym__image_inline_link] = STATE(883), - [sym__image_description] = STATE(1998), - [sym__image_description_non_empty] = STATE(1998), - [sym_hard_line_break] = STATE(271), - [sym__whitespace] = STATE(881), - [sym__word] = STATE(881), - [sym__soft_line_break] = STATE(884), - [sym__inline_base] = STATE(194), - [sym__text_base] = STATE(271), - [sym__inline_element] = STATE(194), - [sym__emphasis_star] = STATE(710), - [sym__strong_emphasis_star] = STATE(194), - [sym__emphasis_underscore] = STATE(710), - [sym__strong_emphasis_underscore] = STATE(194), - [aux_sym_superscript_repeat1] = STATE(194), - [aux_sym__inline_base_repeat1] = STATE(271), - [sym__backslash_escape] = ACTIONS(159), - [sym_entity_reference] = ACTIONS(161), - [sym_numeric_character_reference] = ACTIONS(161), - [anon_sym_LT] = ACTIONS(163), - [anon_sym_GT] = ACTIONS(165), - [anon_sym_BANG] = ACTIONS(167), - [anon_sym_DQUOTE] = ACTIONS(165), - [anon_sym_POUND] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(165), - [anon_sym_PERCENT] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_SQUOTE] = ACTIONS(165), - [anon_sym_STAR] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(165), - [anon_sym_COMMA] = ACTIONS(165), - [anon_sym_DASH] = ACTIONS(163), - [anon_sym_DOT] = ACTIONS(163), - [anon_sym_SLASH] = ACTIONS(165), - [anon_sym_COLON] = ACTIONS(165), - [anon_sym_SEMI] = ACTIONS(165), - [anon_sym_EQ] = ACTIONS(165), - [anon_sym_QMARK] = ACTIONS(165), - [anon_sym_LBRACK] = ACTIONS(169), - [anon_sym_BSLASH] = ACTIONS(171), - [anon_sym_RBRACK] = ACTIONS(2157), - [anon_sym_CARET] = ACTIONS(163), - [anon_sym__] = ACTIONS(165), - [anon_sym_BQUOTE] = ACTIONS(165), - [anon_sym_LBRACE] = ACTIONS(175), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(165), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_RPAREN] = ACTIONS(165), - [sym__newline_token] = ACTIONS(177), - [anon_sym_CARET_LBRACK] = ACTIONS(179), - [anon_sym_LBRACK_CARET] = ACTIONS(181), - [sym_uri_autolink] = ACTIONS(161), - [sym_email_autolink] = ACTIONS(161), - [sym__whitespace_ge_2] = ACTIONS(183), - [aux_sym__whitespace_token1] = ACTIONS(185), - [sym__word_no_digit] = ACTIONS(187), - [sym__digits] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_DASH_DASH_DASH] = ACTIONS(187), - [anon_sym_DOT_DOT_DOT] = ACTIONS(187), - [sym__code_span_start] = ACTIONS(191), - [sym__emphasis_open_star] = ACTIONS(193), - [sym__emphasis_open_underscore] = ACTIONS(195), - [sym__strikeout_open] = ACTIONS(199), - [sym__latex_span_start] = ACTIONS(201), - [sym__single_quote_open] = ACTIONS(203), - [sym__double_quote_open] = ACTIONS(205), - [sym__superscript_open] = ACTIONS(207), - [sym__subscript_open] = ACTIONS(209), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(211), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(213), - [sym__cite_author_in_text] = ACTIONS(215), - [sym__cite_suppress_author] = ACTIONS(217), - [sym__shortcode_open_escaped] = ACTIONS(219), - [sym__shortcode_open] = ACTIONS(221), - [sym__unclosed_span] = ACTIONS(161), + [STATE(182)] = { + [sym_backslash_escape] = STATE(367), + [sym_commonmark_attribute] = STATE(367), + [sym_code_span] = STATE(367), + [sym_latex_span] = STATE(367), + [sym_insert] = STATE(367), + [sym_delete] = STATE(367), + [sym_highlight] = STATE(367), + [sym_edit_comment] = STATE(367), + [sym_superscript] = STATE(367), + [sym_subscript] = STATE(367), + [sym_strikeout] = STATE(367), + [sym_quoted_span] = STATE(367), + [sym_inline_note] = STATE(367), + [sym_citation] = STATE(367), + [sym_shortcode_escaped] = STATE(367), + [sym_shortcode] = STATE(367), + [sym_note_reference] = STATE(367), + [sym__link_text] = STATE(435), + [sym__link_text_non_empty] = STATE(436), + [sym_inline_link] = STATE(55), + [sym_image] = STATE(367), + [sym__image_inline_link] = STATE(819), + [sym__image_description] = STATE(2328), + [sym__image_description_non_empty] = STATE(2328), + [sym_hard_line_break] = STATE(367), + [sym__whitespace] = STATE(816), + [sym__word] = STATE(816), + [sym__soft_line_break] = STATE(820), + [sym__inline_base] = STATE(55), + [sym__text_base] = STATE(367), + [sym__inline_element] = STATE(55), + [sym__emphasis_star] = STATE(1271), + [sym__strong_emphasis_star] = STATE(55), + [sym__emphasis_underscore] = STATE(1271), + [sym__strong_emphasis_underscore] = STATE(55), + [aux_sym_insert_repeat1] = STATE(55), + [aux_sym__inline_base_repeat1] = STATE(367), + [sym__backslash_escape] = ACTIONS(1413), + [sym_entity_reference] = ACTIONS(1415), + [sym_numeric_character_reference] = ACTIONS(1415), + [anon_sym_LT] = ACTIONS(1417), + [anon_sym_GT] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1419), + [anon_sym_POUND] = ACTIONS(1419), + [anon_sym_DOLLAR] = ACTIONS(1419), + [anon_sym_PERCENT] = ACTIONS(1419), + [anon_sym_AMP] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [anon_sym_STAR] = ACTIONS(1419), + [anon_sym_PLUS] = ACTIONS(1419), + [anon_sym_COMMA] = ACTIONS(1419), + [anon_sym_DASH] = ACTIONS(1417), + [anon_sym_DOT] = ACTIONS(1417), + [anon_sym_SLASH] = ACTIONS(1419), + [anon_sym_COLON] = ACTIONS(1419), + [anon_sym_SEMI] = ACTIONS(1419), + [anon_sym_EQ] = ACTIONS(1419), + [anon_sym_QMARK] = ACTIONS(1419), + [anon_sym_LBRACK] = ACTIONS(1423), + [anon_sym_BSLASH] = ACTIONS(1425), + [anon_sym_CARET] = ACTIONS(1417), + [anon_sym__] = ACTIONS(1419), + [anon_sym_BQUOTE] = ACTIONS(1419), + [anon_sym_LBRACE] = ACTIONS(1427), + [anon_sym_PIPE] = ACTIONS(1419), + [anon_sym_TILDE] = ACTIONS(1419), + [anon_sym_LPAREN] = ACTIONS(1419), + [anon_sym_RPAREN] = ACTIONS(1419), + [sym__newline_token] = ACTIONS(1429), + [aux_sym_insert_token1] = ACTIONS(1431), + [aux_sym_delete_token1] = ACTIONS(1433), + [aux_sym_highlight_token1] = ACTIONS(1435), + [aux_sym_edit_comment_token1] = ACTIONS(1437), + [anon_sym_CARET_LBRACK] = ACTIONS(1439), + [anon_sym_LBRACK_CARET] = ACTIONS(1441), + [sym_uri_autolink] = ACTIONS(1415), + [sym_email_autolink] = ACTIONS(1415), + [sym__whitespace_ge_2] = ACTIONS(1443), + [aux_sym__whitespace_token1] = ACTIONS(1445), + [sym__word_no_digit] = ACTIONS(1447), + [sym__digits] = ACTIONS(1447), + [anon_sym_DASH_DASH] = ACTIONS(1449), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1447), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1447), + [sym__code_span_start] = ACTIONS(1451), + [sym__emphasis_open_star] = ACTIONS(1453), + [sym__emphasis_open_underscore] = ACTIONS(1455), + [sym__strikeout_open] = ACTIONS(1457), + [sym__latex_span_start] = ACTIONS(1459), + [sym__single_quote_open] = ACTIONS(1461), + [sym__double_quote_open] = ACTIONS(1463), + [sym__superscript_open] = ACTIONS(1465), + [sym__subscript_open] = ACTIONS(1467), + [sym__subscript_close] = ACTIONS(2569), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1471), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1473), + [sym__cite_author_in_text] = ACTIONS(1475), + [sym__cite_suppress_author] = ACTIONS(1477), + [sym__shortcode_open_escaped] = ACTIONS(1479), + [sym__shortcode_open] = ACTIONS(1481), + [sym__unclosed_span] = ACTIONS(1415), }, - [STATE(191)] = { - [sym_backslash_escape] = STATE(271), - [sym_commonmark_attribute] = STATE(271), - [sym_code_span] = STATE(271), - [sym_latex_span] = STATE(271), - [sym_superscript] = STATE(271), - [sym_subscript] = STATE(271), - [sym_strikeout] = STATE(271), - [sym_quoted_span] = STATE(271), - [sym_inline_note] = STATE(271), - [sym_citation] = STATE(271), - [sym_shortcode_escaped] = STATE(271), - [sym_shortcode] = STATE(271), - [sym_note_reference] = STATE(271), - [sym__link_text] = STATE(424), - [sym__link_text_non_empty] = STATE(425), - [sym_inline_link] = STATE(53), - [sym_image] = STATE(271), - [sym__image_inline_link] = STATE(883), - [sym__image_description] = STATE(1998), - [sym__image_description_non_empty] = STATE(1998), - [sym_hard_line_break] = STATE(271), - [sym__whitespace] = STATE(881), - [sym__word] = STATE(881), - [sym__soft_line_break] = STATE(884), - [sym__inline_base] = STATE(53), - [sym__text_base] = STATE(271), - [sym__inline_element] = STATE(53), - [sym__emphasis_star] = STATE(710), - [sym__strong_emphasis_star] = STATE(53), - [sym__emphasis_underscore] = STATE(710), - [sym__strong_emphasis_underscore] = STATE(53), - [aux_sym_superscript_repeat1] = STATE(53), - [aux_sym__inline_base_repeat1] = STATE(271), - [sym__backslash_escape] = ACTIONS(159), - [sym_entity_reference] = ACTIONS(161), - [sym_numeric_character_reference] = ACTIONS(161), - [anon_sym_LT] = ACTIONS(163), - [anon_sym_GT] = ACTIONS(165), - [anon_sym_BANG] = ACTIONS(167), - [anon_sym_DQUOTE] = ACTIONS(165), - [anon_sym_POUND] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(165), - [anon_sym_PERCENT] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_SQUOTE] = ACTIONS(165), - [anon_sym_STAR] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(165), - [anon_sym_COMMA] = ACTIONS(165), - [anon_sym_DASH] = ACTIONS(163), - [anon_sym_DOT] = ACTIONS(163), - [anon_sym_SLASH] = ACTIONS(165), - [anon_sym_COLON] = ACTIONS(165), - [anon_sym_SEMI] = ACTIONS(165), - [anon_sym_EQ] = ACTIONS(165), - [anon_sym_QMARK] = ACTIONS(165), - [anon_sym_LBRACK] = ACTIONS(169), - [anon_sym_BSLASH] = ACTIONS(171), - [anon_sym_RBRACK] = ACTIONS(2159), - [anon_sym_CARET] = ACTIONS(163), - [anon_sym__] = ACTIONS(165), - [anon_sym_BQUOTE] = ACTIONS(165), - [anon_sym_LBRACE] = ACTIONS(175), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(165), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_RPAREN] = ACTIONS(165), - [sym__newline_token] = ACTIONS(177), - [anon_sym_CARET_LBRACK] = ACTIONS(179), - [anon_sym_LBRACK_CARET] = ACTIONS(181), - [sym_uri_autolink] = ACTIONS(161), - [sym_email_autolink] = ACTIONS(161), - [sym__whitespace_ge_2] = ACTIONS(183), - [aux_sym__whitespace_token1] = ACTIONS(185), - [sym__word_no_digit] = ACTIONS(187), - [sym__digits] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_DASH_DASH_DASH] = ACTIONS(187), - [anon_sym_DOT_DOT_DOT] = ACTIONS(187), - [sym__code_span_start] = ACTIONS(191), - [sym__emphasis_open_star] = ACTIONS(193), - [sym__emphasis_open_underscore] = ACTIONS(195), - [sym__strikeout_open] = ACTIONS(199), - [sym__latex_span_start] = ACTIONS(201), - [sym__single_quote_open] = ACTIONS(203), - [sym__double_quote_open] = ACTIONS(205), - [sym__superscript_open] = ACTIONS(207), - [sym__subscript_open] = ACTIONS(209), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(211), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(213), - [sym__cite_author_in_text] = ACTIONS(215), - [sym__cite_suppress_author] = ACTIONS(217), - [sym__shortcode_open_escaped] = ACTIONS(219), - [sym__shortcode_open] = ACTIONS(221), - [sym__unclosed_span] = ACTIONS(161), + [STATE(183)] = { + [sym_backslash_escape] = STATE(372), + [sym_commonmark_attribute] = STATE(372), + [sym_code_span] = STATE(372), + [sym_latex_span] = STATE(372), + [sym_insert] = STATE(372), + [sym_delete] = STATE(372), + [sym_highlight] = STATE(372), + [sym_edit_comment] = STATE(372), + [sym_superscript] = STATE(372), + [sym_subscript] = STATE(372), + [sym_strikeout] = STATE(372), + [sym_quoted_span] = STATE(372), + [sym_inline_note] = STATE(372), + [sym_citation] = STATE(372), + [sym_shortcode_escaped] = STATE(372), + [sym_shortcode] = STATE(372), + [sym_note_reference] = STATE(372), + [sym__link_text] = STATE(454), + [sym__link_text_non_empty] = STATE(455), + [sym_inline_link] = STATE(57), + [sym_image] = STATE(372), + [sym__image_inline_link] = STATE(1025), + [sym__image_description] = STATE(2356), + [sym__image_description_non_empty] = STATE(2356), + [sym_hard_line_break] = STATE(372), + [sym__whitespace] = STATE(1022), + [sym__word] = STATE(1022), + [sym__soft_line_break] = STATE(1026), + [sym__inline_base] = STATE(57), + [sym__text_base] = STATE(372), + [sym__inline_element] = STATE(57), + [sym__emphasis_star] = STATE(714), + [sym__strong_emphasis_star] = STATE(57), + [sym__emphasis_underscore] = STATE(714), + [sym__strong_emphasis_underscore] = STATE(57), + [aux_sym_insert_repeat1] = STATE(57), + [aux_sym__inline_base_repeat1] = STATE(372), + [sym__backslash_escape] = ACTIONS(707), + [sym_entity_reference] = ACTIONS(709), + [sym_numeric_character_reference] = ACTIONS(709), + [anon_sym_LT] = ACTIONS(711), + [anon_sym_GT] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(715), + [anon_sym_DQUOTE] = ACTIONS(713), + [anon_sym_POUND] = ACTIONS(713), + [anon_sym_DOLLAR] = ACTIONS(713), + [anon_sym_PERCENT] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(711), + [anon_sym_SQUOTE] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_COMMA] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_DOT] = ACTIONS(711), + [anon_sym_SLASH] = ACTIONS(713), + [anon_sym_COLON] = ACTIONS(713), + [anon_sym_SEMI] = ACTIONS(713), + [anon_sym_EQ] = ACTIONS(713), + [anon_sym_QMARK] = ACTIONS(713), + [anon_sym_LBRACK] = ACTIONS(717), + [anon_sym_BSLASH] = ACTIONS(719), + [anon_sym_CARET] = ACTIONS(711), + [anon_sym__] = ACTIONS(713), + [anon_sym_BQUOTE] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(721), + [anon_sym_PIPE] = ACTIONS(713), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_LPAREN] = ACTIONS(713), + [anon_sym_RPAREN] = ACTIONS(713), + [sym__newline_token] = ACTIONS(723), + [aux_sym_insert_token1] = ACTIONS(725), + [aux_sym_insert_token2] = ACTIONS(2571), + [aux_sym_delete_token1] = ACTIONS(729), + [aux_sym_highlight_token1] = ACTIONS(731), + [aux_sym_edit_comment_token1] = ACTIONS(733), + [anon_sym_CARET_LBRACK] = ACTIONS(735), + [anon_sym_LBRACK_CARET] = ACTIONS(737), + [sym_uri_autolink] = ACTIONS(709), + [sym_email_autolink] = ACTIONS(709), + [sym__whitespace_ge_2] = ACTIONS(739), + [aux_sym__whitespace_token1] = ACTIONS(741), + [sym__word_no_digit] = ACTIONS(743), + [sym__digits] = ACTIONS(743), + [anon_sym_DASH_DASH] = ACTIONS(745), + [anon_sym_DASH_DASH_DASH] = ACTIONS(743), + [anon_sym_DOT_DOT_DOT] = ACTIONS(743), + [sym__code_span_start] = ACTIONS(747), + [sym__emphasis_open_star] = ACTIONS(749), + [sym__emphasis_open_underscore] = ACTIONS(751), + [sym__strikeout_open] = ACTIONS(753), + [sym__latex_span_start] = ACTIONS(755), + [sym__single_quote_open] = ACTIONS(757), + [sym__double_quote_open] = ACTIONS(759), + [sym__superscript_open] = ACTIONS(761), + [sym__subscript_open] = ACTIONS(763), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(765), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(767), + [sym__cite_author_in_text] = ACTIONS(769), + [sym__cite_suppress_author] = ACTIONS(771), + [sym__shortcode_open_escaped] = ACTIONS(773), + [sym__shortcode_open] = ACTIONS(775), + [sym__unclosed_span] = ACTIONS(709), }, - [STATE(192)] = { - [sym_backslash_escape] = STATE(261), - [sym_commonmark_attribute] = STATE(261), - [sym_code_span] = STATE(261), - [sym_latex_span] = STATE(261), - [sym_superscript] = STATE(261), - [sym_subscript] = STATE(261), - [sym_strikeout] = STATE(261), - [sym_quoted_span] = STATE(261), - [sym_inline_note] = STATE(261), - [sym_citation] = STATE(261), - [sym_shortcode_escaped] = STATE(261), - [sym_shortcode] = STATE(261), - [sym_note_reference] = STATE(261), - [sym__link_text] = STATE(322), - [sym__link_text_non_empty] = STATE(323), - [sym_inline_link] = STATE(39), - [sym_image] = STATE(261), - [sym__image_inline_link] = STATE(595), - [sym__image_description] = STATE(1972), - [sym__image_description_non_empty] = STATE(1972), - [sym_hard_line_break] = STATE(261), - [sym__whitespace] = STATE(587), - [sym__word] = STATE(587), - [sym__soft_line_break] = STATE(597), - [sym__inline_base] = STATE(39), - [sym__text_base] = STATE(261), - [sym__inline_element_no_star] = STATE(39), - [aux_sym__inline_no_star] = STATE(39), - [sym__emphasis_star] = STATE(544), - [sym__strong_emphasis_star] = STATE(39), - [sym__emphasis_underscore] = STATE(544), - [sym__strong_emphasis_underscore] = STATE(39), - [aux_sym__inline_base_repeat1] = STATE(261), - [sym__backslash_escape] = ACTIONS(969), - [sym_entity_reference] = ACTIONS(971), - [sym_numeric_character_reference] = ACTIONS(971), - [anon_sym_LT] = ACTIONS(973), - [anon_sym_GT] = ACTIONS(975), - [anon_sym_BANG] = ACTIONS(977), - [anon_sym_DQUOTE] = ACTIONS(975), - [anon_sym_POUND] = ACTIONS(975), - [anon_sym_DOLLAR] = ACTIONS(975), - [anon_sym_PERCENT] = ACTIONS(975), - [anon_sym_AMP] = ACTIONS(973), - [anon_sym_SQUOTE] = ACTIONS(975), - [anon_sym_STAR] = ACTIONS(975), - [anon_sym_PLUS] = ACTIONS(975), - [anon_sym_COMMA] = ACTIONS(975), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_DOT] = ACTIONS(973), - [anon_sym_SLASH] = ACTIONS(975), - [anon_sym_COLON] = ACTIONS(975), - [anon_sym_SEMI] = ACTIONS(975), - [anon_sym_EQ] = ACTIONS(975), - [anon_sym_QMARK] = ACTIONS(975), - [anon_sym_LBRACK] = ACTIONS(979), - [anon_sym_BSLASH] = ACTIONS(981), - [anon_sym_CARET] = ACTIONS(973), - [anon_sym__] = ACTIONS(975), - [anon_sym_BQUOTE] = ACTIONS(975), - [anon_sym_LBRACE] = ACTIONS(983), - [anon_sym_PIPE] = ACTIONS(975), - [anon_sym_TILDE] = ACTIONS(975), - [anon_sym_LPAREN] = ACTIONS(975), - [anon_sym_RPAREN] = ACTIONS(975), - [sym__newline_token] = ACTIONS(985), - [anon_sym_CARET_LBRACK] = ACTIONS(987), - [anon_sym_LBRACK_CARET] = ACTIONS(989), - [sym_uri_autolink] = ACTIONS(971), - [sym_email_autolink] = ACTIONS(971), - [sym__whitespace_ge_2] = ACTIONS(991), - [aux_sym__whitespace_token1] = ACTIONS(993), - [sym__word_no_digit] = ACTIONS(995), - [sym__digits] = ACTIONS(995), - [anon_sym_DASH_DASH] = ACTIONS(997), - [anon_sym_DASH_DASH_DASH] = ACTIONS(995), - [anon_sym_DOT_DOT_DOT] = ACTIONS(995), - [sym__code_span_start] = ACTIONS(999), - [sym__emphasis_open_star] = ACTIONS(1001), - [sym__emphasis_open_underscore] = ACTIONS(1003), - [sym__emphasis_close_star] = ACTIONS(2161), - [sym__strikeout_open] = ACTIONS(1007), - [sym__latex_span_start] = ACTIONS(1009), - [sym__single_quote_open] = ACTIONS(1011), - [sym__double_quote_open] = ACTIONS(1013), - [sym__superscript_open] = ACTIONS(1015), - [sym__subscript_open] = ACTIONS(1017), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1019), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1021), - [sym__cite_author_in_text] = ACTIONS(1023), - [sym__cite_suppress_author] = ACTIONS(1025), - [sym__shortcode_open_escaped] = ACTIONS(1027), - [sym__shortcode_open] = ACTIONS(1029), - [sym__unclosed_span] = ACTIONS(971), + [STATE(184)] = { + [sym_backslash_escape] = STATE(372), + [sym_commonmark_attribute] = STATE(372), + [sym_code_span] = STATE(372), + [sym_latex_span] = STATE(372), + [sym_insert] = STATE(372), + [sym_delete] = STATE(372), + [sym_highlight] = STATE(372), + [sym_edit_comment] = STATE(372), + [sym_superscript] = STATE(372), + [sym_subscript] = STATE(372), + [sym_strikeout] = STATE(372), + [sym_quoted_span] = STATE(372), + [sym_inline_note] = STATE(372), + [sym_citation] = STATE(372), + [sym_shortcode_escaped] = STATE(372), + [sym_shortcode] = STATE(372), + [sym_note_reference] = STATE(372), + [sym__link_text] = STATE(454), + [sym__link_text_non_empty] = STATE(455), + [sym_inline_link] = STATE(57), + [sym_image] = STATE(372), + [sym__image_inline_link] = STATE(1025), + [sym__image_description] = STATE(2356), + [sym__image_description_non_empty] = STATE(2356), + [sym_hard_line_break] = STATE(372), + [sym__whitespace] = STATE(1022), + [sym__word] = STATE(1022), + [sym__soft_line_break] = STATE(1026), + [sym__inline_base] = STATE(57), + [sym__text_base] = STATE(372), + [sym__inline_element] = STATE(57), + [sym__emphasis_star] = STATE(714), + [sym__strong_emphasis_star] = STATE(57), + [sym__emphasis_underscore] = STATE(714), + [sym__strong_emphasis_underscore] = STATE(57), + [aux_sym_insert_repeat1] = STATE(57), + [aux_sym__inline_base_repeat1] = STATE(372), + [sym__backslash_escape] = ACTIONS(707), + [sym_entity_reference] = ACTIONS(709), + [sym_numeric_character_reference] = ACTIONS(709), + [anon_sym_LT] = ACTIONS(711), + [anon_sym_GT] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(715), + [anon_sym_DQUOTE] = ACTIONS(713), + [anon_sym_POUND] = ACTIONS(713), + [anon_sym_DOLLAR] = ACTIONS(713), + [anon_sym_PERCENT] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(711), + [anon_sym_SQUOTE] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_COMMA] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_DOT] = ACTIONS(711), + [anon_sym_SLASH] = ACTIONS(713), + [anon_sym_COLON] = ACTIONS(713), + [anon_sym_SEMI] = ACTIONS(713), + [anon_sym_EQ] = ACTIONS(713), + [anon_sym_QMARK] = ACTIONS(713), + [anon_sym_LBRACK] = ACTIONS(717), + [anon_sym_BSLASH] = ACTIONS(719), + [anon_sym_CARET] = ACTIONS(711), + [anon_sym__] = ACTIONS(713), + [anon_sym_BQUOTE] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(721), + [anon_sym_PIPE] = ACTIONS(713), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_LPAREN] = ACTIONS(713), + [anon_sym_RPAREN] = ACTIONS(713), + [sym__newline_token] = ACTIONS(723), + [aux_sym_insert_token1] = ACTIONS(725), + [aux_sym_insert_token2] = ACTIONS(2573), + [aux_sym_delete_token1] = ACTIONS(729), + [aux_sym_highlight_token1] = ACTIONS(731), + [aux_sym_edit_comment_token1] = ACTIONS(733), + [anon_sym_CARET_LBRACK] = ACTIONS(735), + [anon_sym_LBRACK_CARET] = ACTIONS(737), + [sym_uri_autolink] = ACTIONS(709), + [sym_email_autolink] = ACTIONS(709), + [sym__whitespace_ge_2] = ACTIONS(739), + [aux_sym__whitespace_token1] = ACTIONS(741), + [sym__word_no_digit] = ACTIONS(743), + [sym__digits] = ACTIONS(743), + [anon_sym_DASH_DASH] = ACTIONS(745), + [anon_sym_DASH_DASH_DASH] = ACTIONS(743), + [anon_sym_DOT_DOT_DOT] = ACTIONS(743), + [sym__code_span_start] = ACTIONS(747), + [sym__emphasis_open_star] = ACTIONS(749), + [sym__emphasis_open_underscore] = ACTIONS(751), + [sym__strikeout_open] = ACTIONS(753), + [sym__latex_span_start] = ACTIONS(755), + [sym__single_quote_open] = ACTIONS(757), + [sym__double_quote_open] = ACTIONS(759), + [sym__superscript_open] = ACTIONS(761), + [sym__subscript_open] = ACTIONS(763), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(765), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(767), + [sym__cite_author_in_text] = ACTIONS(769), + [sym__cite_suppress_author] = ACTIONS(771), + [sym__shortcode_open_escaped] = ACTIONS(773), + [sym__shortcode_open] = ACTIONS(775), + [sym__unclosed_span] = ACTIONS(709), }, - [STATE(193)] = { - [sym_backslash_escape] = STATE(274), - [sym_commonmark_attribute] = STATE(274), - [sym_code_span] = STATE(274), - [sym_latex_span] = STATE(274), - [sym_superscript] = STATE(274), - [sym_subscript] = STATE(274), - [sym_strikeout] = STATE(274), - [sym_quoted_span] = STATE(274), - [sym_inline_note] = STATE(274), - [sym_citation] = STATE(274), - [sym_shortcode_escaped] = STATE(274), - [sym_shortcode] = STATE(274), - [sym_note_reference] = STATE(274), - [sym__link_text] = STATE(351), - [sym__link_text_non_empty] = STATE(352), - [sym_inline_link] = STATE(41), - [sym_image] = STATE(274), - [sym__image_inline_link] = STATE(894), - [sym__image_description] = STATE(2008), - [sym__image_description_non_empty] = STATE(2008), - [sym_hard_line_break] = STATE(274), - [sym__whitespace] = STATE(882), - [sym__word] = STATE(882), - [sym__soft_line_break] = STATE(898), - [sym__inline_base] = STATE(41), - [sym__text_base] = STATE(274), - [sym__inline_element_no_underscore] = STATE(41), - [aux_sym__inline_no_underscore] = STATE(41), - [sym__emphasis_star] = STATE(711), - [sym__strong_emphasis_star] = STATE(41), - [sym__emphasis_underscore] = STATE(711), - [sym__strong_emphasis_underscore] = STATE(41), - [aux_sym__inline_base_repeat1] = STATE(274), - [sym__backslash_escape] = ACTIONS(1123), - [sym_entity_reference] = ACTIONS(1125), - [sym_numeric_character_reference] = ACTIONS(1125), - [anon_sym_LT] = ACTIONS(1127), - [anon_sym_GT] = ACTIONS(1129), - [anon_sym_BANG] = ACTIONS(1131), - [anon_sym_DQUOTE] = ACTIONS(1129), - [anon_sym_POUND] = ACTIONS(1129), - [anon_sym_DOLLAR] = ACTIONS(1129), - [anon_sym_PERCENT] = ACTIONS(1129), - [anon_sym_AMP] = ACTIONS(1127), - [anon_sym_SQUOTE] = ACTIONS(1129), - [anon_sym_STAR] = ACTIONS(1129), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_COMMA] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1127), - [anon_sym_DOT] = ACTIONS(1127), - [anon_sym_SLASH] = ACTIONS(1129), - [anon_sym_COLON] = ACTIONS(1129), - [anon_sym_SEMI] = ACTIONS(1129), - [anon_sym_EQ] = ACTIONS(1129), - [anon_sym_QMARK] = ACTIONS(1129), - [anon_sym_LBRACK] = ACTIONS(1133), - [anon_sym_BSLASH] = ACTIONS(1135), - [anon_sym_CARET] = ACTIONS(1127), - [anon_sym__] = ACTIONS(1129), - [anon_sym_BQUOTE] = ACTIONS(1129), - [anon_sym_LBRACE] = ACTIONS(1137), - [anon_sym_PIPE] = ACTIONS(1129), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1129), - [anon_sym_RPAREN] = ACTIONS(1129), - [sym__newline_token] = ACTIONS(1139), - [anon_sym_CARET_LBRACK] = ACTIONS(1141), - [anon_sym_LBRACK_CARET] = ACTIONS(1143), - [sym_uri_autolink] = ACTIONS(1125), - [sym_email_autolink] = ACTIONS(1125), - [sym__whitespace_ge_2] = ACTIONS(1145), - [aux_sym__whitespace_token1] = ACTIONS(1147), - [sym__word_no_digit] = ACTIONS(1149), - [sym__digits] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1151), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1149), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1149), - [sym__code_span_start] = ACTIONS(1153), - [sym__emphasis_open_star] = ACTIONS(1155), - [sym__emphasis_open_underscore] = ACTIONS(1157), - [sym__emphasis_close_underscore] = ACTIONS(2163), - [sym__strikeout_open] = ACTIONS(1161), - [sym__latex_span_start] = ACTIONS(1163), - [sym__single_quote_open] = ACTIONS(1165), - [sym__double_quote_open] = ACTIONS(1167), - [sym__superscript_open] = ACTIONS(1169), - [sym__subscript_open] = ACTIONS(1171), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1173), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1175), - [sym__cite_author_in_text] = ACTIONS(1177), - [sym__cite_suppress_author] = ACTIONS(1179), - [sym__shortcode_open_escaped] = ACTIONS(1181), - [sym__shortcode_open] = ACTIONS(1183), - [sym__unclosed_span] = ACTIONS(1125), + [STATE(185)] = { + [sym_backslash_escape] = STATE(372), + [sym_commonmark_attribute] = STATE(372), + [sym_code_span] = STATE(372), + [sym_latex_span] = STATE(372), + [sym_insert] = STATE(372), + [sym_delete] = STATE(372), + [sym_highlight] = STATE(372), + [sym_edit_comment] = STATE(372), + [sym_superscript] = STATE(372), + [sym_subscript] = STATE(372), + [sym_strikeout] = STATE(372), + [sym_quoted_span] = STATE(372), + [sym_inline_note] = STATE(372), + [sym_citation] = STATE(372), + [sym_shortcode_escaped] = STATE(372), + [sym_shortcode] = STATE(372), + [sym_note_reference] = STATE(372), + [sym__link_text] = STATE(454), + [sym__link_text_non_empty] = STATE(455), + [sym_inline_link] = STATE(57), + [sym_image] = STATE(372), + [sym__image_inline_link] = STATE(1025), + [sym__image_description] = STATE(2356), + [sym__image_description_non_empty] = STATE(2356), + [sym_hard_line_break] = STATE(372), + [sym__whitespace] = STATE(1022), + [sym__word] = STATE(1022), + [sym__soft_line_break] = STATE(1026), + [sym__inline_base] = STATE(57), + [sym__text_base] = STATE(372), + [sym__inline_element] = STATE(57), + [sym__emphasis_star] = STATE(714), + [sym__strong_emphasis_star] = STATE(57), + [sym__emphasis_underscore] = STATE(714), + [sym__strong_emphasis_underscore] = STATE(57), + [aux_sym_insert_repeat1] = STATE(57), + [aux_sym__inline_base_repeat1] = STATE(372), + [sym__backslash_escape] = ACTIONS(707), + [sym_entity_reference] = ACTIONS(709), + [sym_numeric_character_reference] = ACTIONS(709), + [anon_sym_LT] = ACTIONS(711), + [anon_sym_GT] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(715), + [anon_sym_DQUOTE] = ACTIONS(713), + [anon_sym_POUND] = ACTIONS(713), + [anon_sym_DOLLAR] = ACTIONS(713), + [anon_sym_PERCENT] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(711), + [anon_sym_SQUOTE] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_COMMA] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_DOT] = ACTIONS(711), + [anon_sym_SLASH] = ACTIONS(713), + [anon_sym_COLON] = ACTIONS(713), + [anon_sym_SEMI] = ACTIONS(713), + [anon_sym_EQ] = ACTIONS(713), + [anon_sym_QMARK] = ACTIONS(713), + [anon_sym_LBRACK] = ACTIONS(717), + [anon_sym_BSLASH] = ACTIONS(719), + [anon_sym_CARET] = ACTIONS(711), + [anon_sym__] = ACTIONS(713), + [anon_sym_BQUOTE] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(721), + [anon_sym_PIPE] = ACTIONS(713), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_LPAREN] = ACTIONS(713), + [anon_sym_RPAREN] = ACTIONS(713), + [sym__newline_token] = ACTIONS(723), + [aux_sym_insert_token1] = ACTIONS(725), + [aux_sym_insert_token2] = ACTIONS(2575), + [aux_sym_delete_token1] = ACTIONS(729), + [aux_sym_highlight_token1] = ACTIONS(731), + [aux_sym_edit_comment_token1] = ACTIONS(733), + [anon_sym_CARET_LBRACK] = ACTIONS(735), + [anon_sym_LBRACK_CARET] = ACTIONS(737), + [sym_uri_autolink] = ACTIONS(709), + [sym_email_autolink] = ACTIONS(709), + [sym__whitespace_ge_2] = ACTIONS(739), + [aux_sym__whitespace_token1] = ACTIONS(741), + [sym__word_no_digit] = ACTIONS(743), + [sym__digits] = ACTIONS(743), + [anon_sym_DASH_DASH] = ACTIONS(745), + [anon_sym_DASH_DASH_DASH] = ACTIONS(743), + [anon_sym_DOT_DOT_DOT] = ACTIONS(743), + [sym__code_span_start] = ACTIONS(747), + [sym__emphasis_open_star] = ACTIONS(749), + [sym__emphasis_open_underscore] = ACTIONS(751), + [sym__strikeout_open] = ACTIONS(753), + [sym__latex_span_start] = ACTIONS(755), + [sym__single_quote_open] = ACTIONS(757), + [sym__double_quote_open] = ACTIONS(759), + [sym__superscript_open] = ACTIONS(761), + [sym__subscript_open] = ACTIONS(763), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(765), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(767), + [sym__cite_author_in_text] = ACTIONS(769), + [sym__cite_suppress_author] = ACTIONS(771), + [sym__shortcode_open_escaped] = ACTIONS(773), + [sym__shortcode_open] = ACTIONS(775), + [sym__unclosed_span] = ACTIONS(709), }, - [STATE(194)] = { - [sym_backslash_escape] = STATE(271), - [sym_commonmark_attribute] = STATE(271), - [sym_code_span] = STATE(271), - [sym_latex_span] = STATE(271), - [sym_superscript] = STATE(271), - [sym_subscript] = STATE(271), - [sym_strikeout] = STATE(271), - [sym_quoted_span] = STATE(271), - [sym_inline_note] = STATE(271), - [sym_citation] = STATE(271), - [sym_shortcode_escaped] = STATE(271), - [sym_shortcode] = STATE(271), - [sym_note_reference] = STATE(271), - [sym__link_text] = STATE(424), - [sym__link_text_non_empty] = STATE(425), - [sym_inline_link] = STATE(53), - [sym_image] = STATE(271), - [sym__image_inline_link] = STATE(883), - [sym__image_description] = STATE(1998), - [sym__image_description_non_empty] = STATE(1998), - [sym_hard_line_break] = STATE(271), - [sym__whitespace] = STATE(881), - [sym__word] = STATE(881), - [sym__soft_line_break] = STATE(884), - [sym__inline_base] = STATE(53), - [sym__text_base] = STATE(271), - [sym__inline_element] = STATE(53), - [sym__emphasis_star] = STATE(710), - [sym__strong_emphasis_star] = STATE(53), - [sym__emphasis_underscore] = STATE(710), - [sym__strong_emphasis_underscore] = STATE(53), - [aux_sym_superscript_repeat1] = STATE(53), - [aux_sym__inline_base_repeat1] = STATE(271), - [sym__backslash_escape] = ACTIONS(159), - [sym_entity_reference] = ACTIONS(161), - [sym_numeric_character_reference] = ACTIONS(161), - [anon_sym_LT] = ACTIONS(163), - [anon_sym_GT] = ACTIONS(165), - [anon_sym_BANG] = ACTIONS(167), - [anon_sym_DQUOTE] = ACTIONS(165), - [anon_sym_POUND] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(165), - [anon_sym_PERCENT] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_SQUOTE] = ACTIONS(165), - [anon_sym_STAR] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(165), - [anon_sym_COMMA] = ACTIONS(165), - [anon_sym_DASH] = ACTIONS(163), - [anon_sym_DOT] = ACTIONS(163), - [anon_sym_SLASH] = ACTIONS(165), - [anon_sym_COLON] = ACTIONS(165), - [anon_sym_SEMI] = ACTIONS(165), - [anon_sym_EQ] = ACTIONS(165), - [anon_sym_QMARK] = ACTIONS(165), - [anon_sym_LBRACK] = ACTIONS(169), - [anon_sym_BSLASH] = ACTIONS(171), - [anon_sym_RBRACK] = ACTIONS(2165), - [anon_sym_CARET] = ACTIONS(163), - [anon_sym__] = ACTIONS(165), - [anon_sym_BQUOTE] = ACTIONS(165), - [anon_sym_LBRACE] = ACTIONS(175), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(165), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_RPAREN] = ACTIONS(165), - [sym__newline_token] = ACTIONS(177), - [anon_sym_CARET_LBRACK] = ACTIONS(179), - [anon_sym_LBRACK_CARET] = ACTIONS(181), - [sym_uri_autolink] = ACTIONS(161), - [sym_email_autolink] = ACTIONS(161), - [sym__whitespace_ge_2] = ACTIONS(183), - [aux_sym__whitespace_token1] = ACTIONS(185), - [sym__word_no_digit] = ACTIONS(187), - [sym__digits] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_DASH_DASH_DASH] = ACTIONS(187), - [anon_sym_DOT_DOT_DOT] = ACTIONS(187), - [sym__code_span_start] = ACTIONS(191), - [sym__emphasis_open_star] = ACTIONS(193), - [sym__emphasis_open_underscore] = ACTIONS(195), - [sym__strikeout_open] = ACTIONS(199), - [sym__latex_span_start] = ACTIONS(201), - [sym__single_quote_open] = ACTIONS(203), - [sym__double_quote_open] = ACTIONS(205), - [sym__superscript_open] = ACTIONS(207), - [sym__subscript_open] = ACTIONS(209), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(211), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(213), - [sym__cite_author_in_text] = ACTIONS(215), - [sym__cite_suppress_author] = ACTIONS(217), - [sym__shortcode_open_escaped] = ACTIONS(219), - [sym__shortcode_open] = ACTIONS(221), - [sym__unclosed_span] = ACTIONS(161), + [STATE(186)] = { + [sym_backslash_escape] = STATE(372), + [sym_commonmark_attribute] = STATE(372), + [sym_code_span] = STATE(372), + [sym_latex_span] = STATE(372), + [sym_insert] = STATE(372), + [sym_delete] = STATE(372), + [sym_highlight] = STATE(372), + [sym_edit_comment] = STATE(372), + [sym_superscript] = STATE(372), + [sym_subscript] = STATE(372), + [sym_strikeout] = STATE(372), + [sym_quoted_span] = STATE(372), + [sym_inline_note] = STATE(372), + [sym_citation] = STATE(372), + [sym_shortcode_escaped] = STATE(372), + [sym_shortcode] = STATE(372), + [sym_note_reference] = STATE(372), + [sym__link_text] = STATE(454), + [sym__link_text_non_empty] = STATE(455), + [sym_inline_link] = STATE(57), + [sym_image] = STATE(372), + [sym__image_inline_link] = STATE(1025), + [sym__image_description] = STATE(2356), + [sym__image_description_non_empty] = STATE(2356), + [sym_hard_line_break] = STATE(372), + [sym__whitespace] = STATE(1022), + [sym__word] = STATE(1022), + [sym__soft_line_break] = STATE(1026), + [sym__inline_base] = STATE(57), + [sym__text_base] = STATE(372), + [sym__inline_element] = STATE(57), + [sym__emphasis_star] = STATE(714), + [sym__strong_emphasis_star] = STATE(57), + [sym__emphasis_underscore] = STATE(714), + [sym__strong_emphasis_underscore] = STATE(57), + [aux_sym_insert_repeat1] = STATE(57), + [aux_sym__inline_base_repeat1] = STATE(372), + [sym__backslash_escape] = ACTIONS(707), + [sym_entity_reference] = ACTIONS(709), + [sym_numeric_character_reference] = ACTIONS(709), + [anon_sym_LT] = ACTIONS(711), + [anon_sym_GT] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(715), + [anon_sym_DQUOTE] = ACTIONS(713), + [anon_sym_POUND] = ACTIONS(713), + [anon_sym_DOLLAR] = ACTIONS(713), + [anon_sym_PERCENT] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(711), + [anon_sym_SQUOTE] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_COMMA] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_DOT] = ACTIONS(711), + [anon_sym_SLASH] = ACTIONS(713), + [anon_sym_COLON] = ACTIONS(713), + [anon_sym_SEMI] = ACTIONS(713), + [anon_sym_EQ] = ACTIONS(713), + [anon_sym_QMARK] = ACTIONS(713), + [anon_sym_LBRACK] = ACTIONS(717), + [anon_sym_BSLASH] = ACTIONS(719), + [anon_sym_CARET] = ACTIONS(711), + [anon_sym__] = ACTIONS(713), + [anon_sym_BQUOTE] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(721), + [anon_sym_PIPE] = ACTIONS(713), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_LPAREN] = ACTIONS(713), + [anon_sym_RPAREN] = ACTIONS(713), + [sym__newline_token] = ACTIONS(723), + [aux_sym_insert_token1] = ACTIONS(725), + [aux_sym_insert_token2] = ACTIONS(2577), + [aux_sym_delete_token1] = ACTIONS(729), + [aux_sym_highlight_token1] = ACTIONS(731), + [aux_sym_edit_comment_token1] = ACTIONS(733), + [anon_sym_CARET_LBRACK] = ACTIONS(735), + [anon_sym_LBRACK_CARET] = ACTIONS(737), + [sym_uri_autolink] = ACTIONS(709), + [sym_email_autolink] = ACTIONS(709), + [sym__whitespace_ge_2] = ACTIONS(739), + [aux_sym__whitespace_token1] = ACTIONS(741), + [sym__word_no_digit] = ACTIONS(743), + [sym__digits] = ACTIONS(743), + [anon_sym_DASH_DASH] = ACTIONS(745), + [anon_sym_DASH_DASH_DASH] = ACTIONS(743), + [anon_sym_DOT_DOT_DOT] = ACTIONS(743), + [sym__code_span_start] = ACTIONS(747), + [sym__emphasis_open_star] = ACTIONS(749), + [sym__emphasis_open_underscore] = ACTIONS(751), + [sym__strikeout_open] = ACTIONS(753), + [sym__latex_span_start] = ACTIONS(755), + [sym__single_quote_open] = ACTIONS(757), + [sym__double_quote_open] = ACTIONS(759), + [sym__superscript_open] = ACTIONS(761), + [sym__subscript_open] = ACTIONS(763), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(765), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(767), + [sym__cite_author_in_text] = ACTIONS(769), + [sym__cite_suppress_author] = ACTIONS(771), + [sym__shortcode_open_escaped] = ACTIONS(773), + [sym__shortcode_open] = ACTIONS(775), + [sym__unclosed_span] = ACTIONS(709), }, - [STATE(195)] = { - [sym_backslash_escape] = STATE(271), - [sym_commonmark_attribute] = STATE(271), - [sym_code_span] = STATE(271), - [sym_latex_span] = STATE(271), - [sym_superscript] = STATE(271), - [sym_subscript] = STATE(271), - [sym_strikeout] = STATE(271), - [sym_quoted_span] = STATE(271), - [sym_inline_note] = STATE(271), - [sym_citation] = STATE(271), - [sym_shortcode_escaped] = STATE(271), - [sym_shortcode] = STATE(271), - [sym_note_reference] = STATE(271), - [sym__link_text] = STATE(424), - [sym__link_text_non_empty] = STATE(425), - [sym_inline_link] = STATE(53), - [sym_image] = STATE(271), - [sym__image_inline_link] = STATE(883), - [sym__image_description] = STATE(1998), - [sym__image_description_non_empty] = STATE(1998), - [sym_hard_line_break] = STATE(271), - [sym__whitespace] = STATE(881), - [sym__word] = STATE(881), - [sym__soft_line_break] = STATE(884), - [sym__inline_base] = STATE(53), - [sym__text_base] = STATE(271), - [sym__inline_element] = STATE(53), - [sym__emphasis_star] = STATE(710), - [sym__strong_emphasis_star] = STATE(53), - [sym__emphasis_underscore] = STATE(710), - [sym__strong_emphasis_underscore] = STATE(53), - [aux_sym_superscript_repeat1] = STATE(53), - [aux_sym__inline_base_repeat1] = STATE(271), - [sym__backslash_escape] = ACTIONS(159), - [sym_entity_reference] = ACTIONS(161), - [sym_numeric_character_reference] = ACTIONS(161), - [anon_sym_LT] = ACTIONS(163), - [anon_sym_GT] = ACTIONS(165), - [anon_sym_BANG] = ACTIONS(167), - [anon_sym_DQUOTE] = ACTIONS(165), - [anon_sym_POUND] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(165), - [anon_sym_PERCENT] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_SQUOTE] = ACTIONS(165), - [anon_sym_STAR] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(165), - [anon_sym_COMMA] = ACTIONS(165), - [anon_sym_DASH] = ACTIONS(163), - [anon_sym_DOT] = ACTIONS(163), - [anon_sym_SLASH] = ACTIONS(165), - [anon_sym_COLON] = ACTIONS(165), - [anon_sym_SEMI] = ACTIONS(165), - [anon_sym_EQ] = ACTIONS(165), - [anon_sym_QMARK] = ACTIONS(165), - [anon_sym_LBRACK] = ACTIONS(169), - [anon_sym_BSLASH] = ACTIONS(171), - [anon_sym_RBRACK] = ACTIONS(2167), - [anon_sym_CARET] = ACTIONS(163), - [anon_sym__] = ACTIONS(165), - [anon_sym_BQUOTE] = ACTIONS(165), - [anon_sym_LBRACE] = ACTIONS(175), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(165), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_RPAREN] = ACTIONS(165), - [sym__newline_token] = ACTIONS(177), - [anon_sym_CARET_LBRACK] = ACTIONS(179), - [anon_sym_LBRACK_CARET] = ACTIONS(181), - [sym_uri_autolink] = ACTIONS(161), - [sym_email_autolink] = ACTIONS(161), - [sym__whitespace_ge_2] = ACTIONS(183), - [aux_sym__whitespace_token1] = ACTIONS(185), - [sym__word_no_digit] = ACTIONS(187), - [sym__digits] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_DASH_DASH_DASH] = ACTIONS(187), - [anon_sym_DOT_DOT_DOT] = ACTIONS(187), - [sym__code_span_start] = ACTIONS(191), - [sym__emphasis_open_star] = ACTIONS(193), - [sym__emphasis_open_underscore] = ACTIONS(195), - [sym__strikeout_open] = ACTIONS(199), - [sym__latex_span_start] = ACTIONS(201), - [sym__single_quote_open] = ACTIONS(203), - [sym__double_quote_open] = ACTIONS(205), - [sym__superscript_open] = ACTIONS(207), - [sym__subscript_open] = ACTIONS(209), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(211), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(213), - [sym__cite_author_in_text] = ACTIONS(215), - [sym__cite_suppress_author] = ACTIONS(217), - [sym__shortcode_open_escaped] = ACTIONS(219), - [sym__shortcode_open] = ACTIONS(221), - [sym__unclosed_span] = ACTIONS(161), + [STATE(187)] = { + [sym_backslash_escape] = STATE(370), + [sym_commonmark_attribute] = STATE(370), + [sym_code_span] = STATE(370), + [sym_latex_span] = STATE(370), + [sym_insert] = STATE(370), + [sym_delete] = STATE(370), + [sym_highlight] = STATE(370), + [sym_edit_comment] = STATE(370), + [sym_superscript] = STATE(370), + [sym_subscript] = STATE(370), + [sym_strikeout] = STATE(370), + [sym_quoted_span] = STATE(370), + [sym_inline_note] = STATE(370), + [sym_citation] = STATE(370), + [sym_shortcode_escaped] = STATE(370), + [sym_shortcode] = STATE(370), + [sym_note_reference] = STATE(370), + [sym__link_text] = STATE(472), + [sym__link_text_non_empty] = STATE(473), + [sym_inline_link] = STATE(191), + [sym_image] = STATE(370), + [sym__image_inline_link] = STATE(923), + [sym__image_description] = STATE(2342), + [sym__image_description_non_empty] = STATE(2342), + [sym_hard_line_break] = STATE(370), + [sym__whitespace] = STATE(920), + [sym__word] = STATE(920), + [sym__soft_line_break] = STATE(924), + [sym__inline_base] = STATE(191), + [sym__text_base] = STATE(370), + [sym__inline_element] = STATE(191), + [sym__emphasis_star] = STATE(821), + [sym__strong_emphasis_star] = STATE(191), + [sym__emphasis_underscore] = STATE(821), + [sym__strong_emphasis_underscore] = STATE(191), + [aux_sym_insert_repeat1] = STATE(191), + [aux_sym__inline_base_repeat1] = STATE(370), + [sym__backslash_escape] = ACTIONS(73), + [sym_entity_reference] = ACTIONS(75), + [sym_numeric_character_reference] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_BANG] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_POUND] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(79), + [anon_sym_PERCENT] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_STAR] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_COMMA] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_DOT] = ACTIONS(77), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_COLON] = ACTIONS(79), + [anon_sym_SEMI] = ACTIONS(79), + [anon_sym_EQ] = ACTIONS(79), + [anon_sym_QMARK] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(83), + [anon_sym_BSLASH] = ACTIONS(85), + [anon_sym_RBRACK] = ACTIONS(2579), + [anon_sym_CARET] = ACTIONS(77), + [anon_sym__] = ACTIONS(79), + [anon_sym_BQUOTE] = ACTIONS(79), + [anon_sym_LBRACE] = ACTIONS(89), + [anon_sym_PIPE] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(79), + [anon_sym_RPAREN] = ACTIONS(79), + [sym__newline_token] = ACTIONS(91), + [aux_sym_insert_token1] = ACTIONS(93), + [aux_sym_delete_token1] = ACTIONS(95), + [aux_sym_highlight_token1] = ACTIONS(97), + [aux_sym_edit_comment_token1] = ACTIONS(99), + [anon_sym_CARET_LBRACK] = ACTIONS(101), + [anon_sym_LBRACK_CARET] = ACTIONS(103), + [sym_uri_autolink] = ACTIONS(75), + [sym_email_autolink] = ACTIONS(75), + [sym__whitespace_ge_2] = ACTIONS(105), + [aux_sym__whitespace_token1] = ACTIONS(107), + [sym__word_no_digit] = ACTIONS(109), + [sym__digits] = ACTIONS(109), + [anon_sym_DASH_DASH] = ACTIONS(111), + [anon_sym_DASH_DASH_DASH] = ACTIONS(109), + [anon_sym_DOT_DOT_DOT] = ACTIONS(109), + [sym__code_span_start] = ACTIONS(113), + [sym__emphasis_open_star] = ACTIONS(115), + [sym__emphasis_open_underscore] = ACTIONS(117), + [sym__strikeout_open] = ACTIONS(121), + [sym__latex_span_start] = ACTIONS(123), + [sym__single_quote_open] = ACTIONS(125), + [sym__double_quote_open] = ACTIONS(127), + [sym__superscript_open] = ACTIONS(129), + [sym__subscript_open] = ACTIONS(131), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(133), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(135), + [sym__cite_author_in_text] = ACTIONS(137), + [sym__cite_suppress_author] = ACTIONS(139), + [sym__shortcode_open_escaped] = ACTIONS(141), + [sym__shortcode_open] = ACTIONS(143), + [sym__unclosed_span] = ACTIONS(75), }, - [STATE(196)] = { - [sym_backslash_escape] = STATE(265), - [sym_commonmark_attribute] = STATE(265), - [sym_code_span] = STATE(265), - [sym_latex_span] = STATE(265), - [sym_superscript] = STATE(265), - [sym_subscript] = STATE(265), - [sym_strikeout] = STATE(265), - [sym_quoted_span] = STATE(265), - [sym_inline_note] = STATE(265), - [sym_citation] = STATE(265), - [sym_shortcode_escaped] = STATE(265), - [sym_shortcode] = STATE(265), - [sym_note_reference] = STATE(265), - [sym__link_text] = STATE(310), - [sym__link_text_non_empty] = STATE(311), - [sym_inline_link] = STATE(885), - [sym_image] = STATE(265), - [sym__image_inline_link] = STATE(662), - [sym__image_description] = STATE(1978), - [sym__image_description_non_empty] = STATE(1978), - [sym_hard_line_break] = STATE(265), - [sym__whitespace] = STATE(579), - [sym__word] = STATE(579), - [sym__soft_line_break] = STATE(707), - [sym__inline_base] = STATE(885), - [sym__text_base] = STATE(265), - [sym__inline_element] = STATE(885), - [aux_sym__inline] = STATE(28), - [sym__emphasis_star] = STATE(1121), - [sym__strong_emphasis_star] = STATE(885), - [sym__emphasis_underscore] = STATE(1121), - [sym__strong_emphasis_underscore] = STATE(885), - [aux_sym__inline_base_repeat1] = STATE(265), - [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__] = ACTIONS(9), - [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), - [anon_sym_CARET_LBRACK] = ACTIONS(21), - [anon_sym_LBRACK_CARET] = ACTIONS(23), - [sym_uri_autolink] = ACTIONS(5), - [sym_email_autolink] = ACTIONS(5), - [sym__whitespace_ge_2] = ACTIONS(25), - [aux_sym__whitespace_token1] = ACTIONS(27), - [sym__word_no_digit] = ACTIONS(29), - [sym__digits] = ACTIONS(29), - [anon_sym_DASH_DASH] = ACTIONS(31), - [anon_sym_DASH_DASH_DASH] = ACTIONS(29), - [anon_sym_DOT_DOT_DOT] = ACTIONS(29), - [sym__code_span_start] = ACTIONS(33), - [sym__emphasis_open_star] = ACTIONS(35), - [sym__emphasis_open_underscore] = ACTIONS(37), - [sym__strikeout_open] = ACTIONS(41), - [sym__latex_span_start] = ACTIONS(43), - [sym__single_quote_open] = ACTIONS(45), - [sym__double_quote_open] = ACTIONS(47), - [sym__superscript_open] = ACTIONS(49), - [sym__subscript_open] = ACTIONS(51), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(53), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(55), - [sym__cite_author_in_text] = ACTIONS(57), - [sym__cite_suppress_author] = ACTIONS(59), - [sym__shortcode_open_escaped] = ACTIONS(61), - [sym__shortcode_open] = ACTIONS(63), - [sym__unclosed_span] = ACTIONS(5), - }, - [STATE(197)] = { - [sym_backslash_escape] = STATE(274), - [sym_commonmark_attribute] = STATE(274), - [sym_code_span] = STATE(274), - [sym_latex_span] = STATE(274), - [sym_superscript] = STATE(274), - [sym_subscript] = STATE(274), - [sym_strikeout] = STATE(274), - [sym_quoted_span] = STATE(274), - [sym_inline_note] = STATE(274), - [sym_citation] = STATE(274), - [sym_shortcode_escaped] = STATE(274), - [sym_shortcode] = STATE(274), - [sym_note_reference] = STATE(274), - [sym__link_text] = STATE(351), - [sym__link_text_non_empty] = STATE(352), - [sym_inline_link] = STATE(193), - [sym_image] = STATE(274), - [sym__image_inline_link] = STATE(894), - [sym__image_description] = STATE(2008), - [sym__image_description_non_empty] = STATE(2008), - [sym_hard_line_break] = STATE(274), - [sym__whitespace] = STATE(882), - [sym__word] = STATE(882), - [sym__soft_line_break] = STATE(898), - [sym__inline_base] = STATE(193), - [sym__text_base] = STATE(274), - [sym__inline_element_no_underscore] = STATE(193), - [aux_sym__inline_no_underscore] = STATE(193), - [sym__emphasis_star] = STATE(711), - [sym__strong_emphasis_star] = STATE(193), - [sym__emphasis_underscore] = STATE(711), - [sym__strong_emphasis_underscore] = STATE(193), - [aux_sym__inline_base_repeat1] = STATE(274), - [sym__backslash_escape] = ACTIONS(1123), - [sym_entity_reference] = ACTIONS(1125), - [sym_numeric_character_reference] = ACTIONS(1125), - [anon_sym_LT] = ACTIONS(1127), - [anon_sym_GT] = ACTIONS(1129), - [anon_sym_BANG] = ACTIONS(1131), - [anon_sym_DQUOTE] = ACTIONS(1129), - [anon_sym_POUND] = ACTIONS(1129), - [anon_sym_DOLLAR] = ACTIONS(1129), - [anon_sym_PERCENT] = ACTIONS(1129), - [anon_sym_AMP] = ACTIONS(1127), - [anon_sym_SQUOTE] = ACTIONS(1129), - [anon_sym_STAR] = ACTIONS(1129), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_COMMA] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1127), - [anon_sym_DOT] = ACTIONS(1127), - [anon_sym_SLASH] = ACTIONS(1129), - [anon_sym_COLON] = ACTIONS(1129), - [anon_sym_SEMI] = ACTIONS(1129), - [anon_sym_EQ] = ACTIONS(1129), - [anon_sym_QMARK] = ACTIONS(1129), - [anon_sym_LBRACK] = ACTIONS(1133), - [anon_sym_BSLASH] = ACTIONS(1135), - [anon_sym_CARET] = ACTIONS(1127), - [anon_sym__] = ACTIONS(1129), - [anon_sym_BQUOTE] = ACTIONS(1129), - [anon_sym_LBRACE] = ACTIONS(1137), - [anon_sym_PIPE] = ACTIONS(1129), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1129), - [anon_sym_RPAREN] = ACTIONS(1129), - [sym__newline_token] = ACTIONS(1139), - [anon_sym_CARET_LBRACK] = ACTIONS(1141), - [anon_sym_LBRACK_CARET] = ACTIONS(1143), - [sym_uri_autolink] = ACTIONS(1125), - [sym_email_autolink] = ACTIONS(1125), - [sym__whitespace_ge_2] = ACTIONS(1145), - [aux_sym__whitespace_token1] = ACTIONS(1147), - [sym__word_no_digit] = ACTIONS(1149), - [sym__digits] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1151), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1149), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1149), - [sym__code_span_start] = ACTIONS(1153), - [sym__emphasis_open_star] = ACTIONS(1155), - [sym__emphasis_open_underscore] = ACTIONS(1157), - [sym__strikeout_open] = ACTIONS(1161), - [sym__latex_span_start] = ACTIONS(1163), - [sym__single_quote_open] = ACTIONS(1165), - [sym__double_quote_open] = ACTIONS(1167), - [sym__superscript_open] = ACTIONS(1169), - [sym__subscript_open] = ACTIONS(1171), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1173), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1175), - [sym__cite_author_in_text] = ACTIONS(1177), - [sym__cite_suppress_author] = ACTIONS(1179), - [sym__shortcode_open_escaped] = ACTIONS(1181), - [sym__shortcode_open] = ACTIONS(1183), - [sym__unclosed_span] = ACTIONS(1125), + [STATE(188)] = { + [sym_backslash_escape] = STATE(370), + [sym_commonmark_attribute] = STATE(370), + [sym_code_span] = STATE(370), + [sym_latex_span] = STATE(370), + [sym_insert] = STATE(370), + [sym_delete] = STATE(370), + [sym_highlight] = STATE(370), + [sym_edit_comment] = STATE(370), + [sym_superscript] = STATE(370), + [sym_subscript] = STATE(370), + [sym_strikeout] = STATE(370), + [sym_quoted_span] = STATE(370), + [sym_inline_note] = STATE(370), + [sym_citation] = STATE(370), + [sym_shortcode_escaped] = STATE(370), + [sym_shortcode] = STATE(370), + [sym_note_reference] = STATE(370), + [sym__link_text] = STATE(472), + [sym__link_text_non_empty] = STATE(473), + [sym_inline_link] = STATE(60), + [sym_image] = STATE(370), + [sym__image_inline_link] = STATE(923), + [sym__image_description] = STATE(2342), + [sym__image_description_non_empty] = STATE(2342), + [sym_hard_line_break] = STATE(370), + [sym__whitespace] = STATE(920), + [sym__word] = STATE(920), + [sym__soft_line_break] = STATE(924), + [sym__inline_base] = STATE(60), + [sym__text_base] = STATE(370), + [sym__inline_element] = STATE(60), + [sym__emphasis_star] = STATE(821), + [sym__strong_emphasis_star] = STATE(60), + [sym__emphasis_underscore] = STATE(821), + [sym__strong_emphasis_underscore] = STATE(60), + [aux_sym_insert_repeat1] = STATE(60), + [aux_sym__inline_base_repeat1] = STATE(370), + [sym__backslash_escape] = ACTIONS(73), + [sym_entity_reference] = ACTIONS(75), + [sym_numeric_character_reference] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_BANG] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_POUND] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(79), + [anon_sym_PERCENT] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_STAR] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_COMMA] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_DOT] = ACTIONS(77), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_COLON] = ACTIONS(79), + [anon_sym_SEMI] = ACTIONS(79), + [anon_sym_EQ] = ACTIONS(79), + [anon_sym_QMARK] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(83), + [anon_sym_BSLASH] = ACTIONS(85), + [anon_sym_RBRACK] = ACTIONS(2581), + [anon_sym_CARET] = ACTIONS(77), + [anon_sym__] = ACTIONS(79), + [anon_sym_BQUOTE] = ACTIONS(79), + [anon_sym_LBRACE] = ACTIONS(89), + [anon_sym_PIPE] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(79), + [anon_sym_RPAREN] = ACTIONS(79), + [sym__newline_token] = ACTIONS(91), + [aux_sym_insert_token1] = ACTIONS(93), + [aux_sym_delete_token1] = ACTIONS(95), + [aux_sym_highlight_token1] = ACTIONS(97), + [aux_sym_edit_comment_token1] = ACTIONS(99), + [anon_sym_CARET_LBRACK] = ACTIONS(101), + [anon_sym_LBRACK_CARET] = ACTIONS(103), + [sym_uri_autolink] = ACTIONS(75), + [sym_email_autolink] = ACTIONS(75), + [sym__whitespace_ge_2] = ACTIONS(105), + [aux_sym__whitespace_token1] = ACTIONS(107), + [sym__word_no_digit] = ACTIONS(109), + [sym__digits] = ACTIONS(109), + [anon_sym_DASH_DASH] = ACTIONS(111), + [anon_sym_DASH_DASH_DASH] = ACTIONS(109), + [anon_sym_DOT_DOT_DOT] = ACTIONS(109), + [sym__code_span_start] = ACTIONS(113), + [sym__emphasis_open_star] = ACTIONS(115), + [sym__emphasis_open_underscore] = ACTIONS(117), + [sym__strikeout_open] = ACTIONS(121), + [sym__latex_span_start] = ACTIONS(123), + [sym__single_quote_open] = ACTIONS(125), + [sym__double_quote_open] = ACTIONS(127), + [sym__superscript_open] = ACTIONS(129), + [sym__subscript_open] = ACTIONS(131), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(133), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(135), + [sym__cite_author_in_text] = ACTIONS(137), + [sym__cite_suppress_author] = ACTIONS(139), + [sym__shortcode_open_escaped] = ACTIONS(141), + [sym__shortcode_open] = ACTIONS(143), + [sym__unclosed_span] = ACTIONS(75), }, - [STATE(198)] = { - [sym_backslash_escape] = STATE(274), - [sym_commonmark_attribute] = STATE(274), - [sym_code_span] = STATE(274), - [sym_latex_span] = STATE(274), - [sym_superscript] = STATE(274), - [sym_subscript] = STATE(274), - [sym_strikeout] = STATE(274), - [sym_quoted_span] = STATE(274), - [sym_inline_note] = STATE(274), - [sym_citation] = STATE(274), - [sym_shortcode_escaped] = STATE(274), - [sym_shortcode] = STATE(274), - [sym_note_reference] = STATE(274), - [sym__link_text] = STATE(351), - [sym__link_text_non_empty] = STATE(352), - [sym_inline_link] = STATE(40), - [sym_image] = STATE(274), - [sym__image_inline_link] = STATE(894), - [sym__image_description] = STATE(2008), - [sym__image_description_non_empty] = STATE(2008), - [sym_hard_line_break] = STATE(274), - [sym__whitespace] = STATE(882), - [sym__word] = STATE(882), - [sym__soft_line_break] = STATE(898), - [sym__inline_base] = STATE(40), - [sym__text_base] = STATE(274), - [sym__inline_element_no_underscore] = STATE(40), - [aux_sym__inline_no_underscore] = STATE(40), - [sym__emphasis_star] = STATE(711), - [sym__strong_emphasis_star] = STATE(40), - [sym__emphasis_underscore] = STATE(711), - [sym__strong_emphasis_underscore] = STATE(40), - [aux_sym__inline_base_repeat1] = STATE(274), - [sym__backslash_escape] = ACTIONS(1123), - [sym_entity_reference] = ACTIONS(1125), - [sym_numeric_character_reference] = ACTIONS(1125), - [anon_sym_LT] = ACTIONS(1127), - [anon_sym_GT] = ACTIONS(1129), - [anon_sym_BANG] = ACTIONS(1131), - [anon_sym_DQUOTE] = ACTIONS(1129), - [anon_sym_POUND] = ACTIONS(1129), - [anon_sym_DOLLAR] = ACTIONS(1129), - [anon_sym_PERCENT] = ACTIONS(1129), - [anon_sym_AMP] = ACTIONS(1127), - [anon_sym_SQUOTE] = ACTIONS(1129), - [anon_sym_STAR] = ACTIONS(1129), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_COMMA] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1127), - [anon_sym_DOT] = ACTIONS(1127), - [anon_sym_SLASH] = ACTIONS(1129), - [anon_sym_COLON] = ACTIONS(1129), - [anon_sym_SEMI] = ACTIONS(1129), - [anon_sym_EQ] = ACTIONS(1129), - [anon_sym_QMARK] = ACTIONS(1129), - [anon_sym_LBRACK] = ACTIONS(1133), - [anon_sym_BSLASH] = ACTIONS(1135), - [anon_sym_CARET] = ACTIONS(1127), - [anon_sym__] = ACTIONS(1129), - [anon_sym_BQUOTE] = ACTIONS(1129), - [anon_sym_LBRACE] = ACTIONS(1137), - [anon_sym_PIPE] = ACTIONS(1129), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1129), - [anon_sym_RPAREN] = ACTIONS(1129), - [sym__newline_token] = ACTIONS(1139), - [anon_sym_CARET_LBRACK] = ACTIONS(1141), - [anon_sym_LBRACK_CARET] = ACTIONS(1143), - [sym_uri_autolink] = ACTIONS(1125), - [sym_email_autolink] = ACTIONS(1125), - [sym__whitespace_ge_2] = ACTIONS(1145), - [aux_sym__whitespace_token1] = ACTIONS(1147), - [sym__word_no_digit] = ACTIONS(1149), - [sym__digits] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1151), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1149), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1149), - [sym__code_span_start] = ACTIONS(1153), - [sym__emphasis_open_star] = ACTIONS(1155), - [sym__emphasis_open_underscore] = ACTIONS(1157), - [sym__strikeout_open] = ACTIONS(1161), - [sym__latex_span_start] = ACTIONS(1163), - [sym__single_quote_open] = ACTIONS(1165), - [sym__double_quote_open] = ACTIONS(1167), - [sym__superscript_open] = ACTIONS(1169), - [sym__subscript_open] = ACTIONS(1171), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1173), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1175), - [sym__cite_author_in_text] = ACTIONS(1177), - [sym__cite_suppress_author] = ACTIONS(1179), - [sym__shortcode_open_escaped] = ACTIONS(1181), - [sym__shortcode_open] = ACTIONS(1183), - [sym__unclosed_span] = ACTIONS(1125), + [STATE(189)] = { + [sym_backslash_escape] = STATE(373), + [sym_commonmark_attribute] = STATE(373), + [sym_code_span] = STATE(373), + [sym_latex_span] = STATE(373), + [sym_insert] = STATE(373), + [sym_delete] = STATE(373), + [sym_highlight] = STATE(373), + [sym_edit_comment] = STATE(373), + [sym_superscript] = STATE(373), + [sym_subscript] = STATE(373), + [sym_strikeout] = STATE(373), + [sym_quoted_span] = STATE(373), + [sym_inline_note] = STATE(373), + [sym_citation] = STATE(373), + [sym_shortcode_escaped] = STATE(373), + [sym_shortcode] = STATE(373), + [sym_note_reference] = STATE(373), + [sym__link_text] = STATE(522), + [sym__link_text_non_empty] = STATE(523), + [sym_inline_link] = STATE(36), + [sym_image] = STATE(373), + [sym__image_inline_link] = STATE(1265), + [sym__image_description] = STATE(2331), + [sym__image_description_non_empty] = STATE(2331), + [sym_hard_line_break] = STATE(373), + [sym__whitespace] = STATE(1262), + [sym__word] = STATE(1262), + [sym__soft_line_break] = STATE(1267), + [sym__inline_base] = STATE(36), + [sym__text_base] = STATE(373), + [sym__inline_element_no_star] = STATE(36), + [aux_sym__inline_no_star] = STATE(36), + [sym__emphasis_star] = STATE(1147), + [sym__strong_emphasis_star] = STATE(36), + [sym__emphasis_underscore] = STATE(1147), + [sym__strong_emphasis_underscore] = STATE(36), + [aux_sym__inline_base_repeat1] = STATE(373), + [sym__backslash_escape] = ACTIONS(885), + [sym_entity_reference] = ACTIONS(887), + [sym_numeric_character_reference] = ACTIONS(887), + [anon_sym_LT] = ACTIONS(889), + [anon_sym_GT] = ACTIONS(891), + [anon_sym_BANG] = ACTIONS(893), + [anon_sym_DQUOTE] = ACTIONS(891), + [anon_sym_POUND] = ACTIONS(891), + [anon_sym_DOLLAR] = ACTIONS(891), + [anon_sym_PERCENT] = ACTIONS(891), + [anon_sym_AMP] = ACTIONS(889), + [anon_sym_SQUOTE] = ACTIONS(891), + [anon_sym_STAR] = ACTIONS(891), + [anon_sym_PLUS] = ACTIONS(891), + [anon_sym_COMMA] = ACTIONS(891), + [anon_sym_DASH] = ACTIONS(889), + [anon_sym_DOT] = ACTIONS(889), + [anon_sym_SLASH] = ACTIONS(891), + [anon_sym_COLON] = ACTIONS(891), + [anon_sym_SEMI] = ACTIONS(891), + [anon_sym_EQ] = ACTIONS(891), + [anon_sym_QMARK] = ACTIONS(891), + [anon_sym_LBRACK] = ACTIONS(895), + [anon_sym_BSLASH] = ACTIONS(897), + [anon_sym_CARET] = ACTIONS(889), + [anon_sym__] = ACTIONS(891), + [anon_sym_BQUOTE] = ACTIONS(891), + [anon_sym_LBRACE] = ACTIONS(899), + [anon_sym_PIPE] = ACTIONS(891), + [anon_sym_TILDE] = ACTIONS(891), + [anon_sym_LPAREN] = ACTIONS(891), + [anon_sym_RPAREN] = ACTIONS(891), + [sym__newline_token] = ACTIONS(901), + [aux_sym_insert_token1] = ACTIONS(903), + [aux_sym_delete_token1] = ACTIONS(905), + [aux_sym_highlight_token1] = ACTIONS(907), + [aux_sym_edit_comment_token1] = ACTIONS(909), + [anon_sym_CARET_LBRACK] = ACTIONS(911), + [anon_sym_LBRACK_CARET] = ACTIONS(913), + [sym_uri_autolink] = ACTIONS(887), + [sym_email_autolink] = ACTIONS(887), + [sym__whitespace_ge_2] = ACTIONS(915), + [aux_sym__whitespace_token1] = ACTIONS(917), + [sym__word_no_digit] = ACTIONS(919), + [sym__digits] = ACTIONS(919), + [anon_sym_DASH_DASH] = ACTIONS(921), + [anon_sym_DASH_DASH_DASH] = ACTIONS(919), + [anon_sym_DOT_DOT_DOT] = ACTIONS(919), + [sym__code_span_start] = ACTIONS(923), + [sym__emphasis_open_star] = ACTIONS(925), + [sym__emphasis_open_underscore] = ACTIONS(927), + [sym__emphasis_close_star] = ACTIONS(2583), + [sym__strikeout_open] = ACTIONS(931), + [sym__latex_span_start] = ACTIONS(933), + [sym__single_quote_open] = ACTIONS(935), + [sym__double_quote_open] = ACTIONS(937), + [sym__superscript_open] = ACTIONS(939), + [sym__subscript_open] = ACTIONS(941), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(943), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(945), + [sym__cite_author_in_text] = ACTIONS(947), + [sym__cite_suppress_author] = ACTIONS(949), + [sym__shortcode_open_escaped] = ACTIONS(951), + [sym__shortcode_open] = ACTIONS(953), + [sym__unclosed_span] = ACTIONS(887), }, - [STATE(199)] = { - [sym_backslash_escape] = STATE(261), - [sym_commonmark_attribute] = STATE(261), - [sym_code_span] = STATE(261), - [sym_latex_span] = STATE(261), - [sym_superscript] = STATE(261), - [sym_subscript] = STATE(261), - [sym_strikeout] = STATE(261), - [sym_quoted_span] = STATE(261), - [sym_inline_note] = STATE(261), - [sym_citation] = STATE(261), - [sym_shortcode_escaped] = STATE(261), - [sym_shortcode] = STATE(261), - [sym_note_reference] = STATE(261), - [sym__link_text] = STATE(322), - [sym__link_text_non_empty] = STATE(323), + [STATE(190)] = { + [sym_backslash_escape] = STATE(379), + [sym_commonmark_attribute] = STATE(379), + [sym_code_span] = STATE(379), + [sym_latex_span] = STATE(379), + [sym_insert] = STATE(379), + [sym_delete] = STATE(379), + [sym_highlight] = STATE(379), + [sym_edit_comment] = STATE(379), + [sym_superscript] = STATE(379), + [sym_subscript] = STATE(379), + [sym_strikeout] = STATE(379), + [sym_quoted_span] = STATE(379), + [sym_inline_note] = STATE(379), + [sym_citation] = STATE(379), + [sym_shortcode_escaped] = STATE(379), + [sym_shortcode] = STATE(379), + [sym_note_reference] = STATE(379), + [sym__link_text] = STATE(545), + [sym__link_text_non_empty] = STATE(546), [sym_inline_link] = STATE(38), - [sym_image] = STATE(261), - [sym__image_inline_link] = STATE(595), - [sym__image_description] = STATE(1972), - [sym__image_description_non_empty] = STATE(1972), - [sym_hard_line_break] = STATE(261), - [sym__whitespace] = STATE(587), - [sym__word] = STATE(587), - [sym__soft_line_break] = STATE(597), + [sym_image] = STATE(379), + [sym__image_inline_link] = STATE(1390), + [sym__image_description] = STATE(2363), + [sym__image_description_non_empty] = STATE(2363), + [sym_hard_line_break] = STATE(379), + [sym__whitespace] = STATE(1385), + [sym__word] = STATE(1385), + [sym__soft_line_break] = STATE(1391), [sym__inline_base] = STATE(38), - [sym__text_base] = STATE(261), - [sym__inline_element_no_star] = STATE(38), - [aux_sym__inline_no_star] = STATE(38), - [sym__emphasis_star] = STATE(544), + [sym__text_base] = STATE(379), + [sym__inline_element_no_underscore] = STATE(38), + [aux_sym__inline_no_underscore] = STATE(38), + [sym__emphasis_star] = STATE(1168), [sym__strong_emphasis_star] = STATE(38), - [sym__emphasis_underscore] = STATE(544), + [sym__emphasis_underscore] = STATE(1168), [sym__strong_emphasis_underscore] = STATE(38), - [aux_sym__inline_base_repeat1] = STATE(261), - [sym__backslash_escape] = ACTIONS(969), - [sym_entity_reference] = ACTIONS(971), - [sym_numeric_character_reference] = ACTIONS(971), - [anon_sym_LT] = ACTIONS(973), - [anon_sym_GT] = ACTIONS(975), - [anon_sym_BANG] = ACTIONS(977), - [anon_sym_DQUOTE] = ACTIONS(975), - [anon_sym_POUND] = ACTIONS(975), - [anon_sym_DOLLAR] = ACTIONS(975), - [anon_sym_PERCENT] = ACTIONS(975), - [anon_sym_AMP] = ACTIONS(973), - [anon_sym_SQUOTE] = ACTIONS(975), - [anon_sym_STAR] = ACTIONS(975), - [anon_sym_PLUS] = ACTIONS(975), - [anon_sym_COMMA] = ACTIONS(975), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_DOT] = ACTIONS(973), - [anon_sym_SLASH] = ACTIONS(975), - [anon_sym_COLON] = ACTIONS(975), - [anon_sym_SEMI] = ACTIONS(975), - [anon_sym_EQ] = ACTIONS(975), - [anon_sym_QMARK] = ACTIONS(975), - [anon_sym_LBRACK] = ACTIONS(979), - [anon_sym_BSLASH] = ACTIONS(981), - [anon_sym_CARET] = ACTIONS(973), - [anon_sym__] = ACTIONS(975), - [anon_sym_BQUOTE] = ACTIONS(975), - [anon_sym_LBRACE] = ACTIONS(983), - [anon_sym_PIPE] = ACTIONS(975), - [anon_sym_TILDE] = ACTIONS(975), - [anon_sym_LPAREN] = ACTIONS(975), - [anon_sym_RPAREN] = ACTIONS(975), - [sym__newline_token] = ACTIONS(985), - [anon_sym_CARET_LBRACK] = ACTIONS(987), - [anon_sym_LBRACK_CARET] = ACTIONS(989), - [sym_uri_autolink] = ACTIONS(971), - [sym_email_autolink] = ACTIONS(971), - [sym__whitespace_ge_2] = ACTIONS(991), - [aux_sym__whitespace_token1] = ACTIONS(993), - [sym__word_no_digit] = ACTIONS(995), - [sym__digits] = ACTIONS(995), - [anon_sym_DASH_DASH] = ACTIONS(997), - [anon_sym_DASH_DASH_DASH] = ACTIONS(995), - [anon_sym_DOT_DOT_DOT] = ACTIONS(995), - [sym__code_span_start] = ACTIONS(999), - [sym__emphasis_open_star] = ACTIONS(1001), - [sym__emphasis_open_underscore] = ACTIONS(1003), - [sym__strikeout_open] = ACTIONS(1007), - [sym__latex_span_start] = ACTIONS(1009), - [sym__single_quote_open] = ACTIONS(1011), - [sym__double_quote_open] = ACTIONS(1013), - [sym__superscript_open] = ACTIONS(1015), - [sym__subscript_open] = ACTIONS(1017), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1019), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1021), - [sym__cite_author_in_text] = ACTIONS(1023), - [sym__cite_suppress_author] = ACTIONS(1025), - [sym__shortcode_open_escaped] = ACTIONS(1027), - [sym__shortcode_open] = ACTIONS(1029), - [sym__unclosed_span] = ACTIONS(971), + [aux_sym__inline_base_repeat1] = STATE(379), + [sym__backslash_escape] = ACTIONS(1059), + [sym_entity_reference] = ACTIONS(1061), + [sym_numeric_character_reference] = ACTIONS(1061), + [anon_sym_LT] = ACTIONS(1063), + [anon_sym_GT] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1067), + [anon_sym_DQUOTE] = ACTIONS(1065), + [anon_sym_POUND] = ACTIONS(1065), + [anon_sym_DOLLAR] = ACTIONS(1065), + [anon_sym_PERCENT] = ACTIONS(1065), + [anon_sym_AMP] = ACTIONS(1063), + [anon_sym_SQUOTE] = ACTIONS(1065), + [anon_sym_STAR] = ACTIONS(1065), + [anon_sym_PLUS] = ACTIONS(1065), + [anon_sym_COMMA] = ACTIONS(1065), + [anon_sym_DASH] = ACTIONS(1063), + [anon_sym_DOT] = ACTIONS(1063), + [anon_sym_SLASH] = ACTIONS(1065), + [anon_sym_COLON] = ACTIONS(1065), + [anon_sym_SEMI] = ACTIONS(1065), + [anon_sym_EQ] = ACTIONS(1065), + [anon_sym_QMARK] = ACTIONS(1065), + [anon_sym_LBRACK] = ACTIONS(1069), + [anon_sym_BSLASH] = ACTIONS(1071), + [anon_sym_CARET] = ACTIONS(1063), + [anon_sym__] = ACTIONS(1065), + [anon_sym_BQUOTE] = ACTIONS(1065), + [anon_sym_LBRACE] = ACTIONS(1073), + [anon_sym_PIPE] = ACTIONS(1065), + [anon_sym_TILDE] = ACTIONS(1065), + [anon_sym_LPAREN] = ACTIONS(1065), + [anon_sym_RPAREN] = ACTIONS(1065), + [sym__newline_token] = ACTIONS(1075), + [aux_sym_insert_token1] = ACTIONS(1077), + [aux_sym_delete_token1] = ACTIONS(1079), + [aux_sym_highlight_token1] = ACTIONS(1081), + [aux_sym_edit_comment_token1] = ACTIONS(1083), + [anon_sym_CARET_LBRACK] = ACTIONS(1085), + [anon_sym_LBRACK_CARET] = ACTIONS(1087), + [sym_uri_autolink] = ACTIONS(1061), + [sym_email_autolink] = ACTIONS(1061), + [sym__whitespace_ge_2] = ACTIONS(1089), + [aux_sym__whitespace_token1] = ACTIONS(1091), + [sym__word_no_digit] = ACTIONS(1093), + [sym__digits] = ACTIONS(1093), + [anon_sym_DASH_DASH] = ACTIONS(1095), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1093), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1093), + [sym__code_span_start] = ACTIONS(1097), + [sym__emphasis_open_star] = ACTIONS(1099), + [sym__emphasis_open_underscore] = ACTIONS(1101), + [sym__emphasis_close_underscore] = ACTIONS(2585), + [sym__strikeout_open] = ACTIONS(1105), + [sym__latex_span_start] = ACTIONS(1107), + [sym__single_quote_open] = ACTIONS(1109), + [sym__double_quote_open] = ACTIONS(1111), + [sym__superscript_open] = ACTIONS(1113), + [sym__subscript_open] = ACTIONS(1115), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1117), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1119), + [sym__cite_author_in_text] = ACTIONS(1121), + [sym__cite_suppress_author] = ACTIONS(1123), + [sym__shortcode_open_escaped] = ACTIONS(1125), + [sym__shortcode_open] = ACTIONS(1127), + [sym__unclosed_span] = ACTIONS(1061), + }, + [STATE(191)] = { + [sym_backslash_escape] = STATE(370), + [sym_commonmark_attribute] = STATE(370), + [sym_code_span] = STATE(370), + [sym_latex_span] = STATE(370), + [sym_insert] = STATE(370), + [sym_delete] = STATE(370), + [sym_highlight] = STATE(370), + [sym_edit_comment] = STATE(370), + [sym_superscript] = STATE(370), + [sym_subscript] = STATE(370), + [sym_strikeout] = STATE(370), + [sym_quoted_span] = STATE(370), + [sym_inline_note] = STATE(370), + [sym_citation] = STATE(370), + [sym_shortcode_escaped] = STATE(370), + [sym_shortcode] = STATE(370), + [sym_note_reference] = STATE(370), + [sym__link_text] = STATE(472), + [sym__link_text_non_empty] = STATE(473), + [sym_inline_link] = STATE(60), + [sym_image] = STATE(370), + [sym__image_inline_link] = STATE(923), + [sym__image_description] = STATE(2342), + [sym__image_description_non_empty] = STATE(2342), + [sym_hard_line_break] = STATE(370), + [sym__whitespace] = STATE(920), + [sym__word] = STATE(920), + [sym__soft_line_break] = STATE(924), + [sym__inline_base] = STATE(60), + [sym__text_base] = STATE(370), + [sym__inline_element] = STATE(60), + [sym__emphasis_star] = STATE(821), + [sym__strong_emphasis_star] = STATE(60), + [sym__emphasis_underscore] = STATE(821), + [sym__strong_emphasis_underscore] = STATE(60), + [aux_sym_insert_repeat1] = STATE(60), + [aux_sym__inline_base_repeat1] = STATE(370), + [sym__backslash_escape] = ACTIONS(73), + [sym_entity_reference] = ACTIONS(75), + [sym_numeric_character_reference] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_BANG] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_POUND] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(79), + [anon_sym_PERCENT] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_STAR] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_COMMA] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_DOT] = ACTIONS(77), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_COLON] = ACTIONS(79), + [anon_sym_SEMI] = ACTIONS(79), + [anon_sym_EQ] = ACTIONS(79), + [anon_sym_QMARK] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(83), + [anon_sym_BSLASH] = ACTIONS(85), + [anon_sym_RBRACK] = ACTIONS(2587), + [anon_sym_CARET] = ACTIONS(77), + [anon_sym__] = ACTIONS(79), + [anon_sym_BQUOTE] = ACTIONS(79), + [anon_sym_LBRACE] = ACTIONS(89), + [anon_sym_PIPE] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(79), + [anon_sym_RPAREN] = ACTIONS(79), + [sym__newline_token] = ACTIONS(91), + [aux_sym_insert_token1] = ACTIONS(93), + [aux_sym_delete_token1] = ACTIONS(95), + [aux_sym_highlight_token1] = ACTIONS(97), + [aux_sym_edit_comment_token1] = ACTIONS(99), + [anon_sym_CARET_LBRACK] = ACTIONS(101), + [anon_sym_LBRACK_CARET] = ACTIONS(103), + [sym_uri_autolink] = ACTIONS(75), + [sym_email_autolink] = ACTIONS(75), + [sym__whitespace_ge_2] = ACTIONS(105), + [aux_sym__whitespace_token1] = ACTIONS(107), + [sym__word_no_digit] = ACTIONS(109), + [sym__digits] = ACTIONS(109), + [anon_sym_DASH_DASH] = ACTIONS(111), + [anon_sym_DASH_DASH_DASH] = ACTIONS(109), + [anon_sym_DOT_DOT_DOT] = ACTIONS(109), + [sym__code_span_start] = ACTIONS(113), + [sym__emphasis_open_star] = ACTIONS(115), + [sym__emphasis_open_underscore] = ACTIONS(117), + [sym__strikeout_open] = ACTIONS(121), + [sym__latex_span_start] = ACTIONS(123), + [sym__single_quote_open] = ACTIONS(125), + [sym__double_quote_open] = ACTIONS(127), + [sym__superscript_open] = ACTIONS(129), + [sym__subscript_open] = ACTIONS(131), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(133), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(135), + [sym__cite_author_in_text] = ACTIONS(137), + [sym__cite_suppress_author] = ACTIONS(139), + [sym__shortcode_open_escaped] = ACTIONS(141), + [sym__shortcode_open] = ACTIONS(143), + [sym__unclosed_span] = ACTIONS(75), + }, + [STATE(192)] = { + [sym_backslash_escape] = STATE(366), + [sym_commonmark_attribute] = STATE(366), + [sym_code_span] = STATE(366), + [sym_latex_span] = STATE(366), + [sym_insert] = STATE(366), + [sym_delete] = STATE(366), + [sym_highlight] = STATE(366), + [sym_edit_comment] = STATE(366), + [sym_superscript] = STATE(366), + [sym_subscript] = STATE(366), + [sym_strikeout] = STATE(366), + [sym_quoted_span] = STATE(366), + [sym_inline_note] = STATE(366), + [sym_citation] = STATE(366), + [sym_shortcode_escaped] = STATE(366), + [sym_shortcode] = STATE(366), + [sym_note_reference] = STATE(366), + [sym__link_text] = STATE(490), + [sym__link_text_non_empty] = STATE(491), + [sym_inline_link] = STATE(204), + [sym_image] = STATE(366), + [sym__image_inline_link] = STATE(1244), + [sym__image_description] = STATE(2280), + [sym__image_description_non_empty] = STATE(2280), + [sym_hard_line_break] = STATE(366), + [sym__whitespace] = STATE(1218), + [sym__word] = STATE(1218), + [sym__soft_line_break] = STATE(1245), + [sym__inline_base] = STATE(204), + [sym__text_base] = STATE(366), + [sym__inline_element] = STATE(204), + [sym__emphasis_star] = STATE(1270), + [sym__strong_emphasis_star] = STATE(204), + [sym__emphasis_underscore] = STATE(1270), + [sym__strong_emphasis_underscore] = STATE(204), + [aux_sym_insert_repeat1] = STATE(204), + [aux_sym__inline_base_repeat1] = STATE(366), + [sym__backslash_escape] = ACTIONS(2005), + [sym_entity_reference] = ACTIONS(2007), + [sym_numeric_character_reference] = ACTIONS(2007), + [anon_sym_LT] = ACTIONS(2009), + [anon_sym_GT] = ACTIONS(2011), + [anon_sym_BANG] = ACTIONS(2013), + [anon_sym_DQUOTE] = ACTIONS(2011), + [anon_sym_POUND] = ACTIONS(2011), + [anon_sym_DOLLAR] = ACTIONS(2011), + [anon_sym_PERCENT] = ACTIONS(2011), + [anon_sym_AMP] = ACTIONS(2009), + [anon_sym_SQUOTE] = ACTIONS(2011), + [anon_sym_STAR] = ACTIONS(2011), + [anon_sym_PLUS] = ACTIONS(2011), + [anon_sym_COMMA] = ACTIONS(2011), + [anon_sym_DASH] = ACTIONS(2009), + [anon_sym_DOT] = ACTIONS(2009), + [anon_sym_SLASH] = ACTIONS(2011), + [anon_sym_COLON] = ACTIONS(2011), + [anon_sym_SEMI] = ACTIONS(2011), + [anon_sym_EQ] = ACTIONS(2011), + [anon_sym_QMARK] = ACTIONS(2011), + [anon_sym_LBRACK] = ACTIONS(2015), + [anon_sym_BSLASH] = ACTIONS(2017), + [anon_sym_CARET] = ACTIONS(2009), + [anon_sym__] = ACTIONS(2011), + [anon_sym_BQUOTE] = ACTIONS(2011), + [anon_sym_LBRACE] = ACTIONS(2019), + [anon_sym_PIPE] = ACTIONS(2011), + [anon_sym_TILDE] = ACTIONS(2011), + [anon_sym_LPAREN] = ACTIONS(2011), + [anon_sym_RPAREN] = ACTIONS(2011), + [sym__newline_token] = ACTIONS(2021), + [aux_sym_insert_token1] = ACTIONS(2023), + [aux_sym_delete_token1] = ACTIONS(2025), + [aux_sym_highlight_token1] = ACTIONS(2027), + [aux_sym_edit_comment_token1] = ACTIONS(2029), + [anon_sym_CARET_LBRACK] = ACTIONS(2031), + [anon_sym_LBRACK_CARET] = ACTIONS(2033), + [sym_uri_autolink] = ACTIONS(2007), + [sym_email_autolink] = ACTIONS(2007), + [sym__whitespace_ge_2] = ACTIONS(2035), + [aux_sym__whitespace_token1] = ACTIONS(2037), + [sym__word_no_digit] = ACTIONS(2039), + [sym__digits] = ACTIONS(2039), + [anon_sym_DASH_DASH] = ACTIONS(2041), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2039), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2039), + [sym__code_span_start] = ACTIONS(2043), + [sym__emphasis_open_star] = ACTIONS(2045), + [sym__emphasis_open_underscore] = ACTIONS(2047), + [sym__strikeout_open] = ACTIONS(2049), + [sym__strikeout_close] = ACTIONS(2589), + [sym__latex_span_start] = ACTIONS(2053), + [sym__single_quote_open] = ACTIONS(2055), + [sym__double_quote_open] = ACTIONS(2057), + [sym__superscript_open] = ACTIONS(2059), + [sym__subscript_open] = ACTIONS(2061), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2063), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2065), + [sym__cite_author_in_text] = ACTIONS(2067), + [sym__cite_suppress_author] = ACTIONS(2069), + [sym__shortcode_open_escaped] = ACTIONS(2071), + [sym__shortcode_open] = ACTIONS(2073), + [sym__unclosed_span] = ACTIONS(2007), + }, + [STATE(193)] = { + [sym_backslash_escape] = STATE(375), + [sym_commonmark_attribute] = STATE(375), + [sym_code_span] = STATE(375), + [sym_latex_span] = STATE(375), + [sym_insert] = STATE(375), + [sym_delete] = STATE(375), + [sym_highlight] = STATE(375), + [sym_edit_comment] = STATE(375), + [sym_superscript] = STATE(375), + [sym_subscript] = STATE(375), + [sym_strikeout] = STATE(375), + [sym_quoted_span] = STATE(375), + [sym_inline_note] = STATE(375), + [sym_citation] = STATE(375), + [sym_shortcode_escaped] = STATE(375), + [sym_shortcode] = STATE(375), + [sym_note_reference] = STATE(375), + [sym__link_text] = STATE(525), + [sym__link_text_non_empty] = STATE(527), + [sym_inline_link] = STATE(205), + [sym_image] = STATE(375), + [sym__image_inline_link] = STATE(972), + [sym__image_description] = STATE(2286), + [sym__image_description_non_empty] = STATE(2286), + [sym_hard_line_break] = STATE(375), + [sym__whitespace] = STATE(949), + [sym__word] = STATE(949), + [sym__soft_line_break] = STATE(973), + [sym__inline_base] = STATE(205), + [sym__text_base] = STATE(375), + [sym__inline_element] = STATE(205), + [sym__emphasis_star] = STATE(1392), + [sym__strong_emphasis_star] = STATE(205), + [sym__emphasis_underscore] = STATE(1392), + [sym__strong_emphasis_underscore] = STATE(205), + [aux_sym_insert_repeat1] = STATE(205), + [aux_sym__inline_base_repeat1] = STATE(375), + [sym__backslash_escape] = ACTIONS(2179), + [sym_entity_reference] = ACTIONS(2181), + [sym_numeric_character_reference] = ACTIONS(2181), + [anon_sym_LT] = ACTIONS(2183), + [anon_sym_GT] = ACTIONS(2185), + [anon_sym_BANG] = ACTIONS(2187), + [anon_sym_DQUOTE] = ACTIONS(2185), + [anon_sym_POUND] = ACTIONS(2185), + [anon_sym_DOLLAR] = ACTIONS(2185), + [anon_sym_PERCENT] = ACTIONS(2185), + [anon_sym_AMP] = ACTIONS(2183), + [anon_sym_SQUOTE] = ACTIONS(2185), + [anon_sym_STAR] = ACTIONS(2185), + [anon_sym_PLUS] = ACTIONS(2185), + [anon_sym_COMMA] = ACTIONS(2185), + [anon_sym_DASH] = ACTIONS(2183), + [anon_sym_DOT] = ACTIONS(2183), + [anon_sym_SLASH] = ACTIONS(2185), + [anon_sym_COLON] = ACTIONS(2185), + [anon_sym_SEMI] = ACTIONS(2185), + [anon_sym_EQ] = ACTIONS(2185), + [anon_sym_QMARK] = ACTIONS(2185), + [anon_sym_LBRACK] = ACTIONS(2189), + [anon_sym_BSLASH] = ACTIONS(2191), + [anon_sym_CARET] = ACTIONS(2183), + [anon_sym__] = ACTIONS(2185), + [anon_sym_BQUOTE] = ACTIONS(2185), + [anon_sym_LBRACE] = ACTIONS(2193), + [anon_sym_PIPE] = ACTIONS(2185), + [anon_sym_TILDE] = ACTIONS(2185), + [anon_sym_LPAREN] = ACTIONS(2185), + [anon_sym_RPAREN] = ACTIONS(2185), + [sym__newline_token] = ACTIONS(2195), + [aux_sym_insert_token1] = ACTIONS(2197), + [aux_sym_delete_token1] = ACTIONS(2199), + [aux_sym_highlight_token1] = ACTIONS(2201), + [aux_sym_edit_comment_token1] = ACTIONS(2203), + [anon_sym_CARET_LBRACK] = ACTIONS(2205), + [anon_sym_LBRACK_CARET] = ACTIONS(2207), + [sym_uri_autolink] = ACTIONS(2181), + [sym_email_autolink] = ACTIONS(2181), + [sym__whitespace_ge_2] = ACTIONS(2209), + [aux_sym__whitespace_token1] = ACTIONS(2211), + [sym__word_no_digit] = ACTIONS(2213), + [sym__digits] = ACTIONS(2213), + [anon_sym_DASH_DASH] = ACTIONS(2215), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2213), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2213), + [sym__code_span_start] = ACTIONS(2217), + [sym__emphasis_open_star] = ACTIONS(2219), + [sym__emphasis_open_underscore] = ACTIONS(2221), + [sym__strikeout_open] = ACTIONS(2223), + [sym__latex_span_start] = ACTIONS(2225), + [sym__single_quote_open] = ACTIONS(2227), + [sym__single_quote_close] = ACTIONS(2591), + [sym__double_quote_open] = ACTIONS(2229), + [sym__superscript_open] = ACTIONS(2231), + [sym__subscript_open] = ACTIONS(2233), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2235), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2237), + [sym__cite_author_in_text] = ACTIONS(2239), + [sym__cite_suppress_author] = ACTIONS(2241), + [sym__shortcode_open_escaped] = ACTIONS(2243), + [sym__shortcode_open] = ACTIONS(2245), + [sym__unclosed_span] = ACTIONS(2181), + }, + [STATE(194)] = { + [sym_backslash_escape] = STATE(383), + [sym_commonmark_attribute] = STATE(383), + [sym_code_span] = STATE(383), + [sym_latex_span] = STATE(383), + [sym_insert] = STATE(383), + [sym_delete] = STATE(383), + [sym_highlight] = STATE(383), + [sym_edit_comment] = STATE(383), + [sym_superscript] = STATE(383), + [sym_subscript] = STATE(383), + [sym_strikeout] = STATE(383), + [sym_quoted_span] = STATE(383), + [sym_inline_note] = STATE(383), + [sym_citation] = STATE(383), + [sym_shortcode_escaped] = STATE(383), + [sym_shortcode] = STATE(383), + [sym_note_reference] = STATE(383), + [sym__link_text] = STATE(395), + [sym__link_text_non_empty] = STATE(396), + [sym_inline_link] = STATE(206), + [sym_image] = STATE(383), + [sym__image_inline_link] = STATE(1263), + [sym__image_description] = STATE(2300), + [sym__image_description_non_empty] = STATE(2300), + [sym_hard_line_break] = STATE(383), + [sym__whitespace] = STATE(1259), + [sym__word] = STATE(1259), + [sym__soft_line_break] = STATE(1264), + [sym__inline_base] = STATE(206), + [sym__text_base] = STATE(383), + [sym__inline_element] = STATE(206), + [sym__emphasis_star] = STATE(1249), + [sym__strong_emphasis_star] = STATE(206), + [sym__emphasis_underscore] = STATE(1249), + [sym__strong_emphasis_underscore] = STATE(206), + [aux_sym_insert_repeat1] = STATE(206), + [aux_sym__inline_base_repeat1] = STATE(383), + [sym__backslash_escape] = ACTIONS(637), + [sym_entity_reference] = ACTIONS(639), + [sym_numeric_character_reference] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_GT] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(645), + [anon_sym_DQUOTE] = ACTIONS(643), + [anon_sym_POUND] = ACTIONS(643), + [anon_sym_DOLLAR] = ACTIONS(643), + [anon_sym_PERCENT] = ACTIONS(643), + [anon_sym_AMP] = ACTIONS(641), + [anon_sym_SQUOTE] = ACTIONS(643), + [anon_sym_STAR] = ACTIONS(643), + [anon_sym_PLUS] = ACTIONS(643), + [anon_sym_COMMA] = ACTIONS(643), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_DOT] = ACTIONS(641), + [anon_sym_SLASH] = ACTIONS(643), + [anon_sym_COLON] = ACTIONS(643), + [anon_sym_SEMI] = ACTIONS(643), + [anon_sym_EQ] = ACTIONS(643), + [anon_sym_QMARK] = ACTIONS(643), + [anon_sym_LBRACK] = ACTIONS(647), + [anon_sym_BSLASH] = ACTIONS(649), + [anon_sym_CARET] = ACTIONS(641), + [anon_sym__] = ACTIONS(643), + [anon_sym_BQUOTE] = ACTIONS(643), + [anon_sym_LBRACE] = ACTIONS(651), + [anon_sym_PIPE] = ACTIONS(643), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_LPAREN] = ACTIONS(643), + [anon_sym_RPAREN] = ACTIONS(643), + [sym__newline_token] = ACTIONS(653), + [aux_sym_insert_token1] = ACTIONS(655), + [aux_sym_delete_token1] = ACTIONS(657), + [aux_sym_highlight_token1] = ACTIONS(659), + [aux_sym_edit_comment_token1] = ACTIONS(661), + [anon_sym_CARET_LBRACK] = ACTIONS(663), + [anon_sym_LBRACK_CARET] = ACTIONS(665), + [sym_uri_autolink] = ACTIONS(639), + [sym_email_autolink] = ACTIONS(639), + [sym__whitespace_ge_2] = ACTIONS(667), + [aux_sym__whitespace_token1] = ACTIONS(669), + [sym__word_no_digit] = ACTIONS(671), + [sym__digits] = ACTIONS(671), + [anon_sym_DASH_DASH] = ACTIONS(673), + [anon_sym_DASH_DASH_DASH] = ACTIONS(671), + [anon_sym_DOT_DOT_DOT] = ACTIONS(671), + [sym__code_span_start] = ACTIONS(675), + [sym__emphasis_open_star] = ACTIONS(677), + [sym__emphasis_open_underscore] = ACTIONS(679), + [sym__strikeout_open] = ACTIONS(681), + [sym__latex_span_start] = ACTIONS(683), + [sym__single_quote_open] = ACTIONS(685), + [sym__double_quote_open] = ACTIONS(687), + [sym__double_quote_close] = ACTIONS(2591), + [sym__superscript_open] = ACTIONS(691), + [sym__subscript_open] = ACTIONS(693), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(695), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(697), + [sym__cite_author_in_text] = ACTIONS(699), + [sym__cite_suppress_author] = ACTIONS(701), + [sym__shortcode_open_escaped] = ACTIONS(703), + [sym__shortcode_open] = ACTIONS(705), + [sym__unclosed_span] = ACTIONS(639), + }, + [STATE(195)] = { + [sym_backslash_escape] = STATE(365), + [sym_commonmark_attribute] = STATE(365), + [sym_code_span] = STATE(365), + [sym_latex_span] = STATE(365), + [sym_insert] = STATE(365), + [sym_delete] = STATE(365), + [sym_highlight] = STATE(365), + [sym_edit_comment] = STATE(365), + [sym_superscript] = STATE(365), + [sym_subscript] = STATE(365), + [sym_strikeout] = STATE(365), + [sym_quoted_span] = STATE(365), + [sym_inline_note] = STATE(365), + [sym_citation] = STATE(365), + [sym_shortcode_escaped] = STATE(365), + [sym_shortcode] = STATE(365), + [sym_note_reference] = STATE(365), + [sym__link_text] = STATE(416), + [sym__link_text_non_empty] = STATE(417), + [sym_inline_link] = STATE(207), + [sym_image] = STATE(365), + [sym__image_inline_link] = STATE(712), + [sym__image_description] = STATE(2314), + [sym__image_description_non_empty] = STATE(2314), + [sym_hard_line_break] = STATE(365), + [sym__whitespace] = STATE(709), + [sym__word] = STATE(709), + [sym__soft_line_break] = STATE(713), + [sym__inline_base] = STATE(207), + [sym__text_base] = STATE(365), + [sym__inline_element] = STATE(207), + [sym__emphasis_star] = STATE(979), + [sym__strong_emphasis_star] = STATE(207), + [sym__emphasis_underscore] = STATE(979), + [sym__strong_emphasis_underscore] = STATE(207), + [aux_sym_insert_repeat1] = STATE(207), + [aux_sym__inline_base_repeat1] = STATE(365), + [sym__backslash_escape] = ACTIONS(1341), + [sym_entity_reference] = ACTIONS(1343), + [sym_numeric_character_reference] = ACTIONS(1343), + [anon_sym_LT] = ACTIONS(1345), + [anon_sym_GT] = ACTIONS(1347), + [anon_sym_BANG] = ACTIONS(1349), + [anon_sym_DQUOTE] = ACTIONS(1347), + [anon_sym_POUND] = ACTIONS(1347), + [anon_sym_DOLLAR] = ACTIONS(1347), + [anon_sym_PERCENT] = ACTIONS(1347), + [anon_sym_AMP] = ACTIONS(1345), + [anon_sym_SQUOTE] = ACTIONS(1347), + [anon_sym_STAR] = ACTIONS(1347), + [anon_sym_PLUS] = ACTIONS(1347), + [anon_sym_COMMA] = ACTIONS(1347), + [anon_sym_DASH] = ACTIONS(1345), + [anon_sym_DOT] = ACTIONS(1345), + [anon_sym_SLASH] = ACTIONS(1347), + [anon_sym_COLON] = ACTIONS(1347), + [anon_sym_SEMI] = ACTIONS(1347), + [anon_sym_EQ] = ACTIONS(1347), + [anon_sym_QMARK] = ACTIONS(1347), + [anon_sym_LBRACK] = ACTIONS(1351), + [anon_sym_BSLASH] = ACTIONS(1353), + [anon_sym_CARET] = ACTIONS(1345), + [anon_sym__] = ACTIONS(1347), + [anon_sym_BQUOTE] = ACTIONS(1347), + [anon_sym_LBRACE] = ACTIONS(1355), + [anon_sym_PIPE] = ACTIONS(1347), + [anon_sym_TILDE] = ACTIONS(1347), + [anon_sym_LPAREN] = ACTIONS(1347), + [anon_sym_RPAREN] = ACTIONS(1347), + [sym__newline_token] = ACTIONS(1357), + [aux_sym_insert_token1] = ACTIONS(1359), + [aux_sym_delete_token1] = ACTIONS(1361), + [aux_sym_highlight_token1] = ACTIONS(1363), + [aux_sym_edit_comment_token1] = ACTIONS(1365), + [anon_sym_CARET_LBRACK] = ACTIONS(1367), + [anon_sym_LBRACK_CARET] = ACTIONS(1369), + [sym_uri_autolink] = ACTIONS(1343), + [sym_email_autolink] = ACTIONS(1343), + [sym__whitespace_ge_2] = ACTIONS(1371), + [aux_sym__whitespace_token1] = ACTIONS(1373), + [sym__word_no_digit] = ACTIONS(1375), + [sym__digits] = ACTIONS(1375), + [anon_sym_DASH_DASH] = ACTIONS(1377), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1375), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1375), + [sym__code_span_start] = ACTIONS(1379), + [sym__emphasis_open_star] = ACTIONS(1381), + [sym__emphasis_open_underscore] = ACTIONS(1383), + [sym__strikeout_open] = ACTIONS(1385), + [sym__latex_span_start] = ACTIONS(1387), + [sym__single_quote_open] = ACTIONS(1389), + [sym__double_quote_open] = ACTIONS(1391), + [sym__superscript_open] = ACTIONS(1393), + [sym__superscript_close] = ACTIONS(2593), + [sym__subscript_open] = ACTIONS(1397), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1399), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1401), + [sym__cite_author_in_text] = ACTIONS(1403), + [sym__cite_suppress_author] = ACTIONS(1405), + [sym__shortcode_open_escaped] = ACTIONS(1407), + [sym__shortcode_open] = ACTIONS(1409), + [sym__unclosed_span] = ACTIONS(1343), + }, + [STATE(196)] = { + [sym_backslash_escape] = STATE(367), + [sym_commonmark_attribute] = STATE(367), + [sym_code_span] = STATE(367), + [sym_latex_span] = STATE(367), + [sym_insert] = STATE(367), + [sym_delete] = STATE(367), + [sym_highlight] = STATE(367), + [sym_edit_comment] = STATE(367), + [sym_superscript] = STATE(367), + [sym_subscript] = STATE(367), + [sym_strikeout] = STATE(367), + [sym_quoted_span] = STATE(367), + [sym_inline_note] = STATE(367), + [sym_citation] = STATE(367), + [sym_shortcode_escaped] = STATE(367), + [sym_shortcode] = STATE(367), + [sym_note_reference] = STATE(367), + [sym__link_text] = STATE(435), + [sym__link_text_non_empty] = STATE(436), + [sym_inline_link] = STATE(208), + [sym_image] = STATE(367), + [sym__image_inline_link] = STATE(819), + [sym__image_description] = STATE(2328), + [sym__image_description_non_empty] = STATE(2328), + [sym_hard_line_break] = STATE(367), + [sym__whitespace] = STATE(816), + [sym__word] = STATE(816), + [sym__soft_line_break] = STATE(820), + [sym__inline_base] = STATE(208), + [sym__text_base] = STATE(367), + [sym__inline_element] = STATE(208), + [sym__emphasis_star] = STATE(1271), + [sym__strong_emphasis_star] = STATE(208), + [sym__emphasis_underscore] = STATE(1271), + [sym__strong_emphasis_underscore] = STATE(208), + [aux_sym_insert_repeat1] = STATE(208), + [aux_sym__inline_base_repeat1] = STATE(367), + [sym__backslash_escape] = ACTIONS(1413), + [sym_entity_reference] = ACTIONS(1415), + [sym_numeric_character_reference] = ACTIONS(1415), + [anon_sym_LT] = ACTIONS(1417), + [anon_sym_GT] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1419), + [anon_sym_POUND] = ACTIONS(1419), + [anon_sym_DOLLAR] = ACTIONS(1419), + [anon_sym_PERCENT] = ACTIONS(1419), + [anon_sym_AMP] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [anon_sym_STAR] = ACTIONS(1419), + [anon_sym_PLUS] = ACTIONS(1419), + [anon_sym_COMMA] = ACTIONS(1419), + [anon_sym_DASH] = ACTIONS(1417), + [anon_sym_DOT] = ACTIONS(1417), + [anon_sym_SLASH] = ACTIONS(1419), + [anon_sym_COLON] = ACTIONS(1419), + [anon_sym_SEMI] = ACTIONS(1419), + [anon_sym_EQ] = ACTIONS(1419), + [anon_sym_QMARK] = ACTIONS(1419), + [anon_sym_LBRACK] = ACTIONS(1423), + [anon_sym_BSLASH] = ACTIONS(1425), + [anon_sym_CARET] = ACTIONS(1417), + [anon_sym__] = ACTIONS(1419), + [anon_sym_BQUOTE] = ACTIONS(1419), + [anon_sym_LBRACE] = ACTIONS(1427), + [anon_sym_PIPE] = ACTIONS(1419), + [anon_sym_TILDE] = ACTIONS(1419), + [anon_sym_LPAREN] = ACTIONS(1419), + [anon_sym_RPAREN] = ACTIONS(1419), + [sym__newline_token] = ACTIONS(1429), + [aux_sym_insert_token1] = ACTIONS(1431), + [aux_sym_delete_token1] = ACTIONS(1433), + [aux_sym_highlight_token1] = ACTIONS(1435), + [aux_sym_edit_comment_token1] = ACTIONS(1437), + [anon_sym_CARET_LBRACK] = ACTIONS(1439), + [anon_sym_LBRACK_CARET] = ACTIONS(1441), + [sym_uri_autolink] = ACTIONS(1415), + [sym_email_autolink] = ACTIONS(1415), + [sym__whitespace_ge_2] = ACTIONS(1443), + [aux_sym__whitespace_token1] = ACTIONS(1445), + [sym__word_no_digit] = ACTIONS(1447), + [sym__digits] = ACTIONS(1447), + [anon_sym_DASH_DASH] = ACTIONS(1449), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1447), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1447), + [sym__code_span_start] = ACTIONS(1451), + [sym__emphasis_open_star] = ACTIONS(1453), + [sym__emphasis_open_underscore] = ACTIONS(1455), + [sym__strikeout_open] = ACTIONS(1457), + [sym__latex_span_start] = ACTIONS(1459), + [sym__single_quote_open] = ACTIONS(1461), + [sym__double_quote_open] = ACTIONS(1463), + [sym__superscript_open] = ACTIONS(1465), + [sym__subscript_open] = ACTIONS(1467), + [sym__subscript_close] = ACTIONS(2595), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1471), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1473), + [sym__cite_author_in_text] = ACTIONS(1475), + [sym__cite_suppress_author] = ACTIONS(1477), + [sym__shortcode_open_escaped] = ACTIONS(1479), + [sym__shortcode_open] = ACTIONS(1481), + [sym__unclosed_span] = ACTIONS(1415), + }, + [STATE(197)] = { + [sym_backslash_escape] = STATE(372), + [sym_commonmark_attribute] = STATE(372), + [sym_code_span] = STATE(372), + [sym_latex_span] = STATE(372), + [sym_insert] = STATE(372), + [sym_delete] = STATE(372), + [sym_highlight] = STATE(372), + [sym_edit_comment] = STATE(372), + [sym_superscript] = STATE(372), + [sym_subscript] = STATE(372), + [sym_strikeout] = STATE(372), + [sym_quoted_span] = STATE(372), + [sym_inline_note] = STATE(372), + [sym_citation] = STATE(372), + [sym_shortcode_escaped] = STATE(372), + [sym_shortcode] = STATE(372), + [sym_note_reference] = STATE(372), + [sym__link_text] = STATE(454), + [sym__link_text_non_empty] = STATE(455), + [sym_inline_link] = STATE(209), + [sym_image] = STATE(372), + [sym__image_inline_link] = STATE(1025), + [sym__image_description] = STATE(2356), + [sym__image_description_non_empty] = STATE(2356), + [sym_hard_line_break] = STATE(372), + [sym__whitespace] = STATE(1022), + [sym__word] = STATE(1022), + [sym__soft_line_break] = STATE(1026), + [sym__inline_base] = STATE(209), + [sym__text_base] = STATE(372), + [sym__inline_element] = STATE(209), + [sym__emphasis_star] = STATE(714), + [sym__strong_emphasis_star] = STATE(209), + [sym__emphasis_underscore] = STATE(714), + [sym__strong_emphasis_underscore] = STATE(209), + [aux_sym_insert_repeat1] = STATE(209), + [aux_sym__inline_base_repeat1] = STATE(372), + [sym__backslash_escape] = ACTIONS(707), + [sym_entity_reference] = ACTIONS(709), + [sym_numeric_character_reference] = ACTIONS(709), + [anon_sym_LT] = ACTIONS(711), + [anon_sym_GT] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(715), + [anon_sym_DQUOTE] = ACTIONS(713), + [anon_sym_POUND] = ACTIONS(713), + [anon_sym_DOLLAR] = ACTIONS(713), + [anon_sym_PERCENT] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(711), + [anon_sym_SQUOTE] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_COMMA] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_DOT] = ACTIONS(711), + [anon_sym_SLASH] = ACTIONS(713), + [anon_sym_COLON] = ACTIONS(713), + [anon_sym_SEMI] = ACTIONS(713), + [anon_sym_EQ] = ACTIONS(713), + [anon_sym_QMARK] = ACTIONS(713), + [anon_sym_LBRACK] = ACTIONS(717), + [anon_sym_BSLASH] = ACTIONS(719), + [anon_sym_CARET] = ACTIONS(711), + [anon_sym__] = ACTIONS(713), + [anon_sym_BQUOTE] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(721), + [anon_sym_PIPE] = ACTIONS(713), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_LPAREN] = ACTIONS(713), + [anon_sym_RPAREN] = ACTIONS(713), + [sym__newline_token] = ACTIONS(723), + [aux_sym_insert_token1] = ACTIONS(725), + [aux_sym_insert_token2] = ACTIONS(2597), + [aux_sym_delete_token1] = ACTIONS(729), + [aux_sym_highlight_token1] = ACTIONS(731), + [aux_sym_edit_comment_token1] = ACTIONS(733), + [anon_sym_CARET_LBRACK] = ACTIONS(735), + [anon_sym_LBRACK_CARET] = ACTIONS(737), + [sym_uri_autolink] = ACTIONS(709), + [sym_email_autolink] = ACTIONS(709), + [sym__whitespace_ge_2] = ACTIONS(739), + [aux_sym__whitespace_token1] = ACTIONS(741), + [sym__word_no_digit] = ACTIONS(743), + [sym__digits] = ACTIONS(743), + [anon_sym_DASH_DASH] = ACTIONS(745), + [anon_sym_DASH_DASH_DASH] = ACTIONS(743), + [anon_sym_DOT_DOT_DOT] = ACTIONS(743), + [sym__code_span_start] = ACTIONS(747), + [sym__emphasis_open_star] = ACTIONS(749), + [sym__emphasis_open_underscore] = ACTIONS(751), + [sym__strikeout_open] = ACTIONS(753), + [sym__latex_span_start] = ACTIONS(755), + [sym__single_quote_open] = ACTIONS(757), + [sym__double_quote_open] = ACTIONS(759), + [sym__superscript_open] = ACTIONS(761), + [sym__subscript_open] = ACTIONS(763), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(765), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(767), + [sym__cite_author_in_text] = ACTIONS(769), + [sym__cite_suppress_author] = ACTIONS(771), + [sym__shortcode_open_escaped] = ACTIONS(773), + [sym__shortcode_open] = ACTIONS(775), + [sym__unclosed_span] = ACTIONS(709), + }, + [STATE(198)] = { + [sym_backslash_escape] = STATE(372), + [sym_commonmark_attribute] = STATE(372), + [sym_code_span] = STATE(372), + [sym_latex_span] = STATE(372), + [sym_insert] = STATE(372), + [sym_delete] = STATE(372), + [sym_highlight] = STATE(372), + [sym_edit_comment] = STATE(372), + [sym_superscript] = STATE(372), + [sym_subscript] = STATE(372), + [sym_strikeout] = STATE(372), + [sym_quoted_span] = STATE(372), + [sym_inline_note] = STATE(372), + [sym_citation] = STATE(372), + [sym_shortcode_escaped] = STATE(372), + [sym_shortcode] = STATE(372), + [sym_note_reference] = STATE(372), + [sym__link_text] = STATE(454), + [sym__link_text_non_empty] = STATE(455), + [sym_inline_link] = STATE(210), + [sym_image] = STATE(372), + [sym__image_inline_link] = STATE(1025), + [sym__image_description] = STATE(2356), + [sym__image_description_non_empty] = STATE(2356), + [sym_hard_line_break] = STATE(372), + [sym__whitespace] = STATE(1022), + [sym__word] = STATE(1022), + [sym__soft_line_break] = STATE(1026), + [sym__inline_base] = STATE(210), + [sym__text_base] = STATE(372), + [sym__inline_element] = STATE(210), + [sym__emphasis_star] = STATE(714), + [sym__strong_emphasis_star] = STATE(210), + [sym__emphasis_underscore] = STATE(714), + [sym__strong_emphasis_underscore] = STATE(210), + [aux_sym_insert_repeat1] = STATE(210), + [aux_sym__inline_base_repeat1] = STATE(372), + [sym__backslash_escape] = ACTIONS(707), + [sym_entity_reference] = ACTIONS(709), + [sym_numeric_character_reference] = ACTIONS(709), + [anon_sym_LT] = ACTIONS(711), + [anon_sym_GT] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(715), + [anon_sym_DQUOTE] = ACTIONS(713), + [anon_sym_POUND] = ACTIONS(713), + [anon_sym_DOLLAR] = ACTIONS(713), + [anon_sym_PERCENT] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(711), + [anon_sym_SQUOTE] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_COMMA] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_DOT] = ACTIONS(711), + [anon_sym_SLASH] = ACTIONS(713), + [anon_sym_COLON] = ACTIONS(713), + [anon_sym_SEMI] = ACTIONS(713), + [anon_sym_EQ] = ACTIONS(713), + [anon_sym_QMARK] = ACTIONS(713), + [anon_sym_LBRACK] = ACTIONS(717), + [anon_sym_BSLASH] = ACTIONS(719), + [anon_sym_CARET] = ACTIONS(711), + [anon_sym__] = ACTIONS(713), + [anon_sym_BQUOTE] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(721), + [anon_sym_PIPE] = ACTIONS(713), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_LPAREN] = ACTIONS(713), + [anon_sym_RPAREN] = ACTIONS(713), + [sym__newline_token] = ACTIONS(723), + [aux_sym_insert_token1] = ACTIONS(725), + [aux_sym_insert_token2] = ACTIONS(2599), + [aux_sym_delete_token1] = ACTIONS(729), + [aux_sym_highlight_token1] = ACTIONS(731), + [aux_sym_edit_comment_token1] = ACTIONS(733), + [anon_sym_CARET_LBRACK] = ACTIONS(735), + [anon_sym_LBRACK_CARET] = ACTIONS(737), + [sym_uri_autolink] = ACTIONS(709), + [sym_email_autolink] = ACTIONS(709), + [sym__whitespace_ge_2] = ACTIONS(739), + [aux_sym__whitespace_token1] = ACTIONS(741), + [sym__word_no_digit] = ACTIONS(743), + [sym__digits] = ACTIONS(743), + [anon_sym_DASH_DASH] = ACTIONS(745), + [anon_sym_DASH_DASH_DASH] = ACTIONS(743), + [anon_sym_DOT_DOT_DOT] = ACTIONS(743), + [sym__code_span_start] = ACTIONS(747), + [sym__emphasis_open_star] = ACTIONS(749), + [sym__emphasis_open_underscore] = ACTIONS(751), + [sym__strikeout_open] = ACTIONS(753), + [sym__latex_span_start] = ACTIONS(755), + [sym__single_quote_open] = ACTIONS(757), + [sym__double_quote_open] = ACTIONS(759), + [sym__superscript_open] = ACTIONS(761), + [sym__subscript_open] = ACTIONS(763), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(765), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(767), + [sym__cite_author_in_text] = ACTIONS(769), + [sym__cite_suppress_author] = ACTIONS(771), + [sym__shortcode_open_escaped] = ACTIONS(773), + [sym__shortcode_open] = ACTIONS(775), + [sym__unclosed_span] = ACTIONS(709), + }, + [STATE(199)] = { + [sym_backslash_escape] = STATE(372), + [sym_commonmark_attribute] = STATE(372), + [sym_code_span] = STATE(372), + [sym_latex_span] = STATE(372), + [sym_insert] = STATE(372), + [sym_delete] = STATE(372), + [sym_highlight] = STATE(372), + [sym_edit_comment] = STATE(372), + [sym_superscript] = STATE(372), + [sym_subscript] = STATE(372), + [sym_strikeout] = STATE(372), + [sym_quoted_span] = STATE(372), + [sym_inline_note] = STATE(372), + [sym_citation] = STATE(372), + [sym_shortcode_escaped] = STATE(372), + [sym_shortcode] = STATE(372), + [sym_note_reference] = STATE(372), + [sym__link_text] = STATE(454), + [sym__link_text_non_empty] = STATE(455), + [sym_inline_link] = STATE(211), + [sym_image] = STATE(372), + [sym__image_inline_link] = STATE(1025), + [sym__image_description] = STATE(2356), + [sym__image_description_non_empty] = STATE(2356), + [sym_hard_line_break] = STATE(372), + [sym__whitespace] = STATE(1022), + [sym__word] = STATE(1022), + [sym__soft_line_break] = STATE(1026), + [sym__inline_base] = STATE(211), + [sym__text_base] = STATE(372), + [sym__inline_element] = STATE(211), + [sym__emphasis_star] = STATE(714), + [sym__strong_emphasis_star] = STATE(211), + [sym__emphasis_underscore] = STATE(714), + [sym__strong_emphasis_underscore] = STATE(211), + [aux_sym_insert_repeat1] = STATE(211), + [aux_sym__inline_base_repeat1] = STATE(372), + [sym__backslash_escape] = ACTIONS(707), + [sym_entity_reference] = ACTIONS(709), + [sym_numeric_character_reference] = ACTIONS(709), + [anon_sym_LT] = ACTIONS(711), + [anon_sym_GT] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(715), + [anon_sym_DQUOTE] = ACTIONS(713), + [anon_sym_POUND] = ACTIONS(713), + [anon_sym_DOLLAR] = ACTIONS(713), + [anon_sym_PERCENT] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(711), + [anon_sym_SQUOTE] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_COMMA] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_DOT] = ACTIONS(711), + [anon_sym_SLASH] = ACTIONS(713), + [anon_sym_COLON] = ACTIONS(713), + [anon_sym_SEMI] = ACTIONS(713), + [anon_sym_EQ] = ACTIONS(713), + [anon_sym_QMARK] = ACTIONS(713), + [anon_sym_LBRACK] = ACTIONS(717), + [anon_sym_BSLASH] = ACTIONS(719), + [anon_sym_CARET] = ACTIONS(711), + [anon_sym__] = ACTIONS(713), + [anon_sym_BQUOTE] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(721), + [anon_sym_PIPE] = ACTIONS(713), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_LPAREN] = ACTIONS(713), + [anon_sym_RPAREN] = ACTIONS(713), + [sym__newline_token] = ACTIONS(723), + [aux_sym_insert_token1] = ACTIONS(725), + [aux_sym_insert_token2] = ACTIONS(2601), + [aux_sym_delete_token1] = ACTIONS(729), + [aux_sym_highlight_token1] = ACTIONS(731), + [aux_sym_edit_comment_token1] = ACTIONS(733), + [anon_sym_CARET_LBRACK] = ACTIONS(735), + [anon_sym_LBRACK_CARET] = ACTIONS(737), + [sym_uri_autolink] = ACTIONS(709), + [sym_email_autolink] = ACTIONS(709), + [sym__whitespace_ge_2] = ACTIONS(739), + [aux_sym__whitespace_token1] = ACTIONS(741), + [sym__word_no_digit] = ACTIONS(743), + [sym__digits] = ACTIONS(743), + [anon_sym_DASH_DASH] = ACTIONS(745), + [anon_sym_DASH_DASH_DASH] = ACTIONS(743), + [anon_sym_DOT_DOT_DOT] = ACTIONS(743), + [sym__code_span_start] = ACTIONS(747), + [sym__emphasis_open_star] = ACTIONS(749), + [sym__emphasis_open_underscore] = ACTIONS(751), + [sym__strikeout_open] = ACTIONS(753), + [sym__latex_span_start] = ACTIONS(755), + [sym__single_quote_open] = ACTIONS(757), + [sym__double_quote_open] = ACTIONS(759), + [sym__superscript_open] = ACTIONS(761), + [sym__subscript_open] = ACTIONS(763), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(765), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(767), + [sym__cite_author_in_text] = ACTIONS(769), + [sym__cite_suppress_author] = ACTIONS(771), + [sym__shortcode_open_escaped] = ACTIONS(773), + [sym__shortcode_open] = ACTIONS(775), + [sym__unclosed_span] = ACTIONS(709), }, [STATE(200)] = { - [sym_backslash_escape] = STATE(261), - [sym_commonmark_attribute] = STATE(261), - [sym_code_span] = STATE(261), - [sym_latex_span] = STATE(261), - [sym_superscript] = STATE(261), - [sym_subscript] = STATE(261), - [sym_strikeout] = STATE(261), - [sym_quoted_span] = STATE(261), - [sym_inline_note] = STATE(261), - [sym_citation] = STATE(261), - [sym_shortcode_escaped] = STATE(261), - [sym_shortcode] = STATE(261), - [sym_note_reference] = STATE(261), - [sym__link_text] = STATE(322), - [sym__link_text_non_empty] = STATE(323), - [sym_inline_link] = STATE(69), - [sym_image] = STATE(261), - [sym__image_inline_link] = STATE(595), - [sym__image_description] = STATE(1972), - [sym__image_description_non_empty] = STATE(1972), - [sym_hard_line_break] = STATE(261), - [sym__whitespace] = STATE(587), - [sym__word] = STATE(587), - [sym__soft_line_break] = STATE(597), - [sym__inline_base] = STATE(69), - [sym__text_base] = STATE(261), - [sym__inline_element_no_star] = STATE(69), - [aux_sym__inline_no_star] = STATE(69), - [sym__emphasis_star] = STATE(544), - [sym__strong_emphasis_star] = STATE(69), - [sym__emphasis_underscore] = STATE(544), - [sym__strong_emphasis_underscore] = STATE(69), - [aux_sym__inline_base_repeat1] = STATE(261), - [sym__backslash_escape] = ACTIONS(969), - [sym_entity_reference] = ACTIONS(971), - [sym_numeric_character_reference] = ACTIONS(971), - [anon_sym_LT] = ACTIONS(973), - [anon_sym_GT] = ACTIONS(975), - [anon_sym_BANG] = ACTIONS(977), - [anon_sym_DQUOTE] = ACTIONS(975), - [anon_sym_POUND] = ACTIONS(975), - [anon_sym_DOLLAR] = ACTIONS(975), - [anon_sym_PERCENT] = ACTIONS(975), - [anon_sym_AMP] = ACTIONS(973), - [anon_sym_SQUOTE] = ACTIONS(975), - [anon_sym_STAR] = ACTIONS(975), - [anon_sym_PLUS] = ACTIONS(975), - [anon_sym_COMMA] = ACTIONS(975), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_DOT] = ACTIONS(973), - [anon_sym_SLASH] = ACTIONS(975), - [anon_sym_COLON] = ACTIONS(975), - [anon_sym_SEMI] = ACTIONS(975), - [anon_sym_EQ] = ACTIONS(975), - [anon_sym_QMARK] = ACTIONS(975), - [anon_sym_LBRACK] = ACTIONS(979), - [anon_sym_BSLASH] = ACTIONS(981), - [anon_sym_CARET] = ACTIONS(973), - [anon_sym__] = ACTIONS(975), - [anon_sym_BQUOTE] = ACTIONS(975), - [anon_sym_LBRACE] = ACTIONS(983), - [anon_sym_PIPE] = ACTIONS(975), - [anon_sym_TILDE] = ACTIONS(975), - [anon_sym_LPAREN] = ACTIONS(975), - [anon_sym_RPAREN] = ACTIONS(975), - [sym__newline_token] = ACTIONS(985), - [anon_sym_CARET_LBRACK] = ACTIONS(987), - [anon_sym_LBRACK_CARET] = ACTIONS(989), - [sym_uri_autolink] = ACTIONS(971), - [sym_email_autolink] = ACTIONS(971), - [sym__whitespace_ge_2] = ACTIONS(991), - [aux_sym__whitespace_token1] = ACTIONS(993), - [sym__word_no_digit] = ACTIONS(995), - [sym__digits] = ACTIONS(995), - [anon_sym_DASH_DASH] = ACTIONS(997), - [anon_sym_DASH_DASH_DASH] = ACTIONS(995), - [anon_sym_DOT_DOT_DOT] = ACTIONS(995), - [sym__code_span_start] = ACTIONS(999), - [sym__emphasis_open_star] = ACTIONS(1001), - [sym__emphasis_open_underscore] = ACTIONS(1003), - [sym__strikeout_open] = ACTIONS(1007), - [sym__latex_span_start] = ACTIONS(1009), - [sym__single_quote_open] = ACTIONS(1011), - [sym__double_quote_open] = ACTIONS(1013), - [sym__superscript_open] = ACTIONS(1015), - [sym__subscript_open] = ACTIONS(1017), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1019), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1021), - [sym__cite_author_in_text] = ACTIONS(1023), - [sym__cite_suppress_author] = ACTIONS(1025), - [sym__shortcode_open_escaped] = ACTIONS(1027), - [sym__shortcode_open] = ACTIONS(1029), - [sym__unclosed_span] = ACTIONS(971), + [sym_backslash_escape] = STATE(372), + [sym_commonmark_attribute] = STATE(372), + [sym_code_span] = STATE(372), + [sym_latex_span] = STATE(372), + [sym_insert] = STATE(372), + [sym_delete] = STATE(372), + [sym_highlight] = STATE(372), + [sym_edit_comment] = STATE(372), + [sym_superscript] = STATE(372), + [sym_subscript] = STATE(372), + [sym_strikeout] = STATE(372), + [sym_quoted_span] = STATE(372), + [sym_inline_note] = STATE(372), + [sym_citation] = STATE(372), + [sym_shortcode_escaped] = STATE(372), + [sym_shortcode] = STATE(372), + [sym_note_reference] = STATE(372), + [sym__link_text] = STATE(454), + [sym__link_text_non_empty] = STATE(455), + [sym_inline_link] = STATE(212), + [sym_image] = STATE(372), + [sym__image_inline_link] = STATE(1025), + [sym__image_description] = STATE(2356), + [sym__image_description_non_empty] = STATE(2356), + [sym_hard_line_break] = STATE(372), + [sym__whitespace] = STATE(1022), + [sym__word] = STATE(1022), + [sym__soft_line_break] = STATE(1026), + [sym__inline_base] = STATE(212), + [sym__text_base] = STATE(372), + [sym__inline_element] = STATE(212), + [sym__emphasis_star] = STATE(714), + [sym__strong_emphasis_star] = STATE(212), + [sym__emphasis_underscore] = STATE(714), + [sym__strong_emphasis_underscore] = STATE(212), + [aux_sym_insert_repeat1] = STATE(212), + [aux_sym__inline_base_repeat1] = STATE(372), + [sym__backslash_escape] = ACTIONS(707), + [sym_entity_reference] = ACTIONS(709), + [sym_numeric_character_reference] = ACTIONS(709), + [anon_sym_LT] = ACTIONS(711), + [anon_sym_GT] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(715), + [anon_sym_DQUOTE] = ACTIONS(713), + [anon_sym_POUND] = ACTIONS(713), + [anon_sym_DOLLAR] = ACTIONS(713), + [anon_sym_PERCENT] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(711), + [anon_sym_SQUOTE] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_COMMA] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_DOT] = ACTIONS(711), + [anon_sym_SLASH] = ACTIONS(713), + [anon_sym_COLON] = ACTIONS(713), + [anon_sym_SEMI] = ACTIONS(713), + [anon_sym_EQ] = ACTIONS(713), + [anon_sym_QMARK] = ACTIONS(713), + [anon_sym_LBRACK] = ACTIONS(717), + [anon_sym_BSLASH] = ACTIONS(719), + [anon_sym_CARET] = ACTIONS(711), + [anon_sym__] = ACTIONS(713), + [anon_sym_BQUOTE] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(721), + [anon_sym_PIPE] = ACTIONS(713), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_LPAREN] = ACTIONS(713), + [anon_sym_RPAREN] = ACTIONS(713), + [sym__newline_token] = ACTIONS(723), + [aux_sym_insert_token1] = ACTIONS(725), + [aux_sym_insert_token2] = ACTIONS(2603), + [aux_sym_delete_token1] = ACTIONS(729), + [aux_sym_highlight_token1] = ACTIONS(731), + [aux_sym_edit_comment_token1] = ACTIONS(733), + [anon_sym_CARET_LBRACK] = ACTIONS(735), + [anon_sym_LBRACK_CARET] = ACTIONS(737), + [sym_uri_autolink] = ACTIONS(709), + [sym_email_autolink] = ACTIONS(709), + [sym__whitespace_ge_2] = ACTIONS(739), + [aux_sym__whitespace_token1] = ACTIONS(741), + [sym__word_no_digit] = ACTIONS(743), + [sym__digits] = ACTIONS(743), + [anon_sym_DASH_DASH] = ACTIONS(745), + [anon_sym_DASH_DASH_DASH] = ACTIONS(743), + [anon_sym_DOT_DOT_DOT] = ACTIONS(743), + [sym__code_span_start] = ACTIONS(747), + [sym__emphasis_open_star] = ACTIONS(749), + [sym__emphasis_open_underscore] = ACTIONS(751), + [sym__strikeout_open] = ACTIONS(753), + [sym__latex_span_start] = ACTIONS(755), + [sym__single_quote_open] = ACTIONS(757), + [sym__double_quote_open] = ACTIONS(759), + [sym__superscript_open] = ACTIONS(761), + [sym__subscript_open] = ACTIONS(763), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(765), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(767), + [sym__cite_author_in_text] = ACTIONS(769), + [sym__cite_suppress_author] = ACTIONS(771), + [sym__shortcode_open_escaped] = ACTIONS(773), + [sym__shortcode_open] = ACTIONS(775), + [sym__unclosed_span] = ACTIONS(709), }, [STATE(201)] = { - [sym_backslash_escape] = STATE(274), - [sym_commonmark_attribute] = STATE(274), - [sym_code_span] = STATE(274), - [sym_latex_span] = STATE(274), - [sym_superscript] = STATE(274), - [sym_subscript] = STATE(274), - [sym_strikeout] = STATE(274), - [sym_quoted_span] = STATE(274), - [sym_inline_note] = STATE(274), - [sym_citation] = STATE(274), - [sym_shortcode_escaped] = STATE(274), - [sym_shortcode] = STATE(274), - [sym_note_reference] = STATE(274), - [sym__link_text] = STATE(351), - [sym__link_text_non_empty] = STATE(352), - [sym_inline_link] = STATE(70), - [sym_image] = STATE(274), - [sym__image_inline_link] = STATE(894), - [sym__image_description] = STATE(2008), - [sym__image_description_non_empty] = STATE(2008), - [sym_hard_line_break] = STATE(274), - [sym__whitespace] = STATE(882), - [sym__word] = STATE(882), - [sym__soft_line_break] = STATE(898), - [sym__inline_base] = STATE(70), - [sym__text_base] = STATE(274), - [sym__inline_element_no_underscore] = STATE(70), - [aux_sym__inline_no_underscore] = STATE(70), - [sym__emphasis_star] = STATE(711), - [sym__strong_emphasis_star] = STATE(70), - [sym__emphasis_underscore] = STATE(711), - [sym__strong_emphasis_underscore] = STATE(70), - [aux_sym__inline_base_repeat1] = STATE(274), - [sym__backslash_escape] = ACTIONS(1123), - [sym_entity_reference] = ACTIONS(1125), - [sym_numeric_character_reference] = ACTIONS(1125), - [anon_sym_LT] = ACTIONS(1127), - [anon_sym_GT] = ACTIONS(1129), - [anon_sym_BANG] = ACTIONS(1131), - [anon_sym_DQUOTE] = ACTIONS(1129), - [anon_sym_POUND] = ACTIONS(1129), - [anon_sym_DOLLAR] = ACTIONS(1129), - [anon_sym_PERCENT] = ACTIONS(1129), - [anon_sym_AMP] = ACTIONS(1127), - [anon_sym_SQUOTE] = ACTIONS(1129), - [anon_sym_STAR] = ACTIONS(1129), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_COMMA] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1127), - [anon_sym_DOT] = ACTIONS(1127), - [anon_sym_SLASH] = ACTIONS(1129), - [anon_sym_COLON] = ACTIONS(1129), - [anon_sym_SEMI] = ACTIONS(1129), - [anon_sym_EQ] = ACTIONS(1129), - [anon_sym_QMARK] = ACTIONS(1129), - [anon_sym_LBRACK] = ACTIONS(1133), - [anon_sym_BSLASH] = ACTIONS(1135), - [anon_sym_CARET] = ACTIONS(1127), - [anon_sym__] = ACTIONS(1129), - [anon_sym_BQUOTE] = ACTIONS(1129), - [anon_sym_LBRACE] = ACTIONS(1137), - [anon_sym_PIPE] = ACTIONS(1129), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1129), - [anon_sym_RPAREN] = ACTIONS(1129), - [sym__newline_token] = ACTIONS(1139), - [anon_sym_CARET_LBRACK] = ACTIONS(1141), - [anon_sym_LBRACK_CARET] = ACTIONS(1143), - [sym_uri_autolink] = ACTIONS(1125), - [sym_email_autolink] = ACTIONS(1125), - [sym__whitespace_ge_2] = ACTIONS(1145), - [aux_sym__whitespace_token1] = ACTIONS(1147), - [sym__word_no_digit] = ACTIONS(1149), - [sym__digits] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1151), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1149), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1149), - [sym__code_span_start] = ACTIONS(1153), - [sym__emphasis_open_star] = ACTIONS(1155), - [sym__emphasis_open_underscore] = ACTIONS(1157), - [sym__strikeout_open] = ACTIONS(1161), - [sym__latex_span_start] = ACTIONS(1163), - [sym__single_quote_open] = ACTIONS(1165), - [sym__double_quote_open] = ACTIONS(1167), - [sym__superscript_open] = ACTIONS(1169), - [sym__subscript_open] = ACTIONS(1171), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1173), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1175), - [sym__cite_author_in_text] = ACTIONS(1177), - [sym__cite_suppress_author] = ACTIONS(1179), - [sym__shortcode_open_escaped] = ACTIONS(1181), - [sym__shortcode_open] = ACTIONS(1183), - [sym__unclosed_span] = ACTIONS(1125), + [sym_backslash_escape] = STATE(367), + [sym_commonmark_attribute] = STATE(367), + [sym_code_span] = STATE(367), + [sym_latex_span] = STATE(367), + [sym_insert] = STATE(367), + [sym_delete] = STATE(367), + [sym_highlight] = STATE(367), + [sym_edit_comment] = STATE(367), + [sym_superscript] = STATE(367), + [sym_subscript] = STATE(367), + [sym_strikeout] = STATE(367), + [sym_quoted_span] = STATE(367), + [sym_inline_note] = STATE(367), + [sym_citation] = STATE(367), + [sym_shortcode_escaped] = STATE(367), + [sym_shortcode] = STATE(367), + [sym_note_reference] = STATE(367), + [sym__link_text] = STATE(435), + [sym__link_text_non_empty] = STATE(436), + [sym_inline_link] = STATE(55), + [sym_image] = STATE(367), + [sym__image_inline_link] = STATE(819), + [sym__image_description] = STATE(2328), + [sym__image_description_non_empty] = STATE(2328), + [sym_hard_line_break] = STATE(367), + [sym__whitespace] = STATE(816), + [sym__word] = STATE(816), + [sym__soft_line_break] = STATE(820), + [sym__inline_base] = STATE(55), + [sym__text_base] = STATE(367), + [sym__inline_element] = STATE(55), + [sym__emphasis_star] = STATE(1271), + [sym__strong_emphasis_star] = STATE(55), + [sym__emphasis_underscore] = STATE(1271), + [sym__strong_emphasis_underscore] = STATE(55), + [aux_sym_insert_repeat1] = STATE(55), + [aux_sym__inline_base_repeat1] = STATE(367), + [sym__backslash_escape] = ACTIONS(1413), + [sym_entity_reference] = ACTIONS(1415), + [sym_numeric_character_reference] = ACTIONS(1415), + [anon_sym_LT] = ACTIONS(1417), + [anon_sym_GT] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1419), + [anon_sym_POUND] = ACTIONS(1419), + [anon_sym_DOLLAR] = ACTIONS(1419), + [anon_sym_PERCENT] = ACTIONS(1419), + [anon_sym_AMP] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [anon_sym_STAR] = ACTIONS(1419), + [anon_sym_PLUS] = ACTIONS(1419), + [anon_sym_COMMA] = ACTIONS(1419), + [anon_sym_DASH] = ACTIONS(1417), + [anon_sym_DOT] = ACTIONS(1417), + [anon_sym_SLASH] = ACTIONS(1419), + [anon_sym_COLON] = ACTIONS(1419), + [anon_sym_SEMI] = ACTIONS(1419), + [anon_sym_EQ] = ACTIONS(1419), + [anon_sym_QMARK] = ACTIONS(1419), + [anon_sym_LBRACK] = ACTIONS(1423), + [anon_sym_BSLASH] = ACTIONS(1425), + [anon_sym_CARET] = ACTIONS(1417), + [anon_sym__] = ACTIONS(1419), + [anon_sym_BQUOTE] = ACTIONS(1419), + [anon_sym_LBRACE] = ACTIONS(1427), + [anon_sym_PIPE] = ACTIONS(1419), + [anon_sym_TILDE] = ACTIONS(1419), + [anon_sym_LPAREN] = ACTIONS(1419), + [anon_sym_RPAREN] = ACTIONS(1419), + [sym__newline_token] = ACTIONS(1429), + [aux_sym_insert_token1] = ACTIONS(1431), + [aux_sym_delete_token1] = ACTIONS(1433), + [aux_sym_highlight_token1] = ACTIONS(1435), + [aux_sym_edit_comment_token1] = ACTIONS(1437), + [anon_sym_CARET_LBRACK] = ACTIONS(1439), + [anon_sym_LBRACK_CARET] = ACTIONS(1441), + [sym_uri_autolink] = ACTIONS(1415), + [sym_email_autolink] = ACTIONS(1415), + [sym__whitespace_ge_2] = ACTIONS(1443), + [aux_sym__whitespace_token1] = ACTIONS(1445), + [sym__word_no_digit] = ACTIONS(1447), + [sym__digits] = ACTIONS(1447), + [anon_sym_DASH_DASH] = ACTIONS(1449), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1447), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1447), + [sym__code_span_start] = ACTIONS(1451), + [sym__emphasis_open_star] = ACTIONS(1453), + [sym__emphasis_open_underscore] = ACTIONS(1455), + [sym__strikeout_open] = ACTIONS(1457), + [sym__latex_span_start] = ACTIONS(1459), + [sym__single_quote_open] = ACTIONS(1461), + [sym__double_quote_open] = ACTIONS(1463), + [sym__superscript_open] = ACTIONS(1465), + [sym__subscript_open] = ACTIONS(1467), + [sym__subscript_close] = ACTIONS(2605), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1471), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1473), + [sym__cite_author_in_text] = ACTIONS(1475), + [sym__cite_suppress_author] = ACTIONS(1477), + [sym__shortcode_open_escaped] = ACTIONS(1479), + [sym__shortcode_open] = ACTIONS(1481), + [sym__unclosed_span] = ACTIONS(1415), }, [STATE(202)] = { - [sym_backslash_escape] = STATE(261), - [sym_commonmark_attribute] = STATE(261), - [sym_code_span] = STATE(261), - [sym_latex_span] = STATE(261), - [sym_superscript] = STATE(261), - [sym_subscript] = STATE(261), - [sym_strikeout] = STATE(261), - [sym_quoted_span] = STATE(261), - [sym_inline_note] = STATE(261), - [sym_citation] = STATE(261), - [sym_shortcode_escaped] = STATE(261), - [sym_shortcode] = STATE(261), - [sym_note_reference] = STATE(261), - [sym__link_text] = STATE(322), - [sym__link_text_non_empty] = STATE(323), - [sym_inline_link] = STATE(86), - [sym_image] = STATE(261), - [sym__image_inline_link] = STATE(595), - [sym__image_description] = STATE(1972), - [sym__image_description_non_empty] = STATE(1972), - [sym_hard_line_break] = STATE(261), - [sym__whitespace] = STATE(587), - [sym__word] = STATE(587), - [sym__soft_line_break] = STATE(597), - [sym__inline_base] = STATE(86), - [sym__text_base] = STATE(261), - [sym__inline_element_no_star] = STATE(86), - [aux_sym__inline_no_star] = STATE(86), - [sym__emphasis_star] = STATE(544), - [sym__strong_emphasis_star] = STATE(86), - [sym__emphasis_underscore] = STATE(544), - [sym__strong_emphasis_underscore] = STATE(86), - [aux_sym__inline_base_repeat1] = STATE(261), - [sym__backslash_escape] = ACTIONS(969), - [sym_entity_reference] = ACTIONS(971), - [sym_numeric_character_reference] = ACTIONS(971), - [anon_sym_LT] = ACTIONS(973), - [anon_sym_GT] = ACTIONS(975), - [anon_sym_BANG] = ACTIONS(977), - [anon_sym_DQUOTE] = ACTIONS(975), - [anon_sym_POUND] = ACTIONS(975), - [anon_sym_DOLLAR] = ACTIONS(975), - [anon_sym_PERCENT] = ACTIONS(975), - [anon_sym_AMP] = ACTIONS(973), - [anon_sym_SQUOTE] = ACTIONS(975), - [anon_sym_STAR] = ACTIONS(975), - [anon_sym_PLUS] = ACTIONS(975), - [anon_sym_COMMA] = ACTIONS(975), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_DOT] = ACTIONS(973), - [anon_sym_SLASH] = ACTIONS(975), - [anon_sym_COLON] = ACTIONS(975), - [anon_sym_SEMI] = ACTIONS(975), - [anon_sym_EQ] = ACTIONS(975), - [anon_sym_QMARK] = ACTIONS(975), - [anon_sym_LBRACK] = ACTIONS(979), - [anon_sym_BSLASH] = ACTIONS(981), - [anon_sym_CARET] = ACTIONS(973), - [anon_sym__] = ACTIONS(975), - [anon_sym_BQUOTE] = ACTIONS(975), - [anon_sym_LBRACE] = ACTIONS(983), - [anon_sym_PIPE] = ACTIONS(975), - [anon_sym_TILDE] = ACTIONS(975), - [anon_sym_LPAREN] = ACTIONS(975), - [anon_sym_RPAREN] = ACTIONS(975), - [sym__newline_token] = ACTIONS(985), - [anon_sym_CARET_LBRACK] = ACTIONS(987), - [anon_sym_LBRACK_CARET] = ACTIONS(989), - [sym_uri_autolink] = ACTIONS(971), - [sym_email_autolink] = ACTIONS(971), - [sym__whitespace_ge_2] = ACTIONS(991), - [aux_sym__whitespace_token1] = ACTIONS(993), - [sym__word_no_digit] = ACTIONS(995), - [sym__digits] = ACTIONS(995), - [anon_sym_DASH_DASH] = ACTIONS(997), - [anon_sym_DASH_DASH_DASH] = ACTIONS(995), - [anon_sym_DOT_DOT_DOT] = ACTIONS(995), - [sym__code_span_start] = ACTIONS(999), - [sym__emphasis_open_star] = ACTIONS(1001), - [sym__emphasis_open_underscore] = ACTIONS(1003), - [sym__strikeout_open] = ACTIONS(1007), - [sym__latex_span_start] = ACTIONS(1009), - [sym__single_quote_open] = ACTIONS(1011), - [sym__double_quote_open] = ACTIONS(1013), - [sym__superscript_open] = ACTIONS(1015), - [sym__subscript_open] = ACTIONS(1017), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1019), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1021), - [sym__cite_author_in_text] = ACTIONS(1023), - [sym__cite_suppress_author] = ACTIONS(1025), - [sym__shortcode_open_escaped] = ACTIONS(1027), - [sym__shortcode_open] = ACTIONS(1029), - [sym__unclosed_span] = ACTIONS(971), + [sym_backslash_escape] = STATE(373), + [sym_commonmark_attribute] = STATE(373), + [sym_code_span] = STATE(373), + [sym_latex_span] = STATE(373), + [sym_insert] = STATE(373), + [sym_delete] = STATE(373), + [sym_highlight] = STATE(373), + [sym_edit_comment] = STATE(373), + [sym_superscript] = STATE(373), + [sym_subscript] = STATE(373), + [sym_strikeout] = STATE(373), + [sym_quoted_span] = STATE(373), + [sym_inline_note] = STATE(373), + [sym_citation] = STATE(373), + [sym_shortcode_escaped] = STATE(373), + [sym_shortcode] = STATE(373), + [sym_note_reference] = STATE(373), + [sym__link_text] = STATE(522), + [sym__link_text_non_empty] = STATE(523), + [sym_inline_link] = STATE(36), + [sym_image] = STATE(373), + [sym__image_inline_link] = STATE(1265), + [sym__image_description] = STATE(2331), + [sym__image_description_non_empty] = STATE(2331), + [sym_hard_line_break] = STATE(373), + [sym__whitespace] = STATE(1262), + [sym__word] = STATE(1262), + [sym__soft_line_break] = STATE(1267), + [sym__inline_base] = STATE(36), + [sym__text_base] = STATE(373), + [sym__inline_element_no_star] = STATE(36), + [aux_sym__inline_no_star] = STATE(36), + [sym__emphasis_star] = STATE(1147), + [sym__strong_emphasis_star] = STATE(36), + [sym__emphasis_underscore] = STATE(1147), + [sym__strong_emphasis_underscore] = STATE(36), + [aux_sym__inline_base_repeat1] = STATE(373), + [sym__backslash_escape] = ACTIONS(885), + [sym_entity_reference] = ACTIONS(887), + [sym_numeric_character_reference] = ACTIONS(887), + [anon_sym_LT] = ACTIONS(889), + [anon_sym_GT] = ACTIONS(891), + [anon_sym_BANG] = ACTIONS(893), + [anon_sym_DQUOTE] = ACTIONS(891), + [anon_sym_POUND] = ACTIONS(891), + [anon_sym_DOLLAR] = ACTIONS(891), + [anon_sym_PERCENT] = ACTIONS(891), + [anon_sym_AMP] = ACTIONS(889), + [anon_sym_SQUOTE] = ACTIONS(891), + [anon_sym_STAR] = ACTIONS(891), + [anon_sym_PLUS] = ACTIONS(891), + [anon_sym_COMMA] = ACTIONS(891), + [anon_sym_DASH] = ACTIONS(889), + [anon_sym_DOT] = ACTIONS(889), + [anon_sym_SLASH] = ACTIONS(891), + [anon_sym_COLON] = ACTIONS(891), + [anon_sym_SEMI] = ACTIONS(891), + [anon_sym_EQ] = ACTIONS(891), + [anon_sym_QMARK] = ACTIONS(891), + [anon_sym_LBRACK] = ACTIONS(895), + [anon_sym_BSLASH] = ACTIONS(897), + [anon_sym_CARET] = ACTIONS(889), + [anon_sym__] = ACTIONS(891), + [anon_sym_BQUOTE] = ACTIONS(891), + [anon_sym_LBRACE] = ACTIONS(899), + [anon_sym_PIPE] = ACTIONS(891), + [anon_sym_TILDE] = ACTIONS(891), + [anon_sym_LPAREN] = ACTIONS(891), + [anon_sym_RPAREN] = ACTIONS(891), + [sym__newline_token] = ACTIONS(901), + [aux_sym_insert_token1] = ACTIONS(903), + [aux_sym_delete_token1] = ACTIONS(905), + [aux_sym_highlight_token1] = ACTIONS(907), + [aux_sym_edit_comment_token1] = ACTIONS(909), + [anon_sym_CARET_LBRACK] = ACTIONS(911), + [anon_sym_LBRACK_CARET] = ACTIONS(913), + [sym_uri_autolink] = ACTIONS(887), + [sym_email_autolink] = ACTIONS(887), + [sym__whitespace_ge_2] = ACTIONS(915), + [aux_sym__whitespace_token1] = ACTIONS(917), + [sym__word_no_digit] = ACTIONS(919), + [sym__digits] = ACTIONS(919), + [anon_sym_DASH_DASH] = ACTIONS(921), + [anon_sym_DASH_DASH_DASH] = ACTIONS(919), + [anon_sym_DOT_DOT_DOT] = ACTIONS(919), + [sym__code_span_start] = ACTIONS(923), + [sym__emphasis_open_star] = ACTIONS(925), + [sym__emphasis_open_underscore] = ACTIONS(927), + [sym__emphasis_close_star] = ACTIONS(2607), + [sym__strikeout_open] = ACTIONS(931), + [sym__latex_span_start] = ACTIONS(933), + [sym__single_quote_open] = ACTIONS(935), + [sym__double_quote_open] = ACTIONS(937), + [sym__superscript_open] = ACTIONS(939), + [sym__subscript_open] = ACTIONS(941), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(943), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(945), + [sym__cite_author_in_text] = ACTIONS(947), + [sym__cite_suppress_author] = ACTIONS(949), + [sym__shortcode_open_escaped] = ACTIONS(951), + [sym__shortcode_open] = ACTIONS(953), + [sym__unclosed_span] = ACTIONS(887), }, [STATE(203)] = { - [sym_backslash_escape] = STATE(274), - [sym_commonmark_attribute] = STATE(274), - [sym_code_span] = STATE(274), - [sym_latex_span] = STATE(274), - [sym_superscript] = STATE(274), - [sym_subscript] = STATE(274), - [sym_strikeout] = STATE(274), - [sym_quoted_span] = STATE(274), - [sym_inline_note] = STATE(274), - [sym_citation] = STATE(274), - [sym_shortcode_escaped] = STATE(274), - [sym_shortcode] = STATE(274), - [sym_note_reference] = STATE(274), - [sym__link_text] = STATE(351), - [sym__link_text_non_empty] = STATE(352), - [sym_inline_link] = STATE(87), - [sym_image] = STATE(274), - [sym__image_inline_link] = STATE(894), - [sym__image_description] = STATE(2008), - [sym__image_description_non_empty] = STATE(2008), - [sym_hard_line_break] = STATE(274), - [sym__whitespace] = STATE(882), - [sym__word] = STATE(882), - [sym__soft_line_break] = STATE(898), - [sym__inline_base] = STATE(87), - [sym__text_base] = STATE(274), - [sym__inline_element_no_underscore] = STATE(87), - [aux_sym__inline_no_underscore] = STATE(87), - [sym__emphasis_star] = STATE(711), - [sym__strong_emphasis_star] = STATE(87), - [sym__emphasis_underscore] = STATE(711), - [sym__strong_emphasis_underscore] = STATE(87), - [aux_sym__inline_base_repeat1] = STATE(274), - [sym__backslash_escape] = ACTIONS(1123), - [sym_entity_reference] = ACTIONS(1125), - [sym_numeric_character_reference] = ACTIONS(1125), - [anon_sym_LT] = ACTIONS(1127), - [anon_sym_GT] = ACTIONS(1129), - [anon_sym_BANG] = ACTIONS(1131), - [anon_sym_DQUOTE] = ACTIONS(1129), - [anon_sym_POUND] = ACTIONS(1129), - [anon_sym_DOLLAR] = ACTIONS(1129), - [anon_sym_PERCENT] = ACTIONS(1129), - [anon_sym_AMP] = ACTIONS(1127), - [anon_sym_SQUOTE] = ACTIONS(1129), - [anon_sym_STAR] = ACTIONS(1129), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_COMMA] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1127), - [anon_sym_DOT] = ACTIONS(1127), - [anon_sym_SLASH] = ACTIONS(1129), - [anon_sym_COLON] = ACTIONS(1129), - [anon_sym_SEMI] = ACTIONS(1129), - [anon_sym_EQ] = ACTIONS(1129), - [anon_sym_QMARK] = ACTIONS(1129), - [anon_sym_LBRACK] = ACTIONS(1133), - [anon_sym_BSLASH] = ACTIONS(1135), - [anon_sym_CARET] = ACTIONS(1127), - [anon_sym__] = ACTIONS(1129), - [anon_sym_BQUOTE] = ACTIONS(1129), - [anon_sym_LBRACE] = ACTIONS(1137), - [anon_sym_PIPE] = ACTIONS(1129), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1129), - [anon_sym_RPAREN] = ACTIONS(1129), - [sym__newline_token] = ACTIONS(1139), - [anon_sym_CARET_LBRACK] = ACTIONS(1141), - [anon_sym_LBRACK_CARET] = ACTIONS(1143), - [sym_uri_autolink] = ACTIONS(1125), - [sym_email_autolink] = ACTIONS(1125), - [sym__whitespace_ge_2] = ACTIONS(1145), - [aux_sym__whitespace_token1] = ACTIONS(1147), - [sym__word_no_digit] = ACTIONS(1149), - [sym__digits] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1151), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1149), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1149), - [sym__code_span_start] = ACTIONS(1153), - [sym__emphasis_open_star] = ACTIONS(1155), - [sym__emphasis_open_underscore] = ACTIONS(1157), - [sym__strikeout_open] = ACTIONS(1161), - [sym__latex_span_start] = ACTIONS(1163), - [sym__single_quote_open] = ACTIONS(1165), - [sym__double_quote_open] = ACTIONS(1167), - [sym__superscript_open] = ACTIONS(1169), - [sym__subscript_open] = ACTIONS(1171), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1173), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1175), - [sym__cite_author_in_text] = ACTIONS(1177), - [sym__cite_suppress_author] = ACTIONS(1179), - [sym__shortcode_open_escaped] = ACTIONS(1181), - [sym__shortcode_open] = ACTIONS(1183), - [sym__unclosed_span] = ACTIONS(1125), + [sym_backslash_escape] = STATE(379), + [sym_commonmark_attribute] = STATE(379), + [sym_code_span] = STATE(379), + [sym_latex_span] = STATE(379), + [sym_insert] = STATE(379), + [sym_delete] = STATE(379), + [sym_highlight] = STATE(379), + [sym_edit_comment] = STATE(379), + [sym_superscript] = STATE(379), + [sym_subscript] = STATE(379), + [sym_strikeout] = STATE(379), + [sym_quoted_span] = STATE(379), + [sym_inline_note] = STATE(379), + [sym_citation] = STATE(379), + [sym_shortcode_escaped] = STATE(379), + [sym_shortcode] = STATE(379), + [sym_note_reference] = STATE(379), + [sym__link_text] = STATE(545), + [sym__link_text_non_empty] = STATE(546), + [sym_inline_link] = STATE(38), + [sym_image] = STATE(379), + [sym__image_inline_link] = STATE(1390), + [sym__image_description] = STATE(2363), + [sym__image_description_non_empty] = STATE(2363), + [sym_hard_line_break] = STATE(379), + [sym__whitespace] = STATE(1385), + [sym__word] = STATE(1385), + [sym__soft_line_break] = STATE(1391), + [sym__inline_base] = STATE(38), + [sym__text_base] = STATE(379), + [sym__inline_element_no_underscore] = STATE(38), + [aux_sym__inline_no_underscore] = STATE(38), + [sym__emphasis_star] = STATE(1168), + [sym__strong_emphasis_star] = STATE(38), + [sym__emphasis_underscore] = STATE(1168), + [sym__strong_emphasis_underscore] = STATE(38), + [aux_sym__inline_base_repeat1] = STATE(379), + [sym__backslash_escape] = ACTIONS(1059), + [sym_entity_reference] = ACTIONS(1061), + [sym_numeric_character_reference] = ACTIONS(1061), + [anon_sym_LT] = ACTIONS(1063), + [anon_sym_GT] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1067), + [anon_sym_DQUOTE] = ACTIONS(1065), + [anon_sym_POUND] = ACTIONS(1065), + [anon_sym_DOLLAR] = ACTIONS(1065), + [anon_sym_PERCENT] = ACTIONS(1065), + [anon_sym_AMP] = ACTIONS(1063), + [anon_sym_SQUOTE] = ACTIONS(1065), + [anon_sym_STAR] = ACTIONS(1065), + [anon_sym_PLUS] = ACTIONS(1065), + [anon_sym_COMMA] = ACTIONS(1065), + [anon_sym_DASH] = ACTIONS(1063), + [anon_sym_DOT] = ACTIONS(1063), + [anon_sym_SLASH] = ACTIONS(1065), + [anon_sym_COLON] = ACTIONS(1065), + [anon_sym_SEMI] = ACTIONS(1065), + [anon_sym_EQ] = ACTIONS(1065), + [anon_sym_QMARK] = ACTIONS(1065), + [anon_sym_LBRACK] = ACTIONS(1069), + [anon_sym_BSLASH] = ACTIONS(1071), + [anon_sym_CARET] = ACTIONS(1063), + [anon_sym__] = ACTIONS(1065), + [anon_sym_BQUOTE] = ACTIONS(1065), + [anon_sym_LBRACE] = ACTIONS(1073), + [anon_sym_PIPE] = ACTIONS(1065), + [anon_sym_TILDE] = ACTIONS(1065), + [anon_sym_LPAREN] = ACTIONS(1065), + [anon_sym_RPAREN] = ACTIONS(1065), + [sym__newline_token] = ACTIONS(1075), + [aux_sym_insert_token1] = ACTIONS(1077), + [aux_sym_delete_token1] = ACTIONS(1079), + [aux_sym_highlight_token1] = ACTIONS(1081), + [aux_sym_edit_comment_token1] = ACTIONS(1083), + [anon_sym_CARET_LBRACK] = ACTIONS(1085), + [anon_sym_LBRACK_CARET] = ACTIONS(1087), + [sym_uri_autolink] = ACTIONS(1061), + [sym_email_autolink] = ACTIONS(1061), + [sym__whitespace_ge_2] = ACTIONS(1089), + [aux_sym__whitespace_token1] = ACTIONS(1091), + [sym__word_no_digit] = ACTIONS(1093), + [sym__digits] = ACTIONS(1093), + [anon_sym_DASH_DASH] = ACTIONS(1095), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1093), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1093), + [sym__code_span_start] = ACTIONS(1097), + [sym__emphasis_open_star] = ACTIONS(1099), + [sym__emphasis_open_underscore] = ACTIONS(1101), + [sym__emphasis_close_underscore] = ACTIONS(2609), + [sym__strikeout_open] = ACTIONS(1105), + [sym__latex_span_start] = ACTIONS(1107), + [sym__single_quote_open] = ACTIONS(1109), + [sym__double_quote_open] = ACTIONS(1111), + [sym__superscript_open] = ACTIONS(1113), + [sym__subscript_open] = ACTIONS(1115), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1117), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1119), + [sym__cite_author_in_text] = ACTIONS(1121), + [sym__cite_suppress_author] = ACTIONS(1123), + [sym__shortcode_open_escaped] = ACTIONS(1125), + [sym__shortcode_open] = ACTIONS(1127), + [sym__unclosed_span] = ACTIONS(1061), }, [STATE(204)] = { - [sym_backslash_escape] = STATE(261), - [sym_commonmark_attribute] = STATE(261), - [sym_code_span] = STATE(261), - [sym_latex_span] = STATE(261), - [sym_superscript] = STATE(261), - [sym_subscript] = STATE(261), - [sym_strikeout] = STATE(261), - [sym_quoted_span] = STATE(261), - [sym_inline_note] = STATE(261), - [sym_citation] = STATE(261), - [sym_shortcode_escaped] = STATE(261), - [sym_shortcode] = STATE(261), - [sym_note_reference] = STATE(261), - [sym__link_text] = STATE(322), - [sym__link_text_non_empty] = STATE(323), - [sym_inline_link] = STATE(104), - [sym_image] = STATE(261), - [sym__image_inline_link] = STATE(595), - [sym__image_description] = STATE(1972), - [sym__image_description_non_empty] = STATE(1972), - [sym_hard_line_break] = STATE(261), - [sym__whitespace] = STATE(587), - [sym__word] = STATE(587), - [sym__soft_line_break] = STATE(597), - [sym__inline_base] = STATE(104), - [sym__text_base] = STATE(261), - [sym__inline_element_no_star] = STATE(104), - [aux_sym__inline_no_star] = STATE(104), - [sym__emphasis_star] = STATE(544), - [sym__strong_emphasis_star] = STATE(104), - [sym__emphasis_underscore] = STATE(544), - [sym__strong_emphasis_underscore] = STATE(104), - [aux_sym__inline_base_repeat1] = STATE(261), - [sym__backslash_escape] = ACTIONS(969), - [sym_entity_reference] = ACTIONS(971), - [sym_numeric_character_reference] = ACTIONS(971), - [anon_sym_LT] = ACTIONS(973), - [anon_sym_GT] = ACTIONS(975), - [anon_sym_BANG] = ACTIONS(977), - [anon_sym_DQUOTE] = ACTIONS(975), - [anon_sym_POUND] = ACTIONS(975), - [anon_sym_DOLLAR] = ACTIONS(975), - [anon_sym_PERCENT] = ACTIONS(975), - [anon_sym_AMP] = ACTIONS(973), - [anon_sym_SQUOTE] = ACTIONS(975), - [anon_sym_STAR] = ACTIONS(975), - [anon_sym_PLUS] = ACTIONS(975), - [anon_sym_COMMA] = ACTIONS(975), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_DOT] = ACTIONS(973), - [anon_sym_SLASH] = ACTIONS(975), - [anon_sym_COLON] = ACTIONS(975), - [anon_sym_SEMI] = ACTIONS(975), - [anon_sym_EQ] = ACTIONS(975), - [anon_sym_QMARK] = ACTIONS(975), - [anon_sym_LBRACK] = ACTIONS(979), - [anon_sym_BSLASH] = ACTIONS(981), - [anon_sym_CARET] = ACTIONS(973), - [anon_sym__] = ACTIONS(975), - [anon_sym_BQUOTE] = ACTIONS(975), - [anon_sym_LBRACE] = ACTIONS(983), - [anon_sym_PIPE] = ACTIONS(975), - [anon_sym_TILDE] = ACTIONS(975), - [anon_sym_LPAREN] = ACTIONS(975), - [anon_sym_RPAREN] = ACTIONS(975), - [sym__newline_token] = ACTIONS(985), - [anon_sym_CARET_LBRACK] = ACTIONS(987), - [anon_sym_LBRACK_CARET] = ACTIONS(989), - [sym_uri_autolink] = ACTIONS(971), - [sym_email_autolink] = ACTIONS(971), - [sym__whitespace_ge_2] = ACTIONS(991), - [aux_sym__whitespace_token1] = ACTIONS(993), - [sym__word_no_digit] = ACTIONS(995), - [sym__digits] = ACTIONS(995), - [anon_sym_DASH_DASH] = ACTIONS(997), - [anon_sym_DASH_DASH_DASH] = ACTIONS(995), - [anon_sym_DOT_DOT_DOT] = ACTIONS(995), - [sym__code_span_start] = ACTIONS(999), - [sym__emphasis_open_star] = ACTIONS(1001), - [sym__emphasis_open_underscore] = ACTIONS(1003), - [sym__strikeout_open] = ACTIONS(1007), - [sym__latex_span_start] = ACTIONS(1009), - [sym__single_quote_open] = ACTIONS(1011), - [sym__double_quote_open] = ACTIONS(1013), - [sym__superscript_open] = ACTIONS(1015), - [sym__subscript_open] = ACTIONS(1017), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1019), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1021), - [sym__cite_author_in_text] = ACTIONS(1023), - [sym__cite_suppress_author] = ACTIONS(1025), - [sym__shortcode_open_escaped] = ACTIONS(1027), - [sym__shortcode_open] = ACTIONS(1029), - [sym__unclosed_span] = ACTIONS(971), + [sym_backslash_escape] = STATE(366), + [sym_commonmark_attribute] = STATE(366), + [sym_code_span] = STATE(366), + [sym_latex_span] = STATE(366), + [sym_insert] = STATE(366), + [sym_delete] = STATE(366), + [sym_highlight] = STATE(366), + [sym_edit_comment] = STATE(366), + [sym_superscript] = STATE(366), + [sym_subscript] = STATE(366), + [sym_strikeout] = STATE(366), + [sym_quoted_span] = STATE(366), + [sym_inline_note] = STATE(366), + [sym_citation] = STATE(366), + [sym_shortcode_escaped] = STATE(366), + [sym_shortcode] = STATE(366), + [sym_note_reference] = STATE(366), + [sym__link_text] = STATE(490), + [sym__link_text_non_empty] = STATE(491), + [sym_inline_link] = STATE(39), + [sym_image] = STATE(366), + [sym__image_inline_link] = STATE(1244), + [sym__image_description] = STATE(2280), + [sym__image_description_non_empty] = STATE(2280), + [sym_hard_line_break] = STATE(366), + [sym__whitespace] = STATE(1218), + [sym__word] = STATE(1218), + [sym__soft_line_break] = STATE(1245), + [sym__inline_base] = STATE(39), + [sym__text_base] = STATE(366), + [sym__inline_element] = STATE(39), + [sym__emphasis_star] = STATE(1270), + [sym__strong_emphasis_star] = STATE(39), + [sym__emphasis_underscore] = STATE(1270), + [sym__strong_emphasis_underscore] = STATE(39), + [aux_sym_insert_repeat1] = STATE(39), + [aux_sym__inline_base_repeat1] = STATE(366), + [sym__backslash_escape] = ACTIONS(2005), + [sym_entity_reference] = ACTIONS(2007), + [sym_numeric_character_reference] = ACTIONS(2007), + [anon_sym_LT] = ACTIONS(2009), + [anon_sym_GT] = ACTIONS(2011), + [anon_sym_BANG] = ACTIONS(2013), + [anon_sym_DQUOTE] = ACTIONS(2011), + [anon_sym_POUND] = ACTIONS(2011), + [anon_sym_DOLLAR] = ACTIONS(2011), + [anon_sym_PERCENT] = ACTIONS(2011), + [anon_sym_AMP] = ACTIONS(2009), + [anon_sym_SQUOTE] = ACTIONS(2011), + [anon_sym_STAR] = ACTIONS(2011), + [anon_sym_PLUS] = ACTIONS(2011), + [anon_sym_COMMA] = ACTIONS(2011), + [anon_sym_DASH] = ACTIONS(2009), + [anon_sym_DOT] = ACTIONS(2009), + [anon_sym_SLASH] = ACTIONS(2011), + [anon_sym_COLON] = ACTIONS(2011), + [anon_sym_SEMI] = ACTIONS(2011), + [anon_sym_EQ] = ACTIONS(2011), + [anon_sym_QMARK] = ACTIONS(2011), + [anon_sym_LBRACK] = ACTIONS(2015), + [anon_sym_BSLASH] = ACTIONS(2017), + [anon_sym_CARET] = ACTIONS(2009), + [anon_sym__] = ACTIONS(2011), + [anon_sym_BQUOTE] = ACTIONS(2011), + [anon_sym_LBRACE] = ACTIONS(2019), + [anon_sym_PIPE] = ACTIONS(2011), + [anon_sym_TILDE] = ACTIONS(2011), + [anon_sym_LPAREN] = ACTIONS(2011), + [anon_sym_RPAREN] = ACTIONS(2011), + [sym__newline_token] = ACTIONS(2021), + [aux_sym_insert_token1] = ACTIONS(2023), + [aux_sym_delete_token1] = ACTIONS(2025), + [aux_sym_highlight_token1] = ACTIONS(2027), + [aux_sym_edit_comment_token1] = ACTIONS(2029), + [anon_sym_CARET_LBRACK] = ACTIONS(2031), + [anon_sym_LBRACK_CARET] = ACTIONS(2033), + [sym_uri_autolink] = ACTIONS(2007), + [sym_email_autolink] = ACTIONS(2007), + [sym__whitespace_ge_2] = ACTIONS(2035), + [aux_sym__whitespace_token1] = ACTIONS(2037), + [sym__word_no_digit] = ACTIONS(2039), + [sym__digits] = ACTIONS(2039), + [anon_sym_DASH_DASH] = ACTIONS(2041), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2039), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2039), + [sym__code_span_start] = ACTIONS(2043), + [sym__emphasis_open_star] = ACTIONS(2045), + [sym__emphasis_open_underscore] = ACTIONS(2047), + [sym__strikeout_open] = ACTIONS(2049), + [sym__strikeout_close] = ACTIONS(2611), + [sym__latex_span_start] = ACTIONS(2053), + [sym__single_quote_open] = ACTIONS(2055), + [sym__double_quote_open] = ACTIONS(2057), + [sym__superscript_open] = ACTIONS(2059), + [sym__subscript_open] = ACTIONS(2061), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2063), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2065), + [sym__cite_author_in_text] = ACTIONS(2067), + [sym__cite_suppress_author] = ACTIONS(2069), + [sym__shortcode_open_escaped] = ACTIONS(2071), + [sym__shortcode_open] = ACTIONS(2073), + [sym__unclosed_span] = ACTIONS(2007), }, [STATE(205)] = { - [sym_backslash_escape] = STATE(274), - [sym_commonmark_attribute] = STATE(274), - [sym_code_span] = STATE(274), - [sym_latex_span] = STATE(274), - [sym_superscript] = STATE(274), - [sym_subscript] = STATE(274), - [sym_strikeout] = STATE(274), - [sym_quoted_span] = STATE(274), - [sym_inline_note] = STATE(274), - [sym_citation] = STATE(274), - [sym_shortcode_escaped] = STATE(274), - [sym_shortcode] = STATE(274), - [sym_note_reference] = STATE(274), - [sym__link_text] = STATE(351), - [sym__link_text_non_empty] = STATE(352), - [sym_inline_link] = STATE(105), - [sym_image] = STATE(274), - [sym__image_inline_link] = STATE(894), - [sym__image_description] = STATE(2008), - [sym__image_description_non_empty] = STATE(2008), - [sym_hard_line_break] = STATE(274), - [sym__whitespace] = STATE(882), - [sym__word] = STATE(882), - [sym__soft_line_break] = STATE(898), - [sym__inline_base] = STATE(105), - [sym__text_base] = STATE(274), - [sym__inline_element_no_underscore] = STATE(105), - [aux_sym__inline_no_underscore] = STATE(105), - [sym__emphasis_star] = STATE(711), - [sym__strong_emphasis_star] = STATE(105), - [sym__emphasis_underscore] = STATE(711), - [sym__strong_emphasis_underscore] = STATE(105), - [aux_sym__inline_base_repeat1] = STATE(274), - [sym__backslash_escape] = ACTIONS(1123), - [sym_entity_reference] = ACTIONS(1125), - [sym_numeric_character_reference] = ACTIONS(1125), - [anon_sym_LT] = ACTIONS(1127), - [anon_sym_GT] = ACTIONS(1129), - [anon_sym_BANG] = ACTIONS(1131), - [anon_sym_DQUOTE] = ACTIONS(1129), - [anon_sym_POUND] = ACTIONS(1129), - [anon_sym_DOLLAR] = ACTIONS(1129), - [anon_sym_PERCENT] = ACTIONS(1129), - [anon_sym_AMP] = ACTIONS(1127), - [anon_sym_SQUOTE] = ACTIONS(1129), - [anon_sym_STAR] = ACTIONS(1129), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_COMMA] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1127), - [anon_sym_DOT] = ACTIONS(1127), - [anon_sym_SLASH] = ACTIONS(1129), - [anon_sym_COLON] = ACTIONS(1129), - [anon_sym_SEMI] = ACTIONS(1129), - [anon_sym_EQ] = ACTIONS(1129), - [anon_sym_QMARK] = ACTIONS(1129), - [anon_sym_LBRACK] = ACTIONS(1133), - [anon_sym_BSLASH] = ACTIONS(1135), - [anon_sym_CARET] = ACTIONS(1127), - [anon_sym__] = ACTIONS(1129), - [anon_sym_BQUOTE] = ACTIONS(1129), - [anon_sym_LBRACE] = ACTIONS(1137), - [anon_sym_PIPE] = ACTIONS(1129), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1129), - [anon_sym_RPAREN] = ACTIONS(1129), - [sym__newline_token] = ACTIONS(1139), - [anon_sym_CARET_LBRACK] = ACTIONS(1141), - [anon_sym_LBRACK_CARET] = ACTIONS(1143), - [sym_uri_autolink] = ACTIONS(1125), - [sym_email_autolink] = ACTIONS(1125), - [sym__whitespace_ge_2] = ACTIONS(1145), - [aux_sym__whitespace_token1] = ACTIONS(1147), - [sym__word_no_digit] = ACTIONS(1149), - [sym__digits] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1151), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1149), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1149), - [sym__code_span_start] = ACTIONS(1153), - [sym__emphasis_open_star] = ACTIONS(1155), - [sym__emphasis_open_underscore] = ACTIONS(1157), - [sym__strikeout_open] = ACTIONS(1161), - [sym__latex_span_start] = ACTIONS(1163), - [sym__single_quote_open] = ACTIONS(1165), - [sym__double_quote_open] = ACTIONS(1167), - [sym__superscript_open] = ACTIONS(1169), - [sym__subscript_open] = ACTIONS(1171), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1173), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1175), - [sym__cite_author_in_text] = ACTIONS(1177), - [sym__cite_suppress_author] = ACTIONS(1179), - [sym__shortcode_open_escaped] = ACTIONS(1181), - [sym__shortcode_open] = ACTIONS(1183), - [sym__unclosed_span] = ACTIONS(1125), + [sym_backslash_escape] = STATE(375), + [sym_commonmark_attribute] = STATE(375), + [sym_code_span] = STATE(375), + [sym_latex_span] = STATE(375), + [sym_insert] = STATE(375), + [sym_delete] = STATE(375), + [sym_highlight] = STATE(375), + [sym_edit_comment] = STATE(375), + [sym_superscript] = STATE(375), + [sym_subscript] = STATE(375), + [sym_strikeout] = STATE(375), + [sym_quoted_span] = STATE(375), + [sym_inline_note] = STATE(375), + [sym_citation] = STATE(375), + [sym_shortcode_escaped] = STATE(375), + [sym_shortcode] = STATE(375), + [sym_note_reference] = STATE(375), + [sym__link_text] = STATE(525), + [sym__link_text_non_empty] = STATE(527), + [sym_inline_link] = STATE(47), + [sym_image] = STATE(375), + [sym__image_inline_link] = STATE(972), + [sym__image_description] = STATE(2286), + [sym__image_description_non_empty] = STATE(2286), + [sym_hard_line_break] = STATE(375), + [sym__whitespace] = STATE(949), + [sym__word] = STATE(949), + [sym__soft_line_break] = STATE(973), + [sym__inline_base] = STATE(47), + [sym__text_base] = STATE(375), + [sym__inline_element] = STATE(47), + [sym__emphasis_star] = STATE(1392), + [sym__strong_emphasis_star] = STATE(47), + [sym__emphasis_underscore] = STATE(1392), + [sym__strong_emphasis_underscore] = STATE(47), + [aux_sym_insert_repeat1] = STATE(47), + [aux_sym__inline_base_repeat1] = STATE(375), + [sym__backslash_escape] = ACTIONS(2179), + [sym_entity_reference] = ACTIONS(2181), + [sym_numeric_character_reference] = ACTIONS(2181), + [anon_sym_LT] = ACTIONS(2183), + [anon_sym_GT] = ACTIONS(2185), + [anon_sym_BANG] = ACTIONS(2187), + [anon_sym_DQUOTE] = ACTIONS(2185), + [anon_sym_POUND] = ACTIONS(2185), + [anon_sym_DOLLAR] = ACTIONS(2185), + [anon_sym_PERCENT] = ACTIONS(2185), + [anon_sym_AMP] = ACTIONS(2183), + [anon_sym_SQUOTE] = ACTIONS(2185), + [anon_sym_STAR] = ACTIONS(2185), + [anon_sym_PLUS] = ACTIONS(2185), + [anon_sym_COMMA] = ACTIONS(2185), + [anon_sym_DASH] = ACTIONS(2183), + [anon_sym_DOT] = ACTIONS(2183), + [anon_sym_SLASH] = ACTIONS(2185), + [anon_sym_COLON] = ACTIONS(2185), + [anon_sym_SEMI] = ACTIONS(2185), + [anon_sym_EQ] = ACTIONS(2185), + [anon_sym_QMARK] = ACTIONS(2185), + [anon_sym_LBRACK] = ACTIONS(2189), + [anon_sym_BSLASH] = ACTIONS(2191), + [anon_sym_CARET] = ACTIONS(2183), + [anon_sym__] = ACTIONS(2185), + [anon_sym_BQUOTE] = ACTIONS(2185), + [anon_sym_LBRACE] = ACTIONS(2193), + [anon_sym_PIPE] = ACTIONS(2185), + [anon_sym_TILDE] = ACTIONS(2185), + [anon_sym_LPAREN] = ACTIONS(2185), + [anon_sym_RPAREN] = ACTIONS(2185), + [sym__newline_token] = ACTIONS(2195), + [aux_sym_insert_token1] = ACTIONS(2197), + [aux_sym_delete_token1] = ACTIONS(2199), + [aux_sym_highlight_token1] = ACTIONS(2201), + [aux_sym_edit_comment_token1] = ACTIONS(2203), + [anon_sym_CARET_LBRACK] = ACTIONS(2205), + [anon_sym_LBRACK_CARET] = ACTIONS(2207), + [sym_uri_autolink] = ACTIONS(2181), + [sym_email_autolink] = ACTIONS(2181), + [sym__whitespace_ge_2] = ACTIONS(2209), + [aux_sym__whitespace_token1] = ACTIONS(2211), + [sym__word_no_digit] = ACTIONS(2213), + [sym__digits] = ACTIONS(2213), + [anon_sym_DASH_DASH] = ACTIONS(2215), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2213), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2213), + [sym__code_span_start] = ACTIONS(2217), + [sym__emphasis_open_star] = ACTIONS(2219), + [sym__emphasis_open_underscore] = ACTIONS(2221), + [sym__strikeout_open] = ACTIONS(2223), + [sym__latex_span_start] = ACTIONS(2225), + [sym__single_quote_open] = ACTIONS(2227), + [sym__single_quote_close] = ACTIONS(2613), + [sym__double_quote_open] = ACTIONS(2229), + [sym__superscript_open] = ACTIONS(2231), + [sym__subscript_open] = ACTIONS(2233), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2235), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2237), + [sym__cite_author_in_text] = ACTIONS(2239), + [sym__cite_suppress_author] = ACTIONS(2241), + [sym__shortcode_open_escaped] = ACTIONS(2243), + [sym__shortcode_open] = ACTIONS(2245), + [sym__unclosed_span] = ACTIONS(2181), }, [STATE(206)] = { - [sym_backslash_escape] = STATE(261), - [sym_commonmark_attribute] = STATE(261), - [sym_code_span] = STATE(261), - [sym_latex_span] = STATE(261), - [sym_superscript] = STATE(261), - [sym_subscript] = STATE(261), - [sym_strikeout] = STATE(261), - [sym_quoted_span] = STATE(261), - [sym_inline_note] = STATE(261), - [sym_citation] = STATE(261), - [sym_shortcode_escaped] = STATE(261), - [sym_shortcode] = STATE(261), - [sym_note_reference] = STATE(261), - [sym__link_text] = STATE(322), - [sym__link_text_non_empty] = STATE(323), - [sym_inline_link] = STATE(121), - [sym_image] = STATE(261), - [sym__image_inline_link] = STATE(595), - [sym__image_description] = STATE(1972), - [sym__image_description_non_empty] = STATE(1972), - [sym_hard_line_break] = STATE(261), - [sym__whitespace] = STATE(587), - [sym__word] = STATE(587), - [sym__soft_line_break] = STATE(597), - [sym__inline_base] = STATE(121), - [sym__text_base] = STATE(261), - [sym__inline_element_no_star] = STATE(121), - [aux_sym__inline_no_star] = STATE(121), - [sym__emphasis_star] = STATE(544), - [sym__strong_emphasis_star] = STATE(121), - [sym__emphasis_underscore] = STATE(544), - [sym__strong_emphasis_underscore] = STATE(121), - [aux_sym__inline_base_repeat1] = STATE(261), - [sym__backslash_escape] = ACTIONS(969), - [sym_entity_reference] = ACTIONS(971), - [sym_numeric_character_reference] = ACTIONS(971), - [anon_sym_LT] = ACTIONS(973), - [anon_sym_GT] = ACTIONS(975), - [anon_sym_BANG] = ACTIONS(977), - [anon_sym_DQUOTE] = ACTIONS(975), - [anon_sym_POUND] = ACTIONS(975), - [anon_sym_DOLLAR] = ACTIONS(975), - [anon_sym_PERCENT] = ACTIONS(975), - [anon_sym_AMP] = ACTIONS(973), - [anon_sym_SQUOTE] = ACTIONS(975), - [anon_sym_STAR] = ACTIONS(975), - [anon_sym_PLUS] = ACTIONS(975), - [anon_sym_COMMA] = ACTIONS(975), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_DOT] = ACTIONS(973), - [anon_sym_SLASH] = ACTIONS(975), - [anon_sym_COLON] = ACTIONS(975), - [anon_sym_SEMI] = ACTIONS(975), - [anon_sym_EQ] = ACTIONS(975), - [anon_sym_QMARK] = ACTIONS(975), - [anon_sym_LBRACK] = ACTIONS(979), - [anon_sym_BSLASH] = ACTIONS(981), - [anon_sym_CARET] = ACTIONS(973), - [anon_sym__] = ACTIONS(975), - [anon_sym_BQUOTE] = ACTIONS(975), - [anon_sym_LBRACE] = ACTIONS(983), - [anon_sym_PIPE] = ACTIONS(975), - [anon_sym_TILDE] = ACTIONS(975), - [anon_sym_LPAREN] = ACTIONS(975), - [anon_sym_RPAREN] = ACTIONS(975), - [sym__newline_token] = ACTIONS(985), - [anon_sym_CARET_LBRACK] = ACTIONS(987), - [anon_sym_LBRACK_CARET] = ACTIONS(989), - [sym_uri_autolink] = ACTIONS(971), - [sym_email_autolink] = ACTIONS(971), - [sym__whitespace_ge_2] = ACTIONS(991), - [aux_sym__whitespace_token1] = ACTIONS(993), - [sym__word_no_digit] = ACTIONS(995), - [sym__digits] = ACTIONS(995), - [anon_sym_DASH_DASH] = ACTIONS(997), - [anon_sym_DASH_DASH_DASH] = ACTIONS(995), - [anon_sym_DOT_DOT_DOT] = ACTIONS(995), - [sym__code_span_start] = ACTIONS(999), - [sym__emphasis_open_star] = ACTIONS(1001), - [sym__emphasis_open_underscore] = ACTIONS(1003), - [sym__strikeout_open] = ACTIONS(1007), - [sym__latex_span_start] = ACTIONS(1009), - [sym__single_quote_open] = ACTIONS(1011), - [sym__double_quote_open] = ACTIONS(1013), - [sym__superscript_open] = ACTIONS(1015), - [sym__subscript_open] = ACTIONS(1017), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1019), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1021), - [sym__cite_author_in_text] = ACTIONS(1023), - [sym__cite_suppress_author] = ACTIONS(1025), - [sym__shortcode_open_escaped] = ACTIONS(1027), - [sym__shortcode_open] = ACTIONS(1029), - [sym__unclosed_span] = ACTIONS(971), + [sym_backslash_escape] = STATE(383), + [sym_commonmark_attribute] = STATE(383), + [sym_code_span] = STATE(383), + [sym_latex_span] = STATE(383), + [sym_insert] = STATE(383), + [sym_delete] = STATE(383), + [sym_highlight] = STATE(383), + [sym_edit_comment] = STATE(383), + [sym_superscript] = STATE(383), + [sym_subscript] = STATE(383), + [sym_strikeout] = STATE(383), + [sym_quoted_span] = STATE(383), + [sym_inline_note] = STATE(383), + [sym_citation] = STATE(383), + [sym_shortcode_escaped] = STATE(383), + [sym_shortcode] = STATE(383), + [sym_note_reference] = STATE(383), + [sym__link_text] = STATE(395), + [sym__link_text_non_empty] = STATE(396), + [sym_inline_link] = STATE(50), + [sym_image] = STATE(383), + [sym__image_inline_link] = STATE(1263), + [sym__image_description] = STATE(2300), + [sym__image_description_non_empty] = STATE(2300), + [sym_hard_line_break] = STATE(383), + [sym__whitespace] = STATE(1259), + [sym__word] = STATE(1259), + [sym__soft_line_break] = STATE(1264), + [sym__inline_base] = STATE(50), + [sym__text_base] = STATE(383), + [sym__inline_element] = STATE(50), + [sym__emphasis_star] = STATE(1249), + [sym__strong_emphasis_star] = STATE(50), + [sym__emphasis_underscore] = STATE(1249), + [sym__strong_emphasis_underscore] = STATE(50), + [aux_sym_insert_repeat1] = STATE(50), + [aux_sym__inline_base_repeat1] = STATE(383), + [sym__backslash_escape] = ACTIONS(637), + [sym_entity_reference] = ACTIONS(639), + [sym_numeric_character_reference] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_GT] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(645), + [anon_sym_DQUOTE] = ACTIONS(643), + [anon_sym_POUND] = ACTIONS(643), + [anon_sym_DOLLAR] = ACTIONS(643), + [anon_sym_PERCENT] = ACTIONS(643), + [anon_sym_AMP] = ACTIONS(641), + [anon_sym_SQUOTE] = ACTIONS(643), + [anon_sym_STAR] = ACTIONS(643), + [anon_sym_PLUS] = ACTIONS(643), + [anon_sym_COMMA] = ACTIONS(643), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_DOT] = ACTIONS(641), + [anon_sym_SLASH] = ACTIONS(643), + [anon_sym_COLON] = ACTIONS(643), + [anon_sym_SEMI] = ACTIONS(643), + [anon_sym_EQ] = ACTIONS(643), + [anon_sym_QMARK] = ACTIONS(643), + [anon_sym_LBRACK] = ACTIONS(647), + [anon_sym_BSLASH] = ACTIONS(649), + [anon_sym_CARET] = ACTIONS(641), + [anon_sym__] = ACTIONS(643), + [anon_sym_BQUOTE] = ACTIONS(643), + [anon_sym_LBRACE] = ACTIONS(651), + [anon_sym_PIPE] = ACTIONS(643), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_LPAREN] = ACTIONS(643), + [anon_sym_RPAREN] = ACTIONS(643), + [sym__newline_token] = ACTIONS(653), + [aux_sym_insert_token1] = ACTIONS(655), + [aux_sym_delete_token1] = ACTIONS(657), + [aux_sym_highlight_token1] = ACTIONS(659), + [aux_sym_edit_comment_token1] = ACTIONS(661), + [anon_sym_CARET_LBRACK] = ACTIONS(663), + [anon_sym_LBRACK_CARET] = ACTIONS(665), + [sym_uri_autolink] = ACTIONS(639), + [sym_email_autolink] = ACTIONS(639), + [sym__whitespace_ge_2] = ACTIONS(667), + [aux_sym__whitespace_token1] = ACTIONS(669), + [sym__word_no_digit] = ACTIONS(671), + [sym__digits] = ACTIONS(671), + [anon_sym_DASH_DASH] = ACTIONS(673), + [anon_sym_DASH_DASH_DASH] = ACTIONS(671), + [anon_sym_DOT_DOT_DOT] = ACTIONS(671), + [sym__code_span_start] = ACTIONS(675), + [sym__emphasis_open_star] = ACTIONS(677), + [sym__emphasis_open_underscore] = ACTIONS(679), + [sym__strikeout_open] = ACTIONS(681), + [sym__latex_span_start] = ACTIONS(683), + [sym__single_quote_open] = ACTIONS(685), + [sym__double_quote_open] = ACTIONS(687), + [sym__double_quote_close] = ACTIONS(2613), + [sym__superscript_open] = ACTIONS(691), + [sym__subscript_open] = ACTIONS(693), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(695), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(697), + [sym__cite_author_in_text] = ACTIONS(699), + [sym__cite_suppress_author] = ACTIONS(701), + [sym__shortcode_open_escaped] = ACTIONS(703), + [sym__shortcode_open] = ACTIONS(705), + [sym__unclosed_span] = ACTIONS(639), }, [STATE(207)] = { - [sym_backslash_escape] = STATE(274), - [sym_commonmark_attribute] = STATE(274), - [sym_code_span] = STATE(274), - [sym_latex_span] = STATE(274), - [sym_superscript] = STATE(274), - [sym_subscript] = STATE(274), - [sym_strikeout] = STATE(274), - [sym_quoted_span] = STATE(274), - [sym_inline_note] = STATE(274), - [sym_citation] = STATE(274), - [sym_shortcode_escaped] = STATE(274), - [sym_shortcode] = STATE(274), - [sym_note_reference] = STATE(274), - [sym__link_text] = STATE(351), - [sym__link_text_non_empty] = STATE(352), - [sym_inline_link] = STATE(122), - [sym_image] = STATE(274), - [sym__image_inline_link] = STATE(894), - [sym__image_description] = STATE(2008), - [sym__image_description_non_empty] = STATE(2008), - [sym_hard_line_break] = STATE(274), - [sym__whitespace] = STATE(882), - [sym__word] = STATE(882), - [sym__soft_line_break] = STATE(898), - [sym__inline_base] = STATE(122), - [sym__text_base] = STATE(274), - [sym__inline_element_no_underscore] = STATE(122), - [aux_sym__inline_no_underscore] = STATE(122), - [sym__emphasis_star] = STATE(711), - [sym__strong_emphasis_star] = STATE(122), - [sym__emphasis_underscore] = STATE(711), - [sym__strong_emphasis_underscore] = STATE(122), - [aux_sym__inline_base_repeat1] = STATE(274), - [sym__backslash_escape] = ACTIONS(1123), - [sym_entity_reference] = ACTIONS(1125), - [sym_numeric_character_reference] = ACTIONS(1125), - [anon_sym_LT] = ACTIONS(1127), - [anon_sym_GT] = ACTIONS(1129), - [anon_sym_BANG] = ACTIONS(1131), - [anon_sym_DQUOTE] = ACTIONS(1129), - [anon_sym_POUND] = ACTIONS(1129), - [anon_sym_DOLLAR] = ACTIONS(1129), - [anon_sym_PERCENT] = ACTIONS(1129), - [anon_sym_AMP] = ACTIONS(1127), - [anon_sym_SQUOTE] = ACTIONS(1129), - [anon_sym_STAR] = ACTIONS(1129), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_COMMA] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1127), - [anon_sym_DOT] = ACTIONS(1127), - [anon_sym_SLASH] = ACTIONS(1129), - [anon_sym_COLON] = ACTIONS(1129), - [anon_sym_SEMI] = ACTIONS(1129), - [anon_sym_EQ] = ACTIONS(1129), - [anon_sym_QMARK] = ACTIONS(1129), - [anon_sym_LBRACK] = ACTIONS(1133), - [anon_sym_BSLASH] = ACTIONS(1135), - [anon_sym_CARET] = ACTIONS(1127), - [anon_sym__] = ACTIONS(1129), - [anon_sym_BQUOTE] = ACTIONS(1129), - [anon_sym_LBRACE] = ACTIONS(1137), - [anon_sym_PIPE] = ACTIONS(1129), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1129), - [anon_sym_RPAREN] = ACTIONS(1129), - [sym__newline_token] = ACTIONS(1139), - [anon_sym_CARET_LBRACK] = ACTIONS(1141), - [anon_sym_LBRACK_CARET] = ACTIONS(1143), - [sym_uri_autolink] = ACTIONS(1125), - [sym_email_autolink] = ACTIONS(1125), - [sym__whitespace_ge_2] = ACTIONS(1145), - [aux_sym__whitespace_token1] = ACTIONS(1147), - [sym__word_no_digit] = ACTIONS(1149), - [sym__digits] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1151), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1149), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1149), - [sym__code_span_start] = ACTIONS(1153), - [sym__emphasis_open_star] = ACTIONS(1155), - [sym__emphasis_open_underscore] = ACTIONS(1157), - [sym__strikeout_open] = ACTIONS(1161), - [sym__latex_span_start] = ACTIONS(1163), - [sym__single_quote_open] = ACTIONS(1165), - [sym__double_quote_open] = ACTIONS(1167), - [sym__superscript_open] = ACTIONS(1169), - [sym__subscript_open] = ACTIONS(1171), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1173), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1175), - [sym__cite_author_in_text] = ACTIONS(1177), - [sym__cite_suppress_author] = ACTIONS(1179), - [sym__shortcode_open_escaped] = ACTIONS(1181), - [sym__shortcode_open] = ACTIONS(1183), - [sym__unclosed_span] = ACTIONS(1125), + [sym_backslash_escape] = STATE(365), + [sym_commonmark_attribute] = STATE(365), + [sym_code_span] = STATE(365), + [sym_latex_span] = STATE(365), + [sym_insert] = STATE(365), + [sym_delete] = STATE(365), + [sym_highlight] = STATE(365), + [sym_edit_comment] = STATE(365), + [sym_superscript] = STATE(365), + [sym_subscript] = STATE(365), + [sym_strikeout] = STATE(365), + [sym_quoted_span] = STATE(365), + [sym_inline_note] = STATE(365), + [sym_citation] = STATE(365), + [sym_shortcode_escaped] = STATE(365), + [sym_shortcode] = STATE(365), + [sym_note_reference] = STATE(365), + [sym__link_text] = STATE(416), + [sym__link_text_non_empty] = STATE(417), + [sym_inline_link] = STATE(52), + [sym_image] = STATE(365), + [sym__image_inline_link] = STATE(712), + [sym__image_description] = STATE(2314), + [sym__image_description_non_empty] = STATE(2314), + [sym_hard_line_break] = STATE(365), + [sym__whitespace] = STATE(709), + [sym__word] = STATE(709), + [sym__soft_line_break] = STATE(713), + [sym__inline_base] = STATE(52), + [sym__text_base] = STATE(365), + [sym__inline_element] = STATE(52), + [sym__emphasis_star] = STATE(979), + [sym__strong_emphasis_star] = STATE(52), + [sym__emphasis_underscore] = STATE(979), + [sym__strong_emphasis_underscore] = STATE(52), + [aux_sym_insert_repeat1] = STATE(52), + [aux_sym__inline_base_repeat1] = STATE(365), + [sym__backslash_escape] = ACTIONS(1341), + [sym_entity_reference] = ACTIONS(1343), + [sym_numeric_character_reference] = ACTIONS(1343), + [anon_sym_LT] = ACTIONS(1345), + [anon_sym_GT] = ACTIONS(1347), + [anon_sym_BANG] = ACTIONS(1349), + [anon_sym_DQUOTE] = ACTIONS(1347), + [anon_sym_POUND] = ACTIONS(1347), + [anon_sym_DOLLAR] = ACTIONS(1347), + [anon_sym_PERCENT] = ACTIONS(1347), + [anon_sym_AMP] = ACTIONS(1345), + [anon_sym_SQUOTE] = ACTIONS(1347), + [anon_sym_STAR] = ACTIONS(1347), + [anon_sym_PLUS] = ACTIONS(1347), + [anon_sym_COMMA] = ACTIONS(1347), + [anon_sym_DASH] = ACTIONS(1345), + [anon_sym_DOT] = ACTIONS(1345), + [anon_sym_SLASH] = ACTIONS(1347), + [anon_sym_COLON] = ACTIONS(1347), + [anon_sym_SEMI] = ACTIONS(1347), + [anon_sym_EQ] = ACTIONS(1347), + [anon_sym_QMARK] = ACTIONS(1347), + [anon_sym_LBRACK] = ACTIONS(1351), + [anon_sym_BSLASH] = ACTIONS(1353), + [anon_sym_CARET] = ACTIONS(1345), + [anon_sym__] = ACTIONS(1347), + [anon_sym_BQUOTE] = ACTIONS(1347), + [anon_sym_LBRACE] = ACTIONS(1355), + [anon_sym_PIPE] = ACTIONS(1347), + [anon_sym_TILDE] = ACTIONS(1347), + [anon_sym_LPAREN] = ACTIONS(1347), + [anon_sym_RPAREN] = ACTIONS(1347), + [sym__newline_token] = ACTIONS(1357), + [aux_sym_insert_token1] = ACTIONS(1359), + [aux_sym_delete_token1] = ACTIONS(1361), + [aux_sym_highlight_token1] = ACTIONS(1363), + [aux_sym_edit_comment_token1] = ACTIONS(1365), + [anon_sym_CARET_LBRACK] = ACTIONS(1367), + [anon_sym_LBRACK_CARET] = ACTIONS(1369), + [sym_uri_autolink] = ACTIONS(1343), + [sym_email_autolink] = ACTIONS(1343), + [sym__whitespace_ge_2] = ACTIONS(1371), + [aux_sym__whitespace_token1] = ACTIONS(1373), + [sym__word_no_digit] = ACTIONS(1375), + [sym__digits] = ACTIONS(1375), + [anon_sym_DASH_DASH] = ACTIONS(1377), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1375), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1375), + [sym__code_span_start] = ACTIONS(1379), + [sym__emphasis_open_star] = ACTIONS(1381), + [sym__emphasis_open_underscore] = ACTIONS(1383), + [sym__strikeout_open] = ACTIONS(1385), + [sym__latex_span_start] = ACTIONS(1387), + [sym__single_quote_open] = ACTIONS(1389), + [sym__double_quote_open] = ACTIONS(1391), + [sym__superscript_open] = ACTIONS(1393), + [sym__superscript_close] = ACTIONS(2615), + [sym__subscript_open] = ACTIONS(1397), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1399), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1401), + [sym__cite_author_in_text] = ACTIONS(1403), + [sym__cite_suppress_author] = ACTIONS(1405), + [sym__shortcode_open_escaped] = ACTIONS(1407), + [sym__shortcode_open] = ACTIONS(1409), + [sym__unclosed_span] = ACTIONS(1343), }, [STATE(208)] = { - [sym_backslash_escape] = STATE(261), - [sym_commonmark_attribute] = STATE(261), - [sym_code_span] = STATE(261), - [sym_latex_span] = STATE(261), - [sym_superscript] = STATE(261), - [sym_subscript] = STATE(261), - [sym_strikeout] = STATE(261), - [sym_quoted_span] = STATE(261), - [sym_inline_note] = STATE(261), - [sym_citation] = STATE(261), - [sym_shortcode_escaped] = STATE(261), - [sym_shortcode] = STATE(261), - [sym_note_reference] = STATE(261), - [sym__link_text] = STATE(322), - [sym__link_text_non_empty] = STATE(323), - [sym_inline_link] = STATE(138), - [sym_image] = STATE(261), - [sym__image_inline_link] = STATE(595), - [sym__image_description] = STATE(1972), - [sym__image_description_non_empty] = STATE(1972), - [sym_hard_line_break] = STATE(261), - [sym__whitespace] = STATE(587), - [sym__word] = STATE(587), - [sym__soft_line_break] = STATE(597), - [sym__inline_base] = STATE(138), - [sym__text_base] = STATE(261), - [sym__inline_element_no_star] = STATE(138), - [aux_sym__inline_no_star] = STATE(138), - [sym__emphasis_star] = STATE(544), - [sym__strong_emphasis_star] = STATE(138), - [sym__emphasis_underscore] = STATE(544), - [sym__strong_emphasis_underscore] = STATE(138), - [aux_sym__inline_base_repeat1] = STATE(261), - [sym__backslash_escape] = ACTIONS(969), - [sym_entity_reference] = ACTIONS(971), - [sym_numeric_character_reference] = ACTIONS(971), - [anon_sym_LT] = ACTIONS(973), - [anon_sym_GT] = ACTIONS(975), - [anon_sym_BANG] = ACTIONS(977), - [anon_sym_DQUOTE] = ACTIONS(975), - [anon_sym_POUND] = ACTIONS(975), - [anon_sym_DOLLAR] = ACTIONS(975), - [anon_sym_PERCENT] = ACTIONS(975), - [anon_sym_AMP] = ACTIONS(973), - [anon_sym_SQUOTE] = ACTIONS(975), - [anon_sym_STAR] = ACTIONS(975), - [anon_sym_PLUS] = ACTIONS(975), - [anon_sym_COMMA] = ACTIONS(975), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_DOT] = ACTIONS(973), - [anon_sym_SLASH] = ACTIONS(975), - [anon_sym_COLON] = ACTIONS(975), - [anon_sym_SEMI] = ACTIONS(975), - [anon_sym_EQ] = ACTIONS(975), - [anon_sym_QMARK] = ACTIONS(975), - [anon_sym_LBRACK] = ACTIONS(979), - [anon_sym_BSLASH] = ACTIONS(981), - [anon_sym_CARET] = ACTIONS(973), - [anon_sym__] = ACTIONS(975), - [anon_sym_BQUOTE] = ACTIONS(975), - [anon_sym_LBRACE] = ACTIONS(983), - [anon_sym_PIPE] = ACTIONS(975), - [anon_sym_TILDE] = ACTIONS(975), - [anon_sym_LPAREN] = ACTIONS(975), - [anon_sym_RPAREN] = ACTIONS(975), - [sym__newline_token] = ACTIONS(985), - [anon_sym_CARET_LBRACK] = ACTIONS(987), - [anon_sym_LBRACK_CARET] = ACTIONS(989), - [sym_uri_autolink] = ACTIONS(971), - [sym_email_autolink] = ACTIONS(971), - [sym__whitespace_ge_2] = ACTIONS(991), - [aux_sym__whitespace_token1] = ACTIONS(993), - [sym__word_no_digit] = ACTIONS(995), - [sym__digits] = ACTIONS(995), - [anon_sym_DASH_DASH] = ACTIONS(997), - [anon_sym_DASH_DASH_DASH] = ACTIONS(995), - [anon_sym_DOT_DOT_DOT] = ACTIONS(995), - [sym__code_span_start] = ACTIONS(999), - [sym__emphasis_open_star] = ACTIONS(1001), - [sym__emphasis_open_underscore] = ACTIONS(1003), - [sym__strikeout_open] = ACTIONS(1007), - [sym__latex_span_start] = ACTIONS(1009), - [sym__single_quote_open] = ACTIONS(1011), - [sym__double_quote_open] = ACTIONS(1013), - [sym__superscript_open] = ACTIONS(1015), - [sym__subscript_open] = ACTIONS(1017), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1019), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1021), - [sym__cite_author_in_text] = ACTIONS(1023), - [sym__cite_suppress_author] = ACTIONS(1025), - [sym__shortcode_open_escaped] = ACTIONS(1027), - [sym__shortcode_open] = ACTIONS(1029), - [sym__unclosed_span] = ACTIONS(971), + [sym_backslash_escape] = STATE(367), + [sym_commonmark_attribute] = STATE(367), + [sym_code_span] = STATE(367), + [sym_latex_span] = STATE(367), + [sym_insert] = STATE(367), + [sym_delete] = STATE(367), + [sym_highlight] = STATE(367), + [sym_edit_comment] = STATE(367), + [sym_superscript] = STATE(367), + [sym_subscript] = STATE(367), + [sym_strikeout] = STATE(367), + [sym_quoted_span] = STATE(367), + [sym_inline_note] = STATE(367), + [sym_citation] = STATE(367), + [sym_shortcode_escaped] = STATE(367), + [sym_shortcode] = STATE(367), + [sym_note_reference] = STATE(367), + [sym__link_text] = STATE(435), + [sym__link_text_non_empty] = STATE(436), + [sym_inline_link] = STATE(55), + [sym_image] = STATE(367), + [sym__image_inline_link] = STATE(819), + [sym__image_description] = STATE(2328), + [sym__image_description_non_empty] = STATE(2328), + [sym_hard_line_break] = STATE(367), + [sym__whitespace] = STATE(816), + [sym__word] = STATE(816), + [sym__soft_line_break] = STATE(820), + [sym__inline_base] = STATE(55), + [sym__text_base] = STATE(367), + [sym__inline_element] = STATE(55), + [sym__emphasis_star] = STATE(1271), + [sym__strong_emphasis_star] = STATE(55), + [sym__emphasis_underscore] = STATE(1271), + [sym__strong_emphasis_underscore] = STATE(55), + [aux_sym_insert_repeat1] = STATE(55), + [aux_sym__inline_base_repeat1] = STATE(367), + [sym__backslash_escape] = ACTIONS(1413), + [sym_entity_reference] = ACTIONS(1415), + [sym_numeric_character_reference] = ACTIONS(1415), + [anon_sym_LT] = ACTIONS(1417), + [anon_sym_GT] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1419), + [anon_sym_POUND] = ACTIONS(1419), + [anon_sym_DOLLAR] = ACTIONS(1419), + [anon_sym_PERCENT] = ACTIONS(1419), + [anon_sym_AMP] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [anon_sym_STAR] = ACTIONS(1419), + [anon_sym_PLUS] = ACTIONS(1419), + [anon_sym_COMMA] = ACTIONS(1419), + [anon_sym_DASH] = ACTIONS(1417), + [anon_sym_DOT] = ACTIONS(1417), + [anon_sym_SLASH] = ACTIONS(1419), + [anon_sym_COLON] = ACTIONS(1419), + [anon_sym_SEMI] = ACTIONS(1419), + [anon_sym_EQ] = ACTIONS(1419), + [anon_sym_QMARK] = ACTIONS(1419), + [anon_sym_LBRACK] = ACTIONS(1423), + [anon_sym_BSLASH] = ACTIONS(1425), + [anon_sym_CARET] = ACTIONS(1417), + [anon_sym__] = ACTIONS(1419), + [anon_sym_BQUOTE] = ACTIONS(1419), + [anon_sym_LBRACE] = ACTIONS(1427), + [anon_sym_PIPE] = ACTIONS(1419), + [anon_sym_TILDE] = ACTIONS(1419), + [anon_sym_LPAREN] = ACTIONS(1419), + [anon_sym_RPAREN] = ACTIONS(1419), + [sym__newline_token] = ACTIONS(1429), + [aux_sym_insert_token1] = ACTIONS(1431), + [aux_sym_delete_token1] = ACTIONS(1433), + [aux_sym_highlight_token1] = ACTIONS(1435), + [aux_sym_edit_comment_token1] = ACTIONS(1437), + [anon_sym_CARET_LBRACK] = ACTIONS(1439), + [anon_sym_LBRACK_CARET] = ACTIONS(1441), + [sym_uri_autolink] = ACTIONS(1415), + [sym_email_autolink] = ACTIONS(1415), + [sym__whitespace_ge_2] = ACTIONS(1443), + [aux_sym__whitespace_token1] = ACTIONS(1445), + [sym__word_no_digit] = ACTIONS(1447), + [sym__digits] = ACTIONS(1447), + [anon_sym_DASH_DASH] = ACTIONS(1449), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1447), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1447), + [sym__code_span_start] = ACTIONS(1451), + [sym__emphasis_open_star] = ACTIONS(1453), + [sym__emphasis_open_underscore] = ACTIONS(1455), + [sym__strikeout_open] = ACTIONS(1457), + [sym__latex_span_start] = ACTIONS(1459), + [sym__single_quote_open] = ACTIONS(1461), + [sym__double_quote_open] = ACTIONS(1463), + [sym__superscript_open] = ACTIONS(1465), + [sym__subscript_open] = ACTIONS(1467), + [sym__subscript_close] = ACTIONS(2617), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1471), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1473), + [sym__cite_author_in_text] = ACTIONS(1475), + [sym__cite_suppress_author] = ACTIONS(1477), + [sym__shortcode_open_escaped] = ACTIONS(1479), + [sym__shortcode_open] = ACTIONS(1481), + [sym__unclosed_span] = ACTIONS(1415), }, [STATE(209)] = { - [sym_backslash_escape] = STATE(274), - [sym_commonmark_attribute] = STATE(274), - [sym_code_span] = STATE(274), - [sym_latex_span] = STATE(274), - [sym_superscript] = STATE(274), - [sym_subscript] = STATE(274), - [sym_strikeout] = STATE(274), - [sym_quoted_span] = STATE(274), - [sym_inline_note] = STATE(274), - [sym_citation] = STATE(274), - [sym_shortcode_escaped] = STATE(274), - [sym_shortcode] = STATE(274), - [sym_note_reference] = STATE(274), - [sym__link_text] = STATE(351), - [sym__link_text_non_empty] = STATE(352), - [sym_inline_link] = STATE(139), - [sym_image] = STATE(274), - [sym__image_inline_link] = STATE(894), - [sym__image_description] = STATE(2008), - [sym__image_description_non_empty] = STATE(2008), - [sym_hard_line_break] = STATE(274), - [sym__whitespace] = STATE(882), - [sym__word] = STATE(882), - [sym__soft_line_break] = STATE(898), - [sym__inline_base] = STATE(139), - [sym__text_base] = STATE(274), - [sym__inline_element_no_underscore] = STATE(139), - [aux_sym__inline_no_underscore] = STATE(139), - [sym__emphasis_star] = STATE(711), - [sym__strong_emphasis_star] = STATE(139), - [sym__emphasis_underscore] = STATE(711), - [sym__strong_emphasis_underscore] = STATE(139), - [aux_sym__inline_base_repeat1] = STATE(274), - [sym__backslash_escape] = ACTIONS(1123), - [sym_entity_reference] = ACTIONS(1125), - [sym_numeric_character_reference] = ACTIONS(1125), - [anon_sym_LT] = ACTIONS(1127), - [anon_sym_GT] = ACTIONS(1129), - [anon_sym_BANG] = ACTIONS(1131), - [anon_sym_DQUOTE] = ACTIONS(1129), - [anon_sym_POUND] = ACTIONS(1129), - [anon_sym_DOLLAR] = ACTIONS(1129), - [anon_sym_PERCENT] = ACTIONS(1129), - [anon_sym_AMP] = ACTIONS(1127), - [anon_sym_SQUOTE] = ACTIONS(1129), - [anon_sym_STAR] = ACTIONS(1129), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_COMMA] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1127), - [anon_sym_DOT] = ACTIONS(1127), - [anon_sym_SLASH] = ACTIONS(1129), - [anon_sym_COLON] = ACTIONS(1129), - [anon_sym_SEMI] = ACTIONS(1129), - [anon_sym_EQ] = ACTIONS(1129), - [anon_sym_QMARK] = ACTIONS(1129), - [anon_sym_LBRACK] = ACTIONS(1133), - [anon_sym_BSLASH] = ACTIONS(1135), - [anon_sym_CARET] = ACTIONS(1127), - [anon_sym__] = ACTIONS(1129), - [anon_sym_BQUOTE] = ACTIONS(1129), - [anon_sym_LBRACE] = ACTIONS(1137), - [anon_sym_PIPE] = ACTIONS(1129), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1129), - [anon_sym_RPAREN] = ACTIONS(1129), - [sym__newline_token] = ACTIONS(1139), - [anon_sym_CARET_LBRACK] = ACTIONS(1141), - [anon_sym_LBRACK_CARET] = ACTIONS(1143), - [sym_uri_autolink] = ACTIONS(1125), - [sym_email_autolink] = ACTIONS(1125), - [sym__whitespace_ge_2] = ACTIONS(1145), - [aux_sym__whitespace_token1] = ACTIONS(1147), - [sym__word_no_digit] = ACTIONS(1149), - [sym__digits] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1151), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1149), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1149), - [sym__code_span_start] = ACTIONS(1153), - [sym__emphasis_open_star] = ACTIONS(1155), - [sym__emphasis_open_underscore] = ACTIONS(1157), - [sym__strikeout_open] = ACTIONS(1161), - [sym__latex_span_start] = ACTIONS(1163), - [sym__single_quote_open] = ACTIONS(1165), - [sym__double_quote_open] = ACTIONS(1167), - [sym__superscript_open] = ACTIONS(1169), - [sym__subscript_open] = ACTIONS(1171), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1173), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1175), - [sym__cite_author_in_text] = ACTIONS(1177), - [sym__cite_suppress_author] = ACTIONS(1179), - [sym__shortcode_open_escaped] = ACTIONS(1181), - [sym__shortcode_open] = ACTIONS(1183), - [sym__unclosed_span] = ACTIONS(1125), + [sym_backslash_escape] = STATE(372), + [sym_commonmark_attribute] = STATE(372), + [sym_code_span] = STATE(372), + [sym_latex_span] = STATE(372), + [sym_insert] = STATE(372), + [sym_delete] = STATE(372), + [sym_highlight] = STATE(372), + [sym_edit_comment] = STATE(372), + [sym_superscript] = STATE(372), + [sym_subscript] = STATE(372), + [sym_strikeout] = STATE(372), + [sym_quoted_span] = STATE(372), + [sym_inline_note] = STATE(372), + [sym_citation] = STATE(372), + [sym_shortcode_escaped] = STATE(372), + [sym_shortcode] = STATE(372), + [sym_note_reference] = STATE(372), + [sym__link_text] = STATE(454), + [sym__link_text_non_empty] = STATE(455), + [sym_inline_link] = STATE(57), + [sym_image] = STATE(372), + [sym__image_inline_link] = STATE(1025), + [sym__image_description] = STATE(2356), + [sym__image_description_non_empty] = STATE(2356), + [sym_hard_line_break] = STATE(372), + [sym__whitespace] = STATE(1022), + [sym__word] = STATE(1022), + [sym__soft_line_break] = STATE(1026), + [sym__inline_base] = STATE(57), + [sym__text_base] = STATE(372), + [sym__inline_element] = STATE(57), + [sym__emphasis_star] = STATE(714), + [sym__strong_emphasis_star] = STATE(57), + [sym__emphasis_underscore] = STATE(714), + [sym__strong_emphasis_underscore] = STATE(57), + [aux_sym_insert_repeat1] = STATE(57), + [aux_sym__inline_base_repeat1] = STATE(372), + [sym__backslash_escape] = ACTIONS(707), + [sym_entity_reference] = ACTIONS(709), + [sym_numeric_character_reference] = ACTIONS(709), + [anon_sym_LT] = ACTIONS(711), + [anon_sym_GT] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(715), + [anon_sym_DQUOTE] = ACTIONS(713), + [anon_sym_POUND] = ACTIONS(713), + [anon_sym_DOLLAR] = ACTIONS(713), + [anon_sym_PERCENT] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(711), + [anon_sym_SQUOTE] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_COMMA] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_DOT] = ACTIONS(711), + [anon_sym_SLASH] = ACTIONS(713), + [anon_sym_COLON] = ACTIONS(713), + [anon_sym_SEMI] = ACTIONS(713), + [anon_sym_EQ] = ACTIONS(713), + [anon_sym_QMARK] = ACTIONS(713), + [anon_sym_LBRACK] = ACTIONS(717), + [anon_sym_BSLASH] = ACTIONS(719), + [anon_sym_CARET] = ACTIONS(711), + [anon_sym__] = ACTIONS(713), + [anon_sym_BQUOTE] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(721), + [anon_sym_PIPE] = ACTIONS(713), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_LPAREN] = ACTIONS(713), + [anon_sym_RPAREN] = ACTIONS(713), + [sym__newline_token] = ACTIONS(723), + [aux_sym_insert_token1] = ACTIONS(725), + [aux_sym_insert_token2] = ACTIONS(2619), + [aux_sym_delete_token1] = ACTIONS(729), + [aux_sym_highlight_token1] = ACTIONS(731), + [aux_sym_edit_comment_token1] = ACTIONS(733), + [anon_sym_CARET_LBRACK] = ACTIONS(735), + [anon_sym_LBRACK_CARET] = ACTIONS(737), + [sym_uri_autolink] = ACTIONS(709), + [sym_email_autolink] = ACTIONS(709), + [sym__whitespace_ge_2] = ACTIONS(739), + [aux_sym__whitespace_token1] = ACTIONS(741), + [sym__word_no_digit] = ACTIONS(743), + [sym__digits] = ACTIONS(743), + [anon_sym_DASH_DASH] = ACTIONS(745), + [anon_sym_DASH_DASH_DASH] = ACTIONS(743), + [anon_sym_DOT_DOT_DOT] = ACTIONS(743), + [sym__code_span_start] = ACTIONS(747), + [sym__emphasis_open_star] = ACTIONS(749), + [sym__emphasis_open_underscore] = ACTIONS(751), + [sym__strikeout_open] = ACTIONS(753), + [sym__latex_span_start] = ACTIONS(755), + [sym__single_quote_open] = ACTIONS(757), + [sym__double_quote_open] = ACTIONS(759), + [sym__superscript_open] = ACTIONS(761), + [sym__subscript_open] = ACTIONS(763), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(765), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(767), + [sym__cite_author_in_text] = ACTIONS(769), + [sym__cite_suppress_author] = ACTIONS(771), + [sym__shortcode_open_escaped] = ACTIONS(773), + [sym__shortcode_open] = ACTIONS(775), + [sym__unclosed_span] = ACTIONS(709), }, [STATE(210)] = { - [sym_backslash_escape] = STATE(261), - [sym_commonmark_attribute] = STATE(261), - [sym_code_span] = STATE(261), - [sym_latex_span] = STATE(261), - [sym_superscript] = STATE(261), - [sym_subscript] = STATE(261), - [sym_strikeout] = STATE(261), - [sym_quoted_span] = STATE(261), - [sym_inline_note] = STATE(261), - [sym_citation] = STATE(261), - [sym_shortcode_escaped] = STATE(261), - [sym_shortcode] = STATE(261), - [sym_note_reference] = STATE(261), - [sym__link_text] = STATE(322), - [sym__link_text_non_empty] = STATE(323), - [sym_inline_link] = STATE(156), - [sym_image] = STATE(261), - [sym__image_inline_link] = STATE(595), - [sym__image_description] = STATE(1972), - [sym__image_description_non_empty] = STATE(1972), - [sym_hard_line_break] = STATE(261), - [sym__whitespace] = STATE(587), - [sym__word] = STATE(587), - [sym__soft_line_break] = STATE(597), - [sym__inline_base] = STATE(156), - [sym__text_base] = STATE(261), - [sym__inline_element_no_star] = STATE(156), - [aux_sym__inline_no_star] = STATE(156), - [sym__emphasis_star] = STATE(544), - [sym__strong_emphasis_star] = STATE(156), - [sym__emphasis_underscore] = STATE(544), - [sym__strong_emphasis_underscore] = STATE(156), - [aux_sym__inline_base_repeat1] = STATE(261), - [sym__backslash_escape] = ACTIONS(969), - [sym_entity_reference] = ACTIONS(971), - [sym_numeric_character_reference] = ACTIONS(971), - [anon_sym_LT] = ACTIONS(973), - [anon_sym_GT] = ACTIONS(975), - [anon_sym_BANG] = ACTIONS(977), - [anon_sym_DQUOTE] = ACTIONS(975), - [anon_sym_POUND] = ACTIONS(975), - [anon_sym_DOLLAR] = ACTIONS(975), - [anon_sym_PERCENT] = ACTIONS(975), - [anon_sym_AMP] = ACTIONS(973), - [anon_sym_SQUOTE] = ACTIONS(975), - [anon_sym_STAR] = ACTIONS(975), - [anon_sym_PLUS] = ACTIONS(975), - [anon_sym_COMMA] = ACTIONS(975), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_DOT] = ACTIONS(973), - [anon_sym_SLASH] = ACTIONS(975), - [anon_sym_COLON] = ACTIONS(975), - [anon_sym_SEMI] = ACTIONS(975), - [anon_sym_EQ] = ACTIONS(975), - [anon_sym_QMARK] = ACTIONS(975), - [anon_sym_LBRACK] = ACTIONS(979), - [anon_sym_BSLASH] = ACTIONS(981), - [anon_sym_CARET] = ACTIONS(973), - [anon_sym__] = ACTIONS(975), - [anon_sym_BQUOTE] = ACTIONS(975), - [anon_sym_LBRACE] = ACTIONS(983), - [anon_sym_PIPE] = ACTIONS(975), - [anon_sym_TILDE] = ACTIONS(975), - [anon_sym_LPAREN] = ACTIONS(975), - [anon_sym_RPAREN] = ACTIONS(975), - [sym__newline_token] = ACTIONS(985), - [anon_sym_CARET_LBRACK] = ACTIONS(987), - [anon_sym_LBRACK_CARET] = ACTIONS(989), - [sym_uri_autolink] = ACTIONS(971), - [sym_email_autolink] = ACTIONS(971), - [sym__whitespace_ge_2] = ACTIONS(991), - [aux_sym__whitespace_token1] = ACTIONS(993), - [sym__word_no_digit] = ACTIONS(995), - [sym__digits] = ACTIONS(995), - [anon_sym_DASH_DASH] = ACTIONS(997), - [anon_sym_DASH_DASH_DASH] = ACTIONS(995), - [anon_sym_DOT_DOT_DOT] = ACTIONS(995), - [sym__code_span_start] = ACTIONS(999), - [sym__emphasis_open_star] = ACTIONS(1001), - [sym__emphasis_open_underscore] = ACTIONS(1003), - [sym__strikeout_open] = ACTIONS(1007), - [sym__latex_span_start] = ACTIONS(1009), - [sym__single_quote_open] = ACTIONS(1011), - [sym__double_quote_open] = ACTIONS(1013), - [sym__superscript_open] = ACTIONS(1015), - [sym__subscript_open] = ACTIONS(1017), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1019), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1021), - [sym__cite_author_in_text] = ACTIONS(1023), - [sym__cite_suppress_author] = ACTIONS(1025), - [sym__shortcode_open_escaped] = ACTIONS(1027), - [sym__shortcode_open] = ACTIONS(1029), - [sym__unclosed_span] = ACTIONS(971), + [sym_backslash_escape] = STATE(372), + [sym_commonmark_attribute] = STATE(372), + [sym_code_span] = STATE(372), + [sym_latex_span] = STATE(372), + [sym_insert] = STATE(372), + [sym_delete] = STATE(372), + [sym_highlight] = STATE(372), + [sym_edit_comment] = STATE(372), + [sym_superscript] = STATE(372), + [sym_subscript] = STATE(372), + [sym_strikeout] = STATE(372), + [sym_quoted_span] = STATE(372), + [sym_inline_note] = STATE(372), + [sym_citation] = STATE(372), + [sym_shortcode_escaped] = STATE(372), + [sym_shortcode] = STATE(372), + [sym_note_reference] = STATE(372), + [sym__link_text] = STATE(454), + [sym__link_text_non_empty] = STATE(455), + [sym_inline_link] = STATE(57), + [sym_image] = STATE(372), + [sym__image_inline_link] = STATE(1025), + [sym__image_description] = STATE(2356), + [sym__image_description_non_empty] = STATE(2356), + [sym_hard_line_break] = STATE(372), + [sym__whitespace] = STATE(1022), + [sym__word] = STATE(1022), + [sym__soft_line_break] = STATE(1026), + [sym__inline_base] = STATE(57), + [sym__text_base] = STATE(372), + [sym__inline_element] = STATE(57), + [sym__emphasis_star] = STATE(714), + [sym__strong_emphasis_star] = STATE(57), + [sym__emphasis_underscore] = STATE(714), + [sym__strong_emphasis_underscore] = STATE(57), + [aux_sym_insert_repeat1] = STATE(57), + [aux_sym__inline_base_repeat1] = STATE(372), + [sym__backslash_escape] = ACTIONS(707), + [sym_entity_reference] = ACTIONS(709), + [sym_numeric_character_reference] = ACTIONS(709), + [anon_sym_LT] = ACTIONS(711), + [anon_sym_GT] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(715), + [anon_sym_DQUOTE] = ACTIONS(713), + [anon_sym_POUND] = ACTIONS(713), + [anon_sym_DOLLAR] = ACTIONS(713), + [anon_sym_PERCENT] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(711), + [anon_sym_SQUOTE] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_COMMA] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_DOT] = ACTIONS(711), + [anon_sym_SLASH] = ACTIONS(713), + [anon_sym_COLON] = ACTIONS(713), + [anon_sym_SEMI] = ACTIONS(713), + [anon_sym_EQ] = ACTIONS(713), + [anon_sym_QMARK] = ACTIONS(713), + [anon_sym_LBRACK] = ACTIONS(717), + [anon_sym_BSLASH] = ACTIONS(719), + [anon_sym_CARET] = ACTIONS(711), + [anon_sym__] = ACTIONS(713), + [anon_sym_BQUOTE] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(721), + [anon_sym_PIPE] = ACTIONS(713), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_LPAREN] = ACTIONS(713), + [anon_sym_RPAREN] = ACTIONS(713), + [sym__newline_token] = ACTIONS(723), + [aux_sym_insert_token1] = ACTIONS(725), + [aux_sym_insert_token2] = ACTIONS(2621), + [aux_sym_delete_token1] = ACTIONS(729), + [aux_sym_highlight_token1] = ACTIONS(731), + [aux_sym_edit_comment_token1] = ACTIONS(733), + [anon_sym_CARET_LBRACK] = ACTIONS(735), + [anon_sym_LBRACK_CARET] = ACTIONS(737), + [sym_uri_autolink] = ACTIONS(709), + [sym_email_autolink] = ACTIONS(709), + [sym__whitespace_ge_2] = ACTIONS(739), + [aux_sym__whitespace_token1] = ACTIONS(741), + [sym__word_no_digit] = ACTIONS(743), + [sym__digits] = ACTIONS(743), + [anon_sym_DASH_DASH] = ACTIONS(745), + [anon_sym_DASH_DASH_DASH] = ACTIONS(743), + [anon_sym_DOT_DOT_DOT] = ACTIONS(743), + [sym__code_span_start] = ACTIONS(747), + [sym__emphasis_open_star] = ACTIONS(749), + [sym__emphasis_open_underscore] = ACTIONS(751), + [sym__strikeout_open] = ACTIONS(753), + [sym__latex_span_start] = ACTIONS(755), + [sym__single_quote_open] = ACTIONS(757), + [sym__double_quote_open] = ACTIONS(759), + [sym__superscript_open] = ACTIONS(761), + [sym__subscript_open] = ACTIONS(763), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(765), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(767), + [sym__cite_author_in_text] = ACTIONS(769), + [sym__cite_suppress_author] = ACTIONS(771), + [sym__shortcode_open_escaped] = ACTIONS(773), + [sym__shortcode_open] = ACTIONS(775), + [sym__unclosed_span] = ACTIONS(709), }, [STATE(211)] = { - [sym_backslash_escape] = STATE(274), - [sym_commonmark_attribute] = STATE(274), - [sym_code_span] = STATE(274), - [sym_latex_span] = STATE(274), - [sym_superscript] = STATE(274), - [sym_subscript] = STATE(274), - [sym_strikeout] = STATE(274), - [sym_quoted_span] = STATE(274), - [sym_inline_note] = STATE(274), - [sym_citation] = STATE(274), - [sym_shortcode_escaped] = STATE(274), - [sym_shortcode] = STATE(274), - [sym_note_reference] = STATE(274), - [sym__link_text] = STATE(351), - [sym__link_text_non_empty] = STATE(352), - [sym_inline_link] = STATE(157), - [sym_image] = STATE(274), - [sym__image_inline_link] = STATE(894), - [sym__image_description] = STATE(2008), - [sym__image_description_non_empty] = STATE(2008), - [sym_hard_line_break] = STATE(274), - [sym__whitespace] = STATE(882), - [sym__word] = STATE(882), - [sym__soft_line_break] = STATE(898), - [sym__inline_base] = STATE(157), - [sym__text_base] = STATE(274), - [sym__inline_element_no_underscore] = STATE(157), - [aux_sym__inline_no_underscore] = STATE(157), - [sym__emphasis_star] = STATE(711), - [sym__strong_emphasis_star] = STATE(157), - [sym__emphasis_underscore] = STATE(711), - [sym__strong_emphasis_underscore] = STATE(157), - [aux_sym__inline_base_repeat1] = STATE(274), - [sym__backslash_escape] = ACTIONS(1123), - [sym_entity_reference] = ACTIONS(1125), - [sym_numeric_character_reference] = ACTIONS(1125), - [anon_sym_LT] = ACTIONS(1127), - [anon_sym_GT] = ACTIONS(1129), - [anon_sym_BANG] = ACTIONS(1131), - [anon_sym_DQUOTE] = ACTIONS(1129), - [anon_sym_POUND] = ACTIONS(1129), - [anon_sym_DOLLAR] = ACTIONS(1129), - [anon_sym_PERCENT] = ACTIONS(1129), - [anon_sym_AMP] = ACTIONS(1127), - [anon_sym_SQUOTE] = ACTIONS(1129), - [anon_sym_STAR] = ACTIONS(1129), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_COMMA] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1127), - [anon_sym_DOT] = ACTIONS(1127), - [anon_sym_SLASH] = ACTIONS(1129), - [anon_sym_COLON] = ACTIONS(1129), - [anon_sym_SEMI] = ACTIONS(1129), - [anon_sym_EQ] = ACTIONS(1129), - [anon_sym_QMARK] = ACTIONS(1129), - [anon_sym_LBRACK] = ACTIONS(1133), - [anon_sym_BSLASH] = ACTIONS(1135), - [anon_sym_CARET] = ACTIONS(1127), - [anon_sym__] = ACTIONS(1129), - [anon_sym_BQUOTE] = ACTIONS(1129), - [anon_sym_LBRACE] = ACTIONS(1137), - [anon_sym_PIPE] = ACTIONS(1129), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1129), - [anon_sym_RPAREN] = ACTIONS(1129), - [sym__newline_token] = ACTIONS(1139), - [anon_sym_CARET_LBRACK] = ACTIONS(1141), - [anon_sym_LBRACK_CARET] = ACTIONS(1143), - [sym_uri_autolink] = ACTIONS(1125), - [sym_email_autolink] = ACTIONS(1125), - [sym__whitespace_ge_2] = ACTIONS(1145), - [aux_sym__whitespace_token1] = ACTIONS(1147), - [sym__word_no_digit] = ACTIONS(1149), - [sym__digits] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1151), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1149), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1149), - [sym__code_span_start] = ACTIONS(1153), - [sym__emphasis_open_star] = ACTIONS(1155), - [sym__emphasis_open_underscore] = ACTIONS(1157), - [sym__strikeout_open] = ACTIONS(1161), - [sym__latex_span_start] = ACTIONS(1163), - [sym__single_quote_open] = ACTIONS(1165), - [sym__double_quote_open] = ACTIONS(1167), - [sym__superscript_open] = ACTIONS(1169), - [sym__subscript_open] = ACTIONS(1171), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1173), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1175), - [sym__cite_author_in_text] = ACTIONS(1177), - [sym__cite_suppress_author] = ACTIONS(1179), - [sym__shortcode_open_escaped] = ACTIONS(1181), - [sym__shortcode_open] = ACTIONS(1183), - [sym__unclosed_span] = ACTIONS(1125), + [sym_backslash_escape] = STATE(372), + [sym_commonmark_attribute] = STATE(372), + [sym_code_span] = STATE(372), + [sym_latex_span] = STATE(372), + [sym_insert] = STATE(372), + [sym_delete] = STATE(372), + [sym_highlight] = STATE(372), + [sym_edit_comment] = STATE(372), + [sym_superscript] = STATE(372), + [sym_subscript] = STATE(372), + [sym_strikeout] = STATE(372), + [sym_quoted_span] = STATE(372), + [sym_inline_note] = STATE(372), + [sym_citation] = STATE(372), + [sym_shortcode_escaped] = STATE(372), + [sym_shortcode] = STATE(372), + [sym_note_reference] = STATE(372), + [sym__link_text] = STATE(454), + [sym__link_text_non_empty] = STATE(455), + [sym_inline_link] = STATE(57), + [sym_image] = STATE(372), + [sym__image_inline_link] = STATE(1025), + [sym__image_description] = STATE(2356), + [sym__image_description_non_empty] = STATE(2356), + [sym_hard_line_break] = STATE(372), + [sym__whitespace] = STATE(1022), + [sym__word] = STATE(1022), + [sym__soft_line_break] = STATE(1026), + [sym__inline_base] = STATE(57), + [sym__text_base] = STATE(372), + [sym__inline_element] = STATE(57), + [sym__emphasis_star] = STATE(714), + [sym__strong_emphasis_star] = STATE(57), + [sym__emphasis_underscore] = STATE(714), + [sym__strong_emphasis_underscore] = STATE(57), + [aux_sym_insert_repeat1] = STATE(57), + [aux_sym__inline_base_repeat1] = STATE(372), + [sym__backslash_escape] = ACTIONS(707), + [sym_entity_reference] = ACTIONS(709), + [sym_numeric_character_reference] = ACTIONS(709), + [anon_sym_LT] = ACTIONS(711), + [anon_sym_GT] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(715), + [anon_sym_DQUOTE] = ACTIONS(713), + [anon_sym_POUND] = ACTIONS(713), + [anon_sym_DOLLAR] = ACTIONS(713), + [anon_sym_PERCENT] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(711), + [anon_sym_SQUOTE] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_COMMA] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_DOT] = ACTIONS(711), + [anon_sym_SLASH] = ACTIONS(713), + [anon_sym_COLON] = ACTIONS(713), + [anon_sym_SEMI] = ACTIONS(713), + [anon_sym_EQ] = ACTIONS(713), + [anon_sym_QMARK] = ACTIONS(713), + [anon_sym_LBRACK] = ACTIONS(717), + [anon_sym_BSLASH] = ACTIONS(719), + [anon_sym_CARET] = ACTIONS(711), + [anon_sym__] = ACTIONS(713), + [anon_sym_BQUOTE] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(721), + [anon_sym_PIPE] = ACTIONS(713), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_LPAREN] = ACTIONS(713), + [anon_sym_RPAREN] = ACTIONS(713), + [sym__newline_token] = ACTIONS(723), + [aux_sym_insert_token1] = ACTIONS(725), + [aux_sym_insert_token2] = ACTIONS(2623), + [aux_sym_delete_token1] = ACTIONS(729), + [aux_sym_highlight_token1] = ACTIONS(731), + [aux_sym_edit_comment_token1] = ACTIONS(733), + [anon_sym_CARET_LBRACK] = ACTIONS(735), + [anon_sym_LBRACK_CARET] = ACTIONS(737), + [sym_uri_autolink] = ACTIONS(709), + [sym_email_autolink] = ACTIONS(709), + [sym__whitespace_ge_2] = ACTIONS(739), + [aux_sym__whitespace_token1] = ACTIONS(741), + [sym__word_no_digit] = ACTIONS(743), + [sym__digits] = ACTIONS(743), + [anon_sym_DASH_DASH] = ACTIONS(745), + [anon_sym_DASH_DASH_DASH] = ACTIONS(743), + [anon_sym_DOT_DOT_DOT] = ACTIONS(743), + [sym__code_span_start] = ACTIONS(747), + [sym__emphasis_open_star] = ACTIONS(749), + [sym__emphasis_open_underscore] = ACTIONS(751), + [sym__strikeout_open] = ACTIONS(753), + [sym__latex_span_start] = ACTIONS(755), + [sym__single_quote_open] = ACTIONS(757), + [sym__double_quote_open] = ACTIONS(759), + [sym__superscript_open] = ACTIONS(761), + [sym__subscript_open] = ACTIONS(763), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(765), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(767), + [sym__cite_author_in_text] = ACTIONS(769), + [sym__cite_suppress_author] = ACTIONS(771), + [sym__shortcode_open_escaped] = ACTIONS(773), + [sym__shortcode_open] = ACTIONS(775), + [sym__unclosed_span] = ACTIONS(709), }, [STATE(212)] = { - [sym_backslash_escape] = STATE(261), - [sym_commonmark_attribute] = STATE(261), - [sym_code_span] = STATE(261), - [sym_latex_span] = STATE(261), - [sym_superscript] = STATE(261), - [sym_subscript] = STATE(261), - [sym_strikeout] = STATE(261), - [sym_quoted_span] = STATE(261), - [sym_inline_note] = STATE(261), - [sym_citation] = STATE(261), - [sym_shortcode_escaped] = STATE(261), - [sym_shortcode] = STATE(261), - [sym_note_reference] = STATE(261), - [sym__link_text] = STATE(322), - [sym__link_text_non_empty] = STATE(323), - [sym_inline_link] = STATE(174), - [sym_image] = STATE(261), - [sym__image_inline_link] = STATE(595), - [sym__image_description] = STATE(1972), - [sym__image_description_non_empty] = STATE(1972), - [sym_hard_line_break] = STATE(261), - [sym__whitespace] = STATE(587), - [sym__word] = STATE(587), - [sym__soft_line_break] = STATE(597), - [sym__inline_base] = STATE(174), - [sym__text_base] = STATE(261), - [sym__inline_element_no_star] = STATE(174), - [aux_sym__inline_no_star] = STATE(174), - [sym__emphasis_star] = STATE(544), - [sym__strong_emphasis_star] = STATE(174), - [sym__emphasis_underscore] = STATE(544), - [sym__strong_emphasis_underscore] = STATE(174), - [aux_sym__inline_base_repeat1] = STATE(261), - [sym__backslash_escape] = ACTIONS(969), - [sym_entity_reference] = ACTIONS(971), - [sym_numeric_character_reference] = ACTIONS(971), - [anon_sym_LT] = ACTIONS(973), - [anon_sym_GT] = ACTIONS(975), - [anon_sym_BANG] = ACTIONS(977), - [anon_sym_DQUOTE] = ACTIONS(975), - [anon_sym_POUND] = ACTIONS(975), - [anon_sym_DOLLAR] = ACTIONS(975), - [anon_sym_PERCENT] = ACTIONS(975), - [anon_sym_AMP] = ACTIONS(973), - [anon_sym_SQUOTE] = ACTIONS(975), - [anon_sym_STAR] = ACTIONS(975), - [anon_sym_PLUS] = ACTIONS(975), - [anon_sym_COMMA] = ACTIONS(975), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_DOT] = ACTIONS(973), - [anon_sym_SLASH] = ACTIONS(975), - [anon_sym_COLON] = ACTIONS(975), - [anon_sym_SEMI] = ACTIONS(975), - [anon_sym_EQ] = ACTIONS(975), - [anon_sym_QMARK] = ACTIONS(975), - [anon_sym_LBRACK] = ACTIONS(979), - [anon_sym_BSLASH] = ACTIONS(981), - [anon_sym_CARET] = ACTIONS(973), - [anon_sym__] = ACTIONS(975), - [anon_sym_BQUOTE] = ACTIONS(975), - [anon_sym_LBRACE] = ACTIONS(983), - [anon_sym_PIPE] = ACTIONS(975), - [anon_sym_TILDE] = ACTIONS(975), - [anon_sym_LPAREN] = ACTIONS(975), - [anon_sym_RPAREN] = ACTIONS(975), - [sym__newline_token] = ACTIONS(985), - [anon_sym_CARET_LBRACK] = ACTIONS(987), - [anon_sym_LBRACK_CARET] = ACTIONS(989), - [sym_uri_autolink] = ACTIONS(971), - [sym_email_autolink] = ACTIONS(971), - [sym__whitespace_ge_2] = ACTIONS(991), - [aux_sym__whitespace_token1] = ACTIONS(993), - [sym__word_no_digit] = ACTIONS(995), - [sym__digits] = ACTIONS(995), - [anon_sym_DASH_DASH] = ACTIONS(997), - [anon_sym_DASH_DASH_DASH] = ACTIONS(995), - [anon_sym_DOT_DOT_DOT] = ACTIONS(995), - [sym__code_span_start] = ACTIONS(999), - [sym__emphasis_open_star] = ACTIONS(1001), - [sym__emphasis_open_underscore] = ACTIONS(1003), - [sym__strikeout_open] = ACTIONS(1007), - [sym__latex_span_start] = ACTIONS(1009), - [sym__single_quote_open] = ACTIONS(1011), - [sym__double_quote_open] = ACTIONS(1013), - [sym__superscript_open] = ACTIONS(1015), - [sym__subscript_open] = ACTIONS(1017), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1019), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1021), - [sym__cite_author_in_text] = ACTIONS(1023), - [sym__cite_suppress_author] = ACTIONS(1025), - [sym__shortcode_open_escaped] = ACTIONS(1027), - [sym__shortcode_open] = ACTIONS(1029), - [sym__unclosed_span] = ACTIONS(971), + [sym_backslash_escape] = STATE(372), + [sym_commonmark_attribute] = STATE(372), + [sym_code_span] = STATE(372), + [sym_latex_span] = STATE(372), + [sym_insert] = STATE(372), + [sym_delete] = STATE(372), + [sym_highlight] = STATE(372), + [sym_edit_comment] = STATE(372), + [sym_superscript] = STATE(372), + [sym_subscript] = STATE(372), + [sym_strikeout] = STATE(372), + [sym_quoted_span] = STATE(372), + [sym_inline_note] = STATE(372), + [sym_citation] = STATE(372), + [sym_shortcode_escaped] = STATE(372), + [sym_shortcode] = STATE(372), + [sym_note_reference] = STATE(372), + [sym__link_text] = STATE(454), + [sym__link_text_non_empty] = STATE(455), + [sym_inline_link] = STATE(57), + [sym_image] = STATE(372), + [sym__image_inline_link] = STATE(1025), + [sym__image_description] = STATE(2356), + [sym__image_description_non_empty] = STATE(2356), + [sym_hard_line_break] = STATE(372), + [sym__whitespace] = STATE(1022), + [sym__word] = STATE(1022), + [sym__soft_line_break] = STATE(1026), + [sym__inline_base] = STATE(57), + [sym__text_base] = STATE(372), + [sym__inline_element] = STATE(57), + [sym__emphasis_star] = STATE(714), + [sym__strong_emphasis_star] = STATE(57), + [sym__emphasis_underscore] = STATE(714), + [sym__strong_emphasis_underscore] = STATE(57), + [aux_sym_insert_repeat1] = STATE(57), + [aux_sym__inline_base_repeat1] = STATE(372), + [sym__backslash_escape] = ACTIONS(707), + [sym_entity_reference] = ACTIONS(709), + [sym_numeric_character_reference] = ACTIONS(709), + [anon_sym_LT] = ACTIONS(711), + [anon_sym_GT] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(715), + [anon_sym_DQUOTE] = ACTIONS(713), + [anon_sym_POUND] = ACTIONS(713), + [anon_sym_DOLLAR] = ACTIONS(713), + [anon_sym_PERCENT] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(711), + [anon_sym_SQUOTE] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_COMMA] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_DOT] = ACTIONS(711), + [anon_sym_SLASH] = ACTIONS(713), + [anon_sym_COLON] = ACTIONS(713), + [anon_sym_SEMI] = ACTIONS(713), + [anon_sym_EQ] = ACTIONS(713), + [anon_sym_QMARK] = ACTIONS(713), + [anon_sym_LBRACK] = ACTIONS(717), + [anon_sym_BSLASH] = ACTIONS(719), + [anon_sym_CARET] = ACTIONS(711), + [anon_sym__] = ACTIONS(713), + [anon_sym_BQUOTE] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(721), + [anon_sym_PIPE] = ACTIONS(713), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_LPAREN] = ACTIONS(713), + [anon_sym_RPAREN] = ACTIONS(713), + [sym__newline_token] = ACTIONS(723), + [aux_sym_insert_token1] = ACTIONS(725), + [aux_sym_insert_token2] = ACTIONS(2625), + [aux_sym_delete_token1] = ACTIONS(729), + [aux_sym_highlight_token1] = ACTIONS(731), + [aux_sym_edit_comment_token1] = ACTIONS(733), + [anon_sym_CARET_LBRACK] = ACTIONS(735), + [anon_sym_LBRACK_CARET] = ACTIONS(737), + [sym_uri_autolink] = ACTIONS(709), + [sym_email_autolink] = ACTIONS(709), + [sym__whitespace_ge_2] = ACTIONS(739), + [aux_sym__whitespace_token1] = ACTIONS(741), + [sym__word_no_digit] = ACTIONS(743), + [sym__digits] = ACTIONS(743), + [anon_sym_DASH_DASH] = ACTIONS(745), + [anon_sym_DASH_DASH_DASH] = ACTIONS(743), + [anon_sym_DOT_DOT_DOT] = ACTIONS(743), + [sym__code_span_start] = ACTIONS(747), + [sym__emphasis_open_star] = ACTIONS(749), + [sym__emphasis_open_underscore] = ACTIONS(751), + [sym__strikeout_open] = ACTIONS(753), + [sym__latex_span_start] = ACTIONS(755), + [sym__single_quote_open] = ACTIONS(757), + [sym__double_quote_open] = ACTIONS(759), + [sym__superscript_open] = ACTIONS(761), + [sym__subscript_open] = ACTIONS(763), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(765), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(767), + [sym__cite_author_in_text] = ACTIONS(769), + [sym__cite_suppress_author] = ACTIONS(771), + [sym__shortcode_open_escaped] = ACTIONS(773), + [sym__shortcode_open] = ACTIONS(775), + [sym__unclosed_span] = ACTIONS(709), }, [STATE(213)] = { - [sym_backslash_escape] = STATE(274), - [sym_commonmark_attribute] = STATE(274), - [sym_code_span] = STATE(274), - [sym_latex_span] = STATE(274), - [sym_superscript] = STATE(274), - [sym_subscript] = STATE(274), - [sym_strikeout] = STATE(274), - [sym_quoted_span] = STATE(274), - [sym_inline_note] = STATE(274), - [sym_citation] = STATE(274), - [sym_shortcode_escaped] = STATE(274), - [sym_shortcode] = STATE(274), - [sym_note_reference] = STATE(274), - [sym__link_text] = STATE(351), - [sym__link_text_non_empty] = STATE(352), - [sym_inline_link] = STATE(175), - [sym_image] = STATE(274), - [sym__image_inline_link] = STATE(894), - [sym__image_description] = STATE(2008), - [sym__image_description_non_empty] = STATE(2008), - [sym_hard_line_break] = STATE(274), - [sym__whitespace] = STATE(882), - [sym__word] = STATE(882), - [sym__soft_line_break] = STATE(898), - [sym__inline_base] = STATE(175), - [sym__text_base] = STATE(274), - [sym__inline_element_no_underscore] = STATE(175), - [aux_sym__inline_no_underscore] = STATE(175), - [sym__emphasis_star] = STATE(711), - [sym__strong_emphasis_star] = STATE(175), - [sym__emphasis_underscore] = STATE(711), - [sym__strong_emphasis_underscore] = STATE(175), - [aux_sym__inline_base_repeat1] = STATE(274), - [sym__backslash_escape] = ACTIONS(1123), - [sym_entity_reference] = ACTIONS(1125), - [sym_numeric_character_reference] = ACTIONS(1125), - [anon_sym_LT] = ACTIONS(1127), - [anon_sym_GT] = ACTIONS(1129), - [anon_sym_BANG] = ACTIONS(1131), - [anon_sym_DQUOTE] = ACTIONS(1129), - [anon_sym_POUND] = ACTIONS(1129), - [anon_sym_DOLLAR] = ACTIONS(1129), - [anon_sym_PERCENT] = ACTIONS(1129), - [anon_sym_AMP] = ACTIONS(1127), - [anon_sym_SQUOTE] = ACTIONS(1129), - [anon_sym_STAR] = ACTIONS(1129), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_COMMA] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1127), - [anon_sym_DOT] = ACTIONS(1127), - [anon_sym_SLASH] = ACTIONS(1129), - [anon_sym_COLON] = ACTIONS(1129), - [anon_sym_SEMI] = ACTIONS(1129), - [anon_sym_EQ] = ACTIONS(1129), - [anon_sym_QMARK] = ACTIONS(1129), - [anon_sym_LBRACK] = ACTIONS(1133), - [anon_sym_BSLASH] = ACTIONS(1135), - [anon_sym_CARET] = ACTIONS(1127), - [anon_sym__] = ACTIONS(1129), - [anon_sym_BQUOTE] = ACTIONS(1129), - [anon_sym_LBRACE] = ACTIONS(1137), - [anon_sym_PIPE] = ACTIONS(1129), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1129), - [anon_sym_RPAREN] = ACTIONS(1129), - [sym__newline_token] = ACTIONS(1139), - [anon_sym_CARET_LBRACK] = ACTIONS(1141), - [anon_sym_LBRACK_CARET] = ACTIONS(1143), - [sym_uri_autolink] = ACTIONS(1125), - [sym_email_autolink] = ACTIONS(1125), - [sym__whitespace_ge_2] = ACTIONS(1145), - [aux_sym__whitespace_token1] = ACTIONS(1147), - [sym__word_no_digit] = ACTIONS(1149), - [sym__digits] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1151), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1149), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1149), - [sym__code_span_start] = ACTIONS(1153), - [sym__emphasis_open_star] = ACTIONS(1155), - [sym__emphasis_open_underscore] = ACTIONS(1157), - [sym__strikeout_open] = ACTIONS(1161), - [sym__latex_span_start] = ACTIONS(1163), - [sym__single_quote_open] = ACTIONS(1165), - [sym__double_quote_open] = ACTIONS(1167), - [sym__superscript_open] = ACTIONS(1169), - [sym__subscript_open] = ACTIONS(1171), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1173), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1175), - [sym__cite_author_in_text] = ACTIONS(1177), - [sym__cite_suppress_author] = ACTIONS(1179), - [sym__shortcode_open_escaped] = ACTIONS(1181), - [sym__shortcode_open] = ACTIONS(1183), - [sym__unclosed_span] = ACTIONS(1125), + [sym_backslash_escape] = STATE(370), + [sym_commonmark_attribute] = STATE(370), + [sym_code_span] = STATE(370), + [sym_latex_span] = STATE(370), + [sym_insert] = STATE(370), + [sym_delete] = STATE(370), + [sym_highlight] = STATE(370), + [sym_edit_comment] = STATE(370), + [sym_superscript] = STATE(370), + [sym_subscript] = STATE(370), + [sym_strikeout] = STATE(370), + [sym_quoted_span] = STATE(370), + [sym_inline_note] = STATE(370), + [sym_citation] = STATE(370), + [sym_shortcode_escaped] = STATE(370), + [sym_shortcode] = STATE(370), + [sym_note_reference] = STATE(370), + [sym__link_text] = STATE(472), + [sym__link_text_non_empty] = STATE(473), + [sym_inline_link] = STATE(217), + [sym_image] = STATE(370), + [sym__image_inline_link] = STATE(923), + [sym__image_description] = STATE(2342), + [sym__image_description_non_empty] = STATE(2342), + [sym_hard_line_break] = STATE(370), + [sym__whitespace] = STATE(920), + [sym__word] = STATE(920), + [sym__soft_line_break] = STATE(924), + [sym__inline_base] = STATE(217), + [sym__text_base] = STATE(370), + [sym__inline_element] = STATE(217), + [sym__emphasis_star] = STATE(821), + [sym__strong_emphasis_star] = STATE(217), + [sym__emphasis_underscore] = STATE(821), + [sym__strong_emphasis_underscore] = STATE(217), + [aux_sym_insert_repeat1] = STATE(217), + [aux_sym__inline_base_repeat1] = STATE(370), + [sym__backslash_escape] = ACTIONS(73), + [sym_entity_reference] = ACTIONS(75), + [sym_numeric_character_reference] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_BANG] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_POUND] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(79), + [anon_sym_PERCENT] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_STAR] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_COMMA] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_DOT] = ACTIONS(77), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_COLON] = ACTIONS(79), + [anon_sym_SEMI] = ACTIONS(79), + [anon_sym_EQ] = ACTIONS(79), + [anon_sym_QMARK] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(83), + [anon_sym_BSLASH] = ACTIONS(85), + [anon_sym_RBRACK] = ACTIONS(2627), + [anon_sym_CARET] = ACTIONS(77), + [anon_sym__] = ACTIONS(79), + [anon_sym_BQUOTE] = ACTIONS(79), + [anon_sym_LBRACE] = ACTIONS(89), + [anon_sym_PIPE] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(79), + [anon_sym_RPAREN] = ACTIONS(79), + [sym__newline_token] = ACTIONS(91), + [aux_sym_insert_token1] = ACTIONS(93), + [aux_sym_delete_token1] = ACTIONS(95), + [aux_sym_highlight_token1] = ACTIONS(97), + [aux_sym_edit_comment_token1] = ACTIONS(99), + [anon_sym_CARET_LBRACK] = ACTIONS(101), + [anon_sym_LBRACK_CARET] = ACTIONS(103), + [sym_uri_autolink] = ACTIONS(75), + [sym_email_autolink] = ACTIONS(75), + [sym__whitespace_ge_2] = ACTIONS(105), + [aux_sym__whitespace_token1] = ACTIONS(107), + [sym__word_no_digit] = ACTIONS(109), + [sym__digits] = ACTIONS(109), + [anon_sym_DASH_DASH] = ACTIONS(111), + [anon_sym_DASH_DASH_DASH] = ACTIONS(109), + [anon_sym_DOT_DOT_DOT] = ACTIONS(109), + [sym__code_span_start] = ACTIONS(113), + [sym__emphasis_open_star] = ACTIONS(115), + [sym__emphasis_open_underscore] = ACTIONS(117), + [sym__strikeout_open] = ACTIONS(121), + [sym__latex_span_start] = ACTIONS(123), + [sym__single_quote_open] = ACTIONS(125), + [sym__double_quote_open] = ACTIONS(127), + [sym__superscript_open] = ACTIONS(129), + [sym__subscript_open] = ACTIONS(131), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(133), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(135), + [sym__cite_author_in_text] = ACTIONS(137), + [sym__cite_suppress_author] = ACTIONS(139), + [sym__shortcode_open_escaped] = ACTIONS(141), + [sym__shortcode_open] = ACTIONS(143), + [sym__unclosed_span] = ACTIONS(75), }, [STATE(214)] = { - [sym_backslash_escape] = STATE(261), - [sym_commonmark_attribute] = STATE(261), - [sym_code_span] = STATE(261), - [sym_latex_span] = STATE(261), - [sym_superscript] = STATE(261), - [sym_subscript] = STATE(261), - [sym_strikeout] = STATE(261), - [sym_quoted_span] = STATE(261), - [sym_inline_note] = STATE(261), - [sym_citation] = STATE(261), - [sym_shortcode_escaped] = STATE(261), - [sym_shortcode] = STATE(261), - [sym_note_reference] = STATE(261), - [sym__link_text] = STATE(322), - [sym__link_text_non_empty] = STATE(323), - [sym_inline_link] = STATE(192), - [sym_image] = STATE(261), - [sym__image_inline_link] = STATE(595), - [sym__image_description] = STATE(1972), - [sym__image_description_non_empty] = STATE(1972), - [sym_hard_line_break] = STATE(261), - [sym__whitespace] = STATE(587), - [sym__word] = STATE(587), - [sym__soft_line_break] = STATE(597), - [sym__inline_base] = STATE(192), - [sym__text_base] = STATE(261), - [sym__inline_element_no_star] = STATE(192), - [aux_sym__inline_no_star] = STATE(192), - [sym__emphasis_star] = STATE(544), - [sym__strong_emphasis_star] = STATE(192), - [sym__emphasis_underscore] = STATE(544), - [sym__strong_emphasis_underscore] = STATE(192), - [aux_sym__inline_base_repeat1] = STATE(261), - [sym__backslash_escape] = ACTIONS(969), - [sym_entity_reference] = ACTIONS(971), - [sym_numeric_character_reference] = ACTIONS(971), - [anon_sym_LT] = ACTIONS(973), - [anon_sym_GT] = ACTIONS(975), - [anon_sym_BANG] = ACTIONS(977), - [anon_sym_DQUOTE] = ACTIONS(975), - [anon_sym_POUND] = ACTIONS(975), - [anon_sym_DOLLAR] = ACTIONS(975), - [anon_sym_PERCENT] = ACTIONS(975), - [anon_sym_AMP] = ACTIONS(973), - [anon_sym_SQUOTE] = ACTIONS(975), - [anon_sym_STAR] = ACTIONS(975), - [anon_sym_PLUS] = ACTIONS(975), - [anon_sym_COMMA] = ACTIONS(975), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_DOT] = ACTIONS(973), - [anon_sym_SLASH] = ACTIONS(975), - [anon_sym_COLON] = ACTIONS(975), - [anon_sym_SEMI] = ACTIONS(975), - [anon_sym_EQ] = ACTIONS(975), - [anon_sym_QMARK] = ACTIONS(975), - [anon_sym_LBRACK] = ACTIONS(979), - [anon_sym_BSLASH] = ACTIONS(981), - [anon_sym_CARET] = ACTIONS(973), - [anon_sym__] = ACTIONS(975), - [anon_sym_BQUOTE] = ACTIONS(975), - [anon_sym_LBRACE] = ACTIONS(983), - [anon_sym_PIPE] = ACTIONS(975), - [anon_sym_TILDE] = ACTIONS(975), - [anon_sym_LPAREN] = ACTIONS(975), - [anon_sym_RPAREN] = ACTIONS(975), - [sym__newline_token] = ACTIONS(985), - [anon_sym_CARET_LBRACK] = ACTIONS(987), - [anon_sym_LBRACK_CARET] = ACTIONS(989), - [sym_uri_autolink] = ACTIONS(971), - [sym_email_autolink] = ACTIONS(971), - [sym__whitespace_ge_2] = ACTIONS(991), - [aux_sym__whitespace_token1] = ACTIONS(993), - [sym__word_no_digit] = ACTIONS(995), - [sym__digits] = ACTIONS(995), - [anon_sym_DASH_DASH] = ACTIONS(997), - [anon_sym_DASH_DASH_DASH] = ACTIONS(995), - [anon_sym_DOT_DOT_DOT] = ACTIONS(995), - [sym__code_span_start] = ACTIONS(999), - [sym__emphasis_open_star] = ACTIONS(1001), - [sym__emphasis_open_underscore] = ACTIONS(1003), - [sym__strikeout_open] = ACTIONS(1007), - [sym__latex_span_start] = ACTIONS(1009), - [sym__single_quote_open] = ACTIONS(1011), - [sym__double_quote_open] = ACTIONS(1013), - [sym__superscript_open] = ACTIONS(1015), - [sym__subscript_open] = ACTIONS(1017), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1019), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1021), - [sym__cite_author_in_text] = ACTIONS(1023), - [sym__cite_suppress_author] = ACTIONS(1025), - [sym__shortcode_open_escaped] = ACTIONS(1027), - [sym__shortcode_open] = ACTIONS(1029), - [sym__unclosed_span] = ACTIONS(971), + [sym_backslash_escape] = STATE(370), + [sym_commonmark_attribute] = STATE(370), + [sym_code_span] = STATE(370), + [sym_latex_span] = STATE(370), + [sym_insert] = STATE(370), + [sym_delete] = STATE(370), + [sym_highlight] = STATE(370), + [sym_edit_comment] = STATE(370), + [sym_superscript] = STATE(370), + [sym_subscript] = STATE(370), + [sym_strikeout] = STATE(370), + [sym_quoted_span] = STATE(370), + [sym_inline_note] = STATE(370), + [sym_citation] = STATE(370), + [sym_shortcode_escaped] = STATE(370), + [sym_shortcode] = STATE(370), + [sym_note_reference] = STATE(370), + [sym__link_text] = STATE(472), + [sym__link_text_non_empty] = STATE(473), + [sym_inline_link] = STATE(60), + [sym_image] = STATE(370), + [sym__image_inline_link] = STATE(923), + [sym__image_description] = STATE(2342), + [sym__image_description_non_empty] = STATE(2342), + [sym_hard_line_break] = STATE(370), + [sym__whitespace] = STATE(920), + [sym__word] = STATE(920), + [sym__soft_line_break] = STATE(924), + [sym__inline_base] = STATE(60), + [sym__text_base] = STATE(370), + [sym__inline_element] = STATE(60), + [sym__emphasis_star] = STATE(821), + [sym__strong_emphasis_star] = STATE(60), + [sym__emphasis_underscore] = STATE(821), + [sym__strong_emphasis_underscore] = STATE(60), + [aux_sym_insert_repeat1] = STATE(60), + [aux_sym__inline_base_repeat1] = STATE(370), + [sym__backslash_escape] = ACTIONS(73), + [sym_entity_reference] = ACTIONS(75), + [sym_numeric_character_reference] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_BANG] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_POUND] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(79), + [anon_sym_PERCENT] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_STAR] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_COMMA] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_DOT] = ACTIONS(77), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_COLON] = ACTIONS(79), + [anon_sym_SEMI] = ACTIONS(79), + [anon_sym_EQ] = ACTIONS(79), + [anon_sym_QMARK] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(83), + [anon_sym_BSLASH] = ACTIONS(85), + [anon_sym_RBRACK] = ACTIONS(2629), + [anon_sym_CARET] = ACTIONS(77), + [anon_sym__] = ACTIONS(79), + [anon_sym_BQUOTE] = ACTIONS(79), + [anon_sym_LBRACE] = ACTIONS(89), + [anon_sym_PIPE] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(79), + [anon_sym_RPAREN] = ACTIONS(79), + [sym__newline_token] = ACTIONS(91), + [aux_sym_insert_token1] = ACTIONS(93), + [aux_sym_delete_token1] = ACTIONS(95), + [aux_sym_highlight_token1] = ACTIONS(97), + [aux_sym_edit_comment_token1] = ACTIONS(99), + [anon_sym_CARET_LBRACK] = ACTIONS(101), + [anon_sym_LBRACK_CARET] = ACTIONS(103), + [sym_uri_autolink] = ACTIONS(75), + [sym_email_autolink] = ACTIONS(75), + [sym__whitespace_ge_2] = ACTIONS(105), + [aux_sym__whitespace_token1] = ACTIONS(107), + [sym__word_no_digit] = ACTIONS(109), + [sym__digits] = ACTIONS(109), + [anon_sym_DASH_DASH] = ACTIONS(111), + [anon_sym_DASH_DASH_DASH] = ACTIONS(109), + [anon_sym_DOT_DOT_DOT] = ACTIONS(109), + [sym__code_span_start] = ACTIONS(113), + [sym__emphasis_open_star] = ACTIONS(115), + [sym__emphasis_open_underscore] = ACTIONS(117), + [sym__strikeout_open] = ACTIONS(121), + [sym__latex_span_start] = ACTIONS(123), + [sym__single_quote_open] = ACTIONS(125), + [sym__double_quote_open] = ACTIONS(127), + [sym__superscript_open] = ACTIONS(129), + [sym__subscript_open] = ACTIONS(131), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(133), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(135), + [sym__cite_author_in_text] = ACTIONS(137), + [sym__cite_suppress_author] = ACTIONS(139), + [sym__shortcode_open_escaped] = ACTIONS(141), + [sym__shortcode_open] = ACTIONS(143), + [sym__unclosed_span] = ACTIONS(75), }, [STATE(215)] = { - [sym_backslash_escape] = STATE(261), - [sym_commonmark_attribute] = STATE(261), - [sym_code_span] = STATE(261), - [sym_latex_span] = STATE(261), - [sym_superscript] = STATE(261), - [sym_subscript] = STATE(261), - [sym_strikeout] = STATE(261), - [sym_quoted_span] = STATE(261), - [sym_inline_note] = STATE(261), - [sym_citation] = STATE(261), - [sym_shortcode_escaped] = STATE(261), - [sym_shortcode] = STATE(261), - [sym_note_reference] = STATE(261), - [sym_image] = STATE(261), - [sym__image_inline_link] = STATE(595), - [sym__image_description] = STATE(1972), - [sym__image_description_non_empty] = STATE(1972), - [sym_hard_line_break] = STATE(261), - [sym__whitespace] = STATE(587), - [sym__word] = STATE(587), - [sym__soft_line_break] = STATE(597), - [sym__inline_base] = STATE(235), - [sym__text_base] = STATE(261), - [sym__inline_element_no_star_no_link] = STATE(235), - [aux_sym__inline_no_star_no_link] = STATE(235), - [sym__emphasis_star_no_link] = STATE(1165), - [sym__strong_emphasis_star_no_link] = STATE(235), - [sym__emphasis_underscore_no_link] = STATE(1145), - [sym__strong_emphasis_underscore_no_link] = STATE(235), - [aux_sym__inline_base_repeat1] = STATE(261), - [sym__backslash_escape] = ACTIONS(2169), - [sym_entity_reference] = ACTIONS(2172), - [sym_numeric_character_reference] = ACTIONS(2172), - [anon_sym_LT] = ACTIONS(2175), - [anon_sym_GT] = ACTIONS(2178), - [anon_sym_BANG] = ACTIONS(2181), - [anon_sym_DQUOTE] = ACTIONS(2178), - [anon_sym_POUND] = ACTIONS(2178), - [anon_sym_DOLLAR] = ACTIONS(2178), - [anon_sym_PERCENT] = ACTIONS(2178), - [anon_sym_AMP] = ACTIONS(2175), - [anon_sym_SQUOTE] = ACTIONS(2178), - [anon_sym_STAR] = ACTIONS(2178), - [anon_sym_PLUS] = ACTIONS(2178), - [anon_sym_COMMA] = ACTIONS(2178), - [anon_sym_DASH] = ACTIONS(2175), - [anon_sym_DOT] = ACTIONS(2175), - [anon_sym_SLASH] = ACTIONS(2178), - [anon_sym_COLON] = ACTIONS(2178), - [anon_sym_SEMI] = ACTIONS(2178), - [anon_sym_EQ] = ACTIONS(2178), - [anon_sym_QMARK] = ACTIONS(2178), - [anon_sym_BSLASH] = ACTIONS(2184), - [anon_sym_CARET] = ACTIONS(2175), - [anon_sym__] = ACTIONS(2178), - [anon_sym_BQUOTE] = ACTIONS(2178), - [anon_sym_LBRACE] = ACTIONS(2187), - [anon_sym_PIPE] = ACTIONS(2178), - [anon_sym_TILDE] = ACTIONS(2178), - [anon_sym_LPAREN] = ACTIONS(2178), - [anon_sym_RPAREN] = ACTIONS(2178), - [sym__newline_token] = ACTIONS(2190), - [anon_sym_CARET_LBRACK] = ACTIONS(2193), - [anon_sym_LBRACK_CARET] = ACTIONS(2196), - [sym_uri_autolink] = ACTIONS(2172), - [sym_email_autolink] = ACTIONS(2172), - [sym__whitespace_ge_2] = ACTIONS(2199), - [aux_sym__whitespace_token1] = ACTIONS(2202), - [sym__word_no_digit] = ACTIONS(2205), - [sym__digits] = ACTIONS(2205), - [anon_sym_DASH_DASH] = ACTIONS(2208), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2205), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2205), - [sym__code_span_start] = ACTIONS(2211), - [sym__emphasis_open_star] = ACTIONS(2214), - [sym__emphasis_open_underscore] = ACTIONS(2217), - [sym__emphasis_close_underscore] = ACTIONS(2220), - [sym__last_token_punctuation] = ACTIONS(2222), - [sym__strikeout_open] = ACTIONS(2224), - [sym__latex_span_start] = ACTIONS(2227), - [sym__single_quote_open] = ACTIONS(2230), - [sym__double_quote_open] = ACTIONS(2233), - [sym__superscript_open] = ACTIONS(2236), - [sym__subscript_open] = ACTIONS(2239), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2242), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2245), - [sym__cite_author_in_text] = ACTIONS(2248), - [sym__cite_suppress_author] = ACTIONS(2251), - [sym__shortcode_open_escaped] = ACTIONS(2254), - [sym__shortcode_open] = ACTIONS(2257), - [sym__unclosed_span] = ACTIONS(2172), + [sym_backslash_escape] = STATE(373), + [sym_commonmark_attribute] = STATE(373), + [sym_code_span] = STATE(373), + [sym_latex_span] = STATE(373), + [sym_insert] = STATE(373), + [sym_delete] = STATE(373), + [sym_highlight] = STATE(373), + [sym_edit_comment] = STATE(373), + [sym_superscript] = STATE(373), + [sym_subscript] = STATE(373), + [sym_strikeout] = STATE(373), + [sym_quoted_span] = STATE(373), + [sym_inline_note] = STATE(373), + [sym_citation] = STATE(373), + [sym_shortcode_escaped] = STATE(373), + [sym_shortcode] = STATE(373), + [sym_note_reference] = STATE(373), + [sym__link_text] = STATE(522), + [sym__link_text_non_empty] = STATE(523), + [sym_inline_link] = STATE(36), + [sym_image] = STATE(373), + [sym__image_inline_link] = STATE(1265), + [sym__image_description] = STATE(2331), + [sym__image_description_non_empty] = STATE(2331), + [sym_hard_line_break] = STATE(373), + [sym__whitespace] = STATE(1262), + [sym__word] = STATE(1262), + [sym__soft_line_break] = STATE(1267), + [sym__inline_base] = STATE(36), + [sym__text_base] = STATE(373), + [sym__inline_element_no_star] = STATE(36), + [aux_sym__inline_no_star] = STATE(36), + [sym__emphasis_star] = STATE(1147), + [sym__strong_emphasis_star] = STATE(36), + [sym__emphasis_underscore] = STATE(1147), + [sym__strong_emphasis_underscore] = STATE(36), + [aux_sym__inline_base_repeat1] = STATE(373), + [sym__backslash_escape] = ACTIONS(885), + [sym_entity_reference] = ACTIONS(887), + [sym_numeric_character_reference] = ACTIONS(887), + [anon_sym_LT] = ACTIONS(889), + [anon_sym_GT] = ACTIONS(891), + [anon_sym_BANG] = ACTIONS(893), + [anon_sym_DQUOTE] = ACTIONS(891), + [anon_sym_POUND] = ACTIONS(891), + [anon_sym_DOLLAR] = ACTIONS(891), + [anon_sym_PERCENT] = ACTIONS(891), + [anon_sym_AMP] = ACTIONS(889), + [anon_sym_SQUOTE] = ACTIONS(891), + [anon_sym_STAR] = ACTIONS(891), + [anon_sym_PLUS] = ACTIONS(891), + [anon_sym_COMMA] = ACTIONS(891), + [anon_sym_DASH] = ACTIONS(889), + [anon_sym_DOT] = ACTIONS(889), + [anon_sym_SLASH] = ACTIONS(891), + [anon_sym_COLON] = ACTIONS(891), + [anon_sym_SEMI] = ACTIONS(891), + [anon_sym_EQ] = ACTIONS(891), + [anon_sym_QMARK] = ACTIONS(891), + [anon_sym_LBRACK] = ACTIONS(895), + [anon_sym_BSLASH] = ACTIONS(897), + [anon_sym_CARET] = ACTIONS(889), + [anon_sym__] = ACTIONS(891), + [anon_sym_BQUOTE] = ACTIONS(891), + [anon_sym_LBRACE] = ACTIONS(899), + [anon_sym_PIPE] = ACTIONS(891), + [anon_sym_TILDE] = ACTIONS(891), + [anon_sym_LPAREN] = ACTIONS(891), + [anon_sym_RPAREN] = ACTIONS(891), + [sym__newline_token] = ACTIONS(901), + [aux_sym_insert_token1] = ACTIONS(903), + [aux_sym_delete_token1] = ACTIONS(905), + [aux_sym_highlight_token1] = ACTIONS(907), + [aux_sym_edit_comment_token1] = ACTIONS(909), + [anon_sym_CARET_LBRACK] = ACTIONS(911), + [anon_sym_LBRACK_CARET] = ACTIONS(913), + [sym_uri_autolink] = ACTIONS(887), + [sym_email_autolink] = ACTIONS(887), + [sym__whitespace_ge_2] = ACTIONS(915), + [aux_sym__whitespace_token1] = ACTIONS(917), + [sym__word_no_digit] = ACTIONS(919), + [sym__digits] = ACTIONS(919), + [anon_sym_DASH_DASH] = ACTIONS(921), + [anon_sym_DASH_DASH_DASH] = ACTIONS(919), + [anon_sym_DOT_DOT_DOT] = ACTIONS(919), + [sym__code_span_start] = ACTIONS(923), + [sym__emphasis_open_star] = ACTIONS(925), + [sym__emphasis_open_underscore] = ACTIONS(927), + [sym__emphasis_close_star] = ACTIONS(2631), + [sym__strikeout_open] = ACTIONS(931), + [sym__latex_span_start] = ACTIONS(933), + [sym__single_quote_open] = ACTIONS(935), + [sym__double_quote_open] = ACTIONS(937), + [sym__superscript_open] = ACTIONS(939), + [sym__subscript_open] = ACTIONS(941), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(943), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(945), + [sym__cite_author_in_text] = ACTIONS(947), + [sym__cite_suppress_author] = ACTIONS(949), + [sym__shortcode_open_escaped] = ACTIONS(951), + [sym__shortcode_open] = ACTIONS(953), + [sym__unclosed_span] = ACTIONS(887), }, [STATE(216)] = { - [sym_backslash_escape] = STATE(261), - [sym_commonmark_attribute] = STATE(261), - [sym_code_span] = STATE(261), - [sym_latex_span] = STATE(261), - [sym_superscript] = STATE(261), - [sym_subscript] = STATE(261), - [sym_strikeout] = STATE(261), - [sym_quoted_span] = STATE(261), - [sym_inline_note] = STATE(261), - [sym_citation] = STATE(261), - [sym_shortcode_escaped] = STATE(261), - [sym_shortcode] = STATE(261), - [sym_note_reference] = STATE(261), - [sym_image] = STATE(261), - [sym__image_inline_link] = STATE(595), - [sym__image_description] = STATE(1972), - [sym__image_description_non_empty] = STATE(1972), - [sym_hard_line_break] = STATE(261), - [sym__whitespace] = STATE(587), - [sym__word] = STATE(587), - [sym__soft_line_break] = STATE(597), - [sym__inline_base] = STATE(219), - [sym__text_base] = STATE(261), - [sym__inline_element_no_star_no_link] = STATE(219), - [aux_sym__inline_no_star_no_link] = STATE(219), - [sym__emphasis_star_no_link] = STATE(1151), - [sym__strong_emphasis_star_no_link] = STATE(219), - [sym__emphasis_underscore_no_link] = STATE(1145), - [sym__strong_emphasis_underscore_no_link] = STATE(219), - [aux_sym__inline_base_repeat1] = STATE(261), - [sym__backslash_escape] = ACTIONS(2260), - [sym_entity_reference] = ACTIONS(2263), - [sym_numeric_character_reference] = ACTIONS(2263), - [anon_sym_LT] = ACTIONS(2266), - [anon_sym_GT] = ACTIONS(2269), - [anon_sym_BANG] = ACTIONS(2272), - [anon_sym_DQUOTE] = ACTIONS(2269), - [anon_sym_POUND] = ACTIONS(2269), - [anon_sym_DOLLAR] = ACTIONS(2269), - [anon_sym_PERCENT] = ACTIONS(2269), - [anon_sym_AMP] = ACTIONS(2266), - [anon_sym_SQUOTE] = ACTIONS(2269), - [anon_sym_STAR] = ACTIONS(2269), - [anon_sym_PLUS] = ACTIONS(2269), - [anon_sym_COMMA] = ACTIONS(2269), - [anon_sym_DASH] = ACTIONS(2266), - [anon_sym_DOT] = ACTIONS(2266), - [anon_sym_SLASH] = ACTIONS(2269), - [anon_sym_COLON] = ACTIONS(2269), - [anon_sym_SEMI] = ACTIONS(2269), - [anon_sym_EQ] = ACTIONS(2269), - [anon_sym_QMARK] = ACTIONS(2269), - [anon_sym_BSLASH] = ACTIONS(2275), - [anon_sym_RBRACK] = ACTIONS(2278), - [anon_sym_CARET] = ACTIONS(2266), - [anon_sym__] = ACTIONS(2269), - [anon_sym_BQUOTE] = ACTIONS(2269), - [anon_sym_LBRACE] = ACTIONS(2280), - [anon_sym_PIPE] = ACTIONS(2269), - [anon_sym_TILDE] = ACTIONS(2269), - [anon_sym_LPAREN] = ACTIONS(2269), - [anon_sym_RPAREN] = ACTIONS(2269), - [sym__newline_token] = ACTIONS(2283), - [anon_sym_CARET_LBRACK] = ACTIONS(2286), - [anon_sym_LBRACK_CARET] = ACTIONS(2289), - [sym_uri_autolink] = ACTIONS(2263), - [sym_email_autolink] = ACTIONS(2263), - [sym__whitespace_ge_2] = ACTIONS(2292), - [aux_sym__whitespace_token1] = ACTIONS(2295), - [sym__word_no_digit] = ACTIONS(2298), - [sym__digits] = ACTIONS(2298), - [anon_sym_DASH_DASH] = ACTIONS(2301), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2298), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2298), - [sym__code_span_start] = ACTIONS(2304), - [sym__emphasis_open_star] = ACTIONS(2307), - [sym__emphasis_open_underscore] = ACTIONS(2310), - [sym__last_token_punctuation] = ACTIONS(2313), - [sym__strikeout_open] = ACTIONS(2315), - [sym__latex_span_start] = ACTIONS(2318), - [sym__single_quote_open] = ACTIONS(2321), - [sym__double_quote_open] = ACTIONS(2324), - [sym__superscript_open] = ACTIONS(2327), - [sym__subscript_open] = ACTIONS(2330), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2333), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2336), - [sym__cite_author_in_text] = ACTIONS(2339), - [sym__cite_suppress_author] = ACTIONS(2342), - [sym__shortcode_open_escaped] = ACTIONS(2345), - [sym__shortcode_open] = ACTIONS(2348), - [sym__unclosed_span] = ACTIONS(2263), + [sym_backslash_escape] = STATE(379), + [sym_commonmark_attribute] = STATE(379), + [sym_code_span] = STATE(379), + [sym_latex_span] = STATE(379), + [sym_insert] = STATE(379), + [sym_delete] = STATE(379), + [sym_highlight] = STATE(379), + [sym_edit_comment] = STATE(379), + [sym_superscript] = STATE(379), + [sym_subscript] = STATE(379), + [sym_strikeout] = STATE(379), + [sym_quoted_span] = STATE(379), + [sym_inline_note] = STATE(379), + [sym_citation] = STATE(379), + [sym_shortcode_escaped] = STATE(379), + [sym_shortcode] = STATE(379), + [sym_note_reference] = STATE(379), + [sym__link_text] = STATE(545), + [sym__link_text_non_empty] = STATE(546), + [sym_inline_link] = STATE(38), + [sym_image] = STATE(379), + [sym__image_inline_link] = STATE(1390), + [sym__image_description] = STATE(2363), + [sym__image_description_non_empty] = STATE(2363), + [sym_hard_line_break] = STATE(379), + [sym__whitespace] = STATE(1385), + [sym__word] = STATE(1385), + [sym__soft_line_break] = STATE(1391), + [sym__inline_base] = STATE(38), + [sym__text_base] = STATE(379), + [sym__inline_element_no_underscore] = STATE(38), + [aux_sym__inline_no_underscore] = STATE(38), + [sym__emphasis_star] = STATE(1168), + [sym__strong_emphasis_star] = STATE(38), + [sym__emphasis_underscore] = STATE(1168), + [sym__strong_emphasis_underscore] = STATE(38), + [aux_sym__inline_base_repeat1] = STATE(379), + [sym__backslash_escape] = ACTIONS(1059), + [sym_entity_reference] = ACTIONS(1061), + [sym_numeric_character_reference] = ACTIONS(1061), + [anon_sym_LT] = ACTIONS(1063), + [anon_sym_GT] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1067), + [anon_sym_DQUOTE] = ACTIONS(1065), + [anon_sym_POUND] = ACTIONS(1065), + [anon_sym_DOLLAR] = ACTIONS(1065), + [anon_sym_PERCENT] = ACTIONS(1065), + [anon_sym_AMP] = ACTIONS(1063), + [anon_sym_SQUOTE] = ACTIONS(1065), + [anon_sym_STAR] = ACTIONS(1065), + [anon_sym_PLUS] = ACTIONS(1065), + [anon_sym_COMMA] = ACTIONS(1065), + [anon_sym_DASH] = ACTIONS(1063), + [anon_sym_DOT] = ACTIONS(1063), + [anon_sym_SLASH] = ACTIONS(1065), + [anon_sym_COLON] = ACTIONS(1065), + [anon_sym_SEMI] = ACTIONS(1065), + [anon_sym_EQ] = ACTIONS(1065), + [anon_sym_QMARK] = ACTIONS(1065), + [anon_sym_LBRACK] = ACTIONS(1069), + [anon_sym_BSLASH] = ACTIONS(1071), + [anon_sym_CARET] = ACTIONS(1063), + [anon_sym__] = ACTIONS(1065), + [anon_sym_BQUOTE] = ACTIONS(1065), + [anon_sym_LBRACE] = ACTIONS(1073), + [anon_sym_PIPE] = ACTIONS(1065), + [anon_sym_TILDE] = ACTIONS(1065), + [anon_sym_LPAREN] = ACTIONS(1065), + [anon_sym_RPAREN] = ACTIONS(1065), + [sym__newline_token] = ACTIONS(1075), + [aux_sym_insert_token1] = ACTIONS(1077), + [aux_sym_delete_token1] = ACTIONS(1079), + [aux_sym_highlight_token1] = ACTIONS(1081), + [aux_sym_edit_comment_token1] = ACTIONS(1083), + [anon_sym_CARET_LBRACK] = ACTIONS(1085), + [anon_sym_LBRACK_CARET] = ACTIONS(1087), + [sym_uri_autolink] = ACTIONS(1061), + [sym_email_autolink] = ACTIONS(1061), + [sym__whitespace_ge_2] = ACTIONS(1089), + [aux_sym__whitespace_token1] = ACTIONS(1091), + [sym__word_no_digit] = ACTIONS(1093), + [sym__digits] = ACTIONS(1093), + [anon_sym_DASH_DASH] = ACTIONS(1095), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1093), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1093), + [sym__code_span_start] = ACTIONS(1097), + [sym__emphasis_open_star] = ACTIONS(1099), + [sym__emphasis_open_underscore] = ACTIONS(1101), + [sym__emphasis_close_underscore] = ACTIONS(2633), + [sym__strikeout_open] = ACTIONS(1105), + [sym__latex_span_start] = ACTIONS(1107), + [sym__single_quote_open] = ACTIONS(1109), + [sym__double_quote_open] = ACTIONS(1111), + [sym__superscript_open] = ACTIONS(1113), + [sym__subscript_open] = ACTIONS(1115), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1117), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1119), + [sym__cite_author_in_text] = ACTIONS(1121), + [sym__cite_suppress_author] = ACTIONS(1123), + [sym__shortcode_open_escaped] = ACTIONS(1125), + [sym__shortcode_open] = ACTIONS(1127), + [sym__unclosed_span] = ACTIONS(1061), }, [STATE(217)] = { - [sym_backslash_escape] = STATE(274), - [sym_commonmark_attribute] = STATE(274), - [sym_code_span] = STATE(274), - [sym_latex_span] = STATE(274), - [sym_superscript] = STATE(274), - [sym_subscript] = STATE(274), - [sym_strikeout] = STATE(274), - [sym_quoted_span] = STATE(274), - [sym_inline_note] = STATE(274), - [sym_citation] = STATE(274), - [sym_shortcode_escaped] = STATE(274), - [sym_shortcode] = STATE(274), - [sym_note_reference] = STATE(274), - [sym_image] = STATE(274), - [sym__image_inline_link] = STATE(894), - [sym__image_description] = STATE(2008), - [sym__image_description_non_empty] = STATE(2008), - [sym_hard_line_break] = STATE(274), - [sym__whitespace] = STATE(882), - [sym__word] = STATE(882), - [sym__soft_line_break] = STATE(898), - [sym__inline_base] = STATE(228), - [sym__text_base] = STATE(274), - [sym__inline_element_no_underscore_no_link] = STATE(228), - [aux_sym__inline_no_underscore_no_link] = STATE(228), - [sym__emphasis_star_no_link] = STATE(1169), - [sym__strong_emphasis_star_no_link] = STATE(228), - [sym__emphasis_underscore_no_link] = STATE(1149), - [sym__strong_emphasis_underscore_no_link] = STATE(228), - [aux_sym__inline_base_repeat1] = STATE(274), - [sym__backslash_escape] = ACTIONS(2351), - [sym_entity_reference] = ACTIONS(2354), - [sym_numeric_character_reference] = ACTIONS(2354), - [anon_sym_LT] = ACTIONS(2357), - [anon_sym_GT] = ACTIONS(2360), - [anon_sym_BANG] = ACTIONS(2363), - [anon_sym_DQUOTE] = ACTIONS(2360), - [anon_sym_POUND] = ACTIONS(2360), - [anon_sym_DOLLAR] = ACTIONS(2360), - [anon_sym_PERCENT] = ACTIONS(2360), - [anon_sym_AMP] = ACTIONS(2357), - [anon_sym_SQUOTE] = ACTIONS(2360), - [anon_sym_STAR] = ACTIONS(2360), - [anon_sym_PLUS] = ACTIONS(2360), - [anon_sym_COMMA] = ACTIONS(2360), - [anon_sym_DASH] = ACTIONS(2357), - [anon_sym_DOT] = ACTIONS(2357), - [anon_sym_SLASH] = ACTIONS(2360), - [anon_sym_COLON] = ACTIONS(2360), - [anon_sym_SEMI] = ACTIONS(2360), - [anon_sym_EQ] = ACTIONS(2360), - [anon_sym_QMARK] = ACTIONS(2360), - [anon_sym_BSLASH] = ACTIONS(2366), - [anon_sym_CARET] = ACTIONS(2357), - [anon_sym__] = ACTIONS(2360), - [anon_sym_BQUOTE] = ACTIONS(2360), - [anon_sym_LBRACE] = ACTIONS(2369), - [anon_sym_PIPE] = ACTIONS(2360), - [anon_sym_TILDE] = ACTIONS(2360), - [anon_sym_LPAREN] = ACTIONS(2360), - [anon_sym_RPAREN] = ACTIONS(2360), - [sym__newline_token] = ACTIONS(2372), - [anon_sym_CARET_LBRACK] = ACTIONS(2375), - [anon_sym_LBRACK_CARET] = ACTIONS(2378), - [sym_uri_autolink] = ACTIONS(2354), - [sym_email_autolink] = ACTIONS(2354), - [sym__whitespace_ge_2] = ACTIONS(2381), - [aux_sym__whitespace_token1] = ACTIONS(2384), - [sym__word_no_digit] = ACTIONS(2387), - [sym__digits] = ACTIONS(2387), - [anon_sym_DASH_DASH] = ACTIONS(2390), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2387), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2387), - [sym__code_span_start] = ACTIONS(2393), - [sym__emphasis_open_star] = ACTIONS(2396), - [sym__emphasis_open_underscore] = ACTIONS(2399), - [sym__emphasis_close_star] = ACTIONS(2402), - [sym__last_token_punctuation] = ACTIONS(2404), - [sym__strikeout_open] = ACTIONS(2406), - [sym__latex_span_start] = ACTIONS(2409), - [sym__single_quote_open] = ACTIONS(2412), - [sym__double_quote_open] = ACTIONS(2415), - [sym__superscript_open] = ACTIONS(2418), - [sym__subscript_open] = ACTIONS(2421), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2424), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2427), - [sym__cite_author_in_text] = ACTIONS(2430), - [sym__cite_suppress_author] = ACTIONS(2433), - [sym__shortcode_open_escaped] = ACTIONS(2436), - [sym__shortcode_open] = ACTIONS(2439), - [sym__unclosed_span] = ACTIONS(2354), + [sym_backslash_escape] = STATE(370), + [sym_commonmark_attribute] = STATE(370), + [sym_code_span] = STATE(370), + [sym_latex_span] = STATE(370), + [sym_insert] = STATE(370), + [sym_delete] = STATE(370), + [sym_highlight] = STATE(370), + [sym_edit_comment] = STATE(370), + [sym_superscript] = STATE(370), + [sym_subscript] = STATE(370), + [sym_strikeout] = STATE(370), + [sym_quoted_span] = STATE(370), + [sym_inline_note] = STATE(370), + [sym_citation] = STATE(370), + [sym_shortcode_escaped] = STATE(370), + [sym_shortcode] = STATE(370), + [sym_note_reference] = STATE(370), + [sym__link_text] = STATE(472), + [sym__link_text_non_empty] = STATE(473), + [sym_inline_link] = STATE(60), + [sym_image] = STATE(370), + [sym__image_inline_link] = STATE(923), + [sym__image_description] = STATE(2342), + [sym__image_description_non_empty] = STATE(2342), + [sym_hard_line_break] = STATE(370), + [sym__whitespace] = STATE(920), + [sym__word] = STATE(920), + [sym__soft_line_break] = STATE(924), + [sym__inline_base] = STATE(60), + [sym__text_base] = STATE(370), + [sym__inline_element] = STATE(60), + [sym__emphasis_star] = STATE(821), + [sym__strong_emphasis_star] = STATE(60), + [sym__emphasis_underscore] = STATE(821), + [sym__strong_emphasis_underscore] = STATE(60), + [aux_sym_insert_repeat1] = STATE(60), + [aux_sym__inline_base_repeat1] = STATE(370), + [sym__backslash_escape] = ACTIONS(73), + [sym_entity_reference] = ACTIONS(75), + [sym_numeric_character_reference] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_BANG] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_POUND] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(79), + [anon_sym_PERCENT] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_STAR] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_COMMA] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_DOT] = ACTIONS(77), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_COLON] = ACTIONS(79), + [anon_sym_SEMI] = ACTIONS(79), + [anon_sym_EQ] = ACTIONS(79), + [anon_sym_QMARK] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(83), + [anon_sym_BSLASH] = ACTIONS(85), + [anon_sym_RBRACK] = ACTIONS(2635), + [anon_sym_CARET] = ACTIONS(77), + [anon_sym__] = ACTIONS(79), + [anon_sym_BQUOTE] = ACTIONS(79), + [anon_sym_LBRACE] = ACTIONS(89), + [anon_sym_PIPE] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(79), + [anon_sym_RPAREN] = ACTIONS(79), + [sym__newline_token] = ACTIONS(91), + [aux_sym_insert_token1] = ACTIONS(93), + [aux_sym_delete_token1] = ACTIONS(95), + [aux_sym_highlight_token1] = ACTIONS(97), + [aux_sym_edit_comment_token1] = ACTIONS(99), + [anon_sym_CARET_LBRACK] = ACTIONS(101), + [anon_sym_LBRACK_CARET] = ACTIONS(103), + [sym_uri_autolink] = ACTIONS(75), + [sym_email_autolink] = ACTIONS(75), + [sym__whitespace_ge_2] = ACTIONS(105), + [aux_sym__whitespace_token1] = ACTIONS(107), + [sym__word_no_digit] = ACTIONS(109), + [sym__digits] = ACTIONS(109), + [anon_sym_DASH_DASH] = ACTIONS(111), + [anon_sym_DASH_DASH_DASH] = ACTIONS(109), + [anon_sym_DOT_DOT_DOT] = ACTIONS(109), + [sym__code_span_start] = ACTIONS(113), + [sym__emphasis_open_star] = ACTIONS(115), + [sym__emphasis_open_underscore] = ACTIONS(117), + [sym__strikeout_open] = ACTIONS(121), + [sym__latex_span_start] = ACTIONS(123), + [sym__single_quote_open] = ACTIONS(125), + [sym__double_quote_open] = ACTIONS(127), + [sym__superscript_open] = ACTIONS(129), + [sym__subscript_open] = ACTIONS(131), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(133), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(135), + [sym__cite_author_in_text] = ACTIONS(137), + [sym__cite_suppress_author] = ACTIONS(139), + [sym__shortcode_open_escaped] = ACTIONS(141), + [sym__shortcode_open] = ACTIONS(143), + [sym__unclosed_span] = ACTIONS(75), }, [STATE(218)] = { - [sym_backslash_escape] = STATE(274), - [sym_commonmark_attribute] = STATE(274), - [sym_code_span] = STATE(274), - [sym_latex_span] = STATE(274), - [sym_superscript] = STATE(274), - [sym_subscript] = STATE(274), - [sym_strikeout] = STATE(274), - [sym_quoted_span] = STATE(274), - [sym_inline_note] = STATE(274), - [sym_citation] = STATE(274), - [sym_shortcode_escaped] = STATE(274), - [sym_shortcode] = STATE(274), - [sym_note_reference] = STATE(274), - [sym_image] = STATE(274), - [sym__image_inline_link] = STATE(894), - [sym__image_description] = STATE(2008), - [sym__image_description_non_empty] = STATE(2008), - [sym_hard_line_break] = STATE(274), - [sym__whitespace] = STATE(882), - [sym__word] = STATE(882), - [sym__soft_line_break] = STATE(898), - [sym__inline_base] = STATE(251), - [sym__text_base] = STATE(274), - [sym__inline_element_no_underscore_no_link] = STATE(251), - [aux_sym__inline_no_underscore_no_link] = STATE(251), - [sym__emphasis_star_no_link] = STATE(1169), - [sym__strong_emphasis_star_no_link] = STATE(251), - [sym__emphasis_underscore_no_link] = STATE(1158), - [sym__strong_emphasis_underscore_no_link] = STATE(251), - [aux_sym__inline_base_repeat1] = STATE(274), - [sym__backslash_escape] = ACTIONS(2442), - [sym_entity_reference] = ACTIONS(2445), - [sym_numeric_character_reference] = ACTIONS(2445), - [anon_sym_LT] = ACTIONS(2448), - [anon_sym_GT] = ACTIONS(2451), - [anon_sym_BANG] = ACTIONS(2454), - [anon_sym_DQUOTE] = ACTIONS(2451), - [anon_sym_POUND] = ACTIONS(2451), - [anon_sym_DOLLAR] = ACTIONS(2451), - [anon_sym_PERCENT] = ACTIONS(2451), - [anon_sym_AMP] = ACTIONS(2448), - [anon_sym_SQUOTE] = ACTIONS(2451), - [anon_sym_STAR] = ACTIONS(2451), - [anon_sym_PLUS] = ACTIONS(2451), - [anon_sym_COMMA] = ACTIONS(2451), - [anon_sym_DASH] = ACTIONS(2448), - [anon_sym_DOT] = ACTIONS(2448), - [anon_sym_SLASH] = ACTIONS(2451), - [anon_sym_COLON] = ACTIONS(2451), - [anon_sym_SEMI] = ACTIONS(2451), - [anon_sym_EQ] = ACTIONS(2451), - [anon_sym_QMARK] = ACTIONS(2451), - [anon_sym_BSLASH] = ACTIONS(2457), - [anon_sym_RBRACK] = ACTIONS(2278), - [anon_sym_CARET] = ACTIONS(2448), - [anon_sym__] = ACTIONS(2451), - [anon_sym_BQUOTE] = ACTIONS(2451), - [anon_sym_LBRACE] = ACTIONS(2460), - [anon_sym_PIPE] = ACTIONS(2451), - [anon_sym_TILDE] = ACTIONS(2451), - [anon_sym_LPAREN] = ACTIONS(2451), - [anon_sym_RPAREN] = ACTIONS(2451), - [sym__newline_token] = ACTIONS(2463), - [anon_sym_CARET_LBRACK] = ACTIONS(2466), - [anon_sym_LBRACK_CARET] = ACTIONS(2469), - [sym_uri_autolink] = ACTIONS(2445), - [sym_email_autolink] = ACTIONS(2445), - [sym__whitespace_ge_2] = ACTIONS(2472), - [aux_sym__whitespace_token1] = ACTIONS(2475), - [sym__word_no_digit] = ACTIONS(2478), - [sym__digits] = ACTIONS(2478), - [anon_sym_DASH_DASH] = ACTIONS(2481), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2478), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2478), - [sym__code_span_start] = ACTIONS(2484), - [sym__emphasis_open_star] = ACTIONS(2487), - [sym__emphasis_open_underscore] = ACTIONS(2490), - [sym__last_token_punctuation] = ACTIONS(2493), - [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__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(2445), + [sym_backslash_escape] = STATE(366), + [sym_commonmark_attribute] = STATE(366), + [sym_code_span] = STATE(366), + [sym_latex_span] = STATE(366), + [sym_insert] = STATE(366), + [sym_delete] = STATE(366), + [sym_highlight] = STATE(366), + [sym_edit_comment] = STATE(366), + [sym_superscript] = STATE(366), + [sym_subscript] = STATE(366), + [sym_strikeout] = STATE(366), + [sym_quoted_span] = STATE(366), + [sym_inline_note] = STATE(366), + [sym_citation] = STATE(366), + [sym_shortcode_escaped] = STATE(366), + [sym_shortcode] = STATE(366), + [sym_note_reference] = STATE(366), + [sym__link_text] = STATE(490), + [sym__link_text_non_empty] = STATE(491), + [sym_inline_link] = STATE(230), + [sym_image] = STATE(366), + [sym__image_inline_link] = STATE(1244), + [sym__image_description] = STATE(2280), + [sym__image_description_non_empty] = STATE(2280), + [sym_hard_line_break] = STATE(366), + [sym__whitespace] = STATE(1218), + [sym__word] = STATE(1218), + [sym__soft_line_break] = STATE(1245), + [sym__inline_base] = STATE(230), + [sym__text_base] = STATE(366), + [sym__inline_element] = STATE(230), + [sym__emphasis_star] = STATE(1270), + [sym__strong_emphasis_star] = STATE(230), + [sym__emphasis_underscore] = STATE(1270), + [sym__strong_emphasis_underscore] = STATE(230), + [aux_sym_insert_repeat1] = STATE(230), + [aux_sym__inline_base_repeat1] = STATE(366), + [sym__backslash_escape] = ACTIONS(2005), + [sym_entity_reference] = ACTIONS(2007), + [sym_numeric_character_reference] = ACTIONS(2007), + [anon_sym_LT] = ACTIONS(2009), + [anon_sym_GT] = ACTIONS(2011), + [anon_sym_BANG] = ACTIONS(2013), + [anon_sym_DQUOTE] = ACTIONS(2011), + [anon_sym_POUND] = ACTIONS(2011), + [anon_sym_DOLLAR] = ACTIONS(2011), + [anon_sym_PERCENT] = ACTIONS(2011), + [anon_sym_AMP] = ACTIONS(2009), + [anon_sym_SQUOTE] = ACTIONS(2011), + [anon_sym_STAR] = ACTIONS(2011), + [anon_sym_PLUS] = ACTIONS(2011), + [anon_sym_COMMA] = ACTIONS(2011), + [anon_sym_DASH] = ACTIONS(2009), + [anon_sym_DOT] = ACTIONS(2009), + [anon_sym_SLASH] = ACTIONS(2011), + [anon_sym_COLON] = ACTIONS(2011), + [anon_sym_SEMI] = ACTIONS(2011), + [anon_sym_EQ] = ACTIONS(2011), + [anon_sym_QMARK] = ACTIONS(2011), + [anon_sym_LBRACK] = ACTIONS(2015), + [anon_sym_BSLASH] = ACTIONS(2017), + [anon_sym_CARET] = ACTIONS(2009), + [anon_sym__] = ACTIONS(2011), + [anon_sym_BQUOTE] = ACTIONS(2011), + [anon_sym_LBRACE] = ACTIONS(2019), + [anon_sym_PIPE] = ACTIONS(2011), + [anon_sym_TILDE] = ACTIONS(2011), + [anon_sym_LPAREN] = ACTIONS(2011), + [anon_sym_RPAREN] = ACTIONS(2011), + [sym__newline_token] = ACTIONS(2021), + [aux_sym_insert_token1] = ACTIONS(2023), + [aux_sym_delete_token1] = ACTIONS(2025), + [aux_sym_highlight_token1] = ACTIONS(2027), + [aux_sym_edit_comment_token1] = ACTIONS(2029), + [anon_sym_CARET_LBRACK] = ACTIONS(2031), + [anon_sym_LBRACK_CARET] = ACTIONS(2033), + [sym_uri_autolink] = ACTIONS(2007), + [sym_email_autolink] = ACTIONS(2007), + [sym__whitespace_ge_2] = ACTIONS(2035), + [aux_sym__whitespace_token1] = ACTIONS(2037), + [sym__word_no_digit] = ACTIONS(2039), + [sym__digits] = ACTIONS(2039), + [anon_sym_DASH_DASH] = ACTIONS(2041), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2039), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2039), + [sym__code_span_start] = ACTIONS(2043), + [sym__emphasis_open_star] = ACTIONS(2045), + [sym__emphasis_open_underscore] = ACTIONS(2047), + [sym__strikeout_open] = ACTIONS(2049), + [sym__strikeout_close] = ACTIONS(2637), + [sym__latex_span_start] = ACTIONS(2053), + [sym__single_quote_open] = ACTIONS(2055), + [sym__double_quote_open] = ACTIONS(2057), + [sym__superscript_open] = ACTIONS(2059), + [sym__subscript_open] = ACTIONS(2061), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2063), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2065), + [sym__cite_author_in_text] = ACTIONS(2067), + [sym__cite_suppress_author] = ACTIONS(2069), + [sym__shortcode_open_escaped] = ACTIONS(2071), + [sym__shortcode_open] = ACTIONS(2073), + [sym__unclosed_span] = ACTIONS(2007), }, [STATE(219)] = { - [sym_backslash_escape] = STATE(261), - [sym_commonmark_attribute] = STATE(261), - [sym_code_span] = STATE(261), - [sym_latex_span] = STATE(261), - [sym_superscript] = STATE(261), - [sym_subscript] = STATE(261), - [sym_strikeout] = STATE(261), - [sym_quoted_span] = STATE(261), - [sym_inline_note] = STATE(261), - [sym_citation] = STATE(261), - [sym_shortcode_escaped] = STATE(261), - [sym_shortcode] = STATE(261), - [sym_note_reference] = STATE(261), - [sym_image] = STATE(261), - [sym__image_inline_link] = STATE(595), - [sym__image_description] = STATE(1972), - [sym__image_description_non_empty] = STATE(1972), - [sym_hard_line_break] = STATE(261), - [sym__whitespace] = STATE(587), - [sym__word] = STATE(587), - [sym__soft_line_break] = STATE(597), - [sym__inline_base] = STATE(223), - [sym__text_base] = STATE(261), - [sym__inline_element_no_star_no_link] = STATE(223), - [aux_sym__inline_no_star_no_link] = STATE(223), - [sym__emphasis_star_no_link] = STATE(1145), - [sym__strong_emphasis_star_no_link] = STATE(223), - [sym__emphasis_underscore_no_link] = STATE(1145), - [sym__strong_emphasis_underscore_no_link] = STATE(223), - [aux_sym__inline_base_repeat1] = STATE(261), - [sym__backslash_escape] = ACTIONS(969), - [sym_entity_reference] = ACTIONS(971), - [sym_numeric_character_reference] = ACTIONS(971), - [anon_sym_LT] = ACTIONS(973), - [anon_sym_GT] = ACTIONS(975), - [anon_sym_BANG] = ACTIONS(977), - [anon_sym_DQUOTE] = ACTIONS(975), - [anon_sym_POUND] = ACTIONS(975), - [anon_sym_DOLLAR] = ACTIONS(975), - [anon_sym_PERCENT] = ACTIONS(975), - [anon_sym_AMP] = ACTIONS(973), - [anon_sym_SQUOTE] = ACTIONS(975), - [anon_sym_STAR] = ACTIONS(975), - [anon_sym_PLUS] = ACTIONS(975), - [anon_sym_COMMA] = ACTIONS(975), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_DOT] = ACTIONS(973), - [anon_sym_SLASH] = ACTIONS(975), - [anon_sym_COLON] = ACTIONS(975), - [anon_sym_SEMI] = ACTIONS(975), - [anon_sym_EQ] = ACTIONS(975), - [anon_sym_QMARK] = ACTIONS(975), - [anon_sym_BSLASH] = ACTIONS(981), - [anon_sym_CARET] = ACTIONS(973), - [anon_sym__] = ACTIONS(975), - [anon_sym_BQUOTE] = ACTIONS(975), - [anon_sym_LBRACE] = ACTIONS(983), - [anon_sym_PIPE] = ACTIONS(975), - [anon_sym_TILDE] = ACTIONS(975), - [anon_sym_LPAREN] = ACTIONS(975), - [anon_sym_RPAREN] = ACTIONS(975), - [sym__newline_token] = ACTIONS(985), - [anon_sym_CARET_LBRACK] = ACTIONS(987), - [anon_sym_LBRACK_CARET] = ACTIONS(989), - [sym_uri_autolink] = ACTIONS(971), - [sym_email_autolink] = ACTIONS(971), - [sym__whitespace_ge_2] = ACTIONS(991), - [aux_sym__whitespace_token1] = ACTIONS(993), - [sym__word_no_digit] = ACTIONS(995), - [sym__digits] = ACTIONS(995), - [anon_sym_DASH_DASH] = ACTIONS(997), - [anon_sym_DASH_DASH_DASH] = ACTIONS(995), - [anon_sym_DOT_DOT_DOT] = ACTIONS(995), - [sym__code_span_start] = ACTIONS(999), - [sym__emphasis_open_star] = ACTIONS(2531), - [sym__emphasis_open_underscore] = ACTIONS(2533), - [sym__emphasis_close_star] = ACTIONS(2535), - [sym__strikeout_open] = ACTIONS(1007), - [sym__latex_span_start] = ACTIONS(1009), - [sym__single_quote_open] = ACTIONS(1011), - [sym__double_quote_open] = ACTIONS(1013), - [sym__superscript_open] = ACTIONS(1015), - [sym__subscript_open] = ACTIONS(1017), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1019), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1021), - [sym__cite_author_in_text] = ACTIONS(1023), - [sym__cite_suppress_author] = ACTIONS(1025), - [sym__shortcode_open_escaped] = ACTIONS(1027), - [sym__shortcode_open] = ACTIONS(1029), - [sym__unclosed_span] = ACTIONS(971), + [sym_backslash_escape] = STATE(375), + [sym_commonmark_attribute] = STATE(375), + [sym_code_span] = STATE(375), + [sym_latex_span] = STATE(375), + [sym_insert] = STATE(375), + [sym_delete] = STATE(375), + [sym_highlight] = STATE(375), + [sym_edit_comment] = STATE(375), + [sym_superscript] = STATE(375), + [sym_subscript] = STATE(375), + [sym_strikeout] = STATE(375), + [sym_quoted_span] = STATE(375), + [sym_inline_note] = STATE(375), + [sym_citation] = STATE(375), + [sym_shortcode_escaped] = STATE(375), + [sym_shortcode] = STATE(375), + [sym_note_reference] = STATE(375), + [sym__link_text] = STATE(525), + [sym__link_text_non_empty] = STATE(527), + [sym_inline_link] = STATE(231), + [sym_image] = STATE(375), + [sym__image_inline_link] = STATE(972), + [sym__image_description] = STATE(2286), + [sym__image_description_non_empty] = STATE(2286), + [sym_hard_line_break] = STATE(375), + [sym__whitespace] = STATE(949), + [sym__word] = STATE(949), + [sym__soft_line_break] = STATE(973), + [sym__inline_base] = STATE(231), + [sym__text_base] = STATE(375), + [sym__inline_element] = STATE(231), + [sym__emphasis_star] = STATE(1392), + [sym__strong_emphasis_star] = STATE(231), + [sym__emphasis_underscore] = STATE(1392), + [sym__strong_emphasis_underscore] = STATE(231), + [aux_sym_insert_repeat1] = STATE(231), + [aux_sym__inline_base_repeat1] = STATE(375), + [sym__backslash_escape] = ACTIONS(2179), + [sym_entity_reference] = ACTIONS(2181), + [sym_numeric_character_reference] = ACTIONS(2181), + [anon_sym_LT] = ACTIONS(2183), + [anon_sym_GT] = ACTIONS(2185), + [anon_sym_BANG] = ACTIONS(2187), + [anon_sym_DQUOTE] = ACTIONS(2185), + [anon_sym_POUND] = ACTIONS(2185), + [anon_sym_DOLLAR] = ACTIONS(2185), + [anon_sym_PERCENT] = ACTIONS(2185), + [anon_sym_AMP] = ACTIONS(2183), + [anon_sym_SQUOTE] = ACTIONS(2185), + [anon_sym_STAR] = ACTIONS(2185), + [anon_sym_PLUS] = ACTIONS(2185), + [anon_sym_COMMA] = ACTIONS(2185), + [anon_sym_DASH] = ACTIONS(2183), + [anon_sym_DOT] = ACTIONS(2183), + [anon_sym_SLASH] = ACTIONS(2185), + [anon_sym_COLON] = ACTIONS(2185), + [anon_sym_SEMI] = ACTIONS(2185), + [anon_sym_EQ] = ACTIONS(2185), + [anon_sym_QMARK] = ACTIONS(2185), + [anon_sym_LBRACK] = ACTIONS(2189), + [anon_sym_BSLASH] = ACTIONS(2191), + [anon_sym_CARET] = ACTIONS(2183), + [anon_sym__] = ACTIONS(2185), + [anon_sym_BQUOTE] = ACTIONS(2185), + [anon_sym_LBRACE] = ACTIONS(2193), + [anon_sym_PIPE] = ACTIONS(2185), + [anon_sym_TILDE] = ACTIONS(2185), + [anon_sym_LPAREN] = ACTIONS(2185), + [anon_sym_RPAREN] = ACTIONS(2185), + [sym__newline_token] = ACTIONS(2195), + [aux_sym_insert_token1] = ACTIONS(2197), + [aux_sym_delete_token1] = ACTIONS(2199), + [aux_sym_highlight_token1] = ACTIONS(2201), + [aux_sym_edit_comment_token1] = ACTIONS(2203), + [anon_sym_CARET_LBRACK] = ACTIONS(2205), + [anon_sym_LBRACK_CARET] = ACTIONS(2207), + [sym_uri_autolink] = ACTIONS(2181), + [sym_email_autolink] = ACTIONS(2181), + [sym__whitespace_ge_2] = ACTIONS(2209), + [aux_sym__whitespace_token1] = ACTIONS(2211), + [sym__word_no_digit] = ACTIONS(2213), + [sym__digits] = ACTIONS(2213), + [anon_sym_DASH_DASH] = ACTIONS(2215), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2213), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2213), + [sym__code_span_start] = ACTIONS(2217), + [sym__emphasis_open_star] = ACTIONS(2219), + [sym__emphasis_open_underscore] = ACTIONS(2221), + [sym__strikeout_open] = ACTIONS(2223), + [sym__latex_span_start] = ACTIONS(2225), + [sym__single_quote_open] = ACTIONS(2227), + [sym__single_quote_close] = ACTIONS(2639), + [sym__double_quote_open] = ACTIONS(2229), + [sym__superscript_open] = ACTIONS(2231), + [sym__subscript_open] = ACTIONS(2233), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2235), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2237), + [sym__cite_author_in_text] = ACTIONS(2239), + [sym__cite_suppress_author] = ACTIONS(2241), + [sym__shortcode_open_escaped] = ACTIONS(2243), + [sym__shortcode_open] = ACTIONS(2245), + [sym__unclosed_span] = ACTIONS(2181), }, [STATE(220)] = { - [sym_backslash_escape] = STATE(271), - [sym_commonmark_attribute] = STATE(271), - [sym_code_span] = STATE(271), - [sym_latex_span] = STATE(271), - [sym_superscript] = STATE(271), - [sym_subscript] = STATE(271), - [sym_strikeout] = STATE(271), - [sym_quoted_span] = STATE(271), - [sym_inline_note] = STATE(271), - [sym_citation] = STATE(271), - [sym_shortcode_escaped] = STATE(271), - [sym_shortcode] = STATE(271), - [sym_note_reference] = STATE(271), - [sym_image] = STATE(271), - [sym__image_inline_link] = STATE(883), - [sym__image_description] = STATE(1998), - [sym__image_description_non_empty] = STATE(1998), - [sym_hard_line_break] = STATE(271), - [sym__whitespace] = STATE(881), - [sym__word] = STATE(881), - [sym__soft_line_break] = STATE(884), - [sym__inline_base] = STATE(1144), - [sym__text_base] = STATE(271), - [sym__inline_element_no_link] = STATE(1144), - [aux_sym__inline_no_link] = STATE(220), - [sym__emphasis_star_no_link] = STATE(1170), - [sym__strong_emphasis_star_no_link] = STATE(1144), - [sym__emphasis_underscore_no_link] = STATE(1170), - [sym__strong_emphasis_underscore_no_link] = STATE(1144), - [aux_sym__inline_base_repeat1] = STATE(271), - [sym__backslash_escape] = ACTIONS(2537), - [sym_entity_reference] = ACTIONS(2540), - [sym_numeric_character_reference] = ACTIONS(2540), - [anon_sym_LT] = ACTIONS(2543), - [anon_sym_GT] = ACTIONS(2546), - [anon_sym_BANG] = ACTIONS(2549), - [anon_sym_DQUOTE] = ACTIONS(2546), - [anon_sym_POUND] = ACTIONS(2546), - [anon_sym_DOLLAR] = ACTIONS(2546), - [anon_sym_PERCENT] = ACTIONS(2546), - [anon_sym_AMP] = ACTIONS(2543), - [anon_sym_SQUOTE] = ACTIONS(2546), - [anon_sym_STAR] = ACTIONS(2546), - [anon_sym_PLUS] = ACTIONS(2546), - [anon_sym_COMMA] = ACTIONS(2546), - [anon_sym_DASH] = ACTIONS(2543), - [anon_sym_DOT] = ACTIONS(2543), - [anon_sym_SLASH] = ACTIONS(2546), - [anon_sym_COLON] = ACTIONS(2546), - [anon_sym_SEMI] = ACTIONS(2546), - [anon_sym_EQ] = ACTIONS(2546), - [anon_sym_QMARK] = ACTIONS(2546), - [anon_sym_BSLASH] = ACTIONS(2552), - [anon_sym_RBRACK] = ACTIONS(2555), - [anon_sym_CARET] = ACTIONS(2543), - [anon_sym__] = ACTIONS(2546), - [anon_sym_BQUOTE] = ACTIONS(2546), - [anon_sym_LBRACE] = ACTIONS(2557), - [anon_sym_PIPE] = ACTIONS(2546), - [anon_sym_TILDE] = ACTIONS(2546), - [anon_sym_LPAREN] = ACTIONS(2546), - [anon_sym_RPAREN] = ACTIONS(2546), - [sym__newline_token] = ACTIONS(2560), - [anon_sym_CARET_LBRACK] = ACTIONS(2563), - [anon_sym_LBRACK_CARET] = ACTIONS(2566), - [sym_uri_autolink] = ACTIONS(2540), - [sym_email_autolink] = ACTIONS(2540), - [sym__whitespace_ge_2] = ACTIONS(2569), - [aux_sym__whitespace_token1] = ACTIONS(2572), - [sym__word_no_digit] = ACTIONS(2575), - [sym__digits] = ACTIONS(2575), - [anon_sym_DASH_DASH] = ACTIONS(2578), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2575), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2575), - [sym__code_span_start] = ACTIONS(2581), - [sym__emphasis_open_star] = ACTIONS(2584), - [sym__emphasis_open_underscore] = ACTIONS(2587), - [sym__strikeout_open] = ACTIONS(2590), - [sym__latex_span_start] = ACTIONS(2593), - [sym__single_quote_open] = ACTIONS(2596), - [sym__double_quote_open] = ACTIONS(2599), - [sym__superscript_open] = ACTIONS(2602), - [sym__subscript_open] = ACTIONS(2605), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2608), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2611), - [sym__cite_author_in_text] = ACTIONS(2614), - [sym__cite_suppress_author] = ACTIONS(2617), - [sym__shortcode_open_escaped] = ACTIONS(2620), - [sym__shortcode_open] = ACTIONS(2623), - [sym__unclosed_span] = ACTIONS(2540), + [sym_backslash_escape] = STATE(383), + [sym_commonmark_attribute] = STATE(383), + [sym_code_span] = STATE(383), + [sym_latex_span] = STATE(383), + [sym_insert] = STATE(383), + [sym_delete] = STATE(383), + [sym_highlight] = STATE(383), + [sym_edit_comment] = STATE(383), + [sym_superscript] = STATE(383), + [sym_subscript] = STATE(383), + [sym_strikeout] = STATE(383), + [sym_quoted_span] = STATE(383), + [sym_inline_note] = STATE(383), + [sym_citation] = STATE(383), + [sym_shortcode_escaped] = STATE(383), + [sym_shortcode] = STATE(383), + [sym_note_reference] = STATE(383), + [sym__link_text] = STATE(395), + [sym__link_text_non_empty] = STATE(396), + [sym_inline_link] = STATE(232), + [sym_image] = STATE(383), + [sym__image_inline_link] = STATE(1263), + [sym__image_description] = STATE(2300), + [sym__image_description_non_empty] = STATE(2300), + [sym_hard_line_break] = STATE(383), + [sym__whitespace] = STATE(1259), + [sym__word] = STATE(1259), + [sym__soft_line_break] = STATE(1264), + [sym__inline_base] = STATE(232), + [sym__text_base] = STATE(383), + [sym__inline_element] = STATE(232), + [sym__emphasis_star] = STATE(1249), + [sym__strong_emphasis_star] = STATE(232), + [sym__emphasis_underscore] = STATE(1249), + [sym__strong_emphasis_underscore] = STATE(232), + [aux_sym_insert_repeat1] = STATE(232), + [aux_sym__inline_base_repeat1] = STATE(383), + [sym__backslash_escape] = ACTIONS(637), + [sym_entity_reference] = ACTIONS(639), + [sym_numeric_character_reference] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_GT] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(645), + [anon_sym_DQUOTE] = ACTIONS(643), + [anon_sym_POUND] = ACTIONS(643), + [anon_sym_DOLLAR] = ACTIONS(643), + [anon_sym_PERCENT] = ACTIONS(643), + [anon_sym_AMP] = ACTIONS(641), + [anon_sym_SQUOTE] = ACTIONS(643), + [anon_sym_STAR] = ACTIONS(643), + [anon_sym_PLUS] = ACTIONS(643), + [anon_sym_COMMA] = ACTIONS(643), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_DOT] = ACTIONS(641), + [anon_sym_SLASH] = ACTIONS(643), + [anon_sym_COLON] = ACTIONS(643), + [anon_sym_SEMI] = ACTIONS(643), + [anon_sym_EQ] = ACTIONS(643), + [anon_sym_QMARK] = ACTIONS(643), + [anon_sym_LBRACK] = ACTIONS(647), + [anon_sym_BSLASH] = ACTIONS(649), + [anon_sym_CARET] = ACTIONS(641), + [anon_sym__] = ACTIONS(643), + [anon_sym_BQUOTE] = ACTIONS(643), + [anon_sym_LBRACE] = ACTIONS(651), + [anon_sym_PIPE] = ACTIONS(643), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_LPAREN] = ACTIONS(643), + [anon_sym_RPAREN] = ACTIONS(643), + [sym__newline_token] = ACTIONS(653), + [aux_sym_insert_token1] = ACTIONS(655), + [aux_sym_delete_token1] = ACTIONS(657), + [aux_sym_highlight_token1] = ACTIONS(659), + [aux_sym_edit_comment_token1] = ACTIONS(661), + [anon_sym_CARET_LBRACK] = ACTIONS(663), + [anon_sym_LBRACK_CARET] = ACTIONS(665), + [sym_uri_autolink] = ACTIONS(639), + [sym_email_autolink] = ACTIONS(639), + [sym__whitespace_ge_2] = ACTIONS(667), + [aux_sym__whitespace_token1] = ACTIONS(669), + [sym__word_no_digit] = ACTIONS(671), + [sym__digits] = ACTIONS(671), + [anon_sym_DASH_DASH] = ACTIONS(673), + [anon_sym_DASH_DASH_DASH] = ACTIONS(671), + [anon_sym_DOT_DOT_DOT] = ACTIONS(671), + [sym__code_span_start] = ACTIONS(675), + [sym__emphasis_open_star] = ACTIONS(677), + [sym__emphasis_open_underscore] = ACTIONS(679), + [sym__strikeout_open] = ACTIONS(681), + [sym__latex_span_start] = ACTIONS(683), + [sym__single_quote_open] = ACTIONS(685), + [sym__double_quote_open] = ACTIONS(687), + [sym__double_quote_close] = ACTIONS(2639), + [sym__superscript_open] = ACTIONS(691), + [sym__subscript_open] = ACTIONS(693), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(695), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(697), + [sym__cite_author_in_text] = ACTIONS(699), + [sym__cite_suppress_author] = ACTIONS(701), + [sym__shortcode_open_escaped] = ACTIONS(703), + [sym__shortcode_open] = ACTIONS(705), + [sym__unclosed_span] = ACTIONS(639), }, [STATE(221)] = { - [sym_backslash_escape] = STATE(261), - [sym_commonmark_attribute] = STATE(261), - [sym_code_span] = STATE(261), - [sym_latex_span] = STATE(261), - [sym_superscript] = STATE(261), - [sym_subscript] = STATE(261), - [sym_strikeout] = STATE(261), - [sym_quoted_span] = STATE(261), - [sym_inline_note] = STATE(261), - [sym_citation] = STATE(261), - [sym_shortcode_escaped] = STATE(261), - [sym_shortcode] = STATE(261), - [sym_note_reference] = STATE(261), - [sym_image] = STATE(261), - [sym__image_inline_link] = STATE(595), - [sym__image_description] = STATE(1972), - [sym__image_description_non_empty] = STATE(1972), - [sym_hard_line_break] = STATE(261), - [sym__whitespace] = STATE(587), - [sym__word] = STATE(587), - [sym__soft_line_break] = STATE(597), - [sym__inline_base] = STATE(223), - [sym__text_base] = STATE(261), - [sym__inline_element_no_star_no_link] = STATE(223), - [aux_sym__inline_no_star_no_link] = STATE(223), - [sym__emphasis_star_no_link] = STATE(1145), - [sym__strong_emphasis_star_no_link] = STATE(223), - [sym__emphasis_underscore_no_link] = STATE(1145), - [sym__strong_emphasis_underscore_no_link] = STATE(223), - [aux_sym__inline_base_repeat1] = STATE(261), - [sym__backslash_escape] = ACTIONS(969), - [sym_entity_reference] = ACTIONS(971), - [sym_numeric_character_reference] = ACTIONS(971), - [anon_sym_LT] = ACTIONS(973), - [anon_sym_GT] = ACTIONS(975), - [anon_sym_BANG] = ACTIONS(977), - [anon_sym_DQUOTE] = ACTIONS(975), - [anon_sym_POUND] = ACTIONS(975), - [anon_sym_DOLLAR] = ACTIONS(975), - [anon_sym_PERCENT] = ACTIONS(975), - [anon_sym_AMP] = ACTIONS(973), - [anon_sym_SQUOTE] = ACTIONS(975), - [anon_sym_STAR] = ACTIONS(975), - [anon_sym_PLUS] = ACTIONS(975), - [anon_sym_COMMA] = ACTIONS(975), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_DOT] = ACTIONS(973), - [anon_sym_SLASH] = ACTIONS(975), - [anon_sym_COLON] = ACTIONS(975), - [anon_sym_SEMI] = ACTIONS(975), - [anon_sym_EQ] = ACTIONS(975), - [anon_sym_QMARK] = ACTIONS(975), - [anon_sym_BSLASH] = ACTIONS(981), - [anon_sym_CARET] = ACTIONS(973), - [anon_sym__] = ACTIONS(975), - [anon_sym_BQUOTE] = ACTIONS(975), - [anon_sym_LBRACE] = ACTIONS(983), - [anon_sym_PIPE] = ACTIONS(975), - [anon_sym_TILDE] = ACTIONS(975), - [anon_sym_LPAREN] = ACTIONS(975), - [anon_sym_RPAREN] = ACTIONS(975), - [sym__newline_token] = ACTIONS(985), - [anon_sym_CARET_LBRACK] = ACTIONS(987), - [anon_sym_LBRACK_CARET] = ACTIONS(989), - [sym_uri_autolink] = ACTIONS(971), - [sym_email_autolink] = ACTIONS(971), - [sym__whitespace_ge_2] = ACTIONS(991), - [aux_sym__whitespace_token1] = ACTIONS(993), - [sym__word_no_digit] = ACTIONS(995), - [sym__digits] = ACTIONS(995), - [anon_sym_DASH_DASH] = ACTIONS(997), - [anon_sym_DASH_DASH_DASH] = ACTIONS(995), - [anon_sym_DOT_DOT_DOT] = ACTIONS(995), - [sym__code_span_start] = ACTIONS(999), - [sym__emphasis_open_star] = ACTIONS(2531), - [sym__emphasis_open_underscore] = ACTIONS(2533), - [sym__emphasis_close_star] = ACTIONS(2626), - [sym__strikeout_open] = ACTIONS(1007), - [sym__latex_span_start] = ACTIONS(1009), - [sym__single_quote_open] = ACTIONS(1011), - [sym__double_quote_open] = ACTIONS(1013), - [sym__superscript_open] = ACTIONS(1015), - [sym__subscript_open] = ACTIONS(1017), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1019), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1021), - [sym__cite_author_in_text] = ACTIONS(1023), - [sym__cite_suppress_author] = ACTIONS(1025), - [sym__shortcode_open_escaped] = ACTIONS(1027), - [sym__shortcode_open] = ACTIONS(1029), - [sym__unclosed_span] = ACTIONS(971), + [sym_backslash_escape] = STATE(365), + [sym_commonmark_attribute] = STATE(365), + [sym_code_span] = STATE(365), + [sym_latex_span] = STATE(365), + [sym_insert] = STATE(365), + [sym_delete] = STATE(365), + [sym_highlight] = STATE(365), + [sym_edit_comment] = STATE(365), + [sym_superscript] = STATE(365), + [sym_subscript] = STATE(365), + [sym_strikeout] = STATE(365), + [sym_quoted_span] = STATE(365), + [sym_inline_note] = STATE(365), + [sym_citation] = STATE(365), + [sym_shortcode_escaped] = STATE(365), + [sym_shortcode] = STATE(365), + [sym_note_reference] = STATE(365), + [sym__link_text] = STATE(416), + [sym__link_text_non_empty] = STATE(417), + [sym_inline_link] = STATE(233), + [sym_image] = STATE(365), + [sym__image_inline_link] = STATE(712), + [sym__image_description] = STATE(2314), + [sym__image_description_non_empty] = STATE(2314), + [sym_hard_line_break] = STATE(365), + [sym__whitespace] = STATE(709), + [sym__word] = STATE(709), + [sym__soft_line_break] = STATE(713), + [sym__inline_base] = STATE(233), + [sym__text_base] = STATE(365), + [sym__inline_element] = STATE(233), + [sym__emphasis_star] = STATE(979), + [sym__strong_emphasis_star] = STATE(233), + [sym__emphasis_underscore] = STATE(979), + [sym__strong_emphasis_underscore] = STATE(233), + [aux_sym_insert_repeat1] = STATE(233), + [aux_sym__inline_base_repeat1] = STATE(365), + [sym__backslash_escape] = ACTIONS(1341), + [sym_entity_reference] = ACTIONS(1343), + [sym_numeric_character_reference] = ACTIONS(1343), + [anon_sym_LT] = ACTIONS(1345), + [anon_sym_GT] = ACTIONS(1347), + [anon_sym_BANG] = ACTIONS(1349), + [anon_sym_DQUOTE] = ACTIONS(1347), + [anon_sym_POUND] = ACTIONS(1347), + [anon_sym_DOLLAR] = ACTIONS(1347), + [anon_sym_PERCENT] = ACTIONS(1347), + [anon_sym_AMP] = ACTIONS(1345), + [anon_sym_SQUOTE] = ACTIONS(1347), + [anon_sym_STAR] = ACTIONS(1347), + [anon_sym_PLUS] = ACTIONS(1347), + [anon_sym_COMMA] = ACTIONS(1347), + [anon_sym_DASH] = ACTIONS(1345), + [anon_sym_DOT] = ACTIONS(1345), + [anon_sym_SLASH] = ACTIONS(1347), + [anon_sym_COLON] = ACTIONS(1347), + [anon_sym_SEMI] = ACTIONS(1347), + [anon_sym_EQ] = ACTIONS(1347), + [anon_sym_QMARK] = ACTIONS(1347), + [anon_sym_LBRACK] = ACTIONS(1351), + [anon_sym_BSLASH] = ACTIONS(1353), + [anon_sym_CARET] = ACTIONS(1345), + [anon_sym__] = ACTIONS(1347), + [anon_sym_BQUOTE] = ACTIONS(1347), + [anon_sym_LBRACE] = ACTIONS(1355), + [anon_sym_PIPE] = ACTIONS(1347), + [anon_sym_TILDE] = ACTIONS(1347), + [anon_sym_LPAREN] = ACTIONS(1347), + [anon_sym_RPAREN] = ACTIONS(1347), + [sym__newline_token] = ACTIONS(1357), + [aux_sym_insert_token1] = ACTIONS(1359), + [aux_sym_delete_token1] = ACTIONS(1361), + [aux_sym_highlight_token1] = ACTIONS(1363), + [aux_sym_edit_comment_token1] = ACTIONS(1365), + [anon_sym_CARET_LBRACK] = ACTIONS(1367), + [anon_sym_LBRACK_CARET] = ACTIONS(1369), + [sym_uri_autolink] = ACTIONS(1343), + [sym_email_autolink] = ACTIONS(1343), + [sym__whitespace_ge_2] = ACTIONS(1371), + [aux_sym__whitespace_token1] = ACTIONS(1373), + [sym__word_no_digit] = ACTIONS(1375), + [sym__digits] = ACTIONS(1375), + [anon_sym_DASH_DASH] = ACTIONS(1377), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1375), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1375), + [sym__code_span_start] = ACTIONS(1379), + [sym__emphasis_open_star] = ACTIONS(1381), + [sym__emphasis_open_underscore] = ACTIONS(1383), + [sym__strikeout_open] = ACTIONS(1385), + [sym__latex_span_start] = ACTIONS(1387), + [sym__single_quote_open] = ACTIONS(1389), + [sym__double_quote_open] = ACTIONS(1391), + [sym__superscript_open] = ACTIONS(1393), + [sym__superscript_close] = ACTIONS(2641), + [sym__subscript_open] = ACTIONS(1397), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1399), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1401), + [sym__cite_author_in_text] = ACTIONS(1403), + [sym__cite_suppress_author] = ACTIONS(1405), + [sym__shortcode_open_escaped] = ACTIONS(1407), + [sym__shortcode_open] = ACTIONS(1409), + [sym__unclosed_span] = ACTIONS(1343), }, [STATE(222)] = { - [sym_backslash_escape] = STATE(271), - [sym_commonmark_attribute] = STATE(271), - [sym_code_span] = STATE(271), - [sym_latex_span] = STATE(271), - [sym_superscript] = STATE(271), - [sym_subscript] = STATE(271), - [sym_strikeout] = STATE(271), - [sym_quoted_span] = STATE(271), - [sym_inline_note] = STATE(271), - [sym_citation] = STATE(271), - [sym_shortcode_escaped] = STATE(271), - [sym_shortcode] = STATE(271), - [sym_note_reference] = STATE(271), - [sym_image] = STATE(271), - [sym__image_inline_link] = STATE(883), - [sym__image_description] = STATE(1998), - [sym__image_description_non_empty] = STATE(1998), - [sym_hard_line_break] = STATE(271), - [sym__whitespace] = STATE(881), - [sym__word] = STATE(881), - [sym__soft_line_break] = STATE(884), - [sym__inline_base] = STATE(1144), - [sym__text_base] = STATE(271), - [sym__inline_element_no_link] = STATE(1144), - [aux_sym__inline_no_link] = STATE(226), - [sym__emphasis_star_no_link] = STATE(1170), - [sym__strong_emphasis_star_no_link] = STATE(1144), - [sym__emphasis_underscore_no_link] = STATE(1170), - [sym__strong_emphasis_underscore_no_link] = STATE(1144), - [aux_sym__inline_base_repeat1] = STATE(271), - [sym__backslash_escape] = ACTIONS(159), - [sym_entity_reference] = ACTIONS(161), - [sym_numeric_character_reference] = ACTIONS(161), - [anon_sym_LT] = ACTIONS(163), - [anon_sym_GT] = ACTIONS(165), - [anon_sym_BANG] = ACTIONS(167), - [anon_sym_DQUOTE] = ACTIONS(165), - [anon_sym_POUND] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(165), - [anon_sym_PERCENT] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_SQUOTE] = ACTIONS(165), - [anon_sym_STAR] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(165), - [anon_sym_COMMA] = ACTIONS(165), - [anon_sym_DASH] = ACTIONS(163), - [anon_sym_DOT] = ACTIONS(163), - [anon_sym_SLASH] = ACTIONS(165), - [anon_sym_COLON] = ACTIONS(165), - [anon_sym_SEMI] = ACTIONS(165), - [anon_sym_EQ] = ACTIONS(165), - [anon_sym_QMARK] = ACTIONS(165), - [anon_sym_BSLASH] = ACTIONS(171), - [anon_sym_RBRACK] = ACTIONS(2628), - [anon_sym_CARET] = ACTIONS(163), - [anon_sym__] = ACTIONS(165), - [anon_sym_BQUOTE] = ACTIONS(165), - [anon_sym_LBRACE] = ACTIONS(175), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(165), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_RPAREN] = ACTIONS(165), - [sym__newline_token] = ACTIONS(177), - [anon_sym_CARET_LBRACK] = ACTIONS(179), - [anon_sym_LBRACK_CARET] = ACTIONS(181), - [sym_uri_autolink] = ACTIONS(161), - [sym_email_autolink] = ACTIONS(161), - [sym__whitespace_ge_2] = ACTIONS(183), - [aux_sym__whitespace_token1] = ACTIONS(185), - [sym__word_no_digit] = ACTIONS(187), - [sym__digits] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_DASH_DASH_DASH] = ACTIONS(187), - [anon_sym_DOT_DOT_DOT] = ACTIONS(187), - [sym__code_span_start] = ACTIONS(191), - [sym__emphasis_open_star] = ACTIONS(2630), - [sym__emphasis_open_underscore] = ACTIONS(2632), - [sym__strikeout_open] = ACTIONS(199), - [sym__latex_span_start] = ACTIONS(201), - [sym__single_quote_open] = ACTIONS(203), - [sym__double_quote_open] = ACTIONS(205), - [sym__superscript_open] = ACTIONS(207), - [sym__subscript_open] = ACTIONS(209), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(211), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(213), - [sym__cite_author_in_text] = ACTIONS(215), - [sym__cite_suppress_author] = ACTIONS(217), - [sym__shortcode_open_escaped] = ACTIONS(219), - [sym__shortcode_open] = ACTIONS(221), - [sym__unclosed_span] = ACTIONS(161), + [sym_backslash_escape] = STATE(367), + [sym_commonmark_attribute] = STATE(367), + [sym_code_span] = STATE(367), + [sym_latex_span] = STATE(367), + [sym_insert] = STATE(367), + [sym_delete] = STATE(367), + [sym_highlight] = STATE(367), + [sym_edit_comment] = STATE(367), + [sym_superscript] = STATE(367), + [sym_subscript] = STATE(367), + [sym_strikeout] = STATE(367), + [sym_quoted_span] = STATE(367), + [sym_inline_note] = STATE(367), + [sym_citation] = STATE(367), + [sym_shortcode_escaped] = STATE(367), + [sym_shortcode] = STATE(367), + [sym_note_reference] = STATE(367), + [sym__link_text] = STATE(435), + [sym__link_text_non_empty] = STATE(436), + [sym_inline_link] = STATE(234), + [sym_image] = STATE(367), + [sym__image_inline_link] = STATE(819), + [sym__image_description] = STATE(2328), + [sym__image_description_non_empty] = STATE(2328), + [sym_hard_line_break] = STATE(367), + [sym__whitespace] = STATE(816), + [sym__word] = STATE(816), + [sym__soft_line_break] = STATE(820), + [sym__inline_base] = STATE(234), + [sym__text_base] = STATE(367), + [sym__inline_element] = STATE(234), + [sym__emphasis_star] = STATE(1271), + [sym__strong_emphasis_star] = STATE(234), + [sym__emphasis_underscore] = STATE(1271), + [sym__strong_emphasis_underscore] = STATE(234), + [aux_sym_insert_repeat1] = STATE(234), + [aux_sym__inline_base_repeat1] = STATE(367), + [sym__backslash_escape] = ACTIONS(1413), + [sym_entity_reference] = ACTIONS(1415), + [sym_numeric_character_reference] = ACTIONS(1415), + [anon_sym_LT] = ACTIONS(1417), + [anon_sym_GT] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1419), + [anon_sym_POUND] = ACTIONS(1419), + [anon_sym_DOLLAR] = ACTIONS(1419), + [anon_sym_PERCENT] = ACTIONS(1419), + [anon_sym_AMP] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [anon_sym_STAR] = ACTIONS(1419), + [anon_sym_PLUS] = ACTIONS(1419), + [anon_sym_COMMA] = ACTIONS(1419), + [anon_sym_DASH] = ACTIONS(1417), + [anon_sym_DOT] = ACTIONS(1417), + [anon_sym_SLASH] = ACTIONS(1419), + [anon_sym_COLON] = ACTIONS(1419), + [anon_sym_SEMI] = ACTIONS(1419), + [anon_sym_EQ] = ACTIONS(1419), + [anon_sym_QMARK] = ACTIONS(1419), + [anon_sym_LBRACK] = ACTIONS(1423), + [anon_sym_BSLASH] = ACTIONS(1425), + [anon_sym_CARET] = ACTIONS(1417), + [anon_sym__] = ACTIONS(1419), + [anon_sym_BQUOTE] = ACTIONS(1419), + [anon_sym_LBRACE] = ACTIONS(1427), + [anon_sym_PIPE] = ACTIONS(1419), + [anon_sym_TILDE] = ACTIONS(1419), + [anon_sym_LPAREN] = ACTIONS(1419), + [anon_sym_RPAREN] = ACTIONS(1419), + [sym__newline_token] = ACTIONS(1429), + [aux_sym_insert_token1] = ACTIONS(1431), + [aux_sym_delete_token1] = ACTIONS(1433), + [aux_sym_highlight_token1] = ACTIONS(1435), + [aux_sym_edit_comment_token1] = ACTIONS(1437), + [anon_sym_CARET_LBRACK] = ACTIONS(1439), + [anon_sym_LBRACK_CARET] = ACTIONS(1441), + [sym_uri_autolink] = ACTIONS(1415), + [sym_email_autolink] = ACTIONS(1415), + [sym__whitespace_ge_2] = ACTIONS(1443), + [aux_sym__whitespace_token1] = ACTIONS(1445), + [sym__word_no_digit] = ACTIONS(1447), + [sym__digits] = ACTIONS(1447), + [anon_sym_DASH_DASH] = ACTIONS(1449), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1447), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1447), + [sym__code_span_start] = ACTIONS(1451), + [sym__emphasis_open_star] = ACTIONS(1453), + [sym__emphasis_open_underscore] = ACTIONS(1455), + [sym__strikeout_open] = ACTIONS(1457), + [sym__latex_span_start] = ACTIONS(1459), + [sym__single_quote_open] = ACTIONS(1461), + [sym__double_quote_open] = ACTIONS(1463), + [sym__superscript_open] = ACTIONS(1465), + [sym__subscript_open] = ACTIONS(1467), + [sym__subscript_close] = ACTIONS(2643), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1471), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1473), + [sym__cite_author_in_text] = ACTIONS(1475), + [sym__cite_suppress_author] = ACTIONS(1477), + [sym__shortcode_open_escaped] = ACTIONS(1479), + [sym__shortcode_open] = ACTIONS(1481), + [sym__unclosed_span] = ACTIONS(1415), }, [STATE(223)] = { - [sym_backslash_escape] = STATE(261), - [sym_commonmark_attribute] = STATE(261), - [sym_code_span] = STATE(261), - [sym_latex_span] = STATE(261), - [sym_superscript] = STATE(261), - [sym_subscript] = STATE(261), - [sym_strikeout] = STATE(261), - [sym_quoted_span] = STATE(261), - [sym_inline_note] = STATE(261), - [sym_citation] = STATE(261), - [sym_shortcode_escaped] = STATE(261), - [sym_shortcode] = STATE(261), - [sym_note_reference] = STATE(261), - [sym_image] = STATE(261), - [sym__image_inline_link] = STATE(595), - [sym__image_description] = STATE(1972), - [sym__image_description_non_empty] = STATE(1972), - [sym_hard_line_break] = STATE(261), - [sym__whitespace] = STATE(587), - [sym__word] = STATE(587), - [sym__soft_line_break] = STATE(597), - [sym__inline_base] = STATE(223), - [sym__text_base] = STATE(261), - [sym__inline_element_no_star_no_link] = STATE(223), - [aux_sym__inline_no_star_no_link] = STATE(223), - [sym__emphasis_star_no_link] = STATE(1145), - [sym__strong_emphasis_star_no_link] = STATE(223), - [sym__emphasis_underscore_no_link] = STATE(1145), - [sym__strong_emphasis_underscore_no_link] = STATE(223), - [aux_sym__inline_base_repeat1] = STATE(261), - [sym__backslash_escape] = ACTIONS(2634), - [sym_entity_reference] = ACTIONS(2637), - [sym_numeric_character_reference] = ACTIONS(2637), - [anon_sym_LT] = ACTIONS(2640), - [anon_sym_GT] = ACTIONS(2643), - [anon_sym_BANG] = ACTIONS(2646), - [anon_sym_DQUOTE] = ACTIONS(2643), - [anon_sym_POUND] = ACTIONS(2643), - [anon_sym_DOLLAR] = ACTIONS(2643), - [anon_sym_PERCENT] = ACTIONS(2643), - [anon_sym_AMP] = ACTIONS(2640), - [anon_sym_SQUOTE] = ACTIONS(2643), - [anon_sym_STAR] = ACTIONS(2643), - [anon_sym_PLUS] = ACTIONS(2643), - [anon_sym_COMMA] = ACTIONS(2643), - [anon_sym_DASH] = ACTIONS(2640), - [anon_sym_DOT] = ACTIONS(2640), - [anon_sym_SLASH] = ACTIONS(2643), - [anon_sym_COLON] = ACTIONS(2643), - [anon_sym_SEMI] = ACTIONS(2643), - [anon_sym_EQ] = ACTIONS(2643), - [anon_sym_QMARK] = ACTIONS(2643), - [anon_sym_BSLASH] = ACTIONS(2649), - [anon_sym_CARET] = ACTIONS(2640), - [anon_sym__] = ACTIONS(2643), - [anon_sym_BQUOTE] = ACTIONS(2643), - [anon_sym_LBRACE] = ACTIONS(2652), - [anon_sym_PIPE] = ACTIONS(2643), - [anon_sym_TILDE] = ACTIONS(2643), - [anon_sym_LPAREN] = ACTIONS(2643), - [anon_sym_RPAREN] = ACTIONS(2643), - [sym__newline_token] = ACTIONS(2655), - [anon_sym_CARET_LBRACK] = ACTIONS(2658), - [anon_sym_LBRACK_CARET] = ACTIONS(2661), - [sym_uri_autolink] = ACTIONS(2637), - [sym_email_autolink] = ACTIONS(2637), - [sym__whitespace_ge_2] = ACTIONS(2664), - [aux_sym__whitespace_token1] = ACTIONS(2667), - [sym__word_no_digit] = ACTIONS(2670), - [sym__digits] = ACTIONS(2670), - [anon_sym_DASH_DASH] = ACTIONS(2673), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2670), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2670), - [sym__code_span_start] = ACTIONS(2676), - [sym__emphasis_open_star] = ACTIONS(2679), - [sym__emphasis_open_underscore] = ACTIONS(2682), - [sym__emphasis_close_star] = ACTIONS(2685), - [sym__strikeout_open] = ACTIONS(2687), - [sym__latex_span_start] = ACTIONS(2690), - [sym__single_quote_open] = ACTIONS(2693), - [sym__double_quote_open] = ACTIONS(2696), - [sym__superscript_open] = ACTIONS(2699), - [sym__subscript_open] = ACTIONS(2702), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2705), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2708), - [sym__cite_author_in_text] = ACTIONS(2711), - [sym__cite_suppress_author] = ACTIONS(2714), - [sym__shortcode_open_escaped] = ACTIONS(2717), - [sym__shortcode_open] = ACTIONS(2720), - [sym__unclosed_span] = ACTIONS(2637), + [sym_backslash_escape] = STATE(372), + [sym_commonmark_attribute] = STATE(372), + [sym_code_span] = STATE(372), + [sym_latex_span] = STATE(372), + [sym_insert] = STATE(372), + [sym_delete] = STATE(372), + [sym_highlight] = STATE(372), + [sym_edit_comment] = STATE(372), + [sym_superscript] = STATE(372), + [sym_subscript] = STATE(372), + [sym_strikeout] = STATE(372), + [sym_quoted_span] = STATE(372), + [sym_inline_note] = STATE(372), + [sym_citation] = STATE(372), + [sym_shortcode_escaped] = STATE(372), + [sym_shortcode] = STATE(372), + [sym_note_reference] = STATE(372), + [sym__link_text] = STATE(454), + [sym__link_text_non_empty] = STATE(455), + [sym_inline_link] = STATE(235), + [sym_image] = STATE(372), + [sym__image_inline_link] = STATE(1025), + [sym__image_description] = STATE(2356), + [sym__image_description_non_empty] = STATE(2356), + [sym_hard_line_break] = STATE(372), + [sym__whitespace] = STATE(1022), + [sym__word] = STATE(1022), + [sym__soft_line_break] = STATE(1026), + [sym__inline_base] = STATE(235), + [sym__text_base] = STATE(372), + [sym__inline_element] = STATE(235), + [sym__emphasis_star] = STATE(714), + [sym__strong_emphasis_star] = STATE(235), + [sym__emphasis_underscore] = STATE(714), + [sym__strong_emphasis_underscore] = STATE(235), + [aux_sym_insert_repeat1] = STATE(235), + [aux_sym__inline_base_repeat1] = STATE(372), + [sym__backslash_escape] = ACTIONS(707), + [sym_entity_reference] = ACTIONS(709), + [sym_numeric_character_reference] = ACTIONS(709), + [anon_sym_LT] = ACTIONS(711), + [anon_sym_GT] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(715), + [anon_sym_DQUOTE] = ACTIONS(713), + [anon_sym_POUND] = ACTIONS(713), + [anon_sym_DOLLAR] = ACTIONS(713), + [anon_sym_PERCENT] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(711), + [anon_sym_SQUOTE] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_COMMA] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_DOT] = ACTIONS(711), + [anon_sym_SLASH] = ACTIONS(713), + [anon_sym_COLON] = ACTIONS(713), + [anon_sym_SEMI] = ACTIONS(713), + [anon_sym_EQ] = ACTIONS(713), + [anon_sym_QMARK] = ACTIONS(713), + [anon_sym_LBRACK] = ACTIONS(717), + [anon_sym_BSLASH] = ACTIONS(719), + [anon_sym_CARET] = ACTIONS(711), + [anon_sym__] = ACTIONS(713), + [anon_sym_BQUOTE] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(721), + [anon_sym_PIPE] = ACTIONS(713), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_LPAREN] = ACTIONS(713), + [anon_sym_RPAREN] = ACTIONS(713), + [sym__newline_token] = ACTIONS(723), + [aux_sym_insert_token1] = ACTIONS(725), + [aux_sym_insert_token2] = ACTIONS(2645), + [aux_sym_delete_token1] = ACTIONS(729), + [aux_sym_highlight_token1] = ACTIONS(731), + [aux_sym_edit_comment_token1] = ACTIONS(733), + [anon_sym_CARET_LBRACK] = ACTIONS(735), + [anon_sym_LBRACK_CARET] = ACTIONS(737), + [sym_uri_autolink] = ACTIONS(709), + [sym_email_autolink] = ACTIONS(709), + [sym__whitespace_ge_2] = ACTIONS(739), + [aux_sym__whitespace_token1] = ACTIONS(741), + [sym__word_no_digit] = ACTIONS(743), + [sym__digits] = ACTIONS(743), + [anon_sym_DASH_DASH] = ACTIONS(745), + [anon_sym_DASH_DASH_DASH] = ACTIONS(743), + [anon_sym_DOT_DOT_DOT] = ACTIONS(743), + [sym__code_span_start] = ACTIONS(747), + [sym__emphasis_open_star] = ACTIONS(749), + [sym__emphasis_open_underscore] = ACTIONS(751), + [sym__strikeout_open] = ACTIONS(753), + [sym__latex_span_start] = ACTIONS(755), + [sym__single_quote_open] = ACTIONS(757), + [sym__double_quote_open] = ACTIONS(759), + [sym__superscript_open] = ACTIONS(761), + [sym__subscript_open] = ACTIONS(763), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(765), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(767), + [sym__cite_author_in_text] = ACTIONS(769), + [sym__cite_suppress_author] = ACTIONS(771), + [sym__shortcode_open_escaped] = ACTIONS(773), + [sym__shortcode_open] = ACTIONS(775), + [sym__unclosed_span] = ACTIONS(709), }, [STATE(224)] = { - [sym_backslash_escape] = STATE(274), - [sym_commonmark_attribute] = STATE(274), - [sym_code_span] = STATE(274), - [sym_latex_span] = STATE(274), - [sym_superscript] = STATE(274), - [sym_subscript] = STATE(274), - [sym_strikeout] = STATE(274), - [sym_quoted_span] = STATE(274), - [sym_inline_note] = STATE(274), - [sym_citation] = STATE(274), - [sym_shortcode_escaped] = STATE(274), - [sym_shortcode] = STATE(274), - [sym_note_reference] = STATE(274), - [sym_image] = STATE(274), - [sym__image_inline_link] = STATE(894), - [sym__image_description] = STATE(2008), - [sym__image_description_non_empty] = STATE(2008), - [sym_hard_line_break] = STATE(274), - [sym__whitespace] = STATE(882), - [sym__word] = STATE(882), - [sym__soft_line_break] = STATE(898), - [sym__inline_base] = STATE(225), - [sym__text_base] = STATE(274), - [sym__inline_element_no_underscore_no_link] = STATE(225), - [aux_sym__inline_no_underscore_no_link] = STATE(225), - [sym__emphasis_star_no_link] = STATE(1169), - [sym__strong_emphasis_star_no_link] = STATE(225), - [sym__emphasis_underscore_no_link] = STATE(1169), - [sym__strong_emphasis_underscore_no_link] = STATE(225), - [aux_sym__inline_base_repeat1] = STATE(274), - [sym__backslash_escape] = ACTIONS(1123), - [sym_entity_reference] = ACTIONS(1125), - [sym_numeric_character_reference] = ACTIONS(1125), - [anon_sym_LT] = ACTIONS(1127), - [anon_sym_GT] = ACTIONS(1129), - [anon_sym_BANG] = ACTIONS(1131), - [anon_sym_DQUOTE] = ACTIONS(1129), - [anon_sym_POUND] = ACTIONS(1129), - [anon_sym_DOLLAR] = ACTIONS(1129), - [anon_sym_PERCENT] = ACTIONS(1129), - [anon_sym_AMP] = ACTIONS(1127), - [anon_sym_SQUOTE] = ACTIONS(1129), - [anon_sym_STAR] = ACTIONS(1129), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_COMMA] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1127), - [anon_sym_DOT] = ACTIONS(1127), - [anon_sym_SLASH] = ACTIONS(1129), - [anon_sym_COLON] = ACTIONS(1129), - [anon_sym_SEMI] = ACTIONS(1129), - [anon_sym_EQ] = ACTIONS(1129), - [anon_sym_QMARK] = ACTIONS(1129), - [anon_sym_BSLASH] = ACTIONS(1135), - [anon_sym_CARET] = ACTIONS(1127), - [anon_sym__] = ACTIONS(1129), - [anon_sym_BQUOTE] = ACTIONS(1129), - [anon_sym_LBRACE] = ACTIONS(1137), - [anon_sym_PIPE] = ACTIONS(1129), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1129), - [anon_sym_RPAREN] = ACTIONS(1129), - [sym__newline_token] = ACTIONS(1139), - [anon_sym_CARET_LBRACK] = ACTIONS(1141), - [anon_sym_LBRACK_CARET] = ACTIONS(1143), - [sym_uri_autolink] = ACTIONS(1125), - [sym_email_autolink] = ACTIONS(1125), - [sym__whitespace_ge_2] = ACTIONS(1145), - [aux_sym__whitespace_token1] = ACTIONS(1147), - [sym__word_no_digit] = ACTIONS(1149), - [sym__digits] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1151), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1149), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1149), - [sym__code_span_start] = ACTIONS(1153), - [sym__emphasis_open_star] = ACTIONS(2723), - [sym__emphasis_open_underscore] = ACTIONS(2725), - [sym__emphasis_close_underscore] = ACTIONS(2727), - [sym__strikeout_open] = ACTIONS(1161), - [sym__latex_span_start] = ACTIONS(1163), - [sym__single_quote_open] = ACTIONS(1165), - [sym__double_quote_open] = ACTIONS(1167), - [sym__superscript_open] = ACTIONS(1169), - [sym__subscript_open] = ACTIONS(1171), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1173), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1175), - [sym__cite_author_in_text] = ACTIONS(1177), - [sym__cite_suppress_author] = ACTIONS(1179), - [sym__shortcode_open_escaped] = ACTIONS(1181), - [sym__shortcode_open] = ACTIONS(1183), - [sym__unclosed_span] = ACTIONS(1125), + [sym_backslash_escape] = STATE(372), + [sym_commonmark_attribute] = STATE(372), + [sym_code_span] = STATE(372), + [sym_latex_span] = STATE(372), + [sym_insert] = STATE(372), + [sym_delete] = STATE(372), + [sym_highlight] = STATE(372), + [sym_edit_comment] = STATE(372), + [sym_superscript] = STATE(372), + [sym_subscript] = STATE(372), + [sym_strikeout] = STATE(372), + [sym_quoted_span] = STATE(372), + [sym_inline_note] = STATE(372), + [sym_citation] = STATE(372), + [sym_shortcode_escaped] = STATE(372), + [sym_shortcode] = STATE(372), + [sym_note_reference] = STATE(372), + [sym__link_text] = STATE(454), + [sym__link_text_non_empty] = STATE(455), + [sym_inline_link] = STATE(236), + [sym_image] = STATE(372), + [sym__image_inline_link] = STATE(1025), + [sym__image_description] = STATE(2356), + [sym__image_description_non_empty] = STATE(2356), + [sym_hard_line_break] = STATE(372), + [sym__whitespace] = STATE(1022), + [sym__word] = STATE(1022), + [sym__soft_line_break] = STATE(1026), + [sym__inline_base] = STATE(236), + [sym__text_base] = STATE(372), + [sym__inline_element] = STATE(236), + [sym__emphasis_star] = STATE(714), + [sym__strong_emphasis_star] = STATE(236), + [sym__emphasis_underscore] = STATE(714), + [sym__strong_emphasis_underscore] = STATE(236), + [aux_sym_insert_repeat1] = STATE(236), + [aux_sym__inline_base_repeat1] = STATE(372), + [sym__backslash_escape] = ACTIONS(707), + [sym_entity_reference] = ACTIONS(709), + [sym_numeric_character_reference] = ACTIONS(709), + [anon_sym_LT] = ACTIONS(711), + [anon_sym_GT] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(715), + [anon_sym_DQUOTE] = ACTIONS(713), + [anon_sym_POUND] = ACTIONS(713), + [anon_sym_DOLLAR] = ACTIONS(713), + [anon_sym_PERCENT] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(711), + [anon_sym_SQUOTE] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_COMMA] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_DOT] = ACTIONS(711), + [anon_sym_SLASH] = ACTIONS(713), + [anon_sym_COLON] = ACTIONS(713), + [anon_sym_SEMI] = ACTIONS(713), + [anon_sym_EQ] = ACTIONS(713), + [anon_sym_QMARK] = ACTIONS(713), + [anon_sym_LBRACK] = ACTIONS(717), + [anon_sym_BSLASH] = ACTIONS(719), + [anon_sym_CARET] = ACTIONS(711), + [anon_sym__] = ACTIONS(713), + [anon_sym_BQUOTE] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(721), + [anon_sym_PIPE] = ACTIONS(713), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_LPAREN] = ACTIONS(713), + [anon_sym_RPAREN] = ACTIONS(713), + [sym__newline_token] = ACTIONS(723), + [aux_sym_insert_token1] = ACTIONS(725), + [aux_sym_insert_token2] = ACTIONS(2647), + [aux_sym_delete_token1] = ACTIONS(729), + [aux_sym_highlight_token1] = ACTIONS(731), + [aux_sym_edit_comment_token1] = ACTIONS(733), + [anon_sym_CARET_LBRACK] = ACTIONS(735), + [anon_sym_LBRACK_CARET] = ACTIONS(737), + [sym_uri_autolink] = ACTIONS(709), + [sym_email_autolink] = ACTIONS(709), + [sym__whitespace_ge_2] = ACTIONS(739), + [aux_sym__whitespace_token1] = ACTIONS(741), + [sym__word_no_digit] = ACTIONS(743), + [sym__digits] = ACTIONS(743), + [anon_sym_DASH_DASH] = ACTIONS(745), + [anon_sym_DASH_DASH_DASH] = ACTIONS(743), + [anon_sym_DOT_DOT_DOT] = ACTIONS(743), + [sym__code_span_start] = ACTIONS(747), + [sym__emphasis_open_star] = ACTIONS(749), + [sym__emphasis_open_underscore] = ACTIONS(751), + [sym__strikeout_open] = ACTIONS(753), + [sym__latex_span_start] = ACTIONS(755), + [sym__single_quote_open] = ACTIONS(757), + [sym__double_quote_open] = ACTIONS(759), + [sym__superscript_open] = ACTIONS(761), + [sym__subscript_open] = ACTIONS(763), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(765), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(767), + [sym__cite_author_in_text] = ACTIONS(769), + [sym__cite_suppress_author] = ACTIONS(771), + [sym__shortcode_open_escaped] = ACTIONS(773), + [sym__shortcode_open] = ACTIONS(775), + [sym__unclosed_span] = ACTIONS(709), }, [STATE(225)] = { - [sym_backslash_escape] = STATE(274), - [sym_commonmark_attribute] = STATE(274), - [sym_code_span] = STATE(274), - [sym_latex_span] = STATE(274), - [sym_superscript] = STATE(274), - [sym_subscript] = STATE(274), - [sym_strikeout] = STATE(274), - [sym_quoted_span] = STATE(274), - [sym_inline_note] = STATE(274), - [sym_citation] = STATE(274), - [sym_shortcode_escaped] = STATE(274), - [sym_shortcode] = STATE(274), - [sym_note_reference] = STATE(274), - [sym_image] = STATE(274), - [sym__image_inline_link] = STATE(894), - [sym__image_description] = STATE(2008), - [sym__image_description_non_empty] = STATE(2008), - [sym_hard_line_break] = STATE(274), - [sym__whitespace] = STATE(882), - [sym__word] = STATE(882), - [sym__soft_line_break] = STATE(898), - [sym__inline_base] = STATE(225), - [sym__text_base] = STATE(274), - [sym__inline_element_no_underscore_no_link] = STATE(225), - [aux_sym__inline_no_underscore_no_link] = STATE(225), - [sym__emphasis_star_no_link] = STATE(1169), - [sym__strong_emphasis_star_no_link] = STATE(225), - [sym__emphasis_underscore_no_link] = STATE(1169), - [sym__strong_emphasis_underscore_no_link] = STATE(225), - [aux_sym__inline_base_repeat1] = STATE(274), - [sym__backslash_escape] = ACTIONS(2729), - [sym_entity_reference] = ACTIONS(2732), - [sym_numeric_character_reference] = ACTIONS(2732), - [anon_sym_LT] = ACTIONS(2735), - [anon_sym_GT] = ACTIONS(2738), - [anon_sym_BANG] = ACTIONS(2741), - [anon_sym_DQUOTE] = ACTIONS(2738), - [anon_sym_POUND] = ACTIONS(2738), - [anon_sym_DOLLAR] = ACTIONS(2738), - [anon_sym_PERCENT] = ACTIONS(2738), - [anon_sym_AMP] = ACTIONS(2735), - [anon_sym_SQUOTE] = ACTIONS(2738), - [anon_sym_STAR] = ACTIONS(2738), - [anon_sym_PLUS] = ACTIONS(2738), - [anon_sym_COMMA] = ACTIONS(2738), - [anon_sym_DASH] = ACTIONS(2735), - [anon_sym_DOT] = ACTIONS(2735), - [anon_sym_SLASH] = ACTIONS(2738), - [anon_sym_COLON] = ACTIONS(2738), - [anon_sym_SEMI] = ACTIONS(2738), - [anon_sym_EQ] = ACTIONS(2738), - [anon_sym_QMARK] = ACTIONS(2738), - [anon_sym_BSLASH] = ACTIONS(2744), - [anon_sym_CARET] = ACTIONS(2735), - [anon_sym__] = ACTIONS(2738), - [anon_sym_BQUOTE] = ACTIONS(2738), - [anon_sym_LBRACE] = ACTIONS(2747), - [anon_sym_PIPE] = ACTIONS(2738), - [anon_sym_TILDE] = ACTIONS(2738), - [anon_sym_LPAREN] = ACTIONS(2738), - [anon_sym_RPAREN] = ACTIONS(2738), - [sym__newline_token] = ACTIONS(2750), - [anon_sym_CARET_LBRACK] = ACTIONS(2753), - [anon_sym_LBRACK_CARET] = ACTIONS(2756), - [sym_uri_autolink] = ACTIONS(2732), - [sym_email_autolink] = ACTIONS(2732), - [sym__whitespace_ge_2] = ACTIONS(2759), - [aux_sym__whitespace_token1] = ACTIONS(2762), - [sym__word_no_digit] = ACTIONS(2765), - [sym__digits] = ACTIONS(2765), - [anon_sym_DASH_DASH] = ACTIONS(2768), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2765), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2765), - [sym__code_span_start] = ACTIONS(2771), - [sym__emphasis_open_star] = ACTIONS(2774), - [sym__emphasis_open_underscore] = ACTIONS(2777), - [sym__emphasis_close_underscore] = ACTIONS(2780), - [sym__strikeout_open] = ACTIONS(2782), - [sym__latex_span_start] = ACTIONS(2785), - [sym__single_quote_open] = ACTIONS(2788), - [sym__double_quote_open] = ACTIONS(2791), - [sym__superscript_open] = ACTIONS(2794), - [sym__subscript_open] = ACTIONS(2797), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2800), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2803), - [sym__cite_author_in_text] = ACTIONS(2806), - [sym__cite_suppress_author] = ACTIONS(2809), - [sym__shortcode_open_escaped] = ACTIONS(2812), - [sym__shortcode_open] = ACTIONS(2815), - [sym__unclosed_span] = ACTIONS(2732), + [sym_backslash_escape] = STATE(372), + [sym_commonmark_attribute] = STATE(372), + [sym_code_span] = STATE(372), + [sym_latex_span] = STATE(372), + [sym_insert] = STATE(372), + [sym_delete] = STATE(372), + [sym_highlight] = STATE(372), + [sym_edit_comment] = STATE(372), + [sym_superscript] = STATE(372), + [sym_subscript] = STATE(372), + [sym_strikeout] = STATE(372), + [sym_quoted_span] = STATE(372), + [sym_inline_note] = STATE(372), + [sym_citation] = STATE(372), + [sym_shortcode_escaped] = STATE(372), + [sym_shortcode] = STATE(372), + [sym_note_reference] = STATE(372), + [sym__link_text] = STATE(454), + [sym__link_text_non_empty] = STATE(455), + [sym_inline_link] = STATE(237), + [sym_image] = STATE(372), + [sym__image_inline_link] = STATE(1025), + [sym__image_description] = STATE(2356), + [sym__image_description_non_empty] = STATE(2356), + [sym_hard_line_break] = STATE(372), + [sym__whitespace] = STATE(1022), + [sym__word] = STATE(1022), + [sym__soft_line_break] = STATE(1026), + [sym__inline_base] = STATE(237), + [sym__text_base] = STATE(372), + [sym__inline_element] = STATE(237), + [sym__emphasis_star] = STATE(714), + [sym__strong_emphasis_star] = STATE(237), + [sym__emphasis_underscore] = STATE(714), + [sym__strong_emphasis_underscore] = STATE(237), + [aux_sym_insert_repeat1] = STATE(237), + [aux_sym__inline_base_repeat1] = STATE(372), + [sym__backslash_escape] = ACTIONS(707), + [sym_entity_reference] = ACTIONS(709), + [sym_numeric_character_reference] = ACTIONS(709), + [anon_sym_LT] = ACTIONS(711), + [anon_sym_GT] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(715), + [anon_sym_DQUOTE] = ACTIONS(713), + [anon_sym_POUND] = ACTIONS(713), + [anon_sym_DOLLAR] = ACTIONS(713), + [anon_sym_PERCENT] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(711), + [anon_sym_SQUOTE] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_COMMA] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_DOT] = ACTIONS(711), + [anon_sym_SLASH] = ACTIONS(713), + [anon_sym_COLON] = ACTIONS(713), + [anon_sym_SEMI] = ACTIONS(713), + [anon_sym_EQ] = ACTIONS(713), + [anon_sym_QMARK] = ACTIONS(713), + [anon_sym_LBRACK] = ACTIONS(717), + [anon_sym_BSLASH] = ACTIONS(719), + [anon_sym_CARET] = ACTIONS(711), + [anon_sym__] = ACTIONS(713), + [anon_sym_BQUOTE] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(721), + [anon_sym_PIPE] = ACTIONS(713), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_LPAREN] = ACTIONS(713), + [anon_sym_RPAREN] = ACTIONS(713), + [sym__newline_token] = ACTIONS(723), + [aux_sym_insert_token1] = ACTIONS(725), + [aux_sym_insert_token2] = ACTIONS(2649), + [aux_sym_delete_token1] = ACTIONS(729), + [aux_sym_highlight_token1] = ACTIONS(731), + [aux_sym_edit_comment_token1] = ACTIONS(733), + [anon_sym_CARET_LBRACK] = ACTIONS(735), + [anon_sym_LBRACK_CARET] = ACTIONS(737), + [sym_uri_autolink] = ACTIONS(709), + [sym_email_autolink] = ACTIONS(709), + [sym__whitespace_ge_2] = ACTIONS(739), + [aux_sym__whitespace_token1] = ACTIONS(741), + [sym__word_no_digit] = ACTIONS(743), + [sym__digits] = ACTIONS(743), + [anon_sym_DASH_DASH] = ACTIONS(745), + [anon_sym_DASH_DASH_DASH] = ACTIONS(743), + [anon_sym_DOT_DOT_DOT] = ACTIONS(743), + [sym__code_span_start] = ACTIONS(747), + [sym__emphasis_open_star] = ACTIONS(749), + [sym__emphasis_open_underscore] = ACTIONS(751), + [sym__strikeout_open] = ACTIONS(753), + [sym__latex_span_start] = ACTIONS(755), + [sym__single_quote_open] = ACTIONS(757), + [sym__double_quote_open] = ACTIONS(759), + [sym__superscript_open] = ACTIONS(761), + [sym__subscript_open] = ACTIONS(763), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(765), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(767), + [sym__cite_author_in_text] = ACTIONS(769), + [sym__cite_suppress_author] = ACTIONS(771), + [sym__shortcode_open_escaped] = ACTIONS(773), + [sym__shortcode_open] = ACTIONS(775), + [sym__unclosed_span] = ACTIONS(709), }, [STATE(226)] = { - [sym_backslash_escape] = STATE(271), - [sym_commonmark_attribute] = STATE(271), - [sym_code_span] = STATE(271), - [sym_latex_span] = STATE(271), - [sym_superscript] = STATE(271), - [sym_subscript] = STATE(271), - [sym_strikeout] = STATE(271), - [sym_quoted_span] = STATE(271), - [sym_inline_note] = STATE(271), - [sym_citation] = STATE(271), - [sym_shortcode_escaped] = STATE(271), - [sym_shortcode] = STATE(271), - [sym_note_reference] = STATE(271), - [sym_image] = STATE(271), - [sym__image_inline_link] = STATE(883), - [sym__image_description] = STATE(1998), - [sym__image_description_non_empty] = STATE(1998), - [sym_hard_line_break] = STATE(271), - [sym__whitespace] = STATE(881), - [sym__word] = STATE(881), - [sym__soft_line_break] = STATE(884), - [sym__inline_base] = STATE(1144), - [sym__text_base] = STATE(271), - [sym__inline_element_no_link] = STATE(1144), - [aux_sym__inline_no_link] = STATE(220), - [sym__emphasis_star_no_link] = STATE(1170), - [sym__strong_emphasis_star_no_link] = STATE(1144), - [sym__emphasis_underscore_no_link] = STATE(1170), - [sym__strong_emphasis_underscore_no_link] = STATE(1144), - [aux_sym__inline_base_repeat1] = STATE(271), - [sym__backslash_escape] = ACTIONS(159), - [sym_entity_reference] = ACTIONS(161), - [sym_numeric_character_reference] = ACTIONS(161), - [anon_sym_LT] = ACTIONS(163), - [anon_sym_GT] = ACTIONS(165), - [anon_sym_BANG] = ACTIONS(167), - [anon_sym_DQUOTE] = ACTIONS(165), - [anon_sym_POUND] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(165), - [anon_sym_PERCENT] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_SQUOTE] = ACTIONS(165), - [anon_sym_STAR] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(165), - [anon_sym_COMMA] = ACTIONS(165), - [anon_sym_DASH] = ACTIONS(163), - [anon_sym_DOT] = ACTIONS(163), - [anon_sym_SLASH] = ACTIONS(165), - [anon_sym_COLON] = ACTIONS(165), - [anon_sym_SEMI] = ACTIONS(165), - [anon_sym_EQ] = ACTIONS(165), - [anon_sym_QMARK] = ACTIONS(165), - [anon_sym_BSLASH] = ACTIONS(171), - [anon_sym_RBRACK] = ACTIONS(2818), - [anon_sym_CARET] = ACTIONS(163), - [anon_sym__] = ACTIONS(165), - [anon_sym_BQUOTE] = ACTIONS(165), - [anon_sym_LBRACE] = ACTIONS(175), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(165), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_RPAREN] = ACTIONS(165), - [sym__newline_token] = ACTIONS(177), - [anon_sym_CARET_LBRACK] = ACTIONS(179), - [anon_sym_LBRACK_CARET] = ACTIONS(181), - [sym_uri_autolink] = ACTIONS(161), - [sym_email_autolink] = ACTIONS(161), - [sym__whitespace_ge_2] = ACTIONS(183), - [aux_sym__whitespace_token1] = ACTIONS(185), - [sym__word_no_digit] = ACTIONS(187), - [sym__digits] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_DASH_DASH_DASH] = ACTIONS(187), - [anon_sym_DOT_DOT_DOT] = ACTIONS(187), - [sym__code_span_start] = ACTIONS(191), - [sym__emphasis_open_star] = ACTIONS(2630), - [sym__emphasis_open_underscore] = ACTIONS(2632), - [sym__strikeout_open] = ACTIONS(199), - [sym__latex_span_start] = ACTIONS(201), - [sym__single_quote_open] = ACTIONS(203), - [sym__double_quote_open] = ACTIONS(205), - [sym__superscript_open] = ACTIONS(207), - [sym__subscript_open] = ACTIONS(209), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(211), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(213), - [sym__cite_author_in_text] = ACTIONS(215), - [sym__cite_suppress_author] = ACTIONS(217), - [sym__shortcode_open_escaped] = ACTIONS(219), - [sym__shortcode_open] = ACTIONS(221), - [sym__unclosed_span] = ACTIONS(161), + [sym_backslash_escape] = STATE(372), + [sym_commonmark_attribute] = STATE(372), + [sym_code_span] = STATE(372), + [sym_latex_span] = STATE(372), + [sym_insert] = STATE(372), + [sym_delete] = STATE(372), + [sym_highlight] = STATE(372), + [sym_edit_comment] = STATE(372), + [sym_superscript] = STATE(372), + [sym_subscript] = STATE(372), + [sym_strikeout] = STATE(372), + [sym_quoted_span] = STATE(372), + [sym_inline_note] = STATE(372), + [sym_citation] = STATE(372), + [sym_shortcode_escaped] = STATE(372), + [sym_shortcode] = STATE(372), + [sym_note_reference] = STATE(372), + [sym__link_text] = STATE(454), + [sym__link_text_non_empty] = STATE(455), + [sym_inline_link] = STATE(238), + [sym_image] = STATE(372), + [sym__image_inline_link] = STATE(1025), + [sym__image_description] = STATE(2356), + [sym__image_description_non_empty] = STATE(2356), + [sym_hard_line_break] = STATE(372), + [sym__whitespace] = STATE(1022), + [sym__word] = STATE(1022), + [sym__soft_line_break] = STATE(1026), + [sym__inline_base] = STATE(238), + [sym__text_base] = STATE(372), + [sym__inline_element] = STATE(238), + [sym__emphasis_star] = STATE(714), + [sym__strong_emphasis_star] = STATE(238), + [sym__emphasis_underscore] = STATE(714), + [sym__strong_emphasis_underscore] = STATE(238), + [aux_sym_insert_repeat1] = STATE(238), + [aux_sym__inline_base_repeat1] = STATE(372), + [sym__backslash_escape] = ACTIONS(707), + [sym_entity_reference] = ACTIONS(709), + [sym_numeric_character_reference] = ACTIONS(709), + [anon_sym_LT] = ACTIONS(711), + [anon_sym_GT] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(715), + [anon_sym_DQUOTE] = ACTIONS(713), + [anon_sym_POUND] = ACTIONS(713), + [anon_sym_DOLLAR] = ACTIONS(713), + [anon_sym_PERCENT] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(711), + [anon_sym_SQUOTE] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_COMMA] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_DOT] = ACTIONS(711), + [anon_sym_SLASH] = ACTIONS(713), + [anon_sym_COLON] = ACTIONS(713), + [anon_sym_SEMI] = ACTIONS(713), + [anon_sym_EQ] = ACTIONS(713), + [anon_sym_QMARK] = ACTIONS(713), + [anon_sym_LBRACK] = ACTIONS(717), + [anon_sym_BSLASH] = ACTIONS(719), + [anon_sym_CARET] = ACTIONS(711), + [anon_sym__] = ACTIONS(713), + [anon_sym_BQUOTE] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(721), + [anon_sym_PIPE] = ACTIONS(713), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_LPAREN] = ACTIONS(713), + [anon_sym_RPAREN] = ACTIONS(713), + [sym__newline_token] = ACTIONS(723), + [aux_sym_insert_token1] = ACTIONS(725), + [aux_sym_insert_token2] = ACTIONS(2651), + [aux_sym_delete_token1] = ACTIONS(729), + [aux_sym_highlight_token1] = ACTIONS(731), + [aux_sym_edit_comment_token1] = ACTIONS(733), + [anon_sym_CARET_LBRACK] = ACTIONS(735), + [anon_sym_LBRACK_CARET] = ACTIONS(737), + [sym_uri_autolink] = ACTIONS(709), + [sym_email_autolink] = ACTIONS(709), + [sym__whitespace_ge_2] = ACTIONS(739), + [aux_sym__whitespace_token1] = ACTIONS(741), + [sym__word_no_digit] = ACTIONS(743), + [sym__digits] = ACTIONS(743), + [anon_sym_DASH_DASH] = ACTIONS(745), + [anon_sym_DASH_DASH_DASH] = ACTIONS(743), + [anon_sym_DOT_DOT_DOT] = ACTIONS(743), + [sym__code_span_start] = ACTIONS(747), + [sym__emphasis_open_star] = ACTIONS(749), + [sym__emphasis_open_underscore] = ACTIONS(751), + [sym__strikeout_open] = ACTIONS(753), + [sym__latex_span_start] = ACTIONS(755), + [sym__single_quote_open] = ACTIONS(757), + [sym__double_quote_open] = ACTIONS(759), + [sym__superscript_open] = ACTIONS(761), + [sym__subscript_open] = ACTIONS(763), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(765), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(767), + [sym__cite_author_in_text] = ACTIONS(769), + [sym__cite_suppress_author] = ACTIONS(771), + [sym__shortcode_open_escaped] = ACTIONS(773), + [sym__shortcode_open] = ACTIONS(775), + [sym__unclosed_span] = ACTIONS(709), }, [STATE(227)] = { - [sym_backslash_escape] = STATE(261), - [sym_commonmark_attribute] = STATE(261), - [sym_code_span] = STATE(261), - [sym_latex_span] = STATE(261), - [sym_superscript] = STATE(261), - [sym_subscript] = STATE(261), - [sym_strikeout] = STATE(261), - [sym_quoted_span] = STATE(261), - [sym_inline_note] = STATE(261), - [sym_citation] = STATE(261), - [sym_shortcode_escaped] = STATE(261), - [sym_shortcode] = STATE(261), - [sym_note_reference] = STATE(261), - [sym_image] = STATE(261), - [sym__image_inline_link] = STATE(595), - [sym__image_description] = STATE(1972), - [sym__image_description_non_empty] = STATE(1972), - [sym_hard_line_break] = STATE(261), - [sym__whitespace] = STATE(587), - [sym__word] = STATE(587), - [sym__soft_line_break] = STATE(597), - [sym__inline_base] = STATE(223), - [sym__text_base] = STATE(261), - [sym__inline_element_no_star_no_link] = STATE(223), - [aux_sym__inline_no_star_no_link] = STATE(223), - [sym__emphasis_star_no_link] = STATE(1145), - [sym__strong_emphasis_star_no_link] = STATE(223), - [sym__emphasis_underscore_no_link] = STATE(1145), - [sym__strong_emphasis_underscore_no_link] = STATE(223), - [aux_sym__inline_base_repeat1] = STATE(261), - [sym__backslash_escape] = ACTIONS(969), - [sym_entity_reference] = ACTIONS(971), - [sym_numeric_character_reference] = ACTIONS(971), - [anon_sym_LT] = ACTIONS(973), - [anon_sym_GT] = ACTIONS(975), - [anon_sym_BANG] = ACTIONS(977), - [anon_sym_DQUOTE] = ACTIONS(975), - [anon_sym_POUND] = ACTIONS(975), - [anon_sym_DOLLAR] = ACTIONS(975), - [anon_sym_PERCENT] = ACTIONS(975), - [anon_sym_AMP] = ACTIONS(973), - [anon_sym_SQUOTE] = ACTIONS(975), - [anon_sym_STAR] = ACTIONS(975), - [anon_sym_PLUS] = ACTIONS(975), - [anon_sym_COMMA] = ACTIONS(975), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_DOT] = ACTIONS(973), - [anon_sym_SLASH] = ACTIONS(975), - [anon_sym_COLON] = ACTIONS(975), - [anon_sym_SEMI] = ACTIONS(975), - [anon_sym_EQ] = ACTIONS(975), - [anon_sym_QMARK] = ACTIONS(975), - [anon_sym_BSLASH] = ACTIONS(981), - [anon_sym_CARET] = ACTIONS(973), - [anon_sym__] = ACTIONS(975), - [anon_sym_BQUOTE] = ACTIONS(975), - [anon_sym_LBRACE] = ACTIONS(983), - [anon_sym_PIPE] = ACTIONS(975), - [anon_sym_TILDE] = ACTIONS(975), - [anon_sym_LPAREN] = ACTIONS(975), - [anon_sym_RPAREN] = ACTIONS(975), - [sym__newline_token] = ACTIONS(985), - [anon_sym_CARET_LBRACK] = ACTIONS(987), - [anon_sym_LBRACK_CARET] = ACTIONS(989), - [sym_uri_autolink] = ACTIONS(971), - [sym_email_autolink] = ACTIONS(971), - [sym__whitespace_ge_2] = ACTIONS(991), - [aux_sym__whitespace_token1] = ACTIONS(993), - [sym__word_no_digit] = ACTIONS(995), - [sym__digits] = ACTIONS(995), - [anon_sym_DASH_DASH] = ACTIONS(997), - [anon_sym_DASH_DASH_DASH] = ACTIONS(995), - [anon_sym_DOT_DOT_DOT] = ACTIONS(995), - [sym__code_span_start] = ACTIONS(999), - [sym__emphasis_open_star] = ACTIONS(2531), - [sym__emphasis_open_underscore] = ACTIONS(2533), - [sym__emphasis_close_star] = ACTIONS(2820), - [sym__strikeout_open] = ACTIONS(1007), - [sym__latex_span_start] = ACTIONS(1009), - [sym__single_quote_open] = ACTIONS(1011), - [sym__double_quote_open] = ACTIONS(1013), - [sym__superscript_open] = ACTIONS(1015), - [sym__subscript_open] = ACTIONS(1017), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1019), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1021), - [sym__cite_author_in_text] = ACTIONS(1023), - [sym__cite_suppress_author] = ACTIONS(1025), - [sym__shortcode_open_escaped] = ACTIONS(1027), - [sym__shortcode_open] = ACTIONS(1029), - [sym__unclosed_span] = ACTIONS(971), + [sym_backslash_escape] = STATE(370), + [sym_commonmark_attribute] = STATE(370), + [sym_code_span] = STATE(370), + [sym_latex_span] = STATE(370), + [sym_insert] = STATE(370), + [sym_delete] = STATE(370), + [sym_highlight] = STATE(370), + [sym_edit_comment] = STATE(370), + [sym_superscript] = STATE(370), + [sym_subscript] = STATE(370), + [sym_strikeout] = STATE(370), + [sym_quoted_span] = STATE(370), + [sym_inline_note] = STATE(370), + [sym_citation] = STATE(370), + [sym_shortcode_escaped] = STATE(370), + [sym_shortcode] = STATE(370), + [sym_note_reference] = STATE(370), + [sym__link_text] = STATE(472), + [sym__link_text_non_empty] = STATE(473), + [sym_inline_link] = STATE(1269), + [sym_image] = STATE(370), + [sym__image_inline_link] = STATE(923), + [sym__image_description] = STATE(2342), + [sym__image_description_non_empty] = STATE(2342), + [sym_hard_line_break] = STATE(370), + [sym__whitespace] = STATE(920), + [sym__word] = STATE(920), + [sym__soft_line_break] = STATE(924), + [sym__inline_base] = STATE(1269), + [sym__text_base] = STATE(370), + [sym__inline_element] = STATE(1269), + [aux_sym__inline] = STATE(40), + [sym__emphasis_star] = STATE(821), + [sym__strong_emphasis_star] = STATE(1269), + [sym__emphasis_underscore] = STATE(821), + [sym__strong_emphasis_underscore] = STATE(1269), + [aux_sym__inline_base_repeat1] = STATE(370), + [sym__backslash_escape] = ACTIONS(73), + [sym_entity_reference] = ACTIONS(75), + [sym_numeric_character_reference] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_BANG] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_POUND] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(79), + [anon_sym_PERCENT] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_STAR] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_COMMA] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_DOT] = ACTIONS(77), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_COLON] = ACTIONS(79), + [anon_sym_SEMI] = ACTIONS(79), + [anon_sym_EQ] = ACTIONS(79), + [anon_sym_QMARK] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(83), + [anon_sym_BSLASH] = ACTIONS(85), + [anon_sym_RBRACK] = ACTIONS(2653), + [anon_sym_CARET] = ACTIONS(77), + [anon_sym__] = ACTIONS(79), + [anon_sym_BQUOTE] = ACTIONS(79), + [anon_sym_LBRACE] = ACTIONS(89), + [anon_sym_PIPE] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(79), + [anon_sym_RPAREN] = ACTIONS(79), + [sym__newline_token] = ACTIONS(91), + [aux_sym_insert_token1] = ACTIONS(93), + [aux_sym_delete_token1] = ACTIONS(95), + [aux_sym_highlight_token1] = ACTIONS(97), + [aux_sym_edit_comment_token1] = ACTIONS(99), + [anon_sym_CARET_LBRACK] = ACTIONS(101), + [anon_sym_LBRACK_CARET] = ACTIONS(103), + [sym_uri_autolink] = ACTIONS(75), + [sym_email_autolink] = ACTIONS(75), + [sym__whitespace_ge_2] = ACTIONS(105), + [aux_sym__whitespace_token1] = ACTIONS(107), + [sym__word_no_digit] = ACTIONS(109), + [sym__digits] = ACTIONS(109), + [anon_sym_DASH_DASH] = ACTIONS(111), + [anon_sym_DASH_DASH_DASH] = ACTIONS(109), + [anon_sym_DOT_DOT_DOT] = ACTIONS(109), + [sym__code_span_start] = ACTIONS(113), + [sym__emphasis_open_star] = ACTIONS(115), + [sym__emphasis_open_underscore] = ACTIONS(117), + [sym__strikeout_open] = ACTIONS(121), + [sym__latex_span_start] = ACTIONS(123), + [sym__single_quote_open] = ACTIONS(125), + [sym__double_quote_open] = ACTIONS(127), + [sym__superscript_open] = ACTIONS(129), + [sym__subscript_open] = ACTIONS(131), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(133), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(135), + [sym__cite_author_in_text] = ACTIONS(137), + [sym__cite_suppress_author] = ACTIONS(139), + [sym__shortcode_open_escaped] = ACTIONS(141), + [sym__shortcode_open] = ACTIONS(143), + [sym__unclosed_span] = ACTIONS(75), }, [STATE(228)] = { - [sym_backslash_escape] = STATE(274), - [sym_commonmark_attribute] = STATE(274), - [sym_code_span] = STATE(274), - [sym_latex_span] = STATE(274), - [sym_superscript] = STATE(274), - [sym_subscript] = STATE(274), - [sym_strikeout] = STATE(274), - [sym_quoted_span] = STATE(274), - [sym_inline_note] = STATE(274), - [sym_citation] = STATE(274), - [sym_shortcode_escaped] = STATE(274), - [sym_shortcode] = STATE(274), - [sym_note_reference] = STATE(274), - [sym_image] = STATE(274), - [sym__image_inline_link] = STATE(894), - [sym__image_description] = STATE(2008), - [sym__image_description_non_empty] = STATE(2008), - [sym_hard_line_break] = STATE(274), - [sym__whitespace] = STATE(882), - [sym__word] = STATE(882), - [sym__soft_line_break] = STATE(898), - [sym__inline_base] = STATE(225), - [sym__text_base] = STATE(274), - [sym__inline_element_no_underscore_no_link] = STATE(225), - [aux_sym__inline_no_underscore_no_link] = STATE(225), - [sym__emphasis_star_no_link] = STATE(1169), - [sym__strong_emphasis_star_no_link] = STATE(225), - [sym__emphasis_underscore_no_link] = STATE(1169), - [sym__strong_emphasis_underscore_no_link] = STATE(225), - [aux_sym__inline_base_repeat1] = STATE(274), - [sym__backslash_escape] = ACTIONS(1123), - [sym_entity_reference] = ACTIONS(1125), - [sym_numeric_character_reference] = ACTIONS(1125), - [anon_sym_LT] = ACTIONS(1127), - [anon_sym_GT] = ACTIONS(1129), - [anon_sym_BANG] = ACTIONS(1131), - [anon_sym_DQUOTE] = ACTIONS(1129), - [anon_sym_POUND] = ACTIONS(1129), - [anon_sym_DOLLAR] = ACTIONS(1129), - [anon_sym_PERCENT] = ACTIONS(1129), - [anon_sym_AMP] = ACTIONS(1127), - [anon_sym_SQUOTE] = ACTIONS(1129), - [anon_sym_STAR] = ACTIONS(1129), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_COMMA] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1127), - [anon_sym_DOT] = ACTIONS(1127), - [anon_sym_SLASH] = ACTIONS(1129), - [anon_sym_COLON] = ACTIONS(1129), - [anon_sym_SEMI] = ACTIONS(1129), - [anon_sym_EQ] = ACTIONS(1129), - [anon_sym_QMARK] = ACTIONS(1129), - [anon_sym_BSLASH] = ACTIONS(1135), - [anon_sym_CARET] = ACTIONS(1127), - [anon_sym__] = ACTIONS(1129), - [anon_sym_BQUOTE] = ACTIONS(1129), - [anon_sym_LBRACE] = ACTIONS(1137), - [anon_sym_PIPE] = ACTIONS(1129), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1129), - [anon_sym_RPAREN] = ACTIONS(1129), - [sym__newline_token] = ACTIONS(1139), - [anon_sym_CARET_LBRACK] = ACTIONS(1141), - [anon_sym_LBRACK_CARET] = ACTIONS(1143), - [sym_uri_autolink] = ACTIONS(1125), - [sym_email_autolink] = ACTIONS(1125), - [sym__whitespace_ge_2] = ACTIONS(1145), - [aux_sym__whitespace_token1] = ACTIONS(1147), - [sym__word_no_digit] = ACTIONS(1149), - [sym__digits] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1151), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1149), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1149), - [sym__code_span_start] = ACTIONS(1153), - [sym__emphasis_open_star] = ACTIONS(2723), - [sym__emphasis_open_underscore] = ACTIONS(2725), - [sym__emphasis_close_underscore] = ACTIONS(2822), - [sym__strikeout_open] = ACTIONS(1161), - [sym__latex_span_start] = ACTIONS(1163), - [sym__single_quote_open] = ACTIONS(1165), - [sym__double_quote_open] = ACTIONS(1167), - [sym__superscript_open] = ACTIONS(1169), - [sym__subscript_open] = ACTIONS(1171), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1173), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1175), - [sym__cite_author_in_text] = ACTIONS(1177), - [sym__cite_suppress_author] = ACTIONS(1179), - [sym__shortcode_open_escaped] = ACTIONS(1181), - [sym__shortcode_open] = ACTIONS(1183), - [sym__unclosed_span] = ACTIONS(1125), + [sym_backslash_escape] = STATE(373), + [sym_commonmark_attribute] = STATE(373), + [sym_code_span] = STATE(373), + [sym_latex_span] = STATE(373), + [sym_insert] = STATE(373), + [sym_delete] = STATE(373), + [sym_highlight] = STATE(373), + [sym_edit_comment] = STATE(373), + [sym_superscript] = STATE(373), + [sym_subscript] = STATE(373), + [sym_strikeout] = STATE(373), + [sym_quoted_span] = STATE(373), + [sym_inline_note] = STATE(373), + [sym_citation] = STATE(373), + [sym_shortcode_escaped] = STATE(373), + [sym_shortcode] = STATE(373), + [sym_note_reference] = STATE(373), + [sym__link_text] = STATE(522), + [sym__link_text_non_empty] = STATE(523), + [sym_inline_link] = STATE(36), + [sym_image] = STATE(373), + [sym__image_inline_link] = STATE(1265), + [sym__image_description] = STATE(2331), + [sym__image_description_non_empty] = STATE(2331), + [sym_hard_line_break] = STATE(373), + [sym__whitespace] = STATE(1262), + [sym__word] = STATE(1262), + [sym__soft_line_break] = STATE(1267), + [sym__inline_base] = STATE(36), + [sym__text_base] = STATE(373), + [sym__inline_element_no_star] = STATE(36), + [aux_sym__inline_no_star] = STATE(36), + [sym__emphasis_star] = STATE(1147), + [sym__strong_emphasis_star] = STATE(36), + [sym__emphasis_underscore] = STATE(1147), + [sym__strong_emphasis_underscore] = STATE(36), + [aux_sym__inline_base_repeat1] = STATE(373), + [sym__backslash_escape] = ACTIONS(885), + [sym_entity_reference] = ACTIONS(887), + [sym_numeric_character_reference] = ACTIONS(887), + [anon_sym_LT] = ACTIONS(889), + [anon_sym_GT] = ACTIONS(891), + [anon_sym_BANG] = ACTIONS(893), + [anon_sym_DQUOTE] = ACTIONS(891), + [anon_sym_POUND] = ACTIONS(891), + [anon_sym_DOLLAR] = ACTIONS(891), + [anon_sym_PERCENT] = ACTIONS(891), + [anon_sym_AMP] = ACTIONS(889), + [anon_sym_SQUOTE] = ACTIONS(891), + [anon_sym_STAR] = ACTIONS(891), + [anon_sym_PLUS] = ACTIONS(891), + [anon_sym_COMMA] = ACTIONS(891), + [anon_sym_DASH] = ACTIONS(889), + [anon_sym_DOT] = ACTIONS(889), + [anon_sym_SLASH] = ACTIONS(891), + [anon_sym_COLON] = ACTIONS(891), + [anon_sym_SEMI] = ACTIONS(891), + [anon_sym_EQ] = ACTIONS(891), + [anon_sym_QMARK] = ACTIONS(891), + [anon_sym_LBRACK] = ACTIONS(895), + [anon_sym_BSLASH] = ACTIONS(897), + [anon_sym_CARET] = ACTIONS(889), + [anon_sym__] = ACTIONS(891), + [anon_sym_BQUOTE] = ACTIONS(891), + [anon_sym_LBRACE] = ACTIONS(899), + [anon_sym_PIPE] = ACTIONS(891), + [anon_sym_TILDE] = ACTIONS(891), + [anon_sym_LPAREN] = ACTIONS(891), + [anon_sym_RPAREN] = ACTIONS(891), + [sym__newline_token] = ACTIONS(901), + [aux_sym_insert_token1] = ACTIONS(903), + [aux_sym_delete_token1] = ACTIONS(905), + [aux_sym_highlight_token1] = ACTIONS(907), + [aux_sym_edit_comment_token1] = ACTIONS(909), + [anon_sym_CARET_LBRACK] = ACTIONS(911), + [anon_sym_LBRACK_CARET] = ACTIONS(913), + [sym_uri_autolink] = ACTIONS(887), + [sym_email_autolink] = ACTIONS(887), + [sym__whitespace_ge_2] = ACTIONS(915), + [aux_sym__whitespace_token1] = ACTIONS(917), + [sym__word_no_digit] = ACTIONS(919), + [sym__digits] = ACTIONS(919), + [anon_sym_DASH_DASH] = ACTIONS(921), + [anon_sym_DASH_DASH_DASH] = ACTIONS(919), + [anon_sym_DOT_DOT_DOT] = ACTIONS(919), + [sym__code_span_start] = ACTIONS(923), + [sym__emphasis_open_star] = ACTIONS(925), + [sym__emphasis_open_underscore] = ACTIONS(927), + [sym__emphasis_close_star] = ACTIONS(2655), + [sym__strikeout_open] = ACTIONS(931), + [sym__latex_span_start] = ACTIONS(933), + [sym__single_quote_open] = ACTIONS(935), + [sym__double_quote_open] = ACTIONS(937), + [sym__superscript_open] = ACTIONS(939), + [sym__subscript_open] = ACTIONS(941), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(943), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(945), + [sym__cite_author_in_text] = ACTIONS(947), + [sym__cite_suppress_author] = ACTIONS(949), + [sym__shortcode_open_escaped] = ACTIONS(951), + [sym__shortcode_open] = ACTIONS(953), + [sym__unclosed_span] = ACTIONS(887), }, [STATE(229)] = { - [sym_backslash_escape] = STATE(261), - [sym_commonmark_attribute] = STATE(261), - [sym_code_span] = STATE(261), - [sym_latex_span] = STATE(261), - [sym_superscript] = STATE(261), - [sym_subscript] = STATE(261), - [sym_strikeout] = STATE(261), - [sym_quoted_span] = STATE(261), - [sym_inline_note] = STATE(261), - [sym_citation] = STATE(261), - [sym_shortcode_escaped] = STATE(261), - [sym_shortcode] = STATE(261), - [sym_note_reference] = STATE(261), - [sym_image] = STATE(261), - [sym__image_inline_link] = STATE(595), - [sym__image_description] = STATE(1972), - [sym__image_description_non_empty] = STATE(1972), - [sym_hard_line_break] = STATE(261), - [sym__whitespace] = STATE(587), - [sym__word] = STATE(587), - [sym__soft_line_break] = STATE(597), - [sym__inline_base] = STATE(223), - [sym__text_base] = STATE(261), - [sym__inline_element_no_star_no_link] = STATE(223), - [aux_sym__inline_no_star_no_link] = STATE(223), - [sym__emphasis_star_no_link] = STATE(1145), - [sym__strong_emphasis_star_no_link] = STATE(223), - [sym__emphasis_underscore_no_link] = STATE(1145), - [sym__strong_emphasis_underscore_no_link] = STATE(223), - [aux_sym__inline_base_repeat1] = STATE(261), - [sym__backslash_escape] = ACTIONS(969), - [sym_entity_reference] = ACTIONS(971), - [sym_numeric_character_reference] = ACTIONS(971), - [anon_sym_LT] = ACTIONS(973), - [anon_sym_GT] = ACTIONS(975), - [anon_sym_BANG] = ACTIONS(977), - [anon_sym_DQUOTE] = ACTIONS(975), - [anon_sym_POUND] = ACTIONS(975), - [anon_sym_DOLLAR] = ACTIONS(975), - [anon_sym_PERCENT] = ACTIONS(975), - [anon_sym_AMP] = ACTIONS(973), - [anon_sym_SQUOTE] = ACTIONS(975), - [anon_sym_STAR] = ACTIONS(975), - [anon_sym_PLUS] = ACTIONS(975), - [anon_sym_COMMA] = ACTIONS(975), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_DOT] = ACTIONS(973), - [anon_sym_SLASH] = ACTIONS(975), - [anon_sym_COLON] = ACTIONS(975), - [anon_sym_SEMI] = ACTIONS(975), - [anon_sym_EQ] = ACTIONS(975), - [anon_sym_QMARK] = ACTIONS(975), - [anon_sym_BSLASH] = ACTIONS(981), - [anon_sym_CARET] = ACTIONS(973), - [anon_sym__] = ACTIONS(975), - [anon_sym_BQUOTE] = ACTIONS(975), - [anon_sym_LBRACE] = ACTIONS(983), - [anon_sym_PIPE] = ACTIONS(975), - [anon_sym_TILDE] = ACTIONS(975), - [anon_sym_LPAREN] = ACTIONS(975), - [anon_sym_RPAREN] = ACTIONS(975), - [sym__newline_token] = ACTIONS(985), - [anon_sym_CARET_LBRACK] = ACTIONS(987), - [anon_sym_LBRACK_CARET] = ACTIONS(989), - [sym_uri_autolink] = ACTIONS(971), - [sym_email_autolink] = ACTIONS(971), - [sym__whitespace_ge_2] = ACTIONS(991), - [aux_sym__whitespace_token1] = ACTIONS(993), - [sym__word_no_digit] = ACTIONS(995), - [sym__digits] = ACTIONS(995), - [anon_sym_DASH_DASH] = ACTIONS(997), - [anon_sym_DASH_DASH_DASH] = ACTIONS(995), - [anon_sym_DOT_DOT_DOT] = ACTIONS(995), - [sym__code_span_start] = ACTIONS(999), - [sym__emphasis_open_star] = ACTIONS(2531), - [sym__emphasis_open_underscore] = ACTIONS(2533), - [sym__emphasis_close_star] = ACTIONS(2824), - [sym__strikeout_open] = ACTIONS(1007), - [sym__latex_span_start] = ACTIONS(1009), - [sym__single_quote_open] = ACTIONS(1011), - [sym__double_quote_open] = ACTIONS(1013), - [sym__superscript_open] = ACTIONS(1015), - [sym__subscript_open] = ACTIONS(1017), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1019), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1021), - [sym__cite_author_in_text] = ACTIONS(1023), - [sym__cite_suppress_author] = ACTIONS(1025), - [sym__shortcode_open_escaped] = ACTIONS(1027), - [sym__shortcode_open] = ACTIONS(1029), - [sym__unclosed_span] = ACTIONS(971), + [sym_backslash_escape] = STATE(379), + [sym_commonmark_attribute] = STATE(379), + [sym_code_span] = STATE(379), + [sym_latex_span] = STATE(379), + [sym_insert] = STATE(379), + [sym_delete] = STATE(379), + [sym_highlight] = STATE(379), + [sym_edit_comment] = STATE(379), + [sym_superscript] = STATE(379), + [sym_subscript] = STATE(379), + [sym_strikeout] = STATE(379), + [sym_quoted_span] = STATE(379), + [sym_inline_note] = STATE(379), + [sym_citation] = STATE(379), + [sym_shortcode_escaped] = STATE(379), + [sym_shortcode] = STATE(379), + [sym_note_reference] = STATE(379), + [sym__link_text] = STATE(545), + [sym__link_text_non_empty] = STATE(546), + [sym_inline_link] = STATE(38), + [sym_image] = STATE(379), + [sym__image_inline_link] = STATE(1390), + [sym__image_description] = STATE(2363), + [sym__image_description_non_empty] = STATE(2363), + [sym_hard_line_break] = STATE(379), + [sym__whitespace] = STATE(1385), + [sym__word] = STATE(1385), + [sym__soft_line_break] = STATE(1391), + [sym__inline_base] = STATE(38), + [sym__text_base] = STATE(379), + [sym__inline_element_no_underscore] = STATE(38), + [aux_sym__inline_no_underscore] = STATE(38), + [sym__emphasis_star] = STATE(1168), + [sym__strong_emphasis_star] = STATE(38), + [sym__emphasis_underscore] = STATE(1168), + [sym__strong_emphasis_underscore] = STATE(38), + [aux_sym__inline_base_repeat1] = STATE(379), + [sym__backslash_escape] = ACTIONS(1059), + [sym_entity_reference] = ACTIONS(1061), + [sym_numeric_character_reference] = ACTIONS(1061), + [anon_sym_LT] = ACTIONS(1063), + [anon_sym_GT] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1067), + [anon_sym_DQUOTE] = ACTIONS(1065), + [anon_sym_POUND] = ACTIONS(1065), + [anon_sym_DOLLAR] = ACTIONS(1065), + [anon_sym_PERCENT] = ACTIONS(1065), + [anon_sym_AMP] = ACTIONS(1063), + [anon_sym_SQUOTE] = ACTIONS(1065), + [anon_sym_STAR] = ACTIONS(1065), + [anon_sym_PLUS] = ACTIONS(1065), + [anon_sym_COMMA] = ACTIONS(1065), + [anon_sym_DASH] = ACTIONS(1063), + [anon_sym_DOT] = ACTIONS(1063), + [anon_sym_SLASH] = ACTIONS(1065), + [anon_sym_COLON] = ACTIONS(1065), + [anon_sym_SEMI] = ACTIONS(1065), + [anon_sym_EQ] = ACTIONS(1065), + [anon_sym_QMARK] = ACTIONS(1065), + [anon_sym_LBRACK] = ACTIONS(1069), + [anon_sym_BSLASH] = ACTIONS(1071), + [anon_sym_CARET] = ACTIONS(1063), + [anon_sym__] = ACTIONS(1065), + [anon_sym_BQUOTE] = ACTIONS(1065), + [anon_sym_LBRACE] = ACTIONS(1073), + [anon_sym_PIPE] = ACTIONS(1065), + [anon_sym_TILDE] = ACTIONS(1065), + [anon_sym_LPAREN] = ACTIONS(1065), + [anon_sym_RPAREN] = ACTIONS(1065), + [sym__newline_token] = ACTIONS(1075), + [aux_sym_insert_token1] = ACTIONS(1077), + [aux_sym_delete_token1] = ACTIONS(1079), + [aux_sym_highlight_token1] = ACTIONS(1081), + [aux_sym_edit_comment_token1] = ACTIONS(1083), + [anon_sym_CARET_LBRACK] = ACTIONS(1085), + [anon_sym_LBRACK_CARET] = ACTIONS(1087), + [sym_uri_autolink] = ACTIONS(1061), + [sym_email_autolink] = ACTIONS(1061), + [sym__whitespace_ge_2] = ACTIONS(1089), + [aux_sym__whitespace_token1] = ACTIONS(1091), + [sym__word_no_digit] = ACTIONS(1093), + [sym__digits] = ACTIONS(1093), + [anon_sym_DASH_DASH] = ACTIONS(1095), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1093), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1093), + [sym__code_span_start] = ACTIONS(1097), + [sym__emphasis_open_star] = ACTIONS(1099), + [sym__emphasis_open_underscore] = ACTIONS(1101), + [sym__emphasis_close_underscore] = ACTIONS(2657), + [sym__strikeout_open] = ACTIONS(1105), + [sym__latex_span_start] = ACTIONS(1107), + [sym__single_quote_open] = ACTIONS(1109), + [sym__double_quote_open] = ACTIONS(1111), + [sym__superscript_open] = ACTIONS(1113), + [sym__subscript_open] = ACTIONS(1115), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1117), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1119), + [sym__cite_author_in_text] = ACTIONS(1121), + [sym__cite_suppress_author] = ACTIONS(1123), + [sym__shortcode_open_escaped] = ACTIONS(1125), + [sym__shortcode_open] = ACTIONS(1127), + [sym__unclosed_span] = ACTIONS(1061), }, [STATE(230)] = { - [sym_backslash_escape] = STATE(274), - [sym_commonmark_attribute] = STATE(274), - [sym_code_span] = STATE(274), - [sym_latex_span] = STATE(274), - [sym_superscript] = STATE(274), - [sym_subscript] = STATE(274), - [sym_strikeout] = STATE(274), - [sym_quoted_span] = STATE(274), - [sym_inline_note] = STATE(274), - [sym_citation] = STATE(274), - [sym_shortcode_escaped] = STATE(274), - [sym_shortcode] = STATE(274), - [sym_note_reference] = STATE(274), - [sym_image] = STATE(274), - [sym__image_inline_link] = STATE(894), - [sym__image_description] = STATE(2008), - [sym__image_description_non_empty] = STATE(2008), - [sym_hard_line_break] = STATE(274), - [sym__whitespace] = STATE(882), - [sym__word] = STATE(882), - [sym__soft_line_break] = STATE(898), - [sym__inline_base] = STATE(225), - [sym__text_base] = STATE(274), - [sym__inline_element_no_underscore_no_link] = STATE(225), - [aux_sym__inline_no_underscore_no_link] = STATE(225), - [sym__emphasis_star_no_link] = STATE(1169), - [sym__strong_emphasis_star_no_link] = STATE(225), - [sym__emphasis_underscore_no_link] = STATE(1169), - [sym__strong_emphasis_underscore_no_link] = STATE(225), - [aux_sym__inline_base_repeat1] = STATE(274), - [sym__backslash_escape] = ACTIONS(1123), - [sym_entity_reference] = ACTIONS(1125), - [sym_numeric_character_reference] = ACTIONS(1125), - [anon_sym_LT] = ACTIONS(1127), - [anon_sym_GT] = ACTIONS(1129), - [anon_sym_BANG] = ACTIONS(1131), - [anon_sym_DQUOTE] = ACTIONS(1129), - [anon_sym_POUND] = ACTIONS(1129), - [anon_sym_DOLLAR] = ACTIONS(1129), - [anon_sym_PERCENT] = ACTIONS(1129), - [anon_sym_AMP] = ACTIONS(1127), - [anon_sym_SQUOTE] = ACTIONS(1129), - [anon_sym_STAR] = ACTIONS(1129), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_COMMA] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1127), - [anon_sym_DOT] = ACTIONS(1127), - [anon_sym_SLASH] = ACTIONS(1129), - [anon_sym_COLON] = ACTIONS(1129), - [anon_sym_SEMI] = ACTIONS(1129), - [anon_sym_EQ] = ACTIONS(1129), - [anon_sym_QMARK] = ACTIONS(1129), - [anon_sym_BSLASH] = ACTIONS(1135), - [anon_sym_CARET] = ACTIONS(1127), - [anon_sym__] = ACTIONS(1129), - [anon_sym_BQUOTE] = ACTIONS(1129), - [anon_sym_LBRACE] = ACTIONS(1137), - [anon_sym_PIPE] = ACTIONS(1129), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1129), - [anon_sym_RPAREN] = ACTIONS(1129), - [sym__newline_token] = ACTIONS(1139), - [anon_sym_CARET_LBRACK] = ACTIONS(1141), - [anon_sym_LBRACK_CARET] = ACTIONS(1143), - [sym_uri_autolink] = ACTIONS(1125), - [sym_email_autolink] = ACTIONS(1125), - [sym__whitespace_ge_2] = ACTIONS(1145), - [aux_sym__whitespace_token1] = ACTIONS(1147), - [sym__word_no_digit] = ACTIONS(1149), - [sym__digits] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1151), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1149), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1149), - [sym__code_span_start] = ACTIONS(1153), - [sym__emphasis_open_star] = ACTIONS(2723), - [sym__emphasis_open_underscore] = ACTIONS(2725), - [sym__emphasis_close_underscore] = ACTIONS(2826), - [sym__strikeout_open] = ACTIONS(1161), - [sym__latex_span_start] = ACTIONS(1163), - [sym__single_quote_open] = ACTIONS(1165), - [sym__double_quote_open] = ACTIONS(1167), - [sym__superscript_open] = ACTIONS(1169), - [sym__subscript_open] = ACTIONS(1171), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1173), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1175), - [sym__cite_author_in_text] = ACTIONS(1177), - [sym__cite_suppress_author] = ACTIONS(1179), - [sym__shortcode_open_escaped] = ACTIONS(1181), - [sym__shortcode_open] = ACTIONS(1183), - [sym__unclosed_span] = ACTIONS(1125), + [sym_backslash_escape] = STATE(366), + [sym_commonmark_attribute] = STATE(366), + [sym_code_span] = STATE(366), + [sym_latex_span] = STATE(366), + [sym_insert] = STATE(366), + [sym_delete] = STATE(366), + [sym_highlight] = STATE(366), + [sym_edit_comment] = STATE(366), + [sym_superscript] = STATE(366), + [sym_subscript] = STATE(366), + [sym_strikeout] = STATE(366), + [sym_quoted_span] = STATE(366), + [sym_inline_note] = STATE(366), + [sym_citation] = STATE(366), + [sym_shortcode_escaped] = STATE(366), + [sym_shortcode] = STATE(366), + [sym_note_reference] = STATE(366), + [sym__link_text] = STATE(490), + [sym__link_text_non_empty] = STATE(491), + [sym_inline_link] = STATE(39), + [sym_image] = STATE(366), + [sym__image_inline_link] = STATE(1244), + [sym__image_description] = STATE(2280), + [sym__image_description_non_empty] = STATE(2280), + [sym_hard_line_break] = STATE(366), + [sym__whitespace] = STATE(1218), + [sym__word] = STATE(1218), + [sym__soft_line_break] = STATE(1245), + [sym__inline_base] = STATE(39), + [sym__text_base] = STATE(366), + [sym__inline_element] = STATE(39), + [sym__emphasis_star] = STATE(1270), + [sym__strong_emphasis_star] = STATE(39), + [sym__emphasis_underscore] = STATE(1270), + [sym__strong_emphasis_underscore] = STATE(39), + [aux_sym_insert_repeat1] = STATE(39), + [aux_sym__inline_base_repeat1] = STATE(366), + [sym__backslash_escape] = ACTIONS(2005), + [sym_entity_reference] = ACTIONS(2007), + [sym_numeric_character_reference] = ACTIONS(2007), + [anon_sym_LT] = ACTIONS(2009), + [anon_sym_GT] = ACTIONS(2011), + [anon_sym_BANG] = ACTIONS(2013), + [anon_sym_DQUOTE] = ACTIONS(2011), + [anon_sym_POUND] = ACTIONS(2011), + [anon_sym_DOLLAR] = ACTIONS(2011), + [anon_sym_PERCENT] = ACTIONS(2011), + [anon_sym_AMP] = ACTIONS(2009), + [anon_sym_SQUOTE] = ACTIONS(2011), + [anon_sym_STAR] = ACTIONS(2011), + [anon_sym_PLUS] = ACTIONS(2011), + [anon_sym_COMMA] = ACTIONS(2011), + [anon_sym_DASH] = ACTIONS(2009), + [anon_sym_DOT] = ACTIONS(2009), + [anon_sym_SLASH] = ACTIONS(2011), + [anon_sym_COLON] = ACTIONS(2011), + [anon_sym_SEMI] = ACTIONS(2011), + [anon_sym_EQ] = ACTIONS(2011), + [anon_sym_QMARK] = ACTIONS(2011), + [anon_sym_LBRACK] = ACTIONS(2015), + [anon_sym_BSLASH] = ACTIONS(2017), + [anon_sym_CARET] = ACTIONS(2009), + [anon_sym__] = ACTIONS(2011), + [anon_sym_BQUOTE] = ACTIONS(2011), + [anon_sym_LBRACE] = ACTIONS(2019), + [anon_sym_PIPE] = ACTIONS(2011), + [anon_sym_TILDE] = ACTIONS(2011), + [anon_sym_LPAREN] = ACTIONS(2011), + [anon_sym_RPAREN] = ACTIONS(2011), + [sym__newline_token] = ACTIONS(2021), + [aux_sym_insert_token1] = ACTIONS(2023), + [aux_sym_delete_token1] = ACTIONS(2025), + [aux_sym_highlight_token1] = ACTIONS(2027), + [aux_sym_edit_comment_token1] = ACTIONS(2029), + [anon_sym_CARET_LBRACK] = ACTIONS(2031), + [anon_sym_LBRACK_CARET] = ACTIONS(2033), + [sym_uri_autolink] = ACTIONS(2007), + [sym_email_autolink] = ACTIONS(2007), + [sym__whitespace_ge_2] = ACTIONS(2035), + [aux_sym__whitespace_token1] = ACTIONS(2037), + [sym__word_no_digit] = ACTIONS(2039), + [sym__digits] = ACTIONS(2039), + [anon_sym_DASH_DASH] = ACTIONS(2041), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2039), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2039), + [sym__code_span_start] = ACTIONS(2043), + [sym__emphasis_open_star] = ACTIONS(2045), + [sym__emphasis_open_underscore] = ACTIONS(2047), + [sym__strikeout_open] = ACTIONS(2049), + [sym__strikeout_close] = ACTIONS(2659), + [sym__latex_span_start] = ACTIONS(2053), + [sym__single_quote_open] = ACTIONS(2055), + [sym__double_quote_open] = ACTIONS(2057), + [sym__superscript_open] = ACTIONS(2059), + [sym__subscript_open] = ACTIONS(2061), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2063), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2065), + [sym__cite_author_in_text] = ACTIONS(2067), + [sym__cite_suppress_author] = ACTIONS(2069), + [sym__shortcode_open_escaped] = ACTIONS(2071), + [sym__shortcode_open] = ACTIONS(2073), + [sym__unclosed_span] = ACTIONS(2007), }, [STATE(231)] = { - [sym_backslash_escape] = STATE(261), - [sym_commonmark_attribute] = STATE(261), - [sym_code_span] = STATE(261), - [sym_latex_span] = STATE(261), - [sym_superscript] = STATE(261), - [sym_subscript] = STATE(261), - [sym_strikeout] = STATE(261), - [sym_quoted_span] = STATE(261), - [sym_inline_note] = STATE(261), - [sym_citation] = STATE(261), - [sym_shortcode_escaped] = STATE(261), - [sym_shortcode] = STATE(261), - [sym_note_reference] = STATE(261), - [sym_image] = STATE(261), - [sym__image_inline_link] = STATE(595), - [sym__image_description] = STATE(1972), - [sym__image_description_non_empty] = STATE(1972), - [sym_hard_line_break] = STATE(261), - [sym__whitespace] = STATE(587), - [sym__word] = STATE(587), - [sym__soft_line_break] = STATE(597), - [sym__inline_base] = STATE(227), - [sym__text_base] = STATE(261), - [sym__inline_element_no_star_no_link] = STATE(227), - [aux_sym__inline_no_star_no_link] = STATE(227), - [sym__emphasis_star_no_link] = STATE(1147), - [sym__strong_emphasis_star_no_link] = STATE(227), - [sym__emphasis_underscore_no_link] = STATE(1145), - [sym__strong_emphasis_underscore_no_link] = STATE(227), - [aux_sym__inline_base_repeat1] = STATE(261), - [sym__backslash_escape] = ACTIONS(969), - [sym_entity_reference] = ACTIONS(971), - [sym_numeric_character_reference] = ACTIONS(971), - [anon_sym_LT] = ACTIONS(973), - [anon_sym_GT] = ACTIONS(975), - [anon_sym_BANG] = ACTIONS(977), - [anon_sym_DQUOTE] = ACTIONS(975), - [anon_sym_POUND] = ACTIONS(975), - [anon_sym_DOLLAR] = ACTIONS(975), - [anon_sym_PERCENT] = ACTIONS(975), - [anon_sym_AMP] = ACTIONS(973), - [anon_sym_SQUOTE] = ACTIONS(975), - [anon_sym_STAR] = ACTIONS(975), - [anon_sym_PLUS] = ACTIONS(975), - [anon_sym_COMMA] = ACTIONS(975), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_DOT] = ACTIONS(973), - [anon_sym_SLASH] = ACTIONS(975), - [anon_sym_COLON] = ACTIONS(975), - [anon_sym_SEMI] = ACTIONS(975), - [anon_sym_EQ] = ACTIONS(975), - [anon_sym_QMARK] = ACTIONS(975), - [anon_sym_BSLASH] = ACTIONS(981), - [anon_sym_CARET] = ACTIONS(973), - [anon_sym__] = ACTIONS(975), - [anon_sym_BQUOTE] = ACTIONS(975), - [anon_sym_LBRACE] = ACTIONS(983), - [anon_sym_PIPE] = ACTIONS(975), - [anon_sym_TILDE] = ACTIONS(975), - [anon_sym_LPAREN] = ACTIONS(975), - [anon_sym_RPAREN] = ACTIONS(975), - [sym__newline_token] = ACTIONS(985), - [anon_sym_CARET_LBRACK] = ACTIONS(987), - [anon_sym_LBRACK_CARET] = ACTIONS(989), - [sym_uri_autolink] = ACTIONS(971), - [sym_email_autolink] = ACTIONS(971), - [sym__whitespace_ge_2] = ACTIONS(991), - [aux_sym__whitespace_token1] = ACTIONS(993), - [sym__word_no_digit] = ACTIONS(995), - [sym__digits] = ACTIONS(995), - [anon_sym_DASH_DASH] = ACTIONS(997), - [anon_sym_DASH_DASH_DASH] = ACTIONS(995), - [anon_sym_DOT_DOT_DOT] = ACTIONS(995), - [sym__code_span_start] = ACTIONS(999), - [sym__emphasis_open_star] = ACTIONS(2531), - [sym__emphasis_open_underscore] = ACTIONS(2533), - [sym__last_token_punctuation] = ACTIONS(2828), - [sym__strikeout_open] = ACTIONS(1007), - [sym__latex_span_start] = ACTIONS(1009), - [sym__single_quote_open] = ACTIONS(1011), - [sym__double_quote_open] = ACTIONS(1013), - [sym__superscript_open] = ACTIONS(1015), - [sym__subscript_open] = ACTIONS(1017), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1019), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1021), - [sym__cite_author_in_text] = ACTIONS(1023), - [sym__cite_suppress_author] = ACTIONS(1025), - [sym__shortcode_open_escaped] = ACTIONS(1027), - [sym__shortcode_open] = ACTIONS(1029), - [sym__unclosed_span] = ACTIONS(971), + [sym_backslash_escape] = STATE(375), + [sym_commonmark_attribute] = STATE(375), + [sym_code_span] = STATE(375), + [sym_latex_span] = STATE(375), + [sym_insert] = STATE(375), + [sym_delete] = STATE(375), + [sym_highlight] = STATE(375), + [sym_edit_comment] = STATE(375), + [sym_superscript] = STATE(375), + [sym_subscript] = STATE(375), + [sym_strikeout] = STATE(375), + [sym_quoted_span] = STATE(375), + [sym_inline_note] = STATE(375), + [sym_citation] = STATE(375), + [sym_shortcode_escaped] = STATE(375), + [sym_shortcode] = STATE(375), + [sym_note_reference] = STATE(375), + [sym__link_text] = STATE(525), + [sym__link_text_non_empty] = STATE(527), + [sym_inline_link] = STATE(47), + [sym_image] = STATE(375), + [sym__image_inline_link] = STATE(972), + [sym__image_description] = STATE(2286), + [sym__image_description_non_empty] = STATE(2286), + [sym_hard_line_break] = STATE(375), + [sym__whitespace] = STATE(949), + [sym__word] = STATE(949), + [sym__soft_line_break] = STATE(973), + [sym__inline_base] = STATE(47), + [sym__text_base] = STATE(375), + [sym__inline_element] = STATE(47), + [sym__emphasis_star] = STATE(1392), + [sym__strong_emphasis_star] = STATE(47), + [sym__emphasis_underscore] = STATE(1392), + [sym__strong_emphasis_underscore] = STATE(47), + [aux_sym_insert_repeat1] = STATE(47), + [aux_sym__inline_base_repeat1] = STATE(375), + [sym__backslash_escape] = ACTIONS(2179), + [sym_entity_reference] = ACTIONS(2181), + [sym_numeric_character_reference] = ACTIONS(2181), + [anon_sym_LT] = ACTIONS(2183), + [anon_sym_GT] = ACTIONS(2185), + [anon_sym_BANG] = ACTIONS(2187), + [anon_sym_DQUOTE] = ACTIONS(2185), + [anon_sym_POUND] = ACTIONS(2185), + [anon_sym_DOLLAR] = ACTIONS(2185), + [anon_sym_PERCENT] = ACTIONS(2185), + [anon_sym_AMP] = ACTIONS(2183), + [anon_sym_SQUOTE] = ACTIONS(2185), + [anon_sym_STAR] = ACTIONS(2185), + [anon_sym_PLUS] = ACTIONS(2185), + [anon_sym_COMMA] = ACTIONS(2185), + [anon_sym_DASH] = ACTIONS(2183), + [anon_sym_DOT] = ACTIONS(2183), + [anon_sym_SLASH] = ACTIONS(2185), + [anon_sym_COLON] = ACTIONS(2185), + [anon_sym_SEMI] = ACTIONS(2185), + [anon_sym_EQ] = ACTIONS(2185), + [anon_sym_QMARK] = ACTIONS(2185), + [anon_sym_LBRACK] = ACTIONS(2189), + [anon_sym_BSLASH] = ACTIONS(2191), + [anon_sym_CARET] = ACTIONS(2183), + [anon_sym__] = ACTIONS(2185), + [anon_sym_BQUOTE] = ACTIONS(2185), + [anon_sym_LBRACE] = ACTIONS(2193), + [anon_sym_PIPE] = ACTIONS(2185), + [anon_sym_TILDE] = ACTIONS(2185), + [anon_sym_LPAREN] = ACTIONS(2185), + [anon_sym_RPAREN] = ACTIONS(2185), + [sym__newline_token] = ACTIONS(2195), + [aux_sym_insert_token1] = ACTIONS(2197), + [aux_sym_delete_token1] = ACTIONS(2199), + [aux_sym_highlight_token1] = ACTIONS(2201), + [aux_sym_edit_comment_token1] = ACTIONS(2203), + [anon_sym_CARET_LBRACK] = ACTIONS(2205), + [anon_sym_LBRACK_CARET] = ACTIONS(2207), + [sym_uri_autolink] = ACTIONS(2181), + [sym_email_autolink] = ACTIONS(2181), + [sym__whitespace_ge_2] = ACTIONS(2209), + [aux_sym__whitespace_token1] = ACTIONS(2211), + [sym__word_no_digit] = ACTIONS(2213), + [sym__digits] = ACTIONS(2213), + [anon_sym_DASH_DASH] = ACTIONS(2215), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2213), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2213), + [sym__code_span_start] = ACTIONS(2217), + [sym__emphasis_open_star] = ACTIONS(2219), + [sym__emphasis_open_underscore] = ACTIONS(2221), + [sym__strikeout_open] = ACTIONS(2223), + [sym__latex_span_start] = ACTIONS(2225), + [sym__single_quote_open] = ACTIONS(2227), + [sym__single_quote_close] = ACTIONS(2661), + [sym__double_quote_open] = ACTIONS(2229), + [sym__superscript_open] = ACTIONS(2231), + [sym__subscript_open] = ACTIONS(2233), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2235), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2237), + [sym__cite_author_in_text] = ACTIONS(2239), + [sym__cite_suppress_author] = ACTIONS(2241), + [sym__shortcode_open_escaped] = ACTIONS(2243), + [sym__shortcode_open] = ACTIONS(2245), + [sym__unclosed_span] = ACTIONS(2181), }, [STATE(232)] = { - [sym_backslash_escape] = STATE(271), - [sym_commonmark_attribute] = STATE(271), - [sym_code_span] = STATE(271), - [sym_latex_span] = STATE(271), - [sym_superscript] = STATE(271), - [sym_subscript] = STATE(271), - [sym_strikeout] = STATE(271), - [sym_quoted_span] = STATE(271), - [sym_inline_note] = STATE(271), - [sym_citation] = STATE(271), - [sym_shortcode_escaped] = STATE(271), - [sym_shortcode] = STATE(271), - [sym_note_reference] = STATE(271), - [sym_image] = STATE(271), - [sym__image_inline_link] = STATE(883), - [sym__image_description] = STATE(1998), - [sym__image_description_non_empty] = STATE(1998), - [sym_hard_line_break] = STATE(271), - [sym__whitespace] = STATE(881), - [sym__word] = STATE(881), - [sym__soft_line_break] = STATE(884), - [sym__inline_base] = STATE(1144), - [sym__text_base] = STATE(271), - [sym__inline_element_no_link] = STATE(1144), - [aux_sym__inline_no_link] = STATE(220), - [sym__emphasis_star_no_link] = STATE(1170), - [sym__strong_emphasis_star_no_link] = STATE(1144), - [sym__emphasis_underscore_no_link] = STATE(1170), - [sym__strong_emphasis_underscore_no_link] = STATE(1144), - [aux_sym__inline_base_repeat1] = STATE(271), - [sym__backslash_escape] = ACTIONS(159), - [sym_entity_reference] = ACTIONS(161), - [sym_numeric_character_reference] = ACTIONS(161), - [anon_sym_LT] = ACTIONS(163), - [anon_sym_GT] = ACTIONS(165), - [anon_sym_BANG] = ACTIONS(167), - [anon_sym_DQUOTE] = ACTIONS(165), - [anon_sym_POUND] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(165), - [anon_sym_PERCENT] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_SQUOTE] = ACTIONS(165), - [anon_sym_STAR] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(165), - [anon_sym_COMMA] = ACTIONS(165), - [anon_sym_DASH] = ACTIONS(163), - [anon_sym_DOT] = ACTIONS(163), - [anon_sym_SLASH] = ACTIONS(165), - [anon_sym_COLON] = ACTIONS(165), - [anon_sym_SEMI] = ACTIONS(165), - [anon_sym_EQ] = ACTIONS(165), - [anon_sym_QMARK] = ACTIONS(165), - [anon_sym_BSLASH] = ACTIONS(171), - [anon_sym_RBRACK] = ACTIONS(2830), - [anon_sym_CARET] = ACTIONS(163), - [anon_sym__] = ACTIONS(165), - [anon_sym_BQUOTE] = ACTIONS(165), - [anon_sym_LBRACE] = ACTIONS(175), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(165), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_RPAREN] = ACTIONS(165), - [sym__newline_token] = ACTIONS(177), - [anon_sym_CARET_LBRACK] = ACTIONS(179), - [anon_sym_LBRACK_CARET] = ACTIONS(181), - [sym_uri_autolink] = ACTIONS(161), - [sym_email_autolink] = ACTIONS(161), - [sym__whitespace_ge_2] = ACTIONS(183), - [aux_sym__whitespace_token1] = ACTIONS(185), - [sym__word_no_digit] = ACTIONS(187), - [sym__digits] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_DASH_DASH_DASH] = ACTIONS(187), - [anon_sym_DOT_DOT_DOT] = ACTIONS(187), - [sym__code_span_start] = ACTIONS(191), - [sym__emphasis_open_star] = ACTIONS(2630), - [sym__emphasis_open_underscore] = ACTIONS(2632), - [sym__strikeout_open] = ACTIONS(199), - [sym__latex_span_start] = ACTIONS(201), - [sym__single_quote_open] = ACTIONS(203), - [sym__double_quote_open] = ACTIONS(205), - [sym__superscript_open] = ACTIONS(207), - [sym__subscript_open] = ACTIONS(209), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(211), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(213), - [sym__cite_author_in_text] = ACTIONS(215), - [sym__cite_suppress_author] = ACTIONS(217), - [sym__shortcode_open_escaped] = ACTIONS(219), - [sym__shortcode_open] = ACTIONS(221), - [sym__unclosed_span] = ACTIONS(161), + [sym_backslash_escape] = STATE(383), + [sym_commonmark_attribute] = STATE(383), + [sym_code_span] = STATE(383), + [sym_latex_span] = STATE(383), + [sym_insert] = STATE(383), + [sym_delete] = STATE(383), + [sym_highlight] = STATE(383), + [sym_edit_comment] = STATE(383), + [sym_superscript] = STATE(383), + [sym_subscript] = STATE(383), + [sym_strikeout] = STATE(383), + [sym_quoted_span] = STATE(383), + [sym_inline_note] = STATE(383), + [sym_citation] = STATE(383), + [sym_shortcode_escaped] = STATE(383), + [sym_shortcode] = STATE(383), + [sym_note_reference] = STATE(383), + [sym__link_text] = STATE(395), + [sym__link_text_non_empty] = STATE(396), + [sym_inline_link] = STATE(50), + [sym_image] = STATE(383), + [sym__image_inline_link] = STATE(1263), + [sym__image_description] = STATE(2300), + [sym__image_description_non_empty] = STATE(2300), + [sym_hard_line_break] = STATE(383), + [sym__whitespace] = STATE(1259), + [sym__word] = STATE(1259), + [sym__soft_line_break] = STATE(1264), + [sym__inline_base] = STATE(50), + [sym__text_base] = STATE(383), + [sym__inline_element] = STATE(50), + [sym__emphasis_star] = STATE(1249), + [sym__strong_emphasis_star] = STATE(50), + [sym__emphasis_underscore] = STATE(1249), + [sym__strong_emphasis_underscore] = STATE(50), + [aux_sym_insert_repeat1] = STATE(50), + [aux_sym__inline_base_repeat1] = STATE(383), + [sym__backslash_escape] = ACTIONS(637), + [sym_entity_reference] = ACTIONS(639), + [sym_numeric_character_reference] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_GT] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(645), + [anon_sym_DQUOTE] = ACTIONS(643), + [anon_sym_POUND] = ACTIONS(643), + [anon_sym_DOLLAR] = ACTIONS(643), + [anon_sym_PERCENT] = ACTIONS(643), + [anon_sym_AMP] = ACTIONS(641), + [anon_sym_SQUOTE] = ACTIONS(643), + [anon_sym_STAR] = ACTIONS(643), + [anon_sym_PLUS] = ACTIONS(643), + [anon_sym_COMMA] = ACTIONS(643), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_DOT] = ACTIONS(641), + [anon_sym_SLASH] = ACTIONS(643), + [anon_sym_COLON] = ACTIONS(643), + [anon_sym_SEMI] = ACTIONS(643), + [anon_sym_EQ] = ACTIONS(643), + [anon_sym_QMARK] = ACTIONS(643), + [anon_sym_LBRACK] = ACTIONS(647), + [anon_sym_BSLASH] = ACTIONS(649), + [anon_sym_CARET] = ACTIONS(641), + [anon_sym__] = ACTIONS(643), + [anon_sym_BQUOTE] = ACTIONS(643), + [anon_sym_LBRACE] = ACTIONS(651), + [anon_sym_PIPE] = ACTIONS(643), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_LPAREN] = ACTIONS(643), + [anon_sym_RPAREN] = ACTIONS(643), + [sym__newline_token] = ACTIONS(653), + [aux_sym_insert_token1] = ACTIONS(655), + [aux_sym_delete_token1] = ACTIONS(657), + [aux_sym_highlight_token1] = ACTIONS(659), + [aux_sym_edit_comment_token1] = ACTIONS(661), + [anon_sym_CARET_LBRACK] = ACTIONS(663), + [anon_sym_LBRACK_CARET] = ACTIONS(665), + [sym_uri_autolink] = ACTIONS(639), + [sym_email_autolink] = ACTIONS(639), + [sym__whitespace_ge_2] = ACTIONS(667), + [aux_sym__whitespace_token1] = ACTIONS(669), + [sym__word_no_digit] = ACTIONS(671), + [sym__digits] = ACTIONS(671), + [anon_sym_DASH_DASH] = ACTIONS(673), + [anon_sym_DASH_DASH_DASH] = ACTIONS(671), + [anon_sym_DOT_DOT_DOT] = ACTIONS(671), + [sym__code_span_start] = ACTIONS(675), + [sym__emphasis_open_star] = ACTIONS(677), + [sym__emphasis_open_underscore] = ACTIONS(679), + [sym__strikeout_open] = ACTIONS(681), + [sym__latex_span_start] = ACTIONS(683), + [sym__single_quote_open] = ACTIONS(685), + [sym__double_quote_open] = ACTIONS(687), + [sym__double_quote_close] = ACTIONS(2661), + [sym__superscript_open] = ACTIONS(691), + [sym__subscript_open] = ACTIONS(693), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(695), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(697), + [sym__cite_author_in_text] = ACTIONS(699), + [sym__cite_suppress_author] = ACTIONS(701), + [sym__shortcode_open_escaped] = ACTIONS(703), + [sym__shortcode_open] = ACTIONS(705), + [sym__unclosed_span] = ACTIONS(639), }, [STATE(233)] = { - [sym_backslash_escape] = STATE(271), - [sym_commonmark_attribute] = STATE(271), - [sym_code_span] = STATE(271), - [sym_latex_span] = STATE(271), - [sym_superscript] = STATE(271), - [sym_subscript] = STATE(271), - [sym_strikeout] = STATE(271), - [sym_quoted_span] = STATE(271), - [sym_inline_note] = STATE(271), - [sym_citation] = STATE(271), - [sym_shortcode_escaped] = STATE(271), - [sym_shortcode] = STATE(271), - [sym_note_reference] = STATE(271), - [sym_image] = STATE(271), - [sym__image_inline_link] = STATE(883), - [sym__image_description] = STATE(1998), - [sym__image_description_non_empty] = STATE(1998), - [sym_hard_line_break] = STATE(271), - [sym__whitespace] = STATE(881), - [sym__word] = STATE(881), - [sym__soft_line_break] = STATE(884), - [sym__inline_base] = STATE(1144), - [sym__text_base] = STATE(271), - [sym__inline_element_no_link] = STATE(1144), - [aux_sym__inline_no_link] = STATE(234), - [sym__emphasis_star_no_link] = STATE(1170), - [sym__strong_emphasis_star_no_link] = STATE(1144), - [sym__emphasis_underscore_no_link] = STATE(1170), - [sym__strong_emphasis_underscore_no_link] = STATE(1144), - [aux_sym__inline_base_repeat1] = STATE(271), - [sym__backslash_escape] = ACTIONS(159), - [sym_entity_reference] = ACTIONS(161), - [sym_numeric_character_reference] = ACTIONS(161), - [anon_sym_LT] = ACTIONS(163), - [anon_sym_GT] = ACTIONS(165), - [anon_sym_BANG] = ACTIONS(167), - [anon_sym_DQUOTE] = ACTIONS(165), - [anon_sym_POUND] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(165), - [anon_sym_PERCENT] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_SQUOTE] = ACTIONS(165), - [anon_sym_STAR] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(165), - [anon_sym_COMMA] = ACTIONS(165), - [anon_sym_DASH] = ACTIONS(163), - [anon_sym_DOT] = ACTIONS(163), - [anon_sym_SLASH] = ACTIONS(165), - [anon_sym_COLON] = ACTIONS(165), - [anon_sym_SEMI] = ACTIONS(165), - [anon_sym_EQ] = ACTIONS(165), - [anon_sym_QMARK] = ACTIONS(165), - [anon_sym_BSLASH] = ACTIONS(171), - [anon_sym_RBRACK] = ACTIONS(2832), - [anon_sym_CARET] = ACTIONS(163), - [anon_sym__] = ACTIONS(165), - [anon_sym_BQUOTE] = ACTIONS(165), - [anon_sym_LBRACE] = ACTIONS(175), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(165), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_RPAREN] = ACTIONS(165), - [sym__newline_token] = ACTIONS(177), - [anon_sym_CARET_LBRACK] = ACTIONS(179), - [anon_sym_LBRACK_CARET] = ACTIONS(181), - [sym_uri_autolink] = ACTIONS(161), - [sym_email_autolink] = ACTIONS(161), - [sym__whitespace_ge_2] = ACTIONS(183), - [aux_sym__whitespace_token1] = ACTIONS(185), - [sym__word_no_digit] = ACTIONS(187), - [sym__digits] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_DASH_DASH_DASH] = ACTIONS(187), - [anon_sym_DOT_DOT_DOT] = ACTIONS(187), - [sym__code_span_start] = ACTIONS(191), - [sym__emphasis_open_star] = ACTIONS(2630), - [sym__emphasis_open_underscore] = ACTIONS(2632), - [sym__strikeout_open] = ACTIONS(199), - [sym__latex_span_start] = ACTIONS(201), - [sym__single_quote_open] = ACTIONS(203), - [sym__double_quote_open] = ACTIONS(205), - [sym__superscript_open] = ACTIONS(207), - [sym__subscript_open] = ACTIONS(209), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(211), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(213), - [sym__cite_author_in_text] = ACTIONS(215), - [sym__cite_suppress_author] = ACTIONS(217), - [sym__shortcode_open_escaped] = ACTIONS(219), - [sym__shortcode_open] = ACTIONS(221), - [sym__unclosed_span] = ACTIONS(161), + [sym_backslash_escape] = STATE(365), + [sym_commonmark_attribute] = STATE(365), + [sym_code_span] = STATE(365), + [sym_latex_span] = STATE(365), + [sym_insert] = STATE(365), + [sym_delete] = STATE(365), + [sym_highlight] = STATE(365), + [sym_edit_comment] = STATE(365), + [sym_superscript] = STATE(365), + [sym_subscript] = STATE(365), + [sym_strikeout] = STATE(365), + [sym_quoted_span] = STATE(365), + [sym_inline_note] = STATE(365), + [sym_citation] = STATE(365), + [sym_shortcode_escaped] = STATE(365), + [sym_shortcode] = STATE(365), + [sym_note_reference] = STATE(365), + [sym__link_text] = STATE(416), + [sym__link_text_non_empty] = STATE(417), + [sym_inline_link] = STATE(52), + [sym_image] = STATE(365), + [sym__image_inline_link] = STATE(712), + [sym__image_description] = STATE(2314), + [sym__image_description_non_empty] = STATE(2314), + [sym_hard_line_break] = STATE(365), + [sym__whitespace] = STATE(709), + [sym__word] = STATE(709), + [sym__soft_line_break] = STATE(713), + [sym__inline_base] = STATE(52), + [sym__text_base] = STATE(365), + [sym__inline_element] = STATE(52), + [sym__emphasis_star] = STATE(979), + [sym__strong_emphasis_star] = STATE(52), + [sym__emphasis_underscore] = STATE(979), + [sym__strong_emphasis_underscore] = STATE(52), + [aux_sym_insert_repeat1] = STATE(52), + [aux_sym__inline_base_repeat1] = STATE(365), + [sym__backslash_escape] = ACTIONS(1341), + [sym_entity_reference] = ACTIONS(1343), + [sym_numeric_character_reference] = ACTIONS(1343), + [anon_sym_LT] = ACTIONS(1345), + [anon_sym_GT] = ACTIONS(1347), + [anon_sym_BANG] = ACTIONS(1349), + [anon_sym_DQUOTE] = ACTIONS(1347), + [anon_sym_POUND] = ACTIONS(1347), + [anon_sym_DOLLAR] = ACTIONS(1347), + [anon_sym_PERCENT] = ACTIONS(1347), + [anon_sym_AMP] = ACTIONS(1345), + [anon_sym_SQUOTE] = ACTIONS(1347), + [anon_sym_STAR] = ACTIONS(1347), + [anon_sym_PLUS] = ACTIONS(1347), + [anon_sym_COMMA] = ACTIONS(1347), + [anon_sym_DASH] = ACTIONS(1345), + [anon_sym_DOT] = ACTIONS(1345), + [anon_sym_SLASH] = ACTIONS(1347), + [anon_sym_COLON] = ACTIONS(1347), + [anon_sym_SEMI] = ACTIONS(1347), + [anon_sym_EQ] = ACTIONS(1347), + [anon_sym_QMARK] = ACTIONS(1347), + [anon_sym_LBRACK] = ACTIONS(1351), + [anon_sym_BSLASH] = ACTIONS(1353), + [anon_sym_CARET] = ACTIONS(1345), + [anon_sym__] = ACTIONS(1347), + [anon_sym_BQUOTE] = ACTIONS(1347), + [anon_sym_LBRACE] = ACTIONS(1355), + [anon_sym_PIPE] = ACTIONS(1347), + [anon_sym_TILDE] = ACTIONS(1347), + [anon_sym_LPAREN] = ACTIONS(1347), + [anon_sym_RPAREN] = ACTIONS(1347), + [sym__newline_token] = ACTIONS(1357), + [aux_sym_insert_token1] = ACTIONS(1359), + [aux_sym_delete_token1] = ACTIONS(1361), + [aux_sym_highlight_token1] = ACTIONS(1363), + [aux_sym_edit_comment_token1] = ACTIONS(1365), + [anon_sym_CARET_LBRACK] = ACTIONS(1367), + [anon_sym_LBRACK_CARET] = ACTIONS(1369), + [sym_uri_autolink] = ACTIONS(1343), + [sym_email_autolink] = ACTIONS(1343), + [sym__whitespace_ge_2] = ACTIONS(1371), + [aux_sym__whitespace_token1] = ACTIONS(1373), + [sym__word_no_digit] = ACTIONS(1375), + [sym__digits] = ACTIONS(1375), + [anon_sym_DASH_DASH] = ACTIONS(1377), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1375), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1375), + [sym__code_span_start] = ACTIONS(1379), + [sym__emphasis_open_star] = ACTIONS(1381), + [sym__emphasis_open_underscore] = ACTIONS(1383), + [sym__strikeout_open] = ACTIONS(1385), + [sym__latex_span_start] = ACTIONS(1387), + [sym__single_quote_open] = ACTIONS(1389), + [sym__double_quote_open] = ACTIONS(1391), + [sym__superscript_open] = ACTIONS(1393), + [sym__superscript_close] = ACTIONS(2663), + [sym__subscript_open] = ACTIONS(1397), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1399), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1401), + [sym__cite_author_in_text] = ACTIONS(1403), + [sym__cite_suppress_author] = ACTIONS(1405), + [sym__shortcode_open_escaped] = ACTIONS(1407), + [sym__shortcode_open] = ACTIONS(1409), + [sym__unclosed_span] = ACTIONS(1343), }, [STATE(234)] = { - [sym_backslash_escape] = STATE(271), - [sym_commonmark_attribute] = STATE(271), - [sym_code_span] = STATE(271), - [sym_latex_span] = STATE(271), - [sym_superscript] = STATE(271), - [sym_subscript] = STATE(271), - [sym_strikeout] = STATE(271), - [sym_quoted_span] = STATE(271), - [sym_inline_note] = STATE(271), - [sym_citation] = STATE(271), - [sym_shortcode_escaped] = STATE(271), - [sym_shortcode] = STATE(271), - [sym_note_reference] = STATE(271), - [sym_image] = STATE(271), - [sym__image_inline_link] = STATE(883), - [sym__image_description] = STATE(1998), - [sym__image_description_non_empty] = STATE(1998), - [sym_hard_line_break] = STATE(271), - [sym__whitespace] = STATE(881), - [sym__word] = STATE(881), - [sym__soft_line_break] = STATE(884), - [sym__inline_base] = STATE(1144), - [sym__text_base] = STATE(271), - [sym__inline_element_no_link] = STATE(1144), - [aux_sym__inline_no_link] = STATE(220), - [sym__emphasis_star_no_link] = STATE(1170), - [sym__strong_emphasis_star_no_link] = STATE(1144), - [sym__emphasis_underscore_no_link] = STATE(1170), - [sym__strong_emphasis_underscore_no_link] = STATE(1144), - [aux_sym__inline_base_repeat1] = STATE(271), - [sym__backslash_escape] = ACTIONS(159), - [sym_entity_reference] = ACTIONS(161), - [sym_numeric_character_reference] = ACTIONS(161), - [anon_sym_LT] = ACTIONS(163), - [anon_sym_GT] = ACTIONS(165), - [anon_sym_BANG] = ACTIONS(167), - [anon_sym_DQUOTE] = ACTIONS(165), - [anon_sym_POUND] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(165), - [anon_sym_PERCENT] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_SQUOTE] = ACTIONS(165), - [anon_sym_STAR] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(165), - [anon_sym_COMMA] = ACTIONS(165), - [anon_sym_DASH] = ACTIONS(163), - [anon_sym_DOT] = ACTIONS(163), - [anon_sym_SLASH] = ACTIONS(165), - [anon_sym_COLON] = ACTIONS(165), - [anon_sym_SEMI] = ACTIONS(165), - [anon_sym_EQ] = ACTIONS(165), - [anon_sym_QMARK] = ACTIONS(165), - [anon_sym_BSLASH] = ACTIONS(171), - [anon_sym_RBRACK] = ACTIONS(2834), - [anon_sym_CARET] = ACTIONS(163), - [anon_sym__] = ACTIONS(165), - [anon_sym_BQUOTE] = ACTIONS(165), - [anon_sym_LBRACE] = ACTIONS(175), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(165), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_RPAREN] = ACTIONS(165), - [sym__newline_token] = ACTIONS(177), - [anon_sym_CARET_LBRACK] = ACTIONS(179), - [anon_sym_LBRACK_CARET] = ACTIONS(181), - [sym_uri_autolink] = ACTIONS(161), - [sym_email_autolink] = ACTIONS(161), - [sym__whitespace_ge_2] = ACTIONS(183), - [aux_sym__whitespace_token1] = ACTIONS(185), - [sym__word_no_digit] = ACTIONS(187), - [sym__digits] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_DASH_DASH_DASH] = ACTIONS(187), - [anon_sym_DOT_DOT_DOT] = ACTIONS(187), - [sym__code_span_start] = ACTIONS(191), - [sym__emphasis_open_star] = ACTIONS(2630), - [sym__emphasis_open_underscore] = ACTIONS(2632), - [sym__strikeout_open] = ACTIONS(199), - [sym__latex_span_start] = ACTIONS(201), - [sym__single_quote_open] = ACTIONS(203), - [sym__double_quote_open] = ACTIONS(205), - [sym__superscript_open] = ACTIONS(207), - [sym__subscript_open] = ACTIONS(209), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(211), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(213), - [sym__cite_author_in_text] = ACTIONS(215), - [sym__cite_suppress_author] = ACTIONS(217), - [sym__shortcode_open_escaped] = ACTIONS(219), - [sym__shortcode_open] = ACTIONS(221), - [sym__unclosed_span] = ACTIONS(161), + [sym_backslash_escape] = STATE(367), + [sym_commonmark_attribute] = STATE(367), + [sym_code_span] = STATE(367), + [sym_latex_span] = STATE(367), + [sym_insert] = STATE(367), + [sym_delete] = STATE(367), + [sym_highlight] = STATE(367), + [sym_edit_comment] = STATE(367), + [sym_superscript] = STATE(367), + [sym_subscript] = STATE(367), + [sym_strikeout] = STATE(367), + [sym_quoted_span] = STATE(367), + [sym_inline_note] = STATE(367), + [sym_citation] = STATE(367), + [sym_shortcode_escaped] = STATE(367), + [sym_shortcode] = STATE(367), + [sym_note_reference] = STATE(367), + [sym__link_text] = STATE(435), + [sym__link_text_non_empty] = STATE(436), + [sym_inline_link] = STATE(55), + [sym_image] = STATE(367), + [sym__image_inline_link] = STATE(819), + [sym__image_description] = STATE(2328), + [sym__image_description_non_empty] = STATE(2328), + [sym_hard_line_break] = STATE(367), + [sym__whitespace] = STATE(816), + [sym__word] = STATE(816), + [sym__soft_line_break] = STATE(820), + [sym__inline_base] = STATE(55), + [sym__text_base] = STATE(367), + [sym__inline_element] = STATE(55), + [sym__emphasis_star] = STATE(1271), + [sym__strong_emphasis_star] = STATE(55), + [sym__emphasis_underscore] = STATE(1271), + [sym__strong_emphasis_underscore] = STATE(55), + [aux_sym_insert_repeat1] = STATE(55), + [aux_sym__inline_base_repeat1] = STATE(367), + [sym__backslash_escape] = ACTIONS(1413), + [sym_entity_reference] = ACTIONS(1415), + [sym_numeric_character_reference] = ACTIONS(1415), + [anon_sym_LT] = ACTIONS(1417), + [anon_sym_GT] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1419), + [anon_sym_POUND] = ACTIONS(1419), + [anon_sym_DOLLAR] = ACTIONS(1419), + [anon_sym_PERCENT] = ACTIONS(1419), + [anon_sym_AMP] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [anon_sym_STAR] = ACTIONS(1419), + [anon_sym_PLUS] = ACTIONS(1419), + [anon_sym_COMMA] = ACTIONS(1419), + [anon_sym_DASH] = ACTIONS(1417), + [anon_sym_DOT] = ACTIONS(1417), + [anon_sym_SLASH] = ACTIONS(1419), + [anon_sym_COLON] = ACTIONS(1419), + [anon_sym_SEMI] = ACTIONS(1419), + [anon_sym_EQ] = ACTIONS(1419), + [anon_sym_QMARK] = ACTIONS(1419), + [anon_sym_LBRACK] = ACTIONS(1423), + [anon_sym_BSLASH] = ACTIONS(1425), + [anon_sym_CARET] = ACTIONS(1417), + [anon_sym__] = ACTIONS(1419), + [anon_sym_BQUOTE] = ACTIONS(1419), + [anon_sym_LBRACE] = ACTIONS(1427), + [anon_sym_PIPE] = ACTIONS(1419), + [anon_sym_TILDE] = ACTIONS(1419), + [anon_sym_LPAREN] = ACTIONS(1419), + [anon_sym_RPAREN] = ACTIONS(1419), + [sym__newline_token] = ACTIONS(1429), + [aux_sym_insert_token1] = ACTIONS(1431), + [aux_sym_delete_token1] = ACTIONS(1433), + [aux_sym_highlight_token1] = ACTIONS(1435), + [aux_sym_edit_comment_token1] = ACTIONS(1437), + [anon_sym_CARET_LBRACK] = ACTIONS(1439), + [anon_sym_LBRACK_CARET] = ACTIONS(1441), + [sym_uri_autolink] = ACTIONS(1415), + [sym_email_autolink] = ACTIONS(1415), + [sym__whitespace_ge_2] = ACTIONS(1443), + [aux_sym__whitespace_token1] = ACTIONS(1445), + [sym__word_no_digit] = ACTIONS(1447), + [sym__digits] = ACTIONS(1447), + [anon_sym_DASH_DASH] = ACTIONS(1449), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1447), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1447), + [sym__code_span_start] = ACTIONS(1451), + [sym__emphasis_open_star] = ACTIONS(1453), + [sym__emphasis_open_underscore] = ACTIONS(1455), + [sym__strikeout_open] = ACTIONS(1457), + [sym__latex_span_start] = ACTIONS(1459), + [sym__single_quote_open] = ACTIONS(1461), + [sym__double_quote_open] = ACTIONS(1463), + [sym__superscript_open] = ACTIONS(1465), + [sym__subscript_open] = ACTIONS(1467), + [sym__subscript_close] = ACTIONS(2665), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1471), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1473), + [sym__cite_author_in_text] = ACTIONS(1475), + [sym__cite_suppress_author] = ACTIONS(1477), + [sym__shortcode_open_escaped] = ACTIONS(1479), + [sym__shortcode_open] = ACTIONS(1481), + [sym__unclosed_span] = ACTIONS(1415), }, [STATE(235)] = { - [sym_backslash_escape] = STATE(261), - [sym_commonmark_attribute] = STATE(261), - [sym_code_span] = STATE(261), - [sym_latex_span] = STATE(261), - [sym_superscript] = STATE(261), - [sym_subscript] = STATE(261), - [sym_strikeout] = STATE(261), - [sym_quoted_span] = STATE(261), - [sym_inline_note] = STATE(261), - [sym_citation] = STATE(261), - [sym_shortcode_escaped] = STATE(261), - [sym_shortcode] = STATE(261), - [sym_note_reference] = STATE(261), - [sym_image] = STATE(261), - [sym__image_inline_link] = STATE(595), - [sym__image_description] = STATE(1972), - [sym__image_description_non_empty] = STATE(1972), - [sym_hard_line_break] = STATE(261), - [sym__whitespace] = STATE(587), - [sym__word] = STATE(587), - [sym__soft_line_break] = STATE(597), - [sym__inline_base] = STATE(223), - [sym__text_base] = STATE(261), - [sym__inline_element_no_star_no_link] = STATE(223), - [aux_sym__inline_no_star_no_link] = STATE(223), - [sym__emphasis_star_no_link] = STATE(1145), - [sym__strong_emphasis_star_no_link] = STATE(223), - [sym__emphasis_underscore_no_link] = STATE(1145), - [sym__strong_emphasis_underscore_no_link] = STATE(223), - [aux_sym__inline_base_repeat1] = STATE(261), - [sym__backslash_escape] = ACTIONS(969), - [sym_entity_reference] = ACTIONS(971), - [sym_numeric_character_reference] = ACTIONS(971), - [anon_sym_LT] = ACTIONS(973), - [anon_sym_GT] = ACTIONS(975), - [anon_sym_BANG] = ACTIONS(977), - [anon_sym_DQUOTE] = ACTIONS(975), - [anon_sym_POUND] = ACTIONS(975), - [anon_sym_DOLLAR] = ACTIONS(975), - [anon_sym_PERCENT] = ACTIONS(975), - [anon_sym_AMP] = ACTIONS(973), - [anon_sym_SQUOTE] = ACTIONS(975), - [anon_sym_STAR] = ACTIONS(975), - [anon_sym_PLUS] = ACTIONS(975), - [anon_sym_COMMA] = ACTIONS(975), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_DOT] = ACTIONS(973), - [anon_sym_SLASH] = ACTIONS(975), - [anon_sym_COLON] = ACTIONS(975), - [anon_sym_SEMI] = ACTIONS(975), - [anon_sym_EQ] = ACTIONS(975), - [anon_sym_QMARK] = ACTIONS(975), - [anon_sym_BSLASH] = ACTIONS(981), - [anon_sym_CARET] = ACTIONS(973), - [anon_sym__] = ACTIONS(975), - [anon_sym_BQUOTE] = ACTIONS(975), - [anon_sym_LBRACE] = ACTIONS(983), - [anon_sym_PIPE] = ACTIONS(975), - [anon_sym_TILDE] = ACTIONS(975), - [anon_sym_LPAREN] = ACTIONS(975), - [anon_sym_RPAREN] = ACTIONS(975), - [sym__newline_token] = ACTIONS(985), - [anon_sym_CARET_LBRACK] = ACTIONS(987), - [anon_sym_LBRACK_CARET] = ACTIONS(989), - [sym_uri_autolink] = ACTIONS(971), - [sym_email_autolink] = ACTIONS(971), - [sym__whitespace_ge_2] = ACTIONS(991), - [aux_sym__whitespace_token1] = ACTIONS(993), - [sym__word_no_digit] = ACTIONS(995), - [sym__digits] = ACTIONS(995), - [anon_sym_DASH_DASH] = ACTIONS(997), - [anon_sym_DASH_DASH_DASH] = ACTIONS(995), - [anon_sym_DOT_DOT_DOT] = ACTIONS(995), - [sym__code_span_start] = ACTIONS(999), - [sym__emphasis_open_star] = ACTIONS(2531), - [sym__emphasis_open_underscore] = ACTIONS(2533), - [sym__emphasis_close_star] = ACTIONS(2836), - [sym__strikeout_open] = ACTIONS(1007), - [sym__latex_span_start] = ACTIONS(1009), - [sym__single_quote_open] = ACTIONS(1011), - [sym__double_quote_open] = ACTIONS(1013), - [sym__superscript_open] = ACTIONS(1015), - [sym__subscript_open] = ACTIONS(1017), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1019), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1021), - [sym__cite_author_in_text] = ACTIONS(1023), - [sym__cite_suppress_author] = ACTIONS(1025), - [sym__shortcode_open_escaped] = ACTIONS(1027), - [sym__shortcode_open] = ACTIONS(1029), - [sym__unclosed_span] = ACTIONS(971), + [sym_backslash_escape] = STATE(372), + [sym_commonmark_attribute] = STATE(372), + [sym_code_span] = STATE(372), + [sym_latex_span] = STATE(372), + [sym_insert] = STATE(372), + [sym_delete] = STATE(372), + [sym_highlight] = STATE(372), + [sym_edit_comment] = STATE(372), + [sym_superscript] = STATE(372), + [sym_subscript] = STATE(372), + [sym_strikeout] = STATE(372), + [sym_quoted_span] = STATE(372), + [sym_inline_note] = STATE(372), + [sym_citation] = STATE(372), + [sym_shortcode_escaped] = STATE(372), + [sym_shortcode] = STATE(372), + [sym_note_reference] = STATE(372), + [sym__link_text] = STATE(454), + [sym__link_text_non_empty] = STATE(455), + [sym_inline_link] = STATE(57), + [sym_image] = STATE(372), + [sym__image_inline_link] = STATE(1025), + [sym__image_description] = STATE(2356), + [sym__image_description_non_empty] = STATE(2356), + [sym_hard_line_break] = STATE(372), + [sym__whitespace] = STATE(1022), + [sym__word] = STATE(1022), + [sym__soft_line_break] = STATE(1026), + [sym__inline_base] = STATE(57), + [sym__text_base] = STATE(372), + [sym__inline_element] = STATE(57), + [sym__emphasis_star] = STATE(714), + [sym__strong_emphasis_star] = STATE(57), + [sym__emphasis_underscore] = STATE(714), + [sym__strong_emphasis_underscore] = STATE(57), + [aux_sym_insert_repeat1] = STATE(57), + [aux_sym__inline_base_repeat1] = STATE(372), + [sym__backslash_escape] = ACTIONS(707), + [sym_entity_reference] = ACTIONS(709), + [sym_numeric_character_reference] = ACTIONS(709), + [anon_sym_LT] = ACTIONS(711), + [anon_sym_GT] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(715), + [anon_sym_DQUOTE] = ACTIONS(713), + [anon_sym_POUND] = ACTIONS(713), + [anon_sym_DOLLAR] = ACTIONS(713), + [anon_sym_PERCENT] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(711), + [anon_sym_SQUOTE] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_COMMA] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_DOT] = ACTIONS(711), + [anon_sym_SLASH] = ACTIONS(713), + [anon_sym_COLON] = ACTIONS(713), + [anon_sym_SEMI] = ACTIONS(713), + [anon_sym_EQ] = ACTIONS(713), + [anon_sym_QMARK] = ACTIONS(713), + [anon_sym_LBRACK] = ACTIONS(717), + [anon_sym_BSLASH] = ACTIONS(719), + [anon_sym_CARET] = ACTIONS(711), + [anon_sym__] = ACTIONS(713), + [anon_sym_BQUOTE] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(721), + [anon_sym_PIPE] = ACTIONS(713), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_LPAREN] = ACTIONS(713), + [anon_sym_RPAREN] = ACTIONS(713), + [sym__newline_token] = ACTIONS(723), + [aux_sym_insert_token1] = ACTIONS(725), + [aux_sym_insert_token2] = ACTIONS(2667), + [aux_sym_delete_token1] = ACTIONS(729), + [aux_sym_highlight_token1] = ACTIONS(731), + [aux_sym_edit_comment_token1] = ACTIONS(733), + [anon_sym_CARET_LBRACK] = ACTIONS(735), + [anon_sym_LBRACK_CARET] = ACTIONS(737), + [sym_uri_autolink] = ACTIONS(709), + [sym_email_autolink] = ACTIONS(709), + [sym__whitespace_ge_2] = ACTIONS(739), + [aux_sym__whitespace_token1] = ACTIONS(741), + [sym__word_no_digit] = ACTIONS(743), + [sym__digits] = ACTIONS(743), + [anon_sym_DASH_DASH] = ACTIONS(745), + [anon_sym_DASH_DASH_DASH] = ACTIONS(743), + [anon_sym_DOT_DOT_DOT] = ACTIONS(743), + [sym__code_span_start] = ACTIONS(747), + [sym__emphasis_open_star] = ACTIONS(749), + [sym__emphasis_open_underscore] = ACTIONS(751), + [sym__strikeout_open] = ACTIONS(753), + [sym__latex_span_start] = ACTIONS(755), + [sym__single_quote_open] = ACTIONS(757), + [sym__double_quote_open] = ACTIONS(759), + [sym__superscript_open] = ACTIONS(761), + [sym__subscript_open] = ACTIONS(763), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(765), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(767), + [sym__cite_author_in_text] = ACTIONS(769), + [sym__cite_suppress_author] = ACTIONS(771), + [sym__shortcode_open_escaped] = ACTIONS(773), + [sym__shortcode_open] = ACTIONS(775), + [sym__unclosed_span] = ACTIONS(709), }, [STATE(236)] = { - [sym_backslash_escape] = STATE(274), - [sym_commonmark_attribute] = STATE(274), - [sym_code_span] = STATE(274), - [sym_latex_span] = STATE(274), - [sym_superscript] = STATE(274), - [sym_subscript] = STATE(274), - [sym_strikeout] = STATE(274), - [sym_quoted_span] = STATE(274), - [sym_inline_note] = STATE(274), - [sym_citation] = STATE(274), - [sym_shortcode_escaped] = STATE(274), - [sym_shortcode] = STATE(274), - [sym_note_reference] = STATE(274), - [sym_image] = STATE(274), - [sym__image_inline_link] = STATE(894), - [sym__image_description] = STATE(2008), - [sym__image_description_non_empty] = STATE(2008), - [sym_hard_line_break] = STATE(274), - [sym__whitespace] = STATE(882), - [sym__word] = STATE(882), - [sym__soft_line_break] = STATE(898), - [sym__inline_base] = STATE(225), - [sym__text_base] = STATE(274), - [sym__inline_element_no_underscore_no_link] = STATE(225), - [aux_sym__inline_no_underscore_no_link] = STATE(225), - [sym__emphasis_star_no_link] = STATE(1169), - [sym__strong_emphasis_star_no_link] = STATE(225), - [sym__emphasis_underscore_no_link] = STATE(1169), - [sym__strong_emphasis_underscore_no_link] = STATE(225), - [aux_sym__inline_base_repeat1] = STATE(274), - [sym__backslash_escape] = ACTIONS(1123), - [sym_entity_reference] = ACTIONS(1125), - [sym_numeric_character_reference] = ACTIONS(1125), - [anon_sym_LT] = ACTIONS(1127), - [anon_sym_GT] = ACTIONS(1129), - [anon_sym_BANG] = ACTIONS(1131), - [anon_sym_DQUOTE] = ACTIONS(1129), - [anon_sym_POUND] = ACTIONS(1129), - [anon_sym_DOLLAR] = ACTIONS(1129), - [anon_sym_PERCENT] = ACTIONS(1129), - [anon_sym_AMP] = ACTIONS(1127), - [anon_sym_SQUOTE] = ACTIONS(1129), - [anon_sym_STAR] = ACTIONS(1129), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_COMMA] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1127), - [anon_sym_DOT] = ACTIONS(1127), - [anon_sym_SLASH] = ACTIONS(1129), - [anon_sym_COLON] = ACTIONS(1129), - [anon_sym_SEMI] = ACTIONS(1129), - [anon_sym_EQ] = ACTIONS(1129), - [anon_sym_QMARK] = ACTIONS(1129), - [anon_sym_BSLASH] = ACTIONS(1135), - [anon_sym_CARET] = ACTIONS(1127), - [anon_sym__] = ACTIONS(1129), - [anon_sym_BQUOTE] = ACTIONS(1129), - [anon_sym_LBRACE] = ACTIONS(1137), - [anon_sym_PIPE] = ACTIONS(1129), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1129), - [anon_sym_RPAREN] = ACTIONS(1129), - [sym__newline_token] = ACTIONS(1139), - [anon_sym_CARET_LBRACK] = ACTIONS(1141), - [anon_sym_LBRACK_CARET] = ACTIONS(1143), - [sym_uri_autolink] = ACTIONS(1125), - [sym_email_autolink] = ACTIONS(1125), - [sym__whitespace_ge_2] = ACTIONS(1145), - [aux_sym__whitespace_token1] = ACTIONS(1147), - [sym__word_no_digit] = ACTIONS(1149), - [sym__digits] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1151), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1149), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1149), - [sym__code_span_start] = ACTIONS(1153), - [sym__emphasis_open_star] = ACTIONS(2723), - [sym__emphasis_open_underscore] = ACTIONS(2725), - [sym__emphasis_close_underscore] = ACTIONS(2838), - [sym__strikeout_open] = ACTIONS(1161), - [sym__latex_span_start] = ACTIONS(1163), - [sym__single_quote_open] = ACTIONS(1165), - [sym__double_quote_open] = ACTIONS(1167), - [sym__superscript_open] = ACTIONS(1169), - [sym__subscript_open] = ACTIONS(1171), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1173), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1175), - [sym__cite_author_in_text] = ACTIONS(1177), - [sym__cite_suppress_author] = ACTIONS(1179), - [sym__shortcode_open_escaped] = ACTIONS(1181), - [sym__shortcode_open] = ACTIONS(1183), - [sym__unclosed_span] = ACTIONS(1125), + [sym_backslash_escape] = STATE(372), + [sym_commonmark_attribute] = STATE(372), + [sym_code_span] = STATE(372), + [sym_latex_span] = STATE(372), + [sym_insert] = STATE(372), + [sym_delete] = STATE(372), + [sym_highlight] = STATE(372), + [sym_edit_comment] = STATE(372), + [sym_superscript] = STATE(372), + [sym_subscript] = STATE(372), + [sym_strikeout] = STATE(372), + [sym_quoted_span] = STATE(372), + [sym_inline_note] = STATE(372), + [sym_citation] = STATE(372), + [sym_shortcode_escaped] = STATE(372), + [sym_shortcode] = STATE(372), + [sym_note_reference] = STATE(372), + [sym__link_text] = STATE(454), + [sym__link_text_non_empty] = STATE(455), + [sym_inline_link] = STATE(57), + [sym_image] = STATE(372), + [sym__image_inline_link] = STATE(1025), + [sym__image_description] = STATE(2356), + [sym__image_description_non_empty] = STATE(2356), + [sym_hard_line_break] = STATE(372), + [sym__whitespace] = STATE(1022), + [sym__word] = STATE(1022), + [sym__soft_line_break] = STATE(1026), + [sym__inline_base] = STATE(57), + [sym__text_base] = STATE(372), + [sym__inline_element] = STATE(57), + [sym__emphasis_star] = STATE(714), + [sym__strong_emphasis_star] = STATE(57), + [sym__emphasis_underscore] = STATE(714), + [sym__strong_emphasis_underscore] = STATE(57), + [aux_sym_insert_repeat1] = STATE(57), + [aux_sym__inline_base_repeat1] = STATE(372), + [sym__backslash_escape] = ACTIONS(707), + [sym_entity_reference] = ACTIONS(709), + [sym_numeric_character_reference] = ACTIONS(709), + [anon_sym_LT] = ACTIONS(711), + [anon_sym_GT] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(715), + [anon_sym_DQUOTE] = ACTIONS(713), + [anon_sym_POUND] = ACTIONS(713), + [anon_sym_DOLLAR] = ACTIONS(713), + [anon_sym_PERCENT] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(711), + [anon_sym_SQUOTE] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_COMMA] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_DOT] = ACTIONS(711), + [anon_sym_SLASH] = ACTIONS(713), + [anon_sym_COLON] = ACTIONS(713), + [anon_sym_SEMI] = ACTIONS(713), + [anon_sym_EQ] = ACTIONS(713), + [anon_sym_QMARK] = ACTIONS(713), + [anon_sym_LBRACK] = ACTIONS(717), + [anon_sym_BSLASH] = ACTIONS(719), + [anon_sym_CARET] = ACTIONS(711), + [anon_sym__] = ACTIONS(713), + [anon_sym_BQUOTE] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(721), + [anon_sym_PIPE] = ACTIONS(713), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_LPAREN] = ACTIONS(713), + [anon_sym_RPAREN] = ACTIONS(713), + [sym__newline_token] = ACTIONS(723), + [aux_sym_insert_token1] = ACTIONS(725), + [aux_sym_insert_token2] = ACTIONS(2669), + [aux_sym_delete_token1] = ACTIONS(729), + [aux_sym_highlight_token1] = ACTIONS(731), + [aux_sym_edit_comment_token1] = ACTIONS(733), + [anon_sym_CARET_LBRACK] = ACTIONS(735), + [anon_sym_LBRACK_CARET] = ACTIONS(737), + [sym_uri_autolink] = ACTIONS(709), + [sym_email_autolink] = ACTIONS(709), + [sym__whitespace_ge_2] = ACTIONS(739), + [aux_sym__whitespace_token1] = ACTIONS(741), + [sym__word_no_digit] = ACTIONS(743), + [sym__digits] = ACTIONS(743), + [anon_sym_DASH_DASH] = ACTIONS(745), + [anon_sym_DASH_DASH_DASH] = ACTIONS(743), + [anon_sym_DOT_DOT_DOT] = ACTIONS(743), + [sym__code_span_start] = ACTIONS(747), + [sym__emphasis_open_star] = ACTIONS(749), + [sym__emphasis_open_underscore] = ACTIONS(751), + [sym__strikeout_open] = ACTIONS(753), + [sym__latex_span_start] = ACTIONS(755), + [sym__single_quote_open] = ACTIONS(757), + [sym__double_quote_open] = ACTIONS(759), + [sym__superscript_open] = ACTIONS(761), + [sym__subscript_open] = ACTIONS(763), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(765), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(767), + [sym__cite_author_in_text] = ACTIONS(769), + [sym__cite_suppress_author] = ACTIONS(771), + [sym__shortcode_open_escaped] = ACTIONS(773), + [sym__shortcode_open] = ACTIONS(775), + [sym__unclosed_span] = ACTIONS(709), }, [STATE(237)] = { - [sym_backslash_escape] = STATE(274), - [sym_commonmark_attribute] = STATE(274), - [sym_code_span] = STATE(274), - [sym_latex_span] = STATE(274), - [sym_superscript] = STATE(274), - [sym_subscript] = STATE(274), - [sym_strikeout] = STATE(274), - [sym_quoted_span] = STATE(274), - [sym_inline_note] = STATE(274), - [sym_citation] = STATE(274), - [sym_shortcode_escaped] = STATE(274), - [sym_shortcode] = STATE(274), - [sym_note_reference] = STATE(274), - [sym_image] = STATE(274), - [sym__image_inline_link] = STATE(894), - [sym__image_description] = STATE(2008), - [sym__image_description_non_empty] = STATE(2008), - [sym_hard_line_break] = STATE(274), - [sym__whitespace] = STATE(882), - [sym__word] = STATE(882), - [sym__soft_line_break] = STATE(898), - [sym__inline_base] = STATE(225), - [sym__text_base] = STATE(274), - [sym__inline_element_no_underscore_no_link] = STATE(225), - [aux_sym__inline_no_underscore_no_link] = STATE(225), - [sym__emphasis_star_no_link] = STATE(1169), - [sym__strong_emphasis_star_no_link] = STATE(225), - [sym__emphasis_underscore_no_link] = STATE(1169), - [sym__strong_emphasis_underscore_no_link] = STATE(225), - [aux_sym__inline_base_repeat1] = STATE(274), - [sym__backslash_escape] = ACTIONS(1123), - [sym_entity_reference] = ACTIONS(1125), - [sym_numeric_character_reference] = ACTIONS(1125), - [anon_sym_LT] = ACTIONS(1127), - [anon_sym_GT] = ACTIONS(1129), - [anon_sym_BANG] = ACTIONS(1131), - [anon_sym_DQUOTE] = ACTIONS(1129), - [anon_sym_POUND] = ACTIONS(1129), - [anon_sym_DOLLAR] = ACTIONS(1129), - [anon_sym_PERCENT] = ACTIONS(1129), - [anon_sym_AMP] = ACTIONS(1127), - [anon_sym_SQUOTE] = ACTIONS(1129), - [anon_sym_STAR] = ACTIONS(1129), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_COMMA] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1127), - [anon_sym_DOT] = ACTIONS(1127), - [anon_sym_SLASH] = ACTIONS(1129), - [anon_sym_COLON] = ACTIONS(1129), - [anon_sym_SEMI] = ACTIONS(1129), - [anon_sym_EQ] = ACTIONS(1129), - [anon_sym_QMARK] = ACTIONS(1129), - [anon_sym_BSLASH] = ACTIONS(1135), - [anon_sym_CARET] = ACTIONS(1127), - [anon_sym__] = ACTIONS(1129), - [anon_sym_BQUOTE] = ACTIONS(1129), - [anon_sym_LBRACE] = ACTIONS(1137), - [anon_sym_PIPE] = ACTIONS(1129), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1129), - [anon_sym_RPAREN] = ACTIONS(1129), - [sym__newline_token] = ACTIONS(1139), - [anon_sym_CARET_LBRACK] = ACTIONS(1141), - [anon_sym_LBRACK_CARET] = ACTIONS(1143), - [sym_uri_autolink] = ACTIONS(1125), - [sym_email_autolink] = ACTIONS(1125), - [sym__whitespace_ge_2] = ACTIONS(1145), - [aux_sym__whitespace_token1] = ACTIONS(1147), - [sym__word_no_digit] = ACTIONS(1149), - [sym__digits] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1151), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1149), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1149), - [sym__code_span_start] = ACTIONS(1153), - [sym__emphasis_open_star] = ACTIONS(2723), - [sym__emphasis_open_underscore] = ACTIONS(2725), - [sym__emphasis_close_underscore] = ACTIONS(2840), - [sym__strikeout_open] = ACTIONS(1161), - [sym__latex_span_start] = ACTIONS(1163), - [sym__single_quote_open] = ACTIONS(1165), - [sym__double_quote_open] = ACTIONS(1167), - [sym__superscript_open] = ACTIONS(1169), - [sym__subscript_open] = ACTIONS(1171), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1173), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1175), - [sym__cite_author_in_text] = ACTIONS(1177), - [sym__cite_suppress_author] = ACTIONS(1179), - [sym__shortcode_open_escaped] = ACTIONS(1181), - [sym__shortcode_open] = ACTIONS(1183), - [sym__unclosed_span] = ACTIONS(1125), + [sym_backslash_escape] = STATE(372), + [sym_commonmark_attribute] = STATE(372), + [sym_code_span] = STATE(372), + [sym_latex_span] = STATE(372), + [sym_insert] = STATE(372), + [sym_delete] = STATE(372), + [sym_highlight] = STATE(372), + [sym_edit_comment] = STATE(372), + [sym_superscript] = STATE(372), + [sym_subscript] = STATE(372), + [sym_strikeout] = STATE(372), + [sym_quoted_span] = STATE(372), + [sym_inline_note] = STATE(372), + [sym_citation] = STATE(372), + [sym_shortcode_escaped] = STATE(372), + [sym_shortcode] = STATE(372), + [sym_note_reference] = STATE(372), + [sym__link_text] = STATE(454), + [sym__link_text_non_empty] = STATE(455), + [sym_inline_link] = STATE(57), + [sym_image] = STATE(372), + [sym__image_inline_link] = STATE(1025), + [sym__image_description] = STATE(2356), + [sym__image_description_non_empty] = STATE(2356), + [sym_hard_line_break] = STATE(372), + [sym__whitespace] = STATE(1022), + [sym__word] = STATE(1022), + [sym__soft_line_break] = STATE(1026), + [sym__inline_base] = STATE(57), + [sym__text_base] = STATE(372), + [sym__inline_element] = STATE(57), + [sym__emphasis_star] = STATE(714), + [sym__strong_emphasis_star] = STATE(57), + [sym__emphasis_underscore] = STATE(714), + [sym__strong_emphasis_underscore] = STATE(57), + [aux_sym_insert_repeat1] = STATE(57), + [aux_sym__inline_base_repeat1] = STATE(372), + [sym__backslash_escape] = ACTIONS(707), + [sym_entity_reference] = ACTIONS(709), + [sym_numeric_character_reference] = ACTIONS(709), + [anon_sym_LT] = ACTIONS(711), + [anon_sym_GT] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(715), + [anon_sym_DQUOTE] = ACTIONS(713), + [anon_sym_POUND] = ACTIONS(713), + [anon_sym_DOLLAR] = ACTIONS(713), + [anon_sym_PERCENT] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(711), + [anon_sym_SQUOTE] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_COMMA] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_DOT] = ACTIONS(711), + [anon_sym_SLASH] = ACTIONS(713), + [anon_sym_COLON] = ACTIONS(713), + [anon_sym_SEMI] = ACTIONS(713), + [anon_sym_EQ] = ACTIONS(713), + [anon_sym_QMARK] = ACTIONS(713), + [anon_sym_LBRACK] = ACTIONS(717), + [anon_sym_BSLASH] = ACTIONS(719), + [anon_sym_CARET] = ACTIONS(711), + [anon_sym__] = ACTIONS(713), + [anon_sym_BQUOTE] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(721), + [anon_sym_PIPE] = ACTIONS(713), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_LPAREN] = ACTIONS(713), + [anon_sym_RPAREN] = ACTIONS(713), + [sym__newline_token] = ACTIONS(723), + [aux_sym_insert_token1] = ACTIONS(725), + [aux_sym_insert_token2] = ACTIONS(2671), + [aux_sym_delete_token1] = ACTIONS(729), + [aux_sym_highlight_token1] = ACTIONS(731), + [aux_sym_edit_comment_token1] = ACTIONS(733), + [anon_sym_CARET_LBRACK] = ACTIONS(735), + [anon_sym_LBRACK_CARET] = ACTIONS(737), + [sym_uri_autolink] = ACTIONS(709), + [sym_email_autolink] = ACTIONS(709), + [sym__whitespace_ge_2] = ACTIONS(739), + [aux_sym__whitespace_token1] = ACTIONS(741), + [sym__word_no_digit] = ACTIONS(743), + [sym__digits] = ACTIONS(743), + [anon_sym_DASH_DASH] = ACTIONS(745), + [anon_sym_DASH_DASH_DASH] = ACTIONS(743), + [anon_sym_DOT_DOT_DOT] = ACTIONS(743), + [sym__code_span_start] = ACTIONS(747), + [sym__emphasis_open_star] = ACTIONS(749), + [sym__emphasis_open_underscore] = ACTIONS(751), + [sym__strikeout_open] = ACTIONS(753), + [sym__latex_span_start] = ACTIONS(755), + [sym__single_quote_open] = ACTIONS(757), + [sym__double_quote_open] = ACTIONS(759), + [sym__superscript_open] = ACTIONS(761), + [sym__subscript_open] = ACTIONS(763), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(765), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(767), + [sym__cite_author_in_text] = ACTIONS(769), + [sym__cite_suppress_author] = ACTIONS(771), + [sym__shortcode_open_escaped] = ACTIONS(773), + [sym__shortcode_open] = ACTIONS(775), + [sym__unclosed_span] = ACTIONS(709), }, [STATE(238)] = { - [sym_backslash_escape] = STATE(271), - [sym_commonmark_attribute] = STATE(271), - [sym_code_span] = STATE(271), - [sym_latex_span] = STATE(271), - [sym_superscript] = STATE(271), - [sym_subscript] = STATE(271), - [sym_strikeout] = STATE(271), - [sym_quoted_span] = STATE(271), - [sym_inline_note] = STATE(271), - [sym_citation] = STATE(271), - [sym_shortcode_escaped] = STATE(271), - [sym_shortcode] = STATE(271), - [sym_note_reference] = STATE(271), - [sym_image] = STATE(271), - [sym__image_inline_link] = STATE(883), - [sym__image_description] = STATE(1998), - [sym__image_description_non_empty] = STATE(1998), - [sym_hard_line_break] = STATE(271), - [sym__whitespace] = STATE(881), - [sym__word] = STATE(881), - [sym__soft_line_break] = STATE(884), - [sym__inline_base] = STATE(1144), - [sym__text_base] = STATE(271), - [sym__inline_element_no_link] = STATE(1144), - [aux_sym__inline_no_link] = STATE(239), - [sym__emphasis_star_no_link] = STATE(1170), - [sym__strong_emphasis_star_no_link] = STATE(1144), - [sym__emphasis_underscore_no_link] = STATE(1170), - [sym__strong_emphasis_underscore_no_link] = STATE(1144), - [aux_sym__inline_base_repeat1] = STATE(271), - [sym__backslash_escape] = ACTIONS(159), - [sym_entity_reference] = ACTIONS(161), - [sym_numeric_character_reference] = ACTIONS(161), - [anon_sym_LT] = ACTIONS(163), - [anon_sym_GT] = ACTIONS(165), - [anon_sym_BANG] = ACTIONS(167), - [anon_sym_DQUOTE] = ACTIONS(165), - [anon_sym_POUND] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(165), - [anon_sym_PERCENT] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_SQUOTE] = ACTIONS(165), - [anon_sym_STAR] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(165), - [anon_sym_COMMA] = ACTIONS(165), - [anon_sym_DASH] = ACTIONS(163), - [anon_sym_DOT] = ACTIONS(163), - [anon_sym_SLASH] = ACTIONS(165), - [anon_sym_COLON] = ACTIONS(165), - [anon_sym_SEMI] = ACTIONS(165), - [anon_sym_EQ] = ACTIONS(165), - [anon_sym_QMARK] = ACTIONS(165), - [anon_sym_BSLASH] = ACTIONS(171), - [anon_sym_RBRACK] = ACTIONS(2842), - [anon_sym_CARET] = ACTIONS(163), - [anon_sym__] = ACTIONS(165), - [anon_sym_BQUOTE] = ACTIONS(165), - [anon_sym_LBRACE] = ACTIONS(175), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(165), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_RPAREN] = ACTIONS(165), - [sym__newline_token] = ACTIONS(177), - [anon_sym_CARET_LBRACK] = ACTIONS(179), - [anon_sym_LBRACK_CARET] = ACTIONS(181), - [sym_uri_autolink] = ACTIONS(161), - [sym_email_autolink] = ACTIONS(161), - [sym__whitespace_ge_2] = ACTIONS(183), - [aux_sym__whitespace_token1] = ACTIONS(185), - [sym__word_no_digit] = ACTIONS(187), - [sym__digits] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_DASH_DASH_DASH] = ACTIONS(187), - [anon_sym_DOT_DOT_DOT] = ACTIONS(187), - [sym__code_span_start] = ACTIONS(191), - [sym__emphasis_open_star] = ACTIONS(2630), - [sym__emphasis_open_underscore] = ACTIONS(2632), - [sym__strikeout_open] = ACTIONS(199), - [sym__latex_span_start] = ACTIONS(201), - [sym__single_quote_open] = ACTIONS(203), - [sym__double_quote_open] = ACTIONS(205), - [sym__superscript_open] = ACTIONS(207), - [sym__subscript_open] = ACTIONS(209), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(211), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(213), - [sym__cite_author_in_text] = ACTIONS(215), - [sym__cite_suppress_author] = ACTIONS(217), - [sym__shortcode_open_escaped] = ACTIONS(219), - [sym__shortcode_open] = ACTIONS(221), - [sym__unclosed_span] = ACTIONS(161), + [sym_backslash_escape] = STATE(372), + [sym_commonmark_attribute] = STATE(372), + [sym_code_span] = STATE(372), + [sym_latex_span] = STATE(372), + [sym_insert] = STATE(372), + [sym_delete] = STATE(372), + [sym_highlight] = STATE(372), + [sym_edit_comment] = STATE(372), + [sym_superscript] = STATE(372), + [sym_subscript] = STATE(372), + [sym_strikeout] = STATE(372), + [sym_quoted_span] = STATE(372), + [sym_inline_note] = STATE(372), + [sym_citation] = STATE(372), + [sym_shortcode_escaped] = STATE(372), + [sym_shortcode] = STATE(372), + [sym_note_reference] = STATE(372), + [sym__link_text] = STATE(454), + [sym__link_text_non_empty] = STATE(455), + [sym_inline_link] = STATE(57), + [sym_image] = STATE(372), + [sym__image_inline_link] = STATE(1025), + [sym__image_description] = STATE(2356), + [sym__image_description_non_empty] = STATE(2356), + [sym_hard_line_break] = STATE(372), + [sym__whitespace] = STATE(1022), + [sym__word] = STATE(1022), + [sym__soft_line_break] = STATE(1026), + [sym__inline_base] = STATE(57), + [sym__text_base] = STATE(372), + [sym__inline_element] = STATE(57), + [sym__emphasis_star] = STATE(714), + [sym__strong_emphasis_star] = STATE(57), + [sym__emphasis_underscore] = STATE(714), + [sym__strong_emphasis_underscore] = STATE(57), + [aux_sym_insert_repeat1] = STATE(57), + [aux_sym__inline_base_repeat1] = STATE(372), + [sym__backslash_escape] = ACTIONS(707), + [sym_entity_reference] = ACTIONS(709), + [sym_numeric_character_reference] = ACTIONS(709), + [anon_sym_LT] = ACTIONS(711), + [anon_sym_GT] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(715), + [anon_sym_DQUOTE] = ACTIONS(713), + [anon_sym_POUND] = ACTIONS(713), + [anon_sym_DOLLAR] = ACTIONS(713), + [anon_sym_PERCENT] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(711), + [anon_sym_SQUOTE] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_COMMA] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_DOT] = ACTIONS(711), + [anon_sym_SLASH] = ACTIONS(713), + [anon_sym_COLON] = ACTIONS(713), + [anon_sym_SEMI] = ACTIONS(713), + [anon_sym_EQ] = ACTIONS(713), + [anon_sym_QMARK] = ACTIONS(713), + [anon_sym_LBRACK] = ACTIONS(717), + [anon_sym_BSLASH] = ACTIONS(719), + [anon_sym_CARET] = ACTIONS(711), + [anon_sym__] = ACTIONS(713), + [anon_sym_BQUOTE] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(721), + [anon_sym_PIPE] = ACTIONS(713), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_LPAREN] = ACTIONS(713), + [anon_sym_RPAREN] = ACTIONS(713), + [sym__newline_token] = ACTIONS(723), + [aux_sym_insert_token1] = ACTIONS(725), + [aux_sym_insert_token2] = ACTIONS(2673), + [aux_sym_delete_token1] = ACTIONS(729), + [aux_sym_highlight_token1] = ACTIONS(731), + [aux_sym_edit_comment_token1] = ACTIONS(733), + [anon_sym_CARET_LBRACK] = ACTIONS(735), + [anon_sym_LBRACK_CARET] = ACTIONS(737), + [sym_uri_autolink] = ACTIONS(709), + [sym_email_autolink] = ACTIONS(709), + [sym__whitespace_ge_2] = ACTIONS(739), + [aux_sym__whitespace_token1] = ACTIONS(741), + [sym__word_no_digit] = ACTIONS(743), + [sym__digits] = ACTIONS(743), + [anon_sym_DASH_DASH] = ACTIONS(745), + [anon_sym_DASH_DASH_DASH] = ACTIONS(743), + [anon_sym_DOT_DOT_DOT] = ACTIONS(743), + [sym__code_span_start] = ACTIONS(747), + [sym__emphasis_open_star] = ACTIONS(749), + [sym__emphasis_open_underscore] = ACTIONS(751), + [sym__strikeout_open] = ACTIONS(753), + [sym__latex_span_start] = ACTIONS(755), + [sym__single_quote_open] = ACTIONS(757), + [sym__double_quote_open] = ACTIONS(759), + [sym__superscript_open] = ACTIONS(761), + [sym__subscript_open] = ACTIONS(763), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(765), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(767), + [sym__cite_author_in_text] = ACTIONS(769), + [sym__cite_suppress_author] = ACTIONS(771), + [sym__shortcode_open_escaped] = ACTIONS(773), + [sym__shortcode_open] = ACTIONS(775), + [sym__unclosed_span] = ACTIONS(709), }, [STATE(239)] = { - [sym_backslash_escape] = STATE(271), - [sym_commonmark_attribute] = STATE(271), - [sym_code_span] = STATE(271), - [sym_latex_span] = STATE(271), - [sym_superscript] = STATE(271), - [sym_subscript] = STATE(271), - [sym_strikeout] = STATE(271), - [sym_quoted_span] = STATE(271), - [sym_inline_note] = STATE(271), - [sym_citation] = STATE(271), - [sym_shortcode_escaped] = STATE(271), - [sym_shortcode] = STATE(271), - [sym_note_reference] = STATE(271), - [sym_image] = STATE(271), - [sym__image_inline_link] = STATE(883), - [sym__image_description] = STATE(1998), - [sym__image_description_non_empty] = STATE(1998), - [sym_hard_line_break] = STATE(271), - [sym__whitespace] = STATE(881), - [sym__word] = STATE(881), - [sym__soft_line_break] = STATE(884), - [sym__inline_base] = STATE(1144), - [sym__text_base] = STATE(271), - [sym__inline_element_no_link] = STATE(1144), - [aux_sym__inline_no_link] = STATE(220), - [sym__emphasis_star_no_link] = STATE(1170), - [sym__strong_emphasis_star_no_link] = STATE(1144), - [sym__emphasis_underscore_no_link] = STATE(1170), - [sym__strong_emphasis_underscore_no_link] = STATE(1144), - [aux_sym__inline_base_repeat1] = STATE(271), - [sym__backslash_escape] = ACTIONS(159), - [sym_entity_reference] = ACTIONS(161), - [sym_numeric_character_reference] = ACTIONS(161), - [anon_sym_LT] = ACTIONS(163), - [anon_sym_GT] = ACTIONS(165), - [anon_sym_BANG] = ACTIONS(167), - [anon_sym_DQUOTE] = ACTIONS(165), - [anon_sym_POUND] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(165), - [anon_sym_PERCENT] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_SQUOTE] = ACTIONS(165), - [anon_sym_STAR] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(165), - [anon_sym_COMMA] = ACTIONS(165), - [anon_sym_DASH] = ACTIONS(163), - [anon_sym_DOT] = ACTIONS(163), - [anon_sym_SLASH] = ACTIONS(165), - [anon_sym_COLON] = ACTIONS(165), - [anon_sym_SEMI] = ACTIONS(165), - [anon_sym_EQ] = ACTIONS(165), - [anon_sym_QMARK] = ACTIONS(165), - [anon_sym_BSLASH] = ACTIONS(171), - [anon_sym_RBRACK] = ACTIONS(2844), - [anon_sym_CARET] = ACTIONS(163), - [anon_sym__] = ACTIONS(165), - [anon_sym_BQUOTE] = ACTIONS(165), - [anon_sym_LBRACE] = ACTIONS(175), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(165), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_RPAREN] = ACTIONS(165), - [sym__newline_token] = ACTIONS(177), - [anon_sym_CARET_LBRACK] = ACTIONS(179), - [anon_sym_LBRACK_CARET] = ACTIONS(181), - [sym_uri_autolink] = ACTIONS(161), - [sym_email_autolink] = ACTIONS(161), - [sym__whitespace_ge_2] = ACTIONS(183), - [aux_sym__whitespace_token1] = ACTIONS(185), - [sym__word_no_digit] = ACTIONS(187), - [sym__digits] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_DASH_DASH_DASH] = ACTIONS(187), - [anon_sym_DOT_DOT_DOT] = ACTIONS(187), - [sym__code_span_start] = ACTIONS(191), - [sym__emphasis_open_star] = ACTIONS(2630), - [sym__emphasis_open_underscore] = ACTIONS(2632), - [sym__strikeout_open] = ACTIONS(199), - [sym__latex_span_start] = ACTIONS(201), - [sym__single_quote_open] = ACTIONS(203), - [sym__double_quote_open] = ACTIONS(205), - [sym__superscript_open] = ACTIONS(207), - [sym__subscript_open] = ACTIONS(209), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(211), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(213), - [sym__cite_author_in_text] = ACTIONS(215), - [sym__cite_suppress_author] = ACTIONS(217), - [sym__shortcode_open_escaped] = ACTIONS(219), - [sym__shortcode_open] = ACTIONS(221), - [sym__unclosed_span] = ACTIONS(161), + [sym_backslash_escape] = STATE(370), + [sym_commonmark_attribute] = STATE(370), + [sym_code_span] = STATE(370), + [sym_latex_span] = STATE(370), + [sym_insert] = STATE(370), + [sym_delete] = STATE(370), + [sym_highlight] = STATE(370), + [sym_edit_comment] = STATE(370), + [sym_superscript] = STATE(370), + [sym_subscript] = STATE(370), + [sym_strikeout] = STATE(370), + [sym_quoted_span] = STATE(370), + [sym_inline_note] = STATE(370), + [sym_citation] = STATE(370), + [sym_shortcode_escaped] = STATE(370), + [sym_shortcode] = STATE(370), + [sym_note_reference] = STATE(370), + [sym__link_text] = STATE(472), + [sym__link_text_non_empty] = STATE(473), + [sym_inline_link] = STATE(243), + [sym_image] = STATE(370), + [sym__image_inline_link] = STATE(923), + [sym__image_description] = STATE(2342), + [sym__image_description_non_empty] = STATE(2342), + [sym_hard_line_break] = STATE(370), + [sym__whitespace] = STATE(920), + [sym__word] = STATE(920), + [sym__soft_line_break] = STATE(924), + [sym__inline_base] = STATE(243), + [sym__text_base] = STATE(370), + [sym__inline_element] = STATE(243), + [sym__emphasis_star] = STATE(821), + [sym__strong_emphasis_star] = STATE(243), + [sym__emphasis_underscore] = STATE(821), + [sym__strong_emphasis_underscore] = STATE(243), + [aux_sym_insert_repeat1] = STATE(243), + [aux_sym__inline_base_repeat1] = STATE(370), + [sym__backslash_escape] = ACTIONS(73), + [sym_entity_reference] = ACTIONS(75), + [sym_numeric_character_reference] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_BANG] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_POUND] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(79), + [anon_sym_PERCENT] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_STAR] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_COMMA] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_DOT] = ACTIONS(77), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_COLON] = ACTIONS(79), + [anon_sym_SEMI] = ACTIONS(79), + [anon_sym_EQ] = ACTIONS(79), + [anon_sym_QMARK] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(83), + [anon_sym_BSLASH] = ACTIONS(85), + [anon_sym_RBRACK] = ACTIONS(2675), + [anon_sym_CARET] = ACTIONS(77), + [anon_sym__] = ACTIONS(79), + [anon_sym_BQUOTE] = ACTIONS(79), + [anon_sym_LBRACE] = ACTIONS(89), + [anon_sym_PIPE] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(79), + [anon_sym_RPAREN] = ACTIONS(79), + [sym__newline_token] = ACTIONS(91), + [aux_sym_insert_token1] = ACTIONS(93), + [aux_sym_delete_token1] = ACTIONS(95), + [aux_sym_highlight_token1] = ACTIONS(97), + [aux_sym_edit_comment_token1] = ACTIONS(99), + [anon_sym_CARET_LBRACK] = ACTIONS(101), + [anon_sym_LBRACK_CARET] = ACTIONS(103), + [sym_uri_autolink] = ACTIONS(75), + [sym_email_autolink] = ACTIONS(75), + [sym__whitespace_ge_2] = ACTIONS(105), + [aux_sym__whitespace_token1] = ACTIONS(107), + [sym__word_no_digit] = ACTIONS(109), + [sym__digits] = ACTIONS(109), + [anon_sym_DASH_DASH] = ACTIONS(111), + [anon_sym_DASH_DASH_DASH] = ACTIONS(109), + [anon_sym_DOT_DOT_DOT] = ACTIONS(109), + [sym__code_span_start] = ACTIONS(113), + [sym__emphasis_open_star] = ACTIONS(115), + [sym__emphasis_open_underscore] = ACTIONS(117), + [sym__strikeout_open] = ACTIONS(121), + [sym__latex_span_start] = ACTIONS(123), + [sym__single_quote_open] = ACTIONS(125), + [sym__double_quote_open] = ACTIONS(127), + [sym__superscript_open] = ACTIONS(129), + [sym__subscript_open] = ACTIONS(131), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(133), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(135), + [sym__cite_author_in_text] = ACTIONS(137), + [sym__cite_suppress_author] = ACTIONS(139), + [sym__shortcode_open_escaped] = ACTIONS(141), + [sym__shortcode_open] = ACTIONS(143), + [sym__unclosed_span] = ACTIONS(75), }, [STATE(240)] = { - [sym_backslash_escape] = STATE(271), - [sym_commonmark_attribute] = STATE(271), - [sym_code_span] = STATE(271), - [sym_latex_span] = STATE(271), - [sym_superscript] = STATE(271), - [sym_subscript] = STATE(271), - [sym_strikeout] = STATE(271), - [sym_quoted_span] = STATE(271), - [sym_inline_note] = STATE(271), - [sym_citation] = STATE(271), - [sym_shortcode_escaped] = STATE(271), - [sym_shortcode] = STATE(271), - [sym_note_reference] = STATE(271), - [sym_image] = STATE(271), - [sym__image_inline_link] = STATE(883), - [sym__image_description] = STATE(1998), - [sym__image_description_non_empty] = STATE(1998), - [sym_hard_line_break] = STATE(271), - [sym__whitespace] = STATE(881), - [sym__word] = STATE(881), - [sym__soft_line_break] = STATE(884), - [sym__inline_base] = STATE(1144), - [sym__text_base] = STATE(271), - [sym__inline_element_no_link] = STATE(1144), - [aux_sym__inline_no_link] = STATE(241), - [sym__emphasis_star_no_link] = STATE(1170), - [sym__strong_emphasis_star_no_link] = STATE(1144), - [sym__emphasis_underscore_no_link] = STATE(1170), - [sym__strong_emphasis_underscore_no_link] = STATE(1144), - [aux_sym__inline_base_repeat1] = STATE(271), - [sym__backslash_escape] = ACTIONS(159), - [sym_entity_reference] = ACTIONS(161), - [sym_numeric_character_reference] = ACTIONS(161), - [anon_sym_LT] = ACTIONS(163), - [anon_sym_GT] = ACTIONS(165), - [anon_sym_BANG] = ACTIONS(167), - [anon_sym_DQUOTE] = ACTIONS(165), - [anon_sym_POUND] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(165), - [anon_sym_PERCENT] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_SQUOTE] = ACTIONS(165), - [anon_sym_STAR] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(165), - [anon_sym_COMMA] = ACTIONS(165), - [anon_sym_DASH] = ACTIONS(163), - [anon_sym_DOT] = ACTIONS(163), - [anon_sym_SLASH] = ACTIONS(165), - [anon_sym_COLON] = ACTIONS(165), - [anon_sym_SEMI] = ACTIONS(165), - [anon_sym_EQ] = ACTIONS(165), - [anon_sym_QMARK] = ACTIONS(165), - [anon_sym_BSLASH] = ACTIONS(171), - [anon_sym_RBRACK] = ACTIONS(2846), - [anon_sym_CARET] = ACTIONS(163), - [anon_sym__] = ACTIONS(165), - [anon_sym_BQUOTE] = ACTIONS(165), - [anon_sym_LBRACE] = ACTIONS(175), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(165), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_RPAREN] = ACTIONS(165), - [sym__newline_token] = ACTIONS(177), - [anon_sym_CARET_LBRACK] = ACTIONS(179), - [anon_sym_LBRACK_CARET] = ACTIONS(181), - [sym_uri_autolink] = ACTIONS(161), - [sym_email_autolink] = ACTIONS(161), - [sym__whitespace_ge_2] = ACTIONS(183), - [aux_sym__whitespace_token1] = ACTIONS(185), - [sym__word_no_digit] = ACTIONS(187), - [sym__digits] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_DASH_DASH_DASH] = ACTIONS(187), - [anon_sym_DOT_DOT_DOT] = ACTIONS(187), - [sym__code_span_start] = ACTIONS(191), - [sym__emphasis_open_star] = ACTIONS(2630), - [sym__emphasis_open_underscore] = ACTIONS(2632), - [sym__strikeout_open] = ACTIONS(199), - [sym__latex_span_start] = ACTIONS(201), - [sym__single_quote_open] = ACTIONS(203), - [sym__double_quote_open] = ACTIONS(205), - [sym__superscript_open] = ACTIONS(207), - [sym__subscript_open] = ACTIONS(209), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(211), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(213), - [sym__cite_author_in_text] = ACTIONS(215), - [sym__cite_suppress_author] = ACTIONS(217), - [sym__shortcode_open_escaped] = ACTIONS(219), - [sym__shortcode_open] = ACTIONS(221), - [sym__unclosed_span] = ACTIONS(161), + [sym_backslash_escape] = STATE(370), + [sym_commonmark_attribute] = STATE(370), + [sym_code_span] = STATE(370), + [sym_latex_span] = STATE(370), + [sym_insert] = STATE(370), + [sym_delete] = STATE(370), + [sym_highlight] = STATE(370), + [sym_edit_comment] = STATE(370), + [sym_superscript] = STATE(370), + [sym_subscript] = STATE(370), + [sym_strikeout] = STATE(370), + [sym_quoted_span] = STATE(370), + [sym_inline_note] = STATE(370), + [sym_citation] = STATE(370), + [sym_shortcode_escaped] = STATE(370), + [sym_shortcode] = STATE(370), + [sym_note_reference] = STATE(370), + [sym__link_text] = STATE(472), + [sym__link_text_non_empty] = STATE(473), + [sym_inline_link] = STATE(60), + [sym_image] = STATE(370), + [sym__image_inline_link] = STATE(923), + [sym__image_description] = STATE(2342), + [sym__image_description_non_empty] = STATE(2342), + [sym_hard_line_break] = STATE(370), + [sym__whitespace] = STATE(920), + [sym__word] = STATE(920), + [sym__soft_line_break] = STATE(924), + [sym__inline_base] = STATE(60), + [sym__text_base] = STATE(370), + [sym__inline_element] = STATE(60), + [sym__emphasis_star] = STATE(821), + [sym__strong_emphasis_star] = STATE(60), + [sym__emphasis_underscore] = STATE(821), + [sym__strong_emphasis_underscore] = STATE(60), + [aux_sym_insert_repeat1] = STATE(60), + [aux_sym__inline_base_repeat1] = STATE(370), + [sym__backslash_escape] = ACTIONS(73), + [sym_entity_reference] = ACTIONS(75), + [sym_numeric_character_reference] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_BANG] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_POUND] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(79), + [anon_sym_PERCENT] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_STAR] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_COMMA] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_DOT] = ACTIONS(77), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_COLON] = ACTIONS(79), + [anon_sym_SEMI] = ACTIONS(79), + [anon_sym_EQ] = ACTIONS(79), + [anon_sym_QMARK] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(83), + [anon_sym_BSLASH] = ACTIONS(85), + [anon_sym_RBRACK] = ACTIONS(2677), + [anon_sym_CARET] = ACTIONS(77), + [anon_sym__] = ACTIONS(79), + [anon_sym_BQUOTE] = ACTIONS(79), + [anon_sym_LBRACE] = ACTIONS(89), + [anon_sym_PIPE] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(79), + [anon_sym_RPAREN] = ACTIONS(79), + [sym__newline_token] = ACTIONS(91), + [aux_sym_insert_token1] = ACTIONS(93), + [aux_sym_delete_token1] = ACTIONS(95), + [aux_sym_highlight_token1] = ACTIONS(97), + [aux_sym_edit_comment_token1] = ACTIONS(99), + [anon_sym_CARET_LBRACK] = ACTIONS(101), + [anon_sym_LBRACK_CARET] = ACTIONS(103), + [sym_uri_autolink] = ACTIONS(75), + [sym_email_autolink] = ACTIONS(75), + [sym__whitespace_ge_2] = ACTIONS(105), + [aux_sym__whitespace_token1] = ACTIONS(107), + [sym__word_no_digit] = ACTIONS(109), + [sym__digits] = ACTIONS(109), + [anon_sym_DASH_DASH] = ACTIONS(111), + [anon_sym_DASH_DASH_DASH] = ACTIONS(109), + [anon_sym_DOT_DOT_DOT] = ACTIONS(109), + [sym__code_span_start] = ACTIONS(113), + [sym__emphasis_open_star] = ACTIONS(115), + [sym__emphasis_open_underscore] = ACTIONS(117), + [sym__strikeout_open] = ACTIONS(121), + [sym__latex_span_start] = ACTIONS(123), + [sym__single_quote_open] = ACTIONS(125), + [sym__double_quote_open] = ACTIONS(127), + [sym__superscript_open] = ACTIONS(129), + [sym__subscript_open] = ACTIONS(131), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(133), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(135), + [sym__cite_author_in_text] = ACTIONS(137), + [sym__cite_suppress_author] = ACTIONS(139), + [sym__shortcode_open_escaped] = ACTIONS(141), + [sym__shortcode_open] = ACTIONS(143), + [sym__unclosed_span] = ACTIONS(75), }, [STATE(241)] = { - [sym_backslash_escape] = STATE(271), - [sym_commonmark_attribute] = STATE(271), - [sym_code_span] = STATE(271), - [sym_latex_span] = STATE(271), - [sym_superscript] = STATE(271), - [sym_subscript] = STATE(271), - [sym_strikeout] = STATE(271), - [sym_quoted_span] = STATE(271), - [sym_inline_note] = STATE(271), - [sym_citation] = STATE(271), - [sym_shortcode_escaped] = STATE(271), - [sym_shortcode] = STATE(271), - [sym_note_reference] = STATE(271), - [sym_image] = STATE(271), - [sym__image_inline_link] = STATE(883), - [sym__image_description] = STATE(1998), - [sym__image_description_non_empty] = STATE(1998), - [sym_hard_line_break] = STATE(271), - [sym__whitespace] = STATE(881), - [sym__word] = STATE(881), - [sym__soft_line_break] = STATE(884), - [sym__inline_base] = STATE(1144), - [sym__text_base] = STATE(271), - [sym__inline_element_no_link] = STATE(1144), - [aux_sym__inline_no_link] = STATE(220), - [sym__emphasis_star_no_link] = STATE(1170), - [sym__strong_emphasis_star_no_link] = STATE(1144), - [sym__emphasis_underscore_no_link] = STATE(1170), - [sym__strong_emphasis_underscore_no_link] = STATE(1144), - [aux_sym__inline_base_repeat1] = STATE(271), - [sym__backslash_escape] = ACTIONS(159), - [sym_entity_reference] = ACTIONS(161), - [sym_numeric_character_reference] = ACTIONS(161), - [anon_sym_LT] = ACTIONS(163), - [anon_sym_GT] = ACTIONS(165), - [anon_sym_BANG] = ACTIONS(167), - [anon_sym_DQUOTE] = ACTIONS(165), - [anon_sym_POUND] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(165), - [anon_sym_PERCENT] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_SQUOTE] = ACTIONS(165), - [anon_sym_STAR] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(165), - [anon_sym_COMMA] = ACTIONS(165), - [anon_sym_DASH] = ACTIONS(163), - [anon_sym_DOT] = ACTIONS(163), - [anon_sym_SLASH] = ACTIONS(165), - [anon_sym_COLON] = ACTIONS(165), - [anon_sym_SEMI] = ACTIONS(165), - [anon_sym_EQ] = ACTIONS(165), - [anon_sym_QMARK] = ACTIONS(165), - [anon_sym_BSLASH] = ACTIONS(171), - [anon_sym_RBRACK] = ACTIONS(2848), - [anon_sym_CARET] = ACTIONS(163), - [anon_sym__] = ACTIONS(165), - [anon_sym_BQUOTE] = ACTIONS(165), - [anon_sym_LBRACE] = ACTIONS(175), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(165), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_RPAREN] = ACTIONS(165), - [sym__newline_token] = ACTIONS(177), - [anon_sym_CARET_LBRACK] = ACTIONS(179), - [anon_sym_LBRACK_CARET] = ACTIONS(181), - [sym_uri_autolink] = ACTIONS(161), - [sym_email_autolink] = ACTIONS(161), - [sym__whitespace_ge_2] = ACTIONS(183), - [aux_sym__whitespace_token1] = ACTIONS(185), - [sym__word_no_digit] = ACTIONS(187), - [sym__digits] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_DASH_DASH_DASH] = ACTIONS(187), - [anon_sym_DOT_DOT_DOT] = ACTIONS(187), - [sym__code_span_start] = ACTIONS(191), - [sym__emphasis_open_star] = ACTIONS(2630), - [sym__emphasis_open_underscore] = ACTIONS(2632), - [sym__strikeout_open] = ACTIONS(199), - [sym__latex_span_start] = ACTIONS(201), - [sym__single_quote_open] = ACTIONS(203), - [sym__double_quote_open] = ACTIONS(205), - [sym__superscript_open] = ACTIONS(207), - [sym__subscript_open] = ACTIONS(209), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(211), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(213), - [sym__cite_author_in_text] = ACTIONS(215), - [sym__cite_suppress_author] = ACTIONS(217), - [sym__shortcode_open_escaped] = ACTIONS(219), - [sym__shortcode_open] = ACTIONS(221), - [sym__unclosed_span] = ACTIONS(161), + [sym_backslash_escape] = STATE(373), + [sym_commonmark_attribute] = STATE(373), + [sym_code_span] = STATE(373), + [sym_latex_span] = STATE(373), + [sym_insert] = STATE(373), + [sym_delete] = STATE(373), + [sym_highlight] = STATE(373), + [sym_edit_comment] = STATE(373), + [sym_superscript] = STATE(373), + [sym_subscript] = STATE(373), + [sym_strikeout] = STATE(373), + [sym_quoted_span] = STATE(373), + [sym_inline_note] = STATE(373), + [sym_citation] = STATE(373), + [sym_shortcode_escaped] = STATE(373), + [sym_shortcode] = STATE(373), + [sym_note_reference] = STATE(373), + [sym__link_text] = STATE(522), + [sym__link_text_non_empty] = STATE(523), + [sym_inline_link] = STATE(36), + [sym_image] = STATE(373), + [sym__image_inline_link] = STATE(1265), + [sym__image_description] = STATE(2331), + [sym__image_description_non_empty] = STATE(2331), + [sym_hard_line_break] = STATE(373), + [sym__whitespace] = STATE(1262), + [sym__word] = STATE(1262), + [sym__soft_line_break] = STATE(1267), + [sym__inline_base] = STATE(36), + [sym__text_base] = STATE(373), + [sym__inline_element_no_star] = STATE(36), + [aux_sym__inline_no_star] = STATE(36), + [sym__emphasis_star] = STATE(1147), + [sym__strong_emphasis_star] = STATE(36), + [sym__emphasis_underscore] = STATE(1147), + [sym__strong_emphasis_underscore] = STATE(36), + [aux_sym__inline_base_repeat1] = STATE(373), + [sym__backslash_escape] = ACTIONS(885), + [sym_entity_reference] = ACTIONS(887), + [sym_numeric_character_reference] = ACTIONS(887), + [anon_sym_LT] = ACTIONS(889), + [anon_sym_GT] = ACTIONS(891), + [anon_sym_BANG] = ACTIONS(893), + [anon_sym_DQUOTE] = ACTIONS(891), + [anon_sym_POUND] = ACTIONS(891), + [anon_sym_DOLLAR] = ACTIONS(891), + [anon_sym_PERCENT] = ACTIONS(891), + [anon_sym_AMP] = ACTIONS(889), + [anon_sym_SQUOTE] = ACTIONS(891), + [anon_sym_STAR] = ACTIONS(891), + [anon_sym_PLUS] = ACTIONS(891), + [anon_sym_COMMA] = ACTIONS(891), + [anon_sym_DASH] = ACTIONS(889), + [anon_sym_DOT] = ACTIONS(889), + [anon_sym_SLASH] = ACTIONS(891), + [anon_sym_COLON] = ACTIONS(891), + [anon_sym_SEMI] = ACTIONS(891), + [anon_sym_EQ] = ACTIONS(891), + [anon_sym_QMARK] = ACTIONS(891), + [anon_sym_LBRACK] = ACTIONS(895), + [anon_sym_BSLASH] = ACTIONS(897), + [anon_sym_CARET] = ACTIONS(889), + [anon_sym__] = ACTIONS(891), + [anon_sym_BQUOTE] = ACTIONS(891), + [anon_sym_LBRACE] = ACTIONS(899), + [anon_sym_PIPE] = ACTIONS(891), + [anon_sym_TILDE] = ACTIONS(891), + [anon_sym_LPAREN] = ACTIONS(891), + [anon_sym_RPAREN] = ACTIONS(891), + [sym__newline_token] = ACTIONS(901), + [aux_sym_insert_token1] = ACTIONS(903), + [aux_sym_delete_token1] = ACTIONS(905), + [aux_sym_highlight_token1] = ACTIONS(907), + [aux_sym_edit_comment_token1] = ACTIONS(909), + [anon_sym_CARET_LBRACK] = ACTIONS(911), + [anon_sym_LBRACK_CARET] = ACTIONS(913), + [sym_uri_autolink] = ACTIONS(887), + [sym_email_autolink] = ACTIONS(887), + [sym__whitespace_ge_2] = ACTIONS(915), + [aux_sym__whitespace_token1] = ACTIONS(917), + [sym__word_no_digit] = ACTIONS(919), + [sym__digits] = ACTIONS(919), + [anon_sym_DASH_DASH] = ACTIONS(921), + [anon_sym_DASH_DASH_DASH] = ACTIONS(919), + [anon_sym_DOT_DOT_DOT] = ACTIONS(919), + [sym__code_span_start] = ACTIONS(923), + [sym__emphasis_open_star] = ACTIONS(925), + [sym__emphasis_open_underscore] = ACTIONS(927), + [sym__emphasis_close_star] = ACTIONS(2679), + [sym__strikeout_open] = ACTIONS(931), + [sym__latex_span_start] = ACTIONS(933), + [sym__single_quote_open] = ACTIONS(935), + [sym__double_quote_open] = ACTIONS(937), + [sym__superscript_open] = ACTIONS(939), + [sym__subscript_open] = ACTIONS(941), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(943), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(945), + [sym__cite_author_in_text] = ACTIONS(947), + [sym__cite_suppress_author] = ACTIONS(949), + [sym__shortcode_open_escaped] = ACTIONS(951), + [sym__shortcode_open] = ACTIONS(953), + [sym__unclosed_span] = ACTIONS(887), }, [STATE(242)] = { - [sym_backslash_escape] = STATE(271), - [sym_commonmark_attribute] = STATE(271), - [sym_code_span] = STATE(271), - [sym_latex_span] = STATE(271), - [sym_superscript] = STATE(271), - [sym_subscript] = STATE(271), - [sym_strikeout] = STATE(271), - [sym_quoted_span] = STATE(271), - [sym_inline_note] = STATE(271), - [sym_citation] = STATE(271), - [sym_shortcode_escaped] = STATE(271), - [sym_shortcode] = STATE(271), - [sym_note_reference] = STATE(271), - [sym_image] = STATE(271), - [sym__image_inline_link] = STATE(883), - [sym__image_description] = STATE(1998), - [sym__image_description_non_empty] = STATE(1998), - [sym_hard_line_break] = STATE(271), - [sym__whitespace] = STATE(881), - [sym__word] = STATE(881), - [sym__soft_line_break] = STATE(884), - [sym__inline_base] = STATE(1144), - [sym__text_base] = STATE(271), - [sym__inline_element_no_link] = STATE(1144), - [aux_sym__inline_no_link] = STATE(243), - [sym__emphasis_star_no_link] = STATE(1170), - [sym__strong_emphasis_star_no_link] = STATE(1144), - [sym__emphasis_underscore_no_link] = STATE(1170), - [sym__strong_emphasis_underscore_no_link] = STATE(1144), - [aux_sym__inline_base_repeat1] = STATE(271), - [sym__backslash_escape] = ACTIONS(159), - [sym_entity_reference] = ACTIONS(161), - [sym_numeric_character_reference] = ACTIONS(161), - [anon_sym_LT] = ACTIONS(163), - [anon_sym_GT] = ACTIONS(165), - [anon_sym_BANG] = ACTIONS(167), - [anon_sym_DQUOTE] = ACTIONS(165), - [anon_sym_POUND] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(165), - [anon_sym_PERCENT] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_SQUOTE] = ACTIONS(165), - [anon_sym_STAR] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(165), - [anon_sym_COMMA] = ACTIONS(165), - [anon_sym_DASH] = ACTIONS(163), - [anon_sym_DOT] = ACTIONS(163), - [anon_sym_SLASH] = ACTIONS(165), - [anon_sym_COLON] = ACTIONS(165), - [anon_sym_SEMI] = ACTIONS(165), - [anon_sym_EQ] = ACTIONS(165), - [anon_sym_QMARK] = ACTIONS(165), - [anon_sym_BSLASH] = ACTIONS(171), - [anon_sym_RBRACK] = ACTIONS(2850), - [anon_sym_CARET] = ACTIONS(163), - [anon_sym__] = ACTIONS(165), - [anon_sym_BQUOTE] = ACTIONS(165), - [anon_sym_LBRACE] = ACTIONS(175), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(165), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_RPAREN] = ACTIONS(165), - [sym__newline_token] = ACTIONS(177), - [anon_sym_CARET_LBRACK] = ACTIONS(179), - [anon_sym_LBRACK_CARET] = ACTIONS(181), - [sym_uri_autolink] = ACTIONS(161), - [sym_email_autolink] = ACTIONS(161), - [sym__whitespace_ge_2] = ACTIONS(183), - [aux_sym__whitespace_token1] = ACTIONS(185), - [sym__word_no_digit] = ACTIONS(187), - [sym__digits] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_DASH_DASH_DASH] = ACTIONS(187), - [anon_sym_DOT_DOT_DOT] = ACTIONS(187), - [sym__code_span_start] = ACTIONS(191), - [sym__emphasis_open_star] = ACTIONS(2630), - [sym__emphasis_open_underscore] = ACTIONS(2632), - [sym__strikeout_open] = ACTIONS(199), - [sym__latex_span_start] = ACTIONS(201), - [sym__single_quote_open] = ACTIONS(203), - [sym__double_quote_open] = ACTIONS(205), - [sym__superscript_open] = ACTIONS(207), - [sym__subscript_open] = ACTIONS(209), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(211), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(213), - [sym__cite_author_in_text] = ACTIONS(215), - [sym__cite_suppress_author] = ACTIONS(217), - [sym__shortcode_open_escaped] = ACTIONS(219), - [sym__shortcode_open] = ACTIONS(221), - [sym__unclosed_span] = ACTIONS(161), + [sym_backslash_escape] = STATE(379), + [sym_commonmark_attribute] = STATE(379), + [sym_code_span] = STATE(379), + [sym_latex_span] = STATE(379), + [sym_insert] = STATE(379), + [sym_delete] = STATE(379), + [sym_highlight] = STATE(379), + [sym_edit_comment] = STATE(379), + [sym_superscript] = STATE(379), + [sym_subscript] = STATE(379), + [sym_strikeout] = STATE(379), + [sym_quoted_span] = STATE(379), + [sym_inline_note] = STATE(379), + [sym_citation] = STATE(379), + [sym_shortcode_escaped] = STATE(379), + [sym_shortcode] = STATE(379), + [sym_note_reference] = STATE(379), + [sym__link_text] = STATE(545), + [sym__link_text_non_empty] = STATE(546), + [sym_inline_link] = STATE(38), + [sym_image] = STATE(379), + [sym__image_inline_link] = STATE(1390), + [sym__image_description] = STATE(2363), + [sym__image_description_non_empty] = STATE(2363), + [sym_hard_line_break] = STATE(379), + [sym__whitespace] = STATE(1385), + [sym__word] = STATE(1385), + [sym__soft_line_break] = STATE(1391), + [sym__inline_base] = STATE(38), + [sym__text_base] = STATE(379), + [sym__inline_element_no_underscore] = STATE(38), + [aux_sym__inline_no_underscore] = STATE(38), + [sym__emphasis_star] = STATE(1168), + [sym__strong_emphasis_star] = STATE(38), + [sym__emphasis_underscore] = STATE(1168), + [sym__strong_emphasis_underscore] = STATE(38), + [aux_sym__inline_base_repeat1] = STATE(379), + [sym__backslash_escape] = ACTIONS(1059), + [sym_entity_reference] = ACTIONS(1061), + [sym_numeric_character_reference] = ACTIONS(1061), + [anon_sym_LT] = ACTIONS(1063), + [anon_sym_GT] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1067), + [anon_sym_DQUOTE] = ACTIONS(1065), + [anon_sym_POUND] = ACTIONS(1065), + [anon_sym_DOLLAR] = ACTIONS(1065), + [anon_sym_PERCENT] = ACTIONS(1065), + [anon_sym_AMP] = ACTIONS(1063), + [anon_sym_SQUOTE] = ACTIONS(1065), + [anon_sym_STAR] = ACTIONS(1065), + [anon_sym_PLUS] = ACTIONS(1065), + [anon_sym_COMMA] = ACTIONS(1065), + [anon_sym_DASH] = ACTIONS(1063), + [anon_sym_DOT] = ACTIONS(1063), + [anon_sym_SLASH] = ACTIONS(1065), + [anon_sym_COLON] = ACTIONS(1065), + [anon_sym_SEMI] = ACTIONS(1065), + [anon_sym_EQ] = ACTIONS(1065), + [anon_sym_QMARK] = ACTIONS(1065), + [anon_sym_LBRACK] = ACTIONS(1069), + [anon_sym_BSLASH] = ACTIONS(1071), + [anon_sym_CARET] = ACTIONS(1063), + [anon_sym__] = ACTIONS(1065), + [anon_sym_BQUOTE] = ACTIONS(1065), + [anon_sym_LBRACE] = ACTIONS(1073), + [anon_sym_PIPE] = ACTIONS(1065), + [anon_sym_TILDE] = ACTIONS(1065), + [anon_sym_LPAREN] = ACTIONS(1065), + [anon_sym_RPAREN] = ACTIONS(1065), + [sym__newline_token] = ACTIONS(1075), + [aux_sym_insert_token1] = ACTIONS(1077), + [aux_sym_delete_token1] = ACTIONS(1079), + [aux_sym_highlight_token1] = ACTIONS(1081), + [aux_sym_edit_comment_token1] = ACTIONS(1083), + [anon_sym_CARET_LBRACK] = ACTIONS(1085), + [anon_sym_LBRACK_CARET] = ACTIONS(1087), + [sym_uri_autolink] = ACTIONS(1061), + [sym_email_autolink] = ACTIONS(1061), + [sym__whitespace_ge_2] = ACTIONS(1089), + [aux_sym__whitespace_token1] = ACTIONS(1091), + [sym__word_no_digit] = ACTIONS(1093), + [sym__digits] = ACTIONS(1093), + [anon_sym_DASH_DASH] = ACTIONS(1095), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1093), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1093), + [sym__code_span_start] = ACTIONS(1097), + [sym__emphasis_open_star] = ACTIONS(1099), + [sym__emphasis_open_underscore] = ACTIONS(1101), + [sym__emphasis_close_underscore] = ACTIONS(2681), + [sym__strikeout_open] = ACTIONS(1105), + [sym__latex_span_start] = ACTIONS(1107), + [sym__single_quote_open] = ACTIONS(1109), + [sym__double_quote_open] = ACTIONS(1111), + [sym__superscript_open] = ACTIONS(1113), + [sym__subscript_open] = ACTIONS(1115), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1117), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1119), + [sym__cite_author_in_text] = ACTIONS(1121), + [sym__cite_suppress_author] = ACTIONS(1123), + [sym__shortcode_open_escaped] = ACTIONS(1125), + [sym__shortcode_open] = ACTIONS(1127), + [sym__unclosed_span] = ACTIONS(1061), }, [STATE(243)] = { - [sym_backslash_escape] = STATE(271), - [sym_commonmark_attribute] = STATE(271), - [sym_code_span] = STATE(271), - [sym_latex_span] = STATE(271), - [sym_superscript] = STATE(271), - [sym_subscript] = STATE(271), - [sym_strikeout] = STATE(271), - [sym_quoted_span] = STATE(271), - [sym_inline_note] = STATE(271), - [sym_citation] = STATE(271), - [sym_shortcode_escaped] = STATE(271), - [sym_shortcode] = STATE(271), - [sym_note_reference] = STATE(271), - [sym_image] = STATE(271), - [sym__image_inline_link] = STATE(883), - [sym__image_description] = STATE(1998), - [sym__image_description_non_empty] = STATE(1998), - [sym_hard_line_break] = STATE(271), - [sym__whitespace] = STATE(881), - [sym__word] = STATE(881), - [sym__soft_line_break] = STATE(884), - [sym__inline_base] = STATE(1144), - [sym__text_base] = STATE(271), - [sym__inline_element_no_link] = STATE(1144), - [aux_sym__inline_no_link] = STATE(220), - [sym__emphasis_star_no_link] = STATE(1170), - [sym__strong_emphasis_star_no_link] = STATE(1144), - [sym__emphasis_underscore_no_link] = STATE(1170), - [sym__strong_emphasis_underscore_no_link] = STATE(1144), - [aux_sym__inline_base_repeat1] = STATE(271), - [sym__backslash_escape] = ACTIONS(159), - [sym_entity_reference] = ACTIONS(161), - [sym_numeric_character_reference] = ACTIONS(161), - [anon_sym_LT] = ACTIONS(163), - [anon_sym_GT] = ACTIONS(165), - [anon_sym_BANG] = ACTIONS(167), - [anon_sym_DQUOTE] = ACTIONS(165), - [anon_sym_POUND] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(165), - [anon_sym_PERCENT] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_SQUOTE] = ACTIONS(165), - [anon_sym_STAR] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(165), - [anon_sym_COMMA] = ACTIONS(165), - [anon_sym_DASH] = ACTIONS(163), - [anon_sym_DOT] = ACTIONS(163), - [anon_sym_SLASH] = ACTIONS(165), - [anon_sym_COLON] = ACTIONS(165), - [anon_sym_SEMI] = ACTIONS(165), - [anon_sym_EQ] = ACTIONS(165), - [anon_sym_QMARK] = ACTIONS(165), - [anon_sym_BSLASH] = ACTIONS(171), - [anon_sym_RBRACK] = ACTIONS(2852), - [anon_sym_CARET] = ACTIONS(163), - [anon_sym__] = ACTIONS(165), - [anon_sym_BQUOTE] = ACTIONS(165), - [anon_sym_LBRACE] = ACTIONS(175), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(165), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_RPAREN] = ACTIONS(165), - [sym__newline_token] = ACTIONS(177), - [anon_sym_CARET_LBRACK] = ACTIONS(179), - [anon_sym_LBRACK_CARET] = ACTIONS(181), - [sym_uri_autolink] = ACTIONS(161), - [sym_email_autolink] = ACTIONS(161), - [sym__whitespace_ge_2] = ACTIONS(183), - [aux_sym__whitespace_token1] = ACTIONS(185), - [sym__word_no_digit] = ACTIONS(187), - [sym__digits] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_DASH_DASH_DASH] = ACTIONS(187), - [anon_sym_DOT_DOT_DOT] = ACTIONS(187), - [sym__code_span_start] = ACTIONS(191), - [sym__emphasis_open_star] = ACTIONS(2630), - [sym__emphasis_open_underscore] = ACTIONS(2632), - [sym__strikeout_open] = ACTIONS(199), - [sym__latex_span_start] = ACTIONS(201), - [sym__single_quote_open] = ACTIONS(203), - [sym__double_quote_open] = ACTIONS(205), - [sym__superscript_open] = ACTIONS(207), - [sym__subscript_open] = ACTIONS(209), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(211), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(213), - [sym__cite_author_in_text] = ACTIONS(215), - [sym__cite_suppress_author] = ACTIONS(217), - [sym__shortcode_open_escaped] = ACTIONS(219), - [sym__shortcode_open] = ACTIONS(221), - [sym__unclosed_span] = ACTIONS(161), + [sym_backslash_escape] = STATE(370), + [sym_commonmark_attribute] = STATE(370), + [sym_code_span] = STATE(370), + [sym_latex_span] = STATE(370), + [sym_insert] = STATE(370), + [sym_delete] = STATE(370), + [sym_highlight] = STATE(370), + [sym_edit_comment] = STATE(370), + [sym_superscript] = STATE(370), + [sym_subscript] = STATE(370), + [sym_strikeout] = STATE(370), + [sym_quoted_span] = STATE(370), + [sym_inline_note] = STATE(370), + [sym_citation] = STATE(370), + [sym_shortcode_escaped] = STATE(370), + [sym_shortcode] = STATE(370), + [sym_note_reference] = STATE(370), + [sym__link_text] = STATE(472), + [sym__link_text_non_empty] = STATE(473), + [sym_inline_link] = STATE(60), + [sym_image] = STATE(370), + [sym__image_inline_link] = STATE(923), + [sym__image_description] = STATE(2342), + [sym__image_description_non_empty] = STATE(2342), + [sym_hard_line_break] = STATE(370), + [sym__whitespace] = STATE(920), + [sym__word] = STATE(920), + [sym__soft_line_break] = STATE(924), + [sym__inline_base] = STATE(60), + [sym__text_base] = STATE(370), + [sym__inline_element] = STATE(60), + [sym__emphasis_star] = STATE(821), + [sym__strong_emphasis_star] = STATE(60), + [sym__emphasis_underscore] = STATE(821), + [sym__strong_emphasis_underscore] = STATE(60), + [aux_sym_insert_repeat1] = STATE(60), + [aux_sym__inline_base_repeat1] = STATE(370), + [sym__backslash_escape] = ACTIONS(73), + [sym_entity_reference] = ACTIONS(75), + [sym_numeric_character_reference] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_BANG] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_POUND] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(79), + [anon_sym_PERCENT] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_STAR] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_COMMA] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_DOT] = ACTIONS(77), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_COLON] = ACTIONS(79), + [anon_sym_SEMI] = ACTIONS(79), + [anon_sym_EQ] = ACTIONS(79), + [anon_sym_QMARK] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(83), + [anon_sym_BSLASH] = ACTIONS(85), + [anon_sym_RBRACK] = ACTIONS(2683), + [anon_sym_CARET] = ACTIONS(77), + [anon_sym__] = ACTIONS(79), + [anon_sym_BQUOTE] = ACTIONS(79), + [anon_sym_LBRACE] = ACTIONS(89), + [anon_sym_PIPE] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(79), + [anon_sym_RPAREN] = ACTIONS(79), + [sym__newline_token] = ACTIONS(91), + [aux_sym_insert_token1] = ACTIONS(93), + [aux_sym_delete_token1] = ACTIONS(95), + [aux_sym_highlight_token1] = ACTIONS(97), + [aux_sym_edit_comment_token1] = ACTIONS(99), + [anon_sym_CARET_LBRACK] = ACTIONS(101), + [anon_sym_LBRACK_CARET] = ACTIONS(103), + [sym_uri_autolink] = ACTIONS(75), + [sym_email_autolink] = ACTIONS(75), + [sym__whitespace_ge_2] = ACTIONS(105), + [aux_sym__whitespace_token1] = ACTIONS(107), + [sym__word_no_digit] = ACTIONS(109), + [sym__digits] = ACTIONS(109), + [anon_sym_DASH_DASH] = ACTIONS(111), + [anon_sym_DASH_DASH_DASH] = ACTIONS(109), + [anon_sym_DOT_DOT_DOT] = ACTIONS(109), + [sym__code_span_start] = ACTIONS(113), + [sym__emphasis_open_star] = ACTIONS(115), + [sym__emphasis_open_underscore] = ACTIONS(117), + [sym__strikeout_open] = ACTIONS(121), + [sym__latex_span_start] = ACTIONS(123), + [sym__single_quote_open] = ACTIONS(125), + [sym__double_quote_open] = ACTIONS(127), + [sym__superscript_open] = ACTIONS(129), + [sym__subscript_open] = ACTIONS(131), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(133), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(135), + [sym__cite_author_in_text] = ACTIONS(137), + [sym__cite_suppress_author] = ACTIONS(139), + [sym__shortcode_open_escaped] = ACTIONS(141), + [sym__shortcode_open] = ACTIONS(143), + [sym__unclosed_span] = ACTIONS(75), }, [STATE(244)] = { - [sym_backslash_escape] = STATE(271), - [sym_commonmark_attribute] = STATE(271), - [sym_code_span] = STATE(271), - [sym_latex_span] = STATE(271), - [sym_superscript] = STATE(271), - [sym_subscript] = STATE(271), - [sym_strikeout] = STATE(271), - [sym_quoted_span] = STATE(271), - [sym_inline_note] = STATE(271), - [sym_citation] = STATE(271), - [sym_shortcode_escaped] = STATE(271), - [sym_shortcode] = STATE(271), - [sym_note_reference] = STATE(271), - [sym_image] = STATE(271), - [sym__image_inline_link] = STATE(883), - [sym__image_description] = STATE(1998), - [sym__image_description_non_empty] = STATE(1998), - [sym_hard_line_break] = STATE(271), - [sym__whitespace] = STATE(881), - [sym__word] = STATE(881), - [sym__soft_line_break] = STATE(884), - [sym__inline_base] = STATE(1144), - [sym__text_base] = STATE(271), - [sym__inline_element_no_link] = STATE(1144), - [aux_sym__inline_no_link] = STATE(232), - [sym__emphasis_star_no_link] = STATE(1170), - [sym__strong_emphasis_star_no_link] = STATE(1144), - [sym__emphasis_underscore_no_link] = STATE(1170), - [sym__strong_emphasis_underscore_no_link] = STATE(1144), - [aux_sym__inline_base_repeat1] = STATE(271), - [sym__backslash_escape] = ACTIONS(159), - [sym_entity_reference] = ACTIONS(161), - [sym_numeric_character_reference] = ACTIONS(161), - [anon_sym_LT] = ACTIONS(163), - [anon_sym_GT] = ACTIONS(165), - [anon_sym_BANG] = ACTIONS(167), - [anon_sym_DQUOTE] = ACTIONS(165), - [anon_sym_POUND] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(165), - [anon_sym_PERCENT] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_SQUOTE] = ACTIONS(165), - [anon_sym_STAR] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(165), - [anon_sym_COMMA] = ACTIONS(165), - [anon_sym_DASH] = ACTIONS(163), - [anon_sym_DOT] = ACTIONS(163), - [anon_sym_SLASH] = ACTIONS(165), - [anon_sym_COLON] = ACTIONS(165), - [anon_sym_SEMI] = ACTIONS(165), - [anon_sym_EQ] = ACTIONS(165), - [anon_sym_QMARK] = ACTIONS(165), - [anon_sym_BSLASH] = ACTIONS(171), - [anon_sym_RBRACK] = ACTIONS(2854), - [anon_sym_CARET] = ACTIONS(163), - [anon_sym__] = ACTIONS(165), - [anon_sym_BQUOTE] = ACTIONS(165), - [anon_sym_LBRACE] = ACTIONS(175), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(165), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_RPAREN] = ACTIONS(165), - [sym__newline_token] = ACTIONS(177), - [anon_sym_CARET_LBRACK] = ACTIONS(179), - [anon_sym_LBRACK_CARET] = ACTIONS(181), - [sym_uri_autolink] = ACTIONS(161), - [sym_email_autolink] = ACTIONS(161), - [sym__whitespace_ge_2] = ACTIONS(183), - [aux_sym__whitespace_token1] = ACTIONS(185), - [sym__word_no_digit] = ACTIONS(187), - [sym__digits] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_DASH_DASH_DASH] = ACTIONS(187), - [anon_sym_DOT_DOT_DOT] = ACTIONS(187), - [sym__code_span_start] = ACTIONS(191), - [sym__emphasis_open_star] = ACTIONS(2630), - [sym__emphasis_open_underscore] = ACTIONS(2632), - [sym__strikeout_open] = ACTIONS(199), - [sym__latex_span_start] = ACTIONS(201), - [sym__single_quote_open] = ACTIONS(203), - [sym__double_quote_open] = ACTIONS(205), - [sym__superscript_open] = ACTIONS(207), - [sym__subscript_open] = ACTIONS(209), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(211), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(213), - [sym__cite_author_in_text] = ACTIONS(215), - [sym__cite_suppress_author] = ACTIONS(217), - [sym__shortcode_open_escaped] = ACTIONS(219), - [sym__shortcode_open] = ACTIONS(221), - [sym__unclosed_span] = ACTIONS(161), + [sym_backslash_escape] = STATE(366), + [sym_commonmark_attribute] = STATE(366), + [sym_code_span] = STATE(366), + [sym_latex_span] = STATE(366), + [sym_insert] = STATE(366), + [sym_delete] = STATE(366), + [sym_highlight] = STATE(366), + [sym_edit_comment] = STATE(366), + [sym_superscript] = STATE(366), + [sym_subscript] = STATE(366), + [sym_strikeout] = STATE(366), + [sym_quoted_span] = STATE(366), + [sym_inline_note] = STATE(366), + [sym_citation] = STATE(366), + [sym_shortcode_escaped] = STATE(366), + [sym_shortcode] = STATE(366), + [sym_note_reference] = STATE(366), + [sym__link_text] = STATE(490), + [sym__link_text_non_empty] = STATE(491), + [sym_inline_link] = STATE(256), + [sym_image] = STATE(366), + [sym__image_inline_link] = STATE(1244), + [sym__image_description] = STATE(2280), + [sym__image_description_non_empty] = STATE(2280), + [sym_hard_line_break] = STATE(366), + [sym__whitespace] = STATE(1218), + [sym__word] = STATE(1218), + [sym__soft_line_break] = STATE(1245), + [sym__inline_base] = STATE(256), + [sym__text_base] = STATE(366), + [sym__inline_element] = STATE(256), + [sym__emphasis_star] = STATE(1270), + [sym__strong_emphasis_star] = STATE(256), + [sym__emphasis_underscore] = STATE(1270), + [sym__strong_emphasis_underscore] = STATE(256), + [aux_sym_insert_repeat1] = STATE(256), + [aux_sym__inline_base_repeat1] = STATE(366), + [sym__backslash_escape] = ACTIONS(2005), + [sym_entity_reference] = ACTIONS(2007), + [sym_numeric_character_reference] = ACTIONS(2007), + [anon_sym_LT] = ACTIONS(2009), + [anon_sym_GT] = ACTIONS(2011), + [anon_sym_BANG] = ACTIONS(2013), + [anon_sym_DQUOTE] = ACTIONS(2011), + [anon_sym_POUND] = ACTIONS(2011), + [anon_sym_DOLLAR] = ACTIONS(2011), + [anon_sym_PERCENT] = ACTIONS(2011), + [anon_sym_AMP] = ACTIONS(2009), + [anon_sym_SQUOTE] = ACTIONS(2011), + [anon_sym_STAR] = ACTIONS(2011), + [anon_sym_PLUS] = ACTIONS(2011), + [anon_sym_COMMA] = ACTIONS(2011), + [anon_sym_DASH] = ACTIONS(2009), + [anon_sym_DOT] = ACTIONS(2009), + [anon_sym_SLASH] = ACTIONS(2011), + [anon_sym_COLON] = ACTIONS(2011), + [anon_sym_SEMI] = ACTIONS(2011), + [anon_sym_EQ] = ACTIONS(2011), + [anon_sym_QMARK] = ACTIONS(2011), + [anon_sym_LBRACK] = ACTIONS(2015), + [anon_sym_BSLASH] = ACTIONS(2017), + [anon_sym_CARET] = ACTIONS(2009), + [anon_sym__] = ACTIONS(2011), + [anon_sym_BQUOTE] = ACTIONS(2011), + [anon_sym_LBRACE] = ACTIONS(2019), + [anon_sym_PIPE] = ACTIONS(2011), + [anon_sym_TILDE] = ACTIONS(2011), + [anon_sym_LPAREN] = ACTIONS(2011), + [anon_sym_RPAREN] = ACTIONS(2011), + [sym__newline_token] = ACTIONS(2021), + [aux_sym_insert_token1] = ACTIONS(2023), + [aux_sym_delete_token1] = ACTIONS(2025), + [aux_sym_highlight_token1] = ACTIONS(2027), + [aux_sym_edit_comment_token1] = ACTIONS(2029), + [anon_sym_CARET_LBRACK] = ACTIONS(2031), + [anon_sym_LBRACK_CARET] = ACTIONS(2033), + [sym_uri_autolink] = ACTIONS(2007), + [sym_email_autolink] = ACTIONS(2007), + [sym__whitespace_ge_2] = ACTIONS(2035), + [aux_sym__whitespace_token1] = ACTIONS(2037), + [sym__word_no_digit] = ACTIONS(2039), + [sym__digits] = ACTIONS(2039), + [anon_sym_DASH_DASH] = ACTIONS(2041), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2039), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2039), + [sym__code_span_start] = ACTIONS(2043), + [sym__emphasis_open_star] = ACTIONS(2045), + [sym__emphasis_open_underscore] = ACTIONS(2047), + [sym__strikeout_open] = ACTIONS(2049), + [sym__strikeout_close] = ACTIONS(2685), + [sym__latex_span_start] = ACTIONS(2053), + [sym__single_quote_open] = ACTIONS(2055), + [sym__double_quote_open] = ACTIONS(2057), + [sym__superscript_open] = ACTIONS(2059), + [sym__subscript_open] = ACTIONS(2061), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2063), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2065), + [sym__cite_author_in_text] = ACTIONS(2067), + [sym__cite_suppress_author] = ACTIONS(2069), + [sym__shortcode_open_escaped] = ACTIONS(2071), + [sym__shortcode_open] = ACTIONS(2073), + [sym__unclosed_span] = ACTIONS(2007), }, [STATE(245)] = { - [sym_backslash_escape] = STATE(271), - [sym_commonmark_attribute] = STATE(271), - [sym_code_span] = STATE(271), - [sym_latex_span] = STATE(271), - [sym_superscript] = STATE(271), - [sym_subscript] = STATE(271), - [sym_strikeout] = STATE(271), - [sym_quoted_span] = STATE(271), - [sym_inline_note] = STATE(271), - [sym_citation] = STATE(271), - [sym_shortcode_escaped] = STATE(271), - [sym_shortcode] = STATE(271), - [sym_note_reference] = STATE(271), - [sym_image] = STATE(271), - [sym__image_inline_link] = STATE(883), - [sym__image_description] = STATE(1998), - [sym__image_description_non_empty] = STATE(1998), - [sym_hard_line_break] = STATE(271), - [sym__whitespace] = STATE(881), - [sym__word] = STATE(881), - [sym__soft_line_break] = STATE(884), - [sym__inline_base] = STATE(1144), - [sym__text_base] = STATE(271), - [sym__inline_element_no_link] = STATE(1144), - [aux_sym__inline_no_link] = STATE(247), - [sym__emphasis_star_no_link] = STATE(1170), - [sym__strong_emphasis_star_no_link] = STATE(1144), - [sym__emphasis_underscore_no_link] = STATE(1170), - [sym__strong_emphasis_underscore_no_link] = STATE(1144), - [aux_sym__inline_base_repeat1] = STATE(271), - [sym__backslash_escape] = ACTIONS(159), - [sym_entity_reference] = ACTIONS(161), - [sym_numeric_character_reference] = ACTIONS(161), - [anon_sym_LT] = ACTIONS(163), - [anon_sym_GT] = ACTIONS(165), - [anon_sym_BANG] = ACTIONS(167), - [anon_sym_DQUOTE] = ACTIONS(165), - [anon_sym_POUND] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(165), - [anon_sym_PERCENT] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_SQUOTE] = ACTIONS(165), - [anon_sym_STAR] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(165), - [anon_sym_COMMA] = ACTIONS(165), - [anon_sym_DASH] = ACTIONS(163), - [anon_sym_DOT] = ACTIONS(163), - [anon_sym_SLASH] = ACTIONS(165), - [anon_sym_COLON] = ACTIONS(165), - [anon_sym_SEMI] = ACTIONS(165), - [anon_sym_EQ] = ACTIONS(165), - [anon_sym_QMARK] = ACTIONS(165), - [anon_sym_BSLASH] = ACTIONS(171), - [anon_sym_RBRACK] = ACTIONS(2856), - [anon_sym_CARET] = ACTIONS(163), - [anon_sym__] = ACTIONS(165), - [anon_sym_BQUOTE] = ACTIONS(165), - [anon_sym_LBRACE] = ACTIONS(175), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(165), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_RPAREN] = ACTIONS(165), - [sym__newline_token] = ACTIONS(177), - [anon_sym_CARET_LBRACK] = ACTIONS(179), - [anon_sym_LBRACK_CARET] = ACTIONS(181), - [sym_uri_autolink] = ACTIONS(161), - [sym_email_autolink] = ACTIONS(161), - [sym__whitespace_ge_2] = ACTIONS(183), - [aux_sym__whitespace_token1] = ACTIONS(185), - [sym__word_no_digit] = ACTIONS(187), - [sym__digits] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_DASH_DASH_DASH] = ACTIONS(187), - [anon_sym_DOT_DOT_DOT] = ACTIONS(187), - [sym__code_span_start] = ACTIONS(191), - [sym__emphasis_open_star] = ACTIONS(2630), - [sym__emphasis_open_underscore] = ACTIONS(2632), - [sym__strikeout_open] = ACTIONS(199), - [sym__latex_span_start] = ACTIONS(201), - [sym__single_quote_open] = ACTIONS(203), - [sym__double_quote_open] = ACTIONS(205), - [sym__superscript_open] = ACTIONS(207), - [sym__subscript_open] = ACTIONS(209), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(211), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(213), - [sym__cite_author_in_text] = ACTIONS(215), - [sym__cite_suppress_author] = ACTIONS(217), - [sym__shortcode_open_escaped] = ACTIONS(219), - [sym__shortcode_open] = ACTIONS(221), - [sym__unclosed_span] = ACTIONS(161), + [sym_backslash_escape] = STATE(375), + [sym_commonmark_attribute] = STATE(375), + [sym_code_span] = STATE(375), + [sym_latex_span] = STATE(375), + [sym_insert] = STATE(375), + [sym_delete] = STATE(375), + [sym_highlight] = STATE(375), + [sym_edit_comment] = STATE(375), + [sym_superscript] = STATE(375), + [sym_subscript] = STATE(375), + [sym_strikeout] = STATE(375), + [sym_quoted_span] = STATE(375), + [sym_inline_note] = STATE(375), + [sym_citation] = STATE(375), + [sym_shortcode_escaped] = STATE(375), + [sym_shortcode] = STATE(375), + [sym_note_reference] = STATE(375), + [sym__link_text] = STATE(525), + [sym__link_text_non_empty] = STATE(527), + [sym_inline_link] = STATE(257), + [sym_image] = STATE(375), + [sym__image_inline_link] = STATE(972), + [sym__image_description] = STATE(2286), + [sym__image_description_non_empty] = STATE(2286), + [sym_hard_line_break] = STATE(375), + [sym__whitespace] = STATE(949), + [sym__word] = STATE(949), + [sym__soft_line_break] = STATE(973), + [sym__inline_base] = STATE(257), + [sym__text_base] = STATE(375), + [sym__inline_element] = STATE(257), + [sym__emphasis_star] = STATE(1392), + [sym__strong_emphasis_star] = STATE(257), + [sym__emphasis_underscore] = STATE(1392), + [sym__strong_emphasis_underscore] = STATE(257), + [aux_sym_insert_repeat1] = STATE(257), + [aux_sym__inline_base_repeat1] = STATE(375), + [sym__backslash_escape] = ACTIONS(2179), + [sym_entity_reference] = ACTIONS(2181), + [sym_numeric_character_reference] = ACTIONS(2181), + [anon_sym_LT] = ACTIONS(2183), + [anon_sym_GT] = ACTIONS(2185), + [anon_sym_BANG] = ACTIONS(2187), + [anon_sym_DQUOTE] = ACTIONS(2185), + [anon_sym_POUND] = ACTIONS(2185), + [anon_sym_DOLLAR] = ACTIONS(2185), + [anon_sym_PERCENT] = ACTIONS(2185), + [anon_sym_AMP] = ACTIONS(2183), + [anon_sym_SQUOTE] = ACTIONS(2185), + [anon_sym_STAR] = ACTIONS(2185), + [anon_sym_PLUS] = ACTIONS(2185), + [anon_sym_COMMA] = ACTIONS(2185), + [anon_sym_DASH] = ACTIONS(2183), + [anon_sym_DOT] = ACTIONS(2183), + [anon_sym_SLASH] = ACTIONS(2185), + [anon_sym_COLON] = ACTIONS(2185), + [anon_sym_SEMI] = ACTIONS(2185), + [anon_sym_EQ] = ACTIONS(2185), + [anon_sym_QMARK] = ACTIONS(2185), + [anon_sym_LBRACK] = ACTIONS(2189), + [anon_sym_BSLASH] = ACTIONS(2191), + [anon_sym_CARET] = ACTIONS(2183), + [anon_sym__] = ACTIONS(2185), + [anon_sym_BQUOTE] = ACTIONS(2185), + [anon_sym_LBRACE] = ACTIONS(2193), + [anon_sym_PIPE] = ACTIONS(2185), + [anon_sym_TILDE] = ACTIONS(2185), + [anon_sym_LPAREN] = ACTIONS(2185), + [anon_sym_RPAREN] = ACTIONS(2185), + [sym__newline_token] = ACTIONS(2195), + [aux_sym_insert_token1] = ACTIONS(2197), + [aux_sym_delete_token1] = ACTIONS(2199), + [aux_sym_highlight_token1] = ACTIONS(2201), + [aux_sym_edit_comment_token1] = ACTIONS(2203), + [anon_sym_CARET_LBRACK] = ACTIONS(2205), + [anon_sym_LBRACK_CARET] = ACTIONS(2207), + [sym_uri_autolink] = ACTIONS(2181), + [sym_email_autolink] = ACTIONS(2181), + [sym__whitespace_ge_2] = ACTIONS(2209), + [aux_sym__whitespace_token1] = ACTIONS(2211), + [sym__word_no_digit] = ACTIONS(2213), + [sym__digits] = ACTIONS(2213), + [anon_sym_DASH_DASH] = ACTIONS(2215), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2213), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2213), + [sym__code_span_start] = ACTIONS(2217), + [sym__emphasis_open_star] = ACTIONS(2219), + [sym__emphasis_open_underscore] = ACTIONS(2221), + [sym__strikeout_open] = ACTIONS(2223), + [sym__latex_span_start] = ACTIONS(2225), + [sym__single_quote_open] = ACTIONS(2227), + [sym__single_quote_close] = ACTIONS(2687), + [sym__double_quote_open] = ACTIONS(2229), + [sym__superscript_open] = ACTIONS(2231), + [sym__subscript_open] = ACTIONS(2233), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2235), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2237), + [sym__cite_author_in_text] = ACTIONS(2239), + [sym__cite_suppress_author] = ACTIONS(2241), + [sym__shortcode_open_escaped] = ACTIONS(2243), + [sym__shortcode_open] = ACTIONS(2245), + [sym__unclosed_span] = ACTIONS(2181), }, [STATE(246)] = { - [sym_backslash_escape] = STATE(274), - [sym_commonmark_attribute] = STATE(274), - [sym_code_span] = STATE(274), - [sym_latex_span] = STATE(274), - [sym_superscript] = STATE(274), - [sym_subscript] = STATE(274), - [sym_strikeout] = STATE(274), - [sym_quoted_span] = STATE(274), - [sym_inline_note] = STATE(274), - [sym_citation] = STATE(274), - [sym_shortcode_escaped] = STATE(274), - [sym_shortcode] = STATE(274), - [sym_note_reference] = STATE(274), - [sym_image] = STATE(274), - [sym__image_inline_link] = STATE(894), - [sym__image_description] = STATE(2008), - [sym__image_description_non_empty] = STATE(2008), - [sym_hard_line_break] = STATE(274), - [sym__whitespace] = STATE(882), - [sym__word] = STATE(882), - [sym__soft_line_break] = STATE(898), - [sym__inline_base] = STATE(236), - [sym__text_base] = STATE(274), - [sym__inline_element_no_underscore_no_link] = STATE(236), - [aux_sym__inline_no_underscore_no_link] = STATE(236), - [sym__emphasis_star_no_link] = STATE(1169), - [sym__strong_emphasis_star_no_link] = STATE(236), - [sym__emphasis_underscore_no_link] = STATE(1166), - [sym__strong_emphasis_underscore_no_link] = STATE(236), - [aux_sym__inline_base_repeat1] = STATE(274), - [sym__backslash_escape] = ACTIONS(1123), - [sym_entity_reference] = ACTIONS(1125), - [sym_numeric_character_reference] = ACTIONS(1125), - [anon_sym_LT] = ACTIONS(1127), - [anon_sym_GT] = ACTIONS(1129), - [anon_sym_BANG] = ACTIONS(1131), - [anon_sym_DQUOTE] = ACTIONS(1129), - [anon_sym_POUND] = ACTIONS(1129), - [anon_sym_DOLLAR] = ACTIONS(1129), - [anon_sym_PERCENT] = ACTIONS(1129), - [anon_sym_AMP] = ACTIONS(1127), - [anon_sym_SQUOTE] = ACTIONS(1129), - [anon_sym_STAR] = ACTIONS(1129), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_COMMA] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1127), - [anon_sym_DOT] = ACTIONS(1127), - [anon_sym_SLASH] = ACTIONS(1129), - [anon_sym_COLON] = ACTIONS(1129), - [anon_sym_SEMI] = ACTIONS(1129), - [anon_sym_EQ] = ACTIONS(1129), - [anon_sym_QMARK] = ACTIONS(1129), - [anon_sym_BSLASH] = ACTIONS(1135), - [anon_sym_CARET] = ACTIONS(1127), - [anon_sym__] = ACTIONS(1129), - [anon_sym_BQUOTE] = ACTIONS(1129), - [anon_sym_LBRACE] = ACTIONS(1137), - [anon_sym_PIPE] = ACTIONS(1129), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1129), - [anon_sym_RPAREN] = ACTIONS(1129), - [sym__newline_token] = ACTIONS(1139), - [anon_sym_CARET_LBRACK] = ACTIONS(1141), - [anon_sym_LBRACK_CARET] = ACTIONS(1143), - [sym_uri_autolink] = ACTIONS(1125), - [sym_email_autolink] = ACTIONS(1125), - [sym__whitespace_ge_2] = ACTIONS(1145), - [aux_sym__whitespace_token1] = ACTIONS(1147), - [sym__word_no_digit] = ACTIONS(1149), - [sym__digits] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1151), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1149), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1149), - [sym__code_span_start] = ACTIONS(1153), - [sym__emphasis_open_star] = ACTIONS(2723), - [sym__emphasis_open_underscore] = ACTIONS(2725), - [sym__last_token_punctuation] = ACTIONS(2858), - [sym__strikeout_open] = ACTIONS(1161), - [sym__latex_span_start] = ACTIONS(1163), - [sym__single_quote_open] = ACTIONS(1165), - [sym__double_quote_open] = ACTIONS(1167), - [sym__superscript_open] = ACTIONS(1169), - [sym__subscript_open] = ACTIONS(1171), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1173), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1175), - [sym__cite_author_in_text] = ACTIONS(1177), - [sym__cite_suppress_author] = ACTIONS(1179), - [sym__shortcode_open_escaped] = ACTIONS(1181), - [sym__shortcode_open] = ACTIONS(1183), - [sym__unclosed_span] = ACTIONS(1125), + [sym_backslash_escape] = STATE(383), + [sym_commonmark_attribute] = STATE(383), + [sym_code_span] = STATE(383), + [sym_latex_span] = STATE(383), + [sym_insert] = STATE(383), + [sym_delete] = STATE(383), + [sym_highlight] = STATE(383), + [sym_edit_comment] = STATE(383), + [sym_superscript] = STATE(383), + [sym_subscript] = STATE(383), + [sym_strikeout] = STATE(383), + [sym_quoted_span] = STATE(383), + [sym_inline_note] = STATE(383), + [sym_citation] = STATE(383), + [sym_shortcode_escaped] = STATE(383), + [sym_shortcode] = STATE(383), + [sym_note_reference] = STATE(383), + [sym__link_text] = STATE(395), + [sym__link_text_non_empty] = STATE(396), + [sym_inline_link] = STATE(258), + [sym_image] = STATE(383), + [sym__image_inline_link] = STATE(1263), + [sym__image_description] = STATE(2300), + [sym__image_description_non_empty] = STATE(2300), + [sym_hard_line_break] = STATE(383), + [sym__whitespace] = STATE(1259), + [sym__word] = STATE(1259), + [sym__soft_line_break] = STATE(1264), + [sym__inline_base] = STATE(258), + [sym__text_base] = STATE(383), + [sym__inline_element] = STATE(258), + [sym__emphasis_star] = STATE(1249), + [sym__strong_emphasis_star] = STATE(258), + [sym__emphasis_underscore] = STATE(1249), + [sym__strong_emphasis_underscore] = STATE(258), + [aux_sym_insert_repeat1] = STATE(258), + [aux_sym__inline_base_repeat1] = STATE(383), + [sym__backslash_escape] = ACTIONS(637), + [sym_entity_reference] = ACTIONS(639), + [sym_numeric_character_reference] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_GT] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(645), + [anon_sym_DQUOTE] = ACTIONS(643), + [anon_sym_POUND] = ACTIONS(643), + [anon_sym_DOLLAR] = ACTIONS(643), + [anon_sym_PERCENT] = ACTIONS(643), + [anon_sym_AMP] = ACTIONS(641), + [anon_sym_SQUOTE] = ACTIONS(643), + [anon_sym_STAR] = ACTIONS(643), + [anon_sym_PLUS] = ACTIONS(643), + [anon_sym_COMMA] = ACTIONS(643), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_DOT] = ACTIONS(641), + [anon_sym_SLASH] = ACTIONS(643), + [anon_sym_COLON] = ACTIONS(643), + [anon_sym_SEMI] = ACTIONS(643), + [anon_sym_EQ] = ACTIONS(643), + [anon_sym_QMARK] = ACTIONS(643), + [anon_sym_LBRACK] = ACTIONS(647), + [anon_sym_BSLASH] = ACTIONS(649), + [anon_sym_CARET] = ACTIONS(641), + [anon_sym__] = ACTIONS(643), + [anon_sym_BQUOTE] = ACTIONS(643), + [anon_sym_LBRACE] = ACTIONS(651), + [anon_sym_PIPE] = ACTIONS(643), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_LPAREN] = ACTIONS(643), + [anon_sym_RPAREN] = ACTIONS(643), + [sym__newline_token] = ACTIONS(653), + [aux_sym_insert_token1] = ACTIONS(655), + [aux_sym_delete_token1] = ACTIONS(657), + [aux_sym_highlight_token1] = ACTIONS(659), + [aux_sym_edit_comment_token1] = ACTIONS(661), + [anon_sym_CARET_LBRACK] = ACTIONS(663), + [anon_sym_LBRACK_CARET] = ACTIONS(665), + [sym_uri_autolink] = ACTIONS(639), + [sym_email_autolink] = ACTIONS(639), + [sym__whitespace_ge_2] = ACTIONS(667), + [aux_sym__whitespace_token1] = ACTIONS(669), + [sym__word_no_digit] = ACTIONS(671), + [sym__digits] = ACTIONS(671), + [anon_sym_DASH_DASH] = ACTIONS(673), + [anon_sym_DASH_DASH_DASH] = ACTIONS(671), + [anon_sym_DOT_DOT_DOT] = ACTIONS(671), + [sym__code_span_start] = ACTIONS(675), + [sym__emphasis_open_star] = ACTIONS(677), + [sym__emphasis_open_underscore] = ACTIONS(679), + [sym__strikeout_open] = ACTIONS(681), + [sym__latex_span_start] = ACTIONS(683), + [sym__single_quote_open] = ACTIONS(685), + [sym__double_quote_open] = ACTIONS(687), + [sym__double_quote_close] = ACTIONS(2687), + [sym__superscript_open] = ACTIONS(691), + [sym__subscript_open] = ACTIONS(693), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(695), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(697), + [sym__cite_author_in_text] = ACTIONS(699), + [sym__cite_suppress_author] = ACTIONS(701), + [sym__shortcode_open_escaped] = ACTIONS(703), + [sym__shortcode_open] = ACTIONS(705), + [sym__unclosed_span] = ACTIONS(639), }, [STATE(247)] = { - [sym_backslash_escape] = STATE(271), - [sym_commonmark_attribute] = STATE(271), - [sym_code_span] = STATE(271), - [sym_latex_span] = STATE(271), - [sym_superscript] = STATE(271), - [sym_subscript] = STATE(271), - [sym_strikeout] = STATE(271), - [sym_quoted_span] = STATE(271), - [sym_inline_note] = STATE(271), - [sym_citation] = STATE(271), - [sym_shortcode_escaped] = STATE(271), - [sym_shortcode] = STATE(271), - [sym_note_reference] = STATE(271), - [sym_image] = STATE(271), - [sym__image_inline_link] = STATE(883), - [sym__image_description] = STATE(1998), - [sym__image_description_non_empty] = STATE(1998), - [sym_hard_line_break] = STATE(271), - [sym__whitespace] = STATE(881), - [sym__word] = STATE(881), - [sym__soft_line_break] = STATE(884), - [sym__inline_base] = STATE(1144), - [sym__text_base] = STATE(271), - [sym__inline_element_no_link] = STATE(1144), - [aux_sym__inline_no_link] = STATE(220), - [sym__emphasis_star_no_link] = STATE(1170), - [sym__strong_emphasis_star_no_link] = STATE(1144), - [sym__emphasis_underscore_no_link] = STATE(1170), - [sym__strong_emphasis_underscore_no_link] = STATE(1144), - [aux_sym__inline_base_repeat1] = STATE(271), - [sym__backslash_escape] = ACTIONS(159), - [sym_entity_reference] = ACTIONS(161), - [sym_numeric_character_reference] = ACTIONS(161), - [anon_sym_LT] = ACTIONS(163), - [anon_sym_GT] = ACTIONS(165), - [anon_sym_BANG] = ACTIONS(167), - [anon_sym_DQUOTE] = ACTIONS(165), - [anon_sym_POUND] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(165), - [anon_sym_PERCENT] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_SQUOTE] = ACTIONS(165), - [anon_sym_STAR] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(165), - [anon_sym_COMMA] = ACTIONS(165), - [anon_sym_DASH] = ACTIONS(163), - [anon_sym_DOT] = ACTIONS(163), - [anon_sym_SLASH] = ACTIONS(165), - [anon_sym_COLON] = ACTIONS(165), - [anon_sym_SEMI] = ACTIONS(165), - [anon_sym_EQ] = ACTIONS(165), - [anon_sym_QMARK] = ACTIONS(165), - [anon_sym_BSLASH] = ACTIONS(171), - [anon_sym_RBRACK] = ACTIONS(2860), - [anon_sym_CARET] = ACTIONS(163), - [anon_sym__] = ACTIONS(165), - [anon_sym_BQUOTE] = ACTIONS(165), - [anon_sym_LBRACE] = ACTIONS(175), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(165), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_RPAREN] = ACTIONS(165), - [sym__newline_token] = ACTIONS(177), - [anon_sym_CARET_LBRACK] = ACTIONS(179), - [anon_sym_LBRACK_CARET] = ACTIONS(181), - [sym_uri_autolink] = ACTIONS(161), - [sym_email_autolink] = ACTIONS(161), - [sym__whitespace_ge_2] = ACTIONS(183), - [aux_sym__whitespace_token1] = ACTIONS(185), - [sym__word_no_digit] = ACTIONS(187), - [sym__digits] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_DASH_DASH_DASH] = ACTIONS(187), - [anon_sym_DOT_DOT_DOT] = ACTIONS(187), - [sym__code_span_start] = ACTIONS(191), - [sym__emphasis_open_star] = ACTIONS(2630), - [sym__emphasis_open_underscore] = ACTIONS(2632), - [sym__strikeout_open] = ACTIONS(199), - [sym__latex_span_start] = ACTIONS(201), - [sym__single_quote_open] = ACTIONS(203), - [sym__double_quote_open] = ACTIONS(205), - [sym__superscript_open] = ACTIONS(207), - [sym__subscript_open] = ACTIONS(209), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(211), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(213), - [sym__cite_author_in_text] = ACTIONS(215), - [sym__cite_suppress_author] = ACTIONS(217), - [sym__shortcode_open_escaped] = ACTIONS(219), - [sym__shortcode_open] = ACTIONS(221), - [sym__unclosed_span] = ACTIONS(161), + [sym_backslash_escape] = STATE(365), + [sym_commonmark_attribute] = STATE(365), + [sym_code_span] = STATE(365), + [sym_latex_span] = STATE(365), + [sym_insert] = STATE(365), + [sym_delete] = STATE(365), + [sym_highlight] = STATE(365), + [sym_edit_comment] = STATE(365), + [sym_superscript] = STATE(365), + [sym_subscript] = STATE(365), + [sym_strikeout] = STATE(365), + [sym_quoted_span] = STATE(365), + [sym_inline_note] = STATE(365), + [sym_citation] = STATE(365), + [sym_shortcode_escaped] = STATE(365), + [sym_shortcode] = STATE(365), + [sym_note_reference] = STATE(365), + [sym__link_text] = STATE(416), + [sym__link_text_non_empty] = STATE(417), + [sym_inline_link] = STATE(259), + [sym_image] = STATE(365), + [sym__image_inline_link] = STATE(712), + [sym__image_description] = STATE(2314), + [sym__image_description_non_empty] = STATE(2314), + [sym_hard_line_break] = STATE(365), + [sym__whitespace] = STATE(709), + [sym__word] = STATE(709), + [sym__soft_line_break] = STATE(713), + [sym__inline_base] = STATE(259), + [sym__text_base] = STATE(365), + [sym__inline_element] = STATE(259), + [sym__emphasis_star] = STATE(979), + [sym__strong_emphasis_star] = STATE(259), + [sym__emphasis_underscore] = STATE(979), + [sym__strong_emphasis_underscore] = STATE(259), + [aux_sym_insert_repeat1] = STATE(259), + [aux_sym__inline_base_repeat1] = STATE(365), + [sym__backslash_escape] = ACTIONS(1341), + [sym_entity_reference] = ACTIONS(1343), + [sym_numeric_character_reference] = ACTIONS(1343), + [anon_sym_LT] = ACTIONS(1345), + [anon_sym_GT] = ACTIONS(1347), + [anon_sym_BANG] = ACTIONS(1349), + [anon_sym_DQUOTE] = ACTIONS(1347), + [anon_sym_POUND] = ACTIONS(1347), + [anon_sym_DOLLAR] = ACTIONS(1347), + [anon_sym_PERCENT] = ACTIONS(1347), + [anon_sym_AMP] = ACTIONS(1345), + [anon_sym_SQUOTE] = ACTIONS(1347), + [anon_sym_STAR] = ACTIONS(1347), + [anon_sym_PLUS] = ACTIONS(1347), + [anon_sym_COMMA] = ACTIONS(1347), + [anon_sym_DASH] = ACTIONS(1345), + [anon_sym_DOT] = ACTIONS(1345), + [anon_sym_SLASH] = ACTIONS(1347), + [anon_sym_COLON] = ACTIONS(1347), + [anon_sym_SEMI] = ACTIONS(1347), + [anon_sym_EQ] = ACTIONS(1347), + [anon_sym_QMARK] = ACTIONS(1347), + [anon_sym_LBRACK] = ACTIONS(1351), + [anon_sym_BSLASH] = ACTIONS(1353), + [anon_sym_CARET] = ACTIONS(1345), + [anon_sym__] = ACTIONS(1347), + [anon_sym_BQUOTE] = ACTIONS(1347), + [anon_sym_LBRACE] = ACTIONS(1355), + [anon_sym_PIPE] = ACTIONS(1347), + [anon_sym_TILDE] = ACTIONS(1347), + [anon_sym_LPAREN] = ACTIONS(1347), + [anon_sym_RPAREN] = ACTIONS(1347), + [sym__newline_token] = ACTIONS(1357), + [aux_sym_insert_token1] = ACTIONS(1359), + [aux_sym_delete_token1] = ACTIONS(1361), + [aux_sym_highlight_token1] = ACTIONS(1363), + [aux_sym_edit_comment_token1] = ACTIONS(1365), + [anon_sym_CARET_LBRACK] = ACTIONS(1367), + [anon_sym_LBRACK_CARET] = ACTIONS(1369), + [sym_uri_autolink] = ACTIONS(1343), + [sym_email_autolink] = ACTIONS(1343), + [sym__whitespace_ge_2] = ACTIONS(1371), + [aux_sym__whitespace_token1] = ACTIONS(1373), + [sym__word_no_digit] = ACTIONS(1375), + [sym__digits] = ACTIONS(1375), + [anon_sym_DASH_DASH] = ACTIONS(1377), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1375), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1375), + [sym__code_span_start] = ACTIONS(1379), + [sym__emphasis_open_star] = ACTIONS(1381), + [sym__emphasis_open_underscore] = ACTIONS(1383), + [sym__strikeout_open] = ACTIONS(1385), + [sym__latex_span_start] = ACTIONS(1387), + [sym__single_quote_open] = ACTIONS(1389), + [sym__double_quote_open] = ACTIONS(1391), + [sym__superscript_open] = ACTIONS(1393), + [sym__superscript_close] = ACTIONS(2689), + [sym__subscript_open] = ACTIONS(1397), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1399), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1401), + [sym__cite_author_in_text] = ACTIONS(1403), + [sym__cite_suppress_author] = ACTIONS(1405), + [sym__shortcode_open_escaped] = ACTIONS(1407), + [sym__shortcode_open] = ACTIONS(1409), + [sym__unclosed_span] = ACTIONS(1343), }, [STATE(248)] = { - [sym_backslash_escape] = STATE(271), - [sym_commonmark_attribute] = STATE(271), - [sym_code_span] = STATE(271), - [sym_latex_span] = STATE(271), - [sym_superscript] = STATE(271), - [sym_subscript] = STATE(271), - [sym_strikeout] = STATE(271), - [sym_quoted_span] = STATE(271), - [sym_inline_note] = STATE(271), - [sym_citation] = STATE(271), - [sym_shortcode_escaped] = STATE(271), - [sym_shortcode] = STATE(271), - [sym_note_reference] = STATE(271), - [sym_image] = STATE(271), - [sym__image_inline_link] = STATE(883), - [sym__image_description] = STATE(1998), - [sym__image_description_non_empty] = STATE(1998), - [sym_hard_line_break] = STATE(271), - [sym__whitespace] = STATE(881), - [sym__word] = STATE(881), - [sym__soft_line_break] = STATE(884), - [sym__inline_base] = STATE(1144), - [sym__text_base] = STATE(271), - [sym__inline_element_no_link] = STATE(1144), - [aux_sym__inline_no_link] = STATE(249), - [sym__emphasis_star_no_link] = STATE(1170), - [sym__strong_emphasis_star_no_link] = STATE(1144), - [sym__emphasis_underscore_no_link] = STATE(1170), - [sym__strong_emphasis_underscore_no_link] = STATE(1144), - [aux_sym__inline_base_repeat1] = STATE(271), - [sym__backslash_escape] = ACTIONS(159), - [sym_entity_reference] = ACTIONS(161), - [sym_numeric_character_reference] = ACTIONS(161), - [anon_sym_LT] = ACTIONS(163), - [anon_sym_GT] = ACTIONS(165), - [anon_sym_BANG] = ACTIONS(167), - [anon_sym_DQUOTE] = ACTIONS(165), - [anon_sym_POUND] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(165), - [anon_sym_PERCENT] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_SQUOTE] = ACTIONS(165), - [anon_sym_STAR] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(165), - [anon_sym_COMMA] = ACTIONS(165), - [anon_sym_DASH] = ACTIONS(163), - [anon_sym_DOT] = ACTIONS(163), - [anon_sym_SLASH] = ACTIONS(165), - [anon_sym_COLON] = ACTIONS(165), - [anon_sym_SEMI] = ACTIONS(165), - [anon_sym_EQ] = ACTIONS(165), - [anon_sym_QMARK] = ACTIONS(165), - [anon_sym_BSLASH] = ACTIONS(171), - [anon_sym_RBRACK] = ACTIONS(2862), - [anon_sym_CARET] = ACTIONS(163), - [anon_sym__] = ACTIONS(165), - [anon_sym_BQUOTE] = ACTIONS(165), - [anon_sym_LBRACE] = ACTIONS(175), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(165), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_RPAREN] = ACTIONS(165), - [sym__newline_token] = ACTIONS(177), - [anon_sym_CARET_LBRACK] = ACTIONS(179), - [anon_sym_LBRACK_CARET] = ACTIONS(181), - [sym_uri_autolink] = ACTIONS(161), - [sym_email_autolink] = ACTIONS(161), - [sym__whitespace_ge_2] = ACTIONS(183), - [aux_sym__whitespace_token1] = ACTIONS(185), - [sym__word_no_digit] = ACTIONS(187), - [sym__digits] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_DASH_DASH_DASH] = ACTIONS(187), - [anon_sym_DOT_DOT_DOT] = ACTIONS(187), - [sym__code_span_start] = ACTIONS(191), - [sym__emphasis_open_star] = ACTIONS(2630), - [sym__emphasis_open_underscore] = ACTIONS(2632), - [sym__strikeout_open] = ACTIONS(199), - [sym__latex_span_start] = ACTIONS(201), - [sym__single_quote_open] = ACTIONS(203), - [sym__double_quote_open] = ACTIONS(205), - [sym__superscript_open] = ACTIONS(207), - [sym__subscript_open] = ACTIONS(209), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(211), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(213), - [sym__cite_author_in_text] = ACTIONS(215), - [sym__cite_suppress_author] = ACTIONS(217), - [sym__shortcode_open_escaped] = ACTIONS(219), - [sym__shortcode_open] = ACTIONS(221), - [sym__unclosed_span] = ACTIONS(161), + [sym_backslash_escape] = STATE(367), + [sym_commonmark_attribute] = STATE(367), + [sym_code_span] = STATE(367), + [sym_latex_span] = STATE(367), + [sym_insert] = STATE(367), + [sym_delete] = STATE(367), + [sym_highlight] = STATE(367), + [sym_edit_comment] = STATE(367), + [sym_superscript] = STATE(367), + [sym_subscript] = STATE(367), + [sym_strikeout] = STATE(367), + [sym_quoted_span] = STATE(367), + [sym_inline_note] = STATE(367), + [sym_citation] = STATE(367), + [sym_shortcode_escaped] = STATE(367), + [sym_shortcode] = STATE(367), + [sym_note_reference] = STATE(367), + [sym__link_text] = STATE(435), + [sym__link_text_non_empty] = STATE(436), + [sym_inline_link] = STATE(260), + [sym_image] = STATE(367), + [sym__image_inline_link] = STATE(819), + [sym__image_description] = STATE(2328), + [sym__image_description_non_empty] = STATE(2328), + [sym_hard_line_break] = STATE(367), + [sym__whitespace] = STATE(816), + [sym__word] = STATE(816), + [sym__soft_line_break] = STATE(820), + [sym__inline_base] = STATE(260), + [sym__text_base] = STATE(367), + [sym__inline_element] = STATE(260), + [sym__emphasis_star] = STATE(1271), + [sym__strong_emphasis_star] = STATE(260), + [sym__emphasis_underscore] = STATE(1271), + [sym__strong_emphasis_underscore] = STATE(260), + [aux_sym_insert_repeat1] = STATE(260), + [aux_sym__inline_base_repeat1] = STATE(367), + [sym__backslash_escape] = ACTIONS(1413), + [sym_entity_reference] = ACTIONS(1415), + [sym_numeric_character_reference] = ACTIONS(1415), + [anon_sym_LT] = ACTIONS(1417), + [anon_sym_GT] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1419), + [anon_sym_POUND] = ACTIONS(1419), + [anon_sym_DOLLAR] = ACTIONS(1419), + [anon_sym_PERCENT] = ACTIONS(1419), + [anon_sym_AMP] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [anon_sym_STAR] = ACTIONS(1419), + [anon_sym_PLUS] = ACTIONS(1419), + [anon_sym_COMMA] = ACTIONS(1419), + [anon_sym_DASH] = ACTIONS(1417), + [anon_sym_DOT] = ACTIONS(1417), + [anon_sym_SLASH] = ACTIONS(1419), + [anon_sym_COLON] = ACTIONS(1419), + [anon_sym_SEMI] = ACTIONS(1419), + [anon_sym_EQ] = ACTIONS(1419), + [anon_sym_QMARK] = ACTIONS(1419), + [anon_sym_LBRACK] = ACTIONS(1423), + [anon_sym_BSLASH] = ACTIONS(1425), + [anon_sym_CARET] = ACTIONS(1417), + [anon_sym__] = ACTIONS(1419), + [anon_sym_BQUOTE] = ACTIONS(1419), + [anon_sym_LBRACE] = ACTIONS(1427), + [anon_sym_PIPE] = ACTIONS(1419), + [anon_sym_TILDE] = ACTIONS(1419), + [anon_sym_LPAREN] = ACTIONS(1419), + [anon_sym_RPAREN] = ACTIONS(1419), + [sym__newline_token] = ACTIONS(1429), + [aux_sym_insert_token1] = ACTIONS(1431), + [aux_sym_delete_token1] = ACTIONS(1433), + [aux_sym_highlight_token1] = ACTIONS(1435), + [aux_sym_edit_comment_token1] = ACTIONS(1437), + [anon_sym_CARET_LBRACK] = ACTIONS(1439), + [anon_sym_LBRACK_CARET] = ACTIONS(1441), + [sym_uri_autolink] = ACTIONS(1415), + [sym_email_autolink] = ACTIONS(1415), + [sym__whitespace_ge_2] = ACTIONS(1443), + [aux_sym__whitespace_token1] = ACTIONS(1445), + [sym__word_no_digit] = ACTIONS(1447), + [sym__digits] = ACTIONS(1447), + [anon_sym_DASH_DASH] = ACTIONS(1449), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1447), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1447), + [sym__code_span_start] = ACTIONS(1451), + [sym__emphasis_open_star] = ACTIONS(1453), + [sym__emphasis_open_underscore] = ACTIONS(1455), + [sym__strikeout_open] = ACTIONS(1457), + [sym__latex_span_start] = ACTIONS(1459), + [sym__single_quote_open] = ACTIONS(1461), + [sym__double_quote_open] = ACTIONS(1463), + [sym__superscript_open] = ACTIONS(1465), + [sym__subscript_open] = ACTIONS(1467), + [sym__subscript_close] = ACTIONS(2691), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1471), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1473), + [sym__cite_author_in_text] = ACTIONS(1475), + [sym__cite_suppress_author] = ACTIONS(1477), + [sym__shortcode_open_escaped] = ACTIONS(1479), + [sym__shortcode_open] = ACTIONS(1481), + [sym__unclosed_span] = ACTIONS(1415), }, [STATE(249)] = { - [sym_backslash_escape] = STATE(271), - [sym_commonmark_attribute] = STATE(271), - [sym_code_span] = STATE(271), - [sym_latex_span] = STATE(271), - [sym_superscript] = STATE(271), - [sym_subscript] = STATE(271), - [sym_strikeout] = STATE(271), - [sym_quoted_span] = STATE(271), - [sym_inline_note] = STATE(271), - [sym_citation] = STATE(271), - [sym_shortcode_escaped] = STATE(271), - [sym_shortcode] = STATE(271), - [sym_note_reference] = STATE(271), - [sym_image] = STATE(271), - [sym__image_inline_link] = STATE(883), - [sym__image_description] = STATE(1998), - [sym__image_description_non_empty] = STATE(1998), - [sym_hard_line_break] = STATE(271), - [sym__whitespace] = STATE(881), - [sym__word] = STATE(881), - [sym__soft_line_break] = STATE(884), - [sym__inline_base] = STATE(1144), - [sym__text_base] = STATE(271), - [sym__inline_element_no_link] = STATE(1144), - [aux_sym__inline_no_link] = STATE(220), - [sym__emphasis_star_no_link] = STATE(1170), - [sym__strong_emphasis_star_no_link] = STATE(1144), - [sym__emphasis_underscore_no_link] = STATE(1170), - [sym__strong_emphasis_underscore_no_link] = STATE(1144), - [aux_sym__inline_base_repeat1] = STATE(271), - [sym__backslash_escape] = ACTIONS(159), - [sym_entity_reference] = ACTIONS(161), - [sym_numeric_character_reference] = ACTIONS(161), - [anon_sym_LT] = ACTIONS(163), - [anon_sym_GT] = ACTIONS(165), - [anon_sym_BANG] = ACTIONS(167), - [anon_sym_DQUOTE] = ACTIONS(165), - [anon_sym_POUND] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(165), - [anon_sym_PERCENT] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_SQUOTE] = ACTIONS(165), - [anon_sym_STAR] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(165), - [anon_sym_COMMA] = ACTIONS(165), - [anon_sym_DASH] = ACTIONS(163), - [anon_sym_DOT] = ACTIONS(163), - [anon_sym_SLASH] = ACTIONS(165), - [anon_sym_COLON] = ACTIONS(165), - [anon_sym_SEMI] = ACTIONS(165), - [anon_sym_EQ] = ACTIONS(165), - [anon_sym_QMARK] = ACTIONS(165), - [anon_sym_BSLASH] = ACTIONS(171), - [anon_sym_RBRACK] = ACTIONS(2864), - [anon_sym_CARET] = ACTIONS(163), - [anon_sym__] = ACTIONS(165), - [anon_sym_BQUOTE] = ACTIONS(165), - [anon_sym_LBRACE] = ACTIONS(175), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(165), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_RPAREN] = ACTIONS(165), - [sym__newline_token] = ACTIONS(177), - [anon_sym_CARET_LBRACK] = ACTIONS(179), - [anon_sym_LBRACK_CARET] = ACTIONS(181), - [sym_uri_autolink] = ACTIONS(161), - [sym_email_autolink] = ACTIONS(161), - [sym__whitespace_ge_2] = ACTIONS(183), - [aux_sym__whitespace_token1] = ACTIONS(185), - [sym__word_no_digit] = ACTIONS(187), - [sym__digits] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_DASH_DASH_DASH] = ACTIONS(187), - [anon_sym_DOT_DOT_DOT] = ACTIONS(187), - [sym__code_span_start] = ACTIONS(191), - [sym__emphasis_open_star] = ACTIONS(2630), - [sym__emphasis_open_underscore] = ACTIONS(2632), - [sym__strikeout_open] = ACTIONS(199), - [sym__latex_span_start] = ACTIONS(201), - [sym__single_quote_open] = ACTIONS(203), - [sym__double_quote_open] = ACTIONS(205), - [sym__superscript_open] = ACTIONS(207), - [sym__subscript_open] = ACTIONS(209), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(211), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(213), - [sym__cite_author_in_text] = ACTIONS(215), - [sym__cite_suppress_author] = ACTIONS(217), - [sym__shortcode_open_escaped] = ACTIONS(219), - [sym__shortcode_open] = ACTIONS(221), - [sym__unclosed_span] = ACTIONS(161), + [sym_backslash_escape] = STATE(372), + [sym_commonmark_attribute] = STATE(372), + [sym_code_span] = STATE(372), + [sym_latex_span] = STATE(372), + [sym_insert] = STATE(372), + [sym_delete] = STATE(372), + [sym_highlight] = STATE(372), + [sym_edit_comment] = STATE(372), + [sym_superscript] = STATE(372), + [sym_subscript] = STATE(372), + [sym_strikeout] = STATE(372), + [sym_quoted_span] = STATE(372), + [sym_inline_note] = STATE(372), + [sym_citation] = STATE(372), + [sym_shortcode_escaped] = STATE(372), + [sym_shortcode] = STATE(372), + [sym_note_reference] = STATE(372), + [sym__link_text] = STATE(454), + [sym__link_text_non_empty] = STATE(455), + [sym_inline_link] = STATE(261), + [sym_image] = STATE(372), + [sym__image_inline_link] = STATE(1025), + [sym__image_description] = STATE(2356), + [sym__image_description_non_empty] = STATE(2356), + [sym_hard_line_break] = STATE(372), + [sym__whitespace] = STATE(1022), + [sym__word] = STATE(1022), + [sym__soft_line_break] = STATE(1026), + [sym__inline_base] = STATE(261), + [sym__text_base] = STATE(372), + [sym__inline_element] = STATE(261), + [sym__emphasis_star] = STATE(714), + [sym__strong_emphasis_star] = STATE(261), + [sym__emphasis_underscore] = STATE(714), + [sym__strong_emphasis_underscore] = STATE(261), + [aux_sym_insert_repeat1] = STATE(261), + [aux_sym__inline_base_repeat1] = STATE(372), + [sym__backslash_escape] = ACTIONS(707), + [sym_entity_reference] = ACTIONS(709), + [sym_numeric_character_reference] = ACTIONS(709), + [anon_sym_LT] = ACTIONS(711), + [anon_sym_GT] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(715), + [anon_sym_DQUOTE] = ACTIONS(713), + [anon_sym_POUND] = ACTIONS(713), + [anon_sym_DOLLAR] = ACTIONS(713), + [anon_sym_PERCENT] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(711), + [anon_sym_SQUOTE] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_COMMA] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_DOT] = ACTIONS(711), + [anon_sym_SLASH] = ACTIONS(713), + [anon_sym_COLON] = ACTIONS(713), + [anon_sym_SEMI] = ACTIONS(713), + [anon_sym_EQ] = ACTIONS(713), + [anon_sym_QMARK] = ACTIONS(713), + [anon_sym_LBRACK] = ACTIONS(717), + [anon_sym_BSLASH] = ACTIONS(719), + [anon_sym_CARET] = ACTIONS(711), + [anon_sym__] = ACTIONS(713), + [anon_sym_BQUOTE] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(721), + [anon_sym_PIPE] = ACTIONS(713), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_LPAREN] = ACTIONS(713), + [anon_sym_RPAREN] = ACTIONS(713), + [sym__newline_token] = ACTIONS(723), + [aux_sym_insert_token1] = ACTIONS(725), + [aux_sym_insert_token2] = ACTIONS(2693), + [aux_sym_delete_token1] = ACTIONS(729), + [aux_sym_highlight_token1] = ACTIONS(731), + [aux_sym_edit_comment_token1] = ACTIONS(733), + [anon_sym_CARET_LBRACK] = ACTIONS(735), + [anon_sym_LBRACK_CARET] = ACTIONS(737), + [sym_uri_autolink] = ACTIONS(709), + [sym_email_autolink] = ACTIONS(709), + [sym__whitespace_ge_2] = ACTIONS(739), + [aux_sym__whitespace_token1] = ACTIONS(741), + [sym__word_no_digit] = ACTIONS(743), + [sym__digits] = ACTIONS(743), + [anon_sym_DASH_DASH] = ACTIONS(745), + [anon_sym_DASH_DASH_DASH] = ACTIONS(743), + [anon_sym_DOT_DOT_DOT] = ACTIONS(743), + [sym__code_span_start] = ACTIONS(747), + [sym__emphasis_open_star] = ACTIONS(749), + [sym__emphasis_open_underscore] = ACTIONS(751), + [sym__strikeout_open] = ACTIONS(753), + [sym__latex_span_start] = ACTIONS(755), + [sym__single_quote_open] = ACTIONS(757), + [sym__double_quote_open] = ACTIONS(759), + [sym__superscript_open] = ACTIONS(761), + [sym__subscript_open] = ACTIONS(763), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(765), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(767), + [sym__cite_author_in_text] = ACTIONS(769), + [sym__cite_suppress_author] = ACTIONS(771), + [sym__shortcode_open_escaped] = ACTIONS(773), + [sym__shortcode_open] = ACTIONS(775), + [sym__unclosed_span] = ACTIONS(709), }, [STATE(250)] = { - [sym_backslash_escape] = STATE(271), - [sym_commonmark_attribute] = STATE(271), - [sym_code_span] = STATE(271), - [sym_latex_span] = STATE(271), - [sym_superscript] = STATE(271), - [sym_subscript] = STATE(271), - [sym_strikeout] = STATE(271), - [sym_quoted_span] = STATE(271), - [sym_inline_note] = STATE(271), - [sym_citation] = STATE(271), - [sym_shortcode_escaped] = STATE(271), - [sym_shortcode] = STATE(271), - [sym_note_reference] = STATE(271), - [sym_image] = STATE(271), - [sym__image_inline_link] = STATE(883), - [sym__image_description] = STATE(1998), - [sym__image_description_non_empty] = STATE(1998), - [sym_hard_line_break] = STATE(271), - [sym__whitespace] = STATE(881), - [sym__word] = STATE(881), - [sym__soft_line_break] = STATE(884), - [sym__inline_base] = STATE(1144), - [sym__text_base] = STATE(271), - [sym__inline_element_no_link] = STATE(1144), - [aux_sym__inline_no_link] = STATE(252), - [sym__emphasis_star_no_link] = STATE(1170), - [sym__strong_emphasis_star_no_link] = STATE(1144), - [sym__emphasis_underscore_no_link] = STATE(1170), - [sym__strong_emphasis_underscore_no_link] = STATE(1144), - [aux_sym__inline_base_repeat1] = STATE(271), - [sym__backslash_escape] = ACTIONS(159), - [sym_entity_reference] = ACTIONS(161), - [sym_numeric_character_reference] = ACTIONS(161), - [anon_sym_LT] = ACTIONS(163), - [anon_sym_GT] = ACTIONS(165), - [anon_sym_BANG] = ACTIONS(167), - [anon_sym_DQUOTE] = ACTIONS(165), - [anon_sym_POUND] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(165), - [anon_sym_PERCENT] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_SQUOTE] = ACTIONS(165), - [anon_sym_STAR] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(165), - [anon_sym_COMMA] = ACTIONS(165), - [anon_sym_DASH] = ACTIONS(163), - [anon_sym_DOT] = ACTIONS(163), - [anon_sym_SLASH] = ACTIONS(165), - [anon_sym_COLON] = ACTIONS(165), - [anon_sym_SEMI] = ACTIONS(165), - [anon_sym_EQ] = ACTIONS(165), - [anon_sym_QMARK] = ACTIONS(165), - [anon_sym_BSLASH] = ACTIONS(171), - [anon_sym_RBRACK] = ACTIONS(2866), - [anon_sym_CARET] = ACTIONS(163), - [anon_sym__] = ACTIONS(165), - [anon_sym_BQUOTE] = ACTIONS(165), - [anon_sym_LBRACE] = ACTIONS(175), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(165), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_RPAREN] = ACTIONS(165), - [sym__newline_token] = ACTIONS(177), - [anon_sym_CARET_LBRACK] = ACTIONS(179), - [anon_sym_LBRACK_CARET] = ACTIONS(181), - [sym_uri_autolink] = ACTIONS(161), - [sym_email_autolink] = ACTIONS(161), - [sym__whitespace_ge_2] = ACTIONS(183), - [aux_sym__whitespace_token1] = ACTIONS(185), - [sym__word_no_digit] = ACTIONS(187), - [sym__digits] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_DASH_DASH_DASH] = ACTIONS(187), - [anon_sym_DOT_DOT_DOT] = ACTIONS(187), - [sym__code_span_start] = ACTIONS(191), - [sym__emphasis_open_star] = ACTIONS(2630), - [sym__emphasis_open_underscore] = ACTIONS(2632), - [sym__strikeout_open] = ACTIONS(199), - [sym__latex_span_start] = ACTIONS(201), - [sym__single_quote_open] = ACTIONS(203), - [sym__double_quote_open] = ACTIONS(205), - [sym__superscript_open] = ACTIONS(207), - [sym__subscript_open] = ACTIONS(209), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(211), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(213), - [sym__cite_author_in_text] = ACTIONS(215), - [sym__cite_suppress_author] = ACTIONS(217), - [sym__shortcode_open_escaped] = ACTIONS(219), - [sym__shortcode_open] = ACTIONS(221), - [sym__unclosed_span] = ACTIONS(161), + [sym_backslash_escape] = STATE(372), + [sym_commonmark_attribute] = STATE(372), + [sym_code_span] = STATE(372), + [sym_latex_span] = STATE(372), + [sym_insert] = STATE(372), + [sym_delete] = STATE(372), + [sym_highlight] = STATE(372), + [sym_edit_comment] = STATE(372), + [sym_superscript] = STATE(372), + [sym_subscript] = STATE(372), + [sym_strikeout] = STATE(372), + [sym_quoted_span] = STATE(372), + [sym_inline_note] = STATE(372), + [sym_citation] = STATE(372), + [sym_shortcode_escaped] = STATE(372), + [sym_shortcode] = STATE(372), + [sym_note_reference] = STATE(372), + [sym__link_text] = STATE(454), + [sym__link_text_non_empty] = STATE(455), + [sym_inline_link] = STATE(262), + [sym_image] = STATE(372), + [sym__image_inline_link] = STATE(1025), + [sym__image_description] = STATE(2356), + [sym__image_description_non_empty] = STATE(2356), + [sym_hard_line_break] = STATE(372), + [sym__whitespace] = STATE(1022), + [sym__word] = STATE(1022), + [sym__soft_line_break] = STATE(1026), + [sym__inline_base] = STATE(262), + [sym__text_base] = STATE(372), + [sym__inline_element] = STATE(262), + [sym__emphasis_star] = STATE(714), + [sym__strong_emphasis_star] = STATE(262), + [sym__emphasis_underscore] = STATE(714), + [sym__strong_emphasis_underscore] = STATE(262), + [aux_sym_insert_repeat1] = STATE(262), + [aux_sym__inline_base_repeat1] = STATE(372), + [sym__backslash_escape] = ACTIONS(707), + [sym_entity_reference] = ACTIONS(709), + [sym_numeric_character_reference] = ACTIONS(709), + [anon_sym_LT] = ACTIONS(711), + [anon_sym_GT] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(715), + [anon_sym_DQUOTE] = ACTIONS(713), + [anon_sym_POUND] = ACTIONS(713), + [anon_sym_DOLLAR] = ACTIONS(713), + [anon_sym_PERCENT] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(711), + [anon_sym_SQUOTE] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_COMMA] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_DOT] = ACTIONS(711), + [anon_sym_SLASH] = ACTIONS(713), + [anon_sym_COLON] = ACTIONS(713), + [anon_sym_SEMI] = ACTIONS(713), + [anon_sym_EQ] = ACTIONS(713), + [anon_sym_QMARK] = ACTIONS(713), + [anon_sym_LBRACK] = ACTIONS(717), + [anon_sym_BSLASH] = ACTIONS(719), + [anon_sym_CARET] = ACTIONS(711), + [anon_sym__] = ACTIONS(713), + [anon_sym_BQUOTE] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(721), + [anon_sym_PIPE] = ACTIONS(713), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_LPAREN] = ACTIONS(713), + [anon_sym_RPAREN] = ACTIONS(713), + [sym__newline_token] = ACTIONS(723), + [aux_sym_insert_token1] = ACTIONS(725), + [aux_sym_insert_token2] = ACTIONS(2695), + [aux_sym_delete_token1] = ACTIONS(729), + [aux_sym_highlight_token1] = ACTIONS(731), + [aux_sym_edit_comment_token1] = ACTIONS(733), + [anon_sym_CARET_LBRACK] = ACTIONS(735), + [anon_sym_LBRACK_CARET] = ACTIONS(737), + [sym_uri_autolink] = ACTIONS(709), + [sym_email_autolink] = ACTIONS(709), + [sym__whitespace_ge_2] = ACTIONS(739), + [aux_sym__whitespace_token1] = ACTIONS(741), + [sym__word_no_digit] = ACTIONS(743), + [sym__digits] = ACTIONS(743), + [anon_sym_DASH_DASH] = ACTIONS(745), + [anon_sym_DASH_DASH_DASH] = ACTIONS(743), + [anon_sym_DOT_DOT_DOT] = ACTIONS(743), + [sym__code_span_start] = ACTIONS(747), + [sym__emphasis_open_star] = ACTIONS(749), + [sym__emphasis_open_underscore] = ACTIONS(751), + [sym__strikeout_open] = ACTIONS(753), + [sym__latex_span_start] = ACTIONS(755), + [sym__single_quote_open] = ACTIONS(757), + [sym__double_quote_open] = ACTIONS(759), + [sym__superscript_open] = ACTIONS(761), + [sym__subscript_open] = ACTIONS(763), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(765), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(767), + [sym__cite_author_in_text] = ACTIONS(769), + [sym__cite_suppress_author] = ACTIONS(771), + [sym__shortcode_open_escaped] = ACTIONS(773), + [sym__shortcode_open] = ACTIONS(775), + [sym__unclosed_span] = ACTIONS(709), }, [STATE(251)] = { - [sym_backslash_escape] = STATE(274), - [sym_commonmark_attribute] = STATE(274), - [sym_code_span] = STATE(274), - [sym_latex_span] = STATE(274), - [sym_superscript] = STATE(274), - [sym_subscript] = STATE(274), - [sym_strikeout] = STATE(274), - [sym_quoted_span] = STATE(274), - [sym_inline_note] = STATE(274), - [sym_citation] = STATE(274), - [sym_shortcode_escaped] = STATE(274), - [sym_shortcode] = STATE(274), - [sym_note_reference] = STATE(274), - [sym_image] = STATE(274), - [sym__image_inline_link] = STATE(894), - [sym__image_description] = STATE(2008), - [sym__image_description_non_empty] = STATE(2008), - [sym_hard_line_break] = STATE(274), - [sym__whitespace] = STATE(882), - [sym__word] = STATE(882), - [sym__soft_line_break] = STATE(898), - [sym__inline_base] = STATE(225), - [sym__text_base] = STATE(274), - [sym__inline_element_no_underscore_no_link] = STATE(225), - [aux_sym__inline_no_underscore_no_link] = STATE(225), - [sym__emphasis_star_no_link] = STATE(1169), - [sym__strong_emphasis_star_no_link] = STATE(225), - [sym__emphasis_underscore_no_link] = STATE(1169), - [sym__strong_emphasis_underscore_no_link] = STATE(225), - [aux_sym__inline_base_repeat1] = STATE(274), - [sym__backslash_escape] = ACTIONS(1123), - [sym_entity_reference] = ACTIONS(1125), - [sym_numeric_character_reference] = ACTIONS(1125), - [anon_sym_LT] = ACTIONS(1127), - [anon_sym_GT] = ACTIONS(1129), - [anon_sym_BANG] = ACTIONS(1131), - [anon_sym_DQUOTE] = ACTIONS(1129), - [anon_sym_POUND] = ACTIONS(1129), - [anon_sym_DOLLAR] = ACTIONS(1129), - [anon_sym_PERCENT] = ACTIONS(1129), - [anon_sym_AMP] = ACTIONS(1127), - [anon_sym_SQUOTE] = ACTIONS(1129), - [anon_sym_STAR] = ACTIONS(1129), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_COMMA] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1127), - [anon_sym_DOT] = ACTIONS(1127), - [anon_sym_SLASH] = ACTIONS(1129), - [anon_sym_COLON] = ACTIONS(1129), - [anon_sym_SEMI] = ACTIONS(1129), - [anon_sym_EQ] = ACTIONS(1129), - [anon_sym_QMARK] = ACTIONS(1129), - [anon_sym_BSLASH] = ACTIONS(1135), - [anon_sym_CARET] = ACTIONS(1127), - [anon_sym__] = ACTIONS(1129), - [anon_sym_BQUOTE] = ACTIONS(1129), - [anon_sym_LBRACE] = ACTIONS(1137), - [anon_sym_PIPE] = ACTIONS(1129), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1129), - [anon_sym_RPAREN] = ACTIONS(1129), - [sym__newline_token] = ACTIONS(1139), - [anon_sym_CARET_LBRACK] = ACTIONS(1141), - [anon_sym_LBRACK_CARET] = ACTIONS(1143), - [sym_uri_autolink] = ACTIONS(1125), - [sym_email_autolink] = ACTIONS(1125), - [sym__whitespace_ge_2] = ACTIONS(1145), - [aux_sym__whitespace_token1] = ACTIONS(1147), - [sym__word_no_digit] = ACTIONS(1149), - [sym__digits] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1151), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1149), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1149), - [sym__code_span_start] = ACTIONS(1153), - [sym__emphasis_open_star] = ACTIONS(2723), - [sym__emphasis_open_underscore] = ACTIONS(2725), - [sym__emphasis_close_underscore] = ACTIONS(2868), - [sym__strikeout_open] = ACTIONS(1161), - [sym__latex_span_start] = ACTIONS(1163), - [sym__single_quote_open] = ACTIONS(1165), - [sym__double_quote_open] = ACTIONS(1167), - [sym__superscript_open] = ACTIONS(1169), - [sym__subscript_open] = ACTIONS(1171), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1173), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1175), - [sym__cite_author_in_text] = ACTIONS(1177), - [sym__cite_suppress_author] = ACTIONS(1179), - [sym__shortcode_open_escaped] = ACTIONS(1181), - [sym__shortcode_open] = ACTIONS(1183), - [sym__unclosed_span] = ACTIONS(1125), + [sym_backslash_escape] = STATE(372), + [sym_commonmark_attribute] = STATE(372), + [sym_code_span] = STATE(372), + [sym_latex_span] = STATE(372), + [sym_insert] = STATE(372), + [sym_delete] = STATE(372), + [sym_highlight] = STATE(372), + [sym_edit_comment] = STATE(372), + [sym_superscript] = STATE(372), + [sym_subscript] = STATE(372), + [sym_strikeout] = STATE(372), + [sym_quoted_span] = STATE(372), + [sym_inline_note] = STATE(372), + [sym_citation] = STATE(372), + [sym_shortcode_escaped] = STATE(372), + [sym_shortcode] = STATE(372), + [sym_note_reference] = STATE(372), + [sym__link_text] = STATE(454), + [sym__link_text_non_empty] = STATE(455), + [sym_inline_link] = STATE(263), + [sym_image] = STATE(372), + [sym__image_inline_link] = STATE(1025), + [sym__image_description] = STATE(2356), + [sym__image_description_non_empty] = STATE(2356), + [sym_hard_line_break] = STATE(372), + [sym__whitespace] = STATE(1022), + [sym__word] = STATE(1022), + [sym__soft_line_break] = STATE(1026), + [sym__inline_base] = STATE(263), + [sym__text_base] = STATE(372), + [sym__inline_element] = STATE(263), + [sym__emphasis_star] = STATE(714), + [sym__strong_emphasis_star] = STATE(263), + [sym__emphasis_underscore] = STATE(714), + [sym__strong_emphasis_underscore] = STATE(263), + [aux_sym_insert_repeat1] = STATE(263), + [aux_sym__inline_base_repeat1] = STATE(372), + [sym__backslash_escape] = ACTIONS(707), + [sym_entity_reference] = ACTIONS(709), + [sym_numeric_character_reference] = ACTIONS(709), + [anon_sym_LT] = ACTIONS(711), + [anon_sym_GT] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(715), + [anon_sym_DQUOTE] = ACTIONS(713), + [anon_sym_POUND] = ACTIONS(713), + [anon_sym_DOLLAR] = ACTIONS(713), + [anon_sym_PERCENT] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(711), + [anon_sym_SQUOTE] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_COMMA] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_DOT] = ACTIONS(711), + [anon_sym_SLASH] = ACTIONS(713), + [anon_sym_COLON] = ACTIONS(713), + [anon_sym_SEMI] = ACTIONS(713), + [anon_sym_EQ] = ACTIONS(713), + [anon_sym_QMARK] = ACTIONS(713), + [anon_sym_LBRACK] = ACTIONS(717), + [anon_sym_BSLASH] = ACTIONS(719), + [anon_sym_CARET] = ACTIONS(711), + [anon_sym__] = ACTIONS(713), + [anon_sym_BQUOTE] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(721), + [anon_sym_PIPE] = ACTIONS(713), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_LPAREN] = ACTIONS(713), + [anon_sym_RPAREN] = ACTIONS(713), + [sym__newline_token] = ACTIONS(723), + [aux_sym_insert_token1] = ACTIONS(725), + [aux_sym_insert_token2] = ACTIONS(2697), + [aux_sym_delete_token1] = ACTIONS(729), + [aux_sym_highlight_token1] = ACTIONS(731), + [aux_sym_edit_comment_token1] = ACTIONS(733), + [anon_sym_CARET_LBRACK] = ACTIONS(735), + [anon_sym_LBRACK_CARET] = ACTIONS(737), + [sym_uri_autolink] = ACTIONS(709), + [sym_email_autolink] = ACTIONS(709), + [sym__whitespace_ge_2] = ACTIONS(739), + [aux_sym__whitespace_token1] = ACTIONS(741), + [sym__word_no_digit] = ACTIONS(743), + [sym__digits] = ACTIONS(743), + [anon_sym_DASH_DASH] = ACTIONS(745), + [anon_sym_DASH_DASH_DASH] = ACTIONS(743), + [anon_sym_DOT_DOT_DOT] = ACTIONS(743), + [sym__code_span_start] = ACTIONS(747), + [sym__emphasis_open_star] = ACTIONS(749), + [sym__emphasis_open_underscore] = ACTIONS(751), + [sym__strikeout_open] = ACTIONS(753), + [sym__latex_span_start] = ACTIONS(755), + [sym__single_quote_open] = ACTIONS(757), + [sym__double_quote_open] = ACTIONS(759), + [sym__superscript_open] = ACTIONS(761), + [sym__subscript_open] = ACTIONS(763), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(765), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(767), + [sym__cite_author_in_text] = ACTIONS(769), + [sym__cite_suppress_author] = ACTIONS(771), + [sym__shortcode_open_escaped] = ACTIONS(773), + [sym__shortcode_open] = ACTIONS(775), + [sym__unclosed_span] = ACTIONS(709), }, [STATE(252)] = { - [sym_backslash_escape] = STATE(271), - [sym_commonmark_attribute] = STATE(271), - [sym_code_span] = STATE(271), - [sym_latex_span] = STATE(271), - [sym_superscript] = STATE(271), - [sym_subscript] = STATE(271), - [sym_strikeout] = STATE(271), - [sym_quoted_span] = STATE(271), - [sym_inline_note] = STATE(271), - [sym_citation] = STATE(271), - [sym_shortcode_escaped] = STATE(271), - [sym_shortcode] = STATE(271), - [sym_note_reference] = STATE(271), - [sym_image] = STATE(271), - [sym__image_inline_link] = STATE(883), - [sym__image_description] = STATE(1998), - [sym__image_description_non_empty] = STATE(1998), - [sym_hard_line_break] = STATE(271), - [sym__whitespace] = STATE(881), - [sym__word] = STATE(881), - [sym__soft_line_break] = STATE(884), - [sym__inline_base] = STATE(1144), - [sym__text_base] = STATE(271), - [sym__inline_element_no_link] = STATE(1144), - [aux_sym__inline_no_link] = STATE(220), - [sym__emphasis_star_no_link] = STATE(1170), - [sym__strong_emphasis_star_no_link] = STATE(1144), - [sym__emphasis_underscore_no_link] = STATE(1170), - [sym__strong_emphasis_underscore_no_link] = STATE(1144), - [aux_sym__inline_base_repeat1] = STATE(271), - [sym__backslash_escape] = ACTIONS(159), - [sym_entity_reference] = ACTIONS(161), - [sym_numeric_character_reference] = ACTIONS(161), - [anon_sym_LT] = ACTIONS(163), - [anon_sym_GT] = ACTIONS(165), - [anon_sym_BANG] = ACTIONS(167), - [anon_sym_DQUOTE] = ACTIONS(165), - [anon_sym_POUND] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(165), - [anon_sym_PERCENT] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_SQUOTE] = ACTIONS(165), - [anon_sym_STAR] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(165), - [anon_sym_COMMA] = ACTIONS(165), - [anon_sym_DASH] = ACTIONS(163), - [anon_sym_DOT] = ACTIONS(163), - [anon_sym_SLASH] = ACTIONS(165), - [anon_sym_COLON] = ACTIONS(165), - [anon_sym_SEMI] = ACTIONS(165), - [anon_sym_EQ] = ACTIONS(165), - [anon_sym_QMARK] = ACTIONS(165), - [anon_sym_BSLASH] = ACTIONS(171), - [anon_sym_RBRACK] = ACTIONS(2870), - [anon_sym_CARET] = ACTIONS(163), - [anon_sym__] = ACTIONS(165), - [anon_sym_BQUOTE] = ACTIONS(165), - [anon_sym_LBRACE] = ACTIONS(175), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(165), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_RPAREN] = ACTIONS(165), - [sym__newline_token] = ACTIONS(177), - [anon_sym_CARET_LBRACK] = ACTIONS(179), - [anon_sym_LBRACK_CARET] = ACTIONS(181), - [sym_uri_autolink] = ACTIONS(161), - [sym_email_autolink] = ACTIONS(161), - [sym__whitespace_ge_2] = ACTIONS(183), - [aux_sym__whitespace_token1] = ACTIONS(185), - [sym__word_no_digit] = ACTIONS(187), - [sym__digits] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_DASH_DASH_DASH] = ACTIONS(187), - [anon_sym_DOT_DOT_DOT] = ACTIONS(187), - [sym__code_span_start] = ACTIONS(191), - [sym__emphasis_open_star] = ACTIONS(2630), - [sym__emphasis_open_underscore] = ACTIONS(2632), - [sym__strikeout_open] = ACTIONS(199), - [sym__latex_span_start] = ACTIONS(201), - [sym__single_quote_open] = ACTIONS(203), - [sym__double_quote_open] = ACTIONS(205), - [sym__superscript_open] = ACTIONS(207), - [sym__subscript_open] = ACTIONS(209), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(211), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(213), - [sym__cite_author_in_text] = ACTIONS(215), - [sym__cite_suppress_author] = ACTIONS(217), - [sym__shortcode_open_escaped] = ACTIONS(219), - [sym__shortcode_open] = ACTIONS(221), - [sym__unclosed_span] = ACTIONS(161), + [sym_backslash_escape] = STATE(372), + [sym_commonmark_attribute] = STATE(372), + [sym_code_span] = STATE(372), + [sym_latex_span] = STATE(372), + [sym_insert] = STATE(372), + [sym_delete] = STATE(372), + [sym_highlight] = STATE(372), + [sym_edit_comment] = STATE(372), + [sym_superscript] = STATE(372), + [sym_subscript] = STATE(372), + [sym_strikeout] = STATE(372), + [sym_quoted_span] = STATE(372), + [sym_inline_note] = STATE(372), + [sym_citation] = STATE(372), + [sym_shortcode_escaped] = STATE(372), + [sym_shortcode] = STATE(372), + [sym_note_reference] = STATE(372), + [sym__link_text] = STATE(454), + [sym__link_text_non_empty] = STATE(455), + [sym_inline_link] = STATE(264), + [sym_image] = STATE(372), + [sym__image_inline_link] = STATE(1025), + [sym__image_description] = STATE(2356), + [sym__image_description_non_empty] = STATE(2356), + [sym_hard_line_break] = STATE(372), + [sym__whitespace] = STATE(1022), + [sym__word] = STATE(1022), + [sym__soft_line_break] = STATE(1026), + [sym__inline_base] = STATE(264), + [sym__text_base] = STATE(372), + [sym__inline_element] = STATE(264), + [sym__emphasis_star] = STATE(714), + [sym__strong_emphasis_star] = STATE(264), + [sym__emphasis_underscore] = STATE(714), + [sym__strong_emphasis_underscore] = STATE(264), + [aux_sym_insert_repeat1] = STATE(264), + [aux_sym__inline_base_repeat1] = STATE(372), + [sym__backslash_escape] = ACTIONS(707), + [sym_entity_reference] = ACTIONS(709), + [sym_numeric_character_reference] = ACTIONS(709), + [anon_sym_LT] = ACTIONS(711), + [anon_sym_GT] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(715), + [anon_sym_DQUOTE] = ACTIONS(713), + [anon_sym_POUND] = ACTIONS(713), + [anon_sym_DOLLAR] = ACTIONS(713), + [anon_sym_PERCENT] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(711), + [anon_sym_SQUOTE] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_COMMA] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_DOT] = ACTIONS(711), + [anon_sym_SLASH] = ACTIONS(713), + [anon_sym_COLON] = ACTIONS(713), + [anon_sym_SEMI] = ACTIONS(713), + [anon_sym_EQ] = ACTIONS(713), + [anon_sym_QMARK] = ACTIONS(713), + [anon_sym_LBRACK] = ACTIONS(717), + [anon_sym_BSLASH] = ACTIONS(719), + [anon_sym_CARET] = ACTIONS(711), + [anon_sym__] = ACTIONS(713), + [anon_sym_BQUOTE] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(721), + [anon_sym_PIPE] = ACTIONS(713), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_LPAREN] = ACTIONS(713), + [anon_sym_RPAREN] = ACTIONS(713), + [sym__newline_token] = ACTIONS(723), + [aux_sym_insert_token1] = ACTIONS(725), + [aux_sym_insert_token2] = ACTIONS(2699), + [aux_sym_delete_token1] = ACTIONS(729), + [aux_sym_highlight_token1] = ACTIONS(731), + [aux_sym_edit_comment_token1] = ACTIONS(733), + [anon_sym_CARET_LBRACK] = ACTIONS(735), + [anon_sym_LBRACK_CARET] = ACTIONS(737), + [sym_uri_autolink] = ACTIONS(709), + [sym_email_autolink] = ACTIONS(709), + [sym__whitespace_ge_2] = ACTIONS(739), + [aux_sym__whitespace_token1] = ACTIONS(741), + [sym__word_no_digit] = ACTIONS(743), + [sym__digits] = ACTIONS(743), + [anon_sym_DASH_DASH] = ACTIONS(745), + [anon_sym_DASH_DASH_DASH] = ACTIONS(743), + [anon_sym_DOT_DOT_DOT] = ACTIONS(743), + [sym__code_span_start] = ACTIONS(747), + [sym__emphasis_open_star] = ACTIONS(749), + [sym__emphasis_open_underscore] = ACTIONS(751), + [sym__strikeout_open] = ACTIONS(753), + [sym__latex_span_start] = ACTIONS(755), + [sym__single_quote_open] = ACTIONS(757), + [sym__double_quote_open] = ACTIONS(759), + [sym__superscript_open] = ACTIONS(761), + [sym__subscript_open] = ACTIONS(763), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(765), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(767), + [sym__cite_author_in_text] = ACTIONS(769), + [sym__cite_suppress_author] = ACTIONS(771), + [sym__shortcode_open_escaped] = ACTIONS(773), + [sym__shortcode_open] = ACTIONS(775), + [sym__unclosed_span] = ACTIONS(709), }, [STATE(253)] = { - [sym_backslash_escape] = STATE(261), - [sym_commonmark_attribute] = STATE(261), - [sym_code_span] = STATE(261), - [sym_latex_span] = STATE(261), - [sym_superscript] = STATE(261), - [sym_subscript] = STATE(261), - [sym_strikeout] = STATE(261), - [sym_quoted_span] = STATE(261), - [sym_inline_note] = STATE(261), - [sym_citation] = STATE(261), - [sym_shortcode_escaped] = STATE(261), - [sym_shortcode] = STATE(261), - [sym_note_reference] = STATE(261), - [sym_image] = STATE(261), - [sym__image_inline_link] = STATE(595), - [sym__image_description] = STATE(1972), - [sym__image_description_non_empty] = STATE(1972), - [sym_hard_line_break] = STATE(261), - [sym__whitespace] = STATE(587), - [sym__word] = STATE(587), - [sym__soft_line_break] = STATE(597), - [sym__inline_base] = STATE(223), - [sym__text_base] = STATE(261), - [sym__inline_element_no_star_no_link] = STATE(223), - [aux_sym__inline_no_star_no_link] = STATE(223), - [sym__emphasis_star_no_link] = STATE(1145), - [sym__strong_emphasis_star_no_link] = STATE(223), - [sym__emphasis_underscore_no_link] = STATE(1145), - [sym__strong_emphasis_underscore_no_link] = STATE(223), - [aux_sym__inline_base_repeat1] = STATE(261), - [sym__backslash_escape] = ACTIONS(969), - [sym_entity_reference] = ACTIONS(971), - [sym_numeric_character_reference] = ACTIONS(971), - [anon_sym_LT] = ACTIONS(973), - [anon_sym_GT] = ACTIONS(975), - [anon_sym_BANG] = ACTIONS(977), - [anon_sym_DQUOTE] = ACTIONS(975), - [anon_sym_POUND] = ACTIONS(975), - [anon_sym_DOLLAR] = ACTIONS(975), - [anon_sym_PERCENT] = ACTIONS(975), - [anon_sym_AMP] = ACTIONS(973), - [anon_sym_SQUOTE] = ACTIONS(975), - [anon_sym_STAR] = ACTIONS(975), - [anon_sym_PLUS] = ACTIONS(975), - [anon_sym_COMMA] = ACTIONS(975), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_DOT] = ACTIONS(973), - [anon_sym_SLASH] = ACTIONS(975), - [anon_sym_COLON] = ACTIONS(975), - [anon_sym_SEMI] = ACTIONS(975), - [anon_sym_EQ] = ACTIONS(975), - [anon_sym_QMARK] = ACTIONS(975), - [anon_sym_BSLASH] = ACTIONS(981), - [anon_sym_CARET] = ACTIONS(973), - [anon_sym__] = ACTIONS(975), - [anon_sym_BQUOTE] = ACTIONS(975), - [anon_sym_LBRACE] = ACTIONS(983), - [anon_sym_PIPE] = ACTIONS(975), - [anon_sym_TILDE] = ACTIONS(975), - [anon_sym_LPAREN] = ACTIONS(975), - [anon_sym_RPAREN] = ACTIONS(975), - [sym__newline_token] = ACTIONS(985), - [anon_sym_CARET_LBRACK] = ACTIONS(987), - [anon_sym_LBRACK_CARET] = ACTIONS(989), - [sym_uri_autolink] = ACTIONS(971), - [sym_email_autolink] = ACTIONS(971), - [sym__whitespace_ge_2] = ACTIONS(991), - [aux_sym__whitespace_token1] = ACTIONS(993), - [sym__word_no_digit] = ACTIONS(995), - [sym__digits] = ACTIONS(995), - [anon_sym_DASH_DASH] = ACTIONS(997), - [anon_sym_DASH_DASH_DASH] = ACTIONS(995), - [anon_sym_DOT_DOT_DOT] = ACTIONS(995), - [sym__code_span_start] = ACTIONS(999), - [sym__emphasis_open_star] = ACTIONS(2531), - [sym__emphasis_open_underscore] = ACTIONS(2533), - [sym__emphasis_close_star] = ACTIONS(2872), - [sym__strikeout_open] = ACTIONS(1007), - [sym__latex_span_start] = ACTIONS(1009), - [sym__single_quote_open] = ACTIONS(1011), - [sym__double_quote_open] = ACTIONS(1013), - [sym__superscript_open] = ACTIONS(1015), - [sym__subscript_open] = ACTIONS(1017), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1019), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1021), - [sym__cite_author_in_text] = ACTIONS(1023), - [sym__cite_suppress_author] = ACTIONS(1025), - [sym__shortcode_open_escaped] = ACTIONS(1027), - [sym__shortcode_open] = ACTIONS(1029), - [sym__unclosed_span] = ACTIONS(971), + [sym_backslash_escape] = STATE(372), + [sym_commonmark_attribute] = STATE(372), + [sym_code_span] = STATE(372), + [sym_latex_span] = STATE(372), + [sym_insert] = STATE(372), + [sym_delete] = STATE(372), + [sym_highlight] = STATE(372), + [sym_edit_comment] = STATE(372), + [sym_superscript] = STATE(372), + [sym_subscript] = STATE(372), + [sym_strikeout] = STATE(372), + [sym_quoted_span] = STATE(372), + [sym_inline_note] = STATE(372), + [sym_citation] = STATE(372), + [sym_shortcode_escaped] = STATE(372), + [sym_shortcode] = STATE(372), + [sym_note_reference] = STATE(372), + [sym__link_text] = STATE(454), + [sym__link_text_non_empty] = STATE(455), + [sym_inline_link] = STATE(57), + [sym_image] = STATE(372), + [sym__image_inline_link] = STATE(1025), + [sym__image_description] = STATE(2356), + [sym__image_description_non_empty] = STATE(2356), + [sym_hard_line_break] = STATE(372), + [sym__whitespace] = STATE(1022), + [sym__word] = STATE(1022), + [sym__soft_line_break] = STATE(1026), + [sym__inline_base] = STATE(57), + [sym__text_base] = STATE(372), + [sym__inline_element] = STATE(57), + [sym__emphasis_star] = STATE(714), + [sym__strong_emphasis_star] = STATE(57), + [sym__emphasis_underscore] = STATE(714), + [sym__strong_emphasis_underscore] = STATE(57), + [aux_sym_insert_repeat1] = STATE(57), + [aux_sym__inline_base_repeat1] = STATE(372), + [sym__backslash_escape] = ACTIONS(707), + [sym_entity_reference] = ACTIONS(709), + [sym_numeric_character_reference] = ACTIONS(709), + [anon_sym_LT] = ACTIONS(711), + [anon_sym_GT] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(715), + [anon_sym_DQUOTE] = ACTIONS(713), + [anon_sym_POUND] = ACTIONS(713), + [anon_sym_DOLLAR] = ACTIONS(713), + [anon_sym_PERCENT] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(711), + [anon_sym_SQUOTE] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_COMMA] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_DOT] = ACTIONS(711), + [anon_sym_SLASH] = ACTIONS(713), + [anon_sym_COLON] = ACTIONS(713), + [anon_sym_SEMI] = ACTIONS(713), + [anon_sym_EQ] = ACTIONS(713), + [anon_sym_QMARK] = ACTIONS(713), + [anon_sym_LBRACK] = ACTIONS(717), + [anon_sym_BSLASH] = ACTIONS(719), + [anon_sym_CARET] = ACTIONS(711), + [anon_sym__] = ACTIONS(713), + [anon_sym_BQUOTE] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(721), + [anon_sym_PIPE] = ACTIONS(713), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_LPAREN] = ACTIONS(713), + [anon_sym_RPAREN] = ACTIONS(713), + [sym__newline_token] = ACTIONS(723), + [aux_sym_insert_token1] = ACTIONS(725), + [aux_sym_insert_token2] = ACTIONS(2701), + [aux_sym_delete_token1] = ACTIONS(729), + [aux_sym_highlight_token1] = ACTIONS(731), + [aux_sym_edit_comment_token1] = ACTIONS(733), + [anon_sym_CARET_LBRACK] = ACTIONS(735), + [anon_sym_LBRACK_CARET] = ACTIONS(737), + [sym_uri_autolink] = ACTIONS(709), + [sym_email_autolink] = ACTIONS(709), + [sym__whitespace_ge_2] = ACTIONS(739), + [aux_sym__whitespace_token1] = ACTIONS(741), + [sym__word_no_digit] = ACTIONS(743), + [sym__digits] = ACTIONS(743), + [anon_sym_DASH_DASH] = ACTIONS(745), + [anon_sym_DASH_DASH_DASH] = ACTIONS(743), + [anon_sym_DOT_DOT_DOT] = ACTIONS(743), + [sym__code_span_start] = ACTIONS(747), + [sym__emphasis_open_star] = ACTIONS(749), + [sym__emphasis_open_underscore] = ACTIONS(751), + [sym__strikeout_open] = ACTIONS(753), + [sym__latex_span_start] = ACTIONS(755), + [sym__single_quote_open] = ACTIONS(757), + [sym__double_quote_open] = ACTIONS(759), + [sym__superscript_open] = ACTIONS(761), + [sym__subscript_open] = ACTIONS(763), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(765), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(767), + [sym__cite_author_in_text] = ACTIONS(769), + [sym__cite_suppress_author] = ACTIONS(771), + [sym__shortcode_open_escaped] = ACTIONS(773), + [sym__shortcode_open] = ACTIONS(775), + [sym__unclosed_span] = ACTIONS(709), }, [STATE(254)] = { - [sym_backslash_escape] = STATE(261), - [sym_commonmark_attribute] = STATE(261), - [sym_code_span] = STATE(261), - [sym_latex_span] = STATE(261), - [sym_superscript] = STATE(261), - [sym_subscript] = STATE(261), - [sym_strikeout] = STATE(261), - [sym_quoted_span] = STATE(261), - [sym_inline_note] = STATE(261), - [sym_citation] = STATE(261), - [sym_shortcode_escaped] = STATE(261), - [sym_shortcode] = STATE(261), - [sym_note_reference] = STATE(261), - [sym_image] = STATE(261), - [sym__image_inline_link] = STATE(595), - [sym__image_description] = STATE(1972), - [sym__image_description_non_empty] = STATE(1972), - [sym_hard_line_break] = STATE(261), - [sym__whitespace] = STATE(587), - [sym__word] = STATE(587), - [sym__soft_line_break] = STATE(597), - [sym__inline_base] = STATE(221), - [sym__text_base] = STATE(261), - [sym__inline_element_no_star_no_link] = STATE(221), - [aux_sym__inline_no_star_no_link] = STATE(221), - [sym__emphasis_star_no_link] = STATE(1145), - [sym__strong_emphasis_star_no_link] = STATE(221), - [sym__emphasis_underscore_no_link] = STATE(1145), - [sym__strong_emphasis_underscore_no_link] = STATE(221), - [aux_sym__inline_base_repeat1] = STATE(261), - [sym__backslash_escape] = ACTIONS(969), - [sym_entity_reference] = ACTIONS(971), - [sym_numeric_character_reference] = ACTIONS(971), - [anon_sym_LT] = ACTIONS(973), - [anon_sym_GT] = ACTIONS(975), - [anon_sym_BANG] = ACTIONS(977), - [anon_sym_DQUOTE] = ACTIONS(975), - [anon_sym_POUND] = ACTIONS(975), - [anon_sym_DOLLAR] = ACTIONS(975), - [anon_sym_PERCENT] = ACTIONS(975), - [anon_sym_AMP] = ACTIONS(973), - [anon_sym_SQUOTE] = ACTIONS(975), - [anon_sym_STAR] = ACTIONS(975), - [anon_sym_PLUS] = ACTIONS(975), - [anon_sym_COMMA] = ACTIONS(975), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_DOT] = ACTIONS(973), - [anon_sym_SLASH] = ACTIONS(975), - [anon_sym_COLON] = ACTIONS(975), - [anon_sym_SEMI] = ACTIONS(975), - [anon_sym_EQ] = ACTIONS(975), - [anon_sym_QMARK] = ACTIONS(975), - [anon_sym_BSLASH] = ACTIONS(981), - [anon_sym_CARET] = ACTIONS(973), - [anon_sym__] = ACTIONS(975), - [anon_sym_BQUOTE] = ACTIONS(975), - [anon_sym_LBRACE] = ACTIONS(983), - [anon_sym_PIPE] = ACTIONS(975), - [anon_sym_TILDE] = ACTIONS(975), - [anon_sym_LPAREN] = ACTIONS(975), - [anon_sym_RPAREN] = ACTIONS(975), - [sym__newline_token] = ACTIONS(985), - [anon_sym_CARET_LBRACK] = ACTIONS(987), - [anon_sym_LBRACK_CARET] = ACTIONS(989), - [sym_uri_autolink] = ACTIONS(971), - [sym_email_autolink] = ACTIONS(971), - [sym__whitespace_ge_2] = ACTIONS(991), - [aux_sym__whitespace_token1] = ACTIONS(993), - [sym__word_no_digit] = ACTIONS(995), - [sym__digits] = ACTIONS(995), - [anon_sym_DASH_DASH] = ACTIONS(997), - [anon_sym_DASH_DASH_DASH] = ACTIONS(995), - [anon_sym_DOT_DOT_DOT] = ACTIONS(995), - [sym__code_span_start] = ACTIONS(999), - [sym__emphasis_open_star] = ACTIONS(2531), - [sym__emphasis_open_underscore] = ACTIONS(2533), - [sym__strikeout_open] = ACTIONS(1007), - [sym__latex_span_start] = ACTIONS(1009), - [sym__single_quote_open] = ACTIONS(1011), - [sym__double_quote_open] = ACTIONS(1013), - [sym__superscript_open] = ACTIONS(1015), - [sym__subscript_open] = ACTIONS(1017), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1019), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1021), - [sym__cite_author_in_text] = ACTIONS(1023), - [sym__cite_suppress_author] = ACTIONS(1025), - [sym__shortcode_open_escaped] = ACTIONS(1027), - [sym__shortcode_open] = ACTIONS(1029), - [sym__unclosed_span] = ACTIONS(971), + [sym_backslash_escape] = STATE(373), + [sym_commonmark_attribute] = STATE(373), + [sym_code_span] = STATE(373), + [sym_latex_span] = STATE(373), + [sym_insert] = STATE(373), + [sym_delete] = STATE(373), + [sym_highlight] = STATE(373), + [sym_edit_comment] = STATE(373), + [sym_superscript] = STATE(373), + [sym_subscript] = STATE(373), + [sym_strikeout] = STATE(373), + [sym_quoted_span] = STATE(373), + [sym_inline_note] = STATE(373), + [sym_citation] = STATE(373), + [sym_shortcode_escaped] = STATE(373), + [sym_shortcode] = STATE(373), + [sym_note_reference] = STATE(373), + [sym__link_text] = STATE(522), + [sym__link_text_non_empty] = STATE(523), + [sym_inline_link] = STATE(36), + [sym_image] = STATE(373), + [sym__image_inline_link] = STATE(1265), + [sym__image_description] = STATE(2331), + [sym__image_description_non_empty] = STATE(2331), + [sym_hard_line_break] = STATE(373), + [sym__whitespace] = STATE(1262), + [sym__word] = STATE(1262), + [sym__soft_line_break] = STATE(1267), + [sym__inline_base] = STATE(36), + [sym__text_base] = STATE(373), + [sym__inline_element_no_star] = STATE(36), + [aux_sym__inline_no_star] = STATE(36), + [sym__emphasis_star] = STATE(1147), + [sym__strong_emphasis_star] = STATE(36), + [sym__emphasis_underscore] = STATE(1147), + [sym__strong_emphasis_underscore] = STATE(36), + [aux_sym__inline_base_repeat1] = STATE(373), + [sym__backslash_escape] = ACTIONS(885), + [sym_entity_reference] = ACTIONS(887), + [sym_numeric_character_reference] = ACTIONS(887), + [anon_sym_LT] = ACTIONS(889), + [anon_sym_GT] = ACTIONS(891), + [anon_sym_BANG] = ACTIONS(893), + [anon_sym_DQUOTE] = ACTIONS(891), + [anon_sym_POUND] = ACTIONS(891), + [anon_sym_DOLLAR] = ACTIONS(891), + [anon_sym_PERCENT] = ACTIONS(891), + [anon_sym_AMP] = ACTIONS(889), + [anon_sym_SQUOTE] = ACTIONS(891), + [anon_sym_STAR] = ACTIONS(891), + [anon_sym_PLUS] = ACTIONS(891), + [anon_sym_COMMA] = ACTIONS(891), + [anon_sym_DASH] = ACTIONS(889), + [anon_sym_DOT] = ACTIONS(889), + [anon_sym_SLASH] = ACTIONS(891), + [anon_sym_COLON] = ACTIONS(891), + [anon_sym_SEMI] = ACTIONS(891), + [anon_sym_EQ] = ACTIONS(891), + [anon_sym_QMARK] = ACTIONS(891), + [anon_sym_LBRACK] = ACTIONS(895), + [anon_sym_BSLASH] = ACTIONS(897), + [anon_sym_CARET] = ACTIONS(889), + [anon_sym__] = ACTIONS(891), + [anon_sym_BQUOTE] = ACTIONS(891), + [anon_sym_LBRACE] = ACTIONS(899), + [anon_sym_PIPE] = ACTIONS(891), + [anon_sym_TILDE] = ACTIONS(891), + [anon_sym_LPAREN] = ACTIONS(891), + [anon_sym_RPAREN] = ACTIONS(891), + [sym__newline_token] = ACTIONS(901), + [aux_sym_insert_token1] = ACTIONS(903), + [aux_sym_delete_token1] = ACTIONS(905), + [aux_sym_highlight_token1] = ACTIONS(907), + [aux_sym_edit_comment_token1] = ACTIONS(909), + [anon_sym_CARET_LBRACK] = ACTIONS(911), + [anon_sym_LBRACK_CARET] = ACTIONS(913), + [sym_uri_autolink] = ACTIONS(887), + [sym_email_autolink] = ACTIONS(887), + [sym__whitespace_ge_2] = ACTIONS(915), + [aux_sym__whitespace_token1] = ACTIONS(917), + [sym__word_no_digit] = ACTIONS(919), + [sym__digits] = ACTIONS(919), + [anon_sym_DASH_DASH] = ACTIONS(921), + [anon_sym_DASH_DASH_DASH] = ACTIONS(919), + [anon_sym_DOT_DOT_DOT] = ACTIONS(919), + [sym__code_span_start] = ACTIONS(923), + [sym__emphasis_open_star] = ACTIONS(925), + [sym__emphasis_open_underscore] = ACTIONS(927), + [sym__emphasis_close_star] = ACTIONS(2703), + [sym__strikeout_open] = ACTIONS(931), + [sym__latex_span_start] = ACTIONS(933), + [sym__single_quote_open] = ACTIONS(935), + [sym__double_quote_open] = ACTIONS(937), + [sym__superscript_open] = ACTIONS(939), + [sym__subscript_open] = ACTIONS(941), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(943), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(945), + [sym__cite_author_in_text] = ACTIONS(947), + [sym__cite_suppress_author] = ACTIONS(949), + [sym__shortcode_open_escaped] = ACTIONS(951), + [sym__shortcode_open] = ACTIONS(953), + [sym__unclosed_span] = ACTIONS(887), }, [STATE(255)] = { - [sym_backslash_escape] = STATE(274), - [sym_commonmark_attribute] = STATE(274), - [sym_code_span] = STATE(274), - [sym_latex_span] = STATE(274), - [sym_superscript] = STATE(274), - [sym_subscript] = STATE(274), - [sym_strikeout] = STATE(274), - [sym_quoted_span] = STATE(274), - [sym_inline_note] = STATE(274), - [sym_citation] = STATE(274), - [sym_shortcode_escaped] = STATE(274), - [sym_shortcode] = STATE(274), - [sym_note_reference] = STATE(274), - [sym_image] = STATE(274), - [sym__image_inline_link] = STATE(894), - [sym__image_description] = STATE(2008), - [sym__image_description_non_empty] = STATE(2008), - [sym_hard_line_break] = STATE(274), - [sym__whitespace] = STATE(882), - [sym__word] = STATE(882), - [sym__soft_line_break] = STATE(898), - [sym__inline_base] = STATE(224), - [sym__text_base] = STATE(274), - [sym__inline_element_no_underscore_no_link] = STATE(224), - [aux_sym__inline_no_underscore_no_link] = STATE(224), - [sym__emphasis_star_no_link] = STATE(1169), - [sym__strong_emphasis_star_no_link] = STATE(224), - [sym__emphasis_underscore_no_link] = STATE(1169), - [sym__strong_emphasis_underscore_no_link] = STATE(224), - [aux_sym__inline_base_repeat1] = STATE(274), - [sym__backslash_escape] = ACTIONS(1123), - [sym_entity_reference] = ACTIONS(1125), - [sym_numeric_character_reference] = ACTIONS(1125), - [anon_sym_LT] = ACTIONS(1127), - [anon_sym_GT] = ACTIONS(1129), - [anon_sym_BANG] = ACTIONS(1131), - [anon_sym_DQUOTE] = ACTIONS(1129), - [anon_sym_POUND] = ACTIONS(1129), - [anon_sym_DOLLAR] = ACTIONS(1129), - [anon_sym_PERCENT] = ACTIONS(1129), - [anon_sym_AMP] = ACTIONS(1127), - [anon_sym_SQUOTE] = ACTIONS(1129), - [anon_sym_STAR] = ACTIONS(1129), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_COMMA] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1127), - [anon_sym_DOT] = ACTIONS(1127), - [anon_sym_SLASH] = ACTIONS(1129), - [anon_sym_COLON] = ACTIONS(1129), - [anon_sym_SEMI] = ACTIONS(1129), - [anon_sym_EQ] = ACTIONS(1129), - [anon_sym_QMARK] = ACTIONS(1129), - [anon_sym_BSLASH] = ACTIONS(1135), - [anon_sym_CARET] = ACTIONS(1127), - [anon_sym__] = ACTIONS(1129), - [anon_sym_BQUOTE] = ACTIONS(1129), - [anon_sym_LBRACE] = ACTIONS(1137), - [anon_sym_PIPE] = ACTIONS(1129), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1129), - [anon_sym_RPAREN] = ACTIONS(1129), - [sym__newline_token] = ACTIONS(1139), - [anon_sym_CARET_LBRACK] = ACTIONS(1141), - [anon_sym_LBRACK_CARET] = ACTIONS(1143), - [sym_uri_autolink] = ACTIONS(1125), - [sym_email_autolink] = ACTIONS(1125), - [sym__whitespace_ge_2] = ACTIONS(1145), - [aux_sym__whitespace_token1] = ACTIONS(1147), - [sym__word_no_digit] = ACTIONS(1149), - [sym__digits] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1151), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1149), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1149), - [sym__code_span_start] = ACTIONS(1153), - [sym__emphasis_open_star] = ACTIONS(2723), - [sym__emphasis_open_underscore] = ACTIONS(2725), - [sym__strikeout_open] = ACTIONS(1161), - [sym__latex_span_start] = ACTIONS(1163), - [sym__single_quote_open] = ACTIONS(1165), - [sym__double_quote_open] = ACTIONS(1167), - [sym__superscript_open] = ACTIONS(1169), - [sym__subscript_open] = ACTIONS(1171), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1173), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1175), - [sym__cite_author_in_text] = ACTIONS(1177), - [sym__cite_suppress_author] = ACTIONS(1179), - [sym__shortcode_open_escaped] = ACTIONS(1181), - [sym__shortcode_open] = ACTIONS(1183), - [sym__unclosed_span] = ACTIONS(1125), + [sym_backslash_escape] = STATE(379), + [sym_commonmark_attribute] = STATE(379), + [sym_code_span] = STATE(379), + [sym_latex_span] = STATE(379), + [sym_insert] = STATE(379), + [sym_delete] = STATE(379), + [sym_highlight] = STATE(379), + [sym_edit_comment] = STATE(379), + [sym_superscript] = STATE(379), + [sym_subscript] = STATE(379), + [sym_strikeout] = STATE(379), + [sym_quoted_span] = STATE(379), + [sym_inline_note] = STATE(379), + [sym_citation] = STATE(379), + [sym_shortcode_escaped] = STATE(379), + [sym_shortcode] = STATE(379), + [sym_note_reference] = STATE(379), + [sym__link_text] = STATE(545), + [sym__link_text_non_empty] = STATE(546), + [sym_inline_link] = STATE(38), + [sym_image] = STATE(379), + [sym__image_inline_link] = STATE(1390), + [sym__image_description] = STATE(2363), + [sym__image_description_non_empty] = STATE(2363), + [sym_hard_line_break] = STATE(379), + [sym__whitespace] = STATE(1385), + [sym__word] = STATE(1385), + [sym__soft_line_break] = STATE(1391), + [sym__inline_base] = STATE(38), + [sym__text_base] = STATE(379), + [sym__inline_element_no_underscore] = STATE(38), + [aux_sym__inline_no_underscore] = STATE(38), + [sym__emphasis_star] = STATE(1168), + [sym__strong_emphasis_star] = STATE(38), + [sym__emphasis_underscore] = STATE(1168), + [sym__strong_emphasis_underscore] = STATE(38), + [aux_sym__inline_base_repeat1] = STATE(379), + [sym__backslash_escape] = ACTIONS(1059), + [sym_entity_reference] = ACTIONS(1061), + [sym_numeric_character_reference] = ACTIONS(1061), + [anon_sym_LT] = ACTIONS(1063), + [anon_sym_GT] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1067), + [anon_sym_DQUOTE] = ACTIONS(1065), + [anon_sym_POUND] = ACTIONS(1065), + [anon_sym_DOLLAR] = ACTIONS(1065), + [anon_sym_PERCENT] = ACTIONS(1065), + [anon_sym_AMP] = ACTIONS(1063), + [anon_sym_SQUOTE] = ACTIONS(1065), + [anon_sym_STAR] = ACTIONS(1065), + [anon_sym_PLUS] = ACTIONS(1065), + [anon_sym_COMMA] = ACTIONS(1065), + [anon_sym_DASH] = ACTIONS(1063), + [anon_sym_DOT] = ACTIONS(1063), + [anon_sym_SLASH] = ACTIONS(1065), + [anon_sym_COLON] = ACTIONS(1065), + [anon_sym_SEMI] = ACTIONS(1065), + [anon_sym_EQ] = ACTIONS(1065), + [anon_sym_QMARK] = ACTIONS(1065), + [anon_sym_LBRACK] = ACTIONS(1069), + [anon_sym_BSLASH] = ACTIONS(1071), + [anon_sym_CARET] = ACTIONS(1063), + [anon_sym__] = ACTIONS(1065), + [anon_sym_BQUOTE] = ACTIONS(1065), + [anon_sym_LBRACE] = ACTIONS(1073), + [anon_sym_PIPE] = ACTIONS(1065), + [anon_sym_TILDE] = ACTIONS(1065), + [anon_sym_LPAREN] = ACTIONS(1065), + [anon_sym_RPAREN] = ACTIONS(1065), + [sym__newline_token] = ACTIONS(1075), + [aux_sym_insert_token1] = ACTIONS(1077), + [aux_sym_delete_token1] = ACTIONS(1079), + [aux_sym_highlight_token1] = ACTIONS(1081), + [aux_sym_edit_comment_token1] = ACTIONS(1083), + [anon_sym_CARET_LBRACK] = ACTIONS(1085), + [anon_sym_LBRACK_CARET] = ACTIONS(1087), + [sym_uri_autolink] = ACTIONS(1061), + [sym_email_autolink] = ACTIONS(1061), + [sym__whitespace_ge_2] = ACTIONS(1089), + [aux_sym__whitespace_token1] = ACTIONS(1091), + [sym__word_no_digit] = ACTIONS(1093), + [sym__digits] = ACTIONS(1093), + [anon_sym_DASH_DASH] = ACTIONS(1095), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1093), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1093), + [sym__code_span_start] = ACTIONS(1097), + [sym__emphasis_open_star] = ACTIONS(1099), + [sym__emphasis_open_underscore] = ACTIONS(1101), + [sym__emphasis_close_underscore] = ACTIONS(2705), + [sym__strikeout_open] = ACTIONS(1105), + [sym__latex_span_start] = ACTIONS(1107), + [sym__single_quote_open] = ACTIONS(1109), + [sym__double_quote_open] = ACTIONS(1111), + [sym__superscript_open] = ACTIONS(1113), + [sym__subscript_open] = ACTIONS(1115), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1117), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1119), + [sym__cite_author_in_text] = ACTIONS(1121), + [sym__cite_suppress_author] = ACTIONS(1123), + [sym__shortcode_open_escaped] = ACTIONS(1125), + [sym__shortcode_open] = ACTIONS(1127), + [sym__unclosed_span] = ACTIONS(1061), }, [STATE(256)] = { - [sym_backslash_escape] = STATE(261), - [sym_commonmark_attribute] = STATE(261), - [sym_code_span] = STATE(261), - [sym_latex_span] = STATE(261), - [sym_superscript] = STATE(261), - [sym_subscript] = STATE(261), - [sym_strikeout] = STATE(261), - [sym_quoted_span] = STATE(261), - [sym_inline_note] = STATE(261), - [sym_citation] = STATE(261), - [sym_shortcode_escaped] = STATE(261), - [sym_shortcode] = STATE(261), - [sym_note_reference] = STATE(261), - [sym_image] = STATE(261), - [sym__image_inline_link] = STATE(595), - [sym__image_description] = STATE(1972), - [sym__image_description_non_empty] = STATE(1972), - [sym_hard_line_break] = STATE(261), - [sym__whitespace] = STATE(587), - [sym__word] = STATE(587), - [sym__soft_line_break] = STATE(597), - [sym__inline_base] = STATE(229), - [sym__text_base] = STATE(261), - [sym__inline_element_no_star_no_link] = STATE(229), - [aux_sym__inline_no_star_no_link] = STATE(229), - [sym__emphasis_star_no_link] = STATE(1145), - [sym__strong_emphasis_star_no_link] = STATE(229), - [sym__emphasis_underscore_no_link] = STATE(1145), - [sym__strong_emphasis_underscore_no_link] = STATE(229), - [aux_sym__inline_base_repeat1] = STATE(261), - [sym__backslash_escape] = ACTIONS(969), - [sym_entity_reference] = ACTIONS(971), - [sym_numeric_character_reference] = ACTIONS(971), - [anon_sym_LT] = ACTIONS(973), - [anon_sym_GT] = ACTIONS(975), - [anon_sym_BANG] = ACTIONS(977), - [anon_sym_DQUOTE] = ACTIONS(975), - [anon_sym_POUND] = ACTIONS(975), - [anon_sym_DOLLAR] = ACTIONS(975), - [anon_sym_PERCENT] = ACTIONS(975), - [anon_sym_AMP] = ACTIONS(973), - [anon_sym_SQUOTE] = ACTIONS(975), - [anon_sym_STAR] = ACTIONS(975), - [anon_sym_PLUS] = ACTIONS(975), - [anon_sym_COMMA] = ACTIONS(975), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_DOT] = ACTIONS(973), - [anon_sym_SLASH] = ACTIONS(975), - [anon_sym_COLON] = ACTIONS(975), - [anon_sym_SEMI] = ACTIONS(975), - [anon_sym_EQ] = ACTIONS(975), - [anon_sym_QMARK] = ACTIONS(975), - [anon_sym_BSLASH] = ACTIONS(981), - [anon_sym_CARET] = ACTIONS(973), - [anon_sym__] = ACTIONS(975), - [anon_sym_BQUOTE] = ACTIONS(975), - [anon_sym_LBRACE] = ACTIONS(983), - [anon_sym_PIPE] = ACTIONS(975), - [anon_sym_TILDE] = ACTIONS(975), - [anon_sym_LPAREN] = ACTIONS(975), - [anon_sym_RPAREN] = ACTIONS(975), - [sym__newline_token] = ACTIONS(985), - [anon_sym_CARET_LBRACK] = ACTIONS(987), - [anon_sym_LBRACK_CARET] = ACTIONS(989), - [sym_uri_autolink] = ACTIONS(971), - [sym_email_autolink] = ACTIONS(971), - [sym__whitespace_ge_2] = ACTIONS(991), - [aux_sym__whitespace_token1] = ACTIONS(993), - [sym__word_no_digit] = ACTIONS(995), - [sym__digits] = ACTIONS(995), - [anon_sym_DASH_DASH] = ACTIONS(997), - [anon_sym_DASH_DASH_DASH] = ACTIONS(995), - [anon_sym_DOT_DOT_DOT] = ACTIONS(995), - [sym__code_span_start] = ACTIONS(999), - [sym__emphasis_open_star] = ACTIONS(2531), - [sym__emphasis_open_underscore] = ACTIONS(2533), - [sym__strikeout_open] = ACTIONS(1007), - [sym__latex_span_start] = ACTIONS(1009), - [sym__single_quote_open] = ACTIONS(1011), - [sym__double_quote_open] = ACTIONS(1013), - [sym__superscript_open] = ACTIONS(1015), - [sym__subscript_open] = ACTIONS(1017), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1019), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1021), - [sym__cite_author_in_text] = ACTIONS(1023), - [sym__cite_suppress_author] = ACTIONS(1025), - [sym__shortcode_open_escaped] = ACTIONS(1027), - [sym__shortcode_open] = ACTIONS(1029), - [sym__unclosed_span] = ACTIONS(971), + [sym_backslash_escape] = STATE(366), + [sym_commonmark_attribute] = STATE(366), + [sym_code_span] = STATE(366), + [sym_latex_span] = STATE(366), + [sym_insert] = STATE(366), + [sym_delete] = STATE(366), + [sym_highlight] = STATE(366), + [sym_edit_comment] = STATE(366), + [sym_superscript] = STATE(366), + [sym_subscript] = STATE(366), + [sym_strikeout] = STATE(366), + [sym_quoted_span] = STATE(366), + [sym_inline_note] = STATE(366), + [sym_citation] = STATE(366), + [sym_shortcode_escaped] = STATE(366), + [sym_shortcode] = STATE(366), + [sym_note_reference] = STATE(366), + [sym__link_text] = STATE(490), + [sym__link_text_non_empty] = STATE(491), + [sym_inline_link] = STATE(39), + [sym_image] = STATE(366), + [sym__image_inline_link] = STATE(1244), + [sym__image_description] = STATE(2280), + [sym__image_description_non_empty] = STATE(2280), + [sym_hard_line_break] = STATE(366), + [sym__whitespace] = STATE(1218), + [sym__word] = STATE(1218), + [sym__soft_line_break] = STATE(1245), + [sym__inline_base] = STATE(39), + [sym__text_base] = STATE(366), + [sym__inline_element] = STATE(39), + [sym__emphasis_star] = STATE(1270), + [sym__strong_emphasis_star] = STATE(39), + [sym__emphasis_underscore] = STATE(1270), + [sym__strong_emphasis_underscore] = STATE(39), + [aux_sym_insert_repeat1] = STATE(39), + [aux_sym__inline_base_repeat1] = STATE(366), + [sym__backslash_escape] = ACTIONS(2005), + [sym_entity_reference] = ACTIONS(2007), + [sym_numeric_character_reference] = ACTIONS(2007), + [anon_sym_LT] = ACTIONS(2009), + [anon_sym_GT] = ACTIONS(2011), + [anon_sym_BANG] = ACTIONS(2013), + [anon_sym_DQUOTE] = ACTIONS(2011), + [anon_sym_POUND] = ACTIONS(2011), + [anon_sym_DOLLAR] = ACTIONS(2011), + [anon_sym_PERCENT] = ACTIONS(2011), + [anon_sym_AMP] = ACTIONS(2009), + [anon_sym_SQUOTE] = ACTIONS(2011), + [anon_sym_STAR] = ACTIONS(2011), + [anon_sym_PLUS] = ACTIONS(2011), + [anon_sym_COMMA] = ACTIONS(2011), + [anon_sym_DASH] = ACTIONS(2009), + [anon_sym_DOT] = ACTIONS(2009), + [anon_sym_SLASH] = ACTIONS(2011), + [anon_sym_COLON] = ACTIONS(2011), + [anon_sym_SEMI] = ACTIONS(2011), + [anon_sym_EQ] = ACTIONS(2011), + [anon_sym_QMARK] = ACTIONS(2011), + [anon_sym_LBRACK] = ACTIONS(2015), + [anon_sym_BSLASH] = ACTIONS(2017), + [anon_sym_CARET] = ACTIONS(2009), + [anon_sym__] = ACTIONS(2011), + [anon_sym_BQUOTE] = ACTIONS(2011), + [anon_sym_LBRACE] = ACTIONS(2019), + [anon_sym_PIPE] = ACTIONS(2011), + [anon_sym_TILDE] = ACTIONS(2011), + [anon_sym_LPAREN] = ACTIONS(2011), + [anon_sym_RPAREN] = ACTIONS(2011), + [sym__newline_token] = ACTIONS(2021), + [aux_sym_insert_token1] = ACTIONS(2023), + [aux_sym_delete_token1] = ACTIONS(2025), + [aux_sym_highlight_token1] = ACTIONS(2027), + [aux_sym_edit_comment_token1] = ACTIONS(2029), + [anon_sym_CARET_LBRACK] = ACTIONS(2031), + [anon_sym_LBRACK_CARET] = ACTIONS(2033), + [sym_uri_autolink] = ACTIONS(2007), + [sym_email_autolink] = ACTIONS(2007), + [sym__whitespace_ge_2] = ACTIONS(2035), + [aux_sym__whitespace_token1] = ACTIONS(2037), + [sym__word_no_digit] = ACTIONS(2039), + [sym__digits] = ACTIONS(2039), + [anon_sym_DASH_DASH] = ACTIONS(2041), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2039), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2039), + [sym__code_span_start] = ACTIONS(2043), + [sym__emphasis_open_star] = ACTIONS(2045), + [sym__emphasis_open_underscore] = ACTIONS(2047), + [sym__strikeout_open] = ACTIONS(2049), + [sym__strikeout_close] = ACTIONS(2707), + [sym__latex_span_start] = ACTIONS(2053), + [sym__single_quote_open] = ACTIONS(2055), + [sym__double_quote_open] = ACTIONS(2057), + [sym__superscript_open] = ACTIONS(2059), + [sym__subscript_open] = ACTIONS(2061), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2063), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2065), + [sym__cite_author_in_text] = ACTIONS(2067), + [sym__cite_suppress_author] = ACTIONS(2069), + [sym__shortcode_open_escaped] = ACTIONS(2071), + [sym__shortcode_open] = ACTIONS(2073), + [sym__unclosed_span] = ACTIONS(2007), }, [STATE(257)] = { - [sym_backslash_escape] = STATE(274), - [sym_commonmark_attribute] = STATE(274), - [sym_code_span] = STATE(274), - [sym_latex_span] = STATE(274), - [sym_superscript] = STATE(274), - [sym_subscript] = STATE(274), - [sym_strikeout] = STATE(274), - [sym_quoted_span] = STATE(274), - [sym_inline_note] = STATE(274), - [sym_citation] = STATE(274), - [sym_shortcode_escaped] = STATE(274), - [sym_shortcode] = STATE(274), - [sym_note_reference] = STATE(274), - [sym_image] = STATE(274), - [sym__image_inline_link] = STATE(894), - [sym__image_description] = STATE(2008), - [sym__image_description_non_empty] = STATE(2008), - [sym_hard_line_break] = STATE(274), - [sym__whitespace] = STATE(882), - [sym__word] = STATE(882), - [sym__soft_line_break] = STATE(898), - [sym__inline_base] = STATE(230), - [sym__text_base] = STATE(274), - [sym__inline_element_no_underscore_no_link] = STATE(230), - [aux_sym__inline_no_underscore_no_link] = STATE(230), - [sym__emphasis_star_no_link] = STATE(1169), - [sym__strong_emphasis_star_no_link] = STATE(230), - [sym__emphasis_underscore_no_link] = STATE(1169), - [sym__strong_emphasis_underscore_no_link] = STATE(230), - [aux_sym__inline_base_repeat1] = STATE(274), - [sym__backslash_escape] = ACTIONS(1123), - [sym_entity_reference] = ACTIONS(1125), - [sym_numeric_character_reference] = ACTIONS(1125), - [anon_sym_LT] = ACTIONS(1127), - [anon_sym_GT] = ACTIONS(1129), - [anon_sym_BANG] = ACTIONS(1131), - [anon_sym_DQUOTE] = ACTIONS(1129), - [anon_sym_POUND] = ACTIONS(1129), - [anon_sym_DOLLAR] = ACTIONS(1129), - [anon_sym_PERCENT] = ACTIONS(1129), - [anon_sym_AMP] = ACTIONS(1127), - [anon_sym_SQUOTE] = ACTIONS(1129), - [anon_sym_STAR] = ACTIONS(1129), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_COMMA] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1127), - [anon_sym_DOT] = ACTIONS(1127), - [anon_sym_SLASH] = ACTIONS(1129), - [anon_sym_COLON] = ACTIONS(1129), - [anon_sym_SEMI] = ACTIONS(1129), - [anon_sym_EQ] = ACTIONS(1129), - [anon_sym_QMARK] = ACTIONS(1129), - [anon_sym_BSLASH] = ACTIONS(1135), - [anon_sym_CARET] = ACTIONS(1127), - [anon_sym__] = ACTIONS(1129), - [anon_sym_BQUOTE] = ACTIONS(1129), - [anon_sym_LBRACE] = ACTIONS(1137), - [anon_sym_PIPE] = ACTIONS(1129), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1129), - [anon_sym_RPAREN] = ACTIONS(1129), - [sym__newline_token] = ACTIONS(1139), - [anon_sym_CARET_LBRACK] = ACTIONS(1141), - [anon_sym_LBRACK_CARET] = ACTIONS(1143), - [sym_uri_autolink] = ACTIONS(1125), - [sym_email_autolink] = ACTIONS(1125), - [sym__whitespace_ge_2] = ACTIONS(1145), - [aux_sym__whitespace_token1] = ACTIONS(1147), - [sym__word_no_digit] = ACTIONS(1149), - [sym__digits] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1151), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1149), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1149), - [sym__code_span_start] = ACTIONS(1153), - [sym__emphasis_open_star] = ACTIONS(2723), - [sym__emphasis_open_underscore] = ACTIONS(2725), - [sym__strikeout_open] = ACTIONS(1161), - [sym__latex_span_start] = ACTIONS(1163), - [sym__single_quote_open] = ACTIONS(1165), - [sym__double_quote_open] = ACTIONS(1167), - [sym__superscript_open] = ACTIONS(1169), - [sym__subscript_open] = ACTIONS(1171), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1173), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1175), - [sym__cite_author_in_text] = ACTIONS(1177), - [sym__cite_suppress_author] = ACTIONS(1179), - [sym__shortcode_open_escaped] = ACTIONS(1181), - [sym__shortcode_open] = ACTIONS(1183), - [sym__unclosed_span] = ACTIONS(1125), + [sym_backslash_escape] = STATE(375), + [sym_commonmark_attribute] = STATE(375), + [sym_code_span] = STATE(375), + [sym_latex_span] = STATE(375), + [sym_insert] = STATE(375), + [sym_delete] = STATE(375), + [sym_highlight] = STATE(375), + [sym_edit_comment] = STATE(375), + [sym_superscript] = STATE(375), + [sym_subscript] = STATE(375), + [sym_strikeout] = STATE(375), + [sym_quoted_span] = STATE(375), + [sym_inline_note] = STATE(375), + [sym_citation] = STATE(375), + [sym_shortcode_escaped] = STATE(375), + [sym_shortcode] = STATE(375), + [sym_note_reference] = STATE(375), + [sym__link_text] = STATE(525), + [sym__link_text_non_empty] = STATE(527), + [sym_inline_link] = STATE(47), + [sym_image] = STATE(375), + [sym__image_inline_link] = STATE(972), + [sym__image_description] = STATE(2286), + [sym__image_description_non_empty] = STATE(2286), + [sym_hard_line_break] = STATE(375), + [sym__whitespace] = STATE(949), + [sym__word] = STATE(949), + [sym__soft_line_break] = STATE(973), + [sym__inline_base] = STATE(47), + [sym__text_base] = STATE(375), + [sym__inline_element] = STATE(47), + [sym__emphasis_star] = STATE(1392), + [sym__strong_emphasis_star] = STATE(47), + [sym__emphasis_underscore] = STATE(1392), + [sym__strong_emphasis_underscore] = STATE(47), + [aux_sym_insert_repeat1] = STATE(47), + [aux_sym__inline_base_repeat1] = STATE(375), + [sym__backslash_escape] = ACTIONS(2179), + [sym_entity_reference] = ACTIONS(2181), + [sym_numeric_character_reference] = ACTIONS(2181), + [anon_sym_LT] = ACTIONS(2183), + [anon_sym_GT] = ACTIONS(2185), + [anon_sym_BANG] = ACTIONS(2187), + [anon_sym_DQUOTE] = ACTIONS(2185), + [anon_sym_POUND] = ACTIONS(2185), + [anon_sym_DOLLAR] = ACTIONS(2185), + [anon_sym_PERCENT] = ACTIONS(2185), + [anon_sym_AMP] = ACTIONS(2183), + [anon_sym_SQUOTE] = ACTIONS(2185), + [anon_sym_STAR] = ACTIONS(2185), + [anon_sym_PLUS] = ACTIONS(2185), + [anon_sym_COMMA] = ACTIONS(2185), + [anon_sym_DASH] = ACTIONS(2183), + [anon_sym_DOT] = ACTIONS(2183), + [anon_sym_SLASH] = ACTIONS(2185), + [anon_sym_COLON] = ACTIONS(2185), + [anon_sym_SEMI] = ACTIONS(2185), + [anon_sym_EQ] = ACTIONS(2185), + [anon_sym_QMARK] = ACTIONS(2185), + [anon_sym_LBRACK] = ACTIONS(2189), + [anon_sym_BSLASH] = ACTIONS(2191), + [anon_sym_CARET] = ACTIONS(2183), + [anon_sym__] = ACTIONS(2185), + [anon_sym_BQUOTE] = ACTIONS(2185), + [anon_sym_LBRACE] = ACTIONS(2193), + [anon_sym_PIPE] = ACTIONS(2185), + [anon_sym_TILDE] = ACTIONS(2185), + [anon_sym_LPAREN] = ACTIONS(2185), + [anon_sym_RPAREN] = ACTIONS(2185), + [sym__newline_token] = ACTIONS(2195), + [aux_sym_insert_token1] = ACTIONS(2197), + [aux_sym_delete_token1] = ACTIONS(2199), + [aux_sym_highlight_token1] = ACTIONS(2201), + [aux_sym_edit_comment_token1] = ACTIONS(2203), + [anon_sym_CARET_LBRACK] = ACTIONS(2205), + [anon_sym_LBRACK_CARET] = ACTIONS(2207), + [sym_uri_autolink] = ACTIONS(2181), + [sym_email_autolink] = ACTIONS(2181), + [sym__whitespace_ge_2] = ACTIONS(2209), + [aux_sym__whitespace_token1] = ACTIONS(2211), + [sym__word_no_digit] = ACTIONS(2213), + [sym__digits] = ACTIONS(2213), + [anon_sym_DASH_DASH] = ACTIONS(2215), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2213), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2213), + [sym__code_span_start] = ACTIONS(2217), + [sym__emphasis_open_star] = ACTIONS(2219), + [sym__emphasis_open_underscore] = ACTIONS(2221), + [sym__strikeout_open] = ACTIONS(2223), + [sym__latex_span_start] = ACTIONS(2225), + [sym__single_quote_open] = ACTIONS(2227), + [sym__single_quote_close] = ACTIONS(2709), + [sym__double_quote_open] = ACTIONS(2229), + [sym__superscript_open] = ACTIONS(2231), + [sym__subscript_open] = ACTIONS(2233), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2235), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2237), + [sym__cite_author_in_text] = ACTIONS(2239), + [sym__cite_suppress_author] = ACTIONS(2241), + [sym__shortcode_open_escaped] = ACTIONS(2243), + [sym__shortcode_open] = ACTIONS(2245), + [sym__unclosed_span] = ACTIONS(2181), }, [STATE(258)] = { - [sym_backslash_escape] = STATE(261), - [sym_commonmark_attribute] = STATE(261), - [sym_code_span] = STATE(261), - [sym_latex_span] = STATE(261), - [sym_superscript] = STATE(261), - [sym_subscript] = STATE(261), - [sym_strikeout] = STATE(261), - [sym_quoted_span] = STATE(261), - [sym_inline_note] = STATE(261), - [sym_citation] = STATE(261), - [sym_shortcode_escaped] = STATE(261), - [sym_shortcode] = STATE(261), - [sym_note_reference] = STATE(261), - [sym_image] = STATE(261), - [sym__image_inline_link] = STATE(595), - [sym__image_description] = STATE(1972), - [sym__image_description_non_empty] = STATE(1972), - [sym_hard_line_break] = STATE(261), - [sym__whitespace] = STATE(587), - [sym__word] = STATE(587), - [sym__soft_line_break] = STATE(597), - [sym__inline_base] = STATE(253), - [sym__text_base] = STATE(261), - [sym__inline_element_no_star_no_link] = STATE(253), - [aux_sym__inline_no_star_no_link] = STATE(253), - [sym__emphasis_star_no_link] = STATE(1145), - [sym__strong_emphasis_star_no_link] = STATE(253), - [sym__emphasis_underscore_no_link] = STATE(1145), - [sym__strong_emphasis_underscore_no_link] = STATE(253), - [aux_sym__inline_base_repeat1] = STATE(261), - [sym__backslash_escape] = ACTIONS(969), - [sym_entity_reference] = ACTIONS(971), - [sym_numeric_character_reference] = ACTIONS(971), - [anon_sym_LT] = ACTIONS(973), - [anon_sym_GT] = ACTIONS(975), - [anon_sym_BANG] = ACTIONS(977), - [anon_sym_DQUOTE] = ACTIONS(975), - [anon_sym_POUND] = ACTIONS(975), - [anon_sym_DOLLAR] = ACTIONS(975), - [anon_sym_PERCENT] = ACTIONS(975), - [anon_sym_AMP] = ACTIONS(973), - [anon_sym_SQUOTE] = ACTIONS(975), - [anon_sym_STAR] = ACTIONS(975), - [anon_sym_PLUS] = ACTIONS(975), - [anon_sym_COMMA] = ACTIONS(975), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_DOT] = ACTIONS(973), - [anon_sym_SLASH] = ACTIONS(975), - [anon_sym_COLON] = ACTIONS(975), - [anon_sym_SEMI] = ACTIONS(975), - [anon_sym_EQ] = ACTIONS(975), - [anon_sym_QMARK] = ACTIONS(975), - [anon_sym_BSLASH] = ACTIONS(981), - [anon_sym_CARET] = ACTIONS(973), - [anon_sym__] = ACTIONS(975), - [anon_sym_BQUOTE] = ACTIONS(975), - [anon_sym_LBRACE] = ACTIONS(983), - [anon_sym_PIPE] = ACTIONS(975), - [anon_sym_TILDE] = ACTIONS(975), - [anon_sym_LPAREN] = ACTIONS(975), - [anon_sym_RPAREN] = ACTIONS(975), - [sym__newline_token] = ACTIONS(985), - [anon_sym_CARET_LBRACK] = ACTIONS(987), - [anon_sym_LBRACK_CARET] = ACTIONS(989), - [sym_uri_autolink] = ACTIONS(971), - [sym_email_autolink] = ACTIONS(971), - [sym__whitespace_ge_2] = ACTIONS(991), - [aux_sym__whitespace_token1] = ACTIONS(993), - [sym__word_no_digit] = ACTIONS(995), - [sym__digits] = ACTIONS(995), - [anon_sym_DASH_DASH] = ACTIONS(997), - [anon_sym_DASH_DASH_DASH] = ACTIONS(995), - [anon_sym_DOT_DOT_DOT] = ACTIONS(995), - [sym__code_span_start] = ACTIONS(999), - [sym__emphasis_open_star] = ACTIONS(2531), - [sym__emphasis_open_underscore] = ACTIONS(2533), - [sym__strikeout_open] = ACTIONS(1007), - [sym__latex_span_start] = ACTIONS(1009), - [sym__single_quote_open] = ACTIONS(1011), - [sym__double_quote_open] = ACTIONS(1013), - [sym__superscript_open] = ACTIONS(1015), - [sym__subscript_open] = ACTIONS(1017), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1019), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1021), - [sym__cite_author_in_text] = ACTIONS(1023), - [sym__cite_suppress_author] = ACTIONS(1025), - [sym__shortcode_open_escaped] = ACTIONS(1027), - [sym__shortcode_open] = ACTIONS(1029), - [sym__unclosed_span] = ACTIONS(971), + [sym_backslash_escape] = STATE(383), + [sym_commonmark_attribute] = STATE(383), + [sym_code_span] = STATE(383), + [sym_latex_span] = STATE(383), + [sym_insert] = STATE(383), + [sym_delete] = STATE(383), + [sym_highlight] = STATE(383), + [sym_edit_comment] = STATE(383), + [sym_superscript] = STATE(383), + [sym_subscript] = STATE(383), + [sym_strikeout] = STATE(383), + [sym_quoted_span] = STATE(383), + [sym_inline_note] = STATE(383), + [sym_citation] = STATE(383), + [sym_shortcode_escaped] = STATE(383), + [sym_shortcode] = STATE(383), + [sym_note_reference] = STATE(383), + [sym__link_text] = STATE(395), + [sym__link_text_non_empty] = STATE(396), + [sym_inline_link] = STATE(50), + [sym_image] = STATE(383), + [sym__image_inline_link] = STATE(1263), + [sym__image_description] = STATE(2300), + [sym__image_description_non_empty] = STATE(2300), + [sym_hard_line_break] = STATE(383), + [sym__whitespace] = STATE(1259), + [sym__word] = STATE(1259), + [sym__soft_line_break] = STATE(1264), + [sym__inline_base] = STATE(50), + [sym__text_base] = STATE(383), + [sym__inline_element] = STATE(50), + [sym__emphasis_star] = STATE(1249), + [sym__strong_emphasis_star] = STATE(50), + [sym__emphasis_underscore] = STATE(1249), + [sym__strong_emphasis_underscore] = STATE(50), + [aux_sym_insert_repeat1] = STATE(50), + [aux_sym__inline_base_repeat1] = STATE(383), + [sym__backslash_escape] = ACTIONS(637), + [sym_entity_reference] = ACTIONS(639), + [sym_numeric_character_reference] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_GT] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(645), + [anon_sym_DQUOTE] = ACTIONS(643), + [anon_sym_POUND] = ACTIONS(643), + [anon_sym_DOLLAR] = ACTIONS(643), + [anon_sym_PERCENT] = ACTIONS(643), + [anon_sym_AMP] = ACTIONS(641), + [anon_sym_SQUOTE] = ACTIONS(643), + [anon_sym_STAR] = ACTIONS(643), + [anon_sym_PLUS] = ACTIONS(643), + [anon_sym_COMMA] = ACTIONS(643), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_DOT] = ACTIONS(641), + [anon_sym_SLASH] = ACTIONS(643), + [anon_sym_COLON] = ACTIONS(643), + [anon_sym_SEMI] = ACTIONS(643), + [anon_sym_EQ] = ACTIONS(643), + [anon_sym_QMARK] = ACTIONS(643), + [anon_sym_LBRACK] = ACTIONS(647), + [anon_sym_BSLASH] = ACTIONS(649), + [anon_sym_CARET] = ACTIONS(641), + [anon_sym__] = ACTIONS(643), + [anon_sym_BQUOTE] = ACTIONS(643), + [anon_sym_LBRACE] = ACTIONS(651), + [anon_sym_PIPE] = ACTIONS(643), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_LPAREN] = ACTIONS(643), + [anon_sym_RPAREN] = ACTIONS(643), + [sym__newline_token] = ACTIONS(653), + [aux_sym_insert_token1] = ACTIONS(655), + [aux_sym_delete_token1] = ACTIONS(657), + [aux_sym_highlight_token1] = ACTIONS(659), + [aux_sym_edit_comment_token1] = ACTIONS(661), + [anon_sym_CARET_LBRACK] = ACTIONS(663), + [anon_sym_LBRACK_CARET] = ACTIONS(665), + [sym_uri_autolink] = ACTIONS(639), + [sym_email_autolink] = ACTIONS(639), + [sym__whitespace_ge_2] = ACTIONS(667), + [aux_sym__whitespace_token1] = ACTIONS(669), + [sym__word_no_digit] = ACTIONS(671), + [sym__digits] = ACTIONS(671), + [anon_sym_DASH_DASH] = ACTIONS(673), + [anon_sym_DASH_DASH_DASH] = ACTIONS(671), + [anon_sym_DOT_DOT_DOT] = ACTIONS(671), + [sym__code_span_start] = ACTIONS(675), + [sym__emphasis_open_star] = ACTIONS(677), + [sym__emphasis_open_underscore] = ACTIONS(679), + [sym__strikeout_open] = ACTIONS(681), + [sym__latex_span_start] = ACTIONS(683), + [sym__single_quote_open] = ACTIONS(685), + [sym__double_quote_open] = ACTIONS(687), + [sym__double_quote_close] = ACTIONS(2709), + [sym__superscript_open] = ACTIONS(691), + [sym__subscript_open] = ACTIONS(693), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(695), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(697), + [sym__cite_author_in_text] = ACTIONS(699), + [sym__cite_suppress_author] = ACTIONS(701), + [sym__shortcode_open_escaped] = ACTIONS(703), + [sym__shortcode_open] = ACTIONS(705), + [sym__unclosed_span] = ACTIONS(639), }, [STATE(259)] = { - [sym_backslash_escape] = STATE(274), - [sym_commonmark_attribute] = STATE(274), - [sym_code_span] = STATE(274), - [sym_latex_span] = STATE(274), - [sym_superscript] = STATE(274), - [sym_subscript] = STATE(274), - [sym_strikeout] = STATE(274), - [sym_quoted_span] = STATE(274), - [sym_inline_note] = STATE(274), - [sym_citation] = STATE(274), - [sym_shortcode_escaped] = STATE(274), - [sym_shortcode] = STATE(274), - [sym_note_reference] = STATE(274), - [sym_image] = STATE(274), - [sym__image_inline_link] = STATE(894), - [sym__image_description] = STATE(2008), - [sym__image_description_non_empty] = STATE(2008), - [sym_hard_line_break] = STATE(274), - [sym__whitespace] = STATE(882), - [sym__word] = STATE(882), - [sym__soft_line_break] = STATE(898), - [sym__inline_base] = STATE(237), - [sym__text_base] = STATE(274), - [sym__inline_element_no_underscore_no_link] = STATE(237), - [aux_sym__inline_no_underscore_no_link] = STATE(237), - [sym__emphasis_star_no_link] = STATE(1169), - [sym__strong_emphasis_star_no_link] = STATE(237), - [sym__emphasis_underscore_no_link] = STATE(1169), - [sym__strong_emphasis_underscore_no_link] = STATE(237), - [aux_sym__inline_base_repeat1] = STATE(274), - [sym__backslash_escape] = ACTIONS(1123), - [sym_entity_reference] = ACTIONS(1125), - [sym_numeric_character_reference] = ACTIONS(1125), - [anon_sym_LT] = ACTIONS(1127), - [anon_sym_GT] = ACTIONS(1129), - [anon_sym_BANG] = ACTIONS(1131), - [anon_sym_DQUOTE] = ACTIONS(1129), - [anon_sym_POUND] = ACTIONS(1129), - [anon_sym_DOLLAR] = ACTIONS(1129), - [anon_sym_PERCENT] = ACTIONS(1129), - [anon_sym_AMP] = ACTIONS(1127), - [anon_sym_SQUOTE] = ACTIONS(1129), - [anon_sym_STAR] = ACTIONS(1129), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_COMMA] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1127), - [anon_sym_DOT] = ACTIONS(1127), - [anon_sym_SLASH] = ACTIONS(1129), - [anon_sym_COLON] = ACTIONS(1129), - [anon_sym_SEMI] = ACTIONS(1129), - [anon_sym_EQ] = ACTIONS(1129), - [anon_sym_QMARK] = ACTIONS(1129), - [anon_sym_BSLASH] = ACTIONS(1135), - [anon_sym_CARET] = ACTIONS(1127), - [anon_sym__] = ACTIONS(1129), - [anon_sym_BQUOTE] = ACTIONS(1129), - [anon_sym_LBRACE] = ACTIONS(1137), - [anon_sym_PIPE] = ACTIONS(1129), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1129), - [anon_sym_RPAREN] = ACTIONS(1129), - [sym__newline_token] = ACTIONS(1139), - [anon_sym_CARET_LBRACK] = ACTIONS(1141), - [anon_sym_LBRACK_CARET] = ACTIONS(1143), - [sym_uri_autolink] = ACTIONS(1125), - [sym_email_autolink] = ACTIONS(1125), - [sym__whitespace_ge_2] = ACTIONS(1145), - [aux_sym__whitespace_token1] = ACTIONS(1147), - [sym__word_no_digit] = ACTIONS(1149), - [sym__digits] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1151), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1149), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1149), - [sym__code_span_start] = ACTIONS(1153), - [sym__emphasis_open_star] = ACTIONS(2723), - [sym__emphasis_open_underscore] = ACTIONS(2725), - [sym__strikeout_open] = ACTIONS(1161), - [sym__latex_span_start] = ACTIONS(1163), - [sym__single_quote_open] = ACTIONS(1165), - [sym__double_quote_open] = ACTIONS(1167), - [sym__superscript_open] = ACTIONS(1169), - [sym__subscript_open] = ACTIONS(1171), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1173), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1175), - [sym__cite_author_in_text] = ACTIONS(1177), - [sym__cite_suppress_author] = ACTIONS(1179), - [sym__shortcode_open_escaped] = ACTIONS(1181), - [sym__shortcode_open] = ACTIONS(1183), - [sym__unclosed_span] = ACTIONS(1125), + [sym_backslash_escape] = STATE(365), + [sym_commonmark_attribute] = STATE(365), + [sym_code_span] = STATE(365), + [sym_latex_span] = STATE(365), + [sym_insert] = STATE(365), + [sym_delete] = STATE(365), + [sym_highlight] = STATE(365), + [sym_edit_comment] = STATE(365), + [sym_superscript] = STATE(365), + [sym_subscript] = STATE(365), + [sym_strikeout] = STATE(365), + [sym_quoted_span] = STATE(365), + [sym_inline_note] = STATE(365), + [sym_citation] = STATE(365), + [sym_shortcode_escaped] = STATE(365), + [sym_shortcode] = STATE(365), + [sym_note_reference] = STATE(365), + [sym__link_text] = STATE(416), + [sym__link_text_non_empty] = STATE(417), + [sym_inline_link] = STATE(52), + [sym_image] = STATE(365), + [sym__image_inline_link] = STATE(712), + [sym__image_description] = STATE(2314), + [sym__image_description_non_empty] = STATE(2314), + [sym_hard_line_break] = STATE(365), + [sym__whitespace] = STATE(709), + [sym__word] = STATE(709), + [sym__soft_line_break] = STATE(713), + [sym__inline_base] = STATE(52), + [sym__text_base] = STATE(365), + [sym__inline_element] = STATE(52), + [sym__emphasis_star] = STATE(979), + [sym__strong_emphasis_star] = STATE(52), + [sym__emphasis_underscore] = STATE(979), + [sym__strong_emphasis_underscore] = STATE(52), + [aux_sym_insert_repeat1] = STATE(52), + [aux_sym__inline_base_repeat1] = STATE(365), + [sym__backslash_escape] = ACTIONS(1341), + [sym_entity_reference] = ACTIONS(1343), + [sym_numeric_character_reference] = ACTIONS(1343), + [anon_sym_LT] = ACTIONS(1345), + [anon_sym_GT] = ACTIONS(1347), + [anon_sym_BANG] = ACTIONS(1349), + [anon_sym_DQUOTE] = ACTIONS(1347), + [anon_sym_POUND] = ACTIONS(1347), + [anon_sym_DOLLAR] = ACTIONS(1347), + [anon_sym_PERCENT] = ACTIONS(1347), + [anon_sym_AMP] = ACTIONS(1345), + [anon_sym_SQUOTE] = ACTIONS(1347), + [anon_sym_STAR] = ACTIONS(1347), + [anon_sym_PLUS] = ACTIONS(1347), + [anon_sym_COMMA] = ACTIONS(1347), + [anon_sym_DASH] = ACTIONS(1345), + [anon_sym_DOT] = ACTIONS(1345), + [anon_sym_SLASH] = ACTIONS(1347), + [anon_sym_COLON] = ACTIONS(1347), + [anon_sym_SEMI] = ACTIONS(1347), + [anon_sym_EQ] = ACTIONS(1347), + [anon_sym_QMARK] = ACTIONS(1347), + [anon_sym_LBRACK] = ACTIONS(1351), + [anon_sym_BSLASH] = ACTIONS(1353), + [anon_sym_CARET] = ACTIONS(1345), + [anon_sym__] = ACTIONS(1347), + [anon_sym_BQUOTE] = ACTIONS(1347), + [anon_sym_LBRACE] = ACTIONS(1355), + [anon_sym_PIPE] = ACTIONS(1347), + [anon_sym_TILDE] = ACTIONS(1347), + [anon_sym_LPAREN] = ACTIONS(1347), + [anon_sym_RPAREN] = ACTIONS(1347), + [sym__newline_token] = ACTIONS(1357), + [aux_sym_insert_token1] = ACTIONS(1359), + [aux_sym_delete_token1] = ACTIONS(1361), + [aux_sym_highlight_token1] = ACTIONS(1363), + [aux_sym_edit_comment_token1] = ACTIONS(1365), + [anon_sym_CARET_LBRACK] = ACTIONS(1367), + [anon_sym_LBRACK_CARET] = ACTIONS(1369), + [sym_uri_autolink] = ACTIONS(1343), + [sym_email_autolink] = ACTIONS(1343), + [sym__whitespace_ge_2] = ACTIONS(1371), + [aux_sym__whitespace_token1] = ACTIONS(1373), + [sym__word_no_digit] = ACTIONS(1375), + [sym__digits] = ACTIONS(1375), + [anon_sym_DASH_DASH] = ACTIONS(1377), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1375), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1375), + [sym__code_span_start] = ACTIONS(1379), + [sym__emphasis_open_star] = ACTIONS(1381), + [sym__emphasis_open_underscore] = ACTIONS(1383), + [sym__strikeout_open] = ACTIONS(1385), + [sym__latex_span_start] = ACTIONS(1387), + [sym__single_quote_open] = ACTIONS(1389), + [sym__double_quote_open] = ACTIONS(1391), + [sym__superscript_open] = ACTIONS(1393), + [sym__superscript_close] = ACTIONS(2711), + [sym__subscript_open] = ACTIONS(1397), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1399), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1401), + [sym__cite_author_in_text] = ACTIONS(1403), + [sym__cite_suppress_author] = ACTIONS(1405), + [sym__shortcode_open_escaped] = ACTIONS(1407), + [sym__shortcode_open] = ACTIONS(1409), + [sym__unclosed_span] = ACTIONS(1343), }, [STATE(260)] = { - [sym_backslash_escape] = STATE(260), - [sym_commonmark_attribute] = STATE(260), - [sym_code_span] = STATE(260), - [sym_latex_span] = STATE(260), - [sym_superscript] = STATE(260), - [sym_subscript] = STATE(260), - [sym_strikeout] = STATE(260), - [sym_quoted_span] = STATE(260), - [sym_inline_note] = STATE(260), - [sym_citation] = STATE(260), - [sym_shortcode_escaped] = STATE(260), - [sym_shortcode] = STATE(260), - [sym_note_reference] = STATE(260), - [sym_image] = STATE(260), - [sym__image_inline_link] = STATE(894), - [sym__image_description] = STATE(2008), - [sym__image_description_non_empty] = STATE(2008), - [sym_hard_line_break] = STATE(260), - [sym__whitespace] = STATE(882), - [sym__word] = STATE(882), - [sym__soft_line_break] = STATE(898), - [sym__text_base] = STATE(260), - [aux_sym__inline_base_repeat1] = STATE(260), - [sym__backslash_escape] = ACTIONS(2874), - [sym_entity_reference] = ACTIONS(2877), - [sym_numeric_character_reference] = ACTIONS(2877), - [anon_sym_LT] = ACTIONS(2880), - [anon_sym_GT] = ACTIONS(2883), - [anon_sym_BANG] = ACTIONS(2886), - [anon_sym_DQUOTE] = ACTIONS(2883), - [anon_sym_POUND] = ACTIONS(2883), - [anon_sym_DOLLAR] = ACTIONS(2883), - [anon_sym_PERCENT] = ACTIONS(2883), - [anon_sym_AMP] = ACTIONS(2880), - [anon_sym_SQUOTE] = ACTIONS(2883), - [anon_sym_STAR] = ACTIONS(2883), - [anon_sym_PLUS] = ACTIONS(2883), - [anon_sym_COMMA] = ACTIONS(2883), - [anon_sym_DASH] = ACTIONS(2880), - [anon_sym_DOT] = ACTIONS(2880), - [anon_sym_SLASH] = ACTIONS(2883), - [anon_sym_COLON] = ACTIONS(2883), - [anon_sym_SEMI] = ACTIONS(2883), - [anon_sym_EQ] = ACTIONS(2883), - [anon_sym_QMARK] = ACTIONS(2883), - [anon_sym_LBRACK] = ACTIONS(2889), - [anon_sym_BSLASH] = ACTIONS(2891), - [anon_sym_CARET] = ACTIONS(2880), - [anon_sym__] = ACTIONS(2883), - [anon_sym_BQUOTE] = ACTIONS(2883), - [anon_sym_LBRACE] = ACTIONS(2894), - [anon_sym_PIPE] = ACTIONS(2883), - [anon_sym_TILDE] = ACTIONS(2883), - [anon_sym_LPAREN] = ACTIONS(2883), - [anon_sym_RPAREN] = ACTIONS(2883), - [sym__newline_token] = ACTIONS(2897), - [anon_sym_CARET_LBRACK] = ACTIONS(2900), - [anon_sym_LBRACK_CARET] = ACTIONS(2903), - [sym_uri_autolink] = ACTIONS(2877), - [sym_email_autolink] = ACTIONS(2877), - [sym__whitespace_ge_2] = ACTIONS(2906), - [aux_sym__whitespace_token1] = ACTIONS(2909), - [sym__word_no_digit] = ACTIONS(2912), - [sym__digits] = ACTIONS(2912), - [anon_sym_DASH_DASH] = ACTIONS(2915), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2912), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2912), - [sym__code_span_start] = ACTIONS(2918), - [sym__emphasis_open_star] = ACTIONS(2921), - [sym__emphasis_open_underscore] = ACTIONS(2921), - [sym__emphasis_close_underscore] = ACTIONS(2921), - [sym__strikeout_open] = ACTIONS(2923), - [sym__latex_span_start] = ACTIONS(2926), - [sym__single_quote_open] = ACTIONS(2929), - [sym__double_quote_open] = ACTIONS(2932), - [sym__superscript_open] = ACTIONS(2935), - [sym__subscript_open] = ACTIONS(2938), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2941), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2944), - [sym__cite_author_in_text] = ACTIONS(2947), - [sym__cite_suppress_author] = ACTIONS(2950), - [sym__shortcode_open_escaped] = ACTIONS(2953), - [sym__shortcode_open] = ACTIONS(2956), - [sym__unclosed_span] = ACTIONS(2877), + [sym_backslash_escape] = STATE(367), + [sym_commonmark_attribute] = STATE(367), + [sym_code_span] = STATE(367), + [sym_latex_span] = STATE(367), + [sym_insert] = STATE(367), + [sym_delete] = STATE(367), + [sym_highlight] = STATE(367), + [sym_edit_comment] = STATE(367), + [sym_superscript] = STATE(367), + [sym_subscript] = STATE(367), + [sym_strikeout] = STATE(367), + [sym_quoted_span] = STATE(367), + [sym_inline_note] = STATE(367), + [sym_citation] = STATE(367), + [sym_shortcode_escaped] = STATE(367), + [sym_shortcode] = STATE(367), + [sym_note_reference] = STATE(367), + [sym__link_text] = STATE(435), + [sym__link_text_non_empty] = STATE(436), + [sym_inline_link] = STATE(55), + [sym_image] = STATE(367), + [sym__image_inline_link] = STATE(819), + [sym__image_description] = STATE(2328), + [sym__image_description_non_empty] = STATE(2328), + [sym_hard_line_break] = STATE(367), + [sym__whitespace] = STATE(816), + [sym__word] = STATE(816), + [sym__soft_line_break] = STATE(820), + [sym__inline_base] = STATE(55), + [sym__text_base] = STATE(367), + [sym__inline_element] = STATE(55), + [sym__emphasis_star] = STATE(1271), + [sym__strong_emphasis_star] = STATE(55), + [sym__emphasis_underscore] = STATE(1271), + [sym__strong_emphasis_underscore] = STATE(55), + [aux_sym_insert_repeat1] = STATE(55), + [aux_sym__inline_base_repeat1] = STATE(367), + [sym__backslash_escape] = ACTIONS(1413), + [sym_entity_reference] = ACTIONS(1415), + [sym_numeric_character_reference] = ACTIONS(1415), + [anon_sym_LT] = ACTIONS(1417), + [anon_sym_GT] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1419), + [anon_sym_POUND] = ACTIONS(1419), + [anon_sym_DOLLAR] = ACTIONS(1419), + [anon_sym_PERCENT] = ACTIONS(1419), + [anon_sym_AMP] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [anon_sym_STAR] = ACTIONS(1419), + [anon_sym_PLUS] = ACTIONS(1419), + [anon_sym_COMMA] = ACTIONS(1419), + [anon_sym_DASH] = ACTIONS(1417), + [anon_sym_DOT] = ACTIONS(1417), + [anon_sym_SLASH] = ACTIONS(1419), + [anon_sym_COLON] = ACTIONS(1419), + [anon_sym_SEMI] = ACTIONS(1419), + [anon_sym_EQ] = ACTIONS(1419), + [anon_sym_QMARK] = ACTIONS(1419), + [anon_sym_LBRACK] = ACTIONS(1423), + [anon_sym_BSLASH] = ACTIONS(1425), + [anon_sym_CARET] = ACTIONS(1417), + [anon_sym__] = ACTIONS(1419), + [anon_sym_BQUOTE] = ACTIONS(1419), + [anon_sym_LBRACE] = ACTIONS(1427), + [anon_sym_PIPE] = ACTIONS(1419), + [anon_sym_TILDE] = ACTIONS(1419), + [anon_sym_LPAREN] = ACTIONS(1419), + [anon_sym_RPAREN] = ACTIONS(1419), + [sym__newline_token] = ACTIONS(1429), + [aux_sym_insert_token1] = ACTIONS(1431), + [aux_sym_delete_token1] = ACTIONS(1433), + [aux_sym_highlight_token1] = ACTIONS(1435), + [aux_sym_edit_comment_token1] = ACTIONS(1437), + [anon_sym_CARET_LBRACK] = ACTIONS(1439), + [anon_sym_LBRACK_CARET] = ACTIONS(1441), + [sym_uri_autolink] = ACTIONS(1415), + [sym_email_autolink] = ACTIONS(1415), + [sym__whitespace_ge_2] = ACTIONS(1443), + [aux_sym__whitespace_token1] = ACTIONS(1445), + [sym__word_no_digit] = ACTIONS(1447), + [sym__digits] = ACTIONS(1447), + [anon_sym_DASH_DASH] = ACTIONS(1449), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1447), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1447), + [sym__code_span_start] = ACTIONS(1451), + [sym__emphasis_open_star] = ACTIONS(1453), + [sym__emphasis_open_underscore] = ACTIONS(1455), + [sym__strikeout_open] = ACTIONS(1457), + [sym__latex_span_start] = ACTIONS(1459), + [sym__single_quote_open] = ACTIONS(1461), + [sym__double_quote_open] = ACTIONS(1463), + [sym__superscript_open] = ACTIONS(1465), + [sym__subscript_open] = ACTIONS(1467), + [sym__subscript_close] = ACTIONS(2713), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1471), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1473), + [sym__cite_author_in_text] = ACTIONS(1475), + [sym__cite_suppress_author] = ACTIONS(1477), + [sym__shortcode_open_escaped] = ACTIONS(1479), + [sym__shortcode_open] = ACTIONS(1481), + [sym__unclosed_span] = ACTIONS(1415), }, [STATE(261)] = { - [sym_backslash_escape] = STATE(268), - [sym_commonmark_attribute] = STATE(268), - [sym_code_span] = STATE(268), - [sym_latex_span] = STATE(268), - [sym_superscript] = STATE(268), - [sym_subscript] = STATE(268), - [sym_strikeout] = STATE(268), - [sym_quoted_span] = STATE(268), - [sym_inline_note] = STATE(268), - [sym_citation] = STATE(268), - [sym_shortcode_escaped] = STATE(268), - [sym_shortcode] = STATE(268), - [sym_note_reference] = STATE(268), - [sym_image] = STATE(268), - [sym__image_inline_link] = STATE(595), - [sym__image_description] = STATE(1972), - [sym__image_description_non_empty] = STATE(1972), - [sym_hard_line_break] = STATE(268), - [sym__whitespace] = STATE(587), - [sym__word] = STATE(587), - [sym__soft_line_break] = STATE(597), - [sym__text_base] = STATE(268), - [aux_sym__inline_base_repeat1] = STATE(268), - [sym__backslash_escape] = ACTIONS(969), - [sym_entity_reference] = ACTIONS(2959), - [sym_numeric_character_reference] = ACTIONS(2959), - [anon_sym_LT] = ACTIONS(973), - [anon_sym_GT] = ACTIONS(975), - [anon_sym_BANG] = ACTIONS(977), - [anon_sym_DQUOTE] = ACTIONS(975), - [anon_sym_POUND] = ACTIONS(975), - [anon_sym_DOLLAR] = ACTIONS(975), - [anon_sym_PERCENT] = ACTIONS(975), - [anon_sym_AMP] = ACTIONS(973), - [anon_sym_SQUOTE] = ACTIONS(975), - [anon_sym_STAR] = ACTIONS(975), - [anon_sym_PLUS] = ACTIONS(975), - [anon_sym_COMMA] = ACTIONS(975), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_DOT] = ACTIONS(973), - [anon_sym_SLASH] = ACTIONS(975), - [anon_sym_COLON] = ACTIONS(975), - [anon_sym_SEMI] = ACTIONS(975), - [anon_sym_EQ] = ACTIONS(975), - [anon_sym_QMARK] = ACTIONS(975), - [anon_sym_LBRACK] = ACTIONS(2961), - [anon_sym_BSLASH] = ACTIONS(981), - [anon_sym_CARET] = ACTIONS(973), - [anon_sym__] = ACTIONS(975), - [anon_sym_BQUOTE] = ACTIONS(975), - [anon_sym_LBRACE] = ACTIONS(983), - [anon_sym_PIPE] = ACTIONS(975), - [anon_sym_TILDE] = ACTIONS(975), - [anon_sym_LPAREN] = ACTIONS(975), - [anon_sym_RPAREN] = ACTIONS(975), - [sym__newline_token] = ACTIONS(985), - [anon_sym_CARET_LBRACK] = ACTIONS(987), - [anon_sym_LBRACK_CARET] = ACTIONS(989), - [sym_uri_autolink] = ACTIONS(2959), - [sym_email_autolink] = ACTIONS(2959), - [sym__whitespace_ge_2] = ACTIONS(991), - [aux_sym__whitespace_token1] = ACTIONS(993), - [sym__word_no_digit] = ACTIONS(995), - [sym__digits] = ACTIONS(995), - [anon_sym_DASH_DASH] = ACTIONS(997), - [anon_sym_DASH_DASH_DASH] = ACTIONS(995), - [anon_sym_DOT_DOT_DOT] = ACTIONS(995), - [sym__code_span_start] = ACTIONS(999), - [sym__emphasis_open_star] = ACTIONS(2963), - [sym__emphasis_open_underscore] = ACTIONS(2963), - [sym__emphasis_close_star] = ACTIONS(2963), - [sym__strikeout_open] = ACTIONS(1007), - [sym__latex_span_start] = ACTIONS(1009), - [sym__single_quote_open] = ACTIONS(1011), - [sym__double_quote_open] = ACTIONS(1013), - [sym__superscript_open] = ACTIONS(1015), - [sym__subscript_open] = ACTIONS(1017), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1019), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1021), - [sym__cite_author_in_text] = ACTIONS(1023), - [sym__cite_suppress_author] = ACTIONS(1025), - [sym__shortcode_open_escaped] = ACTIONS(1027), - [sym__shortcode_open] = ACTIONS(1029), - [sym__unclosed_span] = ACTIONS(2959), + [sym_backslash_escape] = STATE(372), + [sym_commonmark_attribute] = STATE(372), + [sym_code_span] = STATE(372), + [sym_latex_span] = STATE(372), + [sym_insert] = STATE(372), + [sym_delete] = STATE(372), + [sym_highlight] = STATE(372), + [sym_edit_comment] = STATE(372), + [sym_superscript] = STATE(372), + [sym_subscript] = STATE(372), + [sym_strikeout] = STATE(372), + [sym_quoted_span] = STATE(372), + [sym_inline_note] = STATE(372), + [sym_citation] = STATE(372), + [sym_shortcode_escaped] = STATE(372), + [sym_shortcode] = STATE(372), + [sym_note_reference] = STATE(372), + [sym__link_text] = STATE(454), + [sym__link_text_non_empty] = STATE(455), + [sym_inline_link] = STATE(57), + [sym_image] = STATE(372), + [sym__image_inline_link] = STATE(1025), + [sym__image_description] = STATE(2356), + [sym__image_description_non_empty] = STATE(2356), + [sym_hard_line_break] = STATE(372), + [sym__whitespace] = STATE(1022), + [sym__word] = STATE(1022), + [sym__soft_line_break] = STATE(1026), + [sym__inline_base] = STATE(57), + [sym__text_base] = STATE(372), + [sym__inline_element] = STATE(57), + [sym__emphasis_star] = STATE(714), + [sym__strong_emphasis_star] = STATE(57), + [sym__emphasis_underscore] = STATE(714), + [sym__strong_emphasis_underscore] = STATE(57), + [aux_sym_insert_repeat1] = STATE(57), + [aux_sym__inline_base_repeat1] = STATE(372), + [sym__backslash_escape] = ACTIONS(707), + [sym_entity_reference] = ACTIONS(709), + [sym_numeric_character_reference] = ACTIONS(709), + [anon_sym_LT] = ACTIONS(711), + [anon_sym_GT] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(715), + [anon_sym_DQUOTE] = ACTIONS(713), + [anon_sym_POUND] = ACTIONS(713), + [anon_sym_DOLLAR] = ACTIONS(713), + [anon_sym_PERCENT] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(711), + [anon_sym_SQUOTE] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_COMMA] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_DOT] = ACTIONS(711), + [anon_sym_SLASH] = ACTIONS(713), + [anon_sym_COLON] = ACTIONS(713), + [anon_sym_SEMI] = ACTIONS(713), + [anon_sym_EQ] = ACTIONS(713), + [anon_sym_QMARK] = ACTIONS(713), + [anon_sym_LBRACK] = ACTIONS(717), + [anon_sym_BSLASH] = ACTIONS(719), + [anon_sym_CARET] = ACTIONS(711), + [anon_sym__] = ACTIONS(713), + [anon_sym_BQUOTE] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(721), + [anon_sym_PIPE] = ACTIONS(713), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_LPAREN] = ACTIONS(713), + [anon_sym_RPAREN] = ACTIONS(713), + [sym__newline_token] = ACTIONS(723), + [aux_sym_insert_token1] = ACTIONS(725), + [aux_sym_insert_token2] = ACTIONS(2715), + [aux_sym_delete_token1] = ACTIONS(729), + [aux_sym_highlight_token1] = ACTIONS(731), + [aux_sym_edit_comment_token1] = ACTIONS(733), + [anon_sym_CARET_LBRACK] = ACTIONS(735), + [anon_sym_LBRACK_CARET] = ACTIONS(737), + [sym_uri_autolink] = ACTIONS(709), + [sym_email_autolink] = ACTIONS(709), + [sym__whitespace_ge_2] = ACTIONS(739), + [aux_sym__whitespace_token1] = ACTIONS(741), + [sym__word_no_digit] = ACTIONS(743), + [sym__digits] = ACTIONS(743), + [anon_sym_DASH_DASH] = ACTIONS(745), + [anon_sym_DASH_DASH_DASH] = ACTIONS(743), + [anon_sym_DOT_DOT_DOT] = ACTIONS(743), + [sym__code_span_start] = ACTIONS(747), + [sym__emphasis_open_star] = ACTIONS(749), + [sym__emphasis_open_underscore] = ACTIONS(751), + [sym__strikeout_open] = ACTIONS(753), + [sym__latex_span_start] = ACTIONS(755), + [sym__single_quote_open] = ACTIONS(757), + [sym__double_quote_open] = ACTIONS(759), + [sym__superscript_open] = ACTIONS(761), + [sym__subscript_open] = ACTIONS(763), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(765), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(767), + [sym__cite_author_in_text] = ACTIONS(769), + [sym__cite_suppress_author] = ACTIONS(771), + [sym__shortcode_open_escaped] = ACTIONS(773), + [sym__shortcode_open] = ACTIONS(775), + [sym__unclosed_span] = ACTIONS(709), }, [STATE(262)] = { - [sym_backslash_escape] = STATE(264), - [sym_commonmark_attribute] = STATE(264), - [sym_code_span] = STATE(264), - [sym_latex_span] = STATE(264), - [sym_superscript] = STATE(264), - [sym_subscript] = STATE(264), - [sym_strikeout] = STATE(264), - [sym_quoted_span] = STATE(264), - [sym_inline_note] = STATE(264), - [sym_citation] = STATE(264), - [sym_shortcode_escaped] = STATE(264), - [sym_shortcode] = STATE(264), - [sym_note_reference] = STATE(264), - [sym_image] = STATE(264), - [sym__image_inline_link] = STATE(708), - [sym__image_description] = STATE(1970), - [sym__image_description_non_empty] = STATE(1970), - [sym_hard_line_break] = STATE(264), - [sym__whitespace] = STATE(705), - [sym__word] = STATE(705), - [sym__soft_line_break] = STATE(709), - [sym__text_base] = STATE(264), - [aux_sym__inline_base_repeat1] = STATE(264), - [sym__backslash_escape] = ACTIONS(747), - [sym_entity_reference] = ACTIONS(2965), - [sym_numeric_character_reference] = ACTIONS(2965), - [anon_sym_LT] = ACTIONS(751), - [anon_sym_GT] = ACTIONS(753), - [anon_sym_BANG] = ACTIONS(755), - [anon_sym_DQUOTE] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(753), - [anon_sym_DOLLAR] = ACTIONS(753), - [anon_sym_PERCENT] = ACTIONS(753), - [anon_sym_AMP] = ACTIONS(751), - [anon_sym_SQUOTE] = ACTIONS(753), - [anon_sym_STAR] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(753), - [anon_sym_COMMA] = ACTIONS(753), - [anon_sym_DASH] = ACTIONS(751), - [anon_sym_DOT] = ACTIONS(751), - [anon_sym_SLASH] = ACTIONS(753), - [anon_sym_COLON] = ACTIONS(753), - [anon_sym_SEMI] = ACTIONS(753), - [anon_sym_EQ] = ACTIONS(753), - [anon_sym_QMARK] = ACTIONS(753), - [anon_sym_LBRACK] = ACTIONS(2961), - [anon_sym_BSLASH] = ACTIONS(759), - [anon_sym_CARET] = ACTIONS(751), - [anon_sym__] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(753), - [anon_sym_LBRACE] = ACTIONS(761), - [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_TILDE] = ACTIONS(753), - [anon_sym_LPAREN] = ACTIONS(753), - [anon_sym_RPAREN] = ACTIONS(753), - [sym__newline_token] = ACTIONS(763), - [anon_sym_CARET_LBRACK] = ACTIONS(765), - [anon_sym_LBRACK_CARET] = ACTIONS(767), - [sym_uri_autolink] = ACTIONS(2965), - [sym_email_autolink] = ACTIONS(2965), - [sym__whitespace_ge_2] = ACTIONS(769), - [aux_sym__whitespace_token1] = ACTIONS(771), - [sym__word_no_digit] = ACTIONS(773), - [sym__digits] = ACTIONS(773), - [anon_sym_DASH_DASH] = ACTIONS(775), - [anon_sym_DASH_DASH_DASH] = ACTIONS(773), - [anon_sym_DOT_DOT_DOT] = ACTIONS(773), - [sym__code_span_start] = ACTIONS(777), - [sym__emphasis_open_star] = ACTIONS(2963), - [sym__emphasis_open_underscore] = ACTIONS(2963), - [sym__strikeout_open] = ACTIONS(783), - [sym__latex_span_start] = ACTIONS(785), - [sym__single_quote_open] = ACTIONS(787), - [sym__double_quote_open] = ACTIONS(789), - [sym__superscript_open] = ACTIONS(791), - [sym__superscript_close] = ACTIONS(2963), - [sym__subscript_open] = ACTIONS(795), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(797), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(799), - [sym__cite_author_in_text] = ACTIONS(801), - [sym__cite_suppress_author] = ACTIONS(803), - [sym__shortcode_open_escaped] = ACTIONS(805), - [sym__shortcode_open] = ACTIONS(807), - [sym__unclosed_span] = ACTIONS(2965), + [sym_backslash_escape] = STATE(372), + [sym_commonmark_attribute] = STATE(372), + [sym_code_span] = STATE(372), + [sym_latex_span] = STATE(372), + [sym_insert] = STATE(372), + [sym_delete] = STATE(372), + [sym_highlight] = STATE(372), + [sym_edit_comment] = STATE(372), + [sym_superscript] = STATE(372), + [sym_subscript] = STATE(372), + [sym_strikeout] = STATE(372), + [sym_quoted_span] = STATE(372), + [sym_inline_note] = STATE(372), + [sym_citation] = STATE(372), + [sym_shortcode_escaped] = STATE(372), + [sym_shortcode] = STATE(372), + [sym_note_reference] = STATE(372), + [sym__link_text] = STATE(454), + [sym__link_text_non_empty] = STATE(455), + [sym_inline_link] = STATE(57), + [sym_image] = STATE(372), + [sym__image_inline_link] = STATE(1025), + [sym__image_description] = STATE(2356), + [sym__image_description_non_empty] = STATE(2356), + [sym_hard_line_break] = STATE(372), + [sym__whitespace] = STATE(1022), + [sym__word] = STATE(1022), + [sym__soft_line_break] = STATE(1026), + [sym__inline_base] = STATE(57), + [sym__text_base] = STATE(372), + [sym__inline_element] = STATE(57), + [sym__emphasis_star] = STATE(714), + [sym__strong_emphasis_star] = STATE(57), + [sym__emphasis_underscore] = STATE(714), + [sym__strong_emphasis_underscore] = STATE(57), + [aux_sym_insert_repeat1] = STATE(57), + [aux_sym__inline_base_repeat1] = STATE(372), + [sym__backslash_escape] = ACTIONS(707), + [sym_entity_reference] = ACTIONS(709), + [sym_numeric_character_reference] = ACTIONS(709), + [anon_sym_LT] = ACTIONS(711), + [anon_sym_GT] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(715), + [anon_sym_DQUOTE] = ACTIONS(713), + [anon_sym_POUND] = ACTIONS(713), + [anon_sym_DOLLAR] = ACTIONS(713), + [anon_sym_PERCENT] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(711), + [anon_sym_SQUOTE] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_COMMA] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_DOT] = ACTIONS(711), + [anon_sym_SLASH] = ACTIONS(713), + [anon_sym_COLON] = ACTIONS(713), + [anon_sym_SEMI] = ACTIONS(713), + [anon_sym_EQ] = ACTIONS(713), + [anon_sym_QMARK] = ACTIONS(713), + [anon_sym_LBRACK] = ACTIONS(717), + [anon_sym_BSLASH] = ACTIONS(719), + [anon_sym_CARET] = ACTIONS(711), + [anon_sym__] = ACTIONS(713), + [anon_sym_BQUOTE] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(721), + [anon_sym_PIPE] = ACTIONS(713), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_LPAREN] = ACTIONS(713), + [anon_sym_RPAREN] = ACTIONS(713), + [sym__newline_token] = ACTIONS(723), + [aux_sym_insert_token1] = ACTIONS(725), + [aux_sym_insert_token2] = ACTIONS(2717), + [aux_sym_delete_token1] = ACTIONS(729), + [aux_sym_highlight_token1] = ACTIONS(731), + [aux_sym_edit_comment_token1] = ACTIONS(733), + [anon_sym_CARET_LBRACK] = ACTIONS(735), + [anon_sym_LBRACK_CARET] = ACTIONS(737), + [sym_uri_autolink] = ACTIONS(709), + [sym_email_autolink] = ACTIONS(709), + [sym__whitespace_ge_2] = ACTIONS(739), + [aux_sym__whitespace_token1] = ACTIONS(741), + [sym__word_no_digit] = ACTIONS(743), + [sym__digits] = ACTIONS(743), + [anon_sym_DASH_DASH] = ACTIONS(745), + [anon_sym_DASH_DASH_DASH] = ACTIONS(743), + [anon_sym_DOT_DOT_DOT] = ACTIONS(743), + [sym__code_span_start] = ACTIONS(747), + [sym__emphasis_open_star] = ACTIONS(749), + [sym__emphasis_open_underscore] = ACTIONS(751), + [sym__strikeout_open] = ACTIONS(753), + [sym__latex_span_start] = ACTIONS(755), + [sym__single_quote_open] = ACTIONS(757), + [sym__double_quote_open] = ACTIONS(759), + [sym__superscript_open] = ACTIONS(761), + [sym__subscript_open] = ACTIONS(763), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(765), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(767), + [sym__cite_author_in_text] = ACTIONS(769), + [sym__cite_suppress_author] = ACTIONS(771), + [sym__shortcode_open_escaped] = ACTIONS(773), + [sym__shortcode_open] = ACTIONS(775), + [sym__unclosed_span] = ACTIONS(709), }, [STATE(263)] = { - [sym_backslash_escape] = STATE(263), - [sym_commonmark_attribute] = STATE(263), - [sym_code_span] = STATE(263), - [sym_latex_span] = STATE(263), - [sym_superscript] = STATE(263), - [sym_subscript] = STATE(263), - [sym_strikeout] = STATE(263), - [sym_quoted_span] = STATE(263), - [sym_inline_note] = STATE(263), - [sym_citation] = STATE(263), - [sym_shortcode_escaped] = STATE(263), - [sym_shortcode] = STATE(263), - [sym_note_reference] = STATE(263), - [sym_image] = STATE(263), - [sym__image_inline_link] = STATE(662), - [sym__image_description] = STATE(1978), - [sym__image_description_non_empty] = STATE(1978), - [sym_hard_line_break] = STATE(263), - [sym__whitespace] = STATE(579), - [sym__word] = STATE(579), - [sym__soft_line_break] = STATE(707), - [sym__text_base] = STATE(263), - [aux_sym__inline_base_repeat1] = STATE(263), - [ts_builtin_sym_end] = ACTIONS(2921), - [sym__backslash_escape] = ACTIONS(2967), - [sym_entity_reference] = ACTIONS(2970), - [sym_numeric_character_reference] = ACTIONS(2970), - [anon_sym_LT] = ACTIONS(2973), - [anon_sym_GT] = ACTIONS(2976), - [anon_sym_BANG] = ACTIONS(2979), - [anon_sym_DQUOTE] = ACTIONS(2976), - [anon_sym_POUND] = ACTIONS(2976), - [anon_sym_DOLLAR] = ACTIONS(2976), - [anon_sym_PERCENT] = ACTIONS(2976), - [anon_sym_AMP] = ACTIONS(2973), - [anon_sym_SQUOTE] = ACTIONS(2976), - [anon_sym_STAR] = ACTIONS(2976), - [anon_sym_PLUS] = ACTIONS(2976), - [anon_sym_COMMA] = ACTIONS(2976), - [anon_sym_DASH] = ACTIONS(2973), - [anon_sym_DOT] = ACTIONS(2973), - [anon_sym_SLASH] = ACTIONS(2976), - [anon_sym_COLON] = ACTIONS(2976), - [anon_sym_SEMI] = ACTIONS(2976), - [anon_sym_EQ] = ACTIONS(2976), - [anon_sym_QMARK] = ACTIONS(2976), - [anon_sym_LBRACK] = ACTIONS(2889), - [anon_sym_BSLASH] = ACTIONS(2982), - [anon_sym_CARET] = ACTIONS(2973), - [anon_sym__] = ACTIONS(2976), - [anon_sym_BQUOTE] = ACTIONS(2976), - [anon_sym_LBRACE] = ACTIONS(2985), - [anon_sym_PIPE] = ACTIONS(2976), - [anon_sym_TILDE] = ACTIONS(2976), - [anon_sym_LPAREN] = ACTIONS(2976), - [anon_sym_RPAREN] = ACTIONS(2976), - [sym__newline_token] = ACTIONS(2988), - [anon_sym_CARET_LBRACK] = ACTIONS(2991), - [anon_sym_LBRACK_CARET] = ACTIONS(2994), - [sym_uri_autolink] = ACTIONS(2970), - [sym_email_autolink] = ACTIONS(2970), - [sym__whitespace_ge_2] = ACTIONS(2997), - [aux_sym__whitespace_token1] = ACTIONS(3000), - [sym__word_no_digit] = ACTIONS(3003), - [sym__digits] = ACTIONS(3003), - [anon_sym_DASH_DASH] = ACTIONS(3006), - [anon_sym_DASH_DASH_DASH] = ACTIONS(3003), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3003), - [sym__code_span_start] = ACTIONS(3009), - [sym__emphasis_open_star] = ACTIONS(2921), - [sym__emphasis_open_underscore] = ACTIONS(2921), - [sym__strikeout_open] = ACTIONS(3012), - [sym__latex_span_start] = ACTIONS(3015), - [sym__single_quote_open] = ACTIONS(3018), - [sym__double_quote_open] = ACTIONS(3021), - [sym__superscript_open] = ACTIONS(3024), - [sym__subscript_open] = ACTIONS(3027), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3030), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3033), - [sym__cite_author_in_text] = ACTIONS(3036), - [sym__cite_suppress_author] = ACTIONS(3039), - [sym__shortcode_open_escaped] = ACTIONS(3042), - [sym__shortcode_open] = ACTIONS(3045), - [sym__unclosed_span] = ACTIONS(2970), + [sym_backslash_escape] = STATE(372), + [sym_commonmark_attribute] = STATE(372), + [sym_code_span] = STATE(372), + [sym_latex_span] = STATE(372), + [sym_insert] = STATE(372), + [sym_delete] = STATE(372), + [sym_highlight] = STATE(372), + [sym_edit_comment] = STATE(372), + [sym_superscript] = STATE(372), + [sym_subscript] = STATE(372), + [sym_strikeout] = STATE(372), + [sym_quoted_span] = STATE(372), + [sym_inline_note] = STATE(372), + [sym_citation] = STATE(372), + [sym_shortcode_escaped] = STATE(372), + [sym_shortcode] = STATE(372), + [sym_note_reference] = STATE(372), + [sym__link_text] = STATE(454), + [sym__link_text_non_empty] = STATE(455), + [sym_inline_link] = STATE(57), + [sym_image] = STATE(372), + [sym__image_inline_link] = STATE(1025), + [sym__image_description] = STATE(2356), + [sym__image_description_non_empty] = STATE(2356), + [sym_hard_line_break] = STATE(372), + [sym__whitespace] = STATE(1022), + [sym__word] = STATE(1022), + [sym__soft_line_break] = STATE(1026), + [sym__inline_base] = STATE(57), + [sym__text_base] = STATE(372), + [sym__inline_element] = STATE(57), + [sym__emphasis_star] = STATE(714), + [sym__strong_emphasis_star] = STATE(57), + [sym__emphasis_underscore] = STATE(714), + [sym__strong_emphasis_underscore] = STATE(57), + [aux_sym_insert_repeat1] = STATE(57), + [aux_sym__inline_base_repeat1] = STATE(372), + [sym__backslash_escape] = ACTIONS(707), + [sym_entity_reference] = ACTIONS(709), + [sym_numeric_character_reference] = ACTIONS(709), + [anon_sym_LT] = ACTIONS(711), + [anon_sym_GT] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(715), + [anon_sym_DQUOTE] = ACTIONS(713), + [anon_sym_POUND] = ACTIONS(713), + [anon_sym_DOLLAR] = ACTIONS(713), + [anon_sym_PERCENT] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(711), + [anon_sym_SQUOTE] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_COMMA] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_DOT] = ACTIONS(711), + [anon_sym_SLASH] = ACTIONS(713), + [anon_sym_COLON] = ACTIONS(713), + [anon_sym_SEMI] = ACTIONS(713), + [anon_sym_EQ] = ACTIONS(713), + [anon_sym_QMARK] = ACTIONS(713), + [anon_sym_LBRACK] = ACTIONS(717), + [anon_sym_BSLASH] = ACTIONS(719), + [anon_sym_CARET] = ACTIONS(711), + [anon_sym__] = ACTIONS(713), + [anon_sym_BQUOTE] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(721), + [anon_sym_PIPE] = ACTIONS(713), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_LPAREN] = ACTIONS(713), + [anon_sym_RPAREN] = ACTIONS(713), + [sym__newline_token] = ACTIONS(723), + [aux_sym_insert_token1] = ACTIONS(725), + [aux_sym_insert_token2] = ACTIONS(2719), + [aux_sym_delete_token1] = ACTIONS(729), + [aux_sym_highlight_token1] = ACTIONS(731), + [aux_sym_edit_comment_token1] = ACTIONS(733), + [anon_sym_CARET_LBRACK] = ACTIONS(735), + [anon_sym_LBRACK_CARET] = ACTIONS(737), + [sym_uri_autolink] = ACTIONS(709), + [sym_email_autolink] = ACTIONS(709), + [sym__whitespace_ge_2] = ACTIONS(739), + [aux_sym__whitespace_token1] = ACTIONS(741), + [sym__word_no_digit] = ACTIONS(743), + [sym__digits] = ACTIONS(743), + [anon_sym_DASH_DASH] = ACTIONS(745), + [anon_sym_DASH_DASH_DASH] = ACTIONS(743), + [anon_sym_DOT_DOT_DOT] = ACTIONS(743), + [sym__code_span_start] = ACTIONS(747), + [sym__emphasis_open_star] = ACTIONS(749), + [sym__emphasis_open_underscore] = ACTIONS(751), + [sym__strikeout_open] = ACTIONS(753), + [sym__latex_span_start] = ACTIONS(755), + [sym__single_quote_open] = ACTIONS(757), + [sym__double_quote_open] = ACTIONS(759), + [sym__superscript_open] = ACTIONS(761), + [sym__subscript_open] = ACTIONS(763), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(765), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(767), + [sym__cite_author_in_text] = ACTIONS(769), + [sym__cite_suppress_author] = ACTIONS(771), + [sym__shortcode_open_escaped] = ACTIONS(773), + [sym__shortcode_open] = ACTIONS(775), + [sym__unclosed_span] = ACTIONS(709), }, [STATE(264)] = { - [sym_backslash_escape] = STATE(264), - [sym_commonmark_attribute] = STATE(264), - [sym_code_span] = STATE(264), - [sym_latex_span] = STATE(264), - [sym_superscript] = STATE(264), - [sym_subscript] = STATE(264), - [sym_strikeout] = STATE(264), - [sym_quoted_span] = STATE(264), - [sym_inline_note] = STATE(264), - [sym_citation] = STATE(264), - [sym_shortcode_escaped] = STATE(264), - [sym_shortcode] = STATE(264), - [sym_note_reference] = STATE(264), - [sym_image] = STATE(264), - [sym__image_inline_link] = STATE(708), - [sym__image_description] = STATE(1970), - [sym__image_description_non_empty] = STATE(1970), - [sym_hard_line_break] = STATE(264), - [sym__whitespace] = STATE(705), - [sym__word] = STATE(705), - [sym__soft_line_break] = STATE(709), - [sym__text_base] = STATE(264), - [aux_sym__inline_base_repeat1] = STATE(264), - [sym__backslash_escape] = ACTIONS(3048), - [sym_entity_reference] = ACTIONS(3051), - [sym_numeric_character_reference] = ACTIONS(3051), - [anon_sym_LT] = ACTIONS(3054), - [anon_sym_GT] = ACTIONS(3057), - [anon_sym_BANG] = ACTIONS(3060), - [anon_sym_DQUOTE] = ACTIONS(3057), - [anon_sym_POUND] = ACTIONS(3057), - [anon_sym_DOLLAR] = ACTIONS(3057), - [anon_sym_PERCENT] = ACTIONS(3057), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_SQUOTE] = ACTIONS(3057), - [anon_sym_STAR] = ACTIONS(3057), - [anon_sym_PLUS] = ACTIONS(3057), - [anon_sym_COMMA] = ACTIONS(3057), - [anon_sym_DASH] = ACTIONS(3054), - [anon_sym_DOT] = ACTIONS(3054), - [anon_sym_SLASH] = ACTIONS(3057), - [anon_sym_COLON] = ACTIONS(3057), - [anon_sym_SEMI] = ACTIONS(3057), - [anon_sym_EQ] = ACTIONS(3057), - [anon_sym_QMARK] = ACTIONS(3057), - [anon_sym_LBRACK] = ACTIONS(2889), - [anon_sym_BSLASH] = ACTIONS(3063), - [anon_sym_CARET] = ACTIONS(3054), - [anon_sym__] = ACTIONS(3057), - [anon_sym_BQUOTE] = ACTIONS(3057), - [anon_sym_LBRACE] = ACTIONS(3066), - [anon_sym_PIPE] = ACTIONS(3057), - [anon_sym_TILDE] = ACTIONS(3057), - [anon_sym_LPAREN] = ACTIONS(3057), - [anon_sym_RPAREN] = ACTIONS(3057), - [sym__newline_token] = ACTIONS(3069), - [anon_sym_CARET_LBRACK] = ACTIONS(3072), - [anon_sym_LBRACK_CARET] = ACTIONS(3075), - [sym_uri_autolink] = ACTIONS(3051), - [sym_email_autolink] = ACTIONS(3051), - [sym__whitespace_ge_2] = ACTIONS(3078), - [aux_sym__whitespace_token1] = ACTIONS(3081), - [sym__word_no_digit] = ACTIONS(3084), - [sym__digits] = ACTIONS(3084), - [anon_sym_DASH_DASH] = ACTIONS(3087), - [anon_sym_DASH_DASH_DASH] = ACTIONS(3084), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3084), - [sym__code_span_start] = ACTIONS(3090), - [sym__emphasis_open_star] = ACTIONS(2921), - [sym__emphasis_open_underscore] = ACTIONS(2921), - [sym__strikeout_open] = ACTIONS(3093), - [sym__latex_span_start] = ACTIONS(3096), - [sym__single_quote_open] = ACTIONS(3099), - [sym__double_quote_open] = ACTIONS(3102), - [sym__superscript_open] = ACTIONS(3105), - [sym__superscript_close] = ACTIONS(2921), - [sym__subscript_open] = ACTIONS(3108), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3111), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3114), - [sym__cite_author_in_text] = ACTIONS(3117), - [sym__cite_suppress_author] = ACTIONS(3120), - [sym__shortcode_open_escaped] = ACTIONS(3123), - [sym__shortcode_open] = ACTIONS(3126), - [sym__unclosed_span] = ACTIONS(3051), + [sym_backslash_escape] = STATE(372), + [sym_commonmark_attribute] = STATE(372), + [sym_code_span] = STATE(372), + [sym_latex_span] = STATE(372), + [sym_insert] = STATE(372), + [sym_delete] = STATE(372), + [sym_highlight] = STATE(372), + [sym_edit_comment] = STATE(372), + [sym_superscript] = STATE(372), + [sym_subscript] = STATE(372), + [sym_strikeout] = STATE(372), + [sym_quoted_span] = STATE(372), + [sym_inline_note] = STATE(372), + [sym_citation] = STATE(372), + [sym_shortcode_escaped] = STATE(372), + [sym_shortcode] = STATE(372), + [sym_note_reference] = STATE(372), + [sym__link_text] = STATE(454), + [sym__link_text_non_empty] = STATE(455), + [sym_inline_link] = STATE(57), + [sym_image] = STATE(372), + [sym__image_inline_link] = STATE(1025), + [sym__image_description] = STATE(2356), + [sym__image_description_non_empty] = STATE(2356), + [sym_hard_line_break] = STATE(372), + [sym__whitespace] = STATE(1022), + [sym__word] = STATE(1022), + [sym__soft_line_break] = STATE(1026), + [sym__inline_base] = STATE(57), + [sym__text_base] = STATE(372), + [sym__inline_element] = STATE(57), + [sym__emphasis_star] = STATE(714), + [sym__strong_emphasis_star] = STATE(57), + [sym__emphasis_underscore] = STATE(714), + [sym__strong_emphasis_underscore] = STATE(57), + [aux_sym_insert_repeat1] = STATE(57), + [aux_sym__inline_base_repeat1] = STATE(372), + [sym__backslash_escape] = ACTIONS(707), + [sym_entity_reference] = ACTIONS(709), + [sym_numeric_character_reference] = ACTIONS(709), + [anon_sym_LT] = ACTIONS(711), + [anon_sym_GT] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(715), + [anon_sym_DQUOTE] = ACTIONS(713), + [anon_sym_POUND] = ACTIONS(713), + [anon_sym_DOLLAR] = ACTIONS(713), + [anon_sym_PERCENT] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(711), + [anon_sym_SQUOTE] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_COMMA] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_DOT] = ACTIONS(711), + [anon_sym_SLASH] = ACTIONS(713), + [anon_sym_COLON] = ACTIONS(713), + [anon_sym_SEMI] = ACTIONS(713), + [anon_sym_EQ] = ACTIONS(713), + [anon_sym_QMARK] = ACTIONS(713), + [anon_sym_LBRACK] = ACTIONS(717), + [anon_sym_BSLASH] = ACTIONS(719), + [anon_sym_CARET] = ACTIONS(711), + [anon_sym__] = ACTIONS(713), + [anon_sym_BQUOTE] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(721), + [anon_sym_PIPE] = ACTIONS(713), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_LPAREN] = ACTIONS(713), + [anon_sym_RPAREN] = ACTIONS(713), + [sym__newline_token] = ACTIONS(723), + [aux_sym_insert_token1] = ACTIONS(725), + [aux_sym_insert_token2] = ACTIONS(2721), + [aux_sym_delete_token1] = ACTIONS(729), + [aux_sym_highlight_token1] = ACTIONS(731), + [aux_sym_edit_comment_token1] = ACTIONS(733), + [anon_sym_CARET_LBRACK] = ACTIONS(735), + [anon_sym_LBRACK_CARET] = ACTIONS(737), + [sym_uri_autolink] = ACTIONS(709), + [sym_email_autolink] = ACTIONS(709), + [sym__whitespace_ge_2] = ACTIONS(739), + [aux_sym__whitespace_token1] = ACTIONS(741), + [sym__word_no_digit] = ACTIONS(743), + [sym__digits] = ACTIONS(743), + [anon_sym_DASH_DASH] = ACTIONS(745), + [anon_sym_DASH_DASH_DASH] = ACTIONS(743), + [anon_sym_DOT_DOT_DOT] = ACTIONS(743), + [sym__code_span_start] = ACTIONS(747), + [sym__emphasis_open_star] = ACTIONS(749), + [sym__emphasis_open_underscore] = ACTIONS(751), + [sym__strikeout_open] = ACTIONS(753), + [sym__latex_span_start] = ACTIONS(755), + [sym__single_quote_open] = ACTIONS(757), + [sym__double_quote_open] = ACTIONS(759), + [sym__superscript_open] = ACTIONS(761), + [sym__subscript_open] = ACTIONS(763), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(765), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(767), + [sym__cite_author_in_text] = ACTIONS(769), + [sym__cite_suppress_author] = ACTIONS(771), + [sym__shortcode_open_escaped] = ACTIONS(773), + [sym__shortcode_open] = ACTIONS(775), + [sym__unclosed_span] = ACTIONS(709), }, [STATE(265)] = { - [sym_backslash_escape] = STATE(263), - [sym_commonmark_attribute] = STATE(263), - [sym_code_span] = STATE(263), - [sym_latex_span] = STATE(263), - [sym_superscript] = STATE(263), - [sym_subscript] = STATE(263), - [sym_strikeout] = STATE(263), - [sym_quoted_span] = STATE(263), - [sym_inline_note] = STATE(263), - [sym_citation] = STATE(263), - [sym_shortcode_escaped] = STATE(263), - [sym_shortcode] = STATE(263), - [sym_note_reference] = STATE(263), - [sym_image] = STATE(263), - [sym__image_inline_link] = STATE(662), - [sym__image_description] = STATE(1978), - [sym__image_description_non_empty] = STATE(1978), - [sym_hard_line_break] = STATE(263), - [sym__whitespace] = STATE(579), - [sym__word] = STATE(579), - [sym__soft_line_break] = STATE(707), - [sym__text_base] = STATE(263), - [aux_sym__inline_base_repeat1] = STATE(263), - [ts_builtin_sym_end] = ACTIONS(2963), - [sym__backslash_escape] = ACTIONS(3), - [sym_entity_reference] = ACTIONS(3129), - [sym_numeric_character_reference] = ACTIONS(3129), - [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(2961), - [anon_sym_BSLASH] = ACTIONS(15), - [anon_sym_CARET] = ACTIONS(7), - [anon_sym__] = ACTIONS(9), - [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), - [anon_sym_CARET_LBRACK] = ACTIONS(21), - [anon_sym_LBRACK_CARET] = ACTIONS(23), - [sym_uri_autolink] = ACTIONS(3129), - [sym_email_autolink] = ACTIONS(3129), - [sym__whitespace_ge_2] = ACTIONS(25), - [aux_sym__whitespace_token1] = ACTIONS(27), - [sym__word_no_digit] = ACTIONS(29), - [sym__digits] = ACTIONS(29), - [anon_sym_DASH_DASH] = ACTIONS(31), - [anon_sym_DASH_DASH_DASH] = ACTIONS(29), - [anon_sym_DOT_DOT_DOT] = ACTIONS(29), - [sym__code_span_start] = ACTIONS(33), - [sym__emphasis_open_star] = ACTIONS(2963), - [sym__emphasis_open_underscore] = ACTIONS(2963), - [sym__strikeout_open] = ACTIONS(41), - [sym__latex_span_start] = ACTIONS(43), - [sym__single_quote_open] = ACTIONS(45), - [sym__double_quote_open] = ACTIONS(47), - [sym__superscript_open] = ACTIONS(49), - [sym__subscript_open] = ACTIONS(51), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(53), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(55), - [sym__cite_author_in_text] = ACTIONS(57), - [sym__cite_suppress_author] = ACTIONS(59), - [sym__shortcode_open_escaped] = ACTIONS(61), - [sym__shortcode_open] = ACTIONS(63), - [sym__unclosed_span] = ACTIONS(3129), + [sym_backslash_escape] = STATE(370), + [sym_commonmark_attribute] = STATE(370), + [sym_code_span] = STATE(370), + [sym_latex_span] = STATE(370), + [sym_insert] = STATE(370), + [sym_delete] = STATE(370), + [sym_highlight] = STATE(370), + [sym_edit_comment] = STATE(370), + [sym_superscript] = STATE(370), + [sym_subscript] = STATE(370), + [sym_strikeout] = STATE(370), + [sym_quoted_span] = STATE(370), + [sym_inline_note] = STATE(370), + [sym_citation] = STATE(370), + [sym_shortcode_escaped] = STATE(370), + [sym_shortcode] = STATE(370), + [sym_note_reference] = STATE(370), + [sym__link_text] = STATE(472), + [sym__link_text_non_empty] = STATE(473), + [sym_inline_link] = STATE(269), + [sym_image] = STATE(370), + [sym__image_inline_link] = STATE(923), + [sym__image_description] = STATE(2342), + [sym__image_description_non_empty] = STATE(2342), + [sym_hard_line_break] = STATE(370), + [sym__whitespace] = STATE(920), + [sym__word] = STATE(920), + [sym__soft_line_break] = STATE(924), + [sym__inline_base] = STATE(269), + [sym__text_base] = STATE(370), + [sym__inline_element] = STATE(269), + [sym__emphasis_star] = STATE(821), + [sym__strong_emphasis_star] = STATE(269), + [sym__emphasis_underscore] = STATE(821), + [sym__strong_emphasis_underscore] = STATE(269), + [aux_sym_insert_repeat1] = STATE(269), + [aux_sym__inline_base_repeat1] = STATE(370), + [sym__backslash_escape] = ACTIONS(73), + [sym_entity_reference] = ACTIONS(75), + [sym_numeric_character_reference] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_BANG] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_POUND] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(79), + [anon_sym_PERCENT] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_STAR] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_COMMA] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_DOT] = ACTIONS(77), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_COLON] = ACTIONS(79), + [anon_sym_SEMI] = ACTIONS(79), + [anon_sym_EQ] = ACTIONS(79), + [anon_sym_QMARK] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(83), + [anon_sym_BSLASH] = ACTIONS(85), + [anon_sym_RBRACK] = ACTIONS(2723), + [anon_sym_CARET] = ACTIONS(77), + [anon_sym__] = ACTIONS(79), + [anon_sym_BQUOTE] = ACTIONS(79), + [anon_sym_LBRACE] = ACTIONS(89), + [anon_sym_PIPE] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(79), + [anon_sym_RPAREN] = ACTIONS(79), + [sym__newline_token] = ACTIONS(91), + [aux_sym_insert_token1] = ACTIONS(93), + [aux_sym_delete_token1] = ACTIONS(95), + [aux_sym_highlight_token1] = ACTIONS(97), + [aux_sym_edit_comment_token1] = ACTIONS(99), + [anon_sym_CARET_LBRACK] = ACTIONS(101), + [anon_sym_LBRACK_CARET] = ACTIONS(103), + [sym_uri_autolink] = ACTIONS(75), + [sym_email_autolink] = ACTIONS(75), + [sym__whitespace_ge_2] = ACTIONS(105), + [aux_sym__whitespace_token1] = ACTIONS(107), + [sym__word_no_digit] = ACTIONS(109), + [sym__digits] = ACTIONS(109), + [anon_sym_DASH_DASH] = ACTIONS(111), + [anon_sym_DASH_DASH_DASH] = ACTIONS(109), + [anon_sym_DOT_DOT_DOT] = ACTIONS(109), + [sym__code_span_start] = ACTIONS(113), + [sym__emphasis_open_star] = ACTIONS(115), + [sym__emphasis_open_underscore] = ACTIONS(117), + [sym__strikeout_open] = ACTIONS(121), + [sym__latex_span_start] = ACTIONS(123), + [sym__single_quote_open] = ACTIONS(125), + [sym__double_quote_open] = ACTIONS(127), + [sym__superscript_open] = ACTIONS(129), + [sym__subscript_open] = ACTIONS(131), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(133), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(135), + [sym__cite_author_in_text] = ACTIONS(137), + [sym__cite_suppress_author] = ACTIONS(139), + [sym__shortcode_open_escaped] = ACTIONS(141), + [sym__shortcode_open] = ACTIONS(143), + [sym__unclosed_span] = ACTIONS(75), }, [STATE(266)] = { - [sym_backslash_escape] = STATE(267), - [sym_commonmark_attribute] = STATE(267), - [sym_code_span] = STATE(267), - [sym_latex_span] = STATE(267), - [sym_superscript] = STATE(267), - [sym_subscript] = STATE(267), - [sym_strikeout] = STATE(267), - [sym_quoted_span] = STATE(267), - [sym_inline_note] = STATE(267), - [sym_citation] = STATE(267), - [sym_shortcode_escaped] = STATE(267), - [sym_shortcode] = STATE(267), - [sym_note_reference] = STATE(267), - [sym_image] = STATE(267), - [sym__image_inline_link] = STATE(1042), - [sym__image_description] = STATE(2044), - [sym__image_description_non_empty] = STATE(2044), - [sym_hard_line_break] = STATE(267), - [sym__whitespace] = STATE(1040), - [sym__word] = STATE(1040), - [sym__soft_line_break] = STATE(1043), - [sym__text_base] = STATE(267), - [aux_sym__inline_base_repeat1] = STATE(267), - [sym__backslash_escape] = ACTIONS(559), - [sym_entity_reference] = ACTIONS(3131), - [sym_numeric_character_reference] = ACTIONS(3131), - [anon_sym_LT] = ACTIONS(563), - [anon_sym_GT] = ACTIONS(565), - [anon_sym_BANG] = ACTIONS(567), - [anon_sym_DQUOTE] = ACTIONS(565), - [anon_sym_POUND] = ACTIONS(565), - [anon_sym_DOLLAR] = ACTIONS(565), - [anon_sym_PERCENT] = ACTIONS(565), - [anon_sym_AMP] = ACTIONS(563), - [anon_sym_SQUOTE] = ACTIONS(565), - [anon_sym_STAR] = ACTIONS(565), - [anon_sym_PLUS] = ACTIONS(565), - [anon_sym_COMMA] = ACTIONS(565), - [anon_sym_DASH] = ACTIONS(563), - [anon_sym_DOT] = ACTIONS(563), - [anon_sym_SLASH] = ACTIONS(565), - [anon_sym_COLON] = ACTIONS(565), - [anon_sym_SEMI] = ACTIONS(565), - [anon_sym_EQ] = ACTIONS(565), - [anon_sym_QMARK] = ACTIONS(565), - [anon_sym_LBRACK] = ACTIONS(2961), - [anon_sym_BSLASH] = ACTIONS(571), - [anon_sym_CARET] = ACTIONS(563), - [anon_sym__] = ACTIONS(565), - [anon_sym_BQUOTE] = ACTIONS(565), - [anon_sym_LBRACE] = ACTIONS(573), - [anon_sym_PIPE] = ACTIONS(565), - [anon_sym_TILDE] = ACTIONS(565), - [anon_sym_LPAREN] = ACTIONS(565), - [anon_sym_RPAREN] = ACTIONS(565), - [sym__newline_token] = ACTIONS(575), - [anon_sym_CARET_LBRACK] = ACTIONS(577), - [anon_sym_LBRACK_CARET] = ACTIONS(579), - [sym_uri_autolink] = ACTIONS(3131), - [sym_email_autolink] = ACTIONS(3131), - [sym__whitespace_ge_2] = ACTIONS(581), - [aux_sym__whitespace_token1] = ACTIONS(583), - [sym__word_no_digit] = ACTIONS(585), - [sym__digits] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(587), - [anon_sym_DASH_DASH_DASH] = ACTIONS(585), - [anon_sym_DOT_DOT_DOT] = ACTIONS(585), - [sym__code_span_start] = ACTIONS(589), - [sym__emphasis_open_star] = ACTIONS(2963), - [sym__emphasis_open_underscore] = ACTIONS(2963), - [sym__strikeout_open] = ACTIONS(595), - [sym__strikeout_close] = ACTIONS(2963), - [sym__latex_span_start] = ACTIONS(599), - [sym__single_quote_open] = ACTIONS(601), - [sym__double_quote_open] = ACTIONS(603), - [sym__superscript_open] = ACTIONS(605), - [sym__subscript_open] = ACTIONS(607), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(609), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(611), - [sym__cite_author_in_text] = ACTIONS(613), - [sym__cite_suppress_author] = ACTIONS(615), - [sym__shortcode_open_escaped] = ACTIONS(617), - [sym__shortcode_open] = ACTIONS(619), - [sym__unclosed_span] = ACTIONS(3131), + [sym_backslash_escape] = STATE(370), + [sym_commonmark_attribute] = STATE(370), + [sym_code_span] = STATE(370), + [sym_latex_span] = STATE(370), + [sym_insert] = STATE(370), + [sym_delete] = STATE(370), + [sym_highlight] = STATE(370), + [sym_edit_comment] = STATE(370), + [sym_superscript] = STATE(370), + [sym_subscript] = STATE(370), + [sym_strikeout] = STATE(370), + [sym_quoted_span] = STATE(370), + [sym_inline_note] = STATE(370), + [sym_citation] = STATE(370), + [sym_shortcode_escaped] = STATE(370), + [sym_shortcode] = STATE(370), + [sym_note_reference] = STATE(370), + [sym__link_text] = STATE(472), + [sym__link_text_non_empty] = STATE(473), + [sym_inline_link] = STATE(60), + [sym_image] = STATE(370), + [sym__image_inline_link] = STATE(923), + [sym__image_description] = STATE(2342), + [sym__image_description_non_empty] = STATE(2342), + [sym_hard_line_break] = STATE(370), + [sym__whitespace] = STATE(920), + [sym__word] = STATE(920), + [sym__soft_line_break] = STATE(924), + [sym__inline_base] = STATE(60), + [sym__text_base] = STATE(370), + [sym__inline_element] = STATE(60), + [sym__emphasis_star] = STATE(821), + [sym__strong_emphasis_star] = STATE(60), + [sym__emphasis_underscore] = STATE(821), + [sym__strong_emphasis_underscore] = STATE(60), + [aux_sym_insert_repeat1] = STATE(60), + [aux_sym__inline_base_repeat1] = STATE(370), + [sym__backslash_escape] = ACTIONS(73), + [sym_entity_reference] = ACTIONS(75), + [sym_numeric_character_reference] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_BANG] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_POUND] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(79), + [anon_sym_PERCENT] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_STAR] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_COMMA] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_DOT] = ACTIONS(77), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_COLON] = ACTIONS(79), + [anon_sym_SEMI] = ACTIONS(79), + [anon_sym_EQ] = ACTIONS(79), + [anon_sym_QMARK] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(83), + [anon_sym_BSLASH] = ACTIONS(85), + [anon_sym_RBRACK] = ACTIONS(2725), + [anon_sym_CARET] = ACTIONS(77), + [anon_sym__] = ACTIONS(79), + [anon_sym_BQUOTE] = ACTIONS(79), + [anon_sym_LBRACE] = ACTIONS(89), + [anon_sym_PIPE] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(79), + [anon_sym_RPAREN] = ACTIONS(79), + [sym__newline_token] = ACTIONS(91), + [aux_sym_insert_token1] = ACTIONS(93), + [aux_sym_delete_token1] = ACTIONS(95), + [aux_sym_highlight_token1] = ACTIONS(97), + [aux_sym_edit_comment_token1] = ACTIONS(99), + [anon_sym_CARET_LBRACK] = ACTIONS(101), + [anon_sym_LBRACK_CARET] = ACTIONS(103), + [sym_uri_autolink] = ACTIONS(75), + [sym_email_autolink] = ACTIONS(75), + [sym__whitespace_ge_2] = ACTIONS(105), + [aux_sym__whitespace_token1] = ACTIONS(107), + [sym__word_no_digit] = ACTIONS(109), + [sym__digits] = ACTIONS(109), + [anon_sym_DASH_DASH] = ACTIONS(111), + [anon_sym_DASH_DASH_DASH] = ACTIONS(109), + [anon_sym_DOT_DOT_DOT] = ACTIONS(109), + [sym__code_span_start] = ACTIONS(113), + [sym__emphasis_open_star] = ACTIONS(115), + [sym__emphasis_open_underscore] = ACTIONS(117), + [sym__strikeout_open] = ACTIONS(121), + [sym__latex_span_start] = ACTIONS(123), + [sym__single_quote_open] = ACTIONS(125), + [sym__double_quote_open] = ACTIONS(127), + [sym__superscript_open] = ACTIONS(129), + [sym__subscript_open] = ACTIONS(131), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(133), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(135), + [sym__cite_author_in_text] = ACTIONS(137), + [sym__cite_suppress_author] = ACTIONS(139), + [sym__shortcode_open_escaped] = ACTIONS(141), + [sym__shortcode_open] = ACTIONS(143), + [sym__unclosed_span] = ACTIONS(75), }, [STATE(267)] = { - [sym_backslash_escape] = STATE(267), - [sym_commonmark_attribute] = STATE(267), - [sym_code_span] = STATE(267), - [sym_latex_span] = STATE(267), - [sym_superscript] = STATE(267), - [sym_subscript] = STATE(267), - [sym_strikeout] = STATE(267), - [sym_quoted_span] = STATE(267), - [sym_inline_note] = STATE(267), - [sym_citation] = STATE(267), - [sym_shortcode_escaped] = STATE(267), - [sym_shortcode] = STATE(267), - [sym_note_reference] = STATE(267), - [sym_image] = STATE(267), - [sym__image_inline_link] = STATE(1042), - [sym__image_description] = STATE(2044), - [sym__image_description_non_empty] = STATE(2044), - [sym_hard_line_break] = STATE(267), - [sym__whitespace] = STATE(1040), - [sym__word] = STATE(1040), - [sym__soft_line_break] = STATE(1043), - [sym__text_base] = STATE(267), - [aux_sym__inline_base_repeat1] = STATE(267), - [sym__backslash_escape] = ACTIONS(3133), - [sym_entity_reference] = ACTIONS(3136), - [sym_numeric_character_reference] = ACTIONS(3136), - [anon_sym_LT] = ACTIONS(3139), - [anon_sym_GT] = ACTIONS(3142), - [anon_sym_BANG] = ACTIONS(3145), - [anon_sym_DQUOTE] = ACTIONS(3142), - [anon_sym_POUND] = ACTIONS(3142), - [anon_sym_DOLLAR] = ACTIONS(3142), - [anon_sym_PERCENT] = ACTIONS(3142), - [anon_sym_AMP] = ACTIONS(3139), - [anon_sym_SQUOTE] = ACTIONS(3142), - [anon_sym_STAR] = ACTIONS(3142), - [anon_sym_PLUS] = ACTIONS(3142), - [anon_sym_COMMA] = ACTIONS(3142), - [anon_sym_DASH] = ACTIONS(3139), - [anon_sym_DOT] = ACTIONS(3139), - [anon_sym_SLASH] = ACTIONS(3142), - [anon_sym_COLON] = ACTIONS(3142), - [anon_sym_SEMI] = ACTIONS(3142), - [anon_sym_EQ] = ACTIONS(3142), - [anon_sym_QMARK] = ACTIONS(3142), - [anon_sym_LBRACK] = ACTIONS(2889), - [anon_sym_BSLASH] = ACTIONS(3148), - [anon_sym_CARET] = ACTIONS(3139), - [anon_sym__] = ACTIONS(3142), - [anon_sym_BQUOTE] = ACTIONS(3142), - [anon_sym_LBRACE] = ACTIONS(3151), - [anon_sym_PIPE] = ACTIONS(3142), - [anon_sym_TILDE] = ACTIONS(3142), - [anon_sym_LPAREN] = ACTIONS(3142), - [anon_sym_RPAREN] = ACTIONS(3142), - [sym__newline_token] = ACTIONS(3154), - [anon_sym_CARET_LBRACK] = ACTIONS(3157), - [anon_sym_LBRACK_CARET] = ACTIONS(3160), - [sym_uri_autolink] = ACTIONS(3136), - [sym_email_autolink] = ACTIONS(3136), - [sym__whitespace_ge_2] = ACTIONS(3163), - [aux_sym__whitespace_token1] = ACTIONS(3166), - [sym__word_no_digit] = ACTIONS(3169), - [sym__digits] = ACTIONS(3169), - [anon_sym_DASH_DASH] = ACTIONS(3172), - [anon_sym_DASH_DASH_DASH] = ACTIONS(3169), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3169), - [sym__code_span_start] = ACTIONS(3175), - [sym__emphasis_open_star] = ACTIONS(2921), - [sym__emphasis_open_underscore] = ACTIONS(2921), - [sym__strikeout_open] = ACTIONS(3178), - [sym__strikeout_close] = ACTIONS(2921), - [sym__latex_span_start] = ACTIONS(3181), - [sym__single_quote_open] = ACTIONS(3184), - [sym__double_quote_open] = ACTIONS(3187), - [sym__superscript_open] = ACTIONS(3190), - [sym__subscript_open] = ACTIONS(3193), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3196), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3199), - [sym__cite_author_in_text] = ACTIONS(3202), - [sym__cite_suppress_author] = ACTIONS(3205), - [sym__shortcode_open_escaped] = ACTIONS(3208), - [sym__shortcode_open] = ACTIONS(3211), - [sym__unclosed_span] = ACTIONS(3136), + [sym_backslash_escape] = STATE(373), + [sym_commonmark_attribute] = STATE(373), + [sym_code_span] = STATE(373), + [sym_latex_span] = STATE(373), + [sym_insert] = STATE(373), + [sym_delete] = STATE(373), + [sym_highlight] = STATE(373), + [sym_edit_comment] = STATE(373), + [sym_superscript] = STATE(373), + [sym_subscript] = STATE(373), + [sym_strikeout] = STATE(373), + [sym_quoted_span] = STATE(373), + [sym_inline_note] = STATE(373), + [sym_citation] = STATE(373), + [sym_shortcode_escaped] = STATE(373), + [sym_shortcode] = STATE(373), + [sym_note_reference] = STATE(373), + [sym__link_text] = STATE(522), + [sym__link_text_non_empty] = STATE(523), + [sym_inline_link] = STATE(36), + [sym_image] = STATE(373), + [sym__image_inline_link] = STATE(1265), + [sym__image_description] = STATE(2331), + [sym__image_description_non_empty] = STATE(2331), + [sym_hard_line_break] = STATE(373), + [sym__whitespace] = STATE(1262), + [sym__word] = STATE(1262), + [sym__soft_line_break] = STATE(1267), + [sym__inline_base] = STATE(36), + [sym__text_base] = STATE(373), + [sym__inline_element_no_star] = STATE(36), + [aux_sym__inline_no_star] = STATE(36), + [sym__emphasis_star] = STATE(1147), + [sym__strong_emphasis_star] = STATE(36), + [sym__emphasis_underscore] = STATE(1147), + [sym__strong_emphasis_underscore] = STATE(36), + [aux_sym__inline_base_repeat1] = STATE(373), + [sym__backslash_escape] = ACTIONS(885), + [sym_entity_reference] = ACTIONS(887), + [sym_numeric_character_reference] = ACTIONS(887), + [anon_sym_LT] = ACTIONS(889), + [anon_sym_GT] = ACTIONS(891), + [anon_sym_BANG] = ACTIONS(893), + [anon_sym_DQUOTE] = ACTIONS(891), + [anon_sym_POUND] = ACTIONS(891), + [anon_sym_DOLLAR] = ACTIONS(891), + [anon_sym_PERCENT] = ACTIONS(891), + [anon_sym_AMP] = ACTIONS(889), + [anon_sym_SQUOTE] = ACTIONS(891), + [anon_sym_STAR] = ACTIONS(891), + [anon_sym_PLUS] = ACTIONS(891), + [anon_sym_COMMA] = ACTIONS(891), + [anon_sym_DASH] = ACTIONS(889), + [anon_sym_DOT] = ACTIONS(889), + [anon_sym_SLASH] = ACTIONS(891), + [anon_sym_COLON] = ACTIONS(891), + [anon_sym_SEMI] = ACTIONS(891), + [anon_sym_EQ] = ACTIONS(891), + [anon_sym_QMARK] = ACTIONS(891), + [anon_sym_LBRACK] = ACTIONS(895), + [anon_sym_BSLASH] = ACTIONS(897), + [anon_sym_CARET] = ACTIONS(889), + [anon_sym__] = ACTIONS(891), + [anon_sym_BQUOTE] = ACTIONS(891), + [anon_sym_LBRACE] = ACTIONS(899), + [anon_sym_PIPE] = ACTIONS(891), + [anon_sym_TILDE] = ACTIONS(891), + [anon_sym_LPAREN] = ACTIONS(891), + [anon_sym_RPAREN] = ACTIONS(891), + [sym__newline_token] = ACTIONS(901), + [aux_sym_insert_token1] = ACTIONS(903), + [aux_sym_delete_token1] = ACTIONS(905), + [aux_sym_highlight_token1] = ACTIONS(907), + [aux_sym_edit_comment_token1] = ACTIONS(909), + [anon_sym_CARET_LBRACK] = ACTIONS(911), + [anon_sym_LBRACK_CARET] = ACTIONS(913), + [sym_uri_autolink] = ACTIONS(887), + [sym_email_autolink] = ACTIONS(887), + [sym__whitespace_ge_2] = ACTIONS(915), + [aux_sym__whitespace_token1] = ACTIONS(917), + [sym__word_no_digit] = ACTIONS(919), + [sym__digits] = ACTIONS(919), + [anon_sym_DASH_DASH] = ACTIONS(921), + [anon_sym_DASH_DASH_DASH] = ACTIONS(919), + [anon_sym_DOT_DOT_DOT] = ACTIONS(919), + [sym__code_span_start] = ACTIONS(923), + [sym__emphasis_open_star] = ACTIONS(925), + [sym__emphasis_open_underscore] = ACTIONS(927), + [sym__emphasis_close_star] = ACTIONS(2727), + [sym__strikeout_open] = ACTIONS(931), + [sym__latex_span_start] = ACTIONS(933), + [sym__single_quote_open] = ACTIONS(935), + [sym__double_quote_open] = ACTIONS(937), + [sym__superscript_open] = ACTIONS(939), + [sym__subscript_open] = ACTIONS(941), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(943), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(945), + [sym__cite_author_in_text] = ACTIONS(947), + [sym__cite_suppress_author] = ACTIONS(949), + [sym__shortcode_open_escaped] = ACTIONS(951), + [sym__shortcode_open] = ACTIONS(953), + [sym__unclosed_span] = ACTIONS(887), }, [STATE(268)] = { - [sym_backslash_escape] = STATE(268), - [sym_commonmark_attribute] = STATE(268), - [sym_code_span] = STATE(268), - [sym_latex_span] = STATE(268), - [sym_superscript] = STATE(268), - [sym_subscript] = STATE(268), - [sym_strikeout] = STATE(268), - [sym_quoted_span] = STATE(268), - [sym_inline_note] = STATE(268), - [sym_citation] = STATE(268), - [sym_shortcode_escaped] = STATE(268), - [sym_shortcode] = STATE(268), - [sym_note_reference] = STATE(268), - [sym_image] = STATE(268), - [sym__image_inline_link] = STATE(595), - [sym__image_description] = STATE(1972), - [sym__image_description_non_empty] = STATE(1972), - [sym_hard_line_break] = STATE(268), - [sym__whitespace] = STATE(587), - [sym__word] = STATE(587), - [sym__soft_line_break] = STATE(597), - [sym__text_base] = STATE(268), - [aux_sym__inline_base_repeat1] = STATE(268), - [sym__backslash_escape] = ACTIONS(3214), - [sym_entity_reference] = ACTIONS(3217), - [sym_numeric_character_reference] = ACTIONS(3217), - [anon_sym_LT] = ACTIONS(3220), - [anon_sym_GT] = ACTIONS(3223), - [anon_sym_BANG] = ACTIONS(3226), - [anon_sym_DQUOTE] = ACTIONS(3223), - [anon_sym_POUND] = ACTIONS(3223), - [anon_sym_DOLLAR] = ACTIONS(3223), - [anon_sym_PERCENT] = ACTIONS(3223), - [anon_sym_AMP] = ACTIONS(3220), - [anon_sym_SQUOTE] = ACTIONS(3223), - [anon_sym_STAR] = ACTIONS(3223), - [anon_sym_PLUS] = ACTIONS(3223), - [anon_sym_COMMA] = ACTIONS(3223), - [anon_sym_DASH] = ACTIONS(3220), - [anon_sym_DOT] = ACTIONS(3220), - [anon_sym_SLASH] = ACTIONS(3223), - [anon_sym_COLON] = ACTIONS(3223), - [anon_sym_SEMI] = ACTIONS(3223), - [anon_sym_EQ] = ACTIONS(3223), - [anon_sym_QMARK] = ACTIONS(3223), - [anon_sym_LBRACK] = ACTIONS(2889), - [anon_sym_BSLASH] = ACTIONS(3229), - [anon_sym_CARET] = ACTIONS(3220), - [anon_sym__] = ACTIONS(3223), - [anon_sym_BQUOTE] = ACTIONS(3223), - [anon_sym_LBRACE] = ACTIONS(3232), - [anon_sym_PIPE] = ACTIONS(3223), - [anon_sym_TILDE] = ACTIONS(3223), - [anon_sym_LPAREN] = ACTIONS(3223), - [anon_sym_RPAREN] = ACTIONS(3223), - [sym__newline_token] = ACTIONS(3235), - [anon_sym_CARET_LBRACK] = ACTIONS(3238), - [anon_sym_LBRACK_CARET] = ACTIONS(3241), - [sym_uri_autolink] = ACTIONS(3217), - [sym_email_autolink] = ACTIONS(3217), - [sym__whitespace_ge_2] = ACTIONS(3244), - [aux_sym__whitespace_token1] = ACTIONS(3247), - [sym__word_no_digit] = ACTIONS(3250), - [sym__digits] = ACTIONS(3250), - [anon_sym_DASH_DASH] = ACTIONS(3253), - [anon_sym_DASH_DASH_DASH] = ACTIONS(3250), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3250), - [sym__code_span_start] = ACTIONS(3256), - [sym__emphasis_open_star] = ACTIONS(2921), - [sym__emphasis_open_underscore] = ACTIONS(2921), - [sym__emphasis_close_star] = ACTIONS(2921), - [sym__strikeout_open] = ACTIONS(3259), - [sym__latex_span_start] = ACTIONS(3262), - [sym__single_quote_open] = ACTIONS(3265), - [sym__double_quote_open] = ACTIONS(3268), - [sym__superscript_open] = ACTIONS(3271), - [sym__subscript_open] = ACTIONS(3274), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3277), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3280), - [sym__cite_author_in_text] = ACTIONS(3283), - [sym__cite_suppress_author] = ACTIONS(3286), - [sym__shortcode_open_escaped] = ACTIONS(3289), - [sym__shortcode_open] = ACTIONS(3292), - [sym__unclosed_span] = ACTIONS(3217), + [sym_backslash_escape] = STATE(379), + [sym_commonmark_attribute] = STATE(379), + [sym_code_span] = STATE(379), + [sym_latex_span] = STATE(379), + [sym_insert] = STATE(379), + [sym_delete] = STATE(379), + [sym_highlight] = STATE(379), + [sym_edit_comment] = STATE(379), + [sym_superscript] = STATE(379), + [sym_subscript] = STATE(379), + [sym_strikeout] = STATE(379), + [sym_quoted_span] = STATE(379), + [sym_inline_note] = STATE(379), + [sym_citation] = STATE(379), + [sym_shortcode_escaped] = STATE(379), + [sym_shortcode] = STATE(379), + [sym_note_reference] = STATE(379), + [sym__link_text] = STATE(545), + [sym__link_text_non_empty] = STATE(546), + [sym_inline_link] = STATE(38), + [sym_image] = STATE(379), + [sym__image_inline_link] = STATE(1390), + [sym__image_description] = STATE(2363), + [sym__image_description_non_empty] = STATE(2363), + [sym_hard_line_break] = STATE(379), + [sym__whitespace] = STATE(1385), + [sym__word] = STATE(1385), + [sym__soft_line_break] = STATE(1391), + [sym__inline_base] = STATE(38), + [sym__text_base] = STATE(379), + [sym__inline_element_no_underscore] = STATE(38), + [aux_sym__inline_no_underscore] = STATE(38), + [sym__emphasis_star] = STATE(1168), + [sym__strong_emphasis_star] = STATE(38), + [sym__emphasis_underscore] = STATE(1168), + [sym__strong_emphasis_underscore] = STATE(38), + [aux_sym__inline_base_repeat1] = STATE(379), + [sym__backslash_escape] = ACTIONS(1059), + [sym_entity_reference] = ACTIONS(1061), + [sym_numeric_character_reference] = ACTIONS(1061), + [anon_sym_LT] = ACTIONS(1063), + [anon_sym_GT] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1067), + [anon_sym_DQUOTE] = ACTIONS(1065), + [anon_sym_POUND] = ACTIONS(1065), + [anon_sym_DOLLAR] = ACTIONS(1065), + [anon_sym_PERCENT] = ACTIONS(1065), + [anon_sym_AMP] = ACTIONS(1063), + [anon_sym_SQUOTE] = ACTIONS(1065), + [anon_sym_STAR] = ACTIONS(1065), + [anon_sym_PLUS] = ACTIONS(1065), + [anon_sym_COMMA] = ACTIONS(1065), + [anon_sym_DASH] = ACTIONS(1063), + [anon_sym_DOT] = ACTIONS(1063), + [anon_sym_SLASH] = ACTIONS(1065), + [anon_sym_COLON] = ACTIONS(1065), + [anon_sym_SEMI] = ACTIONS(1065), + [anon_sym_EQ] = ACTIONS(1065), + [anon_sym_QMARK] = ACTIONS(1065), + [anon_sym_LBRACK] = ACTIONS(1069), + [anon_sym_BSLASH] = ACTIONS(1071), + [anon_sym_CARET] = ACTIONS(1063), + [anon_sym__] = ACTIONS(1065), + [anon_sym_BQUOTE] = ACTIONS(1065), + [anon_sym_LBRACE] = ACTIONS(1073), + [anon_sym_PIPE] = ACTIONS(1065), + [anon_sym_TILDE] = ACTIONS(1065), + [anon_sym_LPAREN] = ACTIONS(1065), + [anon_sym_RPAREN] = ACTIONS(1065), + [sym__newline_token] = ACTIONS(1075), + [aux_sym_insert_token1] = ACTIONS(1077), + [aux_sym_delete_token1] = ACTIONS(1079), + [aux_sym_highlight_token1] = ACTIONS(1081), + [aux_sym_edit_comment_token1] = ACTIONS(1083), + [anon_sym_CARET_LBRACK] = ACTIONS(1085), + [anon_sym_LBRACK_CARET] = ACTIONS(1087), + [sym_uri_autolink] = ACTIONS(1061), + [sym_email_autolink] = ACTIONS(1061), + [sym__whitespace_ge_2] = ACTIONS(1089), + [aux_sym__whitespace_token1] = ACTIONS(1091), + [sym__word_no_digit] = ACTIONS(1093), + [sym__digits] = ACTIONS(1093), + [anon_sym_DASH_DASH] = ACTIONS(1095), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1093), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1093), + [sym__code_span_start] = ACTIONS(1097), + [sym__emphasis_open_star] = ACTIONS(1099), + [sym__emphasis_open_underscore] = ACTIONS(1101), + [sym__emphasis_close_underscore] = ACTIONS(2729), + [sym__strikeout_open] = ACTIONS(1105), + [sym__latex_span_start] = ACTIONS(1107), + [sym__single_quote_open] = ACTIONS(1109), + [sym__double_quote_open] = ACTIONS(1111), + [sym__superscript_open] = ACTIONS(1113), + [sym__subscript_open] = ACTIONS(1115), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1117), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1119), + [sym__cite_author_in_text] = ACTIONS(1121), + [sym__cite_suppress_author] = ACTIONS(1123), + [sym__shortcode_open_escaped] = ACTIONS(1125), + [sym__shortcode_open] = ACTIONS(1127), + [sym__unclosed_span] = ACTIONS(1061), }, [STATE(269)] = { - [sym_backslash_escape] = STATE(269), - [sym_commonmark_attribute] = STATE(269), - [sym_code_span] = STATE(269), - [sym_latex_span] = STATE(269), - [sym_superscript] = STATE(269), - [sym_subscript] = STATE(269), - [sym_strikeout] = STATE(269), - [sym_quoted_span] = STATE(269), - [sym_inline_note] = STATE(269), - [sym_citation] = STATE(269), - [sym_shortcode_escaped] = STATE(269), - [sym_shortcode] = STATE(269), - [sym_note_reference] = STATE(269), - [sym_image] = STATE(269), - [sym__image_inline_link] = STATE(613), - [sym__image_description] = STATE(1930), - [sym__image_description_non_empty] = STATE(1930), - [sym_hard_line_break] = STATE(269), - [sym__whitespace] = STATE(610), - [sym__word] = STATE(610), - [sym__soft_line_break] = STATE(614), - [sym__text_base] = STATE(269), - [aux_sym__inline_base_repeat1] = STATE(269), - [sym__backslash_escape] = ACTIONS(3295), - [sym_entity_reference] = ACTIONS(3298), - [sym_numeric_character_reference] = ACTIONS(3298), - [anon_sym_LT] = ACTIONS(3301), - [anon_sym_GT] = ACTIONS(3304), - [anon_sym_BANG] = ACTIONS(3307), - [anon_sym_DQUOTE] = ACTIONS(3304), - [anon_sym_POUND] = ACTIONS(3304), - [anon_sym_DOLLAR] = ACTIONS(3304), - [anon_sym_PERCENT] = ACTIONS(3304), - [anon_sym_AMP] = ACTIONS(3301), - [anon_sym_SQUOTE] = ACTIONS(3304), - [anon_sym_STAR] = ACTIONS(3304), - [anon_sym_PLUS] = ACTIONS(3304), - [anon_sym_COMMA] = ACTIONS(3304), - [anon_sym_DASH] = ACTIONS(3301), - [anon_sym_DOT] = ACTIONS(3301), - [anon_sym_SLASH] = ACTIONS(3304), - [anon_sym_COLON] = ACTIONS(3304), - [anon_sym_SEMI] = ACTIONS(3304), - [anon_sym_EQ] = ACTIONS(3304), - [anon_sym_QMARK] = ACTIONS(3304), - [anon_sym_LBRACK] = ACTIONS(2889), - [anon_sym_BSLASH] = ACTIONS(3310), - [anon_sym_CARET] = ACTIONS(3301), - [anon_sym__] = ACTIONS(3304), - [anon_sym_BQUOTE] = ACTIONS(3304), - [anon_sym_LBRACE] = ACTIONS(3313), - [anon_sym_PIPE] = ACTIONS(3304), - [anon_sym_TILDE] = ACTIONS(3304), - [anon_sym_LPAREN] = ACTIONS(3304), - [anon_sym_RPAREN] = ACTIONS(3304), - [sym__newline_token] = ACTIONS(3316), - [anon_sym_CARET_LBRACK] = ACTIONS(3319), - [anon_sym_LBRACK_CARET] = ACTIONS(3322), - [sym_uri_autolink] = ACTIONS(3298), - [sym_email_autolink] = ACTIONS(3298), - [sym__whitespace_ge_2] = ACTIONS(3325), - [aux_sym__whitespace_token1] = ACTIONS(3328), - [sym__word_no_digit] = ACTIONS(3331), - [sym__digits] = ACTIONS(3331), - [anon_sym_DASH_DASH] = ACTIONS(3334), - [anon_sym_DASH_DASH_DASH] = ACTIONS(3331), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3331), - [sym__code_span_start] = ACTIONS(3337), - [sym__emphasis_open_star] = ACTIONS(2921), - [sym__emphasis_open_underscore] = ACTIONS(2921), - [sym__strikeout_open] = ACTIONS(3340), - [sym__latex_span_start] = ACTIONS(3343), - [sym__single_quote_open] = ACTIONS(3346), - [sym__double_quote_open] = ACTIONS(3349), - [sym__double_quote_close] = ACTIONS(2921), - [sym__superscript_open] = ACTIONS(3352), - [sym__subscript_open] = ACTIONS(3355), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3358), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3361), - [sym__cite_author_in_text] = ACTIONS(3364), - [sym__cite_suppress_author] = ACTIONS(3367), - [sym__shortcode_open_escaped] = ACTIONS(3370), - [sym__shortcode_open] = ACTIONS(3373), - [sym__unclosed_span] = ACTIONS(3298), + [sym_backslash_escape] = STATE(370), + [sym_commonmark_attribute] = STATE(370), + [sym_code_span] = STATE(370), + [sym_latex_span] = STATE(370), + [sym_insert] = STATE(370), + [sym_delete] = STATE(370), + [sym_highlight] = STATE(370), + [sym_edit_comment] = STATE(370), + [sym_superscript] = STATE(370), + [sym_subscript] = STATE(370), + [sym_strikeout] = STATE(370), + [sym_quoted_span] = STATE(370), + [sym_inline_note] = STATE(370), + [sym_citation] = STATE(370), + [sym_shortcode_escaped] = STATE(370), + [sym_shortcode] = STATE(370), + [sym_note_reference] = STATE(370), + [sym__link_text] = STATE(472), + [sym__link_text_non_empty] = STATE(473), + [sym_inline_link] = STATE(60), + [sym_image] = STATE(370), + [sym__image_inline_link] = STATE(923), + [sym__image_description] = STATE(2342), + [sym__image_description_non_empty] = STATE(2342), + [sym_hard_line_break] = STATE(370), + [sym__whitespace] = STATE(920), + [sym__word] = STATE(920), + [sym__soft_line_break] = STATE(924), + [sym__inline_base] = STATE(60), + [sym__text_base] = STATE(370), + [sym__inline_element] = STATE(60), + [sym__emphasis_star] = STATE(821), + [sym__strong_emphasis_star] = STATE(60), + [sym__emphasis_underscore] = STATE(821), + [sym__strong_emphasis_underscore] = STATE(60), + [aux_sym_insert_repeat1] = STATE(60), + [aux_sym__inline_base_repeat1] = STATE(370), + [sym__backslash_escape] = ACTIONS(73), + [sym_entity_reference] = ACTIONS(75), + [sym_numeric_character_reference] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_BANG] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_POUND] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(79), + [anon_sym_PERCENT] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_STAR] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_COMMA] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_DOT] = ACTIONS(77), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_COLON] = ACTIONS(79), + [anon_sym_SEMI] = ACTIONS(79), + [anon_sym_EQ] = ACTIONS(79), + [anon_sym_QMARK] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(83), + [anon_sym_BSLASH] = ACTIONS(85), + [anon_sym_RBRACK] = ACTIONS(2731), + [anon_sym_CARET] = ACTIONS(77), + [anon_sym__] = ACTIONS(79), + [anon_sym_BQUOTE] = ACTIONS(79), + [anon_sym_LBRACE] = ACTIONS(89), + [anon_sym_PIPE] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(79), + [anon_sym_RPAREN] = ACTIONS(79), + [sym__newline_token] = ACTIONS(91), + [aux_sym_insert_token1] = ACTIONS(93), + [aux_sym_delete_token1] = ACTIONS(95), + [aux_sym_highlight_token1] = ACTIONS(97), + [aux_sym_edit_comment_token1] = ACTIONS(99), + [anon_sym_CARET_LBRACK] = ACTIONS(101), + [anon_sym_LBRACK_CARET] = ACTIONS(103), + [sym_uri_autolink] = ACTIONS(75), + [sym_email_autolink] = ACTIONS(75), + [sym__whitespace_ge_2] = ACTIONS(105), + [aux_sym__whitespace_token1] = ACTIONS(107), + [sym__word_no_digit] = ACTIONS(109), + [sym__digits] = ACTIONS(109), + [anon_sym_DASH_DASH] = ACTIONS(111), + [anon_sym_DASH_DASH_DASH] = ACTIONS(109), + [anon_sym_DOT_DOT_DOT] = ACTIONS(109), + [sym__code_span_start] = ACTIONS(113), + [sym__emphasis_open_star] = ACTIONS(115), + [sym__emphasis_open_underscore] = ACTIONS(117), + [sym__strikeout_open] = ACTIONS(121), + [sym__latex_span_start] = ACTIONS(123), + [sym__single_quote_open] = ACTIONS(125), + [sym__double_quote_open] = ACTIONS(127), + [sym__superscript_open] = ACTIONS(129), + [sym__subscript_open] = ACTIONS(131), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(133), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(135), + [sym__cite_author_in_text] = ACTIONS(137), + [sym__cite_suppress_author] = ACTIONS(139), + [sym__shortcode_open_escaped] = ACTIONS(141), + [sym__shortcode_open] = ACTIONS(143), + [sym__unclosed_span] = ACTIONS(75), }, [STATE(270)] = { - [sym_backslash_escape] = STATE(275), - [sym_commonmark_attribute] = STATE(275), - [sym_code_span] = STATE(275), - [sym_latex_span] = STATE(275), - [sym_superscript] = STATE(275), - [sym_subscript] = STATE(275), - [sym_strikeout] = STATE(275), - [sym_quoted_span] = STATE(275), - [sym_inline_note] = STATE(275), - [sym_citation] = STATE(275), - [sym_shortcode_escaped] = STATE(275), - [sym_shortcode] = STATE(275), - [sym_note_reference] = STATE(275), - [sym_image] = STATE(275), - [sym__image_inline_link] = STATE(795), - [sym__image_description] = STATE(1984), - [sym__image_description_non_empty] = STATE(1984), - [sym_hard_line_break] = STATE(275), - [sym__whitespace] = STATE(792), - [sym__word] = STATE(792), - [sym__soft_line_break] = STATE(796), - [sym__text_base] = STATE(275), - [aux_sym__inline_base_repeat1] = STATE(275), - [sym__backslash_escape] = ACTIONS(809), - [sym_entity_reference] = ACTIONS(3376), - [sym_numeric_character_reference] = ACTIONS(3376), - [anon_sym_LT] = ACTIONS(813), - [anon_sym_GT] = ACTIONS(815), - [anon_sym_BANG] = ACTIONS(817), - [anon_sym_DQUOTE] = ACTIONS(815), - [anon_sym_POUND] = ACTIONS(815), - [anon_sym_DOLLAR] = ACTIONS(815), - [anon_sym_PERCENT] = ACTIONS(815), - [anon_sym_AMP] = ACTIONS(813), - [anon_sym_SQUOTE] = ACTIONS(815), - [anon_sym_STAR] = ACTIONS(815), - [anon_sym_PLUS] = ACTIONS(815), - [anon_sym_COMMA] = ACTIONS(815), - [anon_sym_DASH] = ACTIONS(813), - [anon_sym_DOT] = ACTIONS(813), - [anon_sym_SLASH] = ACTIONS(815), - [anon_sym_COLON] = ACTIONS(815), - [anon_sym_SEMI] = ACTIONS(815), - [anon_sym_EQ] = ACTIONS(815), - [anon_sym_QMARK] = ACTIONS(815), - [anon_sym_LBRACK] = ACTIONS(2961), - [anon_sym_BSLASH] = ACTIONS(821), - [anon_sym_CARET] = ACTIONS(813), - [anon_sym__] = ACTIONS(815), - [anon_sym_BQUOTE] = ACTIONS(815), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_PIPE] = ACTIONS(815), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_RPAREN] = ACTIONS(815), - [sym__newline_token] = ACTIONS(825), - [anon_sym_CARET_LBRACK] = ACTIONS(827), - [anon_sym_LBRACK_CARET] = ACTIONS(829), - [sym_uri_autolink] = ACTIONS(3376), - [sym_email_autolink] = ACTIONS(3376), - [sym__whitespace_ge_2] = ACTIONS(831), - [aux_sym__whitespace_token1] = ACTIONS(833), - [sym__word_no_digit] = ACTIONS(835), - [sym__digits] = ACTIONS(835), - [anon_sym_DASH_DASH] = ACTIONS(837), - [anon_sym_DASH_DASH_DASH] = ACTIONS(835), - [anon_sym_DOT_DOT_DOT] = ACTIONS(835), - [sym__code_span_start] = ACTIONS(839), - [sym__emphasis_open_star] = ACTIONS(2963), - [sym__emphasis_open_underscore] = ACTIONS(2963), - [sym__strikeout_open] = ACTIONS(845), - [sym__latex_span_start] = ACTIONS(847), - [sym__single_quote_open] = ACTIONS(849), - [sym__double_quote_open] = ACTIONS(851), - [sym__superscript_open] = ACTIONS(853), - [sym__subscript_open] = ACTIONS(855), - [sym__subscript_close] = ACTIONS(2963), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(859), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(861), - [sym__cite_author_in_text] = ACTIONS(863), - [sym__cite_suppress_author] = ACTIONS(865), - [sym__shortcode_open_escaped] = ACTIONS(867), - [sym__shortcode_open] = ACTIONS(869), - [sym__unclosed_span] = ACTIONS(3376), + [sym_backslash_escape] = STATE(366), + [sym_commonmark_attribute] = STATE(366), + [sym_code_span] = STATE(366), + [sym_latex_span] = STATE(366), + [sym_insert] = STATE(366), + [sym_delete] = STATE(366), + [sym_highlight] = STATE(366), + [sym_edit_comment] = STATE(366), + [sym_superscript] = STATE(366), + [sym_subscript] = STATE(366), + [sym_strikeout] = STATE(366), + [sym_quoted_span] = STATE(366), + [sym_inline_note] = STATE(366), + [sym_citation] = STATE(366), + [sym_shortcode_escaped] = STATE(366), + [sym_shortcode] = STATE(366), + [sym_note_reference] = STATE(366), + [sym__link_text] = STATE(490), + [sym__link_text_non_empty] = STATE(491), + [sym_inline_link] = STATE(282), + [sym_image] = STATE(366), + [sym__image_inline_link] = STATE(1244), + [sym__image_description] = STATE(2280), + [sym__image_description_non_empty] = STATE(2280), + [sym_hard_line_break] = STATE(366), + [sym__whitespace] = STATE(1218), + [sym__word] = STATE(1218), + [sym__soft_line_break] = STATE(1245), + [sym__inline_base] = STATE(282), + [sym__text_base] = STATE(366), + [sym__inline_element] = STATE(282), + [sym__emphasis_star] = STATE(1270), + [sym__strong_emphasis_star] = STATE(282), + [sym__emphasis_underscore] = STATE(1270), + [sym__strong_emphasis_underscore] = STATE(282), + [aux_sym_insert_repeat1] = STATE(282), + [aux_sym__inline_base_repeat1] = STATE(366), + [sym__backslash_escape] = ACTIONS(2005), + [sym_entity_reference] = ACTIONS(2007), + [sym_numeric_character_reference] = ACTIONS(2007), + [anon_sym_LT] = ACTIONS(2009), + [anon_sym_GT] = ACTIONS(2011), + [anon_sym_BANG] = ACTIONS(2013), + [anon_sym_DQUOTE] = ACTIONS(2011), + [anon_sym_POUND] = ACTIONS(2011), + [anon_sym_DOLLAR] = ACTIONS(2011), + [anon_sym_PERCENT] = ACTIONS(2011), + [anon_sym_AMP] = ACTIONS(2009), + [anon_sym_SQUOTE] = ACTIONS(2011), + [anon_sym_STAR] = ACTIONS(2011), + [anon_sym_PLUS] = ACTIONS(2011), + [anon_sym_COMMA] = ACTIONS(2011), + [anon_sym_DASH] = ACTIONS(2009), + [anon_sym_DOT] = ACTIONS(2009), + [anon_sym_SLASH] = ACTIONS(2011), + [anon_sym_COLON] = ACTIONS(2011), + [anon_sym_SEMI] = ACTIONS(2011), + [anon_sym_EQ] = ACTIONS(2011), + [anon_sym_QMARK] = ACTIONS(2011), + [anon_sym_LBRACK] = ACTIONS(2015), + [anon_sym_BSLASH] = ACTIONS(2017), + [anon_sym_CARET] = ACTIONS(2009), + [anon_sym__] = ACTIONS(2011), + [anon_sym_BQUOTE] = ACTIONS(2011), + [anon_sym_LBRACE] = ACTIONS(2019), + [anon_sym_PIPE] = ACTIONS(2011), + [anon_sym_TILDE] = ACTIONS(2011), + [anon_sym_LPAREN] = ACTIONS(2011), + [anon_sym_RPAREN] = ACTIONS(2011), + [sym__newline_token] = ACTIONS(2021), + [aux_sym_insert_token1] = ACTIONS(2023), + [aux_sym_delete_token1] = ACTIONS(2025), + [aux_sym_highlight_token1] = ACTIONS(2027), + [aux_sym_edit_comment_token1] = ACTIONS(2029), + [anon_sym_CARET_LBRACK] = ACTIONS(2031), + [anon_sym_LBRACK_CARET] = ACTIONS(2033), + [sym_uri_autolink] = ACTIONS(2007), + [sym_email_autolink] = ACTIONS(2007), + [sym__whitespace_ge_2] = ACTIONS(2035), + [aux_sym__whitespace_token1] = ACTIONS(2037), + [sym__word_no_digit] = ACTIONS(2039), + [sym__digits] = ACTIONS(2039), + [anon_sym_DASH_DASH] = ACTIONS(2041), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2039), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2039), + [sym__code_span_start] = ACTIONS(2043), + [sym__emphasis_open_star] = ACTIONS(2045), + [sym__emphasis_open_underscore] = ACTIONS(2047), + [sym__strikeout_open] = ACTIONS(2049), + [sym__strikeout_close] = ACTIONS(2733), + [sym__latex_span_start] = ACTIONS(2053), + [sym__single_quote_open] = ACTIONS(2055), + [sym__double_quote_open] = ACTIONS(2057), + [sym__superscript_open] = ACTIONS(2059), + [sym__subscript_open] = ACTIONS(2061), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2063), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2065), + [sym__cite_author_in_text] = ACTIONS(2067), + [sym__cite_suppress_author] = ACTIONS(2069), + [sym__shortcode_open_escaped] = ACTIONS(2071), + [sym__shortcode_open] = ACTIONS(2073), + [sym__unclosed_span] = ACTIONS(2007), }, [STATE(271)] = { - [sym_backslash_escape] = STATE(273), - [sym_commonmark_attribute] = STATE(273), - [sym_code_span] = STATE(273), - [sym_latex_span] = STATE(273), - [sym_superscript] = STATE(273), - [sym_subscript] = STATE(273), - [sym_strikeout] = STATE(273), - [sym_quoted_span] = STATE(273), - [sym_inline_note] = STATE(273), - [sym_citation] = STATE(273), - [sym_shortcode_escaped] = STATE(273), - [sym_shortcode] = STATE(273), - [sym_note_reference] = STATE(273), - [sym_image] = STATE(273), - [sym__image_inline_link] = STATE(883), - [sym__image_description] = STATE(1998), - [sym__image_description_non_empty] = STATE(1998), - [sym_hard_line_break] = STATE(273), - [sym__whitespace] = STATE(881), - [sym__word] = STATE(881), - [sym__soft_line_break] = STATE(884), - [sym__text_base] = STATE(273), - [aux_sym__inline_base_repeat1] = STATE(273), - [sym__backslash_escape] = ACTIONS(159), - [sym_entity_reference] = ACTIONS(3378), - [sym_numeric_character_reference] = ACTIONS(3378), - [anon_sym_LT] = ACTIONS(163), - [anon_sym_GT] = ACTIONS(165), - [anon_sym_BANG] = ACTIONS(167), - [anon_sym_DQUOTE] = ACTIONS(165), - [anon_sym_POUND] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(165), - [anon_sym_PERCENT] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_SQUOTE] = ACTIONS(165), - [anon_sym_STAR] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(165), - [anon_sym_COMMA] = ACTIONS(165), - [anon_sym_DASH] = ACTIONS(163), - [anon_sym_DOT] = ACTIONS(163), - [anon_sym_SLASH] = ACTIONS(165), - [anon_sym_COLON] = ACTIONS(165), - [anon_sym_SEMI] = ACTIONS(165), - [anon_sym_EQ] = ACTIONS(165), - [anon_sym_QMARK] = ACTIONS(165), - [anon_sym_LBRACK] = ACTIONS(2961), - [anon_sym_BSLASH] = ACTIONS(171), - [anon_sym_RBRACK] = ACTIONS(2963), - [anon_sym_CARET] = ACTIONS(163), - [anon_sym__] = ACTIONS(165), - [anon_sym_BQUOTE] = ACTIONS(165), - [anon_sym_LBRACE] = ACTIONS(175), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(165), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_RPAREN] = ACTIONS(165), - [sym__newline_token] = ACTIONS(177), - [anon_sym_CARET_LBRACK] = ACTIONS(179), - [anon_sym_LBRACK_CARET] = ACTIONS(181), - [sym_uri_autolink] = ACTIONS(3378), - [sym_email_autolink] = ACTIONS(3378), - [sym__whitespace_ge_2] = ACTIONS(183), - [aux_sym__whitespace_token1] = ACTIONS(185), - [sym__word_no_digit] = ACTIONS(187), - [sym__digits] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_DASH_DASH_DASH] = ACTIONS(187), - [anon_sym_DOT_DOT_DOT] = ACTIONS(187), - [sym__code_span_start] = ACTIONS(191), - [sym__emphasis_open_star] = ACTIONS(2963), - [sym__emphasis_open_underscore] = ACTIONS(2963), - [sym__strikeout_open] = ACTIONS(199), - [sym__latex_span_start] = ACTIONS(201), - [sym__single_quote_open] = ACTIONS(203), - [sym__double_quote_open] = ACTIONS(205), - [sym__superscript_open] = ACTIONS(207), - [sym__subscript_open] = ACTIONS(209), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(211), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(213), - [sym__cite_author_in_text] = ACTIONS(215), - [sym__cite_suppress_author] = ACTIONS(217), - [sym__shortcode_open_escaped] = ACTIONS(219), - [sym__shortcode_open] = ACTIONS(221), - [sym__unclosed_span] = ACTIONS(3378), + [sym_backslash_escape] = STATE(375), + [sym_commonmark_attribute] = STATE(375), + [sym_code_span] = STATE(375), + [sym_latex_span] = STATE(375), + [sym_insert] = STATE(375), + [sym_delete] = STATE(375), + [sym_highlight] = STATE(375), + [sym_edit_comment] = STATE(375), + [sym_superscript] = STATE(375), + [sym_subscript] = STATE(375), + [sym_strikeout] = STATE(375), + [sym_quoted_span] = STATE(375), + [sym_inline_note] = STATE(375), + [sym_citation] = STATE(375), + [sym_shortcode_escaped] = STATE(375), + [sym_shortcode] = STATE(375), + [sym_note_reference] = STATE(375), + [sym__link_text] = STATE(525), + [sym__link_text_non_empty] = STATE(527), + [sym_inline_link] = STATE(283), + [sym_image] = STATE(375), + [sym__image_inline_link] = STATE(972), + [sym__image_description] = STATE(2286), + [sym__image_description_non_empty] = STATE(2286), + [sym_hard_line_break] = STATE(375), + [sym__whitespace] = STATE(949), + [sym__word] = STATE(949), + [sym__soft_line_break] = STATE(973), + [sym__inline_base] = STATE(283), + [sym__text_base] = STATE(375), + [sym__inline_element] = STATE(283), + [sym__emphasis_star] = STATE(1392), + [sym__strong_emphasis_star] = STATE(283), + [sym__emphasis_underscore] = STATE(1392), + [sym__strong_emphasis_underscore] = STATE(283), + [aux_sym_insert_repeat1] = STATE(283), + [aux_sym__inline_base_repeat1] = STATE(375), + [sym__backslash_escape] = ACTIONS(2179), + [sym_entity_reference] = ACTIONS(2181), + [sym_numeric_character_reference] = ACTIONS(2181), + [anon_sym_LT] = ACTIONS(2183), + [anon_sym_GT] = ACTIONS(2185), + [anon_sym_BANG] = ACTIONS(2187), + [anon_sym_DQUOTE] = ACTIONS(2185), + [anon_sym_POUND] = ACTIONS(2185), + [anon_sym_DOLLAR] = ACTIONS(2185), + [anon_sym_PERCENT] = ACTIONS(2185), + [anon_sym_AMP] = ACTIONS(2183), + [anon_sym_SQUOTE] = ACTIONS(2185), + [anon_sym_STAR] = ACTIONS(2185), + [anon_sym_PLUS] = ACTIONS(2185), + [anon_sym_COMMA] = ACTIONS(2185), + [anon_sym_DASH] = ACTIONS(2183), + [anon_sym_DOT] = ACTIONS(2183), + [anon_sym_SLASH] = ACTIONS(2185), + [anon_sym_COLON] = ACTIONS(2185), + [anon_sym_SEMI] = ACTIONS(2185), + [anon_sym_EQ] = ACTIONS(2185), + [anon_sym_QMARK] = ACTIONS(2185), + [anon_sym_LBRACK] = ACTIONS(2189), + [anon_sym_BSLASH] = ACTIONS(2191), + [anon_sym_CARET] = ACTIONS(2183), + [anon_sym__] = ACTIONS(2185), + [anon_sym_BQUOTE] = ACTIONS(2185), + [anon_sym_LBRACE] = ACTIONS(2193), + [anon_sym_PIPE] = ACTIONS(2185), + [anon_sym_TILDE] = ACTIONS(2185), + [anon_sym_LPAREN] = ACTIONS(2185), + [anon_sym_RPAREN] = ACTIONS(2185), + [sym__newline_token] = ACTIONS(2195), + [aux_sym_insert_token1] = ACTIONS(2197), + [aux_sym_delete_token1] = ACTIONS(2199), + [aux_sym_highlight_token1] = ACTIONS(2201), + [aux_sym_edit_comment_token1] = ACTIONS(2203), + [anon_sym_CARET_LBRACK] = ACTIONS(2205), + [anon_sym_LBRACK_CARET] = ACTIONS(2207), + [sym_uri_autolink] = ACTIONS(2181), + [sym_email_autolink] = ACTIONS(2181), + [sym__whitespace_ge_2] = ACTIONS(2209), + [aux_sym__whitespace_token1] = ACTIONS(2211), + [sym__word_no_digit] = ACTIONS(2213), + [sym__digits] = ACTIONS(2213), + [anon_sym_DASH_DASH] = ACTIONS(2215), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2213), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2213), + [sym__code_span_start] = ACTIONS(2217), + [sym__emphasis_open_star] = ACTIONS(2219), + [sym__emphasis_open_underscore] = ACTIONS(2221), + [sym__strikeout_open] = ACTIONS(2223), + [sym__latex_span_start] = ACTIONS(2225), + [sym__single_quote_open] = ACTIONS(2227), + [sym__single_quote_close] = ACTIONS(2735), + [sym__double_quote_open] = ACTIONS(2229), + [sym__superscript_open] = ACTIONS(2231), + [sym__subscript_open] = ACTIONS(2233), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2235), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2237), + [sym__cite_author_in_text] = ACTIONS(2239), + [sym__cite_suppress_author] = ACTIONS(2241), + [sym__shortcode_open_escaped] = ACTIONS(2243), + [sym__shortcode_open] = ACTIONS(2245), + [sym__unclosed_span] = ACTIONS(2181), }, [STATE(272)] = { - [sym_backslash_escape] = STATE(276), - [sym_commonmark_attribute] = STATE(276), - [sym_code_span] = STATE(276), - [sym_latex_span] = STATE(276), - [sym_superscript] = STATE(276), - [sym_subscript] = STATE(276), - [sym_strikeout] = STATE(276), - [sym_quoted_span] = STATE(276), - [sym_inline_note] = STATE(276), - [sym_citation] = STATE(276), - [sym_shortcode_escaped] = STATE(276), - [sym_shortcode] = STATE(276), - [sym_note_reference] = STATE(276), - [sym_image] = STATE(276), - [sym__image_inline_link] = STATE(1136), - [sym__image_description] = STATE(1942), - [sym__image_description_non_empty] = STATE(1942), - [sym_hard_line_break] = STATE(276), - [sym__whitespace] = STATE(1133), - [sym__word] = STATE(1133), - [sym__soft_line_break] = STATE(1137), - [sym__text_base] = STATE(276), - [aux_sym__inline_base_repeat1] = STATE(276), - [sym__backslash_escape] = ACTIONS(625), - [sym_entity_reference] = ACTIONS(3380), - [sym_numeric_character_reference] = ACTIONS(3380), - [anon_sym_LT] = ACTIONS(629), - [anon_sym_GT] = ACTIONS(631), - [anon_sym_BANG] = ACTIONS(633), - [anon_sym_DQUOTE] = ACTIONS(631), - [anon_sym_POUND] = ACTIONS(631), - [anon_sym_DOLLAR] = ACTIONS(631), - [anon_sym_PERCENT] = ACTIONS(631), - [anon_sym_AMP] = ACTIONS(629), - [anon_sym_SQUOTE] = ACTIONS(631), - [anon_sym_STAR] = ACTIONS(631), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_COMMA] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(629), - [anon_sym_DOT] = ACTIONS(629), - [anon_sym_SLASH] = ACTIONS(631), - [anon_sym_COLON] = ACTIONS(631), - [anon_sym_SEMI] = ACTIONS(631), - [anon_sym_EQ] = ACTIONS(631), - [anon_sym_QMARK] = ACTIONS(631), - [anon_sym_LBRACK] = ACTIONS(2961), - [anon_sym_BSLASH] = ACTIONS(637), - [anon_sym_CARET] = ACTIONS(629), - [anon_sym__] = ACTIONS(631), - [anon_sym_BQUOTE] = ACTIONS(631), - [anon_sym_LBRACE] = ACTIONS(639), - [anon_sym_PIPE] = ACTIONS(631), - [anon_sym_TILDE] = ACTIONS(631), - [anon_sym_LPAREN] = ACTIONS(631), - [anon_sym_RPAREN] = ACTIONS(631), - [sym__newline_token] = ACTIONS(641), - [anon_sym_CARET_LBRACK] = ACTIONS(643), - [anon_sym_LBRACK_CARET] = ACTIONS(645), - [sym_uri_autolink] = ACTIONS(3380), - [sym_email_autolink] = ACTIONS(3380), - [sym__whitespace_ge_2] = ACTIONS(647), - [aux_sym__whitespace_token1] = ACTIONS(649), - [sym__word_no_digit] = ACTIONS(651), - [sym__digits] = ACTIONS(651), - [anon_sym_DASH_DASH] = ACTIONS(653), - [anon_sym_DASH_DASH_DASH] = ACTIONS(651), - [anon_sym_DOT_DOT_DOT] = ACTIONS(651), - [sym__code_span_start] = ACTIONS(655), - [sym__emphasis_open_star] = ACTIONS(2963), - [sym__emphasis_open_underscore] = ACTIONS(2963), - [sym__strikeout_open] = ACTIONS(661), - [sym__latex_span_start] = ACTIONS(663), - [sym__single_quote_open] = ACTIONS(665), - [sym__single_quote_close] = ACTIONS(2963), - [sym__double_quote_open] = ACTIONS(669), - [sym__superscript_open] = ACTIONS(671), - [sym__subscript_open] = ACTIONS(673), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(675), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(677), - [sym__cite_author_in_text] = ACTIONS(679), - [sym__cite_suppress_author] = ACTIONS(681), - [sym__shortcode_open_escaped] = ACTIONS(683), - [sym__shortcode_open] = ACTIONS(685), - [sym__unclosed_span] = ACTIONS(3380), + [sym_backslash_escape] = STATE(383), + [sym_commonmark_attribute] = STATE(383), + [sym_code_span] = STATE(383), + [sym_latex_span] = STATE(383), + [sym_insert] = STATE(383), + [sym_delete] = STATE(383), + [sym_highlight] = STATE(383), + [sym_edit_comment] = STATE(383), + [sym_superscript] = STATE(383), + [sym_subscript] = STATE(383), + [sym_strikeout] = STATE(383), + [sym_quoted_span] = STATE(383), + [sym_inline_note] = STATE(383), + [sym_citation] = STATE(383), + [sym_shortcode_escaped] = STATE(383), + [sym_shortcode] = STATE(383), + [sym_note_reference] = STATE(383), + [sym__link_text] = STATE(395), + [sym__link_text_non_empty] = STATE(396), + [sym_inline_link] = STATE(284), + [sym_image] = STATE(383), + [sym__image_inline_link] = STATE(1263), + [sym__image_description] = STATE(2300), + [sym__image_description_non_empty] = STATE(2300), + [sym_hard_line_break] = STATE(383), + [sym__whitespace] = STATE(1259), + [sym__word] = STATE(1259), + [sym__soft_line_break] = STATE(1264), + [sym__inline_base] = STATE(284), + [sym__text_base] = STATE(383), + [sym__inline_element] = STATE(284), + [sym__emphasis_star] = STATE(1249), + [sym__strong_emphasis_star] = STATE(284), + [sym__emphasis_underscore] = STATE(1249), + [sym__strong_emphasis_underscore] = STATE(284), + [aux_sym_insert_repeat1] = STATE(284), + [aux_sym__inline_base_repeat1] = STATE(383), + [sym__backslash_escape] = ACTIONS(637), + [sym_entity_reference] = ACTIONS(639), + [sym_numeric_character_reference] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_GT] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(645), + [anon_sym_DQUOTE] = ACTIONS(643), + [anon_sym_POUND] = ACTIONS(643), + [anon_sym_DOLLAR] = ACTIONS(643), + [anon_sym_PERCENT] = ACTIONS(643), + [anon_sym_AMP] = ACTIONS(641), + [anon_sym_SQUOTE] = ACTIONS(643), + [anon_sym_STAR] = ACTIONS(643), + [anon_sym_PLUS] = ACTIONS(643), + [anon_sym_COMMA] = ACTIONS(643), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_DOT] = ACTIONS(641), + [anon_sym_SLASH] = ACTIONS(643), + [anon_sym_COLON] = ACTIONS(643), + [anon_sym_SEMI] = ACTIONS(643), + [anon_sym_EQ] = ACTIONS(643), + [anon_sym_QMARK] = ACTIONS(643), + [anon_sym_LBRACK] = ACTIONS(647), + [anon_sym_BSLASH] = ACTIONS(649), + [anon_sym_CARET] = ACTIONS(641), + [anon_sym__] = ACTIONS(643), + [anon_sym_BQUOTE] = ACTIONS(643), + [anon_sym_LBRACE] = ACTIONS(651), + [anon_sym_PIPE] = ACTIONS(643), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_LPAREN] = ACTIONS(643), + [anon_sym_RPAREN] = ACTIONS(643), + [sym__newline_token] = ACTIONS(653), + [aux_sym_insert_token1] = ACTIONS(655), + [aux_sym_delete_token1] = ACTIONS(657), + [aux_sym_highlight_token1] = ACTIONS(659), + [aux_sym_edit_comment_token1] = ACTIONS(661), + [anon_sym_CARET_LBRACK] = ACTIONS(663), + [anon_sym_LBRACK_CARET] = ACTIONS(665), + [sym_uri_autolink] = ACTIONS(639), + [sym_email_autolink] = ACTIONS(639), + [sym__whitespace_ge_2] = ACTIONS(667), + [aux_sym__whitespace_token1] = ACTIONS(669), + [sym__word_no_digit] = ACTIONS(671), + [sym__digits] = ACTIONS(671), + [anon_sym_DASH_DASH] = ACTIONS(673), + [anon_sym_DASH_DASH_DASH] = ACTIONS(671), + [anon_sym_DOT_DOT_DOT] = ACTIONS(671), + [sym__code_span_start] = ACTIONS(675), + [sym__emphasis_open_star] = ACTIONS(677), + [sym__emphasis_open_underscore] = ACTIONS(679), + [sym__strikeout_open] = ACTIONS(681), + [sym__latex_span_start] = ACTIONS(683), + [sym__single_quote_open] = ACTIONS(685), + [sym__double_quote_open] = ACTIONS(687), + [sym__double_quote_close] = ACTIONS(2735), + [sym__superscript_open] = ACTIONS(691), + [sym__subscript_open] = ACTIONS(693), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(695), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(697), + [sym__cite_author_in_text] = ACTIONS(699), + [sym__cite_suppress_author] = ACTIONS(701), + [sym__shortcode_open_escaped] = ACTIONS(703), + [sym__shortcode_open] = ACTIONS(705), + [sym__unclosed_span] = ACTIONS(639), }, [STATE(273)] = { - [sym_backslash_escape] = STATE(273), - [sym_commonmark_attribute] = STATE(273), - [sym_code_span] = STATE(273), - [sym_latex_span] = STATE(273), - [sym_superscript] = STATE(273), - [sym_subscript] = STATE(273), - [sym_strikeout] = STATE(273), - [sym_quoted_span] = STATE(273), - [sym_inline_note] = STATE(273), - [sym_citation] = STATE(273), - [sym_shortcode_escaped] = STATE(273), - [sym_shortcode] = STATE(273), - [sym_note_reference] = STATE(273), - [sym_image] = STATE(273), - [sym__image_inline_link] = STATE(883), - [sym__image_description] = STATE(1998), - [sym__image_description_non_empty] = STATE(1998), - [sym_hard_line_break] = STATE(273), - [sym__whitespace] = STATE(881), - [sym__word] = STATE(881), - [sym__soft_line_break] = STATE(884), - [sym__text_base] = STATE(273), - [aux_sym__inline_base_repeat1] = STATE(273), - [sym__backslash_escape] = ACTIONS(3382), - [sym_entity_reference] = ACTIONS(3385), - [sym_numeric_character_reference] = ACTIONS(3385), - [anon_sym_LT] = ACTIONS(3388), - [anon_sym_GT] = ACTIONS(3391), - [anon_sym_BANG] = ACTIONS(3394), - [anon_sym_DQUOTE] = ACTIONS(3391), - [anon_sym_POUND] = ACTIONS(3391), - [anon_sym_DOLLAR] = ACTIONS(3391), - [anon_sym_PERCENT] = ACTIONS(3391), - [anon_sym_AMP] = ACTIONS(3388), - [anon_sym_SQUOTE] = ACTIONS(3391), - [anon_sym_STAR] = ACTIONS(3391), - [anon_sym_PLUS] = ACTIONS(3391), - [anon_sym_COMMA] = ACTIONS(3391), - [anon_sym_DASH] = ACTIONS(3388), - [anon_sym_DOT] = ACTIONS(3388), - [anon_sym_SLASH] = ACTIONS(3391), - [anon_sym_COLON] = ACTIONS(3391), - [anon_sym_SEMI] = ACTIONS(3391), - [anon_sym_EQ] = ACTIONS(3391), - [anon_sym_QMARK] = ACTIONS(3391), - [anon_sym_LBRACK] = ACTIONS(2889), - [anon_sym_BSLASH] = ACTIONS(3397), - [anon_sym_RBRACK] = ACTIONS(2921), - [anon_sym_CARET] = ACTIONS(3388), - [anon_sym__] = ACTIONS(3391), - [anon_sym_BQUOTE] = ACTIONS(3391), - [anon_sym_LBRACE] = ACTIONS(3400), - [anon_sym_PIPE] = ACTIONS(3391), - [anon_sym_TILDE] = ACTIONS(3391), - [anon_sym_LPAREN] = ACTIONS(3391), - [anon_sym_RPAREN] = ACTIONS(3391), - [sym__newline_token] = ACTIONS(3403), - [anon_sym_CARET_LBRACK] = ACTIONS(3406), - [anon_sym_LBRACK_CARET] = ACTIONS(3409), - [sym_uri_autolink] = ACTIONS(3385), - [sym_email_autolink] = ACTIONS(3385), - [sym__whitespace_ge_2] = ACTIONS(3412), - [aux_sym__whitespace_token1] = ACTIONS(3415), - [sym__word_no_digit] = ACTIONS(3418), - [sym__digits] = ACTIONS(3418), - [anon_sym_DASH_DASH] = ACTIONS(3421), - [anon_sym_DASH_DASH_DASH] = ACTIONS(3418), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3418), - [sym__code_span_start] = ACTIONS(3424), - [sym__emphasis_open_star] = ACTIONS(2921), - [sym__emphasis_open_underscore] = ACTIONS(2921), - [sym__strikeout_open] = ACTIONS(3427), - [sym__latex_span_start] = ACTIONS(3430), - [sym__single_quote_open] = ACTIONS(3433), - [sym__double_quote_open] = ACTIONS(3436), - [sym__superscript_open] = ACTIONS(3439), - [sym__subscript_open] = ACTIONS(3442), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3445), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3448), - [sym__cite_author_in_text] = ACTIONS(3451), - [sym__cite_suppress_author] = ACTIONS(3454), - [sym__shortcode_open_escaped] = ACTIONS(3457), - [sym__shortcode_open] = ACTIONS(3460), - [sym__unclosed_span] = ACTIONS(3385), + [sym_backslash_escape] = STATE(365), + [sym_commonmark_attribute] = STATE(365), + [sym_code_span] = STATE(365), + [sym_latex_span] = STATE(365), + [sym_insert] = STATE(365), + [sym_delete] = STATE(365), + [sym_highlight] = STATE(365), + [sym_edit_comment] = STATE(365), + [sym_superscript] = STATE(365), + [sym_subscript] = STATE(365), + [sym_strikeout] = STATE(365), + [sym_quoted_span] = STATE(365), + [sym_inline_note] = STATE(365), + [sym_citation] = STATE(365), + [sym_shortcode_escaped] = STATE(365), + [sym_shortcode] = STATE(365), + [sym_note_reference] = STATE(365), + [sym__link_text] = STATE(416), + [sym__link_text_non_empty] = STATE(417), + [sym_inline_link] = STATE(285), + [sym_image] = STATE(365), + [sym__image_inline_link] = STATE(712), + [sym__image_description] = STATE(2314), + [sym__image_description_non_empty] = STATE(2314), + [sym_hard_line_break] = STATE(365), + [sym__whitespace] = STATE(709), + [sym__word] = STATE(709), + [sym__soft_line_break] = STATE(713), + [sym__inline_base] = STATE(285), + [sym__text_base] = STATE(365), + [sym__inline_element] = STATE(285), + [sym__emphasis_star] = STATE(979), + [sym__strong_emphasis_star] = STATE(285), + [sym__emphasis_underscore] = STATE(979), + [sym__strong_emphasis_underscore] = STATE(285), + [aux_sym_insert_repeat1] = STATE(285), + [aux_sym__inline_base_repeat1] = STATE(365), + [sym__backslash_escape] = ACTIONS(1341), + [sym_entity_reference] = ACTIONS(1343), + [sym_numeric_character_reference] = ACTIONS(1343), + [anon_sym_LT] = ACTIONS(1345), + [anon_sym_GT] = ACTIONS(1347), + [anon_sym_BANG] = ACTIONS(1349), + [anon_sym_DQUOTE] = ACTIONS(1347), + [anon_sym_POUND] = ACTIONS(1347), + [anon_sym_DOLLAR] = ACTIONS(1347), + [anon_sym_PERCENT] = ACTIONS(1347), + [anon_sym_AMP] = ACTIONS(1345), + [anon_sym_SQUOTE] = ACTIONS(1347), + [anon_sym_STAR] = ACTIONS(1347), + [anon_sym_PLUS] = ACTIONS(1347), + [anon_sym_COMMA] = ACTIONS(1347), + [anon_sym_DASH] = ACTIONS(1345), + [anon_sym_DOT] = ACTIONS(1345), + [anon_sym_SLASH] = ACTIONS(1347), + [anon_sym_COLON] = ACTIONS(1347), + [anon_sym_SEMI] = ACTIONS(1347), + [anon_sym_EQ] = ACTIONS(1347), + [anon_sym_QMARK] = ACTIONS(1347), + [anon_sym_LBRACK] = ACTIONS(1351), + [anon_sym_BSLASH] = ACTIONS(1353), + [anon_sym_CARET] = ACTIONS(1345), + [anon_sym__] = ACTIONS(1347), + [anon_sym_BQUOTE] = ACTIONS(1347), + [anon_sym_LBRACE] = ACTIONS(1355), + [anon_sym_PIPE] = ACTIONS(1347), + [anon_sym_TILDE] = ACTIONS(1347), + [anon_sym_LPAREN] = ACTIONS(1347), + [anon_sym_RPAREN] = ACTIONS(1347), + [sym__newline_token] = ACTIONS(1357), + [aux_sym_insert_token1] = ACTIONS(1359), + [aux_sym_delete_token1] = ACTIONS(1361), + [aux_sym_highlight_token1] = ACTIONS(1363), + [aux_sym_edit_comment_token1] = ACTIONS(1365), + [anon_sym_CARET_LBRACK] = ACTIONS(1367), + [anon_sym_LBRACK_CARET] = ACTIONS(1369), + [sym_uri_autolink] = ACTIONS(1343), + [sym_email_autolink] = ACTIONS(1343), + [sym__whitespace_ge_2] = ACTIONS(1371), + [aux_sym__whitespace_token1] = ACTIONS(1373), + [sym__word_no_digit] = ACTIONS(1375), + [sym__digits] = ACTIONS(1375), + [anon_sym_DASH_DASH] = ACTIONS(1377), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1375), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1375), + [sym__code_span_start] = ACTIONS(1379), + [sym__emphasis_open_star] = ACTIONS(1381), + [sym__emphasis_open_underscore] = ACTIONS(1383), + [sym__strikeout_open] = ACTIONS(1385), + [sym__latex_span_start] = ACTIONS(1387), + [sym__single_quote_open] = ACTIONS(1389), + [sym__double_quote_open] = ACTIONS(1391), + [sym__superscript_open] = ACTIONS(1393), + [sym__superscript_close] = ACTIONS(2737), + [sym__subscript_open] = ACTIONS(1397), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1399), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1401), + [sym__cite_author_in_text] = ACTIONS(1403), + [sym__cite_suppress_author] = ACTIONS(1405), + [sym__shortcode_open_escaped] = ACTIONS(1407), + [sym__shortcode_open] = ACTIONS(1409), + [sym__unclosed_span] = ACTIONS(1343), }, [STATE(274)] = { - [sym_backslash_escape] = STATE(260), - [sym_commonmark_attribute] = STATE(260), - [sym_code_span] = STATE(260), - [sym_latex_span] = STATE(260), - [sym_superscript] = STATE(260), - [sym_subscript] = STATE(260), - [sym_strikeout] = STATE(260), - [sym_quoted_span] = STATE(260), - [sym_inline_note] = STATE(260), - [sym_citation] = STATE(260), - [sym_shortcode_escaped] = STATE(260), - [sym_shortcode] = STATE(260), - [sym_note_reference] = STATE(260), - [sym_image] = STATE(260), - [sym__image_inline_link] = STATE(894), - [sym__image_description] = STATE(2008), - [sym__image_description_non_empty] = STATE(2008), - [sym_hard_line_break] = STATE(260), - [sym__whitespace] = STATE(882), - [sym__word] = STATE(882), - [sym__soft_line_break] = STATE(898), - [sym__text_base] = STATE(260), - [aux_sym__inline_base_repeat1] = STATE(260), - [sym__backslash_escape] = ACTIONS(1123), - [sym_entity_reference] = ACTIONS(3463), - [sym_numeric_character_reference] = ACTIONS(3463), - [anon_sym_LT] = ACTIONS(1127), - [anon_sym_GT] = ACTIONS(1129), - [anon_sym_BANG] = ACTIONS(1131), - [anon_sym_DQUOTE] = ACTIONS(1129), - [anon_sym_POUND] = ACTIONS(1129), - [anon_sym_DOLLAR] = ACTIONS(1129), - [anon_sym_PERCENT] = ACTIONS(1129), - [anon_sym_AMP] = ACTIONS(1127), - [anon_sym_SQUOTE] = ACTIONS(1129), - [anon_sym_STAR] = ACTIONS(1129), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_COMMA] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1127), - [anon_sym_DOT] = ACTIONS(1127), - [anon_sym_SLASH] = ACTIONS(1129), - [anon_sym_COLON] = ACTIONS(1129), - [anon_sym_SEMI] = ACTIONS(1129), - [anon_sym_EQ] = ACTIONS(1129), - [anon_sym_QMARK] = ACTIONS(1129), - [anon_sym_LBRACK] = ACTIONS(2961), - [anon_sym_BSLASH] = ACTIONS(1135), - [anon_sym_CARET] = ACTIONS(1127), - [anon_sym__] = ACTIONS(1129), - [anon_sym_BQUOTE] = ACTIONS(1129), - [anon_sym_LBRACE] = ACTIONS(1137), - [anon_sym_PIPE] = ACTIONS(1129), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1129), - [anon_sym_RPAREN] = ACTIONS(1129), - [sym__newline_token] = ACTIONS(1139), - [anon_sym_CARET_LBRACK] = ACTIONS(1141), - [anon_sym_LBRACK_CARET] = ACTIONS(1143), - [sym_uri_autolink] = ACTIONS(3463), - [sym_email_autolink] = ACTIONS(3463), - [sym__whitespace_ge_2] = ACTIONS(1145), - [aux_sym__whitespace_token1] = ACTIONS(1147), - [sym__word_no_digit] = ACTIONS(1149), - [sym__digits] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1151), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1149), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1149), - [sym__code_span_start] = ACTIONS(1153), - [sym__emphasis_open_star] = ACTIONS(2963), - [sym__emphasis_open_underscore] = ACTIONS(2963), - [sym__emphasis_close_underscore] = ACTIONS(2963), - [sym__strikeout_open] = ACTIONS(1161), - [sym__latex_span_start] = ACTIONS(1163), - [sym__single_quote_open] = ACTIONS(1165), - [sym__double_quote_open] = ACTIONS(1167), - [sym__superscript_open] = ACTIONS(1169), - [sym__subscript_open] = ACTIONS(1171), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1173), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1175), - [sym__cite_author_in_text] = ACTIONS(1177), - [sym__cite_suppress_author] = ACTIONS(1179), - [sym__shortcode_open_escaped] = ACTIONS(1181), - [sym__shortcode_open] = ACTIONS(1183), - [sym__unclosed_span] = ACTIONS(3463), + [sym_backslash_escape] = STATE(367), + [sym_commonmark_attribute] = STATE(367), + [sym_code_span] = STATE(367), + [sym_latex_span] = STATE(367), + [sym_insert] = STATE(367), + [sym_delete] = STATE(367), + [sym_highlight] = STATE(367), + [sym_edit_comment] = STATE(367), + [sym_superscript] = STATE(367), + [sym_subscript] = STATE(367), + [sym_strikeout] = STATE(367), + [sym_quoted_span] = STATE(367), + [sym_inline_note] = STATE(367), + [sym_citation] = STATE(367), + [sym_shortcode_escaped] = STATE(367), + [sym_shortcode] = STATE(367), + [sym_note_reference] = STATE(367), + [sym__link_text] = STATE(435), + [sym__link_text_non_empty] = STATE(436), + [sym_inline_link] = STATE(286), + [sym_image] = STATE(367), + [sym__image_inline_link] = STATE(819), + [sym__image_description] = STATE(2328), + [sym__image_description_non_empty] = STATE(2328), + [sym_hard_line_break] = STATE(367), + [sym__whitespace] = STATE(816), + [sym__word] = STATE(816), + [sym__soft_line_break] = STATE(820), + [sym__inline_base] = STATE(286), + [sym__text_base] = STATE(367), + [sym__inline_element] = STATE(286), + [sym__emphasis_star] = STATE(1271), + [sym__strong_emphasis_star] = STATE(286), + [sym__emphasis_underscore] = STATE(1271), + [sym__strong_emphasis_underscore] = STATE(286), + [aux_sym_insert_repeat1] = STATE(286), + [aux_sym__inline_base_repeat1] = STATE(367), + [sym__backslash_escape] = ACTIONS(1413), + [sym_entity_reference] = ACTIONS(1415), + [sym_numeric_character_reference] = ACTIONS(1415), + [anon_sym_LT] = ACTIONS(1417), + [anon_sym_GT] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1419), + [anon_sym_POUND] = ACTIONS(1419), + [anon_sym_DOLLAR] = ACTIONS(1419), + [anon_sym_PERCENT] = ACTIONS(1419), + [anon_sym_AMP] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [anon_sym_STAR] = ACTIONS(1419), + [anon_sym_PLUS] = ACTIONS(1419), + [anon_sym_COMMA] = ACTIONS(1419), + [anon_sym_DASH] = ACTIONS(1417), + [anon_sym_DOT] = ACTIONS(1417), + [anon_sym_SLASH] = ACTIONS(1419), + [anon_sym_COLON] = ACTIONS(1419), + [anon_sym_SEMI] = ACTIONS(1419), + [anon_sym_EQ] = ACTIONS(1419), + [anon_sym_QMARK] = ACTIONS(1419), + [anon_sym_LBRACK] = ACTIONS(1423), + [anon_sym_BSLASH] = ACTIONS(1425), + [anon_sym_CARET] = ACTIONS(1417), + [anon_sym__] = ACTIONS(1419), + [anon_sym_BQUOTE] = ACTIONS(1419), + [anon_sym_LBRACE] = ACTIONS(1427), + [anon_sym_PIPE] = ACTIONS(1419), + [anon_sym_TILDE] = ACTIONS(1419), + [anon_sym_LPAREN] = ACTIONS(1419), + [anon_sym_RPAREN] = ACTIONS(1419), + [sym__newline_token] = ACTIONS(1429), + [aux_sym_insert_token1] = ACTIONS(1431), + [aux_sym_delete_token1] = ACTIONS(1433), + [aux_sym_highlight_token1] = ACTIONS(1435), + [aux_sym_edit_comment_token1] = ACTIONS(1437), + [anon_sym_CARET_LBRACK] = ACTIONS(1439), + [anon_sym_LBRACK_CARET] = ACTIONS(1441), + [sym_uri_autolink] = ACTIONS(1415), + [sym_email_autolink] = ACTIONS(1415), + [sym__whitespace_ge_2] = ACTIONS(1443), + [aux_sym__whitespace_token1] = ACTIONS(1445), + [sym__word_no_digit] = ACTIONS(1447), + [sym__digits] = ACTIONS(1447), + [anon_sym_DASH_DASH] = ACTIONS(1449), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1447), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1447), + [sym__code_span_start] = ACTIONS(1451), + [sym__emphasis_open_star] = ACTIONS(1453), + [sym__emphasis_open_underscore] = ACTIONS(1455), + [sym__strikeout_open] = ACTIONS(1457), + [sym__latex_span_start] = ACTIONS(1459), + [sym__single_quote_open] = ACTIONS(1461), + [sym__double_quote_open] = ACTIONS(1463), + [sym__superscript_open] = ACTIONS(1465), + [sym__subscript_open] = ACTIONS(1467), + [sym__subscript_close] = ACTIONS(2739), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1471), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1473), + [sym__cite_author_in_text] = ACTIONS(1475), + [sym__cite_suppress_author] = ACTIONS(1477), + [sym__shortcode_open_escaped] = ACTIONS(1479), + [sym__shortcode_open] = ACTIONS(1481), + [sym__unclosed_span] = ACTIONS(1415), }, [STATE(275)] = { - [sym_backslash_escape] = STATE(275), - [sym_commonmark_attribute] = STATE(275), - [sym_code_span] = STATE(275), - [sym_latex_span] = STATE(275), - [sym_superscript] = STATE(275), - [sym_subscript] = STATE(275), - [sym_strikeout] = STATE(275), - [sym_quoted_span] = STATE(275), - [sym_inline_note] = STATE(275), - [sym_citation] = STATE(275), - [sym_shortcode_escaped] = STATE(275), - [sym_shortcode] = STATE(275), - [sym_note_reference] = STATE(275), - [sym_image] = STATE(275), - [sym__image_inline_link] = STATE(795), - [sym__image_description] = STATE(1984), - [sym__image_description_non_empty] = STATE(1984), - [sym_hard_line_break] = STATE(275), - [sym__whitespace] = STATE(792), - [sym__word] = STATE(792), - [sym__soft_line_break] = STATE(796), - [sym__text_base] = STATE(275), - [aux_sym__inline_base_repeat1] = STATE(275), - [sym__backslash_escape] = ACTIONS(3465), - [sym_entity_reference] = ACTIONS(3468), - [sym_numeric_character_reference] = ACTIONS(3468), - [anon_sym_LT] = ACTIONS(3471), - [anon_sym_GT] = ACTIONS(3474), - [anon_sym_BANG] = ACTIONS(3477), - [anon_sym_DQUOTE] = ACTIONS(3474), - [anon_sym_POUND] = ACTIONS(3474), - [anon_sym_DOLLAR] = ACTIONS(3474), - [anon_sym_PERCENT] = ACTIONS(3474), - [anon_sym_AMP] = ACTIONS(3471), - [anon_sym_SQUOTE] = ACTIONS(3474), - [anon_sym_STAR] = ACTIONS(3474), - [anon_sym_PLUS] = ACTIONS(3474), - [anon_sym_COMMA] = ACTIONS(3474), - [anon_sym_DASH] = ACTIONS(3471), - [anon_sym_DOT] = ACTIONS(3471), - [anon_sym_SLASH] = ACTIONS(3474), - [anon_sym_COLON] = ACTIONS(3474), - [anon_sym_SEMI] = ACTIONS(3474), - [anon_sym_EQ] = ACTIONS(3474), - [anon_sym_QMARK] = ACTIONS(3474), - [anon_sym_LBRACK] = ACTIONS(2889), - [anon_sym_BSLASH] = ACTIONS(3480), - [anon_sym_CARET] = ACTIONS(3471), - [anon_sym__] = ACTIONS(3474), - [anon_sym_BQUOTE] = ACTIONS(3474), - [anon_sym_LBRACE] = ACTIONS(3483), - [anon_sym_PIPE] = ACTIONS(3474), - [anon_sym_TILDE] = ACTIONS(3474), - [anon_sym_LPAREN] = ACTIONS(3474), - [anon_sym_RPAREN] = ACTIONS(3474), - [sym__newline_token] = ACTIONS(3486), - [anon_sym_CARET_LBRACK] = ACTIONS(3489), - [anon_sym_LBRACK_CARET] = ACTIONS(3492), - [sym_uri_autolink] = ACTIONS(3468), - [sym_email_autolink] = ACTIONS(3468), - [sym__whitespace_ge_2] = ACTIONS(3495), - [aux_sym__whitespace_token1] = ACTIONS(3498), - [sym__word_no_digit] = ACTIONS(3501), - [sym__digits] = ACTIONS(3501), - [anon_sym_DASH_DASH] = ACTIONS(3504), - [anon_sym_DASH_DASH_DASH] = ACTIONS(3501), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3501), - [sym__code_span_start] = ACTIONS(3507), - [sym__emphasis_open_star] = ACTIONS(2921), - [sym__emphasis_open_underscore] = ACTIONS(2921), - [sym__strikeout_open] = ACTIONS(3510), - [sym__latex_span_start] = ACTIONS(3513), - [sym__single_quote_open] = ACTIONS(3516), - [sym__double_quote_open] = ACTIONS(3519), - [sym__superscript_open] = ACTIONS(3522), - [sym__subscript_open] = ACTIONS(3525), - [sym__subscript_close] = ACTIONS(2921), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3528), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3531), - [sym__cite_author_in_text] = ACTIONS(3534), - [sym__cite_suppress_author] = ACTIONS(3537), - [sym__shortcode_open_escaped] = ACTIONS(3540), - [sym__shortcode_open] = ACTIONS(3543), - [sym__unclosed_span] = ACTIONS(3468), + [sym_backslash_escape] = STATE(372), + [sym_commonmark_attribute] = STATE(372), + [sym_code_span] = STATE(372), + [sym_latex_span] = STATE(372), + [sym_insert] = STATE(372), + [sym_delete] = STATE(372), + [sym_highlight] = STATE(372), + [sym_edit_comment] = STATE(372), + [sym_superscript] = STATE(372), + [sym_subscript] = STATE(372), + [sym_strikeout] = STATE(372), + [sym_quoted_span] = STATE(372), + [sym_inline_note] = STATE(372), + [sym_citation] = STATE(372), + [sym_shortcode_escaped] = STATE(372), + [sym_shortcode] = STATE(372), + [sym_note_reference] = STATE(372), + [sym__link_text] = STATE(454), + [sym__link_text_non_empty] = STATE(455), + [sym_inline_link] = STATE(287), + [sym_image] = STATE(372), + [sym__image_inline_link] = STATE(1025), + [sym__image_description] = STATE(2356), + [sym__image_description_non_empty] = STATE(2356), + [sym_hard_line_break] = STATE(372), + [sym__whitespace] = STATE(1022), + [sym__word] = STATE(1022), + [sym__soft_line_break] = STATE(1026), + [sym__inline_base] = STATE(287), + [sym__text_base] = STATE(372), + [sym__inline_element] = STATE(287), + [sym__emphasis_star] = STATE(714), + [sym__strong_emphasis_star] = STATE(287), + [sym__emphasis_underscore] = STATE(714), + [sym__strong_emphasis_underscore] = STATE(287), + [aux_sym_insert_repeat1] = STATE(287), + [aux_sym__inline_base_repeat1] = STATE(372), + [sym__backslash_escape] = ACTIONS(707), + [sym_entity_reference] = ACTIONS(709), + [sym_numeric_character_reference] = ACTIONS(709), + [anon_sym_LT] = ACTIONS(711), + [anon_sym_GT] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(715), + [anon_sym_DQUOTE] = ACTIONS(713), + [anon_sym_POUND] = ACTIONS(713), + [anon_sym_DOLLAR] = ACTIONS(713), + [anon_sym_PERCENT] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(711), + [anon_sym_SQUOTE] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_COMMA] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_DOT] = ACTIONS(711), + [anon_sym_SLASH] = ACTIONS(713), + [anon_sym_COLON] = ACTIONS(713), + [anon_sym_SEMI] = ACTIONS(713), + [anon_sym_EQ] = ACTIONS(713), + [anon_sym_QMARK] = ACTIONS(713), + [anon_sym_LBRACK] = ACTIONS(717), + [anon_sym_BSLASH] = ACTIONS(719), + [anon_sym_CARET] = ACTIONS(711), + [anon_sym__] = ACTIONS(713), + [anon_sym_BQUOTE] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(721), + [anon_sym_PIPE] = ACTIONS(713), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_LPAREN] = ACTIONS(713), + [anon_sym_RPAREN] = ACTIONS(713), + [sym__newline_token] = ACTIONS(723), + [aux_sym_insert_token1] = ACTIONS(725), + [aux_sym_insert_token2] = ACTIONS(2741), + [aux_sym_delete_token1] = ACTIONS(729), + [aux_sym_highlight_token1] = ACTIONS(731), + [aux_sym_edit_comment_token1] = ACTIONS(733), + [anon_sym_CARET_LBRACK] = ACTIONS(735), + [anon_sym_LBRACK_CARET] = ACTIONS(737), + [sym_uri_autolink] = ACTIONS(709), + [sym_email_autolink] = ACTIONS(709), + [sym__whitespace_ge_2] = ACTIONS(739), + [aux_sym__whitespace_token1] = ACTIONS(741), + [sym__word_no_digit] = ACTIONS(743), + [sym__digits] = ACTIONS(743), + [anon_sym_DASH_DASH] = ACTIONS(745), + [anon_sym_DASH_DASH_DASH] = ACTIONS(743), + [anon_sym_DOT_DOT_DOT] = ACTIONS(743), + [sym__code_span_start] = ACTIONS(747), + [sym__emphasis_open_star] = ACTIONS(749), + [sym__emphasis_open_underscore] = ACTIONS(751), + [sym__strikeout_open] = ACTIONS(753), + [sym__latex_span_start] = ACTIONS(755), + [sym__single_quote_open] = ACTIONS(757), + [sym__double_quote_open] = ACTIONS(759), + [sym__superscript_open] = ACTIONS(761), + [sym__subscript_open] = ACTIONS(763), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(765), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(767), + [sym__cite_author_in_text] = ACTIONS(769), + [sym__cite_suppress_author] = ACTIONS(771), + [sym__shortcode_open_escaped] = ACTIONS(773), + [sym__shortcode_open] = ACTIONS(775), + [sym__unclosed_span] = ACTIONS(709), }, [STATE(276)] = { - [sym_backslash_escape] = STATE(276), - [sym_commonmark_attribute] = STATE(276), - [sym_code_span] = STATE(276), - [sym_latex_span] = STATE(276), - [sym_superscript] = STATE(276), - [sym_subscript] = STATE(276), - [sym_strikeout] = STATE(276), - [sym_quoted_span] = STATE(276), - [sym_inline_note] = STATE(276), - [sym_citation] = STATE(276), - [sym_shortcode_escaped] = STATE(276), - [sym_shortcode] = STATE(276), - [sym_note_reference] = STATE(276), - [sym_image] = STATE(276), - [sym__image_inline_link] = STATE(1136), - [sym__image_description] = STATE(1942), - [sym__image_description_non_empty] = STATE(1942), - [sym_hard_line_break] = STATE(276), - [sym__whitespace] = STATE(1133), - [sym__word] = STATE(1133), - [sym__soft_line_break] = STATE(1137), - [sym__text_base] = STATE(276), - [aux_sym__inline_base_repeat1] = STATE(276), - [sym__backslash_escape] = ACTIONS(3546), - [sym_entity_reference] = ACTIONS(3549), - [sym_numeric_character_reference] = ACTIONS(3549), - [anon_sym_LT] = ACTIONS(3552), - [anon_sym_GT] = ACTIONS(3555), - [anon_sym_BANG] = ACTIONS(3558), - [anon_sym_DQUOTE] = ACTIONS(3555), - [anon_sym_POUND] = ACTIONS(3555), - [anon_sym_DOLLAR] = ACTIONS(3555), - [anon_sym_PERCENT] = ACTIONS(3555), - [anon_sym_AMP] = ACTIONS(3552), - [anon_sym_SQUOTE] = ACTIONS(3555), - [anon_sym_STAR] = ACTIONS(3555), - [anon_sym_PLUS] = ACTIONS(3555), - [anon_sym_COMMA] = ACTIONS(3555), - [anon_sym_DASH] = ACTIONS(3552), - [anon_sym_DOT] = ACTIONS(3552), - [anon_sym_SLASH] = ACTIONS(3555), - [anon_sym_COLON] = ACTIONS(3555), - [anon_sym_SEMI] = ACTIONS(3555), - [anon_sym_EQ] = ACTIONS(3555), - [anon_sym_QMARK] = ACTIONS(3555), - [anon_sym_LBRACK] = ACTIONS(2889), - [anon_sym_BSLASH] = ACTIONS(3561), - [anon_sym_CARET] = ACTIONS(3552), - [anon_sym__] = ACTIONS(3555), - [anon_sym_BQUOTE] = ACTIONS(3555), - [anon_sym_LBRACE] = ACTIONS(3564), - [anon_sym_PIPE] = ACTIONS(3555), - [anon_sym_TILDE] = ACTIONS(3555), - [anon_sym_LPAREN] = ACTIONS(3555), - [anon_sym_RPAREN] = ACTIONS(3555), - [sym__newline_token] = ACTIONS(3567), - [anon_sym_CARET_LBRACK] = ACTIONS(3570), - [anon_sym_LBRACK_CARET] = ACTIONS(3573), - [sym_uri_autolink] = ACTIONS(3549), - [sym_email_autolink] = ACTIONS(3549), - [sym__whitespace_ge_2] = ACTIONS(3576), - [aux_sym__whitespace_token1] = ACTIONS(3579), - [sym__word_no_digit] = ACTIONS(3582), - [sym__digits] = ACTIONS(3582), - [anon_sym_DASH_DASH] = ACTIONS(3585), - [anon_sym_DASH_DASH_DASH] = ACTIONS(3582), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3582), - [sym__code_span_start] = ACTIONS(3588), - [sym__emphasis_open_star] = ACTIONS(2921), - [sym__emphasis_open_underscore] = ACTIONS(2921), - [sym__strikeout_open] = ACTIONS(3591), - [sym__latex_span_start] = ACTIONS(3594), - [sym__single_quote_open] = ACTIONS(3597), - [sym__single_quote_close] = ACTIONS(2921), - [sym__double_quote_open] = ACTIONS(3600), - [sym__superscript_open] = ACTIONS(3603), - [sym__subscript_open] = ACTIONS(3606), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3609), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3612), - [sym__cite_author_in_text] = ACTIONS(3615), - [sym__cite_suppress_author] = ACTIONS(3618), - [sym__shortcode_open_escaped] = ACTIONS(3621), - [sym__shortcode_open] = ACTIONS(3624), - [sym__unclosed_span] = ACTIONS(3549), + [sym_backslash_escape] = STATE(372), + [sym_commonmark_attribute] = STATE(372), + [sym_code_span] = STATE(372), + [sym_latex_span] = STATE(372), + [sym_insert] = STATE(372), + [sym_delete] = STATE(372), + [sym_highlight] = STATE(372), + [sym_edit_comment] = STATE(372), + [sym_superscript] = STATE(372), + [sym_subscript] = STATE(372), + [sym_strikeout] = STATE(372), + [sym_quoted_span] = STATE(372), + [sym_inline_note] = STATE(372), + [sym_citation] = STATE(372), + [sym_shortcode_escaped] = STATE(372), + [sym_shortcode] = STATE(372), + [sym_note_reference] = STATE(372), + [sym__link_text] = STATE(454), + [sym__link_text_non_empty] = STATE(455), + [sym_inline_link] = STATE(288), + [sym_image] = STATE(372), + [sym__image_inline_link] = STATE(1025), + [sym__image_description] = STATE(2356), + [sym__image_description_non_empty] = STATE(2356), + [sym_hard_line_break] = STATE(372), + [sym__whitespace] = STATE(1022), + [sym__word] = STATE(1022), + [sym__soft_line_break] = STATE(1026), + [sym__inline_base] = STATE(288), + [sym__text_base] = STATE(372), + [sym__inline_element] = STATE(288), + [sym__emphasis_star] = STATE(714), + [sym__strong_emphasis_star] = STATE(288), + [sym__emphasis_underscore] = STATE(714), + [sym__strong_emphasis_underscore] = STATE(288), + [aux_sym_insert_repeat1] = STATE(288), + [aux_sym__inline_base_repeat1] = STATE(372), + [sym__backslash_escape] = ACTIONS(707), + [sym_entity_reference] = ACTIONS(709), + [sym_numeric_character_reference] = ACTIONS(709), + [anon_sym_LT] = ACTIONS(711), + [anon_sym_GT] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(715), + [anon_sym_DQUOTE] = ACTIONS(713), + [anon_sym_POUND] = ACTIONS(713), + [anon_sym_DOLLAR] = ACTIONS(713), + [anon_sym_PERCENT] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(711), + [anon_sym_SQUOTE] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_COMMA] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_DOT] = ACTIONS(711), + [anon_sym_SLASH] = ACTIONS(713), + [anon_sym_COLON] = ACTIONS(713), + [anon_sym_SEMI] = ACTIONS(713), + [anon_sym_EQ] = ACTIONS(713), + [anon_sym_QMARK] = ACTIONS(713), + [anon_sym_LBRACK] = ACTIONS(717), + [anon_sym_BSLASH] = ACTIONS(719), + [anon_sym_CARET] = ACTIONS(711), + [anon_sym__] = ACTIONS(713), + [anon_sym_BQUOTE] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(721), + [anon_sym_PIPE] = ACTIONS(713), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_LPAREN] = ACTIONS(713), + [anon_sym_RPAREN] = ACTIONS(713), + [sym__newline_token] = ACTIONS(723), + [aux_sym_insert_token1] = ACTIONS(725), + [aux_sym_insert_token2] = ACTIONS(2743), + [aux_sym_delete_token1] = ACTIONS(729), + [aux_sym_highlight_token1] = ACTIONS(731), + [aux_sym_edit_comment_token1] = ACTIONS(733), + [anon_sym_CARET_LBRACK] = ACTIONS(735), + [anon_sym_LBRACK_CARET] = ACTIONS(737), + [sym_uri_autolink] = ACTIONS(709), + [sym_email_autolink] = ACTIONS(709), + [sym__whitespace_ge_2] = ACTIONS(739), + [aux_sym__whitespace_token1] = ACTIONS(741), + [sym__word_no_digit] = ACTIONS(743), + [sym__digits] = ACTIONS(743), + [anon_sym_DASH_DASH] = ACTIONS(745), + [anon_sym_DASH_DASH_DASH] = ACTIONS(743), + [anon_sym_DOT_DOT_DOT] = ACTIONS(743), + [sym__code_span_start] = ACTIONS(747), + [sym__emphasis_open_star] = ACTIONS(749), + [sym__emphasis_open_underscore] = ACTIONS(751), + [sym__strikeout_open] = ACTIONS(753), + [sym__latex_span_start] = ACTIONS(755), + [sym__single_quote_open] = ACTIONS(757), + [sym__double_quote_open] = ACTIONS(759), + [sym__superscript_open] = ACTIONS(761), + [sym__subscript_open] = ACTIONS(763), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(765), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(767), + [sym__cite_author_in_text] = ACTIONS(769), + [sym__cite_suppress_author] = ACTIONS(771), + [sym__shortcode_open_escaped] = ACTIONS(773), + [sym__shortcode_open] = ACTIONS(775), + [sym__unclosed_span] = ACTIONS(709), }, [STATE(277)] = { - [sym_backslash_escape] = STATE(269), - [sym_commonmark_attribute] = STATE(269), - [sym_code_span] = STATE(269), - [sym_latex_span] = STATE(269), - [sym_superscript] = STATE(269), - [sym_subscript] = STATE(269), - [sym_strikeout] = STATE(269), - [sym_quoted_span] = STATE(269), - [sym_inline_note] = STATE(269), - [sym_citation] = STATE(269), - [sym_shortcode_escaped] = STATE(269), - [sym_shortcode] = STATE(269), - [sym_note_reference] = STATE(269), - [sym_image] = STATE(269), - [sym__image_inline_link] = STATE(613), - [sym__image_description] = STATE(1930), - [sym__image_description_non_empty] = STATE(1930), - [sym_hard_line_break] = STATE(269), - [sym__whitespace] = STATE(610), - [sym__word] = STATE(610), - [sym__soft_line_break] = STATE(614), - [sym__text_base] = STATE(269), - [aux_sym__inline_base_repeat1] = STATE(269), - [sym__backslash_escape] = ACTIONS(687), - [sym_entity_reference] = ACTIONS(3627), - [sym_numeric_character_reference] = ACTIONS(3627), - [anon_sym_LT] = ACTIONS(691), - [anon_sym_GT] = ACTIONS(693), - [anon_sym_BANG] = ACTIONS(695), - [anon_sym_DQUOTE] = ACTIONS(693), - [anon_sym_POUND] = ACTIONS(693), - [anon_sym_DOLLAR] = ACTIONS(693), - [anon_sym_PERCENT] = ACTIONS(693), - [anon_sym_AMP] = ACTIONS(691), - [anon_sym_SQUOTE] = ACTIONS(693), - [anon_sym_STAR] = ACTIONS(693), - [anon_sym_PLUS] = ACTIONS(693), - [anon_sym_COMMA] = ACTIONS(693), - [anon_sym_DASH] = ACTIONS(691), - [anon_sym_DOT] = ACTIONS(691), - [anon_sym_SLASH] = ACTIONS(693), - [anon_sym_COLON] = ACTIONS(693), - [anon_sym_SEMI] = ACTIONS(693), - [anon_sym_EQ] = ACTIONS(693), - [anon_sym_QMARK] = ACTIONS(693), - [anon_sym_LBRACK] = ACTIONS(2961), - [anon_sym_BSLASH] = ACTIONS(699), - [anon_sym_CARET] = ACTIONS(691), - [anon_sym__] = ACTIONS(693), - [anon_sym_BQUOTE] = ACTIONS(693), - [anon_sym_LBRACE] = ACTIONS(701), - [anon_sym_PIPE] = ACTIONS(693), - [anon_sym_TILDE] = ACTIONS(693), - [anon_sym_LPAREN] = ACTIONS(693), - [anon_sym_RPAREN] = ACTIONS(693), - [sym__newline_token] = ACTIONS(703), - [anon_sym_CARET_LBRACK] = ACTIONS(705), - [anon_sym_LBRACK_CARET] = ACTIONS(707), - [sym_uri_autolink] = ACTIONS(3627), - [sym_email_autolink] = ACTIONS(3627), - [sym__whitespace_ge_2] = ACTIONS(709), - [aux_sym__whitespace_token1] = ACTIONS(711), - [sym__word_no_digit] = ACTIONS(713), - [sym__digits] = ACTIONS(713), - [anon_sym_DASH_DASH] = ACTIONS(715), - [anon_sym_DASH_DASH_DASH] = ACTIONS(713), - [anon_sym_DOT_DOT_DOT] = ACTIONS(713), - [sym__code_span_start] = ACTIONS(717), - [sym__emphasis_open_star] = ACTIONS(2963), - [sym__emphasis_open_underscore] = ACTIONS(2963), - [sym__strikeout_open] = ACTIONS(723), - [sym__latex_span_start] = ACTIONS(725), - [sym__single_quote_open] = ACTIONS(727), - [sym__double_quote_open] = ACTIONS(729), - [sym__double_quote_close] = ACTIONS(2963), - [sym__superscript_open] = ACTIONS(731), - [sym__subscript_open] = ACTIONS(733), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(735), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(737), - [sym__cite_author_in_text] = ACTIONS(739), - [sym__cite_suppress_author] = ACTIONS(741), - [sym__shortcode_open_escaped] = ACTIONS(743), - [sym__shortcode_open] = ACTIONS(745), - [sym__unclosed_span] = ACTIONS(3627), + [sym_backslash_escape] = STATE(372), + [sym_commonmark_attribute] = STATE(372), + [sym_code_span] = STATE(372), + [sym_latex_span] = STATE(372), + [sym_insert] = STATE(372), + [sym_delete] = STATE(372), + [sym_highlight] = STATE(372), + [sym_edit_comment] = STATE(372), + [sym_superscript] = STATE(372), + [sym_subscript] = STATE(372), + [sym_strikeout] = STATE(372), + [sym_quoted_span] = STATE(372), + [sym_inline_note] = STATE(372), + [sym_citation] = STATE(372), + [sym_shortcode_escaped] = STATE(372), + [sym_shortcode] = STATE(372), + [sym_note_reference] = STATE(372), + [sym__link_text] = STATE(454), + [sym__link_text_non_empty] = STATE(455), + [sym_inline_link] = STATE(289), + [sym_image] = STATE(372), + [sym__image_inline_link] = STATE(1025), + [sym__image_description] = STATE(2356), + [sym__image_description_non_empty] = STATE(2356), + [sym_hard_line_break] = STATE(372), + [sym__whitespace] = STATE(1022), + [sym__word] = STATE(1022), + [sym__soft_line_break] = STATE(1026), + [sym__inline_base] = STATE(289), + [sym__text_base] = STATE(372), + [sym__inline_element] = STATE(289), + [sym__emphasis_star] = STATE(714), + [sym__strong_emphasis_star] = STATE(289), + [sym__emphasis_underscore] = STATE(714), + [sym__strong_emphasis_underscore] = STATE(289), + [aux_sym_insert_repeat1] = STATE(289), + [aux_sym__inline_base_repeat1] = STATE(372), + [sym__backslash_escape] = ACTIONS(707), + [sym_entity_reference] = ACTIONS(709), + [sym_numeric_character_reference] = ACTIONS(709), + [anon_sym_LT] = ACTIONS(711), + [anon_sym_GT] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(715), + [anon_sym_DQUOTE] = ACTIONS(713), + [anon_sym_POUND] = ACTIONS(713), + [anon_sym_DOLLAR] = ACTIONS(713), + [anon_sym_PERCENT] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(711), + [anon_sym_SQUOTE] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_COMMA] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_DOT] = ACTIONS(711), + [anon_sym_SLASH] = ACTIONS(713), + [anon_sym_COLON] = ACTIONS(713), + [anon_sym_SEMI] = ACTIONS(713), + [anon_sym_EQ] = ACTIONS(713), + [anon_sym_QMARK] = ACTIONS(713), + [anon_sym_LBRACK] = ACTIONS(717), + [anon_sym_BSLASH] = ACTIONS(719), + [anon_sym_CARET] = ACTIONS(711), + [anon_sym__] = ACTIONS(713), + [anon_sym_BQUOTE] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(721), + [anon_sym_PIPE] = ACTIONS(713), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_LPAREN] = ACTIONS(713), + [anon_sym_RPAREN] = ACTIONS(713), + [sym__newline_token] = ACTIONS(723), + [aux_sym_insert_token1] = ACTIONS(725), + [aux_sym_insert_token2] = ACTIONS(2745), + [aux_sym_delete_token1] = ACTIONS(729), + [aux_sym_highlight_token1] = ACTIONS(731), + [aux_sym_edit_comment_token1] = ACTIONS(733), + [anon_sym_CARET_LBRACK] = ACTIONS(735), + [anon_sym_LBRACK_CARET] = ACTIONS(737), + [sym_uri_autolink] = ACTIONS(709), + [sym_email_autolink] = ACTIONS(709), + [sym__whitespace_ge_2] = ACTIONS(739), + [aux_sym__whitespace_token1] = ACTIONS(741), + [sym__word_no_digit] = ACTIONS(743), + [sym__digits] = ACTIONS(743), + [anon_sym_DASH_DASH] = ACTIONS(745), + [anon_sym_DASH_DASH_DASH] = ACTIONS(743), + [anon_sym_DOT_DOT_DOT] = ACTIONS(743), + [sym__code_span_start] = ACTIONS(747), + [sym__emphasis_open_star] = ACTIONS(749), + [sym__emphasis_open_underscore] = ACTIONS(751), + [sym__strikeout_open] = ACTIONS(753), + [sym__latex_span_start] = ACTIONS(755), + [sym__single_quote_open] = ACTIONS(757), + [sym__double_quote_open] = ACTIONS(759), + [sym__superscript_open] = ACTIONS(761), + [sym__subscript_open] = ACTIONS(763), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(765), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(767), + [sym__cite_author_in_text] = ACTIONS(769), + [sym__cite_suppress_author] = ACTIONS(771), + [sym__shortcode_open_escaped] = ACTIONS(773), + [sym__shortcode_open] = ACTIONS(775), + [sym__unclosed_span] = ACTIONS(709), }, [STATE(278)] = { - [sym__qmd_attribute] = STATE(793), - [sym_raw_attribute] = STATE(793), - [sym_commonmark_attribute] = STATE(793), - [sym_language_attribute] = STATE(793), - [ts_builtin_sym_end] = ACTIONS(3629), - [sym__backslash_escape] = ACTIONS(3629), - [sym_entity_reference] = ACTIONS(3629), - [sym_numeric_character_reference] = ACTIONS(3629), - [anon_sym_LT] = ACTIONS(3631), - [anon_sym_GT] = ACTIONS(3629), - [anon_sym_BANG] = ACTIONS(3629), - [anon_sym_DQUOTE] = ACTIONS(3629), - [anon_sym_POUND] = ACTIONS(3629), - [anon_sym_DOLLAR] = ACTIONS(3629), - [anon_sym_PERCENT] = ACTIONS(3629), - [anon_sym_AMP] = ACTIONS(3631), - [anon_sym_SQUOTE] = ACTIONS(3629), - [anon_sym_STAR] = ACTIONS(3629), - [anon_sym_PLUS] = ACTIONS(3629), - [anon_sym_COMMA] = ACTIONS(3629), - [anon_sym_DASH] = ACTIONS(3631), - [anon_sym_DOT] = ACTIONS(3631), - [anon_sym_SLASH] = ACTIONS(3629), - [anon_sym_COLON] = ACTIONS(3629), - [anon_sym_SEMI] = ACTIONS(3629), - [anon_sym_EQ] = ACTIONS(3629), - [anon_sym_QMARK] = ACTIONS(3629), - [anon_sym_LBRACK] = ACTIONS(3631), - [anon_sym_BSLASH] = ACTIONS(3631), - [anon_sym_CARET] = ACTIONS(3631), - [anon_sym__] = ACTIONS(3629), - [anon_sym_BQUOTE] = ACTIONS(3629), - [anon_sym_LBRACE] = ACTIONS(3633), - [anon_sym_PIPE] = ACTIONS(3629), - [anon_sym_TILDE] = ACTIONS(3629), - [anon_sym_LPAREN] = ACTIONS(3629), - [anon_sym_RPAREN] = ACTIONS(3629), - [sym__newline_token] = ACTIONS(3629), - [anon_sym_CARET_LBRACK] = ACTIONS(3629), - [anon_sym_LBRACK_CARET] = ACTIONS(3629), - [sym_uri_autolink] = ACTIONS(3629), - [sym_email_autolink] = ACTIONS(3629), - [sym__whitespace_ge_2] = ACTIONS(3629), - [aux_sym__whitespace_token1] = ACTIONS(3631), - [sym__word_no_digit] = ACTIONS(3629), - [sym__digits] = ACTIONS(3629), - [anon_sym_DASH_DASH] = ACTIONS(3631), - [anon_sym_DASH_DASH_DASH] = ACTIONS(3629), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3629), - [sym__code_span_start] = ACTIONS(3629), - [sym__emphasis_open_star] = ACTIONS(3629), - [sym__emphasis_open_underscore] = ACTIONS(3629), - [sym__strikeout_open] = ACTIONS(3629), - [sym__latex_span_start] = ACTIONS(3629), - [sym__single_quote_open] = ACTIONS(3629), - [sym__double_quote_open] = ACTIONS(3629), - [sym__superscript_open] = ACTIONS(3629), - [sym__subscript_open] = ACTIONS(3629), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3629), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3629), - [sym__cite_author_in_text] = ACTIONS(3629), - [sym__cite_suppress_author] = ACTIONS(3629), - [sym__shortcode_open_escaped] = ACTIONS(3629), - [sym__shortcode_open] = ACTIONS(3629), - [sym__unclosed_span] = ACTIONS(3629), + [sym_backslash_escape] = STATE(372), + [sym_commonmark_attribute] = STATE(372), + [sym_code_span] = STATE(372), + [sym_latex_span] = STATE(372), + [sym_insert] = STATE(372), + [sym_delete] = STATE(372), + [sym_highlight] = STATE(372), + [sym_edit_comment] = STATE(372), + [sym_superscript] = STATE(372), + [sym_subscript] = STATE(372), + [sym_strikeout] = STATE(372), + [sym_quoted_span] = STATE(372), + [sym_inline_note] = STATE(372), + [sym_citation] = STATE(372), + [sym_shortcode_escaped] = STATE(372), + [sym_shortcode] = STATE(372), + [sym_note_reference] = STATE(372), + [sym__link_text] = STATE(454), + [sym__link_text_non_empty] = STATE(455), + [sym_inline_link] = STATE(290), + [sym_image] = STATE(372), + [sym__image_inline_link] = STATE(1025), + [sym__image_description] = STATE(2356), + [sym__image_description_non_empty] = STATE(2356), + [sym_hard_line_break] = STATE(372), + [sym__whitespace] = STATE(1022), + [sym__word] = STATE(1022), + [sym__soft_line_break] = STATE(1026), + [sym__inline_base] = STATE(290), + [sym__text_base] = STATE(372), + [sym__inline_element] = STATE(290), + [sym__emphasis_star] = STATE(714), + [sym__strong_emphasis_star] = STATE(290), + [sym__emphasis_underscore] = STATE(714), + [sym__strong_emphasis_underscore] = STATE(290), + [aux_sym_insert_repeat1] = STATE(290), + [aux_sym__inline_base_repeat1] = STATE(372), + [sym__backslash_escape] = ACTIONS(707), + [sym_entity_reference] = ACTIONS(709), + [sym_numeric_character_reference] = ACTIONS(709), + [anon_sym_LT] = ACTIONS(711), + [anon_sym_GT] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(715), + [anon_sym_DQUOTE] = ACTIONS(713), + [anon_sym_POUND] = ACTIONS(713), + [anon_sym_DOLLAR] = ACTIONS(713), + [anon_sym_PERCENT] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(711), + [anon_sym_SQUOTE] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_COMMA] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_DOT] = ACTIONS(711), + [anon_sym_SLASH] = ACTIONS(713), + [anon_sym_COLON] = ACTIONS(713), + [anon_sym_SEMI] = ACTIONS(713), + [anon_sym_EQ] = ACTIONS(713), + [anon_sym_QMARK] = ACTIONS(713), + [anon_sym_LBRACK] = ACTIONS(717), + [anon_sym_BSLASH] = ACTIONS(719), + [anon_sym_CARET] = ACTIONS(711), + [anon_sym__] = ACTIONS(713), + [anon_sym_BQUOTE] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(721), + [anon_sym_PIPE] = ACTIONS(713), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_LPAREN] = ACTIONS(713), + [anon_sym_RPAREN] = ACTIONS(713), + [sym__newline_token] = ACTIONS(723), + [aux_sym_insert_token1] = ACTIONS(725), + [aux_sym_insert_token2] = ACTIONS(2747), + [aux_sym_delete_token1] = ACTIONS(729), + [aux_sym_highlight_token1] = ACTIONS(731), + [aux_sym_edit_comment_token1] = ACTIONS(733), + [anon_sym_CARET_LBRACK] = ACTIONS(735), + [anon_sym_LBRACK_CARET] = ACTIONS(737), + [sym_uri_autolink] = ACTIONS(709), + [sym_email_autolink] = ACTIONS(709), + [sym__whitespace_ge_2] = ACTIONS(739), + [aux_sym__whitespace_token1] = ACTIONS(741), + [sym__word_no_digit] = ACTIONS(743), + [sym__digits] = ACTIONS(743), + [anon_sym_DASH_DASH] = ACTIONS(745), + [anon_sym_DASH_DASH_DASH] = ACTIONS(743), + [anon_sym_DOT_DOT_DOT] = ACTIONS(743), + [sym__code_span_start] = ACTIONS(747), + [sym__emphasis_open_star] = ACTIONS(749), + [sym__emphasis_open_underscore] = ACTIONS(751), + [sym__strikeout_open] = ACTIONS(753), + [sym__latex_span_start] = ACTIONS(755), + [sym__single_quote_open] = ACTIONS(757), + [sym__double_quote_open] = ACTIONS(759), + [sym__superscript_open] = ACTIONS(761), + [sym__subscript_open] = ACTIONS(763), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(765), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(767), + [sym__cite_author_in_text] = ACTIONS(769), + [sym__cite_suppress_author] = ACTIONS(771), + [sym__shortcode_open_escaped] = ACTIONS(773), + [sym__shortcode_open] = ACTIONS(775), + [sym__unclosed_span] = ACTIONS(709), }, [STATE(279)] = { - [sym__qmd_attribute] = STATE(915), - [sym_raw_attribute] = STATE(915), - [sym_commonmark_attribute] = STATE(915), - [sym_language_attribute] = STATE(915), - [sym__backslash_escape] = ACTIONS(3629), - [sym_entity_reference] = ACTIONS(3629), - [sym_numeric_character_reference] = ACTIONS(3629), - [anon_sym_LT] = ACTIONS(3631), - [anon_sym_GT] = ACTIONS(3629), - [anon_sym_BANG] = ACTIONS(3629), - [anon_sym_DQUOTE] = ACTIONS(3629), - [anon_sym_POUND] = ACTIONS(3629), - [anon_sym_DOLLAR] = ACTIONS(3629), - [anon_sym_PERCENT] = ACTIONS(3629), - [anon_sym_AMP] = ACTIONS(3631), - [anon_sym_SQUOTE] = ACTIONS(3629), - [anon_sym_STAR] = ACTIONS(3629), - [anon_sym_PLUS] = ACTIONS(3629), - [anon_sym_COMMA] = ACTIONS(3629), - [anon_sym_DASH] = ACTIONS(3631), - [anon_sym_DOT] = ACTIONS(3631), - [anon_sym_SLASH] = ACTIONS(3629), - [anon_sym_COLON] = ACTIONS(3629), - [anon_sym_SEMI] = ACTIONS(3629), - [anon_sym_EQ] = ACTIONS(3629), - [anon_sym_QMARK] = ACTIONS(3629), - [anon_sym_LBRACK] = ACTIONS(3631), - [anon_sym_BSLASH] = ACTIONS(3631), - [anon_sym_RBRACK] = ACTIONS(3629), - [anon_sym_CARET] = ACTIONS(3631), - [anon_sym__] = ACTIONS(3629), - [anon_sym_BQUOTE] = ACTIONS(3629), - [anon_sym_LBRACE] = ACTIONS(3635), - [anon_sym_PIPE] = ACTIONS(3629), - [anon_sym_TILDE] = ACTIONS(3629), - [anon_sym_LPAREN] = ACTIONS(3629), - [anon_sym_RPAREN] = ACTIONS(3629), - [sym__newline_token] = ACTIONS(3629), - [anon_sym_CARET_LBRACK] = ACTIONS(3629), - [anon_sym_LBRACK_CARET] = ACTIONS(3629), - [sym_uri_autolink] = ACTIONS(3629), - [sym_email_autolink] = ACTIONS(3629), - [sym__whitespace_ge_2] = ACTIONS(3629), - [aux_sym__whitespace_token1] = ACTIONS(3631), - [sym__word_no_digit] = ACTIONS(3629), - [sym__digits] = ACTIONS(3629), - [anon_sym_DASH_DASH] = ACTIONS(3631), - [anon_sym_DASH_DASH_DASH] = ACTIONS(3629), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3629), - [sym__code_span_start] = ACTIONS(3629), - [sym__emphasis_open_star] = ACTIONS(3629), - [sym__emphasis_open_underscore] = ACTIONS(3629), - [sym__strikeout_open] = ACTIONS(3629), - [sym__latex_span_start] = ACTIONS(3629), - [sym__single_quote_open] = ACTIONS(3629), - [sym__double_quote_open] = ACTIONS(3629), - [sym__superscript_open] = ACTIONS(3629), - [sym__subscript_open] = ACTIONS(3629), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3629), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3629), - [sym__cite_author_in_text] = ACTIONS(3629), - [sym__cite_suppress_author] = ACTIONS(3629), - [sym__shortcode_open_escaped] = ACTIONS(3629), - [sym__shortcode_open] = ACTIONS(3629), - [sym__unclosed_span] = ACTIONS(3629), + [sym_backslash_escape] = STATE(372), + [sym_commonmark_attribute] = STATE(372), + [sym_code_span] = STATE(372), + [sym_latex_span] = STATE(372), + [sym_insert] = STATE(372), + [sym_delete] = STATE(372), + [sym_highlight] = STATE(372), + [sym_edit_comment] = STATE(372), + [sym_superscript] = STATE(372), + [sym_subscript] = STATE(372), + [sym_strikeout] = STATE(372), + [sym_quoted_span] = STATE(372), + [sym_inline_note] = STATE(372), + [sym_citation] = STATE(372), + [sym_shortcode_escaped] = STATE(372), + [sym_shortcode] = STATE(372), + [sym_note_reference] = STATE(372), + [sym__link_text] = STATE(454), + [sym__link_text_non_empty] = STATE(455), + [sym_inline_link] = STATE(57), + [sym_image] = STATE(372), + [sym__image_inline_link] = STATE(1025), + [sym__image_description] = STATE(2356), + [sym__image_description_non_empty] = STATE(2356), + [sym_hard_line_break] = STATE(372), + [sym__whitespace] = STATE(1022), + [sym__word] = STATE(1022), + [sym__soft_line_break] = STATE(1026), + [sym__inline_base] = STATE(57), + [sym__text_base] = STATE(372), + [sym__inline_element] = STATE(57), + [sym__emphasis_star] = STATE(714), + [sym__strong_emphasis_star] = STATE(57), + [sym__emphasis_underscore] = STATE(714), + [sym__strong_emphasis_underscore] = STATE(57), + [aux_sym_insert_repeat1] = STATE(57), + [aux_sym__inline_base_repeat1] = STATE(372), + [sym__backslash_escape] = ACTIONS(707), + [sym_entity_reference] = ACTIONS(709), + [sym_numeric_character_reference] = ACTIONS(709), + [anon_sym_LT] = ACTIONS(711), + [anon_sym_GT] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(715), + [anon_sym_DQUOTE] = ACTIONS(713), + [anon_sym_POUND] = ACTIONS(713), + [anon_sym_DOLLAR] = ACTIONS(713), + [anon_sym_PERCENT] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(711), + [anon_sym_SQUOTE] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_COMMA] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_DOT] = ACTIONS(711), + [anon_sym_SLASH] = ACTIONS(713), + [anon_sym_COLON] = ACTIONS(713), + [anon_sym_SEMI] = ACTIONS(713), + [anon_sym_EQ] = ACTIONS(713), + [anon_sym_QMARK] = ACTIONS(713), + [anon_sym_LBRACK] = ACTIONS(717), + [anon_sym_BSLASH] = ACTIONS(719), + [anon_sym_CARET] = ACTIONS(711), + [anon_sym__] = ACTIONS(713), + [anon_sym_BQUOTE] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(721), + [anon_sym_PIPE] = ACTIONS(713), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_LPAREN] = ACTIONS(713), + [anon_sym_RPAREN] = ACTIONS(713), + [sym__newline_token] = ACTIONS(723), + [aux_sym_insert_token1] = ACTIONS(725), + [aux_sym_insert_token2] = ACTIONS(2749), + [aux_sym_delete_token1] = ACTIONS(729), + [aux_sym_highlight_token1] = ACTIONS(731), + [aux_sym_edit_comment_token1] = ACTIONS(733), + [anon_sym_CARET_LBRACK] = ACTIONS(735), + [anon_sym_LBRACK_CARET] = ACTIONS(737), + [sym_uri_autolink] = ACTIONS(709), + [sym_email_autolink] = ACTIONS(709), + [sym__whitespace_ge_2] = ACTIONS(739), + [aux_sym__whitespace_token1] = ACTIONS(741), + [sym__word_no_digit] = ACTIONS(743), + [sym__digits] = ACTIONS(743), + [anon_sym_DASH_DASH] = ACTIONS(745), + [anon_sym_DASH_DASH_DASH] = ACTIONS(743), + [anon_sym_DOT_DOT_DOT] = ACTIONS(743), + [sym__code_span_start] = ACTIONS(747), + [sym__emphasis_open_star] = ACTIONS(749), + [sym__emphasis_open_underscore] = ACTIONS(751), + [sym__strikeout_open] = ACTIONS(753), + [sym__latex_span_start] = ACTIONS(755), + [sym__single_quote_open] = ACTIONS(757), + [sym__double_quote_open] = ACTIONS(759), + [sym__superscript_open] = ACTIONS(761), + [sym__subscript_open] = ACTIONS(763), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(765), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(767), + [sym__cite_author_in_text] = ACTIONS(769), + [sym__cite_suppress_author] = ACTIONS(771), + [sym__shortcode_open_escaped] = ACTIONS(773), + [sym__shortcode_open] = ACTIONS(775), + [sym__unclosed_span] = ACTIONS(709), }, [STATE(280)] = { - [sym__qmd_attribute] = STATE(683), - [sym_raw_attribute] = STATE(683), - [sym_commonmark_attribute] = STATE(683), - [sym_language_attribute] = STATE(683), - [sym__backslash_escape] = ACTIONS(3637), - [sym_entity_reference] = ACTIONS(3637), - [sym_numeric_character_reference] = ACTIONS(3637), - [anon_sym_LT] = ACTIONS(3639), - [anon_sym_GT] = ACTIONS(3637), - [anon_sym_BANG] = ACTIONS(3637), - [anon_sym_DQUOTE] = ACTIONS(3637), - [anon_sym_POUND] = ACTIONS(3637), - [anon_sym_DOLLAR] = ACTIONS(3637), - [anon_sym_PERCENT] = ACTIONS(3637), - [anon_sym_AMP] = ACTIONS(3639), - [anon_sym_SQUOTE] = ACTIONS(3637), - [anon_sym_STAR] = ACTIONS(3637), - [anon_sym_PLUS] = ACTIONS(3637), - [anon_sym_COMMA] = ACTIONS(3637), - [anon_sym_DASH] = ACTIONS(3639), - [anon_sym_DOT] = ACTIONS(3639), - [anon_sym_SLASH] = ACTIONS(3637), - [anon_sym_COLON] = ACTIONS(3637), - [anon_sym_SEMI] = ACTIONS(3637), - [anon_sym_EQ] = ACTIONS(3637), - [anon_sym_QMARK] = ACTIONS(3637), - [anon_sym_LBRACK] = ACTIONS(3639), - [anon_sym_BSLASH] = ACTIONS(3639), - [anon_sym_CARET] = ACTIONS(3639), - [anon_sym__] = ACTIONS(3637), - [anon_sym_BQUOTE] = ACTIONS(3637), - [anon_sym_LBRACE] = ACTIONS(3641), - [anon_sym_PIPE] = ACTIONS(3637), - [anon_sym_TILDE] = ACTIONS(3637), - [anon_sym_LPAREN] = ACTIONS(3637), - [anon_sym_RPAREN] = ACTIONS(3637), - [sym__newline_token] = ACTIONS(3637), - [anon_sym_CARET_LBRACK] = ACTIONS(3637), - [anon_sym_LBRACK_CARET] = ACTIONS(3637), - [sym_uri_autolink] = ACTIONS(3637), - [sym_email_autolink] = ACTIONS(3637), - [sym__whitespace_ge_2] = ACTIONS(3637), - [aux_sym__whitespace_token1] = ACTIONS(3639), - [sym__word_no_digit] = ACTIONS(3637), - [sym__digits] = ACTIONS(3637), - [anon_sym_DASH_DASH] = ACTIONS(3639), - [anon_sym_DASH_DASH_DASH] = ACTIONS(3637), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3637), - [sym__code_span_start] = ACTIONS(3637), - [sym__emphasis_open_star] = ACTIONS(3637), - [sym__emphasis_open_underscore] = ACTIONS(3637), - [sym__strikeout_open] = ACTIONS(3637), - [sym__latex_span_start] = ACTIONS(3637), - [sym__single_quote_open] = ACTIONS(3637), - [sym__double_quote_open] = ACTIONS(3637), - [sym__double_quote_close] = ACTIONS(3637), - [sym__superscript_open] = ACTIONS(3637), - [sym__subscript_open] = ACTIONS(3637), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3637), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3637), - [sym__cite_author_in_text] = ACTIONS(3637), - [sym__cite_suppress_author] = ACTIONS(3637), - [sym__shortcode_open_escaped] = ACTIONS(3637), - [sym__shortcode_open] = ACTIONS(3637), - [sym__unclosed_span] = ACTIONS(3637), + [sym_backslash_escape] = STATE(373), + [sym_commonmark_attribute] = STATE(373), + [sym_code_span] = STATE(373), + [sym_latex_span] = STATE(373), + [sym_insert] = STATE(373), + [sym_delete] = STATE(373), + [sym_highlight] = STATE(373), + [sym_edit_comment] = STATE(373), + [sym_superscript] = STATE(373), + [sym_subscript] = STATE(373), + [sym_strikeout] = STATE(373), + [sym_quoted_span] = STATE(373), + [sym_inline_note] = STATE(373), + [sym_citation] = STATE(373), + [sym_shortcode_escaped] = STATE(373), + [sym_shortcode] = STATE(373), + [sym_note_reference] = STATE(373), + [sym__link_text] = STATE(522), + [sym__link_text_non_empty] = STATE(523), + [sym_inline_link] = STATE(36), + [sym_image] = STATE(373), + [sym__image_inline_link] = STATE(1265), + [sym__image_description] = STATE(2331), + [sym__image_description_non_empty] = STATE(2331), + [sym_hard_line_break] = STATE(373), + [sym__whitespace] = STATE(1262), + [sym__word] = STATE(1262), + [sym__soft_line_break] = STATE(1267), + [sym__inline_base] = STATE(36), + [sym__text_base] = STATE(373), + [sym__inline_element_no_star] = STATE(36), + [aux_sym__inline_no_star] = STATE(36), + [sym__emphasis_star] = STATE(1147), + [sym__strong_emphasis_star] = STATE(36), + [sym__emphasis_underscore] = STATE(1147), + [sym__strong_emphasis_underscore] = STATE(36), + [aux_sym__inline_base_repeat1] = STATE(373), + [sym__backslash_escape] = ACTIONS(885), + [sym_entity_reference] = ACTIONS(887), + [sym_numeric_character_reference] = ACTIONS(887), + [anon_sym_LT] = ACTIONS(889), + [anon_sym_GT] = ACTIONS(891), + [anon_sym_BANG] = ACTIONS(893), + [anon_sym_DQUOTE] = ACTIONS(891), + [anon_sym_POUND] = ACTIONS(891), + [anon_sym_DOLLAR] = ACTIONS(891), + [anon_sym_PERCENT] = ACTIONS(891), + [anon_sym_AMP] = ACTIONS(889), + [anon_sym_SQUOTE] = ACTIONS(891), + [anon_sym_STAR] = ACTIONS(891), + [anon_sym_PLUS] = ACTIONS(891), + [anon_sym_COMMA] = ACTIONS(891), + [anon_sym_DASH] = ACTIONS(889), + [anon_sym_DOT] = ACTIONS(889), + [anon_sym_SLASH] = ACTIONS(891), + [anon_sym_COLON] = ACTIONS(891), + [anon_sym_SEMI] = ACTIONS(891), + [anon_sym_EQ] = ACTIONS(891), + [anon_sym_QMARK] = ACTIONS(891), + [anon_sym_LBRACK] = ACTIONS(895), + [anon_sym_BSLASH] = ACTIONS(897), + [anon_sym_CARET] = ACTIONS(889), + [anon_sym__] = ACTIONS(891), + [anon_sym_BQUOTE] = ACTIONS(891), + [anon_sym_LBRACE] = ACTIONS(899), + [anon_sym_PIPE] = ACTIONS(891), + [anon_sym_TILDE] = ACTIONS(891), + [anon_sym_LPAREN] = ACTIONS(891), + [anon_sym_RPAREN] = ACTIONS(891), + [sym__newline_token] = ACTIONS(901), + [aux_sym_insert_token1] = ACTIONS(903), + [aux_sym_delete_token1] = ACTIONS(905), + [aux_sym_highlight_token1] = ACTIONS(907), + [aux_sym_edit_comment_token1] = ACTIONS(909), + [anon_sym_CARET_LBRACK] = ACTIONS(911), + [anon_sym_LBRACK_CARET] = ACTIONS(913), + [sym_uri_autolink] = ACTIONS(887), + [sym_email_autolink] = ACTIONS(887), + [sym__whitespace_ge_2] = ACTIONS(915), + [aux_sym__whitespace_token1] = ACTIONS(917), + [sym__word_no_digit] = ACTIONS(919), + [sym__digits] = ACTIONS(919), + [anon_sym_DASH_DASH] = ACTIONS(921), + [anon_sym_DASH_DASH_DASH] = ACTIONS(919), + [anon_sym_DOT_DOT_DOT] = ACTIONS(919), + [sym__code_span_start] = ACTIONS(923), + [sym__emphasis_open_star] = ACTIONS(925), + [sym__emphasis_open_underscore] = ACTIONS(927), + [sym__emphasis_close_star] = ACTIONS(2751), + [sym__strikeout_open] = ACTIONS(931), + [sym__latex_span_start] = ACTIONS(933), + [sym__single_quote_open] = ACTIONS(935), + [sym__double_quote_open] = ACTIONS(937), + [sym__superscript_open] = ACTIONS(939), + [sym__subscript_open] = ACTIONS(941), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(943), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(945), + [sym__cite_author_in_text] = ACTIONS(947), + [sym__cite_suppress_author] = ACTIONS(949), + [sym__shortcode_open_escaped] = ACTIONS(951), + [sym__shortcode_open] = ACTIONS(953), + [sym__unclosed_span] = ACTIONS(887), }, [STATE(281)] = { - [sym__qmd_attribute] = STATE(923), - [sym_raw_attribute] = STATE(923), - [sym_commonmark_attribute] = STATE(923), - [sym_language_attribute] = STATE(923), - [sym__backslash_escape] = ACTIONS(3643), - [sym_entity_reference] = ACTIONS(3643), - [sym_numeric_character_reference] = ACTIONS(3643), - [anon_sym_LT] = ACTIONS(3645), - [anon_sym_GT] = ACTIONS(3643), - [anon_sym_BANG] = ACTIONS(3643), - [anon_sym_DQUOTE] = ACTIONS(3643), - [anon_sym_POUND] = ACTIONS(3643), - [anon_sym_DOLLAR] = ACTIONS(3643), - [anon_sym_PERCENT] = ACTIONS(3643), - [anon_sym_AMP] = ACTIONS(3645), - [anon_sym_SQUOTE] = ACTIONS(3643), - [anon_sym_STAR] = ACTIONS(3643), - [anon_sym_PLUS] = ACTIONS(3643), - [anon_sym_COMMA] = ACTIONS(3643), - [anon_sym_DASH] = ACTIONS(3645), - [anon_sym_DOT] = ACTIONS(3645), - [anon_sym_SLASH] = ACTIONS(3643), - [anon_sym_COLON] = ACTIONS(3643), - [anon_sym_SEMI] = ACTIONS(3643), - [anon_sym_EQ] = ACTIONS(3643), - [anon_sym_QMARK] = ACTIONS(3643), - [anon_sym_LBRACK] = ACTIONS(3645), - [anon_sym_BSLASH] = ACTIONS(3645), - [anon_sym_RBRACK] = ACTIONS(3643), - [anon_sym_CARET] = ACTIONS(3645), - [anon_sym__] = ACTIONS(3643), - [anon_sym_BQUOTE] = ACTIONS(3643), - [anon_sym_LBRACE] = ACTIONS(3635), - [anon_sym_PIPE] = ACTIONS(3643), - [anon_sym_TILDE] = ACTIONS(3643), - [anon_sym_LPAREN] = ACTIONS(3643), - [anon_sym_RPAREN] = ACTIONS(3643), - [sym__newline_token] = ACTIONS(3643), - [anon_sym_CARET_LBRACK] = ACTIONS(3643), - [anon_sym_LBRACK_CARET] = ACTIONS(3643), - [sym_uri_autolink] = ACTIONS(3643), - [sym_email_autolink] = ACTIONS(3643), - [sym__whitespace_ge_2] = ACTIONS(3643), - [aux_sym__whitespace_token1] = ACTIONS(3645), - [sym__word_no_digit] = ACTIONS(3643), - [sym__digits] = ACTIONS(3643), - [anon_sym_DASH_DASH] = ACTIONS(3645), - [anon_sym_DASH_DASH_DASH] = ACTIONS(3643), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3643), - [sym__code_span_start] = ACTIONS(3643), - [sym__emphasis_open_star] = ACTIONS(3643), - [sym__emphasis_open_underscore] = ACTIONS(3643), - [sym__strikeout_open] = ACTIONS(3643), - [sym__latex_span_start] = ACTIONS(3643), - [sym__single_quote_open] = ACTIONS(3643), - [sym__double_quote_open] = ACTIONS(3643), - [sym__superscript_open] = ACTIONS(3643), - [sym__subscript_open] = ACTIONS(3643), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3643), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3643), - [sym__cite_author_in_text] = ACTIONS(3643), - [sym__cite_suppress_author] = ACTIONS(3643), - [sym__shortcode_open_escaped] = ACTIONS(3643), - [sym__shortcode_open] = ACTIONS(3643), - [sym__unclosed_span] = ACTIONS(3643), + [sym_backslash_escape] = STATE(379), + [sym_commonmark_attribute] = STATE(379), + [sym_code_span] = STATE(379), + [sym_latex_span] = STATE(379), + [sym_insert] = STATE(379), + [sym_delete] = STATE(379), + [sym_highlight] = STATE(379), + [sym_edit_comment] = STATE(379), + [sym_superscript] = STATE(379), + [sym_subscript] = STATE(379), + [sym_strikeout] = STATE(379), + [sym_quoted_span] = STATE(379), + [sym_inline_note] = STATE(379), + [sym_citation] = STATE(379), + [sym_shortcode_escaped] = STATE(379), + [sym_shortcode] = STATE(379), + [sym_note_reference] = STATE(379), + [sym__link_text] = STATE(545), + [sym__link_text_non_empty] = STATE(546), + [sym_inline_link] = STATE(38), + [sym_image] = STATE(379), + [sym__image_inline_link] = STATE(1390), + [sym__image_description] = STATE(2363), + [sym__image_description_non_empty] = STATE(2363), + [sym_hard_line_break] = STATE(379), + [sym__whitespace] = STATE(1385), + [sym__word] = STATE(1385), + [sym__soft_line_break] = STATE(1391), + [sym__inline_base] = STATE(38), + [sym__text_base] = STATE(379), + [sym__inline_element_no_underscore] = STATE(38), + [aux_sym__inline_no_underscore] = STATE(38), + [sym__emphasis_star] = STATE(1168), + [sym__strong_emphasis_star] = STATE(38), + [sym__emphasis_underscore] = STATE(1168), + [sym__strong_emphasis_underscore] = STATE(38), + [aux_sym__inline_base_repeat1] = STATE(379), + [sym__backslash_escape] = ACTIONS(1059), + [sym_entity_reference] = ACTIONS(1061), + [sym_numeric_character_reference] = ACTIONS(1061), + [anon_sym_LT] = ACTIONS(1063), + [anon_sym_GT] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1067), + [anon_sym_DQUOTE] = ACTIONS(1065), + [anon_sym_POUND] = ACTIONS(1065), + [anon_sym_DOLLAR] = ACTIONS(1065), + [anon_sym_PERCENT] = ACTIONS(1065), + [anon_sym_AMP] = ACTIONS(1063), + [anon_sym_SQUOTE] = ACTIONS(1065), + [anon_sym_STAR] = ACTIONS(1065), + [anon_sym_PLUS] = ACTIONS(1065), + [anon_sym_COMMA] = ACTIONS(1065), + [anon_sym_DASH] = ACTIONS(1063), + [anon_sym_DOT] = ACTIONS(1063), + [anon_sym_SLASH] = ACTIONS(1065), + [anon_sym_COLON] = ACTIONS(1065), + [anon_sym_SEMI] = ACTIONS(1065), + [anon_sym_EQ] = ACTIONS(1065), + [anon_sym_QMARK] = ACTIONS(1065), + [anon_sym_LBRACK] = ACTIONS(1069), + [anon_sym_BSLASH] = ACTIONS(1071), + [anon_sym_CARET] = ACTIONS(1063), + [anon_sym__] = ACTIONS(1065), + [anon_sym_BQUOTE] = ACTIONS(1065), + [anon_sym_LBRACE] = ACTIONS(1073), + [anon_sym_PIPE] = ACTIONS(1065), + [anon_sym_TILDE] = ACTIONS(1065), + [anon_sym_LPAREN] = ACTIONS(1065), + [anon_sym_RPAREN] = ACTIONS(1065), + [sym__newline_token] = ACTIONS(1075), + [aux_sym_insert_token1] = ACTIONS(1077), + [aux_sym_delete_token1] = ACTIONS(1079), + [aux_sym_highlight_token1] = ACTIONS(1081), + [aux_sym_edit_comment_token1] = ACTIONS(1083), + [anon_sym_CARET_LBRACK] = ACTIONS(1085), + [anon_sym_LBRACK_CARET] = ACTIONS(1087), + [sym_uri_autolink] = ACTIONS(1061), + [sym_email_autolink] = ACTIONS(1061), + [sym__whitespace_ge_2] = ACTIONS(1089), + [aux_sym__whitespace_token1] = ACTIONS(1091), + [sym__word_no_digit] = ACTIONS(1093), + [sym__digits] = ACTIONS(1093), + [anon_sym_DASH_DASH] = ACTIONS(1095), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1093), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1093), + [sym__code_span_start] = ACTIONS(1097), + [sym__emphasis_open_star] = ACTIONS(1099), + [sym__emphasis_open_underscore] = ACTIONS(1101), + [sym__emphasis_close_underscore] = ACTIONS(2753), + [sym__strikeout_open] = ACTIONS(1105), + [sym__latex_span_start] = ACTIONS(1107), + [sym__single_quote_open] = ACTIONS(1109), + [sym__double_quote_open] = ACTIONS(1111), + [sym__superscript_open] = ACTIONS(1113), + [sym__subscript_open] = ACTIONS(1115), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1117), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1119), + [sym__cite_author_in_text] = ACTIONS(1121), + [sym__cite_suppress_author] = ACTIONS(1123), + [sym__shortcode_open_escaped] = ACTIONS(1125), + [sym__shortcode_open] = ACTIONS(1127), + [sym__unclosed_span] = ACTIONS(1061), }, [STATE(282)] = { - [sym__qmd_attribute] = STATE(932), - [sym_raw_attribute] = STATE(932), - [sym_commonmark_attribute] = STATE(932), - [sym_language_attribute] = STATE(932), - [sym__backslash_escape] = ACTIONS(3647), - [sym_entity_reference] = ACTIONS(3647), - [sym_numeric_character_reference] = ACTIONS(3647), - [anon_sym_LT] = ACTIONS(3649), - [anon_sym_GT] = ACTIONS(3647), - [anon_sym_BANG] = ACTIONS(3647), - [anon_sym_DQUOTE] = ACTIONS(3647), - [anon_sym_POUND] = ACTIONS(3647), - [anon_sym_DOLLAR] = ACTIONS(3647), - [anon_sym_PERCENT] = ACTIONS(3647), - [anon_sym_AMP] = ACTIONS(3649), - [anon_sym_SQUOTE] = ACTIONS(3647), - [anon_sym_STAR] = ACTIONS(3647), - [anon_sym_PLUS] = ACTIONS(3647), - [anon_sym_COMMA] = ACTIONS(3647), - [anon_sym_DASH] = ACTIONS(3649), - [anon_sym_DOT] = ACTIONS(3649), - [anon_sym_SLASH] = ACTIONS(3647), - [anon_sym_COLON] = ACTIONS(3647), - [anon_sym_SEMI] = ACTIONS(3647), - [anon_sym_EQ] = ACTIONS(3647), - [anon_sym_QMARK] = ACTIONS(3647), - [anon_sym_LBRACK] = ACTIONS(3649), - [anon_sym_BSLASH] = ACTIONS(3649), - [anon_sym_RBRACK] = ACTIONS(3647), - [anon_sym_CARET] = ACTIONS(3649), - [anon_sym__] = ACTIONS(3647), - [anon_sym_BQUOTE] = ACTIONS(3647), - [anon_sym_LBRACE] = ACTIONS(3635), - [anon_sym_PIPE] = ACTIONS(3647), - [anon_sym_TILDE] = ACTIONS(3647), - [anon_sym_LPAREN] = ACTIONS(3647), - [anon_sym_RPAREN] = ACTIONS(3647), - [sym__newline_token] = ACTIONS(3647), - [anon_sym_CARET_LBRACK] = ACTIONS(3647), - [anon_sym_LBRACK_CARET] = ACTIONS(3647), - [sym_uri_autolink] = ACTIONS(3647), - [sym_email_autolink] = ACTIONS(3647), - [sym__whitespace_ge_2] = ACTIONS(3647), - [aux_sym__whitespace_token1] = ACTIONS(3649), - [sym__word_no_digit] = ACTIONS(3647), - [sym__digits] = ACTIONS(3647), - [anon_sym_DASH_DASH] = ACTIONS(3649), - [anon_sym_DASH_DASH_DASH] = ACTIONS(3647), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3647), - [sym__code_span_start] = ACTIONS(3647), - [sym__emphasis_open_star] = ACTIONS(3647), - [sym__emphasis_open_underscore] = ACTIONS(3647), - [sym__strikeout_open] = ACTIONS(3647), - [sym__latex_span_start] = ACTIONS(3647), - [sym__single_quote_open] = ACTIONS(3647), - [sym__double_quote_open] = ACTIONS(3647), - [sym__superscript_open] = ACTIONS(3647), - [sym__subscript_open] = ACTIONS(3647), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3647), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3647), - [sym__cite_author_in_text] = ACTIONS(3647), - [sym__cite_suppress_author] = ACTIONS(3647), - [sym__shortcode_open_escaped] = ACTIONS(3647), - [sym__shortcode_open] = ACTIONS(3647), - [sym__unclosed_span] = ACTIONS(3647), + [sym_backslash_escape] = STATE(366), + [sym_commonmark_attribute] = STATE(366), + [sym_code_span] = STATE(366), + [sym_latex_span] = STATE(366), + [sym_insert] = STATE(366), + [sym_delete] = STATE(366), + [sym_highlight] = STATE(366), + [sym_edit_comment] = STATE(366), + [sym_superscript] = STATE(366), + [sym_subscript] = STATE(366), + [sym_strikeout] = STATE(366), + [sym_quoted_span] = STATE(366), + [sym_inline_note] = STATE(366), + [sym_citation] = STATE(366), + [sym_shortcode_escaped] = STATE(366), + [sym_shortcode] = STATE(366), + [sym_note_reference] = STATE(366), + [sym__link_text] = STATE(490), + [sym__link_text_non_empty] = STATE(491), + [sym_inline_link] = STATE(39), + [sym_image] = STATE(366), + [sym__image_inline_link] = STATE(1244), + [sym__image_description] = STATE(2280), + [sym__image_description_non_empty] = STATE(2280), + [sym_hard_line_break] = STATE(366), + [sym__whitespace] = STATE(1218), + [sym__word] = STATE(1218), + [sym__soft_line_break] = STATE(1245), + [sym__inline_base] = STATE(39), + [sym__text_base] = STATE(366), + [sym__inline_element] = STATE(39), + [sym__emphasis_star] = STATE(1270), + [sym__strong_emphasis_star] = STATE(39), + [sym__emphasis_underscore] = STATE(1270), + [sym__strong_emphasis_underscore] = STATE(39), + [aux_sym_insert_repeat1] = STATE(39), + [aux_sym__inline_base_repeat1] = STATE(366), + [sym__backslash_escape] = ACTIONS(2005), + [sym_entity_reference] = ACTIONS(2007), + [sym_numeric_character_reference] = ACTIONS(2007), + [anon_sym_LT] = ACTIONS(2009), + [anon_sym_GT] = ACTIONS(2011), + [anon_sym_BANG] = ACTIONS(2013), + [anon_sym_DQUOTE] = ACTIONS(2011), + [anon_sym_POUND] = ACTIONS(2011), + [anon_sym_DOLLAR] = ACTIONS(2011), + [anon_sym_PERCENT] = ACTIONS(2011), + [anon_sym_AMP] = ACTIONS(2009), + [anon_sym_SQUOTE] = ACTIONS(2011), + [anon_sym_STAR] = ACTIONS(2011), + [anon_sym_PLUS] = ACTIONS(2011), + [anon_sym_COMMA] = ACTIONS(2011), + [anon_sym_DASH] = ACTIONS(2009), + [anon_sym_DOT] = ACTIONS(2009), + [anon_sym_SLASH] = ACTIONS(2011), + [anon_sym_COLON] = ACTIONS(2011), + [anon_sym_SEMI] = ACTIONS(2011), + [anon_sym_EQ] = ACTIONS(2011), + [anon_sym_QMARK] = ACTIONS(2011), + [anon_sym_LBRACK] = ACTIONS(2015), + [anon_sym_BSLASH] = ACTIONS(2017), + [anon_sym_CARET] = ACTIONS(2009), + [anon_sym__] = ACTIONS(2011), + [anon_sym_BQUOTE] = ACTIONS(2011), + [anon_sym_LBRACE] = ACTIONS(2019), + [anon_sym_PIPE] = ACTIONS(2011), + [anon_sym_TILDE] = ACTIONS(2011), + [anon_sym_LPAREN] = ACTIONS(2011), + [anon_sym_RPAREN] = ACTIONS(2011), + [sym__newline_token] = ACTIONS(2021), + [aux_sym_insert_token1] = ACTIONS(2023), + [aux_sym_delete_token1] = ACTIONS(2025), + [aux_sym_highlight_token1] = ACTIONS(2027), + [aux_sym_edit_comment_token1] = ACTIONS(2029), + [anon_sym_CARET_LBRACK] = ACTIONS(2031), + [anon_sym_LBRACK_CARET] = ACTIONS(2033), + [sym_uri_autolink] = ACTIONS(2007), + [sym_email_autolink] = ACTIONS(2007), + [sym__whitespace_ge_2] = ACTIONS(2035), + [aux_sym__whitespace_token1] = ACTIONS(2037), + [sym__word_no_digit] = ACTIONS(2039), + [sym__digits] = ACTIONS(2039), + [anon_sym_DASH_DASH] = ACTIONS(2041), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2039), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2039), + [sym__code_span_start] = ACTIONS(2043), + [sym__emphasis_open_star] = ACTIONS(2045), + [sym__emphasis_open_underscore] = ACTIONS(2047), + [sym__strikeout_open] = ACTIONS(2049), + [sym__strikeout_close] = ACTIONS(2755), + [sym__latex_span_start] = ACTIONS(2053), + [sym__single_quote_open] = ACTIONS(2055), + [sym__double_quote_open] = ACTIONS(2057), + [sym__superscript_open] = ACTIONS(2059), + [sym__subscript_open] = ACTIONS(2061), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2063), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2065), + [sym__cite_author_in_text] = ACTIONS(2067), + [sym__cite_suppress_author] = ACTIONS(2069), + [sym__shortcode_open_escaped] = ACTIONS(2071), + [sym__shortcode_open] = ACTIONS(2073), + [sym__unclosed_span] = ACTIONS(2007), }, [STATE(283)] = { - [sym__qmd_attribute] = STATE(934), - [sym_raw_attribute] = STATE(934), - [sym_commonmark_attribute] = STATE(934), - [sym_language_attribute] = STATE(934), - [sym__backslash_escape] = ACTIONS(3651), - [sym_entity_reference] = ACTIONS(3651), - [sym_numeric_character_reference] = ACTIONS(3651), - [anon_sym_LT] = ACTIONS(3653), - [anon_sym_GT] = ACTIONS(3651), - [anon_sym_BANG] = ACTIONS(3651), - [anon_sym_DQUOTE] = ACTIONS(3651), - [anon_sym_POUND] = ACTIONS(3651), - [anon_sym_DOLLAR] = ACTIONS(3651), - [anon_sym_PERCENT] = ACTIONS(3651), - [anon_sym_AMP] = ACTIONS(3653), - [anon_sym_SQUOTE] = ACTIONS(3651), - [anon_sym_STAR] = ACTIONS(3651), - [anon_sym_PLUS] = ACTIONS(3651), - [anon_sym_COMMA] = ACTIONS(3651), - [anon_sym_DASH] = ACTIONS(3653), - [anon_sym_DOT] = ACTIONS(3653), - [anon_sym_SLASH] = ACTIONS(3651), - [anon_sym_COLON] = ACTIONS(3651), - [anon_sym_SEMI] = ACTIONS(3651), - [anon_sym_EQ] = ACTIONS(3651), - [anon_sym_QMARK] = ACTIONS(3651), - [anon_sym_LBRACK] = ACTIONS(3653), - [anon_sym_BSLASH] = ACTIONS(3653), - [anon_sym_RBRACK] = ACTIONS(3651), - [anon_sym_CARET] = ACTIONS(3653), - [anon_sym__] = ACTIONS(3651), - [anon_sym_BQUOTE] = ACTIONS(3651), - [anon_sym_LBRACE] = ACTIONS(3635), - [anon_sym_PIPE] = ACTIONS(3651), - [anon_sym_TILDE] = ACTIONS(3651), - [anon_sym_LPAREN] = ACTIONS(3651), - [anon_sym_RPAREN] = ACTIONS(3651), - [sym__newline_token] = ACTIONS(3651), - [anon_sym_CARET_LBRACK] = ACTIONS(3651), - [anon_sym_LBRACK_CARET] = ACTIONS(3651), - [sym_uri_autolink] = ACTIONS(3651), - [sym_email_autolink] = ACTIONS(3651), - [sym__whitespace_ge_2] = ACTIONS(3651), - [aux_sym__whitespace_token1] = ACTIONS(3653), - [sym__word_no_digit] = ACTIONS(3651), - [sym__digits] = ACTIONS(3651), - [anon_sym_DASH_DASH] = ACTIONS(3653), - [anon_sym_DASH_DASH_DASH] = ACTIONS(3651), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3651), - [sym__code_span_start] = ACTIONS(3651), - [sym__emphasis_open_star] = ACTIONS(3651), - [sym__emphasis_open_underscore] = ACTIONS(3651), - [sym__strikeout_open] = ACTIONS(3651), - [sym__latex_span_start] = ACTIONS(3651), - [sym__single_quote_open] = ACTIONS(3651), - [sym__double_quote_open] = ACTIONS(3651), - [sym__superscript_open] = ACTIONS(3651), - [sym__subscript_open] = ACTIONS(3651), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3651), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3651), - [sym__cite_author_in_text] = ACTIONS(3651), - [sym__cite_suppress_author] = ACTIONS(3651), - [sym__shortcode_open_escaped] = ACTIONS(3651), - [sym__shortcode_open] = ACTIONS(3651), - [sym__unclosed_span] = ACTIONS(3651), + [sym_backslash_escape] = STATE(375), + [sym_commonmark_attribute] = STATE(375), + [sym_code_span] = STATE(375), + [sym_latex_span] = STATE(375), + [sym_insert] = STATE(375), + [sym_delete] = STATE(375), + [sym_highlight] = STATE(375), + [sym_edit_comment] = STATE(375), + [sym_superscript] = STATE(375), + [sym_subscript] = STATE(375), + [sym_strikeout] = STATE(375), + [sym_quoted_span] = STATE(375), + [sym_inline_note] = STATE(375), + [sym_citation] = STATE(375), + [sym_shortcode_escaped] = STATE(375), + [sym_shortcode] = STATE(375), + [sym_note_reference] = STATE(375), + [sym__link_text] = STATE(525), + [sym__link_text_non_empty] = STATE(527), + [sym_inline_link] = STATE(47), + [sym_image] = STATE(375), + [sym__image_inline_link] = STATE(972), + [sym__image_description] = STATE(2286), + [sym__image_description_non_empty] = STATE(2286), + [sym_hard_line_break] = STATE(375), + [sym__whitespace] = STATE(949), + [sym__word] = STATE(949), + [sym__soft_line_break] = STATE(973), + [sym__inline_base] = STATE(47), + [sym__text_base] = STATE(375), + [sym__inline_element] = STATE(47), + [sym__emphasis_star] = STATE(1392), + [sym__strong_emphasis_star] = STATE(47), + [sym__emphasis_underscore] = STATE(1392), + [sym__strong_emphasis_underscore] = STATE(47), + [aux_sym_insert_repeat1] = STATE(47), + [aux_sym__inline_base_repeat1] = STATE(375), + [sym__backslash_escape] = ACTIONS(2179), + [sym_entity_reference] = ACTIONS(2181), + [sym_numeric_character_reference] = ACTIONS(2181), + [anon_sym_LT] = ACTIONS(2183), + [anon_sym_GT] = ACTIONS(2185), + [anon_sym_BANG] = ACTIONS(2187), + [anon_sym_DQUOTE] = ACTIONS(2185), + [anon_sym_POUND] = ACTIONS(2185), + [anon_sym_DOLLAR] = ACTIONS(2185), + [anon_sym_PERCENT] = ACTIONS(2185), + [anon_sym_AMP] = ACTIONS(2183), + [anon_sym_SQUOTE] = ACTIONS(2185), + [anon_sym_STAR] = ACTIONS(2185), + [anon_sym_PLUS] = ACTIONS(2185), + [anon_sym_COMMA] = ACTIONS(2185), + [anon_sym_DASH] = ACTIONS(2183), + [anon_sym_DOT] = ACTIONS(2183), + [anon_sym_SLASH] = ACTIONS(2185), + [anon_sym_COLON] = ACTIONS(2185), + [anon_sym_SEMI] = ACTIONS(2185), + [anon_sym_EQ] = ACTIONS(2185), + [anon_sym_QMARK] = ACTIONS(2185), + [anon_sym_LBRACK] = ACTIONS(2189), + [anon_sym_BSLASH] = ACTIONS(2191), + [anon_sym_CARET] = ACTIONS(2183), + [anon_sym__] = ACTIONS(2185), + [anon_sym_BQUOTE] = ACTIONS(2185), + [anon_sym_LBRACE] = ACTIONS(2193), + [anon_sym_PIPE] = ACTIONS(2185), + [anon_sym_TILDE] = ACTIONS(2185), + [anon_sym_LPAREN] = ACTIONS(2185), + [anon_sym_RPAREN] = ACTIONS(2185), + [sym__newline_token] = ACTIONS(2195), + [aux_sym_insert_token1] = ACTIONS(2197), + [aux_sym_delete_token1] = ACTIONS(2199), + [aux_sym_highlight_token1] = ACTIONS(2201), + [aux_sym_edit_comment_token1] = ACTIONS(2203), + [anon_sym_CARET_LBRACK] = ACTIONS(2205), + [anon_sym_LBRACK_CARET] = ACTIONS(2207), + [sym_uri_autolink] = ACTIONS(2181), + [sym_email_autolink] = ACTIONS(2181), + [sym__whitespace_ge_2] = ACTIONS(2209), + [aux_sym__whitespace_token1] = ACTIONS(2211), + [sym__word_no_digit] = ACTIONS(2213), + [sym__digits] = ACTIONS(2213), + [anon_sym_DASH_DASH] = ACTIONS(2215), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2213), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2213), + [sym__code_span_start] = ACTIONS(2217), + [sym__emphasis_open_star] = ACTIONS(2219), + [sym__emphasis_open_underscore] = ACTIONS(2221), + [sym__strikeout_open] = ACTIONS(2223), + [sym__latex_span_start] = ACTIONS(2225), + [sym__single_quote_open] = ACTIONS(2227), + [sym__single_quote_close] = ACTIONS(2757), + [sym__double_quote_open] = ACTIONS(2229), + [sym__superscript_open] = ACTIONS(2231), + [sym__subscript_open] = ACTIONS(2233), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2235), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2237), + [sym__cite_author_in_text] = ACTIONS(2239), + [sym__cite_suppress_author] = ACTIONS(2241), + [sym__shortcode_open_escaped] = ACTIONS(2243), + [sym__shortcode_open] = ACTIONS(2245), + [sym__unclosed_span] = ACTIONS(2181), }, [STATE(284)] = { - [sym__qmd_attribute] = STATE(941), - [sym_raw_attribute] = STATE(941), - [sym_commonmark_attribute] = STATE(941), - [sym_language_attribute] = STATE(941), - [sym__backslash_escape] = ACTIONS(3655), - [sym_entity_reference] = ACTIONS(3655), - [sym_numeric_character_reference] = ACTIONS(3655), - [anon_sym_LT] = ACTIONS(3657), - [anon_sym_GT] = ACTIONS(3655), - [anon_sym_BANG] = ACTIONS(3655), - [anon_sym_DQUOTE] = ACTIONS(3655), - [anon_sym_POUND] = ACTIONS(3655), - [anon_sym_DOLLAR] = ACTIONS(3655), - [anon_sym_PERCENT] = ACTIONS(3655), - [anon_sym_AMP] = ACTIONS(3657), - [anon_sym_SQUOTE] = ACTIONS(3655), - [anon_sym_STAR] = ACTIONS(3655), - [anon_sym_PLUS] = ACTIONS(3655), - [anon_sym_COMMA] = ACTIONS(3655), - [anon_sym_DASH] = ACTIONS(3657), - [anon_sym_DOT] = ACTIONS(3657), - [anon_sym_SLASH] = ACTIONS(3655), - [anon_sym_COLON] = ACTIONS(3655), - [anon_sym_SEMI] = ACTIONS(3655), - [anon_sym_EQ] = ACTIONS(3655), - [anon_sym_QMARK] = ACTIONS(3655), - [anon_sym_LBRACK] = ACTIONS(3657), - [anon_sym_BSLASH] = ACTIONS(3657), - [anon_sym_RBRACK] = ACTIONS(3655), - [anon_sym_CARET] = ACTIONS(3657), - [anon_sym__] = ACTIONS(3655), - [anon_sym_BQUOTE] = ACTIONS(3655), - [anon_sym_LBRACE] = ACTIONS(3635), - [anon_sym_PIPE] = ACTIONS(3655), - [anon_sym_TILDE] = ACTIONS(3655), - [anon_sym_LPAREN] = ACTIONS(3655), - [anon_sym_RPAREN] = ACTIONS(3655), - [sym__newline_token] = ACTIONS(3655), - [anon_sym_CARET_LBRACK] = ACTIONS(3655), - [anon_sym_LBRACK_CARET] = ACTIONS(3655), - [sym_uri_autolink] = ACTIONS(3655), - [sym_email_autolink] = ACTIONS(3655), - [sym__whitespace_ge_2] = ACTIONS(3655), - [aux_sym__whitespace_token1] = ACTIONS(3657), - [sym__word_no_digit] = ACTIONS(3655), - [sym__digits] = ACTIONS(3655), - [anon_sym_DASH_DASH] = ACTIONS(3657), - [anon_sym_DASH_DASH_DASH] = ACTIONS(3655), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3655), - [sym__code_span_start] = ACTIONS(3655), - [sym__emphasis_open_star] = ACTIONS(3655), - [sym__emphasis_open_underscore] = ACTIONS(3655), - [sym__strikeout_open] = ACTIONS(3655), - [sym__latex_span_start] = ACTIONS(3655), - [sym__single_quote_open] = ACTIONS(3655), - [sym__double_quote_open] = ACTIONS(3655), - [sym__superscript_open] = ACTIONS(3655), - [sym__subscript_open] = ACTIONS(3655), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3655), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3655), - [sym__cite_author_in_text] = ACTIONS(3655), - [sym__cite_suppress_author] = ACTIONS(3655), - [sym__shortcode_open_escaped] = ACTIONS(3655), - [sym__shortcode_open] = ACTIONS(3655), - [sym__unclosed_span] = ACTIONS(3655), + [sym_backslash_escape] = STATE(383), + [sym_commonmark_attribute] = STATE(383), + [sym_code_span] = STATE(383), + [sym_latex_span] = STATE(383), + [sym_insert] = STATE(383), + [sym_delete] = STATE(383), + [sym_highlight] = STATE(383), + [sym_edit_comment] = STATE(383), + [sym_superscript] = STATE(383), + [sym_subscript] = STATE(383), + [sym_strikeout] = STATE(383), + [sym_quoted_span] = STATE(383), + [sym_inline_note] = STATE(383), + [sym_citation] = STATE(383), + [sym_shortcode_escaped] = STATE(383), + [sym_shortcode] = STATE(383), + [sym_note_reference] = STATE(383), + [sym__link_text] = STATE(395), + [sym__link_text_non_empty] = STATE(396), + [sym_inline_link] = STATE(50), + [sym_image] = STATE(383), + [sym__image_inline_link] = STATE(1263), + [sym__image_description] = STATE(2300), + [sym__image_description_non_empty] = STATE(2300), + [sym_hard_line_break] = STATE(383), + [sym__whitespace] = STATE(1259), + [sym__word] = STATE(1259), + [sym__soft_line_break] = STATE(1264), + [sym__inline_base] = STATE(50), + [sym__text_base] = STATE(383), + [sym__inline_element] = STATE(50), + [sym__emphasis_star] = STATE(1249), + [sym__strong_emphasis_star] = STATE(50), + [sym__emphasis_underscore] = STATE(1249), + [sym__strong_emphasis_underscore] = STATE(50), + [aux_sym_insert_repeat1] = STATE(50), + [aux_sym__inline_base_repeat1] = STATE(383), + [sym__backslash_escape] = ACTIONS(637), + [sym_entity_reference] = ACTIONS(639), + [sym_numeric_character_reference] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_GT] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(645), + [anon_sym_DQUOTE] = ACTIONS(643), + [anon_sym_POUND] = ACTIONS(643), + [anon_sym_DOLLAR] = ACTIONS(643), + [anon_sym_PERCENT] = ACTIONS(643), + [anon_sym_AMP] = ACTIONS(641), + [anon_sym_SQUOTE] = ACTIONS(643), + [anon_sym_STAR] = ACTIONS(643), + [anon_sym_PLUS] = ACTIONS(643), + [anon_sym_COMMA] = ACTIONS(643), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_DOT] = ACTIONS(641), + [anon_sym_SLASH] = ACTIONS(643), + [anon_sym_COLON] = ACTIONS(643), + [anon_sym_SEMI] = ACTIONS(643), + [anon_sym_EQ] = ACTIONS(643), + [anon_sym_QMARK] = ACTIONS(643), + [anon_sym_LBRACK] = ACTIONS(647), + [anon_sym_BSLASH] = ACTIONS(649), + [anon_sym_CARET] = ACTIONS(641), + [anon_sym__] = ACTIONS(643), + [anon_sym_BQUOTE] = ACTIONS(643), + [anon_sym_LBRACE] = ACTIONS(651), + [anon_sym_PIPE] = ACTIONS(643), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_LPAREN] = ACTIONS(643), + [anon_sym_RPAREN] = ACTIONS(643), + [sym__newline_token] = ACTIONS(653), + [aux_sym_insert_token1] = ACTIONS(655), + [aux_sym_delete_token1] = ACTIONS(657), + [aux_sym_highlight_token1] = ACTIONS(659), + [aux_sym_edit_comment_token1] = ACTIONS(661), + [anon_sym_CARET_LBRACK] = ACTIONS(663), + [anon_sym_LBRACK_CARET] = ACTIONS(665), + [sym_uri_autolink] = ACTIONS(639), + [sym_email_autolink] = ACTIONS(639), + [sym__whitespace_ge_2] = ACTIONS(667), + [aux_sym__whitespace_token1] = ACTIONS(669), + [sym__word_no_digit] = ACTIONS(671), + [sym__digits] = ACTIONS(671), + [anon_sym_DASH_DASH] = ACTIONS(673), + [anon_sym_DASH_DASH_DASH] = ACTIONS(671), + [anon_sym_DOT_DOT_DOT] = ACTIONS(671), + [sym__code_span_start] = ACTIONS(675), + [sym__emphasis_open_star] = ACTIONS(677), + [sym__emphasis_open_underscore] = ACTIONS(679), + [sym__strikeout_open] = ACTIONS(681), + [sym__latex_span_start] = ACTIONS(683), + [sym__single_quote_open] = ACTIONS(685), + [sym__double_quote_open] = ACTIONS(687), + [sym__double_quote_close] = ACTIONS(2757), + [sym__superscript_open] = ACTIONS(691), + [sym__subscript_open] = ACTIONS(693), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(695), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(697), + [sym__cite_author_in_text] = ACTIONS(699), + [sym__cite_suppress_author] = ACTIONS(701), + [sym__shortcode_open_escaped] = ACTIONS(703), + [sym__shortcode_open] = ACTIONS(705), + [sym__unclosed_span] = ACTIONS(639), }, [STATE(285)] = { - [sym__qmd_attribute] = STATE(943), - [sym_raw_attribute] = STATE(943), - [sym_commonmark_attribute] = STATE(943), - [sym_language_attribute] = STATE(943), - [sym__backslash_escape] = ACTIONS(3659), - [sym_entity_reference] = ACTIONS(3659), - [sym_numeric_character_reference] = ACTIONS(3659), - [anon_sym_LT] = ACTIONS(3661), - [anon_sym_GT] = ACTIONS(3659), - [anon_sym_BANG] = ACTIONS(3659), - [anon_sym_DQUOTE] = ACTIONS(3659), - [anon_sym_POUND] = ACTIONS(3659), - [anon_sym_DOLLAR] = ACTIONS(3659), - [anon_sym_PERCENT] = ACTIONS(3659), - [anon_sym_AMP] = ACTIONS(3661), - [anon_sym_SQUOTE] = ACTIONS(3659), - [anon_sym_STAR] = ACTIONS(3659), - [anon_sym_PLUS] = ACTIONS(3659), - [anon_sym_COMMA] = ACTIONS(3659), - [anon_sym_DASH] = ACTIONS(3661), - [anon_sym_DOT] = ACTIONS(3661), - [anon_sym_SLASH] = ACTIONS(3659), - [anon_sym_COLON] = ACTIONS(3659), - [anon_sym_SEMI] = ACTIONS(3659), - [anon_sym_EQ] = ACTIONS(3659), - [anon_sym_QMARK] = ACTIONS(3659), - [anon_sym_LBRACK] = ACTIONS(3661), - [anon_sym_BSLASH] = ACTIONS(3661), - [anon_sym_RBRACK] = ACTIONS(3659), - [anon_sym_CARET] = ACTIONS(3661), - [anon_sym__] = ACTIONS(3659), - [anon_sym_BQUOTE] = ACTIONS(3659), - [anon_sym_LBRACE] = ACTIONS(3635), - [anon_sym_PIPE] = ACTIONS(3659), - [anon_sym_TILDE] = ACTIONS(3659), - [anon_sym_LPAREN] = ACTIONS(3659), - [anon_sym_RPAREN] = ACTIONS(3659), - [sym__newline_token] = ACTIONS(3659), - [anon_sym_CARET_LBRACK] = ACTIONS(3659), - [anon_sym_LBRACK_CARET] = ACTIONS(3659), - [sym_uri_autolink] = ACTIONS(3659), - [sym_email_autolink] = ACTIONS(3659), - [sym__whitespace_ge_2] = ACTIONS(3659), - [aux_sym__whitespace_token1] = ACTIONS(3661), - [sym__word_no_digit] = ACTIONS(3659), - [sym__digits] = ACTIONS(3659), - [anon_sym_DASH_DASH] = ACTIONS(3661), - [anon_sym_DASH_DASH_DASH] = ACTIONS(3659), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3659), - [sym__code_span_start] = ACTIONS(3659), - [sym__emphasis_open_star] = ACTIONS(3659), - [sym__emphasis_open_underscore] = ACTIONS(3659), - [sym__strikeout_open] = ACTIONS(3659), - [sym__latex_span_start] = ACTIONS(3659), - [sym__single_quote_open] = ACTIONS(3659), - [sym__double_quote_open] = ACTIONS(3659), - [sym__superscript_open] = ACTIONS(3659), - [sym__subscript_open] = ACTIONS(3659), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3659), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3659), - [sym__cite_author_in_text] = ACTIONS(3659), - [sym__cite_suppress_author] = ACTIONS(3659), - [sym__shortcode_open_escaped] = ACTIONS(3659), - [sym__shortcode_open] = ACTIONS(3659), - [sym__unclosed_span] = ACTIONS(3659), + [sym_backslash_escape] = STATE(365), + [sym_commonmark_attribute] = STATE(365), + [sym_code_span] = STATE(365), + [sym_latex_span] = STATE(365), + [sym_insert] = STATE(365), + [sym_delete] = STATE(365), + [sym_highlight] = STATE(365), + [sym_edit_comment] = STATE(365), + [sym_superscript] = STATE(365), + [sym_subscript] = STATE(365), + [sym_strikeout] = STATE(365), + [sym_quoted_span] = STATE(365), + [sym_inline_note] = STATE(365), + [sym_citation] = STATE(365), + [sym_shortcode_escaped] = STATE(365), + [sym_shortcode] = STATE(365), + [sym_note_reference] = STATE(365), + [sym__link_text] = STATE(416), + [sym__link_text_non_empty] = STATE(417), + [sym_inline_link] = STATE(52), + [sym_image] = STATE(365), + [sym__image_inline_link] = STATE(712), + [sym__image_description] = STATE(2314), + [sym__image_description_non_empty] = STATE(2314), + [sym_hard_line_break] = STATE(365), + [sym__whitespace] = STATE(709), + [sym__word] = STATE(709), + [sym__soft_line_break] = STATE(713), + [sym__inline_base] = STATE(52), + [sym__text_base] = STATE(365), + [sym__inline_element] = STATE(52), + [sym__emphasis_star] = STATE(979), + [sym__strong_emphasis_star] = STATE(52), + [sym__emphasis_underscore] = STATE(979), + [sym__strong_emphasis_underscore] = STATE(52), + [aux_sym_insert_repeat1] = STATE(52), + [aux_sym__inline_base_repeat1] = STATE(365), + [sym__backslash_escape] = ACTIONS(1341), + [sym_entity_reference] = ACTIONS(1343), + [sym_numeric_character_reference] = ACTIONS(1343), + [anon_sym_LT] = ACTIONS(1345), + [anon_sym_GT] = ACTIONS(1347), + [anon_sym_BANG] = ACTIONS(1349), + [anon_sym_DQUOTE] = ACTIONS(1347), + [anon_sym_POUND] = ACTIONS(1347), + [anon_sym_DOLLAR] = ACTIONS(1347), + [anon_sym_PERCENT] = ACTIONS(1347), + [anon_sym_AMP] = ACTIONS(1345), + [anon_sym_SQUOTE] = ACTIONS(1347), + [anon_sym_STAR] = ACTIONS(1347), + [anon_sym_PLUS] = ACTIONS(1347), + [anon_sym_COMMA] = ACTIONS(1347), + [anon_sym_DASH] = ACTIONS(1345), + [anon_sym_DOT] = ACTIONS(1345), + [anon_sym_SLASH] = ACTIONS(1347), + [anon_sym_COLON] = ACTIONS(1347), + [anon_sym_SEMI] = ACTIONS(1347), + [anon_sym_EQ] = ACTIONS(1347), + [anon_sym_QMARK] = ACTIONS(1347), + [anon_sym_LBRACK] = ACTIONS(1351), + [anon_sym_BSLASH] = ACTIONS(1353), + [anon_sym_CARET] = ACTIONS(1345), + [anon_sym__] = ACTIONS(1347), + [anon_sym_BQUOTE] = ACTIONS(1347), + [anon_sym_LBRACE] = ACTIONS(1355), + [anon_sym_PIPE] = ACTIONS(1347), + [anon_sym_TILDE] = ACTIONS(1347), + [anon_sym_LPAREN] = ACTIONS(1347), + [anon_sym_RPAREN] = ACTIONS(1347), + [sym__newline_token] = ACTIONS(1357), + [aux_sym_insert_token1] = ACTIONS(1359), + [aux_sym_delete_token1] = ACTIONS(1361), + [aux_sym_highlight_token1] = ACTIONS(1363), + [aux_sym_edit_comment_token1] = ACTIONS(1365), + [anon_sym_CARET_LBRACK] = ACTIONS(1367), + [anon_sym_LBRACK_CARET] = ACTIONS(1369), + [sym_uri_autolink] = ACTIONS(1343), + [sym_email_autolink] = ACTIONS(1343), + [sym__whitespace_ge_2] = ACTIONS(1371), + [aux_sym__whitespace_token1] = ACTIONS(1373), + [sym__word_no_digit] = ACTIONS(1375), + [sym__digits] = ACTIONS(1375), + [anon_sym_DASH_DASH] = ACTIONS(1377), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1375), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1375), + [sym__code_span_start] = ACTIONS(1379), + [sym__emphasis_open_star] = ACTIONS(1381), + [sym__emphasis_open_underscore] = ACTIONS(1383), + [sym__strikeout_open] = ACTIONS(1385), + [sym__latex_span_start] = ACTIONS(1387), + [sym__single_quote_open] = ACTIONS(1389), + [sym__double_quote_open] = ACTIONS(1391), + [sym__superscript_open] = ACTIONS(1393), + [sym__superscript_close] = ACTIONS(2759), + [sym__subscript_open] = ACTIONS(1397), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1399), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1401), + [sym__cite_author_in_text] = ACTIONS(1403), + [sym__cite_suppress_author] = ACTIONS(1405), + [sym__shortcode_open_escaped] = ACTIONS(1407), + [sym__shortcode_open] = ACTIONS(1409), + [sym__unclosed_span] = ACTIONS(1343), }, [STATE(286)] = { - [sym__qmd_attribute] = STATE(949), - [sym_raw_attribute] = STATE(949), - [sym_commonmark_attribute] = STATE(949), - [sym_language_attribute] = STATE(949), - [sym__backslash_escape] = ACTIONS(3637), - [sym_entity_reference] = ACTIONS(3637), - [sym_numeric_character_reference] = ACTIONS(3637), - [anon_sym_LT] = ACTIONS(3639), - [anon_sym_GT] = ACTIONS(3637), - [anon_sym_BANG] = ACTIONS(3637), - [anon_sym_DQUOTE] = ACTIONS(3637), - [anon_sym_POUND] = ACTIONS(3637), - [anon_sym_DOLLAR] = ACTIONS(3637), - [anon_sym_PERCENT] = ACTIONS(3637), - [anon_sym_AMP] = ACTIONS(3639), - [anon_sym_SQUOTE] = ACTIONS(3637), - [anon_sym_STAR] = ACTIONS(3637), - [anon_sym_PLUS] = ACTIONS(3637), - [anon_sym_COMMA] = ACTIONS(3637), - [anon_sym_DASH] = ACTIONS(3639), - [anon_sym_DOT] = ACTIONS(3639), - [anon_sym_SLASH] = ACTIONS(3637), - [anon_sym_COLON] = ACTIONS(3637), - [anon_sym_SEMI] = ACTIONS(3637), - [anon_sym_EQ] = ACTIONS(3637), - [anon_sym_QMARK] = ACTIONS(3637), - [anon_sym_LBRACK] = ACTIONS(3639), - [anon_sym_BSLASH] = ACTIONS(3639), - [anon_sym_RBRACK] = ACTIONS(3637), - [anon_sym_CARET] = ACTIONS(3639), - [anon_sym__] = ACTIONS(3637), - [anon_sym_BQUOTE] = ACTIONS(3637), - [anon_sym_LBRACE] = ACTIONS(3635), - [anon_sym_PIPE] = ACTIONS(3637), - [anon_sym_TILDE] = ACTIONS(3637), - [anon_sym_LPAREN] = ACTIONS(3637), - [anon_sym_RPAREN] = ACTIONS(3637), - [sym__newline_token] = ACTIONS(3637), - [anon_sym_CARET_LBRACK] = ACTIONS(3637), - [anon_sym_LBRACK_CARET] = ACTIONS(3637), - [sym_uri_autolink] = ACTIONS(3637), - [sym_email_autolink] = ACTIONS(3637), - [sym__whitespace_ge_2] = ACTIONS(3637), - [aux_sym__whitespace_token1] = ACTIONS(3639), - [sym__word_no_digit] = ACTIONS(3637), - [sym__digits] = ACTIONS(3637), - [anon_sym_DASH_DASH] = ACTIONS(3639), - [anon_sym_DASH_DASH_DASH] = ACTIONS(3637), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3637), - [sym__code_span_start] = ACTIONS(3637), - [sym__emphasis_open_star] = ACTIONS(3637), - [sym__emphasis_open_underscore] = ACTIONS(3637), - [sym__strikeout_open] = ACTIONS(3637), - [sym__latex_span_start] = ACTIONS(3637), - [sym__single_quote_open] = ACTIONS(3637), - [sym__double_quote_open] = ACTIONS(3637), - [sym__superscript_open] = ACTIONS(3637), - [sym__subscript_open] = ACTIONS(3637), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3637), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3637), - [sym__cite_author_in_text] = ACTIONS(3637), - [sym__cite_suppress_author] = ACTIONS(3637), - [sym__shortcode_open_escaped] = ACTIONS(3637), - [sym__shortcode_open] = ACTIONS(3637), - [sym__unclosed_span] = ACTIONS(3637), + [sym_backslash_escape] = STATE(367), + [sym_commonmark_attribute] = STATE(367), + [sym_code_span] = STATE(367), + [sym_latex_span] = STATE(367), + [sym_insert] = STATE(367), + [sym_delete] = STATE(367), + [sym_highlight] = STATE(367), + [sym_edit_comment] = STATE(367), + [sym_superscript] = STATE(367), + [sym_subscript] = STATE(367), + [sym_strikeout] = STATE(367), + [sym_quoted_span] = STATE(367), + [sym_inline_note] = STATE(367), + [sym_citation] = STATE(367), + [sym_shortcode_escaped] = STATE(367), + [sym_shortcode] = STATE(367), + [sym_note_reference] = STATE(367), + [sym__link_text] = STATE(435), + [sym__link_text_non_empty] = STATE(436), + [sym_inline_link] = STATE(55), + [sym_image] = STATE(367), + [sym__image_inline_link] = STATE(819), + [sym__image_description] = STATE(2328), + [sym__image_description_non_empty] = STATE(2328), + [sym_hard_line_break] = STATE(367), + [sym__whitespace] = STATE(816), + [sym__word] = STATE(816), + [sym__soft_line_break] = STATE(820), + [sym__inline_base] = STATE(55), + [sym__text_base] = STATE(367), + [sym__inline_element] = STATE(55), + [sym__emphasis_star] = STATE(1271), + [sym__strong_emphasis_star] = STATE(55), + [sym__emphasis_underscore] = STATE(1271), + [sym__strong_emphasis_underscore] = STATE(55), + [aux_sym_insert_repeat1] = STATE(55), + [aux_sym__inline_base_repeat1] = STATE(367), + [sym__backslash_escape] = ACTIONS(1413), + [sym_entity_reference] = ACTIONS(1415), + [sym_numeric_character_reference] = ACTIONS(1415), + [anon_sym_LT] = ACTIONS(1417), + [anon_sym_GT] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1419), + [anon_sym_POUND] = ACTIONS(1419), + [anon_sym_DOLLAR] = ACTIONS(1419), + [anon_sym_PERCENT] = ACTIONS(1419), + [anon_sym_AMP] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [anon_sym_STAR] = ACTIONS(1419), + [anon_sym_PLUS] = ACTIONS(1419), + [anon_sym_COMMA] = ACTIONS(1419), + [anon_sym_DASH] = ACTIONS(1417), + [anon_sym_DOT] = ACTIONS(1417), + [anon_sym_SLASH] = ACTIONS(1419), + [anon_sym_COLON] = ACTIONS(1419), + [anon_sym_SEMI] = ACTIONS(1419), + [anon_sym_EQ] = ACTIONS(1419), + [anon_sym_QMARK] = ACTIONS(1419), + [anon_sym_LBRACK] = ACTIONS(1423), + [anon_sym_BSLASH] = ACTIONS(1425), + [anon_sym_CARET] = ACTIONS(1417), + [anon_sym__] = ACTIONS(1419), + [anon_sym_BQUOTE] = ACTIONS(1419), + [anon_sym_LBRACE] = ACTIONS(1427), + [anon_sym_PIPE] = ACTIONS(1419), + [anon_sym_TILDE] = ACTIONS(1419), + [anon_sym_LPAREN] = ACTIONS(1419), + [anon_sym_RPAREN] = ACTIONS(1419), + [sym__newline_token] = ACTIONS(1429), + [aux_sym_insert_token1] = ACTIONS(1431), + [aux_sym_delete_token1] = ACTIONS(1433), + [aux_sym_highlight_token1] = ACTIONS(1435), + [aux_sym_edit_comment_token1] = ACTIONS(1437), + [anon_sym_CARET_LBRACK] = ACTIONS(1439), + [anon_sym_LBRACK_CARET] = ACTIONS(1441), + [sym_uri_autolink] = ACTIONS(1415), + [sym_email_autolink] = ACTIONS(1415), + [sym__whitespace_ge_2] = ACTIONS(1443), + [aux_sym__whitespace_token1] = ACTIONS(1445), + [sym__word_no_digit] = ACTIONS(1447), + [sym__digits] = ACTIONS(1447), + [anon_sym_DASH_DASH] = ACTIONS(1449), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1447), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1447), + [sym__code_span_start] = ACTIONS(1451), + [sym__emphasis_open_star] = ACTIONS(1453), + [sym__emphasis_open_underscore] = ACTIONS(1455), + [sym__strikeout_open] = ACTIONS(1457), + [sym__latex_span_start] = ACTIONS(1459), + [sym__single_quote_open] = ACTIONS(1461), + [sym__double_quote_open] = ACTIONS(1463), + [sym__superscript_open] = ACTIONS(1465), + [sym__subscript_open] = ACTIONS(1467), + [sym__subscript_close] = ACTIONS(2761), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1471), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1473), + [sym__cite_author_in_text] = ACTIONS(1475), + [sym__cite_suppress_author] = ACTIONS(1477), + [sym__shortcode_open_escaped] = ACTIONS(1479), + [sym__shortcode_open] = ACTIONS(1481), + [sym__unclosed_span] = ACTIONS(1415), }, [STATE(287)] = { - [sym__qmd_attribute] = STATE(951), - [sym_raw_attribute] = STATE(951), - [sym_commonmark_attribute] = STATE(951), - [sym_language_attribute] = STATE(951), - [sym__backslash_escape] = ACTIONS(3663), - [sym_entity_reference] = ACTIONS(3663), - [sym_numeric_character_reference] = ACTIONS(3663), - [anon_sym_LT] = ACTIONS(3665), - [anon_sym_GT] = ACTIONS(3663), - [anon_sym_BANG] = ACTIONS(3663), - [anon_sym_DQUOTE] = ACTIONS(3663), - [anon_sym_POUND] = ACTIONS(3663), - [anon_sym_DOLLAR] = ACTIONS(3663), - [anon_sym_PERCENT] = ACTIONS(3663), - [anon_sym_AMP] = ACTIONS(3665), - [anon_sym_SQUOTE] = ACTIONS(3663), - [anon_sym_STAR] = ACTIONS(3663), - [anon_sym_PLUS] = ACTIONS(3663), - [anon_sym_COMMA] = ACTIONS(3663), - [anon_sym_DASH] = ACTIONS(3665), - [anon_sym_DOT] = ACTIONS(3665), - [anon_sym_SLASH] = ACTIONS(3663), - [anon_sym_COLON] = ACTIONS(3663), - [anon_sym_SEMI] = ACTIONS(3663), - [anon_sym_EQ] = ACTIONS(3663), - [anon_sym_QMARK] = ACTIONS(3663), - [anon_sym_LBRACK] = ACTIONS(3665), - [anon_sym_BSLASH] = ACTIONS(3665), - [anon_sym_RBRACK] = ACTIONS(3663), - [anon_sym_CARET] = ACTIONS(3665), - [anon_sym__] = ACTIONS(3663), - [anon_sym_BQUOTE] = ACTIONS(3663), - [anon_sym_LBRACE] = ACTIONS(3635), - [anon_sym_PIPE] = ACTIONS(3663), - [anon_sym_TILDE] = ACTIONS(3663), - [anon_sym_LPAREN] = ACTIONS(3663), - [anon_sym_RPAREN] = ACTIONS(3663), - [sym__newline_token] = ACTIONS(3663), - [anon_sym_CARET_LBRACK] = ACTIONS(3663), - [anon_sym_LBRACK_CARET] = ACTIONS(3663), - [sym_uri_autolink] = ACTIONS(3663), - [sym_email_autolink] = ACTIONS(3663), - [sym__whitespace_ge_2] = ACTIONS(3663), - [aux_sym__whitespace_token1] = ACTIONS(3665), - [sym__word_no_digit] = ACTIONS(3663), - [sym__digits] = ACTIONS(3663), - [anon_sym_DASH_DASH] = ACTIONS(3665), - [anon_sym_DASH_DASH_DASH] = ACTIONS(3663), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3663), - [sym__code_span_start] = ACTIONS(3663), - [sym__emphasis_open_star] = ACTIONS(3663), - [sym__emphasis_open_underscore] = ACTIONS(3663), - [sym__strikeout_open] = ACTIONS(3663), - [sym__latex_span_start] = ACTIONS(3663), - [sym__single_quote_open] = ACTIONS(3663), - [sym__double_quote_open] = ACTIONS(3663), - [sym__superscript_open] = ACTIONS(3663), - [sym__subscript_open] = ACTIONS(3663), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3663), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3663), - [sym__cite_author_in_text] = ACTIONS(3663), - [sym__cite_suppress_author] = ACTIONS(3663), - [sym__shortcode_open_escaped] = ACTIONS(3663), - [sym__shortcode_open] = ACTIONS(3663), - [sym__unclosed_span] = ACTIONS(3663), + [sym_backslash_escape] = STATE(372), + [sym_commonmark_attribute] = STATE(372), + [sym_code_span] = STATE(372), + [sym_latex_span] = STATE(372), + [sym_insert] = STATE(372), + [sym_delete] = STATE(372), + [sym_highlight] = STATE(372), + [sym_edit_comment] = STATE(372), + [sym_superscript] = STATE(372), + [sym_subscript] = STATE(372), + [sym_strikeout] = STATE(372), + [sym_quoted_span] = STATE(372), + [sym_inline_note] = STATE(372), + [sym_citation] = STATE(372), + [sym_shortcode_escaped] = STATE(372), + [sym_shortcode] = STATE(372), + [sym_note_reference] = STATE(372), + [sym__link_text] = STATE(454), + [sym__link_text_non_empty] = STATE(455), + [sym_inline_link] = STATE(57), + [sym_image] = STATE(372), + [sym__image_inline_link] = STATE(1025), + [sym__image_description] = STATE(2356), + [sym__image_description_non_empty] = STATE(2356), + [sym_hard_line_break] = STATE(372), + [sym__whitespace] = STATE(1022), + [sym__word] = STATE(1022), + [sym__soft_line_break] = STATE(1026), + [sym__inline_base] = STATE(57), + [sym__text_base] = STATE(372), + [sym__inline_element] = STATE(57), + [sym__emphasis_star] = STATE(714), + [sym__strong_emphasis_star] = STATE(57), + [sym__emphasis_underscore] = STATE(714), + [sym__strong_emphasis_underscore] = STATE(57), + [aux_sym_insert_repeat1] = STATE(57), + [aux_sym__inline_base_repeat1] = STATE(372), + [sym__backslash_escape] = ACTIONS(707), + [sym_entity_reference] = ACTIONS(709), + [sym_numeric_character_reference] = ACTIONS(709), + [anon_sym_LT] = ACTIONS(711), + [anon_sym_GT] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(715), + [anon_sym_DQUOTE] = ACTIONS(713), + [anon_sym_POUND] = ACTIONS(713), + [anon_sym_DOLLAR] = ACTIONS(713), + [anon_sym_PERCENT] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(711), + [anon_sym_SQUOTE] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_COMMA] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_DOT] = ACTIONS(711), + [anon_sym_SLASH] = ACTIONS(713), + [anon_sym_COLON] = ACTIONS(713), + [anon_sym_SEMI] = ACTIONS(713), + [anon_sym_EQ] = ACTIONS(713), + [anon_sym_QMARK] = ACTIONS(713), + [anon_sym_LBRACK] = ACTIONS(717), + [anon_sym_BSLASH] = ACTIONS(719), + [anon_sym_CARET] = ACTIONS(711), + [anon_sym__] = ACTIONS(713), + [anon_sym_BQUOTE] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(721), + [anon_sym_PIPE] = ACTIONS(713), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_LPAREN] = ACTIONS(713), + [anon_sym_RPAREN] = ACTIONS(713), + [sym__newline_token] = ACTIONS(723), + [aux_sym_insert_token1] = ACTIONS(725), + [aux_sym_insert_token2] = ACTIONS(2763), + [aux_sym_delete_token1] = ACTIONS(729), + [aux_sym_highlight_token1] = ACTIONS(731), + [aux_sym_edit_comment_token1] = ACTIONS(733), + [anon_sym_CARET_LBRACK] = ACTIONS(735), + [anon_sym_LBRACK_CARET] = ACTIONS(737), + [sym_uri_autolink] = ACTIONS(709), + [sym_email_autolink] = ACTIONS(709), + [sym__whitespace_ge_2] = ACTIONS(739), + [aux_sym__whitespace_token1] = ACTIONS(741), + [sym__word_no_digit] = ACTIONS(743), + [sym__digits] = ACTIONS(743), + [anon_sym_DASH_DASH] = ACTIONS(745), + [anon_sym_DASH_DASH_DASH] = ACTIONS(743), + [anon_sym_DOT_DOT_DOT] = ACTIONS(743), + [sym__code_span_start] = ACTIONS(747), + [sym__emphasis_open_star] = ACTIONS(749), + [sym__emphasis_open_underscore] = ACTIONS(751), + [sym__strikeout_open] = ACTIONS(753), + [sym__latex_span_start] = ACTIONS(755), + [sym__single_quote_open] = ACTIONS(757), + [sym__double_quote_open] = ACTIONS(759), + [sym__superscript_open] = ACTIONS(761), + [sym__subscript_open] = ACTIONS(763), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(765), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(767), + [sym__cite_author_in_text] = ACTIONS(769), + [sym__cite_suppress_author] = ACTIONS(771), + [sym__shortcode_open_escaped] = ACTIONS(773), + [sym__shortcode_open] = ACTIONS(775), + [sym__unclosed_span] = ACTIONS(709), }, [STATE(288)] = { - [sym__qmd_attribute] = STATE(955), - [sym_raw_attribute] = STATE(955), - [sym_commonmark_attribute] = STATE(955), - [sym_language_attribute] = STATE(955), - [sym__backslash_escape] = ACTIONS(3667), - [sym_entity_reference] = ACTIONS(3667), - [sym_numeric_character_reference] = ACTIONS(3667), - [anon_sym_LT] = ACTIONS(3669), - [anon_sym_GT] = ACTIONS(3667), - [anon_sym_BANG] = ACTIONS(3667), - [anon_sym_DQUOTE] = ACTIONS(3667), - [anon_sym_POUND] = ACTIONS(3667), - [anon_sym_DOLLAR] = ACTIONS(3667), - [anon_sym_PERCENT] = ACTIONS(3667), - [anon_sym_AMP] = ACTIONS(3669), - [anon_sym_SQUOTE] = ACTIONS(3667), - [anon_sym_STAR] = ACTIONS(3667), - [anon_sym_PLUS] = ACTIONS(3667), - [anon_sym_COMMA] = ACTIONS(3667), - [anon_sym_DASH] = ACTIONS(3669), - [anon_sym_DOT] = ACTIONS(3669), - [anon_sym_SLASH] = ACTIONS(3667), - [anon_sym_COLON] = ACTIONS(3667), - [anon_sym_SEMI] = ACTIONS(3667), - [anon_sym_EQ] = ACTIONS(3667), - [anon_sym_QMARK] = ACTIONS(3667), - [anon_sym_LBRACK] = ACTIONS(3669), - [anon_sym_BSLASH] = ACTIONS(3669), - [anon_sym_RBRACK] = ACTIONS(3667), - [anon_sym_CARET] = ACTIONS(3669), - [anon_sym__] = ACTIONS(3667), - [anon_sym_BQUOTE] = ACTIONS(3667), - [anon_sym_LBRACE] = ACTIONS(3635), - [anon_sym_PIPE] = ACTIONS(3667), - [anon_sym_TILDE] = ACTIONS(3667), - [anon_sym_LPAREN] = ACTIONS(3667), - [anon_sym_RPAREN] = ACTIONS(3667), - [sym__newline_token] = ACTIONS(3667), - [anon_sym_CARET_LBRACK] = ACTIONS(3667), - [anon_sym_LBRACK_CARET] = ACTIONS(3667), - [sym_uri_autolink] = ACTIONS(3667), - [sym_email_autolink] = ACTIONS(3667), - [sym__whitespace_ge_2] = ACTIONS(3667), - [aux_sym__whitespace_token1] = ACTIONS(3669), - [sym__word_no_digit] = ACTIONS(3667), - [sym__digits] = ACTIONS(3667), - [anon_sym_DASH_DASH] = ACTIONS(3669), - [anon_sym_DASH_DASH_DASH] = ACTIONS(3667), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3667), - [sym__code_span_start] = ACTIONS(3667), - [sym__emphasis_open_star] = ACTIONS(3667), - [sym__emphasis_open_underscore] = ACTIONS(3667), - [sym__strikeout_open] = ACTIONS(3667), - [sym__latex_span_start] = ACTIONS(3667), - [sym__single_quote_open] = ACTIONS(3667), - [sym__double_quote_open] = ACTIONS(3667), - [sym__superscript_open] = ACTIONS(3667), - [sym__subscript_open] = ACTIONS(3667), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3667), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3667), - [sym__cite_author_in_text] = ACTIONS(3667), - [sym__cite_suppress_author] = ACTIONS(3667), - [sym__shortcode_open_escaped] = ACTIONS(3667), - [sym__shortcode_open] = ACTIONS(3667), - [sym__unclosed_span] = ACTIONS(3667), + [sym_backslash_escape] = STATE(372), + [sym_commonmark_attribute] = STATE(372), + [sym_code_span] = STATE(372), + [sym_latex_span] = STATE(372), + [sym_insert] = STATE(372), + [sym_delete] = STATE(372), + [sym_highlight] = STATE(372), + [sym_edit_comment] = STATE(372), + [sym_superscript] = STATE(372), + [sym_subscript] = STATE(372), + [sym_strikeout] = STATE(372), + [sym_quoted_span] = STATE(372), + [sym_inline_note] = STATE(372), + [sym_citation] = STATE(372), + [sym_shortcode_escaped] = STATE(372), + [sym_shortcode] = STATE(372), + [sym_note_reference] = STATE(372), + [sym__link_text] = STATE(454), + [sym__link_text_non_empty] = STATE(455), + [sym_inline_link] = STATE(57), + [sym_image] = STATE(372), + [sym__image_inline_link] = STATE(1025), + [sym__image_description] = STATE(2356), + [sym__image_description_non_empty] = STATE(2356), + [sym_hard_line_break] = STATE(372), + [sym__whitespace] = STATE(1022), + [sym__word] = STATE(1022), + [sym__soft_line_break] = STATE(1026), + [sym__inline_base] = STATE(57), + [sym__text_base] = STATE(372), + [sym__inline_element] = STATE(57), + [sym__emphasis_star] = STATE(714), + [sym__strong_emphasis_star] = STATE(57), + [sym__emphasis_underscore] = STATE(714), + [sym__strong_emphasis_underscore] = STATE(57), + [aux_sym_insert_repeat1] = STATE(57), + [aux_sym__inline_base_repeat1] = STATE(372), + [sym__backslash_escape] = ACTIONS(707), + [sym_entity_reference] = ACTIONS(709), + [sym_numeric_character_reference] = ACTIONS(709), + [anon_sym_LT] = ACTIONS(711), + [anon_sym_GT] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(715), + [anon_sym_DQUOTE] = ACTIONS(713), + [anon_sym_POUND] = ACTIONS(713), + [anon_sym_DOLLAR] = ACTIONS(713), + [anon_sym_PERCENT] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(711), + [anon_sym_SQUOTE] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_COMMA] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_DOT] = ACTIONS(711), + [anon_sym_SLASH] = ACTIONS(713), + [anon_sym_COLON] = ACTIONS(713), + [anon_sym_SEMI] = ACTIONS(713), + [anon_sym_EQ] = ACTIONS(713), + [anon_sym_QMARK] = ACTIONS(713), + [anon_sym_LBRACK] = ACTIONS(717), + [anon_sym_BSLASH] = ACTIONS(719), + [anon_sym_CARET] = ACTIONS(711), + [anon_sym__] = ACTIONS(713), + [anon_sym_BQUOTE] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(721), + [anon_sym_PIPE] = ACTIONS(713), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_LPAREN] = ACTIONS(713), + [anon_sym_RPAREN] = ACTIONS(713), + [sym__newline_token] = ACTIONS(723), + [aux_sym_insert_token1] = ACTIONS(725), + [aux_sym_insert_token2] = ACTIONS(2765), + [aux_sym_delete_token1] = ACTIONS(729), + [aux_sym_highlight_token1] = ACTIONS(731), + [aux_sym_edit_comment_token1] = ACTIONS(733), + [anon_sym_CARET_LBRACK] = ACTIONS(735), + [anon_sym_LBRACK_CARET] = ACTIONS(737), + [sym_uri_autolink] = ACTIONS(709), + [sym_email_autolink] = ACTIONS(709), + [sym__whitespace_ge_2] = ACTIONS(739), + [aux_sym__whitespace_token1] = ACTIONS(741), + [sym__word_no_digit] = ACTIONS(743), + [sym__digits] = ACTIONS(743), + [anon_sym_DASH_DASH] = ACTIONS(745), + [anon_sym_DASH_DASH_DASH] = ACTIONS(743), + [anon_sym_DOT_DOT_DOT] = ACTIONS(743), + [sym__code_span_start] = ACTIONS(747), + [sym__emphasis_open_star] = ACTIONS(749), + [sym__emphasis_open_underscore] = ACTIONS(751), + [sym__strikeout_open] = ACTIONS(753), + [sym__latex_span_start] = ACTIONS(755), + [sym__single_quote_open] = ACTIONS(757), + [sym__double_quote_open] = ACTIONS(759), + [sym__superscript_open] = ACTIONS(761), + [sym__subscript_open] = ACTIONS(763), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(765), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(767), + [sym__cite_author_in_text] = ACTIONS(769), + [sym__cite_suppress_author] = ACTIONS(771), + [sym__shortcode_open_escaped] = ACTIONS(773), + [sym__shortcode_open] = ACTIONS(775), + [sym__unclosed_span] = ACTIONS(709), }, [STATE(289)] = { - [sym__qmd_attribute] = STATE(957), - [sym_raw_attribute] = STATE(957), - [sym_commonmark_attribute] = STATE(957), - [sym_language_attribute] = STATE(957), - [sym__backslash_escape] = ACTIONS(3671), - [sym_entity_reference] = ACTIONS(3671), - [sym_numeric_character_reference] = ACTIONS(3671), - [anon_sym_LT] = ACTIONS(3673), - [anon_sym_GT] = ACTIONS(3671), - [anon_sym_BANG] = ACTIONS(3671), - [anon_sym_DQUOTE] = ACTIONS(3671), - [anon_sym_POUND] = ACTIONS(3671), - [anon_sym_DOLLAR] = ACTIONS(3671), - [anon_sym_PERCENT] = ACTIONS(3671), - [anon_sym_AMP] = ACTIONS(3673), - [anon_sym_SQUOTE] = ACTIONS(3671), - [anon_sym_STAR] = ACTIONS(3671), - [anon_sym_PLUS] = ACTIONS(3671), - [anon_sym_COMMA] = ACTIONS(3671), - [anon_sym_DASH] = ACTIONS(3673), - [anon_sym_DOT] = ACTIONS(3673), - [anon_sym_SLASH] = ACTIONS(3671), - [anon_sym_COLON] = ACTIONS(3671), - [anon_sym_SEMI] = ACTIONS(3671), - [anon_sym_EQ] = ACTIONS(3671), - [anon_sym_QMARK] = ACTIONS(3671), - [anon_sym_LBRACK] = ACTIONS(3673), - [anon_sym_BSLASH] = ACTIONS(3673), - [anon_sym_RBRACK] = ACTIONS(3671), - [anon_sym_CARET] = ACTIONS(3673), - [anon_sym__] = ACTIONS(3671), - [anon_sym_BQUOTE] = ACTIONS(3671), - [anon_sym_LBRACE] = ACTIONS(3635), - [anon_sym_PIPE] = ACTIONS(3671), - [anon_sym_TILDE] = ACTIONS(3671), - [anon_sym_LPAREN] = ACTIONS(3671), - [anon_sym_RPAREN] = ACTIONS(3671), - [sym__newline_token] = ACTIONS(3671), - [anon_sym_CARET_LBRACK] = ACTIONS(3671), - [anon_sym_LBRACK_CARET] = ACTIONS(3671), - [sym_uri_autolink] = ACTIONS(3671), - [sym_email_autolink] = ACTIONS(3671), - [sym__whitespace_ge_2] = ACTIONS(3671), - [aux_sym__whitespace_token1] = ACTIONS(3673), - [sym__word_no_digit] = ACTIONS(3671), - [sym__digits] = ACTIONS(3671), - [anon_sym_DASH_DASH] = ACTIONS(3673), - [anon_sym_DASH_DASH_DASH] = ACTIONS(3671), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3671), - [sym__code_span_start] = ACTIONS(3671), - [sym__emphasis_open_star] = ACTIONS(3671), - [sym__emphasis_open_underscore] = ACTIONS(3671), - [sym__strikeout_open] = ACTIONS(3671), - [sym__latex_span_start] = ACTIONS(3671), - [sym__single_quote_open] = ACTIONS(3671), - [sym__double_quote_open] = ACTIONS(3671), - [sym__superscript_open] = ACTIONS(3671), - [sym__subscript_open] = ACTIONS(3671), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3671), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3671), - [sym__cite_author_in_text] = ACTIONS(3671), - [sym__cite_suppress_author] = ACTIONS(3671), - [sym__shortcode_open_escaped] = ACTIONS(3671), - [sym__shortcode_open] = ACTIONS(3671), - [sym__unclosed_span] = ACTIONS(3671), + [sym_backslash_escape] = STATE(372), + [sym_commonmark_attribute] = STATE(372), + [sym_code_span] = STATE(372), + [sym_latex_span] = STATE(372), + [sym_insert] = STATE(372), + [sym_delete] = STATE(372), + [sym_highlight] = STATE(372), + [sym_edit_comment] = STATE(372), + [sym_superscript] = STATE(372), + [sym_subscript] = STATE(372), + [sym_strikeout] = STATE(372), + [sym_quoted_span] = STATE(372), + [sym_inline_note] = STATE(372), + [sym_citation] = STATE(372), + [sym_shortcode_escaped] = STATE(372), + [sym_shortcode] = STATE(372), + [sym_note_reference] = STATE(372), + [sym__link_text] = STATE(454), + [sym__link_text_non_empty] = STATE(455), + [sym_inline_link] = STATE(57), + [sym_image] = STATE(372), + [sym__image_inline_link] = STATE(1025), + [sym__image_description] = STATE(2356), + [sym__image_description_non_empty] = STATE(2356), + [sym_hard_line_break] = STATE(372), + [sym__whitespace] = STATE(1022), + [sym__word] = STATE(1022), + [sym__soft_line_break] = STATE(1026), + [sym__inline_base] = STATE(57), + [sym__text_base] = STATE(372), + [sym__inline_element] = STATE(57), + [sym__emphasis_star] = STATE(714), + [sym__strong_emphasis_star] = STATE(57), + [sym__emphasis_underscore] = STATE(714), + [sym__strong_emphasis_underscore] = STATE(57), + [aux_sym_insert_repeat1] = STATE(57), + [aux_sym__inline_base_repeat1] = STATE(372), + [sym__backslash_escape] = ACTIONS(707), + [sym_entity_reference] = ACTIONS(709), + [sym_numeric_character_reference] = ACTIONS(709), + [anon_sym_LT] = ACTIONS(711), + [anon_sym_GT] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(715), + [anon_sym_DQUOTE] = ACTIONS(713), + [anon_sym_POUND] = ACTIONS(713), + [anon_sym_DOLLAR] = ACTIONS(713), + [anon_sym_PERCENT] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(711), + [anon_sym_SQUOTE] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_COMMA] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_DOT] = ACTIONS(711), + [anon_sym_SLASH] = ACTIONS(713), + [anon_sym_COLON] = ACTIONS(713), + [anon_sym_SEMI] = ACTIONS(713), + [anon_sym_EQ] = ACTIONS(713), + [anon_sym_QMARK] = ACTIONS(713), + [anon_sym_LBRACK] = ACTIONS(717), + [anon_sym_BSLASH] = ACTIONS(719), + [anon_sym_CARET] = ACTIONS(711), + [anon_sym__] = ACTIONS(713), + [anon_sym_BQUOTE] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(721), + [anon_sym_PIPE] = ACTIONS(713), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_LPAREN] = ACTIONS(713), + [anon_sym_RPAREN] = ACTIONS(713), + [sym__newline_token] = ACTIONS(723), + [aux_sym_insert_token1] = ACTIONS(725), + [aux_sym_insert_token2] = ACTIONS(2767), + [aux_sym_delete_token1] = ACTIONS(729), + [aux_sym_highlight_token1] = ACTIONS(731), + [aux_sym_edit_comment_token1] = ACTIONS(733), + [anon_sym_CARET_LBRACK] = ACTIONS(735), + [anon_sym_LBRACK_CARET] = ACTIONS(737), + [sym_uri_autolink] = ACTIONS(709), + [sym_email_autolink] = ACTIONS(709), + [sym__whitespace_ge_2] = ACTIONS(739), + [aux_sym__whitespace_token1] = ACTIONS(741), + [sym__word_no_digit] = ACTIONS(743), + [sym__digits] = ACTIONS(743), + [anon_sym_DASH_DASH] = ACTIONS(745), + [anon_sym_DASH_DASH_DASH] = ACTIONS(743), + [anon_sym_DOT_DOT_DOT] = ACTIONS(743), + [sym__code_span_start] = ACTIONS(747), + [sym__emphasis_open_star] = ACTIONS(749), + [sym__emphasis_open_underscore] = ACTIONS(751), + [sym__strikeout_open] = ACTIONS(753), + [sym__latex_span_start] = ACTIONS(755), + [sym__single_quote_open] = ACTIONS(757), + [sym__double_quote_open] = ACTIONS(759), + [sym__superscript_open] = ACTIONS(761), + [sym__subscript_open] = ACTIONS(763), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(765), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(767), + [sym__cite_author_in_text] = ACTIONS(769), + [sym__cite_suppress_author] = ACTIONS(771), + [sym__shortcode_open_escaped] = ACTIONS(773), + [sym__shortcode_open] = ACTIONS(775), + [sym__unclosed_span] = ACTIONS(709), }, [STATE(290)] = { - [sym__qmd_attribute] = STATE(959), - [sym_raw_attribute] = STATE(959), - [sym_commonmark_attribute] = STATE(959), - [sym_language_attribute] = STATE(959), - [sym__backslash_escape] = ACTIONS(3675), - [sym_entity_reference] = ACTIONS(3675), - [sym_numeric_character_reference] = ACTIONS(3675), - [anon_sym_LT] = ACTIONS(3677), - [anon_sym_GT] = ACTIONS(3675), - [anon_sym_BANG] = ACTIONS(3675), - [anon_sym_DQUOTE] = ACTIONS(3675), - [anon_sym_POUND] = ACTIONS(3675), - [anon_sym_DOLLAR] = ACTIONS(3675), - [anon_sym_PERCENT] = ACTIONS(3675), - [anon_sym_AMP] = ACTIONS(3677), - [anon_sym_SQUOTE] = ACTIONS(3675), - [anon_sym_STAR] = ACTIONS(3675), - [anon_sym_PLUS] = ACTIONS(3675), - [anon_sym_COMMA] = ACTIONS(3675), - [anon_sym_DASH] = ACTIONS(3677), - [anon_sym_DOT] = ACTIONS(3677), - [anon_sym_SLASH] = ACTIONS(3675), - [anon_sym_COLON] = ACTIONS(3675), - [anon_sym_SEMI] = ACTIONS(3675), - [anon_sym_EQ] = ACTIONS(3675), - [anon_sym_QMARK] = ACTIONS(3675), - [anon_sym_LBRACK] = ACTIONS(3677), - [anon_sym_BSLASH] = ACTIONS(3677), - [anon_sym_RBRACK] = ACTIONS(3675), - [anon_sym_CARET] = ACTIONS(3677), - [anon_sym__] = ACTIONS(3675), - [anon_sym_BQUOTE] = ACTIONS(3675), - [anon_sym_LBRACE] = ACTIONS(3635), - [anon_sym_PIPE] = ACTIONS(3675), - [anon_sym_TILDE] = ACTIONS(3675), - [anon_sym_LPAREN] = ACTIONS(3675), - [anon_sym_RPAREN] = ACTIONS(3675), - [sym__newline_token] = ACTIONS(3675), - [anon_sym_CARET_LBRACK] = ACTIONS(3675), - [anon_sym_LBRACK_CARET] = ACTIONS(3675), - [sym_uri_autolink] = ACTIONS(3675), - [sym_email_autolink] = ACTIONS(3675), - [sym__whitespace_ge_2] = ACTIONS(3675), - [aux_sym__whitespace_token1] = ACTIONS(3677), - [sym__word_no_digit] = ACTIONS(3675), - [sym__digits] = ACTIONS(3675), - [anon_sym_DASH_DASH] = ACTIONS(3677), - [anon_sym_DASH_DASH_DASH] = ACTIONS(3675), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3675), - [sym__code_span_start] = ACTIONS(3675), - [sym__emphasis_open_star] = ACTIONS(3675), - [sym__emphasis_open_underscore] = ACTIONS(3675), - [sym__strikeout_open] = ACTIONS(3675), - [sym__latex_span_start] = ACTIONS(3675), - [sym__single_quote_open] = ACTIONS(3675), - [sym__double_quote_open] = ACTIONS(3675), - [sym__superscript_open] = ACTIONS(3675), - [sym__subscript_open] = ACTIONS(3675), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3675), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3675), - [sym__cite_author_in_text] = ACTIONS(3675), - [sym__cite_suppress_author] = ACTIONS(3675), - [sym__shortcode_open_escaped] = ACTIONS(3675), - [sym__shortcode_open] = ACTIONS(3675), - [sym__unclosed_span] = ACTIONS(3675), + [sym_backslash_escape] = STATE(372), + [sym_commonmark_attribute] = STATE(372), + [sym_code_span] = STATE(372), + [sym_latex_span] = STATE(372), + [sym_insert] = STATE(372), + [sym_delete] = STATE(372), + [sym_highlight] = STATE(372), + [sym_edit_comment] = STATE(372), + [sym_superscript] = STATE(372), + [sym_subscript] = STATE(372), + [sym_strikeout] = STATE(372), + [sym_quoted_span] = STATE(372), + [sym_inline_note] = STATE(372), + [sym_citation] = STATE(372), + [sym_shortcode_escaped] = STATE(372), + [sym_shortcode] = STATE(372), + [sym_note_reference] = STATE(372), + [sym__link_text] = STATE(454), + [sym__link_text_non_empty] = STATE(455), + [sym_inline_link] = STATE(57), + [sym_image] = STATE(372), + [sym__image_inline_link] = STATE(1025), + [sym__image_description] = STATE(2356), + [sym__image_description_non_empty] = STATE(2356), + [sym_hard_line_break] = STATE(372), + [sym__whitespace] = STATE(1022), + [sym__word] = STATE(1022), + [sym__soft_line_break] = STATE(1026), + [sym__inline_base] = STATE(57), + [sym__text_base] = STATE(372), + [sym__inline_element] = STATE(57), + [sym__emphasis_star] = STATE(714), + [sym__strong_emphasis_star] = STATE(57), + [sym__emphasis_underscore] = STATE(714), + [sym__strong_emphasis_underscore] = STATE(57), + [aux_sym_insert_repeat1] = STATE(57), + [aux_sym__inline_base_repeat1] = STATE(372), + [sym__backslash_escape] = ACTIONS(707), + [sym_entity_reference] = ACTIONS(709), + [sym_numeric_character_reference] = ACTIONS(709), + [anon_sym_LT] = ACTIONS(711), + [anon_sym_GT] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(715), + [anon_sym_DQUOTE] = ACTIONS(713), + [anon_sym_POUND] = ACTIONS(713), + [anon_sym_DOLLAR] = ACTIONS(713), + [anon_sym_PERCENT] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(711), + [anon_sym_SQUOTE] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_COMMA] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_DOT] = ACTIONS(711), + [anon_sym_SLASH] = ACTIONS(713), + [anon_sym_COLON] = ACTIONS(713), + [anon_sym_SEMI] = ACTIONS(713), + [anon_sym_EQ] = ACTIONS(713), + [anon_sym_QMARK] = ACTIONS(713), + [anon_sym_LBRACK] = ACTIONS(717), + [anon_sym_BSLASH] = ACTIONS(719), + [anon_sym_CARET] = ACTIONS(711), + [anon_sym__] = ACTIONS(713), + [anon_sym_BQUOTE] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(721), + [anon_sym_PIPE] = ACTIONS(713), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_LPAREN] = ACTIONS(713), + [anon_sym_RPAREN] = ACTIONS(713), + [sym__newline_token] = ACTIONS(723), + [aux_sym_insert_token1] = ACTIONS(725), + [aux_sym_insert_token2] = ACTIONS(2769), + [aux_sym_delete_token1] = ACTIONS(729), + [aux_sym_highlight_token1] = ACTIONS(731), + [aux_sym_edit_comment_token1] = ACTIONS(733), + [anon_sym_CARET_LBRACK] = ACTIONS(735), + [anon_sym_LBRACK_CARET] = ACTIONS(737), + [sym_uri_autolink] = ACTIONS(709), + [sym_email_autolink] = ACTIONS(709), + [sym__whitespace_ge_2] = ACTIONS(739), + [aux_sym__whitespace_token1] = ACTIONS(741), + [sym__word_no_digit] = ACTIONS(743), + [sym__digits] = ACTIONS(743), + [anon_sym_DASH_DASH] = ACTIONS(745), + [anon_sym_DASH_DASH_DASH] = ACTIONS(743), + [anon_sym_DOT_DOT_DOT] = ACTIONS(743), + [sym__code_span_start] = ACTIONS(747), + [sym__emphasis_open_star] = ACTIONS(749), + [sym__emphasis_open_underscore] = ACTIONS(751), + [sym__strikeout_open] = ACTIONS(753), + [sym__latex_span_start] = ACTIONS(755), + [sym__single_quote_open] = ACTIONS(757), + [sym__double_quote_open] = ACTIONS(759), + [sym__superscript_open] = ACTIONS(761), + [sym__subscript_open] = ACTIONS(763), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(765), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(767), + [sym__cite_author_in_text] = ACTIONS(769), + [sym__cite_suppress_author] = ACTIONS(771), + [sym__shortcode_open_escaped] = ACTIONS(773), + [sym__shortcode_open] = ACTIONS(775), + [sym__unclosed_span] = ACTIONS(709), }, [STATE(291)] = { - [sym__qmd_attribute] = STATE(961), - [sym_raw_attribute] = STATE(961), - [sym_commonmark_attribute] = STATE(961), - [sym_language_attribute] = STATE(961), - [sym__backslash_escape] = ACTIONS(3679), - [sym_entity_reference] = ACTIONS(3679), - [sym_numeric_character_reference] = ACTIONS(3679), - [anon_sym_LT] = ACTIONS(3681), - [anon_sym_GT] = ACTIONS(3679), - [anon_sym_BANG] = ACTIONS(3679), - [anon_sym_DQUOTE] = ACTIONS(3679), - [anon_sym_POUND] = ACTIONS(3679), - [anon_sym_DOLLAR] = ACTIONS(3679), - [anon_sym_PERCENT] = ACTIONS(3679), - [anon_sym_AMP] = ACTIONS(3681), - [anon_sym_SQUOTE] = ACTIONS(3679), - [anon_sym_STAR] = ACTIONS(3679), - [anon_sym_PLUS] = ACTIONS(3679), - [anon_sym_COMMA] = ACTIONS(3679), - [anon_sym_DASH] = ACTIONS(3681), - [anon_sym_DOT] = ACTIONS(3681), - [anon_sym_SLASH] = ACTIONS(3679), - [anon_sym_COLON] = ACTIONS(3679), - [anon_sym_SEMI] = ACTIONS(3679), - [anon_sym_EQ] = ACTIONS(3679), - [anon_sym_QMARK] = ACTIONS(3679), - [anon_sym_LBRACK] = ACTIONS(3681), - [anon_sym_BSLASH] = ACTIONS(3681), - [anon_sym_RBRACK] = ACTIONS(3679), - [anon_sym_CARET] = ACTIONS(3681), - [anon_sym__] = ACTIONS(3679), - [anon_sym_BQUOTE] = ACTIONS(3679), - [anon_sym_LBRACE] = ACTIONS(3635), - [anon_sym_PIPE] = ACTIONS(3679), - [anon_sym_TILDE] = ACTIONS(3679), - [anon_sym_LPAREN] = ACTIONS(3679), - [anon_sym_RPAREN] = ACTIONS(3679), - [sym__newline_token] = ACTIONS(3679), - [anon_sym_CARET_LBRACK] = ACTIONS(3679), - [anon_sym_LBRACK_CARET] = ACTIONS(3679), - [sym_uri_autolink] = ACTIONS(3679), - [sym_email_autolink] = ACTIONS(3679), - [sym__whitespace_ge_2] = ACTIONS(3679), - [aux_sym__whitespace_token1] = ACTIONS(3681), - [sym__word_no_digit] = ACTIONS(3679), - [sym__digits] = ACTIONS(3679), - [anon_sym_DASH_DASH] = ACTIONS(3681), - [anon_sym_DASH_DASH_DASH] = ACTIONS(3679), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3679), - [sym__code_span_start] = ACTIONS(3679), - [sym__emphasis_open_star] = ACTIONS(3679), - [sym__emphasis_open_underscore] = ACTIONS(3679), - [sym__strikeout_open] = ACTIONS(3679), - [sym__latex_span_start] = ACTIONS(3679), - [sym__single_quote_open] = ACTIONS(3679), - [sym__double_quote_open] = ACTIONS(3679), - [sym__superscript_open] = ACTIONS(3679), - [sym__subscript_open] = ACTIONS(3679), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3679), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3679), - [sym__cite_author_in_text] = ACTIONS(3679), - [sym__cite_suppress_author] = ACTIONS(3679), - [sym__shortcode_open_escaped] = ACTIONS(3679), - [sym__shortcode_open] = ACTIONS(3679), - [sym__unclosed_span] = ACTIONS(3679), + [sym_backslash_escape] = STATE(370), + [sym_commonmark_attribute] = STATE(370), + [sym_code_span] = STATE(370), + [sym_latex_span] = STATE(370), + [sym_insert] = STATE(370), + [sym_delete] = STATE(370), + [sym_highlight] = STATE(370), + [sym_edit_comment] = STATE(370), + [sym_superscript] = STATE(370), + [sym_subscript] = STATE(370), + [sym_strikeout] = STATE(370), + [sym_quoted_span] = STATE(370), + [sym_inline_note] = STATE(370), + [sym_citation] = STATE(370), + [sym_shortcode_escaped] = STATE(370), + [sym_shortcode] = STATE(370), + [sym_note_reference] = STATE(370), + [sym__link_text] = STATE(472), + [sym__link_text_non_empty] = STATE(473), + [sym_inline_link] = STATE(295), + [sym_image] = STATE(370), + [sym__image_inline_link] = STATE(923), + [sym__image_description] = STATE(2342), + [sym__image_description_non_empty] = STATE(2342), + [sym_hard_line_break] = STATE(370), + [sym__whitespace] = STATE(920), + [sym__word] = STATE(920), + [sym__soft_line_break] = STATE(924), + [sym__inline_base] = STATE(295), + [sym__text_base] = STATE(370), + [sym__inline_element] = STATE(295), + [sym__emphasis_star] = STATE(821), + [sym__strong_emphasis_star] = STATE(295), + [sym__emphasis_underscore] = STATE(821), + [sym__strong_emphasis_underscore] = STATE(295), + [aux_sym_insert_repeat1] = STATE(295), + [aux_sym__inline_base_repeat1] = STATE(370), + [sym__backslash_escape] = ACTIONS(73), + [sym_entity_reference] = ACTIONS(75), + [sym_numeric_character_reference] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_BANG] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_POUND] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(79), + [anon_sym_PERCENT] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_STAR] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_COMMA] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_DOT] = ACTIONS(77), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_COLON] = ACTIONS(79), + [anon_sym_SEMI] = ACTIONS(79), + [anon_sym_EQ] = ACTIONS(79), + [anon_sym_QMARK] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(83), + [anon_sym_BSLASH] = ACTIONS(85), + [anon_sym_RBRACK] = ACTIONS(2771), + [anon_sym_CARET] = ACTIONS(77), + [anon_sym__] = ACTIONS(79), + [anon_sym_BQUOTE] = ACTIONS(79), + [anon_sym_LBRACE] = ACTIONS(89), + [anon_sym_PIPE] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(79), + [anon_sym_RPAREN] = ACTIONS(79), + [sym__newline_token] = ACTIONS(91), + [aux_sym_insert_token1] = ACTIONS(93), + [aux_sym_delete_token1] = ACTIONS(95), + [aux_sym_highlight_token1] = ACTIONS(97), + [aux_sym_edit_comment_token1] = ACTIONS(99), + [anon_sym_CARET_LBRACK] = ACTIONS(101), + [anon_sym_LBRACK_CARET] = ACTIONS(103), + [sym_uri_autolink] = ACTIONS(75), + [sym_email_autolink] = ACTIONS(75), + [sym__whitespace_ge_2] = ACTIONS(105), + [aux_sym__whitespace_token1] = ACTIONS(107), + [sym__word_no_digit] = ACTIONS(109), + [sym__digits] = ACTIONS(109), + [anon_sym_DASH_DASH] = ACTIONS(111), + [anon_sym_DASH_DASH_DASH] = ACTIONS(109), + [anon_sym_DOT_DOT_DOT] = ACTIONS(109), + [sym__code_span_start] = ACTIONS(113), + [sym__emphasis_open_star] = ACTIONS(115), + [sym__emphasis_open_underscore] = ACTIONS(117), + [sym__strikeout_open] = ACTIONS(121), + [sym__latex_span_start] = ACTIONS(123), + [sym__single_quote_open] = ACTIONS(125), + [sym__double_quote_open] = ACTIONS(127), + [sym__superscript_open] = ACTIONS(129), + [sym__subscript_open] = ACTIONS(131), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(133), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(135), + [sym__cite_author_in_text] = ACTIONS(137), + [sym__cite_suppress_author] = ACTIONS(139), + [sym__shortcode_open_escaped] = ACTIONS(141), + [sym__shortcode_open] = ACTIONS(143), + [sym__unclosed_span] = ACTIONS(75), }, [STATE(292)] = { - [sym__qmd_attribute] = STATE(963), - [sym_raw_attribute] = STATE(963), - [sym_commonmark_attribute] = STATE(963), - [sym_language_attribute] = STATE(963), - [sym__backslash_escape] = ACTIONS(3683), - [sym_entity_reference] = ACTIONS(3683), - [sym_numeric_character_reference] = ACTIONS(3683), - [anon_sym_LT] = ACTIONS(3685), - [anon_sym_GT] = ACTIONS(3683), - [anon_sym_BANG] = ACTIONS(3683), - [anon_sym_DQUOTE] = ACTIONS(3683), - [anon_sym_POUND] = ACTIONS(3683), - [anon_sym_DOLLAR] = ACTIONS(3683), - [anon_sym_PERCENT] = ACTIONS(3683), - [anon_sym_AMP] = ACTIONS(3685), - [anon_sym_SQUOTE] = ACTIONS(3683), - [anon_sym_STAR] = ACTIONS(3683), - [anon_sym_PLUS] = ACTIONS(3683), - [anon_sym_COMMA] = ACTIONS(3683), - [anon_sym_DASH] = ACTIONS(3685), - [anon_sym_DOT] = ACTIONS(3685), - [anon_sym_SLASH] = ACTIONS(3683), - [anon_sym_COLON] = ACTIONS(3683), - [anon_sym_SEMI] = ACTIONS(3683), - [anon_sym_EQ] = ACTIONS(3683), - [anon_sym_QMARK] = ACTIONS(3683), - [anon_sym_LBRACK] = ACTIONS(3685), - [anon_sym_BSLASH] = ACTIONS(3685), - [anon_sym_RBRACK] = ACTIONS(3683), - [anon_sym_CARET] = ACTIONS(3685), - [anon_sym__] = ACTIONS(3683), - [anon_sym_BQUOTE] = ACTIONS(3683), - [anon_sym_LBRACE] = ACTIONS(3635), - [anon_sym_PIPE] = ACTIONS(3683), - [anon_sym_TILDE] = ACTIONS(3683), - [anon_sym_LPAREN] = ACTIONS(3683), - [anon_sym_RPAREN] = ACTIONS(3683), - [sym__newline_token] = ACTIONS(3683), - [anon_sym_CARET_LBRACK] = ACTIONS(3683), - [anon_sym_LBRACK_CARET] = ACTIONS(3683), - [sym_uri_autolink] = ACTIONS(3683), - [sym_email_autolink] = ACTIONS(3683), - [sym__whitespace_ge_2] = ACTIONS(3683), - [aux_sym__whitespace_token1] = ACTIONS(3685), - [sym__word_no_digit] = ACTIONS(3683), - [sym__digits] = ACTIONS(3683), - [anon_sym_DASH_DASH] = ACTIONS(3685), - [anon_sym_DASH_DASH_DASH] = ACTIONS(3683), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3683), - [sym__code_span_start] = ACTIONS(3683), - [sym__emphasis_open_star] = ACTIONS(3683), - [sym__emphasis_open_underscore] = ACTIONS(3683), - [sym__strikeout_open] = ACTIONS(3683), - [sym__latex_span_start] = ACTIONS(3683), - [sym__single_quote_open] = ACTIONS(3683), - [sym__double_quote_open] = ACTIONS(3683), - [sym__superscript_open] = ACTIONS(3683), - [sym__subscript_open] = ACTIONS(3683), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3683), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3683), - [sym__cite_author_in_text] = ACTIONS(3683), - [sym__cite_suppress_author] = ACTIONS(3683), - [sym__shortcode_open_escaped] = ACTIONS(3683), - [sym__shortcode_open] = ACTIONS(3683), - [sym__unclosed_span] = ACTIONS(3683), + [sym_backslash_escape] = STATE(370), + [sym_commonmark_attribute] = STATE(370), + [sym_code_span] = STATE(370), + [sym_latex_span] = STATE(370), + [sym_insert] = STATE(370), + [sym_delete] = STATE(370), + [sym_highlight] = STATE(370), + [sym_edit_comment] = STATE(370), + [sym_superscript] = STATE(370), + [sym_subscript] = STATE(370), + [sym_strikeout] = STATE(370), + [sym_quoted_span] = STATE(370), + [sym_inline_note] = STATE(370), + [sym_citation] = STATE(370), + [sym_shortcode_escaped] = STATE(370), + [sym_shortcode] = STATE(370), + [sym_note_reference] = STATE(370), + [sym__link_text] = STATE(472), + [sym__link_text_non_empty] = STATE(473), + [sym_inline_link] = STATE(60), + [sym_image] = STATE(370), + [sym__image_inline_link] = STATE(923), + [sym__image_description] = STATE(2342), + [sym__image_description_non_empty] = STATE(2342), + [sym_hard_line_break] = STATE(370), + [sym__whitespace] = STATE(920), + [sym__word] = STATE(920), + [sym__soft_line_break] = STATE(924), + [sym__inline_base] = STATE(60), + [sym__text_base] = STATE(370), + [sym__inline_element] = STATE(60), + [sym__emphasis_star] = STATE(821), + [sym__strong_emphasis_star] = STATE(60), + [sym__emphasis_underscore] = STATE(821), + [sym__strong_emphasis_underscore] = STATE(60), + [aux_sym_insert_repeat1] = STATE(60), + [aux_sym__inline_base_repeat1] = STATE(370), + [sym__backslash_escape] = ACTIONS(73), + [sym_entity_reference] = ACTIONS(75), + [sym_numeric_character_reference] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_BANG] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_POUND] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(79), + [anon_sym_PERCENT] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_STAR] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_COMMA] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_DOT] = ACTIONS(77), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_COLON] = ACTIONS(79), + [anon_sym_SEMI] = ACTIONS(79), + [anon_sym_EQ] = ACTIONS(79), + [anon_sym_QMARK] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(83), + [anon_sym_BSLASH] = ACTIONS(85), + [anon_sym_RBRACK] = ACTIONS(2773), + [anon_sym_CARET] = ACTIONS(77), + [anon_sym__] = ACTIONS(79), + [anon_sym_BQUOTE] = ACTIONS(79), + [anon_sym_LBRACE] = ACTIONS(89), + [anon_sym_PIPE] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(79), + [anon_sym_RPAREN] = ACTIONS(79), + [sym__newline_token] = ACTIONS(91), + [aux_sym_insert_token1] = ACTIONS(93), + [aux_sym_delete_token1] = ACTIONS(95), + [aux_sym_highlight_token1] = ACTIONS(97), + [aux_sym_edit_comment_token1] = ACTIONS(99), + [anon_sym_CARET_LBRACK] = ACTIONS(101), + [anon_sym_LBRACK_CARET] = ACTIONS(103), + [sym_uri_autolink] = ACTIONS(75), + [sym_email_autolink] = ACTIONS(75), + [sym__whitespace_ge_2] = ACTIONS(105), + [aux_sym__whitespace_token1] = ACTIONS(107), + [sym__word_no_digit] = ACTIONS(109), + [sym__digits] = ACTIONS(109), + [anon_sym_DASH_DASH] = ACTIONS(111), + [anon_sym_DASH_DASH_DASH] = ACTIONS(109), + [anon_sym_DOT_DOT_DOT] = ACTIONS(109), + [sym__code_span_start] = ACTIONS(113), + [sym__emphasis_open_star] = ACTIONS(115), + [sym__emphasis_open_underscore] = ACTIONS(117), + [sym__strikeout_open] = ACTIONS(121), + [sym__latex_span_start] = ACTIONS(123), + [sym__single_quote_open] = ACTIONS(125), + [sym__double_quote_open] = ACTIONS(127), + [sym__superscript_open] = ACTIONS(129), + [sym__subscript_open] = ACTIONS(131), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(133), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(135), + [sym__cite_author_in_text] = ACTIONS(137), + [sym__cite_suppress_author] = ACTIONS(139), + [sym__shortcode_open_escaped] = ACTIONS(141), + [sym__shortcode_open] = ACTIONS(143), + [sym__unclosed_span] = ACTIONS(75), }, [STATE(293)] = { - [sym__qmd_attribute] = STATE(964), - [sym_raw_attribute] = STATE(964), - [sym_commonmark_attribute] = STATE(964), - [sym_language_attribute] = STATE(964), - [sym__backslash_escape] = ACTIONS(3687), - [sym_entity_reference] = ACTIONS(3687), - [sym_numeric_character_reference] = ACTIONS(3687), - [anon_sym_LT] = ACTIONS(3689), - [anon_sym_GT] = ACTIONS(3687), - [anon_sym_BANG] = ACTIONS(3687), - [anon_sym_DQUOTE] = ACTIONS(3687), - [anon_sym_POUND] = ACTIONS(3687), - [anon_sym_DOLLAR] = ACTIONS(3687), - [anon_sym_PERCENT] = ACTIONS(3687), - [anon_sym_AMP] = ACTIONS(3689), - [anon_sym_SQUOTE] = ACTIONS(3687), - [anon_sym_STAR] = ACTIONS(3687), - [anon_sym_PLUS] = ACTIONS(3687), - [anon_sym_COMMA] = ACTIONS(3687), - [anon_sym_DASH] = ACTIONS(3689), - [anon_sym_DOT] = ACTIONS(3689), - [anon_sym_SLASH] = ACTIONS(3687), - [anon_sym_COLON] = ACTIONS(3687), - [anon_sym_SEMI] = ACTIONS(3687), - [anon_sym_EQ] = ACTIONS(3687), - [anon_sym_QMARK] = ACTIONS(3687), - [anon_sym_LBRACK] = ACTIONS(3689), - [anon_sym_BSLASH] = ACTIONS(3689), - [anon_sym_RBRACK] = ACTIONS(3687), - [anon_sym_CARET] = ACTIONS(3689), - [anon_sym__] = ACTIONS(3687), - [anon_sym_BQUOTE] = ACTIONS(3687), - [anon_sym_LBRACE] = ACTIONS(3635), - [anon_sym_PIPE] = ACTIONS(3687), - [anon_sym_TILDE] = ACTIONS(3687), - [anon_sym_LPAREN] = ACTIONS(3687), - [anon_sym_RPAREN] = ACTIONS(3687), - [sym__newline_token] = ACTIONS(3687), - [anon_sym_CARET_LBRACK] = ACTIONS(3687), - [anon_sym_LBRACK_CARET] = ACTIONS(3687), - [sym_uri_autolink] = ACTIONS(3687), - [sym_email_autolink] = ACTIONS(3687), - [sym__whitespace_ge_2] = ACTIONS(3687), - [aux_sym__whitespace_token1] = ACTIONS(3689), - [sym__word_no_digit] = ACTIONS(3687), - [sym__digits] = ACTIONS(3687), - [anon_sym_DASH_DASH] = ACTIONS(3689), - [anon_sym_DASH_DASH_DASH] = ACTIONS(3687), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3687), - [sym__code_span_start] = ACTIONS(3687), - [sym__emphasis_open_star] = ACTIONS(3687), - [sym__emphasis_open_underscore] = ACTIONS(3687), - [sym__strikeout_open] = ACTIONS(3687), - [sym__latex_span_start] = ACTIONS(3687), - [sym__single_quote_open] = ACTIONS(3687), - [sym__double_quote_open] = ACTIONS(3687), - [sym__superscript_open] = ACTIONS(3687), - [sym__subscript_open] = ACTIONS(3687), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3687), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3687), - [sym__cite_author_in_text] = ACTIONS(3687), - [sym__cite_suppress_author] = ACTIONS(3687), - [sym__shortcode_open_escaped] = ACTIONS(3687), - [sym__shortcode_open] = ACTIONS(3687), - [sym__unclosed_span] = ACTIONS(3687), + [sym_backslash_escape] = STATE(373), + [sym_commonmark_attribute] = STATE(373), + [sym_code_span] = STATE(373), + [sym_latex_span] = STATE(373), + [sym_insert] = STATE(373), + [sym_delete] = STATE(373), + [sym_highlight] = STATE(373), + [sym_edit_comment] = STATE(373), + [sym_superscript] = STATE(373), + [sym_subscript] = STATE(373), + [sym_strikeout] = STATE(373), + [sym_quoted_span] = STATE(373), + [sym_inline_note] = STATE(373), + [sym_citation] = STATE(373), + [sym_shortcode_escaped] = STATE(373), + [sym_shortcode] = STATE(373), + [sym_note_reference] = STATE(373), + [sym__link_text] = STATE(522), + [sym__link_text_non_empty] = STATE(523), + [sym_inline_link] = STATE(36), + [sym_image] = STATE(373), + [sym__image_inline_link] = STATE(1265), + [sym__image_description] = STATE(2331), + [sym__image_description_non_empty] = STATE(2331), + [sym_hard_line_break] = STATE(373), + [sym__whitespace] = STATE(1262), + [sym__word] = STATE(1262), + [sym__soft_line_break] = STATE(1267), + [sym__inline_base] = STATE(36), + [sym__text_base] = STATE(373), + [sym__inline_element_no_star] = STATE(36), + [aux_sym__inline_no_star] = STATE(36), + [sym__emphasis_star] = STATE(1147), + [sym__strong_emphasis_star] = STATE(36), + [sym__emphasis_underscore] = STATE(1147), + [sym__strong_emphasis_underscore] = STATE(36), + [aux_sym__inline_base_repeat1] = STATE(373), + [sym__backslash_escape] = ACTIONS(885), + [sym_entity_reference] = ACTIONS(887), + [sym_numeric_character_reference] = ACTIONS(887), + [anon_sym_LT] = ACTIONS(889), + [anon_sym_GT] = ACTIONS(891), + [anon_sym_BANG] = ACTIONS(893), + [anon_sym_DQUOTE] = ACTIONS(891), + [anon_sym_POUND] = ACTIONS(891), + [anon_sym_DOLLAR] = ACTIONS(891), + [anon_sym_PERCENT] = ACTIONS(891), + [anon_sym_AMP] = ACTIONS(889), + [anon_sym_SQUOTE] = ACTIONS(891), + [anon_sym_STAR] = ACTIONS(891), + [anon_sym_PLUS] = ACTIONS(891), + [anon_sym_COMMA] = ACTIONS(891), + [anon_sym_DASH] = ACTIONS(889), + [anon_sym_DOT] = ACTIONS(889), + [anon_sym_SLASH] = ACTIONS(891), + [anon_sym_COLON] = ACTIONS(891), + [anon_sym_SEMI] = ACTIONS(891), + [anon_sym_EQ] = ACTIONS(891), + [anon_sym_QMARK] = ACTIONS(891), + [anon_sym_LBRACK] = ACTIONS(895), + [anon_sym_BSLASH] = ACTIONS(897), + [anon_sym_CARET] = ACTIONS(889), + [anon_sym__] = ACTIONS(891), + [anon_sym_BQUOTE] = ACTIONS(891), + [anon_sym_LBRACE] = ACTIONS(899), + [anon_sym_PIPE] = ACTIONS(891), + [anon_sym_TILDE] = ACTIONS(891), + [anon_sym_LPAREN] = ACTIONS(891), + [anon_sym_RPAREN] = ACTIONS(891), + [sym__newline_token] = ACTIONS(901), + [aux_sym_insert_token1] = ACTIONS(903), + [aux_sym_delete_token1] = ACTIONS(905), + [aux_sym_highlight_token1] = ACTIONS(907), + [aux_sym_edit_comment_token1] = ACTIONS(909), + [anon_sym_CARET_LBRACK] = ACTIONS(911), + [anon_sym_LBRACK_CARET] = ACTIONS(913), + [sym_uri_autolink] = ACTIONS(887), + [sym_email_autolink] = ACTIONS(887), + [sym__whitespace_ge_2] = ACTIONS(915), + [aux_sym__whitespace_token1] = ACTIONS(917), + [sym__word_no_digit] = ACTIONS(919), + [sym__digits] = ACTIONS(919), + [anon_sym_DASH_DASH] = ACTIONS(921), + [anon_sym_DASH_DASH_DASH] = ACTIONS(919), + [anon_sym_DOT_DOT_DOT] = ACTIONS(919), + [sym__code_span_start] = ACTIONS(923), + [sym__emphasis_open_star] = ACTIONS(925), + [sym__emphasis_open_underscore] = ACTIONS(927), + [sym__emphasis_close_star] = ACTIONS(2775), + [sym__strikeout_open] = ACTIONS(931), + [sym__latex_span_start] = ACTIONS(933), + [sym__single_quote_open] = ACTIONS(935), + [sym__double_quote_open] = ACTIONS(937), + [sym__superscript_open] = ACTIONS(939), + [sym__subscript_open] = ACTIONS(941), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(943), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(945), + [sym__cite_author_in_text] = ACTIONS(947), + [sym__cite_suppress_author] = ACTIONS(949), + [sym__shortcode_open_escaped] = ACTIONS(951), + [sym__shortcode_open] = ACTIONS(953), + [sym__unclosed_span] = ACTIONS(887), }, [STATE(294)] = { - [sym__qmd_attribute] = STATE(950), - [sym_raw_attribute] = STATE(950), - [sym_commonmark_attribute] = STATE(950), - [sym_language_attribute] = STATE(950), - [ts_builtin_sym_end] = ACTIONS(3643), - [sym__backslash_escape] = ACTIONS(3643), - [sym_entity_reference] = ACTIONS(3643), - [sym_numeric_character_reference] = ACTIONS(3643), - [anon_sym_LT] = ACTIONS(3645), - [anon_sym_GT] = ACTIONS(3643), - [anon_sym_BANG] = ACTIONS(3643), - [anon_sym_DQUOTE] = ACTIONS(3643), - [anon_sym_POUND] = ACTIONS(3643), - [anon_sym_DOLLAR] = ACTIONS(3643), - [anon_sym_PERCENT] = ACTIONS(3643), - [anon_sym_AMP] = ACTIONS(3645), - [anon_sym_SQUOTE] = ACTIONS(3643), - [anon_sym_STAR] = ACTIONS(3643), - [anon_sym_PLUS] = ACTIONS(3643), - [anon_sym_COMMA] = ACTIONS(3643), - [anon_sym_DASH] = ACTIONS(3645), - [anon_sym_DOT] = ACTIONS(3645), - [anon_sym_SLASH] = ACTIONS(3643), - [anon_sym_COLON] = ACTIONS(3643), - [anon_sym_SEMI] = ACTIONS(3643), - [anon_sym_EQ] = ACTIONS(3643), - [anon_sym_QMARK] = ACTIONS(3643), - [anon_sym_LBRACK] = ACTIONS(3645), - [anon_sym_BSLASH] = ACTIONS(3645), - [anon_sym_CARET] = ACTIONS(3645), - [anon_sym__] = ACTIONS(3643), - [anon_sym_BQUOTE] = ACTIONS(3643), - [anon_sym_LBRACE] = ACTIONS(3633), - [anon_sym_PIPE] = ACTIONS(3643), - [anon_sym_TILDE] = ACTIONS(3643), - [anon_sym_LPAREN] = ACTIONS(3643), - [anon_sym_RPAREN] = ACTIONS(3643), - [sym__newline_token] = ACTIONS(3643), - [anon_sym_CARET_LBRACK] = ACTIONS(3643), - [anon_sym_LBRACK_CARET] = ACTIONS(3643), - [sym_uri_autolink] = ACTIONS(3643), - [sym_email_autolink] = ACTIONS(3643), - [sym__whitespace_ge_2] = ACTIONS(3643), - [aux_sym__whitespace_token1] = ACTIONS(3645), - [sym__word_no_digit] = ACTIONS(3643), - [sym__digits] = ACTIONS(3643), - [anon_sym_DASH_DASH] = ACTIONS(3645), - [anon_sym_DASH_DASH_DASH] = ACTIONS(3643), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3643), - [sym__code_span_start] = ACTIONS(3643), - [sym__emphasis_open_star] = ACTIONS(3643), - [sym__emphasis_open_underscore] = ACTIONS(3643), - [sym__strikeout_open] = ACTIONS(3643), - [sym__latex_span_start] = ACTIONS(3643), - [sym__single_quote_open] = ACTIONS(3643), - [sym__double_quote_open] = ACTIONS(3643), - [sym__superscript_open] = ACTIONS(3643), - [sym__subscript_open] = ACTIONS(3643), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3643), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3643), - [sym__cite_author_in_text] = ACTIONS(3643), - [sym__cite_suppress_author] = ACTIONS(3643), - [sym__shortcode_open_escaped] = ACTIONS(3643), - [sym__shortcode_open] = ACTIONS(3643), - [sym__unclosed_span] = ACTIONS(3643), + [sym_backslash_escape] = STATE(379), + [sym_commonmark_attribute] = STATE(379), + [sym_code_span] = STATE(379), + [sym_latex_span] = STATE(379), + [sym_insert] = STATE(379), + [sym_delete] = STATE(379), + [sym_highlight] = STATE(379), + [sym_edit_comment] = STATE(379), + [sym_superscript] = STATE(379), + [sym_subscript] = STATE(379), + [sym_strikeout] = STATE(379), + [sym_quoted_span] = STATE(379), + [sym_inline_note] = STATE(379), + [sym_citation] = STATE(379), + [sym_shortcode_escaped] = STATE(379), + [sym_shortcode] = STATE(379), + [sym_note_reference] = STATE(379), + [sym__link_text] = STATE(545), + [sym__link_text_non_empty] = STATE(546), + [sym_inline_link] = STATE(38), + [sym_image] = STATE(379), + [sym__image_inline_link] = STATE(1390), + [sym__image_description] = STATE(2363), + [sym__image_description_non_empty] = STATE(2363), + [sym_hard_line_break] = STATE(379), + [sym__whitespace] = STATE(1385), + [sym__word] = STATE(1385), + [sym__soft_line_break] = STATE(1391), + [sym__inline_base] = STATE(38), + [sym__text_base] = STATE(379), + [sym__inline_element_no_underscore] = STATE(38), + [aux_sym__inline_no_underscore] = STATE(38), + [sym__emphasis_star] = STATE(1168), + [sym__strong_emphasis_star] = STATE(38), + [sym__emphasis_underscore] = STATE(1168), + [sym__strong_emphasis_underscore] = STATE(38), + [aux_sym__inline_base_repeat1] = STATE(379), + [sym__backslash_escape] = ACTIONS(1059), + [sym_entity_reference] = ACTIONS(1061), + [sym_numeric_character_reference] = ACTIONS(1061), + [anon_sym_LT] = ACTIONS(1063), + [anon_sym_GT] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1067), + [anon_sym_DQUOTE] = ACTIONS(1065), + [anon_sym_POUND] = ACTIONS(1065), + [anon_sym_DOLLAR] = ACTIONS(1065), + [anon_sym_PERCENT] = ACTIONS(1065), + [anon_sym_AMP] = ACTIONS(1063), + [anon_sym_SQUOTE] = ACTIONS(1065), + [anon_sym_STAR] = ACTIONS(1065), + [anon_sym_PLUS] = ACTIONS(1065), + [anon_sym_COMMA] = ACTIONS(1065), + [anon_sym_DASH] = ACTIONS(1063), + [anon_sym_DOT] = ACTIONS(1063), + [anon_sym_SLASH] = ACTIONS(1065), + [anon_sym_COLON] = ACTIONS(1065), + [anon_sym_SEMI] = ACTIONS(1065), + [anon_sym_EQ] = ACTIONS(1065), + [anon_sym_QMARK] = ACTIONS(1065), + [anon_sym_LBRACK] = ACTIONS(1069), + [anon_sym_BSLASH] = ACTIONS(1071), + [anon_sym_CARET] = ACTIONS(1063), + [anon_sym__] = ACTIONS(1065), + [anon_sym_BQUOTE] = ACTIONS(1065), + [anon_sym_LBRACE] = ACTIONS(1073), + [anon_sym_PIPE] = ACTIONS(1065), + [anon_sym_TILDE] = ACTIONS(1065), + [anon_sym_LPAREN] = ACTIONS(1065), + [anon_sym_RPAREN] = ACTIONS(1065), + [sym__newline_token] = ACTIONS(1075), + [aux_sym_insert_token1] = ACTIONS(1077), + [aux_sym_delete_token1] = ACTIONS(1079), + [aux_sym_highlight_token1] = ACTIONS(1081), + [aux_sym_edit_comment_token1] = ACTIONS(1083), + [anon_sym_CARET_LBRACK] = ACTIONS(1085), + [anon_sym_LBRACK_CARET] = ACTIONS(1087), + [sym_uri_autolink] = ACTIONS(1061), + [sym_email_autolink] = ACTIONS(1061), + [sym__whitespace_ge_2] = ACTIONS(1089), + [aux_sym__whitespace_token1] = ACTIONS(1091), + [sym__word_no_digit] = ACTIONS(1093), + [sym__digits] = ACTIONS(1093), + [anon_sym_DASH_DASH] = ACTIONS(1095), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1093), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1093), + [sym__code_span_start] = ACTIONS(1097), + [sym__emphasis_open_star] = ACTIONS(1099), + [sym__emphasis_open_underscore] = ACTIONS(1101), + [sym__emphasis_close_underscore] = ACTIONS(2777), + [sym__strikeout_open] = ACTIONS(1105), + [sym__latex_span_start] = ACTIONS(1107), + [sym__single_quote_open] = ACTIONS(1109), + [sym__double_quote_open] = ACTIONS(1111), + [sym__superscript_open] = ACTIONS(1113), + [sym__subscript_open] = ACTIONS(1115), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1117), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1119), + [sym__cite_author_in_text] = ACTIONS(1121), + [sym__cite_suppress_author] = ACTIONS(1123), + [sym__shortcode_open_escaped] = ACTIONS(1125), + [sym__shortcode_open] = ACTIONS(1127), + [sym__unclosed_span] = ACTIONS(1061), }, [STATE(295)] = { - [sym__qmd_attribute] = STATE(1038), - [sym_raw_attribute] = STATE(1038), - [sym_commonmark_attribute] = STATE(1038), - [sym_language_attribute] = STATE(1038), - [ts_builtin_sym_end] = ACTIONS(3647), - [sym__backslash_escape] = ACTIONS(3647), - [sym_entity_reference] = ACTIONS(3647), - [sym_numeric_character_reference] = ACTIONS(3647), - [anon_sym_LT] = ACTIONS(3649), - [anon_sym_GT] = ACTIONS(3647), - [anon_sym_BANG] = ACTIONS(3647), - [anon_sym_DQUOTE] = ACTIONS(3647), - [anon_sym_POUND] = ACTIONS(3647), - [anon_sym_DOLLAR] = ACTIONS(3647), - [anon_sym_PERCENT] = ACTIONS(3647), - [anon_sym_AMP] = ACTIONS(3649), - [anon_sym_SQUOTE] = ACTIONS(3647), - [anon_sym_STAR] = ACTIONS(3647), - [anon_sym_PLUS] = ACTIONS(3647), - [anon_sym_COMMA] = ACTIONS(3647), - [anon_sym_DASH] = ACTIONS(3649), - [anon_sym_DOT] = ACTIONS(3649), - [anon_sym_SLASH] = ACTIONS(3647), - [anon_sym_COLON] = ACTIONS(3647), - [anon_sym_SEMI] = ACTIONS(3647), - [anon_sym_EQ] = ACTIONS(3647), - [anon_sym_QMARK] = ACTIONS(3647), - [anon_sym_LBRACK] = ACTIONS(3649), - [anon_sym_BSLASH] = ACTIONS(3649), - [anon_sym_CARET] = ACTIONS(3649), - [anon_sym__] = ACTIONS(3647), - [anon_sym_BQUOTE] = ACTIONS(3647), - [anon_sym_LBRACE] = ACTIONS(3633), - [anon_sym_PIPE] = ACTIONS(3647), - [anon_sym_TILDE] = ACTIONS(3647), - [anon_sym_LPAREN] = ACTIONS(3647), - [anon_sym_RPAREN] = ACTIONS(3647), - [sym__newline_token] = ACTIONS(3647), - [anon_sym_CARET_LBRACK] = ACTIONS(3647), - [anon_sym_LBRACK_CARET] = ACTIONS(3647), - [sym_uri_autolink] = ACTIONS(3647), - [sym_email_autolink] = ACTIONS(3647), - [sym__whitespace_ge_2] = ACTIONS(3647), - [aux_sym__whitespace_token1] = ACTIONS(3649), - [sym__word_no_digit] = ACTIONS(3647), - [sym__digits] = ACTIONS(3647), - [anon_sym_DASH_DASH] = ACTIONS(3649), - [anon_sym_DASH_DASH_DASH] = ACTIONS(3647), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3647), - [sym__code_span_start] = ACTIONS(3647), - [sym__emphasis_open_star] = ACTIONS(3647), - [sym__emphasis_open_underscore] = ACTIONS(3647), - [sym__strikeout_open] = ACTIONS(3647), - [sym__latex_span_start] = ACTIONS(3647), - [sym__single_quote_open] = ACTIONS(3647), - [sym__double_quote_open] = ACTIONS(3647), - [sym__superscript_open] = ACTIONS(3647), - [sym__subscript_open] = ACTIONS(3647), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3647), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3647), - [sym__cite_author_in_text] = ACTIONS(3647), - [sym__cite_suppress_author] = ACTIONS(3647), - [sym__shortcode_open_escaped] = ACTIONS(3647), - [sym__shortcode_open] = ACTIONS(3647), - [sym__unclosed_span] = ACTIONS(3647), + [sym_backslash_escape] = STATE(370), + [sym_commonmark_attribute] = STATE(370), + [sym_code_span] = STATE(370), + [sym_latex_span] = STATE(370), + [sym_insert] = STATE(370), + [sym_delete] = STATE(370), + [sym_highlight] = STATE(370), + [sym_edit_comment] = STATE(370), + [sym_superscript] = STATE(370), + [sym_subscript] = STATE(370), + [sym_strikeout] = STATE(370), + [sym_quoted_span] = STATE(370), + [sym_inline_note] = STATE(370), + [sym_citation] = STATE(370), + [sym_shortcode_escaped] = STATE(370), + [sym_shortcode] = STATE(370), + [sym_note_reference] = STATE(370), + [sym__link_text] = STATE(472), + [sym__link_text_non_empty] = STATE(473), + [sym_inline_link] = STATE(60), + [sym_image] = STATE(370), + [sym__image_inline_link] = STATE(923), + [sym__image_description] = STATE(2342), + [sym__image_description_non_empty] = STATE(2342), + [sym_hard_line_break] = STATE(370), + [sym__whitespace] = STATE(920), + [sym__word] = STATE(920), + [sym__soft_line_break] = STATE(924), + [sym__inline_base] = STATE(60), + [sym__text_base] = STATE(370), + [sym__inline_element] = STATE(60), + [sym__emphasis_star] = STATE(821), + [sym__strong_emphasis_star] = STATE(60), + [sym__emphasis_underscore] = STATE(821), + [sym__strong_emphasis_underscore] = STATE(60), + [aux_sym_insert_repeat1] = STATE(60), + [aux_sym__inline_base_repeat1] = STATE(370), + [sym__backslash_escape] = ACTIONS(73), + [sym_entity_reference] = ACTIONS(75), + [sym_numeric_character_reference] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_BANG] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_POUND] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(79), + [anon_sym_PERCENT] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_STAR] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_COMMA] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_DOT] = ACTIONS(77), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_COLON] = ACTIONS(79), + [anon_sym_SEMI] = ACTIONS(79), + [anon_sym_EQ] = ACTIONS(79), + [anon_sym_QMARK] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(83), + [anon_sym_BSLASH] = ACTIONS(85), + [anon_sym_RBRACK] = ACTIONS(2779), + [anon_sym_CARET] = ACTIONS(77), + [anon_sym__] = ACTIONS(79), + [anon_sym_BQUOTE] = ACTIONS(79), + [anon_sym_LBRACE] = ACTIONS(89), + [anon_sym_PIPE] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(79), + [anon_sym_RPAREN] = ACTIONS(79), + [sym__newline_token] = ACTIONS(91), + [aux_sym_insert_token1] = ACTIONS(93), + [aux_sym_delete_token1] = ACTIONS(95), + [aux_sym_highlight_token1] = ACTIONS(97), + [aux_sym_edit_comment_token1] = ACTIONS(99), + [anon_sym_CARET_LBRACK] = ACTIONS(101), + [anon_sym_LBRACK_CARET] = ACTIONS(103), + [sym_uri_autolink] = ACTIONS(75), + [sym_email_autolink] = ACTIONS(75), + [sym__whitespace_ge_2] = ACTIONS(105), + [aux_sym__whitespace_token1] = ACTIONS(107), + [sym__word_no_digit] = ACTIONS(109), + [sym__digits] = ACTIONS(109), + [anon_sym_DASH_DASH] = ACTIONS(111), + [anon_sym_DASH_DASH_DASH] = ACTIONS(109), + [anon_sym_DOT_DOT_DOT] = ACTIONS(109), + [sym__code_span_start] = ACTIONS(113), + [sym__emphasis_open_star] = ACTIONS(115), + [sym__emphasis_open_underscore] = ACTIONS(117), + [sym__strikeout_open] = ACTIONS(121), + [sym__latex_span_start] = ACTIONS(123), + [sym__single_quote_open] = ACTIONS(125), + [sym__double_quote_open] = ACTIONS(127), + [sym__superscript_open] = ACTIONS(129), + [sym__subscript_open] = ACTIONS(131), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(133), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(135), + [sym__cite_author_in_text] = ACTIONS(137), + [sym__cite_suppress_author] = ACTIONS(139), + [sym__shortcode_open_escaped] = ACTIONS(141), + [sym__shortcode_open] = ACTIONS(143), + [sym__unclosed_span] = ACTIONS(75), }, [STATE(296)] = { - [sym__qmd_attribute] = STATE(1041), - [sym_raw_attribute] = STATE(1041), - [sym_commonmark_attribute] = STATE(1041), - [sym_language_attribute] = STATE(1041), - [ts_builtin_sym_end] = ACTIONS(3651), - [sym__backslash_escape] = ACTIONS(3651), - [sym_entity_reference] = ACTIONS(3651), - [sym_numeric_character_reference] = ACTIONS(3651), - [anon_sym_LT] = ACTIONS(3653), - [anon_sym_GT] = ACTIONS(3651), - [anon_sym_BANG] = ACTIONS(3651), - [anon_sym_DQUOTE] = ACTIONS(3651), - [anon_sym_POUND] = ACTIONS(3651), - [anon_sym_DOLLAR] = ACTIONS(3651), - [anon_sym_PERCENT] = ACTIONS(3651), - [anon_sym_AMP] = ACTIONS(3653), - [anon_sym_SQUOTE] = ACTIONS(3651), - [anon_sym_STAR] = ACTIONS(3651), - [anon_sym_PLUS] = ACTIONS(3651), - [anon_sym_COMMA] = ACTIONS(3651), - [anon_sym_DASH] = ACTIONS(3653), - [anon_sym_DOT] = ACTIONS(3653), - [anon_sym_SLASH] = ACTIONS(3651), - [anon_sym_COLON] = ACTIONS(3651), - [anon_sym_SEMI] = ACTIONS(3651), - [anon_sym_EQ] = ACTIONS(3651), - [anon_sym_QMARK] = ACTIONS(3651), - [anon_sym_LBRACK] = ACTIONS(3653), - [anon_sym_BSLASH] = ACTIONS(3653), - [anon_sym_CARET] = ACTIONS(3653), - [anon_sym__] = ACTIONS(3651), - [anon_sym_BQUOTE] = ACTIONS(3651), - [anon_sym_LBRACE] = ACTIONS(3633), - [anon_sym_PIPE] = ACTIONS(3651), - [anon_sym_TILDE] = ACTIONS(3651), - [anon_sym_LPAREN] = ACTIONS(3651), - [anon_sym_RPAREN] = ACTIONS(3651), - [sym__newline_token] = ACTIONS(3651), - [anon_sym_CARET_LBRACK] = ACTIONS(3651), - [anon_sym_LBRACK_CARET] = ACTIONS(3651), - [sym_uri_autolink] = ACTIONS(3651), - [sym_email_autolink] = ACTIONS(3651), - [sym__whitespace_ge_2] = ACTIONS(3651), - [aux_sym__whitespace_token1] = ACTIONS(3653), - [sym__word_no_digit] = ACTIONS(3651), - [sym__digits] = ACTIONS(3651), - [anon_sym_DASH_DASH] = ACTIONS(3653), - [anon_sym_DASH_DASH_DASH] = ACTIONS(3651), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3651), - [sym__code_span_start] = ACTIONS(3651), - [sym__emphasis_open_star] = ACTIONS(3651), - [sym__emphasis_open_underscore] = ACTIONS(3651), - [sym__strikeout_open] = ACTIONS(3651), - [sym__latex_span_start] = ACTIONS(3651), - [sym__single_quote_open] = ACTIONS(3651), - [sym__double_quote_open] = ACTIONS(3651), - [sym__superscript_open] = ACTIONS(3651), - [sym__subscript_open] = ACTIONS(3651), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3651), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3651), - [sym__cite_author_in_text] = ACTIONS(3651), - [sym__cite_suppress_author] = ACTIONS(3651), - [sym__shortcode_open_escaped] = ACTIONS(3651), - [sym__shortcode_open] = ACTIONS(3651), - [sym__unclosed_span] = ACTIONS(3651), + [sym_backslash_escape] = STATE(372), + [sym_commonmark_attribute] = STATE(372), + [sym_code_span] = STATE(372), + [sym_latex_span] = STATE(372), + [sym_insert] = STATE(372), + [sym_delete] = STATE(372), + [sym_highlight] = STATE(372), + [sym_edit_comment] = STATE(372), + [sym_superscript] = STATE(372), + [sym_subscript] = STATE(372), + [sym_strikeout] = STATE(372), + [sym_quoted_span] = STATE(372), + [sym_inline_note] = STATE(372), + [sym_citation] = STATE(372), + [sym_shortcode_escaped] = STATE(372), + [sym_shortcode] = STATE(372), + [sym_note_reference] = STATE(372), + [sym__link_text] = STATE(454), + [sym__link_text_non_empty] = STATE(455), + [sym_inline_link] = STATE(57), + [sym_image] = STATE(372), + [sym__image_inline_link] = STATE(1025), + [sym__image_description] = STATE(2356), + [sym__image_description_non_empty] = STATE(2356), + [sym_hard_line_break] = STATE(372), + [sym__whitespace] = STATE(1022), + [sym__word] = STATE(1022), + [sym__soft_line_break] = STATE(1026), + [sym__inline_base] = STATE(57), + [sym__text_base] = STATE(372), + [sym__inline_element] = STATE(57), + [sym__emphasis_star] = STATE(714), + [sym__strong_emphasis_star] = STATE(57), + [sym__emphasis_underscore] = STATE(714), + [sym__strong_emphasis_underscore] = STATE(57), + [aux_sym_insert_repeat1] = STATE(57), + [aux_sym__inline_base_repeat1] = STATE(372), + [sym__backslash_escape] = ACTIONS(707), + [sym_entity_reference] = ACTIONS(709), + [sym_numeric_character_reference] = ACTIONS(709), + [anon_sym_LT] = ACTIONS(711), + [anon_sym_GT] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(715), + [anon_sym_DQUOTE] = ACTIONS(713), + [anon_sym_POUND] = ACTIONS(713), + [anon_sym_DOLLAR] = ACTIONS(713), + [anon_sym_PERCENT] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(711), + [anon_sym_SQUOTE] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_COMMA] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_DOT] = ACTIONS(711), + [anon_sym_SLASH] = ACTIONS(713), + [anon_sym_COLON] = ACTIONS(713), + [anon_sym_SEMI] = ACTIONS(713), + [anon_sym_EQ] = ACTIONS(713), + [anon_sym_QMARK] = ACTIONS(713), + [anon_sym_LBRACK] = ACTIONS(717), + [anon_sym_BSLASH] = ACTIONS(719), + [anon_sym_CARET] = ACTIONS(711), + [anon_sym__] = ACTIONS(713), + [anon_sym_BQUOTE] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(721), + [anon_sym_PIPE] = ACTIONS(713), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_LPAREN] = ACTIONS(713), + [anon_sym_RPAREN] = ACTIONS(713), + [sym__newline_token] = ACTIONS(723), + [aux_sym_insert_token1] = ACTIONS(725), + [aux_sym_insert_token2] = ACTIONS(2781), + [aux_sym_delete_token1] = ACTIONS(729), + [aux_sym_highlight_token1] = ACTIONS(731), + [aux_sym_edit_comment_token1] = ACTIONS(733), + [anon_sym_CARET_LBRACK] = ACTIONS(735), + [anon_sym_LBRACK_CARET] = ACTIONS(737), + [sym_uri_autolink] = ACTIONS(709), + [sym_email_autolink] = ACTIONS(709), + [sym__whitespace_ge_2] = ACTIONS(739), + [aux_sym__whitespace_token1] = ACTIONS(741), + [sym__word_no_digit] = ACTIONS(743), + [sym__digits] = ACTIONS(743), + [anon_sym_DASH_DASH] = ACTIONS(745), + [anon_sym_DASH_DASH_DASH] = ACTIONS(743), + [anon_sym_DOT_DOT_DOT] = ACTIONS(743), + [sym__code_span_start] = ACTIONS(747), + [sym__emphasis_open_star] = ACTIONS(749), + [sym__emphasis_open_underscore] = ACTIONS(751), + [sym__strikeout_open] = ACTIONS(753), + [sym__latex_span_start] = ACTIONS(755), + [sym__single_quote_open] = ACTIONS(757), + [sym__double_quote_open] = ACTIONS(759), + [sym__superscript_open] = ACTIONS(761), + [sym__subscript_open] = ACTIONS(763), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(765), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(767), + [sym__cite_author_in_text] = ACTIONS(769), + [sym__cite_suppress_author] = ACTIONS(771), + [sym__shortcode_open_escaped] = ACTIONS(773), + [sym__shortcode_open] = ACTIONS(775), + [sym__unclosed_span] = ACTIONS(709), }, [STATE(297)] = { - [sym__qmd_attribute] = STATE(685), - [sym_raw_attribute] = STATE(685), - [sym_commonmark_attribute] = STATE(685), - [sym_language_attribute] = STATE(685), - [sym__backslash_escape] = ACTIONS(3663), - [sym_entity_reference] = ACTIONS(3663), - [sym_numeric_character_reference] = ACTIONS(3663), - [anon_sym_LT] = ACTIONS(3665), - [anon_sym_GT] = ACTIONS(3663), - [anon_sym_BANG] = ACTIONS(3663), - [anon_sym_DQUOTE] = ACTIONS(3663), - [anon_sym_POUND] = ACTIONS(3663), - [anon_sym_DOLLAR] = ACTIONS(3663), - [anon_sym_PERCENT] = ACTIONS(3663), - [anon_sym_AMP] = ACTIONS(3665), - [anon_sym_SQUOTE] = ACTIONS(3663), - [anon_sym_STAR] = ACTIONS(3663), - [anon_sym_PLUS] = ACTIONS(3663), - [anon_sym_COMMA] = ACTIONS(3663), - [anon_sym_DASH] = ACTIONS(3665), - [anon_sym_DOT] = ACTIONS(3665), - [anon_sym_SLASH] = ACTIONS(3663), - [anon_sym_COLON] = ACTIONS(3663), - [anon_sym_SEMI] = ACTIONS(3663), - [anon_sym_EQ] = ACTIONS(3663), - [anon_sym_QMARK] = ACTIONS(3663), - [anon_sym_LBRACK] = ACTIONS(3665), - [anon_sym_BSLASH] = ACTIONS(3665), - [anon_sym_CARET] = ACTIONS(3665), - [anon_sym__] = ACTIONS(3663), - [anon_sym_BQUOTE] = ACTIONS(3663), - [anon_sym_LBRACE] = ACTIONS(3641), - [anon_sym_PIPE] = ACTIONS(3663), - [anon_sym_TILDE] = ACTIONS(3663), - [anon_sym_LPAREN] = ACTIONS(3663), - [anon_sym_RPAREN] = ACTIONS(3663), - [sym__newline_token] = ACTIONS(3663), - [anon_sym_CARET_LBRACK] = ACTIONS(3663), - [anon_sym_LBRACK_CARET] = ACTIONS(3663), - [sym_uri_autolink] = ACTIONS(3663), - [sym_email_autolink] = ACTIONS(3663), - [sym__whitespace_ge_2] = ACTIONS(3663), - [aux_sym__whitespace_token1] = ACTIONS(3665), - [sym__word_no_digit] = ACTIONS(3663), - [sym__digits] = ACTIONS(3663), - [anon_sym_DASH_DASH] = ACTIONS(3665), - [anon_sym_DASH_DASH_DASH] = ACTIONS(3663), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3663), - [sym__code_span_start] = ACTIONS(3663), - [sym__emphasis_open_star] = ACTIONS(3663), - [sym__emphasis_open_underscore] = ACTIONS(3663), - [sym__strikeout_open] = ACTIONS(3663), - [sym__latex_span_start] = ACTIONS(3663), - [sym__single_quote_open] = ACTIONS(3663), - [sym__double_quote_open] = ACTIONS(3663), - [sym__double_quote_close] = ACTIONS(3663), - [sym__superscript_open] = ACTIONS(3663), - [sym__subscript_open] = ACTIONS(3663), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3663), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3663), - [sym__cite_author_in_text] = ACTIONS(3663), - [sym__cite_suppress_author] = ACTIONS(3663), - [sym__shortcode_open_escaped] = ACTIONS(3663), - [sym__shortcode_open] = ACTIONS(3663), - [sym__unclosed_span] = ACTIONS(3663), + [sym_backslash_escape] = STATE(373), + [sym_commonmark_attribute] = STATE(373), + [sym_code_span] = STATE(373), + [sym_latex_span] = STATE(373), + [sym_insert] = STATE(373), + [sym_delete] = STATE(373), + [sym_highlight] = STATE(373), + [sym_edit_comment] = STATE(373), + [sym_superscript] = STATE(373), + [sym_subscript] = STATE(373), + [sym_strikeout] = STATE(373), + [sym_quoted_span] = STATE(373), + [sym_inline_note] = STATE(373), + [sym_citation] = STATE(373), + [sym_shortcode_escaped] = STATE(373), + [sym_shortcode] = STATE(373), + [sym_note_reference] = STATE(373), + [sym__link_text] = STATE(522), + [sym__link_text_non_empty] = STATE(523), + [sym_inline_link] = STATE(35), + [sym_image] = STATE(373), + [sym__image_inline_link] = STATE(1265), + [sym__image_description] = STATE(2331), + [sym__image_description_non_empty] = STATE(2331), + [sym_hard_line_break] = STATE(373), + [sym__whitespace] = STATE(1262), + [sym__word] = STATE(1262), + [sym__soft_line_break] = STATE(1267), + [sym__inline_base] = STATE(35), + [sym__text_base] = STATE(373), + [sym__inline_element_no_star] = STATE(35), + [aux_sym__inline_no_star] = STATE(35), + [sym__emphasis_star] = STATE(1147), + [sym__strong_emphasis_star] = STATE(35), + [sym__emphasis_underscore] = STATE(1147), + [sym__strong_emphasis_underscore] = STATE(35), + [aux_sym__inline_base_repeat1] = STATE(373), + [sym__backslash_escape] = ACTIONS(885), + [sym_entity_reference] = ACTIONS(887), + [sym_numeric_character_reference] = ACTIONS(887), + [anon_sym_LT] = ACTIONS(889), + [anon_sym_GT] = ACTIONS(891), + [anon_sym_BANG] = ACTIONS(893), + [anon_sym_DQUOTE] = ACTIONS(891), + [anon_sym_POUND] = ACTIONS(891), + [anon_sym_DOLLAR] = ACTIONS(891), + [anon_sym_PERCENT] = ACTIONS(891), + [anon_sym_AMP] = ACTIONS(889), + [anon_sym_SQUOTE] = ACTIONS(891), + [anon_sym_STAR] = ACTIONS(891), + [anon_sym_PLUS] = ACTIONS(891), + [anon_sym_COMMA] = ACTIONS(891), + [anon_sym_DASH] = ACTIONS(889), + [anon_sym_DOT] = ACTIONS(889), + [anon_sym_SLASH] = ACTIONS(891), + [anon_sym_COLON] = ACTIONS(891), + [anon_sym_SEMI] = ACTIONS(891), + [anon_sym_EQ] = ACTIONS(891), + [anon_sym_QMARK] = ACTIONS(891), + [anon_sym_LBRACK] = ACTIONS(895), + [anon_sym_BSLASH] = ACTIONS(897), + [anon_sym_CARET] = ACTIONS(889), + [anon_sym__] = ACTIONS(891), + [anon_sym_BQUOTE] = ACTIONS(891), + [anon_sym_LBRACE] = ACTIONS(899), + [anon_sym_PIPE] = ACTIONS(891), + [anon_sym_TILDE] = ACTIONS(891), + [anon_sym_LPAREN] = ACTIONS(891), + [anon_sym_RPAREN] = ACTIONS(891), + [sym__newline_token] = ACTIONS(901), + [aux_sym_insert_token1] = ACTIONS(903), + [aux_sym_delete_token1] = ACTIONS(905), + [aux_sym_highlight_token1] = ACTIONS(907), + [aux_sym_edit_comment_token1] = ACTIONS(909), + [anon_sym_CARET_LBRACK] = ACTIONS(911), + [anon_sym_LBRACK_CARET] = ACTIONS(913), + [sym_uri_autolink] = ACTIONS(887), + [sym_email_autolink] = ACTIONS(887), + [sym__whitespace_ge_2] = ACTIONS(915), + [aux_sym__whitespace_token1] = ACTIONS(917), + [sym__word_no_digit] = ACTIONS(919), + [sym__digits] = ACTIONS(919), + [anon_sym_DASH_DASH] = ACTIONS(921), + [anon_sym_DASH_DASH_DASH] = ACTIONS(919), + [anon_sym_DOT_DOT_DOT] = ACTIONS(919), + [sym__code_span_start] = ACTIONS(923), + [sym__emphasis_open_star] = ACTIONS(925), + [sym__emphasis_open_underscore] = ACTIONS(927), + [sym__strikeout_open] = ACTIONS(931), + [sym__latex_span_start] = ACTIONS(933), + [sym__single_quote_open] = ACTIONS(935), + [sym__double_quote_open] = ACTIONS(937), + [sym__superscript_open] = ACTIONS(939), + [sym__subscript_open] = ACTIONS(941), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(943), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(945), + [sym__cite_author_in_text] = ACTIONS(947), + [sym__cite_suppress_author] = ACTIONS(949), + [sym__shortcode_open_escaped] = ACTIONS(951), + [sym__shortcode_open] = ACTIONS(953), + [sym__unclosed_span] = ACTIONS(887), }, [STATE(298)] = { - [sym__qmd_attribute] = STATE(688), - [sym_raw_attribute] = STATE(688), - [sym_commonmark_attribute] = STATE(688), - [sym_language_attribute] = STATE(688), - [sym__backslash_escape] = ACTIONS(3667), - [sym_entity_reference] = ACTIONS(3667), - [sym_numeric_character_reference] = ACTIONS(3667), - [anon_sym_LT] = ACTIONS(3669), - [anon_sym_GT] = ACTIONS(3667), - [anon_sym_BANG] = ACTIONS(3667), - [anon_sym_DQUOTE] = ACTIONS(3667), - [anon_sym_POUND] = ACTIONS(3667), - [anon_sym_DOLLAR] = ACTIONS(3667), - [anon_sym_PERCENT] = ACTIONS(3667), - [anon_sym_AMP] = ACTIONS(3669), - [anon_sym_SQUOTE] = ACTIONS(3667), - [anon_sym_STAR] = ACTIONS(3667), - [anon_sym_PLUS] = ACTIONS(3667), - [anon_sym_COMMA] = ACTIONS(3667), - [anon_sym_DASH] = ACTIONS(3669), - [anon_sym_DOT] = ACTIONS(3669), - [anon_sym_SLASH] = ACTIONS(3667), - [anon_sym_COLON] = ACTIONS(3667), - [anon_sym_SEMI] = ACTIONS(3667), - [anon_sym_EQ] = ACTIONS(3667), - [anon_sym_QMARK] = ACTIONS(3667), - [anon_sym_LBRACK] = ACTIONS(3669), - [anon_sym_BSLASH] = ACTIONS(3669), - [anon_sym_CARET] = ACTIONS(3669), - [anon_sym__] = ACTIONS(3667), - [anon_sym_BQUOTE] = ACTIONS(3667), - [anon_sym_LBRACE] = ACTIONS(3641), - [anon_sym_PIPE] = ACTIONS(3667), - [anon_sym_TILDE] = ACTIONS(3667), - [anon_sym_LPAREN] = ACTIONS(3667), - [anon_sym_RPAREN] = ACTIONS(3667), - [sym__newline_token] = ACTIONS(3667), - [anon_sym_CARET_LBRACK] = ACTIONS(3667), - [anon_sym_LBRACK_CARET] = ACTIONS(3667), - [sym_uri_autolink] = ACTIONS(3667), - [sym_email_autolink] = ACTIONS(3667), - [sym__whitespace_ge_2] = ACTIONS(3667), - [aux_sym__whitespace_token1] = ACTIONS(3669), - [sym__word_no_digit] = ACTIONS(3667), - [sym__digits] = ACTIONS(3667), - [anon_sym_DASH_DASH] = ACTIONS(3669), - [anon_sym_DASH_DASH_DASH] = ACTIONS(3667), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3667), - [sym__code_span_start] = ACTIONS(3667), - [sym__emphasis_open_star] = ACTIONS(3667), - [sym__emphasis_open_underscore] = ACTIONS(3667), - [sym__strikeout_open] = ACTIONS(3667), - [sym__latex_span_start] = ACTIONS(3667), - [sym__single_quote_open] = ACTIONS(3667), - [sym__double_quote_open] = ACTIONS(3667), - [sym__double_quote_close] = ACTIONS(3667), - [sym__superscript_open] = ACTIONS(3667), - [sym__subscript_open] = ACTIONS(3667), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3667), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3667), - [sym__cite_author_in_text] = ACTIONS(3667), - [sym__cite_suppress_author] = ACTIONS(3667), - [sym__shortcode_open_escaped] = ACTIONS(3667), - [sym__shortcode_open] = ACTIONS(3667), - [sym__unclosed_span] = ACTIONS(3667), + [sym_backslash_escape] = STATE(377), + [sym_commonmark_attribute] = STATE(377), + [sym_code_span] = STATE(377), + [sym_latex_span] = STATE(377), + [sym_insert] = STATE(377), + [sym_delete] = STATE(377), + [sym_highlight] = STATE(377), + [sym_edit_comment] = STATE(377), + [sym_superscript] = STATE(377), + [sym_subscript] = STATE(377), + [sym_strikeout] = STATE(377), + [sym_quoted_span] = STATE(377), + [sym_inline_note] = STATE(377), + [sym_citation] = STATE(377), + [sym_shortcode_escaped] = STATE(377), + [sym_shortcode] = STATE(377), + [sym_note_reference] = STATE(377), + [sym__link_text] = STATE(496), + [sym__link_text_non_empty] = STATE(521), + [sym_inline_link] = STATE(1131), + [sym_image] = STATE(377), + [sym__image_inline_link] = STATE(1305), + [sym__image_description] = STATE(2302), + [sym__image_description_non_empty] = STATE(2302), + [sym_hard_line_break] = STATE(377), + [sym__whitespace] = STATE(1160), + [sym__word] = STATE(1160), + [sym__soft_line_break] = STATE(1375), + [sym__inline_base] = STATE(1131), + [sym__text_base] = STATE(377), + [sym__inline_element] = STATE(1131), + [aux_sym__inline] = STATE(97), + [sym__emphasis_star] = STATE(1094), + [sym__strong_emphasis_star] = STATE(1131), + [sym__emphasis_underscore] = STATE(1094), + [sym__strong_emphasis_underscore] = STATE(1131), + [aux_sym__inline_base_repeat1] = STATE(377), + [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__] = ACTIONS(9), + [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), }, [STATE(299)] = { - [sym__qmd_attribute] = STATE(690), - [sym_raw_attribute] = STATE(690), - [sym_commonmark_attribute] = STATE(690), - [sym_language_attribute] = STATE(690), - [sym__backslash_escape] = ACTIONS(3671), - [sym_entity_reference] = ACTIONS(3671), - [sym_numeric_character_reference] = ACTIONS(3671), - [anon_sym_LT] = ACTIONS(3673), - [anon_sym_GT] = ACTIONS(3671), - [anon_sym_BANG] = ACTIONS(3671), - [anon_sym_DQUOTE] = ACTIONS(3671), - [anon_sym_POUND] = ACTIONS(3671), - [anon_sym_DOLLAR] = ACTIONS(3671), - [anon_sym_PERCENT] = ACTIONS(3671), - [anon_sym_AMP] = ACTIONS(3673), - [anon_sym_SQUOTE] = ACTIONS(3671), - [anon_sym_STAR] = ACTIONS(3671), - [anon_sym_PLUS] = ACTIONS(3671), - [anon_sym_COMMA] = ACTIONS(3671), - [anon_sym_DASH] = ACTIONS(3673), - [anon_sym_DOT] = ACTIONS(3673), - [anon_sym_SLASH] = ACTIONS(3671), - [anon_sym_COLON] = ACTIONS(3671), - [anon_sym_SEMI] = ACTIONS(3671), - [anon_sym_EQ] = ACTIONS(3671), - [anon_sym_QMARK] = ACTIONS(3671), - [anon_sym_LBRACK] = ACTIONS(3673), - [anon_sym_BSLASH] = ACTIONS(3673), - [anon_sym_CARET] = ACTIONS(3673), - [anon_sym__] = ACTIONS(3671), - [anon_sym_BQUOTE] = ACTIONS(3671), - [anon_sym_LBRACE] = ACTIONS(3641), - [anon_sym_PIPE] = ACTIONS(3671), - [anon_sym_TILDE] = ACTIONS(3671), - [anon_sym_LPAREN] = ACTIONS(3671), - [anon_sym_RPAREN] = ACTIONS(3671), - [sym__newline_token] = ACTIONS(3671), - [anon_sym_CARET_LBRACK] = ACTIONS(3671), - [anon_sym_LBRACK_CARET] = ACTIONS(3671), - [sym_uri_autolink] = ACTIONS(3671), - [sym_email_autolink] = ACTIONS(3671), - [sym__whitespace_ge_2] = ACTIONS(3671), - [aux_sym__whitespace_token1] = ACTIONS(3673), - [sym__word_no_digit] = ACTIONS(3671), - [sym__digits] = ACTIONS(3671), - [anon_sym_DASH_DASH] = ACTIONS(3673), - [anon_sym_DASH_DASH_DASH] = ACTIONS(3671), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3671), - [sym__code_span_start] = ACTIONS(3671), - [sym__emphasis_open_star] = ACTIONS(3671), - [sym__emphasis_open_underscore] = ACTIONS(3671), - [sym__strikeout_open] = ACTIONS(3671), - [sym__latex_span_start] = ACTIONS(3671), - [sym__single_quote_open] = ACTIONS(3671), - [sym__double_quote_open] = ACTIONS(3671), - [sym__double_quote_close] = ACTIONS(3671), - [sym__superscript_open] = ACTIONS(3671), - [sym__subscript_open] = ACTIONS(3671), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3671), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3671), - [sym__cite_author_in_text] = ACTIONS(3671), - [sym__cite_suppress_author] = ACTIONS(3671), - [sym__shortcode_open_escaped] = ACTIONS(3671), - [sym__shortcode_open] = ACTIONS(3671), - [sym__unclosed_span] = ACTIONS(3671), + [sym_backslash_escape] = STATE(379), + [sym_commonmark_attribute] = STATE(379), + [sym_code_span] = STATE(379), + [sym_latex_span] = STATE(379), + [sym_insert] = STATE(379), + [sym_delete] = STATE(379), + [sym_highlight] = STATE(379), + [sym_edit_comment] = STATE(379), + [sym_superscript] = STATE(379), + [sym_subscript] = STATE(379), + [sym_strikeout] = STATE(379), + [sym_quoted_span] = STATE(379), + [sym_inline_note] = STATE(379), + [sym_citation] = STATE(379), + [sym_shortcode_escaped] = STATE(379), + [sym_shortcode] = STATE(379), + [sym_note_reference] = STATE(379), + [sym__link_text] = STATE(545), + [sym__link_text_non_empty] = STATE(546), + [sym_inline_link] = STATE(37), + [sym_image] = STATE(379), + [sym__image_inline_link] = STATE(1390), + [sym__image_description] = STATE(2363), + [sym__image_description_non_empty] = STATE(2363), + [sym_hard_line_break] = STATE(379), + [sym__whitespace] = STATE(1385), + [sym__word] = STATE(1385), + [sym__soft_line_break] = STATE(1391), + [sym__inline_base] = STATE(37), + [sym__text_base] = STATE(379), + [sym__inline_element_no_underscore] = STATE(37), + [aux_sym__inline_no_underscore] = STATE(37), + [sym__emphasis_star] = STATE(1168), + [sym__strong_emphasis_star] = STATE(37), + [sym__emphasis_underscore] = STATE(1168), + [sym__strong_emphasis_underscore] = STATE(37), + [aux_sym__inline_base_repeat1] = STATE(379), + [sym__backslash_escape] = ACTIONS(1059), + [sym_entity_reference] = ACTIONS(1061), + [sym_numeric_character_reference] = ACTIONS(1061), + [anon_sym_LT] = ACTIONS(1063), + [anon_sym_GT] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1067), + [anon_sym_DQUOTE] = ACTIONS(1065), + [anon_sym_POUND] = ACTIONS(1065), + [anon_sym_DOLLAR] = ACTIONS(1065), + [anon_sym_PERCENT] = ACTIONS(1065), + [anon_sym_AMP] = ACTIONS(1063), + [anon_sym_SQUOTE] = ACTIONS(1065), + [anon_sym_STAR] = ACTIONS(1065), + [anon_sym_PLUS] = ACTIONS(1065), + [anon_sym_COMMA] = ACTIONS(1065), + [anon_sym_DASH] = ACTIONS(1063), + [anon_sym_DOT] = ACTIONS(1063), + [anon_sym_SLASH] = ACTIONS(1065), + [anon_sym_COLON] = ACTIONS(1065), + [anon_sym_SEMI] = ACTIONS(1065), + [anon_sym_EQ] = ACTIONS(1065), + [anon_sym_QMARK] = ACTIONS(1065), + [anon_sym_LBRACK] = ACTIONS(1069), + [anon_sym_BSLASH] = ACTIONS(1071), + [anon_sym_CARET] = ACTIONS(1063), + [anon_sym__] = ACTIONS(1065), + [anon_sym_BQUOTE] = ACTIONS(1065), + [anon_sym_LBRACE] = ACTIONS(1073), + [anon_sym_PIPE] = ACTIONS(1065), + [anon_sym_TILDE] = ACTIONS(1065), + [anon_sym_LPAREN] = ACTIONS(1065), + [anon_sym_RPAREN] = ACTIONS(1065), + [sym__newline_token] = ACTIONS(1075), + [aux_sym_insert_token1] = ACTIONS(1077), + [aux_sym_delete_token1] = ACTIONS(1079), + [aux_sym_highlight_token1] = ACTIONS(1081), + [aux_sym_edit_comment_token1] = ACTIONS(1083), + [anon_sym_CARET_LBRACK] = ACTIONS(1085), + [anon_sym_LBRACK_CARET] = ACTIONS(1087), + [sym_uri_autolink] = ACTIONS(1061), + [sym_email_autolink] = ACTIONS(1061), + [sym__whitespace_ge_2] = ACTIONS(1089), + [aux_sym__whitespace_token1] = ACTIONS(1091), + [sym__word_no_digit] = ACTIONS(1093), + [sym__digits] = ACTIONS(1093), + [anon_sym_DASH_DASH] = ACTIONS(1095), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1093), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1093), + [sym__code_span_start] = ACTIONS(1097), + [sym__emphasis_open_star] = ACTIONS(1099), + [sym__emphasis_open_underscore] = ACTIONS(1101), + [sym__strikeout_open] = ACTIONS(1105), + [sym__latex_span_start] = ACTIONS(1107), + [sym__single_quote_open] = ACTIONS(1109), + [sym__double_quote_open] = ACTIONS(1111), + [sym__superscript_open] = ACTIONS(1113), + [sym__subscript_open] = ACTIONS(1115), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1117), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1119), + [sym__cite_author_in_text] = ACTIONS(1121), + [sym__cite_suppress_author] = ACTIONS(1123), + [sym__shortcode_open_escaped] = ACTIONS(1125), + [sym__shortcode_open] = ACTIONS(1127), + [sym__unclosed_span] = ACTIONS(1061), }, [STATE(300)] = { - [sym__qmd_attribute] = STATE(692), - [sym_raw_attribute] = STATE(692), - [sym_commonmark_attribute] = STATE(692), - [sym_language_attribute] = STATE(692), - [sym__backslash_escape] = ACTIONS(3675), - [sym_entity_reference] = ACTIONS(3675), - [sym_numeric_character_reference] = ACTIONS(3675), - [anon_sym_LT] = ACTIONS(3677), - [anon_sym_GT] = ACTIONS(3675), - [anon_sym_BANG] = ACTIONS(3675), - [anon_sym_DQUOTE] = ACTIONS(3675), - [anon_sym_POUND] = ACTIONS(3675), - [anon_sym_DOLLAR] = ACTIONS(3675), - [anon_sym_PERCENT] = ACTIONS(3675), - [anon_sym_AMP] = ACTIONS(3677), - [anon_sym_SQUOTE] = ACTIONS(3675), - [anon_sym_STAR] = ACTIONS(3675), - [anon_sym_PLUS] = ACTIONS(3675), - [anon_sym_COMMA] = ACTIONS(3675), - [anon_sym_DASH] = ACTIONS(3677), - [anon_sym_DOT] = ACTIONS(3677), - [anon_sym_SLASH] = ACTIONS(3675), - [anon_sym_COLON] = ACTIONS(3675), - [anon_sym_SEMI] = ACTIONS(3675), - [anon_sym_EQ] = ACTIONS(3675), - [anon_sym_QMARK] = ACTIONS(3675), - [anon_sym_LBRACK] = ACTIONS(3677), - [anon_sym_BSLASH] = ACTIONS(3677), - [anon_sym_CARET] = ACTIONS(3677), - [anon_sym__] = ACTIONS(3675), - [anon_sym_BQUOTE] = ACTIONS(3675), - [anon_sym_LBRACE] = ACTIONS(3641), - [anon_sym_PIPE] = ACTIONS(3675), - [anon_sym_TILDE] = ACTIONS(3675), - [anon_sym_LPAREN] = ACTIONS(3675), - [anon_sym_RPAREN] = ACTIONS(3675), - [sym__newline_token] = ACTIONS(3675), - [anon_sym_CARET_LBRACK] = ACTIONS(3675), - [anon_sym_LBRACK_CARET] = ACTIONS(3675), - [sym_uri_autolink] = ACTIONS(3675), - [sym_email_autolink] = ACTIONS(3675), - [sym__whitespace_ge_2] = ACTIONS(3675), - [aux_sym__whitespace_token1] = ACTIONS(3677), - [sym__word_no_digit] = ACTIONS(3675), - [sym__digits] = ACTIONS(3675), - [anon_sym_DASH_DASH] = ACTIONS(3677), - [anon_sym_DASH_DASH_DASH] = ACTIONS(3675), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3675), - [sym__code_span_start] = ACTIONS(3675), - [sym__emphasis_open_star] = ACTIONS(3675), - [sym__emphasis_open_underscore] = ACTIONS(3675), - [sym__strikeout_open] = ACTIONS(3675), - [sym__latex_span_start] = ACTIONS(3675), - [sym__single_quote_open] = ACTIONS(3675), - [sym__double_quote_open] = ACTIONS(3675), - [sym__double_quote_close] = ACTIONS(3675), - [sym__superscript_open] = ACTIONS(3675), - [sym__subscript_open] = ACTIONS(3675), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3675), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3675), - [sym__cite_author_in_text] = ACTIONS(3675), - [sym__cite_suppress_author] = ACTIONS(3675), - [sym__shortcode_open_escaped] = ACTIONS(3675), - [sym__shortcode_open] = ACTIONS(3675), - [sym__unclosed_span] = ACTIONS(3675), + [sym_backslash_escape] = STATE(373), + [sym_commonmark_attribute] = STATE(373), + [sym_code_span] = STATE(373), + [sym_latex_span] = STATE(373), + [sym_insert] = STATE(373), + [sym_delete] = STATE(373), + [sym_highlight] = STATE(373), + [sym_edit_comment] = STATE(373), + [sym_superscript] = STATE(373), + [sym_subscript] = STATE(373), + [sym_strikeout] = STATE(373), + [sym_quoted_span] = STATE(373), + [sym_inline_note] = STATE(373), + [sym_citation] = STATE(373), + [sym_shortcode_escaped] = STATE(373), + [sym_shortcode] = STATE(373), + [sym_note_reference] = STATE(373), + [sym__link_text] = STATE(522), + [sym__link_text_non_empty] = STATE(523), + [sym_inline_link] = STATE(85), + [sym_image] = STATE(373), + [sym__image_inline_link] = STATE(1265), + [sym__image_description] = STATE(2331), + [sym__image_description_non_empty] = STATE(2331), + [sym_hard_line_break] = STATE(373), + [sym__whitespace] = STATE(1262), + [sym__word] = STATE(1262), + [sym__soft_line_break] = STATE(1267), + [sym__inline_base] = STATE(85), + [sym__text_base] = STATE(373), + [sym__inline_element_no_star] = STATE(85), + [aux_sym__inline_no_star] = STATE(85), + [sym__emphasis_star] = STATE(1147), + [sym__strong_emphasis_star] = STATE(85), + [sym__emphasis_underscore] = STATE(1147), + [sym__strong_emphasis_underscore] = STATE(85), + [aux_sym__inline_base_repeat1] = STATE(373), + [sym__backslash_escape] = ACTIONS(885), + [sym_entity_reference] = ACTIONS(887), + [sym_numeric_character_reference] = ACTIONS(887), + [anon_sym_LT] = ACTIONS(889), + [anon_sym_GT] = ACTIONS(891), + [anon_sym_BANG] = ACTIONS(893), + [anon_sym_DQUOTE] = ACTIONS(891), + [anon_sym_POUND] = ACTIONS(891), + [anon_sym_DOLLAR] = ACTIONS(891), + [anon_sym_PERCENT] = ACTIONS(891), + [anon_sym_AMP] = ACTIONS(889), + [anon_sym_SQUOTE] = ACTIONS(891), + [anon_sym_STAR] = ACTIONS(891), + [anon_sym_PLUS] = ACTIONS(891), + [anon_sym_COMMA] = ACTIONS(891), + [anon_sym_DASH] = ACTIONS(889), + [anon_sym_DOT] = ACTIONS(889), + [anon_sym_SLASH] = ACTIONS(891), + [anon_sym_COLON] = ACTIONS(891), + [anon_sym_SEMI] = ACTIONS(891), + [anon_sym_EQ] = ACTIONS(891), + [anon_sym_QMARK] = ACTIONS(891), + [anon_sym_LBRACK] = ACTIONS(895), + [anon_sym_BSLASH] = ACTIONS(897), + [anon_sym_CARET] = ACTIONS(889), + [anon_sym__] = ACTIONS(891), + [anon_sym_BQUOTE] = ACTIONS(891), + [anon_sym_LBRACE] = ACTIONS(899), + [anon_sym_PIPE] = ACTIONS(891), + [anon_sym_TILDE] = ACTIONS(891), + [anon_sym_LPAREN] = ACTIONS(891), + [anon_sym_RPAREN] = ACTIONS(891), + [sym__newline_token] = ACTIONS(901), + [aux_sym_insert_token1] = ACTIONS(903), + [aux_sym_delete_token1] = ACTIONS(905), + [aux_sym_highlight_token1] = ACTIONS(907), + [aux_sym_edit_comment_token1] = ACTIONS(909), + [anon_sym_CARET_LBRACK] = ACTIONS(911), + [anon_sym_LBRACK_CARET] = ACTIONS(913), + [sym_uri_autolink] = ACTIONS(887), + [sym_email_autolink] = ACTIONS(887), + [sym__whitespace_ge_2] = ACTIONS(915), + [aux_sym__whitespace_token1] = ACTIONS(917), + [sym__word_no_digit] = ACTIONS(919), + [sym__digits] = ACTIONS(919), + [anon_sym_DASH_DASH] = ACTIONS(921), + [anon_sym_DASH_DASH_DASH] = ACTIONS(919), + [anon_sym_DOT_DOT_DOT] = ACTIONS(919), + [sym__code_span_start] = ACTIONS(923), + [sym__emphasis_open_star] = ACTIONS(925), + [sym__emphasis_open_underscore] = ACTIONS(927), + [sym__strikeout_open] = ACTIONS(931), + [sym__latex_span_start] = ACTIONS(933), + [sym__single_quote_open] = ACTIONS(935), + [sym__double_quote_open] = ACTIONS(937), + [sym__superscript_open] = ACTIONS(939), + [sym__subscript_open] = ACTIONS(941), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(943), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(945), + [sym__cite_author_in_text] = ACTIONS(947), + [sym__cite_suppress_author] = ACTIONS(949), + [sym__shortcode_open_escaped] = ACTIONS(951), + [sym__shortcode_open] = ACTIONS(953), + [sym__unclosed_span] = ACTIONS(887), }, [STATE(301)] = { - [sym__qmd_attribute] = STATE(694), - [sym_raw_attribute] = STATE(694), - [sym_commonmark_attribute] = STATE(694), - [sym_language_attribute] = STATE(694), - [sym__backslash_escape] = ACTIONS(3679), - [sym_entity_reference] = ACTIONS(3679), - [sym_numeric_character_reference] = ACTIONS(3679), - [anon_sym_LT] = ACTIONS(3681), - [anon_sym_GT] = ACTIONS(3679), - [anon_sym_BANG] = ACTIONS(3679), - [anon_sym_DQUOTE] = ACTIONS(3679), - [anon_sym_POUND] = ACTIONS(3679), - [anon_sym_DOLLAR] = ACTIONS(3679), - [anon_sym_PERCENT] = ACTIONS(3679), - [anon_sym_AMP] = ACTIONS(3681), - [anon_sym_SQUOTE] = ACTIONS(3679), - [anon_sym_STAR] = ACTIONS(3679), - [anon_sym_PLUS] = ACTIONS(3679), - [anon_sym_COMMA] = ACTIONS(3679), - [anon_sym_DASH] = ACTIONS(3681), - [anon_sym_DOT] = ACTIONS(3681), - [anon_sym_SLASH] = ACTIONS(3679), - [anon_sym_COLON] = ACTIONS(3679), - [anon_sym_SEMI] = ACTIONS(3679), - [anon_sym_EQ] = ACTIONS(3679), - [anon_sym_QMARK] = ACTIONS(3679), - [anon_sym_LBRACK] = ACTIONS(3681), - [anon_sym_BSLASH] = ACTIONS(3681), - [anon_sym_CARET] = ACTIONS(3681), - [anon_sym__] = ACTIONS(3679), - [anon_sym_BQUOTE] = ACTIONS(3679), - [anon_sym_LBRACE] = ACTIONS(3641), - [anon_sym_PIPE] = ACTIONS(3679), - [anon_sym_TILDE] = ACTIONS(3679), - [anon_sym_LPAREN] = ACTIONS(3679), - [anon_sym_RPAREN] = ACTIONS(3679), - [sym__newline_token] = ACTIONS(3679), - [anon_sym_CARET_LBRACK] = ACTIONS(3679), - [anon_sym_LBRACK_CARET] = ACTIONS(3679), - [sym_uri_autolink] = ACTIONS(3679), - [sym_email_autolink] = ACTIONS(3679), - [sym__whitespace_ge_2] = ACTIONS(3679), - [aux_sym__whitespace_token1] = ACTIONS(3681), - [sym__word_no_digit] = ACTIONS(3679), - [sym__digits] = ACTIONS(3679), - [anon_sym_DASH_DASH] = ACTIONS(3681), - [anon_sym_DASH_DASH_DASH] = ACTIONS(3679), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3679), - [sym__code_span_start] = ACTIONS(3679), - [sym__emphasis_open_star] = ACTIONS(3679), - [sym__emphasis_open_underscore] = ACTIONS(3679), - [sym__strikeout_open] = ACTIONS(3679), - [sym__latex_span_start] = ACTIONS(3679), - [sym__single_quote_open] = ACTIONS(3679), - [sym__double_quote_open] = ACTIONS(3679), - [sym__double_quote_close] = ACTIONS(3679), - [sym__superscript_open] = ACTIONS(3679), - [sym__subscript_open] = ACTIONS(3679), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3679), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3679), - [sym__cite_author_in_text] = ACTIONS(3679), - [sym__cite_suppress_author] = ACTIONS(3679), - [sym__shortcode_open_escaped] = ACTIONS(3679), - [sym__shortcode_open] = ACTIONS(3679), - [sym__unclosed_span] = ACTIONS(3679), + [sym_backslash_escape] = STATE(379), + [sym_commonmark_attribute] = STATE(379), + [sym_code_span] = STATE(379), + [sym_latex_span] = STATE(379), + [sym_insert] = STATE(379), + [sym_delete] = STATE(379), + [sym_highlight] = STATE(379), + [sym_edit_comment] = STATE(379), + [sym_superscript] = STATE(379), + [sym_subscript] = STATE(379), + [sym_strikeout] = STATE(379), + [sym_quoted_span] = STATE(379), + [sym_inline_note] = STATE(379), + [sym_citation] = STATE(379), + [sym_shortcode_escaped] = STATE(379), + [sym_shortcode] = STATE(379), + [sym_note_reference] = STATE(379), + [sym__link_text] = STATE(545), + [sym__link_text_non_empty] = STATE(546), + [sym_inline_link] = STATE(86), + [sym_image] = STATE(379), + [sym__image_inline_link] = STATE(1390), + [sym__image_description] = STATE(2363), + [sym__image_description_non_empty] = STATE(2363), + [sym_hard_line_break] = STATE(379), + [sym__whitespace] = STATE(1385), + [sym__word] = STATE(1385), + [sym__soft_line_break] = STATE(1391), + [sym__inline_base] = STATE(86), + [sym__text_base] = STATE(379), + [sym__inline_element_no_underscore] = STATE(86), + [aux_sym__inline_no_underscore] = STATE(86), + [sym__emphasis_star] = STATE(1168), + [sym__strong_emphasis_star] = STATE(86), + [sym__emphasis_underscore] = STATE(1168), + [sym__strong_emphasis_underscore] = STATE(86), + [aux_sym__inline_base_repeat1] = STATE(379), + [sym__backslash_escape] = ACTIONS(1059), + [sym_entity_reference] = ACTIONS(1061), + [sym_numeric_character_reference] = ACTIONS(1061), + [anon_sym_LT] = ACTIONS(1063), + [anon_sym_GT] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1067), + [anon_sym_DQUOTE] = ACTIONS(1065), + [anon_sym_POUND] = ACTIONS(1065), + [anon_sym_DOLLAR] = ACTIONS(1065), + [anon_sym_PERCENT] = ACTIONS(1065), + [anon_sym_AMP] = ACTIONS(1063), + [anon_sym_SQUOTE] = ACTIONS(1065), + [anon_sym_STAR] = ACTIONS(1065), + [anon_sym_PLUS] = ACTIONS(1065), + [anon_sym_COMMA] = ACTIONS(1065), + [anon_sym_DASH] = ACTIONS(1063), + [anon_sym_DOT] = ACTIONS(1063), + [anon_sym_SLASH] = ACTIONS(1065), + [anon_sym_COLON] = ACTIONS(1065), + [anon_sym_SEMI] = ACTIONS(1065), + [anon_sym_EQ] = ACTIONS(1065), + [anon_sym_QMARK] = ACTIONS(1065), + [anon_sym_LBRACK] = ACTIONS(1069), + [anon_sym_BSLASH] = ACTIONS(1071), + [anon_sym_CARET] = ACTIONS(1063), + [anon_sym__] = ACTIONS(1065), + [anon_sym_BQUOTE] = ACTIONS(1065), + [anon_sym_LBRACE] = ACTIONS(1073), + [anon_sym_PIPE] = ACTIONS(1065), + [anon_sym_TILDE] = ACTIONS(1065), + [anon_sym_LPAREN] = ACTIONS(1065), + [anon_sym_RPAREN] = ACTIONS(1065), + [sym__newline_token] = ACTIONS(1075), + [aux_sym_insert_token1] = ACTIONS(1077), + [aux_sym_delete_token1] = ACTIONS(1079), + [aux_sym_highlight_token1] = ACTIONS(1081), + [aux_sym_edit_comment_token1] = ACTIONS(1083), + [anon_sym_CARET_LBRACK] = ACTIONS(1085), + [anon_sym_LBRACK_CARET] = ACTIONS(1087), + [sym_uri_autolink] = ACTIONS(1061), + [sym_email_autolink] = ACTIONS(1061), + [sym__whitespace_ge_2] = ACTIONS(1089), + [aux_sym__whitespace_token1] = ACTIONS(1091), + [sym__word_no_digit] = ACTIONS(1093), + [sym__digits] = ACTIONS(1093), + [anon_sym_DASH_DASH] = ACTIONS(1095), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1093), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1093), + [sym__code_span_start] = ACTIONS(1097), + [sym__emphasis_open_star] = ACTIONS(1099), + [sym__emphasis_open_underscore] = ACTIONS(1101), + [sym__strikeout_open] = ACTIONS(1105), + [sym__latex_span_start] = ACTIONS(1107), + [sym__single_quote_open] = ACTIONS(1109), + [sym__double_quote_open] = ACTIONS(1111), + [sym__superscript_open] = ACTIONS(1113), + [sym__subscript_open] = ACTIONS(1115), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1117), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1119), + [sym__cite_author_in_text] = ACTIONS(1121), + [sym__cite_suppress_author] = ACTIONS(1123), + [sym__shortcode_open_escaped] = ACTIONS(1125), + [sym__shortcode_open] = ACTIONS(1127), + [sym__unclosed_span] = ACTIONS(1061), }, [STATE(302)] = { - [sym__qmd_attribute] = STATE(696), - [sym_raw_attribute] = STATE(696), - [sym_commonmark_attribute] = STATE(696), - [sym_language_attribute] = STATE(696), - [sym__backslash_escape] = ACTIONS(3683), - [sym_entity_reference] = ACTIONS(3683), - [sym_numeric_character_reference] = ACTIONS(3683), - [anon_sym_LT] = ACTIONS(3685), - [anon_sym_GT] = ACTIONS(3683), - [anon_sym_BANG] = ACTIONS(3683), - [anon_sym_DQUOTE] = ACTIONS(3683), - [anon_sym_POUND] = ACTIONS(3683), - [anon_sym_DOLLAR] = ACTIONS(3683), - [anon_sym_PERCENT] = ACTIONS(3683), - [anon_sym_AMP] = ACTIONS(3685), - [anon_sym_SQUOTE] = ACTIONS(3683), - [anon_sym_STAR] = ACTIONS(3683), - [anon_sym_PLUS] = ACTIONS(3683), - [anon_sym_COMMA] = ACTIONS(3683), - [anon_sym_DASH] = ACTIONS(3685), - [anon_sym_DOT] = ACTIONS(3685), - [anon_sym_SLASH] = ACTIONS(3683), - [anon_sym_COLON] = ACTIONS(3683), - [anon_sym_SEMI] = ACTIONS(3683), - [anon_sym_EQ] = ACTIONS(3683), - [anon_sym_QMARK] = ACTIONS(3683), - [anon_sym_LBRACK] = ACTIONS(3685), - [anon_sym_BSLASH] = ACTIONS(3685), - [anon_sym_CARET] = ACTIONS(3685), - [anon_sym__] = ACTIONS(3683), - [anon_sym_BQUOTE] = ACTIONS(3683), - [anon_sym_LBRACE] = ACTIONS(3641), - [anon_sym_PIPE] = ACTIONS(3683), - [anon_sym_TILDE] = ACTIONS(3683), - [anon_sym_LPAREN] = ACTIONS(3683), - [anon_sym_RPAREN] = ACTIONS(3683), - [sym__newline_token] = ACTIONS(3683), - [anon_sym_CARET_LBRACK] = ACTIONS(3683), - [anon_sym_LBRACK_CARET] = ACTIONS(3683), - [sym_uri_autolink] = ACTIONS(3683), - [sym_email_autolink] = ACTIONS(3683), - [sym__whitespace_ge_2] = ACTIONS(3683), - [aux_sym__whitespace_token1] = ACTIONS(3685), - [sym__word_no_digit] = ACTIONS(3683), - [sym__digits] = ACTIONS(3683), - [anon_sym_DASH_DASH] = ACTIONS(3685), - [anon_sym_DASH_DASH_DASH] = ACTIONS(3683), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3683), - [sym__code_span_start] = ACTIONS(3683), - [sym__emphasis_open_star] = ACTIONS(3683), - [sym__emphasis_open_underscore] = ACTIONS(3683), - [sym__strikeout_open] = ACTIONS(3683), - [sym__latex_span_start] = ACTIONS(3683), - [sym__single_quote_open] = ACTIONS(3683), - [sym__double_quote_open] = ACTIONS(3683), - [sym__double_quote_close] = ACTIONS(3683), - [sym__superscript_open] = ACTIONS(3683), - [sym__subscript_open] = ACTIONS(3683), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3683), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3683), - [sym__cite_author_in_text] = ACTIONS(3683), - [sym__cite_suppress_author] = ACTIONS(3683), - [sym__shortcode_open_escaped] = ACTIONS(3683), - [sym__shortcode_open] = ACTIONS(3683), - [sym__unclosed_span] = ACTIONS(3683), + [sym_backslash_escape] = STATE(373), + [sym_commonmark_attribute] = STATE(373), + [sym_code_span] = STATE(373), + [sym_latex_span] = STATE(373), + [sym_insert] = STATE(373), + [sym_delete] = STATE(373), + [sym_highlight] = STATE(373), + [sym_edit_comment] = STATE(373), + [sym_superscript] = STATE(373), + [sym_subscript] = STATE(373), + [sym_strikeout] = STATE(373), + [sym_quoted_span] = STATE(373), + [sym_inline_note] = STATE(373), + [sym_citation] = STATE(373), + [sym_shortcode_escaped] = STATE(373), + [sym_shortcode] = STATE(373), + [sym_note_reference] = STATE(373), + [sym__link_text] = STATE(522), + [sym__link_text_non_empty] = STATE(523), + [sym_inline_link] = STATE(111), + [sym_image] = STATE(373), + [sym__image_inline_link] = STATE(1265), + [sym__image_description] = STATE(2331), + [sym__image_description_non_empty] = STATE(2331), + [sym_hard_line_break] = STATE(373), + [sym__whitespace] = STATE(1262), + [sym__word] = STATE(1262), + [sym__soft_line_break] = STATE(1267), + [sym__inline_base] = STATE(111), + [sym__text_base] = STATE(373), + [sym__inline_element_no_star] = STATE(111), + [aux_sym__inline_no_star] = STATE(111), + [sym__emphasis_star] = STATE(1147), + [sym__strong_emphasis_star] = STATE(111), + [sym__emphasis_underscore] = STATE(1147), + [sym__strong_emphasis_underscore] = STATE(111), + [aux_sym__inline_base_repeat1] = STATE(373), + [sym__backslash_escape] = ACTIONS(885), + [sym_entity_reference] = ACTIONS(887), + [sym_numeric_character_reference] = ACTIONS(887), + [anon_sym_LT] = ACTIONS(889), + [anon_sym_GT] = ACTIONS(891), + [anon_sym_BANG] = ACTIONS(893), + [anon_sym_DQUOTE] = ACTIONS(891), + [anon_sym_POUND] = ACTIONS(891), + [anon_sym_DOLLAR] = ACTIONS(891), + [anon_sym_PERCENT] = ACTIONS(891), + [anon_sym_AMP] = ACTIONS(889), + [anon_sym_SQUOTE] = ACTIONS(891), + [anon_sym_STAR] = ACTIONS(891), + [anon_sym_PLUS] = ACTIONS(891), + [anon_sym_COMMA] = ACTIONS(891), + [anon_sym_DASH] = ACTIONS(889), + [anon_sym_DOT] = ACTIONS(889), + [anon_sym_SLASH] = ACTIONS(891), + [anon_sym_COLON] = ACTIONS(891), + [anon_sym_SEMI] = ACTIONS(891), + [anon_sym_EQ] = ACTIONS(891), + [anon_sym_QMARK] = ACTIONS(891), + [anon_sym_LBRACK] = ACTIONS(895), + [anon_sym_BSLASH] = ACTIONS(897), + [anon_sym_CARET] = ACTIONS(889), + [anon_sym__] = ACTIONS(891), + [anon_sym_BQUOTE] = ACTIONS(891), + [anon_sym_LBRACE] = ACTIONS(899), + [anon_sym_PIPE] = ACTIONS(891), + [anon_sym_TILDE] = ACTIONS(891), + [anon_sym_LPAREN] = ACTIONS(891), + [anon_sym_RPAREN] = ACTIONS(891), + [sym__newline_token] = ACTIONS(901), + [aux_sym_insert_token1] = ACTIONS(903), + [aux_sym_delete_token1] = ACTIONS(905), + [aux_sym_highlight_token1] = ACTIONS(907), + [aux_sym_edit_comment_token1] = ACTIONS(909), + [anon_sym_CARET_LBRACK] = ACTIONS(911), + [anon_sym_LBRACK_CARET] = ACTIONS(913), + [sym_uri_autolink] = ACTIONS(887), + [sym_email_autolink] = ACTIONS(887), + [sym__whitespace_ge_2] = ACTIONS(915), + [aux_sym__whitespace_token1] = ACTIONS(917), + [sym__word_no_digit] = ACTIONS(919), + [sym__digits] = ACTIONS(919), + [anon_sym_DASH_DASH] = ACTIONS(921), + [anon_sym_DASH_DASH_DASH] = ACTIONS(919), + [anon_sym_DOT_DOT_DOT] = ACTIONS(919), + [sym__code_span_start] = ACTIONS(923), + [sym__emphasis_open_star] = ACTIONS(925), + [sym__emphasis_open_underscore] = ACTIONS(927), + [sym__strikeout_open] = ACTIONS(931), + [sym__latex_span_start] = ACTIONS(933), + [sym__single_quote_open] = ACTIONS(935), + [sym__double_quote_open] = ACTIONS(937), + [sym__superscript_open] = ACTIONS(939), + [sym__subscript_open] = ACTIONS(941), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(943), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(945), + [sym__cite_author_in_text] = ACTIONS(947), + [sym__cite_suppress_author] = ACTIONS(949), + [sym__shortcode_open_escaped] = ACTIONS(951), + [sym__shortcode_open] = ACTIONS(953), + [sym__unclosed_span] = ACTIONS(887), }, [STATE(303)] = { - [sym__qmd_attribute] = STATE(1104), - [sym_raw_attribute] = STATE(1104), - [sym_commonmark_attribute] = STATE(1104), - [sym_language_attribute] = STATE(1104), - [ts_builtin_sym_end] = ACTIONS(3655), - [sym__backslash_escape] = ACTIONS(3655), - [sym_entity_reference] = ACTIONS(3655), - [sym_numeric_character_reference] = ACTIONS(3655), - [anon_sym_LT] = ACTIONS(3657), - [anon_sym_GT] = ACTIONS(3655), - [anon_sym_BANG] = ACTIONS(3655), - [anon_sym_DQUOTE] = ACTIONS(3655), - [anon_sym_POUND] = ACTIONS(3655), - [anon_sym_DOLLAR] = ACTIONS(3655), - [anon_sym_PERCENT] = ACTIONS(3655), - [anon_sym_AMP] = ACTIONS(3657), - [anon_sym_SQUOTE] = ACTIONS(3655), - [anon_sym_STAR] = ACTIONS(3655), - [anon_sym_PLUS] = ACTIONS(3655), - [anon_sym_COMMA] = ACTIONS(3655), - [anon_sym_DASH] = ACTIONS(3657), - [anon_sym_DOT] = ACTIONS(3657), - [anon_sym_SLASH] = ACTIONS(3655), - [anon_sym_COLON] = ACTIONS(3655), - [anon_sym_SEMI] = ACTIONS(3655), - [anon_sym_EQ] = ACTIONS(3655), - [anon_sym_QMARK] = ACTIONS(3655), - [anon_sym_LBRACK] = ACTIONS(3657), - [anon_sym_BSLASH] = ACTIONS(3657), - [anon_sym_CARET] = ACTIONS(3657), - [anon_sym__] = ACTIONS(3655), - [anon_sym_BQUOTE] = ACTIONS(3655), - [anon_sym_LBRACE] = ACTIONS(3633), - [anon_sym_PIPE] = ACTIONS(3655), - [anon_sym_TILDE] = ACTIONS(3655), - [anon_sym_LPAREN] = ACTIONS(3655), - [anon_sym_RPAREN] = ACTIONS(3655), - [sym__newline_token] = ACTIONS(3655), - [anon_sym_CARET_LBRACK] = ACTIONS(3655), - [anon_sym_LBRACK_CARET] = ACTIONS(3655), - [sym_uri_autolink] = ACTIONS(3655), - [sym_email_autolink] = ACTIONS(3655), - [sym__whitespace_ge_2] = ACTIONS(3655), - [aux_sym__whitespace_token1] = ACTIONS(3657), - [sym__word_no_digit] = ACTIONS(3655), - [sym__digits] = ACTIONS(3655), - [anon_sym_DASH_DASH] = ACTIONS(3657), - [anon_sym_DASH_DASH_DASH] = ACTIONS(3655), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3655), - [sym__code_span_start] = ACTIONS(3655), - [sym__emphasis_open_star] = ACTIONS(3655), - [sym__emphasis_open_underscore] = ACTIONS(3655), - [sym__strikeout_open] = ACTIONS(3655), - [sym__latex_span_start] = ACTIONS(3655), - [sym__single_quote_open] = ACTIONS(3655), - [sym__double_quote_open] = ACTIONS(3655), - [sym__superscript_open] = ACTIONS(3655), - [sym__subscript_open] = ACTIONS(3655), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3655), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3655), - [sym__cite_author_in_text] = ACTIONS(3655), - [sym__cite_suppress_author] = ACTIONS(3655), - [sym__shortcode_open_escaped] = ACTIONS(3655), - [sym__shortcode_open] = ACTIONS(3655), - [sym__unclosed_span] = ACTIONS(3655), + [sym_backslash_escape] = STATE(379), + [sym_commonmark_attribute] = STATE(379), + [sym_code_span] = STATE(379), + [sym_latex_span] = STATE(379), + [sym_insert] = STATE(379), + [sym_delete] = STATE(379), + [sym_highlight] = STATE(379), + [sym_edit_comment] = STATE(379), + [sym_superscript] = STATE(379), + [sym_subscript] = STATE(379), + [sym_strikeout] = STATE(379), + [sym_quoted_span] = STATE(379), + [sym_inline_note] = STATE(379), + [sym_citation] = STATE(379), + [sym_shortcode_escaped] = STATE(379), + [sym_shortcode] = STATE(379), + [sym_note_reference] = STATE(379), + [sym__link_text] = STATE(545), + [sym__link_text_non_empty] = STATE(546), + [sym_inline_link] = STATE(112), + [sym_image] = STATE(379), + [sym__image_inline_link] = STATE(1390), + [sym__image_description] = STATE(2363), + [sym__image_description_non_empty] = STATE(2363), + [sym_hard_line_break] = STATE(379), + [sym__whitespace] = STATE(1385), + [sym__word] = STATE(1385), + [sym__soft_line_break] = STATE(1391), + [sym__inline_base] = STATE(112), + [sym__text_base] = STATE(379), + [sym__inline_element_no_underscore] = STATE(112), + [aux_sym__inline_no_underscore] = STATE(112), + [sym__emphasis_star] = STATE(1168), + [sym__strong_emphasis_star] = STATE(112), + [sym__emphasis_underscore] = STATE(1168), + [sym__strong_emphasis_underscore] = STATE(112), + [aux_sym__inline_base_repeat1] = STATE(379), + [sym__backslash_escape] = ACTIONS(1059), + [sym_entity_reference] = ACTIONS(1061), + [sym_numeric_character_reference] = ACTIONS(1061), + [anon_sym_LT] = ACTIONS(1063), + [anon_sym_GT] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1067), + [anon_sym_DQUOTE] = ACTIONS(1065), + [anon_sym_POUND] = ACTIONS(1065), + [anon_sym_DOLLAR] = ACTIONS(1065), + [anon_sym_PERCENT] = ACTIONS(1065), + [anon_sym_AMP] = ACTIONS(1063), + [anon_sym_SQUOTE] = ACTIONS(1065), + [anon_sym_STAR] = ACTIONS(1065), + [anon_sym_PLUS] = ACTIONS(1065), + [anon_sym_COMMA] = ACTIONS(1065), + [anon_sym_DASH] = ACTIONS(1063), + [anon_sym_DOT] = ACTIONS(1063), + [anon_sym_SLASH] = ACTIONS(1065), + [anon_sym_COLON] = ACTIONS(1065), + [anon_sym_SEMI] = ACTIONS(1065), + [anon_sym_EQ] = ACTIONS(1065), + [anon_sym_QMARK] = ACTIONS(1065), + [anon_sym_LBRACK] = ACTIONS(1069), + [anon_sym_BSLASH] = ACTIONS(1071), + [anon_sym_CARET] = ACTIONS(1063), + [anon_sym__] = ACTIONS(1065), + [anon_sym_BQUOTE] = ACTIONS(1065), + [anon_sym_LBRACE] = ACTIONS(1073), + [anon_sym_PIPE] = ACTIONS(1065), + [anon_sym_TILDE] = ACTIONS(1065), + [anon_sym_LPAREN] = ACTIONS(1065), + [anon_sym_RPAREN] = ACTIONS(1065), + [sym__newline_token] = ACTIONS(1075), + [aux_sym_insert_token1] = ACTIONS(1077), + [aux_sym_delete_token1] = ACTIONS(1079), + [aux_sym_highlight_token1] = ACTIONS(1081), + [aux_sym_edit_comment_token1] = ACTIONS(1083), + [anon_sym_CARET_LBRACK] = ACTIONS(1085), + [anon_sym_LBRACK_CARET] = ACTIONS(1087), + [sym_uri_autolink] = ACTIONS(1061), + [sym_email_autolink] = ACTIONS(1061), + [sym__whitespace_ge_2] = ACTIONS(1089), + [aux_sym__whitespace_token1] = ACTIONS(1091), + [sym__word_no_digit] = ACTIONS(1093), + [sym__digits] = ACTIONS(1093), + [anon_sym_DASH_DASH] = ACTIONS(1095), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1093), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1093), + [sym__code_span_start] = ACTIONS(1097), + [sym__emphasis_open_star] = ACTIONS(1099), + [sym__emphasis_open_underscore] = ACTIONS(1101), + [sym__strikeout_open] = ACTIONS(1105), + [sym__latex_span_start] = ACTIONS(1107), + [sym__single_quote_open] = ACTIONS(1109), + [sym__double_quote_open] = ACTIONS(1111), + [sym__superscript_open] = ACTIONS(1113), + [sym__subscript_open] = ACTIONS(1115), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1117), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1119), + [sym__cite_author_in_text] = ACTIONS(1121), + [sym__cite_suppress_author] = ACTIONS(1123), + [sym__shortcode_open_escaped] = ACTIONS(1125), + [sym__shortcode_open] = ACTIONS(1127), + [sym__unclosed_span] = ACTIONS(1061), }, [STATE(304)] = { - [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(3659), - [sym__backslash_escape] = ACTIONS(3659), - [sym_entity_reference] = ACTIONS(3659), - [sym_numeric_character_reference] = ACTIONS(3659), - [anon_sym_LT] = ACTIONS(3661), - [anon_sym_GT] = ACTIONS(3659), - [anon_sym_BANG] = ACTIONS(3659), - [anon_sym_DQUOTE] = ACTIONS(3659), - [anon_sym_POUND] = ACTIONS(3659), - [anon_sym_DOLLAR] = ACTIONS(3659), - [anon_sym_PERCENT] = ACTIONS(3659), - [anon_sym_AMP] = ACTIONS(3661), - [anon_sym_SQUOTE] = ACTIONS(3659), - [anon_sym_STAR] = ACTIONS(3659), - [anon_sym_PLUS] = ACTIONS(3659), - [anon_sym_COMMA] = ACTIONS(3659), - [anon_sym_DASH] = ACTIONS(3661), - [anon_sym_DOT] = ACTIONS(3661), - [anon_sym_SLASH] = ACTIONS(3659), - [anon_sym_COLON] = ACTIONS(3659), - [anon_sym_SEMI] = ACTIONS(3659), - [anon_sym_EQ] = ACTIONS(3659), - [anon_sym_QMARK] = ACTIONS(3659), - [anon_sym_LBRACK] = ACTIONS(3661), - [anon_sym_BSLASH] = ACTIONS(3661), - [anon_sym_CARET] = ACTIONS(3661), - [anon_sym__] = ACTIONS(3659), - [anon_sym_BQUOTE] = ACTIONS(3659), - [anon_sym_LBRACE] = ACTIONS(3633), - [anon_sym_PIPE] = ACTIONS(3659), - [anon_sym_TILDE] = ACTIONS(3659), - [anon_sym_LPAREN] = ACTIONS(3659), - [anon_sym_RPAREN] = ACTIONS(3659), - [sym__newline_token] = ACTIONS(3659), - [anon_sym_CARET_LBRACK] = ACTIONS(3659), - [anon_sym_LBRACK_CARET] = ACTIONS(3659), - [sym_uri_autolink] = ACTIONS(3659), - [sym_email_autolink] = ACTIONS(3659), - [sym__whitespace_ge_2] = ACTIONS(3659), - [aux_sym__whitespace_token1] = ACTIONS(3661), - [sym__word_no_digit] = ACTIONS(3659), - [sym__digits] = ACTIONS(3659), - [anon_sym_DASH_DASH] = ACTIONS(3661), - [anon_sym_DASH_DASH_DASH] = ACTIONS(3659), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3659), - [sym__code_span_start] = ACTIONS(3659), - [sym__emphasis_open_star] = ACTIONS(3659), - [sym__emphasis_open_underscore] = ACTIONS(3659), - [sym__strikeout_open] = ACTIONS(3659), - [sym__latex_span_start] = ACTIONS(3659), - [sym__single_quote_open] = ACTIONS(3659), - [sym__double_quote_open] = ACTIONS(3659), - [sym__superscript_open] = ACTIONS(3659), - [sym__subscript_open] = ACTIONS(3659), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3659), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3659), - [sym__cite_author_in_text] = ACTIONS(3659), - [sym__cite_suppress_author] = ACTIONS(3659), - [sym__shortcode_open_escaped] = ACTIONS(3659), - [sym__shortcode_open] = ACTIONS(3659), - [sym__unclosed_span] = ACTIONS(3659), + [sym_backslash_escape] = STATE(373), + [sym_commonmark_attribute] = STATE(373), + [sym_code_span] = STATE(373), + [sym_latex_span] = STATE(373), + [sym_insert] = STATE(373), + [sym_delete] = STATE(373), + [sym_highlight] = STATE(373), + [sym_edit_comment] = STATE(373), + [sym_superscript] = STATE(373), + [sym_subscript] = STATE(373), + [sym_strikeout] = STATE(373), + [sym_quoted_span] = STATE(373), + [sym_inline_note] = STATE(373), + [sym_citation] = STATE(373), + [sym_shortcode_escaped] = STATE(373), + [sym_shortcode] = STATE(373), + [sym_note_reference] = STATE(373), + [sym__link_text] = STATE(522), + [sym__link_text_non_empty] = STATE(523), + [sym_inline_link] = STATE(137), + [sym_image] = STATE(373), + [sym__image_inline_link] = STATE(1265), + [sym__image_description] = STATE(2331), + [sym__image_description_non_empty] = STATE(2331), + [sym_hard_line_break] = STATE(373), + [sym__whitespace] = STATE(1262), + [sym__word] = STATE(1262), + [sym__soft_line_break] = STATE(1267), + [sym__inline_base] = STATE(137), + [sym__text_base] = STATE(373), + [sym__inline_element_no_star] = STATE(137), + [aux_sym__inline_no_star] = STATE(137), + [sym__emphasis_star] = STATE(1147), + [sym__strong_emphasis_star] = STATE(137), + [sym__emphasis_underscore] = STATE(1147), + [sym__strong_emphasis_underscore] = STATE(137), + [aux_sym__inline_base_repeat1] = STATE(373), + [sym__backslash_escape] = ACTIONS(885), + [sym_entity_reference] = ACTIONS(887), + [sym_numeric_character_reference] = ACTIONS(887), + [anon_sym_LT] = ACTIONS(889), + [anon_sym_GT] = ACTIONS(891), + [anon_sym_BANG] = ACTIONS(893), + [anon_sym_DQUOTE] = ACTIONS(891), + [anon_sym_POUND] = ACTIONS(891), + [anon_sym_DOLLAR] = ACTIONS(891), + [anon_sym_PERCENT] = ACTIONS(891), + [anon_sym_AMP] = ACTIONS(889), + [anon_sym_SQUOTE] = ACTIONS(891), + [anon_sym_STAR] = ACTIONS(891), + [anon_sym_PLUS] = ACTIONS(891), + [anon_sym_COMMA] = ACTIONS(891), + [anon_sym_DASH] = ACTIONS(889), + [anon_sym_DOT] = ACTIONS(889), + [anon_sym_SLASH] = ACTIONS(891), + [anon_sym_COLON] = ACTIONS(891), + [anon_sym_SEMI] = ACTIONS(891), + [anon_sym_EQ] = ACTIONS(891), + [anon_sym_QMARK] = ACTIONS(891), + [anon_sym_LBRACK] = ACTIONS(895), + [anon_sym_BSLASH] = ACTIONS(897), + [anon_sym_CARET] = ACTIONS(889), + [anon_sym__] = ACTIONS(891), + [anon_sym_BQUOTE] = ACTIONS(891), + [anon_sym_LBRACE] = ACTIONS(899), + [anon_sym_PIPE] = ACTIONS(891), + [anon_sym_TILDE] = ACTIONS(891), + [anon_sym_LPAREN] = ACTIONS(891), + [anon_sym_RPAREN] = ACTIONS(891), + [sym__newline_token] = ACTIONS(901), + [aux_sym_insert_token1] = ACTIONS(903), + [aux_sym_delete_token1] = ACTIONS(905), + [aux_sym_highlight_token1] = ACTIONS(907), + [aux_sym_edit_comment_token1] = ACTIONS(909), + [anon_sym_CARET_LBRACK] = ACTIONS(911), + [anon_sym_LBRACK_CARET] = ACTIONS(913), + [sym_uri_autolink] = ACTIONS(887), + [sym_email_autolink] = ACTIONS(887), + [sym__whitespace_ge_2] = ACTIONS(915), + [aux_sym__whitespace_token1] = ACTIONS(917), + [sym__word_no_digit] = ACTIONS(919), + [sym__digits] = ACTIONS(919), + [anon_sym_DASH_DASH] = ACTIONS(921), + [anon_sym_DASH_DASH_DASH] = ACTIONS(919), + [anon_sym_DOT_DOT_DOT] = ACTIONS(919), + [sym__code_span_start] = ACTIONS(923), + [sym__emphasis_open_star] = ACTIONS(925), + [sym__emphasis_open_underscore] = ACTIONS(927), + [sym__strikeout_open] = ACTIONS(931), + [sym__latex_span_start] = ACTIONS(933), + [sym__single_quote_open] = ACTIONS(935), + [sym__double_quote_open] = ACTIONS(937), + [sym__superscript_open] = ACTIONS(939), + [sym__subscript_open] = ACTIONS(941), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(943), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(945), + [sym__cite_author_in_text] = ACTIONS(947), + [sym__cite_suppress_author] = ACTIONS(949), + [sym__shortcode_open_escaped] = ACTIONS(951), + [sym__shortcode_open] = ACTIONS(953), + [sym__unclosed_span] = ACTIONS(887), }, [STATE(305)] = { - [sym__qmd_attribute] = STATE(697), - [sym_raw_attribute] = STATE(697), - [sym_commonmark_attribute] = STATE(697), - [sym_language_attribute] = STATE(697), - [sym__backslash_escape] = ACTIONS(3687), - [sym_entity_reference] = ACTIONS(3687), - [sym_numeric_character_reference] = ACTIONS(3687), - [anon_sym_LT] = ACTIONS(3689), - [anon_sym_GT] = ACTIONS(3687), - [anon_sym_BANG] = ACTIONS(3687), - [anon_sym_DQUOTE] = ACTIONS(3687), - [anon_sym_POUND] = ACTIONS(3687), - [anon_sym_DOLLAR] = ACTIONS(3687), - [anon_sym_PERCENT] = ACTIONS(3687), - [anon_sym_AMP] = ACTIONS(3689), - [anon_sym_SQUOTE] = ACTIONS(3687), - [anon_sym_STAR] = ACTIONS(3687), - [anon_sym_PLUS] = ACTIONS(3687), - [anon_sym_COMMA] = ACTIONS(3687), - [anon_sym_DASH] = ACTIONS(3689), - [anon_sym_DOT] = ACTIONS(3689), - [anon_sym_SLASH] = ACTIONS(3687), - [anon_sym_COLON] = ACTIONS(3687), - [anon_sym_SEMI] = ACTIONS(3687), - [anon_sym_EQ] = ACTIONS(3687), - [anon_sym_QMARK] = ACTIONS(3687), - [anon_sym_LBRACK] = ACTIONS(3689), - [anon_sym_BSLASH] = ACTIONS(3689), - [anon_sym_CARET] = ACTIONS(3689), - [anon_sym__] = ACTIONS(3687), - [anon_sym_BQUOTE] = ACTIONS(3687), - [anon_sym_LBRACE] = ACTIONS(3641), - [anon_sym_PIPE] = ACTIONS(3687), - [anon_sym_TILDE] = ACTIONS(3687), - [anon_sym_LPAREN] = ACTIONS(3687), - [anon_sym_RPAREN] = ACTIONS(3687), - [sym__newline_token] = ACTIONS(3687), - [anon_sym_CARET_LBRACK] = ACTIONS(3687), - [anon_sym_LBRACK_CARET] = ACTIONS(3687), - [sym_uri_autolink] = ACTIONS(3687), - [sym_email_autolink] = ACTIONS(3687), - [sym__whitespace_ge_2] = ACTIONS(3687), - [aux_sym__whitespace_token1] = ACTIONS(3689), - [sym__word_no_digit] = ACTIONS(3687), - [sym__digits] = ACTIONS(3687), - [anon_sym_DASH_DASH] = ACTIONS(3689), - [anon_sym_DASH_DASH_DASH] = ACTIONS(3687), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3687), - [sym__code_span_start] = ACTIONS(3687), - [sym__emphasis_open_star] = ACTIONS(3687), - [sym__emphasis_open_underscore] = ACTIONS(3687), - [sym__strikeout_open] = ACTIONS(3687), - [sym__latex_span_start] = ACTIONS(3687), - [sym__single_quote_open] = ACTIONS(3687), - [sym__double_quote_open] = ACTIONS(3687), - [sym__double_quote_close] = ACTIONS(3687), - [sym__superscript_open] = ACTIONS(3687), - [sym__subscript_open] = ACTIONS(3687), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3687), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3687), - [sym__cite_author_in_text] = ACTIONS(3687), - [sym__cite_suppress_author] = ACTIONS(3687), - [sym__shortcode_open_escaped] = ACTIONS(3687), - [sym__shortcode_open] = ACTIONS(3687), - [sym__unclosed_span] = ACTIONS(3687), + [sym_backslash_escape] = STATE(379), + [sym_commonmark_attribute] = STATE(379), + [sym_code_span] = STATE(379), + [sym_latex_span] = STATE(379), + [sym_insert] = STATE(379), + [sym_delete] = STATE(379), + [sym_highlight] = STATE(379), + [sym_edit_comment] = STATE(379), + [sym_superscript] = STATE(379), + [sym_subscript] = STATE(379), + [sym_strikeout] = STATE(379), + [sym_quoted_span] = STATE(379), + [sym_inline_note] = STATE(379), + [sym_citation] = STATE(379), + [sym_shortcode_escaped] = STATE(379), + [sym_shortcode] = STATE(379), + [sym_note_reference] = STATE(379), + [sym__link_text] = STATE(545), + [sym__link_text_non_empty] = STATE(546), + [sym_inline_link] = STATE(138), + [sym_image] = STATE(379), + [sym__image_inline_link] = STATE(1390), + [sym__image_description] = STATE(2363), + [sym__image_description_non_empty] = STATE(2363), + [sym_hard_line_break] = STATE(379), + [sym__whitespace] = STATE(1385), + [sym__word] = STATE(1385), + [sym__soft_line_break] = STATE(1391), + [sym__inline_base] = STATE(138), + [sym__text_base] = STATE(379), + [sym__inline_element_no_underscore] = STATE(138), + [aux_sym__inline_no_underscore] = STATE(138), + [sym__emphasis_star] = STATE(1168), + [sym__strong_emphasis_star] = STATE(138), + [sym__emphasis_underscore] = STATE(1168), + [sym__strong_emphasis_underscore] = STATE(138), + [aux_sym__inline_base_repeat1] = STATE(379), + [sym__backslash_escape] = ACTIONS(1059), + [sym_entity_reference] = ACTIONS(1061), + [sym_numeric_character_reference] = ACTIONS(1061), + [anon_sym_LT] = ACTIONS(1063), + [anon_sym_GT] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1067), + [anon_sym_DQUOTE] = ACTIONS(1065), + [anon_sym_POUND] = ACTIONS(1065), + [anon_sym_DOLLAR] = ACTIONS(1065), + [anon_sym_PERCENT] = ACTIONS(1065), + [anon_sym_AMP] = ACTIONS(1063), + [anon_sym_SQUOTE] = ACTIONS(1065), + [anon_sym_STAR] = ACTIONS(1065), + [anon_sym_PLUS] = ACTIONS(1065), + [anon_sym_COMMA] = ACTIONS(1065), + [anon_sym_DASH] = ACTIONS(1063), + [anon_sym_DOT] = ACTIONS(1063), + [anon_sym_SLASH] = ACTIONS(1065), + [anon_sym_COLON] = ACTIONS(1065), + [anon_sym_SEMI] = ACTIONS(1065), + [anon_sym_EQ] = ACTIONS(1065), + [anon_sym_QMARK] = ACTIONS(1065), + [anon_sym_LBRACK] = ACTIONS(1069), + [anon_sym_BSLASH] = ACTIONS(1071), + [anon_sym_CARET] = ACTIONS(1063), + [anon_sym__] = ACTIONS(1065), + [anon_sym_BQUOTE] = ACTIONS(1065), + [anon_sym_LBRACE] = ACTIONS(1073), + [anon_sym_PIPE] = ACTIONS(1065), + [anon_sym_TILDE] = ACTIONS(1065), + [anon_sym_LPAREN] = ACTIONS(1065), + [anon_sym_RPAREN] = ACTIONS(1065), + [sym__newline_token] = ACTIONS(1075), + [aux_sym_insert_token1] = ACTIONS(1077), + [aux_sym_delete_token1] = ACTIONS(1079), + [aux_sym_highlight_token1] = ACTIONS(1081), + [aux_sym_edit_comment_token1] = ACTIONS(1083), + [anon_sym_CARET_LBRACK] = ACTIONS(1085), + [anon_sym_LBRACK_CARET] = ACTIONS(1087), + [sym_uri_autolink] = ACTIONS(1061), + [sym_email_autolink] = ACTIONS(1061), + [sym__whitespace_ge_2] = ACTIONS(1089), + [aux_sym__whitespace_token1] = ACTIONS(1091), + [sym__word_no_digit] = ACTIONS(1093), + [sym__digits] = ACTIONS(1093), + [anon_sym_DASH_DASH] = ACTIONS(1095), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1093), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1093), + [sym__code_span_start] = ACTIONS(1097), + [sym__emphasis_open_star] = ACTIONS(1099), + [sym__emphasis_open_underscore] = ACTIONS(1101), + [sym__strikeout_open] = ACTIONS(1105), + [sym__latex_span_start] = ACTIONS(1107), + [sym__single_quote_open] = ACTIONS(1109), + [sym__double_quote_open] = ACTIONS(1111), + [sym__superscript_open] = ACTIONS(1113), + [sym__subscript_open] = ACTIONS(1115), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1117), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1119), + [sym__cite_author_in_text] = ACTIONS(1121), + [sym__cite_suppress_author] = ACTIONS(1123), + [sym__shortcode_open_escaped] = ACTIONS(1125), + [sym__shortcode_open] = ACTIONS(1127), + [sym__unclosed_span] = ACTIONS(1061), }, [STATE(306)] = { - [sym__qmd_attribute] = STATE(1129), - [sym_raw_attribute] = STATE(1129), - [sym_commonmark_attribute] = STATE(1129), - [sym_language_attribute] = STATE(1129), - [ts_builtin_sym_end] = ACTIONS(3637), - [sym__backslash_escape] = ACTIONS(3637), - [sym_entity_reference] = ACTIONS(3637), - [sym_numeric_character_reference] = ACTIONS(3637), - [anon_sym_LT] = ACTIONS(3639), - [anon_sym_GT] = ACTIONS(3637), - [anon_sym_BANG] = ACTIONS(3637), - [anon_sym_DQUOTE] = ACTIONS(3637), - [anon_sym_POUND] = ACTIONS(3637), - [anon_sym_DOLLAR] = ACTIONS(3637), - [anon_sym_PERCENT] = ACTIONS(3637), - [anon_sym_AMP] = ACTIONS(3639), - [anon_sym_SQUOTE] = ACTIONS(3637), - [anon_sym_STAR] = ACTIONS(3637), - [anon_sym_PLUS] = ACTIONS(3637), - [anon_sym_COMMA] = ACTIONS(3637), - [anon_sym_DASH] = ACTIONS(3639), - [anon_sym_DOT] = ACTIONS(3639), - [anon_sym_SLASH] = ACTIONS(3637), - [anon_sym_COLON] = ACTIONS(3637), - [anon_sym_SEMI] = ACTIONS(3637), - [anon_sym_EQ] = ACTIONS(3637), - [anon_sym_QMARK] = ACTIONS(3637), - [anon_sym_LBRACK] = ACTIONS(3639), - [anon_sym_BSLASH] = ACTIONS(3639), - [anon_sym_CARET] = ACTIONS(3639), - [anon_sym__] = ACTIONS(3637), - [anon_sym_BQUOTE] = ACTIONS(3637), - [anon_sym_LBRACE] = ACTIONS(3633), - [anon_sym_PIPE] = ACTIONS(3637), - [anon_sym_TILDE] = ACTIONS(3637), - [anon_sym_LPAREN] = ACTIONS(3637), - [anon_sym_RPAREN] = ACTIONS(3637), - [sym__newline_token] = ACTIONS(3637), - [anon_sym_CARET_LBRACK] = ACTIONS(3637), - [anon_sym_LBRACK_CARET] = ACTIONS(3637), - [sym_uri_autolink] = ACTIONS(3637), - [sym_email_autolink] = ACTIONS(3637), - [sym__whitespace_ge_2] = ACTIONS(3637), - [aux_sym__whitespace_token1] = ACTIONS(3639), - [sym__word_no_digit] = ACTIONS(3637), - [sym__digits] = ACTIONS(3637), - [anon_sym_DASH_DASH] = ACTIONS(3639), - [anon_sym_DASH_DASH_DASH] = ACTIONS(3637), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3637), - [sym__code_span_start] = ACTIONS(3637), - [sym__emphasis_open_star] = ACTIONS(3637), - [sym__emphasis_open_underscore] = ACTIONS(3637), - [sym__strikeout_open] = ACTIONS(3637), - [sym__latex_span_start] = ACTIONS(3637), - [sym__single_quote_open] = ACTIONS(3637), - [sym__double_quote_open] = ACTIONS(3637), - [sym__superscript_open] = ACTIONS(3637), - [sym__subscript_open] = ACTIONS(3637), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3637), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3637), - [sym__cite_author_in_text] = ACTIONS(3637), - [sym__cite_suppress_author] = ACTIONS(3637), - [sym__shortcode_open_escaped] = ACTIONS(3637), - [sym__shortcode_open] = ACTIONS(3637), - [sym__unclosed_span] = ACTIONS(3637), + [sym_backslash_escape] = STATE(373), + [sym_commonmark_attribute] = STATE(373), + [sym_code_span] = STATE(373), + [sym_latex_span] = STATE(373), + [sym_insert] = STATE(373), + [sym_delete] = STATE(373), + [sym_highlight] = STATE(373), + [sym_edit_comment] = STATE(373), + [sym_superscript] = STATE(373), + [sym_subscript] = STATE(373), + [sym_strikeout] = STATE(373), + [sym_quoted_span] = STATE(373), + [sym_inline_note] = STATE(373), + [sym_citation] = STATE(373), + [sym_shortcode_escaped] = STATE(373), + [sym_shortcode] = STATE(373), + [sym_note_reference] = STATE(373), + [sym__link_text] = STATE(522), + [sym__link_text_non_empty] = STATE(523), + [sym_inline_link] = STATE(163), + [sym_image] = STATE(373), + [sym__image_inline_link] = STATE(1265), + [sym__image_description] = STATE(2331), + [sym__image_description_non_empty] = STATE(2331), + [sym_hard_line_break] = STATE(373), + [sym__whitespace] = STATE(1262), + [sym__word] = STATE(1262), + [sym__soft_line_break] = STATE(1267), + [sym__inline_base] = STATE(163), + [sym__text_base] = STATE(373), + [sym__inline_element_no_star] = STATE(163), + [aux_sym__inline_no_star] = STATE(163), + [sym__emphasis_star] = STATE(1147), + [sym__strong_emphasis_star] = STATE(163), + [sym__emphasis_underscore] = STATE(1147), + [sym__strong_emphasis_underscore] = STATE(163), + [aux_sym__inline_base_repeat1] = STATE(373), + [sym__backslash_escape] = ACTIONS(885), + [sym_entity_reference] = ACTIONS(887), + [sym_numeric_character_reference] = ACTIONS(887), + [anon_sym_LT] = ACTIONS(889), + [anon_sym_GT] = ACTIONS(891), + [anon_sym_BANG] = ACTIONS(893), + [anon_sym_DQUOTE] = ACTIONS(891), + [anon_sym_POUND] = ACTIONS(891), + [anon_sym_DOLLAR] = ACTIONS(891), + [anon_sym_PERCENT] = ACTIONS(891), + [anon_sym_AMP] = ACTIONS(889), + [anon_sym_SQUOTE] = ACTIONS(891), + [anon_sym_STAR] = ACTIONS(891), + [anon_sym_PLUS] = ACTIONS(891), + [anon_sym_COMMA] = ACTIONS(891), + [anon_sym_DASH] = ACTIONS(889), + [anon_sym_DOT] = ACTIONS(889), + [anon_sym_SLASH] = ACTIONS(891), + [anon_sym_COLON] = ACTIONS(891), + [anon_sym_SEMI] = ACTIONS(891), + [anon_sym_EQ] = ACTIONS(891), + [anon_sym_QMARK] = ACTIONS(891), + [anon_sym_LBRACK] = ACTIONS(895), + [anon_sym_BSLASH] = ACTIONS(897), + [anon_sym_CARET] = ACTIONS(889), + [anon_sym__] = ACTIONS(891), + [anon_sym_BQUOTE] = ACTIONS(891), + [anon_sym_LBRACE] = ACTIONS(899), + [anon_sym_PIPE] = ACTIONS(891), + [anon_sym_TILDE] = ACTIONS(891), + [anon_sym_LPAREN] = ACTIONS(891), + [anon_sym_RPAREN] = ACTIONS(891), + [sym__newline_token] = ACTIONS(901), + [aux_sym_insert_token1] = ACTIONS(903), + [aux_sym_delete_token1] = ACTIONS(905), + [aux_sym_highlight_token1] = ACTIONS(907), + [aux_sym_edit_comment_token1] = ACTIONS(909), + [anon_sym_CARET_LBRACK] = ACTIONS(911), + [anon_sym_LBRACK_CARET] = ACTIONS(913), + [sym_uri_autolink] = ACTIONS(887), + [sym_email_autolink] = ACTIONS(887), + [sym__whitespace_ge_2] = ACTIONS(915), + [aux_sym__whitespace_token1] = ACTIONS(917), + [sym__word_no_digit] = ACTIONS(919), + [sym__digits] = ACTIONS(919), + [anon_sym_DASH_DASH] = ACTIONS(921), + [anon_sym_DASH_DASH_DASH] = ACTIONS(919), + [anon_sym_DOT_DOT_DOT] = ACTIONS(919), + [sym__code_span_start] = ACTIONS(923), + [sym__emphasis_open_star] = ACTIONS(925), + [sym__emphasis_open_underscore] = ACTIONS(927), + [sym__strikeout_open] = ACTIONS(931), + [sym__latex_span_start] = ACTIONS(933), + [sym__single_quote_open] = ACTIONS(935), + [sym__double_quote_open] = ACTIONS(937), + [sym__superscript_open] = ACTIONS(939), + [sym__subscript_open] = ACTIONS(941), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(943), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(945), + [sym__cite_author_in_text] = ACTIONS(947), + [sym__cite_suppress_author] = ACTIONS(949), + [sym__shortcode_open_escaped] = ACTIONS(951), + [sym__shortcode_open] = ACTIONS(953), + [sym__unclosed_span] = ACTIONS(887), }, [STATE(307)] = { - [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(3663), - [sym__backslash_escape] = ACTIONS(3663), - [sym_entity_reference] = ACTIONS(3663), - [sym_numeric_character_reference] = ACTIONS(3663), - [anon_sym_LT] = ACTIONS(3665), - [anon_sym_GT] = ACTIONS(3663), - [anon_sym_BANG] = ACTIONS(3663), - [anon_sym_DQUOTE] = ACTIONS(3663), - [anon_sym_POUND] = ACTIONS(3663), - [anon_sym_DOLLAR] = ACTIONS(3663), - [anon_sym_PERCENT] = ACTIONS(3663), - [anon_sym_AMP] = ACTIONS(3665), - [anon_sym_SQUOTE] = ACTIONS(3663), - [anon_sym_STAR] = ACTIONS(3663), - [anon_sym_PLUS] = ACTIONS(3663), - [anon_sym_COMMA] = ACTIONS(3663), - [anon_sym_DASH] = ACTIONS(3665), - [anon_sym_DOT] = ACTIONS(3665), - [anon_sym_SLASH] = ACTIONS(3663), - [anon_sym_COLON] = ACTIONS(3663), - [anon_sym_SEMI] = ACTIONS(3663), - [anon_sym_EQ] = ACTIONS(3663), - [anon_sym_QMARK] = ACTIONS(3663), - [anon_sym_LBRACK] = ACTIONS(3665), - [anon_sym_BSLASH] = ACTIONS(3665), - [anon_sym_CARET] = ACTIONS(3665), - [anon_sym__] = ACTIONS(3663), - [anon_sym_BQUOTE] = ACTIONS(3663), - [anon_sym_LBRACE] = ACTIONS(3633), - [anon_sym_PIPE] = ACTIONS(3663), - [anon_sym_TILDE] = ACTIONS(3663), - [anon_sym_LPAREN] = ACTIONS(3663), - [anon_sym_RPAREN] = ACTIONS(3663), - [sym__newline_token] = ACTIONS(3663), - [anon_sym_CARET_LBRACK] = ACTIONS(3663), - [anon_sym_LBRACK_CARET] = ACTIONS(3663), - [sym_uri_autolink] = ACTIONS(3663), - [sym_email_autolink] = ACTIONS(3663), - [sym__whitespace_ge_2] = ACTIONS(3663), - [aux_sym__whitespace_token1] = ACTIONS(3665), - [sym__word_no_digit] = ACTIONS(3663), - [sym__digits] = ACTIONS(3663), - [anon_sym_DASH_DASH] = ACTIONS(3665), - [anon_sym_DASH_DASH_DASH] = ACTIONS(3663), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3663), - [sym__code_span_start] = ACTIONS(3663), - [sym__emphasis_open_star] = ACTIONS(3663), - [sym__emphasis_open_underscore] = ACTIONS(3663), - [sym__strikeout_open] = ACTIONS(3663), - [sym__latex_span_start] = ACTIONS(3663), - [sym__single_quote_open] = ACTIONS(3663), - [sym__double_quote_open] = ACTIONS(3663), - [sym__superscript_open] = ACTIONS(3663), - [sym__subscript_open] = ACTIONS(3663), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3663), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3663), - [sym__cite_author_in_text] = ACTIONS(3663), - [sym__cite_suppress_author] = ACTIONS(3663), - [sym__shortcode_open_escaped] = ACTIONS(3663), - [sym__shortcode_open] = ACTIONS(3663), - [sym__unclosed_span] = ACTIONS(3663), + [sym_backslash_escape] = STATE(379), + [sym_commonmark_attribute] = STATE(379), + [sym_code_span] = STATE(379), + [sym_latex_span] = STATE(379), + [sym_insert] = STATE(379), + [sym_delete] = STATE(379), + [sym_highlight] = STATE(379), + [sym_edit_comment] = STATE(379), + [sym_superscript] = STATE(379), + [sym_subscript] = STATE(379), + [sym_strikeout] = STATE(379), + [sym_quoted_span] = STATE(379), + [sym_inline_note] = STATE(379), + [sym_citation] = STATE(379), + [sym_shortcode_escaped] = STATE(379), + [sym_shortcode] = STATE(379), + [sym_note_reference] = STATE(379), + [sym__link_text] = STATE(545), + [sym__link_text_non_empty] = STATE(546), + [sym_inline_link] = STATE(164), + [sym_image] = STATE(379), + [sym__image_inline_link] = STATE(1390), + [sym__image_description] = STATE(2363), + [sym__image_description_non_empty] = STATE(2363), + [sym_hard_line_break] = STATE(379), + [sym__whitespace] = STATE(1385), + [sym__word] = STATE(1385), + [sym__soft_line_break] = STATE(1391), + [sym__inline_base] = STATE(164), + [sym__text_base] = STATE(379), + [sym__inline_element_no_underscore] = STATE(164), + [aux_sym__inline_no_underscore] = STATE(164), + [sym__emphasis_star] = STATE(1168), + [sym__strong_emphasis_star] = STATE(164), + [sym__emphasis_underscore] = STATE(1168), + [sym__strong_emphasis_underscore] = STATE(164), + [aux_sym__inline_base_repeat1] = STATE(379), + [sym__backslash_escape] = ACTIONS(1059), + [sym_entity_reference] = ACTIONS(1061), + [sym_numeric_character_reference] = ACTIONS(1061), + [anon_sym_LT] = ACTIONS(1063), + [anon_sym_GT] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1067), + [anon_sym_DQUOTE] = ACTIONS(1065), + [anon_sym_POUND] = ACTIONS(1065), + [anon_sym_DOLLAR] = ACTIONS(1065), + [anon_sym_PERCENT] = ACTIONS(1065), + [anon_sym_AMP] = ACTIONS(1063), + [anon_sym_SQUOTE] = ACTIONS(1065), + [anon_sym_STAR] = ACTIONS(1065), + [anon_sym_PLUS] = ACTIONS(1065), + [anon_sym_COMMA] = ACTIONS(1065), + [anon_sym_DASH] = ACTIONS(1063), + [anon_sym_DOT] = ACTIONS(1063), + [anon_sym_SLASH] = ACTIONS(1065), + [anon_sym_COLON] = ACTIONS(1065), + [anon_sym_SEMI] = ACTIONS(1065), + [anon_sym_EQ] = ACTIONS(1065), + [anon_sym_QMARK] = ACTIONS(1065), + [anon_sym_LBRACK] = ACTIONS(1069), + [anon_sym_BSLASH] = ACTIONS(1071), + [anon_sym_CARET] = ACTIONS(1063), + [anon_sym__] = ACTIONS(1065), + [anon_sym_BQUOTE] = ACTIONS(1065), + [anon_sym_LBRACE] = ACTIONS(1073), + [anon_sym_PIPE] = ACTIONS(1065), + [anon_sym_TILDE] = ACTIONS(1065), + [anon_sym_LPAREN] = ACTIONS(1065), + [anon_sym_RPAREN] = ACTIONS(1065), + [sym__newline_token] = ACTIONS(1075), + [aux_sym_insert_token1] = ACTIONS(1077), + [aux_sym_delete_token1] = ACTIONS(1079), + [aux_sym_highlight_token1] = ACTIONS(1081), + [aux_sym_edit_comment_token1] = ACTIONS(1083), + [anon_sym_CARET_LBRACK] = ACTIONS(1085), + [anon_sym_LBRACK_CARET] = ACTIONS(1087), + [sym_uri_autolink] = ACTIONS(1061), + [sym_email_autolink] = ACTIONS(1061), + [sym__whitespace_ge_2] = ACTIONS(1089), + [aux_sym__whitespace_token1] = ACTIONS(1091), + [sym__word_no_digit] = ACTIONS(1093), + [sym__digits] = ACTIONS(1093), + [anon_sym_DASH_DASH] = ACTIONS(1095), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1093), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1093), + [sym__code_span_start] = ACTIONS(1097), + [sym__emphasis_open_star] = ACTIONS(1099), + [sym__emphasis_open_underscore] = ACTIONS(1101), + [sym__strikeout_open] = ACTIONS(1105), + [sym__latex_span_start] = ACTIONS(1107), + [sym__single_quote_open] = ACTIONS(1109), + [sym__double_quote_open] = ACTIONS(1111), + [sym__superscript_open] = ACTIONS(1113), + [sym__subscript_open] = ACTIONS(1115), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1117), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1119), + [sym__cite_author_in_text] = ACTIONS(1121), + [sym__cite_suppress_author] = ACTIONS(1123), + [sym__shortcode_open_escaped] = ACTIONS(1125), + [sym__shortcode_open] = ACTIONS(1127), + [sym__unclosed_span] = ACTIONS(1061), }, [STATE(308)] = { - [sym__qmd_attribute] = STATE(1135), - [sym_raw_attribute] = STATE(1135), - [sym_commonmark_attribute] = STATE(1135), - [sym_language_attribute] = STATE(1135), - [ts_builtin_sym_end] = ACTIONS(3667), - [sym__backslash_escape] = ACTIONS(3667), - [sym_entity_reference] = ACTIONS(3667), - [sym_numeric_character_reference] = ACTIONS(3667), - [anon_sym_LT] = ACTIONS(3669), - [anon_sym_GT] = ACTIONS(3667), - [anon_sym_BANG] = ACTIONS(3667), - [anon_sym_DQUOTE] = ACTIONS(3667), - [anon_sym_POUND] = ACTIONS(3667), - [anon_sym_DOLLAR] = ACTIONS(3667), - [anon_sym_PERCENT] = ACTIONS(3667), - [anon_sym_AMP] = ACTIONS(3669), - [anon_sym_SQUOTE] = ACTIONS(3667), - [anon_sym_STAR] = ACTIONS(3667), - [anon_sym_PLUS] = ACTIONS(3667), - [anon_sym_COMMA] = ACTIONS(3667), - [anon_sym_DASH] = ACTIONS(3669), - [anon_sym_DOT] = ACTIONS(3669), - [anon_sym_SLASH] = ACTIONS(3667), - [anon_sym_COLON] = ACTIONS(3667), - [anon_sym_SEMI] = ACTIONS(3667), - [anon_sym_EQ] = ACTIONS(3667), - [anon_sym_QMARK] = ACTIONS(3667), - [anon_sym_LBRACK] = ACTIONS(3669), - [anon_sym_BSLASH] = ACTIONS(3669), - [anon_sym_CARET] = ACTIONS(3669), - [anon_sym__] = ACTIONS(3667), - [anon_sym_BQUOTE] = ACTIONS(3667), - [anon_sym_LBRACE] = ACTIONS(3633), - [anon_sym_PIPE] = ACTIONS(3667), - [anon_sym_TILDE] = ACTIONS(3667), - [anon_sym_LPAREN] = ACTIONS(3667), - [anon_sym_RPAREN] = ACTIONS(3667), - [sym__newline_token] = ACTIONS(3667), - [anon_sym_CARET_LBRACK] = ACTIONS(3667), - [anon_sym_LBRACK_CARET] = ACTIONS(3667), - [sym_uri_autolink] = ACTIONS(3667), - [sym_email_autolink] = ACTIONS(3667), - [sym__whitespace_ge_2] = ACTIONS(3667), - [aux_sym__whitespace_token1] = ACTIONS(3669), - [sym__word_no_digit] = ACTIONS(3667), - [sym__digits] = ACTIONS(3667), - [anon_sym_DASH_DASH] = ACTIONS(3669), - [anon_sym_DASH_DASH_DASH] = ACTIONS(3667), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3667), - [sym__code_span_start] = ACTIONS(3667), - [sym__emphasis_open_star] = ACTIONS(3667), - [sym__emphasis_open_underscore] = ACTIONS(3667), - [sym__strikeout_open] = ACTIONS(3667), - [sym__latex_span_start] = ACTIONS(3667), - [sym__single_quote_open] = ACTIONS(3667), - [sym__double_quote_open] = ACTIONS(3667), - [sym__superscript_open] = ACTIONS(3667), - [sym__subscript_open] = ACTIONS(3667), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3667), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3667), - [sym__cite_author_in_text] = ACTIONS(3667), - [sym__cite_suppress_author] = ACTIONS(3667), - [sym__shortcode_open_escaped] = ACTIONS(3667), - [sym__shortcode_open] = ACTIONS(3667), - [sym__unclosed_span] = ACTIONS(3667), + [sym_backslash_escape] = STATE(373), + [sym_commonmark_attribute] = STATE(373), + [sym_code_span] = STATE(373), + [sym_latex_span] = STATE(373), + [sym_insert] = STATE(373), + [sym_delete] = STATE(373), + [sym_highlight] = STATE(373), + [sym_edit_comment] = STATE(373), + [sym_superscript] = STATE(373), + [sym_subscript] = STATE(373), + [sym_strikeout] = STATE(373), + [sym_quoted_span] = STATE(373), + [sym_inline_note] = STATE(373), + [sym_citation] = STATE(373), + [sym_shortcode_escaped] = STATE(373), + [sym_shortcode] = STATE(373), + [sym_note_reference] = STATE(373), + [sym__link_text] = STATE(522), + [sym__link_text_non_empty] = STATE(523), + [sym_inline_link] = STATE(189), + [sym_image] = STATE(373), + [sym__image_inline_link] = STATE(1265), + [sym__image_description] = STATE(2331), + [sym__image_description_non_empty] = STATE(2331), + [sym_hard_line_break] = STATE(373), + [sym__whitespace] = STATE(1262), + [sym__word] = STATE(1262), + [sym__soft_line_break] = STATE(1267), + [sym__inline_base] = STATE(189), + [sym__text_base] = STATE(373), + [sym__inline_element_no_star] = STATE(189), + [aux_sym__inline_no_star] = STATE(189), + [sym__emphasis_star] = STATE(1147), + [sym__strong_emphasis_star] = STATE(189), + [sym__emphasis_underscore] = STATE(1147), + [sym__strong_emphasis_underscore] = STATE(189), + [aux_sym__inline_base_repeat1] = STATE(373), + [sym__backslash_escape] = ACTIONS(885), + [sym_entity_reference] = ACTIONS(887), + [sym_numeric_character_reference] = ACTIONS(887), + [anon_sym_LT] = ACTIONS(889), + [anon_sym_GT] = ACTIONS(891), + [anon_sym_BANG] = ACTIONS(893), + [anon_sym_DQUOTE] = ACTIONS(891), + [anon_sym_POUND] = ACTIONS(891), + [anon_sym_DOLLAR] = ACTIONS(891), + [anon_sym_PERCENT] = ACTIONS(891), + [anon_sym_AMP] = ACTIONS(889), + [anon_sym_SQUOTE] = ACTIONS(891), + [anon_sym_STAR] = ACTIONS(891), + [anon_sym_PLUS] = ACTIONS(891), + [anon_sym_COMMA] = ACTIONS(891), + [anon_sym_DASH] = ACTIONS(889), + [anon_sym_DOT] = ACTIONS(889), + [anon_sym_SLASH] = ACTIONS(891), + [anon_sym_COLON] = ACTIONS(891), + [anon_sym_SEMI] = ACTIONS(891), + [anon_sym_EQ] = ACTIONS(891), + [anon_sym_QMARK] = ACTIONS(891), + [anon_sym_LBRACK] = ACTIONS(895), + [anon_sym_BSLASH] = ACTIONS(897), + [anon_sym_CARET] = ACTIONS(889), + [anon_sym__] = ACTIONS(891), + [anon_sym_BQUOTE] = ACTIONS(891), + [anon_sym_LBRACE] = ACTIONS(899), + [anon_sym_PIPE] = ACTIONS(891), + [anon_sym_TILDE] = ACTIONS(891), + [anon_sym_LPAREN] = ACTIONS(891), + [anon_sym_RPAREN] = ACTIONS(891), + [sym__newline_token] = ACTIONS(901), + [aux_sym_insert_token1] = ACTIONS(903), + [aux_sym_delete_token1] = ACTIONS(905), + [aux_sym_highlight_token1] = ACTIONS(907), + [aux_sym_edit_comment_token1] = ACTIONS(909), + [anon_sym_CARET_LBRACK] = ACTIONS(911), + [anon_sym_LBRACK_CARET] = ACTIONS(913), + [sym_uri_autolink] = ACTIONS(887), + [sym_email_autolink] = ACTIONS(887), + [sym__whitespace_ge_2] = ACTIONS(915), + [aux_sym__whitespace_token1] = ACTIONS(917), + [sym__word_no_digit] = ACTIONS(919), + [sym__digits] = ACTIONS(919), + [anon_sym_DASH_DASH] = ACTIONS(921), + [anon_sym_DASH_DASH_DASH] = ACTIONS(919), + [anon_sym_DOT_DOT_DOT] = ACTIONS(919), + [sym__code_span_start] = ACTIONS(923), + [sym__emphasis_open_star] = ACTIONS(925), + [sym__emphasis_open_underscore] = ACTIONS(927), + [sym__strikeout_open] = ACTIONS(931), + [sym__latex_span_start] = ACTIONS(933), + [sym__single_quote_open] = ACTIONS(935), + [sym__double_quote_open] = ACTIONS(937), + [sym__superscript_open] = ACTIONS(939), + [sym__subscript_open] = ACTIONS(941), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(943), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(945), + [sym__cite_author_in_text] = ACTIONS(947), + [sym__cite_suppress_author] = ACTIONS(949), + [sym__shortcode_open_escaped] = ACTIONS(951), + [sym__shortcode_open] = ACTIONS(953), + [sym__unclosed_span] = ACTIONS(887), }, [STATE(309)] = { - [sym__qmd_attribute] = STATE(1140), - [sym_raw_attribute] = STATE(1140), - [sym_commonmark_attribute] = STATE(1140), - [sym_language_attribute] = STATE(1140), - [ts_builtin_sym_end] = ACTIONS(3671), - [sym__backslash_escape] = ACTIONS(3671), - [sym_entity_reference] = ACTIONS(3671), - [sym_numeric_character_reference] = ACTIONS(3671), - [anon_sym_LT] = ACTIONS(3673), - [anon_sym_GT] = ACTIONS(3671), - [anon_sym_BANG] = ACTIONS(3671), - [anon_sym_DQUOTE] = ACTIONS(3671), - [anon_sym_POUND] = ACTIONS(3671), - [anon_sym_DOLLAR] = ACTIONS(3671), - [anon_sym_PERCENT] = ACTIONS(3671), - [anon_sym_AMP] = ACTIONS(3673), - [anon_sym_SQUOTE] = ACTIONS(3671), - [anon_sym_STAR] = ACTIONS(3671), - [anon_sym_PLUS] = ACTIONS(3671), - [anon_sym_COMMA] = ACTIONS(3671), - [anon_sym_DASH] = ACTIONS(3673), - [anon_sym_DOT] = ACTIONS(3673), - [anon_sym_SLASH] = ACTIONS(3671), - [anon_sym_COLON] = ACTIONS(3671), - [anon_sym_SEMI] = ACTIONS(3671), - [anon_sym_EQ] = ACTIONS(3671), - [anon_sym_QMARK] = ACTIONS(3671), - [anon_sym_LBRACK] = ACTIONS(3673), - [anon_sym_BSLASH] = ACTIONS(3673), - [anon_sym_CARET] = ACTIONS(3673), - [anon_sym__] = ACTIONS(3671), - [anon_sym_BQUOTE] = ACTIONS(3671), - [anon_sym_LBRACE] = ACTIONS(3633), - [anon_sym_PIPE] = ACTIONS(3671), - [anon_sym_TILDE] = ACTIONS(3671), - [anon_sym_LPAREN] = ACTIONS(3671), - [anon_sym_RPAREN] = ACTIONS(3671), - [sym__newline_token] = ACTIONS(3671), - [anon_sym_CARET_LBRACK] = ACTIONS(3671), - [anon_sym_LBRACK_CARET] = ACTIONS(3671), - [sym_uri_autolink] = ACTIONS(3671), - [sym_email_autolink] = ACTIONS(3671), - [sym__whitespace_ge_2] = ACTIONS(3671), - [aux_sym__whitespace_token1] = ACTIONS(3673), - [sym__word_no_digit] = ACTIONS(3671), - [sym__digits] = ACTIONS(3671), - [anon_sym_DASH_DASH] = ACTIONS(3673), - [anon_sym_DASH_DASH_DASH] = ACTIONS(3671), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3671), - [sym__code_span_start] = ACTIONS(3671), - [sym__emphasis_open_star] = ACTIONS(3671), - [sym__emphasis_open_underscore] = ACTIONS(3671), - [sym__strikeout_open] = ACTIONS(3671), - [sym__latex_span_start] = ACTIONS(3671), - [sym__single_quote_open] = ACTIONS(3671), - [sym__double_quote_open] = ACTIONS(3671), - [sym__superscript_open] = ACTIONS(3671), - [sym__subscript_open] = ACTIONS(3671), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3671), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3671), - [sym__cite_author_in_text] = ACTIONS(3671), - [sym__cite_suppress_author] = ACTIONS(3671), - [sym__shortcode_open_escaped] = ACTIONS(3671), - [sym__shortcode_open] = ACTIONS(3671), - [sym__unclosed_span] = ACTIONS(3671), + [sym_backslash_escape] = STATE(379), + [sym_commonmark_attribute] = STATE(379), + [sym_code_span] = STATE(379), + [sym_latex_span] = STATE(379), + [sym_insert] = STATE(379), + [sym_delete] = STATE(379), + [sym_highlight] = STATE(379), + [sym_edit_comment] = STATE(379), + [sym_superscript] = STATE(379), + [sym_subscript] = STATE(379), + [sym_strikeout] = STATE(379), + [sym_quoted_span] = STATE(379), + [sym_inline_note] = STATE(379), + [sym_citation] = STATE(379), + [sym_shortcode_escaped] = STATE(379), + [sym_shortcode] = STATE(379), + [sym_note_reference] = STATE(379), + [sym__link_text] = STATE(545), + [sym__link_text_non_empty] = STATE(546), + [sym_inline_link] = STATE(190), + [sym_image] = STATE(379), + [sym__image_inline_link] = STATE(1390), + [sym__image_description] = STATE(2363), + [sym__image_description_non_empty] = STATE(2363), + [sym_hard_line_break] = STATE(379), + [sym__whitespace] = STATE(1385), + [sym__word] = STATE(1385), + [sym__soft_line_break] = STATE(1391), + [sym__inline_base] = STATE(190), + [sym__text_base] = STATE(379), + [sym__inline_element_no_underscore] = STATE(190), + [aux_sym__inline_no_underscore] = STATE(190), + [sym__emphasis_star] = STATE(1168), + [sym__strong_emphasis_star] = STATE(190), + [sym__emphasis_underscore] = STATE(1168), + [sym__strong_emphasis_underscore] = STATE(190), + [aux_sym__inline_base_repeat1] = STATE(379), + [sym__backslash_escape] = ACTIONS(1059), + [sym_entity_reference] = ACTIONS(1061), + [sym_numeric_character_reference] = ACTIONS(1061), + [anon_sym_LT] = ACTIONS(1063), + [anon_sym_GT] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1067), + [anon_sym_DQUOTE] = ACTIONS(1065), + [anon_sym_POUND] = ACTIONS(1065), + [anon_sym_DOLLAR] = ACTIONS(1065), + [anon_sym_PERCENT] = ACTIONS(1065), + [anon_sym_AMP] = ACTIONS(1063), + [anon_sym_SQUOTE] = ACTIONS(1065), + [anon_sym_STAR] = ACTIONS(1065), + [anon_sym_PLUS] = ACTIONS(1065), + [anon_sym_COMMA] = ACTIONS(1065), + [anon_sym_DASH] = ACTIONS(1063), + [anon_sym_DOT] = ACTIONS(1063), + [anon_sym_SLASH] = ACTIONS(1065), + [anon_sym_COLON] = ACTIONS(1065), + [anon_sym_SEMI] = ACTIONS(1065), + [anon_sym_EQ] = ACTIONS(1065), + [anon_sym_QMARK] = ACTIONS(1065), + [anon_sym_LBRACK] = ACTIONS(1069), + [anon_sym_BSLASH] = ACTIONS(1071), + [anon_sym_CARET] = ACTIONS(1063), + [anon_sym__] = ACTIONS(1065), + [anon_sym_BQUOTE] = ACTIONS(1065), + [anon_sym_LBRACE] = ACTIONS(1073), + [anon_sym_PIPE] = ACTIONS(1065), + [anon_sym_TILDE] = ACTIONS(1065), + [anon_sym_LPAREN] = ACTIONS(1065), + [anon_sym_RPAREN] = ACTIONS(1065), + [sym__newline_token] = ACTIONS(1075), + [aux_sym_insert_token1] = ACTIONS(1077), + [aux_sym_delete_token1] = ACTIONS(1079), + [aux_sym_highlight_token1] = ACTIONS(1081), + [aux_sym_edit_comment_token1] = ACTIONS(1083), + [anon_sym_CARET_LBRACK] = ACTIONS(1085), + [anon_sym_LBRACK_CARET] = ACTIONS(1087), + [sym_uri_autolink] = ACTIONS(1061), + [sym_email_autolink] = ACTIONS(1061), + [sym__whitespace_ge_2] = ACTIONS(1089), + [aux_sym__whitespace_token1] = ACTIONS(1091), + [sym__word_no_digit] = ACTIONS(1093), + [sym__digits] = ACTIONS(1093), + [anon_sym_DASH_DASH] = ACTIONS(1095), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1093), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1093), + [sym__code_span_start] = ACTIONS(1097), + [sym__emphasis_open_star] = ACTIONS(1099), + [sym__emphasis_open_underscore] = ACTIONS(1101), + [sym__strikeout_open] = ACTIONS(1105), + [sym__latex_span_start] = ACTIONS(1107), + [sym__single_quote_open] = ACTIONS(1109), + [sym__double_quote_open] = ACTIONS(1111), + [sym__superscript_open] = ACTIONS(1113), + [sym__subscript_open] = ACTIONS(1115), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1117), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1119), + [sym__cite_author_in_text] = ACTIONS(1121), + [sym__cite_suppress_author] = ACTIONS(1123), + [sym__shortcode_open_escaped] = ACTIONS(1125), + [sym__shortcode_open] = ACTIONS(1127), + [sym__unclosed_span] = ACTIONS(1061), }, [STATE(310)] = { - [sym__qmd_attribute] = STATE(999), - [sym_raw_attribute] = STATE(999), - [sym_commonmark_attribute] = STATE(999), - [sym_language_attribute] = STATE(999), - [ts_builtin_sym_end] = ACTIONS(3691), - [sym__backslash_escape] = ACTIONS(3691), - [sym_entity_reference] = ACTIONS(3691), - [sym_numeric_character_reference] = ACTIONS(3691), - [anon_sym_LT] = ACTIONS(3693), - [anon_sym_GT] = ACTIONS(3691), - [anon_sym_BANG] = ACTIONS(3691), - [anon_sym_DQUOTE] = ACTIONS(3691), - [anon_sym_POUND] = ACTIONS(3691), - [anon_sym_DOLLAR] = ACTIONS(3691), - [anon_sym_PERCENT] = ACTIONS(3691), - [anon_sym_AMP] = ACTIONS(3693), - [anon_sym_SQUOTE] = ACTIONS(3691), - [anon_sym_STAR] = ACTIONS(3691), - [anon_sym_PLUS] = ACTIONS(3691), - [anon_sym_COMMA] = ACTIONS(3691), - [anon_sym_DASH] = ACTIONS(3693), - [anon_sym_DOT] = ACTIONS(3693), - [anon_sym_SLASH] = ACTIONS(3691), - [anon_sym_COLON] = ACTIONS(3691), - [anon_sym_SEMI] = ACTIONS(3691), - [anon_sym_EQ] = ACTIONS(3691), - [anon_sym_QMARK] = ACTIONS(3691), - [anon_sym_LBRACK] = ACTIONS(3693), - [anon_sym_BSLASH] = ACTIONS(3693), - [anon_sym_CARET] = ACTIONS(3693), - [anon_sym__] = ACTIONS(3691), - [anon_sym_BQUOTE] = ACTIONS(3691), - [anon_sym_LBRACE] = ACTIONS(3633), - [anon_sym_PIPE] = ACTIONS(3691), - [anon_sym_TILDE] = ACTIONS(3691), - [anon_sym_LPAREN] = ACTIONS(3695), - [anon_sym_RPAREN] = ACTIONS(3691), - [sym__newline_token] = ACTIONS(3691), - [anon_sym_CARET_LBRACK] = ACTIONS(3691), - [anon_sym_LBRACK_CARET] = ACTIONS(3691), - [sym_uri_autolink] = ACTIONS(3691), - [sym_email_autolink] = ACTIONS(3691), - [sym__whitespace_ge_2] = ACTIONS(3691), - [aux_sym__whitespace_token1] = ACTIONS(3693), - [sym__word_no_digit] = ACTIONS(3691), - [sym__digits] = ACTIONS(3691), - [anon_sym_DASH_DASH] = ACTIONS(3693), - [anon_sym_DASH_DASH_DASH] = ACTIONS(3691), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3691), - [sym__code_span_start] = ACTIONS(3691), - [sym__emphasis_open_star] = ACTIONS(3691), - [sym__emphasis_open_underscore] = ACTIONS(3691), - [sym__strikeout_open] = ACTIONS(3691), - [sym__latex_span_start] = ACTIONS(3691), - [sym__single_quote_open] = ACTIONS(3691), - [sym__double_quote_open] = ACTIONS(3691), - [sym__superscript_open] = ACTIONS(3691), - [sym__subscript_open] = ACTIONS(3691), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3691), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3691), - [sym__cite_author_in_text] = ACTIONS(3691), - [sym__cite_suppress_author] = ACTIONS(3691), - [sym__shortcode_open_escaped] = ACTIONS(3691), - [sym__shortcode_open] = ACTIONS(3691), - [sym__unclosed_span] = ACTIONS(3691), + [sym_backslash_escape] = STATE(373), + [sym_commonmark_attribute] = STATE(373), + [sym_code_span] = STATE(373), + [sym_latex_span] = STATE(373), + [sym_insert] = STATE(373), + [sym_delete] = STATE(373), + [sym_highlight] = STATE(373), + [sym_edit_comment] = STATE(373), + [sym_superscript] = STATE(373), + [sym_subscript] = STATE(373), + [sym_strikeout] = STATE(373), + [sym_quoted_span] = STATE(373), + [sym_inline_note] = STATE(373), + [sym_citation] = STATE(373), + [sym_shortcode_escaped] = STATE(373), + [sym_shortcode] = STATE(373), + [sym_note_reference] = STATE(373), + [sym__link_text] = STATE(522), + [sym__link_text_non_empty] = STATE(523), + [sym_inline_link] = STATE(215), + [sym_image] = STATE(373), + [sym__image_inline_link] = STATE(1265), + [sym__image_description] = STATE(2331), + [sym__image_description_non_empty] = STATE(2331), + [sym_hard_line_break] = STATE(373), + [sym__whitespace] = STATE(1262), + [sym__word] = STATE(1262), + [sym__soft_line_break] = STATE(1267), + [sym__inline_base] = STATE(215), + [sym__text_base] = STATE(373), + [sym__inline_element_no_star] = STATE(215), + [aux_sym__inline_no_star] = STATE(215), + [sym__emphasis_star] = STATE(1147), + [sym__strong_emphasis_star] = STATE(215), + [sym__emphasis_underscore] = STATE(1147), + [sym__strong_emphasis_underscore] = STATE(215), + [aux_sym__inline_base_repeat1] = STATE(373), + [sym__backslash_escape] = ACTIONS(885), + [sym_entity_reference] = ACTIONS(887), + [sym_numeric_character_reference] = ACTIONS(887), + [anon_sym_LT] = ACTIONS(889), + [anon_sym_GT] = ACTIONS(891), + [anon_sym_BANG] = ACTIONS(893), + [anon_sym_DQUOTE] = ACTIONS(891), + [anon_sym_POUND] = ACTIONS(891), + [anon_sym_DOLLAR] = ACTIONS(891), + [anon_sym_PERCENT] = ACTIONS(891), + [anon_sym_AMP] = ACTIONS(889), + [anon_sym_SQUOTE] = ACTIONS(891), + [anon_sym_STAR] = ACTIONS(891), + [anon_sym_PLUS] = ACTIONS(891), + [anon_sym_COMMA] = ACTIONS(891), + [anon_sym_DASH] = ACTIONS(889), + [anon_sym_DOT] = ACTIONS(889), + [anon_sym_SLASH] = ACTIONS(891), + [anon_sym_COLON] = ACTIONS(891), + [anon_sym_SEMI] = ACTIONS(891), + [anon_sym_EQ] = ACTIONS(891), + [anon_sym_QMARK] = ACTIONS(891), + [anon_sym_LBRACK] = ACTIONS(895), + [anon_sym_BSLASH] = ACTIONS(897), + [anon_sym_CARET] = ACTIONS(889), + [anon_sym__] = ACTIONS(891), + [anon_sym_BQUOTE] = ACTIONS(891), + [anon_sym_LBRACE] = ACTIONS(899), + [anon_sym_PIPE] = ACTIONS(891), + [anon_sym_TILDE] = ACTIONS(891), + [anon_sym_LPAREN] = ACTIONS(891), + [anon_sym_RPAREN] = ACTIONS(891), + [sym__newline_token] = ACTIONS(901), + [aux_sym_insert_token1] = ACTIONS(903), + [aux_sym_delete_token1] = ACTIONS(905), + [aux_sym_highlight_token1] = ACTIONS(907), + [aux_sym_edit_comment_token1] = ACTIONS(909), + [anon_sym_CARET_LBRACK] = ACTIONS(911), + [anon_sym_LBRACK_CARET] = ACTIONS(913), + [sym_uri_autolink] = ACTIONS(887), + [sym_email_autolink] = ACTIONS(887), + [sym__whitespace_ge_2] = ACTIONS(915), + [aux_sym__whitespace_token1] = ACTIONS(917), + [sym__word_no_digit] = ACTIONS(919), + [sym__digits] = ACTIONS(919), + [anon_sym_DASH_DASH] = ACTIONS(921), + [anon_sym_DASH_DASH_DASH] = ACTIONS(919), + [anon_sym_DOT_DOT_DOT] = ACTIONS(919), + [sym__code_span_start] = ACTIONS(923), + [sym__emphasis_open_star] = ACTIONS(925), + [sym__emphasis_open_underscore] = ACTIONS(927), + [sym__strikeout_open] = ACTIONS(931), + [sym__latex_span_start] = ACTIONS(933), + [sym__single_quote_open] = ACTIONS(935), + [sym__double_quote_open] = ACTIONS(937), + [sym__superscript_open] = ACTIONS(939), + [sym__subscript_open] = ACTIONS(941), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(943), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(945), + [sym__cite_author_in_text] = ACTIONS(947), + [sym__cite_suppress_author] = ACTIONS(949), + [sym__shortcode_open_escaped] = ACTIONS(951), + [sym__shortcode_open] = ACTIONS(953), + [sym__unclosed_span] = ACTIONS(887), }, [STATE(311)] = { - [sym__qmd_attribute] = STATE(1015), - [sym_raw_attribute] = STATE(1015), - [sym_commonmark_attribute] = STATE(1015), - [sym_language_attribute] = STATE(1015), - [ts_builtin_sym_end] = ACTIONS(3697), - [sym__backslash_escape] = ACTIONS(3697), - [sym_entity_reference] = ACTIONS(3697), - [sym_numeric_character_reference] = ACTIONS(3697), - [anon_sym_LT] = ACTIONS(3699), - [anon_sym_GT] = ACTIONS(3697), - [anon_sym_BANG] = ACTIONS(3697), - [anon_sym_DQUOTE] = ACTIONS(3697), - [anon_sym_POUND] = ACTIONS(3697), - [anon_sym_DOLLAR] = ACTIONS(3697), - [anon_sym_PERCENT] = ACTIONS(3697), - [anon_sym_AMP] = ACTIONS(3699), - [anon_sym_SQUOTE] = ACTIONS(3697), - [anon_sym_STAR] = ACTIONS(3697), - [anon_sym_PLUS] = ACTIONS(3697), - [anon_sym_COMMA] = ACTIONS(3697), - [anon_sym_DASH] = ACTIONS(3699), - [anon_sym_DOT] = ACTIONS(3699), - [anon_sym_SLASH] = ACTIONS(3697), - [anon_sym_COLON] = ACTIONS(3697), - [anon_sym_SEMI] = ACTIONS(3697), - [anon_sym_EQ] = ACTIONS(3697), - [anon_sym_QMARK] = ACTIONS(3697), - [anon_sym_LBRACK] = ACTIONS(3699), - [anon_sym_BSLASH] = ACTIONS(3699), - [anon_sym_CARET] = ACTIONS(3699), - [anon_sym__] = ACTIONS(3697), - [anon_sym_BQUOTE] = ACTIONS(3697), - [anon_sym_LBRACE] = ACTIONS(3633), - [anon_sym_PIPE] = ACTIONS(3697), - [anon_sym_TILDE] = ACTIONS(3697), - [anon_sym_LPAREN] = ACTIONS(3697), - [anon_sym_RPAREN] = ACTIONS(3697), - [sym__newline_token] = ACTIONS(3697), - [anon_sym_CARET_LBRACK] = ACTIONS(3697), - [anon_sym_LBRACK_CARET] = ACTIONS(3697), - [sym_uri_autolink] = ACTIONS(3697), - [sym_email_autolink] = ACTIONS(3697), - [sym__whitespace_ge_2] = ACTIONS(3697), - [aux_sym__whitespace_token1] = ACTIONS(3699), - [sym__word_no_digit] = ACTIONS(3697), - [sym__digits] = ACTIONS(3697), - [anon_sym_DASH_DASH] = ACTIONS(3699), - [anon_sym_DASH_DASH_DASH] = ACTIONS(3697), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3697), - [sym__code_span_start] = ACTIONS(3697), - [sym__emphasis_open_star] = ACTIONS(3697), - [sym__emphasis_open_underscore] = ACTIONS(3697), - [sym__strikeout_open] = ACTIONS(3697), - [sym__latex_span_start] = ACTIONS(3697), - [sym__single_quote_open] = ACTIONS(3697), - [sym__double_quote_open] = ACTIONS(3697), - [sym__superscript_open] = ACTIONS(3697), - [sym__subscript_open] = ACTIONS(3697), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3697), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3697), - [sym__cite_author_in_text] = ACTIONS(3697), - [sym__cite_suppress_author] = ACTIONS(3697), - [sym__shortcode_open_escaped] = ACTIONS(3697), - [sym__shortcode_open] = ACTIONS(3697), - [sym__unclosed_span] = ACTIONS(3697), + [sym_backslash_escape] = STATE(379), + [sym_commonmark_attribute] = STATE(379), + [sym_code_span] = STATE(379), + [sym_latex_span] = STATE(379), + [sym_insert] = STATE(379), + [sym_delete] = STATE(379), + [sym_highlight] = STATE(379), + [sym_edit_comment] = STATE(379), + [sym_superscript] = STATE(379), + [sym_subscript] = STATE(379), + [sym_strikeout] = STATE(379), + [sym_quoted_span] = STATE(379), + [sym_inline_note] = STATE(379), + [sym_citation] = STATE(379), + [sym_shortcode_escaped] = STATE(379), + [sym_shortcode] = STATE(379), + [sym_note_reference] = STATE(379), + [sym__link_text] = STATE(545), + [sym__link_text_non_empty] = STATE(546), + [sym_inline_link] = STATE(216), + [sym_image] = STATE(379), + [sym__image_inline_link] = STATE(1390), + [sym__image_description] = STATE(2363), + [sym__image_description_non_empty] = STATE(2363), + [sym_hard_line_break] = STATE(379), + [sym__whitespace] = STATE(1385), + [sym__word] = STATE(1385), + [sym__soft_line_break] = STATE(1391), + [sym__inline_base] = STATE(216), + [sym__text_base] = STATE(379), + [sym__inline_element_no_underscore] = STATE(216), + [aux_sym__inline_no_underscore] = STATE(216), + [sym__emphasis_star] = STATE(1168), + [sym__strong_emphasis_star] = STATE(216), + [sym__emphasis_underscore] = STATE(1168), + [sym__strong_emphasis_underscore] = STATE(216), + [aux_sym__inline_base_repeat1] = STATE(379), + [sym__backslash_escape] = ACTIONS(1059), + [sym_entity_reference] = ACTIONS(1061), + [sym_numeric_character_reference] = ACTIONS(1061), + [anon_sym_LT] = ACTIONS(1063), + [anon_sym_GT] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1067), + [anon_sym_DQUOTE] = ACTIONS(1065), + [anon_sym_POUND] = ACTIONS(1065), + [anon_sym_DOLLAR] = ACTIONS(1065), + [anon_sym_PERCENT] = ACTIONS(1065), + [anon_sym_AMP] = ACTIONS(1063), + [anon_sym_SQUOTE] = ACTIONS(1065), + [anon_sym_STAR] = ACTIONS(1065), + [anon_sym_PLUS] = ACTIONS(1065), + [anon_sym_COMMA] = ACTIONS(1065), + [anon_sym_DASH] = ACTIONS(1063), + [anon_sym_DOT] = ACTIONS(1063), + [anon_sym_SLASH] = ACTIONS(1065), + [anon_sym_COLON] = ACTIONS(1065), + [anon_sym_SEMI] = ACTIONS(1065), + [anon_sym_EQ] = ACTIONS(1065), + [anon_sym_QMARK] = ACTIONS(1065), + [anon_sym_LBRACK] = ACTIONS(1069), + [anon_sym_BSLASH] = ACTIONS(1071), + [anon_sym_CARET] = ACTIONS(1063), + [anon_sym__] = ACTIONS(1065), + [anon_sym_BQUOTE] = ACTIONS(1065), + [anon_sym_LBRACE] = ACTIONS(1073), + [anon_sym_PIPE] = ACTIONS(1065), + [anon_sym_TILDE] = ACTIONS(1065), + [anon_sym_LPAREN] = ACTIONS(1065), + [anon_sym_RPAREN] = ACTIONS(1065), + [sym__newline_token] = ACTIONS(1075), + [aux_sym_insert_token1] = ACTIONS(1077), + [aux_sym_delete_token1] = ACTIONS(1079), + [aux_sym_highlight_token1] = ACTIONS(1081), + [aux_sym_edit_comment_token1] = ACTIONS(1083), + [anon_sym_CARET_LBRACK] = ACTIONS(1085), + [anon_sym_LBRACK_CARET] = ACTIONS(1087), + [sym_uri_autolink] = ACTIONS(1061), + [sym_email_autolink] = ACTIONS(1061), + [sym__whitespace_ge_2] = ACTIONS(1089), + [aux_sym__whitespace_token1] = ACTIONS(1091), + [sym__word_no_digit] = ACTIONS(1093), + [sym__digits] = ACTIONS(1093), + [anon_sym_DASH_DASH] = ACTIONS(1095), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1093), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1093), + [sym__code_span_start] = ACTIONS(1097), + [sym__emphasis_open_star] = ACTIONS(1099), + [sym__emphasis_open_underscore] = ACTIONS(1101), + [sym__strikeout_open] = ACTIONS(1105), + [sym__latex_span_start] = ACTIONS(1107), + [sym__single_quote_open] = ACTIONS(1109), + [sym__double_quote_open] = ACTIONS(1111), + [sym__superscript_open] = ACTIONS(1113), + [sym__subscript_open] = ACTIONS(1115), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1117), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1119), + [sym__cite_author_in_text] = ACTIONS(1121), + [sym__cite_suppress_author] = ACTIONS(1123), + [sym__shortcode_open_escaped] = ACTIONS(1125), + [sym__shortcode_open] = ACTIONS(1127), + [sym__unclosed_span] = ACTIONS(1061), }, [STATE(312)] = { - [sym__qmd_attribute] = STATE(532), - [sym_raw_attribute] = STATE(532), - [sym_commonmark_attribute] = STATE(532), - [sym_language_attribute] = STATE(532), - [ts_builtin_sym_end] = ACTIONS(3675), - [sym__backslash_escape] = ACTIONS(3675), - [sym_entity_reference] = ACTIONS(3675), - [sym_numeric_character_reference] = ACTIONS(3675), - [anon_sym_LT] = ACTIONS(3677), - [anon_sym_GT] = ACTIONS(3675), - [anon_sym_BANG] = ACTIONS(3675), - [anon_sym_DQUOTE] = ACTIONS(3675), - [anon_sym_POUND] = ACTIONS(3675), - [anon_sym_DOLLAR] = ACTIONS(3675), - [anon_sym_PERCENT] = ACTIONS(3675), - [anon_sym_AMP] = ACTIONS(3677), - [anon_sym_SQUOTE] = ACTIONS(3675), - [anon_sym_STAR] = ACTIONS(3675), - [anon_sym_PLUS] = ACTIONS(3675), - [anon_sym_COMMA] = ACTIONS(3675), - [anon_sym_DASH] = ACTIONS(3677), - [anon_sym_DOT] = ACTIONS(3677), - [anon_sym_SLASH] = ACTIONS(3675), - [anon_sym_COLON] = ACTIONS(3675), - [anon_sym_SEMI] = ACTIONS(3675), - [anon_sym_EQ] = ACTIONS(3675), - [anon_sym_QMARK] = ACTIONS(3675), - [anon_sym_LBRACK] = ACTIONS(3677), - [anon_sym_BSLASH] = ACTIONS(3677), - [anon_sym_CARET] = ACTIONS(3677), - [anon_sym__] = ACTIONS(3675), - [anon_sym_BQUOTE] = ACTIONS(3675), - [anon_sym_LBRACE] = ACTIONS(3633), - [anon_sym_PIPE] = ACTIONS(3675), - [anon_sym_TILDE] = ACTIONS(3675), - [anon_sym_LPAREN] = ACTIONS(3675), - [anon_sym_RPAREN] = ACTIONS(3675), - [sym__newline_token] = ACTIONS(3675), - [anon_sym_CARET_LBRACK] = ACTIONS(3675), - [anon_sym_LBRACK_CARET] = ACTIONS(3675), - [sym_uri_autolink] = ACTIONS(3675), - [sym_email_autolink] = ACTIONS(3675), - [sym__whitespace_ge_2] = ACTIONS(3675), - [aux_sym__whitespace_token1] = ACTIONS(3677), - [sym__word_no_digit] = ACTIONS(3675), - [sym__digits] = ACTIONS(3675), - [anon_sym_DASH_DASH] = ACTIONS(3677), - [anon_sym_DASH_DASH_DASH] = ACTIONS(3675), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3675), - [sym__code_span_start] = ACTIONS(3675), - [sym__emphasis_open_star] = ACTIONS(3675), - [sym__emphasis_open_underscore] = ACTIONS(3675), - [sym__strikeout_open] = ACTIONS(3675), - [sym__latex_span_start] = ACTIONS(3675), - [sym__single_quote_open] = ACTIONS(3675), - [sym__double_quote_open] = ACTIONS(3675), - [sym__superscript_open] = ACTIONS(3675), - [sym__subscript_open] = ACTIONS(3675), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3675), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3675), - [sym__cite_author_in_text] = ACTIONS(3675), - [sym__cite_suppress_author] = ACTIONS(3675), - [sym__shortcode_open_escaped] = ACTIONS(3675), - [sym__shortcode_open] = ACTIONS(3675), - [sym__unclosed_span] = ACTIONS(3675), + [sym_backslash_escape] = STATE(373), + [sym_commonmark_attribute] = STATE(373), + [sym_code_span] = STATE(373), + [sym_latex_span] = STATE(373), + [sym_insert] = STATE(373), + [sym_delete] = STATE(373), + [sym_highlight] = STATE(373), + [sym_edit_comment] = STATE(373), + [sym_superscript] = STATE(373), + [sym_subscript] = STATE(373), + [sym_strikeout] = STATE(373), + [sym_quoted_span] = STATE(373), + [sym_inline_note] = STATE(373), + [sym_citation] = STATE(373), + [sym_shortcode_escaped] = STATE(373), + [sym_shortcode] = STATE(373), + [sym_note_reference] = STATE(373), + [sym__link_text] = STATE(522), + [sym__link_text_non_empty] = STATE(523), + [sym_inline_link] = STATE(241), + [sym_image] = STATE(373), + [sym__image_inline_link] = STATE(1265), + [sym__image_description] = STATE(2331), + [sym__image_description_non_empty] = STATE(2331), + [sym_hard_line_break] = STATE(373), + [sym__whitespace] = STATE(1262), + [sym__word] = STATE(1262), + [sym__soft_line_break] = STATE(1267), + [sym__inline_base] = STATE(241), + [sym__text_base] = STATE(373), + [sym__inline_element_no_star] = STATE(241), + [aux_sym__inline_no_star] = STATE(241), + [sym__emphasis_star] = STATE(1147), + [sym__strong_emphasis_star] = STATE(241), + [sym__emphasis_underscore] = STATE(1147), + [sym__strong_emphasis_underscore] = STATE(241), + [aux_sym__inline_base_repeat1] = STATE(373), + [sym__backslash_escape] = ACTIONS(885), + [sym_entity_reference] = ACTIONS(887), + [sym_numeric_character_reference] = ACTIONS(887), + [anon_sym_LT] = ACTIONS(889), + [anon_sym_GT] = ACTIONS(891), + [anon_sym_BANG] = ACTIONS(893), + [anon_sym_DQUOTE] = ACTIONS(891), + [anon_sym_POUND] = ACTIONS(891), + [anon_sym_DOLLAR] = ACTIONS(891), + [anon_sym_PERCENT] = ACTIONS(891), + [anon_sym_AMP] = ACTIONS(889), + [anon_sym_SQUOTE] = ACTIONS(891), + [anon_sym_STAR] = ACTIONS(891), + [anon_sym_PLUS] = ACTIONS(891), + [anon_sym_COMMA] = ACTIONS(891), + [anon_sym_DASH] = ACTIONS(889), + [anon_sym_DOT] = ACTIONS(889), + [anon_sym_SLASH] = ACTIONS(891), + [anon_sym_COLON] = ACTIONS(891), + [anon_sym_SEMI] = ACTIONS(891), + [anon_sym_EQ] = ACTIONS(891), + [anon_sym_QMARK] = ACTIONS(891), + [anon_sym_LBRACK] = ACTIONS(895), + [anon_sym_BSLASH] = ACTIONS(897), + [anon_sym_CARET] = ACTIONS(889), + [anon_sym__] = ACTIONS(891), + [anon_sym_BQUOTE] = ACTIONS(891), + [anon_sym_LBRACE] = ACTIONS(899), + [anon_sym_PIPE] = ACTIONS(891), + [anon_sym_TILDE] = ACTIONS(891), + [anon_sym_LPAREN] = ACTIONS(891), + [anon_sym_RPAREN] = ACTIONS(891), + [sym__newline_token] = ACTIONS(901), + [aux_sym_insert_token1] = ACTIONS(903), + [aux_sym_delete_token1] = ACTIONS(905), + [aux_sym_highlight_token1] = ACTIONS(907), + [aux_sym_edit_comment_token1] = ACTIONS(909), + [anon_sym_CARET_LBRACK] = ACTIONS(911), + [anon_sym_LBRACK_CARET] = ACTIONS(913), + [sym_uri_autolink] = ACTIONS(887), + [sym_email_autolink] = ACTIONS(887), + [sym__whitespace_ge_2] = ACTIONS(915), + [aux_sym__whitespace_token1] = ACTIONS(917), + [sym__word_no_digit] = ACTIONS(919), + [sym__digits] = ACTIONS(919), + [anon_sym_DASH_DASH] = ACTIONS(921), + [anon_sym_DASH_DASH_DASH] = ACTIONS(919), + [anon_sym_DOT_DOT_DOT] = ACTIONS(919), + [sym__code_span_start] = ACTIONS(923), + [sym__emphasis_open_star] = ACTIONS(925), + [sym__emphasis_open_underscore] = ACTIONS(927), + [sym__strikeout_open] = ACTIONS(931), + [sym__latex_span_start] = ACTIONS(933), + [sym__single_quote_open] = ACTIONS(935), + [sym__double_quote_open] = ACTIONS(937), + [sym__superscript_open] = ACTIONS(939), + [sym__subscript_open] = ACTIONS(941), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(943), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(945), + [sym__cite_author_in_text] = ACTIONS(947), + [sym__cite_suppress_author] = ACTIONS(949), + [sym__shortcode_open_escaped] = ACTIONS(951), + [sym__shortcode_open] = ACTIONS(953), + [sym__unclosed_span] = ACTIONS(887), }, [STATE(313)] = { - [sym__qmd_attribute] = STATE(727), - [sym_raw_attribute] = STATE(727), - [sym_commonmark_attribute] = STATE(727), - [sym_language_attribute] = STATE(727), - [sym__backslash_escape] = ACTIONS(3691), - [sym_entity_reference] = ACTIONS(3691), - [sym_numeric_character_reference] = ACTIONS(3691), - [anon_sym_LT] = ACTIONS(3693), - [anon_sym_GT] = ACTIONS(3691), - [anon_sym_BANG] = ACTIONS(3691), - [anon_sym_DQUOTE] = ACTIONS(3691), - [anon_sym_POUND] = ACTIONS(3691), - [anon_sym_DOLLAR] = ACTIONS(3691), - [anon_sym_PERCENT] = ACTIONS(3691), - [anon_sym_AMP] = ACTIONS(3693), - [anon_sym_SQUOTE] = ACTIONS(3691), - [anon_sym_STAR] = ACTIONS(3691), - [anon_sym_PLUS] = ACTIONS(3691), - [anon_sym_COMMA] = ACTIONS(3691), - [anon_sym_DASH] = ACTIONS(3693), - [anon_sym_DOT] = ACTIONS(3693), - [anon_sym_SLASH] = ACTIONS(3691), - [anon_sym_COLON] = ACTIONS(3691), - [anon_sym_SEMI] = ACTIONS(3691), - [anon_sym_EQ] = ACTIONS(3691), - [anon_sym_QMARK] = ACTIONS(3691), - [anon_sym_LBRACK] = ACTIONS(3693), - [anon_sym_BSLASH] = ACTIONS(3693), - [anon_sym_CARET] = ACTIONS(3693), - [anon_sym__] = ACTIONS(3691), - [anon_sym_BQUOTE] = ACTIONS(3691), - [anon_sym_LBRACE] = ACTIONS(3701), - [anon_sym_PIPE] = ACTIONS(3691), - [anon_sym_TILDE] = ACTIONS(3691), - [anon_sym_LPAREN] = ACTIONS(3703), - [anon_sym_RPAREN] = ACTIONS(3691), - [sym__newline_token] = ACTIONS(3691), - [anon_sym_CARET_LBRACK] = ACTIONS(3691), - [anon_sym_LBRACK_CARET] = ACTIONS(3691), - [sym_uri_autolink] = ACTIONS(3691), - [sym_email_autolink] = ACTIONS(3691), - [sym__whitespace_ge_2] = ACTIONS(3691), - [aux_sym__whitespace_token1] = ACTIONS(3693), - [sym__word_no_digit] = ACTIONS(3691), - [sym__digits] = ACTIONS(3691), - [anon_sym_DASH_DASH] = ACTIONS(3693), - [anon_sym_DASH_DASH_DASH] = ACTIONS(3691), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3691), - [sym__code_span_start] = ACTIONS(3691), - [sym__emphasis_open_star] = ACTIONS(3691), - [sym__emphasis_open_underscore] = ACTIONS(3691), - [sym__strikeout_open] = ACTIONS(3691), - [sym__latex_span_start] = ACTIONS(3691), - [sym__single_quote_open] = ACTIONS(3691), - [sym__double_quote_open] = ACTIONS(3691), - [sym__superscript_open] = ACTIONS(3691), - [sym__superscript_close] = ACTIONS(3691), - [sym__subscript_open] = ACTIONS(3691), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3691), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3691), - [sym__cite_author_in_text] = ACTIONS(3691), - [sym__cite_suppress_author] = ACTIONS(3691), - [sym__shortcode_open_escaped] = ACTIONS(3691), - [sym__shortcode_open] = ACTIONS(3691), - [sym__unclosed_span] = ACTIONS(3691), + [sym_backslash_escape] = STATE(379), + [sym_commonmark_attribute] = STATE(379), + [sym_code_span] = STATE(379), + [sym_latex_span] = STATE(379), + [sym_insert] = STATE(379), + [sym_delete] = STATE(379), + [sym_highlight] = STATE(379), + [sym_edit_comment] = STATE(379), + [sym_superscript] = STATE(379), + [sym_subscript] = STATE(379), + [sym_strikeout] = STATE(379), + [sym_quoted_span] = STATE(379), + [sym_inline_note] = STATE(379), + [sym_citation] = STATE(379), + [sym_shortcode_escaped] = STATE(379), + [sym_shortcode] = STATE(379), + [sym_note_reference] = STATE(379), + [sym__link_text] = STATE(545), + [sym__link_text_non_empty] = STATE(546), + [sym_inline_link] = STATE(242), + [sym_image] = STATE(379), + [sym__image_inline_link] = STATE(1390), + [sym__image_description] = STATE(2363), + [sym__image_description_non_empty] = STATE(2363), + [sym_hard_line_break] = STATE(379), + [sym__whitespace] = STATE(1385), + [sym__word] = STATE(1385), + [sym__soft_line_break] = STATE(1391), + [sym__inline_base] = STATE(242), + [sym__text_base] = STATE(379), + [sym__inline_element_no_underscore] = STATE(242), + [aux_sym__inline_no_underscore] = STATE(242), + [sym__emphasis_star] = STATE(1168), + [sym__strong_emphasis_star] = STATE(242), + [sym__emphasis_underscore] = STATE(1168), + [sym__strong_emphasis_underscore] = STATE(242), + [aux_sym__inline_base_repeat1] = STATE(379), + [sym__backslash_escape] = ACTIONS(1059), + [sym_entity_reference] = ACTIONS(1061), + [sym_numeric_character_reference] = ACTIONS(1061), + [anon_sym_LT] = ACTIONS(1063), + [anon_sym_GT] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1067), + [anon_sym_DQUOTE] = ACTIONS(1065), + [anon_sym_POUND] = ACTIONS(1065), + [anon_sym_DOLLAR] = ACTIONS(1065), + [anon_sym_PERCENT] = ACTIONS(1065), + [anon_sym_AMP] = ACTIONS(1063), + [anon_sym_SQUOTE] = ACTIONS(1065), + [anon_sym_STAR] = ACTIONS(1065), + [anon_sym_PLUS] = ACTIONS(1065), + [anon_sym_COMMA] = ACTIONS(1065), + [anon_sym_DASH] = ACTIONS(1063), + [anon_sym_DOT] = ACTIONS(1063), + [anon_sym_SLASH] = ACTIONS(1065), + [anon_sym_COLON] = ACTIONS(1065), + [anon_sym_SEMI] = ACTIONS(1065), + [anon_sym_EQ] = ACTIONS(1065), + [anon_sym_QMARK] = ACTIONS(1065), + [anon_sym_LBRACK] = ACTIONS(1069), + [anon_sym_BSLASH] = ACTIONS(1071), + [anon_sym_CARET] = ACTIONS(1063), + [anon_sym__] = ACTIONS(1065), + [anon_sym_BQUOTE] = ACTIONS(1065), + [anon_sym_LBRACE] = ACTIONS(1073), + [anon_sym_PIPE] = ACTIONS(1065), + [anon_sym_TILDE] = ACTIONS(1065), + [anon_sym_LPAREN] = ACTIONS(1065), + [anon_sym_RPAREN] = ACTIONS(1065), + [sym__newline_token] = ACTIONS(1075), + [aux_sym_insert_token1] = ACTIONS(1077), + [aux_sym_delete_token1] = ACTIONS(1079), + [aux_sym_highlight_token1] = ACTIONS(1081), + [aux_sym_edit_comment_token1] = ACTIONS(1083), + [anon_sym_CARET_LBRACK] = ACTIONS(1085), + [anon_sym_LBRACK_CARET] = ACTIONS(1087), + [sym_uri_autolink] = ACTIONS(1061), + [sym_email_autolink] = ACTIONS(1061), + [sym__whitespace_ge_2] = ACTIONS(1089), + [aux_sym__whitespace_token1] = ACTIONS(1091), + [sym__word_no_digit] = ACTIONS(1093), + [sym__digits] = ACTIONS(1093), + [anon_sym_DASH_DASH] = ACTIONS(1095), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1093), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1093), + [sym__code_span_start] = ACTIONS(1097), + [sym__emphasis_open_star] = ACTIONS(1099), + [sym__emphasis_open_underscore] = ACTIONS(1101), + [sym__strikeout_open] = ACTIONS(1105), + [sym__latex_span_start] = ACTIONS(1107), + [sym__single_quote_open] = ACTIONS(1109), + [sym__double_quote_open] = ACTIONS(1111), + [sym__superscript_open] = ACTIONS(1113), + [sym__subscript_open] = ACTIONS(1115), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1117), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1119), + [sym__cite_author_in_text] = ACTIONS(1121), + [sym__cite_suppress_author] = ACTIONS(1123), + [sym__shortcode_open_escaped] = ACTIONS(1125), + [sym__shortcode_open] = ACTIONS(1127), + [sym__unclosed_span] = ACTIONS(1061), }, [STATE(314)] = { - [sym__qmd_attribute] = STATE(728), - [sym_raw_attribute] = STATE(728), - [sym_commonmark_attribute] = STATE(728), - [sym_language_attribute] = STATE(728), - [sym__backslash_escape] = ACTIONS(3697), - [sym_entity_reference] = ACTIONS(3697), - [sym_numeric_character_reference] = ACTIONS(3697), - [anon_sym_LT] = ACTIONS(3699), - [anon_sym_GT] = ACTIONS(3697), - [anon_sym_BANG] = ACTIONS(3697), - [anon_sym_DQUOTE] = ACTIONS(3697), - [anon_sym_POUND] = ACTIONS(3697), - [anon_sym_DOLLAR] = ACTIONS(3697), - [anon_sym_PERCENT] = ACTIONS(3697), - [anon_sym_AMP] = ACTIONS(3699), - [anon_sym_SQUOTE] = ACTIONS(3697), - [anon_sym_STAR] = ACTIONS(3697), - [anon_sym_PLUS] = ACTIONS(3697), - [anon_sym_COMMA] = ACTIONS(3697), - [anon_sym_DASH] = ACTIONS(3699), - [anon_sym_DOT] = ACTIONS(3699), - [anon_sym_SLASH] = ACTIONS(3697), - [anon_sym_COLON] = ACTIONS(3697), - [anon_sym_SEMI] = ACTIONS(3697), - [anon_sym_EQ] = ACTIONS(3697), - [anon_sym_QMARK] = ACTIONS(3697), - [anon_sym_LBRACK] = ACTIONS(3699), - [anon_sym_BSLASH] = ACTIONS(3699), - [anon_sym_CARET] = ACTIONS(3699), - [anon_sym__] = ACTIONS(3697), - [anon_sym_BQUOTE] = ACTIONS(3697), - [anon_sym_LBRACE] = ACTIONS(3701), - [anon_sym_PIPE] = ACTIONS(3697), - [anon_sym_TILDE] = ACTIONS(3697), - [anon_sym_LPAREN] = ACTIONS(3697), - [anon_sym_RPAREN] = ACTIONS(3697), - [sym__newline_token] = ACTIONS(3697), - [anon_sym_CARET_LBRACK] = ACTIONS(3697), - [anon_sym_LBRACK_CARET] = ACTIONS(3697), - [sym_uri_autolink] = ACTIONS(3697), - [sym_email_autolink] = ACTIONS(3697), - [sym__whitespace_ge_2] = ACTIONS(3697), - [aux_sym__whitespace_token1] = ACTIONS(3699), - [sym__word_no_digit] = ACTIONS(3697), - [sym__digits] = ACTIONS(3697), - [anon_sym_DASH_DASH] = ACTIONS(3699), - [anon_sym_DASH_DASH_DASH] = ACTIONS(3697), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3697), - [sym__code_span_start] = ACTIONS(3697), - [sym__emphasis_open_star] = ACTIONS(3697), - [sym__emphasis_open_underscore] = ACTIONS(3697), - [sym__strikeout_open] = ACTIONS(3697), - [sym__latex_span_start] = ACTIONS(3697), - [sym__single_quote_open] = ACTIONS(3697), - [sym__double_quote_open] = ACTIONS(3697), - [sym__superscript_open] = ACTIONS(3697), - [sym__superscript_close] = ACTIONS(3697), - [sym__subscript_open] = ACTIONS(3697), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3697), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3697), - [sym__cite_author_in_text] = ACTIONS(3697), - [sym__cite_suppress_author] = ACTIONS(3697), - [sym__shortcode_open_escaped] = ACTIONS(3697), - [sym__shortcode_open] = ACTIONS(3697), - [sym__unclosed_span] = ACTIONS(3697), - }, + [sym_backslash_escape] = STATE(373), + [sym_commonmark_attribute] = STATE(373), + [sym_code_span] = STATE(373), + [sym_latex_span] = STATE(373), + [sym_insert] = STATE(373), + [sym_delete] = STATE(373), + [sym_highlight] = STATE(373), + [sym_edit_comment] = STATE(373), + [sym_superscript] = STATE(373), + [sym_subscript] = STATE(373), + [sym_strikeout] = STATE(373), + [sym_quoted_span] = STATE(373), + [sym_inline_note] = STATE(373), + [sym_citation] = STATE(373), + [sym_shortcode_escaped] = STATE(373), + [sym_shortcode] = STATE(373), + [sym_note_reference] = STATE(373), + [sym__link_text] = STATE(522), + [sym__link_text_non_empty] = STATE(523), + [sym_inline_link] = STATE(267), + [sym_image] = STATE(373), + [sym__image_inline_link] = STATE(1265), + [sym__image_description] = STATE(2331), + [sym__image_description_non_empty] = STATE(2331), + [sym_hard_line_break] = STATE(373), + [sym__whitespace] = STATE(1262), + [sym__word] = STATE(1262), + [sym__soft_line_break] = STATE(1267), + [sym__inline_base] = STATE(267), + [sym__text_base] = STATE(373), + [sym__inline_element_no_star] = STATE(267), + [aux_sym__inline_no_star] = STATE(267), + [sym__emphasis_star] = STATE(1147), + [sym__strong_emphasis_star] = STATE(267), + [sym__emphasis_underscore] = STATE(1147), + [sym__strong_emphasis_underscore] = STATE(267), + [aux_sym__inline_base_repeat1] = STATE(373), + [sym__backslash_escape] = ACTIONS(885), + [sym_entity_reference] = ACTIONS(887), + [sym_numeric_character_reference] = ACTIONS(887), + [anon_sym_LT] = ACTIONS(889), + [anon_sym_GT] = ACTIONS(891), + [anon_sym_BANG] = ACTIONS(893), + [anon_sym_DQUOTE] = ACTIONS(891), + [anon_sym_POUND] = ACTIONS(891), + [anon_sym_DOLLAR] = ACTIONS(891), + [anon_sym_PERCENT] = ACTIONS(891), + [anon_sym_AMP] = ACTIONS(889), + [anon_sym_SQUOTE] = ACTIONS(891), + [anon_sym_STAR] = ACTIONS(891), + [anon_sym_PLUS] = ACTIONS(891), + [anon_sym_COMMA] = ACTIONS(891), + [anon_sym_DASH] = ACTIONS(889), + [anon_sym_DOT] = ACTIONS(889), + [anon_sym_SLASH] = ACTIONS(891), + [anon_sym_COLON] = ACTIONS(891), + [anon_sym_SEMI] = ACTIONS(891), + [anon_sym_EQ] = ACTIONS(891), + [anon_sym_QMARK] = ACTIONS(891), + [anon_sym_LBRACK] = ACTIONS(895), + [anon_sym_BSLASH] = ACTIONS(897), + [anon_sym_CARET] = ACTIONS(889), + [anon_sym__] = ACTIONS(891), + [anon_sym_BQUOTE] = ACTIONS(891), + [anon_sym_LBRACE] = ACTIONS(899), + [anon_sym_PIPE] = ACTIONS(891), + [anon_sym_TILDE] = ACTIONS(891), + [anon_sym_LPAREN] = ACTIONS(891), + [anon_sym_RPAREN] = ACTIONS(891), + [sym__newline_token] = ACTIONS(901), + [aux_sym_insert_token1] = ACTIONS(903), + [aux_sym_delete_token1] = ACTIONS(905), + [aux_sym_highlight_token1] = ACTIONS(907), + [aux_sym_edit_comment_token1] = ACTIONS(909), + [anon_sym_CARET_LBRACK] = ACTIONS(911), + [anon_sym_LBRACK_CARET] = ACTIONS(913), + [sym_uri_autolink] = ACTIONS(887), + [sym_email_autolink] = ACTIONS(887), + [sym__whitespace_ge_2] = ACTIONS(915), + [aux_sym__whitespace_token1] = ACTIONS(917), + [sym__word_no_digit] = ACTIONS(919), + [sym__digits] = ACTIONS(919), + [anon_sym_DASH_DASH] = ACTIONS(921), + [anon_sym_DASH_DASH_DASH] = ACTIONS(919), + [anon_sym_DOT_DOT_DOT] = ACTIONS(919), + [sym__code_span_start] = ACTIONS(923), + [sym__emphasis_open_star] = ACTIONS(925), + [sym__emphasis_open_underscore] = ACTIONS(927), + [sym__strikeout_open] = ACTIONS(931), + [sym__latex_span_start] = ACTIONS(933), + [sym__single_quote_open] = ACTIONS(935), + [sym__double_quote_open] = ACTIONS(937), + [sym__superscript_open] = ACTIONS(939), + [sym__subscript_open] = ACTIONS(941), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(943), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(945), + [sym__cite_author_in_text] = ACTIONS(947), + [sym__cite_suppress_author] = ACTIONS(949), + [sym__shortcode_open_escaped] = ACTIONS(951), + [sym__shortcode_open] = ACTIONS(953), + [sym__unclosed_span] = ACTIONS(887), + }, [STATE(315)] = { - [sym__qmd_attribute] = STATE(538), - [sym_raw_attribute] = STATE(538), - [sym_commonmark_attribute] = STATE(538), - [sym_language_attribute] = STATE(538), - [ts_builtin_sym_end] = ACTIONS(3679), - [sym__backslash_escape] = ACTIONS(3679), - [sym_entity_reference] = ACTIONS(3679), - [sym_numeric_character_reference] = ACTIONS(3679), - [anon_sym_LT] = ACTIONS(3681), - [anon_sym_GT] = ACTIONS(3679), - [anon_sym_BANG] = ACTIONS(3679), - [anon_sym_DQUOTE] = ACTIONS(3679), - [anon_sym_POUND] = ACTIONS(3679), - [anon_sym_DOLLAR] = ACTIONS(3679), - [anon_sym_PERCENT] = ACTIONS(3679), - [anon_sym_AMP] = ACTIONS(3681), - [anon_sym_SQUOTE] = ACTIONS(3679), - [anon_sym_STAR] = ACTIONS(3679), - [anon_sym_PLUS] = ACTIONS(3679), - [anon_sym_COMMA] = ACTIONS(3679), - [anon_sym_DASH] = ACTIONS(3681), - [anon_sym_DOT] = ACTIONS(3681), - [anon_sym_SLASH] = ACTIONS(3679), - [anon_sym_COLON] = ACTIONS(3679), - [anon_sym_SEMI] = ACTIONS(3679), - [anon_sym_EQ] = ACTIONS(3679), - [anon_sym_QMARK] = ACTIONS(3679), - [anon_sym_LBRACK] = ACTIONS(3681), - [anon_sym_BSLASH] = ACTIONS(3681), - [anon_sym_CARET] = ACTIONS(3681), - [anon_sym__] = ACTIONS(3679), - [anon_sym_BQUOTE] = ACTIONS(3679), - [anon_sym_LBRACE] = ACTIONS(3633), - [anon_sym_PIPE] = ACTIONS(3679), - [anon_sym_TILDE] = ACTIONS(3679), - [anon_sym_LPAREN] = ACTIONS(3679), - [anon_sym_RPAREN] = ACTIONS(3679), - [sym__newline_token] = ACTIONS(3679), - [anon_sym_CARET_LBRACK] = ACTIONS(3679), - [anon_sym_LBRACK_CARET] = ACTIONS(3679), - [sym_uri_autolink] = ACTIONS(3679), - [sym_email_autolink] = ACTIONS(3679), - [sym__whitespace_ge_2] = ACTIONS(3679), - [aux_sym__whitespace_token1] = ACTIONS(3681), - [sym__word_no_digit] = ACTIONS(3679), - [sym__digits] = ACTIONS(3679), - [anon_sym_DASH_DASH] = ACTIONS(3681), - [anon_sym_DASH_DASH_DASH] = ACTIONS(3679), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3679), - [sym__code_span_start] = ACTIONS(3679), - [sym__emphasis_open_star] = ACTIONS(3679), - [sym__emphasis_open_underscore] = ACTIONS(3679), - [sym__strikeout_open] = ACTIONS(3679), - [sym__latex_span_start] = ACTIONS(3679), - [sym__single_quote_open] = ACTIONS(3679), - [sym__double_quote_open] = ACTIONS(3679), - [sym__superscript_open] = ACTIONS(3679), - [sym__subscript_open] = ACTIONS(3679), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3679), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3679), - [sym__cite_author_in_text] = ACTIONS(3679), - [sym__cite_suppress_author] = ACTIONS(3679), - [sym__shortcode_open_escaped] = ACTIONS(3679), - [sym__shortcode_open] = ACTIONS(3679), - [sym__unclosed_span] = ACTIONS(3679), + [sym_backslash_escape] = STATE(379), + [sym_commonmark_attribute] = STATE(379), + [sym_code_span] = STATE(379), + [sym_latex_span] = STATE(379), + [sym_insert] = STATE(379), + [sym_delete] = STATE(379), + [sym_highlight] = STATE(379), + [sym_edit_comment] = STATE(379), + [sym_superscript] = STATE(379), + [sym_subscript] = STATE(379), + [sym_strikeout] = STATE(379), + [sym_quoted_span] = STATE(379), + [sym_inline_note] = STATE(379), + [sym_citation] = STATE(379), + [sym_shortcode_escaped] = STATE(379), + [sym_shortcode] = STATE(379), + [sym_note_reference] = STATE(379), + [sym__link_text] = STATE(545), + [sym__link_text_non_empty] = STATE(546), + [sym_inline_link] = STATE(268), + [sym_image] = STATE(379), + [sym__image_inline_link] = STATE(1390), + [sym__image_description] = STATE(2363), + [sym__image_description_non_empty] = STATE(2363), + [sym_hard_line_break] = STATE(379), + [sym__whitespace] = STATE(1385), + [sym__word] = STATE(1385), + [sym__soft_line_break] = STATE(1391), + [sym__inline_base] = STATE(268), + [sym__text_base] = STATE(379), + [sym__inline_element_no_underscore] = STATE(268), + [aux_sym__inline_no_underscore] = STATE(268), + [sym__emphasis_star] = STATE(1168), + [sym__strong_emphasis_star] = STATE(268), + [sym__emphasis_underscore] = STATE(1168), + [sym__strong_emphasis_underscore] = STATE(268), + [aux_sym__inline_base_repeat1] = STATE(379), + [sym__backslash_escape] = ACTIONS(1059), + [sym_entity_reference] = ACTIONS(1061), + [sym_numeric_character_reference] = ACTIONS(1061), + [anon_sym_LT] = ACTIONS(1063), + [anon_sym_GT] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1067), + [anon_sym_DQUOTE] = ACTIONS(1065), + [anon_sym_POUND] = ACTIONS(1065), + [anon_sym_DOLLAR] = ACTIONS(1065), + [anon_sym_PERCENT] = ACTIONS(1065), + [anon_sym_AMP] = ACTIONS(1063), + [anon_sym_SQUOTE] = ACTIONS(1065), + [anon_sym_STAR] = ACTIONS(1065), + [anon_sym_PLUS] = ACTIONS(1065), + [anon_sym_COMMA] = ACTIONS(1065), + [anon_sym_DASH] = ACTIONS(1063), + [anon_sym_DOT] = ACTIONS(1063), + [anon_sym_SLASH] = ACTIONS(1065), + [anon_sym_COLON] = ACTIONS(1065), + [anon_sym_SEMI] = ACTIONS(1065), + [anon_sym_EQ] = ACTIONS(1065), + [anon_sym_QMARK] = ACTIONS(1065), + [anon_sym_LBRACK] = ACTIONS(1069), + [anon_sym_BSLASH] = ACTIONS(1071), + [anon_sym_CARET] = ACTIONS(1063), + [anon_sym__] = ACTIONS(1065), + [anon_sym_BQUOTE] = ACTIONS(1065), + [anon_sym_LBRACE] = ACTIONS(1073), + [anon_sym_PIPE] = ACTIONS(1065), + [anon_sym_TILDE] = ACTIONS(1065), + [anon_sym_LPAREN] = ACTIONS(1065), + [anon_sym_RPAREN] = ACTIONS(1065), + [sym__newline_token] = ACTIONS(1075), + [aux_sym_insert_token1] = ACTIONS(1077), + [aux_sym_delete_token1] = ACTIONS(1079), + [aux_sym_highlight_token1] = ACTIONS(1081), + [aux_sym_edit_comment_token1] = ACTIONS(1083), + [anon_sym_CARET_LBRACK] = ACTIONS(1085), + [anon_sym_LBRACK_CARET] = ACTIONS(1087), + [sym_uri_autolink] = ACTIONS(1061), + [sym_email_autolink] = ACTIONS(1061), + [sym__whitespace_ge_2] = ACTIONS(1089), + [aux_sym__whitespace_token1] = ACTIONS(1091), + [sym__word_no_digit] = ACTIONS(1093), + [sym__digits] = ACTIONS(1093), + [anon_sym_DASH_DASH] = ACTIONS(1095), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1093), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1093), + [sym__code_span_start] = ACTIONS(1097), + [sym__emphasis_open_star] = ACTIONS(1099), + [sym__emphasis_open_underscore] = ACTIONS(1101), + [sym__strikeout_open] = ACTIONS(1105), + [sym__latex_span_start] = ACTIONS(1107), + [sym__single_quote_open] = ACTIONS(1109), + [sym__double_quote_open] = ACTIONS(1111), + [sym__superscript_open] = ACTIONS(1113), + [sym__subscript_open] = ACTIONS(1115), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1117), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1119), + [sym__cite_author_in_text] = ACTIONS(1121), + [sym__cite_suppress_author] = ACTIONS(1123), + [sym__shortcode_open_escaped] = ACTIONS(1125), + [sym__shortcode_open] = ACTIONS(1127), + [sym__unclosed_span] = ACTIONS(1061), }, [STATE(316)] = { - [sym__qmd_attribute] = STATE(554), - [sym_raw_attribute] = STATE(554), - [sym_commonmark_attribute] = STATE(554), - [sym_language_attribute] = STATE(554), - [ts_builtin_sym_end] = ACTIONS(3683), - [sym__backslash_escape] = ACTIONS(3683), - [sym_entity_reference] = ACTIONS(3683), - [sym_numeric_character_reference] = ACTIONS(3683), - [anon_sym_LT] = ACTIONS(3685), - [anon_sym_GT] = ACTIONS(3683), - [anon_sym_BANG] = ACTIONS(3683), - [anon_sym_DQUOTE] = ACTIONS(3683), - [anon_sym_POUND] = ACTIONS(3683), - [anon_sym_DOLLAR] = ACTIONS(3683), - [anon_sym_PERCENT] = ACTIONS(3683), - [anon_sym_AMP] = ACTIONS(3685), - [anon_sym_SQUOTE] = ACTIONS(3683), - [anon_sym_STAR] = ACTIONS(3683), - [anon_sym_PLUS] = ACTIONS(3683), - [anon_sym_COMMA] = ACTIONS(3683), - [anon_sym_DASH] = ACTIONS(3685), - [anon_sym_DOT] = ACTIONS(3685), - [anon_sym_SLASH] = ACTIONS(3683), - [anon_sym_COLON] = ACTIONS(3683), - [anon_sym_SEMI] = ACTIONS(3683), - [anon_sym_EQ] = ACTIONS(3683), - [anon_sym_QMARK] = ACTIONS(3683), - [anon_sym_LBRACK] = ACTIONS(3685), - [anon_sym_BSLASH] = ACTIONS(3685), - [anon_sym_CARET] = ACTIONS(3685), - [anon_sym__] = ACTIONS(3683), - [anon_sym_BQUOTE] = ACTIONS(3683), - [anon_sym_LBRACE] = ACTIONS(3633), - [anon_sym_PIPE] = ACTIONS(3683), - [anon_sym_TILDE] = ACTIONS(3683), - [anon_sym_LPAREN] = ACTIONS(3683), - [anon_sym_RPAREN] = ACTIONS(3683), - [sym__newline_token] = ACTIONS(3683), - [anon_sym_CARET_LBRACK] = ACTIONS(3683), - [anon_sym_LBRACK_CARET] = ACTIONS(3683), - [sym_uri_autolink] = ACTIONS(3683), - [sym_email_autolink] = ACTIONS(3683), - [sym__whitespace_ge_2] = ACTIONS(3683), - [aux_sym__whitespace_token1] = ACTIONS(3685), - [sym__word_no_digit] = ACTIONS(3683), - [sym__digits] = ACTIONS(3683), - [anon_sym_DASH_DASH] = ACTIONS(3685), - [anon_sym_DASH_DASH_DASH] = ACTIONS(3683), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3683), - [sym__code_span_start] = ACTIONS(3683), - [sym__emphasis_open_star] = ACTIONS(3683), - [sym__emphasis_open_underscore] = ACTIONS(3683), - [sym__strikeout_open] = ACTIONS(3683), - [sym__latex_span_start] = ACTIONS(3683), - [sym__single_quote_open] = ACTIONS(3683), - [sym__double_quote_open] = ACTIONS(3683), - [sym__superscript_open] = ACTIONS(3683), - [sym__subscript_open] = ACTIONS(3683), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3683), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3683), - [sym__cite_author_in_text] = ACTIONS(3683), - [sym__cite_suppress_author] = ACTIONS(3683), - [sym__shortcode_open_escaped] = ACTIONS(3683), - [sym__shortcode_open] = ACTIONS(3683), - [sym__unclosed_span] = ACTIONS(3683), + [sym_backslash_escape] = STATE(373), + [sym_commonmark_attribute] = STATE(373), + [sym_code_span] = STATE(373), + [sym_latex_span] = STATE(373), + [sym_insert] = STATE(373), + [sym_delete] = STATE(373), + [sym_highlight] = STATE(373), + [sym_edit_comment] = STATE(373), + [sym_superscript] = STATE(373), + [sym_subscript] = STATE(373), + [sym_strikeout] = STATE(373), + [sym_quoted_span] = STATE(373), + [sym_inline_note] = STATE(373), + [sym_citation] = STATE(373), + [sym_shortcode_escaped] = STATE(373), + [sym_shortcode] = STATE(373), + [sym_note_reference] = STATE(373), + [sym__link_text] = STATE(522), + [sym__link_text_non_empty] = STATE(523), + [sym_inline_link] = STATE(293), + [sym_image] = STATE(373), + [sym__image_inline_link] = STATE(1265), + [sym__image_description] = STATE(2331), + [sym__image_description_non_empty] = STATE(2331), + [sym_hard_line_break] = STATE(373), + [sym__whitespace] = STATE(1262), + [sym__word] = STATE(1262), + [sym__soft_line_break] = STATE(1267), + [sym__inline_base] = STATE(293), + [sym__text_base] = STATE(373), + [sym__inline_element_no_star] = STATE(293), + [aux_sym__inline_no_star] = STATE(293), + [sym__emphasis_star] = STATE(1147), + [sym__strong_emphasis_star] = STATE(293), + [sym__emphasis_underscore] = STATE(1147), + [sym__strong_emphasis_underscore] = STATE(293), + [aux_sym__inline_base_repeat1] = STATE(373), + [sym__backslash_escape] = ACTIONS(885), + [sym_entity_reference] = ACTIONS(887), + [sym_numeric_character_reference] = ACTIONS(887), + [anon_sym_LT] = ACTIONS(889), + [anon_sym_GT] = ACTIONS(891), + [anon_sym_BANG] = ACTIONS(893), + [anon_sym_DQUOTE] = ACTIONS(891), + [anon_sym_POUND] = ACTIONS(891), + [anon_sym_DOLLAR] = ACTIONS(891), + [anon_sym_PERCENT] = ACTIONS(891), + [anon_sym_AMP] = ACTIONS(889), + [anon_sym_SQUOTE] = ACTIONS(891), + [anon_sym_STAR] = ACTIONS(891), + [anon_sym_PLUS] = ACTIONS(891), + [anon_sym_COMMA] = ACTIONS(891), + [anon_sym_DASH] = ACTIONS(889), + [anon_sym_DOT] = ACTIONS(889), + [anon_sym_SLASH] = ACTIONS(891), + [anon_sym_COLON] = ACTIONS(891), + [anon_sym_SEMI] = ACTIONS(891), + [anon_sym_EQ] = ACTIONS(891), + [anon_sym_QMARK] = ACTIONS(891), + [anon_sym_LBRACK] = ACTIONS(895), + [anon_sym_BSLASH] = ACTIONS(897), + [anon_sym_CARET] = ACTIONS(889), + [anon_sym__] = ACTIONS(891), + [anon_sym_BQUOTE] = ACTIONS(891), + [anon_sym_LBRACE] = ACTIONS(899), + [anon_sym_PIPE] = ACTIONS(891), + [anon_sym_TILDE] = ACTIONS(891), + [anon_sym_LPAREN] = ACTIONS(891), + [anon_sym_RPAREN] = ACTIONS(891), + [sym__newline_token] = ACTIONS(901), + [aux_sym_insert_token1] = ACTIONS(903), + [aux_sym_delete_token1] = ACTIONS(905), + [aux_sym_highlight_token1] = ACTIONS(907), + [aux_sym_edit_comment_token1] = ACTIONS(909), + [anon_sym_CARET_LBRACK] = ACTIONS(911), + [anon_sym_LBRACK_CARET] = ACTIONS(913), + [sym_uri_autolink] = ACTIONS(887), + [sym_email_autolink] = ACTIONS(887), + [sym__whitespace_ge_2] = ACTIONS(915), + [aux_sym__whitespace_token1] = ACTIONS(917), + [sym__word_no_digit] = ACTIONS(919), + [sym__digits] = ACTIONS(919), + [anon_sym_DASH_DASH] = ACTIONS(921), + [anon_sym_DASH_DASH_DASH] = ACTIONS(919), + [anon_sym_DOT_DOT_DOT] = ACTIONS(919), + [sym__code_span_start] = ACTIONS(923), + [sym__emphasis_open_star] = ACTIONS(925), + [sym__emphasis_open_underscore] = ACTIONS(927), + [sym__strikeout_open] = ACTIONS(931), + [sym__latex_span_start] = ACTIONS(933), + [sym__single_quote_open] = ACTIONS(935), + [sym__double_quote_open] = ACTIONS(937), + [sym__superscript_open] = ACTIONS(939), + [sym__subscript_open] = ACTIONS(941), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(943), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(945), + [sym__cite_author_in_text] = ACTIONS(947), + [sym__cite_suppress_author] = ACTIONS(949), + [sym__shortcode_open_escaped] = ACTIONS(951), + [sym__shortcode_open] = ACTIONS(953), + [sym__unclosed_span] = ACTIONS(887), }, [STATE(317)] = { - [sym__qmd_attribute] = STATE(556), - [sym_raw_attribute] = STATE(556), - [sym_commonmark_attribute] = STATE(556), - [sym_language_attribute] = STATE(556), - [ts_builtin_sym_end] = ACTIONS(3687), - [sym__backslash_escape] = ACTIONS(3687), - [sym_entity_reference] = ACTIONS(3687), - [sym_numeric_character_reference] = ACTIONS(3687), - [anon_sym_LT] = ACTIONS(3689), - [anon_sym_GT] = ACTIONS(3687), - [anon_sym_BANG] = ACTIONS(3687), - [anon_sym_DQUOTE] = ACTIONS(3687), - [anon_sym_POUND] = ACTIONS(3687), - [anon_sym_DOLLAR] = ACTIONS(3687), - [anon_sym_PERCENT] = ACTIONS(3687), - [anon_sym_AMP] = ACTIONS(3689), - [anon_sym_SQUOTE] = ACTIONS(3687), - [anon_sym_STAR] = ACTIONS(3687), - [anon_sym_PLUS] = ACTIONS(3687), - [anon_sym_COMMA] = ACTIONS(3687), - [anon_sym_DASH] = ACTIONS(3689), - [anon_sym_DOT] = ACTIONS(3689), - [anon_sym_SLASH] = ACTIONS(3687), - [anon_sym_COLON] = ACTIONS(3687), - [anon_sym_SEMI] = ACTIONS(3687), - [anon_sym_EQ] = ACTIONS(3687), - [anon_sym_QMARK] = ACTIONS(3687), - [anon_sym_LBRACK] = ACTIONS(3689), - [anon_sym_BSLASH] = ACTIONS(3689), - [anon_sym_CARET] = ACTIONS(3689), - [anon_sym__] = ACTIONS(3687), - [anon_sym_BQUOTE] = ACTIONS(3687), - [anon_sym_LBRACE] = ACTIONS(3633), - [anon_sym_PIPE] = ACTIONS(3687), - [anon_sym_TILDE] = ACTIONS(3687), - [anon_sym_LPAREN] = ACTIONS(3687), - [anon_sym_RPAREN] = ACTIONS(3687), - [sym__newline_token] = ACTIONS(3687), - [anon_sym_CARET_LBRACK] = ACTIONS(3687), - [anon_sym_LBRACK_CARET] = ACTIONS(3687), - [sym_uri_autolink] = ACTIONS(3687), - [sym_email_autolink] = ACTIONS(3687), - [sym__whitespace_ge_2] = ACTIONS(3687), - [aux_sym__whitespace_token1] = ACTIONS(3689), - [sym__word_no_digit] = ACTIONS(3687), - [sym__digits] = ACTIONS(3687), - [anon_sym_DASH_DASH] = ACTIONS(3689), - [anon_sym_DASH_DASH_DASH] = ACTIONS(3687), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3687), - [sym__code_span_start] = ACTIONS(3687), - [sym__emphasis_open_star] = ACTIONS(3687), - [sym__emphasis_open_underscore] = ACTIONS(3687), - [sym__strikeout_open] = ACTIONS(3687), - [sym__latex_span_start] = ACTIONS(3687), - [sym__single_quote_open] = ACTIONS(3687), - [sym__double_quote_open] = ACTIONS(3687), - [sym__superscript_open] = ACTIONS(3687), - [sym__subscript_open] = ACTIONS(3687), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3687), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3687), - [sym__cite_author_in_text] = ACTIONS(3687), - [sym__cite_suppress_author] = ACTIONS(3687), - [sym__shortcode_open_escaped] = ACTIONS(3687), - [sym__shortcode_open] = ACTIONS(3687), - [sym__unclosed_span] = ACTIONS(3687), + [sym_backslash_escape] = STATE(379), + [sym_commonmark_attribute] = STATE(379), + [sym_code_span] = STATE(379), + [sym_latex_span] = STATE(379), + [sym_insert] = STATE(379), + [sym_delete] = STATE(379), + [sym_highlight] = STATE(379), + [sym_edit_comment] = STATE(379), + [sym_superscript] = STATE(379), + [sym_subscript] = STATE(379), + [sym_strikeout] = STATE(379), + [sym_quoted_span] = STATE(379), + [sym_inline_note] = STATE(379), + [sym_citation] = STATE(379), + [sym_shortcode_escaped] = STATE(379), + [sym_shortcode] = STATE(379), + [sym_note_reference] = STATE(379), + [sym__link_text] = STATE(545), + [sym__link_text_non_empty] = STATE(546), + [sym_inline_link] = STATE(294), + [sym_image] = STATE(379), + [sym__image_inline_link] = STATE(1390), + [sym__image_description] = STATE(2363), + [sym__image_description_non_empty] = STATE(2363), + [sym_hard_line_break] = STATE(379), + [sym__whitespace] = STATE(1385), + [sym__word] = STATE(1385), + [sym__soft_line_break] = STATE(1391), + [sym__inline_base] = STATE(294), + [sym__text_base] = STATE(379), + [sym__inline_element_no_underscore] = STATE(294), + [aux_sym__inline_no_underscore] = STATE(294), + [sym__emphasis_star] = STATE(1168), + [sym__strong_emphasis_star] = STATE(294), + [sym__emphasis_underscore] = STATE(1168), + [sym__strong_emphasis_underscore] = STATE(294), + [aux_sym__inline_base_repeat1] = STATE(379), + [sym__backslash_escape] = ACTIONS(1059), + [sym_entity_reference] = ACTIONS(1061), + [sym_numeric_character_reference] = ACTIONS(1061), + [anon_sym_LT] = ACTIONS(1063), + [anon_sym_GT] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1067), + [anon_sym_DQUOTE] = ACTIONS(1065), + [anon_sym_POUND] = ACTIONS(1065), + [anon_sym_DOLLAR] = ACTIONS(1065), + [anon_sym_PERCENT] = ACTIONS(1065), + [anon_sym_AMP] = ACTIONS(1063), + [anon_sym_SQUOTE] = ACTIONS(1065), + [anon_sym_STAR] = ACTIONS(1065), + [anon_sym_PLUS] = ACTIONS(1065), + [anon_sym_COMMA] = ACTIONS(1065), + [anon_sym_DASH] = ACTIONS(1063), + [anon_sym_DOT] = ACTIONS(1063), + [anon_sym_SLASH] = ACTIONS(1065), + [anon_sym_COLON] = ACTIONS(1065), + [anon_sym_SEMI] = ACTIONS(1065), + [anon_sym_EQ] = ACTIONS(1065), + [anon_sym_QMARK] = ACTIONS(1065), + [anon_sym_LBRACK] = ACTIONS(1069), + [anon_sym_BSLASH] = ACTIONS(1071), + [anon_sym_CARET] = ACTIONS(1063), + [anon_sym__] = ACTIONS(1065), + [anon_sym_BQUOTE] = ACTIONS(1065), + [anon_sym_LBRACE] = ACTIONS(1073), + [anon_sym_PIPE] = ACTIONS(1065), + [anon_sym_TILDE] = ACTIONS(1065), + [anon_sym_LPAREN] = ACTIONS(1065), + [anon_sym_RPAREN] = ACTIONS(1065), + [sym__newline_token] = ACTIONS(1075), + [aux_sym_insert_token1] = ACTIONS(1077), + [aux_sym_delete_token1] = ACTIONS(1079), + [aux_sym_highlight_token1] = ACTIONS(1081), + [aux_sym_edit_comment_token1] = ACTIONS(1083), + [anon_sym_CARET_LBRACK] = ACTIONS(1085), + [anon_sym_LBRACK_CARET] = ACTIONS(1087), + [sym_uri_autolink] = ACTIONS(1061), + [sym_email_autolink] = ACTIONS(1061), + [sym__whitespace_ge_2] = ACTIONS(1089), + [aux_sym__whitespace_token1] = ACTIONS(1091), + [sym__word_no_digit] = ACTIONS(1093), + [sym__digits] = ACTIONS(1093), + [anon_sym_DASH_DASH] = ACTIONS(1095), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1093), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1093), + [sym__code_span_start] = ACTIONS(1097), + [sym__emphasis_open_star] = ACTIONS(1099), + [sym__emphasis_open_underscore] = ACTIONS(1101), + [sym__strikeout_open] = ACTIONS(1105), + [sym__latex_span_start] = ACTIONS(1107), + [sym__single_quote_open] = ACTIONS(1109), + [sym__double_quote_open] = ACTIONS(1111), + [sym__superscript_open] = ACTIONS(1113), + [sym__subscript_open] = ACTIONS(1115), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1117), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1119), + [sym__cite_author_in_text] = ACTIONS(1121), + [sym__cite_suppress_author] = ACTIONS(1123), + [sym__shortcode_open_escaped] = ACTIONS(1125), + [sym__shortcode_open] = ACTIONS(1127), + [sym__unclosed_span] = ACTIONS(1061), }, [STATE(318)] = { - [sym__qmd_attribute] = STATE(657), - [sym_raw_attribute] = STATE(657), - [sym_commonmark_attribute] = STATE(657), - [sym_language_attribute] = STATE(657), - [sym__backslash_escape] = ACTIONS(3643), - [sym_entity_reference] = ACTIONS(3643), - [sym_numeric_character_reference] = ACTIONS(3643), - [anon_sym_LT] = ACTIONS(3645), - [anon_sym_GT] = ACTIONS(3643), - [anon_sym_BANG] = ACTIONS(3643), - [anon_sym_DQUOTE] = ACTIONS(3643), - [anon_sym_POUND] = ACTIONS(3643), - [anon_sym_DOLLAR] = ACTIONS(3643), - [anon_sym_PERCENT] = ACTIONS(3643), - [anon_sym_AMP] = ACTIONS(3645), - [anon_sym_SQUOTE] = ACTIONS(3643), - [anon_sym_STAR] = ACTIONS(3643), - [anon_sym_PLUS] = ACTIONS(3643), - [anon_sym_COMMA] = ACTIONS(3643), - [anon_sym_DASH] = ACTIONS(3645), - [anon_sym_DOT] = ACTIONS(3645), - [anon_sym_SLASH] = ACTIONS(3643), - [anon_sym_COLON] = ACTIONS(3643), - [anon_sym_SEMI] = ACTIONS(3643), - [anon_sym_EQ] = ACTIONS(3643), - [anon_sym_QMARK] = ACTIONS(3643), - [anon_sym_LBRACK] = ACTIONS(3645), - [anon_sym_BSLASH] = ACTIONS(3645), - [anon_sym_CARET] = ACTIONS(3645), - [anon_sym__] = ACTIONS(3643), - [anon_sym_BQUOTE] = ACTIONS(3643), - [anon_sym_LBRACE] = ACTIONS(3641), - [anon_sym_PIPE] = ACTIONS(3643), - [anon_sym_TILDE] = ACTIONS(3643), - [anon_sym_LPAREN] = ACTIONS(3643), - [anon_sym_RPAREN] = ACTIONS(3643), - [sym__newline_token] = ACTIONS(3643), - [anon_sym_CARET_LBRACK] = ACTIONS(3643), - [anon_sym_LBRACK_CARET] = ACTIONS(3643), - [sym_uri_autolink] = ACTIONS(3643), - [sym_email_autolink] = ACTIONS(3643), - [sym__whitespace_ge_2] = ACTIONS(3643), - [aux_sym__whitespace_token1] = ACTIONS(3645), - [sym__word_no_digit] = ACTIONS(3643), - [sym__digits] = ACTIONS(3643), - [anon_sym_DASH_DASH] = ACTIONS(3645), - [anon_sym_DASH_DASH_DASH] = ACTIONS(3643), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3643), - [sym__code_span_start] = ACTIONS(3643), - [sym__emphasis_open_star] = ACTIONS(3643), - [sym__emphasis_open_underscore] = ACTIONS(3643), - [sym__strikeout_open] = ACTIONS(3643), - [sym__latex_span_start] = ACTIONS(3643), - [sym__single_quote_open] = ACTIONS(3643), - [sym__double_quote_open] = ACTIONS(3643), - [sym__double_quote_close] = ACTIONS(3643), - [sym__superscript_open] = ACTIONS(3643), - [sym__subscript_open] = ACTIONS(3643), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3643), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3643), - [sym__cite_author_in_text] = ACTIONS(3643), - [sym__cite_suppress_author] = ACTIONS(3643), - [sym__shortcode_open_escaped] = ACTIONS(3643), - [sym__shortcode_open] = ACTIONS(3643), - [sym__unclosed_span] = ACTIONS(3643), + [sym_backslash_escape] = STATE(379), + [sym_commonmark_attribute] = STATE(379), + [sym_code_span] = STATE(379), + [sym_latex_span] = STATE(379), + [sym_insert] = STATE(379), + [sym_delete] = STATE(379), + [sym_highlight] = STATE(379), + [sym_edit_comment] = STATE(379), + [sym_superscript] = STATE(379), + [sym_subscript] = STATE(379), + [sym_strikeout] = STATE(379), + [sym_quoted_span] = STATE(379), + [sym_inline_note] = STATE(379), + [sym_citation] = STATE(379), + [sym_shortcode_escaped] = STATE(379), + [sym_shortcode] = STATE(379), + [sym_note_reference] = STATE(379), + [sym_image] = STATE(379), + [sym__image_inline_link] = STATE(1390), + [sym__image_description] = STATE(2363), + [sym__image_description_non_empty] = STATE(2363), + [sym_hard_line_break] = STATE(379), + [sym__whitespace] = STATE(1385), + [sym__word] = STATE(1385), + [sym__soft_line_break] = STATE(1391), + [sym__inline_base] = STATE(326), + [sym__text_base] = STATE(379), + [sym__inline_element_no_underscore_no_link] = STATE(326), + [aux_sym__inline_no_underscore_no_link] = STATE(326), + [sym__emphasis_star_no_link] = STATE(1442), + [sym__strong_emphasis_star_no_link] = STATE(326), + [sym__emphasis_underscore_no_link] = STATE(1430), + [sym__strong_emphasis_underscore_no_link] = STATE(326), + [aux_sym__inline_base_repeat1] = STATE(379), + [sym__backslash_escape] = ACTIONS(2783), + [sym_entity_reference] = ACTIONS(2786), + [sym_numeric_character_reference] = ACTIONS(2786), + [anon_sym_LT] = ACTIONS(2789), + [anon_sym_GT] = ACTIONS(2792), + [anon_sym_BANG] = ACTIONS(2795), + [anon_sym_DQUOTE] = ACTIONS(2792), + [anon_sym_POUND] = ACTIONS(2792), + [anon_sym_DOLLAR] = ACTIONS(2792), + [anon_sym_PERCENT] = ACTIONS(2792), + [anon_sym_AMP] = ACTIONS(2789), + [anon_sym_SQUOTE] = ACTIONS(2792), + [anon_sym_STAR] = ACTIONS(2792), + [anon_sym_PLUS] = ACTIONS(2792), + [anon_sym_COMMA] = ACTIONS(2792), + [anon_sym_DASH] = ACTIONS(2789), + [anon_sym_DOT] = ACTIONS(2789), + [anon_sym_SLASH] = ACTIONS(2792), + [anon_sym_COLON] = ACTIONS(2792), + [anon_sym_SEMI] = ACTIONS(2792), + [anon_sym_EQ] = ACTIONS(2792), + [anon_sym_QMARK] = ACTIONS(2792), + [anon_sym_BSLASH] = ACTIONS(2798), + [anon_sym_CARET] = ACTIONS(2789), + [anon_sym__] = ACTIONS(2792), + [anon_sym_BQUOTE] = ACTIONS(2792), + [anon_sym_LBRACE] = ACTIONS(2801), + [anon_sym_PIPE] = ACTIONS(2792), + [anon_sym_TILDE] = ACTIONS(2792), + [anon_sym_LPAREN] = ACTIONS(2792), + [anon_sym_RPAREN] = ACTIONS(2792), + [sym__newline_token] = ACTIONS(2804), + [aux_sym_insert_token1] = ACTIONS(2807), + [aux_sym_delete_token1] = ACTIONS(2810), + [aux_sym_highlight_token1] = ACTIONS(2813), + [aux_sym_edit_comment_token1] = ACTIONS(2816), + [anon_sym_CARET_LBRACK] = ACTIONS(2819), + [anon_sym_LBRACK_CARET] = ACTIONS(2822), + [sym_uri_autolink] = ACTIONS(2786), + [sym_email_autolink] = ACTIONS(2786), + [sym__whitespace_ge_2] = ACTIONS(2825), + [aux_sym__whitespace_token1] = ACTIONS(2828), + [sym__word_no_digit] = ACTIONS(2831), + [sym__digits] = ACTIONS(2831), + [anon_sym_DASH_DASH] = ACTIONS(2834), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2831), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2831), + [sym__code_span_start] = ACTIONS(2837), + [sym__emphasis_open_star] = ACTIONS(2840), + [sym__emphasis_open_underscore] = ACTIONS(2843), + [sym__emphasis_close_star] = ACTIONS(2846), + [sym__last_token_punctuation] = ACTIONS(2848), + [sym__strikeout_open] = ACTIONS(2850), + [sym__latex_span_start] = ACTIONS(2853), + [sym__single_quote_open] = ACTIONS(2856), + [sym__double_quote_open] = ACTIONS(2859), + [sym__superscript_open] = ACTIONS(2862), + [sym__subscript_open] = ACTIONS(2865), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2868), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2871), + [sym__cite_author_in_text] = ACTIONS(2874), + [sym__cite_suppress_author] = ACTIONS(2877), + [sym__shortcode_open_escaped] = ACTIONS(2880), + [sym__shortcode_open] = ACTIONS(2883), + [sym__unclosed_span] = ACTIONS(2786), }, [STATE(319)] = { - [sym__qmd_attribute] = STATE(729), - [sym_raw_attribute] = STATE(729), - [sym_commonmark_attribute] = STATE(729), - [sym_language_attribute] = STATE(729), - [sym__backslash_escape] = ACTIONS(3705), - [sym_entity_reference] = ACTIONS(3705), - [sym_numeric_character_reference] = ACTIONS(3705), - [anon_sym_LT] = ACTIONS(3707), - [anon_sym_GT] = ACTIONS(3705), - [anon_sym_BANG] = ACTIONS(3705), - [anon_sym_DQUOTE] = ACTIONS(3705), - [anon_sym_POUND] = ACTIONS(3705), - [anon_sym_DOLLAR] = ACTIONS(3705), - [anon_sym_PERCENT] = ACTIONS(3705), - [anon_sym_AMP] = ACTIONS(3707), - [anon_sym_SQUOTE] = ACTIONS(3705), - [anon_sym_STAR] = ACTIONS(3705), - [anon_sym_PLUS] = ACTIONS(3705), - [anon_sym_COMMA] = ACTIONS(3705), - [anon_sym_DASH] = ACTIONS(3707), - [anon_sym_DOT] = ACTIONS(3707), - [anon_sym_SLASH] = ACTIONS(3705), - [anon_sym_COLON] = ACTIONS(3705), - [anon_sym_SEMI] = ACTIONS(3705), - [anon_sym_EQ] = ACTIONS(3705), - [anon_sym_QMARK] = ACTIONS(3705), - [anon_sym_LBRACK] = ACTIONS(3707), - [anon_sym_BSLASH] = ACTIONS(3707), - [anon_sym_CARET] = ACTIONS(3707), - [anon_sym__] = ACTIONS(3705), - [anon_sym_BQUOTE] = ACTIONS(3705), - [anon_sym_LBRACE] = ACTIONS(3701), - [anon_sym_PIPE] = ACTIONS(3705), - [anon_sym_TILDE] = ACTIONS(3705), - [anon_sym_LPAREN] = ACTIONS(3705), - [anon_sym_RPAREN] = ACTIONS(3705), - [sym__newline_token] = ACTIONS(3705), - [anon_sym_CARET_LBRACK] = ACTIONS(3705), - [anon_sym_LBRACK_CARET] = ACTIONS(3705), - [sym_uri_autolink] = ACTIONS(3705), - [sym_email_autolink] = ACTIONS(3705), - [sym__whitespace_ge_2] = ACTIONS(3705), - [aux_sym__whitespace_token1] = ACTIONS(3707), - [sym__word_no_digit] = ACTIONS(3705), - [sym__digits] = ACTIONS(3705), - [anon_sym_DASH_DASH] = ACTIONS(3707), - [anon_sym_DASH_DASH_DASH] = ACTIONS(3705), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3705), - [sym__code_span_start] = ACTIONS(3705), - [sym__emphasis_open_star] = ACTIONS(3705), - [sym__emphasis_open_underscore] = ACTIONS(3705), - [sym__strikeout_open] = ACTIONS(3705), - [sym__latex_span_start] = ACTIONS(3705), - [sym__single_quote_open] = ACTIONS(3705), - [sym__double_quote_open] = ACTIONS(3705), - [sym__superscript_open] = ACTIONS(3705), - [sym__superscript_close] = ACTIONS(3705), - [sym__subscript_open] = ACTIONS(3705), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3705), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3705), - [sym__cite_author_in_text] = ACTIONS(3705), - [sym__cite_suppress_author] = ACTIONS(3705), - [sym__shortcode_open_escaped] = ACTIONS(3705), - [sym__shortcode_open] = ACTIONS(3705), - [sym__unclosed_span] = ACTIONS(3705), + [sym_backslash_escape] = STATE(373), + [sym_commonmark_attribute] = STATE(373), + [sym_code_span] = STATE(373), + [sym_latex_span] = STATE(373), + [sym_insert] = STATE(373), + [sym_delete] = STATE(373), + [sym_highlight] = STATE(373), + [sym_edit_comment] = STATE(373), + [sym_superscript] = STATE(373), + [sym_subscript] = STATE(373), + [sym_strikeout] = STATE(373), + [sym_quoted_span] = STATE(373), + [sym_inline_note] = STATE(373), + [sym_citation] = STATE(373), + [sym_shortcode_escaped] = STATE(373), + [sym_shortcode] = STATE(373), + [sym_note_reference] = STATE(373), + [sym_image] = STATE(373), + [sym__image_inline_link] = STATE(1265), + [sym__image_description] = STATE(2331), + [sym__image_description_non_empty] = STATE(2331), + [sym_hard_line_break] = STATE(373), + [sym__whitespace] = STATE(1262), + [sym__word] = STATE(1262), + [sym__soft_line_break] = STATE(1267), + [sym__inline_base] = STATE(331), + [sym__text_base] = STATE(373), + [sym__inline_element_no_star_no_link] = STATE(331), + [aux_sym__inline_no_star_no_link] = STATE(331), + [sym__emphasis_star_no_link] = STATE(1427), + [sym__strong_emphasis_star_no_link] = STATE(331), + [sym__emphasis_underscore_no_link] = STATE(1441), + [sym__strong_emphasis_underscore_no_link] = STATE(331), + [aux_sym__inline_base_repeat1] = STATE(373), + [sym__backslash_escape] = ACTIONS(2886), + [sym_entity_reference] = ACTIONS(2889), + [sym_numeric_character_reference] = ACTIONS(2889), + [anon_sym_LT] = ACTIONS(2892), + [anon_sym_GT] = ACTIONS(2895), + [anon_sym_BANG] = ACTIONS(2898), + [anon_sym_DQUOTE] = ACTIONS(2895), + [anon_sym_POUND] = ACTIONS(2895), + [anon_sym_DOLLAR] = ACTIONS(2895), + [anon_sym_PERCENT] = ACTIONS(2895), + [anon_sym_AMP] = ACTIONS(2892), + [anon_sym_SQUOTE] = ACTIONS(2895), + [anon_sym_STAR] = ACTIONS(2895), + [anon_sym_PLUS] = ACTIONS(2895), + [anon_sym_COMMA] = ACTIONS(2895), + [anon_sym_DASH] = ACTIONS(2892), + [anon_sym_DOT] = ACTIONS(2892), + [anon_sym_SLASH] = ACTIONS(2895), + [anon_sym_COLON] = ACTIONS(2895), + [anon_sym_SEMI] = ACTIONS(2895), + [anon_sym_EQ] = ACTIONS(2895), + [anon_sym_QMARK] = ACTIONS(2895), + [anon_sym_BSLASH] = ACTIONS(2901), + [anon_sym_RBRACK] = ACTIONS(2904), + [anon_sym_CARET] = ACTIONS(2892), + [anon_sym__] = ACTIONS(2895), + [anon_sym_BQUOTE] = ACTIONS(2895), + [anon_sym_LBRACE] = ACTIONS(2906), + [anon_sym_PIPE] = ACTIONS(2895), + [anon_sym_TILDE] = ACTIONS(2895), + [anon_sym_LPAREN] = ACTIONS(2895), + [anon_sym_RPAREN] = ACTIONS(2895), + [sym__newline_token] = ACTIONS(2909), + [aux_sym_insert_token1] = ACTIONS(2912), + [aux_sym_delete_token1] = ACTIONS(2915), + [aux_sym_highlight_token1] = ACTIONS(2918), + [aux_sym_edit_comment_token1] = ACTIONS(2921), + [anon_sym_CARET_LBRACK] = ACTIONS(2924), + [anon_sym_LBRACK_CARET] = ACTIONS(2927), + [sym_uri_autolink] = ACTIONS(2889), + [sym_email_autolink] = ACTIONS(2889), + [sym__whitespace_ge_2] = ACTIONS(2930), + [aux_sym__whitespace_token1] = ACTIONS(2933), + [sym__word_no_digit] = ACTIONS(2936), + [sym__digits] = ACTIONS(2936), + [anon_sym_DASH_DASH] = ACTIONS(2939), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2936), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2936), + [sym__code_span_start] = ACTIONS(2942), + [sym__emphasis_open_star] = ACTIONS(2945), + [sym__emphasis_open_underscore] = ACTIONS(2948), + [sym__last_token_punctuation] = ACTIONS(2951), + [sym__strikeout_open] = ACTIONS(2953), + [sym__latex_span_start] = ACTIONS(2956), + [sym__single_quote_open] = ACTIONS(2959), + [sym__double_quote_open] = ACTIONS(2962), + [sym__superscript_open] = ACTIONS(2965), + [sym__subscript_open] = ACTIONS(2968), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2971), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2974), + [sym__cite_author_in_text] = ACTIONS(2977), + [sym__cite_suppress_author] = ACTIONS(2980), + [sym__shortcode_open_escaped] = ACTIONS(2983), + [sym__shortcode_open] = ACTIONS(2986), + [sym__unclosed_span] = ACTIONS(2889), }, [STATE(320)] = { - [sym__qmd_attribute] = STATE(741), - [sym_raw_attribute] = STATE(741), - [sym_commonmark_attribute] = STATE(741), - [sym_language_attribute] = STATE(741), - [sym__backslash_escape] = ACTIONS(3629), - [sym_entity_reference] = ACTIONS(3629), - [sym_numeric_character_reference] = ACTIONS(3629), - [anon_sym_LT] = ACTIONS(3631), - [anon_sym_GT] = ACTIONS(3629), - [anon_sym_BANG] = ACTIONS(3629), - [anon_sym_DQUOTE] = ACTIONS(3629), - [anon_sym_POUND] = ACTIONS(3629), - [anon_sym_DOLLAR] = ACTIONS(3629), - [anon_sym_PERCENT] = ACTIONS(3629), - [anon_sym_AMP] = ACTIONS(3631), - [anon_sym_SQUOTE] = ACTIONS(3629), - [anon_sym_STAR] = ACTIONS(3629), - [anon_sym_PLUS] = ACTIONS(3629), - [anon_sym_COMMA] = ACTIONS(3629), - [anon_sym_DASH] = ACTIONS(3631), - [anon_sym_DOT] = ACTIONS(3631), - [anon_sym_SLASH] = ACTIONS(3629), - [anon_sym_COLON] = ACTIONS(3629), - [anon_sym_SEMI] = ACTIONS(3629), - [anon_sym_EQ] = ACTIONS(3629), - [anon_sym_QMARK] = ACTIONS(3629), - [anon_sym_LBRACK] = ACTIONS(3631), - [anon_sym_BSLASH] = ACTIONS(3631), - [anon_sym_CARET] = ACTIONS(3631), - [anon_sym__] = ACTIONS(3629), - [anon_sym_BQUOTE] = ACTIONS(3629), - [anon_sym_LBRACE] = ACTIONS(3701), - [anon_sym_PIPE] = ACTIONS(3629), - [anon_sym_TILDE] = ACTIONS(3629), - [anon_sym_LPAREN] = ACTIONS(3629), - [anon_sym_RPAREN] = ACTIONS(3629), - [sym__newline_token] = ACTIONS(3629), - [anon_sym_CARET_LBRACK] = ACTIONS(3629), - [anon_sym_LBRACK_CARET] = ACTIONS(3629), - [sym_uri_autolink] = ACTIONS(3629), - [sym_email_autolink] = ACTIONS(3629), - [sym__whitespace_ge_2] = ACTIONS(3629), - [aux_sym__whitespace_token1] = ACTIONS(3631), - [sym__word_no_digit] = ACTIONS(3629), - [sym__digits] = ACTIONS(3629), - [anon_sym_DASH_DASH] = ACTIONS(3631), - [anon_sym_DASH_DASH_DASH] = ACTIONS(3629), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3629), - [sym__code_span_start] = ACTIONS(3629), - [sym__emphasis_open_star] = ACTIONS(3629), - [sym__emphasis_open_underscore] = ACTIONS(3629), - [sym__strikeout_open] = ACTIONS(3629), - [sym__latex_span_start] = ACTIONS(3629), - [sym__single_quote_open] = ACTIONS(3629), - [sym__double_quote_open] = ACTIONS(3629), - [sym__superscript_open] = ACTIONS(3629), - [sym__superscript_close] = ACTIONS(3629), - [sym__subscript_open] = ACTIONS(3629), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3629), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3629), - [sym__cite_author_in_text] = ACTIONS(3629), - [sym__cite_suppress_author] = ACTIONS(3629), - [sym__shortcode_open_escaped] = ACTIONS(3629), - [sym__shortcode_open] = ACTIONS(3629), - [sym__unclosed_span] = ACTIONS(3629), + [sym_backslash_escape] = STATE(379), + [sym_commonmark_attribute] = STATE(379), + [sym_code_span] = STATE(379), + [sym_latex_span] = STATE(379), + [sym_insert] = STATE(379), + [sym_delete] = STATE(379), + [sym_highlight] = STATE(379), + [sym_edit_comment] = STATE(379), + [sym_superscript] = STATE(379), + [sym_subscript] = STATE(379), + [sym_strikeout] = STATE(379), + [sym_quoted_span] = STATE(379), + [sym_inline_note] = STATE(379), + [sym_citation] = STATE(379), + [sym_shortcode_escaped] = STATE(379), + [sym_shortcode] = STATE(379), + [sym_note_reference] = STATE(379), + [sym_image] = STATE(379), + [sym__image_inline_link] = STATE(1390), + [sym__image_description] = STATE(2363), + [sym__image_description_non_empty] = STATE(2363), + [sym_hard_line_break] = STATE(379), + [sym__whitespace] = STATE(1385), + [sym__word] = STATE(1385), + [sym__soft_line_break] = STATE(1391), + [sym__inline_base] = STATE(334), + [sym__text_base] = STATE(379), + [sym__inline_element_no_underscore_no_link] = STATE(334), + [aux_sym__inline_no_underscore_no_link] = STATE(334), + [sym__emphasis_star_no_link] = STATE(1442), + [sym__strong_emphasis_star_no_link] = STATE(334), + [sym__emphasis_underscore_no_link] = STATE(1447), + [sym__strong_emphasis_underscore_no_link] = STATE(334), + [aux_sym__inline_base_repeat1] = STATE(379), + [sym__backslash_escape] = ACTIONS(2989), + [sym_entity_reference] = ACTIONS(2992), + [sym_numeric_character_reference] = ACTIONS(2992), + [anon_sym_LT] = ACTIONS(2995), + [anon_sym_GT] = ACTIONS(2998), + [anon_sym_BANG] = ACTIONS(3001), + [anon_sym_DQUOTE] = ACTIONS(2998), + [anon_sym_POUND] = ACTIONS(2998), + [anon_sym_DOLLAR] = ACTIONS(2998), + [anon_sym_PERCENT] = ACTIONS(2998), + [anon_sym_AMP] = ACTIONS(2995), + [anon_sym_SQUOTE] = ACTIONS(2998), + [anon_sym_STAR] = ACTIONS(2998), + [anon_sym_PLUS] = ACTIONS(2998), + [anon_sym_COMMA] = ACTIONS(2998), + [anon_sym_DASH] = ACTIONS(2995), + [anon_sym_DOT] = ACTIONS(2995), + [anon_sym_SLASH] = ACTIONS(2998), + [anon_sym_COLON] = ACTIONS(2998), + [anon_sym_SEMI] = ACTIONS(2998), + [anon_sym_EQ] = ACTIONS(2998), + [anon_sym_QMARK] = ACTIONS(2998), + [anon_sym_BSLASH] = ACTIONS(3004), + [anon_sym_RBRACK] = ACTIONS(2904), + [anon_sym_CARET] = ACTIONS(2995), + [anon_sym__] = ACTIONS(2998), + [anon_sym_BQUOTE] = ACTIONS(2998), + [anon_sym_LBRACE] = ACTIONS(3007), + [anon_sym_PIPE] = ACTIONS(2998), + [anon_sym_TILDE] = ACTIONS(2998), + [anon_sym_LPAREN] = ACTIONS(2998), + [anon_sym_RPAREN] = ACTIONS(2998), + [sym__newline_token] = ACTIONS(3010), + [aux_sym_insert_token1] = ACTIONS(3013), + [aux_sym_delete_token1] = ACTIONS(3016), + [aux_sym_highlight_token1] = ACTIONS(3019), + [aux_sym_edit_comment_token1] = ACTIONS(3022), + [anon_sym_CARET_LBRACK] = ACTIONS(3025), + [anon_sym_LBRACK_CARET] = ACTIONS(3028), + [sym_uri_autolink] = ACTIONS(2992), + [sym_email_autolink] = ACTIONS(2992), + [sym__whitespace_ge_2] = ACTIONS(3031), + [aux_sym__whitespace_token1] = ACTIONS(3034), + [sym__word_no_digit] = ACTIONS(3037), + [sym__digits] = ACTIONS(3037), + [anon_sym_DASH_DASH] = ACTIONS(3040), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3037), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3037), + [sym__code_span_start] = ACTIONS(3043), + [sym__emphasis_open_star] = ACTIONS(3046), + [sym__emphasis_open_underscore] = ACTIONS(3049), + [sym__last_token_punctuation] = ACTIONS(3052), + [sym__strikeout_open] = ACTIONS(3054), + [sym__latex_span_start] = ACTIONS(3057), + [sym__single_quote_open] = ACTIONS(3060), + [sym__double_quote_open] = ACTIONS(3063), + [sym__superscript_open] = ACTIONS(3066), + [sym__subscript_open] = ACTIONS(3069), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3072), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3075), + [sym__cite_author_in_text] = ACTIONS(3078), + [sym__cite_suppress_author] = ACTIONS(3081), + [sym__shortcode_open_escaped] = ACTIONS(3084), + [sym__shortcode_open] = ACTIONS(3087), + [sym__unclosed_span] = ACTIONS(2992), }, [STATE(321)] = { - [sym__qmd_attribute] = STATE(1117), - [sym_raw_attribute] = STATE(1117), - [sym_commonmark_attribute] = STATE(1117), - [sym_language_attribute] = STATE(1117), - [ts_builtin_sym_end] = ACTIONS(3705), - [sym__backslash_escape] = ACTIONS(3705), - [sym_entity_reference] = ACTIONS(3705), - [sym_numeric_character_reference] = ACTIONS(3705), - [anon_sym_LT] = ACTIONS(3707), - [anon_sym_GT] = ACTIONS(3705), - [anon_sym_BANG] = ACTIONS(3705), - [anon_sym_DQUOTE] = ACTIONS(3705), - [anon_sym_POUND] = ACTIONS(3705), - [anon_sym_DOLLAR] = ACTIONS(3705), - [anon_sym_PERCENT] = ACTIONS(3705), - [anon_sym_AMP] = ACTIONS(3707), - [anon_sym_SQUOTE] = ACTIONS(3705), - [anon_sym_STAR] = ACTIONS(3705), - [anon_sym_PLUS] = ACTIONS(3705), - [anon_sym_COMMA] = ACTIONS(3705), - [anon_sym_DASH] = ACTIONS(3707), - [anon_sym_DOT] = ACTIONS(3707), - [anon_sym_SLASH] = ACTIONS(3705), - [anon_sym_COLON] = ACTIONS(3705), - [anon_sym_SEMI] = ACTIONS(3705), - [anon_sym_EQ] = ACTIONS(3705), - [anon_sym_QMARK] = ACTIONS(3705), - [anon_sym_LBRACK] = ACTIONS(3707), - [anon_sym_BSLASH] = ACTIONS(3707), - [anon_sym_CARET] = ACTIONS(3707), - [anon_sym__] = ACTIONS(3705), - [anon_sym_BQUOTE] = ACTIONS(3705), - [anon_sym_LBRACE] = ACTIONS(3633), - [anon_sym_PIPE] = ACTIONS(3705), - [anon_sym_TILDE] = ACTIONS(3705), - [anon_sym_LPAREN] = ACTIONS(3705), - [anon_sym_RPAREN] = ACTIONS(3705), - [sym__newline_token] = ACTIONS(3705), - [anon_sym_CARET_LBRACK] = ACTIONS(3705), - [anon_sym_LBRACK_CARET] = ACTIONS(3705), - [sym_uri_autolink] = ACTIONS(3705), - [sym_email_autolink] = ACTIONS(3705), - [sym__whitespace_ge_2] = ACTIONS(3705), - [aux_sym__whitespace_token1] = ACTIONS(3707), - [sym__word_no_digit] = ACTIONS(3705), - [sym__digits] = ACTIONS(3705), - [anon_sym_DASH_DASH] = ACTIONS(3707), - [anon_sym_DASH_DASH_DASH] = ACTIONS(3705), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3705), - [sym__code_span_start] = ACTIONS(3705), - [sym__emphasis_open_star] = ACTIONS(3705), - [sym__emphasis_open_underscore] = ACTIONS(3705), - [sym__strikeout_open] = ACTIONS(3705), - [sym__latex_span_start] = ACTIONS(3705), - [sym__single_quote_open] = ACTIONS(3705), - [sym__double_quote_open] = ACTIONS(3705), - [sym__superscript_open] = ACTIONS(3705), - [sym__subscript_open] = ACTIONS(3705), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3705), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3705), - [sym__cite_author_in_text] = ACTIONS(3705), - [sym__cite_suppress_author] = ACTIONS(3705), - [sym__shortcode_open_escaped] = ACTIONS(3705), - [sym__shortcode_open] = ACTIONS(3705), - [sym__unclosed_span] = ACTIONS(3705), + [sym_backslash_escape] = STATE(373), + [sym_commonmark_attribute] = STATE(373), + [sym_code_span] = STATE(373), + [sym_latex_span] = STATE(373), + [sym_insert] = STATE(373), + [sym_delete] = STATE(373), + [sym_highlight] = STATE(373), + [sym_edit_comment] = STATE(373), + [sym_superscript] = STATE(373), + [sym_subscript] = STATE(373), + [sym_strikeout] = STATE(373), + [sym_quoted_span] = STATE(373), + [sym_inline_note] = STATE(373), + [sym_citation] = STATE(373), + [sym_shortcode_escaped] = STATE(373), + [sym_shortcode] = STATE(373), + [sym_note_reference] = STATE(373), + [sym_image] = STATE(373), + [sym__image_inline_link] = STATE(1265), + [sym__image_description] = STATE(2331), + [sym__image_description_non_empty] = STATE(2331), + [sym_hard_line_break] = STATE(373), + [sym__whitespace] = STATE(1262), + [sym__word] = STATE(1262), + [sym__soft_line_break] = STATE(1267), + [sym__inline_base] = STATE(337), + [sym__text_base] = STATE(373), + [sym__inline_element_no_star_no_link] = STATE(337), + [aux_sym__inline_no_star_no_link] = STATE(337), + [sym__emphasis_star_no_link] = STATE(1437), + [sym__strong_emphasis_star_no_link] = STATE(337), + [sym__emphasis_underscore_no_link] = STATE(1441), + [sym__strong_emphasis_underscore_no_link] = STATE(337), + [aux_sym__inline_base_repeat1] = STATE(373), + [sym__backslash_escape] = ACTIONS(3090), + [sym_entity_reference] = ACTIONS(3093), + [sym_numeric_character_reference] = ACTIONS(3093), + [anon_sym_LT] = ACTIONS(3096), + [anon_sym_GT] = ACTIONS(3099), + [anon_sym_BANG] = ACTIONS(3102), + [anon_sym_DQUOTE] = ACTIONS(3099), + [anon_sym_POUND] = ACTIONS(3099), + [anon_sym_DOLLAR] = ACTIONS(3099), + [anon_sym_PERCENT] = ACTIONS(3099), + [anon_sym_AMP] = ACTIONS(3096), + [anon_sym_SQUOTE] = ACTIONS(3099), + [anon_sym_STAR] = ACTIONS(3099), + [anon_sym_PLUS] = ACTIONS(3099), + [anon_sym_COMMA] = ACTIONS(3099), + [anon_sym_DASH] = ACTIONS(3096), + [anon_sym_DOT] = ACTIONS(3096), + [anon_sym_SLASH] = ACTIONS(3099), + [anon_sym_COLON] = ACTIONS(3099), + [anon_sym_SEMI] = ACTIONS(3099), + [anon_sym_EQ] = ACTIONS(3099), + [anon_sym_QMARK] = ACTIONS(3099), + [anon_sym_BSLASH] = ACTIONS(3105), + [anon_sym_CARET] = ACTIONS(3096), + [anon_sym__] = ACTIONS(3099), + [anon_sym_BQUOTE] = ACTIONS(3099), + [anon_sym_LBRACE] = ACTIONS(3108), + [anon_sym_PIPE] = ACTIONS(3099), + [anon_sym_TILDE] = ACTIONS(3099), + [anon_sym_LPAREN] = ACTIONS(3099), + [anon_sym_RPAREN] = ACTIONS(3099), + [sym__newline_token] = ACTIONS(3111), + [aux_sym_insert_token1] = ACTIONS(3114), + [aux_sym_delete_token1] = ACTIONS(3117), + [aux_sym_highlight_token1] = ACTIONS(3120), + [aux_sym_edit_comment_token1] = ACTIONS(3123), + [anon_sym_CARET_LBRACK] = ACTIONS(3126), + [anon_sym_LBRACK_CARET] = ACTIONS(3129), + [sym_uri_autolink] = ACTIONS(3093), + [sym_email_autolink] = ACTIONS(3093), + [sym__whitespace_ge_2] = ACTIONS(3132), + [aux_sym__whitespace_token1] = ACTIONS(3135), + [sym__word_no_digit] = ACTIONS(3138), + [sym__digits] = ACTIONS(3138), + [anon_sym_DASH_DASH] = ACTIONS(3141), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3138), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3138), + [sym__code_span_start] = ACTIONS(3144), + [sym__emphasis_open_star] = ACTIONS(3147), + [sym__emphasis_open_underscore] = ACTIONS(3150), + [sym__emphasis_close_underscore] = ACTIONS(3153), + [sym__last_token_punctuation] = ACTIONS(3155), + [sym__strikeout_open] = ACTIONS(3157), + [sym__latex_span_start] = ACTIONS(3160), + [sym__single_quote_open] = ACTIONS(3163), + [sym__double_quote_open] = ACTIONS(3166), + [sym__superscript_open] = ACTIONS(3169), + [sym__subscript_open] = ACTIONS(3172), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3175), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3178), + [sym__cite_author_in_text] = ACTIONS(3181), + [sym__cite_suppress_author] = ACTIONS(3184), + [sym__shortcode_open_escaped] = ACTIONS(3187), + [sym__shortcode_open] = ACTIONS(3190), + [sym__unclosed_span] = ACTIONS(3093), }, [STATE(322)] = { - [sym__qmd_attribute] = STATE(641), - [sym_raw_attribute] = STATE(641), - [sym_commonmark_attribute] = STATE(641), - [sym_language_attribute] = STATE(641), - [sym__backslash_escape] = ACTIONS(3691), - [sym_entity_reference] = ACTIONS(3691), - [sym_numeric_character_reference] = ACTIONS(3691), - [anon_sym_LT] = ACTIONS(3693), - [anon_sym_GT] = ACTIONS(3691), - [anon_sym_BANG] = ACTIONS(3691), - [anon_sym_DQUOTE] = ACTIONS(3691), - [anon_sym_POUND] = ACTIONS(3691), - [anon_sym_DOLLAR] = ACTIONS(3691), - [anon_sym_PERCENT] = ACTIONS(3691), - [anon_sym_AMP] = ACTIONS(3693), - [anon_sym_SQUOTE] = ACTIONS(3691), - [anon_sym_STAR] = ACTIONS(3691), - [anon_sym_PLUS] = ACTIONS(3691), - [anon_sym_COMMA] = ACTIONS(3691), - [anon_sym_DASH] = ACTIONS(3693), - [anon_sym_DOT] = ACTIONS(3693), - [anon_sym_SLASH] = ACTIONS(3691), - [anon_sym_COLON] = ACTIONS(3691), - [anon_sym_SEMI] = ACTIONS(3691), - [anon_sym_EQ] = ACTIONS(3691), - [anon_sym_QMARK] = ACTIONS(3691), - [anon_sym_LBRACK] = ACTIONS(3693), - [anon_sym_BSLASH] = ACTIONS(3693), - [anon_sym_CARET] = ACTIONS(3693), - [anon_sym__] = ACTIONS(3691), - [anon_sym_BQUOTE] = ACTIONS(3691), - [anon_sym_LBRACE] = ACTIONS(3709), - [anon_sym_PIPE] = ACTIONS(3691), - [anon_sym_TILDE] = ACTIONS(3691), - [anon_sym_LPAREN] = ACTIONS(3711), - [anon_sym_RPAREN] = ACTIONS(3691), - [sym__newline_token] = ACTIONS(3691), - [anon_sym_CARET_LBRACK] = ACTIONS(3691), - [anon_sym_LBRACK_CARET] = ACTIONS(3691), - [sym_uri_autolink] = ACTIONS(3691), - [sym_email_autolink] = ACTIONS(3691), - [sym__whitespace_ge_2] = ACTIONS(3691), - [aux_sym__whitespace_token1] = ACTIONS(3693), - [sym__word_no_digit] = ACTIONS(3691), - [sym__digits] = ACTIONS(3691), - [anon_sym_DASH_DASH] = ACTIONS(3693), - [anon_sym_DASH_DASH_DASH] = ACTIONS(3691), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3691), - [sym__code_span_start] = ACTIONS(3691), - [sym__emphasis_open_star] = ACTIONS(3691), - [sym__emphasis_open_underscore] = ACTIONS(3691), - [sym__emphasis_close_star] = ACTIONS(3691), - [sym__strikeout_open] = ACTIONS(3691), - [sym__latex_span_start] = ACTIONS(3691), - [sym__single_quote_open] = ACTIONS(3691), - [sym__double_quote_open] = ACTIONS(3691), - [sym__superscript_open] = ACTIONS(3691), - [sym__subscript_open] = ACTIONS(3691), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3691), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3691), - [sym__cite_author_in_text] = ACTIONS(3691), - [sym__cite_suppress_author] = ACTIONS(3691), - [sym__shortcode_open_escaped] = ACTIONS(3691), - [sym__shortcode_open] = ACTIONS(3691), - [sym__unclosed_span] = ACTIONS(3691), + [sym_backslash_escape] = STATE(379), + [sym_commonmark_attribute] = STATE(379), + [sym_code_span] = STATE(379), + [sym_latex_span] = STATE(379), + [sym_insert] = STATE(379), + [sym_delete] = STATE(379), + [sym_highlight] = STATE(379), + [sym_edit_comment] = STATE(379), + [sym_superscript] = STATE(379), + [sym_subscript] = STATE(379), + [sym_strikeout] = STATE(379), + [sym_quoted_span] = STATE(379), + [sym_inline_note] = STATE(379), + [sym_citation] = STATE(379), + [sym_shortcode_escaped] = STATE(379), + [sym_shortcode] = STATE(379), + [sym_note_reference] = STATE(379), + [sym_image] = STATE(379), + [sym__image_inline_link] = STATE(1390), + [sym__image_description] = STATE(2363), + [sym__image_description_non_empty] = STATE(2363), + [sym_hard_line_break] = STATE(379), + [sym__whitespace] = STATE(1385), + [sym__word] = STATE(1385), + [sym__soft_line_break] = STATE(1391), + [sym__inline_base] = STATE(345), + [sym__text_base] = STATE(379), + [sym__inline_element_no_underscore_no_link] = STATE(345), + [aux_sym__inline_no_underscore_no_link] = STATE(345), + [sym__emphasis_star_no_link] = STATE(1442), + [sym__strong_emphasis_star_no_link] = STATE(345), + [sym__emphasis_underscore_no_link] = STATE(1442), + [sym__strong_emphasis_underscore_no_link] = STATE(345), + [aux_sym__inline_base_repeat1] = STATE(379), + [sym__backslash_escape] = ACTIONS(1059), + [sym_entity_reference] = ACTIONS(1061), + [sym_numeric_character_reference] = ACTIONS(1061), + [anon_sym_LT] = ACTIONS(1063), + [anon_sym_GT] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1067), + [anon_sym_DQUOTE] = ACTIONS(1065), + [anon_sym_POUND] = ACTIONS(1065), + [anon_sym_DOLLAR] = ACTIONS(1065), + [anon_sym_PERCENT] = ACTIONS(1065), + [anon_sym_AMP] = ACTIONS(1063), + [anon_sym_SQUOTE] = ACTIONS(1065), + [anon_sym_STAR] = ACTIONS(1065), + [anon_sym_PLUS] = ACTIONS(1065), + [anon_sym_COMMA] = ACTIONS(1065), + [anon_sym_DASH] = ACTIONS(1063), + [anon_sym_DOT] = ACTIONS(1063), + [anon_sym_SLASH] = ACTIONS(1065), + [anon_sym_COLON] = ACTIONS(1065), + [anon_sym_SEMI] = ACTIONS(1065), + [anon_sym_EQ] = ACTIONS(1065), + [anon_sym_QMARK] = ACTIONS(1065), + [anon_sym_BSLASH] = ACTIONS(1071), + [anon_sym_CARET] = ACTIONS(1063), + [anon_sym__] = ACTIONS(1065), + [anon_sym_BQUOTE] = ACTIONS(1065), + [anon_sym_LBRACE] = ACTIONS(1073), + [anon_sym_PIPE] = ACTIONS(1065), + [anon_sym_TILDE] = ACTIONS(1065), + [anon_sym_LPAREN] = ACTIONS(1065), + [anon_sym_RPAREN] = ACTIONS(1065), + [sym__newline_token] = ACTIONS(1075), + [aux_sym_insert_token1] = ACTIONS(1077), + [aux_sym_delete_token1] = ACTIONS(1079), + [aux_sym_highlight_token1] = ACTIONS(1081), + [aux_sym_edit_comment_token1] = ACTIONS(1083), + [anon_sym_CARET_LBRACK] = ACTIONS(1085), + [anon_sym_LBRACK_CARET] = ACTIONS(1087), + [sym_uri_autolink] = ACTIONS(1061), + [sym_email_autolink] = ACTIONS(1061), + [sym__whitespace_ge_2] = ACTIONS(1089), + [aux_sym__whitespace_token1] = ACTIONS(1091), + [sym__word_no_digit] = ACTIONS(1093), + [sym__digits] = ACTIONS(1093), + [anon_sym_DASH_DASH] = ACTIONS(1095), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1093), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1093), + [sym__code_span_start] = ACTIONS(1097), + [sym__emphasis_open_star] = ACTIONS(3193), + [sym__emphasis_open_underscore] = ACTIONS(3195), + [sym__emphasis_close_underscore] = ACTIONS(3197), + [sym__strikeout_open] = ACTIONS(1105), + [sym__latex_span_start] = ACTIONS(1107), + [sym__single_quote_open] = ACTIONS(1109), + [sym__double_quote_open] = ACTIONS(1111), + [sym__superscript_open] = ACTIONS(1113), + [sym__subscript_open] = ACTIONS(1115), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1117), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1119), + [sym__cite_author_in_text] = ACTIONS(1121), + [sym__cite_suppress_author] = ACTIONS(1123), + [sym__shortcode_open_escaped] = ACTIONS(1125), + [sym__shortcode_open] = ACTIONS(1127), + [sym__unclosed_span] = ACTIONS(1061), }, [STATE(323)] = { - [sym__qmd_attribute] = STATE(651), - [sym_raw_attribute] = STATE(651), - [sym_commonmark_attribute] = STATE(651), - [sym_language_attribute] = STATE(651), - [sym__backslash_escape] = ACTIONS(3697), - [sym_entity_reference] = ACTIONS(3697), - [sym_numeric_character_reference] = ACTIONS(3697), - [anon_sym_LT] = ACTIONS(3699), - [anon_sym_GT] = ACTIONS(3697), - [anon_sym_BANG] = ACTIONS(3697), - [anon_sym_DQUOTE] = ACTIONS(3697), - [anon_sym_POUND] = ACTIONS(3697), - [anon_sym_DOLLAR] = ACTIONS(3697), - [anon_sym_PERCENT] = ACTIONS(3697), - [anon_sym_AMP] = ACTIONS(3699), - [anon_sym_SQUOTE] = ACTIONS(3697), - [anon_sym_STAR] = ACTIONS(3697), - [anon_sym_PLUS] = ACTIONS(3697), - [anon_sym_COMMA] = ACTIONS(3697), - [anon_sym_DASH] = ACTIONS(3699), - [anon_sym_DOT] = ACTIONS(3699), - [anon_sym_SLASH] = ACTIONS(3697), - [anon_sym_COLON] = ACTIONS(3697), - [anon_sym_SEMI] = ACTIONS(3697), - [anon_sym_EQ] = ACTIONS(3697), - [anon_sym_QMARK] = ACTIONS(3697), - [anon_sym_LBRACK] = ACTIONS(3699), - [anon_sym_BSLASH] = ACTIONS(3699), - [anon_sym_CARET] = ACTIONS(3699), - [anon_sym__] = ACTIONS(3697), - [anon_sym_BQUOTE] = ACTIONS(3697), - [anon_sym_LBRACE] = ACTIONS(3709), - [anon_sym_PIPE] = ACTIONS(3697), - [anon_sym_TILDE] = ACTIONS(3697), - [anon_sym_LPAREN] = ACTIONS(3697), - [anon_sym_RPAREN] = ACTIONS(3697), - [sym__newline_token] = ACTIONS(3697), - [anon_sym_CARET_LBRACK] = ACTIONS(3697), - [anon_sym_LBRACK_CARET] = ACTIONS(3697), - [sym_uri_autolink] = ACTIONS(3697), - [sym_email_autolink] = ACTIONS(3697), - [sym__whitespace_ge_2] = ACTIONS(3697), - [aux_sym__whitespace_token1] = ACTIONS(3699), - [sym__word_no_digit] = ACTIONS(3697), - [sym__digits] = ACTIONS(3697), - [anon_sym_DASH_DASH] = ACTIONS(3699), - [anon_sym_DASH_DASH_DASH] = ACTIONS(3697), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3697), - [sym__code_span_start] = ACTIONS(3697), - [sym__emphasis_open_star] = ACTIONS(3697), - [sym__emphasis_open_underscore] = ACTIONS(3697), - [sym__emphasis_close_star] = ACTIONS(3697), - [sym__strikeout_open] = ACTIONS(3697), - [sym__latex_span_start] = ACTIONS(3697), - [sym__single_quote_open] = ACTIONS(3697), - [sym__double_quote_open] = ACTIONS(3697), - [sym__superscript_open] = ACTIONS(3697), - [sym__subscript_open] = ACTIONS(3697), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3697), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3697), - [sym__cite_author_in_text] = ACTIONS(3697), - [sym__cite_suppress_author] = ACTIONS(3697), - [sym__shortcode_open_escaped] = ACTIONS(3697), - [sym__shortcode_open] = ACTIONS(3697), - [sym__unclosed_span] = ACTIONS(3697), + [sym_backslash_escape] = STATE(370), + [sym_commonmark_attribute] = STATE(370), + [sym_code_span] = STATE(370), + [sym_latex_span] = STATE(370), + [sym_insert] = STATE(370), + [sym_delete] = STATE(370), + [sym_highlight] = STATE(370), + [sym_edit_comment] = STATE(370), + [sym_superscript] = STATE(370), + [sym_subscript] = STATE(370), + [sym_strikeout] = STATE(370), + [sym_quoted_span] = STATE(370), + [sym_inline_note] = STATE(370), + [sym_citation] = STATE(370), + [sym_shortcode_escaped] = STATE(370), + [sym_shortcode] = STATE(370), + [sym_note_reference] = STATE(370), + [sym_image] = STATE(370), + [sym__image_inline_link] = STATE(923), + [sym__image_description] = STATE(2342), + [sym__image_description_non_empty] = STATE(2342), + [sym_hard_line_break] = STATE(370), + [sym__whitespace] = STATE(920), + [sym__word] = STATE(920), + [sym__soft_line_break] = STATE(924), + [sym__inline_base] = STATE(1451), + [sym__text_base] = STATE(370), + [sym__inline_element_no_link] = STATE(1451), + [aux_sym__inline_no_link] = STATE(332), + [sym__emphasis_star_no_link] = STATE(1452), + [sym__strong_emphasis_star_no_link] = STATE(1451), + [sym__emphasis_underscore_no_link] = STATE(1452), + [sym__strong_emphasis_underscore_no_link] = STATE(1451), + [aux_sym__inline_base_repeat1] = STATE(370), + [sym__backslash_escape] = ACTIONS(73), + [sym_entity_reference] = ACTIONS(75), + [sym_numeric_character_reference] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_BANG] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_POUND] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(79), + [anon_sym_PERCENT] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_STAR] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_COMMA] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_DOT] = ACTIONS(77), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_COLON] = ACTIONS(79), + [anon_sym_SEMI] = ACTIONS(79), + [anon_sym_EQ] = ACTIONS(79), + [anon_sym_QMARK] = ACTIONS(79), + [anon_sym_BSLASH] = ACTIONS(85), + [anon_sym_RBRACK] = ACTIONS(3199), + [anon_sym_CARET] = ACTIONS(77), + [anon_sym__] = ACTIONS(79), + [anon_sym_BQUOTE] = ACTIONS(79), + [anon_sym_LBRACE] = ACTIONS(89), + [anon_sym_PIPE] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(79), + [anon_sym_RPAREN] = ACTIONS(79), + [sym__newline_token] = ACTIONS(91), + [aux_sym_insert_token1] = ACTIONS(93), + [aux_sym_delete_token1] = ACTIONS(95), + [aux_sym_highlight_token1] = ACTIONS(97), + [aux_sym_edit_comment_token1] = ACTIONS(99), + [anon_sym_CARET_LBRACK] = ACTIONS(101), + [anon_sym_LBRACK_CARET] = ACTIONS(103), + [sym_uri_autolink] = ACTIONS(75), + [sym_email_autolink] = ACTIONS(75), + [sym__whitespace_ge_2] = ACTIONS(105), + [aux_sym__whitespace_token1] = ACTIONS(107), + [sym__word_no_digit] = ACTIONS(109), + [sym__digits] = ACTIONS(109), + [anon_sym_DASH_DASH] = ACTIONS(111), + [anon_sym_DASH_DASH_DASH] = ACTIONS(109), + [anon_sym_DOT_DOT_DOT] = ACTIONS(109), + [sym__code_span_start] = ACTIONS(113), + [sym__emphasis_open_star] = ACTIONS(3201), + [sym__emphasis_open_underscore] = ACTIONS(3203), + [sym__strikeout_open] = ACTIONS(121), + [sym__latex_span_start] = ACTIONS(123), + [sym__single_quote_open] = ACTIONS(125), + [sym__double_quote_open] = ACTIONS(127), + [sym__superscript_open] = ACTIONS(129), + [sym__subscript_open] = ACTIONS(131), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(133), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(135), + [sym__cite_author_in_text] = ACTIONS(137), + [sym__cite_suppress_author] = ACTIONS(139), + [sym__shortcode_open_escaped] = ACTIONS(141), + [sym__shortcode_open] = ACTIONS(143), + [sym__unclosed_span] = ACTIONS(75), }, [STATE(324)] = { - [sym__qmd_attribute] = STATE(666), - [sym_raw_attribute] = STATE(666), - [sym_commonmark_attribute] = STATE(666), - [sym_language_attribute] = STATE(666), - [sym__backslash_escape] = ACTIONS(3647), - [sym_entity_reference] = ACTIONS(3647), - [sym_numeric_character_reference] = ACTIONS(3647), - [anon_sym_LT] = ACTIONS(3649), - [anon_sym_GT] = ACTIONS(3647), - [anon_sym_BANG] = ACTIONS(3647), - [anon_sym_DQUOTE] = ACTIONS(3647), - [anon_sym_POUND] = ACTIONS(3647), - [anon_sym_DOLLAR] = ACTIONS(3647), - [anon_sym_PERCENT] = ACTIONS(3647), - [anon_sym_AMP] = ACTIONS(3649), - [anon_sym_SQUOTE] = ACTIONS(3647), - [anon_sym_STAR] = ACTIONS(3647), - [anon_sym_PLUS] = ACTIONS(3647), - [anon_sym_COMMA] = ACTIONS(3647), - [anon_sym_DASH] = ACTIONS(3649), - [anon_sym_DOT] = ACTIONS(3649), - [anon_sym_SLASH] = ACTIONS(3647), - [anon_sym_COLON] = ACTIONS(3647), - [anon_sym_SEMI] = ACTIONS(3647), - [anon_sym_EQ] = ACTIONS(3647), - [anon_sym_QMARK] = ACTIONS(3647), - [anon_sym_LBRACK] = ACTIONS(3649), - [anon_sym_BSLASH] = ACTIONS(3649), - [anon_sym_CARET] = ACTIONS(3649), - [anon_sym__] = ACTIONS(3647), - [anon_sym_BQUOTE] = ACTIONS(3647), - [anon_sym_LBRACE] = ACTIONS(3641), - [anon_sym_PIPE] = ACTIONS(3647), - [anon_sym_TILDE] = ACTIONS(3647), - [anon_sym_LPAREN] = ACTIONS(3647), - [anon_sym_RPAREN] = ACTIONS(3647), - [sym__newline_token] = ACTIONS(3647), - [anon_sym_CARET_LBRACK] = ACTIONS(3647), - [anon_sym_LBRACK_CARET] = ACTIONS(3647), - [sym_uri_autolink] = ACTIONS(3647), - [sym_email_autolink] = ACTIONS(3647), - [sym__whitespace_ge_2] = ACTIONS(3647), - [aux_sym__whitespace_token1] = ACTIONS(3649), - [sym__word_no_digit] = ACTIONS(3647), - [sym__digits] = ACTIONS(3647), - [anon_sym_DASH_DASH] = ACTIONS(3649), - [anon_sym_DASH_DASH_DASH] = ACTIONS(3647), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3647), - [sym__code_span_start] = ACTIONS(3647), - [sym__emphasis_open_star] = ACTIONS(3647), - [sym__emphasis_open_underscore] = ACTIONS(3647), - [sym__strikeout_open] = ACTIONS(3647), - [sym__latex_span_start] = ACTIONS(3647), - [sym__single_quote_open] = ACTIONS(3647), - [sym__double_quote_open] = ACTIONS(3647), - [sym__double_quote_close] = ACTIONS(3647), - [sym__superscript_open] = ACTIONS(3647), - [sym__subscript_open] = ACTIONS(3647), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3647), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3647), - [sym__cite_author_in_text] = ACTIONS(3647), - [sym__cite_suppress_author] = ACTIONS(3647), - [sym__shortcode_open_escaped] = ACTIONS(3647), - [sym__shortcode_open] = ACTIONS(3647), - [sym__unclosed_span] = ACTIONS(3647), + [sym_backslash_escape] = STATE(370), + [sym_commonmark_attribute] = STATE(370), + [sym_code_span] = STATE(370), + [sym_latex_span] = STATE(370), + [sym_insert] = STATE(370), + [sym_delete] = STATE(370), + [sym_highlight] = STATE(370), + [sym_edit_comment] = STATE(370), + [sym_superscript] = STATE(370), + [sym_subscript] = STATE(370), + [sym_strikeout] = STATE(370), + [sym_quoted_span] = STATE(370), + [sym_inline_note] = STATE(370), + [sym_citation] = STATE(370), + [sym_shortcode_escaped] = STATE(370), + [sym_shortcode] = STATE(370), + [sym_note_reference] = STATE(370), + [sym_image] = STATE(370), + [sym__image_inline_link] = STATE(923), + [sym__image_description] = STATE(2342), + [sym__image_description_non_empty] = STATE(2342), + [sym_hard_line_break] = STATE(370), + [sym__whitespace] = STATE(920), + [sym__word] = STATE(920), + [sym__soft_line_break] = STATE(924), + [sym__inline_base] = STATE(1451), + [sym__text_base] = STATE(370), + [sym__inline_element_no_link] = STATE(1451), + [aux_sym__inline_no_link] = STATE(336), + [sym__emphasis_star_no_link] = STATE(1452), + [sym__strong_emphasis_star_no_link] = STATE(1451), + [sym__emphasis_underscore_no_link] = STATE(1452), + [sym__strong_emphasis_underscore_no_link] = STATE(1451), + [aux_sym__inline_base_repeat1] = STATE(370), + [sym__backslash_escape] = ACTIONS(73), + [sym_entity_reference] = ACTIONS(75), + [sym_numeric_character_reference] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_BANG] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_POUND] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(79), + [anon_sym_PERCENT] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_STAR] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_COMMA] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_DOT] = ACTIONS(77), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_COLON] = ACTIONS(79), + [anon_sym_SEMI] = ACTIONS(79), + [anon_sym_EQ] = ACTIONS(79), + [anon_sym_QMARK] = ACTIONS(79), + [anon_sym_BSLASH] = ACTIONS(85), + [anon_sym_RBRACK] = ACTIONS(3205), + [anon_sym_CARET] = ACTIONS(77), + [anon_sym__] = ACTIONS(79), + [anon_sym_BQUOTE] = ACTIONS(79), + [anon_sym_LBRACE] = ACTIONS(89), + [anon_sym_PIPE] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(79), + [anon_sym_RPAREN] = ACTIONS(79), + [sym__newline_token] = ACTIONS(91), + [aux_sym_insert_token1] = ACTIONS(93), + [aux_sym_delete_token1] = ACTIONS(95), + [aux_sym_highlight_token1] = ACTIONS(97), + [aux_sym_edit_comment_token1] = ACTIONS(99), + [anon_sym_CARET_LBRACK] = ACTIONS(101), + [anon_sym_LBRACK_CARET] = ACTIONS(103), + [sym_uri_autolink] = ACTIONS(75), + [sym_email_autolink] = ACTIONS(75), + [sym__whitespace_ge_2] = ACTIONS(105), + [aux_sym__whitespace_token1] = ACTIONS(107), + [sym__word_no_digit] = ACTIONS(109), + [sym__digits] = ACTIONS(109), + [anon_sym_DASH_DASH] = ACTIONS(111), + [anon_sym_DASH_DASH_DASH] = ACTIONS(109), + [anon_sym_DOT_DOT_DOT] = ACTIONS(109), + [sym__code_span_start] = ACTIONS(113), + [sym__emphasis_open_star] = ACTIONS(3201), + [sym__emphasis_open_underscore] = ACTIONS(3203), + [sym__strikeout_open] = ACTIONS(121), + [sym__latex_span_start] = ACTIONS(123), + [sym__single_quote_open] = ACTIONS(125), + [sym__double_quote_open] = ACTIONS(127), + [sym__superscript_open] = ACTIONS(129), + [sym__subscript_open] = ACTIONS(131), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(133), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(135), + [sym__cite_author_in_text] = ACTIONS(137), + [sym__cite_suppress_author] = ACTIONS(139), + [sym__shortcode_open_escaped] = ACTIONS(141), + [sym__shortcode_open] = ACTIONS(143), + [sym__unclosed_span] = ACTIONS(75), }, [STATE(325)] = { - [sym__qmd_attribute] = STATE(748), - [sym_raw_attribute] = STATE(748), - [sym_commonmark_attribute] = STATE(748), - [sym_language_attribute] = STATE(748), - [sym__backslash_escape] = ACTIONS(3643), - [sym_entity_reference] = ACTIONS(3643), - [sym_numeric_character_reference] = ACTIONS(3643), - [anon_sym_LT] = ACTIONS(3645), - [anon_sym_GT] = ACTIONS(3643), - [anon_sym_BANG] = ACTIONS(3643), - [anon_sym_DQUOTE] = ACTIONS(3643), - [anon_sym_POUND] = ACTIONS(3643), - [anon_sym_DOLLAR] = ACTIONS(3643), - [anon_sym_PERCENT] = ACTIONS(3643), - [anon_sym_AMP] = ACTIONS(3645), - [anon_sym_SQUOTE] = ACTIONS(3643), - [anon_sym_STAR] = ACTIONS(3643), - [anon_sym_PLUS] = ACTIONS(3643), - [anon_sym_COMMA] = ACTIONS(3643), - [anon_sym_DASH] = ACTIONS(3645), - [anon_sym_DOT] = ACTIONS(3645), - [anon_sym_SLASH] = ACTIONS(3643), - [anon_sym_COLON] = ACTIONS(3643), - [anon_sym_SEMI] = ACTIONS(3643), - [anon_sym_EQ] = ACTIONS(3643), - [anon_sym_QMARK] = ACTIONS(3643), - [anon_sym_LBRACK] = ACTIONS(3645), - [anon_sym_BSLASH] = ACTIONS(3645), - [anon_sym_CARET] = ACTIONS(3645), - [anon_sym__] = ACTIONS(3643), - [anon_sym_BQUOTE] = ACTIONS(3643), - [anon_sym_LBRACE] = ACTIONS(3701), - [anon_sym_PIPE] = ACTIONS(3643), - [anon_sym_TILDE] = ACTIONS(3643), - [anon_sym_LPAREN] = ACTIONS(3643), - [anon_sym_RPAREN] = ACTIONS(3643), - [sym__newline_token] = ACTIONS(3643), - [anon_sym_CARET_LBRACK] = ACTIONS(3643), - [anon_sym_LBRACK_CARET] = ACTIONS(3643), - [sym_uri_autolink] = ACTIONS(3643), - [sym_email_autolink] = ACTIONS(3643), - [sym__whitespace_ge_2] = ACTIONS(3643), - [aux_sym__whitespace_token1] = ACTIONS(3645), - [sym__word_no_digit] = ACTIONS(3643), - [sym__digits] = ACTIONS(3643), - [anon_sym_DASH_DASH] = ACTIONS(3645), - [anon_sym_DASH_DASH_DASH] = ACTIONS(3643), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3643), - [sym__code_span_start] = ACTIONS(3643), - [sym__emphasis_open_star] = ACTIONS(3643), - [sym__emphasis_open_underscore] = ACTIONS(3643), - [sym__strikeout_open] = ACTIONS(3643), - [sym__latex_span_start] = ACTIONS(3643), - [sym__single_quote_open] = ACTIONS(3643), - [sym__double_quote_open] = ACTIONS(3643), - [sym__superscript_open] = ACTIONS(3643), - [sym__superscript_close] = ACTIONS(3643), - [sym__subscript_open] = ACTIONS(3643), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3643), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3643), - [sym__cite_author_in_text] = ACTIONS(3643), - [sym__cite_suppress_author] = ACTIONS(3643), - [sym__shortcode_open_escaped] = ACTIONS(3643), - [sym__shortcode_open] = ACTIONS(3643), - [sym__unclosed_span] = ACTIONS(3643), + [sym_backslash_escape] = STATE(373), + [sym_commonmark_attribute] = STATE(373), + [sym_code_span] = STATE(373), + [sym_latex_span] = STATE(373), + [sym_insert] = STATE(373), + [sym_delete] = STATE(373), + [sym_highlight] = STATE(373), + [sym_edit_comment] = STATE(373), + [sym_superscript] = STATE(373), + [sym_subscript] = STATE(373), + [sym_strikeout] = STATE(373), + [sym_quoted_span] = STATE(373), + [sym_inline_note] = STATE(373), + [sym_citation] = STATE(373), + [sym_shortcode_escaped] = STATE(373), + [sym_shortcode] = STATE(373), + [sym_note_reference] = STATE(373), + [sym_image] = STATE(373), + [sym__image_inline_link] = STATE(1265), + [sym__image_description] = STATE(2331), + [sym__image_description_non_empty] = STATE(2331), + [sym_hard_line_break] = STATE(373), + [sym__whitespace] = STATE(1262), + [sym__word] = STATE(1262), + [sym__soft_line_break] = STATE(1267), + [sym__inline_base] = STATE(343), + [sym__text_base] = STATE(373), + [sym__inline_element_no_star_no_link] = STATE(343), + [aux_sym__inline_no_star_no_link] = STATE(343), + [sym__emphasis_star_no_link] = STATE(1441), + [sym__strong_emphasis_star_no_link] = STATE(343), + [sym__emphasis_underscore_no_link] = STATE(1441), + [sym__strong_emphasis_underscore_no_link] = STATE(343), + [aux_sym__inline_base_repeat1] = STATE(373), + [sym__backslash_escape] = ACTIONS(885), + [sym_entity_reference] = ACTIONS(887), + [sym_numeric_character_reference] = ACTIONS(887), + [anon_sym_LT] = ACTIONS(889), + [anon_sym_GT] = ACTIONS(891), + [anon_sym_BANG] = ACTIONS(893), + [anon_sym_DQUOTE] = ACTIONS(891), + [anon_sym_POUND] = ACTIONS(891), + [anon_sym_DOLLAR] = ACTIONS(891), + [anon_sym_PERCENT] = ACTIONS(891), + [anon_sym_AMP] = ACTIONS(889), + [anon_sym_SQUOTE] = ACTIONS(891), + [anon_sym_STAR] = ACTIONS(891), + [anon_sym_PLUS] = ACTIONS(891), + [anon_sym_COMMA] = ACTIONS(891), + [anon_sym_DASH] = ACTIONS(889), + [anon_sym_DOT] = ACTIONS(889), + [anon_sym_SLASH] = ACTIONS(891), + [anon_sym_COLON] = ACTIONS(891), + [anon_sym_SEMI] = ACTIONS(891), + [anon_sym_EQ] = ACTIONS(891), + [anon_sym_QMARK] = ACTIONS(891), + [anon_sym_BSLASH] = ACTIONS(897), + [anon_sym_CARET] = ACTIONS(889), + [anon_sym__] = ACTIONS(891), + [anon_sym_BQUOTE] = ACTIONS(891), + [anon_sym_LBRACE] = ACTIONS(899), + [anon_sym_PIPE] = ACTIONS(891), + [anon_sym_TILDE] = ACTIONS(891), + [anon_sym_LPAREN] = ACTIONS(891), + [anon_sym_RPAREN] = ACTIONS(891), + [sym__newline_token] = ACTIONS(901), + [aux_sym_insert_token1] = ACTIONS(903), + [aux_sym_delete_token1] = ACTIONS(905), + [aux_sym_highlight_token1] = ACTIONS(907), + [aux_sym_edit_comment_token1] = ACTIONS(909), + [anon_sym_CARET_LBRACK] = ACTIONS(911), + [anon_sym_LBRACK_CARET] = ACTIONS(913), + [sym_uri_autolink] = ACTIONS(887), + [sym_email_autolink] = ACTIONS(887), + [sym__whitespace_ge_2] = ACTIONS(915), + [aux_sym__whitespace_token1] = ACTIONS(917), + [sym__word_no_digit] = ACTIONS(919), + [sym__digits] = ACTIONS(919), + [anon_sym_DASH_DASH] = ACTIONS(921), + [anon_sym_DASH_DASH_DASH] = ACTIONS(919), + [anon_sym_DOT_DOT_DOT] = ACTIONS(919), + [sym__code_span_start] = ACTIONS(923), + [sym__emphasis_open_star] = ACTIONS(3207), + [sym__emphasis_open_underscore] = ACTIONS(3209), + [sym__emphasis_close_star] = ACTIONS(3211), + [sym__strikeout_open] = ACTIONS(931), + [sym__latex_span_start] = ACTIONS(933), + [sym__single_quote_open] = ACTIONS(935), + [sym__double_quote_open] = ACTIONS(937), + [sym__superscript_open] = ACTIONS(939), + [sym__subscript_open] = ACTIONS(941), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(943), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(945), + [sym__cite_author_in_text] = ACTIONS(947), + [sym__cite_suppress_author] = ACTIONS(949), + [sym__shortcode_open_escaped] = ACTIONS(951), + [sym__shortcode_open] = ACTIONS(953), + [sym__unclosed_span] = ACTIONS(887), }, [STATE(326)] = { - [sym__qmd_attribute] = STATE(656), - [sym_raw_attribute] = STATE(656), - [sym_commonmark_attribute] = STATE(656), - [sym_language_attribute] = STATE(656), - [sym__backslash_escape] = ACTIONS(3705), - [sym_entity_reference] = ACTIONS(3705), - [sym_numeric_character_reference] = ACTIONS(3705), - [anon_sym_LT] = ACTIONS(3707), - [anon_sym_GT] = ACTIONS(3705), - [anon_sym_BANG] = ACTIONS(3705), - [anon_sym_DQUOTE] = ACTIONS(3705), - [anon_sym_POUND] = ACTIONS(3705), - [anon_sym_DOLLAR] = ACTIONS(3705), - [anon_sym_PERCENT] = ACTIONS(3705), - [anon_sym_AMP] = ACTIONS(3707), - [anon_sym_SQUOTE] = ACTIONS(3705), - [anon_sym_STAR] = ACTIONS(3705), - [anon_sym_PLUS] = ACTIONS(3705), - [anon_sym_COMMA] = ACTIONS(3705), - [anon_sym_DASH] = ACTIONS(3707), - [anon_sym_DOT] = ACTIONS(3707), - [anon_sym_SLASH] = ACTIONS(3705), - [anon_sym_COLON] = ACTIONS(3705), - [anon_sym_SEMI] = ACTIONS(3705), - [anon_sym_EQ] = ACTIONS(3705), - [anon_sym_QMARK] = ACTIONS(3705), - [anon_sym_LBRACK] = ACTIONS(3707), - [anon_sym_BSLASH] = ACTIONS(3707), - [anon_sym_CARET] = ACTIONS(3707), - [anon_sym__] = ACTIONS(3705), - [anon_sym_BQUOTE] = ACTIONS(3705), - [anon_sym_LBRACE] = ACTIONS(3709), - [anon_sym_PIPE] = ACTIONS(3705), - [anon_sym_TILDE] = ACTIONS(3705), - [anon_sym_LPAREN] = ACTIONS(3705), - [anon_sym_RPAREN] = ACTIONS(3705), - [sym__newline_token] = ACTIONS(3705), - [anon_sym_CARET_LBRACK] = ACTIONS(3705), - [anon_sym_LBRACK_CARET] = ACTIONS(3705), - [sym_uri_autolink] = ACTIONS(3705), - [sym_email_autolink] = ACTIONS(3705), - [sym__whitespace_ge_2] = ACTIONS(3705), - [aux_sym__whitespace_token1] = ACTIONS(3707), - [sym__word_no_digit] = ACTIONS(3705), - [sym__digits] = ACTIONS(3705), - [anon_sym_DASH_DASH] = ACTIONS(3707), - [anon_sym_DASH_DASH_DASH] = ACTIONS(3705), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3705), - [sym__code_span_start] = ACTIONS(3705), - [sym__emphasis_open_star] = ACTIONS(3705), - [sym__emphasis_open_underscore] = ACTIONS(3705), - [sym__emphasis_close_star] = ACTIONS(3705), - [sym__strikeout_open] = ACTIONS(3705), - [sym__latex_span_start] = ACTIONS(3705), - [sym__single_quote_open] = ACTIONS(3705), - [sym__double_quote_open] = ACTIONS(3705), - [sym__superscript_open] = ACTIONS(3705), - [sym__subscript_open] = ACTIONS(3705), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3705), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3705), - [sym__cite_author_in_text] = ACTIONS(3705), - [sym__cite_suppress_author] = ACTIONS(3705), - [sym__shortcode_open_escaped] = ACTIONS(3705), - [sym__shortcode_open] = ACTIONS(3705), - [sym__unclosed_span] = ACTIONS(3705), + [sym_backslash_escape] = STATE(379), + [sym_commonmark_attribute] = STATE(379), + [sym_code_span] = STATE(379), + [sym_latex_span] = STATE(379), + [sym_insert] = STATE(379), + [sym_delete] = STATE(379), + [sym_highlight] = STATE(379), + [sym_edit_comment] = STATE(379), + [sym_superscript] = STATE(379), + [sym_subscript] = STATE(379), + [sym_strikeout] = STATE(379), + [sym_quoted_span] = STATE(379), + [sym_inline_note] = STATE(379), + [sym_citation] = STATE(379), + [sym_shortcode_escaped] = STATE(379), + [sym_shortcode] = STATE(379), + [sym_note_reference] = STATE(379), + [sym_image] = STATE(379), + [sym__image_inline_link] = STATE(1390), + [sym__image_description] = STATE(2363), + [sym__image_description_non_empty] = STATE(2363), + [sym_hard_line_break] = STATE(379), + [sym__whitespace] = STATE(1385), + [sym__word] = STATE(1385), + [sym__soft_line_break] = STATE(1391), + [sym__inline_base] = STATE(345), + [sym__text_base] = STATE(379), + [sym__inline_element_no_underscore_no_link] = STATE(345), + [aux_sym__inline_no_underscore_no_link] = STATE(345), + [sym__emphasis_star_no_link] = STATE(1442), + [sym__strong_emphasis_star_no_link] = STATE(345), + [sym__emphasis_underscore_no_link] = STATE(1442), + [sym__strong_emphasis_underscore_no_link] = STATE(345), + [aux_sym__inline_base_repeat1] = STATE(379), + [sym__backslash_escape] = ACTIONS(1059), + [sym_entity_reference] = ACTIONS(1061), + [sym_numeric_character_reference] = ACTIONS(1061), + [anon_sym_LT] = ACTIONS(1063), + [anon_sym_GT] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1067), + [anon_sym_DQUOTE] = ACTIONS(1065), + [anon_sym_POUND] = ACTIONS(1065), + [anon_sym_DOLLAR] = ACTIONS(1065), + [anon_sym_PERCENT] = ACTIONS(1065), + [anon_sym_AMP] = ACTIONS(1063), + [anon_sym_SQUOTE] = ACTIONS(1065), + [anon_sym_STAR] = ACTIONS(1065), + [anon_sym_PLUS] = ACTIONS(1065), + [anon_sym_COMMA] = ACTIONS(1065), + [anon_sym_DASH] = ACTIONS(1063), + [anon_sym_DOT] = ACTIONS(1063), + [anon_sym_SLASH] = ACTIONS(1065), + [anon_sym_COLON] = ACTIONS(1065), + [anon_sym_SEMI] = ACTIONS(1065), + [anon_sym_EQ] = ACTIONS(1065), + [anon_sym_QMARK] = ACTIONS(1065), + [anon_sym_BSLASH] = ACTIONS(1071), + [anon_sym_CARET] = ACTIONS(1063), + [anon_sym__] = ACTIONS(1065), + [anon_sym_BQUOTE] = ACTIONS(1065), + [anon_sym_LBRACE] = ACTIONS(1073), + [anon_sym_PIPE] = ACTIONS(1065), + [anon_sym_TILDE] = ACTIONS(1065), + [anon_sym_LPAREN] = ACTIONS(1065), + [anon_sym_RPAREN] = ACTIONS(1065), + [sym__newline_token] = ACTIONS(1075), + [aux_sym_insert_token1] = ACTIONS(1077), + [aux_sym_delete_token1] = ACTIONS(1079), + [aux_sym_highlight_token1] = ACTIONS(1081), + [aux_sym_edit_comment_token1] = ACTIONS(1083), + [anon_sym_CARET_LBRACK] = ACTIONS(1085), + [anon_sym_LBRACK_CARET] = ACTIONS(1087), + [sym_uri_autolink] = ACTIONS(1061), + [sym_email_autolink] = ACTIONS(1061), + [sym__whitespace_ge_2] = ACTIONS(1089), + [aux_sym__whitespace_token1] = ACTIONS(1091), + [sym__word_no_digit] = ACTIONS(1093), + [sym__digits] = ACTIONS(1093), + [anon_sym_DASH_DASH] = ACTIONS(1095), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1093), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1093), + [sym__code_span_start] = ACTIONS(1097), + [sym__emphasis_open_star] = ACTIONS(3193), + [sym__emphasis_open_underscore] = ACTIONS(3195), + [sym__emphasis_close_underscore] = ACTIONS(3213), + [sym__strikeout_open] = ACTIONS(1105), + [sym__latex_span_start] = ACTIONS(1107), + [sym__single_quote_open] = ACTIONS(1109), + [sym__double_quote_open] = ACTIONS(1111), + [sym__superscript_open] = ACTIONS(1113), + [sym__subscript_open] = ACTIONS(1115), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1117), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1119), + [sym__cite_author_in_text] = ACTIONS(1121), + [sym__cite_suppress_author] = ACTIONS(1123), + [sym__shortcode_open_escaped] = ACTIONS(1125), + [sym__shortcode_open] = ACTIONS(1127), + [sym__unclosed_span] = ACTIONS(1061), }, [STATE(327)] = { - [sym__qmd_attribute] = STATE(701), - [sym_raw_attribute] = STATE(701), - [sym_commonmark_attribute] = STATE(701), - [sym_language_attribute] = STATE(701), - [sym__backslash_escape] = ACTIONS(3629), - [sym_entity_reference] = ACTIONS(3629), - [sym_numeric_character_reference] = ACTIONS(3629), - [anon_sym_LT] = ACTIONS(3631), - [anon_sym_GT] = ACTIONS(3629), - [anon_sym_BANG] = ACTIONS(3629), - [anon_sym_DQUOTE] = ACTIONS(3629), - [anon_sym_POUND] = ACTIONS(3629), - [anon_sym_DOLLAR] = ACTIONS(3629), - [anon_sym_PERCENT] = ACTIONS(3629), - [anon_sym_AMP] = ACTIONS(3631), - [anon_sym_SQUOTE] = ACTIONS(3629), - [anon_sym_STAR] = ACTIONS(3629), - [anon_sym_PLUS] = ACTIONS(3629), - [anon_sym_COMMA] = ACTIONS(3629), - [anon_sym_DASH] = ACTIONS(3631), - [anon_sym_DOT] = ACTIONS(3631), - [anon_sym_SLASH] = ACTIONS(3629), - [anon_sym_COLON] = ACTIONS(3629), - [anon_sym_SEMI] = ACTIONS(3629), - [anon_sym_EQ] = ACTIONS(3629), - [anon_sym_QMARK] = ACTIONS(3629), - [anon_sym_LBRACK] = ACTIONS(3631), - [anon_sym_BSLASH] = ACTIONS(3631), - [anon_sym_CARET] = ACTIONS(3631), - [anon_sym__] = ACTIONS(3629), - [anon_sym_BQUOTE] = ACTIONS(3629), - [anon_sym_LBRACE] = ACTIONS(3709), - [anon_sym_PIPE] = ACTIONS(3629), - [anon_sym_TILDE] = ACTIONS(3629), - [anon_sym_LPAREN] = ACTIONS(3629), - [anon_sym_RPAREN] = ACTIONS(3629), - [sym__newline_token] = ACTIONS(3629), - [anon_sym_CARET_LBRACK] = ACTIONS(3629), - [anon_sym_LBRACK_CARET] = ACTIONS(3629), - [sym_uri_autolink] = ACTIONS(3629), - [sym_email_autolink] = ACTIONS(3629), - [sym__whitespace_ge_2] = ACTIONS(3629), - [aux_sym__whitespace_token1] = ACTIONS(3631), - [sym__word_no_digit] = ACTIONS(3629), - [sym__digits] = ACTIONS(3629), - [anon_sym_DASH_DASH] = ACTIONS(3631), - [anon_sym_DASH_DASH_DASH] = ACTIONS(3629), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3629), - [sym__code_span_start] = ACTIONS(3629), - [sym__emphasis_open_star] = ACTIONS(3629), - [sym__emphasis_open_underscore] = ACTIONS(3629), - [sym__emphasis_close_star] = ACTIONS(3629), - [sym__strikeout_open] = ACTIONS(3629), - [sym__latex_span_start] = ACTIONS(3629), - [sym__single_quote_open] = ACTIONS(3629), - [sym__double_quote_open] = ACTIONS(3629), - [sym__superscript_open] = ACTIONS(3629), - [sym__subscript_open] = ACTIONS(3629), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3629), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3629), - [sym__cite_author_in_text] = ACTIONS(3629), - [sym__cite_suppress_author] = ACTIONS(3629), - [sym__shortcode_open_escaped] = ACTIONS(3629), - [sym__shortcode_open] = ACTIONS(3629), - [sym__unclosed_span] = ACTIONS(3629), + [sym_backslash_escape] = STATE(373), + [sym_commonmark_attribute] = STATE(373), + [sym_code_span] = STATE(373), + [sym_latex_span] = STATE(373), + [sym_insert] = STATE(373), + [sym_delete] = STATE(373), + [sym_highlight] = STATE(373), + [sym_edit_comment] = STATE(373), + [sym_superscript] = STATE(373), + [sym_subscript] = STATE(373), + [sym_strikeout] = STATE(373), + [sym_quoted_span] = STATE(373), + [sym_inline_note] = STATE(373), + [sym_citation] = STATE(373), + [sym_shortcode_escaped] = STATE(373), + [sym_shortcode] = STATE(373), + [sym_note_reference] = STATE(373), + [sym_image] = STATE(373), + [sym__image_inline_link] = STATE(1265), + [sym__image_description] = STATE(2331), + [sym__image_description_non_empty] = STATE(2331), + [sym_hard_line_break] = STATE(373), + [sym__whitespace] = STATE(1262), + [sym__word] = STATE(1262), + [sym__soft_line_break] = STATE(1267), + [sym__inline_base] = STATE(343), + [sym__text_base] = STATE(373), + [sym__inline_element_no_star_no_link] = STATE(343), + [aux_sym__inline_no_star_no_link] = STATE(343), + [sym__emphasis_star_no_link] = STATE(1441), + [sym__strong_emphasis_star_no_link] = STATE(343), + [sym__emphasis_underscore_no_link] = STATE(1441), + [sym__strong_emphasis_underscore_no_link] = STATE(343), + [aux_sym__inline_base_repeat1] = STATE(373), + [sym__backslash_escape] = ACTIONS(885), + [sym_entity_reference] = ACTIONS(887), + [sym_numeric_character_reference] = ACTIONS(887), + [anon_sym_LT] = ACTIONS(889), + [anon_sym_GT] = ACTIONS(891), + [anon_sym_BANG] = ACTIONS(893), + [anon_sym_DQUOTE] = ACTIONS(891), + [anon_sym_POUND] = ACTIONS(891), + [anon_sym_DOLLAR] = ACTIONS(891), + [anon_sym_PERCENT] = ACTIONS(891), + [anon_sym_AMP] = ACTIONS(889), + [anon_sym_SQUOTE] = ACTIONS(891), + [anon_sym_STAR] = ACTIONS(891), + [anon_sym_PLUS] = ACTIONS(891), + [anon_sym_COMMA] = ACTIONS(891), + [anon_sym_DASH] = ACTIONS(889), + [anon_sym_DOT] = ACTIONS(889), + [anon_sym_SLASH] = ACTIONS(891), + [anon_sym_COLON] = ACTIONS(891), + [anon_sym_SEMI] = ACTIONS(891), + [anon_sym_EQ] = ACTIONS(891), + [anon_sym_QMARK] = ACTIONS(891), + [anon_sym_BSLASH] = ACTIONS(897), + [anon_sym_CARET] = ACTIONS(889), + [anon_sym__] = ACTIONS(891), + [anon_sym_BQUOTE] = ACTIONS(891), + [anon_sym_LBRACE] = ACTIONS(899), + [anon_sym_PIPE] = ACTIONS(891), + [anon_sym_TILDE] = ACTIONS(891), + [anon_sym_LPAREN] = ACTIONS(891), + [anon_sym_RPAREN] = ACTIONS(891), + [sym__newline_token] = ACTIONS(901), + [aux_sym_insert_token1] = ACTIONS(903), + [aux_sym_delete_token1] = ACTIONS(905), + [aux_sym_highlight_token1] = ACTIONS(907), + [aux_sym_edit_comment_token1] = ACTIONS(909), + [anon_sym_CARET_LBRACK] = ACTIONS(911), + [anon_sym_LBRACK_CARET] = ACTIONS(913), + [sym_uri_autolink] = ACTIONS(887), + [sym_email_autolink] = ACTIONS(887), + [sym__whitespace_ge_2] = ACTIONS(915), + [aux_sym__whitespace_token1] = ACTIONS(917), + [sym__word_no_digit] = ACTIONS(919), + [sym__digits] = ACTIONS(919), + [anon_sym_DASH_DASH] = ACTIONS(921), + [anon_sym_DASH_DASH_DASH] = ACTIONS(919), + [anon_sym_DOT_DOT_DOT] = ACTIONS(919), + [sym__code_span_start] = ACTIONS(923), + [sym__emphasis_open_star] = ACTIONS(3207), + [sym__emphasis_open_underscore] = ACTIONS(3209), + [sym__emphasis_close_star] = ACTIONS(3215), + [sym__strikeout_open] = ACTIONS(931), + [sym__latex_span_start] = ACTIONS(933), + [sym__single_quote_open] = ACTIONS(935), + [sym__double_quote_open] = ACTIONS(937), + [sym__superscript_open] = ACTIONS(939), + [sym__subscript_open] = ACTIONS(941), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(943), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(945), + [sym__cite_author_in_text] = ACTIONS(947), + [sym__cite_suppress_author] = ACTIONS(949), + [sym__shortcode_open_escaped] = ACTIONS(951), + [sym__shortcode_open] = ACTIONS(953), + [sym__unclosed_span] = ACTIONS(887), }, [STATE(328)] = { - [sym__qmd_attribute] = STATE(521), - [sym_raw_attribute] = STATE(521), - [sym_commonmark_attribute] = STATE(521), - [sym_language_attribute] = STATE(521), - [sym__backslash_escape] = ACTIONS(3647), - [sym_entity_reference] = ACTIONS(3647), - [sym_numeric_character_reference] = ACTIONS(3647), - [anon_sym_LT] = ACTIONS(3649), - [anon_sym_GT] = ACTIONS(3647), - [anon_sym_BANG] = ACTIONS(3647), - [anon_sym_DQUOTE] = ACTIONS(3647), - [anon_sym_POUND] = ACTIONS(3647), - [anon_sym_DOLLAR] = ACTIONS(3647), - [anon_sym_PERCENT] = ACTIONS(3647), - [anon_sym_AMP] = ACTIONS(3649), - [anon_sym_SQUOTE] = ACTIONS(3647), - [anon_sym_STAR] = ACTIONS(3647), - [anon_sym_PLUS] = ACTIONS(3647), - [anon_sym_COMMA] = ACTIONS(3647), - [anon_sym_DASH] = ACTIONS(3649), - [anon_sym_DOT] = ACTIONS(3649), - [anon_sym_SLASH] = ACTIONS(3647), - [anon_sym_COLON] = ACTIONS(3647), - [anon_sym_SEMI] = ACTIONS(3647), - [anon_sym_EQ] = ACTIONS(3647), - [anon_sym_QMARK] = ACTIONS(3647), - [anon_sym_LBRACK] = ACTIONS(3649), - [anon_sym_BSLASH] = ACTIONS(3649), - [anon_sym_CARET] = ACTIONS(3649), - [anon_sym__] = ACTIONS(3647), - [anon_sym_BQUOTE] = ACTIONS(3647), - [anon_sym_LBRACE] = ACTIONS(3701), - [anon_sym_PIPE] = ACTIONS(3647), - [anon_sym_TILDE] = ACTIONS(3647), - [anon_sym_LPAREN] = ACTIONS(3647), - [anon_sym_RPAREN] = ACTIONS(3647), - [sym__newline_token] = ACTIONS(3647), - [anon_sym_CARET_LBRACK] = ACTIONS(3647), - [anon_sym_LBRACK_CARET] = ACTIONS(3647), - [sym_uri_autolink] = ACTIONS(3647), - [sym_email_autolink] = ACTIONS(3647), - [sym__whitespace_ge_2] = ACTIONS(3647), - [aux_sym__whitespace_token1] = ACTIONS(3649), - [sym__word_no_digit] = ACTIONS(3647), - [sym__digits] = ACTIONS(3647), - [anon_sym_DASH_DASH] = ACTIONS(3649), - [anon_sym_DASH_DASH_DASH] = ACTIONS(3647), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3647), - [sym__code_span_start] = ACTIONS(3647), - [sym__emphasis_open_star] = ACTIONS(3647), - [sym__emphasis_open_underscore] = ACTIONS(3647), - [sym__strikeout_open] = ACTIONS(3647), - [sym__latex_span_start] = ACTIONS(3647), - [sym__single_quote_open] = ACTIONS(3647), - [sym__double_quote_open] = ACTIONS(3647), - [sym__superscript_open] = ACTIONS(3647), - [sym__superscript_close] = ACTIONS(3647), - [sym__subscript_open] = ACTIONS(3647), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3647), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3647), - [sym__cite_author_in_text] = ACTIONS(3647), - [sym__cite_suppress_author] = ACTIONS(3647), - [sym__shortcode_open_escaped] = ACTIONS(3647), - [sym__shortcode_open] = ACTIONS(3647), - [sym__unclosed_span] = ACTIONS(3647), + [sym_backslash_escape] = STATE(379), + [sym_commonmark_attribute] = STATE(379), + [sym_code_span] = STATE(379), + [sym_latex_span] = STATE(379), + [sym_insert] = STATE(379), + [sym_delete] = STATE(379), + [sym_highlight] = STATE(379), + [sym_edit_comment] = STATE(379), + [sym_superscript] = STATE(379), + [sym_subscript] = STATE(379), + [sym_strikeout] = STATE(379), + [sym_quoted_span] = STATE(379), + [sym_inline_note] = STATE(379), + [sym_citation] = STATE(379), + [sym_shortcode_escaped] = STATE(379), + [sym_shortcode] = STATE(379), + [sym_note_reference] = STATE(379), + [sym_image] = STATE(379), + [sym__image_inline_link] = STATE(1390), + [sym__image_description] = STATE(2363), + [sym__image_description_non_empty] = STATE(2363), + [sym_hard_line_break] = STATE(379), + [sym__whitespace] = STATE(1385), + [sym__word] = STATE(1385), + [sym__soft_line_break] = STATE(1391), + [sym__inline_base] = STATE(345), + [sym__text_base] = STATE(379), + [sym__inline_element_no_underscore_no_link] = STATE(345), + [aux_sym__inline_no_underscore_no_link] = STATE(345), + [sym__emphasis_star_no_link] = STATE(1442), + [sym__strong_emphasis_star_no_link] = STATE(345), + [sym__emphasis_underscore_no_link] = STATE(1442), + [sym__strong_emphasis_underscore_no_link] = STATE(345), + [aux_sym__inline_base_repeat1] = STATE(379), + [sym__backslash_escape] = ACTIONS(1059), + [sym_entity_reference] = ACTIONS(1061), + [sym_numeric_character_reference] = ACTIONS(1061), + [anon_sym_LT] = ACTIONS(1063), + [anon_sym_GT] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1067), + [anon_sym_DQUOTE] = ACTIONS(1065), + [anon_sym_POUND] = ACTIONS(1065), + [anon_sym_DOLLAR] = ACTIONS(1065), + [anon_sym_PERCENT] = ACTIONS(1065), + [anon_sym_AMP] = ACTIONS(1063), + [anon_sym_SQUOTE] = ACTIONS(1065), + [anon_sym_STAR] = ACTIONS(1065), + [anon_sym_PLUS] = ACTIONS(1065), + [anon_sym_COMMA] = ACTIONS(1065), + [anon_sym_DASH] = ACTIONS(1063), + [anon_sym_DOT] = ACTIONS(1063), + [anon_sym_SLASH] = ACTIONS(1065), + [anon_sym_COLON] = ACTIONS(1065), + [anon_sym_SEMI] = ACTIONS(1065), + [anon_sym_EQ] = ACTIONS(1065), + [anon_sym_QMARK] = ACTIONS(1065), + [anon_sym_BSLASH] = ACTIONS(1071), + [anon_sym_CARET] = ACTIONS(1063), + [anon_sym__] = ACTIONS(1065), + [anon_sym_BQUOTE] = ACTIONS(1065), + [anon_sym_LBRACE] = ACTIONS(1073), + [anon_sym_PIPE] = ACTIONS(1065), + [anon_sym_TILDE] = ACTIONS(1065), + [anon_sym_LPAREN] = ACTIONS(1065), + [anon_sym_RPAREN] = ACTIONS(1065), + [sym__newline_token] = ACTIONS(1075), + [aux_sym_insert_token1] = ACTIONS(1077), + [aux_sym_delete_token1] = ACTIONS(1079), + [aux_sym_highlight_token1] = ACTIONS(1081), + [aux_sym_edit_comment_token1] = ACTIONS(1083), + [anon_sym_CARET_LBRACK] = ACTIONS(1085), + [anon_sym_LBRACK_CARET] = ACTIONS(1087), + [sym_uri_autolink] = ACTIONS(1061), + [sym_email_autolink] = ACTIONS(1061), + [sym__whitespace_ge_2] = ACTIONS(1089), + [aux_sym__whitespace_token1] = ACTIONS(1091), + [sym__word_no_digit] = ACTIONS(1093), + [sym__digits] = ACTIONS(1093), + [anon_sym_DASH_DASH] = ACTIONS(1095), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1093), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1093), + [sym__code_span_start] = ACTIONS(1097), + [sym__emphasis_open_star] = ACTIONS(3193), + [sym__emphasis_open_underscore] = ACTIONS(3195), + [sym__emphasis_close_underscore] = ACTIONS(3217), + [sym__strikeout_open] = ACTIONS(1105), + [sym__latex_span_start] = ACTIONS(1107), + [sym__single_quote_open] = ACTIONS(1109), + [sym__double_quote_open] = ACTIONS(1111), + [sym__superscript_open] = ACTIONS(1113), + [sym__subscript_open] = ACTIONS(1115), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1117), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1119), + [sym__cite_author_in_text] = ACTIONS(1121), + [sym__cite_suppress_author] = ACTIONS(1123), + [sym__shortcode_open_escaped] = ACTIONS(1125), + [sym__shortcode_open] = ACTIONS(1127), + [sym__unclosed_span] = ACTIONS(1061), }, [STATE(329)] = { - [sym__qmd_attribute] = STATE(758), - [sym_raw_attribute] = STATE(758), - [sym_commonmark_attribute] = STATE(758), - [sym_language_attribute] = STATE(758), - [sym__backslash_escape] = ACTIONS(3651), - [sym_entity_reference] = ACTIONS(3651), - [sym_numeric_character_reference] = ACTIONS(3651), - [anon_sym_LT] = ACTIONS(3653), - [anon_sym_GT] = ACTIONS(3651), - [anon_sym_BANG] = ACTIONS(3651), - [anon_sym_DQUOTE] = ACTIONS(3651), - [anon_sym_POUND] = ACTIONS(3651), - [anon_sym_DOLLAR] = ACTIONS(3651), - [anon_sym_PERCENT] = ACTIONS(3651), - [anon_sym_AMP] = ACTIONS(3653), - [anon_sym_SQUOTE] = ACTIONS(3651), - [anon_sym_STAR] = ACTIONS(3651), - [anon_sym_PLUS] = ACTIONS(3651), - [anon_sym_COMMA] = ACTIONS(3651), - [anon_sym_DASH] = ACTIONS(3653), - [anon_sym_DOT] = ACTIONS(3653), - [anon_sym_SLASH] = ACTIONS(3651), - [anon_sym_COLON] = ACTIONS(3651), - [anon_sym_SEMI] = ACTIONS(3651), - [anon_sym_EQ] = ACTIONS(3651), - [anon_sym_QMARK] = ACTIONS(3651), - [anon_sym_LBRACK] = ACTIONS(3653), - [anon_sym_BSLASH] = ACTIONS(3653), - [anon_sym_CARET] = ACTIONS(3653), - [anon_sym__] = ACTIONS(3651), - [anon_sym_BQUOTE] = ACTIONS(3651), - [anon_sym_LBRACE] = ACTIONS(3701), - [anon_sym_PIPE] = ACTIONS(3651), - [anon_sym_TILDE] = ACTIONS(3651), - [anon_sym_LPAREN] = ACTIONS(3651), - [anon_sym_RPAREN] = ACTIONS(3651), - [sym__newline_token] = ACTIONS(3651), - [anon_sym_CARET_LBRACK] = ACTIONS(3651), - [anon_sym_LBRACK_CARET] = ACTIONS(3651), - [sym_uri_autolink] = ACTIONS(3651), - [sym_email_autolink] = ACTIONS(3651), - [sym__whitespace_ge_2] = ACTIONS(3651), - [aux_sym__whitespace_token1] = ACTIONS(3653), - [sym__word_no_digit] = ACTIONS(3651), - [sym__digits] = ACTIONS(3651), - [anon_sym_DASH_DASH] = ACTIONS(3653), - [anon_sym_DASH_DASH_DASH] = ACTIONS(3651), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3651), - [sym__code_span_start] = ACTIONS(3651), - [sym__emphasis_open_star] = ACTIONS(3651), - [sym__emphasis_open_underscore] = ACTIONS(3651), - [sym__strikeout_open] = ACTIONS(3651), - [sym__latex_span_start] = ACTIONS(3651), - [sym__single_quote_open] = ACTIONS(3651), - [sym__double_quote_open] = ACTIONS(3651), - [sym__superscript_open] = ACTIONS(3651), - [sym__superscript_close] = ACTIONS(3651), - [sym__subscript_open] = ACTIONS(3651), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3651), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3651), - [sym__cite_author_in_text] = ACTIONS(3651), - [sym__cite_suppress_author] = ACTIONS(3651), - [sym__shortcode_open_escaped] = ACTIONS(3651), - [sym__shortcode_open] = ACTIONS(3651), - [sym__unclosed_span] = ACTIONS(3651), + [sym_backslash_escape] = STATE(370), + [sym_commonmark_attribute] = STATE(370), + [sym_code_span] = STATE(370), + [sym_latex_span] = STATE(370), + [sym_insert] = STATE(370), + [sym_delete] = STATE(370), + [sym_highlight] = STATE(370), + [sym_edit_comment] = STATE(370), + [sym_superscript] = STATE(370), + [sym_subscript] = STATE(370), + [sym_strikeout] = STATE(370), + [sym_quoted_span] = STATE(370), + [sym_inline_note] = STATE(370), + [sym_citation] = STATE(370), + [sym_shortcode_escaped] = STATE(370), + [sym_shortcode] = STATE(370), + [sym_note_reference] = STATE(370), + [sym_image] = STATE(370), + [sym__image_inline_link] = STATE(923), + [sym__image_description] = STATE(2342), + [sym__image_description_non_empty] = STATE(2342), + [sym_hard_line_break] = STATE(370), + [sym__whitespace] = STATE(920), + [sym__word] = STATE(920), + [sym__soft_line_break] = STATE(924), + [sym__inline_base] = STATE(1451), + [sym__text_base] = STATE(370), + [sym__inline_element_no_link] = STATE(1451), + [aux_sym__inline_no_link] = STATE(335), + [sym__emphasis_star_no_link] = STATE(1452), + [sym__strong_emphasis_star_no_link] = STATE(1451), + [sym__emphasis_underscore_no_link] = STATE(1452), + [sym__strong_emphasis_underscore_no_link] = STATE(1451), + [aux_sym__inline_base_repeat1] = STATE(370), + [sym__backslash_escape] = ACTIONS(73), + [sym_entity_reference] = ACTIONS(75), + [sym_numeric_character_reference] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_BANG] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_POUND] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(79), + [anon_sym_PERCENT] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_STAR] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_COMMA] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_DOT] = ACTIONS(77), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_COLON] = ACTIONS(79), + [anon_sym_SEMI] = ACTIONS(79), + [anon_sym_EQ] = ACTIONS(79), + [anon_sym_QMARK] = ACTIONS(79), + [anon_sym_BSLASH] = ACTIONS(85), + [anon_sym_RBRACK] = ACTIONS(3219), + [anon_sym_CARET] = ACTIONS(77), + [anon_sym__] = ACTIONS(79), + [anon_sym_BQUOTE] = ACTIONS(79), + [anon_sym_LBRACE] = ACTIONS(89), + [anon_sym_PIPE] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(79), + [anon_sym_RPAREN] = ACTIONS(79), + [sym__newline_token] = ACTIONS(91), + [aux_sym_insert_token1] = ACTIONS(93), + [aux_sym_delete_token1] = ACTIONS(95), + [aux_sym_highlight_token1] = ACTIONS(97), + [aux_sym_edit_comment_token1] = ACTIONS(99), + [anon_sym_CARET_LBRACK] = ACTIONS(101), + [anon_sym_LBRACK_CARET] = ACTIONS(103), + [sym_uri_autolink] = ACTIONS(75), + [sym_email_autolink] = ACTIONS(75), + [sym__whitespace_ge_2] = ACTIONS(105), + [aux_sym__whitespace_token1] = ACTIONS(107), + [sym__word_no_digit] = ACTIONS(109), + [sym__digits] = ACTIONS(109), + [anon_sym_DASH_DASH] = ACTIONS(111), + [anon_sym_DASH_DASH_DASH] = ACTIONS(109), + [anon_sym_DOT_DOT_DOT] = ACTIONS(109), + [sym__code_span_start] = ACTIONS(113), + [sym__emphasis_open_star] = ACTIONS(3201), + [sym__emphasis_open_underscore] = ACTIONS(3203), + [sym__strikeout_open] = ACTIONS(121), + [sym__latex_span_start] = ACTIONS(123), + [sym__single_quote_open] = ACTIONS(125), + [sym__double_quote_open] = ACTIONS(127), + [sym__superscript_open] = ACTIONS(129), + [sym__subscript_open] = ACTIONS(131), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(133), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(135), + [sym__cite_author_in_text] = ACTIONS(137), + [sym__cite_suppress_author] = ACTIONS(139), + [sym__shortcode_open_escaped] = ACTIONS(141), + [sym__shortcode_open] = ACTIONS(143), + [sym__unclosed_span] = ACTIONS(75), }, [STATE(330)] = { - [sym__qmd_attribute] = STATE(765), - [sym_raw_attribute] = STATE(765), - [sym_commonmark_attribute] = STATE(765), - [sym_language_attribute] = STATE(765), - [sym__backslash_escape] = ACTIONS(3655), - [sym_entity_reference] = ACTIONS(3655), - [sym_numeric_character_reference] = ACTIONS(3655), - [anon_sym_LT] = ACTIONS(3657), - [anon_sym_GT] = ACTIONS(3655), - [anon_sym_BANG] = ACTIONS(3655), - [anon_sym_DQUOTE] = ACTIONS(3655), - [anon_sym_POUND] = ACTIONS(3655), - [anon_sym_DOLLAR] = ACTIONS(3655), - [anon_sym_PERCENT] = ACTIONS(3655), - [anon_sym_AMP] = ACTIONS(3657), - [anon_sym_SQUOTE] = ACTIONS(3655), - [anon_sym_STAR] = ACTIONS(3655), - [anon_sym_PLUS] = ACTIONS(3655), - [anon_sym_COMMA] = ACTIONS(3655), - [anon_sym_DASH] = ACTIONS(3657), - [anon_sym_DOT] = ACTIONS(3657), - [anon_sym_SLASH] = ACTIONS(3655), - [anon_sym_COLON] = ACTIONS(3655), - [anon_sym_SEMI] = ACTIONS(3655), - [anon_sym_EQ] = ACTIONS(3655), - [anon_sym_QMARK] = ACTIONS(3655), - [anon_sym_LBRACK] = ACTIONS(3657), - [anon_sym_BSLASH] = ACTIONS(3657), - [anon_sym_CARET] = ACTIONS(3657), - [anon_sym__] = ACTIONS(3655), - [anon_sym_BQUOTE] = ACTIONS(3655), - [anon_sym_LBRACE] = ACTIONS(3701), - [anon_sym_PIPE] = ACTIONS(3655), - [anon_sym_TILDE] = ACTIONS(3655), - [anon_sym_LPAREN] = ACTIONS(3655), - [anon_sym_RPAREN] = ACTIONS(3655), - [sym__newline_token] = ACTIONS(3655), - [anon_sym_CARET_LBRACK] = ACTIONS(3655), - [anon_sym_LBRACK_CARET] = ACTIONS(3655), - [sym_uri_autolink] = ACTIONS(3655), - [sym_email_autolink] = ACTIONS(3655), - [sym__whitespace_ge_2] = ACTIONS(3655), - [aux_sym__whitespace_token1] = ACTIONS(3657), - [sym__word_no_digit] = ACTIONS(3655), - [sym__digits] = ACTIONS(3655), - [anon_sym_DASH_DASH] = ACTIONS(3657), - [anon_sym_DASH_DASH_DASH] = ACTIONS(3655), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3655), - [sym__code_span_start] = ACTIONS(3655), - [sym__emphasis_open_star] = ACTIONS(3655), - [sym__emphasis_open_underscore] = ACTIONS(3655), - [sym__strikeout_open] = ACTIONS(3655), - [sym__latex_span_start] = ACTIONS(3655), - [sym__single_quote_open] = ACTIONS(3655), - [sym__double_quote_open] = ACTIONS(3655), - [sym__superscript_open] = ACTIONS(3655), - [sym__superscript_close] = ACTIONS(3655), - [sym__subscript_open] = ACTIONS(3655), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3655), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3655), - [sym__cite_author_in_text] = ACTIONS(3655), - [sym__cite_suppress_author] = ACTIONS(3655), - [sym__shortcode_open_escaped] = ACTIONS(3655), - [sym__shortcode_open] = ACTIONS(3655), - [sym__unclosed_span] = ACTIONS(3655), + [sym_backslash_escape] = STATE(373), + [sym_commonmark_attribute] = STATE(373), + [sym_code_span] = STATE(373), + [sym_latex_span] = STATE(373), + [sym_insert] = STATE(373), + [sym_delete] = STATE(373), + [sym_highlight] = STATE(373), + [sym_edit_comment] = STATE(373), + [sym_superscript] = STATE(373), + [sym_subscript] = STATE(373), + [sym_strikeout] = STATE(373), + [sym_quoted_span] = STATE(373), + [sym_inline_note] = STATE(373), + [sym_citation] = STATE(373), + [sym_shortcode_escaped] = STATE(373), + [sym_shortcode] = STATE(373), + [sym_note_reference] = STATE(373), + [sym_image] = STATE(373), + [sym__image_inline_link] = STATE(1265), + [sym__image_description] = STATE(2331), + [sym__image_description_non_empty] = STATE(2331), + [sym_hard_line_break] = STATE(373), + [sym__whitespace] = STATE(1262), + [sym__word] = STATE(1262), + [sym__soft_line_break] = STATE(1267), + [sym__inline_base] = STATE(325), + [sym__text_base] = STATE(373), + [sym__inline_element_no_star_no_link] = STATE(325), + [aux_sym__inline_no_star_no_link] = STATE(325), + [sym__emphasis_star_no_link] = STATE(1429), + [sym__strong_emphasis_star_no_link] = STATE(325), + [sym__emphasis_underscore_no_link] = STATE(1441), + [sym__strong_emphasis_underscore_no_link] = STATE(325), + [aux_sym__inline_base_repeat1] = STATE(373), + [sym__backslash_escape] = ACTIONS(885), + [sym_entity_reference] = ACTIONS(887), + [sym_numeric_character_reference] = ACTIONS(887), + [anon_sym_LT] = ACTIONS(889), + [anon_sym_GT] = ACTIONS(891), + [anon_sym_BANG] = ACTIONS(893), + [anon_sym_DQUOTE] = ACTIONS(891), + [anon_sym_POUND] = ACTIONS(891), + [anon_sym_DOLLAR] = ACTIONS(891), + [anon_sym_PERCENT] = ACTIONS(891), + [anon_sym_AMP] = ACTIONS(889), + [anon_sym_SQUOTE] = ACTIONS(891), + [anon_sym_STAR] = ACTIONS(891), + [anon_sym_PLUS] = ACTIONS(891), + [anon_sym_COMMA] = ACTIONS(891), + [anon_sym_DASH] = ACTIONS(889), + [anon_sym_DOT] = ACTIONS(889), + [anon_sym_SLASH] = ACTIONS(891), + [anon_sym_COLON] = ACTIONS(891), + [anon_sym_SEMI] = ACTIONS(891), + [anon_sym_EQ] = ACTIONS(891), + [anon_sym_QMARK] = ACTIONS(891), + [anon_sym_BSLASH] = ACTIONS(897), + [anon_sym_CARET] = ACTIONS(889), + [anon_sym__] = ACTIONS(891), + [anon_sym_BQUOTE] = ACTIONS(891), + [anon_sym_LBRACE] = ACTIONS(899), + [anon_sym_PIPE] = ACTIONS(891), + [anon_sym_TILDE] = ACTIONS(891), + [anon_sym_LPAREN] = ACTIONS(891), + [anon_sym_RPAREN] = ACTIONS(891), + [sym__newline_token] = ACTIONS(901), + [aux_sym_insert_token1] = ACTIONS(903), + [aux_sym_delete_token1] = ACTIONS(905), + [aux_sym_highlight_token1] = ACTIONS(907), + [aux_sym_edit_comment_token1] = ACTIONS(909), + [anon_sym_CARET_LBRACK] = ACTIONS(911), + [anon_sym_LBRACK_CARET] = ACTIONS(913), + [sym_uri_autolink] = ACTIONS(887), + [sym_email_autolink] = ACTIONS(887), + [sym__whitespace_ge_2] = ACTIONS(915), + [aux_sym__whitespace_token1] = ACTIONS(917), + [sym__word_no_digit] = ACTIONS(919), + [sym__digits] = ACTIONS(919), + [anon_sym_DASH_DASH] = ACTIONS(921), + [anon_sym_DASH_DASH_DASH] = ACTIONS(919), + [anon_sym_DOT_DOT_DOT] = ACTIONS(919), + [sym__code_span_start] = ACTIONS(923), + [sym__emphasis_open_star] = ACTIONS(3207), + [sym__emphasis_open_underscore] = ACTIONS(3209), + [sym__last_token_punctuation] = ACTIONS(3221), + [sym__strikeout_open] = ACTIONS(931), + [sym__latex_span_start] = ACTIONS(933), + [sym__single_quote_open] = ACTIONS(935), + [sym__double_quote_open] = ACTIONS(937), + [sym__superscript_open] = ACTIONS(939), + [sym__subscript_open] = ACTIONS(941), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(943), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(945), + [sym__cite_author_in_text] = ACTIONS(947), + [sym__cite_suppress_author] = ACTIONS(949), + [sym__shortcode_open_escaped] = ACTIONS(951), + [sym__shortcode_open] = ACTIONS(953), + [sym__unclosed_span] = ACTIONS(887), }, [STATE(331)] = { - [sym__qmd_attribute] = STATE(767), - [sym_raw_attribute] = STATE(767), - [sym_commonmark_attribute] = STATE(767), - [sym_language_attribute] = STATE(767), - [sym__backslash_escape] = ACTIONS(3659), - [sym_entity_reference] = ACTIONS(3659), - [sym_numeric_character_reference] = ACTIONS(3659), - [anon_sym_LT] = ACTIONS(3661), - [anon_sym_GT] = ACTIONS(3659), - [anon_sym_BANG] = ACTIONS(3659), - [anon_sym_DQUOTE] = ACTIONS(3659), - [anon_sym_POUND] = ACTIONS(3659), - [anon_sym_DOLLAR] = ACTIONS(3659), - [anon_sym_PERCENT] = ACTIONS(3659), - [anon_sym_AMP] = ACTIONS(3661), - [anon_sym_SQUOTE] = ACTIONS(3659), - [anon_sym_STAR] = ACTIONS(3659), - [anon_sym_PLUS] = ACTIONS(3659), - [anon_sym_COMMA] = ACTIONS(3659), - [anon_sym_DASH] = ACTIONS(3661), - [anon_sym_DOT] = ACTIONS(3661), - [anon_sym_SLASH] = ACTIONS(3659), - [anon_sym_COLON] = ACTIONS(3659), - [anon_sym_SEMI] = ACTIONS(3659), - [anon_sym_EQ] = ACTIONS(3659), - [anon_sym_QMARK] = ACTIONS(3659), - [anon_sym_LBRACK] = ACTIONS(3661), - [anon_sym_BSLASH] = ACTIONS(3661), - [anon_sym_CARET] = ACTIONS(3661), - [anon_sym__] = ACTIONS(3659), - [anon_sym_BQUOTE] = ACTIONS(3659), - [anon_sym_LBRACE] = ACTIONS(3701), - [anon_sym_PIPE] = ACTIONS(3659), - [anon_sym_TILDE] = ACTIONS(3659), - [anon_sym_LPAREN] = ACTIONS(3659), - [anon_sym_RPAREN] = ACTIONS(3659), - [sym__newline_token] = ACTIONS(3659), - [anon_sym_CARET_LBRACK] = ACTIONS(3659), - [anon_sym_LBRACK_CARET] = ACTIONS(3659), - [sym_uri_autolink] = ACTIONS(3659), - [sym_email_autolink] = ACTIONS(3659), - [sym__whitespace_ge_2] = ACTIONS(3659), - [aux_sym__whitespace_token1] = ACTIONS(3661), - [sym__word_no_digit] = ACTIONS(3659), - [sym__digits] = ACTIONS(3659), - [anon_sym_DASH_DASH] = ACTIONS(3661), - [anon_sym_DASH_DASH_DASH] = ACTIONS(3659), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3659), - [sym__code_span_start] = ACTIONS(3659), - [sym__emphasis_open_star] = ACTIONS(3659), - [sym__emphasis_open_underscore] = ACTIONS(3659), - [sym__strikeout_open] = ACTIONS(3659), - [sym__latex_span_start] = ACTIONS(3659), - [sym__single_quote_open] = ACTIONS(3659), - [sym__double_quote_open] = ACTIONS(3659), - [sym__superscript_open] = ACTIONS(3659), - [sym__superscript_close] = ACTIONS(3659), - [sym__subscript_open] = ACTIONS(3659), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3659), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3659), - [sym__cite_author_in_text] = ACTIONS(3659), - [sym__cite_suppress_author] = ACTIONS(3659), - [sym__shortcode_open_escaped] = ACTIONS(3659), - [sym__shortcode_open] = ACTIONS(3659), - [sym__unclosed_span] = ACTIONS(3659), + [sym_backslash_escape] = STATE(373), + [sym_commonmark_attribute] = STATE(373), + [sym_code_span] = STATE(373), + [sym_latex_span] = STATE(373), + [sym_insert] = STATE(373), + [sym_delete] = STATE(373), + [sym_highlight] = STATE(373), + [sym_edit_comment] = STATE(373), + [sym_superscript] = STATE(373), + [sym_subscript] = STATE(373), + [sym_strikeout] = STATE(373), + [sym_quoted_span] = STATE(373), + [sym_inline_note] = STATE(373), + [sym_citation] = STATE(373), + [sym_shortcode_escaped] = STATE(373), + [sym_shortcode] = STATE(373), + [sym_note_reference] = STATE(373), + [sym_image] = STATE(373), + [sym__image_inline_link] = STATE(1265), + [sym__image_description] = STATE(2331), + [sym__image_description_non_empty] = STATE(2331), + [sym_hard_line_break] = STATE(373), + [sym__whitespace] = STATE(1262), + [sym__word] = STATE(1262), + [sym__soft_line_break] = STATE(1267), + [sym__inline_base] = STATE(343), + [sym__text_base] = STATE(373), + [sym__inline_element_no_star_no_link] = STATE(343), + [aux_sym__inline_no_star_no_link] = STATE(343), + [sym__emphasis_star_no_link] = STATE(1441), + [sym__strong_emphasis_star_no_link] = STATE(343), + [sym__emphasis_underscore_no_link] = STATE(1441), + [sym__strong_emphasis_underscore_no_link] = STATE(343), + [aux_sym__inline_base_repeat1] = STATE(373), + [sym__backslash_escape] = ACTIONS(885), + [sym_entity_reference] = ACTIONS(887), + [sym_numeric_character_reference] = ACTIONS(887), + [anon_sym_LT] = ACTIONS(889), + [anon_sym_GT] = ACTIONS(891), + [anon_sym_BANG] = ACTIONS(893), + [anon_sym_DQUOTE] = ACTIONS(891), + [anon_sym_POUND] = ACTIONS(891), + [anon_sym_DOLLAR] = ACTIONS(891), + [anon_sym_PERCENT] = ACTIONS(891), + [anon_sym_AMP] = ACTIONS(889), + [anon_sym_SQUOTE] = ACTIONS(891), + [anon_sym_STAR] = ACTIONS(891), + [anon_sym_PLUS] = ACTIONS(891), + [anon_sym_COMMA] = ACTIONS(891), + [anon_sym_DASH] = ACTIONS(889), + [anon_sym_DOT] = ACTIONS(889), + [anon_sym_SLASH] = ACTIONS(891), + [anon_sym_COLON] = ACTIONS(891), + [anon_sym_SEMI] = ACTIONS(891), + [anon_sym_EQ] = ACTIONS(891), + [anon_sym_QMARK] = ACTIONS(891), + [anon_sym_BSLASH] = ACTIONS(897), + [anon_sym_CARET] = ACTIONS(889), + [anon_sym__] = ACTIONS(891), + [anon_sym_BQUOTE] = ACTIONS(891), + [anon_sym_LBRACE] = ACTIONS(899), + [anon_sym_PIPE] = ACTIONS(891), + [anon_sym_TILDE] = ACTIONS(891), + [anon_sym_LPAREN] = ACTIONS(891), + [anon_sym_RPAREN] = ACTIONS(891), + [sym__newline_token] = ACTIONS(901), + [aux_sym_insert_token1] = ACTIONS(903), + [aux_sym_delete_token1] = ACTIONS(905), + [aux_sym_highlight_token1] = ACTIONS(907), + [aux_sym_edit_comment_token1] = ACTIONS(909), + [anon_sym_CARET_LBRACK] = ACTIONS(911), + [anon_sym_LBRACK_CARET] = ACTIONS(913), + [sym_uri_autolink] = ACTIONS(887), + [sym_email_autolink] = ACTIONS(887), + [sym__whitespace_ge_2] = ACTIONS(915), + [aux_sym__whitespace_token1] = ACTIONS(917), + [sym__word_no_digit] = ACTIONS(919), + [sym__digits] = ACTIONS(919), + [anon_sym_DASH_DASH] = ACTIONS(921), + [anon_sym_DASH_DASH_DASH] = ACTIONS(919), + [anon_sym_DOT_DOT_DOT] = ACTIONS(919), + [sym__code_span_start] = ACTIONS(923), + [sym__emphasis_open_star] = ACTIONS(3207), + [sym__emphasis_open_underscore] = ACTIONS(3209), + [sym__emphasis_close_star] = ACTIONS(3223), + [sym__strikeout_open] = ACTIONS(931), + [sym__latex_span_start] = ACTIONS(933), + [sym__single_quote_open] = ACTIONS(935), + [sym__double_quote_open] = ACTIONS(937), + [sym__superscript_open] = ACTIONS(939), + [sym__subscript_open] = ACTIONS(941), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(943), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(945), + [sym__cite_author_in_text] = ACTIONS(947), + [sym__cite_suppress_author] = ACTIONS(949), + [sym__shortcode_open_escaped] = ACTIONS(951), + [sym__shortcode_open] = ACTIONS(953), + [sym__unclosed_span] = ACTIONS(887), }, [STATE(332)] = { - [sym__qmd_attribute] = STATE(773), - [sym_raw_attribute] = STATE(773), - [sym_commonmark_attribute] = STATE(773), - [sym_language_attribute] = STATE(773), - [sym__backslash_escape] = ACTIONS(3637), - [sym_entity_reference] = ACTIONS(3637), - [sym_numeric_character_reference] = ACTIONS(3637), - [anon_sym_LT] = ACTIONS(3639), - [anon_sym_GT] = ACTIONS(3637), - [anon_sym_BANG] = ACTIONS(3637), - [anon_sym_DQUOTE] = ACTIONS(3637), - [anon_sym_POUND] = ACTIONS(3637), - [anon_sym_DOLLAR] = ACTIONS(3637), - [anon_sym_PERCENT] = ACTIONS(3637), - [anon_sym_AMP] = ACTIONS(3639), - [anon_sym_SQUOTE] = ACTIONS(3637), - [anon_sym_STAR] = ACTIONS(3637), - [anon_sym_PLUS] = ACTIONS(3637), - [anon_sym_COMMA] = ACTIONS(3637), - [anon_sym_DASH] = ACTIONS(3639), - [anon_sym_DOT] = ACTIONS(3639), - [anon_sym_SLASH] = ACTIONS(3637), - [anon_sym_COLON] = ACTIONS(3637), - [anon_sym_SEMI] = ACTIONS(3637), - [anon_sym_EQ] = ACTIONS(3637), - [anon_sym_QMARK] = ACTIONS(3637), - [anon_sym_LBRACK] = ACTIONS(3639), - [anon_sym_BSLASH] = ACTIONS(3639), - [anon_sym_CARET] = ACTIONS(3639), - [anon_sym__] = ACTIONS(3637), - [anon_sym_BQUOTE] = ACTIONS(3637), - [anon_sym_LBRACE] = ACTIONS(3701), - [anon_sym_PIPE] = ACTIONS(3637), - [anon_sym_TILDE] = ACTIONS(3637), - [anon_sym_LPAREN] = ACTIONS(3637), - [anon_sym_RPAREN] = ACTIONS(3637), - [sym__newline_token] = ACTIONS(3637), - [anon_sym_CARET_LBRACK] = ACTIONS(3637), - [anon_sym_LBRACK_CARET] = ACTIONS(3637), - [sym_uri_autolink] = ACTIONS(3637), - [sym_email_autolink] = ACTIONS(3637), - [sym__whitespace_ge_2] = ACTIONS(3637), - [aux_sym__whitespace_token1] = ACTIONS(3639), - [sym__word_no_digit] = ACTIONS(3637), - [sym__digits] = ACTIONS(3637), - [anon_sym_DASH_DASH] = ACTIONS(3639), - [anon_sym_DASH_DASH_DASH] = ACTIONS(3637), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3637), - [sym__code_span_start] = ACTIONS(3637), - [sym__emphasis_open_star] = ACTIONS(3637), - [sym__emphasis_open_underscore] = ACTIONS(3637), - [sym__strikeout_open] = ACTIONS(3637), - [sym__latex_span_start] = ACTIONS(3637), - [sym__single_quote_open] = ACTIONS(3637), - [sym__double_quote_open] = ACTIONS(3637), - [sym__superscript_open] = ACTIONS(3637), - [sym__superscript_close] = ACTIONS(3637), - [sym__subscript_open] = ACTIONS(3637), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3637), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3637), - [sym__cite_author_in_text] = ACTIONS(3637), - [sym__cite_suppress_author] = ACTIONS(3637), - [sym__shortcode_open_escaped] = ACTIONS(3637), - [sym__shortcode_open] = ACTIONS(3637), - [sym__unclosed_span] = ACTIONS(3637), + [sym_backslash_escape] = STATE(370), + [sym_commonmark_attribute] = STATE(370), + [sym_code_span] = STATE(370), + [sym_latex_span] = STATE(370), + [sym_insert] = STATE(370), + [sym_delete] = STATE(370), + [sym_highlight] = STATE(370), + [sym_edit_comment] = STATE(370), + [sym_superscript] = STATE(370), + [sym_subscript] = STATE(370), + [sym_strikeout] = STATE(370), + [sym_quoted_span] = STATE(370), + [sym_inline_note] = STATE(370), + [sym_citation] = STATE(370), + [sym_shortcode_escaped] = STATE(370), + [sym_shortcode] = STATE(370), + [sym_note_reference] = STATE(370), + [sym_image] = STATE(370), + [sym__image_inline_link] = STATE(923), + [sym__image_description] = STATE(2342), + [sym__image_description_non_empty] = STATE(2342), + [sym_hard_line_break] = STATE(370), + [sym__whitespace] = STATE(920), + [sym__word] = STATE(920), + [sym__soft_line_break] = STATE(924), + [sym__inline_base] = STATE(1451), + [sym__text_base] = STATE(370), + [sym__inline_element_no_link] = STATE(1451), + [aux_sym__inline_no_link] = STATE(336), + [sym__emphasis_star_no_link] = STATE(1452), + [sym__strong_emphasis_star_no_link] = STATE(1451), + [sym__emphasis_underscore_no_link] = STATE(1452), + [sym__strong_emphasis_underscore_no_link] = STATE(1451), + [aux_sym__inline_base_repeat1] = STATE(370), + [sym__backslash_escape] = ACTIONS(73), + [sym_entity_reference] = ACTIONS(75), + [sym_numeric_character_reference] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_BANG] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_POUND] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(79), + [anon_sym_PERCENT] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_STAR] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_COMMA] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_DOT] = ACTIONS(77), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_COLON] = ACTIONS(79), + [anon_sym_SEMI] = ACTIONS(79), + [anon_sym_EQ] = ACTIONS(79), + [anon_sym_QMARK] = ACTIONS(79), + [anon_sym_BSLASH] = ACTIONS(85), + [anon_sym_RBRACK] = ACTIONS(3225), + [anon_sym_CARET] = ACTIONS(77), + [anon_sym__] = ACTIONS(79), + [anon_sym_BQUOTE] = ACTIONS(79), + [anon_sym_LBRACE] = ACTIONS(89), + [anon_sym_PIPE] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(79), + [anon_sym_RPAREN] = ACTIONS(79), + [sym__newline_token] = ACTIONS(91), + [aux_sym_insert_token1] = ACTIONS(93), + [aux_sym_delete_token1] = ACTIONS(95), + [aux_sym_highlight_token1] = ACTIONS(97), + [aux_sym_edit_comment_token1] = ACTIONS(99), + [anon_sym_CARET_LBRACK] = ACTIONS(101), + [anon_sym_LBRACK_CARET] = ACTIONS(103), + [sym_uri_autolink] = ACTIONS(75), + [sym_email_autolink] = ACTIONS(75), + [sym__whitespace_ge_2] = ACTIONS(105), + [aux_sym__whitespace_token1] = ACTIONS(107), + [sym__word_no_digit] = ACTIONS(109), + [sym__digits] = ACTIONS(109), + [anon_sym_DASH_DASH] = ACTIONS(111), + [anon_sym_DASH_DASH_DASH] = ACTIONS(109), + [anon_sym_DOT_DOT_DOT] = ACTIONS(109), + [sym__code_span_start] = ACTIONS(113), + [sym__emphasis_open_star] = ACTIONS(3201), + [sym__emphasis_open_underscore] = ACTIONS(3203), + [sym__strikeout_open] = ACTIONS(121), + [sym__latex_span_start] = ACTIONS(123), + [sym__single_quote_open] = ACTIONS(125), + [sym__double_quote_open] = ACTIONS(127), + [sym__superscript_open] = ACTIONS(129), + [sym__subscript_open] = ACTIONS(131), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(133), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(135), + [sym__cite_author_in_text] = ACTIONS(137), + [sym__cite_suppress_author] = ACTIONS(139), + [sym__shortcode_open_escaped] = ACTIONS(141), + [sym__shortcode_open] = ACTIONS(143), + [sym__unclosed_span] = ACTIONS(75), }, [STATE(333)] = { - [sym__qmd_attribute] = STATE(775), - [sym_raw_attribute] = STATE(775), - [sym_commonmark_attribute] = STATE(775), - [sym_language_attribute] = STATE(775), - [sym__backslash_escape] = ACTIONS(3663), - [sym_entity_reference] = ACTIONS(3663), - [sym_numeric_character_reference] = ACTIONS(3663), - [anon_sym_LT] = ACTIONS(3665), - [anon_sym_GT] = ACTIONS(3663), - [anon_sym_BANG] = ACTIONS(3663), - [anon_sym_DQUOTE] = ACTIONS(3663), - [anon_sym_POUND] = ACTIONS(3663), - [anon_sym_DOLLAR] = ACTIONS(3663), - [anon_sym_PERCENT] = ACTIONS(3663), - [anon_sym_AMP] = ACTIONS(3665), - [anon_sym_SQUOTE] = ACTIONS(3663), - [anon_sym_STAR] = ACTIONS(3663), - [anon_sym_PLUS] = ACTIONS(3663), - [anon_sym_COMMA] = ACTIONS(3663), - [anon_sym_DASH] = ACTIONS(3665), - [anon_sym_DOT] = ACTIONS(3665), - [anon_sym_SLASH] = ACTIONS(3663), - [anon_sym_COLON] = ACTIONS(3663), - [anon_sym_SEMI] = ACTIONS(3663), - [anon_sym_EQ] = ACTIONS(3663), - [anon_sym_QMARK] = ACTIONS(3663), - [anon_sym_LBRACK] = ACTIONS(3665), - [anon_sym_BSLASH] = ACTIONS(3665), - [anon_sym_CARET] = ACTIONS(3665), - [anon_sym__] = ACTIONS(3663), - [anon_sym_BQUOTE] = ACTIONS(3663), - [anon_sym_LBRACE] = ACTIONS(3701), - [anon_sym_PIPE] = ACTIONS(3663), - [anon_sym_TILDE] = ACTIONS(3663), - [anon_sym_LPAREN] = ACTIONS(3663), - [anon_sym_RPAREN] = ACTIONS(3663), - [sym__newline_token] = ACTIONS(3663), - [anon_sym_CARET_LBRACK] = ACTIONS(3663), - [anon_sym_LBRACK_CARET] = ACTIONS(3663), - [sym_uri_autolink] = ACTIONS(3663), - [sym_email_autolink] = ACTIONS(3663), - [sym__whitespace_ge_2] = ACTIONS(3663), - [aux_sym__whitespace_token1] = ACTIONS(3665), - [sym__word_no_digit] = ACTIONS(3663), - [sym__digits] = ACTIONS(3663), - [anon_sym_DASH_DASH] = ACTIONS(3665), - [anon_sym_DASH_DASH_DASH] = ACTIONS(3663), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3663), - [sym__code_span_start] = ACTIONS(3663), - [sym__emphasis_open_star] = ACTIONS(3663), - [sym__emphasis_open_underscore] = ACTIONS(3663), - [sym__strikeout_open] = ACTIONS(3663), - [sym__latex_span_start] = ACTIONS(3663), - [sym__single_quote_open] = ACTIONS(3663), - [sym__double_quote_open] = ACTIONS(3663), - [sym__superscript_open] = ACTIONS(3663), - [sym__superscript_close] = ACTIONS(3663), - [sym__subscript_open] = ACTIONS(3663), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3663), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3663), - [sym__cite_author_in_text] = ACTIONS(3663), - [sym__cite_suppress_author] = ACTIONS(3663), - [sym__shortcode_open_escaped] = ACTIONS(3663), - [sym__shortcode_open] = ACTIONS(3663), - [sym__unclosed_span] = ACTIONS(3663), + [sym_backslash_escape] = STATE(379), + [sym_commonmark_attribute] = STATE(379), + [sym_code_span] = STATE(379), + [sym_latex_span] = STATE(379), + [sym_insert] = STATE(379), + [sym_delete] = STATE(379), + [sym_highlight] = STATE(379), + [sym_edit_comment] = STATE(379), + [sym_superscript] = STATE(379), + [sym_subscript] = STATE(379), + [sym_strikeout] = STATE(379), + [sym_quoted_span] = STATE(379), + [sym_inline_note] = STATE(379), + [sym_citation] = STATE(379), + [sym_shortcode_escaped] = STATE(379), + [sym_shortcode] = STATE(379), + [sym_note_reference] = STATE(379), + [sym_image] = STATE(379), + [sym__image_inline_link] = STATE(1390), + [sym__image_description] = STATE(2363), + [sym__image_description_non_empty] = STATE(2363), + [sym_hard_line_break] = STATE(379), + [sym__whitespace] = STATE(1385), + [sym__word] = STATE(1385), + [sym__soft_line_break] = STATE(1391), + [sym__inline_base] = STATE(322), + [sym__text_base] = STATE(379), + [sym__inline_element_no_underscore_no_link] = STATE(322), + [aux_sym__inline_no_underscore_no_link] = STATE(322), + [sym__emphasis_star_no_link] = STATE(1442), + [sym__strong_emphasis_star_no_link] = STATE(322), + [sym__emphasis_underscore_no_link] = STATE(1438), + [sym__strong_emphasis_underscore_no_link] = STATE(322), + [aux_sym__inline_base_repeat1] = STATE(379), + [sym__backslash_escape] = ACTIONS(1059), + [sym_entity_reference] = ACTIONS(1061), + [sym_numeric_character_reference] = ACTIONS(1061), + [anon_sym_LT] = ACTIONS(1063), + [anon_sym_GT] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1067), + [anon_sym_DQUOTE] = ACTIONS(1065), + [anon_sym_POUND] = ACTIONS(1065), + [anon_sym_DOLLAR] = ACTIONS(1065), + [anon_sym_PERCENT] = ACTIONS(1065), + [anon_sym_AMP] = ACTIONS(1063), + [anon_sym_SQUOTE] = ACTIONS(1065), + [anon_sym_STAR] = ACTIONS(1065), + [anon_sym_PLUS] = ACTIONS(1065), + [anon_sym_COMMA] = ACTIONS(1065), + [anon_sym_DASH] = ACTIONS(1063), + [anon_sym_DOT] = ACTIONS(1063), + [anon_sym_SLASH] = ACTIONS(1065), + [anon_sym_COLON] = ACTIONS(1065), + [anon_sym_SEMI] = ACTIONS(1065), + [anon_sym_EQ] = ACTIONS(1065), + [anon_sym_QMARK] = ACTIONS(1065), + [anon_sym_BSLASH] = ACTIONS(1071), + [anon_sym_CARET] = ACTIONS(1063), + [anon_sym__] = ACTIONS(1065), + [anon_sym_BQUOTE] = ACTIONS(1065), + [anon_sym_LBRACE] = ACTIONS(1073), + [anon_sym_PIPE] = ACTIONS(1065), + [anon_sym_TILDE] = ACTIONS(1065), + [anon_sym_LPAREN] = ACTIONS(1065), + [anon_sym_RPAREN] = ACTIONS(1065), + [sym__newline_token] = ACTIONS(1075), + [aux_sym_insert_token1] = ACTIONS(1077), + [aux_sym_delete_token1] = ACTIONS(1079), + [aux_sym_highlight_token1] = ACTIONS(1081), + [aux_sym_edit_comment_token1] = ACTIONS(1083), + [anon_sym_CARET_LBRACK] = ACTIONS(1085), + [anon_sym_LBRACK_CARET] = ACTIONS(1087), + [sym_uri_autolink] = ACTIONS(1061), + [sym_email_autolink] = ACTIONS(1061), + [sym__whitespace_ge_2] = ACTIONS(1089), + [aux_sym__whitespace_token1] = ACTIONS(1091), + [sym__word_no_digit] = ACTIONS(1093), + [sym__digits] = ACTIONS(1093), + [anon_sym_DASH_DASH] = ACTIONS(1095), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1093), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1093), + [sym__code_span_start] = ACTIONS(1097), + [sym__emphasis_open_star] = ACTIONS(3193), + [sym__emphasis_open_underscore] = ACTIONS(3195), + [sym__last_token_punctuation] = ACTIONS(3227), + [sym__strikeout_open] = ACTIONS(1105), + [sym__latex_span_start] = ACTIONS(1107), + [sym__single_quote_open] = ACTIONS(1109), + [sym__double_quote_open] = ACTIONS(1111), + [sym__superscript_open] = ACTIONS(1113), + [sym__subscript_open] = ACTIONS(1115), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1117), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1119), + [sym__cite_author_in_text] = ACTIONS(1121), + [sym__cite_suppress_author] = ACTIONS(1123), + [sym__shortcode_open_escaped] = ACTIONS(1125), + [sym__shortcode_open] = ACTIONS(1127), + [sym__unclosed_span] = ACTIONS(1061), }, [STATE(334)] = { - [sym__qmd_attribute] = STATE(712), - [sym_raw_attribute] = STATE(712), - [sym_commonmark_attribute] = STATE(712), - [sym_language_attribute] = STATE(712), - [sym__backslash_escape] = ACTIONS(3643), - [sym_entity_reference] = ACTIONS(3643), - [sym_numeric_character_reference] = ACTIONS(3643), - [anon_sym_LT] = ACTIONS(3645), - [anon_sym_GT] = ACTIONS(3643), - [anon_sym_BANG] = ACTIONS(3643), - [anon_sym_DQUOTE] = ACTIONS(3643), - [anon_sym_POUND] = ACTIONS(3643), - [anon_sym_DOLLAR] = ACTIONS(3643), - [anon_sym_PERCENT] = ACTIONS(3643), - [anon_sym_AMP] = ACTIONS(3645), - [anon_sym_SQUOTE] = ACTIONS(3643), - [anon_sym_STAR] = ACTIONS(3643), - [anon_sym_PLUS] = ACTIONS(3643), - [anon_sym_COMMA] = ACTIONS(3643), - [anon_sym_DASH] = ACTIONS(3645), - [anon_sym_DOT] = ACTIONS(3645), - [anon_sym_SLASH] = ACTIONS(3643), - [anon_sym_COLON] = ACTIONS(3643), - [anon_sym_SEMI] = ACTIONS(3643), - [anon_sym_EQ] = ACTIONS(3643), - [anon_sym_QMARK] = ACTIONS(3643), - [anon_sym_LBRACK] = ACTIONS(3645), - [anon_sym_BSLASH] = ACTIONS(3645), - [anon_sym_CARET] = ACTIONS(3645), - [anon_sym__] = ACTIONS(3643), - [anon_sym_BQUOTE] = ACTIONS(3643), - [anon_sym_LBRACE] = ACTIONS(3709), - [anon_sym_PIPE] = ACTIONS(3643), - [anon_sym_TILDE] = ACTIONS(3643), - [anon_sym_LPAREN] = ACTIONS(3643), - [anon_sym_RPAREN] = ACTIONS(3643), - [sym__newline_token] = ACTIONS(3643), - [anon_sym_CARET_LBRACK] = ACTIONS(3643), - [anon_sym_LBRACK_CARET] = ACTIONS(3643), - [sym_uri_autolink] = ACTIONS(3643), - [sym_email_autolink] = ACTIONS(3643), - [sym__whitespace_ge_2] = ACTIONS(3643), - [aux_sym__whitespace_token1] = ACTIONS(3645), - [sym__word_no_digit] = ACTIONS(3643), - [sym__digits] = ACTIONS(3643), - [anon_sym_DASH_DASH] = ACTIONS(3645), - [anon_sym_DASH_DASH_DASH] = ACTIONS(3643), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3643), - [sym__code_span_start] = ACTIONS(3643), - [sym__emphasis_open_star] = ACTIONS(3643), - [sym__emphasis_open_underscore] = ACTIONS(3643), - [sym__emphasis_close_star] = ACTIONS(3643), - [sym__strikeout_open] = ACTIONS(3643), - [sym__latex_span_start] = ACTIONS(3643), - [sym__single_quote_open] = ACTIONS(3643), - [sym__double_quote_open] = ACTIONS(3643), - [sym__superscript_open] = ACTIONS(3643), - [sym__subscript_open] = ACTIONS(3643), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3643), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3643), - [sym__cite_author_in_text] = ACTIONS(3643), - [sym__cite_suppress_author] = ACTIONS(3643), - [sym__shortcode_open_escaped] = ACTIONS(3643), - [sym__shortcode_open] = ACTIONS(3643), - [sym__unclosed_span] = ACTIONS(3643), + [sym_backslash_escape] = STATE(379), + [sym_commonmark_attribute] = STATE(379), + [sym_code_span] = STATE(379), + [sym_latex_span] = STATE(379), + [sym_insert] = STATE(379), + [sym_delete] = STATE(379), + [sym_highlight] = STATE(379), + [sym_edit_comment] = STATE(379), + [sym_superscript] = STATE(379), + [sym_subscript] = STATE(379), + [sym_strikeout] = STATE(379), + [sym_quoted_span] = STATE(379), + [sym_inline_note] = STATE(379), + [sym_citation] = STATE(379), + [sym_shortcode_escaped] = STATE(379), + [sym_shortcode] = STATE(379), + [sym_note_reference] = STATE(379), + [sym_image] = STATE(379), + [sym__image_inline_link] = STATE(1390), + [sym__image_description] = STATE(2363), + [sym__image_description_non_empty] = STATE(2363), + [sym_hard_line_break] = STATE(379), + [sym__whitespace] = STATE(1385), + [sym__word] = STATE(1385), + [sym__soft_line_break] = STATE(1391), + [sym__inline_base] = STATE(345), + [sym__text_base] = STATE(379), + [sym__inline_element_no_underscore_no_link] = STATE(345), + [aux_sym__inline_no_underscore_no_link] = STATE(345), + [sym__emphasis_star_no_link] = STATE(1442), + [sym__strong_emphasis_star_no_link] = STATE(345), + [sym__emphasis_underscore_no_link] = STATE(1442), + [sym__strong_emphasis_underscore_no_link] = STATE(345), + [aux_sym__inline_base_repeat1] = STATE(379), + [sym__backslash_escape] = ACTIONS(1059), + [sym_entity_reference] = ACTIONS(1061), + [sym_numeric_character_reference] = ACTIONS(1061), + [anon_sym_LT] = ACTIONS(1063), + [anon_sym_GT] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1067), + [anon_sym_DQUOTE] = ACTIONS(1065), + [anon_sym_POUND] = ACTIONS(1065), + [anon_sym_DOLLAR] = ACTIONS(1065), + [anon_sym_PERCENT] = ACTIONS(1065), + [anon_sym_AMP] = ACTIONS(1063), + [anon_sym_SQUOTE] = ACTIONS(1065), + [anon_sym_STAR] = ACTIONS(1065), + [anon_sym_PLUS] = ACTIONS(1065), + [anon_sym_COMMA] = ACTIONS(1065), + [anon_sym_DASH] = ACTIONS(1063), + [anon_sym_DOT] = ACTIONS(1063), + [anon_sym_SLASH] = ACTIONS(1065), + [anon_sym_COLON] = ACTIONS(1065), + [anon_sym_SEMI] = ACTIONS(1065), + [anon_sym_EQ] = ACTIONS(1065), + [anon_sym_QMARK] = ACTIONS(1065), + [anon_sym_BSLASH] = ACTIONS(1071), + [anon_sym_CARET] = ACTIONS(1063), + [anon_sym__] = ACTIONS(1065), + [anon_sym_BQUOTE] = ACTIONS(1065), + [anon_sym_LBRACE] = ACTIONS(1073), + [anon_sym_PIPE] = ACTIONS(1065), + [anon_sym_TILDE] = ACTIONS(1065), + [anon_sym_LPAREN] = ACTIONS(1065), + [anon_sym_RPAREN] = ACTIONS(1065), + [sym__newline_token] = ACTIONS(1075), + [aux_sym_insert_token1] = ACTIONS(1077), + [aux_sym_delete_token1] = ACTIONS(1079), + [aux_sym_highlight_token1] = ACTIONS(1081), + [aux_sym_edit_comment_token1] = ACTIONS(1083), + [anon_sym_CARET_LBRACK] = ACTIONS(1085), + [anon_sym_LBRACK_CARET] = ACTIONS(1087), + [sym_uri_autolink] = ACTIONS(1061), + [sym_email_autolink] = ACTIONS(1061), + [sym__whitespace_ge_2] = ACTIONS(1089), + [aux_sym__whitespace_token1] = ACTIONS(1091), + [sym__word_no_digit] = ACTIONS(1093), + [sym__digits] = ACTIONS(1093), + [anon_sym_DASH_DASH] = ACTIONS(1095), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1093), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1093), + [sym__code_span_start] = ACTIONS(1097), + [sym__emphasis_open_star] = ACTIONS(3193), + [sym__emphasis_open_underscore] = ACTIONS(3195), + [sym__emphasis_close_underscore] = ACTIONS(3229), + [sym__strikeout_open] = ACTIONS(1105), + [sym__latex_span_start] = ACTIONS(1107), + [sym__single_quote_open] = ACTIONS(1109), + [sym__double_quote_open] = ACTIONS(1111), + [sym__superscript_open] = ACTIONS(1113), + [sym__subscript_open] = ACTIONS(1115), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1117), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1119), + [sym__cite_author_in_text] = ACTIONS(1121), + [sym__cite_suppress_author] = ACTIONS(1123), + [sym__shortcode_open_escaped] = ACTIONS(1125), + [sym__shortcode_open] = ACTIONS(1127), + [sym__unclosed_span] = ACTIONS(1061), }, [STATE(335)] = { - [sym__qmd_attribute] = STATE(648), - [sym_raw_attribute] = STATE(648), - [sym_commonmark_attribute] = STATE(648), - [sym_language_attribute] = STATE(648), - [sym__backslash_escape] = ACTIONS(3629), - [sym_entity_reference] = ACTIONS(3629), - [sym_numeric_character_reference] = ACTIONS(3629), - [anon_sym_LT] = ACTIONS(3631), - [anon_sym_GT] = ACTIONS(3629), - [anon_sym_BANG] = ACTIONS(3629), - [anon_sym_DQUOTE] = ACTIONS(3629), - [anon_sym_POUND] = ACTIONS(3629), - [anon_sym_DOLLAR] = ACTIONS(3629), - [anon_sym_PERCENT] = ACTIONS(3629), - [anon_sym_AMP] = ACTIONS(3631), - [anon_sym_SQUOTE] = ACTIONS(3629), - [anon_sym_STAR] = ACTIONS(3629), - [anon_sym_PLUS] = ACTIONS(3629), - [anon_sym_COMMA] = ACTIONS(3629), - [anon_sym_DASH] = ACTIONS(3631), - [anon_sym_DOT] = ACTIONS(3631), - [anon_sym_SLASH] = ACTIONS(3629), - [anon_sym_COLON] = ACTIONS(3629), - [anon_sym_SEMI] = ACTIONS(3629), - [anon_sym_EQ] = ACTIONS(3629), - [anon_sym_QMARK] = ACTIONS(3629), - [anon_sym_LBRACK] = ACTIONS(3631), - [anon_sym_BSLASH] = ACTIONS(3631), - [anon_sym_CARET] = ACTIONS(3631), - [anon_sym__] = ACTIONS(3629), - [anon_sym_BQUOTE] = ACTIONS(3629), - [anon_sym_LBRACE] = ACTIONS(3641), - [anon_sym_PIPE] = ACTIONS(3629), - [anon_sym_TILDE] = ACTIONS(3629), - [anon_sym_LPAREN] = ACTIONS(3629), - [anon_sym_RPAREN] = ACTIONS(3629), - [sym__newline_token] = ACTIONS(3629), - [anon_sym_CARET_LBRACK] = ACTIONS(3629), - [anon_sym_LBRACK_CARET] = ACTIONS(3629), - [sym_uri_autolink] = ACTIONS(3629), - [sym_email_autolink] = ACTIONS(3629), - [sym__whitespace_ge_2] = ACTIONS(3629), - [aux_sym__whitespace_token1] = ACTIONS(3631), - [sym__word_no_digit] = ACTIONS(3629), - [sym__digits] = ACTIONS(3629), - [anon_sym_DASH_DASH] = ACTIONS(3631), - [anon_sym_DASH_DASH_DASH] = ACTIONS(3629), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3629), - [sym__code_span_start] = ACTIONS(3629), - [sym__emphasis_open_star] = ACTIONS(3629), - [sym__emphasis_open_underscore] = ACTIONS(3629), - [sym__strikeout_open] = ACTIONS(3629), - [sym__latex_span_start] = ACTIONS(3629), - [sym__single_quote_open] = ACTIONS(3629), - [sym__double_quote_open] = ACTIONS(3629), - [sym__double_quote_close] = ACTIONS(3629), - [sym__superscript_open] = ACTIONS(3629), - [sym__subscript_open] = ACTIONS(3629), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3629), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3629), - [sym__cite_author_in_text] = ACTIONS(3629), - [sym__cite_suppress_author] = ACTIONS(3629), - [sym__shortcode_open_escaped] = ACTIONS(3629), - [sym__shortcode_open] = ACTIONS(3629), - [sym__unclosed_span] = ACTIONS(3629), + [sym_backslash_escape] = STATE(370), + [sym_commonmark_attribute] = STATE(370), + [sym_code_span] = STATE(370), + [sym_latex_span] = STATE(370), + [sym_insert] = STATE(370), + [sym_delete] = STATE(370), + [sym_highlight] = STATE(370), + [sym_edit_comment] = STATE(370), + [sym_superscript] = STATE(370), + [sym_subscript] = STATE(370), + [sym_strikeout] = STATE(370), + [sym_quoted_span] = STATE(370), + [sym_inline_note] = STATE(370), + [sym_citation] = STATE(370), + [sym_shortcode_escaped] = STATE(370), + [sym_shortcode] = STATE(370), + [sym_note_reference] = STATE(370), + [sym_image] = STATE(370), + [sym__image_inline_link] = STATE(923), + [sym__image_description] = STATE(2342), + [sym__image_description_non_empty] = STATE(2342), + [sym_hard_line_break] = STATE(370), + [sym__whitespace] = STATE(920), + [sym__word] = STATE(920), + [sym__soft_line_break] = STATE(924), + [sym__inline_base] = STATE(1451), + [sym__text_base] = STATE(370), + [sym__inline_element_no_link] = STATE(1451), + [aux_sym__inline_no_link] = STATE(336), + [sym__emphasis_star_no_link] = STATE(1452), + [sym__strong_emphasis_star_no_link] = STATE(1451), + [sym__emphasis_underscore_no_link] = STATE(1452), + [sym__strong_emphasis_underscore_no_link] = STATE(1451), + [aux_sym__inline_base_repeat1] = STATE(370), + [sym__backslash_escape] = ACTIONS(73), + [sym_entity_reference] = ACTIONS(75), + [sym_numeric_character_reference] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_BANG] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_POUND] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(79), + [anon_sym_PERCENT] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_STAR] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_COMMA] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_DOT] = ACTIONS(77), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_COLON] = ACTIONS(79), + [anon_sym_SEMI] = ACTIONS(79), + [anon_sym_EQ] = ACTIONS(79), + [anon_sym_QMARK] = ACTIONS(79), + [anon_sym_BSLASH] = ACTIONS(85), + [anon_sym_RBRACK] = ACTIONS(3231), + [anon_sym_CARET] = ACTIONS(77), + [anon_sym__] = ACTIONS(79), + [anon_sym_BQUOTE] = ACTIONS(79), + [anon_sym_LBRACE] = ACTIONS(89), + [anon_sym_PIPE] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(79), + [anon_sym_RPAREN] = ACTIONS(79), + [sym__newline_token] = ACTIONS(91), + [aux_sym_insert_token1] = ACTIONS(93), + [aux_sym_delete_token1] = ACTIONS(95), + [aux_sym_highlight_token1] = ACTIONS(97), + [aux_sym_edit_comment_token1] = ACTIONS(99), + [anon_sym_CARET_LBRACK] = ACTIONS(101), + [anon_sym_LBRACK_CARET] = ACTIONS(103), + [sym_uri_autolink] = ACTIONS(75), + [sym_email_autolink] = ACTIONS(75), + [sym__whitespace_ge_2] = ACTIONS(105), + [aux_sym__whitespace_token1] = ACTIONS(107), + [sym__word_no_digit] = ACTIONS(109), + [sym__digits] = ACTIONS(109), + [anon_sym_DASH_DASH] = ACTIONS(111), + [anon_sym_DASH_DASH_DASH] = ACTIONS(109), + [anon_sym_DOT_DOT_DOT] = ACTIONS(109), + [sym__code_span_start] = ACTIONS(113), + [sym__emphasis_open_star] = ACTIONS(3201), + [sym__emphasis_open_underscore] = ACTIONS(3203), + [sym__strikeout_open] = ACTIONS(121), + [sym__latex_span_start] = ACTIONS(123), + [sym__single_quote_open] = ACTIONS(125), + [sym__double_quote_open] = ACTIONS(127), + [sym__superscript_open] = ACTIONS(129), + [sym__subscript_open] = ACTIONS(131), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(133), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(135), + [sym__cite_author_in_text] = ACTIONS(137), + [sym__cite_suppress_author] = ACTIONS(139), + [sym__shortcode_open_escaped] = ACTIONS(141), + [sym__shortcode_open] = ACTIONS(143), + [sym__unclosed_span] = ACTIONS(75), }, [STATE(336)] = { - [sym__qmd_attribute] = STATE(766), - [sym_raw_attribute] = STATE(766), - [sym_commonmark_attribute] = STATE(766), - [sym_language_attribute] = STATE(766), - [sym__backslash_escape] = ACTIONS(3647), - [sym_entity_reference] = ACTIONS(3647), - [sym_numeric_character_reference] = ACTIONS(3647), - [anon_sym_LT] = ACTIONS(3649), - [anon_sym_GT] = ACTIONS(3647), - [anon_sym_BANG] = ACTIONS(3647), - [anon_sym_DQUOTE] = ACTIONS(3647), - [anon_sym_POUND] = ACTIONS(3647), - [anon_sym_DOLLAR] = ACTIONS(3647), - [anon_sym_PERCENT] = ACTIONS(3647), - [anon_sym_AMP] = ACTIONS(3649), - [anon_sym_SQUOTE] = ACTIONS(3647), - [anon_sym_STAR] = ACTIONS(3647), - [anon_sym_PLUS] = ACTIONS(3647), - [anon_sym_COMMA] = ACTIONS(3647), - [anon_sym_DASH] = ACTIONS(3649), - [anon_sym_DOT] = ACTIONS(3649), - [anon_sym_SLASH] = ACTIONS(3647), - [anon_sym_COLON] = ACTIONS(3647), - [anon_sym_SEMI] = ACTIONS(3647), - [anon_sym_EQ] = ACTIONS(3647), - [anon_sym_QMARK] = ACTIONS(3647), - [anon_sym_LBRACK] = ACTIONS(3649), - [anon_sym_BSLASH] = ACTIONS(3649), - [anon_sym_CARET] = ACTIONS(3649), - [anon_sym__] = ACTIONS(3647), - [anon_sym_BQUOTE] = ACTIONS(3647), - [anon_sym_LBRACE] = ACTIONS(3709), - [anon_sym_PIPE] = ACTIONS(3647), - [anon_sym_TILDE] = ACTIONS(3647), - [anon_sym_LPAREN] = ACTIONS(3647), - [anon_sym_RPAREN] = ACTIONS(3647), - [sym__newline_token] = ACTIONS(3647), - [anon_sym_CARET_LBRACK] = ACTIONS(3647), - [anon_sym_LBRACK_CARET] = ACTIONS(3647), - [sym_uri_autolink] = ACTIONS(3647), - [sym_email_autolink] = ACTIONS(3647), - [sym__whitespace_ge_2] = ACTIONS(3647), - [aux_sym__whitespace_token1] = ACTIONS(3649), - [sym__word_no_digit] = ACTIONS(3647), - [sym__digits] = ACTIONS(3647), - [anon_sym_DASH_DASH] = ACTIONS(3649), - [anon_sym_DASH_DASH_DASH] = ACTIONS(3647), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3647), - [sym__code_span_start] = ACTIONS(3647), - [sym__emphasis_open_star] = ACTIONS(3647), - [sym__emphasis_open_underscore] = ACTIONS(3647), - [sym__emphasis_close_star] = ACTIONS(3647), - [sym__strikeout_open] = ACTIONS(3647), - [sym__latex_span_start] = ACTIONS(3647), - [sym__single_quote_open] = ACTIONS(3647), - [sym__double_quote_open] = ACTIONS(3647), - [sym__superscript_open] = ACTIONS(3647), - [sym__subscript_open] = ACTIONS(3647), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3647), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3647), - [sym__cite_author_in_text] = ACTIONS(3647), - [sym__cite_suppress_author] = ACTIONS(3647), - [sym__shortcode_open_escaped] = ACTIONS(3647), - [sym__shortcode_open] = ACTIONS(3647), - [sym__unclosed_span] = ACTIONS(3647), + [sym_backslash_escape] = STATE(370), + [sym_commonmark_attribute] = STATE(370), + [sym_code_span] = STATE(370), + [sym_latex_span] = STATE(370), + [sym_insert] = STATE(370), + [sym_delete] = STATE(370), + [sym_highlight] = STATE(370), + [sym_edit_comment] = STATE(370), + [sym_superscript] = STATE(370), + [sym_subscript] = STATE(370), + [sym_strikeout] = STATE(370), + [sym_quoted_span] = STATE(370), + [sym_inline_note] = STATE(370), + [sym_citation] = STATE(370), + [sym_shortcode_escaped] = STATE(370), + [sym_shortcode] = STATE(370), + [sym_note_reference] = STATE(370), + [sym_image] = STATE(370), + [sym__image_inline_link] = STATE(923), + [sym__image_description] = STATE(2342), + [sym__image_description_non_empty] = STATE(2342), + [sym_hard_line_break] = STATE(370), + [sym__whitespace] = STATE(920), + [sym__word] = STATE(920), + [sym__soft_line_break] = STATE(924), + [sym__inline_base] = STATE(1451), + [sym__text_base] = STATE(370), + [sym__inline_element_no_link] = STATE(1451), + [aux_sym__inline_no_link] = STATE(336), + [sym__emphasis_star_no_link] = STATE(1452), + [sym__strong_emphasis_star_no_link] = STATE(1451), + [sym__emphasis_underscore_no_link] = STATE(1452), + [sym__strong_emphasis_underscore_no_link] = STATE(1451), + [aux_sym__inline_base_repeat1] = STATE(370), + [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_STAR] = 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_BSLASH] = ACTIONS(3248), + [anon_sym_RBRACK] = ACTIONS(3251), + [anon_sym_CARET] = ACTIONS(3239), + [anon_sym__] = ACTIONS(3242), + [anon_sym_BQUOTE] = ACTIONS(3242), + [anon_sym_LBRACE] = ACTIONS(3253), + [anon_sym_PIPE] = ACTIONS(3242), + [anon_sym_TILDE] = ACTIONS(3242), + [anon_sym_LPAREN] = ACTIONS(3242), + [anon_sym_RPAREN] = ACTIONS(3242), + [sym__newline_token] = ACTIONS(3256), + [aux_sym_insert_token1] = ACTIONS(3259), + [aux_sym_delete_token1] = ACTIONS(3262), + [aux_sym_highlight_token1] = ACTIONS(3265), + [aux_sym_edit_comment_token1] = ACTIONS(3268), + [anon_sym_CARET_LBRACK] = ACTIONS(3271), + [anon_sym_LBRACK_CARET] = ACTIONS(3274), + [sym_uri_autolink] = ACTIONS(3236), + [sym_email_autolink] = ACTIONS(3236), + [sym__whitespace_ge_2] = ACTIONS(3277), + [aux_sym__whitespace_token1] = ACTIONS(3280), + [sym__word_no_digit] = ACTIONS(3283), + [sym__digits] = ACTIONS(3283), + [anon_sym_DASH_DASH] = ACTIONS(3286), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3283), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3283), + [sym__code_span_start] = ACTIONS(3289), + [sym__emphasis_open_star] = ACTIONS(3292), + [sym__emphasis_open_underscore] = ACTIONS(3295), + [sym__strikeout_open] = ACTIONS(3298), + [sym__latex_span_start] = ACTIONS(3301), + [sym__single_quote_open] = ACTIONS(3304), + [sym__double_quote_open] = ACTIONS(3307), + [sym__superscript_open] = ACTIONS(3310), + [sym__subscript_open] = ACTIONS(3313), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3316), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3319), + [sym__cite_author_in_text] = ACTIONS(3322), + [sym__cite_suppress_author] = ACTIONS(3325), + [sym__shortcode_open_escaped] = ACTIONS(3328), + [sym__shortcode_open] = ACTIONS(3331), + [sym__unclosed_span] = ACTIONS(3236), }, [STATE(337)] = { - [sym__qmd_attribute] = STATE(778), - [sym_raw_attribute] = STATE(778), - [sym_commonmark_attribute] = STATE(778), - [sym_language_attribute] = STATE(778), - [sym__backslash_escape] = ACTIONS(3667), - [sym_entity_reference] = ACTIONS(3667), - [sym_numeric_character_reference] = ACTIONS(3667), - [anon_sym_LT] = ACTIONS(3669), - [anon_sym_GT] = ACTIONS(3667), - [anon_sym_BANG] = ACTIONS(3667), - [anon_sym_DQUOTE] = ACTIONS(3667), - [anon_sym_POUND] = ACTIONS(3667), - [anon_sym_DOLLAR] = ACTIONS(3667), - [anon_sym_PERCENT] = ACTIONS(3667), - [anon_sym_AMP] = ACTIONS(3669), - [anon_sym_SQUOTE] = ACTIONS(3667), - [anon_sym_STAR] = ACTIONS(3667), - [anon_sym_PLUS] = ACTIONS(3667), - [anon_sym_COMMA] = ACTIONS(3667), - [anon_sym_DASH] = ACTIONS(3669), - [anon_sym_DOT] = ACTIONS(3669), - [anon_sym_SLASH] = ACTIONS(3667), - [anon_sym_COLON] = ACTIONS(3667), - [anon_sym_SEMI] = ACTIONS(3667), - [anon_sym_EQ] = ACTIONS(3667), - [anon_sym_QMARK] = ACTIONS(3667), - [anon_sym_LBRACK] = ACTIONS(3669), - [anon_sym_BSLASH] = ACTIONS(3669), - [anon_sym_CARET] = ACTIONS(3669), - [anon_sym__] = ACTIONS(3667), - [anon_sym_BQUOTE] = ACTIONS(3667), - [anon_sym_LBRACE] = ACTIONS(3701), - [anon_sym_PIPE] = ACTIONS(3667), - [anon_sym_TILDE] = ACTIONS(3667), - [anon_sym_LPAREN] = ACTIONS(3667), - [anon_sym_RPAREN] = ACTIONS(3667), - [sym__newline_token] = ACTIONS(3667), - [anon_sym_CARET_LBRACK] = ACTIONS(3667), - [anon_sym_LBRACK_CARET] = ACTIONS(3667), - [sym_uri_autolink] = ACTIONS(3667), - [sym_email_autolink] = ACTIONS(3667), - [sym__whitespace_ge_2] = ACTIONS(3667), - [aux_sym__whitespace_token1] = ACTIONS(3669), - [sym__word_no_digit] = ACTIONS(3667), - [sym__digits] = ACTIONS(3667), - [anon_sym_DASH_DASH] = ACTIONS(3669), - [anon_sym_DASH_DASH_DASH] = ACTIONS(3667), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3667), - [sym__code_span_start] = ACTIONS(3667), - [sym__emphasis_open_star] = ACTIONS(3667), - [sym__emphasis_open_underscore] = ACTIONS(3667), - [sym__strikeout_open] = ACTIONS(3667), - [sym__latex_span_start] = ACTIONS(3667), - [sym__single_quote_open] = ACTIONS(3667), - [sym__double_quote_open] = ACTIONS(3667), - [sym__superscript_open] = ACTIONS(3667), - [sym__superscript_close] = ACTIONS(3667), - [sym__subscript_open] = ACTIONS(3667), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3667), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3667), - [sym__cite_author_in_text] = ACTIONS(3667), - [sym__cite_suppress_author] = ACTIONS(3667), - [sym__shortcode_open_escaped] = ACTIONS(3667), - [sym__shortcode_open] = ACTIONS(3667), - [sym__unclosed_span] = ACTIONS(3667), + [sym_backslash_escape] = STATE(373), + [sym_commonmark_attribute] = STATE(373), + [sym_code_span] = STATE(373), + [sym_latex_span] = STATE(373), + [sym_insert] = STATE(373), + [sym_delete] = STATE(373), + [sym_highlight] = STATE(373), + [sym_edit_comment] = STATE(373), + [sym_superscript] = STATE(373), + [sym_subscript] = STATE(373), + [sym_strikeout] = STATE(373), + [sym_quoted_span] = STATE(373), + [sym_inline_note] = STATE(373), + [sym_citation] = STATE(373), + [sym_shortcode_escaped] = STATE(373), + [sym_shortcode] = STATE(373), + [sym_note_reference] = STATE(373), + [sym_image] = STATE(373), + [sym__image_inline_link] = STATE(1265), + [sym__image_description] = STATE(2331), + [sym__image_description_non_empty] = STATE(2331), + [sym_hard_line_break] = STATE(373), + [sym__whitespace] = STATE(1262), + [sym__word] = STATE(1262), + [sym__soft_line_break] = STATE(1267), + [sym__inline_base] = STATE(343), + [sym__text_base] = STATE(373), + [sym__inline_element_no_star_no_link] = STATE(343), + [aux_sym__inline_no_star_no_link] = STATE(343), + [sym__emphasis_star_no_link] = STATE(1441), + [sym__strong_emphasis_star_no_link] = STATE(343), + [sym__emphasis_underscore_no_link] = STATE(1441), + [sym__strong_emphasis_underscore_no_link] = STATE(343), + [aux_sym__inline_base_repeat1] = STATE(373), + [sym__backslash_escape] = ACTIONS(885), + [sym_entity_reference] = ACTIONS(887), + [sym_numeric_character_reference] = ACTIONS(887), + [anon_sym_LT] = ACTIONS(889), + [anon_sym_GT] = ACTIONS(891), + [anon_sym_BANG] = ACTIONS(893), + [anon_sym_DQUOTE] = ACTIONS(891), + [anon_sym_POUND] = ACTIONS(891), + [anon_sym_DOLLAR] = ACTIONS(891), + [anon_sym_PERCENT] = ACTIONS(891), + [anon_sym_AMP] = ACTIONS(889), + [anon_sym_SQUOTE] = ACTIONS(891), + [anon_sym_STAR] = ACTIONS(891), + [anon_sym_PLUS] = ACTIONS(891), + [anon_sym_COMMA] = ACTIONS(891), + [anon_sym_DASH] = ACTIONS(889), + [anon_sym_DOT] = ACTIONS(889), + [anon_sym_SLASH] = ACTIONS(891), + [anon_sym_COLON] = ACTIONS(891), + [anon_sym_SEMI] = ACTIONS(891), + [anon_sym_EQ] = ACTIONS(891), + [anon_sym_QMARK] = ACTIONS(891), + [anon_sym_BSLASH] = ACTIONS(897), + [anon_sym_CARET] = ACTIONS(889), + [anon_sym__] = ACTIONS(891), + [anon_sym_BQUOTE] = ACTIONS(891), + [anon_sym_LBRACE] = ACTIONS(899), + [anon_sym_PIPE] = ACTIONS(891), + [anon_sym_TILDE] = ACTIONS(891), + [anon_sym_LPAREN] = ACTIONS(891), + [anon_sym_RPAREN] = ACTIONS(891), + [sym__newline_token] = ACTIONS(901), + [aux_sym_insert_token1] = ACTIONS(903), + [aux_sym_delete_token1] = ACTIONS(905), + [aux_sym_highlight_token1] = ACTIONS(907), + [aux_sym_edit_comment_token1] = ACTIONS(909), + [anon_sym_CARET_LBRACK] = ACTIONS(911), + [anon_sym_LBRACK_CARET] = ACTIONS(913), + [sym_uri_autolink] = ACTIONS(887), + [sym_email_autolink] = ACTIONS(887), + [sym__whitespace_ge_2] = ACTIONS(915), + [aux_sym__whitespace_token1] = ACTIONS(917), + [sym__word_no_digit] = ACTIONS(919), + [sym__digits] = ACTIONS(919), + [anon_sym_DASH_DASH] = ACTIONS(921), + [anon_sym_DASH_DASH_DASH] = ACTIONS(919), + [anon_sym_DOT_DOT_DOT] = ACTIONS(919), + [sym__code_span_start] = ACTIONS(923), + [sym__emphasis_open_star] = ACTIONS(3207), + [sym__emphasis_open_underscore] = ACTIONS(3209), + [sym__emphasis_close_star] = ACTIONS(3334), + [sym__strikeout_open] = ACTIONS(931), + [sym__latex_span_start] = ACTIONS(933), + [sym__single_quote_open] = ACTIONS(935), + [sym__double_quote_open] = ACTIONS(937), + [sym__superscript_open] = ACTIONS(939), + [sym__subscript_open] = ACTIONS(941), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(943), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(945), + [sym__cite_author_in_text] = ACTIONS(947), + [sym__cite_suppress_author] = ACTIONS(949), + [sym__shortcode_open_escaped] = ACTIONS(951), + [sym__shortcode_open] = ACTIONS(953), + [sym__unclosed_span] = ACTIONS(887), }, [STATE(338)] = { - [sym__qmd_attribute] = STATE(774), - [sym_raw_attribute] = STATE(774), - [sym_commonmark_attribute] = STATE(774), - [sym_language_attribute] = STATE(774), - [sym__backslash_escape] = ACTIONS(3651), - [sym_entity_reference] = ACTIONS(3651), - [sym_numeric_character_reference] = ACTIONS(3651), - [anon_sym_LT] = ACTIONS(3653), - [anon_sym_GT] = ACTIONS(3651), - [anon_sym_BANG] = ACTIONS(3651), - [anon_sym_DQUOTE] = ACTIONS(3651), - [anon_sym_POUND] = ACTIONS(3651), - [anon_sym_DOLLAR] = ACTIONS(3651), - [anon_sym_PERCENT] = ACTIONS(3651), - [anon_sym_AMP] = ACTIONS(3653), - [anon_sym_SQUOTE] = ACTIONS(3651), - [anon_sym_STAR] = ACTIONS(3651), - [anon_sym_PLUS] = ACTIONS(3651), - [anon_sym_COMMA] = ACTIONS(3651), - [anon_sym_DASH] = ACTIONS(3653), - [anon_sym_DOT] = ACTIONS(3653), - [anon_sym_SLASH] = ACTIONS(3651), - [anon_sym_COLON] = ACTIONS(3651), - [anon_sym_SEMI] = ACTIONS(3651), - [anon_sym_EQ] = ACTIONS(3651), - [anon_sym_QMARK] = ACTIONS(3651), - [anon_sym_LBRACK] = ACTIONS(3653), - [anon_sym_BSLASH] = ACTIONS(3653), - [anon_sym_CARET] = ACTIONS(3653), - [anon_sym__] = ACTIONS(3651), - [anon_sym_BQUOTE] = ACTIONS(3651), - [anon_sym_LBRACE] = ACTIONS(3709), - [anon_sym_PIPE] = ACTIONS(3651), - [anon_sym_TILDE] = ACTIONS(3651), - [anon_sym_LPAREN] = ACTIONS(3651), - [anon_sym_RPAREN] = ACTIONS(3651), - [sym__newline_token] = ACTIONS(3651), - [anon_sym_CARET_LBRACK] = ACTIONS(3651), - [anon_sym_LBRACK_CARET] = ACTIONS(3651), - [sym_uri_autolink] = ACTIONS(3651), - [sym_email_autolink] = ACTIONS(3651), - [sym__whitespace_ge_2] = ACTIONS(3651), - [aux_sym__whitespace_token1] = ACTIONS(3653), - [sym__word_no_digit] = ACTIONS(3651), - [sym__digits] = ACTIONS(3651), - [anon_sym_DASH_DASH] = ACTIONS(3653), - [anon_sym_DASH_DASH_DASH] = ACTIONS(3651), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3651), - [sym__code_span_start] = ACTIONS(3651), - [sym__emphasis_open_star] = ACTIONS(3651), - [sym__emphasis_open_underscore] = ACTIONS(3651), - [sym__emphasis_close_star] = ACTIONS(3651), - [sym__strikeout_open] = ACTIONS(3651), - [sym__latex_span_start] = ACTIONS(3651), - [sym__single_quote_open] = ACTIONS(3651), - [sym__double_quote_open] = ACTIONS(3651), - [sym__superscript_open] = ACTIONS(3651), - [sym__subscript_open] = ACTIONS(3651), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3651), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3651), - [sym__cite_author_in_text] = ACTIONS(3651), - [sym__cite_suppress_author] = ACTIONS(3651), - [sym__shortcode_open_escaped] = ACTIONS(3651), - [sym__shortcode_open] = ACTIONS(3651), - [sym__unclosed_span] = ACTIONS(3651), + [sym_backslash_escape] = STATE(370), + [sym_commonmark_attribute] = STATE(370), + [sym_code_span] = STATE(370), + [sym_latex_span] = STATE(370), + [sym_insert] = STATE(370), + [sym_delete] = STATE(370), + [sym_highlight] = STATE(370), + [sym_edit_comment] = STATE(370), + [sym_superscript] = STATE(370), + [sym_subscript] = STATE(370), + [sym_strikeout] = STATE(370), + [sym_quoted_span] = STATE(370), + [sym_inline_note] = STATE(370), + [sym_citation] = STATE(370), + [sym_shortcode_escaped] = STATE(370), + [sym_shortcode] = STATE(370), + [sym_note_reference] = STATE(370), + [sym_image] = STATE(370), + [sym__image_inline_link] = STATE(923), + [sym__image_description] = STATE(2342), + [sym__image_description_non_empty] = STATE(2342), + [sym_hard_line_break] = STATE(370), + [sym__whitespace] = STATE(920), + [sym__word] = STATE(920), + [sym__soft_line_break] = STATE(924), + [sym__inline_base] = STATE(1451), + [sym__text_base] = STATE(370), + [sym__inline_element_no_link] = STATE(1451), + [aux_sym__inline_no_link] = STATE(324), + [sym__emphasis_star_no_link] = STATE(1452), + [sym__strong_emphasis_star_no_link] = STATE(1451), + [sym__emphasis_underscore_no_link] = STATE(1452), + [sym__strong_emphasis_underscore_no_link] = STATE(1451), + [aux_sym__inline_base_repeat1] = STATE(370), + [sym__backslash_escape] = ACTIONS(73), + [sym_entity_reference] = ACTIONS(75), + [sym_numeric_character_reference] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_BANG] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_POUND] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(79), + [anon_sym_PERCENT] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_STAR] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_COMMA] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_DOT] = ACTIONS(77), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_COLON] = ACTIONS(79), + [anon_sym_SEMI] = ACTIONS(79), + [anon_sym_EQ] = ACTIONS(79), + [anon_sym_QMARK] = ACTIONS(79), + [anon_sym_BSLASH] = ACTIONS(85), + [anon_sym_RBRACK] = ACTIONS(3336), + [anon_sym_CARET] = ACTIONS(77), + [anon_sym__] = ACTIONS(79), + [anon_sym_BQUOTE] = ACTIONS(79), + [anon_sym_LBRACE] = ACTIONS(89), + [anon_sym_PIPE] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(79), + [anon_sym_RPAREN] = ACTIONS(79), + [sym__newline_token] = ACTIONS(91), + [aux_sym_insert_token1] = ACTIONS(93), + [aux_sym_delete_token1] = ACTIONS(95), + [aux_sym_highlight_token1] = ACTIONS(97), + [aux_sym_edit_comment_token1] = ACTIONS(99), + [anon_sym_CARET_LBRACK] = ACTIONS(101), + [anon_sym_LBRACK_CARET] = ACTIONS(103), + [sym_uri_autolink] = ACTIONS(75), + [sym_email_autolink] = ACTIONS(75), + [sym__whitespace_ge_2] = ACTIONS(105), + [aux_sym__whitespace_token1] = ACTIONS(107), + [sym__word_no_digit] = ACTIONS(109), + [sym__digits] = ACTIONS(109), + [anon_sym_DASH_DASH] = ACTIONS(111), + [anon_sym_DASH_DASH_DASH] = ACTIONS(109), + [anon_sym_DOT_DOT_DOT] = ACTIONS(109), + [sym__code_span_start] = ACTIONS(113), + [sym__emphasis_open_star] = ACTIONS(3201), + [sym__emphasis_open_underscore] = ACTIONS(3203), + [sym__strikeout_open] = ACTIONS(121), + [sym__latex_span_start] = ACTIONS(123), + [sym__single_quote_open] = ACTIONS(125), + [sym__double_quote_open] = ACTIONS(127), + [sym__superscript_open] = ACTIONS(129), + [sym__subscript_open] = ACTIONS(131), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(133), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(135), + [sym__cite_author_in_text] = ACTIONS(137), + [sym__cite_suppress_author] = ACTIONS(139), + [sym__shortcode_open_escaped] = ACTIONS(141), + [sym__shortcode_open] = ACTIONS(143), + [sym__unclosed_span] = ACTIONS(75), }, [STATE(339)] = { - [sym__qmd_attribute] = STATE(790), - [sym_raw_attribute] = STATE(790), - [sym_commonmark_attribute] = STATE(790), - [sym_language_attribute] = STATE(790), - [sym__backslash_escape] = ACTIONS(3655), - [sym_entity_reference] = ACTIONS(3655), - [sym_numeric_character_reference] = ACTIONS(3655), - [anon_sym_LT] = ACTIONS(3657), - [anon_sym_GT] = ACTIONS(3655), - [anon_sym_BANG] = ACTIONS(3655), - [anon_sym_DQUOTE] = ACTIONS(3655), - [anon_sym_POUND] = ACTIONS(3655), - [anon_sym_DOLLAR] = ACTIONS(3655), - [anon_sym_PERCENT] = ACTIONS(3655), - [anon_sym_AMP] = ACTIONS(3657), - [anon_sym_SQUOTE] = ACTIONS(3655), - [anon_sym_STAR] = ACTIONS(3655), - [anon_sym_PLUS] = ACTIONS(3655), - [anon_sym_COMMA] = ACTIONS(3655), - [anon_sym_DASH] = ACTIONS(3657), - [anon_sym_DOT] = ACTIONS(3657), - [anon_sym_SLASH] = ACTIONS(3655), - [anon_sym_COLON] = ACTIONS(3655), - [anon_sym_SEMI] = ACTIONS(3655), - [anon_sym_EQ] = ACTIONS(3655), - [anon_sym_QMARK] = ACTIONS(3655), - [anon_sym_LBRACK] = ACTIONS(3657), - [anon_sym_BSLASH] = ACTIONS(3657), - [anon_sym_CARET] = ACTIONS(3657), - [anon_sym__] = ACTIONS(3655), - [anon_sym_BQUOTE] = ACTIONS(3655), - [anon_sym_LBRACE] = ACTIONS(3709), - [anon_sym_PIPE] = ACTIONS(3655), - [anon_sym_TILDE] = ACTIONS(3655), - [anon_sym_LPAREN] = ACTIONS(3655), - [anon_sym_RPAREN] = ACTIONS(3655), - [sym__newline_token] = ACTIONS(3655), - [anon_sym_CARET_LBRACK] = ACTIONS(3655), - [anon_sym_LBRACK_CARET] = ACTIONS(3655), - [sym_uri_autolink] = ACTIONS(3655), - [sym_email_autolink] = ACTIONS(3655), - [sym__whitespace_ge_2] = ACTIONS(3655), - [aux_sym__whitespace_token1] = ACTIONS(3657), - [sym__word_no_digit] = ACTIONS(3655), - [sym__digits] = ACTIONS(3655), - [anon_sym_DASH_DASH] = ACTIONS(3657), - [anon_sym_DASH_DASH_DASH] = ACTIONS(3655), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3655), - [sym__code_span_start] = ACTIONS(3655), - [sym__emphasis_open_star] = ACTIONS(3655), - [sym__emphasis_open_underscore] = ACTIONS(3655), - [sym__emphasis_close_star] = ACTIONS(3655), - [sym__strikeout_open] = ACTIONS(3655), - [sym__latex_span_start] = ACTIONS(3655), - [sym__single_quote_open] = ACTIONS(3655), - [sym__double_quote_open] = ACTIONS(3655), - [sym__superscript_open] = ACTIONS(3655), - [sym__subscript_open] = ACTIONS(3655), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3655), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3655), - [sym__cite_author_in_text] = ACTIONS(3655), - [sym__cite_suppress_author] = ACTIONS(3655), - [sym__shortcode_open_escaped] = ACTIONS(3655), - [sym__shortcode_open] = ACTIONS(3655), - [sym__unclosed_span] = ACTIONS(3655), + [sym_backslash_escape] = STATE(373), + [sym_commonmark_attribute] = STATE(373), + [sym_code_span] = STATE(373), + [sym_latex_span] = STATE(373), + [sym_insert] = STATE(373), + [sym_delete] = STATE(373), + [sym_highlight] = STATE(373), + [sym_edit_comment] = STATE(373), + [sym_superscript] = STATE(373), + [sym_subscript] = STATE(373), + [sym_strikeout] = STATE(373), + [sym_quoted_span] = STATE(373), + [sym_inline_note] = STATE(373), + [sym_citation] = STATE(373), + [sym_shortcode_escaped] = STATE(373), + [sym_shortcode] = STATE(373), + [sym_note_reference] = STATE(373), + [sym_image] = STATE(373), + [sym__image_inline_link] = STATE(1265), + [sym__image_description] = STATE(2331), + [sym__image_description_non_empty] = STATE(2331), + [sym_hard_line_break] = STATE(373), + [sym__whitespace] = STATE(1262), + [sym__word] = STATE(1262), + [sym__soft_line_break] = STATE(1267), + [sym__inline_base] = STATE(343), + [sym__text_base] = STATE(373), + [sym__inline_element_no_star_no_link] = STATE(343), + [aux_sym__inline_no_star_no_link] = STATE(343), + [sym__emphasis_star_no_link] = STATE(1441), + [sym__strong_emphasis_star_no_link] = STATE(343), + [sym__emphasis_underscore_no_link] = STATE(1441), + [sym__strong_emphasis_underscore_no_link] = STATE(343), + [aux_sym__inline_base_repeat1] = STATE(373), + [sym__backslash_escape] = ACTIONS(885), + [sym_entity_reference] = ACTIONS(887), + [sym_numeric_character_reference] = ACTIONS(887), + [anon_sym_LT] = ACTIONS(889), + [anon_sym_GT] = ACTIONS(891), + [anon_sym_BANG] = ACTIONS(893), + [anon_sym_DQUOTE] = ACTIONS(891), + [anon_sym_POUND] = ACTIONS(891), + [anon_sym_DOLLAR] = ACTIONS(891), + [anon_sym_PERCENT] = ACTIONS(891), + [anon_sym_AMP] = ACTIONS(889), + [anon_sym_SQUOTE] = ACTIONS(891), + [anon_sym_STAR] = ACTIONS(891), + [anon_sym_PLUS] = ACTIONS(891), + [anon_sym_COMMA] = ACTIONS(891), + [anon_sym_DASH] = ACTIONS(889), + [anon_sym_DOT] = ACTIONS(889), + [anon_sym_SLASH] = ACTIONS(891), + [anon_sym_COLON] = ACTIONS(891), + [anon_sym_SEMI] = ACTIONS(891), + [anon_sym_EQ] = ACTIONS(891), + [anon_sym_QMARK] = ACTIONS(891), + [anon_sym_BSLASH] = ACTIONS(897), + [anon_sym_CARET] = ACTIONS(889), + [anon_sym__] = ACTIONS(891), + [anon_sym_BQUOTE] = ACTIONS(891), + [anon_sym_LBRACE] = ACTIONS(899), + [anon_sym_PIPE] = ACTIONS(891), + [anon_sym_TILDE] = ACTIONS(891), + [anon_sym_LPAREN] = ACTIONS(891), + [anon_sym_RPAREN] = ACTIONS(891), + [sym__newline_token] = ACTIONS(901), + [aux_sym_insert_token1] = ACTIONS(903), + [aux_sym_delete_token1] = ACTIONS(905), + [aux_sym_highlight_token1] = ACTIONS(907), + [aux_sym_edit_comment_token1] = ACTIONS(909), + [anon_sym_CARET_LBRACK] = ACTIONS(911), + [anon_sym_LBRACK_CARET] = ACTIONS(913), + [sym_uri_autolink] = ACTIONS(887), + [sym_email_autolink] = ACTIONS(887), + [sym__whitespace_ge_2] = ACTIONS(915), + [aux_sym__whitespace_token1] = ACTIONS(917), + [sym__word_no_digit] = ACTIONS(919), + [sym__digits] = ACTIONS(919), + [anon_sym_DASH_DASH] = ACTIONS(921), + [anon_sym_DASH_DASH_DASH] = ACTIONS(919), + [anon_sym_DOT_DOT_DOT] = ACTIONS(919), + [sym__code_span_start] = ACTIONS(923), + [sym__emphasis_open_star] = ACTIONS(3207), + [sym__emphasis_open_underscore] = ACTIONS(3209), + [sym__emphasis_close_star] = ACTIONS(3338), + [sym__strikeout_open] = ACTIONS(931), + [sym__latex_span_start] = ACTIONS(933), + [sym__single_quote_open] = ACTIONS(935), + [sym__double_quote_open] = ACTIONS(937), + [sym__superscript_open] = ACTIONS(939), + [sym__subscript_open] = ACTIONS(941), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(943), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(945), + [sym__cite_author_in_text] = ACTIONS(947), + [sym__cite_suppress_author] = ACTIONS(949), + [sym__shortcode_open_escaped] = ACTIONS(951), + [sym__shortcode_open] = ACTIONS(953), + [sym__unclosed_span] = ACTIONS(887), }, [STATE(340)] = { - [sym__qmd_attribute] = STATE(791), - [sym_raw_attribute] = STATE(791), - [sym_commonmark_attribute] = STATE(791), - [sym_language_attribute] = STATE(791), - [sym__backslash_escape] = ACTIONS(3659), - [sym_entity_reference] = ACTIONS(3659), - [sym_numeric_character_reference] = ACTIONS(3659), - [anon_sym_LT] = ACTIONS(3661), - [anon_sym_GT] = ACTIONS(3659), - [anon_sym_BANG] = ACTIONS(3659), - [anon_sym_DQUOTE] = ACTIONS(3659), - [anon_sym_POUND] = ACTIONS(3659), - [anon_sym_DOLLAR] = ACTIONS(3659), - [anon_sym_PERCENT] = ACTIONS(3659), - [anon_sym_AMP] = ACTIONS(3661), - [anon_sym_SQUOTE] = ACTIONS(3659), - [anon_sym_STAR] = ACTIONS(3659), - [anon_sym_PLUS] = ACTIONS(3659), - [anon_sym_COMMA] = ACTIONS(3659), - [anon_sym_DASH] = ACTIONS(3661), - [anon_sym_DOT] = ACTIONS(3661), - [anon_sym_SLASH] = ACTIONS(3659), - [anon_sym_COLON] = ACTIONS(3659), - [anon_sym_SEMI] = ACTIONS(3659), - [anon_sym_EQ] = ACTIONS(3659), - [anon_sym_QMARK] = ACTIONS(3659), - [anon_sym_LBRACK] = ACTIONS(3661), - [anon_sym_BSLASH] = ACTIONS(3661), - [anon_sym_CARET] = ACTIONS(3661), - [anon_sym__] = ACTIONS(3659), - [anon_sym_BQUOTE] = ACTIONS(3659), - [anon_sym_LBRACE] = ACTIONS(3709), - [anon_sym_PIPE] = ACTIONS(3659), - [anon_sym_TILDE] = ACTIONS(3659), - [anon_sym_LPAREN] = ACTIONS(3659), - [anon_sym_RPAREN] = ACTIONS(3659), - [sym__newline_token] = ACTIONS(3659), - [anon_sym_CARET_LBRACK] = ACTIONS(3659), - [anon_sym_LBRACK_CARET] = ACTIONS(3659), - [sym_uri_autolink] = ACTIONS(3659), - [sym_email_autolink] = ACTIONS(3659), - [sym__whitespace_ge_2] = ACTIONS(3659), - [aux_sym__whitespace_token1] = ACTIONS(3661), - [sym__word_no_digit] = ACTIONS(3659), - [sym__digits] = ACTIONS(3659), - [anon_sym_DASH_DASH] = ACTIONS(3661), - [anon_sym_DASH_DASH_DASH] = ACTIONS(3659), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3659), - [sym__code_span_start] = ACTIONS(3659), - [sym__emphasis_open_star] = ACTIONS(3659), - [sym__emphasis_open_underscore] = ACTIONS(3659), - [sym__emphasis_close_star] = ACTIONS(3659), - [sym__strikeout_open] = ACTIONS(3659), - [sym__latex_span_start] = ACTIONS(3659), - [sym__single_quote_open] = ACTIONS(3659), - [sym__double_quote_open] = ACTIONS(3659), - [sym__superscript_open] = ACTIONS(3659), - [sym__subscript_open] = ACTIONS(3659), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3659), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3659), - [sym__cite_author_in_text] = ACTIONS(3659), - [sym__cite_suppress_author] = ACTIONS(3659), - [sym__shortcode_open_escaped] = ACTIONS(3659), - [sym__shortcode_open] = ACTIONS(3659), - [sym__unclosed_span] = ACTIONS(3659), + [sym_backslash_escape] = STATE(379), + [sym_commonmark_attribute] = STATE(379), + [sym_code_span] = STATE(379), + [sym_latex_span] = STATE(379), + [sym_insert] = STATE(379), + [sym_delete] = STATE(379), + [sym_highlight] = STATE(379), + [sym_edit_comment] = STATE(379), + [sym_superscript] = STATE(379), + [sym_subscript] = STATE(379), + [sym_strikeout] = STATE(379), + [sym_quoted_span] = STATE(379), + [sym_inline_note] = STATE(379), + [sym_citation] = STATE(379), + [sym_shortcode_escaped] = STATE(379), + [sym_shortcode] = STATE(379), + [sym_note_reference] = STATE(379), + [sym_image] = STATE(379), + [sym__image_inline_link] = STATE(1390), + [sym__image_description] = STATE(2363), + [sym__image_description_non_empty] = STATE(2363), + [sym_hard_line_break] = STATE(379), + [sym__whitespace] = STATE(1385), + [sym__word] = STATE(1385), + [sym__soft_line_break] = STATE(1391), + [sym__inline_base] = STATE(345), + [sym__text_base] = STATE(379), + [sym__inline_element_no_underscore_no_link] = STATE(345), + [aux_sym__inline_no_underscore_no_link] = STATE(345), + [sym__emphasis_star_no_link] = STATE(1442), + [sym__strong_emphasis_star_no_link] = STATE(345), + [sym__emphasis_underscore_no_link] = STATE(1442), + [sym__strong_emphasis_underscore_no_link] = STATE(345), + [aux_sym__inline_base_repeat1] = STATE(379), + [sym__backslash_escape] = ACTIONS(1059), + [sym_entity_reference] = ACTIONS(1061), + [sym_numeric_character_reference] = ACTIONS(1061), + [anon_sym_LT] = ACTIONS(1063), + [anon_sym_GT] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1067), + [anon_sym_DQUOTE] = ACTIONS(1065), + [anon_sym_POUND] = ACTIONS(1065), + [anon_sym_DOLLAR] = ACTIONS(1065), + [anon_sym_PERCENT] = ACTIONS(1065), + [anon_sym_AMP] = ACTIONS(1063), + [anon_sym_SQUOTE] = ACTIONS(1065), + [anon_sym_STAR] = ACTIONS(1065), + [anon_sym_PLUS] = ACTIONS(1065), + [anon_sym_COMMA] = ACTIONS(1065), + [anon_sym_DASH] = ACTIONS(1063), + [anon_sym_DOT] = ACTIONS(1063), + [anon_sym_SLASH] = ACTIONS(1065), + [anon_sym_COLON] = ACTIONS(1065), + [anon_sym_SEMI] = ACTIONS(1065), + [anon_sym_EQ] = ACTIONS(1065), + [anon_sym_QMARK] = ACTIONS(1065), + [anon_sym_BSLASH] = ACTIONS(1071), + [anon_sym_CARET] = ACTIONS(1063), + [anon_sym__] = ACTIONS(1065), + [anon_sym_BQUOTE] = ACTIONS(1065), + [anon_sym_LBRACE] = ACTIONS(1073), + [anon_sym_PIPE] = ACTIONS(1065), + [anon_sym_TILDE] = ACTIONS(1065), + [anon_sym_LPAREN] = ACTIONS(1065), + [anon_sym_RPAREN] = ACTIONS(1065), + [sym__newline_token] = ACTIONS(1075), + [aux_sym_insert_token1] = ACTIONS(1077), + [aux_sym_delete_token1] = ACTIONS(1079), + [aux_sym_highlight_token1] = ACTIONS(1081), + [aux_sym_edit_comment_token1] = ACTIONS(1083), + [anon_sym_CARET_LBRACK] = ACTIONS(1085), + [anon_sym_LBRACK_CARET] = ACTIONS(1087), + [sym_uri_autolink] = ACTIONS(1061), + [sym_email_autolink] = ACTIONS(1061), + [sym__whitespace_ge_2] = ACTIONS(1089), + [aux_sym__whitespace_token1] = ACTIONS(1091), + [sym__word_no_digit] = ACTIONS(1093), + [sym__digits] = ACTIONS(1093), + [anon_sym_DASH_DASH] = ACTIONS(1095), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1093), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1093), + [sym__code_span_start] = ACTIONS(1097), + [sym__emphasis_open_star] = ACTIONS(3193), + [sym__emphasis_open_underscore] = ACTIONS(3195), + [sym__emphasis_close_underscore] = ACTIONS(3340), + [sym__strikeout_open] = ACTIONS(1105), + [sym__latex_span_start] = ACTIONS(1107), + [sym__single_quote_open] = ACTIONS(1109), + [sym__double_quote_open] = ACTIONS(1111), + [sym__superscript_open] = ACTIONS(1113), + [sym__subscript_open] = ACTIONS(1115), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1117), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1119), + [sym__cite_author_in_text] = ACTIONS(1121), + [sym__cite_suppress_author] = ACTIONS(1123), + [sym__shortcode_open_escaped] = ACTIONS(1125), + [sym__shortcode_open] = ACTIONS(1127), + [sym__unclosed_span] = ACTIONS(1061), }, [STATE(341)] = { - [sym__qmd_attribute] = STATE(811), - [sym_raw_attribute] = STATE(811), - [sym_commonmark_attribute] = STATE(811), - [sym_language_attribute] = STATE(811), - [sym__backslash_escape] = ACTIONS(3637), - [sym_entity_reference] = ACTIONS(3637), - [sym_numeric_character_reference] = ACTIONS(3637), - [anon_sym_LT] = ACTIONS(3639), - [anon_sym_GT] = ACTIONS(3637), - [anon_sym_BANG] = ACTIONS(3637), - [anon_sym_DQUOTE] = ACTIONS(3637), - [anon_sym_POUND] = ACTIONS(3637), - [anon_sym_DOLLAR] = ACTIONS(3637), - [anon_sym_PERCENT] = ACTIONS(3637), - [anon_sym_AMP] = ACTIONS(3639), - [anon_sym_SQUOTE] = ACTIONS(3637), - [anon_sym_STAR] = ACTIONS(3637), - [anon_sym_PLUS] = ACTIONS(3637), - [anon_sym_COMMA] = ACTIONS(3637), - [anon_sym_DASH] = ACTIONS(3639), - [anon_sym_DOT] = ACTIONS(3639), - [anon_sym_SLASH] = ACTIONS(3637), - [anon_sym_COLON] = ACTIONS(3637), - [anon_sym_SEMI] = ACTIONS(3637), - [anon_sym_EQ] = ACTIONS(3637), - [anon_sym_QMARK] = ACTIONS(3637), - [anon_sym_LBRACK] = ACTIONS(3639), - [anon_sym_BSLASH] = ACTIONS(3639), - [anon_sym_CARET] = ACTIONS(3639), - [anon_sym__] = ACTIONS(3637), - [anon_sym_BQUOTE] = ACTIONS(3637), - [anon_sym_LBRACE] = ACTIONS(3709), - [anon_sym_PIPE] = ACTIONS(3637), - [anon_sym_TILDE] = ACTIONS(3637), - [anon_sym_LPAREN] = ACTIONS(3637), - [anon_sym_RPAREN] = ACTIONS(3637), - [sym__newline_token] = ACTIONS(3637), - [anon_sym_CARET_LBRACK] = ACTIONS(3637), - [anon_sym_LBRACK_CARET] = ACTIONS(3637), - [sym_uri_autolink] = ACTIONS(3637), - [sym_email_autolink] = ACTIONS(3637), - [sym__whitespace_ge_2] = ACTIONS(3637), - [aux_sym__whitespace_token1] = ACTIONS(3639), - [sym__word_no_digit] = ACTIONS(3637), - [sym__digits] = ACTIONS(3637), - [anon_sym_DASH_DASH] = ACTIONS(3639), - [anon_sym_DASH_DASH_DASH] = ACTIONS(3637), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3637), - [sym__code_span_start] = ACTIONS(3637), - [sym__emphasis_open_star] = ACTIONS(3637), - [sym__emphasis_open_underscore] = ACTIONS(3637), - [sym__emphasis_close_star] = ACTIONS(3637), - [sym__strikeout_open] = ACTIONS(3637), - [sym__latex_span_start] = ACTIONS(3637), - [sym__single_quote_open] = ACTIONS(3637), - [sym__double_quote_open] = ACTIONS(3637), - [sym__superscript_open] = ACTIONS(3637), - [sym__subscript_open] = ACTIONS(3637), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3637), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3637), - [sym__cite_author_in_text] = ACTIONS(3637), - [sym__cite_suppress_author] = ACTIONS(3637), - [sym__shortcode_open_escaped] = ACTIONS(3637), - [sym__shortcode_open] = ACTIONS(3637), - [sym__unclosed_span] = ACTIONS(3637), + [sym_backslash_escape] = STATE(370), + [sym_commonmark_attribute] = STATE(370), + [sym_code_span] = STATE(370), + [sym_latex_span] = STATE(370), + [sym_insert] = STATE(370), + [sym_delete] = STATE(370), + [sym_highlight] = STATE(370), + [sym_edit_comment] = STATE(370), + [sym_superscript] = STATE(370), + [sym_subscript] = STATE(370), + [sym_strikeout] = STATE(370), + [sym_quoted_span] = STATE(370), + [sym_inline_note] = STATE(370), + [sym_citation] = STATE(370), + [sym_shortcode_escaped] = STATE(370), + [sym_shortcode] = STATE(370), + [sym_note_reference] = STATE(370), + [sym_image] = STATE(370), + [sym__image_inline_link] = STATE(923), + [sym__image_description] = STATE(2342), + [sym__image_description_non_empty] = STATE(2342), + [sym_hard_line_break] = STATE(370), + [sym__whitespace] = STATE(920), + [sym__word] = STATE(920), + [sym__soft_line_break] = STATE(924), + [sym__inline_base] = STATE(1451), + [sym__text_base] = STATE(370), + [sym__inline_element_no_link] = STATE(1451), + [aux_sym__inline_no_link] = STATE(346), + [sym__emphasis_star_no_link] = STATE(1452), + [sym__strong_emphasis_star_no_link] = STATE(1451), + [sym__emphasis_underscore_no_link] = STATE(1452), + [sym__strong_emphasis_underscore_no_link] = STATE(1451), + [aux_sym__inline_base_repeat1] = STATE(370), + [sym__backslash_escape] = ACTIONS(73), + [sym_entity_reference] = ACTIONS(75), + [sym_numeric_character_reference] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_BANG] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_POUND] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(79), + [anon_sym_PERCENT] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_STAR] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_COMMA] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_DOT] = ACTIONS(77), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_COLON] = ACTIONS(79), + [anon_sym_SEMI] = ACTIONS(79), + [anon_sym_EQ] = ACTIONS(79), + [anon_sym_QMARK] = ACTIONS(79), + [anon_sym_BSLASH] = ACTIONS(85), + [anon_sym_RBRACK] = ACTIONS(3342), + [anon_sym_CARET] = ACTIONS(77), + [anon_sym__] = ACTIONS(79), + [anon_sym_BQUOTE] = ACTIONS(79), + [anon_sym_LBRACE] = ACTIONS(89), + [anon_sym_PIPE] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(79), + [anon_sym_RPAREN] = ACTIONS(79), + [sym__newline_token] = ACTIONS(91), + [aux_sym_insert_token1] = ACTIONS(93), + [aux_sym_delete_token1] = ACTIONS(95), + [aux_sym_highlight_token1] = ACTIONS(97), + [aux_sym_edit_comment_token1] = ACTIONS(99), + [anon_sym_CARET_LBRACK] = ACTIONS(101), + [anon_sym_LBRACK_CARET] = ACTIONS(103), + [sym_uri_autolink] = ACTIONS(75), + [sym_email_autolink] = ACTIONS(75), + [sym__whitespace_ge_2] = ACTIONS(105), + [aux_sym__whitespace_token1] = ACTIONS(107), + [sym__word_no_digit] = ACTIONS(109), + [sym__digits] = ACTIONS(109), + [anon_sym_DASH_DASH] = ACTIONS(111), + [anon_sym_DASH_DASH_DASH] = ACTIONS(109), + [anon_sym_DOT_DOT_DOT] = ACTIONS(109), + [sym__code_span_start] = ACTIONS(113), + [sym__emphasis_open_star] = ACTIONS(3201), + [sym__emphasis_open_underscore] = ACTIONS(3203), + [sym__strikeout_open] = ACTIONS(121), + [sym__latex_span_start] = ACTIONS(123), + [sym__single_quote_open] = ACTIONS(125), + [sym__double_quote_open] = ACTIONS(127), + [sym__superscript_open] = ACTIONS(129), + [sym__subscript_open] = ACTIONS(131), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(133), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(135), + [sym__cite_author_in_text] = ACTIONS(137), + [sym__cite_suppress_author] = ACTIONS(139), + [sym__shortcode_open_escaped] = ACTIONS(141), + [sym__shortcode_open] = ACTIONS(143), + [sym__unclosed_span] = ACTIONS(75), }, [STATE(342)] = { - [sym__qmd_attribute] = STATE(817), - [sym_raw_attribute] = STATE(817), - [sym_commonmark_attribute] = STATE(817), - [sym_language_attribute] = STATE(817), - [sym__backslash_escape] = ACTIONS(3663), - [sym_entity_reference] = ACTIONS(3663), - [sym_numeric_character_reference] = ACTIONS(3663), - [anon_sym_LT] = ACTIONS(3665), - [anon_sym_GT] = ACTIONS(3663), - [anon_sym_BANG] = ACTIONS(3663), - [anon_sym_DQUOTE] = ACTIONS(3663), - [anon_sym_POUND] = ACTIONS(3663), - [anon_sym_DOLLAR] = ACTIONS(3663), - [anon_sym_PERCENT] = ACTIONS(3663), - [anon_sym_AMP] = ACTIONS(3665), - [anon_sym_SQUOTE] = ACTIONS(3663), - [anon_sym_STAR] = ACTIONS(3663), - [anon_sym_PLUS] = ACTIONS(3663), - [anon_sym_COMMA] = ACTIONS(3663), - [anon_sym_DASH] = ACTIONS(3665), - [anon_sym_DOT] = ACTIONS(3665), - [anon_sym_SLASH] = ACTIONS(3663), - [anon_sym_COLON] = ACTIONS(3663), - [anon_sym_SEMI] = ACTIONS(3663), - [anon_sym_EQ] = ACTIONS(3663), - [anon_sym_QMARK] = ACTIONS(3663), - [anon_sym_LBRACK] = ACTIONS(3665), - [anon_sym_BSLASH] = ACTIONS(3665), - [anon_sym_CARET] = ACTIONS(3665), - [anon_sym__] = ACTIONS(3663), - [anon_sym_BQUOTE] = ACTIONS(3663), - [anon_sym_LBRACE] = ACTIONS(3709), - [anon_sym_PIPE] = ACTIONS(3663), - [anon_sym_TILDE] = ACTIONS(3663), - [anon_sym_LPAREN] = ACTIONS(3663), - [anon_sym_RPAREN] = ACTIONS(3663), - [sym__newline_token] = ACTIONS(3663), - [anon_sym_CARET_LBRACK] = ACTIONS(3663), - [anon_sym_LBRACK_CARET] = ACTIONS(3663), - [sym_uri_autolink] = ACTIONS(3663), - [sym_email_autolink] = ACTIONS(3663), - [sym__whitespace_ge_2] = ACTIONS(3663), - [aux_sym__whitespace_token1] = ACTIONS(3665), - [sym__word_no_digit] = ACTIONS(3663), - [sym__digits] = ACTIONS(3663), - [anon_sym_DASH_DASH] = ACTIONS(3665), - [anon_sym_DASH_DASH_DASH] = ACTIONS(3663), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3663), - [sym__code_span_start] = ACTIONS(3663), - [sym__emphasis_open_star] = ACTIONS(3663), - [sym__emphasis_open_underscore] = ACTIONS(3663), - [sym__emphasis_close_star] = ACTIONS(3663), - [sym__strikeout_open] = ACTIONS(3663), - [sym__latex_span_start] = ACTIONS(3663), - [sym__single_quote_open] = ACTIONS(3663), - [sym__double_quote_open] = ACTIONS(3663), - [sym__superscript_open] = ACTIONS(3663), - [sym__subscript_open] = ACTIONS(3663), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3663), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3663), - [sym__cite_author_in_text] = ACTIONS(3663), - [sym__cite_suppress_author] = ACTIONS(3663), - [sym__shortcode_open_escaped] = ACTIONS(3663), - [sym__shortcode_open] = ACTIONS(3663), - [sym__unclosed_span] = ACTIONS(3663), + [sym_backslash_escape] = STATE(373), + [sym_commonmark_attribute] = STATE(373), + [sym_code_span] = STATE(373), + [sym_latex_span] = STATE(373), + [sym_insert] = STATE(373), + [sym_delete] = STATE(373), + [sym_highlight] = STATE(373), + [sym_edit_comment] = STATE(373), + [sym_superscript] = STATE(373), + [sym_subscript] = STATE(373), + [sym_strikeout] = STATE(373), + [sym_quoted_span] = STATE(373), + [sym_inline_note] = STATE(373), + [sym_citation] = STATE(373), + [sym_shortcode_escaped] = STATE(373), + [sym_shortcode] = STATE(373), + [sym_note_reference] = STATE(373), + [sym_image] = STATE(373), + [sym__image_inline_link] = STATE(1265), + [sym__image_description] = STATE(2331), + [sym__image_description_non_empty] = STATE(2331), + [sym_hard_line_break] = STATE(373), + [sym__whitespace] = STATE(1262), + [sym__word] = STATE(1262), + [sym__soft_line_break] = STATE(1267), + [sym__inline_base] = STATE(343), + [sym__text_base] = STATE(373), + [sym__inline_element_no_star_no_link] = STATE(343), + [aux_sym__inline_no_star_no_link] = STATE(343), + [sym__emphasis_star_no_link] = STATE(1441), + [sym__strong_emphasis_star_no_link] = STATE(343), + [sym__emphasis_underscore_no_link] = STATE(1441), + [sym__strong_emphasis_underscore_no_link] = STATE(343), + [aux_sym__inline_base_repeat1] = STATE(373), + [sym__backslash_escape] = ACTIONS(885), + [sym_entity_reference] = ACTIONS(887), + [sym_numeric_character_reference] = ACTIONS(887), + [anon_sym_LT] = ACTIONS(889), + [anon_sym_GT] = ACTIONS(891), + [anon_sym_BANG] = ACTIONS(893), + [anon_sym_DQUOTE] = ACTIONS(891), + [anon_sym_POUND] = ACTIONS(891), + [anon_sym_DOLLAR] = ACTIONS(891), + [anon_sym_PERCENT] = ACTIONS(891), + [anon_sym_AMP] = ACTIONS(889), + [anon_sym_SQUOTE] = ACTIONS(891), + [anon_sym_STAR] = ACTIONS(891), + [anon_sym_PLUS] = ACTIONS(891), + [anon_sym_COMMA] = ACTIONS(891), + [anon_sym_DASH] = ACTIONS(889), + [anon_sym_DOT] = ACTIONS(889), + [anon_sym_SLASH] = ACTIONS(891), + [anon_sym_COLON] = ACTIONS(891), + [anon_sym_SEMI] = ACTIONS(891), + [anon_sym_EQ] = ACTIONS(891), + [anon_sym_QMARK] = ACTIONS(891), + [anon_sym_BSLASH] = ACTIONS(897), + [anon_sym_CARET] = ACTIONS(889), + [anon_sym__] = ACTIONS(891), + [anon_sym_BQUOTE] = ACTIONS(891), + [anon_sym_LBRACE] = ACTIONS(899), + [anon_sym_PIPE] = ACTIONS(891), + [anon_sym_TILDE] = ACTIONS(891), + [anon_sym_LPAREN] = ACTIONS(891), + [anon_sym_RPAREN] = ACTIONS(891), + [sym__newline_token] = ACTIONS(901), + [aux_sym_insert_token1] = ACTIONS(903), + [aux_sym_delete_token1] = ACTIONS(905), + [aux_sym_highlight_token1] = ACTIONS(907), + [aux_sym_edit_comment_token1] = ACTIONS(909), + [anon_sym_CARET_LBRACK] = ACTIONS(911), + [anon_sym_LBRACK_CARET] = ACTIONS(913), + [sym_uri_autolink] = ACTIONS(887), + [sym_email_autolink] = ACTIONS(887), + [sym__whitespace_ge_2] = ACTIONS(915), + [aux_sym__whitespace_token1] = ACTIONS(917), + [sym__word_no_digit] = ACTIONS(919), + [sym__digits] = ACTIONS(919), + [anon_sym_DASH_DASH] = ACTIONS(921), + [anon_sym_DASH_DASH_DASH] = ACTIONS(919), + [anon_sym_DOT_DOT_DOT] = ACTIONS(919), + [sym__code_span_start] = ACTIONS(923), + [sym__emphasis_open_star] = ACTIONS(3207), + [sym__emphasis_open_underscore] = ACTIONS(3209), + [sym__emphasis_close_star] = ACTIONS(3344), + [sym__strikeout_open] = ACTIONS(931), + [sym__latex_span_start] = ACTIONS(933), + [sym__single_quote_open] = ACTIONS(935), + [sym__double_quote_open] = ACTIONS(937), + [sym__superscript_open] = ACTIONS(939), + [sym__subscript_open] = ACTIONS(941), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(943), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(945), + [sym__cite_author_in_text] = ACTIONS(947), + [sym__cite_suppress_author] = ACTIONS(949), + [sym__shortcode_open_escaped] = ACTIONS(951), + [sym__shortcode_open] = ACTIONS(953), + [sym__unclosed_span] = ACTIONS(887), }, [STATE(343)] = { - [sym__qmd_attribute] = STATE(836), - [sym_raw_attribute] = STATE(836), - [sym_commonmark_attribute] = STATE(836), - [sym_language_attribute] = STATE(836), - [sym__backslash_escape] = ACTIONS(3667), - [sym_entity_reference] = ACTIONS(3667), - [sym_numeric_character_reference] = ACTIONS(3667), - [anon_sym_LT] = ACTIONS(3669), - [anon_sym_GT] = ACTIONS(3667), - [anon_sym_BANG] = ACTIONS(3667), - [anon_sym_DQUOTE] = ACTIONS(3667), - [anon_sym_POUND] = ACTIONS(3667), - [anon_sym_DOLLAR] = ACTIONS(3667), - [anon_sym_PERCENT] = ACTIONS(3667), - [anon_sym_AMP] = ACTIONS(3669), - [anon_sym_SQUOTE] = ACTIONS(3667), - [anon_sym_STAR] = ACTIONS(3667), - [anon_sym_PLUS] = ACTIONS(3667), - [anon_sym_COMMA] = ACTIONS(3667), - [anon_sym_DASH] = ACTIONS(3669), - [anon_sym_DOT] = ACTIONS(3669), - [anon_sym_SLASH] = ACTIONS(3667), - [anon_sym_COLON] = ACTIONS(3667), - [anon_sym_SEMI] = ACTIONS(3667), - [anon_sym_EQ] = ACTIONS(3667), - [anon_sym_QMARK] = ACTIONS(3667), - [anon_sym_LBRACK] = ACTIONS(3669), - [anon_sym_BSLASH] = ACTIONS(3669), - [anon_sym_CARET] = ACTIONS(3669), - [anon_sym__] = ACTIONS(3667), - [anon_sym_BQUOTE] = ACTIONS(3667), - [anon_sym_LBRACE] = ACTIONS(3709), - [anon_sym_PIPE] = ACTIONS(3667), - [anon_sym_TILDE] = ACTIONS(3667), - [anon_sym_LPAREN] = ACTIONS(3667), - [anon_sym_RPAREN] = ACTIONS(3667), - [sym__newline_token] = ACTIONS(3667), - [anon_sym_CARET_LBRACK] = ACTIONS(3667), - [anon_sym_LBRACK_CARET] = ACTIONS(3667), - [sym_uri_autolink] = ACTIONS(3667), - [sym_email_autolink] = ACTIONS(3667), - [sym__whitespace_ge_2] = ACTIONS(3667), - [aux_sym__whitespace_token1] = ACTIONS(3669), - [sym__word_no_digit] = ACTIONS(3667), - [sym__digits] = ACTIONS(3667), - [anon_sym_DASH_DASH] = ACTIONS(3669), - [anon_sym_DASH_DASH_DASH] = ACTIONS(3667), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3667), - [sym__code_span_start] = ACTIONS(3667), - [sym__emphasis_open_star] = ACTIONS(3667), - [sym__emphasis_open_underscore] = ACTIONS(3667), - [sym__emphasis_close_star] = ACTIONS(3667), - [sym__strikeout_open] = ACTIONS(3667), - [sym__latex_span_start] = ACTIONS(3667), - [sym__single_quote_open] = ACTIONS(3667), - [sym__double_quote_open] = ACTIONS(3667), - [sym__superscript_open] = ACTIONS(3667), - [sym__subscript_open] = ACTIONS(3667), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3667), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3667), - [sym__cite_author_in_text] = ACTIONS(3667), - [sym__cite_suppress_author] = ACTIONS(3667), - [sym__shortcode_open_escaped] = ACTIONS(3667), - [sym__shortcode_open] = ACTIONS(3667), - [sym__unclosed_span] = ACTIONS(3667), + [sym_backslash_escape] = STATE(373), + [sym_commonmark_attribute] = STATE(373), + [sym_code_span] = STATE(373), + [sym_latex_span] = STATE(373), + [sym_insert] = STATE(373), + [sym_delete] = STATE(373), + [sym_highlight] = STATE(373), + [sym_edit_comment] = STATE(373), + [sym_superscript] = STATE(373), + [sym_subscript] = STATE(373), + [sym_strikeout] = STATE(373), + [sym_quoted_span] = STATE(373), + [sym_inline_note] = STATE(373), + [sym_citation] = STATE(373), + [sym_shortcode_escaped] = STATE(373), + [sym_shortcode] = STATE(373), + [sym_note_reference] = STATE(373), + [sym_image] = STATE(373), + [sym__image_inline_link] = STATE(1265), + [sym__image_description] = STATE(2331), + [sym__image_description_non_empty] = STATE(2331), + [sym_hard_line_break] = STATE(373), + [sym__whitespace] = STATE(1262), + [sym__word] = STATE(1262), + [sym__soft_line_break] = STATE(1267), + [sym__inline_base] = STATE(343), + [sym__text_base] = STATE(373), + [sym__inline_element_no_star_no_link] = STATE(343), + [aux_sym__inline_no_star_no_link] = STATE(343), + [sym__emphasis_star_no_link] = STATE(1441), + [sym__strong_emphasis_star_no_link] = STATE(343), + [sym__emphasis_underscore_no_link] = STATE(1441), + [sym__strong_emphasis_underscore_no_link] = STATE(343), + [aux_sym__inline_base_repeat1] = STATE(373), + [sym__backslash_escape] = ACTIONS(3346), + [sym_entity_reference] = ACTIONS(3349), + [sym_numeric_character_reference] = ACTIONS(3349), + [anon_sym_LT] = ACTIONS(3352), + [anon_sym_GT] = ACTIONS(3355), + [anon_sym_BANG] = ACTIONS(3358), + [anon_sym_DQUOTE] = ACTIONS(3355), + [anon_sym_POUND] = ACTIONS(3355), + [anon_sym_DOLLAR] = ACTIONS(3355), + [anon_sym_PERCENT] = ACTIONS(3355), + [anon_sym_AMP] = ACTIONS(3352), + [anon_sym_SQUOTE] = ACTIONS(3355), + [anon_sym_STAR] = ACTIONS(3355), + [anon_sym_PLUS] = ACTIONS(3355), + [anon_sym_COMMA] = ACTIONS(3355), + [anon_sym_DASH] = ACTIONS(3352), + [anon_sym_DOT] = ACTIONS(3352), + [anon_sym_SLASH] = ACTIONS(3355), + [anon_sym_COLON] = ACTIONS(3355), + [anon_sym_SEMI] = ACTIONS(3355), + [anon_sym_EQ] = ACTIONS(3355), + [anon_sym_QMARK] = ACTIONS(3355), + [anon_sym_BSLASH] = ACTIONS(3361), + [anon_sym_CARET] = ACTIONS(3352), + [anon_sym__] = ACTIONS(3355), + [anon_sym_BQUOTE] = ACTIONS(3355), + [anon_sym_LBRACE] = ACTIONS(3364), + [anon_sym_PIPE] = ACTIONS(3355), + [anon_sym_TILDE] = ACTIONS(3355), + [anon_sym_LPAREN] = ACTIONS(3355), + [anon_sym_RPAREN] = ACTIONS(3355), + [sym__newline_token] = ACTIONS(3367), + [aux_sym_insert_token1] = ACTIONS(3370), + [aux_sym_delete_token1] = ACTIONS(3373), + [aux_sym_highlight_token1] = ACTIONS(3376), + [aux_sym_edit_comment_token1] = ACTIONS(3379), + [anon_sym_CARET_LBRACK] = ACTIONS(3382), + [anon_sym_LBRACK_CARET] = ACTIONS(3385), + [sym_uri_autolink] = ACTIONS(3349), + [sym_email_autolink] = ACTIONS(3349), + [sym__whitespace_ge_2] = ACTIONS(3388), + [aux_sym__whitespace_token1] = ACTIONS(3391), + [sym__word_no_digit] = ACTIONS(3394), + [sym__digits] = ACTIONS(3394), + [anon_sym_DASH_DASH] = ACTIONS(3397), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3394), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3394), + [sym__code_span_start] = ACTIONS(3400), + [sym__emphasis_open_star] = ACTIONS(3403), + [sym__emphasis_open_underscore] = ACTIONS(3406), + [sym__emphasis_close_star] = ACTIONS(3409), + [sym__strikeout_open] = ACTIONS(3411), + [sym__latex_span_start] = ACTIONS(3414), + [sym__single_quote_open] = ACTIONS(3417), + [sym__double_quote_open] = ACTIONS(3420), + [sym__superscript_open] = ACTIONS(3423), + [sym__subscript_open] = ACTIONS(3426), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3429), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3432), + [sym__cite_author_in_text] = ACTIONS(3435), + [sym__cite_suppress_author] = ACTIONS(3438), + [sym__shortcode_open_escaped] = ACTIONS(3441), + [sym__shortcode_open] = ACTIONS(3444), + [sym__unclosed_span] = ACTIONS(3349), }, [STATE(344)] = { - [sym__qmd_attribute] = STATE(847), - [sym_raw_attribute] = STATE(847), - [sym_commonmark_attribute] = STATE(847), - [sym_language_attribute] = STATE(847), - [sym__backslash_escape] = ACTIONS(3671), - [sym_entity_reference] = ACTIONS(3671), - [sym_numeric_character_reference] = ACTIONS(3671), - [anon_sym_LT] = ACTIONS(3673), - [anon_sym_GT] = ACTIONS(3671), - [anon_sym_BANG] = ACTIONS(3671), - [anon_sym_DQUOTE] = ACTIONS(3671), - [anon_sym_POUND] = ACTIONS(3671), - [anon_sym_DOLLAR] = ACTIONS(3671), - [anon_sym_PERCENT] = ACTIONS(3671), - [anon_sym_AMP] = ACTIONS(3673), - [anon_sym_SQUOTE] = ACTIONS(3671), - [anon_sym_STAR] = ACTIONS(3671), - [anon_sym_PLUS] = ACTIONS(3671), - [anon_sym_COMMA] = ACTIONS(3671), - [anon_sym_DASH] = ACTIONS(3673), - [anon_sym_DOT] = ACTIONS(3673), - [anon_sym_SLASH] = ACTIONS(3671), - [anon_sym_COLON] = ACTIONS(3671), - [anon_sym_SEMI] = ACTIONS(3671), - [anon_sym_EQ] = ACTIONS(3671), - [anon_sym_QMARK] = ACTIONS(3671), - [anon_sym_LBRACK] = ACTIONS(3673), - [anon_sym_BSLASH] = ACTIONS(3673), - [anon_sym_CARET] = ACTIONS(3673), - [anon_sym__] = ACTIONS(3671), - [anon_sym_BQUOTE] = ACTIONS(3671), - [anon_sym_LBRACE] = ACTIONS(3709), - [anon_sym_PIPE] = ACTIONS(3671), - [anon_sym_TILDE] = ACTIONS(3671), - [anon_sym_LPAREN] = ACTIONS(3671), - [anon_sym_RPAREN] = ACTIONS(3671), - [sym__newline_token] = ACTIONS(3671), - [anon_sym_CARET_LBRACK] = ACTIONS(3671), - [anon_sym_LBRACK_CARET] = ACTIONS(3671), - [sym_uri_autolink] = ACTIONS(3671), - [sym_email_autolink] = ACTIONS(3671), - [sym__whitespace_ge_2] = ACTIONS(3671), - [aux_sym__whitespace_token1] = ACTIONS(3673), - [sym__word_no_digit] = ACTIONS(3671), - [sym__digits] = ACTIONS(3671), - [anon_sym_DASH_DASH] = ACTIONS(3673), - [anon_sym_DASH_DASH_DASH] = ACTIONS(3671), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3671), - [sym__code_span_start] = ACTIONS(3671), - [sym__emphasis_open_star] = ACTIONS(3671), - [sym__emphasis_open_underscore] = ACTIONS(3671), - [sym__emphasis_close_star] = ACTIONS(3671), - [sym__strikeout_open] = ACTIONS(3671), - [sym__latex_span_start] = ACTIONS(3671), - [sym__single_quote_open] = ACTIONS(3671), - [sym__double_quote_open] = ACTIONS(3671), - [sym__superscript_open] = ACTIONS(3671), - [sym__subscript_open] = ACTIONS(3671), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3671), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3671), - [sym__cite_author_in_text] = ACTIONS(3671), - [sym__cite_suppress_author] = ACTIONS(3671), - [sym__shortcode_open_escaped] = ACTIONS(3671), - [sym__shortcode_open] = ACTIONS(3671), - [sym__unclosed_span] = ACTIONS(3671), + [sym_backslash_escape] = STATE(379), + [sym_commonmark_attribute] = STATE(379), + [sym_code_span] = STATE(379), + [sym_latex_span] = STATE(379), + [sym_insert] = STATE(379), + [sym_delete] = STATE(379), + [sym_highlight] = STATE(379), + [sym_edit_comment] = STATE(379), + [sym_superscript] = STATE(379), + [sym_subscript] = STATE(379), + [sym_strikeout] = STATE(379), + [sym_quoted_span] = STATE(379), + [sym_inline_note] = STATE(379), + [sym_citation] = STATE(379), + [sym_shortcode_escaped] = STATE(379), + [sym_shortcode] = STATE(379), + [sym_note_reference] = STATE(379), + [sym_image] = STATE(379), + [sym__image_inline_link] = STATE(1390), + [sym__image_description] = STATE(2363), + [sym__image_description_non_empty] = STATE(2363), + [sym_hard_line_break] = STATE(379), + [sym__whitespace] = STATE(1385), + [sym__word] = STATE(1385), + [sym__soft_line_break] = STATE(1391), + [sym__inline_base] = STATE(345), + [sym__text_base] = STATE(379), + [sym__inline_element_no_underscore_no_link] = STATE(345), + [aux_sym__inline_no_underscore_no_link] = STATE(345), + [sym__emphasis_star_no_link] = STATE(1442), + [sym__strong_emphasis_star_no_link] = STATE(345), + [sym__emphasis_underscore_no_link] = STATE(1442), + [sym__strong_emphasis_underscore_no_link] = STATE(345), + [aux_sym__inline_base_repeat1] = STATE(379), + [sym__backslash_escape] = ACTIONS(1059), + [sym_entity_reference] = ACTIONS(1061), + [sym_numeric_character_reference] = ACTIONS(1061), + [anon_sym_LT] = ACTIONS(1063), + [anon_sym_GT] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1067), + [anon_sym_DQUOTE] = ACTIONS(1065), + [anon_sym_POUND] = ACTIONS(1065), + [anon_sym_DOLLAR] = ACTIONS(1065), + [anon_sym_PERCENT] = ACTIONS(1065), + [anon_sym_AMP] = ACTIONS(1063), + [anon_sym_SQUOTE] = ACTIONS(1065), + [anon_sym_STAR] = ACTIONS(1065), + [anon_sym_PLUS] = ACTIONS(1065), + [anon_sym_COMMA] = ACTIONS(1065), + [anon_sym_DASH] = ACTIONS(1063), + [anon_sym_DOT] = ACTIONS(1063), + [anon_sym_SLASH] = ACTIONS(1065), + [anon_sym_COLON] = ACTIONS(1065), + [anon_sym_SEMI] = ACTIONS(1065), + [anon_sym_EQ] = ACTIONS(1065), + [anon_sym_QMARK] = ACTIONS(1065), + [anon_sym_BSLASH] = ACTIONS(1071), + [anon_sym_CARET] = ACTIONS(1063), + [anon_sym__] = ACTIONS(1065), + [anon_sym_BQUOTE] = ACTIONS(1065), + [anon_sym_LBRACE] = ACTIONS(1073), + [anon_sym_PIPE] = ACTIONS(1065), + [anon_sym_TILDE] = ACTIONS(1065), + [anon_sym_LPAREN] = ACTIONS(1065), + [anon_sym_RPAREN] = ACTIONS(1065), + [sym__newline_token] = ACTIONS(1075), + [aux_sym_insert_token1] = ACTIONS(1077), + [aux_sym_delete_token1] = ACTIONS(1079), + [aux_sym_highlight_token1] = ACTIONS(1081), + [aux_sym_edit_comment_token1] = ACTIONS(1083), + [anon_sym_CARET_LBRACK] = ACTIONS(1085), + [anon_sym_LBRACK_CARET] = ACTIONS(1087), + [sym_uri_autolink] = ACTIONS(1061), + [sym_email_autolink] = ACTIONS(1061), + [sym__whitespace_ge_2] = ACTIONS(1089), + [aux_sym__whitespace_token1] = ACTIONS(1091), + [sym__word_no_digit] = ACTIONS(1093), + [sym__digits] = ACTIONS(1093), + [anon_sym_DASH_DASH] = ACTIONS(1095), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1093), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1093), + [sym__code_span_start] = ACTIONS(1097), + [sym__emphasis_open_star] = ACTIONS(3193), + [sym__emphasis_open_underscore] = ACTIONS(3195), + [sym__emphasis_close_underscore] = ACTIONS(3447), + [sym__strikeout_open] = ACTIONS(1105), + [sym__latex_span_start] = ACTIONS(1107), + [sym__single_quote_open] = ACTIONS(1109), + [sym__double_quote_open] = ACTIONS(1111), + [sym__superscript_open] = ACTIONS(1113), + [sym__subscript_open] = ACTIONS(1115), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1117), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1119), + [sym__cite_author_in_text] = ACTIONS(1121), + [sym__cite_suppress_author] = ACTIONS(1123), + [sym__shortcode_open_escaped] = ACTIONS(1125), + [sym__shortcode_open] = ACTIONS(1127), + [sym__unclosed_span] = ACTIONS(1061), }, [STATE(345)] = { - [sym__qmd_attribute] = STATE(780), - [sym_raw_attribute] = STATE(780), - [sym_commonmark_attribute] = STATE(780), - [sym_language_attribute] = STATE(780), - [sym__backslash_escape] = ACTIONS(3671), - [sym_entity_reference] = ACTIONS(3671), - [sym_numeric_character_reference] = ACTIONS(3671), - [anon_sym_LT] = ACTIONS(3673), - [anon_sym_GT] = ACTIONS(3671), - [anon_sym_BANG] = ACTIONS(3671), - [anon_sym_DQUOTE] = ACTIONS(3671), - [anon_sym_POUND] = ACTIONS(3671), - [anon_sym_DOLLAR] = ACTIONS(3671), - [anon_sym_PERCENT] = ACTIONS(3671), - [anon_sym_AMP] = ACTIONS(3673), - [anon_sym_SQUOTE] = ACTIONS(3671), - [anon_sym_STAR] = ACTIONS(3671), - [anon_sym_PLUS] = ACTIONS(3671), - [anon_sym_COMMA] = ACTIONS(3671), - [anon_sym_DASH] = ACTIONS(3673), - [anon_sym_DOT] = ACTIONS(3673), - [anon_sym_SLASH] = ACTIONS(3671), - [anon_sym_COLON] = ACTIONS(3671), - [anon_sym_SEMI] = ACTIONS(3671), - [anon_sym_EQ] = ACTIONS(3671), - [anon_sym_QMARK] = ACTIONS(3671), - [anon_sym_LBRACK] = ACTIONS(3673), - [anon_sym_BSLASH] = ACTIONS(3673), - [anon_sym_CARET] = ACTIONS(3673), - [anon_sym__] = ACTIONS(3671), - [anon_sym_BQUOTE] = ACTIONS(3671), - [anon_sym_LBRACE] = ACTIONS(3701), - [anon_sym_PIPE] = ACTIONS(3671), - [anon_sym_TILDE] = ACTIONS(3671), - [anon_sym_LPAREN] = ACTIONS(3671), - [anon_sym_RPAREN] = ACTIONS(3671), - [sym__newline_token] = ACTIONS(3671), - [anon_sym_CARET_LBRACK] = ACTIONS(3671), - [anon_sym_LBRACK_CARET] = ACTIONS(3671), - [sym_uri_autolink] = ACTIONS(3671), - [sym_email_autolink] = ACTIONS(3671), - [sym__whitespace_ge_2] = ACTIONS(3671), - [aux_sym__whitespace_token1] = ACTIONS(3673), - [sym__word_no_digit] = ACTIONS(3671), - [sym__digits] = ACTIONS(3671), - [anon_sym_DASH_DASH] = ACTIONS(3673), - [anon_sym_DASH_DASH_DASH] = ACTIONS(3671), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3671), - [sym__code_span_start] = ACTIONS(3671), - [sym__emphasis_open_star] = ACTIONS(3671), - [sym__emphasis_open_underscore] = ACTIONS(3671), - [sym__strikeout_open] = ACTIONS(3671), - [sym__latex_span_start] = ACTIONS(3671), - [sym__single_quote_open] = ACTIONS(3671), - [sym__double_quote_open] = ACTIONS(3671), - [sym__superscript_open] = ACTIONS(3671), - [sym__superscript_close] = ACTIONS(3671), - [sym__subscript_open] = ACTIONS(3671), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3671), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3671), - [sym__cite_author_in_text] = ACTIONS(3671), - [sym__cite_suppress_author] = ACTIONS(3671), - [sym__shortcode_open_escaped] = ACTIONS(3671), - [sym__shortcode_open] = ACTIONS(3671), - [sym__unclosed_span] = ACTIONS(3671), + [sym_backslash_escape] = STATE(379), + [sym_commonmark_attribute] = STATE(379), + [sym_code_span] = STATE(379), + [sym_latex_span] = STATE(379), + [sym_insert] = STATE(379), + [sym_delete] = STATE(379), + [sym_highlight] = STATE(379), + [sym_edit_comment] = STATE(379), + [sym_superscript] = STATE(379), + [sym_subscript] = STATE(379), + [sym_strikeout] = STATE(379), + [sym_quoted_span] = STATE(379), + [sym_inline_note] = STATE(379), + [sym_citation] = STATE(379), + [sym_shortcode_escaped] = STATE(379), + [sym_shortcode] = STATE(379), + [sym_note_reference] = STATE(379), + [sym_image] = STATE(379), + [sym__image_inline_link] = STATE(1390), + [sym__image_description] = STATE(2363), + [sym__image_description_non_empty] = STATE(2363), + [sym_hard_line_break] = STATE(379), + [sym__whitespace] = STATE(1385), + [sym__word] = STATE(1385), + [sym__soft_line_break] = STATE(1391), + [sym__inline_base] = STATE(345), + [sym__text_base] = STATE(379), + [sym__inline_element_no_underscore_no_link] = STATE(345), + [aux_sym__inline_no_underscore_no_link] = STATE(345), + [sym__emphasis_star_no_link] = STATE(1442), + [sym__strong_emphasis_star_no_link] = STATE(345), + [sym__emphasis_underscore_no_link] = STATE(1442), + [sym__strong_emphasis_underscore_no_link] = STATE(345), + [aux_sym__inline_base_repeat1] = STATE(379), + [sym__backslash_escape] = ACTIONS(3449), + [sym_entity_reference] = ACTIONS(3452), + [sym_numeric_character_reference] = ACTIONS(3452), + [anon_sym_LT] = ACTIONS(3455), + [anon_sym_GT] = ACTIONS(3458), + [anon_sym_BANG] = ACTIONS(3461), + [anon_sym_DQUOTE] = ACTIONS(3458), + [anon_sym_POUND] = ACTIONS(3458), + [anon_sym_DOLLAR] = ACTIONS(3458), + [anon_sym_PERCENT] = ACTIONS(3458), + [anon_sym_AMP] = ACTIONS(3455), + [anon_sym_SQUOTE] = ACTIONS(3458), + [anon_sym_STAR] = ACTIONS(3458), + [anon_sym_PLUS] = ACTIONS(3458), + [anon_sym_COMMA] = ACTIONS(3458), + [anon_sym_DASH] = ACTIONS(3455), + [anon_sym_DOT] = ACTIONS(3455), + [anon_sym_SLASH] = ACTIONS(3458), + [anon_sym_COLON] = ACTIONS(3458), + [anon_sym_SEMI] = ACTIONS(3458), + [anon_sym_EQ] = ACTIONS(3458), + [anon_sym_QMARK] = ACTIONS(3458), + [anon_sym_BSLASH] = ACTIONS(3464), + [anon_sym_CARET] = ACTIONS(3455), + [anon_sym__] = ACTIONS(3458), + [anon_sym_BQUOTE] = ACTIONS(3458), + [anon_sym_LBRACE] = ACTIONS(3467), + [anon_sym_PIPE] = ACTIONS(3458), + [anon_sym_TILDE] = ACTIONS(3458), + [anon_sym_LPAREN] = ACTIONS(3458), + [anon_sym_RPAREN] = ACTIONS(3458), + [sym__newline_token] = ACTIONS(3470), + [aux_sym_insert_token1] = ACTIONS(3473), + [aux_sym_delete_token1] = ACTIONS(3476), + [aux_sym_highlight_token1] = ACTIONS(3479), + [aux_sym_edit_comment_token1] = ACTIONS(3482), + [anon_sym_CARET_LBRACK] = ACTIONS(3485), + [anon_sym_LBRACK_CARET] = ACTIONS(3488), + [sym_uri_autolink] = ACTIONS(3452), + [sym_email_autolink] = ACTIONS(3452), + [sym__whitespace_ge_2] = ACTIONS(3491), + [aux_sym__whitespace_token1] = ACTIONS(3494), + [sym__word_no_digit] = ACTIONS(3497), + [sym__digits] = ACTIONS(3497), + [anon_sym_DASH_DASH] = ACTIONS(3500), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3497), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3497), + [sym__code_span_start] = ACTIONS(3503), + [sym__emphasis_open_star] = ACTIONS(3506), + [sym__emphasis_open_underscore] = ACTIONS(3509), + [sym__emphasis_close_underscore] = ACTIONS(3512), + [sym__strikeout_open] = ACTIONS(3514), + [sym__latex_span_start] = ACTIONS(3517), + [sym__single_quote_open] = ACTIONS(3520), + [sym__double_quote_open] = ACTIONS(3523), + [sym__superscript_open] = ACTIONS(3526), + [sym__subscript_open] = ACTIONS(3529), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3532), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3535), + [sym__cite_author_in_text] = ACTIONS(3538), + [sym__cite_suppress_author] = ACTIONS(3541), + [sym__shortcode_open_escaped] = ACTIONS(3544), + [sym__shortcode_open] = ACTIONS(3547), + [sym__unclosed_span] = ACTIONS(3452), }, [STATE(346)] = { - [sym__qmd_attribute] = STATE(856), - [sym_raw_attribute] = STATE(856), - [sym_commonmark_attribute] = STATE(856), - [sym_language_attribute] = STATE(856), - [sym__backslash_escape] = ACTIONS(3675), - [sym_entity_reference] = ACTIONS(3675), - [sym_numeric_character_reference] = ACTIONS(3675), - [anon_sym_LT] = ACTIONS(3677), - [anon_sym_GT] = ACTIONS(3675), - [anon_sym_BANG] = ACTIONS(3675), - [anon_sym_DQUOTE] = ACTIONS(3675), - [anon_sym_POUND] = ACTIONS(3675), - [anon_sym_DOLLAR] = ACTIONS(3675), - [anon_sym_PERCENT] = ACTIONS(3675), - [anon_sym_AMP] = ACTIONS(3677), - [anon_sym_SQUOTE] = ACTIONS(3675), - [anon_sym_STAR] = ACTIONS(3675), - [anon_sym_PLUS] = ACTIONS(3675), - [anon_sym_COMMA] = ACTIONS(3675), - [anon_sym_DASH] = ACTIONS(3677), - [anon_sym_DOT] = ACTIONS(3677), - [anon_sym_SLASH] = ACTIONS(3675), - [anon_sym_COLON] = ACTIONS(3675), - [anon_sym_SEMI] = ACTIONS(3675), - [anon_sym_EQ] = ACTIONS(3675), - [anon_sym_QMARK] = ACTIONS(3675), - [anon_sym_LBRACK] = ACTIONS(3677), - [anon_sym_BSLASH] = ACTIONS(3677), - [anon_sym_CARET] = ACTIONS(3677), - [anon_sym__] = ACTIONS(3675), - [anon_sym_BQUOTE] = ACTIONS(3675), - [anon_sym_LBRACE] = ACTIONS(3709), - [anon_sym_PIPE] = ACTIONS(3675), - [anon_sym_TILDE] = ACTIONS(3675), - [anon_sym_LPAREN] = ACTIONS(3675), - [anon_sym_RPAREN] = ACTIONS(3675), - [sym__newline_token] = ACTIONS(3675), - [anon_sym_CARET_LBRACK] = ACTIONS(3675), - [anon_sym_LBRACK_CARET] = ACTIONS(3675), - [sym_uri_autolink] = ACTIONS(3675), - [sym_email_autolink] = ACTIONS(3675), - [sym__whitespace_ge_2] = ACTIONS(3675), - [aux_sym__whitespace_token1] = ACTIONS(3677), - [sym__word_no_digit] = ACTIONS(3675), - [sym__digits] = ACTIONS(3675), - [anon_sym_DASH_DASH] = ACTIONS(3677), - [anon_sym_DASH_DASH_DASH] = ACTIONS(3675), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3675), - [sym__code_span_start] = ACTIONS(3675), - [sym__emphasis_open_star] = ACTIONS(3675), - [sym__emphasis_open_underscore] = ACTIONS(3675), - [sym__emphasis_close_star] = ACTIONS(3675), - [sym__strikeout_open] = ACTIONS(3675), - [sym__latex_span_start] = ACTIONS(3675), - [sym__single_quote_open] = ACTIONS(3675), - [sym__double_quote_open] = ACTIONS(3675), - [sym__superscript_open] = ACTIONS(3675), - [sym__subscript_open] = ACTIONS(3675), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3675), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3675), - [sym__cite_author_in_text] = ACTIONS(3675), - [sym__cite_suppress_author] = ACTIONS(3675), - [sym__shortcode_open_escaped] = ACTIONS(3675), - [sym__shortcode_open] = ACTIONS(3675), - [sym__unclosed_span] = ACTIONS(3675), + [sym_backslash_escape] = STATE(370), + [sym_commonmark_attribute] = STATE(370), + [sym_code_span] = STATE(370), + [sym_latex_span] = STATE(370), + [sym_insert] = STATE(370), + [sym_delete] = STATE(370), + [sym_highlight] = STATE(370), + [sym_edit_comment] = STATE(370), + [sym_superscript] = STATE(370), + [sym_subscript] = STATE(370), + [sym_strikeout] = STATE(370), + [sym_quoted_span] = STATE(370), + [sym_inline_note] = STATE(370), + [sym_citation] = STATE(370), + [sym_shortcode_escaped] = STATE(370), + [sym_shortcode] = STATE(370), + [sym_note_reference] = STATE(370), + [sym_image] = STATE(370), + [sym__image_inline_link] = STATE(923), + [sym__image_description] = STATE(2342), + [sym__image_description_non_empty] = STATE(2342), + [sym_hard_line_break] = STATE(370), + [sym__whitespace] = STATE(920), + [sym__word] = STATE(920), + [sym__soft_line_break] = STATE(924), + [sym__inline_base] = STATE(1451), + [sym__text_base] = STATE(370), + [sym__inline_element_no_link] = STATE(1451), + [aux_sym__inline_no_link] = STATE(336), + [sym__emphasis_star_no_link] = STATE(1452), + [sym__strong_emphasis_star_no_link] = STATE(1451), + [sym__emphasis_underscore_no_link] = STATE(1452), + [sym__strong_emphasis_underscore_no_link] = STATE(1451), + [aux_sym__inline_base_repeat1] = STATE(370), + [sym__backslash_escape] = ACTIONS(73), + [sym_entity_reference] = ACTIONS(75), + [sym_numeric_character_reference] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_BANG] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_POUND] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(79), + [anon_sym_PERCENT] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_STAR] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_COMMA] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_DOT] = ACTIONS(77), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_COLON] = ACTIONS(79), + [anon_sym_SEMI] = ACTIONS(79), + [anon_sym_EQ] = ACTIONS(79), + [anon_sym_QMARK] = ACTIONS(79), + [anon_sym_BSLASH] = ACTIONS(85), + [anon_sym_RBRACK] = ACTIONS(3550), + [anon_sym_CARET] = ACTIONS(77), + [anon_sym__] = ACTIONS(79), + [anon_sym_BQUOTE] = ACTIONS(79), + [anon_sym_LBRACE] = ACTIONS(89), + [anon_sym_PIPE] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(79), + [anon_sym_RPAREN] = ACTIONS(79), + [sym__newline_token] = ACTIONS(91), + [aux_sym_insert_token1] = ACTIONS(93), + [aux_sym_delete_token1] = ACTIONS(95), + [aux_sym_highlight_token1] = ACTIONS(97), + [aux_sym_edit_comment_token1] = ACTIONS(99), + [anon_sym_CARET_LBRACK] = ACTIONS(101), + [anon_sym_LBRACK_CARET] = ACTIONS(103), + [sym_uri_autolink] = ACTIONS(75), + [sym_email_autolink] = ACTIONS(75), + [sym__whitespace_ge_2] = ACTIONS(105), + [aux_sym__whitespace_token1] = ACTIONS(107), + [sym__word_no_digit] = ACTIONS(109), + [sym__digits] = ACTIONS(109), + [anon_sym_DASH_DASH] = ACTIONS(111), + [anon_sym_DASH_DASH_DASH] = ACTIONS(109), + [anon_sym_DOT_DOT_DOT] = ACTIONS(109), + [sym__code_span_start] = ACTIONS(113), + [sym__emphasis_open_star] = ACTIONS(3201), + [sym__emphasis_open_underscore] = ACTIONS(3203), + [sym__strikeout_open] = ACTIONS(121), + [sym__latex_span_start] = ACTIONS(123), + [sym__single_quote_open] = ACTIONS(125), + [sym__double_quote_open] = ACTIONS(127), + [sym__superscript_open] = ACTIONS(129), + [sym__subscript_open] = ACTIONS(131), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(133), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(135), + [sym__cite_author_in_text] = ACTIONS(137), + [sym__cite_suppress_author] = ACTIONS(139), + [sym__shortcode_open_escaped] = ACTIONS(141), + [sym__shortcode_open] = ACTIONS(143), + [sym__unclosed_span] = ACTIONS(75), }, [STATE(347)] = { - [sym__qmd_attribute] = STATE(864), - [sym_raw_attribute] = STATE(864), - [sym_commonmark_attribute] = STATE(864), - [sym_language_attribute] = STATE(864), - [sym__backslash_escape] = ACTIONS(3679), - [sym_entity_reference] = ACTIONS(3679), - [sym_numeric_character_reference] = ACTIONS(3679), - [anon_sym_LT] = ACTIONS(3681), - [anon_sym_GT] = ACTIONS(3679), - [anon_sym_BANG] = ACTIONS(3679), - [anon_sym_DQUOTE] = ACTIONS(3679), - [anon_sym_POUND] = ACTIONS(3679), - [anon_sym_DOLLAR] = ACTIONS(3679), - [anon_sym_PERCENT] = ACTIONS(3679), - [anon_sym_AMP] = ACTIONS(3681), - [anon_sym_SQUOTE] = ACTIONS(3679), - [anon_sym_STAR] = ACTIONS(3679), - [anon_sym_PLUS] = ACTIONS(3679), - [anon_sym_COMMA] = ACTIONS(3679), - [anon_sym_DASH] = ACTIONS(3681), - [anon_sym_DOT] = ACTIONS(3681), - [anon_sym_SLASH] = ACTIONS(3679), - [anon_sym_COLON] = ACTIONS(3679), - [anon_sym_SEMI] = ACTIONS(3679), - [anon_sym_EQ] = ACTIONS(3679), - [anon_sym_QMARK] = ACTIONS(3679), - [anon_sym_LBRACK] = ACTIONS(3681), - [anon_sym_BSLASH] = ACTIONS(3681), - [anon_sym_CARET] = ACTIONS(3681), - [anon_sym__] = ACTIONS(3679), - [anon_sym_BQUOTE] = ACTIONS(3679), - [anon_sym_LBRACE] = ACTIONS(3709), - [anon_sym_PIPE] = ACTIONS(3679), - [anon_sym_TILDE] = ACTIONS(3679), - [anon_sym_LPAREN] = ACTIONS(3679), - [anon_sym_RPAREN] = ACTIONS(3679), - [sym__newline_token] = ACTIONS(3679), - [anon_sym_CARET_LBRACK] = ACTIONS(3679), - [anon_sym_LBRACK_CARET] = ACTIONS(3679), - [sym_uri_autolink] = ACTIONS(3679), - [sym_email_autolink] = ACTIONS(3679), - [sym__whitespace_ge_2] = ACTIONS(3679), - [aux_sym__whitespace_token1] = ACTIONS(3681), - [sym__word_no_digit] = ACTIONS(3679), - [sym__digits] = ACTIONS(3679), - [anon_sym_DASH_DASH] = ACTIONS(3681), - [anon_sym_DASH_DASH_DASH] = ACTIONS(3679), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3679), - [sym__code_span_start] = ACTIONS(3679), - [sym__emphasis_open_star] = ACTIONS(3679), - [sym__emphasis_open_underscore] = ACTIONS(3679), - [sym__emphasis_close_star] = ACTIONS(3679), - [sym__strikeout_open] = ACTIONS(3679), - [sym__latex_span_start] = ACTIONS(3679), - [sym__single_quote_open] = ACTIONS(3679), - [sym__double_quote_open] = ACTIONS(3679), - [sym__superscript_open] = ACTIONS(3679), - [sym__subscript_open] = ACTIONS(3679), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3679), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3679), - [sym__cite_author_in_text] = ACTIONS(3679), - [sym__cite_suppress_author] = ACTIONS(3679), - [sym__shortcode_open_escaped] = ACTIONS(3679), - [sym__shortcode_open] = ACTIONS(3679), - [sym__unclosed_span] = ACTIONS(3679), + [sym_backslash_escape] = STATE(370), + [sym_commonmark_attribute] = STATE(370), + [sym_code_span] = STATE(370), + [sym_latex_span] = STATE(370), + [sym_insert] = STATE(370), + [sym_delete] = STATE(370), + [sym_highlight] = STATE(370), + [sym_edit_comment] = STATE(370), + [sym_superscript] = STATE(370), + [sym_subscript] = STATE(370), + [sym_strikeout] = STATE(370), + [sym_quoted_span] = STATE(370), + [sym_inline_note] = STATE(370), + [sym_citation] = STATE(370), + [sym_shortcode_escaped] = STATE(370), + [sym_shortcode] = STATE(370), + [sym_note_reference] = STATE(370), + [sym_image] = STATE(370), + [sym__image_inline_link] = STATE(923), + [sym__image_description] = STATE(2342), + [sym__image_description_non_empty] = STATE(2342), + [sym_hard_line_break] = STATE(370), + [sym__whitespace] = STATE(920), + [sym__word] = STATE(920), + [sym__soft_line_break] = STATE(924), + [sym__inline_base] = STATE(1451), + [sym__text_base] = STATE(370), + [sym__inline_element_no_link] = STATE(1451), + [aux_sym__inline_no_link] = STATE(348), + [sym__emphasis_star_no_link] = STATE(1452), + [sym__strong_emphasis_star_no_link] = STATE(1451), + [sym__emphasis_underscore_no_link] = STATE(1452), + [sym__strong_emphasis_underscore_no_link] = STATE(1451), + [aux_sym__inline_base_repeat1] = STATE(370), + [sym__backslash_escape] = ACTIONS(73), + [sym_entity_reference] = ACTIONS(75), + [sym_numeric_character_reference] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_BANG] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_POUND] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(79), + [anon_sym_PERCENT] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_STAR] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_COMMA] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_DOT] = ACTIONS(77), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_COLON] = ACTIONS(79), + [anon_sym_SEMI] = ACTIONS(79), + [anon_sym_EQ] = ACTIONS(79), + [anon_sym_QMARK] = ACTIONS(79), + [anon_sym_BSLASH] = ACTIONS(85), + [anon_sym_RBRACK] = ACTIONS(3552), + [anon_sym_CARET] = ACTIONS(77), + [anon_sym__] = ACTIONS(79), + [anon_sym_BQUOTE] = ACTIONS(79), + [anon_sym_LBRACE] = ACTIONS(89), + [anon_sym_PIPE] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(79), + [anon_sym_RPAREN] = ACTIONS(79), + [sym__newline_token] = ACTIONS(91), + [aux_sym_insert_token1] = ACTIONS(93), + [aux_sym_delete_token1] = ACTIONS(95), + [aux_sym_highlight_token1] = ACTIONS(97), + [aux_sym_edit_comment_token1] = ACTIONS(99), + [anon_sym_CARET_LBRACK] = ACTIONS(101), + [anon_sym_LBRACK_CARET] = ACTIONS(103), + [sym_uri_autolink] = ACTIONS(75), + [sym_email_autolink] = ACTIONS(75), + [sym__whitespace_ge_2] = ACTIONS(105), + [aux_sym__whitespace_token1] = ACTIONS(107), + [sym__word_no_digit] = ACTIONS(109), + [sym__digits] = ACTIONS(109), + [anon_sym_DASH_DASH] = ACTIONS(111), + [anon_sym_DASH_DASH_DASH] = ACTIONS(109), + [anon_sym_DOT_DOT_DOT] = ACTIONS(109), + [sym__code_span_start] = ACTIONS(113), + [sym__emphasis_open_star] = ACTIONS(3201), + [sym__emphasis_open_underscore] = ACTIONS(3203), + [sym__strikeout_open] = ACTIONS(121), + [sym__latex_span_start] = ACTIONS(123), + [sym__single_quote_open] = ACTIONS(125), + [sym__double_quote_open] = ACTIONS(127), + [sym__superscript_open] = ACTIONS(129), + [sym__subscript_open] = ACTIONS(131), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(133), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(135), + [sym__cite_author_in_text] = ACTIONS(137), + [sym__cite_suppress_author] = ACTIONS(139), + [sym__shortcode_open_escaped] = ACTIONS(141), + [sym__shortcode_open] = ACTIONS(143), + [sym__unclosed_span] = ACTIONS(75), }, [STATE(348)] = { - [sym__qmd_attribute] = STATE(870), - [sym_raw_attribute] = STATE(870), - [sym_commonmark_attribute] = STATE(870), - [sym_language_attribute] = STATE(870), - [sym__backslash_escape] = ACTIONS(3683), - [sym_entity_reference] = ACTIONS(3683), - [sym_numeric_character_reference] = ACTIONS(3683), - [anon_sym_LT] = ACTIONS(3685), - [anon_sym_GT] = ACTIONS(3683), - [anon_sym_BANG] = ACTIONS(3683), - [anon_sym_DQUOTE] = ACTIONS(3683), - [anon_sym_POUND] = ACTIONS(3683), - [anon_sym_DOLLAR] = ACTIONS(3683), - [anon_sym_PERCENT] = ACTIONS(3683), - [anon_sym_AMP] = ACTIONS(3685), - [anon_sym_SQUOTE] = ACTIONS(3683), - [anon_sym_STAR] = ACTIONS(3683), - [anon_sym_PLUS] = ACTIONS(3683), - [anon_sym_COMMA] = ACTIONS(3683), - [anon_sym_DASH] = ACTIONS(3685), - [anon_sym_DOT] = ACTIONS(3685), - [anon_sym_SLASH] = ACTIONS(3683), - [anon_sym_COLON] = ACTIONS(3683), - [anon_sym_SEMI] = ACTIONS(3683), - [anon_sym_EQ] = ACTIONS(3683), - [anon_sym_QMARK] = ACTIONS(3683), - [anon_sym_LBRACK] = ACTIONS(3685), - [anon_sym_BSLASH] = ACTIONS(3685), - [anon_sym_CARET] = ACTIONS(3685), - [anon_sym__] = ACTIONS(3683), - [anon_sym_BQUOTE] = ACTIONS(3683), - [anon_sym_LBRACE] = ACTIONS(3709), - [anon_sym_PIPE] = ACTIONS(3683), - [anon_sym_TILDE] = ACTIONS(3683), - [anon_sym_LPAREN] = ACTIONS(3683), - [anon_sym_RPAREN] = ACTIONS(3683), - [sym__newline_token] = ACTIONS(3683), - [anon_sym_CARET_LBRACK] = ACTIONS(3683), - [anon_sym_LBRACK_CARET] = ACTIONS(3683), - [sym_uri_autolink] = ACTIONS(3683), - [sym_email_autolink] = ACTIONS(3683), - [sym__whitespace_ge_2] = ACTIONS(3683), - [aux_sym__whitespace_token1] = ACTIONS(3685), - [sym__word_no_digit] = ACTIONS(3683), - [sym__digits] = ACTIONS(3683), - [anon_sym_DASH_DASH] = ACTIONS(3685), - [anon_sym_DASH_DASH_DASH] = ACTIONS(3683), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3683), - [sym__code_span_start] = ACTIONS(3683), - [sym__emphasis_open_star] = ACTIONS(3683), - [sym__emphasis_open_underscore] = ACTIONS(3683), - [sym__emphasis_close_star] = ACTIONS(3683), - [sym__strikeout_open] = ACTIONS(3683), - [sym__latex_span_start] = ACTIONS(3683), - [sym__single_quote_open] = ACTIONS(3683), - [sym__double_quote_open] = ACTIONS(3683), - [sym__superscript_open] = ACTIONS(3683), - [sym__subscript_open] = ACTIONS(3683), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3683), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3683), - [sym__cite_author_in_text] = ACTIONS(3683), - [sym__cite_suppress_author] = ACTIONS(3683), - [sym__shortcode_open_escaped] = ACTIONS(3683), - [sym__shortcode_open] = ACTIONS(3683), - [sym__unclosed_span] = ACTIONS(3683), + [sym_backslash_escape] = STATE(370), + [sym_commonmark_attribute] = STATE(370), + [sym_code_span] = STATE(370), + [sym_latex_span] = STATE(370), + [sym_insert] = STATE(370), + [sym_delete] = STATE(370), + [sym_highlight] = STATE(370), + [sym_edit_comment] = STATE(370), + [sym_superscript] = STATE(370), + [sym_subscript] = STATE(370), + [sym_strikeout] = STATE(370), + [sym_quoted_span] = STATE(370), + [sym_inline_note] = STATE(370), + [sym_citation] = STATE(370), + [sym_shortcode_escaped] = STATE(370), + [sym_shortcode] = STATE(370), + [sym_note_reference] = STATE(370), + [sym_image] = STATE(370), + [sym__image_inline_link] = STATE(923), + [sym__image_description] = STATE(2342), + [sym__image_description_non_empty] = STATE(2342), + [sym_hard_line_break] = STATE(370), + [sym__whitespace] = STATE(920), + [sym__word] = STATE(920), + [sym__soft_line_break] = STATE(924), + [sym__inline_base] = STATE(1451), + [sym__text_base] = STATE(370), + [sym__inline_element_no_link] = STATE(1451), + [aux_sym__inline_no_link] = STATE(336), + [sym__emphasis_star_no_link] = STATE(1452), + [sym__strong_emphasis_star_no_link] = STATE(1451), + [sym__emphasis_underscore_no_link] = STATE(1452), + [sym__strong_emphasis_underscore_no_link] = STATE(1451), + [aux_sym__inline_base_repeat1] = STATE(370), + [sym__backslash_escape] = ACTIONS(73), + [sym_entity_reference] = ACTIONS(75), + [sym_numeric_character_reference] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_BANG] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_POUND] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(79), + [anon_sym_PERCENT] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_STAR] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_COMMA] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_DOT] = ACTIONS(77), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_COLON] = ACTIONS(79), + [anon_sym_SEMI] = ACTIONS(79), + [anon_sym_EQ] = ACTIONS(79), + [anon_sym_QMARK] = ACTIONS(79), + [anon_sym_BSLASH] = ACTIONS(85), + [anon_sym_RBRACK] = ACTIONS(3554), + [anon_sym_CARET] = ACTIONS(77), + [anon_sym__] = ACTIONS(79), + [anon_sym_BQUOTE] = ACTIONS(79), + [anon_sym_LBRACE] = ACTIONS(89), + [anon_sym_PIPE] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(79), + [anon_sym_RPAREN] = ACTIONS(79), + [sym__newline_token] = ACTIONS(91), + [aux_sym_insert_token1] = ACTIONS(93), + [aux_sym_delete_token1] = ACTIONS(95), + [aux_sym_highlight_token1] = ACTIONS(97), + [aux_sym_edit_comment_token1] = ACTIONS(99), + [anon_sym_CARET_LBRACK] = ACTIONS(101), + [anon_sym_LBRACK_CARET] = ACTIONS(103), + [sym_uri_autolink] = ACTIONS(75), + [sym_email_autolink] = ACTIONS(75), + [sym__whitespace_ge_2] = ACTIONS(105), + [aux_sym__whitespace_token1] = ACTIONS(107), + [sym__word_no_digit] = ACTIONS(109), + [sym__digits] = ACTIONS(109), + [anon_sym_DASH_DASH] = ACTIONS(111), + [anon_sym_DASH_DASH_DASH] = ACTIONS(109), + [anon_sym_DOT_DOT_DOT] = ACTIONS(109), + [sym__code_span_start] = ACTIONS(113), + [sym__emphasis_open_star] = ACTIONS(3201), + [sym__emphasis_open_underscore] = ACTIONS(3203), + [sym__strikeout_open] = ACTIONS(121), + [sym__latex_span_start] = ACTIONS(123), + [sym__single_quote_open] = ACTIONS(125), + [sym__double_quote_open] = ACTIONS(127), + [sym__superscript_open] = ACTIONS(129), + [sym__subscript_open] = ACTIONS(131), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(133), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(135), + [sym__cite_author_in_text] = ACTIONS(137), + [sym__cite_suppress_author] = ACTIONS(139), + [sym__shortcode_open_escaped] = ACTIONS(141), + [sym__shortcode_open] = ACTIONS(143), + [sym__unclosed_span] = ACTIONS(75), }, [STATE(349)] = { - [sym__qmd_attribute] = STATE(872), - [sym_raw_attribute] = STATE(872), - [sym_commonmark_attribute] = STATE(872), - [sym_language_attribute] = STATE(872), - [sym__backslash_escape] = ACTIONS(3687), - [sym_entity_reference] = ACTIONS(3687), - [sym_numeric_character_reference] = ACTIONS(3687), - [anon_sym_LT] = ACTIONS(3689), - [anon_sym_GT] = ACTIONS(3687), - [anon_sym_BANG] = ACTIONS(3687), - [anon_sym_DQUOTE] = ACTIONS(3687), - [anon_sym_POUND] = ACTIONS(3687), - [anon_sym_DOLLAR] = ACTIONS(3687), - [anon_sym_PERCENT] = ACTIONS(3687), - [anon_sym_AMP] = ACTIONS(3689), - [anon_sym_SQUOTE] = ACTIONS(3687), - [anon_sym_STAR] = ACTIONS(3687), - [anon_sym_PLUS] = ACTIONS(3687), - [anon_sym_COMMA] = ACTIONS(3687), - [anon_sym_DASH] = ACTIONS(3689), - [anon_sym_DOT] = ACTIONS(3689), - [anon_sym_SLASH] = ACTIONS(3687), - [anon_sym_COLON] = ACTIONS(3687), - [anon_sym_SEMI] = ACTIONS(3687), - [anon_sym_EQ] = ACTIONS(3687), - [anon_sym_QMARK] = ACTIONS(3687), - [anon_sym_LBRACK] = ACTIONS(3689), - [anon_sym_BSLASH] = ACTIONS(3689), - [anon_sym_CARET] = ACTIONS(3689), - [anon_sym__] = ACTIONS(3687), - [anon_sym_BQUOTE] = ACTIONS(3687), - [anon_sym_LBRACE] = ACTIONS(3709), - [anon_sym_PIPE] = ACTIONS(3687), - [anon_sym_TILDE] = ACTIONS(3687), - [anon_sym_LPAREN] = ACTIONS(3687), - [anon_sym_RPAREN] = ACTIONS(3687), - [sym__newline_token] = ACTIONS(3687), - [anon_sym_CARET_LBRACK] = ACTIONS(3687), - [anon_sym_LBRACK_CARET] = ACTIONS(3687), - [sym_uri_autolink] = ACTIONS(3687), - [sym_email_autolink] = ACTIONS(3687), - [sym__whitespace_ge_2] = ACTIONS(3687), - [aux_sym__whitespace_token1] = ACTIONS(3689), - [sym__word_no_digit] = ACTIONS(3687), - [sym__digits] = ACTIONS(3687), - [anon_sym_DASH_DASH] = ACTIONS(3689), - [anon_sym_DASH_DASH_DASH] = ACTIONS(3687), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3687), - [sym__code_span_start] = ACTIONS(3687), - [sym__emphasis_open_star] = ACTIONS(3687), - [sym__emphasis_open_underscore] = ACTIONS(3687), - [sym__emphasis_close_star] = ACTIONS(3687), - [sym__strikeout_open] = ACTIONS(3687), - [sym__latex_span_start] = ACTIONS(3687), - [sym__single_quote_open] = ACTIONS(3687), - [sym__double_quote_open] = ACTIONS(3687), - [sym__superscript_open] = ACTIONS(3687), - [sym__subscript_open] = ACTIONS(3687), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3687), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3687), - [sym__cite_author_in_text] = ACTIONS(3687), - [sym__cite_suppress_author] = ACTIONS(3687), - [sym__shortcode_open_escaped] = ACTIONS(3687), - [sym__shortcode_open] = ACTIONS(3687), - [sym__unclosed_span] = ACTIONS(3687), + [sym_backslash_escape] = STATE(370), + [sym_commonmark_attribute] = STATE(370), + [sym_code_span] = STATE(370), + [sym_latex_span] = STATE(370), + [sym_insert] = STATE(370), + [sym_delete] = STATE(370), + [sym_highlight] = STATE(370), + [sym_edit_comment] = STATE(370), + [sym_superscript] = STATE(370), + [sym_subscript] = STATE(370), + [sym_strikeout] = STATE(370), + [sym_quoted_span] = STATE(370), + [sym_inline_note] = STATE(370), + [sym_citation] = STATE(370), + [sym_shortcode_escaped] = STATE(370), + [sym_shortcode] = STATE(370), + [sym_note_reference] = STATE(370), + [sym_image] = STATE(370), + [sym__image_inline_link] = STATE(923), + [sym__image_description] = STATE(2342), + [sym__image_description_non_empty] = STATE(2342), + [sym_hard_line_break] = STATE(370), + [sym__whitespace] = STATE(920), + [sym__word] = STATE(920), + [sym__soft_line_break] = STATE(924), + [sym__inline_base] = STATE(1451), + [sym__text_base] = STATE(370), + [sym__inline_element_no_link] = STATE(1451), + [aux_sym__inline_no_link] = STATE(350), + [sym__emphasis_star_no_link] = STATE(1452), + [sym__strong_emphasis_star_no_link] = STATE(1451), + [sym__emphasis_underscore_no_link] = STATE(1452), + [sym__strong_emphasis_underscore_no_link] = STATE(1451), + [aux_sym__inline_base_repeat1] = STATE(370), + [sym__backslash_escape] = ACTIONS(73), + [sym_entity_reference] = ACTIONS(75), + [sym_numeric_character_reference] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_BANG] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_POUND] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(79), + [anon_sym_PERCENT] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_STAR] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_COMMA] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_DOT] = ACTIONS(77), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_COLON] = ACTIONS(79), + [anon_sym_SEMI] = ACTIONS(79), + [anon_sym_EQ] = ACTIONS(79), + [anon_sym_QMARK] = ACTIONS(79), + [anon_sym_BSLASH] = ACTIONS(85), + [anon_sym_RBRACK] = ACTIONS(3556), + [anon_sym_CARET] = ACTIONS(77), + [anon_sym__] = ACTIONS(79), + [anon_sym_BQUOTE] = ACTIONS(79), + [anon_sym_LBRACE] = ACTIONS(89), + [anon_sym_PIPE] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(79), + [anon_sym_RPAREN] = ACTIONS(79), + [sym__newline_token] = ACTIONS(91), + [aux_sym_insert_token1] = ACTIONS(93), + [aux_sym_delete_token1] = ACTIONS(95), + [aux_sym_highlight_token1] = ACTIONS(97), + [aux_sym_edit_comment_token1] = ACTIONS(99), + [anon_sym_CARET_LBRACK] = ACTIONS(101), + [anon_sym_LBRACK_CARET] = ACTIONS(103), + [sym_uri_autolink] = ACTIONS(75), + [sym_email_autolink] = ACTIONS(75), + [sym__whitespace_ge_2] = ACTIONS(105), + [aux_sym__whitespace_token1] = ACTIONS(107), + [sym__word_no_digit] = ACTIONS(109), + [sym__digits] = ACTIONS(109), + [anon_sym_DASH_DASH] = ACTIONS(111), + [anon_sym_DASH_DASH_DASH] = ACTIONS(109), + [anon_sym_DOT_DOT_DOT] = ACTIONS(109), + [sym__code_span_start] = ACTIONS(113), + [sym__emphasis_open_star] = ACTIONS(3201), + [sym__emphasis_open_underscore] = ACTIONS(3203), + [sym__strikeout_open] = ACTIONS(121), + [sym__latex_span_start] = ACTIONS(123), + [sym__single_quote_open] = ACTIONS(125), + [sym__double_quote_open] = ACTIONS(127), + [sym__superscript_open] = ACTIONS(129), + [sym__subscript_open] = ACTIONS(131), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(133), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(135), + [sym__cite_author_in_text] = ACTIONS(137), + [sym__cite_suppress_author] = ACTIONS(139), + [sym__shortcode_open_escaped] = ACTIONS(141), + [sym__shortcode_open] = ACTIONS(143), + [sym__unclosed_span] = ACTIONS(75), }, [STATE(350)] = { - [sym__qmd_attribute] = STATE(782), - [sym_raw_attribute] = STATE(782), - [sym_commonmark_attribute] = STATE(782), - [sym_language_attribute] = STATE(782), - [sym__backslash_escape] = ACTIONS(3675), - [sym_entity_reference] = ACTIONS(3675), - [sym_numeric_character_reference] = ACTIONS(3675), - [anon_sym_LT] = ACTIONS(3677), - [anon_sym_GT] = ACTIONS(3675), - [anon_sym_BANG] = ACTIONS(3675), - [anon_sym_DQUOTE] = ACTIONS(3675), - [anon_sym_POUND] = ACTIONS(3675), - [anon_sym_DOLLAR] = ACTIONS(3675), - [anon_sym_PERCENT] = ACTIONS(3675), - [anon_sym_AMP] = ACTIONS(3677), - [anon_sym_SQUOTE] = ACTIONS(3675), - [anon_sym_STAR] = ACTIONS(3675), - [anon_sym_PLUS] = ACTIONS(3675), - [anon_sym_COMMA] = ACTIONS(3675), - [anon_sym_DASH] = ACTIONS(3677), - [anon_sym_DOT] = ACTIONS(3677), - [anon_sym_SLASH] = ACTIONS(3675), - [anon_sym_COLON] = ACTIONS(3675), - [anon_sym_SEMI] = ACTIONS(3675), - [anon_sym_EQ] = ACTIONS(3675), - [anon_sym_QMARK] = ACTIONS(3675), - [anon_sym_LBRACK] = ACTIONS(3677), - [anon_sym_BSLASH] = ACTIONS(3677), - [anon_sym_CARET] = ACTIONS(3677), - [anon_sym__] = ACTIONS(3675), - [anon_sym_BQUOTE] = ACTIONS(3675), - [anon_sym_LBRACE] = ACTIONS(3701), - [anon_sym_PIPE] = ACTIONS(3675), - [anon_sym_TILDE] = ACTIONS(3675), - [anon_sym_LPAREN] = ACTIONS(3675), - [anon_sym_RPAREN] = ACTIONS(3675), - [sym__newline_token] = ACTIONS(3675), - [anon_sym_CARET_LBRACK] = ACTIONS(3675), - [anon_sym_LBRACK_CARET] = ACTIONS(3675), - [sym_uri_autolink] = ACTIONS(3675), - [sym_email_autolink] = ACTIONS(3675), - [sym__whitespace_ge_2] = ACTIONS(3675), - [aux_sym__whitespace_token1] = ACTIONS(3677), - [sym__word_no_digit] = ACTIONS(3675), - [sym__digits] = ACTIONS(3675), - [anon_sym_DASH_DASH] = ACTIONS(3677), - [anon_sym_DASH_DASH_DASH] = ACTIONS(3675), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3675), - [sym__code_span_start] = ACTIONS(3675), - [sym__emphasis_open_star] = ACTIONS(3675), - [sym__emphasis_open_underscore] = ACTIONS(3675), - [sym__strikeout_open] = ACTIONS(3675), - [sym__latex_span_start] = ACTIONS(3675), - [sym__single_quote_open] = ACTIONS(3675), - [sym__double_quote_open] = ACTIONS(3675), - [sym__superscript_open] = ACTIONS(3675), - [sym__superscript_close] = ACTIONS(3675), - [sym__subscript_open] = ACTIONS(3675), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3675), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3675), - [sym__cite_author_in_text] = ACTIONS(3675), - [sym__cite_suppress_author] = ACTIONS(3675), - [sym__shortcode_open_escaped] = ACTIONS(3675), - [sym__shortcode_open] = ACTIONS(3675), - [sym__unclosed_span] = ACTIONS(3675), + [sym_backslash_escape] = STATE(370), + [sym_commonmark_attribute] = STATE(370), + [sym_code_span] = STATE(370), + [sym_latex_span] = STATE(370), + [sym_insert] = STATE(370), + [sym_delete] = STATE(370), + [sym_highlight] = STATE(370), + [sym_edit_comment] = STATE(370), + [sym_superscript] = STATE(370), + [sym_subscript] = STATE(370), + [sym_strikeout] = STATE(370), + [sym_quoted_span] = STATE(370), + [sym_inline_note] = STATE(370), + [sym_citation] = STATE(370), + [sym_shortcode_escaped] = STATE(370), + [sym_shortcode] = STATE(370), + [sym_note_reference] = STATE(370), + [sym_image] = STATE(370), + [sym__image_inline_link] = STATE(923), + [sym__image_description] = STATE(2342), + [sym__image_description_non_empty] = STATE(2342), + [sym_hard_line_break] = STATE(370), + [sym__whitespace] = STATE(920), + [sym__word] = STATE(920), + [sym__soft_line_break] = STATE(924), + [sym__inline_base] = STATE(1451), + [sym__text_base] = STATE(370), + [sym__inline_element_no_link] = STATE(1451), + [aux_sym__inline_no_link] = STATE(336), + [sym__emphasis_star_no_link] = STATE(1452), + [sym__strong_emphasis_star_no_link] = STATE(1451), + [sym__emphasis_underscore_no_link] = STATE(1452), + [sym__strong_emphasis_underscore_no_link] = STATE(1451), + [aux_sym__inline_base_repeat1] = STATE(370), + [sym__backslash_escape] = ACTIONS(73), + [sym_entity_reference] = ACTIONS(75), + [sym_numeric_character_reference] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_BANG] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_POUND] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(79), + [anon_sym_PERCENT] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_STAR] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_COMMA] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_DOT] = ACTIONS(77), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_COLON] = ACTIONS(79), + [anon_sym_SEMI] = ACTIONS(79), + [anon_sym_EQ] = ACTIONS(79), + [anon_sym_QMARK] = ACTIONS(79), + [anon_sym_BSLASH] = ACTIONS(85), + [anon_sym_RBRACK] = ACTIONS(3558), + [anon_sym_CARET] = ACTIONS(77), + [anon_sym__] = ACTIONS(79), + [anon_sym_BQUOTE] = ACTIONS(79), + [anon_sym_LBRACE] = ACTIONS(89), + [anon_sym_PIPE] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(79), + [anon_sym_RPAREN] = ACTIONS(79), + [sym__newline_token] = ACTIONS(91), + [aux_sym_insert_token1] = ACTIONS(93), + [aux_sym_delete_token1] = ACTIONS(95), + [aux_sym_highlight_token1] = ACTIONS(97), + [aux_sym_edit_comment_token1] = ACTIONS(99), + [anon_sym_CARET_LBRACK] = ACTIONS(101), + [anon_sym_LBRACK_CARET] = ACTIONS(103), + [sym_uri_autolink] = ACTIONS(75), + [sym_email_autolink] = ACTIONS(75), + [sym__whitespace_ge_2] = ACTIONS(105), + [aux_sym__whitespace_token1] = ACTIONS(107), + [sym__word_no_digit] = ACTIONS(109), + [sym__digits] = ACTIONS(109), + [anon_sym_DASH_DASH] = ACTIONS(111), + [anon_sym_DASH_DASH_DASH] = ACTIONS(109), + [anon_sym_DOT_DOT_DOT] = ACTIONS(109), + [sym__code_span_start] = ACTIONS(113), + [sym__emphasis_open_star] = ACTIONS(3201), + [sym__emphasis_open_underscore] = ACTIONS(3203), + [sym__strikeout_open] = ACTIONS(121), + [sym__latex_span_start] = ACTIONS(123), + [sym__single_quote_open] = ACTIONS(125), + [sym__double_quote_open] = ACTIONS(127), + [sym__superscript_open] = ACTIONS(129), + [sym__subscript_open] = ACTIONS(131), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(133), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(135), + [sym__cite_author_in_text] = ACTIONS(137), + [sym__cite_suppress_author] = ACTIONS(139), + [sym__shortcode_open_escaped] = ACTIONS(141), + [sym__shortcode_open] = ACTIONS(143), + [sym__unclosed_span] = ACTIONS(75), }, [STATE(351)] = { - [sym__qmd_attribute] = STATE(966), - [sym_raw_attribute] = STATE(966), - [sym_commonmark_attribute] = STATE(966), - [sym_language_attribute] = STATE(966), - [sym__backslash_escape] = ACTIONS(3691), - [sym_entity_reference] = ACTIONS(3691), - [sym_numeric_character_reference] = ACTIONS(3691), - [anon_sym_LT] = ACTIONS(3693), - [anon_sym_GT] = ACTIONS(3691), - [anon_sym_BANG] = ACTIONS(3691), - [anon_sym_DQUOTE] = ACTIONS(3691), - [anon_sym_POUND] = ACTIONS(3691), - [anon_sym_DOLLAR] = ACTIONS(3691), - [anon_sym_PERCENT] = ACTIONS(3691), - [anon_sym_AMP] = ACTIONS(3693), - [anon_sym_SQUOTE] = ACTIONS(3691), - [anon_sym_STAR] = ACTIONS(3691), - [anon_sym_PLUS] = ACTIONS(3691), - [anon_sym_COMMA] = ACTIONS(3691), - [anon_sym_DASH] = ACTIONS(3693), - [anon_sym_DOT] = ACTIONS(3693), - [anon_sym_SLASH] = ACTIONS(3691), - [anon_sym_COLON] = ACTIONS(3691), - [anon_sym_SEMI] = ACTIONS(3691), - [anon_sym_EQ] = ACTIONS(3691), - [anon_sym_QMARK] = ACTIONS(3691), - [anon_sym_LBRACK] = ACTIONS(3693), - [anon_sym_BSLASH] = ACTIONS(3693), - [anon_sym_CARET] = ACTIONS(3693), - [anon_sym__] = ACTIONS(3691), - [anon_sym_BQUOTE] = ACTIONS(3691), - [anon_sym_LBRACE] = ACTIONS(3713), - [anon_sym_PIPE] = ACTIONS(3691), - [anon_sym_TILDE] = ACTIONS(3691), - [anon_sym_LPAREN] = ACTIONS(3715), - [anon_sym_RPAREN] = ACTIONS(3691), - [sym__newline_token] = ACTIONS(3691), - [anon_sym_CARET_LBRACK] = ACTIONS(3691), - [anon_sym_LBRACK_CARET] = ACTIONS(3691), - [sym_uri_autolink] = ACTIONS(3691), - [sym_email_autolink] = ACTIONS(3691), - [sym__whitespace_ge_2] = ACTIONS(3691), - [aux_sym__whitespace_token1] = ACTIONS(3693), - [sym__word_no_digit] = ACTIONS(3691), - [sym__digits] = ACTIONS(3691), - [anon_sym_DASH_DASH] = ACTIONS(3693), - [anon_sym_DASH_DASH_DASH] = ACTIONS(3691), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3691), - [sym__code_span_start] = ACTIONS(3691), - [sym__emphasis_open_star] = ACTIONS(3691), - [sym__emphasis_open_underscore] = ACTIONS(3691), - [sym__emphasis_close_underscore] = ACTIONS(3691), - [sym__strikeout_open] = ACTIONS(3691), - [sym__latex_span_start] = ACTIONS(3691), - [sym__single_quote_open] = ACTIONS(3691), - [sym__double_quote_open] = ACTIONS(3691), - [sym__superscript_open] = ACTIONS(3691), - [sym__subscript_open] = ACTIONS(3691), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3691), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3691), - [sym__cite_author_in_text] = ACTIONS(3691), - [sym__cite_suppress_author] = ACTIONS(3691), - [sym__shortcode_open_escaped] = ACTIONS(3691), - [sym__shortcode_open] = ACTIONS(3691), - [sym__unclosed_span] = ACTIONS(3691), + [sym_backslash_escape] = STATE(370), + [sym_commonmark_attribute] = STATE(370), + [sym_code_span] = STATE(370), + [sym_latex_span] = STATE(370), + [sym_insert] = STATE(370), + [sym_delete] = STATE(370), + [sym_highlight] = STATE(370), + [sym_edit_comment] = STATE(370), + [sym_superscript] = STATE(370), + [sym_subscript] = STATE(370), + [sym_strikeout] = STATE(370), + [sym_quoted_span] = STATE(370), + [sym_inline_note] = STATE(370), + [sym_citation] = STATE(370), + [sym_shortcode_escaped] = STATE(370), + [sym_shortcode] = STATE(370), + [sym_note_reference] = STATE(370), + [sym_image] = STATE(370), + [sym__image_inline_link] = STATE(923), + [sym__image_description] = STATE(2342), + [sym__image_description_non_empty] = STATE(2342), + [sym_hard_line_break] = STATE(370), + [sym__whitespace] = STATE(920), + [sym__word] = STATE(920), + [sym__soft_line_break] = STATE(924), + [sym__inline_base] = STATE(1451), + [sym__text_base] = STATE(370), + [sym__inline_element_no_link] = STATE(1451), + [aux_sym__inline_no_link] = STATE(352), + [sym__emphasis_star_no_link] = STATE(1452), + [sym__strong_emphasis_star_no_link] = STATE(1451), + [sym__emphasis_underscore_no_link] = STATE(1452), + [sym__strong_emphasis_underscore_no_link] = STATE(1451), + [aux_sym__inline_base_repeat1] = STATE(370), + [sym__backslash_escape] = ACTIONS(73), + [sym_entity_reference] = ACTIONS(75), + [sym_numeric_character_reference] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_BANG] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_POUND] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(79), + [anon_sym_PERCENT] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_STAR] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_COMMA] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_DOT] = ACTIONS(77), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_COLON] = ACTIONS(79), + [anon_sym_SEMI] = ACTIONS(79), + [anon_sym_EQ] = ACTIONS(79), + [anon_sym_QMARK] = ACTIONS(79), + [anon_sym_BSLASH] = ACTIONS(85), + [anon_sym_RBRACK] = ACTIONS(3560), + [anon_sym_CARET] = ACTIONS(77), + [anon_sym__] = ACTIONS(79), + [anon_sym_BQUOTE] = ACTIONS(79), + [anon_sym_LBRACE] = ACTIONS(89), + [anon_sym_PIPE] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(79), + [anon_sym_RPAREN] = ACTIONS(79), + [sym__newline_token] = ACTIONS(91), + [aux_sym_insert_token1] = ACTIONS(93), + [aux_sym_delete_token1] = ACTIONS(95), + [aux_sym_highlight_token1] = ACTIONS(97), + [aux_sym_edit_comment_token1] = ACTIONS(99), + [anon_sym_CARET_LBRACK] = ACTIONS(101), + [anon_sym_LBRACK_CARET] = ACTIONS(103), + [sym_uri_autolink] = ACTIONS(75), + [sym_email_autolink] = ACTIONS(75), + [sym__whitespace_ge_2] = ACTIONS(105), + [aux_sym__whitespace_token1] = ACTIONS(107), + [sym__word_no_digit] = ACTIONS(109), + [sym__digits] = ACTIONS(109), + [anon_sym_DASH_DASH] = ACTIONS(111), + [anon_sym_DASH_DASH_DASH] = ACTIONS(109), + [anon_sym_DOT_DOT_DOT] = ACTIONS(109), + [sym__code_span_start] = ACTIONS(113), + [sym__emphasis_open_star] = ACTIONS(3201), + [sym__emphasis_open_underscore] = ACTIONS(3203), + [sym__strikeout_open] = ACTIONS(121), + [sym__latex_span_start] = ACTIONS(123), + [sym__single_quote_open] = ACTIONS(125), + [sym__double_quote_open] = ACTIONS(127), + [sym__superscript_open] = ACTIONS(129), + [sym__subscript_open] = ACTIONS(131), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(133), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(135), + [sym__cite_author_in_text] = ACTIONS(137), + [sym__cite_suppress_author] = ACTIONS(139), + [sym__shortcode_open_escaped] = ACTIONS(141), + [sym__shortcode_open] = ACTIONS(143), + [sym__unclosed_span] = ACTIONS(75), }, [STATE(352)] = { - [sym__qmd_attribute] = STATE(968), - [sym_raw_attribute] = STATE(968), - [sym_commonmark_attribute] = STATE(968), - [sym_language_attribute] = STATE(968), - [sym__backslash_escape] = ACTIONS(3697), - [sym_entity_reference] = ACTIONS(3697), - [sym_numeric_character_reference] = ACTIONS(3697), - [anon_sym_LT] = ACTIONS(3699), - [anon_sym_GT] = ACTIONS(3697), - [anon_sym_BANG] = ACTIONS(3697), - [anon_sym_DQUOTE] = ACTIONS(3697), - [anon_sym_POUND] = ACTIONS(3697), - [anon_sym_DOLLAR] = ACTIONS(3697), - [anon_sym_PERCENT] = ACTIONS(3697), - [anon_sym_AMP] = ACTIONS(3699), - [anon_sym_SQUOTE] = ACTIONS(3697), - [anon_sym_STAR] = ACTIONS(3697), - [anon_sym_PLUS] = ACTIONS(3697), - [anon_sym_COMMA] = ACTIONS(3697), - [anon_sym_DASH] = ACTIONS(3699), - [anon_sym_DOT] = ACTIONS(3699), - [anon_sym_SLASH] = ACTIONS(3697), - [anon_sym_COLON] = ACTIONS(3697), - [anon_sym_SEMI] = ACTIONS(3697), - [anon_sym_EQ] = ACTIONS(3697), - [anon_sym_QMARK] = ACTIONS(3697), - [anon_sym_LBRACK] = ACTIONS(3699), - [anon_sym_BSLASH] = ACTIONS(3699), - [anon_sym_CARET] = ACTIONS(3699), - [anon_sym__] = ACTIONS(3697), - [anon_sym_BQUOTE] = ACTIONS(3697), - [anon_sym_LBRACE] = ACTIONS(3713), - [anon_sym_PIPE] = ACTIONS(3697), - [anon_sym_TILDE] = ACTIONS(3697), - [anon_sym_LPAREN] = ACTIONS(3697), - [anon_sym_RPAREN] = ACTIONS(3697), - [sym__newline_token] = ACTIONS(3697), - [anon_sym_CARET_LBRACK] = ACTIONS(3697), - [anon_sym_LBRACK_CARET] = ACTIONS(3697), - [sym_uri_autolink] = ACTIONS(3697), - [sym_email_autolink] = ACTIONS(3697), - [sym__whitespace_ge_2] = ACTIONS(3697), - [aux_sym__whitespace_token1] = ACTIONS(3699), - [sym__word_no_digit] = ACTIONS(3697), - [sym__digits] = ACTIONS(3697), - [anon_sym_DASH_DASH] = ACTIONS(3699), - [anon_sym_DASH_DASH_DASH] = ACTIONS(3697), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3697), - [sym__code_span_start] = ACTIONS(3697), - [sym__emphasis_open_star] = ACTIONS(3697), - [sym__emphasis_open_underscore] = ACTIONS(3697), - [sym__emphasis_close_underscore] = ACTIONS(3697), - [sym__strikeout_open] = ACTIONS(3697), - [sym__latex_span_start] = ACTIONS(3697), - [sym__single_quote_open] = ACTIONS(3697), - [sym__double_quote_open] = ACTIONS(3697), - [sym__superscript_open] = ACTIONS(3697), - [sym__subscript_open] = ACTIONS(3697), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3697), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3697), - [sym__cite_author_in_text] = ACTIONS(3697), - [sym__cite_suppress_author] = ACTIONS(3697), - [sym__shortcode_open_escaped] = ACTIONS(3697), - [sym__shortcode_open] = ACTIONS(3697), - [sym__unclosed_span] = ACTIONS(3697), + [sym_backslash_escape] = STATE(370), + [sym_commonmark_attribute] = STATE(370), + [sym_code_span] = STATE(370), + [sym_latex_span] = STATE(370), + [sym_insert] = STATE(370), + [sym_delete] = STATE(370), + [sym_highlight] = STATE(370), + [sym_edit_comment] = STATE(370), + [sym_superscript] = STATE(370), + [sym_subscript] = STATE(370), + [sym_strikeout] = STATE(370), + [sym_quoted_span] = STATE(370), + [sym_inline_note] = STATE(370), + [sym_citation] = STATE(370), + [sym_shortcode_escaped] = STATE(370), + [sym_shortcode] = STATE(370), + [sym_note_reference] = STATE(370), + [sym_image] = STATE(370), + [sym__image_inline_link] = STATE(923), + [sym__image_description] = STATE(2342), + [sym__image_description_non_empty] = STATE(2342), + [sym_hard_line_break] = STATE(370), + [sym__whitespace] = STATE(920), + [sym__word] = STATE(920), + [sym__soft_line_break] = STATE(924), + [sym__inline_base] = STATE(1451), + [sym__text_base] = STATE(370), + [sym__inline_element_no_link] = STATE(1451), + [aux_sym__inline_no_link] = STATE(336), + [sym__emphasis_star_no_link] = STATE(1452), + [sym__strong_emphasis_star_no_link] = STATE(1451), + [sym__emphasis_underscore_no_link] = STATE(1452), + [sym__strong_emphasis_underscore_no_link] = STATE(1451), + [aux_sym__inline_base_repeat1] = STATE(370), + [sym__backslash_escape] = ACTIONS(73), + [sym_entity_reference] = ACTIONS(75), + [sym_numeric_character_reference] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_BANG] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_POUND] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(79), + [anon_sym_PERCENT] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_STAR] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_COMMA] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_DOT] = ACTIONS(77), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_COLON] = ACTIONS(79), + [anon_sym_SEMI] = ACTIONS(79), + [anon_sym_EQ] = ACTIONS(79), + [anon_sym_QMARK] = ACTIONS(79), + [anon_sym_BSLASH] = ACTIONS(85), + [anon_sym_RBRACK] = ACTIONS(3562), + [anon_sym_CARET] = ACTIONS(77), + [anon_sym__] = ACTIONS(79), + [anon_sym_BQUOTE] = ACTIONS(79), + [anon_sym_LBRACE] = ACTIONS(89), + [anon_sym_PIPE] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(79), + [anon_sym_RPAREN] = ACTIONS(79), + [sym__newline_token] = ACTIONS(91), + [aux_sym_insert_token1] = ACTIONS(93), + [aux_sym_delete_token1] = ACTIONS(95), + [aux_sym_highlight_token1] = ACTIONS(97), + [aux_sym_edit_comment_token1] = ACTIONS(99), + [anon_sym_CARET_LBRACK] = ACTIONS(101), + [anon_sym_LBRACK_CARET] = ACTIONS(103), + [sym_uri_autolink] = ACTIONS(75), + [sym_email_autolink] = ACTIONS(75), + [sym__whitespace_ge_2] = ACTIONS(105), + [aux_sym__whitespace_token1] = ACTIONS(107), + [sym__word_no_digit] = ACTIONS(109), + [sym__digits] = ACTIONS(109), + [anon_sym_DASH_DASH] = ACTIONS(111), + [anon_sym_DASH_DASH_DASH] = ACTIONS(109), + [anon_sym_DOT_DOT_DOT] = ACTIONS(109), + [sym__code_span_start] = ACTIONS(113), + [sym__emphasis_open_star] = ACTIONS(3201), + [sym__emphasis_open_underscore] = ACTIONS(3203), + [sym__strikeout_open] = ACTIONS(121), + [sym__latex_span_start] = ACTIONS(123), + [sym__single_quote_open] = ACTIONS(125), + [sym__double_quote_open] = ACTIONS(127), + [sym__superscript_open] = ACTIONS(129), + [sym__subscript_open] = ACTIONS(131), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(133), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(135), + [sym__cite_author_in_text] = ACTIONS(137), + [sym__cite_suppress_author] = ACTIONS(139), + [sym__shortcode_open_escaped] = ACTIONS(141), + [sym__shortcode_open] = ACTIONS(143), + [sym__unclosed_span] = ACTIONS(75), }, [STATE(353)] = { - [sym__qmd_attribute] = STATE(783), - [sym_raw_attribute] = STATE(783), - [sym_commonmark_attribute] = STATE(783), - [sym_language_attribute] = STATE(783), - [sym__backslash_escape] = ACTIONS(3679), - [sym_entity_reference] = ACTIONS(3679), - [sym_numeric_character_reference] = ACTIONS(3679), - [anon_sym_LT] = ACTIONS(3681), - [anon_sym_GT] = ACTIONS(3679), - [anon_sym_BANG] = ACTIONS(3679), - [anon_sym_DQUOTE] = ACTIONS(3679), - [anon_sym_POUND] = ACTIONS(3679), - [anon_sym_DOLLAR] = ACTIONS(3679), - [anon_sym_PERCENT] = ACTIONS(3679), - [anon_sym_AMP] = ACTIONS(3681), - [anon_sym_SQUOTE] = ACTIONS(3679), - [anon_sym_STAR] = ACTIONS(3679), - [anon_sym_PLUS] = ACTIONS(3679), - [anon_sym_COMMA] = ACTIONS(3679), - [anon_sym_DASH] = ACTIONS(3681), - [anon_sym_DOT] = ACTIONS(3681), - [anon_sym_SLASH] = ACTIONS(3679), - [anon_sym_COLON] = ACTIONS(3679), - [anon_sym_SEMI] = ACTIONS(3679), - [anon_sym_EQ] = ACTIONS(3679), - [anon_sym_QMARK] = ACTIONS(3679), - [anon_sym_LBRACK] = ACTIONS(3681), - [anon_sym_BSLASH] = ACTIONS(3681), - [anon_sym_CARET] = ACTIONS(3681), - [anon_sym__] = ACTIONS(3679), - [anon_sym_BQUOTE] = ACTIONS(3679), - [anon_sym_LBRACE] = ACTIONS(3701), - [anon_sym_PIPE] = ACTIONS(3679), - [anon_sym_TILDE] = ACTIONS(3679), - [anon_sym_LPAREN] = ACTIONS(3679), - [anon_sym_RPAREN] = ACTIONS(3679), - [sym__newline_token] = ACTIONS(3679), - [anon_sym_CARET_LBRACK] = ACTIONS(3679), - [anon_sym_LBRACK_CARET] = ACTIONS(3679), - [sym_uri_autolink] = ACTIONS(3679), - [sym_email_autolink] = ACTIONS(3679), - [sym__whitespace_ge_2] = ACTIONS(3679), - [aux_sym__whitespace_token1] = ACTIONS(3681), - [sym__word_no_digit] = ACTIONS(3679), - [sym__digits] = ACTIONS(3679), - [anon_sym_DASH_DASH] = ACTIONS(3681), - [anon_sym_DASH_DASH_DASH] = ACTIONS(3679), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3679), - [sym__code_span_start] = ACTIONS(3679), - [sym__emphasis_open_star] = ACTIONS(3679), - [sym__emphasis_open_underscore] = ACTIONS(3679), - [sym__strikeout_open] = ACTIONS(3679), - [sym__latex_span_start] = ACTIONS(3679), - [sym__single_quote_open] = ACTIONS(3679), - [sym__double_quote_open] = ACTIONS(3679), - [sym__superscript_open] = ACTIONS(3679), - [sym__superscript_close] = ACTIONS(3679), - [sym__subscript_open] = ACTIONS(3679), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3679), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3679), - [sym__cite_author_in_text] = ACTIONS(3679), - [sym__cite_suppress_author] = ACTIONS(3679), - [sym__shortcode_open_escaped] = ACTIONS(3679), - [sym__shortcode_open] = ACTIONS(3679), - [sym__unclosed_span] = ACTIONS(3679), + [sym_backslash_escape] = STATE(370), + [sym_commonmark_attribute] = STATE(370), + [sym_code_span] = STATE(370), + [sym_latex_span] = STATE(370), + [sym_insert] = STATE(370), + [sym_delete] = STATE(370), + [sym_highlight] = STATE(370), + [sym_edit_comment] = STATE(370), + [sym_superscript] = STATE(370), + [sym_subscript] = STATE(370), + [sym_strikeout] = STATE(370), + [sym_quoted_span] = STATE(370), + [sym_inline_note] = STATE(370), + [sym_citation] = STATE(370), + [sym_shortcode_escaped] = STATE(370), + [sym_shortcode] = STATE(370), + [sym_note_reference] = STATE(370), + [sym_image] = STATE(370), + [sym__image_inline_link] = STATE(923), + [sym__image_description] = STATE(2342), + [sym__image_description_non_empty] = STATE(2342), + [sym_hard_line_break] = STATE(370), + [sym__whitespace] = STATE(920), + [sym__word] = STATE(920), + [sym__soft_line_break] = STATE(924), + [sym__inline_base] = STATE(1451), + [sym__text_base] = STATE(370), + [sym__inline_element_no_link] = STATE(1451), + [aux_sym__inline_no_link] = STATE(354), + [sym__emphasis_star_no_link] = STATE(1452), + [sym__strong_emphasis_star_no_link] = STATE(1451), + [sym__emphasis_underscore_no_link] = STATE(1452), + [sym__strong_emphasis_underscore_no_link] = STATE(1451), + [aux_sym__inline_base_repeat1] = STATE(370), + [sym__backslash_escape] = ACTIONS(73), + [sym_entity_reference] = ACTIONS(75), + [sym_numeric_character_reference] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_BANG] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_POUND] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(79), + [anon_sym_PERCENT] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_STAR] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_COMMA] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_DOT] = ACTIONS(77), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_COLON] = ACTIONS(79), + [anon_sym_SEMI] = ACTIONS(79), + [anon_sym_EQ] = ACTIONS(79), + [anon_sym_QMARK] = ACTIONS(79), + [anon_sym_BSLASH] = ACTIONS(85), + [anon_sym_RBRACK] = ACTIONS(3564), + [anon_sym_CARET] = ACTIONS(77), + [anon_sym__] = ACTIONS(79), + [anon_sym_BQUOTE] = ACTIONS(79), + [anon_sym_LBRACE] = ACTIONS(89), + [anon_sym_PIPE] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(79), + [anon_sym_RPAREN] = ACTIONS(79), + [sym__newline_token] = ACTIONS(91), + [aux_sym_insert_token1] = ACTIONS(93), + [aux_sym_delete_token1] = ACTIONS(95), + [aux_sym_highlight_token1] = ACTIONS(97), + [aux_sym_edit_comment_token1] = ACTIONS(99), + [anon_sym_CARET_LBRACK] = ACTIONS(101), + [anon_sym_LBRACK_CARET] = ACTIONS(103), + [sym_uri_autolink] = ACTIONS(75), + [sym_email_autolink] = ACTIONS(75), + [sym__whitespace_ge_2] = ACTIONS(105), + [aux_sym__whitespace_token1] = ACTIONS(107), + [sym__word_no_digit] = ACTIONS(109), + [sym__digits] = ACTIONS(109), + [anon_sym_DASH_DASH] = ACTIONS(111), + [anon_sym_DASH_DASH_DASH] = ACTIONS(109), + [anon_sym_DOT_DOT_DOT] = ACTIONS(109), + [sym__code_span_start] = ACTIONS(113), + [sym__emphasis_open_star] = ACTIONS(3201), + [sym__emphasis_open_underscore] = ACTIONS(3203), + [sym__strikeout_open] = ACTIONS(121), + [sym__latex_span_start] = ACTIONS(123), + [sym__single_quote_open] = ACTIONS(125), + [sym__double_quote_open] = ACTIONS(127), + [sym__superscript_open] = ACTIONS(129), + [sym__subscript_open] = ACTIONS(131), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(133), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(135), + [sym__cite_author_in_text] = ACTIONS(137), + [sym__cite_suppress_author] = ACTIONS(139), + [sym__shortcode_open_escaped] = ACTIONS(141), + [sym__shortcode_open] = ACTIONS(143), + [sym__unclosed_span] = ACTIONS(75), }, [STATE(354)] = { - [sym__qmd_attribute] = STATE(972), - [sym_raw_attribute] = STATE(972), - [sym_commonmark_attribute] = STATE(972), - [sym_language_attribute] = STATE(972), - [sym__backslash_escape] = ACTIONS(3705), - [sym_entity_reference] = ACTIONS(3705), - [sym_numeric_character_reference] = ACTIONS(3705), - [anon_sym_LT] = ACTIONS(3707), - [anon_sym_GT] = ACTIONS(3705), - [anon_sym_BANG] = ACTIONS(3705), - [anon_sym_DQUOTE] = ACTIONS(3705), - [anon_sym_POUND] = ACTIONS(3705), - [anon_sym_DOLLAR] = ACTIONS(3705), - [anon_sym_PERCENT] = ACTIONS(3705), - [anon_sym_AMP] = ACTIONS(3707), - [anon_sym_SQUOTE] = ACTIONS(3705), - [anon_sym_STAR] = ACTIONS(3705), - [anon_sym_PLUS] = ACTIONS(3705), - [anon_sym_COMMA] = ACTIONS(3705), - [anon_sym_DASH] = ACTIONS(3707), - [anon_sym_DOT] = ACTIONS(3707), - [anon_sym_SLASH] = ACTIONS(3705), - [anon_sym_COLON] = ACTIONS(3705), - [anon_sym_SEMI] = ACTIONS(3705), - [anon_sym_EQ] = ACTIONS(3705), - [anon_sym_QMARK] = ACTIONS(3705), - [anon_sym_LBRACK] = ACTIONS(3707), - [anon_sym_BSLASH] = ACTIONS(3707), - [anon_sym_CARET] = ACTIONS(3707), - [anon_sym__] = ACTIONS(3705), - [anon_sym_BQUOTE] = ACTIONS(3705), - [anon_sym_LBRACE] = ACTIONS(3713), - [anon_sym_PIPE] = ACTIONS(3705), - [anon_sym_TILDE] = ACTIONS(3705), - [anon_sym_LPAREN] = ACTIONS(3705), - [anon_sym_RPAREN] = ACTIONS(3705), - [sym__newline_token] = ACTIONS(3705), - [anon_sym_CARET_LBRACK] = ACTIONS(3705), - [anon_sym_LBRACK_CARET] = ACTIONS(3705), - [sym_uri_autolink] = ACTIONS(3705), - [sym_email_autolink] = ACTIONS(3705), - [sym__whitespace_ge_2] = ACTIONS(3705), - [aux_sym__whitespace_token1] = ACTIONS(3707), - [sym__word_no_digit] = ACTIONS(3705), - [sym__digits] = ACTIONS(3705), - [anon_sym_DASH_DASH] = ACTIONS(3707), - [anon_sym_DASH_DASH_DASH] = ACTIONS(3705), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3705), - [sym__code_span_start] = ACTIONS(3705), - [sym__emphasis_open_star] = ACTIONS(3705), - [sym__emphasis_open_underscore] = ACTIONS(3705), - [sym__emphasis_close_underscore] = ACTIONS(3705), - [sym__strikeout_open] = ACTIONS(3705), - [sym__latex_span_start] = ACTIONS(3705), - [sym__single_quote_open] = ACTIONS(3705), - [sym__double_quote_open] = ACTIONS(3705), - [sym__superscript_open] = ACTIONS(3705), - [sym__subscript_open] = ACTIONS(3705), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3705), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3705), - [sym__cite_author_in_text] = ACTIONS(3705), - [sym__cite_suppress_author] = ACTIONS(3705), - [sym__shortcode_open_escaped] = ACTIONS(3705), - [sym__shortcode_open] = ACTIONS(3705), - [sym__unclosed_span] = ACTIONS(3705), + [sym_backslash_escape] = STATE(370), + [sym_commonmark_attribute] = STATE(370), + [sym_code_span] = STATE(370), + [sym_latex_span] = STATE(370), + [sym_insert] = STATE(370), + [sym_delete] = STATE(370), + [sym_highlight] = STATE(370), + [sym_edit_comment] = STATE(370), + [sym_superscript] = STATE(370), + [sym_subscript] = STATE(370), + [sym_strikeout] = STATE(370), + [sym_quoted_span] = STATE(370), + [sym_inline_note] = STATE(370), + [sym_citation] = STATE(370), + [sym_shortcode_escaped] = STATE(370), + [sym_shortcode] = STATE(370), + [sym_note_reference] = STATE(370), + [sym_image] = STATE(370), + [sym__image_inline_link] = STATE(923), + [sym__image_description] = STATE(2342), + [sym__image_description_non_empty] = STATE(2342), + [sym_hard_line_break] = STATE(370), + [sym__whitespace] = STATE(920), + [sym__word] = STATE(920), + [sym__soft_line_break] = STATE(924), + [sym__inline_base] = STATE(1451), + [sym__text_base] = STATE(370), + [sym__inline_element_no_link] = STATE(1451), + [aux_sym__inline_no_link] = STATE(336), + [sym__emphasis_star_no_link] = STATE(1452), + [sym__strong_emphasis_star_no_link] = STATE(1451), + [sym__emphasis_underscore_no_link] = STATE(1452), + [sym__strong_emphasis_underscore_no_link] = STATE(1451), + [aux_sym__inline_base_repeat1] = STATE(370), + [sym__backslash_escape] = ACTIONS(73), + [sym_entity_reference] = ACTIONS(75), + [sym_numeric_character_reference] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_BANG] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_POUND] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(79), + [anon_sym_PERCENT] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_STAR] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_COMMA] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_DOT] = ACTIONS(77), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_COLON] = ACTIONS(79), + [anon_sym_SEMI] = ACTIONS(79), + [anon_sym_EQ] = ACTIONS(79), + [anon_sym_QMARK] = ACTIONS(79), + [anon_sym_BSLASH] = ACTIONS(85), + [anon_sym_RBRACK] = ACTIONS(3566), + [anon_sym_CARET] = ACTIONS(77), + [anon_sym__] = ACTIONS(79), + [anon_sym_BQUOTE] = ACTIONS(79), + [anon_sym_LBRACE] = ACTIONS(89), + [anon_sym_PIPE] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(79), + [anon_sym_RPAREN] = ACTIONS(79), + [sym__newline_token] = ACTIONS(91), + [aux_sym_insert_token1] = ACTIONS(93), + [aux_sym_delete_token1] = ACTIONS(95), + [aux_sym_highlight_token1] = ACTIONS(97), + [aux_sym_edit_comment_token1] = ACTIONS(99), + [anon_sym_CARET_LBRACK] = ACTIONS(101), + [anon_sym_LBRACK_CARET] = ACTIONS(103), + [sym_uri_autolink] = ACTIONS(75), + [sym_email_autolink] = ACTIONS(75), + [sym__whitespace_ge_2] = ACTIONS(105), + [aux_sym__whitespace_token1] = ACTIONS(107), + [sym__word_no_digit] = ACTIONS(109), + [sym__digits] = ACTIONS(109), + [anon_sym_DASH_DASH] = ACTIONS(111), + [anon_sym_DASH_DASH_DASH] = ACTIONS(109), + [anon_sym_DOT_DOT_DOT] = ACTIONS(109), + [sym__code_span_start] = ACTIONS(113), + [sym__emphasis_open_star] = ACTIONS(3201), + [sym__emphasis_open_underscore] = ACTIONS(3203), + [sym__strikeout_open] = ACTIONS(121), + [sym__latex_span_start] = ACTIONS(123), + [sym__single_quote_open] = ACTIONS(125), + [sym__double_quote_open] = ACTIONS(127), + [sym__superscript_open] = ACTIONS(129), + [sym__subscript_open] = ACTIONS(131), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(133), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(135), + [sym__cite_author_in_text] = ACTIONS(137), + [sym__cite_suppress_author] = ACTIONS(139), + [sym__shortcode_open_escaped] = ACTIONS(141), + [sym__shortcode_open] = ACTIONS(143), + [sym__unclosed_span] = ACTIONS(75), }, [STATE(355)] = { - [sym__qmd_attribute] = STATE(987), - [sym_raw_attribute] = STATE(987), - [sym_commonmark_attribute] = STATE(987), - [sym_language_attribute] = STATE(987), - [sym__backslash_escape] = ACTIONS(3629), - [sym_entity_reference] = ACTIONS(3629), - [sym_numeric_character_reference] = ACTIONS(3629), - [anon_sym_LT] = ACTIONS(3631), - [anon_sym_GT] = ACTIONS(3629), - [anon_sym_BANG] = ACTIONS(3629), - [anon_sym_DQUOTE] = ACTIONS(3629), - [anon_sym_POUND] = ACTIONS(3629), - [anon_sym_DOLLAR] = ACTIONS(3629), - [anon_sym_PERCENT] = ACTIONS(3629), - [anon_sym_AMP] = ACTIONS(3631), - [anon_sym_SQUOTE] = ACTIONS(3629), - [anon_sym_STAR] = ACTIONS(3629), - [anon_sym_PLUS] = ACTIONS(3629), - [anon_sym_COMMA] = ACTIONS(3629), - [anon_sym_DASH] = ACTIONS(3631), - [anon_sym_DOT] = ACTIONS(3631), - [anon_sym_SLASH] = ACTIONS(3629), - [anon_sym_COLON] = ACTIONS(3629), - [anon_sym_SEMI] = ACTIONS(3629), - [anon_sym_EQ] = ACTIONS(3629), - [anon_sym_QMARK] = ACTIONS(3629), - [anon_sym_LBRACK] = ACTIONS(3631), - [anon_sym_BSLASH] = ACTIONS(3631), - [anon_sym_CARET] = ACTIONS(3631), - [anon_sym__] = ACTIONS(3629), - [anon_sym_BQUOTE] = ACTIONS(3629), - [anon_sym_LBRACE] = ACTIONS(3713), - [anon_sym_PIPE] = ACTIONS(3629), - [anon_sym_TILDE] = ACTIONS(3629), - [anon_sym_LPAREN] = ACTIONS(3629), - [anon_sym_RPAREN] = ACTIONS(3629), - [sym__newline_token] = ACTIONS(3629), - [anon_sym_CARET_LBRACK] = ACTIONS(3629), - [anon_sym_LBRACK_CARET] = ACTIONS(3629), - [sym_uri_autolink] = ACTIONS(3629), - [sym_email_autolink] = ACTIONS(3629), - [sym__whitespace_ge_2] = ACTIONS(3629), - [aux_sym__whitespace_token1] = ACTIONS(3631), - [sym__word_no_digit] = ACTIONS(3629), - [sym__digits] = ACTIONS(3629), - [anon_sym_DASH_DASH] = ACTIONS(3631), - [anon_sym_DASH_DASH_DASH] = ACTIONS(3629), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3629), - [sym__code_span_start] = ACTIONS(3629), - [sym__emphasis_open_star] = ACTIONS(3629), - [sym__emphasis_open_underscore] = ACTIONS(3629), - [sym__emphasis_close_underscore] = ACTIONS(3629), - [sym__strikeout_open] = ACTIONS(3629), - [sym__latex_span_start] = ACTIONS(3629), - [sym__single_quote_open] = ACTIONS(3629), - [sym__double_quote_open] = ACTIONS(3629), - [sym__superscript_open] = ACTIONS(3629), - [sym__subscript_open] = ACTIONS(3629), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3629), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3629), - [sym__cite_author_in_text] = ACTIONS(3629), - [sym__cite_suppress_author] = ACTIONS(3629), - [sym__shortcode_open_escaped] = ACTIONS(3629), - [sym__shortcode_open] = ACTIONS(3629), - [sym__unclosed_span] = ACTIONS(3629), + [sym_backslash_escape] = STATE(370), + [sym_commonmark_attribute] = STATE(370), + [sym_code_span] = STATE(370), + [sym_latex_span] = STATE(370), + [sym_insert] = STATE(370), + [sym_delete] = STATE(370), + [sym_highlight] = STATE(370), + [sym_edit_comment] = STATE(370), + [sym_superscript] = STATE(370), + [sym_subscript] = STATE(370), + [sym_strikeout] = STATE(370), + [sym_quoted_span] = STATE(370), + [sym_inline_note] = STATE(370), + [sym_citation] = STATE(370), + [sym_shortcode_escaped] = STATE(370), + [sym_shortcode] = STATE(370), + [sym_note_reference] = STATE(370), + [sym_image] = STATE(370), + [sym__image_inline_link] = STATE(923), + [sym__image_description] = STATE(2342), + [sym__image_description_non_empty] = STATE(2342), + [sym_hard_line_break] = STATE(370), + [sym__whitespace] = STATE(920), + [sym__word] = STATE(920), + [sym__soft_line_break] = STATE(924), + [sym__inline_base] = STATE(1451), + [sym__text_base] = STATE(370), + [sym__inline_element_no_link] = STATE(1451), + [aux_sym__inline_no_link] = STATE(356), + [sym__emphasis_star_no_link] = STATE(1452), + [sym__strong_emphasis_star_no_link] = STATE(1451), + [sym__emphasis_underscore_no_link] = STATE(1452), + [sym__strong_emphasis_underscore_no_link] = STATE(1451), + [aux_sym__inline_base_repeat1] = STATE(370), + [sym__backslash_escape] = ACTIONS(73), + [sym_entity_reference] = ACTIONS(75), + [sym_numeric_character_reference] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_BANG] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_POUND] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(79), + [anon_sym_PERCENT] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_STAR] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_COMMA] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_DOT] = ACTIONS(77), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_COLON] = ACTIONS(79), + [anon_sym_SEMI] = ACTIONS(79), + [anon_sym_EQ] = ACTIONS(79), + [anon_sym_QMARK] = ACTIONS(79), + [anon_sym_BSLASH] = ACTIONS(85), + [anon_sym_RBRACK] = ACTIONS(3568), + [anon_sym_CARET] = ACTIONS(77), + [anon_sym__] = ACTIONS(79), + [anon_sym_BQUOTE] = ACTIONS(79), + [anon_sym_LBRACE] = ACTIONS(89), + [anon_sym_PIPE] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(79), + [anon_sym_RPAREN] = ACTIONS(79), + [sym__newline_token] = ACTIONS(91), + [aux_sym_insert_token1] = ACTIONS(93), + [aux_sym_delete_token1] = ACTIONS(95), + [aux_sym_highlight_token1] = ACTIONS(97), + [aux_sym_edit_comment_token1] = ACTIONS(99), + [anon_sym_CARET_LBRACK] = ACTIONS(101), + [anon_sym_LBRACK_CARET] = ACTIONS(103), + [sym_uri_autolink] = ACTIONS(75), + [sym_email_autolink] = ACTIONS(75), + [sym__whitespace_ge_2] = ACTIONS(105), + [aux_sym__whitespace_token1] = ACTIONS(107), + [sym__word_no_digit] = ACTIONS(109), + [sym__digits] = ACTIONS(109), + [anon_sym_DASH_DASH] = ACTIONS(111), + [anon_sym_DASH_DASH_DASH] = ACTIONS(109), + [anon_sym_DOT_DOT_DOT] = ACTIONS(109), + [sym__code_span_start] = ACTIONS(113), + [sym__emphasis_open_star] = ACTIONS(3201), + [sym__emphasis_open_underscore] = ACTIONS(3203), + [sym__strikeout_open] = ACTIONS(121), + [sym__latex_span_start] = ACTIONS(123), + [sym__single_quote_open] = ACTIONS(125), + [sym__double_quote_open] = ACTIONS(127), + [sym__superscript_open] = ACTIONS(129), + [sym__subscript_open] = ACTIONS(131), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(133), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(135), + [sym__cite_author_in_text] = ACTIONS(137), + [sym__cite_suppress_author] = ACTIONS(139), + [sym__shortcode_open_escaped] = ACTIONS(141), + [sym__shortcode_open] = ACTIONS(143), + [sym__unclosed_span] = ACTIONS(75), }, [STATE(356)] = { - [sym__qmd_attribute] = STATE(784), - [sym_raw_attribute] = STATE(784), - [sym_commonmark_attribute] = STATE(784), - [sym_language_attribute] = STATE(784), - [sym__backslash_escape] = ACTIONS(3683), - [sym_entity_reference] = ACTIONS(3683), - [sym_numeric_character_reference] = ACTIONS(3683), - [anon_sym_LT] = ACTIONS(3685), - [anon_sym_GT] = ACTIONS(3683), - [anon_sym_BANG] = ACTIONS(3683), - [anon_sym_DQUOTE] = ACTIONS(3683), - [anon_sym_POUND] = ACTIONS(3683), - [anon_sym_DOLLAR] = ACTIONS(3683), - [anon_sym_PERCENT] = ACTIONS(3683), - [anon_sym_AMP] = ACTIONS(3685), - [anon_sym_SQUOTE] = ACTIONS(3683), - [anon_sym_STAR] = ACTIONS(3683), - [anon_sym_PLUS] = ACTIONS(3683), - [anon_sym_COMMA] = ACTIONS(3683), - [anon_sym_DASH] = ACTIONS(3685), - [anon_sym_DOT] = ACTIONS(3685), - [anon_sym_SLASH] = ACTIONS(3683), - [anon_sym_COLON] = ACTIONS(3683), - [anon_sym_SEMI] = ACTIONS(3683), - [anon_sym_EQ] = ACTIONS(3683), - [anon_sym_QMARK] = ACTIONS(3683), - [anon_sym_LBRACK] = ACTIONS(3685), - [anon_sym_BSLASH] = ACTIONS(3685), - [anon_sym_CARET] = ACTIONS(3685), - [anon_sym__] = ACTIONS(3683), - [anon_sym_BQUOTE] = ACTIONS(3683), - [anon_sym_LBRACE] = ACTIONS(3701), - [anon_sym_PIPE] = ACTIONS(3683), - [anon_sym_TILDE] = ACTIONS(3683), - [anon_sym_LPAREN] = ACTIONS(3683), - [anon_sym_RPAREN] = ACTIONS(3683), - [sym__newline_token] = ACTIONS(3683), - [anon_sym_CARET_LBRACK] = ACTIONS(3683), - [anon_sym_LBRACK_CARET] = ACTIONS(3683), - [sym_uri_autolink] = ACTIONS(3683), - [sym_email_autolink] = ACTIONS(3683), - [sym__whitespace_ge_2] = ACTIONS(3683), - [aux_sym__whitespace_token1] = ACTIONS(3685), - [sym__word_no_digit] = ACTIONS(3683), - [sym__digits] = ACTIONS(3683), - [anon_sym_DASH_DASH] = ACTIONS(3685), - [anon_sym_DASH_DASH_DASH] = ACTIONS(3683), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3683), - [sym__code_span_start] = ACTIONS(3683), - [sym__emphasis_open_star] = ACTIONS(3683), - [sym__emphasis_open_underscore] = ACTIONS(3683), - [sym__strikeout_open] = ACTIONS(3683), - [sym__latex_span_start] = ACTIONS(3683), - [sym__single_quote_open] = ACTIONS(3683), - [sym__double_quote_open] = ACTIONS(3683), - [sym__superscript_open] = ACTIONS(3683), - [sym__superscript_close] = ACTIONS(3683), - [sym__subscript_open] = ACTIONS(3683), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3683), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3683), - [sym__cite_author_in_text] = ACTIONS(3683), - [sym__cite_suppress_author] = ACTIONS(3683), - [sym__shortcode_open_escaped] = ACTIONS(3683), - [sym__shortcode_open] = ACTIONS(3683), - [sym__unclosed_span] = ACTIONS(3683), + [sym_backslash_escape] = STATE(370), + [sym_commonmark_attribute] = STATE(370), + [sym_code_span] = STATE(370), + [sym_latex_span] = STATE(370), + [sym_insert] = STATE(370), + [sym_delete] = STATE(370), + [sym_highlight] = STATE(370), + [sym_edit_comment] = STATE(370), + [sym_superscript] = STATE(370), + [sym_subscript] = STATE(370), + [sym_strikeout] = STATE(370), + [sym_quoted_span] = STATE(370), + [sym_inline_note] = STATE(370), + [sym_citation] = STATE(370), + [sym_shortcode_escaped] = STATE(370), + [sym_shortcode] = STATE(370), + [sym_note_reference] = STATE(370), + [sym_image] = STATE(370), + [sym__image_inline_link] = STATE(923), + [sym__image_description] = STATE(2342), + [sym__image_description_non_empty] = STATE(2342), + [sym_hard_line_break] = STATE(370), + [sym__whitespace] = STATE(920), + [sym__word] = STATE(920), + [sym__soft_line_break] = STATE(924), + [sym__inline_base] = STATE(1451), + [sym__text_base] = STATE(370), + [sym__inline_element_no_link] = STATE(1451), + [aux_sym__inline_no_link] = STATE(336), + [sym__emphasis_star_no_link] = STATE(1452), + [sym__strong_emphasis_star_no_link] = STATE(1451), + [sym__emphasis_underscore_no_link] = STATE(1452), + [sym__strong_emphasis_underscore_no_link] = STATE(1451), + [aux_sym__inline_base_repeat1] = STATE(370), + [sym__backslash_escape] = ACTIONS(73), + [sym_entity_reference] = ACTIONS(75), + [sym_numeric_character_reference] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_BANG] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_POUND] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(79), + [anon_sym_PERCENT] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_STAR] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_COMMA] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_DOT] = ACTIONS(77), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_COLON] = ACTIONS(79), + [anon_sym_SEMI] = ACTIONS(79), + [anon_sym_EQ] = ACTIONS(79), + [anon_sym_QMARK] = ACTIONS(79), + [anon_sym_BSLASH] = ACTIONS(85), + [anon_sym_RBRACK] = ACTIONS(3570), + [anon_sym_CARET] = ACTIONS(77), + [anon_sym__] = ACTIONS(79), + [anon_sym_BQUOTE] = ACTIONS(79), + [anon_sym_LBRACE] = ACTIONS(89), + [anon_sym_PIPE] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(79), + [anon_sym_RPAREN] = ACTIONS(79), + [sym__newline_token] = ACTIONS(91), + [aux_sym_insert_token1] = ACTIONS(93), + [aux_sym_delete_token1] = ACTIONS(95), + [aux_sym_highlight_token1] = ACTIONS(97), + [aux_sym_edit_comment_token1] = ACTIONS(99), + [anon_sym_CARET_LBRACK] = ACTIONS(101), + [anon_sym_LBRACK_CARET] = ACTIONS(103), + [sym_uri_autolink] = ACTIONS(75), + [sym_email_autolink] = ACTIONS(75), + [sym__whitespace_ge_2] = ACTIONS(105), + [aux_sym__whitespace_token1] = ACTIONS(107), + [sym__word_no_digit] = ACTIONS(109), + [sym__digits] = ACTIONS(109), + [anon_sym_DASH_DASH] = ACTIONS(111), + [anon_sym_DASH_DASH_DASH] = ACTIONS(109), + [anon_sym_DOT_DOT_DOT] = ACTIONS(109), + [sym__code_span_start] = ACTIONS(113), + [sym__emphasis_open_star] = ACTIONS(3201), + [sym__emphasis_open_underscore] = ACTIONS(3203), + [sym__strikeout_open] = ACTIONS(121), + [sym__latex_span_start] = ACTIONS(123), + [sym__single_quote_open] = ACTIONS(125), + [sym__double_quote_open] = ACTIONS(127), + [sym__superscript_open] = ACTIONS(129), + [sym__subscript_open] = ACTIONS(131), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(133), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(135), + [sym__cite_author_in_text] = ACTIONS(137), + [sym__cite_suppress_author] = ACTIONS(139), + [sym__shortcode_open_escaped] = ACTIONS(141), + [sym__shortcode_open] = ACTIONS(143), + [sym__unclosed_span] = ACTIONS(75), }, [STATE(357)] = { - [sym__qmd_attribute] = STATE(785), - [sym_raw_attribute] = STATE(785), - [sym_commonmark_attribute] = STATE(785), - [sym_language_attribute] = STATE(785), - [sym__backslash_escape] = ACTIONS(3687), - [sym_entity_reference] = ACTIONS(3687), - [sym_numeric_character_reference] = ACTIONS(3687), - [anon_sym_LT] = ACTIONS(3689), - [anon_sym_GT] = ACTIONS(3687), - [anon_sym_BANG] = ACTIONS(3687), - [anon_sym_DQUOTE] = ACTIONS(3687), - [anon_sym_POUND] = ACTIONS(3687), - [anon_sym_DOLLAR] = ACTIONS(3687), - [anon_sym_PERCENT] = ACTIONS(3687), - [anon_sym_AMP] = ACTIONS(3689), - [anon_sym_SQUOTE] = ACTIONS(3687), - [anon_sym_STAR] = ACTIONS(3687), - [anon_sym_PLUS] = ACTIONS(3687), - [anon_sym_COMMA] = ACTIONS(3687), - [anon_sym_DASH] = ACTIONS(3689), - [anon_sym_DOT] = ACTIONS(3689), - [anon_sym_SLASH] = ACTIONS(3687), - [anon_sym_COLON] = ACTIONS(3687), - [anon_sym_SEMI] = ACTIONS(3687), - [anon_sym_EQ] = ACTIONS(3687), - [anon_sym_QMARK] = ACTIONS(3687), - [anon_sym_LBRACK] = ACTIONS(3689), - [anon_sym_BSLASH] = ACTIONS(3689), - [anon_sym_CARET] = ACTIONS(3689), - [anon_sym__] = ACTIONS(3687), - [anon_sym_BQUOTE] = ACTIONS(3687), - [anon_sym_LBRACE] = ACTIONS(3701), - [anon_sym_PIPE] = ACTIONS(3687), - [anon_sym_TILDE] = ACTIONS(3687), - [anon_sym_LPAREN] = ACTIONS(3687), - [anon_sym_RPAREN] = ACTIONS(3687), - [sym__newline_token] = ACTIONS(3687), - [anon_sym_CARET_LBRACK] = ACTIONS(3687), - [anon_sym_LBRACK_CARET] = ACTIONS(3687), - [sym_uri_autolink] = ACTIONS(3687), - [sym_email_autolink] = ACTIONS(3687), - [sym__whitespace_ge_2] = ACTIONS(3687), - [aux_sym__whitespace_token1] = ACTIONS(3689), - [sym__word_no_digit] = ACTIONS(3687), - [sym__digits] = ACTIONS(3687), - [anon_sym_DASH_DASH] = ACTIONS(3689), - [anon_sym_DASH_DASH_DASH] = ACTIONS(3687), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3687), - [sym__code_span_start] = ACTIONS(3687), - [sym__emphasis_open_star] = ACTIONS(3687), - [sym__emphasis_open_underscore] = ACTIONS(3687), - [sym__strikeout_open] = ACTIONS(3687), - [sym__latex_span_start] = ACTIONS(3687), - [sym__single_quote_open] = ACTIONS(3687), - [sym__double_quote_open] = ACTIONS(3687), - [sym__superscript_open] = ACTIONS(3687), - [sym__superscript_close] = ACTIONS(3687), - [sym__subscript_open] = ACTIONS(3687), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3687), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3687), - [sym__cite_author_in_text] = ACTIONS(3687), - [sym__cite_suppress_author] = ACTIONS(3687), - [sym__shortcode_open_escaped] = ACTIONS(3687), - [sym__shortcode_open] = ACTIONS(3687), - [sym__unclosed_span] = ACTIONS(3687), + [sym_backslash_escape] = STATE(370), + [sym_commonmark_attribute] = STATE(370), + [sym_code_span] = STATE(370), + [sym_latex_span] = STATE(370), + [sym_insert] = STATE(370), + [sym_delete] = STATE(370), + [sym_highlight] = STATE(370), + [sym_edit_comment] = STATE(370), + [sym_superscript] = STATE(370), + [sym_subscript] = STATE(370), + [sym_strikeout] = STATE(370), + [sym_quoted_span] = STATE(370), + [sym_inline_note] = STATE(370), + [sym_citation] = STATE(370), + [sym_shortcode_escaped] = STATE(370), + [sym_shortcode] = STATE(370), + [sym_note_reference] = STATE(370), + [sym_image] = STATE(370), + [sym__image_inline_link] = STATE(923), + [sym__image_description] = STATE(2342), + [sym__image_description_non_empty] = STATE(2342), + [sym_hard_line_break] = STATE(370), + [sym__whitespace] = STATE(920), + [sym__word] = STATE(920), + [sym__soft_line_break] = STATE(924), + [sym__inline_base] = STATE(1451), + [sym__text_base] = STATE(370), + [sym__inline_element_no_link] = STATE(1451), + [aux_sym__inline_no_link] = STATE(358), + [sym__emphasis_star_no_link] = STATE(1452), + [sym__strong_emphasis_star_no_link] = STATE(1451), + [sym__emphasis_underscore_no_link] = STATE(1452), + [sym__strong_emphasis_underscore_no_link] = STATE(1451), + [aux_sym__inline_base_repeat1] = STATE(370), + [sym__backslash_escape] = ACTIONS(73), + [sym_entity_reference] = ACTIONS(75), + [sym_numeric_character_reference] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_BANG] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_POUND] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(79), + [anon_sym_PERCENT] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_STAR] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_COMMA] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_DOT] = ACTIONS(77), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_COLON] = ACTIONS(79), + [anon_sym_SEMI] = ACTIONS(79), + [anon_sym_EQ] = ACTIONS(79), + [anon_sym_QMARK] = ACTIONS(79), + [anon_sym_BSLASH] = ACTIONS(85), + [anon_sym_RBRACK] = ACTIONS(3572), + [anon_sym_CARET] = ACTIONS(77), + [anon_sym__] = ACTIONS(79), + [anon_sym_BQUOTE] = ACTIONS(79), + [anon_sym_LBRACE] = ACTIONS(89), + [anon_sym_PIPE] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(79), + [anon_sym_RPAREN] = ACTIONS(79), + [sym__newline_token] = ACTIONS(91), + [aux_sym_insert_token1] = ACTIONS(93), + [aux_sym_delete_token1] = ACTIONS(95), + [aux_sym_highlight_token1] = ACTIONS(97), + [aux_sym_edit_comment_token1] = ACTIONS(99), + [anon_sym_CARET_LBRACK] = ACTIONS(101), + [anon_sym_LBRACK_CARET] = ACTIONS(103), + [sym_uri_autolink] = ACTIONS(75), + [sym_email_autolink] = ACTIONS(75), + [sym__whitespace_ge_2] = ACTIONS(105), + [aux_sym__whitespace_token1] = ACTIONS(107), + [sym__word_no_digit] = ACTIONS(109), + [sym__digits] = ACTIONS(109), + [anon_sym_DASH_DASH] = ACTIONS(111), + [anon_sym_DASH_DASH_DASH] = ACTIONS(109), + [anon_sym_DOT_DOT_DOT] = ACTIONS(109), + [sym__code_span_start] = ACTIONS(113), + [sym__emphasis_open_star] = ACTIONS(3201), + [sym__emphasis_open_underscore] = ACTIONS(3203), + [sym__strikeout_open] = ACTIONS(121), + [sym__latex_span_start] = ACTIONS(123), + [sym__single_quote_open] = ACTIONS(125), + [sym__double_quote_open] = ACTIONS(127), + [sym__superscript_open] = ACTIONS(129), + [sym__subscript_open] = ACTIONS(131), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(133), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(135), + [sym__cite_author_in_text] = ACTIONS(137), + [sym__cite_suppress_author] = ACTIONS(139), + [sym__shortcode_open_escaped] = ACTIONS(141), + [sym__shortcode_open] = ACTIONS(143), + [sym__unclosed_span] = ACTIONS(75), }, [STATE(358)] = { - [sym__qmd_attribute] = STATE(993), - [sym_raw_attribute] = STATE(993), - [sym_commonmark_attribute] = STATE(993), - [sym_language_attribute] = STATE(993), - [sym__backslash_escape] = ACTIONS(3643), - [sym_entity_reference] = ACTIONS(3643), - [sym_numeric_character_reference] = ACTIONS(3643), - [anon_sym_LT] = ACTIONS(3645), - [anon_sym_GT] = ACTIONS(3643), - [anon_sym_BANG] = ACTIONS(3643), - [anon_sym_DQUOTE] = ACTIONS(3643), - [anon_sym_POUND] = ACTIONS(3643), - [anon_sym_DOLLAR] = ACTIONS(3643), - [anon_sym_PERCENT] = ACTIONS(3643), - [anon_sym_AMP] = ACTIONS(3645), - [anon_sym_SQUOTE] = ACTIONS(3643), - [anon_sym_STAR] = ACTIONS(3643), - [anon_sym_PLUS] = ACTIONS(3643), - [anon_sym_COMMA] = ACTIONS(3643), - [anon_sym_DASH] = ACTIONS(3645), - [anon_sym_DOT] = ACTIONS(3645), - [anon_sym_SLASH] = ACTIONS(3643), - [anon_sym_COLON] = ACTIONS(3643), - [anon_sym_SEMI] = ACTIONS(3643), - [anon_sym_EQ] = ACTIONS(3643), - [anon_sym_QMARK] = ACTIONS(3643), - [anon_sym_LBRACK] = ACTIONS(3645), - [anon_sym_BSLASH] = ACTIONS(3645), - [anon_sym_CARET] = ACTIONS(3645), - [anon_sym__] = ACTIONS(3643), - [anon_sym_BQUOTE] = ACTIONS(3643), - [anon_sym_LBRACE] = ACTIONS(3713), - [anon_sym_PIPE] = ACTIONS(3643), - [anon_sym_TILDE] = ACTIONS(3643), - [anon_sym_LPAREN] = ACTIONS(3643), - [anon_sym_RPAREN] = ACTIONS(3643), - [sym__newline_token] = ACTIONS(3643), - [anon_sym_CARET_LBRACK] = ACTIONS(3643), - [anon_sym_LBRACK_CARET] = ACTIONS(3643), - [sym_uri_autolink] = ACTIONS(3643), - [sym_email_autolink] = ACTIONS(3643), - [sym__whitespace_ge_2] = ACTIONS(3643), - [aux_sym__whitespace_token1] = ACTIONS(3645), - [sym__word_no_digit] = ACTIONS(3643), - [sym__digits] = ACTIONS(3643), - [anon_sym_DASH_DASH] = ACTIONS(3645), - [anon_sym_DASH_DASH_DASH] = ACTIONS(3643), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3643), - [sym__code_span_start] = ACTIONS(3643), - [sym__emphasis_open_star] = ACTIONS(3643), - [sym__emphasis_open_underscore] = ACTIONS(3643), - [sym__emphasis_close_underscore] = ACTIONS(3643), - [sym__strikeout_open] = ACTIONS(3643), - [sym__latex_span_start] = ACTIONS(3643), - [sym__single_quote_open] = ACTIONS(3643), - [sym__double_quote_open] = ACTIONS(3643), - [sym__superscript_open] = ACTIONS(3643), - [sym__subscript_open] = ACTIONS(3643), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3643), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3643), - [sym__cite_author_in_text] = ACTIONS(3643), - [sym__cite_suppress_author] = ACTIONS(3643), - [sym__shortcode_open_escaped] = ACTIONS(3643), - [sym__shortcode_open] = ACTIONS(3643), - [sym__unclosed_span] = ACTIONS(3643), + [sym_backslash_escape] = STATE(370), + [sym_commonmark_attribute] = STATE(370), + [sym_code_span] = STATE(370), + [sym_latex_span] = STATE(370), + [sym_insert] = STATE(370), + [sym_delete] = STATE(370), + [sym_highlight] = STATE(370), + [sym_edit_comment] = STATE(370), + [sym_superscript] = STATE(370), + [sym_subscript] = STATE(370), + [sym_strikeout] = STATE(370), + [sym_quoted_span] = STATE(370), + [sym_inline_note] = STATE(370), + [sym_citation] = STATE(370), + [sym_shortcode_escaped] = STATE(370), + [sym_shortcode] = STATE(370), + [sym_note_reference] = STATE(370), + [sym_image] = STATE(370), + [sym__image_inline_link] = STATE(923), + [sym__image_description] = STATE(2342), + [sym__image_description_non_empty] = STATE(2342), + [sym_hard_line_break] = STATE(370), + [sym__whitespace] = STATE(920), + [sym__word] = STATE(920), + [sym__soft_line_break] = STATE(924), + [sym__inline_base] = STATE(1451), + [sym__text_base] = STATE(370), + [sym__inline_element_no_link] = STATE(1451), + [aux_sym__inline_no_link] = STATE(336), + [sym__emphasis_star_no_link] = STATE(1452), + [sym__strong_emphasis_star_no_link] = STATE(1451), + [sym__emphasis_underscore_no_link] = STATE(1452), + [sym__strong_emphasis_underscore_no_link] = STATE(1451), + [aux_sym__inline_base_repeat1] = STATE(370), + [sym__backslash_escape] = ACTIONS(73), + [sym_entity_reference] = ACTIONS(75), + [sym_numeric_character_reference] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_BANG] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_POUND] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(79), + [anon_sym_PERCENT] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_STAR] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_COMMA] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_DOT] = ACTIONS(77), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_COLON] = ACTIONS(79), + [anon_sym_SEMI] = ACTIONS(79), + [anon_sym_EQ] = ACTIONS(79), + [anon_sym_QMARK] = ACTIONS(79), + [anon_sym_BSLASH] = ACTIONS(85), + [anon_sym_RBRACK] = ACTIONS(3574), + [anon_sym_CARET] = ACTIONS(77), + [anon_sym__] = ACTIONS(79), + [anon_sym_BQUOTE] = ACTIONS(79), + [anon_sym_LBRACE] = ACTIONS(89), + [anon_sym_PIPE] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(79), + [anon_sym_RPAREN] = ACTIONS(79), + [sym__newline_token] = ACTIONS(91), + [aux_sym_insert_token1] = ACTIONS(93), + [aux_sym_delete_token1] = ACTIONS(95), + [aux_sym_highlight_token1] = ACTIONS(97), + [aux_sym_edit_comment_token1] = ACTIONS(99), + [anon_sym_CARET_LBRACK] = ACTIONS(101), + [anon_sym_LBRACK_CARET] = ACTIONS(103), + [sym_uri_autolink] = ACTIONS(75), + [sym_email_autolink] = ACTIONS(75), + [sym__whitespace_ge_2] = ACTIONS(105), + [aux_sym__whitespace_token1] = ACTIONS(107), + [sym__word_no_digit] = ACTIONS(109), + [sym__digits] = ACTIONS(109), + [anon_sym_DASH_DASH] = ACTIONS(111), + [anon_sym_DASH_DASH_DASH] = ACTIONS(109), + [anon_sym_DOT_DOT_DOT] = ACTIONS(109), + [sym__code_span_start] = ACTIONS(113), + [sym__emphasis_open_star] = ACTIONS(3201), + [sym__emphasis_open_underscore] = ACTIONS(3203), + [sym__strikeout_open] = ACTIONS(121), + [sym__latex_span_start] = ACTIONS(123), + [sym__single_quote_open] = ACTIONS(125), + [sym__double_quote_open] = ACTIONS(127), + [sym__superscript_open] = ACTIONS(129), + [sym__subscript_open] = ACTIONS(131), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(133), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(135), + [sym__cite_author_in_text] = ACTIONS(137), + [sym__cite_suppress_author] = ACTIONS(139), + [sym__shortcode_open_escaped] = ACTIONS(141), + [sym__shortcode_open] = ACTIONS(143), + [sym__unclosed_span] = ACTIONS(75), }, [STATE(359)] = { - [sym__qmd_attribute] = STATE(813), - [sym_raw_attribute] = STATE(813), - [sym_commonmark_attribute] = STATE(813), - [sym_language_attribute] = STATE(813), - [sym__backslash_escape] = ACTIONS(3691), - [sym_entity_reference] = ACTIONS(3691), - [sym_numeric_character_reference] = ACTIONS(3691), - [anon_sym_LT] = ACTIONS(3693), - [anon_sym_GT] = ACTIONS(3691), - [anon_sym_BANG] = ACTIONS(3691), - [anon_sym_DQUOTE] = ACTIONS(3691), - [anon_sym_POUND] = ACTIONS(3691), - [anon_sym_DOLLAR] = ACTIONS(3691), - [anon_sym_PERCENT] = ACTIONS(3691), - [anon_sym_AMP] = ACTIONS(3693), - [anon_sym_SQUOTE] = ACTIONS(3691), - [anon_sym_STAR] = ACTIONS(3691), - [anon_sym_PLUS] = ACTIONS(3691), - [anon_sym_COMMA] = ACTIONS(3691), - [anon_sym_DASH] = ACTIONS(3693), - [anon_sym_DOT] = ACTIONS(3693), - [anon_sym_SLASH] = ACTIONS(3691), - [anon_sym_COLON] = ACTIONS(3691), - [anon_sym_SEMI] = ACTIONS(3691), - [anon_sym_EQ] = ACTIONS(3691), - [anon_sym_QMARK] = ACTIONS(3691), - [anon_sym_LBRACK] = ACTIONS(3693), - [anon_sym_BSLASH] = ACTIONS(3693), - [anon_sym_CARET] = ACTIONS(3693), - [anon_sym__] = ACTIONS(3691), - [anon_sym_BQUOTE] = ACTIONS(3691), - [anon_sym_LBRACE] = ACTIONS(3717), - [anon_sym_PIPE] = ACTIONS(3691), - [anon_sym_TILDE] = ACTIONS(3691), - [anon_sym_LPAREN] = ACTIONS(3719), - [anon_sym_RPAREN] = ACTIONS(3691), - [sym__newline_token] = ACTIONS(3691), - [anon_sym_CARET_LBRACK] = ACTIONS(3691), - [anon_sym_LBRACK_CARET] = ACTIONS(3691), - [sym_uri_autolink] = ACTIONS(3691), - [sym_email_autolink] = ACTIONS(3691), - [sym__whitespace_ge_2] = ACTIONS(3691), - [aux_sym__whitespace_token1] = ACTIONS(3693), - [sym__word_no_digit] = ACTIONS(3691), - [sym__digits] = ACTIONS(3691), - [anon_sym_DASH_DASH] = ACTIONS(3693), - [anon_sym_DASH_DASH_DASH] = ACTIONS(3691), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3691), - [sym__code_span_start] = ACTIONS(3691), - [sym__emphasis_open_star] = ACTIONS(3691), - [sym__emphasis_open_underscore] = ACTIONS(3691), - [sym__strikeout_open] = ACTIONS(3691), - [sym__latex_span_start] = ACTIONS(3691), - [sym__single_quote_open] = ACTIONS(3691), - [sym__double_quote_open] = ACTIONS(3691), - [sym__superscript_open] = ACTIONS(3691), - [sym__subscript_open] = ACTIONS(3691), - [sym__subscript_close] = ACTIONS(3691), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3691), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3691), - [sym__cite_author_in_text] = ACTIONS(3691), - [sym__cite_suppress_author] = ACTIONS(3691), - [sym__shortcode_open_escaped] = ACTIONS(3691), - [sym__shortcode_open] = ACTIONS(3691), - [sym__unclosed_span] = ACTIONS(3691), + [sym_backslash_escape] = STATE(379), + [sym_commonmark_attribute] = STATE(379), + [sym_code_span] = STATE(379), + [sym_latex_span] = STATE(379), + [sym_insert] = STATE(379), + [sym_delete] = STATE(379), + [sym_highlight] = STATE(379), + [sym_edit_comment] = STATE(379), + [sym_superscript] = STATE(379), + [sym_subscript] = STATE(379), + [sym_strikeout] = STATE(379), + [sym_quoted_span] = STATE(379), + [sym_inline_note] = STATE(379), + [sym_citation] = STATE(379), + [sym_shortcode_escaped] = STATE(379), + [sym_shortcode] = STATE(379), + [sym_note_reference] = STATE(379), + [sym_image] = STATE(379), + [sym__image_inline_link] = STATE(1390), + [sym__image_description] = STATE(2363), + [sym__image_description_non_empty] = STATE(2363), + [sym_hard_line_break] = STATE(379), + [sym__whitespace] = STATE(1385), + [sym__word] = STATE(1385), + [sym__soft_line_break] = STATE(1391), + [sym__inline_base] = STATE(328), + [sym__text_base] = STATE(379), + [sym__inline_element_no_underscore_no_link] = STATE(328), + [aux_sym__inline_no_underscore_no_link] = STATE(328), + [sym__emphasis_star_no_link] = STATE(1442), + [sym__strong_emphasis_star_no_link] = STATE(328), + [sym__emphasis_underscore_no_link] = STATE(1442), + [sym__strong_emphasis_underscore_no_link] = STATE(328), + [aux_sym__inline_base_repeat1] = STATE(379), + [sym__backslash_escape] = ACTIONS(1059), + [sym_entity_reference] = ACTIONS(1061), + [sym_numeric_character_reference] = ACTIONS(1061), + [anon_sym_LT] = ACTIONS(1063), + [anon_sym_GT] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1067), + [anon_sym_DQUOTE] = ACTIONS(1065), + [anon_sym_POUND] = ACTIONS(1065), + [anon_sym_DOLLAR] = ACTIONS(1065), + [anon_sym_PERCENT] = ACTIONS(1065), + [anon_sym_AMP] = ACTIONS(1063), + [anon_sym_SQUOTE] = ACTIONS(1065), + [anon_sym_STAR] = ACTIONS(1065), + [anon_sym_PLUS] = ACTIONS(1065), + [anon_sym_COMMA] = ACTIONS(1065), + [anon_sym_DASH] = ACTIONS(1063), + [anon_sym_DOT] = ACTIONS(1063), + [anon_sym_SLASH] = ACTIONS(1065), + [anon_sym_COLON] = ACTIONS(1065), + [anon_sym_SEMI] = ACTIONS(1065), + [anon_sym_EQ] = ACTIONS(1065), + [anon_sym_QMARK] = ACTIONS(1065), + [anon_sym_BSLASH] = ACTIONS(1071), + [anon_sym_CARET] = ACTIONS(1063), + [anon_sym__] = ACTIONS(1065), + [anon_sym_BQUOTE] = ACTIONS(1065), + [anon_sym_LBRACE] = ACTIONS(1073), + [anon_sym_PIPE] = ACTIONS(1065), + [anon_sym_TILDE] = ACTIONS(1065), + [anon_sym_LPAREN] = ACTIONS(1065), + [anon_sym_RPAREN] = ACTIONS(1065), + [sym__newline_token] = ACTIONS(1075), + [aux_sym_insert_token1] = ACTIONS(1077), + [aux_sym_delete_token1] = ACTIONS(1079), + [aux_sym_highlight_token1] = ACTIONS(1081), + [aux_sym_edit_comment_token1] = ACTIONS(1083), + [anon_sym_CARET_LBRACK] = ACTIONS(1085), + [anon_sym_LBRACK_CARET] = ACTIONS(1087), + [sym_uri_autolink] = ACTIONS(1061), + [sym_email_autolink] = ACTIONS(1061), + [sym__whitespace_ge_2] = ACTIONS(1089), + [aux_sym__whitespace_token1] = ACTIONS(1091), + [sym__word_no_digit] = ACTIONS(1093), + [sym__digits] = ACTIONS(1093), + [anon_sym_DASH_DASH] = ACTIONS(1095), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1093), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1093), + [sym__code_span_start] = ACTIONS(1097), + [sym__emphasis_open_star] = ACTIONS(3193), + [sym__emphasis_open_underscore] = ACTIONS(3195), + [sym__strikeout_open] = ACTIONS(1105), + [sym__latex_span_start] = ACTIONS(1107), + [sym__single_quote_open] = ACTIONS(1109), + [sym__double_quote_open] = ACTIONS(1111), + [sym__superscript_open] = ACTIONS(1113), + [sym__subscript_open] = ACTIONS(1115), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1117), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1119), + [sym__cite_author_in_text] = ACTIONS(1121), + [sym__cite_suppress_author] = ACTIONS(1123), + [sym__shortcode_open_escaped] = ACTIONS(1125), + [sym__shortcode_open] = ACTIONS(1127), + [sym__unclosed_span] = ACTIONS(1061), }, [STATE(360)] = { - [sym__qmd_attribute] = STATE(1004), - [sym_raw_attribute] = STATE(1004), - [sym_commonmark_attribute] = STATE(1004), - [sym_language_attribute] = STATE(1004), - [sym__backslash_escape] = ACTIONS(3647), - [sym_entity_reference] = ACTIONS(3647), - [sym_numeric_character_reference] = ACTIONS(3647), - [anon_sym_LT] = ACTIONS(3649), - [anon_sym_GT] = ACTIONS(3647), - [anon_sym_BANG] = ACTIONS(3647), - [anon_sym_DQUOTE] = ACTIONS(3647), - [anon_sym_POUND] = ACTIONS(3647), - [anon_sym_DOLLAR] = ACTIONS(3647), - [anon_sym_PERCENT] = ACTIONS(3647), - [anon_sym_AMP] = ACTIONS(3649), - [anon_sym_SQUOTE] = ACTIONS(3647), - [anon_sym_STAR] = ACTIONS(3647), - [anon_sym_PLUS] = ACTIONS(3647), - [anon_sym_COMMA] = ACTIONS(3647), - [anon_sym_DASH] = ACTIONS(3649), - [anon_sym_DOT] = ACTIONS(3649), - [anon_sym_SLASH] = ACTIONS(3647), - [anon_sym_COLON] = ACTIONS(3647), - [anon_sym_SEMI] = ACTIONS(3647), - [anon_sym_EQ] = ACTIONS(3647), - [anon_sym_QMARK] = ACTIONS(3647), - [anon_sym_LBRACK] = ACTIONS(3649), - [anon_sym_BSLASH] = ACTIONS(3649), - [anon_sym_CARET] = ACTIONS(3649), - [anon_sym__] = ACTIONS(3647), - [anon_sym_BQUOTE] = ACTIONS(3647), - [anon_sym_LBRACE] = ACTIONS(3713), - [anon_sym_PIPE] = ACTIONS(3647), - [anon_sym_TILDE] = ACTIONS(3647), - [anon_sym_LPAREN] = ACTIONS(3647), - [anon_sym_RPAREN] = ACTIONS(3647), - [sym__newline_token] = ACTIONS(3647), - [anon_sym_CARET_LBRACK] = ACTIONS(3647), - [anon_sym_LBRACK_CARET] = ACTIONS(3647), - [sym_uri_autolink] = ACTIONS(3647), - [sym_email_autolink] = ACTIONS(3647), - [sym__whitespace_ge_2] = ACTIONS(3647), - [aux_sym__whitespace_token1] = ACTIONS(3649), - [sym__word_no_digit] = ACTIONS(3647), - [sym__digits] = ACTIONS(3647), - [anon_sym_DASH_DASH] = ACTIONS(3649), - [anon_sym_DASH_DASH_DASH] = ACTIONS(3647), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3647), - [sym__code_span_start] = ACTIONS(3647), - [sym__emphasis_open_star] = ACTIONS(3647), - [sym__emphasis_open_underscore] = ACTIONS(3647), - [sym__emphasis_close_underscore] = ACTIONS(3647), - [sym__strikeout_open] = ACTIONS(3647), - [sym__latex_span_start] = ACTIONS(3647), - [sym__single_quote_open] = ACTIONS(3647), - [sym__double_quote_open] = ACTIONS(3647), - [sym__superscript_open] = ACTIONS(3647), - [sym__subscript_open] = ACTIONS(3647), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3647), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3647), - [sym__cite_author_in_text] = ACTIONS(3647), - [sym__cite_suppress_author] = ACTIONS(3647), - [sym__shortcode_open_escaped] = ACTIONS(3647), - [sym__shortcode_open] = ACTIONS(3647), - [sym__unclosed_span] = ACTIONS(3647), + [sym_backslash_escape] = STATE(373), + [sym_commonmark_attribute] = STATE(373), + [sym_code_span] = STATE(373), + [sym_latex_span] = STATE(373), + [sym_insert] = STATE(373), + [sym_delete] = STATE(373), + [sym_highlight] = STATE(373), + [sym_edit_comment] = STATE(373), + [sym_superscript] = STATE(373), + [sym_subscript] = STATE(373), + [sym_strikeout] = STATE(373), + [sym_quoted_span] = STATE(373), + [sym_inline_note] = STATE(373), + [sym_citation] = STATE(373), + [sym_shortcode_escaped] = STATE(373), + [sym_shortcode] = STATE(373), + [sym_note_reference] = STATE(373), + [sym_image] = STATE(373), + [sym__image_inline_link] = STATE(1265), + [sym__image_description] = STATE(2331), + [sym__image_description_non_empty] = STATE(2331), + [sym_hard_line_break] = STATE(373), + [sym__whitespace] = STATE(1262), + [sym__word] = STATE(1262), + [sym__soft_line_break] = STATE(1267), + [sym__inline_base] = STATE(342), + [sym__text_base] = STATE(373), + [sym__inline_element_no_star_no_link] = STATE(342), + [aux_sym__inline_no_star_no_link] = STATE(342), + [sym__emphasis_star_no_link] = STATE(1441), + [sym__strong_emphasis_star_no_link] = STATE(342), + [sym__emphasis_underscore_no_link] = STATE(1441), + [sym__strong_emphasis_underscore_no_link] = STATE(342), + [aux_sym__inline_base_repeat1] = STATE(373), + [sym__backslash_escape] = ACTIONS(885), + [sym_entity_reference] = ACTIONS(887), + [sym_numeric_character_reference] = ACTIONS(887), + [anon_sym_LT] = ACTIONS(889), + [anon_sym_GT] = ACTIONS(891), + [anon_sym_BANG] = ACTIONS(893), + [anon_sym_DQUOTE] = ACTIONS(891), + [anon_sym_POUND] = ACTIONS(891), + [anon_sym_DOLLAR] = ACTIONS(891), + [anon_sym_PERCENT] = ACTIONS(891), + [anon_sym_AMP] = ACTIONS(889), + [anon_sym_SQUOTE] = ACTIONS(891), + [anon_sym_STAR] = ACTIONS(891), + [anon_sym_PLUS] = ACTIONS(891), + [anon_sym_COMMA] = ACTIONS(891), + [anon_sym_DASH] = ACTIONS(889), + [anon_sym_DOT] = ACTIONS(889), + [anon_sym_SLASH] = ACTIONS(891), + [anon_sym_COLON] = ACTIONS(891), + [anon_sym_SEMI] = ACTIONS(891), + [anon_sym_EQ] = ACTIONS(891), + [anon_sym_QMARK] = ACTIONS(891), + [anon_sym_BSLASH] = ACTIONS(897), + [anon_sym_CARET] = ACTIONS(889), + [anon_sym__] = ACTIONS(891), + [anon_sym_BQUOTE] = ACTIONS(891), + [anon_sym_LBRACE] = ACTIONS(899), + [anon_sym_PIPE] = ACTIONS(891), + [anon_sym_TILDE] = ACTIONS(891), + [anon_sym_LPAREN] = ACTIONS(891), + [anon_sym_RPAREN] = ACTIONS(891), + [sym__newline_token] = ACTIONS(901), + [aux_sym_insert_token1] = ACTIONS(903), + [aux_sym_delete_token1] = ACTIONS(905), + [aux_sym_highlight_token1] = ACTIONS(907), + [aux_sym_edit_comment_token1] = ACTIONS(909), + [anon_sym_CARET_LBRACK] = ACTIONS(911), + [anon_sym_LBRACK_CARET] = ACTIONS(913), + [sym_uri_autolink] = ACTIONS(887), + [sym_email_autolink] = ACTIONS(887), + [sym__whitespace_ge_2] = ACTIONS(915), + [aux_sym__whitespace_token1] = ACTIONS(917), + [sym__word_no_digit] = ACTIONS(919), + [sym__digits] = ACTIONS(919), + [anon_sym_DASH_DASH] = ACTIONS(921), + [anon_sym_DASH_DASH_DASH] = ACTIONS(919), + [anon_sym_DOT_DOT_DOT] = ACTIONS(919), + [sym__code_span_start] = ACTIONS(923), + [sym__emphasis_open_star] = ACTIONS(3207), + [sym__emphasis_open_underscore] = ACTIONS(3209), + [sym__strikeout_open] = ACTIONS(931), + [sym__latex_span_start] = ACTIONS(933), + [sym__single_quote_open] = ACTIONS(935), + [sym__double_quote_open] = ACTIONS(937), + [sym__superscript_open] = ACTIONS(939), + [sym__subscript_open] = ACTIONS(941), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(943), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(945), + [sym__cite_author_in_text] = ACTIONS(947), + [sym__cite_suppress_author] = ACTIONS(949), + [sym__shortcode_open_escaped] = ACTIONS(951), + [sym__shortcode_open] = ACTIONS(953), + [sym__unclosed_span] = ACTIONS(887), }, [STATE(361)] = { - [sym__qmd_attribute] = STATE(1005), - [sym_raw_attribute] = STATE(1005), - [sym_commonmark_attribute] = STATE(1005), - [sym_language_attribute] = STATE(1005), - [sym__backslash_escape] = ACTIONS(3651), - [sym_entity_reference] = ACTIONS(3651), - [sym_numeric_character_reference] = ACTIONS(3651), - [anon_sym_LT] = ACTIONS(3653), - [anon_sym_GT] = ACTIONS(3651), - [anon_sym_BANG] = ACTIONS(3651), - [anon_sym_DQUOTE] = ACTIONS(3651), - [anon_sym_POUND] = ACTIONS(3651), - [anon_sym_DOLLAR] = ACTIONS(3651), - [anon_sym_PERCENT] = ACTIONS(3651), - [anon_sym_AMP] = ACTIONS(3653), - [anon_sym_SQUOTE] = ACTIONS(3651), - [anon_sym_STAR] = ACTIONS(3651), - [anon_sym_PLUS] = ACTIONS(3651), - [anon_sym_COMMA] = ACTIONS(3651), - [anon_sym_DASH] = ACTIONS(3653), - [anon_sym_DOT] = ACTIONS(3653), - [anon_sym_SLASH] = ACTIONS(3651), - [anon_sym_COLON] = ACTIONS(3651), - [anon_sym_SEMI] = ACTIONS(3651), - [anon_sym_EQ] = ACTIONS(3651), - [anon_sym_QMARK] = ACTIONS(3651), - [anon_sym_LBRACK] = ACTIONS(3653), - [anon_sym_BSLASH] = ACTIONS(3653), - [anon_sym_CARET] = ACTIONS(3653), - [anon_sym__] = ACTIONS(3651), - [anon_sym_BQUOTE] = ACTIONS(3651), - [anon_sym_LBRACE] = ACTIONS(3713), - [anon_sym_PIPE] = ACTIONS(3651), - [anon_sym_TILDE] = ACTIONS(3651), - [anon_sym_LPAREN] = ACTIONS(3651), - [anon_sym_RPAREN] = ACTIONS(3651), - [sym__newline_token] = ACTIONS(3651), - [anon_sym_CARET_LBRACK] = ACTIONS(3651), - [anon_sym_LBRACK_CARET] = ACTIONS(3651), - [sym_uri_autolink] = ACTIONS(3651), - [sym_email_autolink] = ACTIONS(3651), - [sym__whitespace_ge_2] = ACTIONS(3651), - [aux_sym__whitespace_token1] = ACTIONS(3653), - [sym__word_no_digit] = ACTIONS(3651), - [sym__digits] = ACTIONS(3651), - [anon_sym_DASH_DASH] = ACTIONS(3653), - [anon_sym_DASH_DASH_DASH] = ACTIONS(3651), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3651), - [sym__code_span_start] = ACTIONS(3651), - [sym__emphasis_open_star] = ACTIONS(3651), - [sym__emphasis_open_underscore] = ACTIONS(3651), - [sym__emphasis_close_underscore] = ACTIONS(3651), - [sym__strikeout_open] = ACTIONS(3651), - [sym__latex_span_start] = ACTIONS(3651), - [sym__single_quote_open] = ACTIONS(3651), - [sym__double_quote_open] = ACTIONS(3651), - [sym__superscript_open] = ACTIONS(3651), - [sym__subscript_open] = ACTIONS(3651), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3651), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3651), - [sym__cite_author_in_text] = ACTIONS(3651), - [sym__cite_suppress_author] = ACTIONS(3651), - [sym__shortcode_open_escaped] = ACTIONS(3651), - [sym__shortcode_open] = ACTIONS(3651), - [sym__unclosed_span] = ACTIONS(3651), + [sym_backslash_escape] = STATE(379), + [sym_commonmark_attribute] = STATE(379), + [sym_code_span] = STATE(379), + [sym_latex_span] = STATE(379), + [sym_insert] = STATE(379), + [sym_delete] = STATE(379), + [sym_highlight] = STATE(379), + [sym_edit_comment] = STATE(379), + [sym_superscript] = STATE(379), + [sym_subscript] = STATE(379), + [sym_strikeout] = STATE(379), + [sym_quoted_span] = STATE(379), + [sym_inline_note] = STATE(379), + [sym_citation] = STATE(379), + [sym_shortcode_escaped] = STATE(379), + [sym_shortcode] = STATE(379), + [sym_note_reference] = STATE(379), + [sym_image] = STATE(379), + [sym__image_inline_link] = STATE(1390), + [sym__image_description] = STATE(2363), + [sym__image_description_non_empty] = STATE(2363), + [sym_hard_line_break] = STATE(379), + [sym__whitespace] = STATE(1385), + [sym__word] = STATE(1385), + [sym__soft_line_break] = STATE(1391), + [sym__inline_base] = STATE(344), + [sym__text_base] = STATE(379), + [sym__inline_element_no_underscore_no_link] = STATE(344), + [aux_sym__inline_no_underscore_no_link] = STATE(344), + [sym__emphasis_star_no_link] = STATE(1442), + [sym__strong_emphasis_star_no_link] = STATE(344), + [sym__emphasis_underscore_no_link] = STATE(1442), + [sym__strong_emphasis_underscore_no_link] = STATE(344), + [aux_sym__inline_base_repeat1] = STATE(379), + [sym__backslash_escape] = ACTIONS(1059), + [sym_entity_reference] = ACTIONS(1061), + [sym_numeric_character_reference] = ACTIONS(1061), + [anon_sym_LT] = ACTIONS(1063), + [anon_sym_GT] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1067), + [anon_sym_DQUOTE] = ACTIONS(1065), + [anon_sym_POUND] = ACTIONS(1065), + [anon_sym_DOLLAR] = ACTIONS(1065), + [anon_sym_PERCENT] = ACTIONS(1065), + [anon_sym_AMP] = ACTIONS(1063), + [anon_sym_SQUOTE] = ACTIONS(1065), + [anon_sym_STAR] = ACTIONS(1065), + [anon_sym_PLUS] = ACTIONS(1065), + [anon_sym_COMMA] = ACTIONS(1065), + [anon_sym_DASH] = ACTIONS(1063), + [anon_sym_DOT] = ACTIONS(1063), + [anon_sym_SLASH] = ACTIONS(1065), + [anon_sym_COLON] = ACTIONS(1065), + [anon_sym_SEMI] = ACTIONS(1065), + [anon_sym_EQ] = ACTIONS(1065), + [anon_sym_QMARK] = ACTIONS(1065), + [anon_sym_BSLASH] = ACTIONS(1071), + [anon_sym_CARET] = ACTIONS(1063), + [anon_sym__] = ACTIONS(1065), + [anon_sym_BQUOTE] = ACTIONS(1065), + [anon_sym_LBRACE] = ACTIONS(1073), + [anon_sym_PIPE] = ACTIONS(1065), + [anon_sym_TILDE] = ACTIONS(1065), + [anon_sym_LPAREN] = ACTIONS(1065), + [anon_sym_RPAREN] = ACTIONS(1065), + [sym__newline_token] = ACTIONS(1075), + [aux_sym_insert_token1] = ACTIONS(1077), + [aux_sym_delete_token1] = ACTIONS(1079), + [aux_sym_highlight_token1] = ACTIONS(1081), + [aux_sym_edit_comment_token1] = ACTIONS(1083), + [anon_sym_CARET_LBRACK] = ACTIONS(1085), + [anon_sym_LBRACK_CARET] = ACTIONS(1087), + [sym_uri_autolink] = ACTIONS(1061), + [sym_email_autolink] = ACTIONS(1061), + [sym__whitespace_ge_2] = ACTIONS(1089), + [aux_sym__whitespace_token1] = ACTIONS(1091), + [sym__word_no_digit] = ACTIONS(1093), + [sym__digits] = ACTIONS(1093), + [anon_sym_DASH_DASH] = ACTIONS(1095), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1093), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1093), + [sym__code_span_start] = ACTIONS(1097), + [sym__emphasis_open_star] = ACTIONS(3193), + [sym__emphasis_open_underscore] = ACTIONS(3195), + [sym__strikeout_open] = ACTIONS(1105), + [sym__latex_span_start] = ACTIONS(1107), + [sym__single_quote_open] = ACTIONS(1109), + [sym__double_quote_open] = ACTIONS(1111), + [sym__superscript_open] = ACTIONS(1113), + [sym__subscript_open] = ACTIONS(1115), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1117), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1119), + [sym__cite_author_in_text] = ACTIONS(1121), + [sym__cite_suppress_author] = ACTIONS(1123), + [sym__shortcode_open_escaped] = ACTIONS(1125), + [sym__shortcode_open] = ACTIONS(1127), + [sym__unclosed_span] = ACTIONS(1061), }, [STATE(362)] = { - [sym__qmd_attribute] = STATE(903), - [sym_raw_attribute] = STATE(903), - [sym_commonmark_attribute] = STATE(903), - [sym_language_attribute] = STATE(903), - [sym__backslash_escape] = ACTIONS(3705), - [sym_entity_reference] = ACTIONS(3705), - [sym_numeric_character_reference] = ACTIONS(3705), - [anon_sym_LT] = ACTIONS(3707), - [anon_sym_GT] = ACTIONS(3705), - [anon_sym_BANG] = ACTIONS(3705), - [anon_sym_DQUOTE] = ACTIONS(3705), - [anon_sym_POUND] = ACTIONS(3705), - [anon_sym_DOLLAR] = ACTIONS(3705), - [anon_sym_PERCENT] = ACTIONS(3705), - [anon_sym_AMP] = ACTIONS(3707), - [anon_sym_SQUOTE] = ACTIONS(3705), - [anon_sym_STAR] = ACTIONS(3705), - [anon_sym_PLUS] = ACTIONS(3705), - [anon_sym_COMMA] = ACTIONS(3705), - [anon_sym_DASH] = ACTIONS(3707), - [anon_sym_DOT] = ACTIONS(3707), - [anon_sym_SLASH] = ACTIONS(3705), - [anon_sym_COLON] = ACTIONS(3705), - [anon_sym_SEMI] = ACTIONS(3705), - [anon_sym_EQ] = ACTIONS(3705), - [anon_sym_QMARK] = ACTIONS(3705), - [anon_sym_LBRACK] = ACTIONS(3707), - [anon_sym_BSLASH] = ACTIONS(3707), - [anon_sym_RBRACK] = ACTIONS(3705), - [anon_sym_CARET] = ACTIONS(3707), - [anon_sym__] = ACTIONS(3705), - [anon_sym_BQUOTE] = ACTIONS(3705), - [anon_sym_LBRACE] = ACTIONS(3635), - [anon_sym_PIPE] = ACTIONS(3705), - [anon_sym_TILDE] = ACTIONS(3705), - [anon_sym_LPAREN] = ACTIONS(3705), - [anon_sym_RPAREN] = ACTIONS(3705), - [sym__newline_token] = ACTIONS(3705), - [anon_sym_CARET_LBRACK] = ACTIONS(3705), - [anon_sym_LBRACK_CARET] = ACTIONS(3705), - [sym_uri_autolink] = ACTIONS(3705), - [sym_email_autolink] = ACTIONS(3705), - [sym__whitespace_ge_2] = ACTIONS(3705), - [aux_sym__whitespace_token1] = ACTIONS(3707), - [sym__word_no_digit] = ACTIONS(3705), - [sym__digits] = ACTIONS(3705), - [anon_sym_DASH_DASH] = ACTIONS(3707), - [anon_sym_DASH_DASH_DASH] = ACTIONS(3705), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3705), - [sym__code_span_start] = ACTIONS(3705), - [sym__emphasis_open_star] = ACTIONS(3705), - [sym__emphasis_open_underscore] = ACTIONS(3705), - [sym__strikeout_open] = ACTIONS(3705), - [sym__latex_span_start] = ACTIONS(3705), - [sym__single_quote_open] = ACTIONS(3705), - [sym__double_quote_open] = ACTIONS(3705), - [sym__superscript_open] = ACTIONS(3705), - [sym__subscript_open] = ACTIONS(3705), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3705), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3705), - [sym__cite_author_in_text] = ACTIONS(3705), - [sym__cite_suppress_author] = ACTIONS(3705), - [sym__shortcode_open_escaped] = ACTIONS(3705), - [sym__shortcode_open] = ACTIONS(3705), - [sym__unclosed_span] = ACTIONS(3705), + [sym_backslash_escape] = STATE(379), + [sym_commonmark_attribute] = STATE(379), + [sym_code_span] = STATE(379), + [sym_latex_span] = STATE(379), + [sym_insert] = STATE(379), + [sym_delete] = STATE(379), + [sym_highlight] = STATE(379), + [sym_edit_comment] = STATE(379), + [sym_superscript] = STATE(379), + [sym_subscript] = STATE(379), + [sym_strikeout] = STATE(379), + [sym_quoted_span] = STATE(379), + [sym_inline_note] = STATE(379), + [sym_citation] = STATE(379), + [sym_shortcode_escaped] = STATE(379), + [sym_shortcode] = STATE(379), + [sym_note_reference] = STATE(379), + [sym_image] = STATE(379), + [sym__image_inline_link] = STATE(1390), + [sym__image_description] = STATE(2363), + [sym__image_description_non_empty] = STATE(2363), + [sym_hard_line_break] = STATE(379), + [sym__whitespace] = STATE(1385), + [sym__word] = STATE(1385), + [sym__soft_line_break] = STATE(1391), + [sym__inline_base] = STATE(340), + [sym__text_base] = STATE(379), + [sym__inline_element_no_underscore_no_link] = STATE(340), + [aux_sym__inline_no_underscore_no_link] = STATE(340), + [sym__emphasis_star_no_link] = STATE(1442), + [sym__strong_emphasis_star_no_link] = STATE(340), + [sym__emphasis_underscore_no_link] = STATE(1442), + [sym__strong_emphasis_underscore_no_link] = STATE(340), + [aux_sym__inline_base_repeat1] = STATE(379), + [sym__backslash_escape] = ACTIONS(1059), + [sym_entity_reference] = ACTIONS(1061), + [sym_numeric_character_reference] = ACTIONS(1061), + [anon_sym_LT] = ACTIONS(1063), + [anon_sym_GT] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1067), + [anon_sym_DQUOTE] = ACTIONS(1065), + [anon_sym_POUND] = ACTIONS(1065), + [anon_sym_DOLLAR] = ACTIONS(1065), + [anon_sym_PERCENT] = ACTIONS(1065), + [anon_sym_AMP] = ACTIONS(1063), + [anon_sym_SQUOTE] = ACTIONS(1065), + [anon_sym_STAR] = ACTIONS(1065), + [anon_sym_PLUS] = ACTIONS(1065), + [anon_sym_COMMA] = ACTIONS(1065), + [anon_sym_DASH] = ACTIONS(1063), + [anon_sym_DOT] = ACTIONS(1063), + [anon_sym_SLASH] = ACTIONS(1065), + [anon_sym_COLON] = ACTIONS(1065), + [anon_sym_SEMI] = ACTIONS(1065), + [anon_sym_EQ] = ACTIONS(1065), + [anon_sym_QMARK] = ACTIONS(1065), + [anon_sym_BSLASH] = ACTIONS(1071), + [anon_sym_CARET] = ACTIONS(1063), + [anon_sym__] = ACTIONS(1065), + [anon_sym_BQUOTE] = ACTIONS(1065), + [anon_sym_LBRACE] = ACTIONS(1073), + [anon_sym_PIPE] = ACTIONS(1065), + [anon_sym_TILDE] = ACTIONS(1065), + [anon_sym_LPAREN] = ACTIONS(1065), + [anon_sym_RPAREN] = ACTIONS(1065), + [sym__newline_token] = ACTIONS(1075), + [aux_sym_insert_token1] = ACTIONS(1077), + [aux_sym_delete_token1] = ACTIONS(1079), + [aux_sym_highlight_token1] = ACTIONS(1081), + [aux_sym_edit_comment_token1] = ACTIONS(1083), + [anon_sym_CARET_LBRACK] = ACTIONS(1085), + [anon_sym_LBRACK_CARET] = ACTIONS(1087), + [sym_uri_autolink] = ACTIONS(1061), + [sym_email_autolink] = ACTIONS(1061), + [sym__whitespace_ge_2] = ACTIONS(1089), + [aux_sym__whitespace_token1] = ACTIONS(1091), + [sym__word_no_digit] = ACTIONS(1093), + [sym__digits] = ACTIONS(1093), + [anon_sym_DASH_DASH] = ACTIONS(1095), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1093), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1093), + [sym__code_span_start] = ACTIONS(1097), + [sym__emphasis_open_star] = ACTIONS(3193), + [sym__emphasis_open_underscore] = ACTIONS(3195), + [sym__strikeout_open] = ACTIONS(1105), + [sym__latex_span_start] = ACTIONS(1107), + [sym__single_quote_open] = ACTIONS(1109), + [sym__double_quote_open] = ACTIONS(1111), + [sym__superscript_open] = ACTIONS(1113), + [sym__subscript_open] = ACTIONS(1115), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1117), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1119), + [sym__cite_author_in_text] = ACTIONS(1121), + [sym__cite_suppress_author] = ACTIONS(1123), + [sym__shortcode_open_escaped] = ACTIONS(1125), + [sym__shortcode_open] = ACTIONS(1127), + [sym__unclosed_span] = ACTIONS(1061), }, [STATE(363)] = { - [sym__qmd_attribute] = STATE(1014), - [sym_raw_attribute] = STATE(1014), - [sym_commonmark_attribute] = STATE(1014), - [sym_language_attribute] = STATE(1014), - [sym__backslash_escape] = ACTIONS(3659), - [sym_entity_reference] = ACTIONS(3659), - [sym_numeric_character_reference] = ACTIONS(3659), - [anon_sym_LT] = ACTIONS(3661), - [anon_sym_GT] = ACTIONS(3659), - [anon_sym_BANG] = ACTIONS(3659), - [anon_sym_DQUOTE] = ACTIONS(3659), - [anon_sym_POUND] = ACTIONS(3659), - [anon_sym_DOLLAR] = ACTIONS(3659), - [anon_sym_PERCENT] = ACTIONS(3659), - [anon_sym_AMP] = ACTIONS(3661), - [anon_sym_SQUOTE] = ACTIONS(3659), - [anon_sym_STAR] = ACTIONS(3659), - [anon_sym_PLUS] = ACTIONS(3659), - [anon_sym_COMMA] = ACTIONS(3659), - [anon_sym_DASH] = ACTIONS(3661), - [anon_sym_DOT] = ACTIONS(3661), - [anon_sym_SLASH] = ACTIONS(3659), - [anon_sym_COLON] = ACTIONS(3659), - [anon_sym_SEMI] = ACTIONS(3659), - [anon_sym_EQ] = ACTIONS(3659), - [anon_sym_QMARK] = ACTIONS(3659), - [anon_sym_LBRACK] = ACTIONS(3661), - [anon_sym_BSLASH] = ACTIONS(3661), - [anon_sym_CARET] = ACTIONS(3661), - [anon_sym__] = ACTIONS(3659), - [anon_sym_BQUOTE] = ACTIONS(3659), - [anon_sym_LBRACE] = ACTIONS(3713), - [anon_sym_PIPE] = ACTIONS(3659), - [anon_sym_TILDE] = ACTIONS(3659), - [anon_sym_LPAREN] = ACTIONS(3659), - [anon_sym_RPAREN] = ACTIONS(3659), - [sym__newline_token] = ACTIONS(3659), - [anon_sym_CARET_LBRACK] = ACTIONS(3659), - [anon_sym_LBRACK_CARET] = ACTIONS(3659), - [sym_uri_autolink] = ACTIONS(3659), - [sym_email_autolink] = ACTIONS(3659), - [sym__whitespace_ge_2] = ACTIONS(3659), - [aux_sym__whitespace_token1] = ACTIONS(3661), - [sym__word_no_digit] = ACTIONS(3659), - [sym__digits] = ACTIONS(3659), - [anon_sym_DASH_DASH] = ACTIONS(3661), - [anon_sym_DASH_DASH_DASH] = ACTIONS(3659), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3659), - [sym__code_span_start] = ACTIONS(3659), - [sym__emphasis_open_star] = ACTIONS(3659), - [sym__emphasis_open_underscore] = ACTIONS(3659), - [sym__emphasis_close_underscore] = ACTIONS(3659), - [sym__strikeout_open] = ACTIONS(3659), - [sym__latex_span_start] = ACTIONS(3659), - [sym__single_quote_open] = ACTIONS(3659), - [sym__double_quote_open] = ACTIONS(3659), - [sym__superscript_open] = ACTIONS(3659), - [sym__subscript_open] = ACTIONS(3659), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3659), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3659), - [sym__cite_author_in_text] = ACTIONS(3659), - [sym__cite_suppress_author] = ACTIONS(3659), - [sym__shortcode_open_escaped] = ACTIONS(3659), - [sym__shortcode_open] = ACTIONS(3659), - [sym__unclosed_span] = ACTIONS(3659), + [sym_backslash_escape] = STATE(373), + [sym_commonmark_attribute] = STATE(373), + [sym_code_span] = STATE(373), + [sym_latex_span] = STATE(373), + [sym_insert] = STATE(373), + [sym_delete] = STATE(373), + [sym_highlight] = STATE(373), + [sym_edit_comment] = STATE(373), + [sym_superscript] = STATE(373), + [sym_subscript] = STATE(373), + [sym_strikeout] = STATE(373), + [sym_quoted_span] = STATE(373), + [sym_inline_note] = STATE(373), + [sym_citation] = STATE(373), + [sym_shortcode_escaped] = STATE(373), + [sym_shortcode] = STATE(373), + [sym_note_reference] = STATE(373), + [sym_image] = STATE(373), + [sym__image_inline_link] = STATE(1265), + [sym__image_description] = STATE(2331), + [sym__image_description_non_empty] = STATE(2331), + [sym_hard_line_break] = STATE(373), + [sym__whitespace] = STATE(1262), + [sym__word] = STATE(1262), + [sym__soft_line_break] = STATE(1267), + [sym__inline_base] = STATE(327), + [sym__text_base] = STATE(373), + [sym__inline_element_no_star_no_link] = STATE(327), + [aux_sym__inline_no_star_no_link] = STATE(327), + [sym__emphasis_star_no_link] = STATE(1441), + [sym__strong_emphasis_star_no_link] = STATE(327), + [sym__emphasis_underscore_no_link] = STATE(1441), + [sym__strong_emphasis_underscore_no_link] = STATE(327), + [aux_sym__inline_base_repeat1] = STATE(373), + [sym__backslash_escape] = ACTIONS(885), + [sym_entity_reference] = ACTIONS(887), + [sym_numeric_character_reference] = ACTIONS(887), + [anon_sym_LT] = ACTIONS(889), + [anon_sym_GT] = ACTIONS(891), + [anon_sym_BANG] = ACTIONS(893), + [anon_sym_DQUOTE] = ACTIONS(891), + [anon_sym_POUND] = ACTIONS(891), + [anon_sym_DOLLAR] = ACTIONS(891), + [anon_sym_PERCENT] = ACTIONS(891), + [anon_sym_AMP] = ACTIONS(889), + [anon_sym_SQUOTE] = ACTIONS(891), + [anon_sym_STAR] = ACTIONS(891), + [anon_sym_PLUS] = ACTIONS(891), + [anon_sym_COMMA] = ACTIONS(891), + [anon_sym_DASH] = ACTIONS(889), + [anon_sym_DOT] = ACTIONS(889), + [anon_sym_SLASH] = ACTIONS(891), + [anon_sym_COLON] = ACTIONS(891), + [anon_sym_SEMI] = ACTIONS(891), + [anon_sym_EQ] = ACTIONS(891), + [anon_sym_QMARK] = ACTIONS(891), + [anon_sym_BSLASH] = ACTIONS(897), + [anon_sym_CARET] = ACTIONS(889), + [anon_sym__] = ACTIONS(891), + [anon_sym_BQUOTE] = ACTIONS(891), + [anon_sym_LBRACE] = ACTIONS(899), + [anon_sym_PIPE] = ACTIONS(891), + [anon_sym_TILDE] = ACTIONS(891), + [anon_sym_LPAREN] = ACTIONS(891), + [anon_sym_RPAREN] = ACTIONS(891), + [sym__newline_token] = ACTIONS(901), + [aux_sym_insert_token1] = ACTIONS(903), + [aux_sym_delete_token1] = ACTIONS(905), + [aux_sym_highlight_token1] = ACTIONS(907), + [aux_sym_edit_comment_token1] = ACTIONS(909), + [anon_sym_CARET_LBRACK] = ACTIONS(911), + [anon_sym_LBRACK_CARET] = ACTIONS(913), + [sym_uri_autolink] = ACTIONS(887), + [sym_email_autolink] = ACTIONS(887), + [sym__whitespace_ge_2] = ACTIONS(915), + [aux_sym__whitespace_token1] = ACTIONS(917), + [sym__word_no_digit] = ACTIONS(919), + [sym__digits] = ACTIONS(919), + [anon_sym_DASH_DASH] = ACTIONS(921), + [anon_sym_DASH_DASH_DASH] = ACTIONS(919), + [anon_sym_DOT_DOT_DOT] = ACTIONS(919), + [sym__code_span_start] = ACTIONS(923), + [sym__emphasis_open_star] = ACTIONS(3207), + [sym__emphasis_open_underscore] = ACTIONS(3209), + [sym__strikeout_open] = ACTIONS(931), + [sym__latex_span_start] = ACTIONS(933), + [sym__single_quote_open] = ACTIONS(935), + [sym__double_quote_open] = ACTIONS(937), + [sym__superscript_open] = ACTIONS(939), + [sym__subscript_open] = ACTIONS(941), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(943), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(945), + [sym__cite_author_in_text] = ACTIONS(947), + [sym__cite_suppress_author] = ACTIONS(949), + [sym__shortcode_open_escaped] = ACTIONS(951), + [sym__shortcode_open] = ACTIONS(953), + [sym__unclosed_span] = ACTIONS(887), }, [STATE(364)] = { - [sym__qmd_attribute] = STATE(814), - [sym_raw_attribute] = STATE(814), - [sym_commonmark_attribute] = STATE(814), - [sym_language_attribute] = STATE(814), - [sym__backslash_escape] = ACTIONS(3697), - [sym_entity_reference] = ACTIONS(3697), - [sym_numeric_character_reference] = ACTIONS(3697), - [anon_sym_LT] = ACTIONS(3699), - [anon_sym_GT] = ACTIONS(3697), - [anon_sym_BANG] = ACTIONS(3697), - [anon_sym_DQUOTE] = ACTIONS(3697), - [anon_sym_POUND] = ACTIONS(3697), - [anon_sym_DOLLAR] = ACTIONS(3697), - [anon_sym_PERCENT] = ACTIONS(3697), - [anon_sym_AMP] = ACTIONS(3699), - [anon_sym_SQUOTE] = ACTIONS(3697), - [anon_sym_STAR] = ACTIONS(3697), - [anon_sym_PLUS] = ACTIONS(3697), - [anon_sym_COMMA] = ACTIONS(3697), - [anon_sym_DASH] = ACTIONS(3699), - [anon_sym_DOT] = ACTIONS(3699), - [anon_sym_SLASH] = ACTIONS(3697), - [anon_sym_COLON] = ACTIONS(3697), - [anon_sym_SEMI] = ACTIONS(3697), - [anon_sym_EQ] = ACTIONS(3697), - [anon_sym_QMARK] = ACTIONS(3697), - [anon_sym_LBRACK] = ACTIONS(3699), - [anon_sym_BSLASH] = ACTIONS(3699), - [anon_sym_CARET] = ACTIONS(3699), - [anon_sym__] = ACTIONS(3697), - [anon_sym_BQUOTE] = ACTIONS(3697), - [anon_sym_LBRACE] = ACTIONS(3717), - [anon_sym_PIPE] = ACTIONS(3697), - [anon_sym_TILDE] = ACTIONS(3697), - [anon_sym_LPAREN] = ACTIONS(3697), - [anon_sym_RPAREN] = ACTIONS(3697), - [sym__newline_token] = ACTIONS(3697), - [anon_sym_CARET_LBRACK] = ACTIONS(3697), - [anon_sym_LBRACK_CARET] = ACTIONS(3697), - [sym_uri_autolink] = ACTIONS(3697), - [sym_email_autolink] = ACTIONS(3697), - [sym__whitespace_ge_2] = ACTIONS(3697), - [aux_sym__whitespace_token1] = ACTIONS(3699), - [sym__word_no_digit] = ACTIONS(3697), - [sym__digits] = ACTIONS(3697), - [anon_sym_DASH_DASH] = ACTIONS(3699), - [anon_sym_DASH_DASH_DASH] = ACTIONS(3697), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3697), - [sym__code_span_start] = ACTIONS(3697), - [sym__emphasis_open_star] = ACTIONS(3697), - [sym__emphasis_open_underscore] = ACTIONS(3697), - [sym__strikeout_open] = ACTIONS(3697), - [sym__latex_span_start] = ACTIONS(3697), - [sym__single_quote_open] = ACTIONS(3697), - [sym__double_quote_open] = ACTIONS(3697), - [sym__superscript_open] = ACTIONS(3697), - [sym__subscript_open] = ACTIONS(3697), - [sym__subscript_close] = ACTIONS(3697), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3697), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3697), - [sym__cite_author_in_text] = ACTIONS(3697), - [sym__cite_suppress_author] = ACTIONS(3697), - [sym__shortcode_open_escaped] = ACTIONS(3697), - [sym__shortcode_open] = ACTIONS(3697), - [sym__unclosed_span] = ACTIONS(3697), + [sym_backslash_escape] = STATE(373), + [sym_commonmark_attribute] = STATE(373), + [sym_code_span] = STATE(373), + [sym_latex_span] = STATE(373), + [sym_insert] = STATE(373), + [sym_delete] = STATE(373), + [sym_highlight] = STATE(373), + [sym_edit_comment] = STATE(373), + [sym_superscript] = STATE(373), + [sym_subscript] = STATE(373), + [sym_strikeout] = STATE(373), + [sym_quoted_span] = STATE(373), + [sym_inline_note] = STATE(373), + [sym_citation] = STATE(373), + [sym_shortcode_escaped] = STATE(373), + [sym_shortcode] = STATE(373), + [sym_note_reference] = STATE(373), + [sym_image] = STATE(373), + [sym__image_inline_link] = STATE(1265), + [sym__image_description] = STATE(2331), + [sym__image_description_non_empty] = STATE(2331), + [sym_hard_line_break] = STATE(373), + [sym__whitespace] = STATE(1262), + [sym__word] = STATE(1262), + [sym__soft_line_break] = STATE(1267), + [sym__inline_base] = STATE(339), + [sym__text_base] = STATE(373), + [sym__inline_element_no_star_no_link] = STATE(339), + [aux_sym__inline_no_star_no_link] = STATE(339), + [sym__emphasis_star_no_link] = STATE(1441), + [sym__strong_emphasis_star_no_link] = STATE(339), + [sym__emphasis_underscore_no_link] = STATE(1441), + [sym__strong_emphasis_underscore_no_link] = STATE(339), + [aux_sym__inline_base_repeat1] = STATE(373), + [sym__backslash_escape] = ACTIONS(885), + [sym_entity_reference] = ACTIONS(887), + [sym_numeric_character_reference] = ACTIONS(887), + [anon_sym_LT] = ACTIONS(889), + [anon_sym_GT] = ACTIONS(891), + [anon_sym_BANG] = ACTIONS(893), + [anon_sym_DQUOTE] = ACTIONS(891), + [anon_sym_POUND] = ACTIONS(891), + [anon_sym_DOLLAR] = ACTIONS(891), + [anon_sym_PERCENT] = ACTIONS(891), + [anon_sym_AMP] = ACTIONS(889), + [anon_sym_SQUOTE] = ACTIONS(891), + [anon_sym_STAR] = ACTIONS(891), + [anon_sym_PLUS] = ACTIONS(891), + [anon_sym_COMMA] = ACTIONS(891), + [anon_sym_DASH] = ACTIONS(889), + [anon_sym_DOT] = ACTIONS(889), + [anon_sym_SLASH] = ACTIONS(891), + [anon_sym_COLON] = ACTIONS(891), + [anon_sym_SEMI] = ACTIONS(891), + [anon_sym_EQ] = ACTIONS(891), + [anon_sym_QMARK] = ACTIONS(891), + [anon_sym_BSLASH] = ACTIONS(897), + [anon_sym_CARET] = ACTIONS(889), + [anon_sym__] = ACTIONS(891), + [anon_sym_BQUOTE] = ACTIONS(891), + [anon_sym_LBRACE] = ACTIONS(899), + [anon_sym_PIPE] = ACTIONS(891), + [anon_sym_TILDE] = ACTIONS(891), + [anon_sym_LPAREN] = ACTIONS(891), + [anon_sym_RPAREN] = ACTIONS(891), + [sym__newline_token] = ACTIONS(901), + [aux_sym_insert_token1] = ACTIONS(903), + [aux_sym_delete_token1] = ACTIONS(905), + [aux_sym_highlight_token1] = ACTIONS(907), + [aux_sym_edit_comment_token1] = ACTIONS(909), + [anon_sym_CARET_LBRACK] = ACTIONS(911), + [anon_sym_LBRACK_CARET] = ACTIONS(913), + [sym_uri_autolink] = ACTIONS(887), + [sym_email_autolink] = ACTIONS(887), + [sym__whitespace_ge_2] = ACTIONS(915), + [aux_sym__whitespace_token1] = ACTIONS(917), + [sym__word_no_digit] = ACTIONS(919), + [sym__digits] = ACTIONS(919), + [anon_sym_DASH_DASH] = ACTIONS(921), + [anon_sym_DASH_DASH_DASH] = ACTIONS(919), + [anon_sym_DOT_DOT_DOT] = ACTIONS(919), + [sym__code_span_start] = ACTIONS(923), + [sym__emphasis_open_star] = ACTIONS(3207), + [sym__emphasis_open_underscore] = ACTIONS(3209), + [sym__strikeout_open] = ACTIONS(931), + [sym__latex_span_start] = ACTIONS(933), + [sym__single_quote_open] = ACTIONS(935), + [sym__double_quote_open] = ACTIONS(937), + [sym__superscript_open] = ACTIONS(939), + [sym__subscript_open] = ACTIONS(941), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(943), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(945), + [sym__cite_author_in_text] = ACTIONS(947), + [sym__cite_suppress_author] = ACTIONS(949), + [sym__shortcode_open_escaped] = ACTIONS(951), + [sym__shortcode_open] = ACTIONS(953), + [sym__unclosed_span] = ACTIONS(887), }, [STATE(365)] = { - [sym__qmd_attribute] = STATE(1020), - [sym_raw_attribute] = STATE(1020), - [sym_commonmark_attribute] = STATE(1020), - [sym_language_attribute] = STATE(1020), - [sym__backslash_escape] = ACTIONS(3637), - [sym_entity_reference] = ACTIONS(3637), - [sym_numeric_character_reference] = ACTIONS(3637), - [anon_sym_LT] = ACTIONS(3639), - [anon_sym_GT] = ACTIONS(3637), - [anon_sym_BANG] = ACTIONS(3637), - [anon_sym_DQUOTE] = ACTIONS(3637), - [anon_sym_POUND] = ACTIONS(3637), - [anon_sym_DOLLAR] = ACTIONS(3637), - [anon_sym_PERCENT] = ACTIONS(3637), - [anon_sym_AMP] = ACTIONS(3639), - [anon_sym_SQUOTE] = ACTIONS(3637), - [anon_sym_STAR] = ACTIONS(3637), - [anon_sym_PLUS] = ACTIONS(3637), - [anon_sym_COMMA] = ACTIONS(3637), - [anon_sym_DASH] = ACTIONS(3639), - [anon_sym_DOT] = ACTIONS(3639), - [anon_sym_SLASH] = ACTIONS(3637), - [anon_sym_COLON] = ACTIONS(3637), - [anon_sym_SEMI] = ACTIONS(3637), - [anon_sym_EQ] = ACTIONS(3637), - [anon_sym_QMARK] = ACTIONS(3637), - [anon_sym_LBRACK] = ACTIONS(3639), - [anon_sym_BSLASH] = ACTIONS(3639), - [anon_sym_CARET] = ACTIONS(3639), - [anon_sym__] = ACTIONS(3637), - [anon_sym_BQUOTE] = ACTIONS(3637), - [anon_sym_LBRACE] = ACTIONS(3713), - [anon_sym_PIPE] = ACTIONS(3637), - [anon_sym_TILDE] = ACTIONS(3637), - [anon_sym_LPAREN] = ACTIONS(3637), - [anon_sym_RPAREN] = ACTIONS(3637), - [sym__newline_token] = ACTIONS(3637), - [anon_sym_CARET_LBRACK] = ACTIONS(3637), - [anon_sym_LBRACK_CARET] = ACTIONS(3637), - [sym_uri_autolink] = ACTIONS(3637), - [sym_email_autolink] = ACTIONS(3637), - [sym__whitespace_ge_2] = ACTIONS(3637), - [aux_sym__whitespace_token1] = ACTIONS(3639), - [sym__word_no_digit] = ACTIONS(3637), - [sym__digits] = ACTIONS(3637), - [anon_sym_DASH_DASH] = ACTIONS(3639), - [anon_sym_DASH_DASH_DASH] = ACTIONS(3637), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3637), - [sym__code_span_start] = ACTIONS(3637), - [sym__emphasis_open_star] = ACTIONS(3637), - [sym__emphasis_open_underscore] = ACTIONS(3637), - [sym__emphasis_close_underscore] = ACTIONS(3637), - [sym__strikeout_open] = ACTIONS(3637), - [sym__latex_span_start] = ACTIONS(3637), - [sym__single_quote_open] = ACTIONS(3637), - [sym__double_quote_open] = ACTIONS(3637), - [sym__superscript_open] = ACTIONS(3637), - [sym__subscript_open] = ACTIONS(3637), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3637), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3637), - [sym__cite_author_in_text] = ACTIONS(3637), - [sym__cite_suppress_author] = ACTIONS(3637), - [sym__shortcode_open_escaped] = ACTIONS(3637), - [sym__shortcode_open] = ACTIONS(3637), - [sym__unclosed_span] = ACTIONS(3637), + [sym_backslash_escape] = STATE(369), + [sym_commonmark_attribute] = STATE(369), + [sym_code_span] = STATE(369), + [sym_latex_span] = STATE(369), + [sym_insert] = STATE(369), + [sym_delete] = STATE(369), + [sym_highlight] = STATE(369), + [sym_edit_comment] = STATE(369), + [sym_superscript] = STATE(369), + [sym_subscript] = STATE(369), + [sym_strikeout] = STATE(369), + [sym_quoted_span] = STATE(369), + [sym_inline_note] = STATE(369), + [sym_citation] = STATE(369), + [sym_shortcode_escaped] = STATE(369), + [sym_shortcode] = STATE(369), + [sym_note_reference] = STATE(369), + [sym_image] = STATE(369), + [sym__image_inline_link] = STATE(712), + [sym__image_description] = STATE(2314), + [sym__image_description_non_empty] = STATE(2314), + [sym_hard_line_break] = STATE(369), + [sym__whitespace] = STATE(709), + [sym__word] = STATE(709), + [sym__soft_line_break] = STATE(713), + [sym__text_base] = STATE(369), + [aux_sym__inline_base_repeat1] = STATE(369), + [sym__backslash_escape] = ACTIONS(1341), + [sym_entity_reference] = ACTIONS(3576), + [sym_numeric_character_reference] = ACTIONS(3576), + [anon_sym_LT] = ACTIONS(1345), + [anon_sym_GT] = ACTIONS(1347), + [anon_sym_BANG] = ACTIONS(1349), + [anon_sym_DQUOTE] = ACTIONS(1347), + [anon_sym_POUND] = ACTIONS(1347), + [anon_sym_DOLLAR] = ACTIONS(1347), + [anon_sym_PERCENT] = ACTIONS(1347), + [anon_sym_AMP] = ACTIONS(1345), + [anon_sym_SQUOTE] = ACTIONS(1347), + [anon_sym_STAR] = ACTIONS(1347), + [anon_sym_PLUS] = ACTIONS(1347), + [anon_sym_COMMA] = ACTIONS(1347), + [anon_sym_DASH] = ACTIONS(1345), + [anon_sym_DOT] = ACTIONS(1345), + [anon_sym_SLASH] = ACTIONS(1347), + [anon_sym_COLON] = ACTIONS(1347), + [anon_sym_SEMI] = ACTIONS(1347), + [anon_sym_EQ] = ACTIONS(1347), + [anon_sym_QMARK] = ACTIONS(1347), + [anon_sym_LBRACK] = ACTIONS(3578), + [anon_sym_BSLASH] = ACTIONS(1353), + [anon_sym_CARET] = ACTIONS(1345), + [anon_sym__] = ACTIONS(1347), + [anon_sym_BQUOTE] = ACTIONS(1347), + [anon_sym_LBRACE] = ACTIONS(1355), + [anon_sym_PIPE] = ACTIONS(1347), + [anon_sym_TILDE] = ACTIONS(1347), + [anon_sym_LPAREN] = ACTIONS(1347), + [anon_sym_RPAREN] = ACTIONS(1347), + [sym__newline_token] = ACTIONS(1357), + [aux_sym_insert_token1] = ACTIONS(1359), + [aux_sym_delete_token1] = ACTIONS(1361), + [aux_sym_highlight_token1] = ACTIONS(1363), + [aux_sym_edit_comment_token1] = ACTIONS(1365), + [anon_sym_CARET_LBRACK] = ACTIONS(1367), + [anon_sym_LBRACK_CARET] = ACTIONS(1369), + [sym_uri_autolink] = ACTIONS(3576), + [sym_email_autolink] = ACTIONS(3576), + [sym__whitespace_ge_2] = ACTIONS(1371), + [aux_sym__whitespace_token1] = ACTIONS(1373), + [sym__word_no_digit] = ACTIONS(1375), + [sym__digits] = ACTIONS(1375), + [anon_sym_DASH_DASH] = ACTIONS(1377), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1375), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1375), + [sym__code_span_start] = ACTIONS(1379), + [sym__emphasis_open_star] = ACTIONS(3580), + [sym__emphasis_open_underscore] = ACTIONS(3580), + [sym__strikeout_open] = ACTIONS(1385), + [sym__latex_span_start] = ACTIONS(1387), + [sym__single_quote_open] = ACTIONS(1389), + [sym__double_quote_open] = ACTIONS(1391), + [sym__superscript_open] = ACTIONS(1393), + [sym__superscript_close] = ACTIONS(3580), + [sym__subscript_open] = ACTIONS(1397), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1399), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1401), + [sym__cite_author_in_text] = ACTIONS(1403), + [sym__cite_suppress_author] = ACTIONS(1405), + [sym__shortcode_open_escaped] = ACTIONS(1407), + [sym__shortcode_open] = ACTIONS(1409), + [sym__unclosed_span] = ACTIONS(3576), }, [STATE(366)] = { - [sym__qmd_attribute] = STATE(1024), - [sym_raw_attribute] = STATE(1024), - [sym_commonmark_attribute] = STATE(1024), - [sym_language_attribute] = STATE(1024), - [sym__backslash_escape] = ACTIONS(3663), - [sym_entity_reference] = ACTIONS(3663), - [sym_numeric_character_reference] = ACTIONS(3663), - [anon_sym_LT] = ACTIONS(3665), - [anon_sym_GT] = ACTIONS(3663), - [anon_sym_BANG] = ACTIONS(3663), - [anon_sym_DQUOTE] = ACTIONS(3663), - [anon_sym_POUND] = ACTIONS(3663), - [anon_sym_DOLLAR] = ACTIONS(3663), - [anon_sym_PERCENT] = ACTIONS(3663), - [anon_sym_AMP] = ACTIONS(3665), - [anon_sym_SQUOTE] = ACTIONS(3663), - [anon_sym_STAR] = ACTIONS(3663), - [anon_sym_PLUS] = ACTIONS(3663), - [anon_sym_COMMA] = ACTIONS(3663), - [anon_sym_DASH] = ACTIONS(3665), - [anon_sym_DOT] = ACTIONS(3665), - [anon_sym_SLASH] = ACTIONS(3663), - [anon_sym_COLON] = ACTIONS(3663), - [anon_sym_SEMI] = ACTIONS(3663), - [anon_sym_EQ] = ACTIONS(3663), - [anon_sym_QMARK] = ACTIONS(3663), - [anon_sym_LBRACK] = ACTIONS(3665), - [anon_sym_BSLASH] = ACTIONS(3665), - [anon_sym_CARET] = ACTIONS(3665), - [anon_sym__] = ACTIONS(3663), - [anon_sym_BQUOTE] = ACTIONS(3663), - [anon_sym_LBRACE] = ACTIONS(3713), - [anon_sym_PIPE] = ACTIONS(3663), - [anon_sym_TILDE] = ACTIONS(3663), - [anon_sym_LPAREN] = ACTIONS(3663), - [anon_sym_RPAREN] = ACTIONS(3663), - [sym__newline_token] = ACTIONS(3663), - [anon_sym_CARET_LBRACK] = ACTIONS(3663), - [anon_sym_LBRACK_CARET] = ACTIONS(3663), - [sym_uri_autolink] = ACTIONS(3663), - [sym_email_autolink] = ACTIONS(3663), - [sym__whitespace_ge_2] = ACTIONS(3663), - [aux_sym__whitespace_token1] = ACTIONS(3665), - [sym__word_no_digit] = ACTIONS(3663), - [sym__digits] = ACTIONS(3663), - [anon_sym_DASH_DASH] = ACTIONS(3665), - [anon_sym_DASH_DASH_DASH] = ACTIONS(3663), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3663), - [sym__code_span_start] = ACTIONS(3663), - [sym__emphasis_open_star] = ACTIONS(3663), - [sym__emphasis_open_underscore] = ACTIONS(3663), - [sym__emphasis_close_underscore] = ACTIONS(3663), - [sym__strikeout_open] = ACTIONS(3663), - [sym__latex_span_start] = ACTIONS(3663), - [sym__single_quote_open] = ACTIONS(3663), - [sym__double_quote_open] = ACTIONS(3663), - [sym__superscript_open] = ACTIONS(3663), - [sym__subscript_open] = ACTIONS(3663), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3663), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3663), - [sym__cite_author_in_text] = ACTIONS(3663), - [sym__cite_suppress_author] = ACTIONS(3663), - [sym__shortcode_open_escaped] = ACTIONS(3663), - [sym__shortcode_open] = ACTIONS(3663), - [sym__unclosed_span] = ACTIONS(3663), + [sym_backslash_escape] = STATE(381), + [sym_commonmark_attribute] = STATE(381), + [sym_code_span] = STATE(381), + [sym_latex_span] = STATE(381), + [sym_insert] = STATE(381), + [sym_delete] = STATE(381), + [sym_highlight] = STATE(381), + [sym_edit_comment] = STATE(381), + [sym_superscript] = STATE(381), + [sym_subscript] = STATE(381), + [sym_strikeout] = STATE(381), + [sym_quoted_span] = STATE(381), + [sym_inline_note] = STATE(381), + [sym_citation] = STATE(381), + [sym_shortcode_escaped] = STATE(381), + [sym_shortcode] = STATE(381), + [sym_note_reference] = STATE(381), + [sym_image] = STATE(381), + [sym__image_inline_link] = STATE(1244), + [sym__image_description] = STATE(2280), + [sym__image_description_non_empty] = STATE(2280), + [sym_hard_line_break] = STATE(381), + [sym__whitespace] = STATE(1218), + [sym__word] = STATE(1218), + [sym__soft_line_break] = STATE(1245), + [sym__text_base] = STATE(381), + [aux_sym__inline_base_repeat1] = STATE(381), + [sym__backslash_escape] = ACTIONS(2005), + [sym_entity_reference] = ACTIONS(3582), + [sym_numeric_character_reference] = ACTIONS(3582), + [anon_sym_LT] = ACTIONS(2009), + [anon_sym_GT] = ACTIONS(2011), + [anon_sym_BANG] = ACTIONS(2013), + [anon_sym_DQUOTE] = ACTIONS(2011), + [anon_sym_POUND] = ACTIONS(2011), + [anon_sym_DOLLAR] = ACTIONS(2011), + [anon_sym_PERCENT] = ACTIONS(2011), + [anon_sym_AMP] = ACTIONS(2009), + [anon_sym_SQUOTE] = ACTIONS(2011), + [anon_sym_STAR] = ACTIONS(2011), + [anon_sym_PLUS] = ACTIONS(2011), + [anon_sym_COMMA] = ACTIONS(2011), + [anon_sym_DASH] = ACTIONS(2009), + [anon_sym_DOT] = ACTIONS(2009), + [anon_sym_SLASH] = ACTIONS(2011), + [anon_sym_COLON] = ACTIONS(2011), + [anon_sym_SEMI] = ACTIONS(2011), + [anon_sym_EQ] = ACTIONS(2011), + [anon_sym_QMARK] = ACTIONS(2011), + [anon_sym_LBRACK] = ACTIONS(3578), + [anon_sym_BSLASH] = ACTIONS(2017), + [anon_sym_CARET] = ACTIONS(2009), + [anon_sym__] = ACTIONS(2011), + [anon_sym_BQUOTE] = ACTIONS(2011), + [anon_sym_LBRACE] = ACTIONS(2019), + [anon_sym_PIPE] = ACTIONS(2011), + [anon_sym_TILDE] = ACTIONS(2011), + [anon_sym_LPAREN] = ACTIONS(2011), + [anon_sym_RPAREN] = ACTIONS(2011), + [sym__newline_token] = ACTIONS(2021), + [aux_sym_insert_token1] = ACTIONS(2023), + [aux_sym_delete_token1] = ACTIONS(2025), + [aux_sym_highlight_token1] = ACTIONS(2027), + [aux_sym_edit_comment_token1] = ACTIONS(2029), + [anon_sym_CARET_LBRACK] = ACTIONS(2031), + [anon_sym_LBRACK_CARET] = ACTIONS(2033), + [sym_uri_autolink] = ACTIONS(3582), + [sym_email_autolink] = ACTIONS(3582), + [sym__whitespace_ge_2] = ACTIONS(2035), + [aux_sym__whitespace_token1] = ACTIONS(2037), + [sym__word_no_digit] = ACTIONS(2039), + [sym__digits] = ACTIONS(2039), + [anon_sym_DASH_DASH] = ACTIONS(2041), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2039), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2039), + [sym__code_span_start] = ACTIONS(2043), + [sym__emphasis_open_star] = ACTIONS(3580), + [sym__emphasis_open_underscore] = ACTIONS(3580), + [sym__strikeout_open] = ACTIONS(2049), + [sym__strikeout_close] = ACTIONS(3580), + [sym__latex_span_start] = ACTIONS(2053), + [sym__single_quote_open] = ACTIONS(2055), + [sym__double_quote_open] = ACTIONS(2057), + [sym__superscript_open] = ACTIONS(2059), + [sym__subscript_open] = ACTIONS(2061), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2063), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2065), + [sym__cite_author_in_text] = ACTIONS(2067), + [sym__cite_suppress_author] = ACTIONS(2069), + [sym__shortcode_open_escaped] = ACTIONS(2071), + [sym__shortcode_open] = ACTIONS(2073), + [sym__unclosed_span] = ACTIONS(3582), }, [STATE(367)] = { - [sym__qmd_attribute] = STATE(1028), - [sym_raw_attribute] = STATE(1028), - [sym_commonmark_attribute] = STATE(1028), - [sym_language_attribute] = STATE(1028), - [sym__backslash_escape] = ACTIONS(3667), - [sym_entity_reference] = ACTIONS(3667), - [sym_numeric_character_reference] = ACTIONS(3667), - [anon_sym_LT] = ACTIONS(3669), - [anon_sym_GT] = ACTIONS(3667), - [anon_sym_BANG] = ACTIONS(3667), - [anon_sym_DQUOTE] = ACTIONS(3667), - [anon_sym_POUND] = ACTIONS(3667), - [anon_sym_DOLLAR] = ACTIONS(3667), - [anon_sym_PERCENT] = ACTIONS(3667), - [anon_sym_AMP] = ACTIONS(3669), - [anon_sym_SQUOTE] = ACTIONS(3667), - [anon_sym_STAR] = ACTIONS(3667), - [anon_sym_PLUS] = ACTIONS(3667), - [anon_sym_COMMA] = ACTIONS(3667), - [anon_sym_DASH] = ACTIONS(3669), - [anon_sym_DOT] = ACTIONS(3669), - [anon_sym_SLASH] = ACTIONS(3667), - [anon_sym_COLON] = ACTIONS(3667), - [anon_sym_SEMI] = ACTIONS(3667), - [anon_sym_EQ] = ACTIONS(3667), - [anon_sym_QMARK] = ACTIONS(3667), - [anon_sym_LBRACK] = ACTIONS(3669), - [anon_sym_BSLASH] = ACTIONS(3669), - [anon_sym_CARET] = ACTIONS(3669), - [anon_sym__] = ACTIONS(3667), - [anon_sym_BQUOTE] = ACTIONS(3667), - [anon_sym_LBRACE] = ACTIONS(3713), - [anon_sym_PIPE] = ACTIONS(3667), - [anon_sym_TILDE] = ACTIONS(3667), - [anon_sym_LPAREN] = ACTIONS(3667), - [anon_sym_RPAREN] = ACTIONS(3667), - [sym__newline_token] = ACTIONS(3667), - [anon_sym_CARET_LBRACK] = ACTIONS(3667), - [anon_sym_LBRACK_CARET] = ACTIONS(3667), - [sym_uri_autolink] = ACTIONS(3667), - [sym_email_autolink] = ACTIONS(3667), - [sym__whitespace_ge_2] = ACTIONS(3667), - [aux_sym__whitespace_token1] = ACTIONS(3669), - [sym__word_no_digit] = ACTIONS(3667), - [sym__digits] = ACTIONS(3667), - [anon_sym_DASH_DASH] = ACTIONS(3669), - [anon_sym_DASH_DASH_DASH] = ACTIONS(3667), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3667), - [sym__code_span_start] = ACTIONS(3667), - [sym__emphasis_open_star] = ACTIONS(3667), - [sym__emphasis_open_underscore] = ACTIONS(3667), - [sym__emphasis_close_underscore] = ACTIONS(3667), - [sym__strikeout_open] = ACTIONS(3667), - [sym__latex_span_start] = ACTIONS(3667), - [sym__single_quote_open] = ACTIONS(3667), - [sym__double_quote_open] = ACTIONS(3667), - [sym__superscript_open] = ACTIONS(3667), - [sym__subscript_open] = ACTIONS(3667), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3667), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3667), - [sym__cite_author_in_text] = ACTIONS(3667), - [sym__cite_suppress_author] = ACTIONS(3667), - [sym__shortcode_open_escaped] = ACTIONS(3667), - [sym__shortcode_open] = ACTIONS(3667), - [sym__unclosed_span] = ACTIONS(3667), + [sym_backslash_escape] = STATE(368), + [sym_commonmark_attribute] = STATE(368), + [sym_code_span] = STATE(368), + [sym_latex_span] = STATE(368), + [sym_insert] = STATE(368), + [sym_delete] = STATE(368), + [sym_highlight] = STATE(368), + [sym_edit_comment] = STATE(368), + [sym_superscript] = STATE(368), + [sym_subscript] = STATE(368), + [sym_strikeout] = STATE(368), + [sym_quoted_span] = STATE(368), + [sym_inline_note] = STATE(368), + [sym_citation] = STATE(368), + [sym_shortcode_escaped] = STATE(368), + [sym_shortcode] = STATE(368), + [sym_note_reference] = STATE(368), + [sym_image] = STATE(368), + [sym__image_inline_link] = STATE(819), + [sym__image_description] = STATE(2328), + [sym__image_description_non_empty] = STATE(2328), + [sym_hard_line_break] = STATE(368), + [sym__whitespace] = STATE(816), + [sym__word] = STATE(816), + [sym__soft_line_break] = STATE(820), + [sym__text_base] = STATE(368), + [aux_sym__inline_base_repeat1] = STATE(368), + [sym__backslash_escape] = ACTIONS(1413), + [sym_entity_reference] = ACTIONS(3584), + [sym_numeric_character_reference] = ACTIONS(3584), + [anon_sym_LT] = ACTIONS(1417), + [anon_sym_GT] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1419), + [anon_sym_POUND] = ACTIONS(1419), + [anon_sym_DOLLAR] = ACTIONS(1419), + [anon_sym_PERCENT] = ACTIONS(1419), + [anon_sym_AMP] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [anon_sym_STAR] = ACTIONS(1419), + [anon_sym_PLUS] = ACTIONS(1419), + [anon_sym_COMMA] = ACTIONS(1419), + [anon_sym_DASH] = ACTIONS(1417), + [anon_sym_DOT] = ACTIONS(1417), + [anon_sym_SLASH] = ACTIONS(1419), + [anon_sym_COLON] = ACTIONS(1419), + [anon_sym_SEMI] = ACTIONS(1419), + [anon_sym_EQ] = ACTIONS(1419), + [anon_sym_QMARK] = ACTIONS(1419), + [anon_sym_LBRACK] = ACTIONS(3578), + [anon_sym_BSLASH] = ACTIONS(1425), + [anon_sym_CARET] = ACTIONS(1417), + [anon_sym__] = ACTIONS(1419), + [anon_sym_BQUOTE] = ACTIONS(1419), + [anon_sym_LBRACE] = ACTIONS(1427), + [anon_sym_PIPE] = ACTIONS(1419), + [anon_sym_TILDE] = ACTIONS(1419), + [anon_sym_LPAREN] = ACTIONS(1419), + [anon_sym_RPAREN] = ACTIONS(1419), + [sym__newline_token] = ACTIONS(1429), + [aux_sym_insert_token1] = ACTIONS(1431), + [aux_sym_delete_token1] = ACTIONS(1433), + [aux_sym_highlight_token1] = ACTIONS(1435), + [aux_sym_edit_comment_token1] = ACTIONS(1437), + [anon_sym_CARET_LBRACK] = ACTIONS(1439), + [anon_sym_LBRACK_CARET] = ACTIONS(1441), + [sym_uri_autolink] = ACTIONS(3584), + [sym_email_autolink] = ACTIONS(3584), + [sym__whitespace_ge_2] = ACTIONS(1443), + [aux_sym__whitespace_token1] = ACTIONS(1445), + [sym__word_no_digit] = ACTIONS(1447), + [sym__digits] = ACTIONS(1447), + [anon_sym_DASH_DASH] = ACTIONS(1449), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1447), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1447), + [sym__code_span_start] = ACTIONS(1451), + [sym__emphasis_open_star] = ACTIONS(3580), + [sym__emphasis_open_underscore] = ACTIONS(3580), + [sym__strikeout_open] = ACTIONS(1457), + [sym__latex_span_start] = ACTIONS(1459), + [sym__single_quote_open] = ACTIONS(1461), + [sym__double_quote_open] = ACTIONS(1463), + [sym__superscript_open] = ACTIONS(1465), + [sym__subscript_open] = ACTIONS(1467), + [sym__subscript_close] = ACTIONS(3580), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1471), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1473), + [sym__cite_author_in_text] = ACTIONS(1475), + [sym__cite_suppress_author] = ACTIONS(1477), + [sym__shortcode_open_escaped] = ACTIONS(1479), + [sym__shortcode_open] = ACTIONS(1481), + [sym__unclosed_span] = ACTIONS(3584), }, [STATE(368)] = { - [sym__qmd_attribute] = STATE(1030), - [sym_raw_attribute] = STATE(1030), - [sym_commonmark_attribute] = STATE(1030), - [sym_language_attribute] = STATE(1030), - [sym__backslash_escape] = ACTIONS(3671), - [sym_entity_reference] = ACTIONS(3671), - [sym_numeric_character_reference] = ACTIONS(3671), - [anon_sym_LT] = ACTIONS(3673), - [anon_sym_GT] = ACTIONS(3671), - [anon_sym_BANG] = ACTIONS(3671), - [anon_sym_DQUOTE] = ACTIONS(3671), - [anon_sym_POUND] = ACTIONS(3671), - [anon_sym_DOLLAR] = ACTIONS(3671), - [anon_sym_PERCENT] = ACTIONS(3671), - [anon_sym_AMP] = ACTIONS(3673), - [anon_sym_SQUOTE] = ACTIONS(3671), - [anon_sym_STAR] = ACTIONS(3671), - [anon_sym_PLUS] = ACTIONS(3671), - [anon_sym_COMMA] = ACTIONS(3671), - [anon_sym_DASH] = ACTIONS(3673), - [anon_sym_DOT] = ACTIONS(3673), - [anon_sym_SLASH] = ACTIONS(3671), - [anon_sym_COLON] = ACTIONS(3671), - [anon_sym_SEMI] = ACTIONS(3671), - [anon_sym_EQ] = ACTIONS(3671), - [anon_sym_QMARK] = ACTIONS(3671), - [anon_sym_LBRACK] = ACTIONS(3673), - [anon_sym_BSLASH] = ACTIONS(3673), - [anon_sym_CARET] = ACTIONS(3673), - [anon_sym__] = ACTIONS(3671), - [anon_sym_BQUOTE] = ACTIONS(3671), - [anon_sym_LBRACE] = ACTIONS(3713), - [anon_sym_PIPE] = ACTIONS(3671), - [anon_sym_TILDE] = ACTIONS(3671), - [anon_sym_LPAREN] = ACTIONS(3671), - [anon_sym_RPAREN] = ACTIONS(3671), - [sym__newline_token] = ACTIONS(3671), - [anon_sym_CARET_LBRACK] = ACTIONS(3671), - [anon_sym_LBRACK_CARET] = ACTIONS(3671), - [sym_uri_autolink] = ACTIONS(3671), - [sym_email_autolink] = ACTIONS(3671), - [sym__whitespace_ge_2] = ACTIONS(3671), - [aux_sym__whitespace_token1] = ACTIONS(3673), - [sym__word_no_digit] = ACTIONS(3671), - [sym__digits] = ACTIONS(3671), - [anon_sym_DASH_DASH] = ACTIONS(3673), - [anon_sym_DASH_DASH_DASH] = ACTIONS(3671), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3671), - [sym__code_span_start] = ACTIONS(3671), - [sym__emphasis_open_star] = ACTIONS(3671), - [sym__emphasis_open_underscore] = ACTIONS(3671), - [sym__emphasis_close_underscore] = ACTIONS(3671), - [sym__strikeout_open] = ACTIONS(3671), - [sym__latex_span_start] = ACTIONS(3671), - [sym__single_quote_open] = ACTIONS(3671), - [sym__double_quote_open] = ACTIONS(3671), - [sym__superscript_open] = ACTIONS(3671), - [sym__subscript_open] = ACTIONS(3671), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3671), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3671), + [sym_backslash_escape] = STATE(368), + [sym_commonmark_attribute] = STATE(368), + [sym_code_span] = STATE(368), + [sym_latex_span] = STATE(368), + [sym_insert] = STATE(368), + [sym_delete] = STATE(368), + [sym_highlight] = STATE(368), + [sym_edit_comment] = STATE(368), + [sym_superscript] = STATE(368), + [sym_subscript] = STATE(368), + [sym_strikeout] = STATE(368), + [sym_quoted_span] = STATE(368), + [sym_inline_note] = STATE(368), + [sym_citation] = STATE(368), + [sym_shortcode_escaped] = STATE(368), + [sym_shortcode] = STATE(368), + [sym_note_reference] = STATE(368), + [sym_image] = STATE(368), + [sym__image_inline_link] = STATE(819), + [sym__image_description] = STATE(2328), + [sym__image_description_non_empty] = STATE(2328), + [sym_hard_line_break] = STATE(368), + [sym__whitespace] = STATE(816), + [sym__word] = STATE(816), + [sym__soft_line_break] = STATE(820), + [sym__text_base] = STATE(368), + [aux_sym__inline_base_repeat1] = STATE(368), + [sym__backslash_escape] = ACTIONS(3586), + [sym_entity_reference] = ACTIONS(3589), + [sym_numeric_character_reference] = ACTIONS(3589), + [anon_sym_LT] = ACTIONS(3592), + [anon_sym_GT] = ACTIONS(3595), + [anon_sym_BANG] = ACTIONS(3598), + [anon_sym_DQUOTE] = ACTIONS(3595), + [anon_sym_POUND] = ACTIONS(3595), + [anon_sym_DOLLAR] = ACTIONS(3595), + [anon_sym_PERCENT] = ACTIONS(3595), + [anon_sym_AMP] = ACTIONS(3592), + [anon_sym_SQUOTE] = ACTIONS(3595), + [anon_sym_STAR] = ACTIONS(3595), + [anon_sym_PLUS] = ACTIONS(3595), + [anon_sym_COMMA] = ACTIONS(3595), + [anon_sym_DASH] = ACTIONS(3592), + [anon_sym_DOT] = ACTIONS(3592), + [anon_sym_SLASH] = ACTIONS(3595), + [anon_sym_COLON] = ACTIONS(3595), + [anon_sym_SEMI] = ACTIONS(3595), + [anon_sym_EQ] = ACTIONS(3595), + [anon_sym_QMARK] = ACTIONS(3595), + [anon_sym_LBRACK] = ACTIONS(3601), + [anon_sym_BSLASH] = ACTIONS(3603), + [anon_sym_CARET] = ACTIONS(3592), + [anon_sym__] = ACTIONS(3595), + [anon_sym_BQUOTE] = ACTIONS(3595), + [anon_sym_LBRACE] = ACTIONS(3606), + [anon_sym_PIPE] = ACTIONS(3595), + [anon_sym_TILDE] = ACTIONS(3595), + [anon_sym_LPAREN] = ACTIONS(3595), + [anon_sym_RPAREN] = ACTIONS(3595), + [sym__newline_token] = ACTIONS(3609), + [aux_sym_insert_token1] = ACTIONS(3612), + [aux_sym_delete_token1] = ACTIONS(3615), + [aux_sym_highlight_token1] = ACTIONS(3618), + [aux_sym_edit_comment_token1] = ACTIONS(3621), + [anon_sym_CARET_LBRACK] = ACTIONS(3624), + [anon_sym_LBRACK_CARET] = ACTIONS(3627), + [sym_uri_autolink] = ACTIONS(3589), + [sym_email_autolink] = ACTIONS(3589), + [sym__whitespace_ge_2] = ACTIONS(3630), + [aux_sym__whitespace_token1] = ACTIONS(3633), + [sym__word_no_digit] = ACTIONS(3636), + [sym__digits] = ACTIONS(3636), + [anon_sym_DASH_DASH] = ACTIONS(3639), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3636), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3636), + [sym__code_span_start] = ACTIONS(3642), + [sym__emphasis_open_star] = ACTIONS(3645), + [sym__emphasis_open_underscore] = ACTIONS(3645), + [sym__strikeout_open] = ACTIONS(3647), + [sym__latex_span_start] = ACTIONS(3650), + [sym__single_quote_open] = ACTIONS(3653), + [sym__double_quote_open] = ACTIONS(3656), + [sym__superscript_open] = ACTIONS(3659), + [sym__subscript_open] = ACTIONS(3662), + [sym__subscript_close] = ACTIONS(3645), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3665), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3668), [sym__cite_author_in_text] = ACTIONS(3671), - [sym__cite_suppress_author] = ACTIONS(3671), - [sym__shortcode_open_escaped] = ACTIONS(3671), - [sym__shortcode_open] = ACTIONS(3671), - [sym__unclosed_span] = ACTIONS(3671), + [sym__cite_suppress_author] = ACTIONS(3674), + [sym__shortcode_open_escaped] = ACTIONS(3677), + [sym__shortcode_open] = ACTIONS(3680), + [sym__unclosed_span] = ACTIONS(3589), }, [STATE(369)] = { - [sym__qmd_attribute] = STATE(1031), - [sym_raw_attribute] = STATE(1031), - [sym_commonmark_attribute] = STATE(1031), - [sym_language_attribute] = STATE(1031), - [sym__backslash_escape] = ACTIONS(3675), - [sym_entity_reference] = ACTIONS(3675), - [sym_numeric_character_reference] = ACTIONS(3675), - [anon_sym_LT] = ACTIONS(3677), - [anon_sym_GT] = ACTIONS(3675), - [anon_sym_BANG] = ACTIONS(3675), - [anon_sym_DQUOTE] = ACTIONS(3675), - [anon_sym_POUND] = ACTIONS(3675), - [anon_sym_DOLLAR] = ACTIONS(3675), - [anon_sym_PERCENT] = ACTIONS(3675), - [anon_sym_AMP] = ACTIONS(3677), - [anon_sym_SQUOTE] = ACTIONS(3675), - [anon_sym_STAR] = ACTIONS(3675), - [anon_sym_PLUS] = ACTIONS(3675), - [anon_sym_COMMA] = ACTIONS(3675), - [anon_sym_DASH] = ACTIONS(3677), - [anon_sym_DOT] = ACTIONS(3677), - [anon_sym_SLASH] = ACTIONS(3675), - [anon_sym_COLON] = ACTIONS(3675), - [anon_sym_SEMI] = ACTIONS(3675), - [anon_sym_EQ] = ACTIONS(3675), - [anon_sym_QMARK] = ACTIONS(3675), - [anon_sym_LBRACK] = ACTIONS(3677), - [anon_sym_BSLASH] = ACTIONS(3677), - [anon_sym_CARET] = ACTIONS(3677), - [anon_sym__] = ACTIONS(3675), - [anon_sym_BQUOTE] = ACTIONS(3675), - [anon_sym_LBRACE] = ACTIONS(3713), - [anon_sym_PIPE] = ACTIONS(3675), - [anon_sym_TILDE] = ACTIONS(3675), - [anon_sym_LPAREN] = ACTIONS(3675), - [anon_sym_RPAREN] = ACTIONS(3675), - [sym__newline_token] = ACTIONS(3675), - [anon_sym_CARET_LBRACK] = ACTIONS(3675), - [anon_sym_LBRACK_CARET] = ACTIONS(3675), - [sym_uri_autolink] = ACTIONS(3675), - [sym_email_autolink] = ACTIONS(3675), - [sym__whitespace_ge_2] = ACTIONS(3675), - [aux_sym__whitespace_token1] = ACTIONS(3677), - [sym__word_no_digit] = ACTIONS(3675), - [sym__digits] = ACTIONS(3675), - [anon_sym_DASH_DASH] = ACTIONS(3677), - [anon_sym_DASH_DASH_DASH] = ACTIONS(3675), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3675), - [sym__code_span_start] = ACTIONS(3675), - [sym__emphasis_open_star] = ACTIONS(3675), - [sym__emphasis_open_underscore] = ACTIONS(3675), - [sym__emphasis_close_underscore] = ACTIONS(3675), - [sym__strikeout_open] = ACTIONS(3675), - [sym__latex_span_start] = ACTIONS(3675), - [sym__single_quote_open] = ACTIONS(3675), - [sym__double_quote_open] = ACTIONS(3675), - [sym__superscript_open] = ACTIONS(3675), - [sym__subscript_open] = ACTIONS(3675), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3675), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3675), - [sym__cite_author_in_text] = ACTIONS(3675), - [sym__cite_suppress_author] = ACTIONS(3675), - [sym__shortcode_open_escaped] = ACTIONS(3675), - [sym__shortcode_open] = ACTIONS(3675), - [sym__unclosed_span] = ACTIONS(3675), - }, - [STATE(370)] = { - [sym__qmd_attribute] = STATE(1032), - [sym_raw_attribute] = STATE(1032), - [sym_commonmark_attribute] = STATE(1032), - [sym_language_attribute] = STATE(1032), - [sym__backslash_escape] = ACTIONS(3679), - [sym_entity_reference] = ACTIONS(3679), - [sym_numeric_character_reference] = ACTIONS(3679), - [anon_sym_LT] = ACTIONS(3681), - [anon_sym_GT] = ACTIONS(3679), - [anon_sym_BANG] = ACTIONS(3679), - [anon_sym_DQUOTE] = ACTIONS(3679), - [anon_sym_POUND] = ACTIONS(3679), - [anon_sym_DOLLAR] = ACTIONS(3679), - [anon_sym_PERCENT] = ACTIONS(3679), - [anon_sym_AMP] = ACTIONS(3681), - [anon_sym_SQUOTE] = ACTIONS(3679), - [anon_sym_STAR] = ACTIONS(3679), - [anon_sym_PLUS] = ACTIONS(3679), - [anon_sym_COMMA] = ACTIONS(3679), - [anon_sym_DASH] = ACTIONS(3681), - [anon_sym_DOT] = ACTIONS(3681), - [anon_sym_SLASH] = ACTIONS(3679), - [anon_sym_COLON] = ACTIONS(3679), - [anon_sym_SEMI] = ACTIONS(3679), - [anon_sym_EQ] = ACTIONS(3679), - [anon_sym_QMARK] = ACTIONS(3679), - [anon_sym_LBRACK] = ACTIONS(3681), - [anon_sym_BSLASH] = ACTIONS(3681), - [anon_sym_CARET] = ACTIONS(3681), - [anon_sym__] = ACTIONS(3679), - [anon_sym_BQUOTE] = ACTIONS(3679), - [anon_sym_LBRACE] = ACTIONS(3713), - [anon_sym_PIPE] = ACTIONS(3679), - [anon_sym_TILDE] = ACTIONS(3679), - [anon_sym_LPAREN] = ACTIONS(3679), - [anon_sym_RPAREN] = ACTIONS(3679), - [sym__newline_token] = ACTIONS(3679), - [anon_sym_CARET_LBRACK] = ACTIONS(3679), - [anon_sym_LBRACK_CARET] = ACTIONS(3679), - [sym_uri_autolink] = ACTIONS(3679), - [sym_email_autolink] = ACTIONS(3679), - [sym__whitespace_ge_2] = ACTIONS(3679), - [aux_sym__whitespace_token1] = ACTIONS(3681), - [sym__word_no_digit] = ACTIONS(3679), - [sym__digits] = ACTIONS(3679), - [anon_sym_DASH_DASH] = ACTIONS(3681), - [anon_sym_DASH_DASH_DASH] = ACTIONS(3679), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3679), - [sym__code_span_start] = ACTIONS(3679), - [sym__emphasis_open_star] = ACTIONS(3679), - [sym__emphasis_open_underscore] = ACTIONS(3679), - [sym__emphasis_close_underscore] = ACTIONS(3679), - [sym__strikeout_open] = ACTIONS(3679), - [sym__latex_span_start] = ACTIONS(3679), - [sym__single_quote_open] = ACTIONS(3679), - [sym__double_quote_open] = ACTIONS(3679), - [sym__superscript_open] = ACTIONS(3679), - [sym__subscript_open] = ACTIONS(3679), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3679), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3679), - [sym__cite_author_in_text] = ACTIONS(3679), - [sym__cite_suppress_author] = ACTIONS(3679), - [sym__shortcode_open_escaped] = ACTIONS(3679), - [sym__shortcode_open] = ACTIONS(3679), - [sym__unclosed_span] = ACTIONS(3679), - }, - [STATE(371)] = { - [sym__qmd_attribute] = STATE(1033), - [sym_raw_attribute] = STATE(1033), - [sym_commonmark_attribute] = STATE(1033), - [sym_language_attribute] = STATE(1033), + [sym_backslash_escape] = STATE(369), + [sym_commonmark_attribute] = STATE(369), + [sym_code_span] = STATE(369), + [sym_latex_span] = STATE(369), + [sym_insert] = STATE(369), + [sym_delete] = STATE(369), + [sym_highlight] = STATE(369), + [sym_edit_comment] = STATE(369), + [sym_superscript] = STATE(369), + [sym_subscript] = STATE(369), + [sym_strikeout] = STATE(369), + [sym_quoted_span] = STATE(369), + [sym_inline_note] = STATE(369), + [sym_citation] = STATE(369), + [sym_shortcode_escaped] = STATE(369), + [sym_shortcode] = STATE(369), + [sym_note_reference] = STATE(369), + [sym_image] = STATE(369), + [sym__image_inline_link] = STATE(712), + [sym__image_description] = STATE(2314), + [sym__image_description_non_empty] = STATE(2314), + [sym_hard_line_break] = STATE(369), + [sym__whitespace] = STATE(709), + [sym__word] = STATE(709), + [sym__soft_line_break] = STATE(713), + [sym__text_base] = STATE(369), + [aux_sym__inline_base_repeat1] = STATE(369), [sym__backslash_escape] = ACTIONS(3683), - [sym_entity_reference] = ACTIONS(3683), - [sym_numeric_character_reference] = ACTIONS(3683), - [anon_sym_LT] = ACTIONS(3685), - [anon_sym_GT] = ACTIONS(3683), - [anon_sym_BANG] = ACTIONS(3683), - [anon_sym_DQUOTE] = ACTIONS(3683), - [anon_sym_POUND] = ACTIONS(3683), - [anon_sym_DOLLAR] = ACTIONS(3683), - [anon_sym_PERCENT] = ACTIONS(3683), - [anon_sym_AMP] = ACTIONS(3685), - [anon_sym_SQUOTE] = ACTIONS(3683), - [anon_sym_STAR] = ACTIONS(3683), - [anon_sym_PLUS] = ACTIONS(3683), - [anon_sym_COMMA] = ACTIONS(3683), - [anon_sym_DASH] = ACTIONS(3685), - [anon_sym_DOT] = ACTIONS(3685), - [anon_sym_SLASH] = ACTIONS(3683), - [anon_sym_COLON] = ACTIONS(3683), - [anon_sym_SEMI] = ACTIONS(3683), - [anon_sym_EQ] = ACTIONS(3683), - [anon_sym_QMARK] = ACTIONS(3683), - [anon_sym_LBRACK] = ACTIONS(3685), - [anon_sym_BSLASH] = ACTIONS(3685), - [anon_sym_CARET] = ACTIONS(3685), - [anon_sym__] = ACTIONS(3683), - [anon_sym_BQUOTE] = ACTIONS(3683), - [anon_sym_LBRACE] = ACTIONS(3713), - [anon_sym_PIPE] = ACTIONS(3683), - [anon_sym_TILDE] = ACTIONS(3683), - [anon_sym_LPAREN] = ACTIONS(3683), - [anon_sym_RPAREN] = ACTIONS(3683), - [sym__newline_token] = ACTIONS(3683), - [anon_sym_CARET_LBRACK] = ACTIONS(3683), - [anon_sym_LBRACK_CARET] = ACTIONS(3683), - [sym_uri_autolink] = ACTIONS(3683), - [sym_email_autolink] = ACTIONS(3683), - [sym__whitespace_ge_2] = ACTIONS(3683), - [aux_sym__whitespace_token1] = ACTIONS(3685), - [sym__word_no_digit] = ACTIONS(3683), - [sym__digits] = ACTIONS(3683), - [anon_sym_DASH_DASH] = ACTIONS(3685), - [anon_sym_DASH_DASH_DASH] = ACTIONS(3683), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3683), - [sym__code_span_start] = ACTIONS(3683), - [sym__emphasis_open_star] = ACTIONS(3683), - [sym__emphasis_open_underscore] = ACTIONS(3683), - [sym__emphasis_close_underscore] = ACTIONS(3683), - [sym__strikeout_open] = ACTIONS(3683), - [sym__latex_span_start] = ACTIONS(3683), - [sym__single_quote_open] = ACTIONS(3683), - [sym__double_quote_open] = ACTIONS(3683), - [sym__superscript_open] = ACTIONS(3683), - [sym__subscript_open] = ACTIONS(3683), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3683), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3683), - [sym__cite_author_in_text] = ACTIONS(3683), - [sym__cite_suppress_author] = ACTIONS(3683), - [sym__shortcode_open_escaped] = ACTIONS(3683), - [sym__shortcode_open] = ACTIONS(3683), - [sym__unclosed_span] = ACTIONS(3683), - }, - [STATE(372)] = { - [sym__qmd_attribute] = STATE(1034), - [sym_raw_attribute] = STATE(1034), - [sym_commonmark_attribute] = STATE(1034), - [sym_language_attribute] = STATE(1034), - [sym__backslash_escape] = ACTIONS(3687), - [sym_entity_reference] = ACTIONS(3687), - [sym_numeric_character_reference] = ACTIONS(3687), + [sym_entity_reference] = ACTIONS(3686), + [sym_numeric_character_reference] = ACTIONS(3686), [anon_sym_LT] = ACTIONS(3689), - [anon_sym_GT] = ACTIONS(3687), - [anon_sym_BANG] = ACTIONS(3687), - [anon_sym_DQUOTE] = ACTIONS(3687), - [anon_sym_POUND] = ACTIONS(3687), - [anon_sym_DOLLAR] = ACTIONS(3687), - [anon_sym_PERCENT] = ACTIONS(3687), + [anon_sym_GT] = ACTIONS(3692), + [anon_sym_BANG] = ACTIONS(3695), + [anon_sym_DQUOTE] = ACTIONS(3692), + [anon_sym_POUND] = ACTIONS(3692), + [anon_sym_DOLLAR] = ACTIONS(3692), + [anon_sym_PERCENT] = ACTIONS(3692), [anon_sym_AMP] = ACTIONS(3689), - [anon_sym_SQUOTE] = ACTIONS(3687), - [anon_sym_STAR] = ACTIONS(3687), - [anon_sym_PLUS] = ACTIONS(3687), - [anon_sym_COMMA] = ACTIONS(3687), + [anon_sym_SQUOTE] = ACTIONS(3692), + [anon_sym_STAR] = ACTIONS(3692), + [anon_sym_PLUS] = ACTIONS(3692), + [anon_sym_COMMA] = ACTIONS(3692), [anon_sym_DASH] = ACTIONS(3689), [anon_sym_DOT] = ACTIONS(3689), - [anon_sym_SLASH] = ACTIONS(3687), - [anon_sym_COLON] = ACTIONS(3687), - [anon_sym_SEMI] = ACTIONS(3687), - [anon_sym_EQ] = ACTIONS(3687), - [anon_sym_QMARK] = ACTIONS(3687), - [anon_sym_LBRACK] = ACTIONS(3689), - [anon_sym_BSLASH] = ACTIONS(3689), + [anon_sym_SLASH] = ACTIONS(3692), + [anon_sym_COLON] = ACTIONS(3692), + [anon_sym_SEMI] = ACTIONS(3692), + [anon_sym_EQ] = ACTIONS(3692), + [anon_sym_QMARK] = ACTIONS(3692), + [anon_sym_LBRACK] = ACTIONS(3601), + [anon_sym_BSLASH] = ACTIONS(3698), [anon_sym_CARET] = ACTIONS(3689), - [anon_sym__] = ACTIONS(3687), - [anon_sym_BQUOTE] = ACTIONS(3687), - [anon_sym_LBRACE] = ACTIONS(3713), - [anon_sym_PIPE] = ACTIONS(3687), - [anon_sym_TILDE] = ACTIONS(3687), - [anon_sym_LPAREN] = ACTIONS(3687), - [anon_sym_RPAREN] = ACTIONS(3687), - [sym__newline_token] = ACTIONS(3687), - [anon_sym_CARET_LBRACK] = ACTIONS(3687), - [anon_sym_LBRACK_CARET] = ACTIONS(3687), - [sym_uri_autolink] = ACTIONS(3687), - [sym_email_autolink] = ACTIONS(3687), - [sym__whitespace_ge_2] = ACTIONS(3687), - [aux_sym__whitespace_token1] = ACTIONS(3689), - [sym__word_no_digit] = ACTIONS(3687), - [sym__digits] = ACTIONS(3687), - [anon_sym_DASH_DASH] = ACTIONS(3689), - [anon_sym_DASH_DASH_DASH] = ACTIONS(3687), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3687), - [sym__code_span_start] = ACTIONS(3687), - [sym__emphasis_open_star] = ACTIONS(3687), - [sym__emphasis_open_underscore] = ACTIONS(3687), - [sym__emphasis_close_underscore] = ACTIONS(3687), - [sym__strikeout_open] = ACTIONS(3687), - [sym__latex_span_start] = ACTIONS(3687), - [sym__single_quote_open] = ACTIONS(3687), - [sym__double_quote_open] = ACTIONS(3687), - [sym__superscript_open] = ACTIONS(3687), - [sym__subscript_open] = ACTIONS(3687), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3687), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3687), - [sym__cite_author_in_text] = ACTIONS(3687), - [sym__cite_suppress_author] = ACTIONS(3687), - [sym__shortcode_open_escaped] = ACTIONS(3687), - [sym__shortcode_open] = ACTIONS(3687), - [sym__unclosed_span] = ACTIONS(3687), + [anon_sym__] = ACTIONS(3692), + [anon_sym_BQUOTE] = ACTIONS(3692), + [anon_sym_LBRACE] = ACTIONS(3701), + [anon_sym_PIPE] = ACTIONS(3692), + [anon_sym_TILDE] = ACTIONS(3692), + [anon_sym_LPAREN] = ACTIONS(3692), + [anon_sym_RPAREN] = ACTIONS(3692), + [sym__newline_token] = ACTIONS(3704), + [aux_sym_insert_token1] = ACTIONS(3707), + [aux_sym_delete_token1] = ACTIONS(3710), + [aux_sym_highlight_token1] = ACTIONS(3713), + [aux_sym_edit_comment_token1] = ACTIONS(3716), + [anon_sym_CARET_LBRACK] = ACTIONS(3719), + [anon_sym_LBRACK_CARET] = ACTIONS(3722), + [sym_uri_autolink] = ACTIONS(3686), + [sym_email_autolink] = ACTIONS(3686), + [sym__whitespace_ge_2] = ACTIONS(3725), + [aux_sym__whitespace_token1] = ACTIONS(3728), + [sym__word_no_digit] = ACTIONS(3731), + [sym__digits] = ACTIONS(3731), + [anon_sym_DASH_DASH] = ACTIONS(3734), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3731), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3731), + [sym__code_span_start] = ACTIONS(3737), + [sym__emphasis_open_star] = ACTIONS(3645), + [sym__emphasis_open_underscore] = ACTIONS(3645), + [sym__strikeout_open] = ACTIONS(3740), + [sym__latex_span_start] = ACTIONS(3743), + [sym__single_quote_open] = ACTIONS(3746), + [sym__double_quote_open] = ACTIONS(3749), + [sym__superscript_open] = ACTIONS(3752), + [sym__superscript_close] = ACTIONS(3645), + [sym__subscript_open] = ACTIONS(3755), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3758), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3761), + [sym__cite_author_in_text] = ACTIONS(3764), + [sym__cite_suppress_author] = ACTIONS(3767), + [sym__shortcode_open_escaped] = ACTIONS(3770), + [sym__shortcode_open] = ACTIONS(3773), + [sym__unclosed_span] = ACTIONS(3686), + }, + [STATE(370)] = { + [sym_backslash_escape] = STATE(371), + [sym_commonmark_attribute] = STATE(371), + [sym_code_span] = STATE(371), + [sym_latex_span] = STATE(371), + [sym_insert] = STATE(371), + [sym_delete] = STATE(371), + [sym_highlight] = STATE(371), + [sym_edit_comment] = STATE(371), + [sym_superscript] = STATE(371), + [sym_subscript] = STATE(371), + [sym_strikeout] = STATE(371), + [sym_quoted_span] = STATE(371), + [sym_inline_note] = STATE(371), + [sym_citation] = STATE(371), + [sym_shortcode_escaped] = STATE(371), + [sym_shortcode] = STATE(371), + [sym_note_reference] = STATE(371), + [sym_image] = STATE(371), + [sym__image_inline_link] = STATE(923), + [sym__image_description] = STATE(2342), + [sym__image_description_non_empty] = STATE(2342), + [sym_hard_line_break] = STATE(371), + [sym__whitespace] = STATE(920), + [sym__word] = STATE(920), + [sym__soft_line_break] = STATE(924), + [sym__text_base] = STATE(371), + [aux_sym__inline_base_repeat1] = STATE(371), + [sym__backslash_escape] = ACTIONS(73), + [sym_entity_reference] = ACTIONS(3776), + [sym_numeric_character_reference] = ACTIONS(3776), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_BANG] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_POUND] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(79), + [anon_sym_PERCENT] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_STAR] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_COMMA] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_DOT] = ACTIONS(77), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_COLON] = ACTIONS(79), + [anon_sym_SEMI] = ACTIONS(79), + [anon_sym_EQ] = ACTIONS(79), + [anon_sym_QMARK] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(3578), + [anon_sym_BSLASH] = ACTIONS(85), + [anon_sym_RBRACK] = ACTIONS(3580), + [anon_sym_CARET] = ACTIONS(77), + [anon_sym__] = ACTIONS(79), + [anon_sym_BQUOTE] = ACTIONS(79), + [anon_sym_LBRACE] = ACTIONS(89), + [anon_sym_PIPE] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(79), + [anon_sym_RPAREN] = ACTIONS(79), + [sym__newline_token] = ACTIONS(91), + [aux_sym_insert_token1] = ACTIONS(93), + [aux_sym_delete_token1] = ACTIONS(95), + [aux_sym_highlight_token1] = ACTIONS(97), + [aux_sym_edit_comment_token1] = ACTIONS(99), + [anon_sym_CARET_LBRACK] = ACTIONS(101), + [anon_sym_LBRACK_CARET] = ACTIONS(103), + [sym_uri_autolink] = ACTIONS(3776), + [sym_email_autolink] = ACTIONS(3776), + [sym__whitespace_ge_2] = ACTIONS(105), + [aux_sym__whitespace_token1] = ACTIONS(107), + [sym__word_no_digit] = ACTIONS(109), + [sym__digits] = ACTIONS(109), + [anon_sym_DASH_DASH] = ACTIONS(111), + [anon_sym_DASH_DASH_DASH] = ACTIONS(109), + [anon_sym_DOT_DOT_DOT] = ACTIONS(109), + [sym__code_span_start] = ACTIONS(113), + [sym__emphasis_open_star] = ACTIONS(3580), + [sym__emphasis_open_underscore] = ACTIONS(3580), + [sym__strikeout_open] = ACTIONS(121), + [sym__latex_span_start] = ACTIONS(123), + [sym__single_quote_open] = ACTIONS(125), + [sym__double_quote_open] = ACTIONS(127), + [sym__superscript_open] = ACTIONS(129), + [sym__subscript_open] = ACTIONS(131), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(133), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(135), + [sym__cite_author_in_text] = ACTIONS(137), + [sym__cite_suppress_author] = ACTIONS(139), + [sym__shortcode_open_escaped] = ACTIONS(141), + [sym__shortcode_open] = ACTIONS(143), + [sym__unclosed_span] = ACTIONS(3776), + }, + [STATE(371)] = { + [sym_backslash_escape] = STATE(371), + [sym_commonmark_attribute] = STATE(371), + [sym_code_span] = STATE(371), + [sym_latex_span] = STATE(371), + [sym_insert] = STATE(371), + [sym_delete] = STATE(371), + [sym_highlight] = STATE(371), + [sym_edit_comment] = STATE(371), + [sym_superscript] = STATE(371), + [sym_subscript] = STATE(371), + [sym_strikeout] = STATE(371), + [sym_quoted_span] = STATE(371), + [sym_inline_note] = STATE(371), + [sym_citation] = STATE(371), + [sym_shortcode_escaped] = STATE(371), + [sym_shortcode] = STATE(371), + [sym_note_reference] = STATE(371), + [sym_image] = STATE(371), + [sym__image_inline_link] = STATE(923), + [sym__image_description] = STATE(2342), + [sym__image_description_non_empty] = STATE(2342), + [sym_hard_line_break] = STATE(371), + [sym__whitespace] = STATE(920), + [sym__word] = STATE(920), + [sym__soft_line_break] = STATE(924), + [sym__text_base] = STATE(371), + [aux_sym__inline_base_repeat1] = STATE(371), + [sym__backslash_escape] = ACTIONS(3778), + [sym_entity_reference] = ACTIONS(3781), + [sym_numeric_character_reference] = ACTIONS(3781), + [anon_sym_LT] = ACTIONS(3784), + [anon_sym_GT] = ACTIONS(3787), + [anon_sym_BANG] = ACTIONS(3790), + [anon_sym_DQUOTE] = ACTIONS(3787), + [anon_sym_POUND] = ACTIONS(3787), + [anon_sym_DOLLAR] = ACTIONS(3787), + [anon_sym_PERCENT] = ACTIONS(3787), + [anon_sym_AMP] = ACTIONS(3784), + [anon_sym_SQUOTE] = ACTIONS(3787), + [anon_sym_STAR] = ACTIONS(3787), + [anon_sym_PLUS] = ACTIONS(3787), + [anon_sym_COMMA] = ACTIONS(3787), + [anon_sym_DASH] = ACTIONS(3784), + [anon_sym_DOT] = ACTIONS(3784), + [anon_sym_SLASH] = ACTIONS(3787), + [anon_sym_COLON] = ACTIONS(3787), + [anon_sym_SEMI] = ACTIONS(3787), + [anon_sym_EQ] = ACTIONS(3787), + [anon_sym_QMARK] = ACTIONS(3787), + [anon_sym_LBRACK] = ACTIONS(3601), + [anon_sym_BSLASH] = ACTIONS(3793), + [anon_sym_RBRACK] = ACTIONS(3645), + [anon_sym_CARET] = ACTIONS(3784), + [anon_sym__] = ACTIONS(3787), + [anon_sym_BQUOTE] = ACTIONS(3787), + [anon_sym_LBRACE] = ACTIONS(3796), + [anon_sym_PIPE] = ACTIONS(3787), + [anon_sym_TILDE] = ACTIONS(3787), + [anon_sym_LPAREN] = ACTIONS(3787), + [anon_sym_RPAREN] = ACTIONS(3787), + [sym__newline_token] = ACTIONS(3799), + [aux_sym_insert_token1] = ACTIONS(3802), + [aux_sym_delete_token1] = ACTIONS(3805), + [aux_sym_highlight_token1] = ACTIONS(3808), + [aux_sym_edit_comment_token1] = ACTIONS(3811), + [anon_sym_CARET_LBRACK] = ACTIONS(3814), + [anon_sym_LBRACK_CARET] = ACTIONS(3817), + [sym_uri_autolink] = ACTIONS(3781), + [sym_email_autolink] = ACTIONS(3781), + [sym__whitespace_ge_2] = ACTIONS(3820), + [aux_sym__whitespace_token1] = ACTIONS(3823), + [sym__word_no_digit] = ACTIONS(3826), + [sym__digits] = ACTIONS(3826), + [anon_sym_DASH_DASH] = ACTIONS(3829), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3826), + [sym__code_span_start] = ACTIONS(3832), + [sym__emphasis_open_star] = ACTIONS(3645), + [sym__emphasis_open_underscore] = ACTIONS(3645), + [sym__strikeout_open] = ACTIONS(3835), + [sym__latex_span_start] = ACTIONS(3838), + [sym__single_quote_open] = ACTIONS(3841), + [sym__double_quote_open] = ACTIONS(3844), + [sym__superscript_open] = ACTIONS(3847), + [sym__subscript_open] = ACTIONS(3850), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3853), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3856), + [sym__cite_author_in_text] = ACTIONS(3859), + [sym__cite_suppress_author] = ACTIONS(3862), + [sym__shortcode_open_escaped] = ACTIONS(3865), + [sym__shortcode_open] = ACTIONS(3868), + [sym__unclosed_span] = ACTIONS(3781), + }, + [STATE(372)] = { + [sym_backslash_escape] = STATE(374), + [sym_commonmark_attribute] = STATE(374), + [sym_code_span] = STATE(374), + [sym_latex_span] = STATE(374), + [sym_insert] = STATE(374), + [sym_delete] = STATE(374), + [sym_highlight] = STATE(374), + [sym_edit_comment] = STATE(374), + [sym_superscript] = STATE(374), + [sym_subscript] = STATE(374), + [sym_strikeout] = STATE(374), + [sym_quoted_span] = STATE(374), + [sym_inline_note] = STATE(374), + [sym_citation] = STATE(374), + [sym_shortcode_escaped] = STATE(374), + [sym_shortcode] = STATE(374), + [sym_note_reference] = STATE(374), + [sym_image] = STATE(374), + [sym__image_inline_link] = STATE(1025), + [sym__image_description] = STATE(2356), + [sym__image_description_non_empty] = STATE(2356), + [sym_hard_line_break] = STATE(374), + [sym__whitespace] = STATE(1022), + [sym__word] = STATE(1022), + [sym__soft_line_break] = STATE(1026), + [sym__text_base] = STATE(374), + [aux_sym__inline_base_repeat1] = STATE(374), + [sym__backslash_escape] = ACTIONS(707), + [sym_entity_reference] = ACTIONS(3871), + [sym_numeric_character_reference] = ACTIONS(3871), + [anon_sym_LT] = ACTIONS(711), + [anon_sym_GT] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(715), + [anon_sym_DQUOTE] = ACTIONS(713), + [anon_sym_POUND] = ACTIONS(713), + [anon_sym_DOLLAR] = ACTIONS(713), + [anon_sym_PERCENT] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(711), + [anon_sym_SQUOTE] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_COMMA] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_DOT] = ACTIONS(711), + [anon_sym_SLASH] = ACTIONS(713), + [anon_sym_COLON] = ACTIONS(713), + [anon_sym_SEMI] = ACTIONS(713), + [anon_sym_EQ] = ACTIONS(713), + [anon_sym_QMARK] = ACTIONS(713), + [anon_sym_LBRACK] = ACTIONS(3578), + [anon_sym_BSLASH] = ACTIONS(719), + [anon_sym_CARET] = ACTIONS(711), + [anon_sym__] = ACTIONS(713), + [anon_sym_BQUOTE] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(721), + [anon_sym_PIPE] = ACTIONS(713), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_LPAREN] = ACTIONS(713), + [anon_sym_RPAREN] = ACTIONS(713), + [sym__newline_token] = ACTIONS(723), + [aux_sym_insert_token1] = ACTIONS(725), + [aux_sym_insert_token2] = ACTIONS(3580), + [aux_sym_delete_token1] = ACTIONS(729), + [aux_sym_highlight_token1] = ACTIONS(731), + [aux_sym_edit_comment_token1] = ACTIONS(733), + [anon_sym_CARET_LBRACK] = ACTIONS(735), + [anon_sym_LBRACK_CARET] = ACTIONS(737), + [sym_uri_autolink] = ACTIONS(3871), + [sym_email_autolink] = ACTIONS(3871), + [sym__whitespace_ge_2] = ACTIONS(739), + [aux_sym__whitespace_token1] = ACTIONS(741), + [sym__word_no_digit] = ACTIONS(743), + [sym__digits] = ACTIONS(743), + [anon_sym_DASH_DASH] = ACTIONS(745), + [anon_sym_DASH_DASH_DASH] = ACTIONS(743), + [anon_sym_DOT_DOT_DOT] = ACTIONS(743), + [sym__code_span_start] = ACTIONS(747), + [sym__emphasis_open_star] = ACTIONS(3580), + [sym__emphasis_open_underscore] = ACTIONS(3580), + [sym__strikeout_open] = ACTIONS(753), + [sym__latex_span_start] = ACTIONS(755), + [sym__single_quote_open] = ACTIONS(757), + [sym__double_quote_open] = ACTIONS(759), + [sym__superscript_open] = ACTIONS(761), + [sym__subscript_open] = ACTIONS(763), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(765), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(767), + [sym__cite_author_in_text] = ACTIONS(769), + [sym__cite_suppress_author] = ACTIONS(771), + [sym__shortcode_open_escaped] = ACTIONS(773), + [sym__shortcode_open] = ACTIONS(775), + [sym__unclosed_span] = ACTIONS(3871), }, [STATE(373)] = { - [sym__qmd_attribute] = STATE(668), - [sym_raw_attribute] = STATE(668), - [sym_commonmark_attribute] = STATE(668), - [sym_language_attribute] = STATE(668), - [sym__backslash_escape] = ACTIONS(3651), - [sym_entity_reference] = ACTIONS(3651), - [sym_numeric_character_reference] = ACTIONS(3651), - [anon_sym_LT] = ACTIONS(3653), - [anon_sym_GT] = ACTIONS(3651), - [anon_sym_BANG] = ACTIONS(3651), - [anon_sym_DQUOTE] = ACTIONS(3651), - [anon_sym_POUND] = ACTIONS(3651), - [anon_sym_DOLLAR] = ACTIONS(3651), - [anon_sym_PERCENT] = ACTIONS(3651), - [anon_sym_AMP] = ACTIONS(3653), - [anon_sym_SQUOTE] = ACTIONS(3651), - [anon_sym_STAR] = ACTIONS(3651), - [anon_sym_PLUS] = ACTIONS(3651), - [anon_sym_COMMA] = ACTIONS(3651), - [anon_sym_DASH] = ACTIONS(3653), - [anon_sym_DOT] = ACTIONS(3653), - [anon_sym_SLASH] = ACTIONS(3651), - [anon_sym_COLON] = ACTIONS(3651), - [anon_sym_SEMI] = ACTIONS(3651), - [anon_sym_EQ] = ACTIONS(3651), - [anon_sym_QMARK] = ACTIONS(3651), - [anon_sym_LBRACK] = ACTIONS(3653), - [anon_sym_BSLASH] = ACTIONS(3653), - [anon_sym_CARET] = ACTIONS(3653), - [anon_sym__] = ACTIONS(3651), - [anon_sym_BQUOTE] = ACTIONS(3651), - [anon_sym_LBRACE] = ACTIONS(3641), - [anon_sym_PIPE] = ACTIONS(3651), - [anon_sym_TILDE] = ACTIONS(3651), - [anon_sym_LPAREN] = ACTIONS(3651), - [anon_sym_RPAREN] = ACTIONS(3651), - [sym__newline_token] = ACTIONS(3651), - [anon_sym_CARET_LBRACK] = ACTIONS(3651), - [anon_sym_LBRACK_CARET] = ACTIONS(3651), - [sym_uri_autolink] = ACTIONS(3651), - [sym_email_autolink] = ACTIONS(3651), - [sym__whitespace_ge_2] = ACTIONS(3651), - [aux_sym__whitespace_token1] = ACTIONS(3653), - [sym__word_no_digit] = ACTIONS(3651), - [sym__digits] = ACTIONS(3651), - [anon_sym_DASH_DASH] = ACTIONS(3653), - [anon_sym_DASH_DASH_DASH] = ACTIONS(3651), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3651), - [sym__code_span_start] = ACTIONS(3651), - [sym__emphasis_open_star] = ACTIONS(3651), - [sym__emphasis_open_underscore] = ACTIONS(3651), - [sym__strikeout_open] = ACTIONS(3651), - [sym__latex_span_start] = ACTIONS(3651), - [sym__single_quote_open] = ACTIONS(3651), - [sym__double_quote_open] = ACTIONS(3651), - [sym__double_quote_close] = ACTIONS(3651), - [sym__superscript_open] = ACTIONS(3651), - [sym__subscript_open] = ACTIONS(3651), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3651), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3651), - [sym__cite_author_in_text] = ACTIONS(3651), - [sym__cite_suppress_author] = ACTIONS(3651), - [sym__shortcode_open_escaped] = ACTIONS(3651), - [sym__shortcode_open] = ACTIONS(3651), - [sym__unclosed_span] = ACTIONS(3651), + [sym_backslash_escape] = STATE(384), + [sym_commonmark_attribute] = STATE(384), + [sym_code_span] = STATE(384), + [sym_latex_span] = STATE(384), + [sym_insert] = STATE(384), + [sym_delete] = STATE(384), + [sym_highlight] = STATE(384), + [sym_edit_comment] = STATE(384), + [sym_superscript] = STATE(384), + [sym_subscript] = STATE(384), + [sym_strikeout] = STATE(384), + [sym_quoted_span] = STATE(384), + [sym_inline_note] = STATE(384), + [sym_citation] = STATE(384), + [sym_shortcode_escaped] = STATE(384), + [sym_shortcode] = STATE(384), + [sym_note_reference] = STATE(384), + [sym_image] = STATE(384), + [sym__image_inline_link] = STATE(1265), + [sym__image_description] = STATE(2331), + [sym__image_description_non_empty] = STATE(2331), + [sym_hard_line_break] = STATE(384), + [sym__whitespace] = STATE(1262), + [sym__word] = STATE(1262), + [sym__soft_line_break] = STATE(1267), + [sym__text_base] = STATE(384), + [aux_sym__inline_base_repeat1] = STATE(384), + [sym__backslash_escape] = ACTIONS(885), + [sym_entity_reference] = ACTIONS(3873), + [sym_numeric_character_reference] = ACTIONS(3873), + [anon_sym_LT] = ACTIONS(889), + [anon_sym_GT] = ACTIONS(891), + [anon_sym_BANG] = ACTIONS(893), + [anon_sym_DQUOTE] = ACTIONS(891), + [anon_sym_POUND] = ACTIONS(891), + [anon_sym_DOLLAR] = ACTIONS(891), + [anon_sym_PERCENT] = ACTIONS(891), + [anon_sym_AMP] = ACTIONS(889), + [anon_sym_SQUOTE] = ACTIONS(891), + [anon_sym_STAR] = ACTIONS(891), + [anon_sym_PLUS] = ACTIONS(891), + [anon_sym_COMMA] = ACTIONS(891), + [anon_sym_DASH] = ACTIONS(889), + [anon_sym_DOT] = ACTIONS(889), + [anon_sym_SLASH] = ACTIONS(891), + [anon_sym_COLON] = ACTIONS(891), + [anon_sym_SEMI] = ACTIONS(891), + [anon_sym_EQ] = ACTIONS(891), + [anon_sym_QMARK] = ACTIONS(891), + [anon_sym_LBRACK] = ACTIONS(3578), + [anon_sym_BSLASH] = ACTIONS(897), + [anon_sym_CARET] = ACTIONS(889), + [anon_sym__] = ACTIONS(891), + [anon_sym_BQUOTE] = ACTIONS(891), + [anon_sym_LBRACE] = ACTIONS(899), + [anon_sym_PIPE] = ACTIONS(891), + [anon_sym_TILDE] = ACTIONS(891), + [anon_sym_LPAREN] = ACTIONS(891), + [anon_sym_RPAREN] = ACTIONS(891), + [sym__newline_token] = ACTIONS(901), + [aux_sym_insert_token1] = ACTIONS(903), + [aux_sym_delete_token1] = ACTIONS(905), + [aux_sym_highlight_token1] = ACTIONS(907), + [aux_sym_edit_comment_token1] = ACTIONS(909), + [anon_sym_CARET_LBRACK] = ACTIONS(911), + [anon_sym_LBRACK_CARET] = ACTIONS(913), + [sym_uri_autolink] = ACTIONS(3873), + [sym_email_autolink] = ACTIONS(3873), + [sym__whitespace_ge_2] = ACTIONS(915), + [aux_sym__whitespace_token1] = ACTIONS(917), + [sym__word_no_digit] = ACTIONS(919), + [sym__digits] = ACTIONS(919), + [anon_sym_DASH_DASH] = ACTIONS(921), + [anon_sym_DASH_DASH_DASH] = ACTIONS(919), + [anon_sym_DOT_DOT_DOT] = ACTIONS(919), + [sym__code_span_start] = ACTIONS(923), + [sym__emphasis_open_star] = ACTIONS(3580), + [sym__emphasis_open_underscore] = ACTIONS(3580), + [sym__emphasis_close_star] = ACTIONS(3580), + [sym__strikeout_open] = ACTIONS(931), + [sym__latex_span_start] = ACTIONS(933), + [sym__single_quote_open] = ACTIONS(935), + [sym__double_quote_open] = ACTIONS(937), + [sym__superscript_open] = ACTIONS(939), + [sym__subscript_open] = ACTIONS(941), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(943), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(945), + [sym__cite_author_in_text] = ACTIONS(947), + [sym__cite_suppress_author] = ACTIONS(949), + [sym__shortcode_open_escaped] = ACTIONS(951), + [sym__shortcode_open] = ACTIONS(953), + [sym__unclosed_span] = ACTIONS(3873), }, [STATE(374)] = { - [sym__qmd_attribute] = STATE(816), - [sym_raw_attribute] = STATE(816), - [sym_commonmark_attribute] = STATE(816), - [sym_language_attribute] = STATE(816), - [sym__backslash_escape] = ACTIONS(3705), - [sym_entity_reference] = ACTIONS(3705), - [sym_numeric_character_reference] = ACTIONS(3705), - [anon_sym_LT] = ACTIONS(3707), - [anon_sym_GT] = ACTIONS(3705), - [anon_sym_BANG] = ACTIONS(3705), - [anon_sym_DQUOTE] = ACTIONS(3705), - [anon_sym_POUND] = ACTIONS(3705), - [anon_sym_DOLLAR] = ACTIONS(3705), - [anon_sym_PERCENT] = ACTIONS(3705), - [anon_sym_AMP] = ACTIONS(3707), - [anon_sym_SQUOTE] = ACTIONS(3705), - [anon_sym_STAR] = ACTIONS(3705), - [anon_sym_PLUS] = ACTIONS(3705), - [anon_sym_COMMA] = ACTIONS(3705), - [anon_sym_DASH] = ACTIONS(3707), - [anon_sym_DOT] = ACTIONS(3707), - [anon_sym_SLASH] = ACTIONS(3705), - [anon_sym_COLON] = ACTIONS(3705), - [anon_sym_SEMI] = ACTIONS(3705), - [anon_sym_EQ] = ACTIONS(3705), - [anon_sym_QMARK] = ACTIONS(3705), - [anon_sym_LBRACK] = ACTIONS(3707), - [anon_sym_BSLASH] = ACTIONS(3707), - [anon_sym_CARET] = ACTIONS(3707), - [anon_sym__] = ACTIONS(3705), - [anon_sym_BQUOTE] = ACTIONS(3705), - [anon_sym_LBRACE] = ACTIONS(3717), - [anon_sym_PIPE] = ACTIONS(3705), - [anon_sym_TILDE] = ACTIONS(3705), - [anon_sym_LPAREN] = ACTIONS(3705), - [anon_sym_RPAREN] = ACTIONS(3705), - [sym__newline_token] = ACTIONS(3705), - [anon_sym_CARET_LBRACK] = ACTIONS(3705), - [anon_sym_LBRACK_CARET] = ACTIONS(3705), - [sym_uri_autolink] = ACTIONS(3705), - [sym_email_autolink] = ACTIONS(3705), - [sym__whitespace_ge_2] = ACTIONS(3705), - [aux_sym__whitespace_token1] = ACTIONS(3707), - [sym__word_no_digit] = ACTIONS(3705), - [sym__digits] = ACTIONS(3705), - [anon_sym_DASH_DASH] = ACTIONS(3707), - [anon_sym_DASH_DASH_DASH] = ACTIONS(3705), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3705), - [sym__code_span_start] = ACTIONS(3705), - [sym__emphasis_open_star] = ACTIONS(3705), - [sym__emphasis_open_underscore] = ACTIONS(3705), - [sym__strikeout_open] = ACTIONS(3705), - [sym__latex_span_start] = ACTIONS(3705), - [sym__single_quote_open] = ACTIONS(3705), - [sym__double_quote_open] = ACTIONS(3705), - [sym__superscript_open] = ACTIONS(3705), - [sym__subscript_open] = ACTIONS(3705), - [sym__subscript_close] = ACTIONS(3705), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3705), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3705), - [sym__cite_author_in_text] = ACTIONS(3705), - [sym__cite_suppress_author] = ACTIONS(3705), - [sym__shortcode_open_escaped] = ACTIONS(3705), - [sym__shortcode_open] = ACTIONS(3705), - [sym__unclosed_span] = ACTIONS(3705), + [sym_backslash_escape] = STATE(374), + [sym_commonmark_attribute] = STATE(374), + [sym_code_span] = STATE(374), + [sym_latex_span] = STATE(374), + [sym_insert] = STATE(374), + [sym_delete] = STATE(374), + [sym_highlight] = STATE(374), + [sym_edit_comment] = STATE(374), + [sym_superscript] = STATE(374), + [sym_subscript] = STATE(374), + [sym_strikeout] = STATE(374), + [sym_quoted_span] = STATE(374), + [sym_inline_note] = STATE(374), + [sym_citation] = STATE(374), + [sym_shortcode_escaped] = STATE(374), + [sym_shortcode] = STATE(374), + [sym_note_reference] = STATE(374), + [sym_image] = STATE(374), + [sym__image_inline_link] = STATE(1025), + [sym__image_description] = STATE(2356), + [sym__image_description_non_empty] = STATE(2356), + [sym_hard_line_break] = STATE(374), + [sym__whitespace] = STATE(1022), + [sym__word] = STATE(1022), + [sym__soft_line_break] = STATE(1026), + [sym__text_base] = STATE(374), + [aux_sym__inline_base_repeat1] = STATE(374), + [sym__backslash_escape] = ACTIONS(3875), + [sym_entity_reference] = ACTIONS(3878), + [sym_numeric_character_reference] = ACTIONS(3878), + [anon_sym_LT] = ACTIONS(3881), + [anon_sym_GT] = ACTIONS(3884), + [anon_sym_BANG] = ACTIONS(3887), + [anon_sym_DQUOTE] = ACTIONS(3884), + [anon_sym_POUND] = ACTIONS(3884), + [anon_sym_DOLLAR] = ACTIONS(3884), + [anon_sym_PERCENT] = ACTIONS(3884), + [anon_sym_AMP] = ACTIONS(3881), + [anon_sym_SQUOTE] = ACTIONS(3884), + [anon_sym_STAR] = ACTIONS(3884), + [anon_sym_PLUS] = ACTIONS(3884), + [anon_sym_COMMA] = ACTIONS(3884), + [anon_sym_DASH] = ACTIONS(3881), + [anon_sym_DOT] = ACTIONS(3881), + [anon_sym_SLASH] = ACTIONS(3884), + [anon_sym_COLON] = ACTIONS(3884), + [anon_sym_SEMI] = ACTIONS(3884), + [anon_sym_EQ] = ACTIONS(3884), + [anon_sym_QMARK] = ACTIONS(3884), + [anon_sym_LBRACK] = ACTIONS(3601), + [anon_sym_BSLASH] = ACTIONS(3890), + [anon_sym_CARET] = ACTIONS(3881), + [anon_sym__] = ACTIONS(3884), + [anon_sym_BQUOTE] = ACTIONS(3884), + [anon_sym_LBRACE] = ACTIONS(3893), + [anon_sym_PIPE] = ACTIONS(3884), + [anon_sym_TILDE] = ACTIONS(3884), + [anon_sym_LPAREN] = ACTIONS(3884), + [anon_sym_RPAREN] = ACTIONS(3884), + [sym__newline_token] = ACTIONS(3896), + [aux_sym_insert_token1] = ACTIONS(3899), + [aux_sym_insert_token2] = ACTIONS(3645), + [aux_sym_delete_token1] = ACTIONS(3902), + [aux_sym_highlight_token1] = ACTIONS(3905), + [aux_sym_edit_comment_token1] = ACTIONS(3908), + [anon_sym_CARET_LBRACK] = ACTIONS(3911), + [anon_sym_LBRACK_CARET] = ACTIONS(3914), + [sym_uri_autolink] = ACTIONS(3878), + [sym_email_autolink] = ACTIONS(3878), + [sym__whitespace_ge_2] = ACTIONS(3917), + [aux_sym__whitespace_token1] = ACTIONS(3920), + [sym__word_no_digit] = ACTIONS(3923), + [sym__digits] = ACTIONS(3923), + [anon_sym_DASH_DASH] = ACTIONS(3926), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3923), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3923), + [sym__code_span_start] = ACTIONS(3929), + [sym__emphasis_open_star] = ACTIONS(3645), + [sym__emphasis_open_underscore] = ACTIONS(3645), + [sym__strikeout_open] = ACTIONS(3932), + [sym__latex_span_start] = ACTIONS(3935), + [sym__single_quote_open] = ACTIONS(3938), + [sym__double_quote_open] = ACTIONS(3941), + [sym__superscript_open] = ACTIONS(3944), + [sym__subscript_open] = ACTIONS(3947), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3950), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3953), + [sym__cite_author_in_text] = ACTIONS(3956), + [sym__cite_suppress_author] = ACTIONS(3959), + [sym__shortcode_open_escaped] = ACTIONS(3962), + [sym__shortcode_open] = ACTIONS(3965), + [sym__unclosed_span] = ACTIONS(3878), }, [STATE(375)] = { - [sym__qmd_attribute] = STATE(1062), - [sym_raw_attribute] = STATE(1062), - [sym_commonmark_attribute] = STATE(1062), - [sym_language_attribute] = STATE(1062), - [sym__backslash_escape] = ACTIONS(3691), - [sym_entity_reference] = ACTIONS(3691), - [sym_numeric_character_reference] = ACTIONS(3691), - [anon_sym_LT] = ACTIONS(3693), - [anon_sym_GT] = ACTIONS(3691), - [anon_sym_BANG] = ACTIONS(3691), - [anon_sym_DQUOTE] = ACTIONS(3691), - [anon_sym_POUND] = ACTIONS(3691), - [anon_sym_DOLLAR] = ACTIONS(3691), - [anon_sym_PERCENT] = ACTIONS(3691), - [anon_sym_AMP] = ACTIONS(3693), - [anon_sym_SQUOTE] = ACTIONS(3691), - [anon_sym_STAR] = ACTIONS(3691), - [anon_sym_PLUS] = ACTIONS(3691), - [anon_sym_COMMA] = ACTIONS(3691), - [anon_sym_DASH] = ACTIONS(3693), - [anon_sym_DOT] = ACTIONS(3693), - [anon_sym_SLASH] = ACTIONS(3691), - [anon_sym_COLON] = ACTIONS(3691), - [anon_sym_SEMI] = ACTIONS(3691), - [anon_sym_EQ] = ACTIONS(3691), - [anon_sym_QMARK] = ACTIONS(3691), - [anon_sym_LBRACK] = ACTIONS(3693), - [anon_sym_BSLASH] = ACTIONS(3693), - [anon_sym_CARET] = ACTIONS(3693), - [anon_sym__] = ACTIONS(3691), - [anon_sym_BQUOTE] = ACTIONS(3691), - [anon_sym_LBRACE] = ACTIONS(3721), - [anon_sym_PIPE] = ACTIONS(3691), - [anon_sym_TILDE] = ACTIONS(3691), - [anon_sym_LPAREN] = ACTIONS(3723), - [anon_sym_RPAREN] = ACTIONS(3691), - [sym__newline_token] = ACTIONS(3691), - [anon_sym_CARET_LBRACK] = ACTIONS(3691), - [anon_sym_LBRACK_CARET] = ACTIONS(3691), - [sym_uri_autolink] = ACTIONS(3691), - [sym_email_autolink] = ACTIONS(3691), - [sym__whitespace_ge_2] = ACTIONS(3691), - [aux_sym__whitespace_token1] = ACTIONS(3693), - [sym__word_no_digit] = ACTIONS(3691), - [sym__digits] = ACTIONS(3691), - [anon_sym_DASH_DASH] = ACTIONS(3693), - [anon_sym_DASH_DASH_DASH] = ACTIONS(3691), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3691), - [sym__code_span_start] = ACTIONS(3691), - [sym__emphasis_open_star] = ACTIONS(3691), - [sym__emphasis_open_underscore] = ACTIONS(3691), - [sym__strikeout_open] = ACTIONS(3691), - [sym__strikeout_close] = ACTIONS(3691), - [sym__latex_span_start] = ACTIONS(3691), - [sym__single_quote_open] = ACTIONS(3691), - [sym__double_quote_open] = ACTIONS(3691), - [sym__superscript_open] = ACTIONS(3691), - [sym__subscript_open] = ACTIONS(3691), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3691), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3691), - [sym__cite_author_in_text] = ACTIONS(3691), - [sym__cite_suppress_author] = ACTIONS(3691), - [sym__shortcode_open_escaped] = ACTIONS(3691), - [sym__shortcode_open] = ACTIONS(3691), - [sym__unclosed_span] = ACTIONS(3691), + [sym_backslash_escape] = STATE(380), + [sym_commonmark_attribute] = STATE(380), + [sym_code_span] = STATE(380), + [sym_latex_span] = STATE(380), + [sym_insert] = STATE(380), + [sym_delete] = STATE(380), + [sym_highlight] = STATE(380), + [sym_edit_comment] = STATE(380), + [sym_superscript] = STATE(380), + [sym_subscript] = STATE(380), + [sym_strikeout] = STATE(380), + [sym_quoted_span] = STATE(380), + [sym_inline_note] = STATE(380), + [sym_citation] = STATE(380), + [sym_shortcode_escaped] = STATE(380), + [sym_shortcode] = STATE(380), + [sym_note_reference] = STATE(380), + [sym_image] = STATE(380), + [sym__image_inline_link] = STATE(972), + [sym__image_description] = STATE(2286), + [sym__image_description_non_empty] = STATE(2286), + [sym_hard_line_break] = STATE(380), + [sym__whitespace] = STATE(949), + [sym__word] = STATE(949), + [sym__soft_line_break] = STATE(973), + [sym__text_base] = STATE(380), + [aux_sym__inline_base_repeat1] = STATE(380), + [sym__backslash_escape] = ACTIONS(2179), + [sym_entity_reference] = ACTIONS(3968), + [sym_numeric_character_reference] = ACTIONS(3968), + [anon_sym_LT] = ACTIONS(2183), + [anon_sym_GT] = ACTIONS(2185), + [anon_sym_BANG] = ACTIONS(2187), + [anon_sym_DQUOTE] = ACTIONS(2185), + [anon_sym_POUND] = ACTIONS(2185), + [anon_sym_DOLLAR] = ACTIONS(2185), + [anon_sym_PERCENT] = ACTIONS(2185), + [anon_sym_AMP] = ACTIONS(2183), + [anon_sym_SQUOTE] = ACTIONS(2185), + [anon_sym_STAR] = ACTIONS(2185), + [anon_sym_PLUS] = ACTIONS(2185), + [anon_sym_COMMA] = ACTIONS(2185), + [anon_sym_DASH] = ACTIONS(2183), + [anon_sym_DOT] = ACTIONS(2183), + [anon_sym_SLASH] = ACTIONS(2185), + [anon_sym_COLON] = ACTIONS(2185), + [anon_sym_SEMI] = ACTIONS(2185), + [anon_sym_EQ] = ACTIONS(2185), + [anon_sym_QMARK] = ACTIONS(2185), + [anon_sym_LBRACK] = ACTIONS(3578), + [anon_sym_BSLASH] = ACTIONS(2191), + [anon_sym_CARET] = ACTIONS(2183), + [anon_sym__] = ACTIONS(2185), + [anon_sym_BQUOTE] = ACTIONS(2185), + [anon_sym_LBRACE] = ACTIONS(2193), + [anon_sym_PIPE] = ACTIONS(2185), + [anon_sym_TILDE] = ACTIONS(2185), + [anon_sym_LPAREN] = ACTIONS(2185), + [anon_sym_RPAREN] = ACTIONS(2185), + [sym__newline_token] = ACTIONS(2195), + [aux_sym_insert_token1] = ACTIONS(2197), + [aux_sym_delete_token1] = ACTIONS(2199), + [aux_sym_highlight_token1] = ACTIONS(2201), + [aux_sym_edit_comment_token1] = ACTIONS(2203), + [anon_sym_CARET_LBRACK] = ACTIONS(2205), + [anon_sym_LBRACK_CARET] = ACTIONS(2207), + [sym_uri_autolink] = ACTIONS(3968), + [sym_email_autolink] = ACTIONS(3968), + [sym__whitespace_ge_2] = ACTIONS(2209), + [aux_sym__whitespace_token1] = ACTIONS(2211), + [sym__word_no_digit] = ACTIONS(2213), + [sym__digits] = ACTIONS(2213), + [anon_sym_DASH_DASH] = ACTIONS(2215), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2213), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2213), + [sym__code_span_start] = ACTIONS(2217), + [sym__emphasis_open_star] = ACTIONS(3580), + [sym__emphasis_open_underscore] = ACTIONS(3580), + [sym__strikeout_open] = ACTIONS(2223), + [sym__latex_span_start] = ACTIONS(2225), + [sym__single_quote_open] = ACTIONS(2227), + [sym__single_quote_close] = ACTIONS(3580), + [sym__double_quote_open] = ACTIONS(2229), + [sym__superscript_open] = ACTIONS(2231), + [sym__subscript_open] = ACTIONS(2233), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2235), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2237), + [sym__cite_author_in_text] = ACTIONS(2239), + [sym__cite_suppress_author] = ACTIONS(2241), + [sym__shortcode_open_escaped] = ACTIONS(2243), + [sym__shortcode_open] = ACTIONS(2245), + [sym__unclosed_span] = ACTIONS(3968), }, [STATE(376)] = { - [sym__qmd_attribute] = STATE(1063), - [sym_raw_attribute] = STATE(1063), - [sym_commonmark_attribute] = STATE(1063), - [sym_language_attribute] = STATE(1063), - [sym__backslash_escape] = ACTIONS(3697), - [sym_entity_reference] = ACTIONS(3697), - [sym_numeric_character_reference] = ACTIONS(3697), - [anon_sym_LT] = ACTIONS(3699), - [anon_sym_GT] = ACTIONS(3697), - [anon_sym_BANG] = ACTIONS(3697), - [anon_sym_DQUOTE] = ACTIONS(3697), - [anon_sym_POUND] = ACTIONS(3697), - [anon_sym_DOLLAR] = ACTIONS(3697), - [anon_sym_PERCENT] = ACTIONS(3697), - [anon_sym_AMP] = ACTIONS(3699), - [anon_sym_SQUOTE] = ACTIONS(3697), - [anon_sym_STAR] = ACTIONS(3697), - [anon_sym_PLUS] = ACTIONS(3697), - [anon_sym_COMMA] = ACTIONS(3697), - [anon_sym_DASH] = ACTIONS(3699), - [anon_sym_DOT] = ACTIONS(3699), - [anon_sym_SLASH] = ACTIONS(3697), - [anon_sym_COLON] = ACTIONS(3697), - [anon_sym_SEMI] = ACTIONS(3697), - [anon_sym_EQ] = ACTIONS(3697), - [anon_sym_QMARK] = ACTIONS(3697), - [anon_sym_LBRACK] = ACTIONS(3699), - [anon_sym_BSLASH] = ACTIONS(3699), - [anon_sym_CARET] = ACTIONS(3699), - [anon_sym__] = ACTIONS(3697), - [anon_sym_BQUOTE] = ACTIONS(3697), - [anon_sym_LBRACE] = ACTIONS(3721), - [anon_sym_PIPE] = ACTIONS(3697), - [anon_sym_TILDE] = ACTIONS(3697), - [anon_sym_LPAREN] = ACTIONS(3697), - [anon_sym_RPAREN] = ACTIONS(3697), - [sym__newline_token] = ACTIONS(3697), - [anon_sym_CARET_LBRACK] = ACTIONS(3697), - [anon_sym_LBRACK_CARET] = ACTIONS(3697), - [sym_uri_autolink] = ACTIONS(3697), - [sym_email_autolink] = ACTIONS(3697), - [sym__whitespace_ge_2] = ACTIONS(3697), - [aux_sym__whitespace_token1] = ACTIONS(3699), - [sym__word_no_digit] = ACTIONS(3697), - [sym__digits] = ACTIONS(3697), - [anon_sym_DASH_DASH] = ACTIONS(3699), - [anon_sym_DASH_DASH_DASH] = ACTIONS(3697), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3697), - [sym__code_span_start] = ACTIONS(3697), - [sym__emphasis_open_star] = ACTIONS(3697), - [sym__emphasis_open_underscore] = ACTIONS(3697), - [sym__strikeout_open] = ACTIONS(3697), - [sym__strikeout_close] = ACTIONS(3697), - [sym__latex_span_start] = ACTIONS(3697), - [sym__single_quote_open] = ACTIONS(3697), - [sym__double_quote_open] = ACTIONS(3697), - [sym__superscript_open] = ACTIONS(3697), - [sym__subscript_open] = ACTIONS(3697), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3697), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3697), - [sym__cite_author_in_text] = ACTIONS(3697), - [sym__cite_suppress_author] = ACTIONS(3697), - [sym__shortcode_open_escaped] = ACTIONS(3697), - [sym__shortcode_open] = ACTIONS(3697), - [sym__unclosed_span] = ACTIONS(3697), + [sym_backslash_escape] = STATE(376), + [sym_commonmark_attribute] = STATE(376), + [sym_code_span] = STATE(376), + [sym_latex_span] = STATE(376), + [sym_insert] = STATE(376), + [sym_delete] = STATE(376), + [sym_highlight] = STATE(376), + [sym_edit_comment] = STATE(376), + [sym_superscript] = STATE(376), + [sym_subscript] = STATE(376), + [sym_strikeout] = STATE(376), + [sym_quoted_span] = STATE(376), + [sym_inline_note] = STATE(376), + [sym_citation] = STATE(376), + [sym_shortcode_escaped] = STATE(376), + [sym_shortcode] = STATE(376), + [sym_note_reference] = STATE(376), + [sym_image] = STATE(376), + [sym__image_inline_link] = STATE(1305), + [sym__image_description] = STATE(2302), + [sym__image_description_non_empty] = STATE(2302), + [sym_hard_line_break] = STATE(376), + [sym__whitespace] = STATE(1160), + [sym__word] = STATE(1160), + [sym__soft_line_break] = STATE(1375), + [sym__text_base] = STATE(376), + [aux_sym__inline_base_repeat1] = STATE(376), + [ts_builtin_sym_end] = ACTIONS(3645), + [sym__backslash_escape] = ACTIONS(3970), + [sym_entity_reference] = ACTIONS(3973), + [sym_numeric_character_reference] = ACTIONS(3973), + [anon_sym_LT] = ACTIONS(3976), + [anon_sym_GT] = ACTIONS(3979), + [anon_sym_BANG] = ACTIONS(3982), + [anon_sym_DQUOTE] = ACTIONS(3979), + [anon_sym_POUND] = ACTIONS(3979), + [anon_sym_DOLLAR] = ACTIONS(3979), + [anon_sym_PERCENT] = ACTIONS(3979), + [anon_sym_AMP] = ACTIONS(3976), + [anon_sym_SQUOTE] = ACTIONS(3979), + [anon_sym_STAR] = ACTIONS(3979), + [anon_sym_PLUS] = ACTIONS(3979), + [anon_sym_COMMA] = ACTIONS(3979), + [anon_sym_DASH] = ACTIONS(3976), + [anon_sym_DOT] = ACTIONS(3976), + [anon_sym_SLASH] = ACTIONS(3979), + [anon_sym_COLON] = ACTIONS(3979), + [anon_sym_SEMI] = ACTIONS(3979), + [anon_sym_EQ] = ACTIONS(3979), + [anon_sym_QMARK] = ACTIONS(3979), + [anon_sym_LBRACK] = ACTIONS(3601), + [anon_sym_BSLASH] = ACTIONS(3985), + [anon_sym_CARET] = ACTIONS(3976), + [anon_sym__] = ACTIONS(3979), + [anon_sym_BQUOTE] = ACTIONS(3979), + [anon_sym_LBRACE] = ACTIONS(3988), + [anon_sym_PIPE] = ACTIONS(3979), + [anon_sym_TILDE] = ACTIONS(3979), + [anon_sym_LPAREN] = ACTIONS(3979), + [anon_sym_RPAREN] = ACTIONS(3979), + [sym__newline_token] = ACTIONS(3991), + [aux_sym_insert_token1] = ACTIONS(3994), + [aux_sym_delete_token1] = ACTIONS(3997), + [aux_sym_highlight_token1] = ACTIONS(4000), + [aux_sym_edit_comment_token1] = ACTIONS(4003), + [anon_sym_CARET_LBRACK] = ACTIONS(4006), + [anon_sym_LBRACK_CARET] = ACTIONS(4009), + [sym_uri_autolink] = ACTIONS(3973), + [sym_email_autolink] = ACTIONS(3973), + [sym__whitespace_ge_2] = ACTIONS(4012), + [aux_sym__whitespace_token1] = ACTIONS(4015), + [sym__word_no_digit] = ACTIONS(4018), + [sym__digits] = ACTIONS(4018), + [anon_sym_DASH_DASH] = ACTIONS(4021), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4018), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4018), + [sym__code_span_start] = ACTIONS(4024), + [sym__emphasis_open_star] = ACTIONS(3645), + [sym__emphasis_open_underscore] = ACTIONS(3645), + [sym__strikeout_open] = ACTIONS(4027), + [sym__latex_span_start] = ACTIONS(4030), + [sym__single_quote_open] = ACTIONS(4033), + [sym__double_quote_open] = ACTIONS(4036), + [sym__superscript_open] = ACTIONS(4039), + [sym__subscript_open] = ACTIONS(4042), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4045), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4048), + [sym__cite_author_in_text] = ACTIONS(4051), + [sym__cite_suppress_author] = ACTIONS(4054), + [sym__shortcode_open_escaped] = ACTIONS(4057), + [sym__shortcode_open] = ACTIONS(4060), + [sym__unclosed_span] = ACTIONS(3973), }, [STATE(377)] = { - [sym__qmd_attribute] = STATE(829), - [sym_raw_attribute] = STATE(829), - [sym_commonmark_attribute] = STATE(829), - [sym_language_attribute] = STATE(829), - [sym__backslash_escape] = ACTIONS(3629), - [sym_entity_reference] = ACTIONS(3629), - [sym_numeric_character_reference] = ACTIONS(3629), - [anon_sym_LT] = ACTIONS(3631), - [anon_sym_GT] = ACTIONS(3629), - [anon_sym_BANG] = ACTIONS(3629), - [anon_sym_DQUOTE] = ACTIONS(3629), - [anon_sym_POUND] = ACTIONS(3629), - [anon_sym_DOLLAR] = ACTIONS(3629), - [anon_sym_PERCENT] = ACTIONS(3629), - [anon_sym_AMP] = ACTIONS(3631), - [anon_sym_SQUOTE] = ACTIONS(3629), - [anon_sym_STAR] = ACTIONS(3629), - [anon_sym_PLUS] = ACTIONS(3629), - [anon_sym_COMMA] = ACTIONS(3629), - [anon_sym_DASH] = ACTIONS(3631), - [anon_sym_DOT] = ACTIONS(3631), - [anon_sym_SLASH] = ACTIONS(3629), - [anon_sym_COLON] = ACTIONS(3629), - [anon_sym_SEMI] = ACTIONS(3629), - [anon_sym_EQ] = ACTIONS(3629), - [anon_sym_QMARK] = ACTIONS(3629), - [anon_sym_LBRACK] = ACTIONS(3631), - [anon_sym_BSLASH] = ACTIONS(3631), - [anon_sym_CARET] = ACTIONS(3631), - [anon_sym__] = ACTIONS(3629), - [anon_sym_BQUOTE] = ACTIONS(3629), - [anon_sym_LBRACE] = ACTIONS(3717), - [anon_sym_PIPE] = ACTIONS(3629), - [anon_sym_TILDE] = ACTIONS(3629), - [anon_sym_LPAREN] = ACTIONS(3629), - [anon_sym_RPAREN] = ACTIONS(3629), - [sym__newline_token] = ACTIONS(3629), - [anon_sym_CARET_LBRACK] = ACTIONS(3629), - [anon_sym_LBRACK_CARET] = ACTIONS(3629), - [sym_uri_autolink] = ACTIONS(3629), - [sym_email_autolink] = ACTIONS(3629), - [sym__whitespace_ge_2] = ACTIONS(3629), - [aux_sym__whitespace_token1] = ACTIONS(3631), - [sym__word_no_digit] = ACTIONS(3629), - [sym__digits] = ACTIONS(3629), - [anon_sym_DASH_DASH] = ACTIONS(3631), - [anon_sym_DASH_DASH_DASH] = ACTIONS(3629), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3629), - [sym__code_span_start] = ACTIONS(3629), - [sym__emphasis_open_star] = ACTIONS(3629), - [sym__emphasis_open_underscore] = ACTIONS(3629), - [sym__strikeout_open] = ACTIONS(3629), - [sym__latex_span_start] = ACTIONS(3629), - [sym__single_quote_open] = ACTIONS(3629), - [sym__double_quote_open] = ACTIONS(3629), - [sym__superscript_open] = ACTIONS(3629), - [sym__subscript_open] = ACTIONS(3629), - [sym__subscript_close] = ACTIONS(3629), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3629), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3629), - [sym__cite_author_in_text] = ACTIONS(3629), - [sym__cite_suppress_author] = ACTIONS(3629), - [sym__shortcode_open_escaped] = ACTIONS(3629), - [sym__shortcode_open] = ACTIONS(3629), - [sym__unclosed_span] = ACTIONS(3629), + [sym_backslash_escape] = STATE(376), + [sym_commonmark_attribute] = STATE(376), + [sym_code_span] = STATE(376), + [sym_latex_span] = STATE(376), + [sym_insert] = STATE(376), + [sym_delete] = STATE(376), + [sym_highlight] = STATE(376), + [sym_edit_comment] = STATE(376), + [sym_superscript] = STATE(376), + [sym_subscript] = STATE(376), + [sym_strikeout] = STATE(376), + [sym_quoted_span] = STATE(376), + [sym_inline_note] = STATE(376), + [sym_citation] = STATE(376), + [sym_shortcode_escaped] = STATE(376), + [sym_shortcode] = STATE(376), + [sym_note_reference] = STATE(376), + [sym_image] = STATE(376), + [sym__image_inline_link] = STATE(1305), + [sym__image_description] = STATE(2302), + [sym__image_description_non_empty] = STATE(2302), + [sym_hard_line_break] = STATE(376), + [sym__whitespace] = STATE(1160), + [sym__word] = STATE(1160), + [sym__soft_line_break] = STATE(1375), + [sym__text_base] = STATE(376), + [aux_sym__inline_base_repeat1] = STATE(376), + [ts_builtin_sym_end] = ACTIONS(3580), + [sym__backslash_escape] = ACTIONS(3), + [sym_entity_reference] = ACTIONS(4063), + [sym_numeric_character_reference] = ACTIONS(4063), + [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(3578), + [anon_sym_BSLASH] = ACTIONS(15), + [anon_sym_CARET] = ACTIONS(7), + [anon_sym__] = ACTIONS(9), + [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(4063), + [sym_email_autolink] = ACTIONS(4063), + [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(3580), + [sym__emphasis_open_underscore] = ACTIONS(3580), + [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(4063), }, [STATE(378)] = { - [sym__qmd_attribute] = STATE(675), - [sym_raw_attribute] = STATE(675), - [sym_commonmark_attribute] = STATE(675), - [sym_language_attribute] = STATE(675), - [sym__backslash_escape] = ACTIONS(3655), - [sym_entity_reference] = ACTIONS(3655), - [sym_numeric_character_reference] = ACTIONS(3655), - [anon_sym_LT] = ACTIONS(3657), - [anon_sym_GT] = ACTIONS(3655), - [anon_sym_BANG] = ACTIONS(3655), - [anon_sym_DQUOTE] = ACTIONS(3655), - [anon_sym_POUND] = ACTIONS(3655), - [anon_sym_DOLLAR] = ACTIONS(3655), - [anon_sym_PERCENT] = ACTIONS(3655), - [anon_sym_AMP] = ACTIONS(3657), - [anon_sym_SQUOTE] = ACTIONS(3655), - [anon_sym_STAR] = ACTIONS(3655), - [anon_sym_PLUS] = ACTIONS(3655), - [anon_sym_COMMA] = ACTIONS(3655), - [anon_sym_DASH] = ACTIONS(3657), - [anon_sym_DOT] = ACTIONS(3657), - [anon_sym_SLASH] = ACTIONS(3655), - [anon_sym_COLON] = ACTIONS(3655), - [anon_sym_SEMI] = ACTIONS(3655), - [anon_sym_EQ] = ACTIONS(3655), - [anon_sym_QMARK] = ACTIONS(3655), - [anon_sym_LBRACK] = ACTIONS(3657), - [anon_sym_BSLASH] = ACTIONS(3657), - [anon_sym_CARET] = ACTIONS(3657), - [anon_sym__] = ACTIONS(3655), - [anon_sym_BQUOTE] = ACTIONS(3655), - [anon_sym_LBRACE] = ACTIONS(3641), - [anon_sym_PIPE] = ACTIONS(3655), - [anon_sym_TILDE] = ACTIONS(3655), - [anon_sym_LPAREN] = ACTIONS(3655), - [anon_sym_RPAREN] = ACTIONS(3655), - [sym__newline_token] = ACTIONS(3655), - [anon_sym_CARET_LBRACK] = ACTIONS(3655), - [anon_sym_LBRACK_CARET] = ACTIONS(3655), - [sym_uri_autolink] = ACTIONS(3655), - [sym_email_autolink] = ACTIONS(3655), - [sym__whitespace_ge_2] = ACTIONS(3655), - [aux_sym__whitespace_token1] = ACTIONS(3657), - [sym__word_no_digit] = ACTIONS(3655), - [sym__digits] = ACTIONS(3655), - [anon_sym_DASH_DASH] = ACTIONS(3657), - [anon_sym_DASH_DASH_DASH] = ACTIONS(3655), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3655), - [sym__code_span_start] = ACTIONS(3655), - [sym__emphasis_open_star] = ACTIONS(3655), - [sym__emphasis_open_underscore] = ACTIONS(3655), - [sym__strikeout_open] = ACTIONS(3655), - [sym__latex_span_start] = ACTIONS(3655), - [sym__single_quote_open] = ACTIONS(3655), - [sym__double_quote_open] = ACTIONS(3655), - [sym__double_quote_close] = ACTIONS(3655), - [sym__superscript_open] = ACTIONS(3655), - [sym__subscript_open] = ACTIONS(3655), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3655), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3655), - [sym__cite_author_in_text] = ACTIONS(3655), - [sym__cite_suppress_author] = ACTIONS(3655), - [sym__shortcode_open_escaped] = ACTIONS(3655), - [sym__shortcode_open] = ACTIONS(3655), - [sym__unclosed_span] = ACTIONS(3655), + [sym_backslash_escape] = STATE(378), + [sym_commonmark_attribute] = STATE(378), + [sym_code_span] = STATE(378), + [sym_latex_span] = STATE(378), + [sym_insert] = STATE(378), + [sym_delete] = STATE(378), + [sym_highlight] = STATE(378), + [sym_edit_comment] = STATE(378), + [sym_superscript] = STATE(378), + [sym_subscript] = STATE(378), + [sym_strikeout] = STATE(378), + [sym_quoted_span] = STATE(378), + [sym_inline_note] = STATE(378), + [sym_citation] = STATE(378), + [sym_shortcode_escaped] = STATE(378), + [sym_shortcode] = STATE(378), + [sym_note_reference] = STATE(378), + [sym_image] = STATE(378), + [sym__image_inline_link] = STATE(1263), + [sym__image_description] = STATE(2300), + [sym__image_description_non_empty] = STATE(2300), + [sym_hard_line_break] = STATE(378), + [sym__whitespace] = STATE(1259), + [sym__word] = STATE(1259), + [sym__soft_line_break] = STATE(1264), + [sym__text_base] = STATE(378), + [aux_sym__inline_base_repeat1] = STATE(378), + [sym__backslash_escape] = ACTIONS(4065), + [sym_entity_reference] = ACTIONS(4068), + [sym_numeric_character_reference] = ACTIONS(4068), + [anon_sym_LT] = ACTIONS(4071), + [anon_sym_GT] = ACTIONS(4074), + [anon_sym_BANG] = ACTIONS(4077), + [anon_sym_DQUOTE] = ACTIONS(4074), + [anon_sym_POUND] = ACTIONS(4074), + [anon_sym_DOLLAR] = ACTIONS(4074), + [anon_sym_PERCENT] = ACTIONS(4074), + [anon_sym_AMP] = ACTIONS(4071), + [anon_sym_SQUOTE] = ACTIONS(4074), + [anon_sym_STAR] = ACTIONS(4074), + [anon_sym_PLUS] = ACTIONS(4074), + [anon_sym_COMMA] = ACTIONS(4074), + [anon_sym_DASH] = ACTIONS(4071), + [anon_sym_DOT] = ACTIONS(4071), + [anon_sym_SLASH] = ACTIONS(4074), + [anon_sym_COLON] = ACTIONS(4074), + [anon_sym_SEMI] = ACTIONS(4074), + [anon_sym_EQ] = ACTIONS(4074), + [anon_sym_QMARK] = ACTIONS(4074), + [anon_sym_LBRACK] = ACTIONS(3601), + [anon_sym_BSLASH] = ACTIONS(4080), + [anon_sym_CARET] = ACTIONS(4071), + [anon_sym__] = ACTIONS(4074), + [anon_sym_BQUOTE] = ACTIONS(4074), + [anon_sym_LBRACE] = ACTIONS(4083), + [anon_sym_PIPE] = ACTIONS(4074), + [anon_sym_TILDE] = ACTIONS(4074), + [anon_sym_LPAREN] = ACTIONS(4074), + [anon_sym_RPAREN] = ACTIONS(4074), + [sym__newline_token] = ACTIONS(4086), + [aux_sym_insert_token1] = ACTIONS(4089), + [aux_sym_delete_token1] = ACTIONS(4092), + [aux_sym_highlight_token1] = ACTIONS(4095), + [aux_sym_edit_comment_token1] = ACTIONS(4098), + [anon_sym_CARET_LBRACK] = ACTIONS(4101), + [anon_sym_LBRACK_CARET] = ACTIONS(4104), + [sym_uri_autolink] = ACTIONS(4068), + [sym_email_autolink] = ACTIONS(4068), + [sym__whitespace_ge_2] = ACTIONS(4107), + [aux_sym__whitespace_token1] = ACTIONS(4110), + [sym__word_no_digit] = ACTIONS(4113), + [sym__digits] = ACTIONS(4113), + [anon_sym_DASH_DASH] = ACTIONS(4116), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4113), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4113), + [sym__code_span_start] = ACTIONS(4119), + [sym__emphasis_open_star] = ACTIONS(3645), + [sym__emphasis_open_underscore] = ACTIONS(3645), + [sym__strikeout_open] = ACTIONS(4122), + [sym__latex_span_start] = ACTIONS(4125), + [sym__single_quote_open] = ACTIONS(4128), + [sym__double_quote_open] = ACTIONS(4131), + [sym__double_quote_close] = ACTIONS(3645), + [sym__superscript_open] = ACTIONS(4134), + [sym__subscript_open] = ACTIONS(4137), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4140), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4143), + [sym__cite_author_in_text] = ACTIONS(4146), + [sym__cite_suppress_author] = ACTIONS(4149), + [sym__shortcode_open_escaped] = ACTIONS(4152), + [sym__shortcode_open] = ACTIONS(4155), + [sym__unclosed_span] = ACTIONS(4068), }, [STATE(379)] = { - [sym__qmd_attribute] = STATE(1064), - [sym_raw_attribute] = STATE(1064), - [sym_commonmark_attribute] = STATE(1064), - [sym_language_attribute] = STATE(1064), - [sym__backslash_escape] = ACTIONS(3705), - [sym_entity_reference] = ACTIONS(3705), - [sym_numeric_character_reference] = ACTIONS(3705), - [anon_sym_LT] = ACTIONS(3707), - [anon_sym_GT] = ACTIONS(3705), - [anon_sym_BANG] = ACTIONS(3705), - [anon_sym_DQUOTE] = ACTIONS(3705), - [anon_sym_POUND] = ACTIONS(3705), - [anon_sym_DOLLAR] = ACTIONS(3705), - [anon_sym_PERCENT] = ACTIONS(3705), - [anon_sym_AMP] = ACTIONS(3707), - [anon_sym_SQUOTE] = ACTIONS(3705), - [anon_sym_STAR] = ACTIONS(3705), - [anon_sym_PLUS] = ACTIONS(3705), - [anon_sym_COMMA] = ACTIONS(3705), - [anon_sym_DASH] = ACTIONS(3707), - [anon_sym_DOT] = ACTIONS(3707), - [anon_sym_SLASH] = ACTIONS(3705), - [anon_sym_COLON] = ACTIONS(3705), - [anon_sym_SEMI] = ACTIONS(3705), - [anon_sym_EQ] = ACTIONS(3705), - [anon_sym_QMARK] = ACTIONS(3705), - [anon_sym_LBRACK] = ACTIONS(3707), - [anon_sym_BSLASH] = ACTIONS(3707), - [anon_sym_CARET] = ACTIONS(3707), - [anon_sym__] = ACTIONS(3705), - [anon_sym_BQUOTE] = ACTIONS(3705), - [anon_sym_LBRACE] = ACTIONS(3721), - [anon_sym_PIPE] = ACTIONS(3705), - [anon_sym_TILDE] = ACTIONS(3705), - [anon_sym_LPAREN] = ACTIONS(3705), - [anon_sym_RPAREN] = ACTIONS(3705), - [sym__newline_token] = ACTIONS(3705), - [anon_sym_CARET_LBRACK] = ACTIONS(3705), - [anon_sym_LBRACK_CARET] = ACTIONS(3705), - [sym_uri_autolink] = ACTIONS(3705), - [sym_email_autolink] = ACTIONS(3705), - [sym__whitespace_ge_2] = ACTIONS(3705), - [aux_sym__whitespace_token1] = ACTIONS(3707), - [sym__word_no_digit] = ACTIONS(3705), - [sym__digits] = ACTIONS(3705), - [anon_sym_DASH_DASH] = ACTIONS(3707), - [anon_sym_DASH_DASH_DASH] = ACTIONS(3705), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3705), - [sym__code_span_start] = ACTIONS(3705), - [sym__emphasis_open_star] = ACTIONS(3705), - [sym__emphasis_open_underscore] = ACTIONS(3705), - [sym__strikeout_open] = ACTIONS(3705), - [sym__strikeout_close] = ACTIONS(3705), - [sym__latex_span_start] = ACTIONS(3705), - [sym__single_quote_open] = ACTIONS(3705), - [sym__double_quote_open] = ACTIONS(3705), - [sym__superscript_open] = ACTIONS(3705), - [sym__subscript_open] = ACTIONS(3705), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3705), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3705), - [sym__cite_author_in_text] = ACTIONS(3705), - [sym__cite_suppress_author] = ACTIONS(3705), - [sym__shortcode_open_escaped] = ACTIONS(3705), - [sym__shortcode_open] = ACTIONS(3705), - [sym__unclosed_span] = ACTIONS(3705), + [sym_backslash_escape] = STATE(382), + [sym_commonmark_attribute] = STATE(382), + [sym_code_span] = STATE(382), + [sym_latex_span] = STATE(382), + [sym_insert] = STATE(382), + [sym_delete] = STATE(382), + [sym_highlight] = STATE(382), + [sym_edit_comment] = STATE(382), + [sym_superscript] = STATE(382), + [sym_subscript] = STATE(382), + [sym_strikeout] = STATE(382), + [sym_quoted_span] = STATE(382), + [sym_inline_note] = STATE(382), + [sym_citation] = STATE(382), + [sym_shortcode_escaped] = STATE(382), + [sym_shortcode] = STATE(382), + [sym_note_reference] = STATE(382), + [sym_image] = STATE(382), + [sym__image_inline_link] = STATE(1390), + [sym__image_description] = STATE(2363), + [sym__image_description_non_empty] = STATE(2363), + [sym_hard_line_break] = STATE(382), + [sym__whitespace] = STATE(1385), + [sym__word] = STATE(1385), + [sym__soft_line_break] = STATE(1391), + [sym__text_base] = STATE(382), + [aux_sym__inline_base_repeat1] = STATE(382), + [sym__backslash_escape] = ACTIONS(1059), + [sym_entity_reference] = ACTIONS(4158), + [sym_numeric_character_reference] = ACTIONS(4158), + [anon_sym_LT] = ACTIONS(1063), + [anon_sym_GT] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1067), + [anon_sym_DQUOTE] = ACTIONS(1065), + [anon_sym_POUND] = ACTIONS(1065), + [anon_sym_DOLLAR] = ACTIONS(1065), + [anon_sym_PERCENT] = ACTIONS(1065), + [anon_sym_AMP] = ACTIONS(1063), + [anon_sym_SQUOTE] = ACTIONS(1065), + [anon_sym_STAR] = ACTIONS(1065), + [anon_sym_PLUS] = ACTIONS(1065), + [anon_sym_COMMA] = ACTIONS(1065), + [anon_sym_DASH] = ACTIONS(1063), + [anon_sym_DOT] = ACTIONS(1063), + [anon_sym_SLASH] = ACTIONS(1065), + [anon_sym_COLON] = ACTIONS(1065), + [anon_sym_SEMI] = ACTIONS(1065), + [anon_sym_EQ] = ACTIONS(1065), + [anon_sym_QMARK] = ACTIONS(1065), + [anon_sym_LBRACK] = ACTIONS(3578), + [anon_sym_BSLASH] = ACTIONS(1071), + [anon_sym_CARET] = ACTIONS(1063), + [anon_sym__] = ACTIONS(1065), + [anon_sym_BQUOTE] = ACTIONS(1065), + [anon_sym_LBRACE] = ACTIONS(1073), + [anon_sym_PIPE] = ACTIONS(1065), + [anon_sym_TILDE] = ACTIONS(1065), + [anon_sym_LPAREN] = ACTIONS(1065), + [anon_sym_RPAREN] = ACTIONS(1065), + [sym__newline_token] = ACTIONS(1075), + [aux_sym_insert_token1] = ACTIONS(1077), + [aux_sym_delete_token1] = ACTIONS(1079), + [aux_sym_highlight_token1] = ACTIONS(1081), + [aux_sym_edit_comment_token1] = ACTIONS(1083), + [anon_sym_CARET_LBRACK] = ACTIONS(1085), + [anon_sym_LBRACK_CARET] = ACTIONS(1087), + [sym_uri_autolink] = ACTIONS(4158), + [sym_email_autolink] = ACTIONS(4158), + [sym__whitespace_ge_2] = ACTIONS(1089), + [aux_sym__whitespace_token1] = ACTIONS(1091), + [sym__word_no_digit] = ACTIONS(1093), + [sym__digits] = ACTIONS(1093), + [anon_sym_DASH_DASH] = ACTIONS(1095), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1093), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1093), + [sym__code_span_start] = ACTIONS(1097), + [sym__emphasis_open_star] = ACTIONS(3580), + [sym__emphasis_open_underscore] = ACTIONS(3580), + [sym__emphasis_close_underscore] = ACTIONS(3580), + [sym__strikeout_open] = ACTIONS(1105), + [sym__latex_span_start] = ACTIONS(1107), + [sym__single_quote_open] = ACTIONS(1109), + [sym__double_quote_open] = ACTIONS(1111), + [sym__superscript_open] = ACTIONS(1113), + [sym__subscript_open] = ACTIONS(1115), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1117), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1119), + [sym__cite_author_in_text] = ACTIONS(1121), + [sym__cite_suppress_author] = ACTIONS(1123), + [sym__shortcode_open_escaped] = ACTIONS(1125), + [sym__shortcode_open] = ACTIONS(1127), + [sym__unclosed_span] = ACTIONS(4158), }, [STATE(380)] = { - [sym__qmd_attribute] = STATE(1080), - [sym_raw_attribute] = STATE(1080), - [sym_commonmark_attribute] = STATE(1080), - [sym_language_attribute] = STATE(1080), - [sym__backslash_escape] = ACTIONS(3629), - [sym_entity_reference] = ACTIONS(3629), - [sym_numeric_character_reference] = ACTIONS(3629), - [anon_sym_LT] = ACTIONS(3631), - [anon_sym_GT] = ACTIONS(3629), - [anon_sym_BANG] = ACTIONS(3629), - [anon_sym_DQUOTE] = ACTIONS(3629), - [anon_sym_POUND] = ACTIONS(3629), - [anon_sym_DOLLAR] = ACTIONS(3629), - [anon_sym_PERCENT] = ACTIONS(3629), - [anon_sym_AMP] = ACTIONS(3631), - [anon_sym_SQUOTE] = ACTIONS(3629), - [anon_sym_STAR] = ACTIONS(3629), - [anon_sym_PLUS] = ACTIONS(3629), - [anon_sym_COMMA] = ACTIONS(3629), - [anon_sym_DASH] = ACTIONS(3631), - [anon_sym_DOT] = ACTIONS(3631), - [anon_sym_SLASH] = ACTIONS(3629), - [anon_sym_COLON] = ACTIONS(3629), - [anon_sym_SEMI] = ACTIONS(3629), - [anon_sym_EQ] = ACTIONS(3629), - [anon_sym_QMARK] = ACTIONS(3629), - [anon_sym_LBRACK] = ACTIONS(3631), - [anon_sym_BSLASH] = ACTIONS(3631), - [anon_sym_CARET] = ACTIONS(3631), - [anon_sym__] = ACTIONS(3629), - [anon_sym_BQUOTE] = ACTIONS(3629), - [anon_sym_LBRACE] = ACTIONS(3721), - [anon_sym_PIPE] = ACTIONS(3629), - [anon_sym_TILDE] = ACTIONS(3629), - [anon_sym_LPAREN] = ACTIONS(3629), - [anon_sym_RPAREN] = ACTIONS(3629), - [sym__newline_token] = ACTIONS(3629), - [anon_sym_CARET_LBRACK] = ACTIONS(3629), - [anon_sym_LBRACK_CARET] = ACTIONS(3629), - [sym_uri_autolink] = ACTIONS(3629), - [sym_email_autolink] = ACTIONS(3629), - [sym__whitespace_ge_2] = ACTIONS(3629), - [aux_sym__whitespace_token1] = ACTIONS(3631), - [sym__word_no_digit] = ACTIONS(3629), - [sym__digits] = ACTIONS(3629), - [anon_sym_DASH_DASH] = ACTIONS(3631), - [anon_sym_DASH_DASH_DASH] = ACTIONS(3629), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3629), - [sym__code_span_start] = ACTIONS(3629), - [sym__emphasis_open_star] = ACTIONS(3629), - [sym__emphasis_open_underscore] = ACTIONS(3629), - [sym__strikeout_open] = ACTIONS(3629), - [sym__strikeout_close] = ACTIONS(3629), - [sym__latex_span_start] = ACTIONS(3629), - [sym__single_quote_open] = ACTIONS(3629), - [sym__double_quote_open] = ACTIONS(3629), - [sym__superscript_open] = ACTIONS(3629), - [sym__subscript_open] = ACTIONS(3629), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3629), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3629), - [sym__cite_author_in_text] = ACTIONS(3629), - [sym__cite_suppress_author] = ACTIONS(3629), - [sym__shortcode_open_escaped] = ACTIONS(3629), - [sym__shortcode_open] = ACTIONS(3629), - [sym__unclosed_span] = ACTIONS(3629), + [sym_backslash_escape] = STATE(380), + [sym_commonmark_attribute] = STATE(380), + [sym_code_span] = STATE(380), + [sym_latex_span] = STATE(380), + [sym_insert] = STATE(380), + [sym_delete] = STATE(380), + [sym_highlight] = STATE(380), + [sym_edit_comment] = STATE(380), + [sym_superscript] = STATE(380), + [sym_subscript] = STATE(380), + [sym_strikeout] = STATE(380), + [sym_quoted_span] = STATE(380), + [sym_inline_note] = STATE(380), + [sym_citation] = STATE(380), + [sym_shortcode_escaped] = STATE(380), + [sym_shortcode] = STATE(380), + [sym_note_reference] = STATE(380), + [sym_image] = STATE(380), + [sym__image_inline_link] = STATE(972), + [sym__image_description] = STATE(2286), + [sym__image_description_non_empty] = STATE(2286), + [sym_hard_line_break] = STATE(380), + [sym__whitespace] = STATE(949), + [sym__word] = STATE(949), + [sym__soft_line_break] = STATE(973), + [sym__text_base] = STATE(380), + [aux_sym__inline_base_repeat1] = STATE(380), + [sym__backslash_escape] = ACTIONS(4160), + [sym_entity_reference] = ACTIONS(4163), + [sym_numeric_character_reference] = ACTIONS(4163), + [anon_sym_LT] = ACTIONS(4166), + [anon_sym_GT] = ACTIONS(4169), + [anon_sym_BANG] = ACTIONS(4172), + [anon_sym_DQUOTE] = ACTIONS(4169), + [anon_sym_POUND] = ACTIONS(4169), + [anon_sym_DOLLAR] = ACTIONS(4169), + [anon_sym_PERCENT] = ACTIONS(4169), + [anon_sym_AMP] = ACTIONS(4166), + [anon_sym_SQUOTE] = ACTIONS(4169), + [anon_sym_STAR] = ACTIONS(4169), + [anon_sym_PLUS] = ACTIONS(4169), + [anon_sym_COMMA] = ACTIONS(4169), + [anon_sym_DASH] = ACTIONS(4166), + [anon_sym_DOT] = ACTIONS(4166), + [anon_sym_SLASH] = ACTIONS(4169), + [anon_sym_COLON] = ACTIONS(4169), + [anon_sym_SEMI] = ACTIONS(4169), + [anon_sym_EQ] = ACTIONS(4169), + [anon_sym_QMARK] = ACTIONS(4169), + [anon_sym_LBRACK] = ACTIONS(3601), + [anon_sym_BSLASH] = ACTIONS(4175), + [anon_sym_CARET] = ACTIONS(4166), + [anon_sym__] = ACTIONS(4169), + [anon_sym_BQUOTE] = ACTIONS(4169), + [anon_sym_LBRACE] = ACTIONS(4178), + [anon_sym_PIPE] = ACTIONS(4169), + [anon_sym_TILDE] = ACTIONS(4169), + [anon_sym_LPAREN] = ACTIONS(4169), + [anon_sym_RPAREN] = ACTIONS(4169), + [sym__newline_token] = ACTIONS(4181), + [aux_sym_insert_token1] = ACTIONS(4184), + [aux_sym_delete_token1] = ACTIONS(4187), + [aux_sym_highlight_token1] = ACTIONS(4190), + [aux_sym_edit_comment_token1] = ACTIONS(4193), + [anon_sym_CARET_LBRACK] = ACTIONS(4196), + [anon_sym_LBRACK_CARET] = ACTIONS(4199), + [sym_uri_autolink] = ACTIONS(4163), + [sym_email_autolink] = ACTIONS(4163), + [sym__whitespace_ge_2] = ACTIONS(4202), + [aux_sym__whitespace_token1] = ACTIONS(4205), + [sym__word_no_digit] = ACTIONS(4208), + [sym__digits] = ACTIONS(4208), + [anon_sym_DASH_DASH] = ACTIONS(4211), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4208), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4208), + [sym__code_span_start] = ACTIONS(4214), + [sym__emphasis_open_star] = ACTIONS(3645), + [sym__emphasis_open_underscore] = ACTIONS(3645), + [sym__strikeout_open] = ACTIONS(4217), + [sym__latex_span_start] = ACTIONS(4220), + [sym__single_quote_open] = ACTIONS(4223), + [sym__single_quote_close] = ACTIONS(3645), + [sym__double_quote_open] = ACTIONS(4226), + [sym__superscript_open] = ACTIONS(4229), + [sym__subscript_open] = ACTIONS(4232), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4235), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4238), + [sym__cite_author_in_text] = ACTIONS(4241), + [sym__cite_suppress_author] = ACTIONS(4244), + [sym__shortcode_open_escaped] = ACTIONS(4247), + [sym__shortcode_open] = ACTIONS(4250), + [sym__unclosed_span] = ACTIONS(4163), }, [STATE(381)] = { - [sym__qmd_attribute] = STATE(837), - [sym_raw_attribute] = STATE(837), - [sym_commonmark_attribute] = STATE(837), - [sym_language_attribute] = STATE(837), - [sym__backslash_escape] = ACTIONS(3643), - [sym_entity_reference] = ACTIONS(3643), - [sym_numeric_character_reference] = ACTIONS(3643), - [anon_sym_LT] = ACTIONS(3645), - [anon_sym_GT] = ACTIONS(3643), - [anon_sym_BANG] = ACTIONS(3643), - [anon_sym_DQUOTE] = ACTIONS(3643), - [anon_sym_POUND] = ACTIONS(3643), - [anon_sym_DOLLAR] = ACTIONS(3643), - [anon_sym_PERCENT] = ACTIONS(3643), - [anon_sym_AMP] = ACTIONS(3645), - [anon_sym_SQUOTE] = ACTIONS(3643), - [anon_sym_STAR] = ACTIONS(3643), - [anon_sym_PLUS] = ACTIONS(3643), - [anon_sym_COMMA] = ACTIONS(3643), - [anon_sym_DASH] = ACTIONS(3645), - [anon_sym_DOT] = ACTIONS(3645), - [anon_sym_SLASH] = ACTIONS(3643), - [anon_sym_COLON] = ACTIONS(3643), - [anon_sym_SEMI] = ACTIONS(3643), - [anon_sym_EQ] = ACTIONS(3643), - [anon_sym_QMARK] = ACTIONS(3643), - [anon_sym_LBRACK] = ACTIONS(3645), - [anon_sym_BSLASH] = ACTIONS(3645), - [anon_sym_CARET] = ACTIONS(3645), - [anon_sym__] = ACTIONS(3643), - [anon_sym_BQUOTE] = ACTIONS(3643), - [anon_sym_LBRACE] = ACTIONS(3717), - [anon_sym_PIPE] = ACTIONS(3643), - [anon_sym_TILDE] = ACTIONS(3643), - [anon_sym_LPAREN] = ACTIONS(3643), - [anon_sym_RPAREN] = ACTIONS(3643), - [sym__newline_token] = ACTIONS(3643), - [anon_sym_CARET_LBRACK] = ACTIONS(3643), - [anon_sym_LBRACK_CARET] = ACTIONS(3643), - [sym_uri_autolink] = ACTIONS(3643), - [sym_email_autolink] = ACTIONS(3643), - [sym__whitespace_ge_2] = ACTIONS(3643), - [aux_sym__whitespace_token1] = ACTIONS(3645), - [sym__word_no_digit] = ACTIONS(3643), - [sym__digits] = ACTIONS(3643), - [anon_sym_DASH_DASH] = ACTIONS(3645), - [anon_sym_DASH_DASH_DASH] = ACTIONS(3643), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3643), - [sym__code_span_start] = ACTIONS(3643), - [sym__emphasis_open_star] = ACTIONS(3643), - [sym__emphasis_open_underscore] = ACTIONS(3643), - [sym__strikeout_open] = ACTIONS(3643), - [sym__latex_span_start] = ACTIONS(3643), - [sym__single_quote_open] = ACTIONS(3643), - [sym__double_quote_open] = ACTIONS(3643), - [sym__superscript_open] = ACTIONS(3643), - [sym__subscript_open] = ACTIONS(3643), - [sym__subscript_close] = ACTIONS(3643), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3643), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3643), - [sym__cite_author_in_text] = ACTIONS(3643), - [sym__cite_suppress_author] = ACTIONS(3643), - [sym__shortcode_open_escaped] = ACTIONS(3643), - [sym__shortcode_open] = ACTIONS(3643), - [sym__unclosed_span] = ACTIONS(3643), + [sym_backslash_escape] = STATE(381), + [sym_commonmark_attribute] = STATE(381), + [sym_code_span] = STATE(381), + [sym_latex_span] = STATE(381), + [sym_insert] = STATE(381), + [sym_delete] = STATE(381), + [sym_highlight] = STATE(381), + [sym_edit_comment] = STATE(381), + [sym_superscript] = STATE(381), + [sym_subscript] = STATE(381), + [sym_strikeout] = STATE(381), + [sym_quoted_span] = STATE(381), + [sym_inline_note] = STATE(381), + [sym_citation] = STATE(381), + [sym_shortcode_escaped] = STATE(381), + [sym_shortcode] = STATE(381), + [sym_note_reference] = STATE(381), + [sym_image] = STATE(381), + [sym__image_inline_link] = STATE(1244), + [sym__image_description] = STATE(2280), + [sym__image_description_non_empty] = STATE(2280), + [sym_hard_line_break] = STATE(381), + [sym__whitespace] = STATE(1218), + [sym__word] = STATE(1218), + [sym__soft_line_break] = STATE(1245), + [sym__text_base] = STATE(381), + [aux_sym__inline_base_repeat1] = STATE(381), + [sym__backslash_escape] = ACTIONS(4253), + [sym_entity_reference] = ACTIONS(4256), + [sym_numeric_character_reference] = ACTIONS(4256), + [anon_sym_LT] = ACTIONS(4259), + [anon_sym_GT] = ACTIONS(4262), + [anon_sym_BANG] = ACTIONS(4265), + [anon_sym_DQUOTE] = ACTIONS(4262), + [anon_sym_POUND] = ACTIONS(4262), + [anon_sym_DOLLAR] = ACTIONS(4262), + [anon_sym_PERCENT] = ACTIONS(4262), + [anon_sym_AMP] = ACTIONS(4259), + [anon_sym_SQUOTE] = ACTIONS(4262), + [anon_sym_STAR] = ACTIONS(4262), + [anon_sym_PLUS] = ACTIONS(4262), + [anon_sym_COMMA] = ACTIONS(4262), + [anon_sym_DASH] = ACTIONS(4259), + [anon_sym_DOT] = ACTIONS(4259), + [anon_sym_SLASH] = ACTIONS(4262), + [anon_sym_COLON] = ACTIONS(4262), + [anon_sym_SEMI] = ACTIONS(4262), + [anon_sym_EQ] = ACTIONS(4262), + [anon_sym_QMARK] = ACTIONS(4262), + [anon_sym_LBRACK] = ACTIONS(3601), + [anon_sym_BSLASH] = ACTIONS(4268), + [anon_sym_CARET] = ACTIONS(4259), + [anon_sym__] = ACTIONS(4262), + [anon_sym_BQUOTE] = ACTIONS(4262), + [anon_sym_LBRACE] = ACTIONS(4271), + [anon_sym_PIPE] = ACTIONS(4262), + [anon_sym_TILDE] = ACTIONS(4262), + [anon_sym_LPAREN] = ACTIONS(4262), + [anon_sym_RPAREN] = ACTIONS(4262), + [sym__newline_token] = ACTIONS(4274), + [aux_sym_insert_token1] = ACTIONS(4277), + [aux_sym_delete_token1] = ACTIONS(4280), + [aux_sym_highlight_token1] = ACTIONS(4283), + [aux_sym_edit_comment_token1] = ACTIONS(4286), + [anon_sym_CARET_LBRACK] = ACTIONS(4289), + [anon_sym_LBRACK_CARET] = ACTIONS(4292), + [sym_uri_autolink] = ACTIONS(4256), + [sym_email_autolink] = ACTIONS(4256), + [sym__whitespace_ge_2] = ACTIONS(4295), + [aux_sym__whitespace_token1] = ACTIONS(4298), + [sym__word_no_digit] = ACTIONS(4301), + [sym__digits] = ACTIONS(4301), + [anon_sym_DASH_DASH] = ACTIONS(4304), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4301), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4301), + [sym__code_span_start] = ACTIONS(4307), + [sym__emphasis_open_star] = ACTIONS(3645), + [sym__emphasis_open_underscore] = ACTIONS(3645), + [sym__strikeout_open] = ACTIONS(4310), + [sym__strikeout_close] = ACTIONS(3645), + [sym__latex_span_start] = ACTIONS(4313), + [sym__single_quote_open] = ACTIONS(4316), + [sym__double_quote_open] = ACTIONS(4319), + [sym__superscript_open] = ACTIONS(4322), + [sym__subscript_open] = ACTIONS(4325), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4328), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4331), + [sym__cite_author_in_text] = ACTIONS(4334), + [sym__cite_suppress_author] = ACTIONS(4337), + [sym__shortcode_open_escaped] = ACTIONS(4340), + [sym__shortcode_open] = ACTIONS(4343), + [sym__unclosed_span] = ACTIONS(4256), }, [STATE(382)] = { - [sym__qmd_attribute] = STATE(1086), - [sym_raw_attribute] = STATE(1086), - [sym_commonmark_attribute] = STATE(1086), - [sym_language_attribute] = STATE(1086), - [sym__backslash_escape] = ACTIONS(3643), - [sym_entity_reference] = ACTIONS(3643), - [sym_numeric_character_reference] = ACTIONS(3643), - [anon_sym_LT] = ACTIONS(3645), - [anon_sym_GT] = ACTIONS(3643), - [anon_sym_BANG] = ACTIONS(3643), - [anon_sym_DQUOTE] = ACTIONS(3643), - [anon_sym_POUND] = ACTIONS(3643), - [anon_sym_DOLLAR] = ACTIONS(3643), - [anon_sym_PERCENT] = ACTIONS(3643), - [anon_sym_AMP] = ACTIONS(3645), - [anon_sym_SQUOTE] = ACTIONS(3643), - [anon_sym_STAR] = ACTIONS(3643), - [anon_sym_PLUS] = ACTIONS(3643), - [anon_sym_COMMA] = ACTIONS(3643), - [anon_sym_DASH] = ACTIONS(3645), - [anon_sym_DOT] = ACTIONS(3645), - [anon_sym_SLASH] = ACTIONS(3643), - [anon_sym_COLON] = ACTIONS(3643), - [anon_sym_SEMI] = ACTIONS(3643), - [anon_sym_EQ] = ACTIONS(3643), - [anon_sym_QMARK] = ACTIONS(3643), - [anon_sym_LBRACK] = ACTIONS(3645), - [anon_sym_BSLASH] = ACTIONS(3645), - [anon_sym_CARET] = ACTIONS(3645), - [anon_sym__] = ACTIONS(3643), - [anon_sym_BQUOTE] = ACTIONS(3643), - [anon_sym_LBRACE] = ACTIONS(3721), - [anon_sym_PIPE] = ACTIONS(3643), - [anon_sym_TILDE] = ACTIONS(3643), - [anon_sym_LPAREN] = ACTIONS(3643), - [anon_sym_RPAREN] = ACTIONS(3643), - [sym__newline_token] = ACTIONS(3643), - [anon_sym_CARET_LBRACK] = ACTIONS(3643), - [anon_sym_LBRACK_CARET] = ACTIONS(3643), - [sym_uri_autolink] = ACTIONS(3643), - [sym_email_autolink] = ACTIONS(3643), - [sym__whitespace_ge_2] = ACTIONS(3643), - [aux_sym__whitespace_token1] = ACTIONS(3645), - [sym__word_no_digit] = ACTIONS(3643), - [sym__digits] = ACTIONS(3643), - [anon_sym_DASH_DASH] = ACTIONS(3645), - [anon_sym_DASH_DASH_DASH] = ACTIONS(3643), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3643), - [sym__code_span_start] = ACTIONS(3643), - [sym__emphasis_open_star] = ACTIONS(3643), - [sym__emphasis_open_underscore] = ACTIONS(3643), - [sym__strikeout_open] = ACTIONS(3643), - [sym__strikeout_close] = ACTIONS(3643), - [sym__latex_span_start] = ACTIONS(3643), - [sym__single_quote_open] = ACTIONS(3643), - [sym__double_quote_open] = ACTIONS(3643), - [sym__superscript_open] = ACTIONS(3643), - [sym__subscript_open] = ACTIONS(3643), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3643), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3643), - [sym__cite_author_in_text] = ACTIONS(3643), - [sym__cite_suppress_author] = ACTIONS(3643), - [sym__shortcode_open_escaped] = ACTIONS(3643), - [sym__shortcode_open] = ACTIONS(3643), - [sym__unclosed_span] = ACTIONS(3643), + [sym_backslash_escape] = STATE(382), + [sym_commonmark_attribute] = STATE(382), + [sym_code_span] = STATE(382), + [sym_latex_span] = STATE(382), + [sym_insert] = STATE(382), + [sym_delete] = STATE(382), + [sym_highlight] = STATE(382), + [sym_edit_comment] = STATE(382), + [sym_superscript] = STATE(382), + [sym_subscript] = STATE(382), + [sym_strikeout] = STATE(382), + [sym_quoted_span] = STATE(382), + [sym_inline_note] = STATE(382), + [sym_citation] = STATE(382), + [sym_shortcode_escaped] = STATE(382), + [sym_shortcode] = STATE(382), + [sym_note_reference] = STATE(382), + [sym_image] = STATE(382), + [sym__image_inline_link] = STATE(1390), + [sym__image_description] = STATE(2363), + [sym__image_description_non_empty] = STATE(2363), + [sym_hard_line_break] = STATE(382), + [sym__whitespace] = STATE(1385), + [sym__word] = STATE(1385), + [sym__soft_line_break] = STATE(1391), + [sym__text_base] = STATE(382), + [aux_sym__inline_base_repeat1] = STATE(382), + [sym__backslash_escape] = ACTIONS(4346), + [sym_entity_reference] = ACTIONS(4349), + [sym_numeric_character_reference] = ACTIONS(4349), + [anon_sym_LT] = ACTIONS(4352), + [anon_sym_GT] = ACTIONS(4355), + [anon_sym_BANG] = ACTIONS(4358), + [anon_sym_DQUOTE] = ACTIONS(4355), + [anon_sym_POUND] = ACTIONS(4355), + [anon_sym_DOLLAR] = ACTIONS(4355), + [anon_sym_PERCENT] = ACTIONS(4355), + [anon_sym_AMP] = ACTIONS(4352), + [anon_sym_SQUOTE] = ACTIONS(4355), + [anon_sym_STAR] = ACTIONS(4355), + [anon_sym_PLUS] = ACTIONS(4355), + [anon_sym_COMMA] = ACTIONS(4355), + [anon_sym_DASH] = ACTIONS(4352), + [anon_sym_DOT] = ACTIONS(4352), + [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(3601), + [anon_sym_BSLASH] = ACTIONS(4361), + [anon_sym_CARET] = ACTIONS(4352), + [anon_sym__] = ACTIONS(4355), + [anon_sym_BQUOTE] = ACTIONS(4355), + [anon_sym_LBRACE] = ACTIONS(4364), + [anon_sym_PIPE] = ACTIONS(4355), + [anon_sym_TILDE] = ACTIONS(4355), + [anon_sym_LPAREN] = ACTIONS(4355), + [anon_sym_RPAREN] = ACTIONS(4355), + [sym__newline_token] = ACTIONS(4367), + [aux_sym_insert_token1] = ACTIONS(4370), + [aux_sym_delete_token1] = ACTIONS(4373), + [aux_sym_highlight_token1] = ACTIONS(4376), + [aux_sym_edit_comment_token1] = ACTIONS(4379), + [anon_sym_CARET_LBRACK] = ACTIONS(4382), + [anon_sym_LBRACK_CARET] = ACTIONS(4385), + [sym_uri_autolink] = ACTIONS(4349), + [sym_email_autolink] = ACTIONS(4349), + [sym__whitespace_ge_2] = ACTIONS(4388), + [aux_sym__whitespace_token1] = ACTIONS(4391), + [sym__word_no_digit] = ACTIONS(4394), + [sym__digits] = ACTIONS(4394), + [anon_sym_DASH_DASH] = ACTIONS(4397), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4394), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4394), + [sym__code_span_start] = ACTIONS(4400), + [sym__emphasis_open_star] = ACTIONS(3645), + [sym__emphasis_open_underscore] = ACTIONS(3645), + [sym__emphasis_close_underscore] = ACTIONS(3645), + [sym__strikeout_open] = ACTIONS(4403), + [sym__latex_span_start] = ACTIONS(4406), + [sym__single_quote_open] = ACTIONS(4409), + [sym__double_quote_open] = ACTIONS(4412), + [sym__superscript_open] = ACTIONS(4415), + [sym__subscript_open] = ACTIONS(4418), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4421), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4424), + [sym__cite_author_in_text] = ACTIONS(4427), + [sym__cite_suppress_author] = ACTIONS(4430), + [sym__shortcode_open_escaped] = ACTIONS(4433), + [sym__shortcode_open] = ACTIONS(4436), + [sym__unclosed_span] = ACTIONS(4349), }, [STATE(383)] = { - [sym__qmd_attribute] = STATE(846), - [sym_raw_attribute] = STATE(846), - [sym_commonmark_attribute] = STATE(846), - [sym_language_attribute] = STATE(846), - [sym__backslash_escape] = ACTIONS(3647), - [sym_entity_reference] = ACTIONS(3647), - [sym_numeric_character_reference] = ACTIONS(3647), - [anon_sym_LT] = ACTIONS(3649), - [anon_sym_GT] = ACTIONS(3647), - [anon_sym_BANG] = ACTIONS(3647), - [anon_sym_DQUOTE] = ACTIONS(3647), - [anon_sym_POUND] = ACTIONS(3647), - [anon_sym_DOLLAR] = ACTIONS(3647), - [anon_sym_PERCENT] = ACTIONS(3647), - [anon_sym_AMP] = ACTIONS(3649), - [anon_sym_SQUOTE] = ACTIONS(3647), - [anon_sym_STAR] = ACTIONS(3647), - [anon_sym_PLUS] = ACTIONS(3647), - [anon_sym_COMMA] = ACTIONS(3647), - [anon_sym_DASH] = ACTIONS(3649), - [anon_sym_DOT] = ACTIONS(3649), - [anon_sym_SLASH] = ACTIONS(3647), - [anon_sym_COLON] = ACTIONS(3647), - [anon_sym_SEMI] = ACTIONS(3647), - [anon_sym_EQ] = ACTIONS(3647), - [anon_sym_QMARK] = ACTIONS(3647), - [anon_sym_LBRACK] = ACTIONS(3649), - [anon_sym_BSLASH] = ACTIONS(3649), - [anon_sym_CARET] = ACTIONS(3649), - [anon_sym__] = ACTIONS(3647), - [anon_sym_BQUOTE] = ACTIONS(3647), - [anon_sym_LBRACE] = ACTIONS(3717), - [anon_sym_PIPE] = ACTIONS(3647), - [anon_sym_TILDE] = ACTIONS(3647), - [anon_sym_LPAREN] = ACTIONS(3647), - [anon_sym_RPAREN] = ACTIONS(3647), - [sym__newline_token] = ACTIONS(3647), - [anon_sym_CARET_LBRACK] = ACTIONS(3647), - [anon_sym_LBRACK_CARET] = ACTIONS(3647), - [sym_uri_autolink] = ACTIONS(3647), - [sym_email_autolink] = ACTIONS(3647), - [sym__whitespace_ge_2] = ACTIONS(3647), - [aux_sym__whitespace_token1] = ACTIONS(3649), - [sym__word_no_digit] = ACTIONS(3647), - [sym__digits] = ACTIONS(3647), - [anon_sym_DASH_DASH] = ACTIONS(3649), - [anon_sym_DASH_DASH_DASH] = ACTIONS(3647), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3647), - [sym__code_span_start] = ACTIONS(3647), - [sym__emphasis_open_star] = ACTIONS(3647), - [sym__emphasis_open_underscore] = ACTIONS(3647), - [sym__strikeout_open] = ACTIONS(3647), - [sym__latex_span_start] = ACTIONS(3647), - [sym__single_quote_open] = ACTIONS(3647), - [sym__double_quote_open] = ACTIONS(3647), - [sym__superscript_open] = ACTIONS(3647), - [sym__subscript_open] = ACTIONS(3647), - [sym__subscript_close] = ACTIONS(3647), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3647), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3647), - [sym__cite_author_in_text] = ACTIONS(3647), - [sym__cite_suppress_author] = ACTIONS(3647), - [sym__shortcode_open_escaped] = ACTIONS(3647), - [sym__shortcode_open] = ACTIONS(3647), - [sym__unclosed_span] = ACTIONS(3647), + [sym_backslash_escape] = STATE(378), + [sym_commonmark_attribute] = STATE(378), + [sym_code_span] = STATE(378), + [sym_latex_span] = STATE(378), + [sym_insert] = STATE(378), + [sym_delete] = STATE(378), + [sym_highlight] = STATE(378), + [sym_edit_comment] = STATE(378), + [sym_superscript] = STATE(378), + [sym_subscript] = STATE(378), + [sym_strikeout] = STATE(378), + [sym_quoted_span] = STATE(378), + [sym_inline_note] = STATE(378), + [sym_citation] = STATE(378), + [sym_shortcode_escaped] = STATE(378), + [sym_shortcode] = STATE(378), + [sym_note_reference] = STATE(378), + [sym_image] = STATE(378), + [sym__image_inline_link] = STATE(1263), + [sym__image_description] = STATE(2300), + [sym__image_description_non_empty] = STATE(2300), + [sym_hard_line_break] = STATE(378), + [sym__whitespace] = STATE(1259), + [sym__word] = STATE(1259), + [sym__soft_line_break] = STATE(1264), + [sym__text_base] = STATE(378), + [aux_sym__inline_base_repeat1] = STATE(378), + [sym__backslash_escape] = ACTIONS(637), + [sym_entity_reference] = ACTIONS(4439), + [sym_numeric_character_reference] = ACTIONS(4439), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_GT] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(645), + [anon_sym_DQUOTE] = ACTIONS(643), + [anon_sym_POUND] = ACTIONS(643), + [anon_sym_DOLLAR] = ACTIONS(643), + [anon_sym_PERCENT] = ACTIONS(643), + [anon_sym_AMP] = ACTIONS(641), + [anon_sym_SQUOTE] = ACTIONS(643), + [anon_sym_STAR] = ACTIONS(643), + [anon_sym_PLUS] = ACTIONS(643), + [anon_sym_COMMA] = ACTIONS(643), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_DOT] = ACTIONS(641), + [anon_sym_SLASH] = ACTIONS(643), + [anon_sym_COLON] = ACTIONS(643), + [anon_sym_SEMI] = ACTIONS(643), + [anon_sym_EQ] = ACTIONS(643), + [anon_sym_QMARK] = ACTIONS(643), + [anon_sym_LBRACK] = ACTIONS(3578), + [anon_sym_BSLASH] = ACTIONS(649), + [anon_sym_CARET] = ACTIONS(641), + [anon_sym__] = ACTIONS(643), + [anon_sym_BQUOTE] = ACTIONS(643), + [anon_sym_LBRACE] = ACTIONS(651), + [anon_sym_PIPE] = ACTIONS(643), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_LPAREN] = ACTIONS(643), + [anon_sym_RPAREN] = ACTIONS(643), + [sym__newline_token] = ACTIONS(653), + [aux_sym_insert_token1] = ACTIONS(655), + [aux_sym_delete_token1] = ACTIONS(657), + [aux_sym_highlight_token1] = ACTIONS(659), + [aux_sym_edit_comment_token1] = ACTIONS(661), + [anon_sym_CARET_LBRACK] = ACTIONS(663), + [anon_sym_LBRACK_CARET] = ACTIONS(665), + [sym_uri_autolink] = ACTIONS(4439), + [sym_email_autolink] = ACTIONS(4439), + [sym__whitespace_ge_2] = ACTIONS(667), + [aux_sym__whitespace_token1] = ACTIONS(669), + [sym__word_no_digit] = ACTIONS(671), + [sym__digits] = ACTIONS(671), + [anon_sym_DASH_DASH] = ACTIONS(673), + [anon_sym_DASH_DASH_DASH] = ACTIONS(671), + [anon_sym_DOT_DOT_DOT] = ACTIONS(671), + [sym__code_span_start] = ACTIONS(675), + [sym__emphasis_open_star] = ACTIONS(3580), + [sym__emphasis_open_underscore] = ACTIONS(3580), + [sym__strikeout_open] = ACTIONS(681), + [sym__latex_span_start] = ACTIONS(683), + [sym__single_quote_open] = ACTIONS(685), + [sym__double_quote_open] = ACTIONS(687), + [sym__double_quote_close] = ACTIONS(3580), + [sym__superscript_open] = ACTIONS(691), + [sym__subscript_open] = ACTIONS(693), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(695), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(697), + [sym__cite_author_in_text] = ACTIONS(699), + [sym__cite_suppress_author] = ACTIONS(701), + [sym__shortcode_open_escaped] = ACTIONS(703), + [sym__shortcode_open] = ACTIONS(705), + [sym__unclosed_span] = ACTIONS(4439), }, [STATE(384)] = { - [sym__qmd_attribute] = STATE(848), - [sym_raw_attribute] = STATE(848), - [sym_commonmark_attribute] = STATE(848), - [sym_language_attribute] = STATE(848), - [sym__backslash_escape] = ACTIONS(3651), - [sym_entity_reference] = ACTIONS(3651), - [sym_numeric_character_reference] = ACTIONS(3651), - [anon_sym_LT] = ACTIONS(3653), - [anon_sym_GT] = ACTIONS(3651), - [anon_sym_BANG] = ACTIONS(3651), - [anon_sym_DQUOTE] = ACTIONS(3651), - [anon_sym_POUND] = ACTIONS(3651), - [anon_sym_DOLLAR] = ACTIONS(3651), - [anon_sym_PERCENT] = ACTIONS(3651), - [anon_sym_AMP] = ACTIONS(3653), - [anon_sym_SQUOTE] = ACTIONS(3651), - [anon_sym_STAR] = ACTIONS(3651), - [anon_sym_PLUS] = ACTIONS(3651), - [anon_sym_COMMA] = ACTIONS(3651), - [anon_sym_DASH] = ACTIONS(3653), - [anon_sym_DOT] = ACTIONS(3653), - [anon_sym_SLASH] = ACTIONS(3651), - [anon_sym_COLON] = ACTIONS(3651), - [anon_sym_SEMI] = ACTIONS(3651), - [anon_sym_EQ] = ACTIONS(3651), - [anon_sym_QMARK] = ACTIONS(3651), - [anon_sym_LBRACK] = ACTIONS(3653), - [anon_sym_BSLASH] = ACTIONS(3653), - [anon_sym_CARET] = ACTIONS(3653), - [anon_sym__] = ACTIONS(3651), - [anon_sym_BQUOTE] = ACTIONS(3651), - [anon_sym_LBRACE] = ACTIONS(3717), - [anon_sym_PIPE] = ACTIONS(3651), - [anon_sym_TILDE] = ACTIONS(3651), - [anon_sym_LPAREN] = ACTIONS(3651), - [anon_sym_RPAREN] = ACTIONS(3651), - [sym__newline_token] = ACTIONS(3651), - [anon_sym_CARET_LBRACK] = ACTIONS(3651), - [anon_sym_LBRACK_CARET] = ACTIONS(3651), - [sym_uri_autolink] = ACTIONS(3651), - [sym_email_autolink] = ACTIONS(3651), - [sym__whitespace_ge_2] = ACTIONS(3651), - [aux_sym__whitespace_token1] = ACTIONS(3653), - [sym__word_no_digit] = ACTIONS(3651), - [sym__digits] = ACTIONS(3651), - [anon_sym_DASH_DASH] = ACTIONS(3653), - [anon_sym_DASH_DASH_DASH] = ACTIONS(3651), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3651), - [sym__code_span_start] = ACTIONS(3651), - [sym__emphasis_open_star] = ACTIONS(3651), - [sym__emphasis_open_underscore] = ACTIONS(3651), - [sym__strikeout_open] = ACTIONS(3651), - [sym__latex_span_start] = ACTIONS(3651), - [sym__single_quote_open] = ACTIONS(3651), - [sym__double_quote_open] = ACTIONS(3651), - [sym__superscript_open] = ACTIONS(3651), - [sym__subscript_open] = ACTIONS(3651), - [sym__subscript_close] = ACTIONS(3651), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3651), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3651), - [sym__cite_author_in_text] = ACTIONS(3651), - [sym__cite_suppress_author] = ACTIONS(3651), - [sym__shortcode_open_escaped] = ACTIONS(3651), - [sym__shortcode_open] = ACTIONS(3651), - [sym__unclosed_span] = ACTIONS(3651), + [sym_backslash_escape] = STATE(384), + [sym_commonmark_attribute] = STATE(384), + [sym_code_span] = STATE(384), + [sym_latex_span] = STATE(384), + [sym_insert] = STATE(384), + [sym_delete] = STATE(384), + [sym_highlight] = STATE(384), + [sym_edit_comment] = STATE(384), + [sym_superscript] = STATE(384), + [sym_subscript] = STATE(384), + [sym_strikeout] = STATE(384), + [sym_quoted_span] = STATE(384), + [sym_inline_note] = STATE(384), + [sym_citation] = STATE(384), + [sym_shortcode_escaped] = STATE(384), + [sym_shortcode] = STATE(384), + [sym_note_reference] = STATE(384), + [sym_image] = STATE(384), + [sym__image_inline_link] = STATE(1265), + [sym__image_description] = STATE(2331), + [sym__image_description_non_empty] = STATE(2331), + [sym_hard_line_break] = STATE(384), + [sym__whitespace] = STATE(1262), + [sym__word] = STATE(1262), + [sym__soft_line_break] = STATE(1267), + [sym__text_base] = STATE(384), + [aux_sym__inline_base_repeat1] = STATE(384), + [sym__backslash_escape] = ACTIONS(4441), + [sym_entity_reference] = ACTIONS(4444), + [sym_numeric_character_reference] = ACTIONS(4444), + [anon_sym_LT] = ACTIONS(4447), + [anon_sym_GT] = ACTIONS(4450), + [anon_sym_BANG] = ACTIONS(4453), + [anon_sym_DQUOTE] = ACTIONS(4450), + [anon_sym_POUND] = ACTIONS(4450), + [anon_sym_DOLLAR] = ACTIONS(4450), + [anon_sym_PERCENT] = ACTIONS(4450), + [anon_sym_AMP] = ACTIONS(4447), + [anon_sym_SQUOTE] = ACTIONS(4450), + [anon_sym_STAR] = ACTIONS(4450), + [anon_sym_PLUS] = ACTIONS(4450), + [anon_sym_COMMA] = ACTIONS(4450), + [anon_sym_DASH] = ACTIONS(4447), + [anon_sym_DOT] = ACTIONS(4447), + [anon_sym_SLASH] = ACTIONS(4450), + [anon_sym_COLON] = ACTIONS(4450), + [anon_sym_SEMI] = ACTIONS(4450), + [anon_sym_EQ] = ACTIONS(4450), + [anon_sym_QMARK] = ACTIONS(4450), + [anon_sym_LBRACK] = ACTIONS(3601), + [anon_sym_BSLASH] = ACTIONS(4456), + [anon_sym_CARET] = ACTIONS(4447), + [anon_sym__] = ACTIONS(4450), + [anon_sym_BQUOTE] = ACTIONS(4450), + [anon_sym_LBRACE] = ACTIONS(4459), + [anon_sym_PIPE] = ACTIONS(4450), + [anon_sym_TILDE] = ACTIONS(4450), + [anon_sym_LPAREN] = ACTIONS(4450), + [anon_sym_RPAREN] = ACTIONS(4450), + [sym__newline_token] = ACTIONS(4462), + [aux_sym_insert_token1] = ACTIONS(4465), + [aux_sym_delete_token1] = ACTIONS(4468), + [aux_sym_highlight_token1] = ACTIONS(4471), + [aux_sym_edit_comment_token1] = ACTIONS(4474), + [anon_sym_CARET_LBRACK] = ACTIONS(4477), + [anon_sym_LBRACK_CARET] = ACTIONS(4480), + [sym_uri_autolink] = ACTIONS(4444), + [sym_email_autolink] = ACTIONS(4444), + [sym__whitespace_ge_2] = ACTIONS(4483), + [aux_sym__whitespace_token1] = ACTIONS(4486), + [sym__word_no_digit] = ACTIONS(4489), + [sym__digits] = ACTIONS(4489), + [anon_sym_DASH_DASH] = ACTIONS(4492), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4489), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4489), + [sym__code_span_start] = ACTIONS(4495), + [sym__emphasis_open_star] = ACTIONS(3645), + [sym__emphasis_open_underscore] = ACTIONS(3645), + [sym__emphasis_close_star] = ACTIONS(3645), + [sym__strikeout_open] = ACTIONS(4498), + [sym__latex_span_start] = ACTIONS(4501), + [sym__single_quote_open] = ACTIONS(4504), + [sym__double_quote_open] = ACTIONS(4507), + [sym__superscript_open] = ACTIONS(4510), + [sym__subscript_open] = ACTIONS(4513), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4516), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4519), + [sym__cite_author_in_text] = ACTIONS(4522), + [sym__cite_suppress_author] = ACTIONS(4525), + [sym__shortcode_open_escaped] = ACTIONS(4528), + [sym__shortcode_open] = ACTIONS(4531), + [sym__unclosed_span] = ACTIONS(4444), }, [STATE(385)] = { - [sym__qmd_attribute] = STATE(1096), - [sym_raw_attribute] = STATE(1096), - [sym_commonmark_attribute] = STATE(1096), - [sym_language_attribute] = STATE(1096), - [sym__backslash_escape] = ACTIONS(3647), - [sym_entity_reference] = ACTIONS(3647), - [sym_numeric_character_reference] = ACTIONS(3647), - [anon_sym_LT] = ACTIONS(3649), - [anon_sym_GT] = ACTIONS(3647), - [anon_sym_BANG] = ACTIONS(3647), - [anon_sym_DQUOTE] = ACTIONS(3647), - [anon_sym_POUND] = ACTIONS(3647), - [anon_sym_DOLLAR] = ACTIONS(3647), - [anon_sym_PERCENT] = ACTIONS(3647), - [anon_sym_AMP] = ACTIONS(3649), - [anon_sym_SQUOTE] = ACTIONS(3647), - [anon_sym_STAR] = ACTIONS(3647), - [anon_sym_PLUS] = ACTIONS(3647), - [anon_sym_COMMA] = ACTIONS(3647), - [anon_sym_DASH] = ACTIONS(3649), - [anon_sym_DOT] = ACTIONS(3649), - [anon_sym_SLASH] = ACTIONS(3647), - [anon_sym_COLON] = ACTIONS(3647), - [anon_sym_SEMI] = ACTIONS(3647), - [anon_sym_EQ] = ACTIONS(3647), - [anon_sym_QMARK] = ACTIONS(3647), - [anon_sym_LBRACK] = ACTIONS(3649), - [anon_sym_BSLASH] = ACTIONS(3649), - [anon_sym_CARET] = ACTIONS(3649), - [anon_sym__] = ACTIONS(3647), - [anon_sym_BQUOTE] = ACTIONS(3647), - [anon_sym_LBRACE] = ACTIONS(3721), - [anon_sym_PIPE] = ACTIONS(3647), - [anon_sym_TILDE] = ACTIONS(3647), - [anon_sym_LPAREN] = ACTIONS(3647), - [anon_sym_RPAREN] = ACTIONS(3647), - [sym__newline_token] = ACTIONS(3647), - [anon_sym_CARET_LBRACK] = ACTIONS(3647), - [anon_sym_LBRACK_CARET] = ACTIONS(3647), - [sym_uri_autolink] = ACTIONS(3647), - [sym_email_autolink] = ACTIONS(3647), - [sym__whitespace_ge_2] = ACTIONS(3647), - [aux_sym__whitespace_token1] = ACTIONS(3649), - [sym__word_no_digit] = ACTIONS(3647), - [sym__digits] = ACTIONS(3647), - [anon_sym_DASH_DASH] = ACTIONS(3649), - [anon_sym_DASH_DASH_DASH] = ACTIONS(3647), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3647), - [sym__code_span_start] = ACTIONS(3647), - [sym__emphasis_open_star] = ACTIONS(3647), - [sym__emphasis_open_underscore] = ACTIONS(3647), - [sym__strikeout_open] = ACTIONS(3647), - [sym__strikeout_close] = ACTIONS(3647), - [sym__latex_span_start] = ACTIONS(3647), - [sym__single_quote_open] = ACTIONS(3647), - [sym__double_quote_open] = ACTIONS(3647), - [sym__superscript_open] = ACTIONS(3647), - [sym__subscript_open] = ACTIONS(3647), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3647), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3647), - [sym__cite_author_in_text] = ACTIONS(3647), - [sym__cite_suppress_author] = ACTIONS(3647), - [sym__shortcode_open_escaped] = ACTIONS(3647), - [sym__shortcode_open] = ACTIONS(3647), - [sym__unclosed_span] = ACTIONS(3647), + [sym__qmd_attribute] = STATE(1006), + [sym_raw_attribute] = STATE(1006), + [sym_commonmark_attribute] = STATE(1006), + [sym_language_attribute] = STATE(1006), + [sym__backslash_escape] = ACTIONS(4534), + [sym_entity_reference] = ACTIONS(4534), + [sym_numeric_character_reference] = ACTIONS(4534), + [anon_sym_LT] = ACTIONS(4536), + [anon_sym_GT] = ACTIONS(4534), + [anon_sym_BANG] = ACTIONS(4534), + [anon_sym_DQUOTE] = ACTIONS(4534), + [anon_sym_POUND] = ACTIONS(4534), + [anon_sym_DOLLAR] = ACTIONS(4534), + [anon_sym_PERCENT] = ACTIONS(4534), + [anon_sym_AMP] = ACTIONS(4536), + [anon_sym_SQUOTE] = ACTIONS(4534), + [anon_sym_STAR] = ACTIONS(4534), + [anon_sym_PLUS] = ACTIONS(4534), + [anon_sym_COMMA] = ACTIONS(4534), + [anon_sym_DASH] = ACTIONS(4536), + [anon_sym_DOT] = ACTIONS(4536), + [anon_sym_SLASH] = ACTIONS(4534), + [anon_sym_COLON] = ACTIONS(4534), + [anon_sym_SEMI] = ACTIONS(4534), + [anon_sym_EQ] = ACTIONS(4534), + [anon_sym_QMARK] = ACTIONS(4534), + [anon_sym_LBRACK] = ACTIONS(4536), + [anon_sym_BSLASH] = ACTIONS(4536), + [anon_sym_CARET] = ACTIONS(4536), + [anon_sym__] = ACTIONS(4534), + [anon_sym_BQUOTE] = ACTIONS(4534), + [anon_sym_LBRACE] = ACTIONS(4538), + [anon_sym_PIPE] = ACTIONS(4534), + [anon_sym_TILDE] = ACTIONS(4534), + [anon_sym_LPAREN] = ACTIONS(4534), + [anon_sym_RPAREN] = ACTIONS(4534), + [sym__newline_token] = ACTIONS(4534), + [aux_sym_insert_token1] = ACTIONS(4534), + [aux_sym_insert_token2] = ACTIONS(4534), + [aux_sym_delete_token1] = ACTIONS(4534), + [aux_sym_highlight_token1] = ACTIONS(4534), + [aux_sym_edit_comment_token1] = ACTIONS(4534), + [anon_sym_CARET_LBRACK] = ACTIONS(4534), + [anon_sym_LBRACK_CARET] = ACTIONS(4534), + [sym_uri_autolink] = ACTIONS(4534), + [sym_email_autolink] = ACTIONS(4534), + [sym__whitespace_ge_2] = ACTIONS(4536), + [aux_sym__whitespace_token1] = ACTIONS(4536), + [sym__word_no_digit] = ACTIONS(4534), + [sym__digits] = ACTIONS(4534), + [anon_sym_DASH_DASH] = ACTIONS(4536), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4534), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4534), + [sym__code_span_start] = ACTIONS(4534), + [sym__emphasis_open_star] = ACTIONS(4534), + [sym__emphasis_open_underscore] = ACTIONS(4534), + [sym__strikeout_open] = ACTIONS(4534), + [sym__latex_span_start] = ACTIONS(4534), + [sym__single_quote_open] = ACTIONS(4534), + [sym__double_quote_open] = ACTIONS(4534), + [sym__superscript_open] = ACTIONS(4534), + [sym__subscript_open] = ACTIONS(4534), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4534), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4534), + [sym__cite_author_in_text] = ACTIONS(4534), + [sym__cite_suppress_author] = ACTIONS(4534), + [sym__shortcode_open_escaped] = ACTIONS(4534), + [sym__shortcode_open] = ACTIONS(4534), + [sym__unclosed_span] = ACTIONS(4534), }, [STATE(386)] = { - [sym__qmd_attribute] = STATE(1097), - [sym_raw_attribute] = STATE(1097), - [sym_commonmark_attribute] = STATE(1097), - [sym_language_attribute] = STATE(1097), - [sym__backslash_escape] = ACTIONS(3651), - [sym_entity_reference] = ACTIONS(3651), - [sym_numeric_character_reference] = ACTIONS(3651), - [anon_sym_LT] = ACTIONS(3653), - [anon_sym_GT] = ACTIONS(3651), - [anon_sym_BANG] = ACTIONS(3651), - [anon_sym_DQUOTE] = ACTIONS(3651), - [anon_sym_POUND] = ACTIONS(3651), - [anon_sym_DOLLAR] = ACTIONS(3651), - [anon_sym_PERCENT] = ACTIONS(3651), - [anon_sym_AMP] = ACTIONS(3653), - [anon_sym_SQUOTE] = ACTIONS(3651), - [anon_sym_STAR] = ACTIONS(3651), - [anon_sym_PLUS] = ACTIONS(3651), - [anon_sym_COMMA] = ACTIONS(3651), - [anon_sym_DASH] = ACTIONS(3653), - [anon_sym_DOT] = ACTIONS(3653), - [anon_sym_SLASH] = ACTIONS(3651), - [anon_sym_COLON] = ACTIONS(3651), - [anon_sym_SEMI] = ACTIONS(3651), - [anon_sym_EQ] = ACTIONS(3651), - [anon_sym_QMARK] = ACTIONS(3651), - [anon_sym_LBRACK] = ACTIONS(3653), - [anon_sym_BSLASH] = ACTIONS(3653), - [anon_sym_CARET] = ACTIONS(3653), - [anon_sym__] = ACTIONS(3651), - [anon_sym_BQUOTE] = ACTIONS(3651), - [anon_sym_LBRACE] = ACTIONS(3721), - [anon_sym_PIPE] = ACTIONS(3651), - [anon_sym_TILDE] = ACTIONS(3651), - [anon_sym_LPAREN] = ACTIONS(3651), - [anon_sym_RPAREN] = ACTIONS(3651), - [sym__newline_token] = ACTIONS(3651), - [anon_sym_CARET_LBRACK] = ACTIONS(3651), - [anon_sym_LBRACK_CARET] = ACTIONS(3651), - [sym_uri_autolink] = ACTIONS(3651), - [sym_email_autolink] = ACTIONS(3651), - [sym__whitespace_ge_2] = ACTIONS(3651), - [aux_sym__whitespace_token1] = ACTIONS(3653), - [sym__word_no_digit] = ACTIONS(3651), - [sym__digits] = ACTIONS(3651), - [anon_sym_DASH_DASH] = ACTIONS(3653), - [anon_sym_DASH_DASH_DASH] = ACTIONS(3651), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3651), - [sym__code_span_start] = ACTIONS(3651), - [sym__emphasis_open_star] = ACTIONS(3651), - [sym__emphasis_open_underscore] = ACTIONS(3651), - [sym__strikeout_open] = ACTIONS(3651), - [sym__strikeout_close] = ACTIONS(3651), - [sym__latex_span_start] = ACTIONS(3651), - [sym__single_quote_open] = ACTIONS(3651), - [sym__double_quote_open] = ACTIONS(3651), - [sym__superscript_open] = ACTIONS(3651), - [sym__subscript_open] = ACTIONS(3651), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3651), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3651), - [sym__cite_author_in_text] = ACTIONS(3651), - [sym__cite_suppress_author] = ACTIONS(3651), - [sym__shortcode_open_escaped] = ACTIONS(3651), - [sym__shortcode_open] = ACTIONS(3651), - [sym__unclosed_span] = ACTIONS(3651), + [sym__qmd_attribute] = STATE(1200), + [sym_raw_attribute] = STATE(1200), + [sym_commonmark_attribute] = STATE(1200), + [sym_language_attribute] = STATE(1200), + [sym__backslash_escape] = ACTIONS(4540), + [sym_entity_reference] = ACTIONS(4540), + [sym_numeric_character_reference] = ACTIONS(4540), + [anon_sym_LT] = ACTIONS(4542), + [anon_sym_GT] = ACTIONS(4540), + [anon_sym_BANG] = ACTIONS(4540), + [anon_sym_DQUOTE] = ACTIONS(4540), + [anon_sym_POUND] = ACTIONS(4540), + [anon_sym_DOLLAR] = ACTIONS(4540), + [anon_sym_PERCENT] = ACTIONS(4540), + [anon_sym_AMP] = ACTIONS(4542), + [anon_sym_SQUOTE] = ACTIONS(4540), + [anon_sym_STAR] = ACTIONS(4540), + [anon_sym_PLUS] = ACTIONS(4540), + [anon_sym_COMMA] = ACTIONS(4540), + [anon_sym_DASH] = ACTIONS(4542), + [anon_sym_DOT] = ACTIONS(4542), + [anon_sym_SLASH] = ACTIONS(4540), + [anon_sym_COLON] = ACTIONS(4540), + [anon_sym_SEMI] = ACTIONS(4540), + [anon_sym_EQ] = ACTIONS(4540), + [anon_sym_QMARK] = ACTIONS(4540), + [anon_sym_LBRACK] = ACTIONS(4542), + [anon_sym_BSLASH] = ACTIONS(4542), + [anon_sym_CARET] = ACTIONS(4542), + [anon_sym__] = ACTIONS(4540), + [anon_sym_BQUOTE] = ACTIONS(4540), + [anon_sym_LBRACE] = ACTIONS(4544), + [anon_sym_PIPE] = ACTIONS(4540), + [anon_sym_TILDE] = ACTIONS(4540), + [anon_sym_LPAREN] = ACTIONS(4540), + [anon_sym_RPAREN] = ACTIONS(4540), + [sym__newline_token] = ACTIONS(4540), + [aux_sym_insert_token1] = ACTIONS(4540), + [aux_sym_delete_token1] = ACTIONS(4540), + [aux_sym_highlight_token1] = ACTIONS(4540), + [aux_sym_edit_comment_token1] = ACTIONS(4540), + [anon_sym_CARET_LBRACK] = ACTIONS(4540), + [anon_sym_LBRACK_CARET] = ACTIONS(4540), + [sym_uri_autolink] = ACTIONS(4540), + [sym_email_autolink] = ACTIONS(4540), + [sym__whitespace_ge_2] = ACTIONS(4540), + [aux_sym__whitespace_token1] = ACTIONS(4542), + [sym__word_no_digit] = ACTIONS(4540), + [sym__digits] = ACTIONS(4540), + [anon_sym_DASH_DASH] = ACTIONS(4542), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4540), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4540), + [sym__code_span_start] = ACTIONS(4540), + [sym__emphasis_open_star] = ACTIONS(4540), + [sym__emphasis_open_underscore] = ACTIONS(4540), + [sym__strikeout_open] = ACTIONS(4540), + [sym__latex_span_start] = ACTIONS(4540), + [sym__single_quote_open] = ACTIONS(4540), + [sym__single_quote_close] = ACTIONS(4540), + [sym__double_quote_open] = ACTIONS(4540), + [sym__superscript_open] = ACTIONS(4540), + [sym__subscript_open] = ACTIONS(4540), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4540), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4540), + [sym__cite_author_in_text] = ACTIONS(4540), + [sym__cite_suppress_author] = ACTIONS(4540), + [sym__shortcode_open_escaped] = ACTIONS(4540), + [sym__shortcode_open] = ACTIONS(4540), + [sym__unclosed_span] = ACTIONS(4540), }, [STATE(387)] = { - [sym__qmd_attribute] = STATE(1103), - [sym_raw_attribute] = STATE(1103), - [sym_commonmark_attribute] = STATE(1103), - [sym_language_attribute] = STATE(1103), - [sym__backslash_escape] = ACTIONS(3655), - [sym_entity_reference] = ACTIONS(3655), - [sym_numeric_character_reference] = ACTIONS(3655), - [anon_sym_LT] = ACTIONS(3657), - [anon_sym_GT] = ACTIONS(3655), - [anon_sym_BANG] = ACTIONS(3655), - [anon_sym_DQUOTE] = ACTIONS(3655), - [anon_sym_POUND] = ACTIONS(3655), - [anon_sym_DOLLAR] = ACTIONS(3655), - [anon_sym_PERCENT] = ACTIONS(3655), - [anon_sym_AMP] = ACTIONS(3657), - [anon_sym_SQUOTE] = ACTIONS(3655), - [anon_sym_STAR] = ACTIONS(3655), - [anon_sym_PLUS] = ACTIONS(3655), - [anon_sym_COMMA] = ACTIONS(3655), - [anon_sym_DASH] = ACTIONS(3657), - [anon_sym_DOT] = ACTIONS(3657), - [anon_sym_SLASH] = ACTIONS(3655), - [anon_sym_COLON] = ACTIONS(3655), - [anon_sym_SEMI] = ACTIONS(3655), - [anon_sym_EQ] = ACTIONS(3655), - [anon_sym_QMARK] = ACTIONS(3655), - [anon_sym_LBRACK] = ACTIONS(3657), - [anon_sym_BSLASH] = ACTIONS(3657), - [anon_sym_CARET] = ACTIONS(3657), - [anon_sym__] = ACTIONS(3655), - [anon_sym_BQUOTE] = ACTIONS(3655), - [anon_sym_LBRACE] = ACTIONS(3721), - [anon_sym_PIPE] = ACTIONS(3655), - [anon_sym_TILDE] = ACTIONS(3655), - [anon_sym_LPAREN] = ACTIONS(3655), - [anon_sym_RPAREN] = ACTIONS(3655), - [sym__newline_token] = ACTIONS(3655), - [anon_sym_CARET_LBRACK] = ACTIONS(3655), - [anon_sym_LBRACK_CARET] = ACTIONS(3655), - [sym_uri_autolink] = ACTIONS(3655), - [sym_email_autolink] = ACTIONS(3655), - [sym__whitespace_ge_2] = ACTIONS(3655), - [aux_sym__whitespace_token1] = ACTIONS(3657), - [sym__word_no_digit] = ACTIONS(3655), - [sym__digits] = ACTIONS(3655), - [anon_sym_DASH_DASH] = ACTIONS(3657), - [anon_sym_DASH_DASH_DASH] = ACTIONS(3655), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3655), - [sym__code_span_start] = ACTIONS(3655), - [sym__emphasis_open_star] = ACTIONS(3655), - [sym__emphasis_open_underscore] = ACTIONS(3655), - [sym__strikeout_open] = ACTIONS(3655), - [sym__strikeout_close] = ACTIONS(3655), - [sym__latex_span_start] = ACTIONS(3655), - [sym__single_quote_open] = ACTIONS(3655), - [sym__double_quote_open] = ACTIONS(3655), - [sym__superscript_open] = ACTIONS(3655), - [sym__subscript_open] = ACTIONS(3655), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3655), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3655), - [sym__cite_author_in_text] = ACTIONS(3655), - [sym__cite_suppress_author] = ACTIONS(3655), - [sym__shortcode_open_escaped] = ACTIONS(3655), - [sym__shortcode_open] = ACTIONS(3655), - [sym__unclosed_span] = ACTIONS(3655), + [sym__qmd_attribute] = STATE(1209), + [sym_raw_attribute] = STATE(1209), + [sym_commonmark_attribute] = STATE(1209), + [sym_language_attribute] = STATE(1209), + [sym__backslash_escape] = ACTIONS(4534), + [sym_entity_reference] = ACTIONS(4534), + [sym_numeric_character_reference] = ACTIONS(4534), + [anon_sym_LT] = ACTIONS(4536), + [anon_sym_GT] = ACTIONS(4534), + [anon_sym_BANG] = ACTIONS(4534), + [anon_sym_DQUOTE] = ACTIONS(4534), + [anon_sym_POUND] = ACTIONS(4534), + [anon_sym_DOLLAR] = ACTIONS(4534), + [anon_sym_PERCENT] = ACTIONS(4534), + [anon_sym_AMP] = ACTIONS(4536), + [anon_sym_SQUOTE] = ACTIONS(4534), + [anon_sym_STAR] = ACTIONS(4534), + [anon_sym_PLUS] = ACTIONS(4534), + [anon_sym_COMMA] = ACTIONS(4534), + [anon_sym_DASH] = ACTIONS(4536), + [anon_sym_DOT] = ACTIONS(4536), + [anon_sym_SLASH] = ACTIONS(4534), + [anon_sym_COLON] = ACTIONS(4534), + [anon_sym_SEMI] = ACTIONS(4534), + [anon_sym_EQ] = ACTIONS(4534), + [anon_sym_QMARK] = ACTIONS(4534), + [anon_sym_LBRACK] = ACTIONS(4536), + [anon_sym_BSLASH] = ACTIONS(4536), + [anon_sym_CARET] = ACTIONS(4536), + [anon_sym__] = ACTIONS(4534), + [anon_sym_BQUOTE] = ACTIONS(4534), + [anon_sym_LBRACE] = ACTIONS(4544), + [anon_sym_PIPE] = ACTIONS(4534), + [anon_sym_TILDE] = ACTIONS(4534), + [anon_sym_LPAREN] = ACTIONS(4534), + [anon_sym_RPAREN] = ACTIONS(4534), + [sym__newline_token] = ACTIONS(4534), + [aux_sym_insert_token1] = ACTIONS(4534), + [aux_sym_delete_token1] = ACTIONS(4534), + [aux_sym_highlight_token1] = ACTIONS(4534), + [aux_sym_edit_comment_token1] = ACTIONS(4534), + [anon_sym_CARET_LBRACK] = ACTIONS(4534), + [anon_sym_LBRACK_CARET] = ACTIONS(4534), + [sym_uri_autolink] = ACTIONS(4534), + [sym_email_autolink] = ACTIONS(4534), + [sym__whitespace_ge_2] = ACTIONS(4534), + [aux_sym__whitespace_token1] = ACTIONS(4536), + [sym__word_no_digit] = ACTIONS(4534), + [sym__digits] = ACTIONS(4534), + [anon_sym_DASH_DASH] = ACTIONS(4536), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4534), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4534), + [sym__code_span_start] = ACTIONS(4534), + [sym__emphasis_open_star] = ACTIONS(4534), + [sym__emphasis_open_underscore] = ACTIONS(4534), + [sym__strikeout_open] = ACTIONS(4534), + [sym__latex_span_start] = ACTIONS(4534), + [sym__single_quote_open] = ACTIONS(4534), + [sym__single_quote_close] = ACTIONS(4534), + [sym__double_quote_open] = ACTIONS(4534), + [sym__superscript_open] = ACTIONS(4534), + [sym__subscript_open] = ACTIONS(4534), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4534), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4534), + [sym__cite_author_in_text] = ACTIONS(4534), + [sym__cite_suppress_author] = ACTIONS(4534), + [sym__shortcode_open_escaped] = ACTIONS(4534), + [sym__shortcode_open] = ACTIONS(4534), + [sym__unclosed_span] = ACTIONS(4534), }, [STATE(388)] = { - [sym__qmd_attribute] = STATE(1105), - [sym_raw_attribute] = STATE(1105), - [sym_commonmark_attribute] = STATE(1105), - [sym_language_attribute] = STATE(1105), - [sym__backslash_escape] = ACTIONS(3659), - [sym_entity_reference] = ACTIONS(3659), - [sym_numeric_character_reference] = ACTIONS(3659), - [anon_sym_LT] = ACTIONS(3661), - [anon_sym_GT] = ACTIONS(3659), - [anon_sym_BANG] = ACTIONS(3659), - [anon_sym_DQUOTE] = ACTIONS(3659), - [anon_sym_POUND] = ACTIONS(3659), - [anon_sym_DOLLAR] = ACTIONS(3659), - [anon_sym_PERCENT] = ACTIONS(3659), - [anon_sym_AMP] = ACTIONS(3661), - [anon_sym_SQUOTE] = ACTIONS(3659), - [anon_sym_STAR] = ACTIONS(3659), - [anon_sym_PLUS] = ACTIONS(3659), - [anon_sym_COMMA] = ACTIONS(3659), - [anon_sym_DASH] = ACTIONS(3661), - [anon_sym_DOT] = ACTIONS(3661), - [anon_sym_SLASH] = ACTIONS(3659), - [anon_sym_COLON] = ACTIONS(3659), - [anon_sym_SEMI] = ACTIONS(3659), - [anon_sym_EQ] = ACTIONS(3659), - [anon_sym_QMARK] = ACTIONS(3659), - [anon_sym_LBRACK] = ACTIONS(3661), - [anon_sym_BSLASH] = ACTIONS(3661), - [anon_sym_CARET] = ACTIONS(3661), - [anon_sym__] = ACTIONS(3659), - [anon_sym_BQUOTE] = ACTIONS(3659), - [anon_sym_LBRACE] = ACTIONS(3721), - [anon_sym_PIPE] = ACTIONS(3659), - [anon_sym_TILDE] = ACTIONS(3659), - [anon_sym_LPAREN] = ACTIONS(3659), - [anon_sym_RPAREN] = ACTIONS(3659), - [sym__newline_token] = ACTIONS(3659), - [anon_sym_CARET_LBRACK] = ACTIONS(3659), - [anon_sym_LBRACK_CARET] = ACTIONS(3659), - [sym_uri_autolink] = ACTIONS(3659), - [sym_email_autolink] = ACTIONS(3659), - [sym__whitespace_ge_2] = ACTIONS(3659), - [aux_sym__whitespace_token1] = ACTIONS(3661), - [sym__word_no_digit] = ACTIONS(3659), - [sym__digits] = ACTIONS(3659), - [anon_sym_DASH_DASH] = ACTIONS(3661), - [anon_sym_DASH_DASH_DASH] = ACTIONS(3659), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3659), - [sym__code_span_start] = ACTIONS(3659), - [sym__emphasis_open_star] = ACTIONS(3659), - [sym__emphasis_open_underscore] = ACTIONS(3659), - [sym__strikeout_open] = ACTIONS(3659), - [sym__strikeout_close] = ACTIONS(3659), - [sym__latex_span_start] = ACTIONS(3659), - [sym__single_quote_open] = ACTIONS(3659), - [sym__double_quote_open] = ACTIONS(3659), - [sym__superscript_open] = ACTIONS(3659), - [sym__subscript_open] = ACTIONS(3659), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3659), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3659), - [sym__cite_author_in_text] = ACTIONS(3659), - [sym__cite_suppress_author] = ACTIONS(3659), - [sym__shortcode_open_escaped] = ACTIONS(3659), - [sym__shortcode_open] = ACTIONS(3659), - [sym__unclosed_span] = ACTIONS(3659), + [sym__qmd_attribute] = STATE(1214), + [sym_raw_attribute] = STATE(1214), + [sym_commonmark_attribute] = STATE(1214), + [sym_language_attribute] = STATE(1214), + [sym__backslash_escape] = ACTIONS(4546), + [sym_entity_reference] = ACTIONS(4546), + [sym_numeric_character_reference] = ACTIONS(4546), + [anon_sym_LT] = ACTIONS(4548), + [anon_sym_GT] = ACTIONS(4546), + [anon_sym_BANG] = ACTIONS(4546), + [anon_sym_DQUOTE] = ACTIONS(4546), + [anon_sym_POUND] = ACTIONS(4546), + [anon_sym_DOLLAR] = ACTIONS(4546), + [anon_sym_PERCENT] = ACTIONS(4546), + [anon_sym_AMP] = ACTIONS(4548), + [anon_sym_SQUOTE] = ACTIONS(4546), + [anon_sym_STAR] = ACTIONS(4546), + [anon_sym_PLUS] = ACTIONS(4546), + [anon_sym_COMMA] = ACTIONS(4546), + [anon_sym_DASH] = ACTIONS(4548), + [anon_sym_DOT] = ACTIONS(4548), + [anon_sym_SLASH] = ACTIONS(4546), + [anon_sym_COLON] = ACTIONS(4546), + [anon_sym_SEMI] = ACTIONS(4546), + [anon_sym_EQ] = ACTIONS(4546), + [anon_sym_QMARK] = ACTIONS(4546), + [anon_sym_LBRACK] = ACTIONS(4548), + [anon_sym_BSLASH] = ACTIONS(4548), + [anon_sym_CARET] = ACTIONS(4548), + [anon_sym__] = ACTIONS(4546), + [anon_sym_BQUOTE] = ACTIONS(4546), + [anon_sym_LBRACE] = ACTIONS(4544), + [anon_sym_PIPE] = ACTIONS(4546), + [anon_sym_TILDE] = ACTIONS(4546), + [anon_sym_LPAREN] = ACTIONS(4546), + [anon_sym_RPAREN] = ACTIONS(4546), + [sym__newline_token] = ACTIONS(4546), + [aux_sym_insert_token1] = ACTIONS(4546), + [aux_sym_delete_token1] = ACTIONS(4546), + [aux_sym_highlight_token1] = ACTIONS(4546), + [aux_sym_edit_comment_token1] = ACTIONS(4546), + [anon_sym_CARET_LBRACK] = ACTIONS(4546), + [anon_sym_LBRACK_CARET] = ACTIONS(4546), + [sym_uri_autolink] = ACTIONS(4546), + [sym_email_autolink] = ACTIONS(4546), + [sym__whitespace_ge_2] = ACTIONS(4546), + [aux_sym__whitespace_token1] = ACTIONS(4548), + [sym__word_no_digit] = ACTIONS(4546), + [sym__digits] = ACTIONS(4546), + [anon_sym_DASH_DASH] = ACTIONS(4548), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4546), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4546), + [sym__code_span_start] = ACTIONS(4546), + [sym__emphasis_open_star] = ACTIONS(4546), + [sym__emphasis_open_underscore] = ACTIONS(4546), + [sym__strikeout_open] = ACTIONS(4546), + [sym__latex_span_start] = ACTIONS(4546), + [sym__single_quote_open] = ACTIONS(4546), + [sym__single_quote_close] = ACTIONS(4546), + [sym__double_quote_open] = ACTIONS(4546), + [sym__superscript_open] = ACTIONS(4546), + [sym__subscript_open] = ACTIONS(4546), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4546), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4546), + [sym__cite_author_in_text] = ACTIONS(4546), + [sym__cite_suppress_author] = ACTIONS(4546), + [sym__shortcode_open_escaped] = ACTIONS(4546), + [sym__shortcode_open] = ACTIONS(4546), + [sym__unclosed_span] = ACTIONS(4546), }, [STATE(389)] = { - [sym__qmd_attribute] = STATE(1110), - [sym_raw_attribute] = STATE(1110), - [sym_commonmark_attribute] = STATE(1110), - [sym_language_attribute] = STATE(1110), - [sym__backslash_escape] = ACTIONS(3637), - [sym_entity_reference] = ACTIONS(3637), - [sym_numeric_character_reference] = ACTIONS(3637), - [anon_sym_LT] = ACTIONS(3639), - [anon_sym_GT] = ACTIONS(3637), - [anon_sym_BANG] = ACTIONS(3637), - [anon_sym_DQUOTE] = ACTIONS(3637), - [anon_sym_POUND] = ACTIONS(3637), - [anon_sym_DOLLAR] = ACTIONS(3637), - [anon_sym_PERCENT] = ACTIONS(3637), - [anon_sym_AMP] = ACTIONS(3639), - [anon_sym_SQUOTE] = ACTIONS(3637), - [anon_sym_STAR] = ACTIONS(3637), - [anon_sym_PLUS] = ACTIONS(3637), - [anon_sym_COMMA] = ACTIONS(3637), - [anon_sym_DASH] = ACTIONS(3639), - [anon_sym_DOT] = ACTIONS(3639), - [anon_sym_SLASH] = ACTIONS(3637), - [anon_sym_COLON] = ACTIONS(3637), - [anon_sym_SEMI] = ACTIONS(3637), - [anon_sym_EQ] = ACTIONS(3637), - [anon_sym_QMARK] = ACTIONS(3637), - [anon_sym_LBRACK] = ACTIONS(3639), - [anon_sym_BSLASH] = ACTIONS(3639), - [anon_sym_CARET] = ACTIONS(3639), - [anon_sym__] = ACTIONS(3637), - [anon_sym_BQUOTE] = ACTIONS(3637), - [anon_sym_LBRACE] = ACTIONS(3721), - [anon_sym_PIPE] = ACTIONS(3637), - [anon_sym_TILDE] = ACTIONS(3637), - [anon_sym_LPAREN] = ACTIONS(3637), - [anon_sym_RPAREN] = ACTIONS(3637), - [sym__newline_token] = ACTIONS(3637), - [anon_sym_CARET_LBRACK] = ACTIONS(3637), - [anon_sym_LBRACK_CARET] = ACTIONS(3637), - [sym_uri_autolink] = ACTIONS(3637), - [sym_email_autolink] = ACTIONS(3637), - [sym__whitespace_ge_2] = ACTIONS(3637), - [aux_sym__whitespace_token1] = ACTIONS(3639), - [sym__word_no_digit] = ACTIONS(3637), - [sym__digits] = ACTIONS(3637), - [anon_sym_DASH_DASH] = ACTIONS(3639), - [anon_sym_DASH_DASH_DASH] = ACTIONS(3637), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3637), - [sym__code_span_start] = ACTIONS(3637), - [sym__emphasis_open_star] = ACTIONS(3637), - [sym__emphasis_open_underscore] = ACTIONS(3637), - [sym__strikeout_open] = ACTIONS(3637), - [sym__strikeout_close] = ACTIONS(3637), - [sym__latex_span_start] = ACTIONS(3637), - [sym__single_quote_open] = ACTIONS(3637), - [sym__double_quote_open] = ACTIONS(3637), - [sym__superscript_open] = ACTIONS(3637), - [sym__subscript_open] = ACTIONS(3637), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3637), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3637), - [sym__cite_author_in_text] = ACTIONS(3637), - [sym__cite_suppress_author] = ACTIONS(3637), - [sym__shortcode_open_escaped] = ACTIONS(3637), - [sym__shortcode_open] = ACTIONS(3637), - [sym__unclosed_span] = ACTIONS(3637), + [sym__qmd_attribute] = STATE(1220), + [sym_raw_attribute] = STATE(1220), + [sym_commonmark_attribute] = STATE(1220), + [sym_language_attribute] = STATE(1220), + [sym__backslash_escape] = ACTIONS(4550), + [sym_entity_reference] = ACTIONS(4550), + [sym_numeric_character_reference] = ACTIONS(4550), + [anon_sym_LT] = ACTIONS(4552), + [anon_sym_GT] = ACTIONS(4550), + [anon_sym_BANG] = ACTIONS(4550), + [anon_sym_DQUOTE] = ACTIONS(4550), + [anon_sym_POUND] = ACTIONS(4550), + [anon_sym_DOLLAR] = ACTIONS(4550), + [anon_sym_PERCENT] = ACTIONS(4550), + [anon_sym_AMP] = ACTIONS(4552), + [anon_sym_SQUOTE] = ACTIONS(4550), + [anon_sym_STAR] = ACTIONS(4550), + [anon_sym_PLUS] = ACTIONS(4550), + [anon_sym_COMMA] = ACTIONS(4550), + [anon_sym_DASH] = ACTIONS(4552), + [anon_sym_DOT] = ACTIONS(4552), + [anon_sym_SLASH] = ACTIONS(4550), + [anon_sym_COLON] = ACTIONS(4550), + [anon_sym_SEMI] = ACTIONS(4550), + [anon_sym_EQ] = ACTIONS(4550), + [anon_sym_QMARK] = ACTIONS(4550), + [anon_sym_LBRACK] = ACTIONS(4552), + [anon_sym_BSLASH] = ACTIONS(4552), + [anon_sym_CARET] = ACTIONS(4552), + [anon_sym__] = ACTIONS(4550), + [anon_sym_BQUOTE] = ACTIONS(4550), + [anon_sym_LBRACE] = ACTIONS(4544), + [anon_sym_PIPE] = ACTIONS(4550), + [anon_sym_TILDE] = ACTIONS(4550), + [anon_sym_LPAREN] = ACTIONS(4550), + [anon_sym_RPAREN] = ACTIONS(4550), + [sym__newline_token] = ACTIONS(4550), + [aux_sym_insert_token1] = ACTIONS(4550), + [aux_sym_delete_token1] = ACTIONS(4550), + [aux_sym_highlight_token1] = ACTIONS(4550), + [aux_sym_edit_comment_token1] = ACTIONS(4550), + [anon_sym_CARET_LBRACK] = ACTIONS(4550), + [anon_sym_LBRACK_CARET] = ACTIONS(4550), + [sym_uri_autolink] = ACTIONS(4550), + [sym_email_autolink] = ACTIONS(4550), + [sym__whitespace_ge_2] = ACTIONS(4550), + [aux_sym__whitespace_token1] = ACTIONS(4552), + [sym__word_no_digit] = ACTIONS(4550), + [sym__digits] = ACTIONS(4550), + [anon_sym_DASH_DASH] = ACTIONS(4552), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4550), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4550), + [sym__code_span_start] = ACTIONS(4550), + [sym__emphasis_open_star] = ACTIONS(4550), + [sym__emphasis_open_underscore] = ACTIONS(4550), + [sym__strikeout_open] = ACTIONS(4550), + [sym__latex_span_start] = ACTIONS(4550), + [sym__single_quote_open] = ACTIONS(4550), + [sym__single_quote_close] = ACTIONS(4550), + [sym__double_quote_open] = ACTIONS(4550), + [sym__superscript_open] = ACTIONS(4550), + [sym__subscript_open] = ACTIONS(4550), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4550), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4550), + [sym__cite_author_in_text] = ACTIONS(4550), + [sym__cite_suppress_author] = ACTIONS(4550), + [sym__shortcode_open_escaped] = ACTIONS(4550), + [sym__shortcode_open] = ACTIONS(4550), + [sym__unclosed_span] = ACTIONS(4550), }, [STATE(390)] = { - [sym__qmd_attribute] = STATE(1112), - [sym_raw_attribute] = STATE(1112), - [sym_commonmark_attribute] = STATE(1112), - [sym_language_attribute] = STATE(1112), - [sym__backslash_escape] = ACTIONS(3663), - [sym_entity_reference] = ACTIONS(3663), - [sym_numeric_character_reference] = ACTIONS(3663), - [anon_sym_LT] = ACTIONS(3665), - [anon_sym_GT] = ACTIONS(3663), - [anon_sym_BANG] = ACTIONS(3663), - [anon_sym_DQUOTE] = ACTIONS(3663), - [anon_sym_POUND] = ACTIONS(3663), - [anon_sym_DOLLAR] = ACTIONS(3663), - [anon_sym_PERCENT] = ACTIONS(3663), - [anon_sym_AMP] = ACTIONS(3665), - [anon_sym_SQUOTE] = ACTIONS(3663), - [anon_sym_STAR] = ACTIONS(3663), - [anon_sym_PLUS] = ACTIONS(3663), - [anon_sym_COMMA] = ACTIONS(3663), - [anon_sym_DASH] = ACTIONS(3665), - [anon_sym_DOT] = ACTIONS(3665), - [anon_sym_SLASH] = ACTIONS(3663), - [anon_sym_COLON] = ACTIONS(3663), - [anon_sym_SEMI] = ACTIONS(3663), - [anon_sym_EQ] = ACTIONS(3663), - [anon_sym_QMARK] = ACTIONS(3663), - [anon_sym_LBRACK] = ACTIONS(3665), - [anon_sym_BSLASH] = ACTIONS(3665), - [anon_sym_CARET] = ACTIONS(3665), - [anon_sym__] = ACTIONS(3663), - [anon_sym_BQUOTE] = ACTIONS(3663), - [anon_sym_LBRACE] = ACTIONS(3721), - [anon_sym_PIPE] = ACTIONS(3663), - [anon_sym_TILDE] = ACTIONS(3663), - [anon_sym_LPAREN] = ACTIONS(3663), - [anon_sym_RPAREN] = ACTIONS(3663), - [sym__newline_token] = ACTIONS(3663), - [anon_sym_CARET_LBRACK] = ACTIONS(3663), - [anon_sym_LBRACK_CARET] = ACTIONS(3663), - [sym_uri_autolink] = ACTIONS(3663), - [sym_email_autolink] = ACTIONS(3663), - [sym__whitespace_ge_2] = ACTIONS(3663), - [aux_sym__whitespace_token1] = ACTIONS(3665), - [sym__word_no_digit] = ACTIONS(3663), - [sym__digits] = ACTIONS(3663), - [anon_sym_DASH_DASH] = ACTIONS(3665), - [anon_sym_DASH_DASH_DASH] = ACTIONS(3663), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3663), - [sym__code_span_start] = ACTIONS(3663), - [sym__emphasis_open_star] = ACTIONS(3663), - [sym__emphasis_open_underscore] = ACTIONS(3663), - [sym__strikeout_open] = ACTIONS(3663), - [sym__strikeout_close] = ACTIONS(3663), - [sym__latex_span_start] = ACTIONS(3663), - [sym__single_quote_open] = ACTIONS(3663), - [sym__double_quote_open] = ACTIONS(3663), - [sym__superscript_open] = ACTIONS(3663), - [sym__subscript_open] = ACTIONS(3663), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3663), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3663), - [sym__cite_author_in_text] = ACTIONS(3663), - [sym__cite_suppress_author] = ACTIONS(3663), - [sym__shortcode_open_escaped] = ACTIONS(3663), - [sym__shortcode_open] = ACTIONS(3663), - [sym__unclosed_span] = ACTIONS(3663), + [sym__qmd_attribute] = STATE(1229), + [sym_raw_attribute] = STATE(1229), + [sym_commonmark_attribute] = STATE(1229), + [sym_language_attribute] = STATE(1229), + [sym__backslash_escape] = ACTIONS(4554), + [sym_entity_reference] = ACTIONS(4554), + [sym_numeric_character_reference] = ACTIONS(4554), + [anon_sym_LT] = ACTIONS(4556), + [anon_sym_GT] = ACTIONS(4554), + [anon_sym_BANG] = ACTIONS(4554), + [anon_sym_DQUOTE] = ACTIONS(4554), + [anon_sym_POUND] = ACTIONS(4554), + [anon_sym_DOLLAR] = ACTIONS(4554), + [anon_sym_PERCENT] = ACTIONS(4554), + [anon_sym_AMP] = ACTIONS(4556), + [anon_sym_SQUOTE] = ACTIONS(4554), + [anon_sym_STAR] = ACTIONS(4554), + [anon_sym_PLUS] = ACTIONS(4554), + [anon_sym_COMMA] = ACTIONS(4554), + [anon_sym_DASH] = ACTIONS(4556), + [anon_sym_DOT] = ACTIONS(4556), + [anon_sym_SLASH] = ACTIONS(4554), + [anon_sym_COLON] = ACTIONS(4554), + [anon_sym_SEMI] = ACTIONS(4554), + [anon_sym_EQ] = ACTIONS(4554), + [anon_sym_QMARK] = ACTIONS(4554), + [anon_sym_LBRACK] = ACTIONS(4556), + [anon_sym_BSLASH] = ACTIONS(4556), + [anon_sym_CARET] = ACTIONS(4556), + [anon_sym__] = ACTIONS(4554), + [anon_sym_BQUOTE] = ACTIONS(4554), + [anon_sym_LBRACE] = ACTIONS(4544), + [anon_sym_PIPE] = ACTIONS(4554), + [anon_sym_TILDE] = ACTIONS(4554), + [anon_sym_LPAREN] = ACTIONS(4554), + [anon_sym_RPAREN] = ACTIONS(4554), + [sym__newline_token] = ACTIONS(4554), + [aux_sym_insert_token1] = ACTIONS(4554), + [aux_sym_delete_token1] = ACTIONS(4554), + [aux_sym_highlight_token1] = ACTIONS(4554), + [aux_sym_edit_comment_token1] = ACTIONS(4554), + [anon_sym_CARET_LBRACK] = ACTIONS(4554), + [anon_sym_LBRACK_CARET] = ACTIONS(4554), + [sym_uri_autolink] = ACTIONS(4554), + [sym_email_autolink] = ACTIONS(4554), + [sym__whitespace_ge_2] = ACTIONS(4554), + [aux_sym__whitespace_token1] = ACTIONS(4556), + [sym__word_no_digit] = ACTIONS(4554), + [sym__digits] = ACTIONS(4554), + [anon_sym_DASH_DASH] = ACTIONS(4556), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4554), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4554), + [sym__code_span_start] = ACTIONS(4554), + [sym__emphasis_open_star] = ACTIONS(4554), + [sym__emphasis_open_underscore] = ACTIONS(4554), + [sym__strikeout_open] = ACTIONS(4554), + [sym__latex_span_start] = ACTIONS(4554), + [sym__single_quote_open] = ACTIONS(4554), + [sym__single_quote_close] = ACTIONS(4554), + [sym__double_quote_open] = ACTIONS(4554), + [sym__superscript_open] = ACTIONS(4554), + [sym__subscript_open] = ACTIONS(4554), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4554), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4554), + [sym__cite_author_in_text] = ACTIONS(4554), + [sym__cite_suppress_author] = ACTIONS(4554), + [sym__shortcode_open_escaped] = ACTIONS(4554), + [sym__shortcode_open] = ACTIONS(4554), + [sym__unclosed_span] = ACTIONS(4554), }, [STATE(391)] = { - [sym__qmd_attribute] = STATE(1116), - [sym_raw_attribute] = STATE(1116), - [sym_commonmark_attribute] = STATE(1116), - [sym_language_attribute] = STATE(1116), - [sym__backslash_escape] = ACTIONS(3667), - [sym_entity_reference] = ACTIONS(3667), - [sym_numeric_character_reference] = ACTIONS(3667), - [anon_sym_LT] = ACTIONS(3669), - [anon_sym_GT] = ACTIONS(3667), - [anon_sym_BANG] = ACTIONS(3667), - [anon_sym_DQUOTE] = ACTIONS(3667), - [anon_sym_POUND] = ACTIONS(3667), - [anon_sym_DOLLAR] = ACTIONS(3667), - [anon_sym_PERCENT] = ACTIONS(3667), - [anon_sym_AMP] = ACTIONS(3669), - [anon_sym_SQUOTE] = ACTIONS(3667), - [anon_sym_STAR] = ACTIONS(3667), - [anon_sym_PLUS] = ACTIONS(3667), - [anon_sym_COMMA] = ACTIONS(3667), - [anon_sym_DASH] = ACTIONS(3669), - [anon_sym_DOT] = ACTIONS(3669), - [anon_sym_SLASH] = ACTIONS(3667), - [anon_sym_COLON] = ACTIONS(3667), - [anon_sym_SEMI] = ACTIONS(3667), - [anon_sym_EQ] = ACTIONS(3667), - [anon_sym_QMARK] = ACTIONS(3667), - [anon_sym_LBRACK] = ACTIONS(3669), - [anon_sym_BSLASH] = ACTIONS(3669), - [anon_sym_CARET] = ACTIONS(3669), - [anon_sym__] = ACTIONS(3667), - [anon_sym_BQUOTE] = ACTIONS(3667), - [anon_sym_LBRACE] = ACTIONS(3721), - [anon_sym_PIPE] = ACTIONS(3667), - [anon_sym_TILDE] = ACTIONS(3667), - [anon_sym_LPAREN] = ACTIONS(3667), - [anon_sym_RPAREN] = ACTIONS(3667), - [sym__newline_token] = ACTIONS(3667), - [anon_sym_CARET_LBRACK] = ACTIONS(3667), - [anon_sym_LBRACK_CARET] = ACTIONS(3667), - [sym_uri_autolink] = ACTIONS(3667), - [sym_email_autolink] = ACTIONS(3667), - [sym__whitespace_ge_2] = ACTIONS(3667), - [aux_sym__whitespace_token1] = ACTIONS(3669), - [sym__word_no_digit] = ACTIONS(3667), - [sym__digits] = ACTIONS(3667), - [anon_sym_DASH_DASH] = ACTIONS(3669), - [anon_sym_DASH_DASH_DASH] = ACTIONS(3667), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3667), - [sym__code_span_start] = ACTIONS(3667), - [sym__emphasis_open_star] = ACTIONS(3667), - [sym__emphasis_open_underscore] = ACTIONS(3667), - [sym__strikeout_open] = ACTIONS(3667), - [sym__strikeout_close] = ACTIONS(3667), - [sym__latex_span_start] = ACTIONS(3667), - [sym__single_quote_open] = ACTIONS(3667), - [sym__double_quote_open] = ACTIONS(3667), - [sym__superscript_open] = ACTIONS(3667), - [sym__subscript_open] = ACTIONS(3667), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3667), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3667), - [sym__cite_author_in_text] = ACTIONS(3667), - [sym__cite_suppress_author] = ACTIONS(3667), - [sym__shortcode_open_escaped] = ACTIONS(3667), - [sym__shortcode_open] = ACTIONS(3667), - [sym__unclosed_span] = ACTIONS(3667), + [sym__qmd_attribute] = STATE(1237), + [sym_raw_attribute] = STATE(1237), + [sym_commonmark_attribute] = STATE(1237), + [sym_language_attribute] = STATE(1237), + [sym__backslash_escape] = ACTIONS(4558), + [sym_entity_reference] = ACTIONS(4558), + [sym_numeric_character_reference] = ACTIONS(4558), + [anon_sym_LT] = ACTIONS(4560), + [anon_sym_GT] = ACTIONS(4558), + [anon_sym_BANG] = ACTIONS(4558), + [anon_sym_DQUOTE] = ACTIONS(4558), + [anon_sym_POUND] = ACTIONS(4558), + [anon_sym_DOLLAR] = ACTIONS(4558), + [anon_sym_PERCENT] = ACTIONS(4558), + [anon_sym_AMP] = ACTIONS(4560), + [anon_sym_SQUOTE] = ACTIONS(4558), + [anon_sym_STAR] = ACTIONS(4558), + [anon_sym_PLUS] = ACTIONS(4558), + [anon_sym_COMMA] = ACTIONS(4558), + [anon_sym_DASH] = ACTIONS(4560), + [anon_sym_DOT] = ACTIONS(4560), + [anon_sym_SLASH] = ACTIONS(4558), + [anon_sym_COLON] = ACTIONS(4558), + [anon_sym_SEMI] = ACTIONS(4558), + [anon_sym_EQ] = ACTIONS(4558), + [anon_sym_QMARK] = ACTIONS(4558), + [anon_sym_LBRACK] = ACTIONS(4560), + [anon_sym_BSLASH] = ACTIONS(4560), + [anon_sym_CARET] = ACTIONS(4560), + [anon_sym__] = ACTIONS(4558), + [anon_sym_BQUOTE] = ACTIONS(4558), + [anon_sym_LBRACE] = ACTIONS(4544), + [anon_sym_PIPE] = ACTIONS(4558), + [anon_sym_TILDE] = ACTIONS(4558), + [anon_sym_LPAREN] = ACTIONS(4558), + [anon_sym_RPAREN] = ACTIONS(4558), + [sym__newline_token] = ACTIONS(4558), + [aux_sym_insert_token1] = ACTIONS(4558), + [aux_sym_delete_token1] = ACTIONS(4558), + [aux_sym_highlight_token1] = ACTIONS(4558), + [aux_sym_edit_comment_token1] = ACTIONS(4558), + [anon_sym_CARET_LBRACK] = ACTIONS(4558), + [anon_sym_LBRACK_CARET] = ACTIONS(4558), + [sym_uri_autolink] = ACTIONS(4558), + [sym_email_autolink] = ACTIONS(4558), + [sym__whitespace_ge_2] = ACTIONS(4558), + [aux_sym__whitespace_token1] = ACTIONS(4560), + [sym__word_no_digit] = ACTIONS(4558), + [sym__digits] = ACTIONS(4558), + [anon_sym_DASH_DASH] = ACTIONS(4560), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4558), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4558), + [sym__code_span_start] = ACTIONS(4558), + [sym__emphasis_open_star] = ACTIONS(4558), + [sym__emphasis_open_underscore] = ACTIONS(4558), + [sym__strikeout_open] = ACTIONS(4558), + [sym__latex_span_start] = ACTIONS(4558), + [sym__single_quote_open] = ACTIONS(4558), + [sym__single_quote_close] = ACTIONS(4558), + [sym__double_quote_open] = ACTIONS(4558), + [sym__superscript_open] = ACTIONS(4558), + [sym__subscript_open] = ACTIONS(4558), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4558), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4558), + [sym__cite_author_in_text] = ACTIONS(4558), + [sym__cite_suppress_author] = ACTIONS(4558), + [sym__shortcode_open_escaped] = ACTIONS(4558), + [sym__shortcode_open] = ACTIONS(4558), + [sym__unclosed_span] = ACTIONS(4558), }, [STATE(392)] = { - [sym__qmd_attribute] = STATE(1118), - [sym_raw_attribute] = STATE(1118), - [sym_commonmark_attribute] = STATE(1118), - [sym_language_attribute] = STATE(1118), - [sym__backslash_escape] = ACTIONS(3671), - [sym_entity_reference] = ACTIONS(3671), - [sym_numeric_character_reference] = ACTIONS(3671), - [anon_sym_LT] = ACTIONS(3673), - [anon_sym_GT] = ACTIONS(3671), - [anon_sym_BANG] = ACTIONS(3671), - [anon_sym_DQUOTE] = ACTIONS(3671), - [anon_sym_POUND] = ACTIONS(3671), - [anon_sym_DOLLAR] = ACTIONS(3671), - [anon_sym_PERCENT] = ACTIONS(3671), - [anon_sym_AMP] = ACTIONS(3673), - [anon_sym_SQUOTE] = ACTIONS(3671), - [anon_sym_STAR] = ACTIONS(3671), - [anon_sym_PLUS] = ACTIONS(3671), - [anon_sym_COMMA] = ACTIONS(3671), - [anon_sym_DASH] = ACTIONS(3673), - [anon_sym_DOT] = ACTIONS(3673), - [anon_sym_SLASH] = ACTIONS(3671), - [anon_sym_COLON] = ACTIONS(3671), - [anon_sym_SEMI] = ACTIONS(3671), - [anon_sym_EQ] = ACTIONS(3671), - [anon_sym_QMARK] = ACTIONS(3671), - [anon_sym_LBRACK] = ACTIONS(3673), - [anon_sym_BSLASH] = ACTIONS(3673), - [anon_sym_CARET] = ACTIONS(3673), - [anon_sym__] = ACTIONS(3671), - [anon_sym_BQUOTE] = ACTIONS(3671), - [anon_sym_LBRACE] = ACTIONS(3721), - [anon_sym_PIPE] = ACTIONS(3671), - [anon_sym_TILDE] = ACTIONS(3671), - [anon_sym_LPAREN] = ACTIONS(3671), - [anon_sym_RPAREN] = ACTIONS(3671), - [sym__newline_token] = ACTIONS(3671), - [anon_sym_CARET_LBRACK] = ACTIONS(3671), - [anon_sym_LBRACK_CARET] = ACTIONS(3671), - [sym_uri_autolink] = ACTIONS(3671), - [sym_email_autolink] = ACTIONS(3671), - [sym__whitespace_ge_2] = ACTIONS(3671), - [aux_sym__whitespace_token1] = ACTIONS(3673), - [sym__word_no_digit] = ACTIONS(3671), - [sym__digits] = ACTIONS(3671), - [anon_sym_DASH_DASH] = ACTIONS(3673), - [anon_sym_DASH_DASH_DASH] = ACTIONS(3671), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3671), - [sym__code_span_start] = ACTIONS(3671), - [sym__emphasis_open_star] = ACTIONS(3671), - [sym__emphasis_open_underscore] = ACTIONS(3671), - [sym__strikeout_open] = ACTIONS(3671), - [sym__strikeout_close] = ACTIONS(3671), - [sym__latex_span_start] = ACTIONS(3671), - [sym__single_quote_open] = ACTIONS(3671), - [sym__double_quote_open] = ACTIONS(3671), - [sym__superscript_open] = ACTIONS(3671), - [sym__subscript_open] = ACTIONS(3671), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3671), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3671), - [sym__cite_author_in_text] = ACTIONS(3671), - [sym__cite_suppress_author] = ACTIONS(3671), - [sym__shortcode_open_escaped] = ACTIONS(3671), - [sym__shortcode_open] = ACTIONS(3671), - [sym__unclosed_span] = ACTIONS(3671), + [sym__qmd_attribute] = STATE(1240), + [sym_raw_attribute] = STATE(1240), + [sym_commonmark_attribute] = STATE(1240), + [sym_language_attribute] = STATE(1240), + [sym__backslash_escape] = ACTIONS(4562), + [sym_entity_reference] = ACTIONS(4562), + [sym_numeric_character_reference] = ACTIONS(4562), + [anon_sym_LT] = ACTIONS(4564), + [anon_sym_GT] = ACTIONS(4562), + [anon_sym_BANG] = ACTIONS(4562), + [anon_sym_DQUOTE] = ACTIONS(4562), + [anon_sym_POUND] = ACTIONS(4562), + [anon_sym_DOLLAR] = ACTIONS(4562), + [anon_sym_PERCENT] = ACTIONS(4562), + [anon_sym_AMP] = ACTIONS(4564), + [anon_sym_SQUOTE] = ACTIONS(4562), + [anon_sym_STAR] = ACTIONS(4562), + [anon_sym_PLUS] = ACTIONS(4562), + [anon_sym_COMMA] = ACTIONS(4562), + [anon_sym_DASH] = ACTIONS(4564), + [anon_sym_DOT] = ACTIONS(4564), + [anon_sym_SLASH] = ACTIONS(4562), + [anon_sym_COLON] = ACTIONS(4562), + [anon_sym_SEMI] = ACTIONS(4562), + [anon_sym_EQ] = ACTIONS(4562), + [anon_sym_QMARK] = ACTIONS(4562), + [anon_sym_LBRACK] = ACTIONS(4564), + [anon_sym_BSLASH] = ACTIONS(4564), + [anon_sym_CARET] = ACTIONS(4564), + [anon_sym__] = ACTIONS(4562), + [anon_sym_BQUOTE] = ACTIONS(4562), + [anon_sym_LBRACE] = ACTIONS(4544), + [anon_sym_PIPE] = ACTIONS(4562), + [anon_sym_TILDE] = ACTIONS(4562), + [anon_sym_LPAREN] = ACTIONS(4562), + [anon_sym_RPAREN] = ACTIONS(4562), + [sym__newline_token] = ACTIONS(4562), + [aux_sym_insert_token1] = ACTIONS(4562), + [aux_sym_delete_token1] = ACTIONS(4562), + [aux_sym_highlight_token1] = ACTIONS(4562), + [aux_sym_edit_comment_token1] = ACTIONS(4562), + [anon_sym_CARET_LBRACK] = ACTIONS(4562), + [anon_sym_LBRACK_CARET] = ACTIONS(4562), + [sym_uri_autolink] = ACTIONS(4562), + [sym_email_autolink] = ACTIONS(4562), + [sym__whitespace_ge_2] = ACTIONS(4562), + [aux_sym__whitespace_token1] = ACTIONS(4564), + [sym__word_no_digit] = ACTIONS(4562), + [sym__digits] = ACTIONS(4562), + [anon_sym_DASH_DASH] = ACTIONS(4564), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4562), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4562), + [sym__code_span_start] = ACTIONS(4562), + [sym__emphasis_open_star] = ACTIONS(4562), + [sym__emphasis_open_underscore] = ACTIONS(4562), + [sym__strikeout_open] = ACTIONS(4562), + [sym__latex_span_start] = ACTIONS(4562), + [sym__single_quote_open] = ACTIONS(4562), + [sym__single_quote_close] = ACTIONS(4562), + [sym__double_quote_open] = ACTIONS(4562), + [sym__superscript_open] = ACTIONS(4562), + [sym__subscript_open] = ACTIONS(4562), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4562), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4562), + [sym__cite_author_in_text] = ACTIONS(4562), + [sym__cite_suppress_author] = ACTIONS(4562), + [sym__shortcode_open_escaped] = ACTIONS(4562), + [sym__shortcode_open] = ACTIONS(4562), + [sym__unclosed_span] = ACTIONS(4562), }, [STATE(393)] = { - [sym__qmd_attribute] = STATE(855), - [sym_raw_attribute] = STATE(855), - [sym_commonmark_attribute] = STATE(855), - [sym_language_attribute] = STATE(855), - [sym__backslash_escape] = ACTIONS(3655), - [sym_entity_reference] = ACTIONS(3655), - [sym_numeric_character_reference] = ACTIONS(3655), - [anon_sym_LT] = ACTIONS(3657), - [anon_sym_GT] = ACTIONS(3655), - [anon_sym_BANG] = ACTIONS(3655), - [anon_sym_DQUOTE] = ACTIONS(3655), - [anon_sym_POUND] = ACTIONS(3655), - [anon_sym_DOLLAR] = ACTIONS(3655), - [anon_sym_PERCENT] = ACTIONS(3655), - [anon_sym_AMP] = ACTIONS(3657), - [anon_sym_SQUOTE] = ACTIONS(3655), - [anon_sym_STAR] = ACTIONS(3655), - [anon_sym_PLUS] = ACTIONS(3655), - [anon_sym_COMMA] = ACTIONS(3655), - [anon_sym_DASH] = ACTIONS(3657), - [anon_sym_DOT] = ACTIONS(3657), - [anon_sym_SLASH] = ACTIONS(3655), - [anon_sym_COLON] = ACTIONS(3655), - [anon_sym_SEMI] = ACTIONS(3655), - [anon_sym_EQ] = ACTIONS(3655), - [anon_sym_QMARK] = ACTIONS(3655), - [anon_sym_LBRACK] = ACTIONS(3657), - [anon_sym_BSLASH] = ACTIONS(3657), - [anon_sym_CARET] = ACTIONS(3657), - [anon_sym__] = ACTIONS(3655), - [anon_sym_BQUOTE] = ACTIONS(3655), - [anon_sym_LBRACE] = ACTIONS(3717), - [anon_sym_PIPE] = ACTIONS(3655), - [anon_sym_TILDE] = ACTIONS(3655), - [anon_sym_LPAREN] = ACTIONS(3655), - [anon_sym_RPAREN] = ACTIONS(3655), - [sym__newline_token] = ACTIONS(3655), - [anon_sym_CARET_LBRACK] = ACTIONS(3655), - [anon_sym_LBRACK_CARET] = ACTIONS(3655), - [sym_uri_autolink] = ACTIONS(3655), - [sym_email_autolink] = ACTIONS(3655), - [sym__whitespace_ge_2] = ACTIONS(3655), - [aux_sym__whitespace_token1] = ACTIONS(3657), - [sym__word_no_digit] = ACTIONS(3655), - [sym__digits] = ACTIONS(3655), - [anon_sym_DASH_DASH] = ACTIONS(3657), - [anon_sym_DASH_DASH_DASH] = ACTIONS(3655), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3655), - [sym__code_span_start] = ACTIONS(3655), - [sym__emphasis_open_star] = ACTIONS(3655), - [sym__emphasis_open_underscore] = ACTIONS(3655), - [sym__strikeout_open] = ACTIONS(3655), - [sym__latex_span_start] = ACTIONS(3655), - [sym__single_quote_open] = ACTIONS(3655), - [sym__double_quote_open] = ACTIONS(3655), - [sym__superscript_open] = ACTIONS(3655), - [sym__subscript_open] = ACTIONS(3655), - [sym__subscript_close] = ACTIONS(3655), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3655), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3655), - [sym__cite_author_in_text] = ACTIONS(3655), - [sym__cite_suppress_author] = ACTIONS(3655), - [sym__shortcode_open_escaped] = ACTIONS(3655), - [sym__shortcode_open] = ACTIONS(3655), - [sym__unclosed_span] = ACTIONS(3655), + [sym__qmd_attribute] = STATE(846), + [sym_raw_attribute] = STATE(846), + [sym_commonmark_attribute] = STATE(846), + [sym_language_attribute] = STATE(846), + [sym__backslash_escape] = ACTIONS(4566), + [sym_entity_reference] = ACTIONS(4566), + [sym_numeric_character_reference] = ACTIONS(4566), + [anon_sym_LT] = ACTIONS(4568), + [anon_sym_GT] = ACTIONS(4566), + [anon_sym_BANG] = ACTIONS(4566), + [anon_sym_DQUOTE] = ACTIONS(4566), + [anon_sym_POUND] = ACTIONS(4566), + [anon_sym_DOLLAR] = ACTIONS(4566), + [anon_sym_PERCENT] = ACTIONS(4566), + [anon_sym_AMP] = ACTIONS(4568), + [anon_sym_SQUOTE] = ACTIONS(4566), + [anon_sym_STAR] = ACTIONS(4566), + [anon_sym_PLUS] = ACTIONS(4566), + [anon_sym_COMMA] = ACTIONS(4566), + [anon_sym_DASH] = ACTIONS(4568), + [anon_sym_DOT] = ACTIONS(4568), + [anon_sym_SLASH] = ACTIONS(4566), + [anon_sym_COLON] = ACTIONS(4566), + [anon_sym_SEMI] = ACTIONS(4566), + [anon_sym_EQ] = ACTIONS(4566), + [anon_sym_QMARK] = ACTIONS(4566), + [anon_sym_LBRACK] = ACTIONS(4568), + [anon_sym_BSLASH] = ACTIONS(4568), + [anon_sym_CARET] = ACTIONS(4568), + [anon_sym__] = ACTIONS(4566), + [anon_sym_BQUOTE] = ACTIONS(4566), + [anon_sym_LBRACE] = ACTIONS(4570), + [anon_sym_PIPE] = ACTIONS(4566), + [anon_sym_TILDE] = ACTIONS(4566), + [anon_sym_LPAREN] = ACTIONS(4566), + [anon_sym_RPAREN] = ACTIONS(4566), + [sym__newline_token] = ACTIONS(4566), + [aux_sym_insert_token1] = ACTIONS(4566), + [aux_sym_delete_token1] = ACTIONS(4566), + [aux_sym_highlight_token1] = ACTIONS(4566), + [aux_sym_edit_comment_token1] = ACTIONS(4566), + [anon_sym_CARET_LBRACK] = ACTIONS(4566), + [anon_sym_LBRACK_CARET] = ACTIONS(4566), + [sym_uri_autolink] = ACTIONS(4566), + [sym_email_autolink] = ACTIONS(4566), + [sym__whitespace_ge_2] = ACTIONS(4566), + [aux_sym__whitespace_token1] = ACTIONS(4568), + [sym__word_no_digit] = ACTIONS(4566), + [sym__digits] = ACTIONS(4566), + [anon_sym_DASH_DASH] = ACTIONS(4568), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4566), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4566), + [sym__code_span_start] = ACTIONS(4566), + [sym__emphasis_open_star] = ACTIONS(4566), + [sym__emphasis_open_underscore] = ACTIONS(4566), + [sym__emphasis_close_underscore] = ACTIONS(4566), + [sym__strikeout_open] = ACTIONS(4566), + [sym__latex_span_start] = ACTIONS(4566), + [sym__single_quote_open] = ACTIONS(4566), + [sym__double_quote_open] = ACTIONS(4566), + [sym__superscript_open] = ACTIONS(4566), + [sym__subscript_open] = ACTIONS(4566), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4566), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4566), + [sym__cite_author_in_text] = ACTIONS(4566), + [sym__cite_suppress_author] = ACTIONS(4566), + [sym__shortcode_open_escaped] = ACTIONS(4566), + [sym__shortcode_open] = ACTIONS(4566), + [sym__unclosed_span] = ACTIONS(4566), }, [STATE(394)] = { - [sym__qmd_attribute] = STATE(1120), - [sym_raw_attribute] = STATE(1120), - [sym_commonmark_attribute] = STATE(1120), - [sym_language_attribute] = STATE(1120), - [sym__backslash_escape] = ACTIONS(3675), - [sym_entity_reference] = ACTIONS(3675), - [sym_numeric_character_reference] = ACTIONS(3675), - [anon_sym_LT] = ACTIONS(3677), - [anon_sym_GT] = ACTIONS(3675), - [anon_sym_BANG] = ACTIONS(3675), - [anon_sym_DQUOTE] = ACTIONS(3675), - [anon_sym_POUND] = ACTIONS(3675), - [anon_sym_DOLLAR] = ACTIONS(3675), - [anon_sym_PERCENT] = ACTIONS(3675), - [anon_sym_AMP] = ACTIONS(3677), - [anon_sym_SQUOTE] = ACTIONS(3675), - [anon_sym_STAR] = ACTIONS(3675), - [anon_sym_PLUS] = ACTIONS(3675), - [anon_sym_COMMA] = ACTIONS(3675), - [anon_sym_DASH] = ACTIONS(3677), - [anon_sym_DOT] = ACTIONS(3677), - [anon_sym_SLASH] = ACTIONS(3675), - [anon_sym_COLON] = ACTIONS(3675), - [anon_sym_SEMI] = ACTIONS(3675), - [anon_sym_EQ] = ACTIONS(3675), - [anon_sym_QMARK] = ACTIONS(3675), - [anon_sym_LBRACK] = ACTIONS(3677), - [anon_sym_BSLASH] = ACTIONS(3677), - [anon_sym_CARET] = ACTIONS(3677), - [anon_sym__] = ACTIONS(3675), - [anon_sym_BQUOTE] = ACTIONS(3675), - [anon_sym_LBRACE] = ACTIONS(3721), - [anon_sym_PIPE] = ACTIONS(3675), - [anon_sym_TILDE] = ACTIONS(3675), - [anon_sym_LPAREN] = ACTIONS(3675), - [anon_sym_RPAREN] = ACTIONS(3675), - [sym__newline_token] = ACTIONS(3675), - [anon_sym_CARET_LBRACK] = ACTIONS(3675), - [anon_sym_LBRACK_CARET] = ACTIONS(3675), - [sym_uri_autolink] = ACTIONS(3675), - [sym_email_autolink] = ACTIONS(3675), - [sym__whitespace_ge_2] = ACTIONS(3675), - [aux_sym__whitespace_token1] = ACTIONS(3677), - [sym__word_no_digit] = ACTIONS(3675), - [sym__digits] = ACTIONS(3675), - [anon_sym_DASH_DASH] = ACTIONS(3677), - [anon_sym_DASH_DASH_DASH] = ACTIONS(3675), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3675), - [sym__code_span_start] = ACTIONS(3675), - [sym__emphasis_open_star] = ACTIONS(3675), - [sym__emphasis_open_underscore] = ACTIONS(3675), - [sym__strikeout_open] = ACTIONS(3675), - [sym__strikeout_close] = ACTIONS(3675), - [sym__latex_span_start] = ACTIONS(3675), - [sym__single_quote_open] = ACTIONS(3675), - [sym__double_quote_open] = ACTIONS(3675), - [sym__superscript_open] = ACTIONS(3675), - [sym__subscript_open] = ACTIONS(3675), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3675), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3675), - [sym__cite_author_in_text] = ACTIONS(3675), - [sym__cite_suppress_author] = ACTIONS(3675), - [sym__shortcode_open_escaped] = ACTIONS(3675), - [sym__shortcode_open] = ACTIONS(3675), - [sym__unclosed_span] = ACTIONS(3675), + [sym__qmd_attribute] = STATE(890), + [sym_raw_attribute] = STATE(890), + [sym_commonmark_attribute] = STATE(890), + [sym_language_attribute] = STATE(890), + [sym__backslash_escape] = ACTIONS(4572), + [sym_entity_reference] = ACTIONS(4572), + [sym_numeric_character_reference] = ACTIONS(4572), + [anon_sym_LT] = ACTIONS(4574), + [anon_sym_GT] = ACTIONS(4572), + [anon_sym_BANG] = ACTIONS(4572), + [anon_sym_DQUOTE] = ACTIONS(4572), + [anon_sym_POUND] = ACTIONS(4572), + [anon_sym_DOLLAR] = ACTIONS(4572), + [anon_sym_PERCENT] = ACTIONS(4572), + [anon_sym_AMP] = ACTIONS(4574), + [anon_sym_SQUOTE] = ACTIONS(4572), + [anon_sym_STAR] = ACTIONS(4572), + [anon_sym_PLUS] = ACTIONS(4572), + [anon_sym_COMMA] = ACTIONS(4572), + [anon_sym_DASH] = ACTIONS(4574), + [anon_sym_DOT] = ACTIONS(4574), + [anon_sym_SLASH] = ACTIONS(4572), + [anon_sym_COLON] = ACTIONS(4572), + [anon_sym_SEMI] = ACTIONS(4572), + [anon_sym_EQ] = ACTIONS(4572), + [anon_sym_QMARK] = ACTIONS(4572), + [anon_sym_LBRACK] = ACTIONS(4574), + [anon_sym_BSLASH] = ACTIONS(4574), + [anon_sym_CARET] = ACTIONS(4574), + [anon_sym__] = ACTIONS(4572), + [anon_sym_BQUOTE] = ACTIONS(4572), + [anon_sym_LBRACE] = ACTIONS(4570), + [anon_sym_PIPE] = ACTIONS(4572), + [anon_sym_TILDE] = ACTIONS(4572), + [anon_sym_LPAREN] = ACTIONS(4572), + [anon_sym_RPAREN] = ACTIONS(4572), + [sym__newline_token] = ACTIONS(4572), + [aux_sym_insert_token1] = ACTIONS(4572), + [aux_sym_delete_token1] = ACTIONS(4572), + [aux_sym_highlight_token1] = ACTIONS(4572), + [aux_sym_edit_comment_token1] = ACTIONS(4572), + [anon_sym_CARET_LBRACK] = ACTIONS(4572), + [anon_sym_LBRACK_CARET] = ACTIONS(4572), + [sym_uri_autolink] = ACTIONS(4572), + [sym_email_autolink] = ACTIONS(4572), + [sym__whitespace_ge_2] = ACTIONS(4572), + [aux_sym__whitespace_token1] = ACTIONS(4574), + [sym__word_no_digit] = ACTIONS(4572), + [sym__digits] = ACTIONS(4572), + [anon_sym_DASH_DASH] = ACTIONS(4574), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4572), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4572), + [sym__code_span_start] = ACTIONS(4572), + [sym__emphasis_open_star] = ACTIONS(4572), + [sym__emphasis_open_underscore] = ACTIONS(4572), + [sym__emphasis_close_underscore] = ACTIONS(4572), + [sym__strikeout_open] = ACTIONS(4572), + [sym__latex_span_start] = ACTIONS(4572), + [sym__single_quote_open] = ACTIONS(4572), + [sym__double_quote_open] = ACTIONS(4572), + [sym__superscript_open] = ACTIONS(4572), + [sym__subscript_open] = ACTIONS(4572), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4572), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4572), + [sym__cite_author_in_text] = ACTIONS(4572), + [sym__cite_suppress_author] = ACTIONS(4572), + [sym__shortcode_open_escaped] = ACTIONS(4572), + [sym__shortcode_open] = ACTIONS(4572), + [sym__unclosed_span] = ACTIONS(4572), }, [STATE(395)] = { - [sym__qmd_attribute] = STATE(1122), - [sym_raw_attribute] = STATE(1122), - [sym_commonmark_attribute] = STATE(1122), - [sym_language_attribute] = STATE(1122), - [sym__backslash_escape] = ACTIONS(3679), - [sym_entity_reference] = ACTIONS(3679), - [sym_numeric_character_reference] = ACTIONS(3679), - [anon_sym_LT] = ACTIONS(3681), - [anon_sym_GT] = ACTIONS(3679), - [anon_sym_BANG] = ACTIONS(3679), - [anon_sym_DQUOTE] = ACTIONS(3679), - [anon_sym_POUND] = ACTIONS(3679), - [anon_sym_DOLLAR] = ACTIONS(3679), - [anon_sym_PERCENT] = ACTIONS(3679), - [anon_sym_AMP] = ACTIONS(3681), - [anon_sym_SQUOTE] = ACTIONS(3679), - [anon_sym_STAR] = ACTIONS(3679), - [anon_sym_PLUS] = ACTIONS(3679), - [anon_sym_COMMA] = ACTIONS(3679), - [anon_sym_DASH] = ACTIONS(3681), - [anon_sym_DOT] = ACTIONS(3681), - [anon_sym_SLASH] = ACTIONS(3679), - [anon_sym_COLON] = ACTIONS(3679), - [anon_sym_SEMI] = ACTIONS(3679), - [anon_sym_EQ] = ACTIONS(3679), - [anon_sym_QMARK] = ACTIONS(3679), - [anon_sym_LBRACK] = ACTIONS(3681), - [anon_sym_BSLASH] = ACTIONS(3681), - [anon_sym_CARET] = ACTIONS(3681), - [anon_sym__] = ACTIONS(3679), - [anon_sym_BQUOTE] = ACTIONS(3679), - [anon_sym_LBRACE] = ACTIONS(3721), - [anon_sym_PIPE] = ACTIONS(3679), - [anon_sym_TILDE] = ACTIONS(3679), - [anon_sym_LPAREN] = ACTIONS(3679), - [anon_sym_RPAREN] = ACTIONS(3679), - [sym__newline_token] = ACTIONS(3679), - [anon_sym_CARET_LBRACK] = ACTIONS(3679), - [anon_sym_LBRACK_CARET] = ACTIONS(3679), - [sym_uri_autolink] = ACTIONS(3679), - [sym_email_autolink] = ACTIONS(3679), - [sym__whitespace_ge_2] = ACTIONS(3679), - [aux_sym__whitespace_token1] = ACTIONS(3681), - [sym__word_no_digit] = ACTIONS(3679), - [sym__digits] = ACTIONS(3679), - [anon_sym_DASH_DASH] = ACTIONS(3681), - [anon_sym_DASH_DASH_DASH] = ACTIONS(3679), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3679), - [sym__code_span_start] = ACTIONS(3679), - [sym__emphasis_open_star] = ACTIONS(3679), - [sym__emphasis_open_underscore] = ACTIONS(3679), - [sym__strikeout_open] = ACTIONS(3679), - [sym__strikeout_close] = ACTIONS(3679), - [sym__latex_span_start] = ACTIONS(3679), - [sym__single_quote_open] = ACTIONS(3679), - [sym__double_quote_open] = ACTIONS(3679), - [sym__superscript_open] = ACTIONS(3679), - [sym__subscript_open] = ACTIONS(3679), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3679), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3679), - [sym__cite_author_in_text] = ACTIONS(3679), - [sym__cite_suppress_author] = ACTIONS(3679), - [sym__shortcode_open_escaped] = ACTIONS(3679), - [sym__shortcode_open] = ACTIONS(3679), - [sym__unclosed_span] = ACTIONS(3679), + [sym__qmd_attribute] = STATE(1351), + [sym_raw_attribute] = STATE(1351), + [sym_commonmark_attribute] = STATE(1351), + [sym_language_attribute] = STATE(1351), + [sym__backslash_escape] = ACTIONS(4576), + [sym_entity_reference] = ACTIONS(4576), + [sym_numeric_character_reference] = ACTIONS(4576), + [anon_sym_LT] = ACTIONS(4578), + [anon_sym_GT] = ACTIONS(4576), + [anon_sym_BANG] = ACTIONS(4576), + [anon_sym_DQUOTE] = ACTIONS(4576), + [anon_sym_POUND] = ACTIONS(4576), + [anon_sym_DOLLAR] = ACTIONS(4576), + [anon_sym_PERCENT] = ACTIONS(4576), + [anon_sym_AMP] = ACTIONS(4578), + [anon_sym_SQUOTE] = ACTIONS(4576), + [anon_sym_STAR] = ACTIONS(4576), + [anon_sym_PLUS] = ACTIONS(4576), + [anon_sym_COMMA] = ACTIONS(4576), + [anon_sym_DASH] = ACTIONS(4578), + [anon_sym_DOT] = ACTIONS(4578), + [anon_sym_SLASH] = ACTIONS(4576), + [anon_sym_COLON] = ACTIONS(4576), + [anon_sym_SEMI] = ACTIONS(4576), + [anon_sym_EQ] = ACTIONS(4576), + [anon_sym_QMARK] = ACTIONS(4576), + [anon_sym_LBRACK] = ACTIONS(4578), + [anon_sym_BSLASH] = ACTIONS(4578), + [anon_sym_CARET] = ACTIONS(4578), + [anon_sym__] = ACTIONS(4576), + [anon_sym_BQUOTE] = ACTIONS(4576), + [anon_sym_LBRACE] = ACTIONS(4580), + [anon_sym_PIPE] = ACTIONS(4576), + [anon_sym_TILDE] = ACTIONS(4576), + [anon_sym_LPAREN] = ACTIONS(4582), + [anon_sym_RPAREN] = ACTIONS(4576), + [sym__newline_token] = ACTIONS(4576), + [aux_sym_insert_token1] = ACTIONS(4576), + [aux_sym_delete_token1] = ACTIONS(4576), + [aux_sym_highlight_token1] = ACTIONS(4576), + [aux_sym_edit_comment_token1] = ACTIONS(4576), + [anon_sym_CARET_LBRACK] = ACTIONS(4576), + [anon_sym_LBRACK_CARET] = ACTIONS(4576), + [sym_uri_autolink] = ACTIONS(4576), + [sym_email_autolink] = ACTIONS(4576), + [sym__whitespace_ge_2] = ACTIONS(4576), + [aux_sym__whitespace_token1] = ACTIONS(4578), + [sym__word_no_digit] = ACTIONS(4576), + [sym__digits] = ACTIONS(4576), + [anon_sym_DASH_DASH] = ACTIONS(4578), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4576), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4576), + [sym__code_span_start] = ACTIONS(4576), + [sym__emphasis_open_star] = ACTIONS(4576), + [sym__emphasis_open_underscore] = ACTIONS(4576), + [sym__strikeout_open] = ACTIONS(4576), + [sym__latex_span_start] = ACTIONS(4576), + [sym__single_quote_open] = ACTIONS(4576), + [sym__double_quote_open] = ACTIONS(4576), + [sym__double_quote_close] = ACTIONS(4576), + [sym__superscript_open] = ACTIONS(4576), + [sym__subscript_open] = ACTIONS(4576), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4576), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4576), + [sym__cite_author_in_text] = ACTIONS(4576), + [sym__cite_suppress_author] = ACTIONS(4576), + [sym__shortcode_open_escaped] = ACTIONS(4576), + [sym__shortcode_open] = ACTIONS(4576), + [sym__unclosed_span] = ACTIONS(4576), }, [STATE(396)] = { - [sym__qmd_attribute] = STATE(1124), - [sym_raw_attribute] = STATE(1124), - [sym_commonmark_attribute] = STATE(1124), - [sym_language_attribute] = STATE(1124), - [sym__backslash_escape] = ACTIONS(3683), - [sym_entity_reference] = ACTIONS(3683), - [sym_numeric_character_reference] = ACTIONS(3683), - [anon_sym_LT] = ACTIONS(3685), - [anon_sym_GT] = ACTIONS(3683), - [anon_sym_BANG] = ACTIONS(3683), - [anon_sym_DQUOTE] = ACTIONS(3683), - [anon_sym_POUND] = ACTIONS(3683), - [anon_sym_DOLLAR] = ACTIONS(3683), - [anon_sym_PERCENT] = ACTIONS(3683), - [anon_sym_AMP] = ACTIONS(3685), - [anon_sym_SQUOTE] = ACTIONS(3683), - [anon_sym_STAR] = ACTIONS(3683), - [anon_sym_PLUS] = ACTIONS(3683), - [anon_sym_COMMA] = ACTIONS(3683), - [anon_sym_DASH] = ACTIONS(3685), - [anon_sym_DOT] = ACTIONS(3685), - [anon_sym_SLASH] = ACTIONS(3683), - [anon_sym_COLON] = ACTIONS(3683), - [anon_sym_SEMI] = ACTIONS(3683), - [anon_sym_EQ] = ACTIONS(3683), - [anon_sym_QMARK] = ACTIONS(3683), - [anon_sym_LBRACK] = ACTIONS(3685), - [anon_sym_BSLASH] = ACTIONS(3685), - [anon_sym_CARET] = ACTIONS(3685), - [anon_sym__] = ACTIONS(3683), - [anon_sym_BQUOTE] = ACTIONS(3683), - [anon_sym_LBRACE] = ACTIONS(3721), - [anon_sym_PIPE] = ACTIONS(3683), - [anon_sym_TILDE] = ACTIONS(3683), - [anon_sym_LPAREN] = ACTIONS(3683), - [anon_sym_RPAREN] = ACTIONS(3683), - [sym__newline_token] = ACTIONS(3683), - [anon_sym_CARET_LBRACK] = ACTIONS(3683), - [anon_sym_LBRACK_CARET] = ACTIONS(3683), - [sym_uri_autolink] = ACTIONS(3683), - [sym_email_autolink] = ACTIONS(3683), - [sym__whitespace_ge_2] = ACTIONS(3683), - [aux_sym__whitespace_token1] = ACTIONS(3685), - [sym__word_no_digit] = ACTIONS(3683), - [sym__digits] = ACTIONS(3683), - [anon_sym_DASH_DASH] = ACTIONS(3685), - [anon_sym_DASH_DASH_DASH] = ACTIONS(3683), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3683), - [sym__code_span_start] = ACTIONS(3683), - [sym__emphasis_open_star] = ACTIONS(3683), - [sym__emphasis_open_underscore] = ACTIONS(3683), - [sym__strikeout_open] = ACTIONS(3683), - [sym__strikeout_close] = ACTIONS(3683), - [sym__latex_span_start] = ACTIONS(3683), - [sym__single_quote_open] = ACTIONS(3683), - [sym__double_quote_open] = ACTIONS(3683), - [sym__superscript_open] = ACTIONS(3683), - [sym__subscript_open] = ACTIONS(3683), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3683), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3683), - [sym__cite_author_in_text] = ACTIONS(3683), - [sym__cite_suppress_author] = ACTIONS(3683), - [sym__shortcode_open_escaped] = ACTIONS(3683), - [sym__shortcode_open] = ACTIONS(3683), - [sym__unclosed_span] = ACTIONS(3683), + [sym__qmd_attribute] = STATE(1359), + [sym_raw_attribute] = STATE(1359), + [sym_commonmark_attribute] = STATE(1359), + [sym_language_attribute] = STATE(1359), + [sym__backslash_escape] = ACTIONS(4584), + [sym_entity_reference] = ACTIONS(4584), + [sym_numeric_character_reference] = ACTIONS(4584), + [anon_sym_LT] = ACTIONS(4586), + [anon_sym_GT] = ACTIONS(4584), + [anon_sym_BANG] = ACTIONS(4584), + [anon_sym_DQUOTE] = ACTIONS(4584), + [anon_sym_POUND] = ACTIONS(4584), + [anon_sym_DOLLAR] = ACTIONS(4584), + [anon_sym_PERCENT] = ACTIONS(4584), + [anon_sym_AMP] = ACTIONS(4586), + [anon_sym_SQUOTE] = ACTIONS(4584), + [anon_sym_STAR] = ACTIONS(4584), + [anon_sym_PLUS] = ACTIONS(4584), + [anon_sym_COMMA] = ACTIONS(4584), + [anon_sym_DASH] = ACTIONS(4586), + [anon_sym_DOT] = ACTIONS(4586), + [anon_sym_SLASH] = ACTIONS(4584), + [anon_sym_COLON] = ACTIONS(4584), + [anon_sym_SEMI] = ACTIONS(4584), + [anon_sym_EQ] = ACTIONS(4584), + [anon_sym_QMARK] = ACTIONS(4584), + [anon_sym_LBRACK] = ACTIONS(4586), + [anon_sym_BSLASH] = ACTIONS(4586), + [anon_sym_CARET] = ACTIONS(4586), + [anon_sym__] = ACTIONS(4584), + [anon_sym_BQUOTE] = ACTIONS(4584), + [anon_sym_LBRACE] = ACTIONS(4580), + [anon_sym_PIPE] = ACTIONS(4584), + [anon_sym_TILDE] = ACTIONS(4584), + [anon_sym_LPAREN] = ACTIONS(4584), + [anon_sym_RPAREN] = ACTIONS(4584), + [sym__newline_token] = ACTIONS(4584), + [aux_sym_insert_token1] = ACTIONS(4584), + [aux_sym_delete_token1] = ACTIONS(4584), + [aux_sym_highlight_token1] = ACTIONS(4584), + [aux_sym_edit_comment_token1] = ACTIONS(4584), + [anon_sym_CARET_LBRACK] = ACTIONS(4584), + [anon_sym_LBRACK_CARET] = ACTIONS(4584), + [sym_uri_autolink] = ACTIONS(4584), + [sym_email_autolink] = ACTIONS(4584), + [sym__whitespace_ge_2] = ACTIONS(4584), + [aux_sym__whitespace_token1] = ACTIONS(4586), + [sym__word_no_digit] = ACTIONS(4584), + [sym__digits] = ACTIONS(4584), + [anon_sym_DASH_DASH] = ACTIONS(4586), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4584), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4584), + [sym__code_span_start] = ACTIONS(4584), + [sym__emphasis_open_star] = ACTIONS(4584), + [sym__emphasis_open_underscore] = ACTIONS(4584), + [sym__strikeout_open] = ACTIONS(4584), + [sym__latex_span_start] = ACTIONS(4584), + [sym__single_quote_open] = ACTIONS(4584), + [sym__double_quote_open] = ACTIONS(4584), + [sym__double_quote_close] = ACTIONS(4584), + [sym__superscript_open] = ACTIONS(4584), + [sym__subscript_open] = ACTIONS(4584), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4584), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4584), + [sym__cite_author_in_text] = ACTIONS(4584), + [sym__cite_suppress_author] = ACTIONS(4584), + [sym__shortcode_open_escaped] = ACTIONS(4584), + [sym__shortcode_open] = ACTIONS(4584), + [sym__unclosed_span] = ACTIONS(4584), }, [STATE(397)] = { - [sym__qmd_attribute] = STATE(1125), - [sym_raw_attribute] = STATE(1125), - [sym_commonmark_attribute] = STATE(1125), - [sym_language_attribute] = STATE(1125), - [sym__backslash_escape] = ACTIONS(3687), - [sym_entity_reference] = ACTIONS(3687), - [sym_numeric_character_reference] = ACTIONS(3687), - [anon_sym_LT] = ACTIONS(3689), - [anon_sym_GT] = ACTIONS(3687), - [anon_sym_BANG] = ACTIONS(3687), - [anon_sym_DQUOTE] = ACTIONS(3687), - [anon_sym_POUND] = ACTIONS(3687), - [anon_sym_DOLLAR] = ACTIONS(3687), - [anon_sym_PERCENT] = ACTIONS(3687), - [anon_sym_AMP] = ACTIONS(3689), - [anon_sym_SQUOTE] = ACTIONS(3687), - [anon_sym_STAR] = ACTIONS(3687), - [anon_sym_PLUS] = ACTIONS(3687), - [anon_sym_COMMA] = ACTIONS(3687), - [anon_sym_DASH] = ACTIONS(3689), - [anon_sym_DOT] = ACTIONS(3689), - [anon_sym_SLASH] = ACTIONS(3687), - [anon_sym_COLON] = ACTIONS(3687), - [anon_sym_SEMI] = ACTIONS(3687), - [anon_sym_EQ] = ACTIONS(3687), - [anon_sym_QMARK] = ACTIONS(3687), - [anon_sym_LBRACK] = ACTIONS(3689), - [anon_sym_BSLASH] = ACTIONS(3689), - [anon_sym_CARET] = ACTIONS(3689), - [anon_sym__] = ACTIONS(3687), - [anon_sym_BQUOTE] = ACTIONS(3687), - [anon_sym_LBRACE] = ACTIONS(3721), - [anon_sym_PIPE] = ACTIONS(3687), - [anon_sym_TILDE] = ACTIONS(3687), - [anon_sym_LPAREN] = ACTIONS(3687), - [anon_sym_RPAREN] = ACTIONS(3687), - [sym__newline_token] = ACTIONS(3687), - [anon_sym_CARET_LBRACK] = ACTIONS(3687), - [anon_sym_LBRACK_CARET] = ACTIONS(3687), - [sym_uri_autolink] = ACTIONS(3687), - [sym_email_autolink] = ACTIONS(3687), - [sym__whitespace_ge_2] = ACTIONS(3687), - [aux_sym__whitespace_token1] = ACTIONS(3689), - [sym__word_no_digit] = ACTIONS(3687), - [sym__digits] = ACTIONS(3687), - [anon_sym_DASH_DASH] = ACTIONS(3689), - [anon_sym_DASH_DASH_DASH] = ACTIONS(3687), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3687), - [sym__code_span_start] = ACTIONS(3687), - [sym__emphasis_open_star] = ACTIONS(3687), - [sym__emphasis_open_underscore] = ACTIONS(3687), - [sym__strikeout_open] = ACTIONS(3687), - [sym__strikeout_close] = ACTIONS(3687), - [sym__latex_span_start] = ACTIONS(3687), - [sym__single_quote_open] = ACTIONS(3687), - [sym__double_quote_open] = ACTIONS(3687), - [sym__superscript_open] = ACTIONS(3687), - [sym__subscript_open] = ACTIONS(3687), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3687), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3687), - [sym__cite_author_in_text] = ACTIONS(3687), - [sym__cite_suppress_author] = ACTIONS(3687), - [sym__shortcode_open_escaped] = ACTIONS(3687), - [sym__shortcode_open] = ACTIONS(3687), - [sym__unclosed_span] = ACTIONS(3687), + [sym__qmd_attribute] = STATE(925), + [sym_raw_attribute] = STATE(925), + [sym_commonmark_attribute] = STATE(925), + [sym_language_attribute] = STATE(925), + [sym__backslash_escape] = ACTIONS(4588), + [sym_entity_reference] = ACTIONS(4588), + [sym_numeric_character_reference] = ACTIONS(4588), + [anon_sym_LT] = ACTIONS(4590), + [anon_sym_GT] = ACTIONS(4588), + [anon_sym_BANG] = ACTIONS(4588), + [anon_sym_DQUOTE] = ACTIONS(4588), + [anon_sym_POUND] = ACTIONS(4588), + [anon_sym_DOLLAR] = ACTIONS(4588), + [anon_sym_PERCENT] = ACTIONS(4588), + [anon_sym_AMP] = ACTIONS(4590), + [anon_sym_SQUOTE] = ACTIONS(4588), + [anon_sym_STAR] = ACTIONS(4588), + [anon_sym_PLUS] = ACTIONS(4588), + [anon_sym_COMMA] = ACTIONS(4588), + [anon_sym_DASH] = ACTIONS(4590), + [anon_sym_DOT] = ACTIONS(4590), + [anon_sym_SLASH] = ACTIONS(4588), + [anon_sym_COLON] = ACTIONS(4588), + [anon_sym_SEMI] = ACTIONS(4588), + [anon_sym_EQ] = ACTIONS(4588), + [anon_sym_QMARK] = ACTIONS(4588), + [anon_sym_LBRACK] = ACTIONS(4590), + [anon_sym_BSLASH] = ACTIONS(4590), + [anon_sym_CARET] = ACTIONS(4590), + [anon_sym__] = ACTIONS(4588), + [anon_sym_BQUOTE] = ACTIONS(4588), + [anon_sym_LBRACE] = ACTIONS(4570), + [anon_sym_PIPE] = ACTIONS(4588), + [anon_sym_TILDE] = ACTIONS(4588), + [anon_sym_LPAREN] = ACTIONS(4588), + [anon_sym_RPAREN] = ACTIONS(4588), + [sym__newline_token] = ACTIONS(4588), + [aux_sym_insert_token1] = ACTIONS(4588), + [aux_sym_delete_token1] = ACTIONS(4588), + [aux_sym_highlight_token1] = ACTIONS(4588), + [aux_sym_edit_comment_token1] = ACTIONS(4588), + [anon_sym_CARET_LBRACK] = ACTIONS(4588), + [anon_sym_LBRACK_CARET] = ACTIONS(4588), + [sym_uri_autolink] = ACTIONS(4588), + [sym_email_autolink] = ACTIONS(4588), + [sym__whitespace_ge_2] = ACTIONS(4588), + [aux_sym__whitespace_token1] = ACTIONS(4590), + [sym__word_no_digit] = ACTIONS(4588), + [sym__digits] = ACTIONS(4588), + [anon_sym_DASH_DASH] = ACTIONS(4590), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4588), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4588), + [sym__code_span_start] = ACTIONS(4588), + [sym__emphasis_open_star] = ACTIONS(4588), + [sym__emphasis_open_underscore] = ACTIONS(4588), + [sym__emphasis_close_underscore] = ACTIONS(4588), + [sym__strikeout_open] = ACTIONS(4588), + [sym__latex_span_start] = ACTIONS(4588), + [sym__single_quote_open] = ACTIONS(4588), + [sym__double_quote_open] = ACTIONS(4588), + [sym__superscript_open] = ACTIONS(4588), + [sym__subscript_open] = ACTIONS(4588), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4588), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4588), + [sym__cite_author_in_text] = ACTIONS(4588), + [sym__cite_suppress_author] = ACTIONS(4588), + [sym__shortcode_open_escaped] = ACTIONS(4588), + [sym__shortcode_open] = ACTIONS(4588), + [sym__unclosed_span] = ACTIONS(4588), }, [STATE(398)] = { - [sym__qmd_attribute] = STATE(857), - [sym_raw_attribute] = STATE(857), - [sym_commonmark_attribute] = STATE(857), - [sym_language_attribute] = STATE(857), - [sym__backslash_escape] = ACTIONS(3659), - [sym_entity_reference] = ACTIONS(3659), - [sym_numeric_character_reference] = ACTIONS(3659), - [anon_sym_LT] = ACTIONS(3661), - [anon_sym_GT] = ACTIONS(3659), - [anon_sym_BANG] = ACTIONS(3659), - [anon_sym_DQUOTE] = ACTIONS(3659), - [anon_sym_POUND] = ACTIONS(3659), - [anon_sym_DOLLAR] = ACTIONS(3659), - [anon_sym_PERCENT] = ACTIONS(3659), - [anon_sym_AMP] = ACTIONS(3661), - [anon_sym_SQUOTE] = ACTIONS(3659), - [anon_sym_STAR] = ACTIONS(3659), - [anon_sym_PLUS] = ACTIONS(3659), - [anon_sym_COMMA] = ACTIONS(3659), - [anon_sym_DASH] = ACTIONS(3661), - [anon_sym_DOT] = ACTIONS(3661), - [anon_sym_SLASH] = ACTIONS(3659), - [anon_sym_COLON] = ACTIONS(3659), - [anon_sym_SEMI] = ACTIONS(3659), - [anon_sym_EQ] = ACTIONS(3659), - [anon_sym_QMARK] = ACTIONS(3659), - [anon_sym_LBRACK] = ACTIONS(3661), - [anon_sym_BSLASH] = ACTIONS(3661), - [anon_sym_CARET] = ACTIONS(3661), - [anon_sym__] = ACTIONS(3659), - [anon_sym_BQUOTE] = ACTIONS(3659), - [anon_sym_LBRACE] = ACTIONS(3717), - [anon_sym_PIPE] = ACTIONS(3659), - [anon_sym_TILDE] = ACTIONS(3659), - [anon_sym_LPAREN] = ACTIONS(3659), - [anon_sym_RPAREN] = ACTIONS(3659), - [sym__newline_token] = ACTIONS(3659), - [anon_sym_CARET_LBRACK] = ACTIONS(3659), - [anon_sym_LBRACK_CARET] = ACTIONS(3659), - [sym_uri_autolink] = ACTIONS(3659), - [sym_email_autolink] = ACTIONS(3659), - [sym__whitespace_ge_2] = ACTIONS(3659), - [aux_sym__whitespace_token1] = ACTIONS(3661), - [sym__word_no_digit] = ACTIONS(3659), - [sym__digits] = ACTIONS(3659), - [anon_sym_DASH_DASH] = ACTIONS(3661), - [anon_sym_DASH_DASH_DASH] = ACTIONS(3659), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3659), - [sym__code_span_start] = ACTIONS(3659), - [sym__emphasis_open_star] = ACTIONS(3659), - [sym__emphasis_open_underscore] = ACTIONS(3659), - [sym__strikeout_open] = ACTIONS(3659), - [sym__latex_span_start] = ACTIONS(3659), - [sym__single_quote_open] = ACTIONS(3659), - [sym__double_quote_open] = ACTIONS(3659), - [sym__superscript_open] = ACTIONS(3659), - [sym__subscript_open] = ACTIONS(3659), - [sym__subscript_close] = ACTIONS(3659), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3659), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3659), - [sym__cite_author_in_text] = ACTIONS(3659), - [sym__cite_suppress_author] = ACTIONS(3659), - [sym__shortcode_open_escaped] = ACTIONS(3659), - [sym__shortcode_open] = ACTIONS(3659), - [sym__unclosed_span] = ACTIONS(3659), + [sym__qmd_attribute] = STATE(1364), + [sym_raw_attribute] = STATE(1364), + [sym_commonmark_attribute] = STATE(1364), + [sym_language_attribute] = STATE(1364), + [sym__backslash_escape] = ACTIONS(4592), + [sym_entity_reference] = ACTIONS(4592), + [sym_numeric_character_reference] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(4594), + [anon_sym_GT] = ACTIONS(4592), + [anon_sym_BANG] = ACTIONS(4592), + [anon_sym_DQUOTE] = ACTIONS(4592), + [anon_sym_POUND] = ACTIONS(4592), + [anon_sym_DOLLAR] = ACTIONS(4592), + [anon_sym_PERCENT] = ACTIONS(4592), + [anon_sym_AMP] = ACTIONS(4594), + [anon_sym_SQUOTE] = ACTIONS(4592), + [anon_sym_STAR] = ACTIONS(4592), + [anon_sym_PLUS] = ACTIONS(4592), + [anon_sym_COMMA] = ACTIONS(4592), + [anon_sym_DASH] = ACTIONS(4594), + [anon_sym_DOT] = ACTIONS(4594), + [anon_sym_SLASH] = ACTIONS(4592), + [anon_sym_COLON] = ACTIONS(4592), + [anon_sym_SEMI] = ACTIONS(4592), + [anon_sym_EQ] = ACTIONS(4592), + [anon_sym_QMARK] = ACTIONS(4592), + [anon_sym_LBRACK] = ACTIONS(4594), + [anon_sym_BSLASH] = ACTIONS(4594), + [anon_sym_CARET] = ACTIONS(4594), + [anon_sym__] = ACTIONS(4592), + [anon_sym_BQUOTE] = ACTIONS(4592), + [anon_sym_LBRACE] = ACTIONS(4580), + [anon_sym_PIPE] = ACTIONS(4592), + [anon_sym_TILDE] = ACTIONS(4592), + [anon_sym_LPAREN] = ACTIONS(4592), + [anon_sym_RPAREN] = ACTIONS(4592), + [sym__newline_token] = ACTIONS(4592), + [aux_sym_insert_token1] = ACTIONS(4592), + [aux_sym_delete_token1] = ACTIONS(4592), + [aux_sym_highlight_token1] = ACTIONS(4592), + [aux_sym_edit_comment_token1] = ACTIONS(4592), + [anon_sym_CARET_LBRACK] = ACTIONS(4592), + [anon_sym_LBRACK_CARET] = ACTIONS(4592), + [sym_uri_autolink] = ACTIONS(4592), + [sym_email_autolink] = ACTIONS(4592), + [sym__whitespace_ge_2] = ACTIONS(4592), + [aux_sym__whitespace_token1] = ACTIONS(4594), + [sym__word_no_digit] = ACTIONS(4592), + [sym__digits] = ACTIONS(4592), + [anon_sym_DASH_DASH] = ACTIONS(4594), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4592), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4592), + [sym__code_span_start] = ACTIONS(4592), + [sym__emphasis_open_star] = ACTIONS(4592), + [sym__emphasis_open_underscore] = ACTIONS(4592), + [sym__strikeout_open] = ACTIONS(4592), + [sym__latex_span_start] = ACTIONS(4592), + [sym__single_quote_open] = ACTIONS(4592), + [sym__double_quote_open] = ACTIONS(4592), + [sym__double_quote_close] = ACTIONS(4592), + [sym__superscript_open] = ACTIONS(4592), + [sym__subscript_open] = ACTIONS(4592), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4592), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4592), + [sym__cite_author_in_text] = ACTIONS(4592), + [sym__cite_suppress_author] = ACTIONS(4592), + [sym__shortcode_open_escaped] = ACTIONS(4592), + [sym__shortcode_open] = ACTIONS(4592), + [sym__unclosed_span] = ACTIONS(4592), }, [STATE(399)] = { - [sym__qmd_attribute] = STATE(863), - [sym_raw_attribute] = STATE(863), - [sym_commonmark_attribute] = STATE(863), - [sym_language_attribute] = STATE(863), - [sym__backslash_escape] = ACTIONS(3637), - [sym_entity_reference] = ACTIONS(3637), - [sym_numeric_character_reference] = ACTIONS(3637), - [anon_sym_LT] = ACTIONS(3639), - [anon_sym_GT] = ACTIONS(3637), - [anon_sym_BANG] = ACTIONS(3637), - [anon_sym_DQUOTE] = ACTIONS(3637), - [anon_sym_POUND] = ACTIONS(3637), - [anon_sym_DOLLAR] = ACTIONS(3637), - [anon_sym_PERCENT] = ACTIONS(3637), - [anon_sym_AMP] = ACTIONS(3639), - [anon_sym_SQUOTE] = ACTIONS(3637), - [anon_sym_STAR] = ACTIONS(3637), - [anon_sym_PLUS] = ACTIONS(3637), - [anon_sym_COMMA] = ACTIONS(3637), - [anon_sym_DASH] = ACTIONS(3639), - [anon_sym_DOT] = ACTIONS(3639), - [anon_sym_SLASH] = ACTIONS(3637), - [anon_sym_COLON] = ACTIONS(3637), - [anon_sym_SEMI] = ACTIONS(3637), - [anon_sym_EQ] = ACTIONS(3637), - [anon_sym_QMARK] = ACTIONS(3637), - [anon_sym_LBRACK] = ACTIONS(3639), - [anon_sym_BSLASH] = ACTIONS(3639), - [anon_sym_CARET] = ACTIONS(3639), - [anon_sym__] = ACTIONS(3637), - [anon_sym_BQUOTE] = ACTIONS(3637), - [anon_sym_LBRACE] = ACTIONS(3717), - [anon_sym_PIPE] = ACTIONS(3637), - [anon_sym_TILDE] = ACTIONS(3637), - [anon_sym_LPAREN] = ACTIONS(3637), - [anon_sym_RPAREN] = ACTIONS(3637), - [sym__newline_token] = ACTIONS(3637), - [anon_sym_CARET_LBRACK] = ACTIONS(3637), - [anon_sym_LBRACK_CARET] = ACTIONS(3637), - [sym_uri_autolink] = ACTIONS(3637), - [sym_email_autolink] = ACTIONS(3637), - [sym__whitespace_ge_2] = ACTIONS(3637), - [aux_sym__whitespace_token1] = ACTIONS(3639), - [sym__word_no_digit] = ACTIONS(3637), - [sym__digits] = ACTIONS(3637), - [anon_sym_DASH_DASH] = ACTIONS(3639), - [anon_sym_DASH_DASH_DASH] = ACTIONS(3637), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3637), - [sym__code_span_start] = ACTIONS(3637), - [sym__emphasis_open_star] = ACTIONS(3637), - [sym__emphasis_open_underscore] = ACTIONS(3637), - [sym__strikeout_open] = ACTIONS(3637), - [sym__latex_span_start] = ACTIONS(3637), - [sym__single_quote_open] = ACTIONS(3637), - [sym__double_quote_open] = ACTIONS(3637), - [sym__superscript_open] = ACTIONS(3637), - [sym__subscript_open] = ACTIONS(3637), - [sym__subscript_close] = ACTIONS(3637), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3637), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3637), - [sym__cite_author_in_text] = ACTIONS(3637), - [sym__cite_suppress_author] = ACTIONS(3637), - [sym__shortcode_open_escaped] = ACTIONS(3637), - [sym__shortcode_open] = ACTIONS(3637), - [sym__unclosed_span] = ACTIONS(3637), + [sym__qmd_attribute] = STATE(1393), + [sym_raw_attribute] = STATE(1393), + [sym_commonmark_attribute] = STATE(1393), + [sym_language_attribute] = STATE(1393), + [sym__backslash_escape] = ACTIONS(4596), + [sym_entity_reference] = ACTIONS(4596), + [sym_numeric_character_reference] = ACTIONS(4596), + [anon_sym_LT] = ACTIONS(4598), + [anon_sym_GT] = ACTIONS(4596), + [anon_sym_BANG] = ACTIONS(4596), + [anon_sym_DQUOTE] = ACTIONS(4596), + [anon_sym_POUND] = ACTIONS(4596), + [anon_sym_DOLLAR] = ACTIONS(4596), + [anon_sym_PERCENT] = ACTIONS(4596), + [anon_sym_AMP] = ACTIONS(4598), + [anon_sym_SQUOTE] = ACTIONS(4596), + [anon_sym_STAR] = ACTIONS(4596), + [anon_sym_PLUS] = ACTIONS(4596), + [anon_sym_COMMA] = ACTIONS(4596), + [anon_sym_DASH] = ACTIONS(4598), + [anon_sym_DOT] = ACTIONS(4598), + [anon_sym_SLASH] = ACTIONS(4596), + [anon_sym_COLON] = ACTIONS(4596), + [anon_sym_SEMI] = ACTIONS(4596), + [anon_sym_EQ] = ACTIONS(4596), + [anon_sym_QMARK] = ACTIONS(4596), + [anon_sym_LBRACK] = ACTIONS(4598), + [anon_sym_BSLASH] = ACTIONS(4598), + [anon_sym_CARET] = ACTIONS(4598), + [anon_sym__] = ACTIONS(4596), + [anon_sym_BQUOTE] = ACTIONS(4596), + [anon_sym_LBRACE] = ACTIONS(4580), + [anon_sym_PIPE] = ACTIONS(4596), + [anon_sym_TILDE] = ACTIONS(4596), + [anon_sym_LPAREN] = ACTIONS(4596), + [anon_sym_RPAREN] = ACTIONS(4596), + [sym__newline_token] = ACTIONS(4596), + [aux_sym_insert_token1] = ACTIONS(4596), + [aux_sym_delete_token1] = ACTIONS(4596), + [aux_sym_highlight_token1] = ACTIONS(4596), + [aux_sym_edit_comment_token1] = ACTIONS(4596), + [anon_sym_CARET_LBRACK] = ACTIONS(4596), + [anon_sym_LBRACK_CARET] = ACTIONS(4596), + [sym_uri_autolink] = ACTIONS(4596), + [sym_email_autolink] = ACTIONS(4596), + [sym__whitespace_ge_2] = ACTIONS(4596), + [aux_sym__whitespace_token1] = ACTIONS(4598), + [sym__word_no_digit] = ACTIONS(4596), + [sym__digits] = ACTIONS(4596), + [anon_sym_DASH_DASH] = ACTIONS(4598), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4596), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4596), + [sym__code_span_start] = ACTIONS(4596), + [sym__emphasis_open_star] = ACTIONS(4596), + [sym__emphasis_open_underscore] = ACTIONS(4596), + [sym__strikeout_open] = ACTIONS(4596), + [sym__latex_span_start] = ACTIONS(4596), + [sym__single_quote_open] = ACTIONS(4596), + [sym__double_quote_open] = ACTIONS(4596), + [sym__double_quote_close] = ACTIONS(4596), + [sym__superscript_open] = ACTIONS(4596), + [sym__subscript_open] = ACTIONS(4596), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4596), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4596), + [sym__cite_author_in_text] = ACTIONS(4596), + [sym__cite_suppress_author] = ACTIONS(4596), + [sym__shortcode_open_escaped] = ACTIONS(4596), + [sym__shortcode_open] = ACTIONS(4596), + [sym__unclosed_span] = ACTIONS(4596), }, [STATE(400)] = { - [sym__qmd_attribute] = STATE(634), - [sym_raw_attribute] = STATE(634), - [sym_commonmark_attribute] = STATE(634), - [sym_language_attribute] = STATE(634), - [sym__backslash_escape] = ACTIONS(3705), - [sym_entity_reference] = ACTIONS(3705), - [sym_numeric_character_reference] = ACTIONS(3705), - [anon_sym_LT] = ACTIONS(3707), - [anon_sym_GT] = ACTIONS(3705), - [anon_sym_BANG] = ACTIONS(3705), - [anon_sym_DQUOTE] = ACTIONS(3705), - [anon_sym_POUND] = ACTIONS(3705), - [anon_sym_DOLLAR] = ACTIONS(3705), - [anon_sym_PERCENT] = ACTIONS(3705), - [anon_sym_AMP] = ACTIONS(3707), - [anon_sym_SQUOTE] = ACTIONS(3705), - [anon_sym_STAR] = ACTIONS(3705), - [anon_sym_PLUS] = ACTIONS(3705), - [anon_sym_COMMA] = ACTIONS(3705), - [anon_sym_DASH] = ACTIONS(3707), - [anon_sym_DOT] = ACTIONS(3707), - [anon_sym_SLASH] = ACTIONS(3705), - [anon_sym_COLON] = ACTIONS(3705), - [anon_sym_SEMI] = ACTIONS(3705), - [anon_sym_EQ] = ACTIONS(3705), - [anon_sym_QMARK] = ACTIONS(3705), - [anon_sym_LBRACK] = ACTIONS(3707), - [anon_sym_BSLASH] = ACTIONS(3707), - [anon_sym_CARET] = ACTIONS(3707), - [anon_sym__] = ACTIONS(3705), - [anon_sym_BQUOTE] = ACTIONS(3705), - [anon_sym_LBRACE] = ACTIONS(3641), - [anon_sym_PIPE] = ACTIONS(3705), - [anon_sym_TILDE] = ACTIONS(3705), - [anon_sym_LPAREN] = ACTIONS(3705), - [anon_sym_RPAREN] = ACTIONS(3705), - [sym__newline_token] = ACTIONS(3705), - [anon_sym_CARET_LBRACK] = ACTIONS(3705), - [anon_sym_LBRACK_CARET] = ACTIONS(3705), - [sym_uri_autolink] = ACTIONS(3705), - [sym_email_autolink] = ACTIONS(3705), - [sym__whitespace_ge_2] = ACTIONS(3705), - [aux_sym__whitespace_token1] = ACTIONS(3707), - [sym__word_no_digit] = ACTIONS(3705), - [sym__digits] = ACTIONS(3705), - [anon_sym_DASH_DASH] = ACTIONS(3707), - [anon_sym_DASH_DASH_DASH] = ACTIONS(3705), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3705), - [sym__code_span_start] = ACTIONS(3705), - [sym__emphasis_open_star] = ACTIONS(3705), - [sym__emphasis_open_underscore] = ACTIONS(3705), - [sym__strikeout_open] = ACTIONS(3705), - [sym__latex_span_start] = ACTIONS(3705), - [sym__single_quote_open] = ACTIONS(3705), - [sym__double_quote_open] = ACTIONS(3705), - [sym__double_quote_close] = ACTIONS(3705), - [sym__superscript_open] = ACTIONS(3705), - [sym__subscript_open] = ACTIONS(3705), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3705), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3705), - [sym__cite_author_in_text] = ACTIONS(3705), - [sym__cite_suppress_author] = ACTIONS(3705), - [sym__shortcode_open_escaped] = ACTIONS(3705), - [sym__shortcode_open] = ACTIONS(3705), - [sym__unclosed_span] = ACTIONS(3705), + [sym__qmd_attribute] = STATE(935), + [sym_raw_attribute] = STATE(935), + [sym_commonmark_attribute] = STATE(935), + [sym_language_attribute] = STATE(935), + [sym__backslash_escape] = ACTIONS(4540), + [sym_entity_reference] = ACTIONS(4540), + [sym_numeric_character_reference] = ACTIONS(4540), + [anon_sym_LT] = ACTIONS(4542), + [anon_sym_GT] = ACTIONS(4540), + [anon_sym_BANG] = ACTIONS(4540), + [anon_sym_DQUOTE] = ACTIONS(4540), + [anon_sym_POUND] = ACTIONS(4540), + [anon_sym_DOLLAR] = ACTIONS(4540), + [anon_sym_PERCENT] = ACTIONS(4540), + [anon_sym_AMP] = ACTIONS(4542), + [anon_sym_SQUOTE] = ACTIONS(4540), + [anon_sym_STAR] = ACTIONS(4540), + [anon_sym_PLUS] = ACTIONS(4540), + [anon_sym_COMMA] = ACTIONS(4540), + [anon_sym_DASH] = ACTIONS(4542), + [anon_sym_DOT] = ACTIONS(4542), + [anon_sym_SLASH] = ACTIONS(4540), + [anon_sym_COLON] = ACTIONS(4540), + [anon_sym_SEMI] = ACTIONS(4540), + [anon_sym_EQ] = ACTIONS(4540), + [anon_sym_QMARK] = ACTIONS(4540), + [anon_sym_LBRACK] = ACTIONS(4542), + [anon_sym_BSLASH] = ACTIONS(4542), + [anon_sym_CARET] = ACTIONS(4542), + [anon_sym__] = ACTIONS(4540), + [anon_sym_BQUOTE] = ACTIONS(4540), + [anon_sym_LBRACE] = ACTIONS(4570), + [anon_sym_PIPE] = ACTIONS(4540), + [anon_sym_TILDE] = ACTIONS(4540), + [anon_sym_LPAREN] = ACTIONS(4540), + [anon_sym_RPAREN] = ACTIONS(4540), + [sym__newline_token] = ACTIONS(4540), + [aux_sym_insert_token1] = ACTIONS(4540), + [aux_sym_delete_token1] = ACTIONS(4540), + [aux_sym_highlight_token1] = ACTIONS(4540), + [aux_sym_edit_comment_token1] = ACTIONS(4540), + [anon_sym_CARET_LBRACK] = ACTIONS(4540), + [anon_sym_LBRACK_CARET] = ACTIONS(4540), + [sym_uri_autolink] = ACTIONS(4540), + [sym_email_autolink] = ACTIONS(4540), + [sym__whitespace_ge_2] = ACTIONS(4540), + [aux_sym__whitespace_token1] = ACTIONS(4542), + [sym__word_no_digit] = ACTIONS(4540), + [sym__digits] = ACTIONS(4540), + [anon_sym_DASH_DASH] = ACTIONS(4542), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4540), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4540), + [sym__code_span_start] = ACTIONS(4540), + [sym__emphasis_open_star] = ACTIONS(4540), + [sym__emphasis_open_underscore] = ACTIONS(4540), + [sym__emphasis_close_underscore] = ACTIONS(4540), + [sym__strikeout_open] = ACTIONS(4540), + [sym__latex_span_start] = ACTIONS(4540), + [sym__single_quote_open] = ACTIONS(4540), + [sym__double_quote_open] = ACTIONS(4540), + [sym__superscript_open] = ACTIONS(4540), + [sym__subscript_open] = ACTIONS(4540), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4540), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4540), + [sym__cite_author_in_text] = ACTIONS(4540), + [sym__cite_suppress_author] = ACTIONS(4540), + [sym__shortcode_open_escaped] = ACTIONS(4540), + [sym__shortcode_open] = ACTIONS(4540), + [sym__unclosed_span] = ACTIONS(4540), }, [STATE(401)] = { - [sym__qmd_attribute] = STATE(534), - [sym_raw_attribute] = STATE(534), - [sym_commonmark_attribute] = STATE(534), - [sym_language_attribute] = STATE(534), - [sym__backslash_escape] = ACTIONS(3691), - [sym_entity_reference] = ACTIONS(3691), - [sym_numeric_character_reference] = ACTIONS(3691), - [anon_sym_LT] = ACTIONS(3693), - [anon_sym_GT] = ACTIONS(3691), - [anon_sym_BANG] = ACTIONS(3691), - [anon_sym_DQUOTE] = ACTIONS(3691), - [anon_sym_POUND] = ACTIONS(3691), - [anon_sym_DOLLAR] = ACTIONS(3691), - [anon_sym_PERCENT] = ACTIONS(3691), - [anon_sym_AMP] = ACTIONS(3693), - [anon_sym_SQUOTE] = ACTIONS(3691), - [anon_sym_STAR] = ACTIONS(3691), - [anon_sym_PLUS] = ACTIONS(3691), - [anon_sym_COMMA] = ACTIONS(3691), - [anon_sym_DASH] = ACTIONS(3693), - [anon_sym_DOT] = ACTIONS(3693), - [anon_sym_SLASH] = ACTIONS(3691), - [anon_sym_COLON] = ACTIONS(3691), - [anon_sym_SEMI] = ACTIONS(3691), - [anon_sym_EQ] = ACTIONS(3691), - [anon_sym_QMARK] = ACTIONS(3691), - [anon_sym_LBRACK] = ACTIONS(3693), - [anon_sym_BSLASH] = ACTIONS(3693), - [anon_sym_CARET] = ACTIONS(3693), - [anon_sym__] = ACTIONS(3691), - [anon_sym_BQUOTE] = ACTIONS(3691), - [anon_sym_LBRACE] = ACTIONS(3725), - [anon_sym_PIPE] = ACTIONS(3691), - [anon_sym_TILDE] = ACTIONS(3691), - [anon_sym_LPAREN] = ACTIONS(3727), - [anon_sym_RPAREN] = ACTIONS(3691), - [sym__newline_token] = ACTIONS(3691), - [anon_sym_CARET_LBRACK] = ACTIONS(3691), - [anon_sym_LBRACK_CARET] = ACTIONS(3691), - [sym_uri_autolink] = ACTIONS(3691), - [sym_email_autolink] = ACTIONS(3691), - [sym__whitespace_ge_2] = ACTIONS(3691), - [aux_sym__whitespace_token1] = ACTIONS(3693), - [sym__word_no_digit] = ACTIONS(3691), - [sym__digits] = ACTIONS(3691), - [anon_sym_DASH_DASH] = ACTIONS(3693), - [anon_sym_DASH_DASH_DASH] = ACTIONS(3691), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3691), - [sym__code_span_start] = ACTIONS(3691), - [sym__emphasis_open_star] = ACTIONS(3691), - [sym__emphasis_open_underscore] = ACTIONS(3691), - [sym__strikeout_open] = ACTIONS(3691), - [sym__latex_span_start] = ACTIONS(3691), - [sym__single_quote_open] = ACTIONS(3691), - [sym__single_quote_close] = ACTIONS(3691), - [sym__double_quote_open] = ACTIONS(3691), - [sym__superscript_open] = ACTIONS(3691), - [sym__subscript_open] = ACTIONS(3691), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3691), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3691), - [sym__cite_author_in_text] = ACTIONS(3691), - [sym__cite_suppress_author] = ACTIONS(3691), - [sym__shortcode_open_escaped] = ACTIONS(3691), - [sym__shortcode_open] = ACTIONS(3691), - [sym__unclosed_span] = ACTIONS(3691), + [sym__qmd_attribute] = STATE(658), + [sym_raw_attribute] = STATE(658), + [sym_commonmark_attribute] = STATE(658), + [sym_language_attribute] = STATE(658), + [sym__backslash_escape] = ACTIONS(4600), + [sym_entity_reference] = ACTIONS(4600), + [sym_numeric_character_reference] = ACTIONS(4600), + [anon_sym_LT] = ACTIONS(4602), + [anon_sym_GT] = ACTIONS(4600), + [anon_sym_BANG] = ACTIONS(4600), + [anon_sym_DQUOTE] = ACTIONS(4600), + [anon_sym_POUND] = ACTIONS(4600), + [anon_sym_DOLLAR] = ACTIONS(4600), + [anon_sym_PERCENT] = ACTIONS(4600), + [anon_sym_AMP] = ACTIONS(4602), + [anon_sym_SQUOTE] = ACTIONS(4600), + [anon_sym_STAR] = ACTIONS(4600), + [anon_sym_PLUS] = ACTIONS(4600), + [anon_sym_COMMA] = ACTIONS(4600), + [anon_sym_DASH] = ACTIONS(4602), + [anon_sym_DOT] = ACTIONS(4602), + [anon_sym_SLASH] = ACTIONS(4600), + [anon_sym_COLON] = ACTIONS(4600), + [anon_sym_SEMI] = ACTIONS(4600), + [anon_sym_EQ] = ACTIONS(4600), + [anon_sym_QMARK] = ACTIONS(4600), + [anon_sym_LBRACK] = ACTIONS(4602), + [anon_sym_BSLASH] = ACTIONS(4602), + [anon_sym_CARET] = ACTIONS(4602), + [anon_sym__] = ACTIONS(4600), + [anon_sym_BQUOTE] = ACTIONS(4600), + [anon_sym_LBRACE] = ACTIONS(4580), + [anon_sym_PIPE] = ACTIONS(4600), + [anon_sym_TILDE] = ACTIONS(4600), + [anon_sym_LPAREN] = ACTIONS(4600), + [anon_sym_RPAREN] = ACTIONS(4600), + [sym__newline_token] = ACTIONS(4600), + [aux_sym_insert_token1] = ACTIONS(4600), + [aux_sym_delete_token1] = ACTIONS(4600), + [aux_sym_highlight_token1] = ACTIONS(4600), + [aux_sym_edit_comment_token1] = ACTIONS(4600), + [anon_sym_CARET_LBRACK] = ACTIONS(4600), + [anon_sym_LBRACK_CARET] = ACTIONS(4600), + [sym_uri_autolink] = ACTIONS(4600), + [sym_email_autolink] = ACTIONS(4600), + [sym__whitespace_ge_2] = ACTIONS(4600), + [aux_sym__whitespace_token1] = ACTIONS(4602), + [sym__word_no_digit] = ACTIONS(4600), + [sym__digits] = ACTIONS(4600), + [anon_sym_DASH_DASH] = ACTIONS(4602), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4600), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4600), + [sym__code_span_start] = ACTIONS(4600), + [sym__emphasis_open_star] = ACTIONS(4600), + [sym__emphasis_open_underscore] = ACTIONS(4600), + [sym__strikeout_open] = ACTIONS(4600), + [sym__latex_span_start] = ACTIONS(4600), + [sym__single_quote_open] = ACTIONS(4600), + [sym__double_quote_open] = ACTIONS(4600), + [sym__double_quote_close] = ACTIONS(4600), + [sym__superscript_open] = ACTIONS(4600), + [sym__subscript_open] = ACTIONS(4600), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4600), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4600), + [sym__cite_author_in_text] = ACTIONS(4600), + [sym__cite_suppress_author] = ACTIONS(4600), + [sym__shortcode_open_escaped] = ACTIONS(4600), + [sym__shortcode_open] = ACTIONS(4600), + [sym__unclosed_span] = ACTIONS(4600), }, [STATE(402)] = { - [sym__qmd_attribute] = STATE(535), - [sym_raw_attribute] = STATE(535), - [sym_commonmark_attribute] = STATE(535), - [sym_language_attribute] = STATE(535), - [sym__backslash_escape] = ACTIONS(3697), - [sym_entity_reference] = ACTIONS(3697), - [sym_numeric_character_reference] = ACTIONS(3697), - [anon_sym_LT] = ACTIONS(3699), - [anon_sym_GT] = ACTIONS(3697), - [anon_sym_BANG] = ACTIONS(3697), - [anon_sym_DQUOTE] = ACTIONS(3697), - [anon_sym_POUND] = ACTIONS(3697), - [anon_sym_DOLLAR] = ACTIONS(3697), - [anon_sym_PERCENT] = ACTIONS(3697), - [anon_sym_AMP] = ACTIONS(3699), - [anon_sym_SQUOTE] = ACTIONS(3697), - [anon_sym_STAR] = ACTIONS(3697), - [anon_sym_PLUS] = ACTIONS(3697), - [anon_sym_COMMA] = ACTIONS(3697), - [anon_sym_DASH] = ACTIONS(3699), - [anon_sym_DOT] = ACTIONS(3699), - [anon_sym_SLASH] = ACTIONS(3697), - [anon_sym_COLON] = ACTIONS(3697), - [anon_sym_SEMI] = ACTIONS(3697), - [anon_sym_EQ] = ACTIONS(3697), - [anon_sym_QMARK] = ACTIONS(3697), - [anon_sym_LBRACK] = ACTIONS(3699), - [anon_sym_BSLASH] = ACTIONS(3699), - [anon_sym_CARET] = ACTIONS(3699), - [anon_sym__] = ACTIONS(3697), - [anon_sym_BQUOTE] = ACTIONS(3697), - [anon_sym_LBRACE] = ACTIONS(3725), - [anon_sym_PIPE] = ACTIONS(3697), - [anon_sym_TILDE] = ACTIONS(3697), - [anon_sym_LPAREN] = ACTIONS(3697), - [anon_sym_RPAREN] = ACTIONS(3697), - [sym__newline_token] = ACTIONS(3697), - [anon_sym_CARET_LBRACK] = ACTIONS(3697), - [anon_sym_LBRACK_CARET] = ACTIONS(3697), - [sym_uri_autolink] = ACTIONS(3697), - [sym_email_autolink] = ACTIONS(3697), - [sym__whitespace_ge_2] = ACTIONS(3697), - [aux_sym__whitespace_token1] = ACTIONS(3699), - [sym__word_no_digit] = ACTIONS(3697), - [sym__digits] = ACTIONS(3697), - [anon_sym_DASH_DASH] = ACTIONS(3699), - [anon_sym_DASH_DASH_DASH] = ACTIONS(3697), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3697), - [sym__code_span_start] = ACTIONS(3697), - [sym__emphasis_open_star] = ACTIONS(3697), - [sym__emphasis_open_underscore] = ACTIONS(3697), - [sym__strikeout_open] = ACTIONS(3697), - [sym__latex_span_start] = ACTIONS(3697), - [sym__single_quote_open] = ACTIONS(3697), - [sym__single_quote_close] = ACTIONS(3697), - [sym__double_quote_open] = ACTIONS(3697), - [sym__superscript_open] = ACTIONS(3697), - [sym__subscript_open] = ACTIONS(3697), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3697), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3697), - [sym__cite_author_in_text] = ACTIONS(3697), - [sym__cite_suppress_author] = ACTIONS(3697), - [sym__shortcode_open_escaped] = ACTIONS(3697), - [sym__shortcode_open] = ACTIONS(3697), - [sym__unclosed_span] = ACTIONS(3697), + [sym__qmd_attribute] = STATE(1181), + [sym_raw_attribute] = STATE(1181), + [sym_commonmark_attribute] = STATE(1181), + [sym_language_attribute] = STATE(1181), + [ts_builtin_sym_end] = ACTIONS(4596), + [sym__backslash_escape] = ACTIONS(4596), + [sym_entity_reference] = ACTIONS(4596), + [sym_numeric_character_reference] = ACTIONS(4596), + [anon_sym_LT] = ACTIONS(4598), + [anon_sym_GT] = ACTIONS(4596), + [anon_sym_BANG] = ACTIONS(4596), + [anon_sym_DQUOTE] = ACTIONS(4596), + [anon_sym_POUND] = ACTIONS(4596), + [anon_sym_DOLLAR] = ACTIONS(4596), + [anon_sym_PERCENT] = ACTIONS(4596), + [anon_sym_AMP] = ACTIONS(4598), + [anon_sym_SQUOTE] = ACTIONS(4596), + [anon_sym_STAR] = ACTIONS(4596), + [anon_sym_PLUS] = ACTIONS(4596), + [anon_sym_COMMA] = ACTIONS(4596), + [anon_sym_DASH] = ACTIONS(4598), + [anon_sym_DOT] = ACTIONS(4598), + [anon_sym_SLASH] = ACTIONS(4596), + [anon_sym_COLON] = ACTIONS(4596), + [anon_sym_SEMI] = ACTIONS(4596), + [anon_sym_EQ] = ACTIONS(4596), + [anon_sym_QMARK] = ACTIONS(4596), + [anon_sym_LBRACK] = ACTIONS(4598), + [anon_sym_BSLASH] = ACTIONS(4598), + [anon_sym_CARET] = ACTIONS(4598), + [anon_sym__] = ACTIONS(4596), + [anon_sym_BQUOTE] = ACTIONS(4596), + [anon_sym_LBRACE] = ACTIONS(4604), + [anon_sym_PIPE] = ACTIONS(4596), + [anon_sym_TILDE] = ACTIONS(4596), + [anon_sym_LPAREN] = ACTIONS(4596), + [anon_sym_RPAREN] = ACTIONS(4596), + [sym__newline_token] = ACTIONS(4596), + [aux_sym_insert_token1] = ACTIONS(4596), + [aux_sym_delete_token1] = ACTIONS(4596), + [aux_sym_highlight_token1] = ACTIONS(4596), + [aux_sym_edit_comment_token1] = ACTIONS(4596), + [anon_sym_CARET_LBRACK] = ACTIONS(4596), + [anon_sym_LBRACK_CARET] = ACTIONS(4596), + [sym_uri_autolink] = ACTIONS(4596), + [sym_email_autolink] = ACTIONS(4596), + [sym__whitespace_ge_2] = ACTIONS(4596), + [aux_sym__whitespace_token1] = ACTIONS(4598), + [sym__word_no_digit] = ACTIONS(4596), + [sym__digits] = ACTIONS(4596), + [anon_sym_DASH_DASH] = ACTIONS(4598), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4596), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4596), + [sym__code_span_start] = ACTIONS(4596), + [sym__emphasis_open_star] = ACTIONS(4596), + [sym__emphasis_open_underscore] = ACTIONS(4596), + [sym__strikeout_open] = ACTIONS(4596), + [sym__latex_span_start] = ACTIONS(4596), + [sym__single_quote_open] = ACTIONS(4596), + [sym__double_quote_open] = ACTIONS(4596), + [sym__superscript_open] = ACTIONS(4596), + [sym__subscript_open] = ACTIONS(4596), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4596), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4596), + [sym__cite_author_in_text] = ACTIONS(4596), + [sym__cite_suppress_author] = ACTIONS(4596), + [sym__shortcode_open_escaped] = ACTIONS(4596), + [sym__shortcode_open] = ACTIONS(4596), + [sym__unclosed_span] = ACTIONS(4596), }, [STATE(403)] = { - [sym__qmd_attribute] = STATE(865), - [sym_raw_attribute] = STATE(865), - [sym_commonmark_attribute] = STATE(865), - [sym_language_attribute] = STATE(865), - [sym__backslash_escape] = ACTIONS(3663), - [sym_entity_reference] = ACTIONS(3663), - [sym_numeric_character_reference] = ACTIONS(3663), - [anon_sym_LT] = ACTIONS(3665), - [anon_sym_GT] = ACTIONS(3663), - [anon_sym_BANG] = ACTIONS(3663), - [anon_sym_DQUOTE] = ACTIONS(3663), - [anon_sym_POUND] = ACTIONS(3663), - [anon_sym_DOLLAR] = ACTIONS(3663), - [anon_sym_PERCENT] = ACTIONS(3663), - [anon_sym_AMP] = ACTIONS(3665), - [anon_sym_SQUOTE] = ACTIONS(3663), - [anon_sym_STAR] = ACTIONS(3663), - [anon_sym_PLUS] = ACTIONS(3663), - [anon_sym_COMMA] = ACTIONS(3663), - [anon_sym_DASH] = ACTIONS(3665), - [anon_sym_DOT] = ACTIONS(3665), - [anon_sym_SLASH] = ACTIONS(3663), - [anon_sym_COLON] = ACTIONS(3663), - [anon_sym_SEMI] = ACTIONS(3663), - [anon_sym_EQ] = ACTIONS(3663), - [anon_sym_QMARK] = ACTIONS(3663), - [anon_sym_LBRACK] = ACTIONS(3665), - [anon_sym_BSLASH] = ACTIONS(3665), - [anon_sym_CARET] = ACTIONS(3665), - [anon_sym__] = ACTIONS(3663), - [anon_sym_BQUOTE] = ACTIONS(3663), - [anon_sym_LBRACE] = ACTIONS(3717), - [anon_sym_PIPE] = ACTIONS(3663), - [anon_sym_TILDE] = ACTIONS(3663), - [anon_sym_LPAREN] = ACTIONS(3663), - [anon_sym_RPAREN] = ACTIONS(3663), - [sym__newline_token] = ACTIONS(3663), - [anon_sym_CARET_LBRACK] = ACTIONS(3663), - [anon_sym_LBRACK_CARET] = ACTIONS(3663), - [sym_uri_autolink] = ACTIONS(3663), - [sym_email_autolink] = ACTIONS(3663), - [sym__whitespace_ge_2] = ACTIONS(3663), - [aux_sym__whitespace_token1] = ACTIONS(3665), - [sym__word_no_digit] = ACTIONS(3663), - [sym__digits] = ACTIONS(3663), - [anon_sym_DASH_DASH] = ACTIONS(3665), - [anon_sym_DASH_DASH_DASH] = ACTIONS(3663), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3663), - [sym__code_span_start] = ACTIONS(3663), - [sym__emphasis_open_star] = ACTIONS(3663), - [sym__emphasis_open_underscore] = ACTIONS(3663), - [sym__strikeout_open] = ACTIONS(3663), - [sym__latex_span_start] = ACTIONS(3663), - [sym__single_quote_open] = ACTIONS(3663), - [sym__double_quote_open] = ACTIONS(3663), - [sym__superscript_open] = ACTIONS(3663), - [sym__subscript_open] = ACTIONS(3663), - [sym__subscript_close] = ACTIONS(3663), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3663), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3663), - [sym__cite_author_in_text] = ACTIONS(3663), - [sym__cite_suppress_author] = ACTIONS(3663), - [sym__shortcode_open_escaped] = ACTIONS(3663), - [sym__shortcode_open] = ACTIONS(3663), - [sym__unclosed_span] = ACTIONS(3663), + [sym__qmd_attribute] = STATE(667), + [sym_raw_attribute] = STATE(667), + [sym_commonmark_attribute] = STATE(667), + [sym_language_attribute] = STATE(667), + [sym__backslash_escape] = ACTIONS(4606), + [sym_entity_reference] = ACTIONS(4606), + [sym_numeric_character_reference] = ACTIONS(4606), + [anon_sym_LT] = ACTIONS(4608), + [anon_sym_GT] = ACTIONS(4606), + [anon_sym_BANG] = ACTIONS(4606), + [anon_sym_DQUOTE] = ACTIONS(4606), + [anon_sym_POUND] = ACTIONS(4606), + [anon_sym_DOLLAR] = ACTIONS(4606), + [anon_sym_PERCENT] = ACTIONS(4606), + [anon_sym_AMP] = ACTIONS(4608), + [anon_sym_SQUOTE] = ACTIONS(4606), + [anon_sym_STAR] = ACTIONS(4606), + [anon_sym_PLUS] = ACTIONS(4606), + [anon_sym_COMMA] = ACTIONS(4606), + [anon_sym_DASH] = ACTIONS(4608), + [anon_sym_DOT] = ACTIONS(4608), + [anon_sym_SLASH] = ACTIONS(4606), + [anon_sym_COLON] = ACTIONS(4606), + [anon_sym_SEMI] = ACTIONS(4606), + [anon_sym_EQ] = ACTIONS(4606), + [anon_sym_QMARK] = ACTIONS(4606), + [anon_sym_LBRACK] = ACTIONS(4608), + [anon_sym_BSLASH] = ACTIONS(4608), + [anon_sym_CARET] = ACTIONS(4608), + [anon_sym__] = ACTIONS(4606), + [anon_sym_BQUOTE] = ACTIONS(4606), + [anon_sym_LBRACE] = ACTIONS(4580), + [anon_sym_PIPE] = ACTIONS(4606), + [anon_sym_TILDE] = ACTIONS(4606), + [anon_sym_LPAREN] = ACTIONS(4606), + [anon_sym_RPAREN] = ACTIONS(4606), + [sym__newline_token] = ACTIONS(4606), + [aux_sym_insert_token1] = ACTIONS(4606), + [aux_sym_delete_token1] = ACTIONS(4606), + [aux_sym_highlight_token1] = ACTIONS(4606), + [aux_sym_edit_comment_token1] = ACTIONS(4606), + [anon_sym_CARET_LBRACK] = ACTIONS(4606), + [anon_sym_LBRACK_CARET] = ACTIONS(4606), + [sym_uri_autolink] = ACTIONS(4606), + [sym_email_autolink] = ACTIONS(4606), + [sym__whitespace_ge_2] = ACTIONS(4606), + [aux_sym__whitespace_token1] = ACTIONS(4608), + [sym__word_no_digit] = ACTIONS(4606), + [sym__digits] = ACTIONS(4606), + [anon_sym_DASH_DASH] = ACTIONS(4608), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4606), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4606), + [sym__code_span_start] = ACTIONS(4606), + [sym__emphasis_open_star] = ACTIONS(4606), + [sym__emphasis_open_underscore] = ACTIONS(4606), + [sym__strikeout_open] = ACTIONS(4606), + [sym__latex_span_start] = ACTIONS(4606), + [sym__single_quote_open] = ACTIONS(4606), + [sym__double_quote_open] = ACTIONS(4606), + [sym__double_quote_close] = ACTIONS(4606), + [sym__superscript_open] = ACTIONS(4606), + [sym__subscript_open] = ACTIONS(4606), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4606), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4606), + [sym__cite_author_in_text] = ACTIONS(4606), + [sym__cite_suppress_author] = ACTIONS(4606), + [sym__shortcode_open_escaped] = ACTIONS(4606), + [sym__shortcode_open] = ACTIONS(4606), + [sym__unclosed_span] = ACTIONS(4606), }, [STATE(404)] = { - [sym__qmd_attribute] = STATE(537), - [sym_raw_attribute] = STATE(537), - [sym_commonmark_attribute] = STATE(537), - [sym_language_attribute] = STATE(537), - [sym__backslash_escape] = ACTIONS(3705), - [sym_entity_reference] = ACTIONS(3705), - [sym_numeric_character_reference] = ACTIONS(3705), - [anon_sym_LT] = ACTIONS(3707), - [anon_sym_GT] = ACTIONS(3705), - [anon_sym_BANG] = ACTIONS(3705), - [anon_sym_DQUOTE] = ACTIONS(3705), - [anon_sym_POUND] = ACTIONS(3705), - [anon_sym_DOLLAR] = ACTIONS(3705), - [anon_sym_PERCENT] = ACTIONS(3705), - [anon_sym_AMP] = ACTIONS(3707), - [anon_sym_SQUOTE] = ACTIONS(3705), - [anon_sym_STAR] = ACTIONS(3705), - [anon_sym_PLUS] = ACTIONS(3705), - [anon_sym_COMMA] = ACTIONS(3705), - [anon_sym_DASH] = ACTIONS(3707), - [anon_sym_DOT] = ACTIONS(3707), - [anon_sym_SLASH] = ACTIONS(3705), - [anon_sym_COLON] = ACTIONS(3705), - [anon_sym_SEMI] = ACTIONS(3705), - [anon_sym_EQ] = ACTIONS(3705), - [anon_sym_QMARK] = ACTIONS(3705), - [anon_sym_LBRACK] = ACTIONS(3707), - [anon_sym_BSLASH] = ACTIONS(3707), - [anon_sym_CARET] = ACTIONS(3707), - [anon_sym__] = ACTIONS(3705), - [anon_sym_BQUOTE] = ACTIONS(3705), - [anon_sym_LBRACE] = ACTIONS(3725), - [anon_sym_PIPE] = ACTIONS(3705), - [anon_sym_TILDE] = ACTIONS(3705), - [anon_sym_LPAREN] = ACTIONS(3705), - [anon_sym_RPAREN] = ACTIONS(3705), - [sym__newline_token] = ACTIONS(3705), - [anon_sym_CARET_LBRACK] = ACTIONS(3705), - [anon_sym_LBRACK_CARET] = ACTIONS(3705), - [sym_uri_autolink] = ACTIONS(3705), - [sym_email_autolink] = ACTIONS(3705), - [sym__whitespace_ge_2] = ACTIONS(3705), - [aux_sym__whitespace_token1] = ACTIONS(3707), - [sym__word_no_digit] = ACTIONS(3705), - [sym__digits] = ACTIONS(3705), - [anon_sym_DASH_DASH] = ACTIONS(3707), - [anon_sym_DASH_DASH_DASH] = ACTIONS(3705), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3705), - [sym__code_span_start] = ACTIONS(3705), - [sym__emphasis_open_star] = ACTIONS(3705), - [sym__emphasis_open_underscore] = ACTIONS(3705), - [sym__strikeout_open] = ACTIONS(3705), - [sym__latex_span_start] = ACTIONS(3705), - [sym__single_quote_open] = ACTIONS(3705), - [sym__single_quote_close] = ACTIONS(3705), - [sym__double_quote_open] = ACTIONS(3705), - [sym__superscript_open] = ACTIONS(3705), - [sym__subscript_open] = ACTIONS(3705), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3705), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3705), - [sym__cite_author_in_text] = ACTIONS(3705), - [sym__cite_suppress_author] = ACTIONS(3705), - [sym__shortcode_open_escaped] = ACTIONS(3705), - [sym__shortcode_open] = ACTIONS(3705), - [sym__unclosed_span] = ACTIONS(3705), + [sym__qmd_attribute] = STATE(669), + [sym_raw_attribute] = STATE(669), + [sym_commonmark_attribute] = STATE(669), + [sym_language_attribute] = STATE(669), + [sym__backslash_escape] = ACTIONS(4610), + [sym_entity_reference] = ACTIONS(4610), + [sym_numeric_character_reference] = ACTIONS(4610), + [anon_sym_LT] = ACTIONS(4612), + [anon_sym_GT] = ACTIONS(4610), + [anon_sym_BANG] = ACTIONS(4610), + [anon_sym_DQUOTE] = ACTIONS(4610), + [anon_sym_POUND] = ACTIONS(4610), + [anon_sym_DOLLAR] = ACTIONS(4610), + [anon_sym_PERCENT] = ACTIONS(4610), + [anon_sym_AMP] = ACTIONS(4612), + [anon_sym_SQUOTE] = ACTIONS(4610), + [anon_sym_STAR] = ACTIONS(4610), + [anon_sym_PLUS] = ACTIONS(4610), + [anon_sym_COMMA] = ACTIONS(4610), + [anon_sym_DASH] = ACTIONS(4612), + [anon_sym_DOT] = ACTIONS(4612), + [anon_sym_SLASH] = ACTIONS(4610), + [anon_sym_COLON] = ACTIONS(4610), + [anon_sym_SEMI] = ACTIONS(4610), + [anon_sym_EQ] = ACTIONS(4610), + [anon_sym_QMARK] = ACTIONS(4610), + [anon_sym_LBRACK] = ACTIONS(4612), + [anon_sym_BSLASH] = ACTIONS(4612), + [anon_sym_CARET] = ACTIONS(4612), + [anon_sym__] = ACTIONS(4610), + [anon_sym_BQUOTE] = ACTIONS(4610), + [anon_sym_LBRACE] = ACTIONS(4580), + [anon_sym_PIPE] = ACTIONS(4610), + [anon_sym_TILDE] = ACTIONS(4610), + [anon_sym_LPAREN] = ACTIONS(4610), + [anon_sym_RPAREN] = ACTIONS(4610), + [sym__newline_token] = ACTIONS(4610), + [aux_sym_insert_token1] = ACTIONS(4610), + [aux_sym_delete_token1] = ACTIONS(4610), + [aux_sym_highlight_token1] = ACTIONS(4610), + [aux_sym_edit_comment_token1] = ACTIONS(4610), + [anon_sym_CARET_LBRACK] = ACTIONS(4610), + [anon_sym_LBRACK_CARET] = ACTIONS(4610), + [sym_uri_autolink] = ACTIONS(4610), + [sym_email_autolink] = ACTIONS(4610), + [sym__whitespace_ge_2] = ACTIONS(4610), + [aux_sym__whitespace_token1] = ACTIONS(4612), + [sym__word_no_digit] = ACTIONS(4610), + [sym__digits] = ACTIONS(4610), + [anon_sym_DASH_DASH] = ACTIONS(4612), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4610), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4610), + [sym__code_span_start] = ACTIONS(4610), + [sym__emphasis_open_star] = ACTIONS(4610), + [sym__emphasis_open_underscore] = ACTIONS(4610), + [sym__strikeout_open] = ACTIONS(4610), + [sym__latex_span_start] = ACTIONS(4610), + [sym__single_quote_open] = ACTIONS(4610), + [sym__double_quote_open] = ACTIONS(4610), + [sym__double_quote_close] = ACTIONS(4610), + [sym__superscript_open] = ACTIONS(4610), + [sym__subscript_open] = ACTIONS(4610), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4610), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4610), + [sym__cite_author_in_text] = ACTIONS(4610), + [sym__cite_suppress_author] = ACTIONS(4610), + [sym__shortcode_open_escaped] = ACTIONS(4610), + [sym__shortcode_open] = ACTIONS(4610), + [sym__unclosed_span] = ACTIONS(4610), }, [STATE(405)] = { - [sym__qmd_attribute] = STATE(551), - [sym_raw_attribute] = STATE(551), - [sym_commonmark_attribute] = STATE(551), - [sym_language_attribute] = STATE(551), - [sym__backslash_escape] = ACTIONS(3629), - [sym_entity_reference] = ACTIONS(3629), - [sym_numeric_character_reference] = ACTIONS(3629), - [anon_sym_LT] = ACTIONS(3631), - [anon_sym_GT] = ACTIONS(3629), - [anon_sym_BANG] = ACTIONS(3629), - [anon_sym_DQUOTE] = ACTIONS(3629), - [anon_sym_POUND] = ACTIONS(3629), - [anon_sym_DOLLAR] = ACTIONS(3629), - [anon_sym_PERCENT] = ACTIONS(3629), - [anon_sym_AMP] = ACTIONS(3631), - [anon_sym_SQUOTE] = ACTIONS(3629), - [anon_sym_STAR] = ACTIONS(3629), - [anon_sym_PLUS] = ACTIONS(3629), - [anon_sym_COMMA] = ACTIONS(3629), - [anon_sym_DASH] = ACTIONS(3631), - [anon_sym_DOT] = ACTIONS(3631), - [anon_sym_SLASH] = ACTIONS(3629), - [anon_sym_COLON] = ACTIONS(3629), - [anon_sym_SEMI] = ACTIONS(3629), - [anon_sym_EQ] = ACTIONS(3629), - [anon_sym_QMARK] = ACTIONS(3629), - [anon_sym_LBRACK] = ACTIONS(3631), - [anon_sym_BSLASH] = ACTIONS(3631), - [anon_sym_CARET] = ACTIONS(3631), - [anon_sym__] = ACTIONS(3629), - [anon_sym_BQUOTE] = ACTIONS(3629), - [anon_sym_LBRACE] = ACTIONS(3725), - [anon_sym_PIPE] = ACTIONS(3629), - [anon_sym_TILDE] = ACTIONS(3629), - [anon_sym_LPAREN] = ACTIONS(3629), - [anon_sym_RPAREN] = ACTIONS(3629), - [sym__newline_token] = ACTIONS(3629), - [anon_sym_CARET_LBRACK] = ACTIONS(3629), - [anon_sym_LBRACK_CARET] = ACTIONS(3629), - [sym_uri_autolink] = ACTIONS(3629), - [sym_email_autolink] = ACTIONS(3629), - [sym__whitespace_ge_2] = ACTIONS(3629), - [aux_sym__whitespace_token1] = ACTIONS(3631), - [sym__word_no_digit] = ACTIONS(3629), - [sym__digits] = ACTIONS(3629), - [anon_sym_DASH_DASH] = ACTIONS(3631), - [anon_sym_DASH_DASH_DASH] = ACTIONS(3629), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3629), - [sym__code_span_start] = ACTIONS(3629), - [sym__emphasis_open_star] = ACTIONS(3629), - [sym__emphasis_open_underscore] = ACTIONS(3629), - [sym__strikeout_open] = ACTIONS(3629), - [sym__latex_span_start] = ACTIONS(3629), - [sym__single_quote_open] = ACTIONS(3629), - [sym__single_quote_close] = ACTIONS(3629), - [sym__double_quote_open] = ACTIONS(3629), - [sym__superscript_open] = ACTIONS(3629), - [sym__subscript_open] = ACTIONS(3629), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3629), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3629), - [sym__cite_author_in_text] = ACTIONS(3629), - [sym__cite_suppress_author] = ACTIONS(3629), - [sym__shortcode_open_escaped] = ACTIONS(3629), - [sym__shortcode_open] = ACTIONS(3629), - [sym__unclosed_span] = ACTIONS(3629), + [sym__qmd_attribute] = STATE(676), + [sym_raw_attribute] = STATE(676), + [sym_commonmark_attribute] = STATE(676), + [sym_language_attribute] = STATE(676), + [sym__backslash_escape] = ACTIONS(4566), + [sym_entity_reference] = ACTIONS(4566), + [sym_numeric_character_reference] = ACTIONS(4566), + [anon_sym_LT] = ACTIONS(4568), + [anon_sym_GT] = ACTIONS(4566), + [anon_sym_BANG] = ACTIONS(4566), + [anon_sym_DQUOTE] = ACTIONS(4566), + [anon_sym_POUND] = ACTIONS(4566), + [anon_sym_DOLLAR] = ACTIONS(4566), + [anon_sym_PERCENT] = ACTIONS(4566), + [anon_sym_AMP] = ACTIONS(4568), + [anon_sym_SQUOTE] = ACTIONS(4566), + [anon_sym_STAR] = ACTIONS(4566), + [anon_sym_PLUS] = ACTIONS(4566), + [anon_sym_COMMA] = ACTIONS(4566), + [anon_sym_DASH] = ACTIONS(4568), + [anon_sym_DOT] = ACTIONS(4568), + [anon_sym_SLASH] = ACTIONS(4566), + [anon_sym_COLON] = ACTIONS(4566), + [anon_sym_SEMI] = ACTIONS(4566), + [anon_sym_EQ] = ACTIONS(4566), + [anon_sym_QMARK] = ACTIONS(4566), + [anon_sym_LBRACK] = ACTIONS(4568), + [anon_sym_BSLASH] = ACTIONS(4568), + [anon_sym_CARET] = ACTIONS(4568), + [anon_sym__] = ACTIONS(4566), + [anon_sym_BQUOTE] = ACTIONS(4566), + [anon_sym_LBRACE] = ACTIONS(4580), + [anon_sym_PIPE] = ACTIONS(4566), + [anon_sym_TILDE] = ACTIONS(4566), + [anon_sym_LPAREN] = ACTIONS(4566), + [anon_sym_RPAREN] = ACTIONS(4566), + [sym__newline_token] = ACTIONS(4566), + [aux_sym_insert_token1] = ACTIONS(4566), + [aux_sym_delete_token1] = ACTIONS(4566), + [aux_sym_highlight_token1] = ACTIONS(4566), + [aux_sym_edit_comment_token1] = ACTIONS(4566), + [anon_sym_CARET_LBRACK] = ACTIONS(4566), + [anon_sym_LBRACK_CARET] = ACTIONS(4566), + [sym_uri_autolink] = ACTIONS(4566), + [sym_email_autolink] = ACTIONS(4566), + [sym__whitespace_ge_2] = ACTIONS(4566), + [aux_sym__whitespace_token1] = ACTIONS(4568), + [sym__word_no_digit] = ACTIONS(4566), + [sym__digits] = ACTIONS(4566), + [anon_sym_DASH_DASH] = ACTIONS(4568), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4566), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4566), + [sym__code_span_start] = ACTIONS(4566), + [sym__emphasis_open_star] = ACTIONS(4566), + [sym__emphasis_open_underscore] = ACTIONS(4566), + [sym__strikeout_open] = ACTIONS(4566), + [sym__latex_span_start] = ACTIONS(4566), + [sym__single_quote_open] = ACTIONS(4566), + [sym__double_quote_open] = ACTIONS(4566), + [sym__double_quote_close] = ACTIONS(4566), + [sym__superscript_open] = ACTIONS(4566), + [sym__subscript_open] = ACTIONS(4566), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4566), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4566), + [sym__cite_author_in_text] = ACTIONS(4566), + [sym__cite_suppress_author] = ACTIONS(4566), + [sym__shortcode_open_escaped] = ACTIONS(4566), + [sym__shortcode_open] = ACTIONS(4566), + [sym__unclosed_span] = ACTIONS(4566), }, [STATE(406)] = { - [sym__qmd_attribute] = STATE(869), - [sym_raw_attribute] = STATE(869), - [sym_commonmark_attribute] = STATE(869), - [sym_language_attribute] = STATE(869), - [sym__backslash_escape] = ACTIONS(3667), - [sym_entity_reference] = ACTIONS(3667), - [sym_numeric_character_reference] = ACTIONS(3667), - [anon_sym_LT] = ACTIONS(3669), - [anon_sym_GT] = ACTIONS(3667), - [anon_sym_BANG] = ACTIONS(3667), - [anon_sym_DQUOTE] = ACTIONS(3667), - [anon_sym_POUND] = ACTIONS(3667), - [anon_sym_DOLLAR] = ACTIONS(3667), - [anon_sym_PERCENT] = ACTIONS(3667), - [anon_sym_AMP] = ACTIONS(3669), - [anon_sym_SQUOTE] = ACTIONS(3667), - [anon_sym_STAR] = ACTIONS(3667), - [anon_sym_PLUS] = ACTIONS(3667), - [anon_sym_COMMA] = ACTIONS(3667), - [anon_sym_DASH] = ACTIONS(3669), - [anon_sym_DOT] = ACTIONS(3669), - [anon_sym_SLASH] = ACTIONS(3667), - [anon_sym_COLON] = ACTIONS(3667), - [anon_sym_SEMI] = ACTIONS(3667), - [anon_sym_EQ] = ACTIONS(3667), - [anon_sym_QMARK] = ACTIONS(3667), - [anon_sym_LBRACK] = ACTIONS(3669), - [anon_sym_BSLASH] = ACTIONS(3669), - [anon_sym_CARET] = ACTIONS(3669), - [anon_sym__] = ACTIONS(3667), - [anon_sym_BQUOTE] = ACTIONS(3667), - [anon_sym_LBRACE] = ACTIONS(3717), - [anon_sym_PIPE] = ACTIONS(3667), - [anon_sym_TILDE] = ACTIONS(3667), - [anon_sym_LPAREN] = ACTIONS(3667), - [anon_sym_RPAREN] = ACTIONS(3667), - [sym__newline_token] = ACTIONS(3667), - [anon_sym_CARET_LBRACK] = ACTIONS(3667), - [anon_sym_LBRACK_CARET] = ACTIONS(3667), - [sym_uri_autolink] = ACTIONS(3667), - [sym_email_autolink] = ACTIONS(3667), - [sym__whitespace_ge_2] = ACTIONS(3667), - [aux_sym__whitespace_token1] = ACTIONS(3669), - [sym__word_no_digit] = ACTIONS(3667), - [sym__digits] = ACTIONS(3667), - [anon_sym_DASH_DASH] = ACTIONS(3669), - [anon_sym_DASH_DASH_DASH] = ACTIONS(3667), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3667), - [sym__code_span_start] = ACTIONS(3667), - [sym__emphasis_open_star] = ACTIONS(3667), - [sym__emphasis_open_underscore] = ACTIONS(3667), - [sym__strikeout_open] = ACTIONS(3667), - [sym__latex_span_start] = ACTIONS(3667), - [sym__single_quote_open] = ACTIONS(3667), - [sym__double_quote_open] = ACTIONS(3667), - [sym__superscript_open] = ACTIONS(3667), - [sym__subscript_open] = ACTIONS(3667), - [sym__subscript_close] = ACTIONS(3667), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3667), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3667), - [sym__cite_author_in_text] = ACTIONS(3667), - [sym__cite_suppress_author] = ACTIONS(3667), - [sym__shortcode_open_escaped] = ACTIONS(3667), - [sym__shortcode_open] = ACTIONS(3667), - [sym__unclosed_span] = ACTIONS(3667), + [sym__qmd_attribute] = STATE(678), + [sym_raw_attribute] = STATE(678), + [sym_commonmark_attribute] = STATE(678), + [sym_language_attribute] = STATE(678), + [sym__backslash_escape] = ACTIONS(4572), + [sym_entity_reference] = ACTIONS(4572), + [sym_numeric_character_reference] = ACTIONS(4572), + [anon_sym_LT] = ACTIONS(4574), + [anon_sym_GT] = ACTIONS(4572), + [anon_sym_BANG] = ACTIONS(4572), + [anon_sym_DQUOTE] = ACTIONS(4572), + [anon_sym_POUND] = ACTIONS(4572), + [anon_sym_DOLLAR] = ACTIONS(4572), + [anon_sym_PERCENT] = ACTIONS(4572), + [anon_sym_AMP] = ACTIONS(4574), + [anon_sym_SQUOTE] = ACTIONS(4572), + [anon_sym_STAR] = ACTIONS(4572), + [anon_sym_PLUS] = ACTIONS(4572), + [anon_sym_COMMA] = ACTIONS(4572), + [anon_sym_DASH] = ACTIONS(4574), + [anon_sym_DOT] = ACTIONS(4574), + [anon_sym_SLASH] = ACTIONS(4572), + [anon_sym_COLON] = ACTIONS(4572), + [anon_sym_SEMI] = ACTIONS(4572), + [anon_sym_EQ] = ACTIONS(4572), + [anon_sym_QMARK] = ACTIONS(4572), + [anon_sym_LBRACK] = ACTIONS(4574), + [anon_sym_BSLASH] = ACTIONS(4574), + [anon_sym_CARET] = ACTIONS(4574), + [anon_sym__] = ACTIONS(4572), + [anon_sym_BQUOTE] = ACTIONS(4572), + [anon_sym_LBRACE] = ACTIONS(4580), + [anon_sym_PIPE] = ACTIONS(4572), + [anon_sym_TILDE] = ACTIONS(4572), + [anon_sym_LPAREN] = ACTIONS(4572), + [anon_sym_RPAREN] = ACTIONS(4572), + [sym__newline_token] = ACTIONS(4572), + [aux_sym_insert_token1] = ACTIONS(4572), + [aux_sym_delete_token1] = ACTIONS(4572), + [aux_sym_highlight_token1] = ACTIONS(4572), + [aux_sym_edit_comment_token1] = ACTIONS(4572), + [anon_sym_CARET_LBRACK] = ACTIONS(4572), + [anon_sym_LBRACK_CARET] = ACTIONS(4572), + [sym_uri_autolink] = ACTIONS(4572), + [sym_email_autolink] = ACTIONS(4572), + [sym__whitespace_ge_2] = ACTIONS(4572), + [aux_sym__whitespace_token1] = ACTIONS(4574), + [sym__word_no_digit] = ACTIONS(4572), + [sym__digits] = ACTIONS(4572), + [anon_sym_DASH_DASH] = ACTIONS(4574), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4572), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4572), + [sym__code_span_start] = ACTIONS(4572), + [sym__emphasis_open_star] = ACTIONS(4572), + [sym__emphasis_open_underscore] = ACTIONS(4572), + [sym__strikeout_open] = ACTIONS(4572), + [sym__latex_span_start] = ACTIONS(4572), + [sym__single_quote_open] = ACTIONS(4572), + [sym__double_quote_open] = ACTIONS(4572), + [sym__double_quote_close] = ACTIONS(4572), + [sym__superscript_open] = ACTIONS(4572), + [sym__subscript_open] = ACTIONS(4572), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4572), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4572), + [sym__cite_author_in_text] = ACTIONS(4572), + [sym__cite_suppress_author] = ACTIONS(4572), + [sym__shortcode_open_escaped] = ACTIONS(4572), + [sym__shortcode_open] = ACTIONS(4572), + [sym__unclosed_span] = ACTIONS(4572), }, [STATE(407)] = { - [sym__qmd_attribute] = STATE(871), - [sym_raw_attribute] = STATE(871), - [sym_commonmark_attribute] = STATE(871), - [sym_language_attribute] = STATE(871), - [sym__backslash_escape] = ACTIONS(3671), - [sym_entity_reference] = ACTIONS(3671), - [sym_numeric_character_reference] = ACTIONS(3671), - [anon_sym_LT] = ACTIONS(3673), - [anon_sym_GT] = ACTIONS(3671), - [anon_sym_BANG] = ACTIONS(3671), - [anon_sym_DQUOTE] = ACTIONS(3671), - [anon_sym_POUND] = ACTIONS(3671), - [anon_sym_DOLLAR] = ACTIONS(3671), - [anon_sym_PERCENT] = ACTIONS(3671), - [anon_sym_AMP] = ACTIONS(3673), - [anon_sym_SQUOTE] = ACTIONS(3671), - [anon_sym_STAR] = ACTIONS(3671), - [anon_sym_PLUS] = ACTIONS(3671), - [anon_sym_COMMA] = ACTIONS(3671), - [anon_sym_DASH] = ACTIONS(3673), - [anon_sym_DOT] = ACTIONS(3673), - [anon_sym_SLASH] = ACTIONS(3671), - [anon_sym_COLON] = ACTIONS(3671), - [anon_sym_SEMI] = ACTIONS(3671), - [anon_sym_EQ] = ACTIONS(3671), - [anon_sym_QMARK] = ACTIONS(3671), - [anon_sym_LBRACK] = ACTIONS(3673), - [anon_sym_BSLASH] = ACTIONS(3673), - [anon_sym_CARET] = ACTIONS(3673), - [anon_sym__] = ACTIONS(3671), - [anon_sym_BQUOTE] = ACTIONS(3671), - [anon_sym_LBRACE] = ACTIONS(3717), - [anon_sym_PIPE] = ACTIONS(3671), - [anon_sym_TILDE] = ACTIONS(3671), - [anon_sym_LPAREN] = ACTIONS(3671), - [anon_sym_RPAREN] = ACTIONS(3671), - [sym__newline_token] = ACTIONS(3671), - [anon_sym_CARET_LBRACK] = ACTIONS(3671), - [anon_sym_LBRACK_CARET] = ACTIONS(3671), - [sym_uri_autolink] = ACTIONS(3671), - [sym_email_autolink] = ACTIONS(3671), - [sym__whitespace_ge_2] = ACTIONS(3671), - [aux_sym__whitespace_token1] = ACTIONS(3673), - [sym__word_no_digit] = ACTIONS(3671), - [sym__digits] = ACTIONS(3671), - [anon_sym_DASH_DASH] = ACTIONS(3673), - [anon_sym_DASH_DASH_DASH] = ACTIONS(3671), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3671), - [sym__code_span_start] = ACTIONS(3671), - [sym__emphasis_open_star] = ACTIONS(3671), - [sym__emphasis_open_underscore] = ACTIONS(3671), - [sym__strikeout_open] = ACTIONS(3671), - [sym__latex_span_start] = ACTIONS(3671), - [sym__single_quote_open] = ACTIONS(3671), - [sym__double_quote_open] = ACTIONS(3671), - [sym__superscript_open] = ACTIONS(3671), - [sym__subscript_open] = ACTIONS(3671), - [sym__subscript_close] = ACTIONS(3671), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3671), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3671), - [sym__cite_author_in_text] = ACTIONS(3671), - [sym__cite_suppress_author] = ACTIONS(3671), - [sym__shortcode_open_escaped] = ACTIONS(3671), - [sym__shortcode_open] = ACTIONS(3671), - [sym__unclosed_span] = ACTIONS(3671), + [sym__qmd_attribute] = STATE(684), + [sym_raw_attribute] = STATE(684), + [sym_commonmark_attribute] = STATE(684), + [sym_language_attribute] = STATE(684), + [sym__backslash_escape] = ACTIONS(4588), + [sym_entity_reference] = ACTIONS(4588), + [sym_numeric_character_reference] = ACTIONS(4588), + [anon_sym_LT] = ACTIONS(4590), + [anon_sym_GT] = ACTIONS(4588), + [anon_sym_BANG] = ACTIONS(4588), + [anon_sym_DQUOTE] = ACTIONS(4588), + [anon_sym_POUND] = ACTIONS(4588), + [anon_sym_DOLLAR] = ACTIONS(4588), + [anon_sym_PERCENT] = ACTIONS(4588), + [anon_sym_AMP] = ACTIONS(4590), + [anon_sym_SQUOTE] = ACTIONS(4588), + [anon_sym_STAR] = ACTIONS(4588), + [anon_sym_PLUS] = ACTIONS(4588), + [anon_sym_COMMA] = ACTIONS(4588), + [anon_sym_DASH] = ACTIONS(4590), + [anon_sym_DOT] = ACTIONS(4590), + [anon_sym_SLASH] = ACTIONS(4588), + [anon_sym_COLON] = ACTIONS(4588), + [anon_sym_SEMI] = ACTIONS(4588), + [anon_sym_EQ] = ACTIONS(4588), + [anon_sym_QMARK] = ACTIONS(4588), + [anon_sym_LBRACK] = ACTIONS(4590), + [anon_sym_BSLASH] = ACTIONS(4590), + [anon_sym_CARET] = ACTIONS(4590), + [anon_sym__] = ACTIONS(4588), + [anon_sym_BQUOTE] = ACTIONS(4588), + [anon_sym_LBRACE] = ACTIONS(4580), + [anon_sym_PIPE] = ACTIONS(4588), + [anon_sym_TILDE] = ACTIONS(4588), + [anon_sym_LPAREN] = ACTIONS(4588), + [anon_sym_RPAREN] = ACTIONS(4588), + [sym__newline_token] = ACTIONS(4588), + [aux_sym_insert_token1] = ACTIONS(4588), + [aux_sym_delete_token1] = ACTIONS(4588), + [aux_sym_highlight_token1] = ACTIONS(4588), + [aux_sym_edit_comment_token1] = ACTIONS(4588), + [anon_sym_CARET_LBRACK] = ACTIONS(4588), + [anon_sym_LBRACK_CARET] = ACTIONS(4588), + [sym_uri_autolink] = ACTIONS(4588), + [sym_email_autolink] = ACTIONS(4588), + [sym__whitespace_ge_2] = ACTIONS(4588), + [aux_sym__whitespace_token1] = ACTIONS(4590), + [sym__word_no_digit] = ACTIONS(4588), + [sym__digits] = ACTIONS(4588), + [anon_sym_DASH_DASH] = ACTIONS(4590), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4588), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4588), + [sym__code_span_start] = ACTIONS(4588), + [sym__emphasis_open_star] = ACTIONS(4588), + [sym__emphasis_open_underscore] = ACTIONS(4588), + [sym__strikeout_open] = ACTIONS(4588), + [sym__latex_span_start] = ACTIONS(4588), + [sym__single_quote_open] = ACTIONS(4588), + [sym__double_quote_open] = ACTIONS(4588), + [sym__double_quote_close] = ACTIONS(4588), + [sym__superscript_open] = ACTIONS(4588), + [sym__subscript_open] = ACTIONS(4588), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4588), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4588), + [sym__cite_author_in_text] = ACTIONS(4588), + [sym__cite_suppress_author] = ACTIONS(4588), + [sym__shortcode_open_escaped] = ACTIONS(4588), + [sym__shortcode_open] = ACTIONS(4588), + [sym__unclosed_span] = ACTIONS(4588), }, [STATE(408)] = { - [sym__qmd_attribute] = STATE(560), - [sym_raw_attribute] = STATE(560), - [sym_commonmark_attribute] = STATE(560), - [sym_language_attribute] = STATE(560), - [sym__backslash_escape] = ACTIONS(3643), - [sym_entity_reference] = ACTIONS(3643), - [sym_numeric_character_reference] = ACTIONS(3643), - [anon_sym_LT] = ACTIONS(3645), - [anon_sym_GT] = ACTIONS(3643), - [anon_sym_BANG] = ACTIONS(3643), - [anon_sym_DQUOTE] = ACTIONS(3643), - [anon_sym_POUND] = ACTIONS(3643), - [anon_sym_DOLLAR] = ACTIONS(3643), - [anon_sym_PERCENT] = ACTIONS(3643), - [anon_sym_AMP] = ACTIONS(3645), - [anon_sym_SQUOTE] = ACTIONS(3643), - [anon_sym_STAR] = ACTIONS(3643), - [anon_sym_PLUS] = ACTIONS(3643), - [anon_sym_COMMA] = ACTIONS(3643), - [anon_sym_DASH] = ACTIONS(3645), - [anon_sym_DOT] = ACTIONS(3645), - [anon_sym_SLASH] = ACTIONS(3643), - [anon_sym_COLON] = ACTIONS(3643), - [anon_sym_SEMI] = ACTIONS(3643), - [anon_sym_EQ] = ACTIONS(3643), - [anon_sym_QMARK] = ACTIONS(3643), - [anon_sym_LBRACK] = ACTIONS(3645), - [anon_sym_BSLASH] = ACTIONS(3645), - [anon_sym_CARET] = ACTIONS(3645), - [anon_sym__] = ACTIONS(3643), - [anon_sym_BQUOTE] = ACTIONS(3643), - [anon_sym_LBRACE] = ACTIONS(3725), - [anon_sym_PIPE] = ACTIONS(3643), - [anon_sym_TILDE] = ACTIONS(3643), - [anon_sym_LPAREN] = ACTIONS(3643), - [anon_sym_RPAREN] = ACTIONS(3643), - [sym__newline_token] = ACTIONS(3643), - [anon_sym_CARET_LBRACK] = ACTIONS(3643), - [anon_sym_LBRACK_CARET] = ACTIONS(3643), - [sym_uri_autolink] = ACTIONS(3643), - [sym_email_autolink] = ACTIONS(3643), - [sym__whitespace_ge_2] = ACTIONS(3643), - [aux_sym__whitespace_token1] = ACTIONS(3645), - [sym__word_no_digit] = ACTIONS(3643), - [sym__digits] = ACTIONS(3643), - [anon_sym_DASH_DASH] = ACTIONS(3645), - [anon_sym_DASH_DASH_DASH] = ACTIONS(3643), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3643), - [sym__code_span_start] = ACTIONS(3643), - [sym__emphasis_open_star] = ACTIONS(3643), - [sym__emphasis_open_underscore] = ACTIONS(3643), - [sym__strikeout_open] = ACTIONS(3643), - [sym__latex_span_start] = ACTIONS(3643), - [sym__single_quote_open] = ACTIONS(3643), - [sym__single_quote_close] = ACTIONS(3643), - [sym__double_quote_open] = ACTIONS(3643), - [sym__superscript_open] = ACTIONS(3643), - [sym__subscript_open] = ACTIONS(3643), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3643), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3643), - [sym__cite_author_in_text] = ACTIONS(3643), - [sym__cite_suppress_author] = ACTIONS(3643), - [sym__shortcode_open_escaped] = ACTIONS(3643), - [sym__shortcode_open] = ACTIONS(3643), - [sym__unclosed_span] = ACTIONS(3643), + [sym__qmd_attribute] = STATE(686), + [sym_raw_attribute] = STATE(686), + [sym_commonmark_attribute] = STATE(686), + [sym_language_attribute] = STATE(686), + [sym__backslash_escape] = ACTIONS(4540), + [sym_entity_reference] = ACTIONS(4540), + [sym_numeric_character_reference] = ACTIONS(4540), + [anon_sym_LT] = ACTIONS(4542), + [anon_sym_GT] = ACTIONS(4540), + [anon_sym_BANG] = ACTIONS(4540), + [anon_sym_DQUOTE] = ACTIONS(4540), + [anon_sym_POUND] = ACTIONS(4540), + [anon_sym_DOLLAR] = ACTIONS(4540), + [anon_sym_PERCENT] = ACTIONS(4540), + [anon_sym_AMP] = ACTIONS(4542), + [anon_sym_SQUOTE] = ACTIONS(4540), + [anon_sym_STAR] = ACTIONS(4540), + [anon_sym_PLUS] = ACTIONS(4540), + [anon_sym_COMMA] = ACTIONS(4540), + [anon_sym_DASH] = ACTIONS(4542), + [anon_sym_DOT] = ACTIONS(4542), + [anon_sym_SLASH] = ACTIONS(4540), + [anon_sym_COLON] = ACTIONS(4540), + [anon_sym_SEMI] = ACTIONS(4540), + [anon_sym_EQ] = ACTIONS(4540), + [anon_sym_QMARK] = ACTIONS(4540), + [anon_sym_LBRACK] = ACTIONS(4542), + [anon_sym_BSLASH] = ACTIONS(4542), + [anon_sym_CARET] = ACTIONS(4542), + [anon_sym__] = ACTIONS(4540), + [anon_sym_BQUOTE] = ACTIONS(4540), + [anon_sym_LBRACE] = ACTIONS(4580), + [anon_sym_PIPE] = ACTIONS(4540), + [anon_sym_TILDE] = ACTIONS(4540), + [anon_sym_LPAREN] = ACTIONS(4540), + [anon_sym_RPAREN] = ACTIONS(4540), + [sym__newline_token] = ACTIONS(4540), + [aux_sym_insert_token1] = ACTIONS(4540), + [aux_sym_delete_token1] = ACTIONS(4540), + [aux_sym_highlight_token1] = ACTIONS(4540), + [aux_sym_edit_comment_token1] = ACTIONS(4540), + [anon_sym_CARET_LBRACK] = ACTIONS(4540), + [anon_sym_LBRACK_CARET] = ACTIONS(4540), + [sym_uri_autolink] = ACTIONS(4540), + [sym_email_autolink] = ACTIONS(4540), + [sym__whitespace_ge_2] = ACTIONS(4540), + [aux_sym__whitespace_token1] = ACTIONS(4542), + [sym__word_no_digit] = ACTIONS(4540), + [sym__digits] = ACTIONS(4540), + [anon_sym_DASH_DASH] = ACTIONS(4542), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4540), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4540), + [sym__code_span_start] = ACTIONS(4540), + [sym__emphasis_open_star] = ACTIONS(4540), + [sym__emphasis_open_underscore] = ACTIONS(4540), + [sym__strikeout_open] = ACTIONS(4540), + [sym__latex_span_start] = ACTIONS(4540), + [sym__single_quote_open] = ACTIONS(4540), + [sym__double_quote_open] = ACTIONS(4540), + [sym__double_quote_close] = ACTIONS(4540), + [sym__superscript_open] = ACTIONS(4540), + [sym__subscript_open] = ACTIONS(4540), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4540), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4540), + [sym__cite_author_in_text] = ACTIONS(4540), + [sym__cite_suppress_author] = ACTIONS(4540), + [sym__shortcode_open_escaped] = ACTIONS(4540), + [sym__shortcode_open] = ACTIONS(4540), + [sym__unclosed_span] = ACTIONS(4540), }, [STATE(409)] = { - [sym__qmd_attribute] = STATE(873), - [sym_raw_attribute] = STATE(873), - [sym_commonmark_attribute] = STATE(873), - [sym_language_attribute] = STATE(873), - [sym__backslash_escape] = ACTIONS(3675), - [sym_entity_reference] = ACTIONS(3675), - [sym_numeric_character_reference] = ACTIONS(3675), - [anon_sym_LT] = ACTIONS(3677), - [anon_sym_GT] = ACTIONS(3675), - [anon_sym_BANG] = ACTIONS(3675), - [anon_sym_DQUOTE] = ACTIONS(3675), - [anon_sym_POUND] = ACTIONS(3675), - [anon_sym_DOLLAR] = ACTIONS(3675), - [anon_sym_PERCENT] = ACTIONS(3675), - [anon_sym_AMP] = ACTIONS(3677), - [anon_sym_SQUOTE] = ACTIONS(3675), - [anon_sym_STAR] = ACTIONS(3675), - [anon_sym_PLUS] = ACTIONS(3675), - [anon_sym_COMMA] = ACTIONS(3675), - [anon_sym_DASH] = ACTIONS(3677), - [anon_sym_DOT] = ACTIONS(3677), - [anon_sym_SLASH] = ACTIONS(3675), - [anon_sym_COLON] = ACTIONS(3675), - [anon_sym_SEMI] = ACTIONS(3675), - [anon_sym_EQ] = ACTIONS(3675), - [anon_sym_QMARK] = ACTIONS(3675), - [anon_sym_LBRACK] = ACTIONS(3677), - [anon_sym_BSLASH] = ACTIONS(3677), - [anon_sym_CARET] = ACTIONS(3677), - [anon_sym__] = ACTIONS(3675), - [anon_sym_BQUOTE] = ACTIONS(3675), - [anon_sym_LBRACE] = ACTIONS(3717), - [anon_sym_PIPE] = ACTIONS(3675), - [anon_sym_TILDE] = ACTIONS(3675), - [anon_sym_LPAREN] = ACTIONS(3675), - [anon_sym_RPAREN] = ACTIONS(3675), - [sym__newline_token] = ACTIONS(3675), - [anon_sym_CARET_LBRACK] = ACTIONS(3675), - [anon_sym_LBRACK_CARET] = ACTIONS(3675), - [sym_uri_autolink] = ACTIONS(3675), - [sym_email_autolink] = ACTIONS(3675), - [sym__whitespace_ge_2] = ACTIONS(3675), - [aux_sym__whitespace_token1] = ACTIONS(3677), - [sym__word_no_digit] = ACTIONS(3675), - [sym__digits] = ACTIONS(3675), - [anon_sym_DASH_DASH] = ACTIONS(3677), - [anon_sym_DASH_DASH_DASH] = ACTIONS(3675), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3675), - [sym__code_span_start] = ACTIONS(3675), - [sym__emphasis_open_star] = ACTIONS(3675), - [sym__emphasis_open_underscore] = ACTIONS(3675), - [sym__strikeout_open] = ACTIONS(3675), - [sym__latex_span_start] = ACTIONS(3675), - [sym__single_quote_open] = ACTIONS(3675), - [sym__double_quote_open] = ACTIONS(3675), - [sym__superscript_open] = ACTIONS(3675), - [sym__subscript_open] = ACTIONS(3675), - [sym__subscript_close] = ACTIONS(3675), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3675), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3675), - [sym__cite_author_in_text] = ACTIONS(3675), - [sym__cite_suppress_author] = ACTIONS(3675), - [sym__shortcode_open_escaped] = ACTIONS(3675), - [sym__shortcode_open] = ACTIONS(3675), - [sym__unclosed_span] = ACTIONS(3675), + [sym__qmd_attribute] = STATE(690), + [sym_raw_attribute] = STATE(690), + [sym_commonmark_attribute] = STATE(690), + [sym_language_attribute] = STATE(690), + [sym__backslash_escape] = ACTIONS(4534), + [sym_entity_reference] = ACTIONS(4534), + [sym_numeric_character_reference] = ACTIONS(4534), + [anon_sym_LT] = ACTIONS(4536), + [anon_sym_GT] = ACTIONS(4534), + [anon_sym_BANG] = ACTIONS(4534), + [anon_sym_DQUOTE] = ACTIONS(4534), + [anon_sym_POUND] = ACTIONS(4534), + [anon_sym_DOLLAR] = ACTIONS(4534), + [anon_sym_PERCENT] = ACTIONS(4534), + [anon_sym_AMP] = ACTIONS(4536), + [anon_sym_SQUOTE] = ACTIONS(4534), + [anon_sym_STAR] = ACTIONS(4534), + [anon_sym_PLUS] = ACTIONS(4534), + [anon_sym_COMMA] = ACTIONS(4534), + [anon_sym_DASH] = ACTIONS(4536), + [anon_sym_DOT] = ACTIONS(4536), + [anon_sym_SLASH] = ACTIONS(4534), + [anon_sym_COLON] = ACTIONS(4534), + [anon_sym_SEMI] = ACTIONS(4534), + [anon_sym_EQ] = ACTIONS(4534), + [anon_sym_QMARK] = ACTIONS(4534), + [anon_sym_LBRACK] = ACTIONS(4536), + [anon_sym_BSLASH] = ACTIONS(4536), + [anon_sym_CARET] = ACTIONS(4536), + [anon_sym__] = ACTIONS(4534), + [anon_sym_BQUOTE] = ACTIONS(4534), + [anon_sym_LBRACE] = ACTIONS(4580), + [anon_sym_PIPE] = ACTIONS(4534), + [anon_sym_TILDE] = ACTIONS(4534), + [anon_sym_LPAREN] = ACTIONS(4534), + [anon_sym_RPAREN] = ACTIONS(4534), + [sym__newline_token] = ACTIONS(4534), + [aux_sym_insert_token1] = ACTIONS(4534), + [aux_sym_delete_token1] = ACTIONS(4534), + [aux_sym_highlight_token1] = ACTIONS(4534), + [aux_sym_edit_comment_token1] = ACTIONS(4534), + [anon_sym_CARET_LBRACK] = ACTIONS(4534), + [anon_sym_LBRACK_CARET] = ACTIONS(4534), + [sym_uri_autolink] = ACTIONS(4534), + [sym_email_autolink] = ACTIONS(4534), + [sym__whitespace_ge_2] = ACTIONS(4534), + [aux_sym__whitespace_token1] = ACTIONS(4536), + [sym__word_no_digit] = ACTIONS(4534), + [sym__digits] = ACTIONS(4534), + [anon_sym_DASH_DASH] = ACTIONS(4536), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4534), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4534), + [sym__code_span_start] = ACTIONS(4534), + [sym__emphasis_open_star] = ACTIONS(4534), + [sym__emphasis_open_underscore] = ACTIONS(4534), + [sym__strikeout_open] = ACTIONS(4534), + [sym__latex_span_start] = ACTIONS(4534), + [sym__single_quote_open] = ACTIONS(4534), + [sym__double_quote_open] = ACTIONS(4534), + [sym__double_quote_close] = ACTIONS(4534), + [sym__superscript_open] = ACTIONS(4534), + [sym__subscript_open] = ACTIONS(4534), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4534), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4534), + [sym__cite_author_in_text] = ACTIONS(4534), + [sym__cite_suppress_author] = ACTIONS(4534), + [sym__shortcode_open_escaped] = ACTIONS(4534), + [sym__shortcode_open] = ACTIONS(4534), + [sym__unclosed_span] = ACTIONS(4534), }, [STATE(410)] = { - [sym__qmd_attribute] = STATE(569), - [sym_raw_attribute] = STATE(569), - [sym_commonmark_attribute] = STATE(569), - [sym_language_attribute] = STATE(569), - [sym__backslash_escape] = ACTIONS(3647), - [sym_entity_reference] = ACTIONS(3647), - [sym_numeric_character_reference] = ACTIONS(3647), - [anon_sym_LT] = ACTIONS(3649), - [anon_sym_GT] = ACTIONS(3647), - [anon_sym_BANG] = ACTIONS(3647), - [anon_sym_DQUOTE] = ACTIONS(3647), - [anon_sym_POUND] = ACTIONS(3647), - [anon_sym_DOLLAR] = ACTIONS(3647), - [anon_sym_PERCENT] = ACTIONS(3647), - [anon_sym_AMP] = ACTIONS(3649), - [anon_sym_SQUOTE] = ACTIONS(3647), - [anon_sym_STAR] = ACTIONS(3647), - [anon_sym_PLUS] = ACTIONS(3647), - [anon_sym_COMMA] = ACTIONS(3647), - [anon_sym_DASH] = ACTIONS(3649), - [anon_sym_DOT] = ACTIONS(3649), - [anon_sym_SLASH] = ACTIONS(3647), - [anon_sym_COLON] = ACTIONS(3647), - [anon_sym_SEMI] = ACTIONS(3647), - [anon_sym_EQ] = ACTIONS(3647), - [anon_sym_QMARK] = ACTIONS(3647), - [anon_sym_LBRACK] = ACTIONS(3649), - [anon_sym_BSLASH] = ACTIONS(3649), - [anon_sym_CARET] = ACTIONS(3649), - [anon_sym__] = ACTIONS(3647), - [anon_sym_BQUOTE] = ACTIONS(3647), - [anon_sym_LBRACE] = ACTIONS(3725), - [anon_sym_PIPE] = ACTIONS(3647), - [anon_sym_TILDE] = ACTIONS(3647), - [anon_sym_LPAREN] = ACTIONS(3647), - [anon_sym_RPAREN] = ACTIONS(3647), - [sym__newline_token] = ACTIONS(3647), - [anon_sym_CARET_LBRACK] = ACTIONS(3647), - [anon_sym_LBRACK_CARET] = ACTIONS(3647), - [sym_uri_autolink] = ACTIONS(3647), - [sym_email_autolink] = ACTIONS(3647), - [sym__whitespace_ge_2] = ACTIONS(3647), - [aux_sym__whitespace_token1] = ACTIONS(3649), - [sym__word_no_digit] = ACTIONS(3647), - [sym__digits] = ACTIONS(3647), - [anon_sym_DASH_DASH] = ACTIONS(3649), - [anon_sym_DASH_DASH_DASH] = ACTIONS(3647), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3647), - [sym__code_span_start] = ACTIONS(3647), - [sym__emphasis_open_star] = ACTIONS(3647), - [sym__emphasis_open_underscore] = ACTIONS(3647), - [sym__strikeout_open] = ACTIONS(3647), - [sym__latex_span_start] = ACTIONS(3647), - [sym__single_quote_open] = ACTIONS(3647), - [sym__single_quote_close] = ACTIONS(3647), - [sym__double_quote_open] = ACTIONS(3647), - [sym__superscript_open] = ACTIONS(3647), - [sym__subscript_open] = ACTIONS(3647), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3647), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3647), - [sym__cite_author_in_text] = ACTIONS(3647), - [sym__cite_suppress_author] = ACTIONS(3647), - [sym__shortcode_open_escaped] = ACTIONS(3647), - [sym__shortcode_open] = ACTIONS(3647), - [sym__unclosed_span] = ACTIONS(3647), + [sym__qmd_attribute] = STATE(692), + [sym_raw_attribute] = STATE(692), + [sym_commonmark_attribute] = STATE(692), + [sym_language_attribute] = STATE(692), + [sym__backslash_escape] = ACTIONS(4546), + [sym_entity_reference] = ACTIONS(4546), + [sym_numeric_character_reference] = ACTIONS(4546), + [anon_sym_LT] = ACTIONS(4548), + [anon_sym_GT] = ACTIONS(4546), + [anon_sym_BANG] = ACTIONS(4546), + [anon_sym_DQUOTE] = ACTIONS(4546), + [anon_sym_POUND] = ACTIONS(4546), + [anon_sym_DOLLAR] = ACTIONS(4546), + [anon_sym_PERCENT] = ACTIONS(4546), + [anon_sym_AMP] = ACTIONS(4548), + [anon_sym_SQUOTE] = ACTIONS(4546), + [anon_sym_STAR] = ACTIONS(4546), + [anon_sym_PLUS] = ACTIONS(4546), + [anon_sym_COMMA] = ACTIONS(4546), + [anon_sym_DASH] = ACTIONS(4548), + [anon_sym_DOT] = ACTIONS(4548), + [anon_sym_SLASH] = ACTIONS(4546), + [anon_sym_COLON] = ACTIONS(4546), + [anon_sym_SEMI] = ACTIONS(4546), + [anon_sym_EQ] = ACTIONS(4546), + [anon_sym_QMARK] = ACTIONS(4546), + [anon_sym_LBRACK] = ACTIONS(4548), + [anon_sym_BSLASH] = ACTIONS(4548), + [anon_sym_CARET] = ACTIONS(4548), + [anon_sym__] = ACTIONS(4546), + [anon_sym_BQUOTE] = ACTIONS(4546), + [anon_sym_LBRACE] = ACTIONS(4580), + [anon_sym_PIPE] = ACTIONS(4546), + [anon_sym_TILDE] = ACTIONS(4546), + [anon_sym_LPAREN] = ACTIONS(4546), + [anon_sym_RPAREN] = ACTIONS(4546), + [sym__newline_token] = ACTIONS(4546), + [aux_sym_insert_token1] = ACTIONS(4546), + [aux_sym_delete_token1] = ACTIONS(4546), + [aux_sym_highlight_token1] = ACTIONS(4546), + [aux_sym_edit_comment_token1] = ACTIONS(4546), + [anon_sym_CARET_LBRACK] = ACTIONS(4546), + [anon_sym_LBRACK_CARET] = ACTIONS(4546), + [sym_uri_autolink] = ACTIONS(4546), + [sym_email_autolink] = ACTIONS(4546), + [sym__whitespace_ge_2] = ACTIONS(4546), + [aux_sym__whitespace_token1] = ACTIONS(4548), + [sym__word_no_digit] = ACTIONS(4546), + [sym__digits] = ACTIONS(4546), + [anon_sym_DASH_DASH] = ACTIONS(4548), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4546), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4546), + [sym__code_span_start] = ACTIONS(4546), + [sym__emphasis_open_star] = ACTIONS(4546), + [sym__emphasis_open_underscore] = ACTIONS(4546), + [sym__strikeout_open] = ACTIONS(4546), + [sym__latex_span_start] = ACTIONS(4546), + [sym__single_quote_open] = ACTIONS(4546), + [sym__double_quote_open] = ACTIONS(4546), + [sym__double_quote_close] = ACTIONS(4546), + [sym__superscript_open] = ACTIONS(4546), + [sym__subscript_open] = ACTIONS(4546), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4546), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4546), + [sym__cite_author_in_text] = ACTIONS(4546), + [sym__cite_suppress_author] = ACTIONS(4546), + [sym__shortcode_open_escaped] = ACTIONS(4546), + [sym__shortcode_open] = ACTIONS(4546), + [sym__unclosed_span] = ACTIONS(4546), }, [STATE(411)] = { - [sym__qmd_attribute] = STATE(571), - [sym_raw_attribute] = STATE(571), - [sym_commonmark_attribute] = STATE(571), - [sym_language_attribute] = STATE(571), - [sym__backslash_escape] = ACTIONS(3651), - [sym_entity_reference] = ACTIONS(3651), - [sym_numeric_character_reference] = ACTIONS(3651), - [anon_sym_LT] = ACTIONS(3653), - [anon_sym_GT] = ACTIONS(3651), - [anon_sym_BANG] = ACTIONS(3651), - [anon_sym_DQUOTE] = ACTIONS(3651), - [anon_sym_POUND] = ACTIONS(3651), - [anon_sym_DOLLAR] = ACTIONS(3651), - [anon_sym_PERCENT] = ACTIONS(3651), - [anon_sym_AMP] = ACTIONS(3653), - [anon_sym_SQUOTE] = ACTIONS(3651), - [anon_sym_STAR] = ACTIONS(3651), - [anon_sym_PLUS] = ACTIONS(3651), - [anon_sym_COMMA] = ACTIONS(3651), - [anon_sym_DASH] = ACTIONS(3653), - [anon_sym_DOT] = ACTIONS(3653), - [anon_sym_SLASH] = ACTIONS(3651), - [anon_sym_COLON] = ACTIONS(3651), - [anon_sym_SEMI] = ACTIONS(3651), - [anon_sym_EQ] = ACTIONS(3651), - [anon_sym_QMARK] = ACTIONS(3651), - [anon_sym_LBRACK] = ACTIONS(3653), - [anon_sym_BSLASH] = ACTIONS(3653), - [anon_sym_CARET] = ACTIONS(3653), - [anon_sym__] = ACTIONS(3651), - [anon_sym_BQUOTE] = ACTIONS(3651), - [anon_sym_LBRACE] = ACTIONS(3725), - [anon_sym_PIPE] = ACTIONS(3651), - [anon_sym_TILDE] = ACTIONS(3651), - [anon_sym_LPAREN] = ACTIONS(3651), - [anon_sym_RPAREN] = ACTIONS(3651), - [sym__newline_token] = ACTIONS(3651), - [anon_sym_CARET_LBRACK] = ACTIONS(3651), - [anon_sym_LBRACK_CARET] = ACTIONS(3651), - [sym_uri_autolink] = ACTIONS(3651), - [sym_email_autolink] = ACTIONS(3651), - [sym__whitespace_ge_2] = ACTIONS(3651), - [aux_sym__whitespace_token1] = ACTIONS(3653), - [sym__word_no_digit] = ACTIONS(3651), - [sym__digits] = ACTIONS(3651), - [anon_sym_DASH_DASH] = ACTIONS(3653), - [anon_sym_DASH_DASH_DASH] = ACTIONS(3651), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3651), - [sym__code_span_start] = ACTIONS(3651), - [sym__emphasis_open_star] = ACTIONS(3651), - [sym__emphasis_open_underscore] = ACTIONS(3651), - [sym__strikeout_open] = ACTIONS(3651), - [sym__latex_span_start] = ACTIONS(3651), - [sym__single_quote_open] = ACTIONS(3651), - [sym__single_quote_close] = ACTIONS(3651), - [sym__double_quote_open] = ACTIONS(3651), - [sym__superscript_open] = ACTIONS(3651), - [sym__subscript_open] = ACTIONS(3651), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3651), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3651), - [sym__cite_author_in_text] = ACTIONS(3651), - [sym__cite_suppress_author] = ACTIONS(3651), - [sym__shortcode_open_escaped] = ACTIONS(3651), - [sym__shortcode_open] = ACTIONS(3651), - [sym__unclosed_span] = ACTIONS(3651), + [sym__qmd_attribute] = STATE(694), + [sym_raw_attribute] = STATE(694), + [sym_commonmark_attribute] = STATE(694), + [sym_language_attribute] = STATE(694), + [sym__backslash_escape] = ACTIONS(4550), + [sym_entity_reference] = ACTIONS(4550), + [sym_numeric_character_reference] = ACTIONS(4550), + [anon_sym_LT] = ACTIONS(4552), + [anon_sym_GT] = ACTIONS(4550), + [anon_sym_BANG] = ACTIONS(4550), + [anon_sym_DQUOTE] = ACTIONS(4550), + [anon_sym_POUND] = ACTIONS(4550), + [anon_sym_DOLLAR] = ACTIONS(4550), + [anon_sym_PERCENT] = ACTIONS(4550), + [anon_sym_AMP] = ACTIONS(4552), + [anon_sym_SQUOTE] = ACTIONS(4550), + [anon_sym_STAR] = ACTIONS(4550), + [anon_sym_PLUS] = ACTIONS(4550), + [anon_sym_COMMA] = ACTIONS(4550), + [anon_sym_DASH] = ACTIONS(4552), + [anon_sym_DOT] = ACTIONS(4552), + [anon_sym_SLASH] = ACTIONS(4550), + [anon_sym_COLON] = ACTIONS(4550), + [anon_sym_SEMI] = ACTIONS(4550), + [anon_sym_EQ] = ACTIONS(4550), + [anon_sym_QMARK] = ACTIONS(4550), + [anon_sym_LBRACK] = ACTIONS(4552), + [anon_sym_BSLASH] = ACTIONS(4552), + [anon_sym_CARET] = ACTIONS(4552), + [anon_sym__] = ACTIONS(4550), + [anon_sym_BQUOTE] = ACTIONS(4550), + [anon_sym_LBRACE] = ACTIONS(4580), + [anon_sym_PIPE] = ACTIONS(4550), + [anon_sym_TILDE] = ACTIONS(4550), + [anon_sym_LPAREN] = ACTIONS(4550), + [anon_sym_RPAREN] = ACTIONS(4550), + [sym__newline_token] = ACTIONS(4550), + [aux_sym_insert_token1] = ACTIONS(4550), + [aux_sym_delete_token1] = ACTIONS(4550), + [aux_sym_highlight_token1] = ACTIONS(4550), + [aux_sym_edit_comment_token1] = ACTIONS(4550), + [anon_sym_CARET_LBRACK] = ACTIONS(4550), + [anon_sym_LBRACK_CARET] = ACTIONS(4550), + [sym_uri_autolink] = ACTIONS(4550), + [sym_email_autolink] = ACTIONS(4550), + [sym__whitespace_ge_2] = ACTIONS(4550), + [aux_sym__whitespace_token1] = ACTIONS(4552), + [sym__word_no_digit] = ACTIONS(4550), + [sym__digits] = ACTIONS(4550), + [anon_sym_DASH_DASH] = ACTIONS(4552), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4550), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4550), + [sym__code_span_start] = ACTIONS(4550), + [sym__emphasis_open_star] = ACTIONS(4550), + [sym__emphasis_open_underscore] = ACTIONS(4550), + [sym__strikeout_open] = ACTIONS(4550), + [sym__latex_span_start] = ACTIONS(4550), + [sym__single_quote_open] = ACTIONS(4550), + [sym__double_quote_open] = ACTIONS(4550), + [sym__double_quote_close] = ACTIONS(4550), + [sym__superscript_open] = ACTIONS(4550), + [sym__subscript_open] = ACTIONS(4550), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4550), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4550), + [sym__cite_author_in_text] = ACTIONS(4550), + [sym__cite_suppress_author] = ACTIONS(4550), + [sym__shortcode_open_escaped] = ACTIONS(4550), + [sym__shortcode_open] = ACTIONS(4550), + [sym__unclosed_span] = ACTIONS(4550), }, [STATE(412)] = { - [sym__qmd_attribute] = STATE(875), - [sym_raw_attribute] = STATE(875), - [sym_commonmark_attribute] = STATE(875), - [sym_language_attribute] = STATE(875), - [sym__backslash_escape] = ACTIONS(3679), - [sym_entity_reference] = ACTIONS(3679), - [sym_numeric_character_reference] = ACTIONS(3679), - [anon_sym_LT] = ACTIONS(3681), - [anon_sym_GT] = ACTIONS(3679), - [anon_sym_BANG] = ACTIONS(3679), - [anon_sym_DQUOTE] = ACTIONS(3679), - [anon_sym_POUND] = ACTIONS(3679), - [anon_sym_DOLLAR] = ACTIONS(3679), - [anon_sym_PERCENT] = ACTIONS(3679), - [anon_sym_AMP] = ACTIONS(3681), - [anon_sym_SQUOTE] = ACTIONS(3679), - [anon_sym_STAR] = ACTIONS(3679), - [anon_sym_PLUS] = ACTIONS(3679), - [anon_sym_COMMA] = ACTIONS(3679), - [anon_sym_DASH] = ACTIONS(3681), - [anon_sym_DOT] = ACTIONS(3681), - [anon_sym_SLASH] = ACTIONS(3679), - [anon_sym_COLON] = ACTIONS(3679), - [anon_sym_SEMI] = ACTIONS(3679), - [anon_sym_EQ] = ACTIONS(3679), - [anon_sym_QMARK] = ACTIONS(3679), - [anon_sym_LBRACK] = ACTIONS(3681), - [anon_sym_BSLASH] = ACTIONS(3681), - [anon_sym_CARET] = ACTIONS(3681), - [anon_sym__] = ACTIONS(3679), - [anon_sym_BQUOTE] = ACTIONS(3679), - [anon_sym_LBRACE] = ACTIONS(3717), - [anon_sym_PIPE] = ACTIONS(3679), - [anon_sym_TILDE] = ACTIONS(3679), - [anon_sym_LPAREN] = ACTIONS(3679), - [anon_sym_RPAREN] = ACTIONS(3679), - [sym__newline_token] = ACTIONS(3679), - [anon_sym_CARET_LBRACK] = ACTIONS(3679), - [anon_sym_LBRACK_CARET] = ACTIONS(3679), - [sym_uri_autolink] = ACTIONS(3679), - [sym_email_autolink] = ACTIONS(3679), - [sym__whitespace_ge_2] = ACTIONS(3679), - [aux_sym__whitespace_token1] = ACTIONS(3681), - [sym__word_no_digit] = ACTIONS(3679), - [sym__digits] = ACTIONS(3679), - [anon_sym_DASH_DASH] = ACTIONS(3681), - [anon_sym_DASH_DASH_DASH] = ACTIONS(3679), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3679), - [sym__code_span_start] = ACTIONS(3679), - [sym__emphasis_open_star] = ACTIONS(3679), - [sym__emphasis_open_underscore] = ACTIONS(3679), - [sym__strikeout_open] = ACTIONS(3679), - [sym__latex_span_start] = ACTIONS(3679), - [sym__single_quote_open] = ACTIONS(3679), - [sym__double_quote_open] = ACTIONS(3679), - [sym__superscript_open] = ACTIONS(3679), - [sym__subscript_open] = ACTIONS(3679), - [sym__subscript_close] = ACTIONS(3679), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3679), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3679), - [sym__cite_author_in_text] = ACTIONS(3679), - [sym__cite_suppress_author] = ACTIONS(3679), - [sym__shortcode_open_escaped] = ACTIONS(3679), - [sym__shortcode_open] = ACTIONS(3679), - [sym__unclosed_span] = ACTIONS(3679), + [sym__qmd_attribute] = STATE(696), + [sym_raw_attribute] = STATE(696), + [sym_commonmark_attribute] = STATE(696), + [sym_language_attribute] = STATE(696), + [sym__backslash_escape] = ACTIONS(4554), + [sym_entity_reference] = ACTIONS(4554), + [sym_numeric_character_reference] = ACTIONS(4554), + [anon_sym_LT] = ACTIONS(4556), + [anon_sym_GT] = ACTIONS(4554), + [anon_sym_BANG] = ACTIONS(4554), + [anon_sym_DQUOTE] = ACTIONS(4554), + [anon_sym_POUND] = ACTIONS(4554), + [anon_sym_DOLLAR] = ACTIONS(4554), + [anon_sym_PERCENT] = ACTIONS(4554), + [anon_sym_AMP] = ACTIONS(4556), + [anon_sym_SQUOTE] = ACTIONS(4554), + [anon_sym_STAR] = ACTIONS(4554), + [anon_sym_PLUS] = ACTIONS(4554), + [anon_sym_COMMA] = ACTIONS(4554), + [anon_sym_DASH] = ACTIONS(4556), + [anon_sym_DOT] = ACTIONS(4556), + [anon_sym_SLASH] = ACTIONS(4554), + [anon_sym_COLON] = ACTIONS(4554), + [anon_sym_SEMI] = ACTIONS(4554), + [anon_sym_EQ] = ACTIONS(4554), + [anon_sym_QMARK] = ACTIONS(4554), + [anon_sym_LBRACK] = ACTIONS(4556), + [anon_sym_BSLASH] = ACTIONS(4556), + [anon_sym_CARET] = ACTIONS(4556), + [anon_sym__] = ACTIONS(4554), + [anon_sym_BQUOTE] = ACTIONS(4554), + [anon_sym_LBRACE] = ACTIONS(4580), + [anon_sym_PIPE] = ACTIONS(4554), + [anon_sym_TILDE] = ACTIONS(4554), + [anon_sym_LPAREN] = ACTIONS(4554), + [anon_sym_RPAREN] = ACTIONS(4554), + [sym__newline_token] = ACTIONS(4554), + [aux_sym_insert_token1] = ACTIONS(4554), + [aux_sym_delete_token1] = ACTIONS(4554), + [aux_sym_highlight_token1] = ACTIONS(4554), + [aux_sym_edit_comment_token1] = ACTIONS(4554), + [anon_sym_CARET_LBRACK] = ACTIONS(4554), + [anon_sym_LBRACK_CARET] = ACTIONS(4554), + [sym_uri_autolink] = ACTIONS(4554), + [sym_email_autolink] = ACTIONS(4554), + [sym__whitespace_ge_2] = ACTIONS(4554), + [aux_sym__whitespace_token1] = ACTIONS(4556), + [sym__word_no_digit] = ACTIONS(4554), + [sym__digits] = ACTIONS(4554), + [anon_sym_DASH_DASH] = ACTIONS(4556), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4554), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4554), + [sym__code_span_start] = ACTIONS(4554), + [sym__emphasis_open_star] = ACTIONS(4554), + [sym__emphasis_open_underscore] = ACTIONS(4554), + [sym__strikeout_open] = ACTIONS(4554), + [sym__latex_span_start] = ACTIONS(4554), + [sym__single_quote_open] = ACTIONS(4554), + [sym__double_quote_open] = ACTIONS(4554), + [sym__double_quote_close] = ACTIONS(4554), + [sym__superscript_open] = ACTIONS(4554), + [sym__subscript_open] = ACTIONS(4554), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4554), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4554), + [sym__cite_author_in_text] = ACTIONS(4554), + [sym__cite_suppress_author] = ACTIONS(4554), + [sym__shortcode_open_escaped] = ACTIONS(4554), + [sym__shortcode_open] = ACTIONS(4554), + [sym__unclosed_span] = ACTIONS(4554), }, [STATE(413)] = { - [sym__qmd_attribute] = STATE(578), - [sym_raw_attribute] = STATE(578), - [sym_commonmark_attribute] = STATE(578), - [sym_language_attribute] = STATE(578), - [sym__backslash_escape] = ACTIONS(3655), - [sym_entity_reference] = ACTIONS(3655), - [sym_numeric_character_reference] = ACTIONS(3655), - [anon_sym_LT] = ACTIONS(3657), - [anon_sym_GT] = ACTIONS(3655), - [anon_sym_BANG] = ACTIONS(3655), - [anon_sym_DQUOTE] = ACTIONS(3655), - [anon_sym_POUND] = ACTIONS(3655), - [anon_sym_DOLLAR] = ACTIONS(3655), - [anon_sym_PERCENT] = ACTIONS(3655), - [anon_sym_AMP] = ACTIONS(3657), - [anon_sym_SQUOTE] = ACTIONS(3655), - [anon_sym_STAR] = ACTIONS(3655), - [anon_sym_PLUS] = ACTIONS(3655), - [anon_sym_COMMA] = ACTIONS(3655), - [anon_sym_DASH] = ACTIONS(3657), - [anon_sym_DOT] = ACTIONS(3657), - [anon_sym_SLASH] = ACTIONS(3655), - [anon_sym_COLON] = ACTIONS(3655), - [anon_sym_SEMI] = ACTIONS(3655), - [anon_sym_EQ] = ACTIONS(3655), - [anon_sym_QMARK] = ACTIONS(3655), - [anon_sym_LBRACK] = ACTIONS(3657), - [anon_sym_BSLASH] = ACTIONS(3657), - [anon_sym_CARET] = ACTIONS(3657), - [anon_sym__] = ACTIONS(3655), - [anon_sym_BQUOTE] = ACTIONS(3655), - [anon_sym_LBRACE] = ACTIONS(3725), - [anon_sym_PIPE] = ACTIONS(3655), - [anon_sym_TILDE] = ACTIONS(3655), - [anon_sym_LPAREN] = ACTIONS(3655), - [anon_sym_RPAREN] = ACTIONS(3655), - [sym__newline_token] = ACTIONS(3655), - [anon_sym_CARET_LBRACK] = ACTIONS(3655), - [anon_sym_LBRACK_CARET] = ACTIONS(3655), - [sym_uri_autolink] = ACTIONS(3655), - [sym_email_autolink] = ACTIONS(3655), - [sym__whitespace_ge_2] = ACTIONS(3655), - [aux_sym__whitespace_token1] = ACTIONS(3657), - [sym__word_no_digit] = ACTIONS(3655), - [sym__digits] = ACTIONS(3655), - [anon_sym_DASH_DASH] = ACTIONS(3657), - [anon_sym_DASH_DASH_DASH] = ACTIONS(3655), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3655), - [sym__code_span_start] = ACTIONS(3655), - [sym__emphasis_open_star] = ACTIONS(3655), - [sym__emphasis_open_underscore] = ACTIONS(3655), - [sym__strikeout_open] = ACTIONS(3655), - [sym__latex_span_start] = ACTIONS(3655), - [sym__single_quote_open] = ACTIONS(3655), - [sym__single_quote_close] = ACTIONS(3655), - [sym__double_quote_open] = ACTIONS(3655), - [sym__superscript_open] = ACTIONS(3655), - [sym__subscript_open] = ACTIONS(3655), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3655), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3655), - [sym__cite_author_in_text] = ACTIONS(3655), - [sym__cite_suppress_author] = ACTIONS(3655), - [sym__shortcode_open_escaped] = ACTIONS(3655), - [sym__shortcode_open] = ACTIONS(3655), - [sym__unclosed_span] = ACTIONS(3655), + [sym__qmd_attribute] = STATE(698), + [sym_raw_attribute] = STATE(698), + [sym_commonmark_attribute] = STATE(698), + [sym_language_attribute] = STATE(698), + [sym__backslash_escape] = ACTIONS(4558), + [sym_entity_reference] = ACTIONS(4558), + [sym_numeric_character_reference] = ACTIONS(4558), + [anon_sym_LT] = ACTIONS(4560), + [anon_sym_GT] = ACTIONS(4558), + [anon_sym_BANG] = ACTIONS(4558), + [anon_sym_DQUOTE] = ACTIONS(4558), + [anon_sym_POUND] = ACTIONS(4558), + [anon_sym_DOLLAR] = ACTIONS(4558), + [anon_sym_PERCENT] = ACTIONS(4558), + [anon_sym_AMP] = ACTIONS(4560), + [anon_sym_SQUOTE] = ACTIONS(4558), + [anon_sym_STAR] = ACTIONS(4558), + [anon_sym_PLUS] = ACTIONS(4558), + [anon_sym_COMMA] = ACTIONS(4558), + [anon_sym_DASH] = ACTIONS(4560), + [anon_sym_DOT] = ACTIONS(4560), + [anon_sym_SLASH] = ACTIONS(4558), + [anon_sym_COLON] = ACTIONS(4558), + [anon_sym_SEMI] = ACTIONS(4558), + [anon_sym_EQ] = ACTIONS(4558), + [anon_sym_QMARK] = ACTIONS(4558), + [anon_sym_LBRACK] = ACTIONS(4560), + [anon_sym_BSLASH] = ACTIONS(4560), + [anon_sym_CARET] = ACTIONS(4560), + [anon_sym__] = ACTIONS(4558), + [anon_sym_BQUOTE] = ACTIONS(4558), + [anon_sym_LBRACE] = ACTIONS(4580), + [anon_sym_PIPE] = ACTIONS(4558), + [anon_sym_TILDE] = ACTIONS(4558), + [anon_sym_LPAREN] = ACTIONS(4558), + [anon_sym_RPAREN] = ACTIONS(4558), + [sym__newline_token] = ACTIONS(4558), + [aux_sym_insert_token1] = ACTIONS(4558), + [aux_sym_delete_token1] = ACTIONS(4558), + [aux_sym_highlight_token1] = ACTIONS(4558), + [aux_sym_edit_comment_token1] = ACTIONS(4558), + [anon_sym_CARET_LBRACK] = ACTIONS(4558), + [anon_sym_LBRACK_CARET] = ACTIONS(4558), + [sym_uri_autolink] = ACTIONS(4558), + [sym_email_autolink] = ACTIONS(4558), + [sym__whitespace_ge_2] = ACTIONS(4558), + [aux_sym__whitespace_token1] = ACTIONS(4560), + [sym__word_no_digit] = ACTIONS(4558), + [sym__digits] = ACTIONS(4558), + [anon_sym_DASH_DASH] = ACTIONS(4560), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4558), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4558), + [sym__code_span_start] = ACTIONS(4558), + [sym__emphasis_open_star] = ACTIONS(4558), + [sym__emphasis_open_underscore] = ACTIONS(4558), + [sym__strikeout_open] = ACTIONS(4558), + [sym__latex_span_start] = ACTIONS(4558), + [sym__single_quote_open] = ACTIONS(4558), + [sym__double_quote_open] = ACTIONS(4558), + [sym__double_quote_close] = ACTIONS(4558), + [sym__superscript_open] = ACTIONS(4558), + [sym__subscript_open] = ACTIONS(4558), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4558), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4558), + [sym__cite_author_in_text] = ACTIONS(4558), + [sym__cite_suppress_author] = ACTIONS(4558), + [sym__shortcode_open_escaped] = ACTIONS(4558), + [sym__shortcode_open] = ACTIONS(4558), + [sym__unclosed_span] = ACTIONS(4558), }, [STATE(414)] = { - [sym__qmd_attribute] = STATE(580), - [sym_raw_attribute] = STATE(580), - [sym_commonmark_attribute] = STATE(580), - [sym_language_attribute] = STATE(580), - [sym__backslash_escape] = ACTIONS(3659), - [sym_entity_reference] = ACTIONS(3659), - [sym_numeric_character_reference] = ACTIONS(3659), - [anon_sym_LT] = ACTIONS(3661), - [anon_sym_GT] = ACTIONS(3659), - [anon_sym_BANG] = ACTIONS(3659), - [anon_sym_DQUOTE] = ACTIONS(3659), - [anon_sym_POUND] = ACTIONS(3659), - [anon_sym_DOLLAR] = ACTIONS(3659), - [anon_sym_PERCENT] = ACTIONS(3659), - [anon_sym_AMP] = ACTIONS(3661), - [anon_sym_SQUOTE] = ACTIONS(3659), - [anon_sym_STAR] = ACTIONS(3659), - [anon_sym_PLUS] = ACTIONS(3659), - [anon_sym_COMMA] = ACTIONS(3659), - [anon_sym_DASH] = ACTIONS(3661), - [anon_sym_DOT] = ACTIONS(3661), - [anon_sym_SLASH] = ACTIONS(3659), - [anon_sym_COLON] = ACTIONS(3659), - [anon_sym_SEMI] = ACTIONS(3659), - [anon_sym_EQ] = ACTIONS(3659), - [anon_sym_QMARK] = ACTIONS(3659), - [anon_sym_LBRACK] = ACTIONS(3661), - [anon_sym_BSLASH] = ACTIONS(3661), - [anon_sym_CARET] = ACTIONS(3661), - [anon_sym__] = ACTIONS(3659), - [anon_sym_BQUOTE] = ACTIONS(3659), - [anon_sym_LBRACE] = ACTIONS(3725), - [anon_sym_PIPE] = ACTIONS(3659), - [anon_sym_TILDE] = ACTIONS(3659), - [anon_sym_LPAREN] = ACTIONS(3659), - [anon_sym_RPAREN] = ACTIONS(3659), - [sym__newline_token] = ACTIONS(3659), - [anon_sym_CARET_LBRACK] = ACTIONS(3659), - [anon_sym_LBRACK_CARET] = ACTIONS(3659), - [sym_uri_autolink] = ACTIONS(3659), - [sym_email_autolink] = ACTIONS(3659), - [sym__whitespace_ge_2] = ACTIONS(3659), - [aux_sym__whitespace_token1] = ACTIONS(3661), - [sym__word_no_digit] = ACTIONS(3659), - [sym__digits] = ACTIONS(3659), - [anon_sym_DASH_DASH] = ACTIONS(3661), - [anon_sym_DASH_DASH_DASH] = ACTIONS(3659), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3659), - [sym__code_span_start] = ACTIONS(3659), - [sym__emphasis_open_star] = ACTIONS(3659), - [sym__emphasis_open_underscore] = ACTIONS(3659), - [sym__strikeout_open] = ACTIONS(3659), - [sym__latex_span_start] = ACTIONS(3659), - [sym__single_quote_open] = ACTIONS(3659), - [sym__single_quote_close] = ACTIONS(3659), - [sym__double_quote_open] = ACTIONS(3659), - [sym__superscript_open] = ACTIONS(3659), - [sym__subscript_open] = ACTIONS(3659), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3659), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3659), - [sym__cite_author_in_text] = ACTIONS(3659), - [sym__cite_suppress_author] = ACTIONS(3659), - [sym__shortcode_open_escaped] = ACTIONS(3659), - [sym__shortcode_open] = ACTIONS(3659), - [sym__unclosed_span] = ACTIONS(3659), + [sym__qmd_attribute] = STATE(699), + [sym_raw_attribute] = STATE(699), + [sym_commonmark_attribute] = STATE(699), + [sym_language_attribute] = STATE(699), + [sym__backslash_escape] = ACTIONS(4562), + [sym_entity_reference] = ACTIONS(4562), + [sym_numeric_character_reference] = ACTIONS(4562), + [anon_sym_LT] = ACTIONS(4564), + [anon_sym_GT] = ACTIONS(4562), + [anon_sym_BANG] = ACTIONS(4562), + [anon_sym_DQUOTE] = ACTIONS(4562), + [anon_sym_POUND] = ACTIONS(4562), + [anon_sym_DOLLAR] = ACTIONS(4562), + [anon_sym_PERCENT] = ACTIONS(4562), + [anon_sym_AMP] = ACTIONS(4564), + [anon_sym_SQUOTE] = ACTIONS(4562), + [anon_sym_STAR] = ACTIONS(4562), + [anon_sym_PLUS] = ACTIONS(4562), + [anon_sym_COMMA] = ACTIONS(4562), + [anon_sym_DASH] = ACTIONS(4564), + [anon_sym_DOT] = ACTIONS(4564), + [anon_sym_SLASH] = ACTIONS(4562), + [anon_sym_COLON] = ACTIONS(4562), + [anon_sym_SEMI] = ACTIONS(4562), + [anon_sym_EQ] = ACTIONS(4562), + [anon_sym_QMARK] = ACTIONS(4562), + [anon_sym_LBRACK] = ACTIONS(4564), + [anon_sym_BSLASH] = ACTIONS(4564), + [anon_sym_CARET] = ACTIONS(4564), + [anon_sym__] = ACTIONS(4562), + [anon_sym_BQUOTE] = ACTIONS(4562), + [anon_sym_LBRACE] = ACTIONS(4580), + [anon_sym_PIPE] = ACTIONS(4562), + [anon_sym_TILDE] = ACTIONS(4562), + [anon_sym_LPAREN] = ACTIONS(4562), + [anon_sym_RPAREN] = ACTIONS(4562), + [sym__newline_token] = ACTIONS(4562), + [aux_sym_insert_token1] = ACTIONS(4562), + [aux_sym_delete_token1] = ACTIONS(4562), + [aux_sym_highlight_token1] = ACTIONS(4562), + [aux_sym_edit_comment_token1] = ACTIONS(4562), + [anon_sym_CARET_LBRACK] = ACTIONS(4562), + [anon_sym_LBRACK_CARET] = ACTIONS(4562), + [sym_uri_autolink] = ACTIONS(4562), + [sym_email_autolink] = ACTIONS(4562), + [sym__whitespace_ge_2] = ACTIONS(4562), + [aux_sym__whitespace_token1] = ACTIONS(4564), + [sym__word_no_digit] = ACTIONS(4562), + [sym__digits] = ACTIONS(4562), + [anon_sym_DASH_DASH] = ACTIONS(4564), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4562), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4562), + [sym__code_span_start] = ACTIONS(4562), + [sym__emphasis_open_star] = ACTIONS(4562), + [sym__emphasis_open_underscore] = ACTIONS(4562), + [sym__strikeout_open] = ACTIONS(4562), + [sym__latex_span_start] = ACTIONS(4562), + [sym__single_quote_open] = ACTIONS(4562), + [sym__double_quote_open] = ACTIONS(4562), + [sym__double_quote_close] = ACTIONS(4562), + [sym__superscript_open] = ACTIONS(4562), + [sym__subscript_open] = ACTIONS(4562), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4562), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4562), + [sym__cite_author_in_text] = ACTIONS(4562), + [sym__cite_suppress_author] = ACTIONS(4562), + [sym__shortcode_open_escaped] = ACTIONS(4562), + [sym__shortcode_open] = ACTIONS(4562), + [sym__unclosed_span] = ACTIONS(4562), }, [STATE(415)] = { - [sym__qmd_attribute] = STATE(586), - [sym_raw_attribute] = STATE(586), - [sym_commonmark_attribute] = STATE(586), - [sym_language_attribute] = STATE(586), - [sym__backslash_escape] = ACTIONS(3637), - [sym_entity_reference] = ACTIONS(3637), - [sym_numeric_character_reference] = ACTIONS(3637), - [anon_sym_LT] = ACTIONS(3639), - [anon_sym_GT] = ACTIONS(3637), - [anon_sym_BANG] = ACTIONS(3637), - [anon_sym_DQUOTE] = ACTIONS(3637), - [anon_sym_POUND] = ACTIONS(3637), - [anon_sym_DOLLAR] = ACTIONS(3637), - [anon_sym_PERCENT] = ACTIONS(3637), - [anon_sym_AMP] = ACTIONS(3639), - [anon_sym_SQUOTE] = ACTIONS(3637), - [anon_sym_STAR] = ACTIONS(3637), - [anon_sym_PLUS] = ACTIONS(3637), - [anon_sym_COMMA] = ACTIONS(3637), - [anon_sym_DASH] = ACTIONS(3639), - [anon_sym_DOT] = ACTIONS(3639), - [anon_sym_SLASH] = ACTIONS(3637), - [anon_sym_COLON] = ACTIONS(3637), - [anon_sym_SEMI] = ACTIONS(3637), - [anon_sym_EQ] = ACTIONS(3637), - [anon_sym_QMARK] = ACTIONS(3637), - [anon_sym_LBRACK] = ACTIONS(3639), - [anon_sym_BSLASH] = ACTIONS(3639), - [anon_sym_CARET] = ACTIONS(3639), - [anon_sym__] = ACTIONS(3637), - [anon_sym_BQUOTE] = ACTIONS(3637), - [anon_sym_LBRACE] = ACTIONS(3725), - [anon_sym_PIPE] = ACTIONS(3637), - [anon_sym_TILDE] = ACTIONS(3637), - [anon_sym_LPAREN] = ACTIONS(3637), - [anon_sym_RPAREN] = ACTIONS(3637), - [sym__newline_token] = ACTIONS(3637), - [anon_sym_CARET_LBRACK] = ACTIONS(3637), - [anon_sym_LBRACK_CARET] = ACTIONS(3637), - [sym_uri_autolink] = ACTIONS(3637), - [sym_email_autolink] = ACTIONS(3637), - [sym__whitespace_ge_2] = ACTIONS(3637), - [aux_sym__whitespace_token1] = ACTIONS(3639), - [sym__word_no_digit] = ACTIONS(3637), - [sym__digits] = ACTIONS(3637), - [anon_sym_DASH_DASH] = ACTIONS(3639), - [anon_sym_DASH_DASH_DASH] = ACTIONS(3637), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3637), - [sym__code_span_start] = ACTIONS(3637), - [sym__emphasis_open_star] = ACTIONS(3637), - [sym__emphasis_open_underscore] = ACTIONS(3637), - [sym__strikeout_open] = ACTIONS(3637), - [sym__latex_span_start] = ACTIONS(3637), - [sym__single_quote_open] = ACTIONS(3637), - [sym__single_quote_close] = ACTIONS(3637), - [sym__double_quote_open] = ACTIONS(3637), - [sym__superscript_open] = ACTIONS(3637), - [sym__subscript_open] = ACTIONS(3637), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3637), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3637), - [sym__cite_author_in_text] = ACTIONS(3637), - [sym__cite_suppress_author] = ACTIONS(3637), - [sym__shortcode_open_escaped] = ACTIONS(3637), - [sym__shortcode_open] = ACTIONS(3637), - [sym__unclosed_span] = ACTIONS(3637), + [sym__qmd_attribute] = STATE(970), + [sym_raw_attribute] = STATE(970), + [sym_commonmark_attribute] = STATE(970), + [sym_language_attribute] = STATE(970), + [sym__backslash_escape] = ACTIONS(4534), + [sym_entity_reference] = ACTIONS(4534), + [sym_numeric_character_reference] = ACTIONS(4534), + [anon_sym_LT] = ACTIONS(4536), + [anon_sym_GT] = ACTIONS(4534), + [anon_sym_BANG] = ACTIONS(4534), + [anon_sym_DQUOTE] = ACTIONS(4534), + [anon_sym_POUND] = ACTIONS(4534), + [anon_sym_DOLLAR] = ACTIONS(4534), + [anon_sym_PERCENT] = ACTIONS(4534), + [anon_sym_AMP] = ACTIONS(4536), + [anon_sym_SQUOTE] = ACTIONS(4534), + [anon_sym_STAR] = ACTIONS(4534), + [anon_sym_PLUS] = ACTIONS(4534), + [anon_sym_COMMA] = ACTIONS(4534), + [anon_sym_DASH] = ACTIONS(4536), + [anon_sym_DOT] = ACTIONS(4536), + [anon_sym_SLASH] = ACTIONS(4534), + [anon_sym_COLON] = ACTIONS(4534), + [anon_sym_SEMI] = ACTIONS(4534), + [anon_sym_EQ] = ACTIONS(4534), + [anon_sym_QMARK] = ACTIONS(4534), + [anon_sym_LBRACK] = ACTIONS(4536), + [anon_sym_BSLASH] = ACTIONS(4536), + [anon_sym_CARET] = ACTIONS(4536), + [anon_sym__] = ACTIONS(4534), + [anon_sym_BQUOTE] = ACTIONS(4534), + [anon_sym_LBRACE] = ACTIONS(4570), + [anon_sym_PIPE] = ACTIONS(4534), + [anon_sym_TILDE] = ACTIONS(4534), + [anon_sym_LPAREN] = ACTIONS(4534), + [anon_sym_RPAREN] = ACTIONS(4534), + [sym__newline_token] = ACTIONS(4534), + [aux_sym_insert_token1] = ACTIONS(4534), + [aux_sym_delete_token1] = ACTIONS(4534), + [aux_sym_highlight_token1] = ACTIONS(4534), + [aux_sym_edit_comment_token1] = ACTIONS(4534), + [anon_sym_CARET_LBRACK] = ACTIONS(4534), + [anon_sym_LBRACK_CARET] = ACTIONS(4534), + [sym_uri_autolink] = ACTIONS(4534), + [sym_email_autolink] = ACTIONS(4534), + [sym__whitespace_ge_2] = ACTIONS(4534), + [aux_sym__whitespace_token1] = ACTIONS(4536), + [sym__word_no_digit] = ACTIONS(4534), + [sym__digits] = ACTIONS(4534), + [anon_sym_DASH_DASH] = ACTIONS(4536), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4534), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4534), + [sym__code_span_start] = ACTIONS(4534), + [sym__emphasis_open_star] = ACTIONS(4534), + [sym__emphasis_open_underscore] = ACTIONS(4534), + [sym__emphasis_close_underscore] = ACTIONS(4534), + [sym__strikeout_open] = ACTIONS(4534), + [sym__latex_span_start] = ACTIONS(4534), + [sym__single_quote_open] = ACTIONS(4534), + [sym__double_quote_open] = ACTIONS(4534), + [sym__superscript_open] = ACTIONS(4534), + [sym__subscript_open] = ACTIONS(4534), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4534), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4534), + [sym__cite_author_in_text] = ACTIONS(4534), + [sym__cite_suppress_author] = ACTIONS(4534), + [sym__shortcode_open_escaped] = ACTIONS(4534), + [sym__shortcode_open] = ACTIONS(4534), + [sym__unclosed_span] = ACTIONS(4534), }, [STATE(416)] = { - [sym__qmd_attribute] = STATE(588), - [sym_raw_attribute] = STATE(588), - [sym_commonmark_attribute] = STATE(588), - [sym_language_attribute] = STATE(588), - [sym__backslash_escape] = ACTIONS(3663), - [sym_entity_reference] = ACTIONS(3663), - [sym_numeric_character_reference] = ACTIONS(3663), - [anon_sym_LT] = ACTIONS(3665), - [anon_sym_GT] = ACTIONS(3663), - [anon_sym_BANG] = ACTIONS(3663), - [anon_sym_DQUOTE] = ACTIONS(3663), - [anon_sym_POUND] = ACTIONS(3663), - [anon_sym_DOLLAR] = ACTIONS(3663), - [anon_sym_PERCENT] = ACTIONS(3663), - [anon_sym_AMP] = ACTIONS(3665), - [anon_sym_SQUOTE] = ACTIONS(3663), - [anon_sym_STAR] = ACTIONS(3663), - [anon_sym_PLUS] = ACTIONS(3663), - [anon_sym_COMMA] = ACTIONS(3663), - [anon_sym_DASH] = ACTIONS(3665), - [anon_sym_DOT] = ACTIONS(3665), - [anon_sym_SLASH] = ACTIONS(3663), - [anon_sym_COLON] = ACTIONS(3663), - [anon_sym_SEMI] = ACTIONS(3663), - [anon_sym_EQ] = ACTIONS(3663), - [anon_sym_QMARK] = ACTIONS(3663), - [anon_sym_LBRACK] = ACTIONS(3665), - [anon_sym_BSLASH] = ACTIONS(3665), - [anon_sym_CARET] = ACTIONS(3665), - [anon_sym__] = ACTIONS(3663), - [anon_sym_BQUOTE] = ACTIONS(3663), - [anon_sym_LBRACE] = ACTIONS(3725), - [anon_sym_PIPE] = ACTIONS(3663), - [anon_sym_TILDE] = ACTIONS(3663), - [anon_sym_LPAREN] = ACTIONS(3663), - [anon_sym_RPAREN] = ACTIONS(3663), - [sym__newline_token] = ACTIONS(3663), - [anon_sym_CARET_LBRACK] = ACTIONS(3663), - [anon_sym_LBRACK_CARET] = ACTIONS(3663), - [sym_uri_autolink] = ACTIONS(3663), - [sym_email_autolink] = ACTIONS(3663), - [sym__whitespace_ge_2] = ACTIONS(3663), - [aux_sym__whitespace_token1] = ACTIONS(3665), - [sym__word_no_digit] = ACTIONS(3663), - [sym__digits] = ACTIONS(3663), - [anon_sym_DASH_DASH] = ACTIONS(3665), - [anon_sym_DASH_DASH_DASH] = ACTIONS(3663), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3663), - [sym__code_span_start] = ACTIONS(3663), - [sym__emphasis_open_star] = ACTIONS(3663), - [sym__emphasis_open_underscore] = ACTIONS(3663), - [sym__strikeout_open] = ACTIONS(3663), - [sym__latex_span_start] = ACTIONS(3663), - [sym__single_quote_open] = ACTIONS(3663), - [sym__single_quote_close] = ACTIONS(3663), - [sym__double_quote_open] = ACTIONS(3663), - [sym__superscript_open] = ACTIONS(3663), - [sym__subscript_open] = ACTIONS(3663), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3663), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3663), - [sym__cite_author_in_text] = ACTIONS(3663), - [sym__cite_suppress_author] = ACTIONS(3663), - [sym__shortcode_open_escaped] = ACTIONS(3663), - [sym__shortcode_open] = ACTIONS(3663), - [sym__unclosed_span] = ACTIONS(3663), + [sym__qmd_attribute] = STATE(735), + [sym_raw_attribute] = STATE(735), + [sym_commonmark_attribute] = STATE(735), + [sym_language_attribute] = STATE(735), + [sym__backslash_escape] = ACTIONS(4576), + [sym_entity_reference] = ACTIONS(4576), + [sym_numeric_character_reference] = ACTIONS(4576), + [anon_sym_LT] = ACTIONS(4578), + [anon_sym_GT] = ACTIONS(4576), + [anon_sym_BANG] = ACTIONS(4576), + [anon_sym_DQUOTE] = ACTIONS(4576), + [anon_sym_POUND] = ACTIONS(4576), + [anon_sym_DOLLAR] = ACTIONS(4576), + [anon_sym_PERCENT] = ACTIONS(4576), + [anon_sym_AMP] = ACTIONS(4578), + [anon_sym_SQUOTE] = ACTIONS(4576), + [anon_sym_STAR] = ACTIONS(4576), + [anon_sym_PLUS] = ACTIONS(4576), + [anon_sym_COMMA] = ACTIONS(4576), + [anon_sym_DASH] = ACTIONS(4578), + [anon_sym_DOT] = ACTIONS(4578), + [anon_sym_SLASH] = ACTIONS(4576), + [anon_sym_COLON] = ACTIONS(4576), + [anon_sym_SEMI] = ACTIONS(4576), + [anon_sym_EQ] = ACTIONS(4576), + [anon_sym_QMARK] = ACTIONS(4576), + [anon_sym_LBRACK] = ACTIONS(4578), + [anon_sym_BSLASH] = ACTIONS(4578), + [anon_sym_CARET] = ACTIONS(4578), + [anon_sym__] = ACTIONS(4576), + [anon_sym_BQUOTE] = ACTIONS(4576), + [anon_sym_LBRACE] = ACTIONS(4614), + [anon_sym_PIPE] = ACTIONS(4576), + [anon_sym_TILDE] = ACTIONS(4576), + [anon_sym_LPAREN] = ACTIONS(4616), + [anon_sym_RPAREN] = ACTIONS(4576), + [sym__newline_token] = ACTIONS(4576), + [aux_sym_insert_token1] = ACTIONS(4576), + [aux_sym_delete_token1] = ACTIONS(4576), + [aux_sym_highlight_token1] = ACTIONS(4576), + [aux_sym_edit_comment_token1] = ACTIONS(4576), + [anon_sym_CARET_LBRACK] = ACTIONS(4576), + [anon_sym_LBRACK_CARET] = ACTIONS(4576), + [sym_uri_autolink] = ACTIONS(4576), + [sym_email_autolink] = ACTIONS(4576), + [sym__whitespace_ge_2] = ACTIONS(4576), + [aux_sym__whitespace_token1] = ACTIONS(4578), + [sym__word_no_digit] = ACTIONS(4576), + [sym__digits] = ACTIONS(4576), + [anon_sym_DASH_DASH] = ACTIONS(4578), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4576), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4576), + [sym__code_span_start] = ACTIONS(4576), + [sym__emphasis_open_star] = ACTIONS(4576), + [sym__emphasis_open_underscore] = ACTIONS(4576), + [sym__strikeout_open] = ACTIONS(4576), + [sym__latex_span_start] = ACTIONS(4576), + [sym__single_quote_open] = ACTIONS(4576), + [sym__double_quote_open] = ACTIONS(4576), + [sym__superscript_open] = ACTIONS(4576), + [sym__superscript_close] = ACTIONS(4576), + [sym__subscript_open] = ACTIONS(4576), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4576), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4576), + [sym__cite_author_in_text] = ACTIONS(4576), + [sym__cite_suppress_author] = ACTIONS(4576), + [sym__shortcode_open_escaped] = ACTIONS(4576), + [sym__shortcode_open] = ACTIONS(4576), + [sym__unclosed_span] = ACTIONS(4576), }, [STATE(417)] = { - [sym__qmd_attribute] = STATE(592), - [sym_raw_attribute] = STATE(592), - [sym_commonmark_attribute] = STATE(592), - [sym_language_attribute] = STATE(592), - [sym__backslash_escape] = ACTIONS(3667), - [sym_entity_reference] = ACTIONS(3667), - [sym_numeric_character_reference] = ACTIONS(3667), - [anon_sym_LT] = ACTIONS(3669), - [anon_sym_GT] = ACTIONS(3667), - [anon_sym_BANG] = ACTIONS(3667), - [anon_sym_DQUOTE] = ACTIONS(3667), - [anon_sym_POUND] = ACTIONS(3667), - [anon_sym_DOLLAR] = ACTIONS(3667), - [anon_sym_PERCENT] = ACTIONS(3667), - [anon_sym_AMP] = ACTIONS(3669), - [anon_sym_SQUOTE] = ACTIONS(3667), - [anon_sym_STAR] = ACTIONS(3667), - [anon_sym_PLUS] = ACTIONS(3667), - [anon_sym_COMMA] = ACTIONS(3667), - [anon_sym_DASH] = ACTIONS(3669), - [anon_sym_DOT] = ACTIONS(3669), - [anon_sym_SLASH] = ACTIONS(3667), - [anon_sym_COLON] = ACTIONS(3667), - [anon_sym_SEMI] = ACTIONS(3667), - [anon_sym_EQ] = ACTIONS(3667), - [anon_sym_QMARK] = ACTIONS(3667), - [anon_sym_LBRACK] = ACTIONS(3669), - [anon_sym_BSLASH] = ACTIONS(3669), - [anon_sym_CARET] = ACTIONS(3669), - [anon_sym__] = ACTIONS(3667), - [anon_sym_BQUOTE] = ACTIONS(3667), - [anon_sym_LBRACE] = ACTIONS(3725), - [anon_sym_PIPE] = ACTIONS(3667), - [anon_sym_TILDE] = ACTIONS(3667), - [anon_sym_LPAREN] = ACTIONS(3667), - [anon_sym_RPAREN] = ACTIONS(3667), - [sym__newline_token] = ACTIONS(3667), - [anon_sym_CARET_LBRACK] = ACTIONS(3667), - [anon_sym_LBRACK_CARET] = ACTIONS(3667), - [sym_uri_autolink] = ACTIONS(3667), - [sym_email_autolink] = ACTIONS(3667), - [sym__whitespace_ge_2] = ACTIONS(3667), - [aux_sym__whitespace_token1] = ACTIONS(3669), - [sym__word_no_digit] = ACTIONS(3667), - [sym__digits] = ACTIONS(3667), - [anon_sym_DASH_DASH] = ACTIONS(3669), - [anon_sym_DASH_DASH_DASH] = ACTIONS(3667), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3667), - [sym__code_span_start] = ACTIONS(3667), - [sym__emphasis_open_star] = ACTIONS(3667), - [sym__emphasis_open_underscore] = ACTIONS(3667), - [sym__strikeout_open] = ACTIONS(3667), - [sym__latex_span_start] = ACTIONS(3667), - [sym__single_quote_open] = ACTIONS(3667), - [sym__single_quote_close] = ACTIONS(3667), - [sym__double_quote_open] = ACTIONS(3667), - [sym__superscript_open] = ACTIONS(3667), - [sym__subscript_open] = ACTIONS(3667), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3667), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3667), - [sym__cite_author_in_text] = ACTIONS(3667), - [sym__cite_suppress_author] = ACTIONS(3667), - [sym__shortcode_open_escaped] = ACTIONS(3667), - [sym__shortcode_open] = ACTIONS(3667), - [sym__unclosed_span] = ACTIONS(3667), + [sym__qmd_attribute] = STATE(736), + [sym_raw_attribute] = STATE(736), + [sym_commonmark_attribute] = STATE(736), + [sym_language_attribute] = STATE(736), + [sym__backslash_escape] = ACTIONS(4584), + [sym_entity_reference] = ACTIONS(4584), + [sym_numeric_character_reference] = ACTIONS(4584), + [anon_sym_LT] = ACTIONS(4586), + [anon_sym_GT] = ACTIONS(4584), + [anon_sym_BANG] = ACTIONS(4584), + [anon_sym_DQUOTE] = ACTIONS(4584), + [anon_sym_POUND] = ACTIONS(4584), + [anon_sym_DOLLAR] = ACTIONS(4584), + [anon_sym_PERCENT] = ACTIONS(4584), + [anon_sym_AMP] = ACTIONS(4586), + [anon_sym_SQUOTE] = ACTIONS(4584), + [anon_sym_STAR] = ACTIONS(4584), + [anon_sym_PLUS] = ACTIONS(4584), + [anon_sym_COMMA] = ACTIONS(4584), + [anon_sym_DASH] = ACTIONS(4586), + [anon_sym_DOT] = ACTIONS(4586), + [anon_sym_SLASH] = ACTIONS(4584), + [anon_sym_COLON] = ACTIONS(4584), + [anon_sym_SEMI] = ACTIONS(4584), + [anon_sym_EQ] = ACTIONS(4584), + [anon_sym_QMARK] = ACTIONS(4584), + [anon_sym_LBRACK] = ACTIONS(4586), + [anon_sym_BSLASH] = ACTIONS(4586), + [anon_sym_CARET] = ACTIONS(4586), + [anon_sym__] = ACTIONS(4584), + [anon_sym_BQUOTE] = ACTIONS(4584), + [anon_sym_LBRACE] = ACTIONS(4614), + [anon_sym_PIPE] = ACTIONS(4584), + [anon_sym_TILDE] = ACTIONS(4584), + [anon_sym_LPAREN] = ACTIONS(4584), + [anon_sym_RPAREN] = ACTIONS(4584), + [sym__newline_token] = ACTIONS(4584), + [aux_sym_insert_token1] = ACTIONS(4584), + [aux_sym_delete_token1] = ACTIONS(4584), + [aux_sym_highlight_token1] = ACTIONS(4584), + [aux_sym_edit_comment_token1] = ACTIONS(4584), + [anon_sym_CARET_LBRACK] = ACTIONS(4584), + [anon_sym_LBRACK_CARET] = ACTIONS(4584), + [sym_uri_autolink] = ACTIONS(4584), + [sym_email_autolink] = ACTIONS(4584), + [sym__whitespace_ge_2] = ACTIONS(4584), + [aux_sym__whitespace_token1] = ACTIONS(4586), + [sym__word_no_digit] = ACTIONS(4584), + [sym__digits] = ACTIONS(4584), + [anon_sym_DASH_DASH] = ACTIONS(4586), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4584), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4584), + [sym__code_span_start] = ACTIONS(4584), + [sym__emphasis_open_star] = ACTIONS(4584), + [sym__emphasis_open_underscore] = ACTIONS(4584), + [sym__strikeout_open] = ACTIONS(4584), + [sym__latex_span_start] = ACTIONS(4584), + [sym__single_quote_open] = ACTIONS(4584), + [sym__double_quote_open] = ACTIONS(4584), + [sym__superscript_open] = ACTIONS(4584), + [sym__superscript_close] = ACTIONS(4584), + [sym__subscript_open] = ACTIONS(4584), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4584), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4584), + [sym__cite_author_in_text] = ACTIONS(4584), + [sym__cite_suppress_author] = ACTIONS(4584), + [sym__shortcode_open_escaped] = ACTIONS(4584), + [sym__shortcode_open] = ACTIONS(4584), + [sym__unclosed_span] = ACTIONS(4584), }, [STATE(418)] = { - [sym__qmd_attribute] = STATE(594), - [sym_raw_attribute] = STATE(594), - [sym_commonmark_attribute] = STATE(594), - [sym_language_attribute] = STATE(594), - [sym__backslash_escape] = ACTIONS(3671), - [sym_entity_reference] = ACTIONS(3671), - [sym_numeric_character_reference] = ACTIONS(3671), - [anon_sym_LT] = ACTIONS(3673), - [anon_sym_GT] = ACTIONS(3671), - [anon_sym_BANG] = ACTIONS(3671), - [anon_sym_DQUOTE] = ACTIONS(3671), - [anon_sym_POUND] = ACTIONS(3671), - [anon_sym_DOLLAR] = ACTIONS(3671), - [anon_sym_PERCENT] = ACTIONS(3671), - [anon_sym_AMP] = ACTIONS(3673), - [anon_sym_SQUOTE] = ACTIONS(3671), - [anon_sym_STAR] = ACTIONS(3671), - [anon_sym_PLUS] = ACTIONS(3671), - [anon_sym_COMMA] = ACTIONS(3671), - [anon_sym_DASH] = ACTIONS(3673), - [anon_sym_DOT] = ACTIONS(3673), - [anon_sym_SLASH] = ACTIONS(3671), - [anon_sym_COLON] = ACTIONS(3671), - [anon_sym_SEMI] = ACTIONS(3671), - [anon_sym_EQ] = ACTIONS(3671), - [anon_sym_QMARK] = ACTIONS(3671), - [anon_sym_LBRACK] = ACTIONS(3673), - [anon_sym_BSLASH] = ACTIONS(3673), - [anon_sym_CARET] = ACTIONS(3673), - [anon_sym__] = ACTIONS(3671), - [anon_sym_BQUOTE] = ACTIONS(3671), - [anon_sym_LBRACE] = ACTIONS(3725), - [anon_sym_PIPE] = ACTIONS(3671), - [anon_sym_TILDE] = ACTIONS(3671), - [anon_sym_LPAREN] = ACTIONS(3671), - [anon_sym_RPAREN] = ACTIONS(3671), - [sym__newline_token] = ACTIONS(3671), - [anon_sym_CARET_LBRACK] = ACTIONS(3671), - [anon_sym_LBRACK_CARET] = ACTIONS(3671), - [sym_uri_autolink] = ACTIONS(3671), - [sym_email_autolink] = ACTIONS(3671), - [sym__whitespace_ge_2] = ACTIONS(3671), - [aux_sym__whitespace_token1] = ACTIONS(3673), - [sym__word_no_digit] = ACTIONS(3671), - [sym__digits] = ACTIONS(3671), - [anon_sym_DASH_DASH] = ACTIONS(3673), - [anon_sym_DASH_DASH_DASH] = ACTIONS(3671), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3671), - [sym__code_span_start] = ACTIONS(3671), - [sym__emphasis_open_star] = ACTIONS(3671), - [sym__emphasis_open_underscore] = ACTIONS(3671), - [sym__strikeout_open] = ACTIONS(3671), - [sym__latex_span_start] = ACTIONS(3671), - [sym__single_quote_open] = ACTIONS(3671), - [sym__single_quote_close] = ACTIONS(3671), - [sym__double_quote_open] = ACTIONS(3671), - [sym__superscript_open] = ACTIONS(3671), - [sym__subscript_open] = ACTIONS(3671), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3671), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3671), - [sym__cite_author_in_text] = ACTIONS(3671), - [sym__cite_suppress_author] = ACTIONS(3671), - [sym__shortcode_open_escaped] = ACTIONS(3671), - [sym__shortcode_open] = ACTIONS(3671), - [sym__unclosed_span] = ACTIONS(3671), + [sym__qmd_attribute] = STATE(986), + [sym_raw_attribute] = STATE(986), + [sym_commonmark_attribute] = STATE(986), + [sym_language_attribute] = STATE(986), + [sym__backslash_escape] = ACTIONS(4546), + [sym_entity_reference] = ACTIONS(4546), + [sym_numeric_character_reference] = ACTIONS(4546), + [anon_sym_LT] = ACTIONS(4548), + [anon_sym_GT] = ACTIONS(4546), + [anon_sym_BANG] = ACTIONS(4546), + [anon_sym_DQUOTE] = ACTIONS(4546), + [anon_sym_POUND] = ACTIONS(4546), + [anon_sym_DOLLAR] = ACTIONS(4546), + [anon_sym_PERCENT] = ACTIONS(4546), + [anon_sym_AMP] = ACTIONS(4548), + [anon_sym_SQUOTE] = ACTIONS(4546), + [anon_sym_STAR] = ACTIONS(4546), + [anon_sym_PLUS] = ACTIONS(4546), + [anon_sym_COMMA] = ACTIONS(4546), + [anon_sym_DASH] = ACTIONS(4548), + [anon_sym_DOT] = ACTIONS(4548), + [anon_sym_SLASH] = ACTIONS(4546), + [anon_sym_COLON] = ACTIONS(4546), + [anon_sym_SEMI] = ACTIONS(4546), + [anon_sym_EQ] = ACTIONS(4546), + [anon_sym_QMARK] = ACTIONS(4546), + [anon_sym_LBRACK] = ACTIONS(4548), + [anon_sym_BSLASH] = ACTIONS(4548), + [anon_sym_CARET] = ACTIONS(4548), + [anon_sym__] = ACTIONS(4546), + [anon_sym_BQUOTE] = ACTIONS(4546), + [anon_sym_LBRACE] = ACTIONS(4570), + [anon_sym_PIPE] = ACTIONS(4546), + [anon_sym_TILDE] = ACTIONS(4546), + [anon_sym_LPAREN] = ACTIONS(4546), + [anon_sym_RPAREN] = ACTIONS(4546), + [sym__newline_token] = ACTIONS(4546), + [aux_sym_insert_token1] = ACTIONS(4546), + [aux_sym_delete_token1] = ACTIONS(4546), + [aux_sym_highlight_token1] = ACTIONS(4546), + [aux_sym_edit_comment_token1] = ACTIONS(4546), + [anon_sym_CARET_LBRACK] = ACTIONS(4546), + [anon_sym_LBRACK_CARET] = ACTIONS(4546), + [sym_uri_autolink] = ACTIONS(4546), + [sym_email_autolink] = ACTIONS(4546), + [sym__whitespace_ge_2] = ACTIONS(4546), + [aux_sym__whitespace_token1] = ACTIONS(4548), + [sym__word_no_digit] = ACTIONS(4546), + [sym__digits] = ACTIONS(4546), + [anon_sym_DASH_DASH] = ACTIONS(4548), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4546), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4546), + [sym__code_span_start] = ACTIONS(4546), + [sym__emphasis_open_star] = ACTIONS(4546), + [sym__emphasis_open_underscore] = ACTIONS(4546), + [sym__emphasis_close_underscore] = ACTIONS(4546), + [sym__strikeout_open] = ACTIONS(4546), + [sym__latex_span_start] = ACTIONS(4546), + [sym__single_quote_open] = ACTIONS(4546), + [sym__double_quote_open] = ACTIONS(4546), + [sym__superscript_open] = ACTIONS(4546), + [sym__subscript_open] = ACTIONS(4546), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4546), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4546), + [sym__cite_author_in_text] = ACTIONS(4546), + [sym__cite_suppress_author] = ACTIONS(4546), + [sym__shortcode_open_escaped] = ACTIONS(4546), + [sym__shortcode_open] = ACTIONS(4546), + [sym__unclosed_span] = ACTIONS(4546), }, [STATE(419)] = { - [sym__qmd_attribute] = STATE(596), - [sym_raw_attribute] = STATE(596), - [sym_commonmark_attribute] = STATE(596), - [sym_language_attribute] = STATE(596), - [sym__backslash_escape] = ACTIONS(3675), - [sym_entity_reference] = ACTIONS(3675), - [sym_numeric_character_reference] = ACTIONS(3675), - [anon_sym_LT] = ACTIONS(3677), - [anon_sym_GT] = ACTIONS(3675), - [anon_sym_BANG] = ACTIONS(3675), - [anon_sym_DQUOTE] = ACTIONS(3675), - [anon_sym_POUND] = ACTIONS(3675), - [anon_sym_DOLLAR] = ACTIONS(3675), - [anon_sym_PERCENT] = ACTIONS(3675), - [anon_sym_AMP] = ACTIONS(3677), - [anon_sym_SQUOTE] = ACTIONS(3675), - [anon_sym_STAR] = ACTIONS(3675), - [anon_sym_PLUS] = ACTIONS(3675), - [anon_sym_COMMA] = ACTIONS(3675), - [anon_sym_DASH] = ACTIONS(3677), - [anon_sym_DOT] = ACTIONS(3677), - [anon_sym_SLASH] = ACTIONS(3675), - [anon_sym_COLON] = ACTIONS(3675), - [anon_sym_SEMI] = ACTIONS(3675), - [anon_sym_EQ] = ACTIONS(3675), - [anon_sym_QMARK] = ACTIONS(3675), - [anon_sym_LBRACK] = ACTIONS(3677), - [anon_sym_BSLASH] = ACTIONS(3677), - [anon_sym_CARET] = ACTIONS(3677), - [anon_sym__] = ACTIONS(3675), - [anon_sym_BQUOTE] = ACTIONS(3675), - [anon_sym_LBRACE] = ACTIONS(3725), - [anon_sym_PIPE] = ACTIONS(3675), - [anon_sym_TILDE] = ACTIONS(3675), - [anon_sym_LPAREN] = ACTIONS(3675), - [anon_sym_RPAREN] = ACTIONS(3675), - [sym__newline_token] = ACTIONS(3675), - [anon_sym_CARET_LBRACK] = ACTIONS(3675), - [anon_sym_LBRACK_CARET] = ACTIONS(3675), - [sym_uri_autolink] = ACTIONS(3675), - [sym_email_autolink] = ACTIONS(3675), - [sym__whitespace_ge_2] = ACTIONS(3675), - [aux_sym__whitespace_token1] = ACTIONS(3677), - [sym__word_no_digit] = ACTIONS(3675), - [sym__digits] = ACTIONS(3675), - [anon_sym_DASH_DASH] = ACTIONS(3677), - [anon_sym_DASH_DASH_DASH] = ACTIONS(3675), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3675), - [sym__code_span_start] = ACTIONS(3675), - [sym__emphasis_open_star] = ACTIONS(3675), - [sym__emphasis_open_underscore] = ACTIONS(3675), - [sym__strikeout_open] = ACTIONS(3675), - [sym__latex_span_start] = ACTIONS(3675), - [sym__single_quote_open] = ACTIONS(3675), - [sym__single_quote_close] = ACTIONS(3675), - [sym__double_quote_open] = ACTIONS(3675), - [sym__superscript_open] = ACTIONS(3675), - [sym__subscript_open] = ACTIONS(3675), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3675), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3675), - [sym__cite_author_in_text] = ACTIONS(3675), - [sym__cite_suppress_author] = ACTIONS(3675), - [sym__shortcode_open_escaped] = ACTIONS(3675), - [sym__shortcode_open] = ACTIONS(3675), - [sym__unclosed_span] = ACTIONS(3675), + [sym__qmd_attribute] = STATE(738), + [sym_raw_attribute] = STATE(738), + [sym_commonmark_attribute] = STATE(738), + [sym_language_attribute] = STATE(738), + [sym__backslash_escape] = ACTIONS(4592), + [sym_entity_reference] = ACTIONS(4592), + [sym_numeric_character_reference] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(4594), + [anon_sym_GT] = ACTIONS(4592), + [anon_sym_BANG] = ACTIONS(4592), + [anon_sym_DQUOTE] = ACTIONS(4592), + [anon_sym_POUND] = ACTIONS(4592), + [anon_sym_DOLLAR] = ACTIONS(4592), + [anon_sym_PERCENT] = ACTIONS(4592), + [anon_sym_AMP] = ACTIONS(4594), + [anon_sym_SQUOTE] = ACTIONS(4592), + [anon_sym_STAR] = ACTIONS(4592), + [anon_sym_PLUS] = ACTIONS(4592), + [anon_sym_COMMA] = ACTIONS(4592), + [anon_sym_DASH] = ACTIONS(4594), + [anon_sym_DOT] = ACTIONS(4594), + [anon_sym_SLASH] = ACTIONS(4592), + [anon_sym_COLON] = ACTIONS(4592), + [anon_sym_SEMI] = ACTIONS(4592), + [anon_sym_EQ] = ACTIONS(4592), + [anon_sym_QMARK] = ACTIONS(4592), + [anon_sym_LBRACK] = ACTIONS(4594), + [anon_sym_BSLASH] = ACTIONS(4594), + [anon_sym_CARET] = ACTIONS(4594), + [anon_sym__] = ACTIONS(4592), + [anon_sym_BQUOTE] = ACTIONS(4592), + [anon_sym_LBRACE] = ACTIONS(4614), + [anon_sym_PIPE] = ACTIONS(4592), + [anon_sym_TILDE] = ACTIONS(4592), + [anon_sym_LPAREN] = ACTIONS(4592), + [anon_sym_RPAREN] = ACTIONS(4592), + [sym__newline_token] = ACTIONS(4592), + [aux_sym_insert_token1] = ACTIONS(4592), + [aux_sym_delete_token1] = ACTIONS(4592), + [aux_sym_highlight_token1] = ACTIONS(4592), + [aux_sym_edit_comment_token1] = ACTIONS(4592), + [anon_sym_CARET_LBRACK] = ACTIONS(4592), + [anon_sym_LBRACK_CARET] = ACTIONS(4592), + [sym_uri_autolink] = ACTIONS(4592), + [sym_email_autolink] = ACTIONS(4592), + [sym__whitespace_ge_2] = ACTIONS(4592), + [aux_sym__whitespace_token1] = ACTIONS(4594), + [sym__word_no_digit] = ACTIONS(4592), + [sym__digits] = ACTIONS(4592), + [anon_sym_DASH_DASH] = ACTIONS(4594), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4592), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4592), + [sym__code_span_start] = ACTIONS(4592), + [sym__emphasis_open_star] = ACTIONS(4592), + [sym__emphasis_open_underscore] = ACTIONS(4592), + [sym__strikeout_open] = ACTIONS(4592), + [sym__latex_span_start] = ACTIONS(4592), + [sym__single_quote_open] = ACTIONS(4592), + [sym__double_quote_open] = ACTIONS(4592), + [sym__superscript_open] = ACTIONS(4592), + [sym__superscript_close] = ACTIONS(4592), + [sym__subscript_open] = ACTIONS(4592), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4592), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4592), + [sym__cite_author_in_text] = ACTIONS(4592), + [sym__cite_suppress_author] = ACTIONS(4592), + [sym__shortcode_open_escaped] = ACTIONS(4592), + [sym__shortcode_open] = ACTIONS(4592), + [sym__unclosed_span] = ACTIONS(4592), }, [STATE(420)] = { - [sym__qmd_attribute] = STATE(877), - [sym_raw_attribute] = STATE(877), - [sym_commonmark_attribute] = STATE(877), - [sym_language_attribute] = STATE(877), - [sym__backslash_escape] = ACTIONS(3683), - [sym_entity_reference] = ACTIONS(3683), - [sym_numeric_character_reference] = ACTIONS(3683), - [anon_sym_LT] = ACTIONS(3685), - [anon_sym_GT] = ACTIONS(3683), - [anon_sym_BANG] = ACTIONS(3683), - [anon_sym_DQUOTE] = ACTIONS(3683), - [anon_sym_POUND] = ACTIONS(3683), - [anon_sym_DOLLAR] = ACTIONS(3683), - [anon_sym_PERCENT] = ACTIONS(3683), - [anon_sym_AMP] = ACTIONS(3685), - [anon_sym_SQUOTE] = ACTIONS(3683), - [anon_sym_STAR] = ACTIONS(3683), - [anon_sym_PLUS] = ACTIONS(3683), - [anon_sym_COMMA] = ACTIONS(3683), - [anon_sym_DASH] = ACTIONS(3685), - [anon_sym_DOT] = ACTIONS(3685), - [anon_sym_SLASH] = ACTIONS(3683), - [anon_sym_COLON] = ACTIONS(3683), - [anon_sym_SEMI] = ACTIONS(3683), - [anon_sym_EQ] = ACTIONS(3683), - [anon_sym_QMARK] = ACTIONS(3683), - [anon_sym_LBRACK] = ACTIONS(3685), - [anon_sym_BSLASH] = ACTIONS(3685), - [anon_sym_CARET] = ACTIONS(3685), - [anon_sym__] = ACTIONS(3683), - [anon_sym_BQUOTE] = ACTIONS(3683), - [anon_sym_LBRACE] = ACTIONS(3717), - [anon_sym_PIPE] = ACTIONS(3683), - [anon_sym_TILDE] = ACTIONS(3683), - [anon_sym_LPAREN] = ACTIONS(3683), - [anon_sym_RPAREN] = ACTIONS(3683), - [sym__newline_token] = ACTIONS(3683), - [anon_sym_CARET_LBRACK] = ACTIONS(3683), - [anon_sym_LBRACK_CARET] = ACTIONS(3683), - [sym_uri_autolink] = ACTIONS(3683), - [sym_email_autolink] = ACTIONS(3683), - [sym__whitespace_ge_2] = ACTIONS(3683), - [aux_sym__whitespace_token1] = ACTIONS(3685), - [sym__word_no_digit] = ACTIONS(3683), - [sym__digits] = ACTIONS(3683), - [anon_sym_DASH_DASH] = ACTIONS(3685), - [anon_sym_DASH_DASH_DASH] = ACTIONS(3683), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3683), - [sym__code_span_start] = ACTIONS(3683), - [sym__emphasis_open_star] = ACTIONS(3683), - [sym__emphasis_open_underscore] = ACTIONS(3683), - [sym__strikeout_open] = ACTIONS(3683), - [sym__latex_span_start] = ACTIONS(3683), - [sym__single_quote_open] = ACTIONS(3683), - [sym__double_quote_open] = ACTIONS(3683), - [sym__superscript_open] = ACTIONS(3683), - [sym__subscript_open] = ACTIONS(3683), - [sym__subscript_close] = ACTIONS(3683), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3683), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3683), - [sym__cite_author_in_text] = ACTIONS(3683), - [sym__cite_suppress_author] = ACTIONS(3683), - [sym__shortcode_open_escaped] = ACTIONS(3683), - [sym__shortcode_open] = ACTIONS(3683), - [sym__unclosed_span] = ACTIONS(3683), + [sym__qmd_attribute] = STATE(752), + [sym_raw_attribute] = STATE(752), + [sym_commonmark_attribute] = STATE(752), + [sym_language_attribute] = STATE(752), + [sym__backslash_escape] = ACTIONS(4596), + [sym_entity_reference] = ACTIONS(4596), + [sym_numeric_character_reference] = ACTIONS(4596), + [anon_sym_LT] = ACTIONS(4598), + [anon_sym_GT] = ACTIONS(4596), + [anon_sym_BANG] = ACTIONS(4596), + [anon_sym_DQUOTE] = ACTIONS(4596), + [anon_sym_POUND] = ACTIONS(4596), + [anon_sym_DOLLAR] = ACTIONS(4596), + [anon_sym_PERCENT] = ACTIONS(4596), + [anon_sym_AMP] = ACTIONS(4598), + [anon_sym_SQUOTE] = ACTIONS(4596), + [anon_sym_STAR] = ACTIONS(4596), + [anon_sym_PLUS] = ACTIONS(4596), + [anon_sym_COMMA] = ACTIONS(4596), + [anon_sym_DASH] = ACTIONS(4598), + [anon_sym_DOT] = ACTIONS(4598), + [anon_sym_SLASH] = ACTIONS(4596), + [anon_sym_COLON] = ACTIONS(4596), + [anon_sym_SEMI] = ACTIONS(4596), + [anon_sym_EQ] = ACTIONS(4596), + [anon_sym_QMARK] = ACTIONS(4596), + [anon_sym_LBRACK] = ACTIONS(4598), + [anon_sym_BSLASH] = ACTIONS(4598), + [anon_sym_CARET] = ACTIONS(4598), + [anon_sym__] = ACTIONS(4596), + [anon_sym_BQUOTE] = ACTIONS(4596), + [anon_sym_LBRACE] = ACTIONS(4614), + [anon_sym_PIPE] = ACTIONS(4596), + [anon_sym_TILDE] = ACTIONS(4596), + [anon_sym_LPAREN] = ACTIONS(4596), + [anon_sym_RPAREN] = ACTIONS(4596), + [sym__newline_token] = ACTIONS(4596), + [aux_sym_insert_token1] = ACTIONS(4596), + [aux_sym_delete_token1] = ACTIONS(4596), + [aux_sym_highlight_token1] = ACTIONS(4596), + [aux_sym_edit_comment_token1] = ACTIONS(4596), + [anon_sym_CARET_LBRACK] = ACTIONS(4596), + [anon_sym_LBRACK_CARET] = ACTIONS(4596), + [sym_uri_autolink] = ACTIONS(4596), + [sym_email_autolink] = ACTIONS(4596), + [sym__whitespace_ge_2] = ACTIONS(4596), + [aux_sym__whitespace_token1] = ACTIONS(4598), + [sym__word_no_digit] = ACTIONS(4596), + [sym__digits] = ACTIONS(4596), + [anon_sym_DASH_DASH] = ACTIONS(4598), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4596), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4596), + [sym__code_span_start] = ACTIONS(4596), + [sym__emphasis_open_star] = ACTIONS(4596), + [sym__emphasis_open_underscore] = ACTIONS(4596), + [sym__strikeout_open] = ACTIONS(4596), + [sym__latex_span_start] = ACTIONS(4596), + [sym__single_quote_open] = ACTIONS(4596), + [sym__double_quote_open] = ACTIONS(4596), + [sym__superscript_open] = ACTIONS(4596), + [sym__superscript_close] = ACTIONS(4596), + [sym__subscript_open] = ACTIONS(4596), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4596), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4596), + [sym__cite_author_in_text] = ACTIONS(4596), + [sym__cite_suppress_author] = ACTIONS(4596), + [sym__shortcode_open_escaped] = ACTIONS(4596), + [sym__shortcode_open] = ACTIONS(4596), + [sym__unclosed_span] = ACTIONS(4596), }, [STATE(421)] = { - [sym__qmd_attribute] = STATE(878), - [sym_raw_attribute] = STATE(878), - [sym_commonmark_attribute] = STATE(878), - [sym_language_attribute] = STATE(878), - [sym__backslash_escape] = ACTIONS(3687), - [sym_entity_reference] = ACTIONS(3687), - [sym_numeric_character_reference] = ACTIONS(3687), - [anon_sym_LT] = ACTIONS(3689), - [anon_sym_GT] = ACTIONS(3687), - [anon_sym_BANG] = ACTIONS(3687), - [anon_sym_DQUOTE] = ACTIONS(3687), - [anon_sym_POUND] = ACTIONS(3687), - [anon_sym_DOLLAR] = ACTIONS(3687), - [anon_sym_PERCENT] = ACTIONS(3687), - [anon_sym_AMP] = ACTIONS(3689), - [anon_sym_SQUOTE] = ACTIONS(3687), - [anon_sym_STAR] = ACTIONS(3687), - [anon_sym_PLUS] = ACTIONS(3687), - [anon_sym_COMMA] = ACTIONS(3687), - [anon_sym_DASH] = ACTIONS(3689), - [anon_sym_DOT] = ACTIONS(3689), - [anon_sym_SLASH] = ACTIONS(3687), - [anon_sym_COLON] = ACTIONS(3687), - [anon_sym_SEMI] = ACTIONS(3687), - [anon_sym_EQ] = ACTIONS(3687), - [anon_sym_QMARK] = ACTIONS(3687), - [anon_sym_LBRACK] = ACTIONS(3689), - [anon_sym_BSLASH] = ACTIONS(3689), - [anon_sym_CARET] = ACTIONS(3689), - [anon_sym__] = ACTIONS(3687), - [anon_sym_BQUOTE] = ACTIONS(3687), - [anon_sym_LBRACE] = ACTIONS(3717), - [anon_sym_PIPE] = ACTIONS(3687), - [anon_sym_TILDE] = ACTIONS(3687), - [anon_sym_LPAREN] = ACTIONS(3687), - [anon_sym_RPAREN] = ACTIONS(3687), - [sym__newline_token] = ACTIONS(3687), - [anon_sym_CARET_LBRACK] = ACTIONS(3687), - [anon_sym_LBRACK_CARET] = ACTIONS(3687), - [sym_uri_autolink] = ACTIONS(3687), - [sym_email_autolink] = ACTIONS(3687), - [sym__whitespace_ge_2] = ACTIONS(3687), - [aux_sym__whitespace_token1] = ACTIONS(3689), - [sym__word_no_digit] = ACTIONS(3687), - [sym__digits] = ACTIONS(3687), - [anon_sym_DASH_DASH] = ACTIONS(3689), - [anon_sym_DASH_DASH_DASH] = ACTIONS(3687), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3687), - [sym__code_span_start] = ACTIONS(3687), - [sym__emphasis_open_star] = ACTIONS(3687), - [sym__emphasis_open_underscore] = ACTIONS(3687), - [sym__strikeout_open] = ACTIONS(3687), - [sym__latex_span_start] = ACTIONS(3687), - [sym__single_quote_open] = ACTIONS(3687), - [sym__double_quote_open] = ACTIONS(3687), - [sym__superscript_open] = ACTIONS(3687), - [sym__subscript_open] = ACTIONS(3687), - [sym__subscript_close] = ACTIONS(3687), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3687), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3687), - [sym__cite_author_in_text] = ACTIONS(3687), - [sym__cite_suppress_author] = ACTIONS(3687), - [sym__shortcode_open_escaped] = ACTIONS(3687), - [sym__shortcode_open] = ACTIONS(3687), - [sym__unclosed_span] = ACTIONS(3687), + [sym__qmd_attribute] = STATE(1028), + [sym_raw_attribute] = STATE(1028), + [sym_commonmark_attribute] = STATE(1028), + [sym_language_attribute] = STATE(1028), + [sym__backslash_escape] = ACTIONS(4550), + [sym_entity_reference] = ACTIONS(4550), + [sym_numeric_character_reference] = ACTIONS(4550), + [anon_sym_LT] = ACTIONS(4552), + [anon_sym_GT] = ACTIONS(4550), + [anon_sym_BANG] = ACTIONS(4550), + [anon_sym_DQUOTE] = ACTIONS(4550), + [anon_sym_POUND] = ACTIONS(4550), + [anon_sym_DOLLAR] = ACTIONS(4550), + [anon_sym_PERCENT] = ACTIONS(4550), + [anon_sym_AMP] = ACTIONS(4552), + [anon_sym_SQUOTE] = ACTIONS(4550), + [anon_sym_STAR] = ACTIONS(4550), + [anon_sym_PLUS] = ACTIONS(4550), + [anon_sym_COMMA] = ACTIONS(4550), + [anon_sym_DASH] = ACTIONS(4552), + [anon_sym_DOT] = ACTIONS(4552), + [anon_sym_SLASH] = ACTIONS(4550), + [anon_sym_COLON] = ACTIONS(4550), + [anon_sym_SEMI] = ACTIONS(4550), + [anon_sym_EQ] = ACTIONS(4550), + [anon_sym_QMARK] = ACTIONS(4550), + [anon_sym_LBRACK] = ACTIONS(4552), + [anon_sym_BSLASH] = ACTIONS(4552), + [anon_sym_CARET] = ACTIONS(4552), + [anon_sym__] = ACTIONS(4550), + [anon_sym_BQUOTE] = ACTIONS(4550), + [anon_sym_LBRACE] = ACTIONS(4570), + [anon_sym_PIPE] = ACTIONS(4550), + [anon_sym_TILDE] = ACTIONS(4550), + [anon_sym_LPAREN] = ACTIONS(4550), + [anon_sym_RPAREN] = ACTIONS(4550), + [sym__newline_token] = ACTIONS(4550), + [aux_sym_insert_token1] = ACTIONS(4550), + [aux_sym_delete_token1] = ACTIONS(4550), + [aux_sym_highlight_token1] = ACTIONS(4550), + [aux_sym_edit_comment_token1] = ACTIONS(4550), + [anon_sym_CARET_LBRACK] = ACTIONS(4550), + [anon_sym_LBRACK_CARET] = ACTIONS(4550), + [sym_uri_autolink] = ACTIONS(4550), + [sym_email_autolink] = ACTIONS(4550), + [sym__whitespace_ge_2] = ACTIONS(4550), + [aux_sym__whitespace_token1] = ACTIONS(4552), + [sym__word_no_digit] = ACTIONS(4550), + [sym__digits] = ACTIONS(4550), + [anon_sym_DASH_DASH] = ACTIONS(4552), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4550), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4550), + [sym__code_span_start] = ACTIONS(4550), + [sym__emphasis_open_star] = ACTIONS(4550), + [sym__emphasis_open_underscore] = ACTIONS(4550), + [sym__emphasis_close_underscore] = ACTIONS(4550), + [sym__strikeout_open] = ACTIONS(4550), + [sym__latex_span_start] = ACTIONS(4550), + [sym__single_quote_open] = ACTIONS(4550), + [sym__double_quote_open] = ACTIONS(4550), + [sym__superscript_open] = ACTIONS(4550), + [sym__subscript_open] = ACTIONS(4550), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4550), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4550), + [sym__cite_author_in_text] = ACTIONS(4550), + [sym__cite_suppress_author] = ACTIONS(4550), + [sym__shortcode_open_escaped] = ACTIONS(4550), + [sym__shortcode_open] = ACTIONS(4550), + [sym__unclosed_span] = ACTIONS(4550), }, [STATE(422)] = { - [sym__qmd_attribute] = STATE(598), - [sym_raw_attribute] = STATE(598), - [sym_commonmark_attribute] = STATE(598), - [sym_language_attribute] = STATE(598), - [sym__backslash_escape] = ACTIONS(3679), - [sym_entity_reference] = ACTIONS(3679), - [sym_numeric_character_reference] = ACTIONS(3679), - [anon_sym_LT] = ACTIONS(3681), - [anon_sym_GT] = ACTIONS(3679), - [anon_sym_BANG] = ACTIONS(3679), - [anon_sym_DQUOTE] = ACTIONS(3679), - [anon_sym_POUND] = ACTIONS(3679), - [anon_sym_DOLLAR] = ACTIONS(3679), - [anon_sym_PERCENT] = ACTIONS(3679), - [anon_sym_AMP] = ACTIONS(3681), - [anon_sym_SQUOTE] = ACTIONS(3679), - [anon_sym_STAR] = ACTIONS(3679), - [anon_sym_PLUS] = ACTIONS(3679), - [anon_sym_COMMA] = ACTIONS(3679), - [anon_sym_DASH] = ACTIONS(3681), - [anon_sym_DOT] = ACTIONS(3681), - [anon_sym_SLASH] = ACTIONS(3679), - [anon_sym_COLON] = ACTIONS(3679), - [anon_sym_SEMI] = ACTIONS(3679), - [anon_sym_EQ] = ACTIONS(3679), - [anon_sym_QMARK] = ACTIONS(3679), - [anon_sym_LBRACK] = ACTIONS(3681), - [anon_sym_BSLASH] = ACTIONS(3681), - [anon_sym_CARET] = ACTIONS(3681), - [anon_sym__] = ACTIONS(3679), - [anon_sym_BQUOTE] = ACTIONS(3679), - [anon_sym_LBRACE] = ACTIONS(3725), - [anon_sym_PIPE] = ACTIONS(3679), - [anon_sym_TILDE] = ACTIONS(3679), - [anon_sym_LPAREN] = ACTIONS(3679), - [anon_sym_RPAREN] = ACTIONS(3679), - [sym__newline_token] = ACTIONS(3679), - [anon_sym_CARET_LBRACK] = ACTIONS(3679), - [anon_sym_LBRACK_CARET] = ACTIONS(3679), - [sym_uri_autolink] = ACTIONS(3679), - [sym_email_autolink] = ACTIONS(3679), - [sym__whitespace_ge_2] = ACTIONS(3679), - [aux_sym__whitespace_token1] = ACTIONS(3681), - [sym__word_no_digit] = ACTIONS(3679), - [sym__digits] = ACTIONS(3679), - [anon_sym_DASH_DASH] = ACTIONS(3681), - [anon_sym_DASH_DASH_DASH] = ACTIONS(3679), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3679), - [sym__code_span_start] = ACTIONS(3679), - [sym__emphasis_open_star] = ACTIONS(3679), - [sym__emphasis_open_underscore] = ACTIONS(3679), - [sym__strikeout_open] = ACTIONS(3679), - [sym__latex_span_start] = ACTIONS(3679), - [sym__single_quote_open] = ACTIONS(3679), - [sym__single_quote_close] = ACTIONS(3679), - [sym__double_quote_open] = ACTIONS(3679), - [sym__superscript_open] = ACTIONS(3679), - [sym__subscript_open] = ACTIONS(3679), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3679), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3679), - [sym__cite_author_in_text] = ACTIONS(3679), - [sym__cite_suppress_author] = ACTIONS(3679), - [sym__shortcode_open_escaped] = ACTIONS(3679), - [sym__shortcode_open] = ACTIONS(3679), - [sym__unclosed_span] = ACTIONS(3679), + [sym__qmd_attribute] = STATE(765), + [sym_raw_attribute] = STATE(765), + [sym_commonmark_attribute] = STATE(765), + [sym_language_attribute] = STATE(765), + [sym__backslash_escape] = ACTIONS(4600), + [sym_entity_reference] = ACTIONS(4600), + [sym_numeric_character_reference] = ACTIONS(4600), + [anon_sym_LT] = ACTIONS(4602), + [anon_sym_GT] = ACTIONS(4600), + [anon_sym_BANG] = ACTIONS(4600), + [anon_sym_DQUOTE] = ACTIONS(4600), + [anon_sym_POUND] = ACTIONS(4600), + [anon_sym_DOLLAR] = ACTIONS(4600), + [anon_sym_PERCENT] = ACTIONS(4600), + [anon_sym_AMP] = ACTIONS(4602), + [anon_sym_SQUOTE] = ACTIONS(4600), + [anon_sym_STAR] = ACTIONS(4600), + [anon_sym_PLUS] = ACTIONS(4600), + [anon_sym_COMMA] = ACTIONS(4600), + [anon_sym_DASH] = ACTIONS(4602), + [anon_sym_DOT] = ACTIONS(4602), + [anon_sym_SLASH] = ACTIONS(4600), + [anon_sym_COLON] = ACTIONS(4600), + [anon_sym_SEMI] = ACTIONS(4600), + [anon_sym_EQ] = ACTIONS(4600), + [anon_sym_QMARK] = ACTIONS(4600), + [anon_sym_LBRACK] = ACTIONS(4602), + [anon_sym_BSLASH] = ACTIONS(4602), + [anon_sym_CARET] = ACTIONS(4602), + [anon_sym__] = ACTIONS(4600), + [anon_sym_BQUOTE] = ACTIONS(4600), + [anon_sym_LBRACE] = ACTIONS(4614), + [anon_sym_PIPE] = ACTIONS(4600), + [anon_sym_TILDE] = ACTIONS(4600), + [anon_sym_LPAREN] = ACTIONS(4600), + [anon_sym_RPAREN] = ACTIONS(4600), + [sym__newline_token] = ACTIONS(4600), + [aux_sym_insert_token1] = ACTIONS(4600), + [aux_sym_delete_token1] = ACTIONS(4600), + [aux_sym_highlight_token1] = ACTIONS(4600), + [aux_sym_edit_comment_token1] = ACTIONS(4600), + [anon_sym_CARET_LBRACK] = ACTIONS(4600), + [anon_sym_LBRACK_CARET] = ACTIONS(4600), + [sym_uri_autolink] = ACTIONS(4600), + [sym_email_autolink] = ACTIONS(4600), + [sym__whitespace_ge_2] = ACTIONS(4600), + [aux_sym__whitespace_token1] = ACTIONS(4602), + [sym__word_no_digit] = ACTIONS(4600), + [sym__digits] = ACTIONS(4600), + [anon_sym_DASH_DASH] = ACTIONS(4602), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4600), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4600), + [sym__code_span_start] = ACTIONS(4600), + [sym__emphasis_open_star] = ACTIONS(4600), + [sym__emphasis_open_underscore] = ACTIONS(4600), + [sym__strikeout_open] = ACTIONS(4600), + [sym__latex_span_start] = ACTIONS(4600), + [sym__single_quote_open] = ACTIONS(4600), + [sym__double_quote_open] = ACTIONS(4600), + [sym__superscript_open] = ACTIONS(4600), + [sym__superscript_close] = ACTIONS(4600), + [sym__subscript_open] = ACTIONS(4600), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4600), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4600), + [sym__cite_author_in_text] = ACTIONS(4600), + [sym__cite_suppress_author] = ACTIONS(4600), + [sym__shortcode_open_escaped] = ACTIONS(4600), + [sym__shortcode_open] = ACTIONS(4600), + [sym__unclosed_span] = ACTIONS(4600), }, [STATE(423)] = { - [sym__qmd_attribute] = STATE(600), - [sym_raw_attribute] = STATE(600), - [sym_commonmark_attribute] = STATE(600), - [sym_language_attribute] = STATE(600), - [sym__backslash_escape] = ACTIONS(3683), - [sym_entity_reference] = ACTIONS(3683), - [sym_numeric_character_reference] = ACTIONS(3683), - [anon_sym_LT] = ACTIONS(3685), - [anon_sym_GT] = ACTIONS(3683), - [anon_sym_BANG] = ACTIONS(3683), - [anon_sym_DQUOTE] = ACTIONS(3683), - [anon_sym_POUND] = ACTIONS(3683), - [anon_sym_DOLLAR] = ACTIONS(3683), - [anon_sym_PERCENT] = ACTIONS(3683), - [anon_sym_AMP] = ACTIONS(3685), - [anon_sym_SQUOTE] = ACTIONS(3683), - [anon_sym_STAR] = ACTIONS(3683), - [anon_sym_PLUS] = ACTIONS(3683), - [anon_sym_COMMA] = ACTIONS(3683), - [anon_sym_DASH] = ACTIONS(3685), - [anon_sym_DOT] = ACTIONS(3685), - [anon_sym_SLASH] = ACTIONS(3683), - [anon_sym_COLON] = ACTIONS(3683), - [anon_sym_SEMI] = ACTIONS(3683), - [anon_sym_EQ] = ACTIONS(3683), - [anon_sym_QMARK] = ACTIONS(3683), - [anon_sym_LBRACK] = ACTIONS(3685), - [anon_sym_BSLASH] = ACTIONS(3685), - [anon_sym_CARET] = ACTIONS(3685), - [anon_sym__] = ACTIONS(3683), - [anon_sym_BQUOTE] = ACTIONS(3683), - [anon_sym_LBRACE] = ACTIONS(3725), - [anon_sym_PIPE] = ACTIONS(3683), - [anon_sym_TILDE] = ACTIONS(3683), - [anon_sym_LPAREN] = ACTIONS(3683), - [anon_sym_RPAREN] = ACTIONS(3683), - [sym__newline_token] = ACTIONS(3683), - [anon_sym_CARET_LBRACK] = ACTIONS(3683), - [anon_sym_LBRACK_CARET] = ACTIONS(3683), - [sym_uri_autolink] = ACTIONS(3683), - [sym_email_autolink] = ACTIONS(3683), - [sym__whitespace_ge_2] = ACTIONS(3683), - [aux_sym__whitespace_token1] = ACTIONS(3685), - [sym__word_no_digit] = ACTIONS(3683), - [sym__digits] = ACTIONS(3683), - [anon_sym_DASH_DASH] = ACTIONS(3685), - [anon_sym_DASH_DASH_DASH] = ACTIONS(3683), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3683), - [sym__code_span_start] = ACTIONS(3683), - [sym__emphasis_open_star] = ACTIONS(3683), - [sym__emphasis_open_underscore] = ACTIONS(3683), - [sym__strikeout_open] = ACTIONS(3683), - [sym__latex_span_start] = ACTIONS(3683), - [sym__single_quote_open] = ACTIONS(3683), - [sym__single_quote_close] = ACTIONS(3683), - [sym__double_quote_open] = ACTIONS(3683), - [sym__superscript_open] = ACTIONS(3683), - [sym__subscript_open] = ACTIONS(3683), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3683), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3683), - [sym__cite_author_in_text] = ACTIONS(3683), - [sym__cite_suppress_author] = ACTIONS(3683), - [sym__shortcode_open_escaped] = ACTIONS(3683), - [sym__shortcode_open] = ACTIONS(3683), - [sym__unclosed_span] = ACTIONS(3683), + [sym__qmd_attribute] = STATE(774), + [sym_raw_attribute] = STATE(774), + [sym_commonmark_attribute] = STATE(774), + [sym_language_attribute] = STATE(774), + [sym__backslash_escape] = ACTIONS(4606), + [sym_entity_reference] = ACTIONS(4606), + [sym_numeric_character_reference] = ACTIONS(4606), + [anon_sym_LT] = ACTIONS(4608), + [anon_sym_GT] = ACTIONS(4606), + [anon_sym_BANG] = ACTIONS(4606), + [anon_sym_DQUOTE] = ACTIONS(4606), + [anon_sym_POUND] = ACTIONS(4606), + [anon_sym_DOLLAR] = ACTIONS(4606), + [anon_sym_PERCENT] = ACTIONS(4606), + [anon_sym_AMP] = ACTIONS(4608), + [anon_sym_SQUOTE] = ACTIONS(4606), + [anon_sym_STAR] = ACTIONS(4606), + [anon_sym_PLUS] = ACTIONS(4606), + [anon_sym_COMMA] = ACTIONS(4606), + [anon_sym_DASH] = ACTIONS(4608), + [anon_sym_DOT] = ACTIONS(4608), + [anon_sym_SLASH] = ACTIONS(4606), + [anon_sym_COLON] = ACTIONS(4606), + [anon_sym_SEMI] = ACTIONS(4606), + [anon_sym_EQ] = ACTIONS(4606), + [anon_sym_QMARK] = ACTIONS(4606), + [anon_sym_LBRACK] = ACTIONS(4608), + [anon_sym_BSLASH] = ACTIONS(4608), + [anon_sym_CARET] = ACTIONS(4608), + [anon_sym__] = ACTIONS(4606), + [anon_sym_BQUOTE] = ACTIONS(4606), + [anon_sym_LBRACE] = ACTIONS(4614), + [anon_sym_PIPE] = ACTIONS(4606), + [anon_sym_TILDE] = ACTIONS(4606), + [anon_sym_LPAREN] = ACTIONS(4606), + [anon_sym_RPAREN] = ACTIONS(4606), + [sym__newline_token] = ACTIONS(4606), + [aux_sym_insert_token1] = ACTIONS(4606), + [aux_sym_delete_token1] = ACTIONS(4606), + [aux_sym_highlight_token1] = ACTIONS(4606), + [aux_sym_edit_comment_token1] = ACTIONS(4606), + [anon_sym_CARET_LBRACK] = ACTIONS(4606), + [anon_sym_LBRACK_CARET] = ACTIONS(4606), + [sym_uri_autolink] = ACTIONS(4606), + [sym_email_autolink] = ACTIONS(4606), + [sym__whitespace_ge_2] = ACTIONS(4606), + [aux_sym__whitespace_token1] = ACTIONS(4608), + [sym__word_no_digit] = ACTIONS(4606), + [sym__digits] = ACTIONS(4606), + [anon_sym_DASH_DASH] = ACTIONS(4608), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4606), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4606), + [sym__code_span_start] = ACTIONS(4606), + [sym__emphasis_open_star] = ACTIONS(4606), + [sym__emphasis_open_underscore] = ACTIONS(4606), + [sym__strikeout_open] = ACTIONS(4606), + [sym__latex_span_start] = ACTIONS(4606), + [sym__single_quote_open] = ACTIONS(4606), + [sym__double_quote_open] = ACTIONS(4606), + [sym__superscript_open] = ACTIONS(4606), + [sym__superscript_close] = ACTIONS(4606), + [sym__subscript_open] = ACTIONS(4606), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4606), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4606), + [sym__cite_author_in_text] = ACTIONS(4606), + [sym__cite_suppress_author] = ACTIONS(4606), + [sym__shortcode_open_escaped] = ACTIONS(4606), + [sym__shortcode_open] = ACTIONS(4606), + [sym__unclosed_span] = ACTIONS(4606), }, [STATE(424)] = { - [sym__qmd_attribute] = STATE(900), - [sym_raw_attribute] = STATE(900), - [sym_commonmark_attribute] = STATE(900), - [sym_language_attribute] = STATE(900), - [sym__backslash_escape] = ACTIONS(3691), - [sym_entity_reference] = ACTIONS(3691), - [sym_numeric_character_reference] = ACTIONS(3691), - [anon_sym_LT] = ACTIONS(3693), - [anon_sym_GT] = ACTIONS(3691), - [anon_sym_BANG] = ACTIONS(3691), - [anon_sym_DQUOTE] = ACTIONS(3691), - [anon_sym_POUND] = ACTIONS(3691), - [anon_sym_DOLLAR] = ACTIONS(3691), - [anon_sym_PERCENT] = ACTIONS(3691), - [anon_sym_AMP] = ACTIONS(3693), - [anon_sym_SQUOTE] = ACTIONS(3691), - [anon_sym_STAR] = ACTIONS(3691), - [anon_sym_PLUS] = ACTIONS(3691), - [anon_sym_COMMA] = ACTIONS(3691), - [anon_sym_DASH] = ACTIONS(3693), - [anon_sym_DOT] = ACTIONS(3693), - [anon_sym_SLASH] = ACTIONS(3691), - [anon_sym_COLON] = ACTIONS(3691), - [anon_sym_SEMI] = ACTIONS(3691), - [anon_sym_EQ] = ACTIONS(3691), - [anon_sym_QMARK] = ACTIONS(3691), - [anon_sym_LBRACK] = ACTIONS(3693), - [anon_sym_BSLASH] = ACTIONS(3693), - [anon_sym_RBRACK] = ACTIONS(3691), - [anon_sym_CARET] = ACTIONS(3693), - [anon_sym__] = ACTIONS(3691), - [anon_sym_BQUOTE] = ACTIONS(3691), - [anon_sym_LBRACE] = ACTIONS(3635), - [anon_sym_PIPE] = ACTIONS(3691), - [anon_sym_TILDE] = ACTIONS(3691), - [anon_sym_LPAREN] = ACTIONS(3729), - [anon_sym_RPAREN] = ACTIONS(3691), - [sym__newline_token] = ACTIONS(3691), - [anon_sym_CARET_LBRACK] = ACTIONS(3691), - [anon_sym_LBRACK_CARET] = ACTIONS(3691), - [sym_uri_autolink] = ACTIONS(3691), - [sym_email_autolink] = ACTIONS(3691), - [sym__whitespace_ge_2] = ACTIONS(3691), - [aux_sym__whitespace_token1] = ACTIONS(3693), - [sym__word_no_digit] = ACTIONS(3691), - [sym__digits] = ACTIONS(3691), - [anon_sym_DASH_DASH] = ACTIONS(3693), - [anon_sym_DASH_DASH_DASH] = ACTIONS(3691), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3691), - [sym__code_span_start] = ACTIONS(3691), - [sym__emphasis_open_star] = ACTIONS(3691), - [sym__emphasis_open_underscore] = ACTIONS(3691), - [sym__strikeout_open] = ACTIONS(3691), - [sym__latex_span_start] = ACTIONS(3691), - [sym__single_quote_open] = ACTIONS(3691), - [sym__double_quote_open] = ACTIONS(3691), - [sym__superscript_open] = ACTIONS(3691), - [sym__subscript_open] = ACTIONS(3691), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3691), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3691), - [sym__cite_author_in_text] = ACTIONS(3691), - [sym__cite_suppress_author] = ACTIONS(3691), - [sym__shortcode_open_escaped] = ACTIONS(3691), - [sym__shortcode_open] = ACTIONS(3691), - [sym__unclosed_span] = ACTIONS(3691), + [sym__qmd_attribute] = STATE(776), + [sym_raw_attribute] = STATE(776), + [sym_commonmark_attribute] = STATE(776), + [sym_language_attribute] = STATE(776), + [sym__backslash_escape] = ACTIONS(4610), + [sym_entity_reference] = ACTIONS(4610), + [sym_numeric_character_reference] = ACTIONS(4610), + [anon_sym_LT] = ACTIONS(4612), + [anon_sym_GT] = ACTIONS(4610), + [anon_sym_BANG] = ACTIONS(4610), + [anon_sym_DQUOTE] = ACTIONS(4610), + [anon_sym_POUND] = ACTIONS(4610), + [anon_sym_DOLLAR] = ACTIONS(4610), + [anon_sym_PERCENT] = ACTIONS(4610), + [anon_sym_AMP] = ACTIONS(4612), + [anon_sym_SQUOTE] = ACTIONS(4610), + [anon_sym_STAR] = ACTIONS(4610), + [anon_sym_PLUS] = ACTIONS(4610), + [anon_sym_COMMA] = ACTIONS(4610), + [anon_sym_DASH] = ACTIONS(4612), + [anon_sym_DOT] = ACTIONS(4612), + [anon_sym_SLASH] = ACTIONS(4610), + [anon_sym_COLON] = ACTIONS(4610), + [anon_sym_SEMI] = ACTIONS(4610), + [anon_sym_EQ] = ACTIONS(4610), + [anon_sym_QMARK] = ACTIONS(4610), + [anon_sym_LBRACK] = ACTIONS(4612), + [anon_sym_BSLASH] = ACTIONS(4612), + [anon_sym_CARET] = ACTIONS(4612), + [anon_sym__] = ACTIONS(4610), + [anon_sym_BQUOTE] = ACTIONS(4610), + [anon_sym_LBRACE] = ACTIONS(4614), + [anon_sym_PIPE] = ACTIONS(4610), + [anon_sym_TILDE] = ACTIONS(4610), + [anon_sym_LPAREN] = ACTIONS(4610), + [anon_sym_RPAREN] = ACTIONS(4610), + [sym__newline_token] = ACTIONS(4610), + [aux_sym_insert_token1] = ACTIONS(4610), + [aux_sym_delete_token1] = ACTIONS(4610), + [aux_sym_highlight_token1] = ACTIONS(4610), + [aux_sym_edit_comment_token1] = ACTIONS(4610), + [anon_sym_CARET_LBRACK] = ACTIONS(4610), + [anon_sym_LBRACK_CARET] = ACTIONS(4610), + [sym_uri_autolink] = ACTIONS(4610), + [sym_email_autolink] = ACTIONS(4610), + [sym__whitespace_ge_2] = ACTIONS(4610), + [aux_sym__whitespace_token1] = ACTIONS(4612), + [sym__word_no_digit] = ACTIONS(4610), + [sym__digits] = ACTIONS(4610), + [anon_sym_DASH_DASH] = ACTIONS(4612), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4610), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4610), + [sym__code_span_start] = ACTIONS(4610), + [sym__emphasis_open_star] = ACTIONS(4610), + [sym__emphasis_open_underscore] = ACTIONS(4610), + [sym__strikeout_open] = ACTIONS(4610), + [sym__latex_span_start] = ACTIONS(4610), + [sym__single_quote_open] = ACTIONS(4610), + [sym__double_quote_open] = ACTIONS(4610), + [sym__superscript_open] = ACTIONS(4610), + [sym__superscript_close] = ACTIONS(4610), + [sym__subscript_open] = ACTIONS(4610), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4610), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4610), + [sym__cite_author_in_text] = ACTIONS(4610), + [sym__cite_suppress_author] = ACTIONS(4610), + [sym__shortcode_open_escaped] = ACTIONS(4610), + [sym__shortcode_open] = ACTIONS(4610), + [sym__unclosed_span] = ACTIONS(4610), }, [STATE(425)] = { - [sym__qmd_attribute] = STATE(901), - [sym_raw_attribute] = STATE(901), - [sym_commonmark_attribute] = STATE(901), - [sym_language_attribute] = STATE(901), - [sym__backslash_escape] = ACTIONS(3697), - [sym_entity_reference] = ACTIONS(3697), - [sym_numeric_character_reference] = ACTIONS(3697), - [anon_sym_LT] = ACTIONS(3699), - [anon_sym_GT] = ACTIONS(3697), - [anon_sym_BANG] = ACTIONS(3697), - [anon_sym_DQUOTE] = ACTIONS(3697), - [anon_sym_POUND] = ACTIONS(3697), - [anon_sym_DOLLAR] = ACTIONS(3697), - [anon_sym_PERCENT] = ACTIONS(3697), - [anon_sym_AMP] = ACTIONS(3699), - [anon_sym_SQUOTE] = ACTIONS(3697), - [anon_sym_STAR] = ACTIONS(3697), - [anon_sym_PLUS] = ACTIONS(3697), - [anon_sym_COMMA] = ACTIONS(3697), - [anon_sym_DASH] = ACTIONS(3699), - [anon_sym_DOT] = ACTIONS(3699), - [anon_sym_SLASH] = ACTIONS(3697), - [anon_sym_COLON] = ACTIONS(3697), - [anon_sym_SEMI] = ACTIONS(3697), - [anon_sym_EQ] = ACTIONS(3697), - [anon_sym_QMARK] = ACTIONS(3697), - [anon_sym_LBRACK] = ACTIONS(3699), - [anon_sym_BSLASH] = ACTIONS(3699), - [anon_sym_RBRACK] = ACTIONS(3697), - [anon_sym_CARET] = ACTIONS(3699), - [anon_sym__] = ACTIONS(3697), - [anon_sym_BQUOTE] = ACTIONS(3697), - [anon_sym_LBRACE] = ACTIONS(3635), - [anon_sym_PIPE] = ACTIONS(3697), - [anon_sym_TILDE] = ACTIONS(3697), - [anon_sym_LPAREN] = ACTIONS(3697), - [anon_sym_RPAREN] = ACTIONS(3697), - [sym__newline_token] = ACTIONS(3697), - [anon_sym_CARET_LBRACK] = ACTIONS(3697), - [anon_sym_LBRACK_CARET] = ACTIONS(3697), - [sym_uri_autolink] = ACTIONS(3697), - [sym_email_autolink] = ACTIONS(3697), - [sym__whitespace_ge_2] = ACTIONS(3697), - [aux_sym__whitespace_token1] = ACTIONS(3699), - [sym__word_no_digit] = ACTIONS(3697), - [sym__digits] = ACTIONS(3697), - [anon_sym_DASH_DASH] = ACTIONS(3699), - [anon_sym_DASH_DASH_DASH] = ACTIONS(3697), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3697), - [sym__code_span_start] = ACTIONS(3697), - [sym__emphasis_open_star] = ACTIONS(3697), - [sym__emphasis_open_underscore] = ACTIONS(3697), - [sym__strikeout_open] = ACTIONS(3697), - [sym__latex_span_start] = ACTIONS(3697), - [sym__single_quote_open] = ACTIONS(3697), - [sym__double_quote_open] = ACTIONS(3697), - [sym__superscript_open] = ACTIONS(3697), - [sym__subscript_open] = ACTIONS(3697), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3697), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3697), - [sym__cite_author_in_text] = ACTIONS(3697), - [sym__cite_suppress_author] = ACTIONS(3697), - [sym__shortcode_open_escaped] = ACTIONS(3697), - [sym__shortcode_open] = ACTIONS(3697), - [sym__unclosed_span] = ACTIONS(3697), + [sym__qmd_attribute] = STATE(783), + [sym_raw_attribute] = STATE(783), + [sym_commonmark_attribute] = STATE(783), + [sym_language_attribute] = STATE(783), + [sym__backslash_escape] = ACTIONS(4566), + [sym_entity_reference] = ACTIONS(4566), + [sym_numeric_character_reference] = ACTIONS(4566), + [anon_sym_LT] = ACTIONS(4568), + [anon_sym_GT] = ACTIONS(4566), + [anon_sym_BANG] = ACTIONS(4566), + [anon_sym_DQUOTE] = ACTIONS(4566), + [anon_sym_POUND] = ACTIONS(4566), + [anon_sym_DOLLAR] = ACTIONS(4566), + [anon_sym_PERCENT] = ACTIONS(4566), + [anon_sym_AMP] = ACTIONS(4568), + [anon_sym_SQUOTE] = ACTIONS(4566), + [anon_sym_STAR] = ACTIONS(4566), + [anon_sym_PLUS] = ACTIONS(4566), + [anon_sym_COMMA] = ACTIONS(4566), + [anon_sym_DASH] = ACTIONS(4568), + [anon_sym_DOT] = ACTIONS(4568), + [anon_sym_SLASH] = ACTIONS(4566), + [anon_sym_COLON] = ACTIONS(4566), + [anon_sym_SEMI] = ACTIONS(4566), + [anon_sym_EQ] = ACTIONS(4566), + [anon_sym_QMARK] = ACTIONS(4566), + [anon_sym_LBRACK] = ACTIONS(4568), + [anon_sym_BSLASH] = ACTIONS(4568), + [anon_sym_CARET] = ACTIONS(4568), + [anon_sym__] = ACTIONS(4566), + [anon_sym_BQUOTE] = ACTIONS(4566), + [anon_sym_LBRACE] = ACTIONS(4614), + [anon_sym_PIPE] = ACTIONS(4566), + [anon_sym_TILDE] = ACTIONS(4566), + [anon_sym_LPAREN] = ACTIONS(4566), + [anon_sym_RPAREN] = ACTIONS(4566), + [sym__newline_token] = ACTIONS(4566), + [aux_sym_insert_token1] = ACTIONS(4566), + [aux_sym_delete_token1] = ACTIONS(4566), + [aux_sym_highlight_token1] = ACTIONS(4566), + [aux_sym_edit_comment_token1] = ACTIONS(4566), + [anon_sym_CARET_LBRACK] = ACTIONS(4566), + [anon_sym_LBRACK_CARET] = ACTIONS(4566), + [sym_uri_autolink] = ACTIONS(4566), + [sym_email_autolink] = ACTIONS(4566), + [sym__whitespace_ge_2] = ACTIONS(4566), + [aux_sym__whitespace_token1] = ACTIONS(4568), + [sym__word_no_digit] = ACTIONS(4566), + [sym__digits] = ACTIONS(4566), + [anon_sym_DASH_DASH] = ACTIONS(4568), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4566), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4566), + [sym__code_span_start] = ACTIONS(4566), + [sym__emphasis_open_star] = ACTIONS(4566), + [sym__emphasis_open_underscore] = ACTIONS(4566), + [sym__strikeout_open] = ACTIONS(4566), + [sym__latex_span_start] = ACTIONS(4566), + [sym__single_quote_open] = ACTIONS(4566), + [sym__double_quote_open] = ACTIONS(4566), + [sym__superscript_open] = ACTIONS(4566), + [sym__superscript_close] = ACTIONS(4566), + [sym__subscript_open] = ACTIONS(4566), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4566), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4566), + [sym__cite_author_in_text] = ACTIONS(4566), + [sym__cite_suppress_author] = ACTIONS(4566), + [sym__shortcode_open_escaped] = ACTIONS(4566), + [sym__shortcode_open] = ACTIONS(4566), + [sym__unclosed_span] = ACTIONS(4566), }, [STATE(426)] = { - [sym__qmd_attribute] = STATE(601), - [sym_raw_attribute] = STATE(601), - [sym_commonmark_attribute] = STATE(601), - [sym_language_attribute] = STATE(601), - [sym__backslash_escape] = ACTIONS(3687), - [sym_entity_reference] = ACTIONS(3687), - [sym_numeric_character_reference] = ACTIONS(3687), - [anon_sym_LT] = ACTIONS(3689), - [anon_sym_GT] = ACTIONS(3687), - [anon_sym_BANG] = ACTIONS(3687), - [anon_sym_DQUOTE] = ACTIONS(3687), - [anon_sym_POUND] = ACTIONS(3687), - [anon_sym_DOLLAR] = ACTIONS(3687), - [anon_sym_PERCENT] = ACTIONS(3687), - [anon_sym_AMP] = ACTIONS(3689), - [anon_sym_SQUOTE] = ACTIONS(3687), - [anon_sym_STAR] = ACTIONS(3687), - [anon_sym_PLUS] = ACTIONS(3687), - [anon_sym_COMMA] = ACTIONS(3687), - [anon_sym_DASH] = ACTIONS(3689), - [anon_sym_DOT] = ACTIONS(3689), - [anon_sym_SLASH] = ACTIONS(3687), - [anon_sym_COLON] = ACTIONS(3687), - [anon_sym_SEMI] = ACTIONS(3687), - [anon_sym_EQ] = ACTIONS(3687), - [anon_sym_QMARK] = ACTIONS(3687), - [anon_sym_LBRACK] = ACTIONS(3689), - [anon_sym_BSLASH] = ACTIONS(3689), - [anon_sym_CARET] = ACTIONS(3689), - [anon_sym__] = ACTIONS(3687), - [anon_sym_BQUOTE] = ACTIONS(3687), - [anon_sym_LBRACE] = ACTIONS(3725), - [anon_sym_PIPE] = ACTIONS(3687), - [anon_sym_TILDE] = ACTIONS(3687), - [anon_sym_LPAREN] = ACTIONS(3687), - [anon_sym_RPAREN] = ACTIONS(3687), - [sym__newline_token] = ACTIONS(3687), - [anon_sym_CARET_LBRACK] = ACTIONS(3687), - [anon_sym_LBRACK_CARET] = ACTIONS(3687), - [sym_uri_autolink] = ACTIONS(3687), - [sym_email_autolink] = ACTIONS(3687), - [sym__whitespace_ge_2] = ACTIONS(3687), - [aux_sym__whitespace_token1] = ACTIONS(3689), - [sym__word_no_digit] = ACTIONS(3687), - [sym__digits] = ACTIONS(3687), - [anon_sym_DASH_DASH] = ACTIONS(3689), - [anon_sym_DASH_DASH_DASH] = ACTIONS(3687), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3687), - [sym__code_span_start] = ACTIONS(3687), - [sym__emphasis_open_star] = ACTIONS(3687), - [sym__emphasis_open_underscore] = ACTIONS(3687), - [sym__strikeout_open] = ACTIONS(3687), - [sym__latex_span_start] = ACTIONS(3687), - [sym__single_quote_open] = ACTIONS(3687), - [sym__single_quote_close] = ACTIONS(3687), - [sym__double_quote_open] = ACTIONS(3687), - [sym__superscript_open] = ACTIONS(3687), - [sym__subscript_open] = ACTIONS(3687), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3687), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3687), - [sym__cite_author_in_text] = ACTIONS(3687), - [sym__cite_suppress_author] = ACTIONS(3687), - [sym__shortcode_open_escaped] = ACTIONS(3687), - [sym__shortcode_open] = ACTIONS(3687), - [sym__unclosed_span] = ACTIONS(3687), + [sym__qmd_attribute] = STATE(785), + [sym_raw_attribute] = STATE(785), + [sym_commonmark_attribute] = STATE(785), + [sym_language_attribute] = STATE(785), + [sym__backslash_escape] = ACTIONS(4572), + [sym_entity_reference] = ACTIONS(4572), + [sym_numeric_character_reference] = ACTIONS(4572), + [anon_sym_LT] = ACTIONS(4574), + [anon_sym_GT] = ACTIONS(4572), + [anon_sym_BANG] = ACTIONS(4572), + [anon_sym_DQUOTE] = ACTIONS(4572), + [anon_sym_POUND] = ACTIONS(4572), + [anon_sym_DOLLAR] = ACTIONS(4572), + [anon_sym_PERCENT] = ACTIONS(4572), + [anon_sym_AMP] = ACTIONS(4574), + [anon_sym_SQUOTE] = ACTIONS(4572), + [anon_sym_STAR] = ACTIONS(4572), + [anon_sym_PLUS] = ACTIONS(4572), + [anon_sym_COMMA] = ACTIONS(4572), + [anon_sym_DASH] = ACTIONS(4574), + [anon_sym_DOT] = ACTIONS(4574), + [anon_sym_SLASH] = ACTIONS(4572), + [anon_sym_COLON] = ACTIONS(4572), + [anon_sym_SEMI] = ACTIONS(4572), + [anon_sym_EQ] = ACTIONS(4572), + [anon_sym_QMARK] = ACTIONS(4572), + [anon_sym_LBRACK] = ACTIONS(4574), + [anon_sym_BSLASH] = ACTIONS(4574), + [anon_sym_CARET] = ACTIONS(4574), + [anon_sym__] = ACTIONS(4572), + [anon_sym_BQUOTE] = ACTIONS(4572), + [anon_sym_LBRACE] = ACTIONS(4614), + [anon_sym_PIPE] = ACTIONS(4572), + [anon_sym_TILDE] = ACTIONS(4572), + [anon_sym_LPAREN] = ACTIONS(4572), + [anon_sym_RPAREN] = ACTIONS(4572), + [sym__newline_token] = ACTIONS(4572), + [aux_sym_insert_token1] = ACTIONS(4572), + [aux_sym_delete_token1] = ACTIONS(4572), + [aux_sym_highlight_token1] = ACTIONS(4572), + [aux_sym_edit_comment_token1] = ACTIONS(4572), + [anon_sym_CARET_LBRACK] = ACTIONS(4572), + [anon_sym_LBRACK_CARET] = ACTIONS(4572), + [sym_uri_autolink] = ACTIONS(4572), + [sym_email_autolink] = ACTIONS(4572), + [sym__whitespace_ge_2] = ACTIONS(4572), + [aux_sym__whitespace_token1] = ACTIONS(4574), + [sym__word_no_digit] = ACTIONS(4572), + [sym__digits] = ACTIONS(4572), + [anon_sym_DASH_DASH] = ACTIONS(4574), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4572), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4572), + [sym__code_span_start] = ACTIONS(4572), + [sym__emphasis_open_star] = ACTIONS(4572), + [sym__emphasis_open_underscore] = ACTIONS(4572), + [sym__strikeout_open] = ACTIONS(4572), + [sym__latex_span_start] = ACTIONS(4572), + [sym__single_quote_open] = ACTIONS(4572), + [sym__double_quote_open] = ACTIONS(4572), + [sym__superscript_open] = ACTIONS(4572), + [sym__superscript_close] = ACTIONS(4572), + [sym__subscript_open] = ACTIONS(4572), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4572), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4572), + [sym__cite_author_in_text] = ACTIONS(4572), + [sym__cite_suppress_author] = ACTIONS(4572), + [sym__shortcode_open_escaped] = ACTIONS(4572), + [sym__shortcode_open] = ACTIONS(4572), + [sym__unclosed_span] = ACTIONS(4572), }, [STATE(427)] = { - [sym__qmd_attribute] = STATE(631), - [sym_raw_attribute] = STATE(631), - [sym_commonmark_attribute] = STATE(631), - [sym_language_attribute] = STATE(631), - [sym__backslash_escape] = ACTIONS(3691), - [sym_entity_reference] = ACTIONS(3691), - [sym_numeric_character_reference] = ACTIONS(3691), - [anon_sym_LT] = ACTIONS(3693), - [anon_sym_GT] = ACTIONS(3691), - [anon_sym_BANG] = ACTIONS(3691), - [anon_sym_DQUOTE] = ACTIONS(3691), - [anon_sym_POUND] = ACTIONS(3691), - [anon_sym_DOLLAR] = ACTIONS(3691), - [anon_sym_PERCENT] = ACTIONS(3691), - [anon_sym_AMP] = ACTIONS(3693), - [anon_sym_SQUOTE] = ACTIONS(3691), - [anon_sym_STAR] = ACTIONS(3691), - [anon_sym_PLUS] = ACTIONS(3691), - [anon_sym_COMMA] = ACTIONS(3691), - [anon_sym_DASH] = ACTIONS(3693), - [anon_sym_DOT] = ACTIONS(3693), - [anon_sym_SLASH] = ACTIONS(3691), - [anon_sym_COLON] = ACTIONS(3691), - [anon_sym_SEMI] = ACTIONS(3691), - [anon_sym_EQ] = ACTIONS(3691), - [anon_sym_QMARK] = ACTIONS(3691), - [anon_sym_LBRACK] = ACTIONS(3693), - [anon_sym_BSLASH] = ACTIONS(3693), - [anon_sym_CARET] = ACTIONS(3693), - [anon_sym__] = ACTIONS(3691), - [anon_sym_BQUOTE] = ACTIONS(3691), - [anon_sym_LBRACE] = ACTIONS(3641), - [anon_sym_PIPE] = ACTIONS(3691), - [anon_sym_TILDE] = ACTIONS(3691), - [anon_sym_LPAREN] = ACTIONS(3731), - [anon_sym_RPAREN] = ACTIONS(3691), - [sym__newline_token] = ACTIONS(3691), - [anon_sym_CARET_LBRACK] = ACTIONS(3691), - [anon_sym_LBRACK_CARET] = ACTIONS(3691), - [sym_uri_autolink] = ACTIONS(3691), - [sym_email_autolink] = ACTIONS(3691), - [sym__whitespace_ge_2] = ACTIONS(3691), - [aux_sym__whitespace_token1] = ACTIONS(3693), - [sym__word_no_digit] = ACTIONS(3691), - [sym__digits] = ACTIONS(3691), - [anon_sym_DASH_DASH] = ACTIONS(3693), - [anon_sym_DASH_DASH_DASH] = ACTIONS(3691), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3691), - [sym__code_span_start] = ACTIONS(3691), - [sym__emphasis_open_star] = ACTIONS(3691), - [sym__emphasis_open_underscore] = ACTIONS(3691), - [sym__strikeout_open] = ACTIONS(3691), - [sym__latex_span_start] = ACTIONS(3691), - [sym__single_quote_open] = ACTIONS(3691), - [sym__double_quote_open] = ACTIONS(3691), - [sym__double_quote_close] = ACTIONS(3691), - [sym__superscript_open] = ACTIONS(3691), - [sym__subscript_open] = ACTIONS(3691), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3691), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3691), - [sym__cite_author_in_text] = ACTIONS(3691), - [sym__cite_suppress_author] = ACTIONS(3691), - [sym__shortcode_open_escaped] = ACTIONS(3691), - [sym__shortcode_open] = ACTIONS(3691), - [sym__unclosed_span] = ACTIONS(3691), + [sym__qmd_attribute] = STATE(791), + [sym_raw_attribute] = STATE(791), + [sym_commonmark_attribute] = STATE(791), + [sym_language_attribute] = STATE(791), + [sym__backslash_escape] = ACTIONS(4588), + [sym_entity_reference] = ACTIONS(4588), + [sym_numeric_character_reference] = ACTIONS(4588), + [anon_sym_LT] = ACTIONS(4590), + [anon_sym_GT] = ACTIONS(4588), + [anon_sym_BANG] = ACTIONS(4588), + [anon_sym_DQUOTE] = ACTIONS(4588), + [anon_sym_POUND] = ACTIONS(4588), + [anon_sym_DOLLAR] = ACTIONS(4588), + [anon_sym_PERCENT] = ACTIONS(4588), + [anon_sym_AMP] = ACTIONS(4590), + [anon_sym_SQUOTE] = ACTIONS(4588), + [anon_sym_STAR] = ACTIONS(4588), + [anon_sym_PLUS] = ACTIONS(4588), + [anon_sym_COMMA] = ACTIONS(4588), + [anon_sym_DASH] = ACTIONS(4590), + [anon_sym_DOT] = ACTIONS(4590), + [anon_sym_SLASH] = ACTIONS(4588), + [anon_sym_COLON] = ACTIONS(4588), + [anon_sym_SEMI] = ACTIONS(4588), + [anon_sym_EQ] = ACTIONS(4588), + [anon_sym_QMARK] = ACTIONS(4588), + [anon_sym_LBRACK] = ACTIONS(4590), + [anon_sym_BSLASH] = ACTIONS(4590), + [anon_sym_CARET] = ACTIONS(4590), + [anon_sym__] = ACTIONS(4588), + [anon_sym_BQUOTE] = ACTIONS(4588), + [anon_sym_LBRACE] = ACTIONS(4614), + [anon_sym_PIPE] = ACTIONS(4588), + [anon_sym_TILDE] = ACTIONS(4588), + [anon_sym_LPAREN] = ACTIONS(4588), + [anon_sym_RPAREN] = ACTIONS(4588), + [sym__newline_token] = ACTIONS(4588), + [aux_sym_insert_token1] = ACTIONS(4588), + [aux_sym_delete_token1] = ACTIONS(4588), + [aux_sym_highlight_token1] = ACTIONS(4588), + [aux_sym_edit_comment_token1] = ACTIONS(4588), + [anon_sym_CARET_LBRACK] = ACTIONS(4588), + [anon_sym_LBRACK_CARET] = ACTIONS(4588), + [sym_uri_autolink] = ACTIONS(4588), + [sym_email_autolink] = ACTIONS(4588), + [sym__whitespace_ge_2] = ACTIONS(4588), + [aux_sym__whitespace_token1] = ACTIONS(4590), + [sym__word_no_digit] = ACTIONS(4588), + [sym__digits] = ACTIONS(4588), + [anon_sym_DASH_DASH] = ACTIONS(4590), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4588), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4588), + [sym__code_span_start] = ACTIONS(4588), + [sym__emphasis_open_star] = ACTIONS(4588), + [sym__emphasis_open_underscore] = ACTIONS(4588), + [sym__strikeout_open] = ACTIONS(4588), + [sym__latex_span_start] = ACTIONS(4588), + [sym__single_quote_open] = ACTIONS(4588), + [sym__double_quote_open] = ACTIONS(4588), + [sym__superscript_open] = ACTIONS(4588), + [sym__superscript_close] = ACTIONS(4588), + [sym__subscript_open] = ACTIONS(4588), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4588), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4588), + [sym__cite_author_in_text] = ACTIONS(4588), + [sym__cite_suppress_author] = ACTIONS(4588), + [sym__shortcode_open_escaped] = ACTIONS(4588), + [sym__shortcode_open] = ACTIONS(4588), + [sym__unclosed_span] = ACTIONS(4588), }, [STATE(428)] = { - [sym__qmd_attribute] = STATE(632), - [sym_raw_attribute] = STATE(632), - [sym_commonmark_attribute] = STATE(632), - [sym_language_attribute] = STATE(632), - [sym__backslash_escape] = ACTIONS(3697), - [sym_entity_reference] = ACTIONS(3697), - [sym_numeric_character_reference] = ACTIONS(3697), - [anon_sym_LT] = ACTIONS(3699), - [anon_sym_GT] = ACTIONS(3697), - [anon_sym_BANG] = ACTIONS(3697), - [anon_sym_DQUOTE] = ACTIONS(3697), - [anon_sym_POUND] = ACTIONS(3697), - [anon_sym_DOLLAR] = ACTIONS(3697), - [anon_sym_PERCENT] = ACTIONS(3697), - [anon_sym_AMP] = ACTIONS(3699), - [anon_sym_SQUOTE] = ACTIONS(3697), - [anon_sym_STAR] = ACTIONS(3697), - [anon_sym_PLUS] = ACTIONS(3697), - [anon_sym_COMMA] = ACTIONS(3697), - [anon_sym_DASH] = ACTIONS(3699), - [anon_sym_DOT] = ACTIONS(3699), - [anon_sym_SLASH] = ACTIONS(3697), - [anon_sym_COLON] = ACTIONS(3697), - [anon_sym_SEMI] = ACTIONS(3697), - [anon_sym_EQ] = ACTIONS(3697), - [anon_sym_QMARK] = ACTIONS(3697), - [anon_sym_LBRACK] = ACTIONS(3699), - [anon_sym_BSLASH] = ACTIONS(3699), - [anon_sym_CARET] = ACTIONS(3699), - [anon_sym__] = ACTIONS(3697), - [anon_sym_BQUOTE] = ACTIONS(3697), - [anon_sym_LBRACE] = ACTIONS(3641), - [anon_sym_PIPE] = ACTIONS(3697), - [anon_sym_TILDE] = ACTIONS(3697), - [anon_sym_LPAREN] = ACTIONS(3697), - [anon_sym_RPAREN] = ACTIONS(3697), - [sym__newline_token] = ACTIONS(3697), - [anon_sym_CARET_LBRACK] = ACTIONS(3697), - [anon_sym_LBRACK_CARET] = ACTIONS(3697), - [sym_uri_autolink] = ACTIONS(3697), - [sym_email_autolink] = ACTIONS(3697), - [sym__whitespace_ge_2] = ACTIONS(3697), - [aux_sym__whitespace_token1] = ACTIONS(3699), - [sym__word_no_digit] = ACTIONS(3697), - [sym__digits] = ACTIONS(3697), - [anon_sym_DASH_DASH] = ACTIONS(3699), - [anon_sym_DASH_DASH_DASH] = ACTIONS(3697), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3697), - [sym__code_span_start] = ACTIONS(3697), - [sym__emphasis_open_star] = ACTIONS(3697), - [sym__emphasis_open_underscore] = ACTIONS(3697), - [sym__strikeout_open] = ACTIONS(3697), - [sym__latex_span_start] = ACTIONS(3697), - [sym__single_quote_open] = ACTIONS(3697), - [sym__double_quote_open] = ACTIONS(3697), - [sym__double_quote_close] = ACTIONS(3697), - [sym__superscript_open] = ACTIONS(3697), - [sym__subscript_open] = ACTIONS(3697), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3697), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3697), - [sym__cite_author_in_text] = ACTIONS(3697), - [sym__cite_suppress_author] = ACTIONS(3697), - [sym__shortcode_open_escaped] = ACTIONS(3697), - [sym__shortcode_open] = ACTIONS(3697), - [sym__unclosed_span] = ACTIONS(3697), + [sym__qmd_attribute] = STATE(793), + [sym_raw_attribute] = STATE(793), + [sym_commonmark_attribute] = STATE(793), + [sym_language_attribute] = STATE(793), + [sym__backslash_escape] = ACTIONS(4540), + [sym_entity_reference] = ACTIONS(4540), + [sym_numeric_character_reference] = ACTIONS(4540), + [anon_sym_LT] = ACTIONS(4542), + [anon_sym_GT] = ACTIONS(4540), + [anon_sym_BANG] = ACTIONS(4540), + [anon_sym_DQUOTE] = ACTIONS(4540), + [anon_sym_POUND] = ACTIONS(4540), + [anon_sym_DOLLAR] = ACTIONS(4540), + [anon_sym_PERCENT] = ACTIONS(4540), + [anon_sym_AMP] = ACTIONS(4542), + [anon_sym_SQUOTE] = ACTIONS(4540), + [anon_sym_STAR] = ACTIONS(4540), + [anon_sym_PLUS] = ACTIONS(4540), + [anon_sym_COMMA] = ACTIONS(4540), + [anon_sym_DASH] = ACTIONS(4542), + [anon_sym_DOT] = ACTIONS(4542), + [anon_sym_SLASH] = ACTIONS(4540), + [anon_sym_COLON] = ACTIONS(4540), + [anon_sym_SEMI] = ACTIONS(4540), + [anon_sym_EQ] = ACTIONS(4540), + [anon_sym_QMARK] = ACTIONS(4540), + [anon_sym_LBRACK] = ACTIONS(4542), + [anon_sym_BSLASH] = ACTIONS(4542), + [anon_sym_CARET] = ACTIONS(4542), + [anon_sym__] = ACTIONS(4540), + [anon_sym_BQUOTE] = ACTIONS(4540), + [anon_sym_LBRACE] = ACTIONS(4614), + [anon_sym_PIPE] = ACTIONS(4540), + [anon_sym_TILDE] = ACTIONS(4540), + [anon_sym_LPAREN] = ACTIONS(4540), + [anon_sym_RPAREN] = ACTIONS(4540), + [sym__newline_token] = ACTIONS(4540), + [aux_sym_insert_token1] = ACTIONS(4540), + [aux_sym_delete_token1] = ACTIONS(4540), + [aux_sym_highlight_token1] = ACTIONS(4540), + [aux_sym_edit_comment_token1] = ACTIONS(4540), + [anon_sym_CARET_LBRACK] = ACTIONS(4540), + [anon_sym_LBRACK_CARET] = ACTIONS(4540), + [sym_uri_autolink] = ACTIONS(4540), + [sym_email_autolink] = ACTIONS(4540), + [sym__whitespace_ge_2] = ACTIONS(4540), + [aux_sym__whitespace_token1] = ACTIONS(4542), + [sym__word_no_digit] = ACTIONS(4540), + [sym__digits] = ACTIONS(4540), + [anon_sym_DASH_DASH] = ACTIONS(4542), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4540), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4540), + [sym__code_span_start] = ACTIONS(4540), + [sym__emphasis_open_star] = ACTIONS(4540), + [sym__emphasis_open_underscore] = ACTIONS(4540), + [sym__strikeout_open] = ACTIONS(4540), + [sym__latex_span_start] = ACTIONS(4540), + [sym__single_quote_open] = ACTIONS(4540), + [sym__double_quote_open] = ACTIONS(4540), + [sym__superscript_open] = ACTIONS(4540), + [sym__superscript_close] = ACTIONS(4540), + [sym__subscript_open] = ACTIONS(4540), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4540), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4540), + [sym__cite_author_in_text] = ACTIONS(4540), + [sym__cite_suppress_author] = ACTIONS(4540), + [sym__shortcode_open_escaped] = ACTIONS(4540), + [sym__shortcode_open] = ACTIONS(4540), + [sym__unclosed_span] = ACTIONS(4540), }, [STATE(429)] = { - [sym__qmd_attribute] = STATE(677), - [sym_raw_attribute] = STATE(677), - [sym_commonmark_attribute] = STATE(677), - [sym_language_attribute] = STATE(677), - [sym__backslash_escape] = ACTIONS(3659), - [sym_entity_reference] = ACTIONS(3659), - [sym_numeric_character_reference] = ACTIONS(3659), - [anon_sym_LT] = ACTIONS(3661), - [anon_sym_GT] = ACTIONS(3659), - [anon_sym_BANG] = ACTIONS(3659), - [anon_sym_DQUOTE] = ACTIONS(3659), - [anon_sym_POUND] = ACTIONS(3659), - [anon_sym_DOLLAR] = ACTIONS(3659), - [anon_sym_PERCENT] = ACTIONS(3659), - [anon_sym_AMP] = ACTIONS(3661), - [anon_sym_SQUOTE] = ACTIONS(3659), - [anon_sym_STAR] = ACTIONS(3659), - [anon_sym_PLUS] = ACTIONS(3659), - [anon_sym_COMMA] = ACTIONS(3659), - [anon_sym_DASH] = ACTIONS(3661), - [anon_sym_DOT] = ACTIONS(3661), - [anon_sym_SLASH] = ACTIONS(3659), - [anon_sym_COLON] = ACTIONS(3659), - [anon_sym_SEMI] = ACTIONS(3659), - [anon_sym_EQ] = ACTIONS(3659), - [anon_sym_QMARK] = ACTIONS(3659), - [anon_sym_LBRACK] = ACTIONS(3661), - [anon_sym_BSLASH] = ACTIONS(3661), - [anon_sym_CARET] = ACTIONS(3661), - [anon_sym__] = ACTIONS(3659), - [anon_sym_BQUOTE] = ACTIONS(3659), - [anon_sym_LBRACE] = ACTIONS(3641), - [anon_sym_PIPE] = ACTIONS(3659), - [anon_sym_TILDE] = ACTIONS(3659), - [anon_sym_LPAREN] = ACTIONS(3659), - [anon_sym_RPAREN] = ACTIONS(3659), - [sym__newline_token] = ACTIONS(3659), - [anon_sym_CARET_LBRACK] = ACTIONS(3659), - [anon_sym_LBRACK_CARET] = ACTIONS(3659), - [sym_uri_autolink] = ACTIONS(3659), - [sym_email_autolink] = ACTIONS(3659), - [sym__whitespace_ge_2] = ACTIONS(3659), - [aux_sym__whitespace_token1] = ACTIONS(3661), - [sym__word_no_digit] = ACTIONS(3659), - [sym__digits] = ACTIONS(3659), - [anon_sym_DASH_DASH] = ACTIONS(3661), - [anon_sym_DASH_DASH_DASH] = ACTIONS(3659), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3659), - [sym__code_span_start] = ACTIONS(3659), - [sym__emphasis_open_star] = ACTIONS(3659), - [sym__emphasis_open_underscore] = ACTIONS(3659), - [sym__strikeout_open] = ACTIONS(3659), - [sym__latex_span_start] = ACTIONS(3659), - [sym__single_quote_open] = ACTIONS(3659), - [sym__double_quote_open] = ACTIONS(3659), - [sym__double_quote_close] = ACTIONS(3659), - [sym__superscript_open] = ACTIONS(3659), - [sym__subscript_open] = ACTIONS(3659), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3659), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3659), - [sym__cite_author_in_text] = ACTIONS(3659), - [sym__cite_suppress_author] = ACTIONS(3659), - [sym__shortcode_open_escaped] = ACTIONS(3659), - [sym__shortcode_open] = ACTIONS(3659), - [sym__unclosed_span] = ACTIONS(3659), - }, - [STATE(430)] = { - [sym__qmd_attribute] = STATE(1012), - [sym_raw_attribute] = STATE(1012), - [sym_commonmark_attribute] = STATE(1012), - [sym_language_attribute] = STATE(1012), - [sym__backslash_escape] = ACTIONS(3655), - [sym_entity_reference] = ACTIONS(3655), - [sym_numeric_character_reference] = ACTIONS(3655), - [anon_sym_LT] = ACTIONS(3657), - [anon_sym_GT] = ACTIONS(3655), - [anon_sym_BANG] = ACTIONS(3655), - [anon_sym_DQUOTE] = ACTIONS(3655), - [anon_sym_POUND] = ACTIONS(3655), - [anon_sym_DOLLAR] = ACTIONS(3655), - [anon_sym_PERCENT] = ACTIONS(3655), - [anon_sym_AMP] = ACTIONS(3657), - [anon_sym_SQUOTE] = ACTIONS(3655), - [anon_sym_STAR] = ACTIONS(3655), - [anon_sym_PLUS] = ACTIONS(3655), - [anon_sym_COMMA] = ACTIONS(3655), - [anon_sym_DASH] = ACTIONS(3657), - [anon_sym_DOT] = ACTIONS(3657), - [anon_sym_SLASH] = ACTIONS(3655), - [anon_sym_COLON] = ACTIONS(3655), - [anon_sym_SEMI] = ACTIONS(3655), - [anon_sym_EQ] = ACTIONS(3655), - [anon_sym_QMARK] = ACTIONS(3655), - [anon_sym_LBRACK] = ACTIONS(3657), - [anon_sym_BSLASH] = ACTIONS(3657), - [anon_sym_CARET] = ACTIONS(3657), - [anon_sym__] = ACTIONS(3655), - [anon_sym_BQUOTE] = ACTIONS(3655), - [anon_sym_LBRACE] = ACTIONS(3713), - [anon_sym_PIPE] = ACTIONS(3655), - [anon_sym_TILDE] = ACTIONS(3655), - [anon_sym_LPAREN] = ACTIONS(3655), - [anon_sym_RPAREN] = ACTIONS(3655), - [sym__newline_token] = ACTIONS(3655), - [anon_sym_CARET_LBRACK] = ACTIONS(3655), - [anon_sym_LBRACK_CARET] = ACTIONS(3655), - [sym_uri_autolink] = ACTIONS(3655), - [sym_email_autolink] = ACTIONS(3655), - [sym__whitespace_ge_2] = ACTIONS(3655), - [aux_sym__whitespace_token1] = ACTIONS(3657), - [sym__word_no_digit] = ACTIONS(3655), - [sym__digits] = ACTIONS(3655), - [anon_sym_DASH_DASH] = ACTIONS(3657), - [anon_sym_DASH_DASH_DASH] = ACTIONS(3655), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3655), - [sym__code_span_start] = ACTIONS(3655), - [sym__emphasis_open_star] = ACTIONS(3655), - [sym__emphasis_open_underscore] = ACTIONS(3655), - [sym__emphasis_close_underscore] = ACTIONS(3655), - [sym__strikeout_open] = ACTIONS(3655), - [sym__latex_span_start] = ACTIONS(3655), - [sym__single_quote_open] = ACTIONS(3655), - [sym__double_quote_open] = ACTIONS(3655), - [sym__superscript_open] = ACTIONS(3655), - [sym__subscript_open] = ACTIONS(3655), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3655), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3655), - [sym__cite_author_in_text] = ACTIONS(3655), - [sym__cite_suppress_author] = ACTIONS(3655), - [sym__shortcode_open_escaped] = ACTIONS(3655), - [sym__shortcode_open] = ACTIONS(3655), - [sym__unclosed_span] = ACTIONS(3655), + [sym__qmd_attribute] = STATE(797), + [sym_raw_attribute] = STATE(797), + [sym_commonmark_attribute] = STATE(797), + [sym_language_attribute] = STATE(797), + [sym__backslash_escape] = ACTIONS(4534), + [sym_entity_reference] = ACTIONS(4534), + [sym_numeric_character_reference] = ACTIONS(4534), + [anon_sym_LT] = ACTIONS(4536), + [anon_sym_GT] = ACTIONS(4534), + [anon_sym_BANG] = ACTIONS(4534), + [anon_sym_DQUOTE] = ACTIONS(4534), + [anon_sym_POUND] = ACTIONS(4534), + [anon_sym_DOLLAR] = ACTIONS(4534), + [anon_sym_PERCENT] = ACTIONS(4534), + [anon_sym_AMP] = ACTIONS(4536), + [anon_sym_SQUOTE] = ACTIONS(4534), + [anon_sym_STAR] = ACTIONS(4534), + [anon_sym_PLUS] = ACTIONS(4534), + [anon_sym_COMMA] = ACTIONS(4534), + [anon_sym_DASH] = ACTIONS(4536), + [anon_sym_DOT] = ACTIONS(4536), + [anon_sym_SLASH] = ACTIONS(4534), + [anon_sym_COLON] = ACTIONS(4534), + [anon_sym_SEMI] = ACTIONS(4534), + [anon_sym_EQ] = ACTIONS(4534), + [anon_sym_QMARK] = ACTIONS(4534), + [anon_sym_LBRACK] = ACTIONS(4536), + [anon_sym_BSLASH] = ACTIONS(4536), + [anon_sym_CARET] = ACTIONS(4536), + [anon_sym__] = ACTIONS(4534), + [anon_sym_BQUOTE] = ACTIONS(4534), + [anon_sym_LBRACE] = ACTIONS(4614), + [anon_sym_PIPE] = ACTIONS(4534), + [anon_sym_TILDE] = ACTIONS(4534), + [anon_sym_LPAREN] = ACTIONS(4534), + [anon_sym_RPAREN] = ACTIONS(4534), + [sym__newline_token] = ACTIONS(4534), + [aux_sym_insert_token1] = ACTIONS(4534), + [aux_sym_delete_token1] = ACTIONS(4534), + [aux_sym_highlight_token1] = ACTIONS(4534), + [aux_sym_edit_comment_token1] = ACTIONS(4534), + [anon_sym_CARET_LBRACK] = ACTIONS(4534), + [anon_sym_LBRACK_CARET] = ACTIONS(4534), + [sym_uri_autolink] = ACTIONS(4534), + [sym_email_autolink] = ACTIONS(4534), + [sym__whitespace_ge_2] = ACTIONS(4534), + [aux_sym__whitespace_token1] = ACTIONS(4536), + [sym__word_no_digit] = ACTIONS(4534), + [sym__digits] = ACTIONS(4534), + [anon_sym_DASH_DASH] = ACTIONS(4536), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4534), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4534), + [sym__code_span_start] = ACTIONS(4534), + [sym__emphasis_open_star] = ACTIONS(4534), + [sym__emphasis_open_underscore] = ACTIONS(4534), + [sym__strikeout_open] = ACTIONS(4534), + [sym__latex_span_start] = ACTIONS(4534), + [sym__single_quote_open] = ACTIONS(4534), + [sym__double_quote_open] = ACTIONS(4534), + [sym__superscript_open] = ACTIONS(4534), + [sym__superscript_close] = ACTIONS(4534), + [sym__subscript_open] = ACTIONS(4534), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4534), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4534), + [sym__cite_author_in_text] = ACTIONS(4534), + [sym__cite_suppress_author] = ACTIONS(4534), + [sym__shortcode_open_escaped] = ACTIONS(4534), + [sym__shortcode_open] = ACTIONS(4534), + [sym__unclosed_span] = ACTIONS(4534), }, -}; - -static const uint16_t ts_small_parse_table[] = { - [0] = 5, - ACTIONS(641), 1, - sym__newline_token, - ACTIONS(3737), 1, - sym__last_token_whitespace, - STATE(529), 1, - sym__soft_line_break, - ACTIONS(3735), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3733), 51, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__single_quote_close, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [74] = 5, - ACTIONS(985), 1, - sym__newline_token, - ACTIONS(3739), 1, - sym__last_token_whitespace, - STATE(629), 1, - sym__soft_line_break, - ACTIONS(3735), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3733), 51, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_star, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [148] = 5, - ACTIONS(19), 1, - sym__newline_token, - ACTIONS(3745), 1, - sym__last_token_punctuation, - STATE(849), 1, - sym__soft_line_break, - ACTIONS(3743), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3741), 51, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - ts_builtin_sym_end, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [222] = 5, - ACTIONS(575), 1, - sym__newline_token, - ACTIONS(3747), 1, - sym__last_token_punctuation, - STATE(1058), 1, - sym__soft_line_break, - ACTIONS(3743), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3741), 51, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__strikeout_close, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [296] = 5, - ACTIONS(575), 1, - sym__newline_token, - ACTIONS(3749), 1, - sym__last_token_whitespace, - STATE(1058), 1, - sym__soft_line_break, - ACTIONS(3735), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3733), 51, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__strikeout_close, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [370] = 5, - ACTIONS(763), 1, - sym__newline_token, - ACTIONS(3751), 1, - sym__last_token_punctuation, - STATE(722), 1, - sym__soft_line_break, - ACTIONS(3743), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3741), 51, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__superscript_close, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [444] = 5, - ACTIONS(825), 1, - sym__newline_token, - ACTIONS(3753), 1, - sym__last_token_punctuation, - STATE(808), 1, - sym__soft_line_break, - ACTIONS(3743), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3741), 51, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__subscript_close, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [518] = 5, - ACTIONS(177), 1, - sym__newline_token, - ACTIONS(3755), 1, - sym__last_token_punctuation, - STATE(895), 1, - sym__soft_line_break, - ACTIONS(3743), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3741), 51, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_RBRACK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [592] = 5, - ACTIONS(177), 1, - sym__newline_token, - ACTIONS(3757), 1, - sym__last_token_whitespace, - STATE(895), 1, - sym__soft_line_break, - ACTIONS(3735), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3733), 51, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_RBRACK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [666] = 5, - ACTIONS(825), 1, - sym__newline_token, - ACTIONS(3759), 1, - sym__last_token_whitespace, - STATE(808), 1, - sym__soft_line_break, - ACTIONS(3735), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3733), 51, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__subscript_close, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [740] = 5, - ACTIONS(641), 1, - sym__newline_token, - ACTIONS(3761), 1, - sym__last_token_punctuation, - STATE(529), 1, - sym__soft_line_break, - ACTIONS(3743), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3741), 51, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__single_quote_close, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [814] = 5, - ACTIONS(1139), 1, - sym__newline_token, - ACTIONS(3763), 1, - sym__last_token_punctuation, - STATE(952), 1, - sym__soft_line_break, - ACTIONS(3743), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3741), 51, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [888] = 5, - ACTIONS(1139), 1, - sym__newline_token, - ACTIONS(3765), 1, - sym__last_token_whitespace, - STATE(952), 1, - sym__soft_line_break, - ACTIONS(3735), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3733), 51, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [962] = 5, - ACTIONS(763), 1, - sym__newline_token, - ACTIONS(3767), 1, - sym__last_token_whitespace, - STATE(722), 1, - sym__soft_line_break, - ACTIONS(3735), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3733), 51, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__superscript_close, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [1036] = 5, - ACTIONS(985), 1, - sym__newline_token, - ACTIONS(3769), 1, - sym__last_token_punctuation, - STATE(629), 1, - sym__soft_line_break, - ACTIONS(3743), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3741), 51, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_star, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [1110] = 5, - ACTIONS(19), 1, - sym__newline_token, - ACTIONS(3771), 1, - sym__last_token_whitespace, - STATE(849), 1, - sym__soft_line_break, - ACTIONS(3735), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3733), 51, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - ts_builtin_sym_end, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [1184] = 5, - ACTIONS(703), 1, - sym__newline_token, - ACTIONS(3773), 1, - sym__last_token_punctuation, - STATE(627), 1, - sym__soft_line_break, - ACTIONS(3743), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3741), 51, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__double_quote_close, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [1258] = 5, - ACTIONS(703), 1, - sym__newline_token, - ACTIONS(3775), 1, - sym__last_token_whitespace, - STATE(627), 1, - sym__soft_line_break, - ACTIONS(3735), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3733), 51, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__double_quote_close, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [1332] = 3, - ACTIONS(3749), 1, - sym__last_token_whitespace, - ACTIONS(3735), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3733), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__strikeout_close, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [1401] = 3, - ACTIONS(3781), 1, - sym__last_token_punctuation, - ACTIONS(3779), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3777), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__strikeout_close, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [1470] = 3, - ACTIONS(3753), 1, - sym__last_token_punctuation, - ACTIONS(3743), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3741), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__subscript_close, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [1539] = 3, - ACTIONS(3787), 1, - sym__last_token_punctuation, - ACTIONS(3785), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3783), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_star, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [1608] = 3, - ACTIONS(3793), 1, - sym__last_token_punctuation, - ACTIONS(3791), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3789), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_star, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [1677] = 3, - ACTIONS(3795), 1, - sym__last_token_punctuation, - ACTIONS(3785), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3783), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__strikeout_close, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [1746] = 4, - ACTIONS(3753), 1, - sym__last_token_punctuation, - ACTIONS(3797), 1, - anon_sym_LBRACK, - ACTIONS(3743), 8, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3741), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__subscript_close, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [1817] = 3, - ACTIONS(3799), 1, - sym__last_token_punctuation, - ACTIONS(3791), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3789), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__strikeout_close, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [1886] = 3, - ACTIONS(3751), 1, - sym__last_token_punctuation, - ACTIONS(3743), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3741), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__superscript_close, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [1955] = 3, - ACTIONS(3805), 1, - sym__last_token_whitespace, - ACTIONS(3803), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3801), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__double_quote_close, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [2024] = 3, - ACTIONS(3811), 1, - sym__last_token_punctuation, - ACTIONS(3809), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3807), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__strikeout_close, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [2093] = 3, - ACTIONS(3813), 1, - sym__last_token_punctuation, - ACTIONS(3809), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3807), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_star, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [2162] = 3, - ACTIONS(3755), 1, - sym__last_token_punctuation, - ACTIONS(3743), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3741), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_RBRACK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [2231] = 4, - ACTIONS(3755), 1, - sym__last_token_punctuation, - ACTIONS(3797), 1, - anon_sym_LBRACK, - ACTIONS(3743), 8, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3741), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_RBRACK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [2302] = 3, - ACTIONS(3747), 1, - sym__last_token_punctuation, - ACTIONS(3743), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3741), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__strikeout_close, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [2371] = 3, - ACTIONS(3815), 1, - sym__last_token_punctuation, - ACTIONS(3809), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3807), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - ts_builtin_sym_end, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [2440] = 3, - ACTIONS(3817), 1, - sym__last_token_punctuation, - ACTIONS(3779), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3777), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - ts_builtin_sym_end, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [2509] = 3, - ACTIONS(3819), 1, - sym__last_token_whitespace, - ACTIONS(3803), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3801), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__superscript_close, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [2578] = 4, - ACTIONS(3747), 1, - sym__last_token_punctuation, - ACTIONS(3797), 1, - anon_sym_LBRACK, - ACTIONS(3743), 8, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3741), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__strikeout_close, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [2649] = 3, - ACTIONS(3759), 1, - sym__last_token_whitespace, - ACTIONS(3735), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3733), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__subscript_close, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [2718] = 3, - ACTIONS(3821), 1, - sym__last_token_punctuation, - ACTIONS(3779), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3777), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__superscript_close, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [2787] = 3, - ACTIONS(3767), 1, - sym__last_token_whitespace, - ACTIONS(3735), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3733), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__superscript_close, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [2856] = 3, - ACTIONS(3823), 1, - sym__last_token_whitespace, - ACTIONS(3803), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3801), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - ts_builtin_sym_end, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [2925] = 3, - ACTIONS(3825), 1, - sym__last_token_punctuation, - ACTIONS(3791), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3789), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__superscript_close, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [2994] = 3, - ACTIONS(3761), 1, - sym__last_token_punctuation, - ACTIONS(3743), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3741), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__single_quote_close, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [3063] = 4, - ACTIONS(3761), 1, - sym__last_token_punctuation, - ACTIONS(3797), 1, - anon_sym_LBRACK, - ACTIONS(3743), 8, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3741), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__single_quote_close, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [3134] = 3, - ACTIONS(3745), 1, - sym__last_token_punctuation, - ACTIONS(3743), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3741), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - ts_builtin_sym_end, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [3203] = 3, - ACTIONS(3827), 1, - sym__last_token_whitespace, - ACTIONS(3803), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3801), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [3272] = 3, - ACTIONS(3829), 1, - sym__last_token_whitespace, - ACTIONS(3803), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3801), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__strikeout_close, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [3341] = 4, - ACTIONS(3745), 1, - sym__last_token_punctuation, - ACTIONS(3797), 1, - anon_sym_LBRACK, - ACTIONS(3743), 8, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3741), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - ts_builtin_sym_end, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [3412] = 3, - ACTIONS(3831), 1, - sym__last_token_punctuation, - ACTIONS(3809), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3807), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__subscript_close, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [3481] = 3, - ACTIONS(3763), 1, - sym__last_token_punctuation, - ACTIONS(3743), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3741), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [3550] = 4, - ACTIONS(3763), 1, - sym__last_token_punctuation, - ACTIONS(3797), 1, - anon_sym_LBRACK, - ACTIONS(3743), 8, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3741), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [3621] = 3, - ACTIONS(3833), 1, - sym__last_token_punctuation, - ACTIONS(3779), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3777), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_star, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [3690] = 3, - ACTIONS(3835), 1, - sym__last_token_whitespace, - ACTIONS(3803), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3801), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_star, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [3759] = 3, - ACTIONS(3837), 1, - sym__last_token_whitespace, - ACTIONS(3803), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3801), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__single_quote_close, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [3828] = 3, - ACTIONS(3839), 1, - sym__last_token_punctuation, - ACTIONS(3809), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3807), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__double_quote_close, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [3897] = 3, - ACTIONS(3765), 1, - sym__last_token_whitespace, - ACTIONS(3735), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3733), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [3966] = 3, - ACTIONS(3739), 1, - sym__last_token_whitespace, - ACTIONS(3735), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3733), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_star, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [4035] = 3, - ACTIONS(3841), 1, - sym__last_token_whitespace, - ACTIONS(3803), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3801), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__subscript_close, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [4104] = 3, - ACTIONS(3843), 1, - sym__last_token_punctuation, - ACTIONS(3779), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3777), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_RBRACK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [4173] = 3, - ACTIONS(3845), 1, - sym__last_token_punctuation, - ACTIONS(3785), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3783), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__single_quote_close, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [4242] = 3, - ACTIONS(3847), 1, - sym__last_token_punctuation, - ACTIONS(3791), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3789), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__single_quote_close, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [4311] = 3, - ACTIONS(3849), 1, - sym__last_token_punctuation, - ACTIONS(3809), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3807), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__superscript_close, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [4380] = 3, - ACTIONS(3851), 1, - sym__last_token_punctuation, - ACTIONS(3785), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3783), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - ts_builtin_sym_end, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [4449] = 3, - ACTIONS(3853), 1, - sym__last_token_punctuation, - ACTIONS(3809), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3807), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__single_quote_close, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [4518] = 3, - ACTIONS(3855), 1, - sym__last_token_punctuation, - ACTIONS(3785), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3783), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_RBRACK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [4587] = 3, - ACTIONS(3857), 1, - sym__last_token_punctuation, - ACTIONS(3779), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3777), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [4656] = 3, - ACTIONS(3859), 1, - sym__last_token_punctuation, - ACTIONS(3791), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3789), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_RBRACK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [4725] = 3, - ACTIONS(3861), 1, - sym__last_token_punctuation, - ACTIONS(3779), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3777), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__subscript_close, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [4794] = 3, - ACTIONS(3775), 1, - sym__last_token_whitespace, - ACTIONS(3735), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3733), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__double_quote_close, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [4863] = 3, - ACTIONS(3863), 1, - sym__last_token_punctuation, - ACTIONS(3809), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3807), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_RBRACK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [4932] = 3, - ACTIONS(3865), 1, - sym__last_token_punctuation, - ACTIONS(3785), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3783), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [5001] = 3, - ACTIONS(3867), 1, - sym__last_token_punctuation, - ACTIONS(3791), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3789), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [5070] = 3, - ACTIONS(3869), 1, - sym__last_token_punctuation, - ACTIONS(3791), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3789), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__double_quote_close, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [5139] = 3, - ACTIONS(3871), 1, - sym__last_token_punctuation, - ACTIONS(3785), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3783), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__subscript_close, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [5208] = 3, - ACTIONS(3873), 1, - sym__last_token_punctuation, - ACTIONS(3809), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3807), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [5277] = 3, - ACTIONS(3875), 1, - sym__last_token_punctuation, - ACTIONS(3791), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3789), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__subscript_close, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [5346] = 3, - ACTIONS(3769), 1, - sym__last_token_punctuation, - ACTIONS(3743), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3741), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_star, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [5415] = 4, - ACTIONS(3769), 1, - sym__last_token_punctuation, - ACTIONS(3797), 1, - anon_sym_LBRACK, - ACTIONS(3743), 8, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3741), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_star, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [5486] = 3, - ACTIONS(3877), 1, - sym__last_token_whitespace, - ACTIONS(3803), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3801), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_RBRACK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [5555] = 3, - ACTIONS(3757), 1, - sym__last_token_whitespace, - ACTIONS(3735), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3733), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_RBRACK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [5624] = 3, - ACTIONS(3771), 1, - sym__last_token_whitespace, - ACTIONS(3735), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3733), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - ts_builtin_sym_end, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [5693] = 3, - ACTIONS(3773), 1, - sym__last_token_punctuation, - ACTIONS(3743), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3741), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__double_quote_close, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [5762] = 4, - ACTIONS(3773), 1, - sym__last_token_punctuation, - ACTIONS(3797), 1, - anon_sym_LBRACK, - ACTIONS(3743), 8, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3741), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__double_quote_close, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [5833] = 4, - ACTIONS(3751), 1, - sym__last_token_punctuation, - ACTIONS(3797), 1, - anon_sym_LBRACK, - ACTIONS(3743), 8, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3741), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__superscript_close, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [5904] = 3, - ACTIONS(3879), 1, - sym__last_token_punctuation, - ACTIONS(3791), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3789), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - ts_builtin_sym_end, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [5973] = 3, - ACTIONS(3737), 1, - sym__last_token_whitespace, - ACTIONS(3735), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3733), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__single_quote_close, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [6042] = 3, - ACTIONS(3881), 1, - sym__last_token_punctuation, - ACTIONS(3785), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3783), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__superscript_close, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [6111] = 3, - ACTIONS(3883), 1, - sym__last_token_punctuation, - ACTIONS(3779), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3777), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__double_quote_close, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [6180] = 3, - ACTIONS(3885), 1, - sym__last_token_punctuation, - ACTIONS(3785), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3783), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__double_quote_close, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [6249] = 3, - ACTIONS(3887), 1, - sym__last_token_punctuation, - ACTIONS(3779), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3777), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__single_quote_close, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [6318] = 2, - ACTIONS(3657), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3655), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__superscript_close, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [6384] = 2, - ACTIONS(3891), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3889), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__single_quote_close, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [6450] = 2, - ACTIONS(3895), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3893), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__single_quote_close, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [6516] = 2, - ACTIONS(3899), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3897), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__single_quote_close, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [6582] = 2, - ACTIONS(3903), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3901), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__single_quote_close, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [6648] = 2, - ACTIONS(3907), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3905), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__single_quote_close, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [6714] = 2, - ACTIONS(3911), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3909), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__single_quote_close, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [6780] = 2, - ACTIONS(3895), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3893), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - ts_builtin_sym_end, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [6846] = 2, - ACTIONS(3915), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3913), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__single_quote_close, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [6912] = 2, - ACTIONS(3919), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3917), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__single_quote_close, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [6978] = 2, - ACTIONS(3923), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3921), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__strikeout_close, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [7044] = 2, - ACTIONS(3685), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3683), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - ts_builtin_sym_end, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [7110] = 2, - ACTIONS(3927), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3925), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__strikeout_close, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [7176] = 2, - ACTIONS(3931), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3929), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__single_quote_close, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [7242] = 2, - ACTIONS(3631), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3629), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__single_quote_close, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [7308] = 2, - ACTIONS(3935), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3933), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - ts_builtin_sym_end, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [7374] = 2, - ACTIONS(3939), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3937), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__single_quote_close, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [7440] = 2, - ACTIONS(3689), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3687), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - ts_builtin_sym_end, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [7506] = 2, - ACTIONS(3943), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3941), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__single_quote_close, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [7572] = 2, - ACTIONS(3935), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3933), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__single_quote_close, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [7638] = 2, - ACTIONS(3947), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3945), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__single_quote_close, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [7704] = 2, - ACTIONS(3951), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3949), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__single_quote_close, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [7770] = 2, - ACTIONS(3955), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3953), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__single_quote_close, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [7836] = 2, - ACTIONS(3959), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3957), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_star, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [7902] = 2, - ACTIONS(3963), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3961), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__single_quote_close, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [7968] = 2, - ACTIONS(3967), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3965), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__single_quote_close, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [8034] = 2, - ACTIONS(3971), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3969), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__single_quote_close, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [8100] = 2, - ACTIONS(3975), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3973), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__single_quote_close, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [8166] = 2, - ACTIONS(3979), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3977), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__single_quote_close, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [8232] = 2, - ACTIONS(3983), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3981), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__single_quote_close, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [8298] = 2, - ACTIONS(3987), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3985), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__single_quote_close, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [8364] = 2, - ACTIONS(3991), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3989), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__single_quote_close, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [8430] = 2, - ACTIONS(3995), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3993), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__single_quote_close, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [8496] = 2, - ACTIONS(3999), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3997), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - ts_builtin_sym_end, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [8562] = 2, - ACTIONS(3785), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3783), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__single_quote_close, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [8628] = 2, - ACTIONS(4003), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4001), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - ts_builtin_sym_end, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [8694] = 2, - ACTIONS(4007), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4005), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__single_quote_close, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [8760] = 2, - ACTIONS(3947), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3945), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - ts_builtin_sym_end, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [8826] = 2, - ACTIONS(3899), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3897), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - ts_builtin_sym_end, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [8892] = 2, - ACTIONS(4011), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4009), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__single_quote_close, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [8958] = 2, - ACTIONS(4015), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4013), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__single_quote_close, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [9024] = 2, - ACTIONS(4019), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4017), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__single_quote_close, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [9090] = 2, - ACTIONS(4023), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4021), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__single_quote_close, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [9156] = 2, - ACTIONS(4027), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4025), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__single_quote_close, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [9222] = 2, - ACTIONS(4031), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4029), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_star, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [9288] = 2, - ACTIONS(4035), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4033), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__single_quote_close, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [9354] = 2, - ACTIONS(4039), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4037), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__single_quote_close, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [9420] = 2, - ACTIONS(4043), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4041), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__single_quote_close, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [9486] = 2, - ACTIONS(3657), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3655), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__single_quote_close, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [9552] = 2, - ACTIONS(3951), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3949), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - ts_builtin_sym_end, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [9618] = 2, - ACTIONS(3661), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3659), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__single_quote_close, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [9684] = 2, - ACTIONS(3955), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3953), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - ts_builtin_sym_end, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [9750] = 2, - ACTIONS(4047), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4045), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__single_quote_close, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [9816] = 2, - ACTIONS(4051), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4049), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__single_quote_close, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [9882] = 2, - ACTIONS(4055), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4053), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__single_quote_close, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [9948] = 2, - ACTIONS(4059), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4057), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__single_quote_close, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [10014] = 2, - ACTIONS(4063), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4061), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__single_quote_close, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [10080] = 2, - ACTIONS(3639), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3637), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__single_quote_close, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [10146] = 2, - ACTIONS(3743), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3741), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - ts_builtin_sym_end, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [10212] = 2, - ACTIONS(3665), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3663), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__single_quote_close, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [10278] = 2, - ACTIONS(3963), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3961), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - ts_builtin_sym_end, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [10344] = 2, - ACTIONS(4067), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4065), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__single_quote_close, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [10410] = 2, - ACTIONS(4071), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4069), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__single_quote_close, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [10476] = 2, - ACTIONS(4075), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4073), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__single_quote_close, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [10542] = 2, - ACTIONS(4079), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4077), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__single_quote_close, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [10608] = 2, - ACTIONS(3669), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3667), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__single_quote_close, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [10674] = 2, - ACTIONS(3743), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3741), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_star, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [10740] = 2, - ACTIONS(3673), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3671), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__single_quote_close, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [10806] = 2, - ACTIONS(3967), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3965), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - ts_builtin_sym_end, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [10872] = 2, - ACTIONS(4083), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4081), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__single_quote_close, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [10938] = 2, - ACTIONS(4087), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4085), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__single_quote_close, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [11004] = 2, - ACTIONS(3677), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3675), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__single_quote_close, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [11070] = 2, - ACTIONS(3971), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3969), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - ts_builtin_sym_end, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [11136] = 2, - ACTIONS(3681), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3679), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__single_quote_close, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [11202] = 2, - ACTIONS(4091), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4089), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_star, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [11268] = 2, - ACTIONS(3685), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3683), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__single_quote_close, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [11334] = 2, - ACTIONS(4095), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4093), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_star, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [11400] = 2, - ACTIONS(3689), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3687), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__single_quote_close, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [11466] = 2, - ACTIONS(4099), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4097), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_RBRACK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [11532] = 2, - ACTIONS(3999), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3997), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__single_quote_close, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [11598] = 2, - ACTIONS(4003), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4001), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__single_quote_close, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [11664] = 2, - ACTIONS(4103), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4101), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__strikeout_close, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [11730] = 2, - ACTIONS(3975), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3973), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - ts_builtin_sym_end, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [11796] = 2, - ACTIONS(4031), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4029), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__single_quote_close, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [11862] = 2, - ACTIONS(3979), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3977), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - ts_builtin_sym_end, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [11928] = 2, - ACTIONS(4107), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4105), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_star, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [11994] = 2, - ACTIONS(4111), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4109), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_star, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [12060] = 2, - ACTIONS(3891), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3889), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_star, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [12126] = 2, - ACTIONS(3895), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3893), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_star, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [12192] = 2, - ACTIONS(3743), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3741), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__double_quote_close, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [12258] = 2, - ACTIONS(3899), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3897), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_star, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [12324] = 2, - ACTIONS(3903), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3901), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_star, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [12390] = 2, - ACTIONS(4091), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4089), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__double_quote_close, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [12456] = 2, - ACTIONS(4095), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4093), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__double_quote_close, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [12522] = 2, - ACTIONS(4103), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4101), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__subscript_close, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [12588] = 2, - ACTIONS(3907), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3905), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_star, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [12654] = 2, - ACTIONS(3911), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3909), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_star, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [12720] = 2, - ACTIONS(4107), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4105), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__double_quote_close, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [12786] = 2, - ACTIONS(4111), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4109), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__double_quote_close, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [12852] = 2, - ACTIONS(3891), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3889), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__double_quote_close, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [12918] = 2, - ACTIONS(3895), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3893), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__double_quote_close, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [12984] = 2, - ACTIONS(3899), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3897), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__double_quote_close, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [13050] = 2, - ACTIONS(3903), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3901), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__double_quote_close, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [13116] = 2, - ACTIONS(3907), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3905), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__double_quote_close, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [13182] = 2, - ACTIONS(3911), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3909), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__double_quote_close, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [13248] = 2, - ACTIONS(3983), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3981), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - ts_builtin_sym_end, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [13314] = 2, - ACTIONS(3915), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3913), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__double_quote_close, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [13380] = 2, - ACTIONS(3919), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3917), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__double_quote_close, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [13446] = 2, - ACTIONS(3915), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3913), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_star, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [13512] = 2, - ACTIONS(3927), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3925), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__single_quote_close, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [13578] = 2, - ACTIONS(3931), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3929), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__double_quote_close, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [13644] = 2, - ACTIONS(3631), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3629), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__double_quote_close, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [13710] = 2, - ACTIONS(3919), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3917), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_star, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [13776] = 2, - ACTIONS(3939), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3937), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__double_quote_close, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [13842] = 2, - ACTIONS(3903), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3901), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - ts_builtin_sym_end, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [13908] = 2, - ACTIONS(3943), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3941), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__double_quote_close, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [13974] = 2, - ACTIONS(3935), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3933), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__double_quote_close, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [14040] = 2, - ACTIONS(3947), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3945), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__double_quote_close, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [14106] = 2, - ACTIONS(3951), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3949), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__double_quote_close, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [14172] = 2, - ACTIONS(3955), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3953), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__double_quote_close, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [14238] = 2, - ACTIONS(3931), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3929), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_star, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [14304] = 2, - ACTIONS(3963), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3961), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__double_quote_close, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [14370] = 2, - ACTIONS(3967), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3965), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__double_quote_close, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [14436] = 2, - ACTIONS(3971), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3969), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__double_quote_close, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [14502] = 2, - ACTIONS(3975), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3973), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__double_quote_close, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [14568] = 2, - ACTIONS(3979), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3977), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__double_quote_close, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [14634] = 2, - ACTIONS(3983), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3981), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__double_quote_close, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [14700] = 2, - ACTIONS(3987), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3985), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__double_quote_close, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [14766] = 2, - ACTIONS(3991), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3989), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__double_quote_close, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [14832] = 2, - ACTIONS(3995), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3993), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__double_quote_close, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [14898] = 2, - ACTIONS(3631), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3629), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_star, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [14964] = 2, - ACTIONS(3785), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3783), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__double_quote_close, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [15030] = 2, - ACTIONS(3907), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3905), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - ts_builtin_sym_end, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [15096] = 2, - ACTIONS(4007), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4005), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__double_quote_close, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [15162] = 2, - ACTIONS(3911), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3909), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - ts_builtin_sym_end, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [15228] = 2, - ACTIONS(3939), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3937), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_star, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [15294] = 2, - ACTIONS(4011), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4009), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__double_quote_close, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [15360] = 2, - ACTIONS(4015), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4013), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__double_quote_close, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [15426] = 2, - ACTIONS(4019), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4017), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__double_quote_close, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [15492] = 2, - ACTIONS(4023), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4021), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__double_quote_close, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [15558] = 2, - ACTIONS(4027), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4025), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__double_quote_close, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [15624] = 2, - ACTIONS(4091), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4089), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - ts_builtin_sym_end, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [15690] = 2, - ACTIONS(4035), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4033), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__double_quote_close, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [15756] = 2, - ACTIONS(4039), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4037), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__double_quote_close, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [15822] = 2, - ACTIONS(4043), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4041), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__double_quote_close, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [15888] = 2, - ACTIONS(3657), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3655), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__double_quote_close, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [15954] = 2, - ACTIONS(3943), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3941), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_star, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [16020] = 2, - ACTIONS(3661), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3659), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__double_quote_close, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [16086] = 2, - ACTIONS(3935), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3933), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_star, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [16152] = 2, - ACTIONS(4047), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4045), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__double_quote_close, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [16218] = 2, - ACTIONS(4051), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4049), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__double_quote_close, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [16284] = 2, - ACTIONS(4055), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4053), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__double_quote_close, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [16350] = 2, - ACTIONS(4059), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4057), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__double_quote_close, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [16416] = 2, - ACTIONS(4063), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4061), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__double_quote_close, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [16482] = 2, - ACTIONS(3639), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3637), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__double_quote_close, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [16548] = 2, - ACTIONS(3947), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3945), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_star, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [16614] = 2, - ACTIONS(3665), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3663), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__double_quote_close, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [16680] = 2, - ACTIONS(3951), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3949), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_star, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [16746] = 2, - ACTIONS(4067), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4065), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__double_quote_close, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [16812] = 2, - ACTIONS(4071), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4069), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__double_quote_close, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [16878] = 2, - ACTIONS(4075), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4073), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__double_quote_close, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [16944] = 2, - ACTIONS(4079), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4077), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__double_quote_close, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [17010] = 2, - ACTIONS(3669), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3667), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__double_quote_close, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [17076] = 2, - ACTIONS(3955), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3953), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_star, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [17142] = 2, - ACTIONS(3673), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3671), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__double_quote_close, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [17208] = 2, - ACTIONS(4083), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4081), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__double_quote_close, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [17274] = 2, - ACTIONS(4087), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4085), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__double_quote_close, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [17340] = 2, - ACTIONS(3677), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3675), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__double_quote_close, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [17406] = 2, - ACTIONS(3963), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3961), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_star, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [17472] = 2, - ACTIONS(3681), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3679), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__double_quote_close, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [17538] = 2, - ACTIONS(3967), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3965), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_star, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [17604] = 2, - ACTIONS(3685), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3683), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__double_quote_close, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [17670] = 2, - ACTIONS(3971), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3969), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_star, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [17736] = 2, - ACTIONS(3689), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3687), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__double_quote_close, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [17802] = 2, - ACTIONS(3975), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3973), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_star, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [17868] = 2, - ACTIONS(3999), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3997), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__double_quote_close, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [17934] = 2, - ACTIONS(4003), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4001), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__double_quote_close, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [18000] = 2, - ACTIONS(3979), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3977), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_star, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [18066] = 2, - ACTIONS(3983), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3981), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_star, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [18132] = 2, - ACTIONS(4031), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4029), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__double_quote_close, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [18198] = 2, - ACTIONS(3987), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3985), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_star, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [18264] = 2, - ACTIONS(3991), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3989), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_star, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [18330] = 2, - ACTIONS(3995), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3993), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_star, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [18396] = 2, - ACTIONS(3785), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3783), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_star, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [18462] = 2, - ACTIONS(3743), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3741), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__superscript_close, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [18528] = 2, - ACTIONS(4007), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4005), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_star, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [18594] = 2, - ACTIONS(4095), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4093), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - ts_builtin_sym_end, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [18660] = 2, - ACTIONS(4091), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4089), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__superscript_close, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [18726] = 2, - ACTIONS(4095), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4093), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__superscript_close, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [18792] = 2, - ACTIONS(4103), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4101), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_RBRACK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [18858] = 2, - ACTIONS(4115), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4113), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [18924] = 2, - ACTIONS(4011), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4009), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_star, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [18990] = 2, - ACTIONS(4107), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4105), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__superscript_close, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [19056] = 2, - ACTIONS(4111), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4109), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__superscript_close, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [19122] = 2, - ACTIONS(3891), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3889), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__superscript_close, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [19188] = 2, - ACTIONS(3895), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3893), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__superscript_close, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [19254] = 2, - ACTIONS(3899), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3897), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__superscript_close, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [19320] = 2, - ACTIONS(3903), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3901), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__superscript_close, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [19386] = 2, - ACTIONS(3907), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3905), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__superscript_close, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [19452] = 2, - ACTIONS(3911), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3909), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__superscript_close, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [19518] = 2, - ACTIONS(4015), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4013), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_star, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [19584] = 2, - ACTIONS(3915), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3913), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__superscript_close, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [19650] = 2, - ACTIONS(3919), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3917), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__superscript_close, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [19716] = 2, - ACTIONS(3923), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3921), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__single_quote_close, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [19782] = 2, - ACTIONS(4019), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4017), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_star, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [19848] = 2, - ACTIONS(3927), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3925), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__double_quote_close, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [19914] = 2, - ACTIONS(3931), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3929), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__superscript_close, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [19980] = 2, - ACTIONS(3631), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3629), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__superscript_close, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [20046] = 2, - ACTIONS(3939), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3937), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__superscript_close, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [20112] = 2, - ACTIONS(3943), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3941), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__superscript_close, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [20178] = 2, - ACTIONS(3935), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3933), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__superscript_close, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [20244] = 2, - ACTIONS(3947), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3945), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__superscript_close, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [20310] = 2, - ACTIONS(3951), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3949), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__superscript_close, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [20376] = 2, - ACTIONS(3955), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3953), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__superscript_close, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [20442] = 2, - ACTIONS(3963), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3961), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__superscript_close, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [20508] = 2, - ACTIONS(3967), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3965), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__superscript_close, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [20574] = 2, - ACTIONS(3971), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3969), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__superscript_close, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [20640] = 2, - ACTIONS(3975), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3973), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__superscript_close, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [20706] = 2, - ACTIONS(3979), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3977), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__superscript_close, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [20772] = 2, - ACTIONS(3983), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3981), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__superscript_close, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [20838] = 2, - ACTIONS(3987), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3985), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__superscript_close, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [20904] = 2, - ACTIONS(3991), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3989), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__superscript_close, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [20970] = 2, - ACTIONS(3995), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3993), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__superscript_close, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [21036] = 2, - ACTIONS(3785), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3783), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__superscript_close, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [21102] = 2, - ACTIONS(4007), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4005), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__superscript_close, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [21168] = 2, - ACTIONS(4023), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4021), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_star, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [21234] = 2, - ACTIONS(4027), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4025), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_star, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [21300] = 2, - ACTIONS(4011), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4009), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__superscript_close, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [21366] = 2, - ACTIONS(4015), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4013), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__superscript_close, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [21432] = 2, - ACTIONS(4019), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4017), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__superscript_close, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [21498] = 2, - ACTIONS(4023), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4021), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__superscript_close, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [21564] = 2, - ACTIONS(4027), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4025), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__superscript_close, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [21630] = 2, - ACTIONS(4035), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4033), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__superscript_close, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [21696] = 2, - ACTIONS(4039), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4037), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__superscript_close, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [21762] = 2, - ACTIONS(4043), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4041), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__superscript_close, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [21828] = 2, - ACTIONS(4035), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4033), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_star, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [21894] = 2, - ACTIONS(4039), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4037), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_star, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [21960] = 2, - ACTIONS(3661), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3659), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__superscript_close, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [22026] = 2, - ACTIONS(4043), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4041), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_star, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [22092] = 2, - ACTIONS(4047), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4045), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__superscript_close, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [22158] = 2, - ACTIONS(4051), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4049), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__superscript_close, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [22224] = 2, - ACTIONS(4055), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4053), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__superscript_close, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [22290] = 2, - ACTIONS(4059), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4057), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__superscript_close, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [22356] = 2, - ACTIONS(4063), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4061), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__superscript_close, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [22422] = 2, - ACTIONS(3639), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3637), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__superscript_close, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [22488] = 2, - ACTIONS(3657), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3655), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_star, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [22554] = 2, - ACTIONS(3665), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3663), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__superscript_close, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [22620] = 3, - ACTIONS(4117), 1, - sym__emphasis_close_underscore, - ACTIONS(4115), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4113), 51, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [22688] = 2, - ACTIONS(4067), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4065), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__superscript_close, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [22754] = 2, - ACTIONS(4071), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4069), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__superscript_close, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [22820] = 2, - ACTIONS(4075), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4073), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__superscript_close, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [22886] = 2, - ACTIONS(4079), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4077), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__superscript_close, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [22952] = 2, - ACTIONS(3669), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3667), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__superscript_close, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [23018] = 2, - ACTIONS(3661), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3659), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_star, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [23084] = 2, - ACTIONS(3673), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3671), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__superscript_close, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [23150] = 2, - ACTIONS(4083), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4081), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__superscript_close, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [23216] = 2, - ACTIONS(4087), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4085), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__superscript_close, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [23282] = 2, - ACTIONS(3677), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3675), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__superscript_close, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [23348] = 2, - ACTIONS(4047), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4045), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_star, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [23414] = 2, - ACTIONS(3681), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3679), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__superscript_close, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [23480] = 2, - ACTIONS(4051), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4049), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_star, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [23546] = 2, - ACTIONS(3685), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3683), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__superscript_close, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [23612] = 2, - ACTIONS(3689), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3687), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__superscript_close, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [23678] = 2, - ACTIONS(3999), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3997), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__superscript_close, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [23744] = 2, - ACTIONS(4003), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4001), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__superscript_close, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [23810] = 2, - ACTIONS(4031), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4029), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__superscript_close, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [23876] = 2, - ACTIONS(4055), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4053), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_star, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [23942] = 2, - ACTIONS(4059), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4057), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_star, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [24008] = 2, - ACTIONS(4063), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4061), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_star, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [24074] = 2, - ACTIONS(3639), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3637), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_star, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [24140] = 2, - ACTIONS(3665), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3663), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_star, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [24206] = 2, - ACTIONS(3743), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3741), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__subscript_close, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [24272] = 2, - ACTIONS(3987), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3985), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - ts_builtin_sym_end, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [24338] = 2, - ACTIONS(4067), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4065), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_star, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [24404] = 2, - ACTIONS(4091), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4089), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__subscript_close, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [24470] = 2, - ACTIONS(4095), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4093), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__subscript_close, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [24536] = 2, - ACTIONS(4071), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4069), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_star, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [24602] = 2, - ACTIONS(4075), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4073), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_star, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [24668] = 2, - ACTIONS(4107), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4105), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__subscript_close, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [24734] = 2, - ACTIONS(4111), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4109), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__subscript_close, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [24800] = 2, - ACTIONS(3891), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3889), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__subscript_close, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [24866] = 2, - ACTIONS(3895), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3893), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__subscript_close, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [24932] = 2, - ACTIONS(3899), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3897), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__subscript_close, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [24998] = 2, - ACTIONS(3903), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3901), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__subscript_close, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [25064] = 2, - ACTIONS(3907), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3905), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__subscript_close, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [25130] = 2, - ACTIONS(3911), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3909), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__subscript_close, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [25196] = 2, - ACTIONS(4079), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4077), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_star, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [25262] = 2, - ACTIONS(3915), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3913), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__subscript_close, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [25328] = 2, - ACTIONS(3919), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3917), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__subscript_close, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [25394] = 2, - ACTIONS(3923), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3921), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__double_quote_close, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [25460] = 2, - ACTIONS(3669), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3667), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_star, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [25526] = 2, - ACTIONS(3927), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3925), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__superscript_close, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [25592] = 2, - ACTIONS(3931), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3929), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__subscript_close, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [25658] = 2, - ACTIONS(3631), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3629), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__subscript_close, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [25724] = 2, - ACTIONS(3991), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3989), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - ts_builtin_sym_end, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [25790] = 2, - ACTIONS(3939), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3937), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__subscript_close, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [25856] = 2, - ACTIONS(3673), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3671), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_star, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [25922] = 2, - ACTIONS(3943), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3941), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__subscript_close, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [25988] = 2, - ACTIONS(3935), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3933), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__subscript_close, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [26054] = 2, - ACTIONS(3947), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3945), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__subscript_close, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [26120] = 2, - ACTIONS(3951), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3949), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__subscript_close, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [26186] = 2, - ACTIONS(3955), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3953), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__subscript_close, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [26252] = 2, - ACTIONS(3963), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3961), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__subscript_close, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [26318] = 2, - ACTIONS(3967), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3965), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__subscript_close, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [26384] = 2, - ACTIONS(3971), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3969), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__subscript_close, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [26450] = 2, - ACTIONS(3975), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3973), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__subscript_close, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [26516] = 2, - ACTIONS(3979), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3977), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__subscript_close, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [26582] = 2, - ACTIONS(3983), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3981), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__subscript_close, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [26648] = 2, - ACTIONS(3987), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3985), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__subscript_close, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [26714] = 2, - ACTIONS(3991), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3989), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__subscript_close, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [26780] = 2, - ACTIONS(3995), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3993), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__subscript_close, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [26846] = 2, - ACTIONS(3785), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3783), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__subscript_close, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [26912] = 2, - ACTIONS(4083), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4081), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_star, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [26978] = 2, - ACTIONS(4007), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4005), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__subscript_close, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [27044] = 2, - ACTIONS(4087), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4085), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_star, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [27110] = 2, - ACTIONS(3677), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3675), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_star, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [27176] = 2, - ACTIONS(4011), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4009), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__subscript_close, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [27242] = 2, - ACTIONS(4015), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4013), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__subscript_close, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [27308] = 2, - ACTIONS(4019), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4017), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__subscript_close, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [27374] = 2, - ACTIONS(4023), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4021), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__subscript_close, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [27440] = 2, - ACTIONS(4027), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4025), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__subscript_close, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [27506] = 2, - ACTIONS(3995), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3993), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - ts_builtin_sym_end, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [27572] = 2, - ACTIONS(4035), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4033), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__subscript_close, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [27638] = 2, - ACTIONS(4039), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4037), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__subscript_close, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [27704] = 2, - ACTIONS(4043), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4041), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__subscript_close, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [27770] = 2, - ACTIONS(3657), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3655), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__subscript_close, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [27836] = 2, - ACTIONS(3681), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3679), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_star, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [27902] = 2, - ACTIONS(3661), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3659), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__subscript_close, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [27968] = 2, - ACTIONS(3915), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3913), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - ts_builtin_sym_end, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [28034] = 2, - ACTIONS(4047), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4045), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__subscript_close, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [28100] = 2, - ACTIONS(4051), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4049), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__subscript_close, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [28166] = 2, - ACTIONS(4055), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4053), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__subscript_close, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [28232] = 2, - ACTIONS(4059), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4057), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__subscript_close, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [28298] = 2, - ACTIONS(4063), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4061), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__subscript_close, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [28364] = 2, - ACTIONS(3639), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3637), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__subscript_close, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [28430] = 2, - ACTIONS(3685), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3683), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_star, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [28496] = 2, - ACTIONS(3665), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3663), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__subscript_close, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [28562] = 2, - ACTIONS(3919), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3917), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - ts_builtin_sym_end, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [28628] = 2, - ACTIONS(4067), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4065), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__subscript_close, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [28694] = 2, - ACTIONS(4071), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4069), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__subscript_close, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [28760] = 2, - ACTIONS(4075), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4073), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__subscript_close, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [28826] = 2, - ACTIONS(4079), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4077), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__subscript_close, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [28892] = 2, - ACTIONS(3669), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3667), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__subscript_close, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [28958] = 2, - ACTIONS(3689), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3687), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_star, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [29024] = 2, - ACTIONS(3673), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3671), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__subscript_close, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [29090] = 2, - ACTIONS(3785), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3783), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - ts_builtin_sym_end, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [29156] = 2, - ACTIONS(4083), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4081), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__subscript_close, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [29222] = 2, - ACTIONS(4087), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4085), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__subscript_close, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [29288] = 2, - ACTIONS(3677), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3675), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__subscript_close, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [29354] = 2, - ACTIONS(3999), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3997), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_star, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [29420] = 2, - ACTIONS(3681), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3679), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__subscript_close, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [29486] = 2, - ACTIONS(4003), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4001), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_star, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [29552] = 2, - ACTIONS(3685), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3683), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__subscript_close, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [29618] = 2, - ACTIONS(3923), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3921), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - ts_builtin_sym_end, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [29684] = 2, - ACTIONS(3689), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3687), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__subscript_close, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [29750] = 2, - ACTIONS(4007), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4005), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - ts_builtin_sym_end, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [29816] = 2, - ACTIONS(3999), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3997), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__subscript_close, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [29882] = 2, - ACTIONS(4003), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4001), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__subscript_close, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [29948] = 2, - ACTIONS(4031), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4029), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__subscript_close, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [30014] = 2, - ACTIONS(4031), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4029), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [30080] = 2, - ACTIONS(3743), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3741), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_RBRACK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [30146] = 2, - ACTIONS(3743), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3741), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [30212] = 2, - ACTIONS(4091), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4089), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_RBRACK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [30278] = 2, - ACTIONS(4095), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4093), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_RBRACK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [30344] = 2, - ACTIONS(4099), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4097), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - ts_builtin_sym_end, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [30410] = 2, - ACTIONS(4107), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4105), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_RBRACK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [30476] = 2, - ACTIONS(4111), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4109), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_RBRACK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [30542] = 2, - ACTIONS(3891), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3889), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_RBRACK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [30608] = 2, - ACTIONS(3895), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3893), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_RBRACK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [30674] = 2, - ACTIONS(3899), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3897), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_RBRACK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [30740] = 2, - ACTIONS(3903), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3901), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_RBRACK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [30806] = 2, - ACTIONS(3907), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3905), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_RBRACK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [30872] = 2, - ACTIONS(3911), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3909), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_RBRACK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [30938] = 2, - ACTIONS(4091), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4089), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [31004] = 2, - ACTIONS(3915), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3913), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_RBRACK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [31070] = 2, - ACTIONS(3919), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3917), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_RBRACK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [31136] = 2, - ACTIONS(3923), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3921), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__superscript_close, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [31202] = 2, - ACTIONS(4095), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4093), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [31268] = 2, - ACTIONS(3927), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3925), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__subscript_close, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [31334] = 2, - ACTIONS(3931), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3929), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_RBRACK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [31400] = 2, - ACTIONS(3631), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3629), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_RBRACK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [31466] = 2, - ACTIONS(4103), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4101), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__single_quote_close, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [31532] = 2, - ACTIONS(3939), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3937), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_RBRACK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [31598] = 2, - ACTIONS(4107), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4105), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - ts_builtin_sym_end, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [31664] = 2, - ACTIONS(3943), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3941), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_RBRACK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [31730] = 2, - ACTIONS(3935), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3933), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_RBRACK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [31796] = 2, - ACTIONS(3947), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3945), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_RBRACK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [31862] = 2, - ACTIONS(3951), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3949), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_RBRACK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [31928] = 2, - ACTIONS(3955), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3953), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_RBRACK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [31994] = 2, - ACTIONS(3963), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3961), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_RBRACK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [32060] = 2, - ACTIONS(3967), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3965), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_RBRACK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [32126] = 2, - ACTIONS(3971), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3969), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_RBRACK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [32192] = 2, - ACTIONS(3979), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3977), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_RBRACK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [32258] = 2, - ACTIONS(3983), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3981), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_RBRACK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [32324] = 2, - ACTIONS(3987), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3985), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_RBRACK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [32390] = 2, - ACTIONS(3991), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3989), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_RBRACK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [32456] = 2, - ACTIONS(3995), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3993), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_RBRACK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [32522] = 2, - ACTIONS(3785), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3783), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_RBRACK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [32588] = 2, - ACTIONS(4107), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4105), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [32654] = 2, - ACTIONS(4007), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4005), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_RBRACK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [32720] = 2, - ACTIONS(4111), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4109), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [32786] = 2, - ACTIONS(3891), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3889), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [32852] = 2, - ACTIONS(4011), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4009), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_RBRACK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [32918] = 2, - ACTIONS(4015), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4013), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_RBRACK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [32984] = 2, - ACTIONS(4019), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4017), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_RBRACK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [33050] = 2, - ACTIONS(4023), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4021), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_RBRACK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [33116] = 2, - ACTIONS(4027), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4025), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_RBRACK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [33182] = 2, - ACTIONS(3895), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3893), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [33248] = 2, - ACTIONS(4035), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4033), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_RBRACK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [33314] = 2, - ACTIONS(4039), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4037), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_RBRACK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [33380] = 2, - ACTIONS(4043), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4041), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_RBRACK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [33446] = 2, - ACTIONS(3657), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3655), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_RBRACK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [33512] = 2, - ACTIONS(3899), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3897), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [33578] = 2, - ACTIONS(3661), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3659), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_RBRACK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [33644] = 2, - ACTIONS(3903), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3901), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [33710] = 2, - ACTIONS(4047), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4045), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_RBRACK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [33776] = 2, - ACTIONS(4051), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4049), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_RBRACK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [33842] = 2, - ACTIONS(4055), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4053), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_RBRACK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [33908] = 2, - ACTIONS(4059), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4057), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_RBRACK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [33974] = 2, - ACTIONS(4063), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4061), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_RBRACK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [34040] = 2, - ACTIONS(3639), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3637), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_RBRACK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [34106] = 2, - ACTIONS(3907), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3905), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [34172] = 2, - ACTIONS(3665), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3663), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_RBRACK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [34238] = 2, - ACTIONS(3911), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3909), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [34304] = 2, - ACTIONS(4067), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4065), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_RBRACK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [34370] = 2, - ACTIONS(4071), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4069), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_RBRACK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [34436] = 2, - ACTIONS(4075), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4073), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_RBRACK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [34502] = 2, - ACTIONS(4079), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4077), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_RBRACK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [34568] = 2, - ACTIONS(3669), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3667), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_RBRACK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [34634] = 2, - ACTIONS(4011), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4009), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - ts_builtin_sym_end, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [34700] = 2, - ACTIONS(3673), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3671), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_RBRACK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [34766] = 2, - ACTIONS(3915), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3913), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [34832] = 2, - ACTIONS(4083), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4081), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_RBRACK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [34898] = 2, - ACTIONS(4087), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4085), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_RBRACK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [34964] = 2, - ACTIONS(3677), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3675), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_RBRACK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [35030] = 2, - ACTIONS(3919), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3917), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [35096] = 2, - ACTIONS(3681), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3679), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_RBRACK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [35162] = 2, - ACTIONS(3923), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3921), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_star, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [35228] = 2, - ACTIONS(3685), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3683), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_RBRACK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [35294] = 2, - ACTIONS(4015), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4013), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - ts_builtin_sym_end, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [35360] = 2, - ACTIONS(3689), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3687), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_RBRACK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [35426] = 2, - ACTIONS(3927), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3925), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_star, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [35492] = 2, - ACTIONS(3999), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3997), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_RBRACK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [35558] = 2, - ACTIONS(4003), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4001), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_RBRACK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [35624] = 2, - ACTIONS(4031), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4029), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_RBRACK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [35690] = 2, - ACTIONS(3931), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3929), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [35756] = 2, - ACTIONS(3923), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3921), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__subscript_close, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [35822] = 2, - ACTIONS(3631), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3629), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [35888] = 2, - ACTIONS(4019), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4017), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - ts_builtin_sym_end, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [35954] = 2, - ACTIONS(3923), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3921), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_RBRACK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [36020] = 2, - ACTIONS(3927), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3925), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_RBRACK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [36086] = 2, - ACTIONS(3939), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3937), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [36152] = 2, - ACTIONS(4031), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4029), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - ts_builtin_sym_end, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [36218] = 2, - ACTIONS(3943), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3941), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [36284] = 2, - ACTIONS(3935), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3933), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [36350] = 2, - ACTIONS(3947), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3945), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [36416] = 2, - ACTIONS(3951), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3949), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [36482] = 2, - ACTIONS(3955), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3953), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [36548] = 3, - ACTIONS(4120), 1, - sym__emphasis_close_star, - ACTIONS(3959), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3957), 51, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [36616] = 2, - ACTIONS(3963), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3961), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [36682] = 3, - ACTIONS(4123), 1, - sym__emphasis_close_underscore, - ACTIONS(4115), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4113), 51, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [36750] = 2, - ACTIONS(3967), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3965), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [36816] = 2, - ACTIONS(3971), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3969), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [36882] = 2, - ACTIONS(3975), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3973), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [36948] = 2, - ACTIONS(3979), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3977), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [37014] = 2, - ACTIONS(3983), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3981), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [37080] = 2, - ACTIONS(3987), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3985), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [37146] = 2, - ACTIONS(3991), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3989), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [37212] = 2, - ACTIONS(3995), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3993), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [37278] = 2, - ACTIONS(3927), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3925), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - ts_builtin_sym_end, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [37344] = 2, - ACTIONS(3785), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3783), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [37410] = 2, - ACTIONS(4007), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4005), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [37476] = 2, - ACTIONS(4011), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4009), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [37542] = 2, - ACTIONS(4015), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4013), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [37608] = 2, - ACTIONS(4019), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4017), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [37674] = 2, - ACTIONS(4023), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4021), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [37740] = 2, - ACTIONS(4027), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4025), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [37806] = 3, - ACTIONS(4126), 1, - sym__emphasis_close_star, - ACTIONS(3959), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3957), 51, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [37874] = 2, - ACTIONS(3931), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3929), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - ts_builtin_sym_end, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [37940] = 3, - ACTIONS(4129), 1, - sym__emphasis_close_underscore, - ACTIONS(4115), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4113), 51, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [38008] = 2, - ACTIONS(4035), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4033), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [38074] = 2, - ACTIONS(4039), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4037), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [38140] = 2, - ACTIONS(4043), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4041), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [38206] = 2, - ACTIONS(3657), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3655), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [38272] = 2, - ACTIONS(3661), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3659), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [38338] = 2, - ACTIONS(4023), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4021), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - ts_builtin_sym_end, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [38404] = 2, - ACTIONS(4047), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4045), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [38470] = 2, - ACTIONS(4051), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4049), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [38536] = 2, - ACTIONS(4055), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4053), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [38602] = 2, - ACTIONS(4059), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4057), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [38668] = 2, - ACTIONS(4063), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4061), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [38734] = 2, - ACTIONS(3639), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3637), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [38800] = 2, - ACTIONS(4027), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4025), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - ts_builtin_sym_end, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [38866] = 2, - ACTIONS(3665), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3663), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [38932] = 2, - ACTIONS(3631), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3629), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - ts_builtin_sym_end, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [38998] = 2, - ACTIONS(4067), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4065), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [39064] = 2, - ACTIONS(4071), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4069), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [39130] = 2, - ACTIONS(4075), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4073), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [39196] = 2, - ACTIONS(4079), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4077), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [39262] = 2, - ACTIONS(3669), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3667), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [39328] = 3, - ACTIONS(4132), 1, - sym__emphasis_close_star, - ACTIONS(3959), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3957), 51, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [39396] = 2, - ACTIONS(4035), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4033), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - ts_builtin_sym_end, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [39462] = 3, - ACTIONS(4135), 1, - sym__emphasis_close_underscore, - ACTIONS(4115), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4113), 51, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [39530] = 2, - ACTIONS(3673), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3671), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [39596] = 2, - ACTIONS(4039), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4037), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - ts_builtin_sym_end, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [39662] = 2, - ACTIONS(4083), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4081), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [39728] = 2, - ACTIONS(4087), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4085), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [39794] = 2, - ACTIONS(3677), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3675), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [39860] = 2, - ACTIONS(4043), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4041), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - ts_builtin_sym_end, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [39926] = 2, - ACTIONS(3681), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3679), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [39992] = 2, - ACTIONS(3685), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3683), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [40058] = 2, - ACTIONS(3689), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3687), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [40124] = 2, - ACTIONS(3999), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3997), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [40190] = 2, - ACTIONS(4003), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4001), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [40256] = 2, - ACTIONS(4031), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4029), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__strikeout_close, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [40322] = 3, - ACTIONS(4138), 1, - sym__emphasis_close_star, - ACTIONS(3959), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3957), 51, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [40390] = 3, - ACTIONS(4141), 1, - sym__emphasis_close_underscore, - ACTIONS(4115), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4113), 51, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [40458] = 2, - ACTIONS(3657), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3655), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - ts_builtin_sym_end, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [40524] = 2, - ACTIONS(4111), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4109), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - ts_builtin_sym_end, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [40590] = 2, - ACTIONS(3743), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3741), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__strikeout_close, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [40656] = 2, - ACTIONS(3661), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3659), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - ts_builtin_sym_end, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [40722] = 2, - ACTIONS(4091), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4089), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__strikeout_close, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [40788] = 2, - ACTIONS(4095), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4093), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__strikeout_close, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [40854] = 2, - ACTIONS(4103), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4101), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__double_quote_close, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [40920] = 2, - ACTIONS(3891), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3889), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - ts_builtin_sym_end, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [40986] = 2, - ACTIONS(4047), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4045), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - ts_builtin_sym_end, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [41052] = 2, - ACTIONS(4107), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4105), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__strikeout_close, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [41118] = 2, - ACTIONS(4111), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4109), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__strikeout_close, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [41184] = 2, - ACTIONS(3891), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3889), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__strikeout_close, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [41250] = 2, - ACTIONS(3895), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3893), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__strikeout_close, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [41316] = 2, - ACTIONS(3899), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3897), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__strikeout_close, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [41382] = 2, - ACTIONS(3903), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3901), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__strikeout_close, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [41448] = 2, - ACTIONS(3907), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3905), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__strikeout_close, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [41514] = 2, - ACTIONS(3911), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3909), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__strikeout_close, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [41580] = 3, - ACTIONS(4144), 1, - sym__emphasis_close_star, - ACTIONS(3959), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3957), 51, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [41648] = 2, - ACTIONS(4051), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4049), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - ts_builtin_sym_end, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [41714] = 3, - ACTIONS(4147), 1, - sym__emphasis_close_underscore, - ACTIONS(4115), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4113), 51, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [41782] = 2, - ACTIONS(3915), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3913), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__strikeout_close, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [41848] = 2, - ACTIONS(3919), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3917), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__strikeout_close, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [41914] = 2, - ACTIONS(3923), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3921), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [41980] = 2, - ACTIONS(3927), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3925), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [42046] = 2, - ACTIONS(3931), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3929), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__strikeout_close, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [42112] = 2, - ACTIONS(3631), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3629), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__strikeout_close, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [42178] = 2, - ACTIONS(3939), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3937), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__strikeout_close, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [42244] = 2, - ACTIONS(4055), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4053), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - ts_builtin_sym_end, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [42310] = 2, - ACTIONS(3943), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3941), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__strikeout_close, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [42376] = 2, - ACTIONS(3935), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3933), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__strikeout_close, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [42442] = 2, - ACTIONS(3947), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3945), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__strikeout_close, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [42508] = 2, - ACTIONS(3951), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3949), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__strikeout_close, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [42574] = 2, - ACTIONS(3955), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3953), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__strikeout_close, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [42640] = 2, - ACTIONS(4059), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4057), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - ts_builtin_sym_end, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [42706] = 2, - ACTIONS(3963), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3961), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__strikeout_close, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [42772] = 2, - ACTIONS(3967), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3965), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__strikeout_close, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [42838] = 2, - ACTIONS(3971), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3969), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__strikeout_close, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [42904] = 3, - ACTIONS(4150), 1, - sym__emphasis_close_star, - ACTIONS(3959), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3957), 51, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [42972] = 2, - ACTIONS(3975), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3973), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__strikeout_close, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [43038] = 3, - ACTIONS(4153), 1, - sym__emphasis_close_underscore, - ACTIONS(4115), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4113), 51, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [43106] = 2, - ACTIONS(3979), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3977), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__strikeout_close, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [43172] = 2, - ACTIONS(3983), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3981), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__strikeout_close, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [43238] = 2, - ACTIONS(3987), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3985), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__strikeout_close, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [43304] = 2, - ACTIONS(3991), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3989), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__strikeout_close, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [43370] = 2, - ACTIONS(3995), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3993), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__strikeout_close, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [43436] = 2, - ACTIONS(4063), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4061), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - ts_builtin_sym_end, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [43502] = 2, - ACTIONS(3785), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3783), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__strikeout_close, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [43568] = 2, - ACTIONS(4007), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4005), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__strikeout_close, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [43634] = 2, - ACTIONS(4011), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4009), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__strikeout_close, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [43700] = 2, - ACTIONS(4015), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4013), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__strikeout_close, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [43766] = 2, - ACTIONS(4019), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4017), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__strikeout_close, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [43832] = 2, - ACTIONS(4023), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4021), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__strikeout_close, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [43898] = 2, - ACTIONS(4027), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4025), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__strikeout_close, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [43964] = 2, - ACTIONS(4035), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4033), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__strikeout_close, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [44030] = 2, - ACTIONS(4039), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4037), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__strikeout_close, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [44096] = 3, - ACTIONS(4156), 1, - sym__emphasis_close_star, - ACTIONS(3959), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3957), 51, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [44164] = 2, - ACTIONS(4043), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4041), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__strikeout_close, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [44230] = 3, - ACTIONS(4159), 1, - sym__emphasis_close_underscore, - ACTIONS(4115), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4113), 51, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [44298] = 2, - ACTIONS(3657), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3655), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__strikeout_close, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [44364] = 2, - ACTIONS(3661), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3659), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__strikeout_close, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [44430] = 2, - ACTIONS(4047), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4045), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__strikeout_close, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [44496] = 2, - ACTIONS(4051), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4049), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__strikeout_close, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [44562] = 2, - ACTIONS(4055), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4053), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__strikeout_close, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [44628] = 2, - ACTIONS(4059), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4057), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__strikeout_close, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [44694] = 2, - ACTIONS(4063), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4061), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__strikeout_close, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [44760] = 2, - ACTIONS(3639), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3637), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__strikeout_close, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [44826] = 2, - ACTIONS(3639), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3637), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - ts_builtin_sym_end, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [44892] = 2, - ACTIONS(3665), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3663), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__strikeout_close, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [44958] = 2, - ACTIONS(4067), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4065), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__strikeout_close, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [45024] = 2, - ACTIONS(4071), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4069), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__strikeout_close, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [45090] = 2, - ACTIONS(4075), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4073), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__strikeout_close, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [45156] = 2, - ACTIONS(4079), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4077), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__strikeout_close, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [45222] = 2, - ACTIONS(3669), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3667), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__strikeout_close, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [45288] = 3, - ACTIONS(4162), 1, - sym__emphasis_close_star, - ACTIONS(3959), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3957), 51, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [45356] = 2, - ACTIONS(3673), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3671), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__strikeout_close, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [45422] = 3, - ACTIONS(4165), 1, - sym__emphasis_close_underscore, - ACTIONS(4115), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4113), 51, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [45490] = 2, - ACTIONS(4083), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4081), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__strikeout_close, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [45556] = 2, - ACTIONS(4087), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4085), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__strikeout_close, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [45622] = 2, - ACTIONS(3677), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3675), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__strikeout_close, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [45688] = 2, - ACTIONS(3939), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3937), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - ts_builtin_sym_end, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [45754] = 2, - ACTIONS(3681), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3679), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__strikeout_close, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [45820] = 2, - ACTIONS(3665), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3663), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - ts_builtin_sym_end, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [45886] = 2, - ACTIONS(3685), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3683), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__strikeout_close, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [45952] = 2, - ACTIONS(4103), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4101), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - ts_builtin_sym_end, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [46018] = 2, - ACTIONS(3689), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3687), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__strikeout_close, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [46084] = 2, - ACTIONS(4067), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4065), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - ts_builtin_sym_end, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [46150] = 2, - ACTIONS(3999), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3997), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__strikeout_close, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [46216] = 2, - ACTIONS(4003), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4001), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__strikeout_close, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [46282] = 2, - ACTIONS(4071), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4069), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - ts_builtin_sym_end, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [46348] = 2, - ACTIONS(4075), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4073), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - ts_builtin_sym_end, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [46414] = 2, - ACTIONS(4079), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4077), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - ts_builtin_sym_end, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [46480] = 2, - ACTIONS(3669), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3667), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - ts_builtin_sym_end, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [46546] = 2, - ACTIONS(3673), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3671), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - ts_builtin_sym_end, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [46612] = 3, - ACTIONS(4168), 1, + [STATE(430)] = { + [sym__qmd_attribute] = STATE(799), + [sym_raw_attribute] = STATE(799), + [sym_commonmark_attribute] = STATE(799), + [sym_language_attribute] = STATE(799), + [sym__backslash_escape] = ACTIONS(4546), + [sym_entity_reference] = ACTIONS(4546), + [sym_numeric_character_reference] = ACTIONS(4546), + [anon_sym_LT] = ACTIONS(4548), + [anon_sym_GT] = ACTIONS(4546), + [anon_sym_BANG] = ACTIONS(4546), + [anon_sym_DQUOTE] = ACTIONS(4546), + [anon_sym_POUND] = ACTIONS(4546), + [anon_sym_DOLLAR] = ACTIONS(4546), + [anon_sym_PERCENT] = ACTIONS(4546), + [anon_sym_AMP] = ACTIONS(4548), + [anon_sym_SQUOTE] = ACTIONS(4546), + [anon_sym_STAR] = ACTIONS(4546), + [anon_sym_PLUS] = ACTIONS(4546), + [anon_sym_COMMA] = ACTIONS(4546), + [anon_sym_DASH] = ACTIONS(4548), + [anon_sym_DOT] = ACTIONS(4548), + [anon_sym_SLASH] = ACTIONS(4546), + [anon_sym_COLON] = ACTIONS(4546), + [anon_sym_SEMI] = ACTIONS(4546), + [anon_sym_EQ] = ACTIONS(4546), + [anon_sym_QMARK] = ACTIONS(4546), + [anon_sym_LBRACK] = ACTIONS(4548), + [anon_sym_BSLASH] = ACTIONS(4548), + [anon_sym_CARET] = ACTIONS(4548), + [anon_sym__] = ACTIONS(4546), + [anon_sym_BQUOTE] = ACTIONS(4546), + [anon_sym_LBRACE] = ACTIONS(4614), + [anon_sym_PIPE] = ACTIONS(4546), + [anon_sym_TILDE] = ACTIONS(4546), + [anon_sym_LPAREN] = ACTIONS(4546), + [anon_sym_RPAREN] = ACTIONS(4546), + [sym__newline_token] = ACTIONS(4546), + [aux_sym_insert_token1] = ACTIONS(4546), + [aux_sym_delete_token1] = ACTIONS(4546), + [aux_sym_highlight_token1] = ACTIONS(4546), + [aux_sym_edit_comment_token1] = ACTIONS(4546), + [anon_sym_CARET_LBRACK] = ACTIONS(4546), + [anon_sym_LBRACK_CARET] = ACTIONS(4546), + [sym_uri_autolink] = ACTIONS(4546), + [sym_email_autolink] = ACTIONS(4546), + [sym__whitespace_ge_2] = ACTIONS(4546), + [aux_sym__whitespace_token1] = ACTIONS(4548), + [sym__word_no_digit] = ACTIONS(4546), + [sym__digits] = ACTIONS(4546), + [anon_sym_DASH_DASH] = ACTIONS(4548), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4546), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4546), + [sym__code_span_start] = ACTIONS(4546), + [sym__emphasis_open_star] = ACTIONS(4546), + [sym__emphasis_open_underscore] = ACTIONS(4546), + [sym__strikeout_open] = ACTIONS(4546), + [sym__latex_span_start] = ACTIONS(4546), + [sym__single_quote_open] = ACTIONS(4546), + [sym__double_quote_open] = ACTIONS(4546), + [sym__superscript_open] = ACTIONS(4546), + [sym__superscript_close] = ACTIONS(4546), + [sym__subscript_open] = ACTIONS(4546), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4546), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4546), + [sym__cite_author_in_text] = ACTIONS(4546), + [sym__cite_suppress_author] = ACTIONS(4546), + [sym__shortcode_open_escaped] = ACTIONS(4546), + [sym__shortcode_open] = ACTIONS(4546), + [sym__unclosed_span] = ACTIONS(4546), + }, + [STATE(431)] = { + [sym__qmd_attribute] = STATE(801), + [sym_raw_attribute] = STATE(801), + [sym_commonmark_attribute] = STATE(801), + [sym_language_attribute] = STATE(801), + [sym__backslash_escape] = ACTIONS(4550), + [sym_entity_reference] = ACTIONS(4550), + [sym_numeric_character_reference] = ACTIONS(4550), + [anon_sym_LT] = ACTIONS(4552), + [anon_sym_GT] = ACTIONS(4550), + [anon_sym_BANG] = ACTIONS(4550), + [anon_sym_DQUOTE] = ACTIONS(4550), + [anon_sym_POUND] = ACTIONS(4550), + [anon_sym_DOLLAR] = ACTIONS(4550), + [anon_sym_PERCENT] = ACTIONS(4550), + [anon_sym_AMP] = ACTIONS(4552), + [anon_sym_SQUOTE] = ACTIONS(4550), + [anon_sym_STAR] = ACTIONS(4550), + [anon_sym_PLUS] = ACTIONS(4550), + [anon_sym_COMMA] = ACTIONS(4550), + [anon_sym_DASH] = ACTIONS(4552), + [anon_sym_DOT] = ACTIONS(4552), + [anon_sym_SLASH] = ACTIONS(4550), + [anon_sym_COLON] = ACTIONS(4550), + [anon_sym_SEMI] = ACTIONS(4550), + [anon_sym_EQ] = ACTIONS(4550), + [anon_sym_QMARK] = ACTIONS(4550), + [anon_sym_LBRACK] = ACTIONS(4552), + [anon_sym_BSLASH] = ACTIONS(4552), + [anon_sym_CARET] = ACTIONS(4552), + [anon_sym__] = ACTIONS(4550), + [anon_sym_BQUOTE] = ACTIONS(4550), + [anon_sym_LBRACE] = ACTIONS(4614), + [anon_sym_PIPE] = ACTIONS(4550), + [anon_sym_TILDE] = ACTIONS(4550), + [anon_sym_LPAREN] = ACTIONS(4550), + [anon_sym_RPAREN] = ACTIONS(4550), + [sym__newline_token] = ACTIONS(4550), + [aux_sym_insert_token1] = ACTIONS(4550), + [aux_sym_delete_token1] = ACTIONS(4550), + [aux_sym_highlight_token1] = ACTIONS(4550), + [aux_sym_edit_comment_token1] = ACTIONS(4550), + [anon_sym_CARET_LBRACK] = ACTIONS(4550), + [anon_sym_LBRACK_CARET] = ACTIONS(4550), + [sym_uri_autolink] = ACTIONS(4550), + [sym_email_autolink] = ACTIONS(4550), + [sym__whitespace_ge_2] = ACTIONS(4550), + [aux_sym__whitespace_token1] = ACTIONS(4552), + [sym__word_no_digit] = ACTIONS(4550), + [sym__digits] = ACTIONS(4550), + [anon_sym_DASH_DASH] = ACTIONS(4552), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4550), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4550), + [sym__code_span_start] = ACTIONS(4550), + [sym__emphasis_open_star] = ACTIONS(4550), + [sym__emphasis_open_underscore] = ACTIONS(4550), + [sym__strikeout_open] = ACTIONS(4550), + [sym__latex_span_start] = ACTIONS(4550), + [sym__single_quote_open] = ACTIONS(4550), + [sym__double_quote_open] = ACTIONS(4550), + [sym__superscript_open] = ACTIONS(4550), + [sym__superscript_close] = ACTIONS(4550), + [sym__subscript_open] = ACTIONS(4550), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4550), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4550), + [sym__cite_author_in_text] = ACTIONS(4550), + [sym__cite_suppress_author] = ACTIONS(4550), + [sym__shortcode_open_escaped] = ACTIONS(4550), + [sym__shortcode_open] = ACTIONS(4550), + [sym__unclosed_span] = ACTIONS(4550), + }, + [STATE(432)] = { + [sym__qmd_attribute] = STATE(803), + [sym_raw_attribute] = STATE(803), + [sym_commonmark_attribute] = STATE(803), + [sym_language_attribute] = STATE(803), + [sym__backslash_escape] = ACTIONS(4554), + [sym_entity_reference] = ACTIONS(4554), + [sym_numeric_character_reference] = ACTIONS(4554), + [anon_sym_LT] = ACTIONS(4556), + [anon_sym_GT] = ACTIONS(4554), + [anon_sym_BANG] = ACTIONS(4554), + [anon_sym_DQUOTE] = ACTIONS(4554), + [anon_sym_POUND] = ACTIONS(4554), + [anon_sym_DOLLAR] = ACTIONS(4554), + [anon_sym_PERCENT] = ACTIONS(4554), + [anon_sym_AMP] = ACTIONS(4556), + [anon_sym_SQUOTE] = ACTIONS(4554), + [anon_sym_STAR] = ACTIONS(4554), + [anon_sym_PLUS] = ACTIONS(4554), + [anon_sym_COMMA] = ACTIONS(4554), + [anon_sym_DASH] = ACTIONS(4556), + [anon_sym_DOT] = ACTIONS(4556), + [anon_sym_SLASH] = ACTIONS(4554), + [anon_sym_COLON] = ACTIONS(4554), + [anon_sym_SEMI] = ACTIONS(4554), + [anon_sym_EQ] = ACTIONS(4554), + [anon_sym_QMARK] = ACTIONS(4554), + [anon_sym_LBRACK] = ACTIONS(4556), + [anon_sym_BSLASH] = ACTIONS(4556), + [anon_sym_CARET] = ACTIONS(4556), + [anon_sym__] = ACTIONS(4554), + [anon_sym_BQUOTE] = ACTIONS(4554), + [anon_sym_LBRACE] = ACTIONS(4614), + [anon_sym_PIPE] = ACTIONS(4554), + [anon_sym_TILDE] = ACTIONS(4554), + [anon_sym_LPAREN] = ACTIONS(4554), + [anon_sym_RPAREN] = ACTIONS(4554), + [sym__newline_token] = ACTIONS(4554), + [aux_sym_insert_token1] = ACTIONS(4554), + [aux_sym_delete_token1] = ACTIONS(4554), + [aux_sym_highlight_token1] = ACTIONS(4554), + [aux_sym_edit_comment_token1] = ACTIONS(4554), + [anon_sym_CARET_LBRACK] = ACTIONS(4554), + [anon_sym_LBRACK_CARET] = ACTIONS(4554), + [sym_uri_autolink] = ACTIONS(4554), + [sym_email_autolink] = ACTIONS(4554), + [sym__whitespace_ge_2] = ACTIONS(4554), + [aux_sym__whitespace_token1] = ACTIONS(4556), + [sym__word_no_digit] = ACTIONS(4554), + [sym__digits] = ACTIONS(4554), + [anon_sym_DASH_DASH] = ACTIONS(4556), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4554), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4554), + [sym__code_span_start] = ACTIONS(4554), + [sym__emphasis_open_star] = ACTIONS(4554), + [sym__emphasis_open_underscore] = ACTIONS(4554), + [sym__strikeout_open] = ACTIONS(4554), + [sym__latex_span_start] = ACTIONS(4554), + [sym__single_quote_open] = ACTIONS(4554), + [sym__double_quote_open] = ACTIONS(4554), + [sym__superscript_open] = ACTIONS(4554), + [sym__superscript_close] = ACTIONS(4554), + [sym__subscript_open] = ACTIONS(4554), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4554), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4554), + [sym__cite_author_in_text] = ACTIONS(4554), + [sym__cite_suppress_author] = ACTIONS(4554), + [sym__shortcode_open_escaped] = ACTIONS(4554), + [sym__shortcode_open] = ACTIONS(4554), + [sym__unclosed_span] = ACTIONS(4554), + }, + [STATE(433)] = { + [sym__qmd_attribute] = STATE(805), + [sym_raw_attribute] = STATE(805), + [sym_commonmark_attribute] = STATE(805), + [sym_language_attribute] = STATE(805), + [sym__backslash_escape] = ACTIONS(4558), + [sym_entity_reference] = ACTIONS(4558), + [sym_numeric_character_reference] = ACTIONS(4558), + [anon_sym_LT] = ACTIONS(4560), + [anon_sym_GT] = ACTIONS(4558), + [anon_sym_BANG] = ACTIONS(4558), + [anon_sym_DQUOTE] = ACTIONS(4558), + [anon_sym_POUND] = ACTIONS(4558), + [anon_sym_DOLLAR] = ACTIONS(4558), + [anon_sym_PERCENT] = ACTIONS(4558), + [anon_sym_AMP] = ACTIONS(4560), + [anon_sym_SQUOTE] = ACTIONS(4558), + [anon_sym_STAR] = ACTIONS(4558), + [anon_sym_PLUS] = ACTIONS(4558), + [anon_sym_COMMA] = ACTIONS(4558), + [anon_sym_DASH] = ACTIONS(4560), + [anon_sym_DOT] = ACTIONS(4560), + [anon_sym_SLASH] = ACTIONS(4558), + [anon_sym_COLON] = ACTIONS(4558), + [anon_sym_SEMI] = ACTIONS(4558), + [anon_sym_EQ] = ACTIONS(4558), + [anon_sym_QMARK] = ACTIONS(4558), + [anon_sym_LBRACK] = ACTIONS(4560), + [anon_sym_BSLASH] = ACTIONS(4560), + [anon_sym_CARET] = ACTIONS(4560), + [anon_sym__] = ACTIONS(4558), + [anon_sym_BQUOTE] = ACTIONS(4558), + [anon_sym_LBRACE] = ACTIONS(4614), + [anon_sym_PIPE] = ACTIONS(4558), + [anon_sym_TILDE] = ACTIONS(4558), + [anon_sym_LPAREN] = ACTIONS(4558), + [anon_sym_RPAREN] = ACTIONS(4558), + [sym__newline_token] = ACTIONS(4558), + [aux_sym_insert_token1] = ACTIONS(4558), + [aux_sym_delete_token1] = ACTIONS(4558), + [aux_sym_highlight_token1] = ACTIONS(4558), + [aux_sym_edit_comment_token1] = ACTIONS(4558), + [anon_sym_CARET_LBRACK] = ACTIONS(4558), + [anon_sym_LBRACK_CARET] = ACTIONS(4558), + [sym_uri_autolink] = ACTIONS(4558), + [sym_email_autolink] = ACTIONS(4558), + [sym__whitespace_ge_2] = ACTIONS(4558), + [aux_sym__whitespace_token1] = ACTIONS(4560), + [sym__word_no_digit] = ACTIONS(4558), + [sym__digits] = ACTIONS(4558), + [anon_sym_DASH_DASH] = ACTIONS(4560), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4558), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4558), + [sym__code_span_start] = ACTIONS(4558), + [sym__emphasis_open_star] = ACTIONS(4558), + [sym__emphasis_open_underscore] = ACTIONS(4558), + [sym__strikeout_open] = ACTIONS(4558), + [sym__latex_span_start] = ACTIONS(4558), + [sym__single_quote_open] = ACTIONS(4558), + [sym__double_quote_open] = ACTIONS(4558), + [sym__superscript_open] = ACTIONS(4558), + [sym__superscript_close] = ACTIONS(4558), + [sym__subscript_open] = ACTIONS(4558), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4558), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4558), + [sym__cite_author_in_text] = ACTIONS(4558), + [sym__cite_suppress_author] = ACTIONS(4558), + [sym__shortcode_open_escaped] = ACTIONS(4558), + [sym__shortcode_open] = ACTIONS(4558), + [sym__unclosed_span] = ACTIONS(4558), + }, + [STATE(434)] = { + [sym__qmd_attribute] = STATE(806), + [sym_raw_attribute] = STATE(806), + [sym_commonmark_attribute] = STATE(806), + [sym_language_attribute] = STATE(806), + [sym__backslash_escape] = ACTIONS(4562), + [sym_entity_reference] = ACTIONS(4562), + [sym_numeric_character_reference] = ACTIONS(4562), + [anon_sym_LT] = ACTIONS(4564), + [anon_sym_GT] = ACTIONS(4562), + [anon_sym_BANG] = ACTIONS(4562), + [anon_sym_DQUOTE] = ACTIONS(4562), + [anon_sym_POUND] = ACTIONS(4562), + [anon_sym_DOLLAR] = ACTIONS(4562), + [anon_sym_PERCENT] = ACTIONS(4562), + [anon_sym_AMP] = ACTIONS(4564), + [anon_sym_SQUOTE] = ACTIONS(4562), + [anon_sym_STAR] = ACTIONS(4562), + [anon_sym_PLUS] = ACTIONS(4562), + [anon_sym_COMMA] = ACTIONS(4562), + [anon_sym_DASH] = ACTIONS(4564), + [anon_sym_DOT] = ACTIONS(4564), + [anon_sym_SLASH] = ACTIONS(4562), + [anon_sym_COLON] = ACTIONS(4562), + [anon_sym_SEMI] = ACTIONS(4562), + [anon_sym_EQ] = ACTIONS(4562), + [anon_sym_QMARK] = ACTIONS(4562), + [anon_sym_LBRACK] = ACTIONS(4564), + [anon_sym_BSLASH] = ACTIONS(4564), + [anon_sym_CARET] = ACTIONS(4564), + [anon_sym__] = ACTIONS(4562), + [anon_sym_BQUOTE] = ACTIONS(4562), + [anon_sym_LBRACE] = ACTIONS(4614), + [anon_sym_PIPE] = ACTIONS(4562), + [anon_sym_TILDE] = ACTIONS(4562), + [anon_sym_LPAREN] = ACTIONS(4562), + [anon_sym_RPAREN] = ACTIONS(4562), + [sym__newline_token] = ACTIONS(4562), + [aux_sym_insert_token1] = ACTIONS(4562), + [aux_sym_delete_token1] = ACTIONS(4562), + [aux_sym_highlight_token1] = ACTIONS(4562), + [aux_sym_edit_comment_token1] = ACTIONS(4562), + [anon_sym_CARET_LBRACK] = ACTIONS(4562), + [anon_sym_LBRACK_CARET] = ACTIONS(4562), + [sym_uri_autolink] = ACTIONS(4562), + [sym_email_autolink] = ACTIONS(4562), + [sym__whitespace_ge_2] = ACTIONS(4562), + [aux_sym__whitespace_token1] = ACTIONS(4564), + [sym__word_no_digit] = ACTIONS(4562), + [sym__digits] = ACTIONS(4562), + [anon_sym_DASH_DASH] = ACTIONS(4564), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4562), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4562), + [sym__code_span_start] = ACTIONS(4562), + [sym__emphasis_open_star] = ACTIONS(4562), + [sym__emphasis_open_underscore] = ACTIONS(4562), + [sym__strikeout_open] = ACTIONS(4562), + [sym__latex_span_start] = ACTIONS(4562), + [sym__single_quote_open] = ACTIONS(4562), + [sym__double_quote_open] = ACTIONS(4562), + [sym__superscript_open] = ACTIONS(4562), + [sym__superscript_close] = ACTIONS(4562), + [sym__subscript_open] = ACTIONS(4562), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4562), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4562), + [sym__cite_author_in_text] = ACTIONS(4562), + [sym__cite_suppress_author] = ACTIONS(4562), + [sym__shortcode_open_escaped] = ACTIONS(4562), + [sym__shortcode_open] = ACTIONS(4562), + [sym__unclosed_span] = ACTIONS(4562), + }, + [STATE(435)] = { + [sym__qmd_attribute] = STATE(842), + [sym_raw_attribute] = STATE(842), + [sym_commonmark_attribute] = STATE(842), + [sym_language_attribute] = STATE(842), + [sym__backslash_escape] = ACTIONS(4576), + [sym_entity_reference] = ACTIONS(4576), + [sym_numeric_character_reference] = ACTIONS(4576), + [anon_sym_LT] = ACTIONS(4578), + [anon_sym_GT] = ACTIONS(4576), + [anon_sym_BANG] = ACTIONS(4576), + [anon_sym_DQUOTE] = ACTIONS(4576), + [anon_sym_POUND] = ACTIONS(4576), + [anon_sym_DOLLAR] = ACTIONS(4576), + [anon_sym_PERCENT] = ACTIONS(4576), + [anon_sym_AMP] = ACTIONS(4578), + [anon_sym_SQUOTE] = ACTIONS(4576), + [anon_sym_STAR] = ACTIONS(4576), + [anon_sym_PLUS] = ACTIONS(4576), + [anon_sym_COMMA] = ACTIONS(4576), + [anon_sym_DASH] = ACTIONS(4578), + [anon_sym_DOT] = ACTIONS(4578), + [anon_sym_SLASH] = ACTIONS(4576), + [anon_sym_COLON] = ACTIONS(4576), + [anon_sym_SEMI] = ACTIONS(4576), + [anon_sym_EQ] = ACTIONS(4576), + [anon_sym_QMARK] = ACTIONS(4576), + [anon_sym_LBRACK] = ACTIONS(4578), + [anon_sym_BSLASH] = ACTIONS(4578), + [anon_sym_CARET] = ACTIONS(4578), + [anon_sym__] = ACTIONS(4576), + [anon_sym_BQUOTE] = ACTIONS(4576), + [anon_sym_LBRACE] = ACTIONS(4618), + [anon_sym_PIPE] = ACTIONS(4576), + [anon_sym_TILDE] = ACTIONS(4576), + [anon_sym_LPAREN] = ACTIONS(4620), + [anon_sym_RPAREN] = ACTIONS(4576), + [sym__newline_token] = ACTIONS(4576), + [aux_sym_insert_token1] = ACTIONS(4576), + [aux_sym_delete_token1] = ACTIONS(4576), + [aux_sym_highlight_token1] = ACTIONS(4576), + [aux_sym_edit_comment_token1] = ACTIONS(4576), + [anon_sym_CARET_LBRACK] = ACTIONS(4576), + [anon_sym_LBRACK_CARET] = ACTIONS(4576), + [sym_uri_autolink] = ACTIONS(4576), + [sym_email_autolink] = ACTIONS(4576), + [sym__whitespace_ge_2] = ACTIONS(4576), + [aux_sym__whitespace_token1] = ACTIONS(4578), + [sym__word_no_digit] = ACTIONS(4576), + [sym__digits] = ACTIONS(4576), + [anon_sym_DASH_DASH] = ACTIONS(4578), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4576), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4576), + [sym__code_span_start] = ACTIONS(4576), + [sym__emphasis_open_star] = ACTIONS(4576), + [sym__emphasis_open_underscore] = ACTIONS(4576), + [sym__strikeout_open] = ACTIONS(4576), + [sym__latex_span_start] = ACTIONS(4576), + [sym__single_quote_open] = ACTIONS(4576), + [sym__double_quote_open] = ACTIONS(4576), + [sym__superscript_open] = ACTIONS(4576), + [sym__subscript_open] = ACTIONS(4576), + [sym__subscript_close] = ACTIONS(4576), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4576), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4576), + [sym__cite_author_in_text] = ACTIONS(4576), + [sym__cite_suppress_author] = ACTIONS(4576), + [sym__shortcode_open_escaped] = ACTIONS(4576), + [sym__shortcode_open] = ACTIONS(4576), + [sym__unclosed_span] = ACTIONS(4576), + }, + [STATE(436)] = { + [sym__qmd_attribute] = STATE(843), + [sym_raw_attribute] = STATE(843), + [sym_commonmark_attribute] = STATE(843), + [sym_language_attribute] = STATE(843), + [sym__backslash_escape] = ACTIONS(4584), + [sym_entity_reference] = ACTIONS(4584), + [sym_numeric_character_reference] = ACTIONS(4584), + [anon_sym_LT] = ACTIONS(4586), + [anon_sym_GT] = ACTIONS(4584), + [anon_sym_BANG] = ACTIONS(4584), + [anon_sym_DQUOTE] = ACTIONS(4584), + [anon_sym_POUND] = ACTIONS(4584), + [anon_sym_DOLLAR] = ACTIONS(4584), + [anon_sym_PERCENT] = ACTIONS(4584), + [anon_sym_AMP] = ACTIONS(4586), + [anon_sym_SQUOTE] = ACTIONS(4584), + [anon_sym_STAR] = ACTIONS(4584), + [anon_sym_PLUS] = ACTIONS(4584), + [anon_sym_COMMA] = ACTIONS(4584), + [anon_sym_DASH] = ACTIONS(4586), + [anon_sym_DOT] = ACTIONS(4586), + [anon_sym_SLASH] = ACTIONS(4584), + [anon_sym_COLON] = ACTIONS(4584), + [anon_sym_SEMI] = ACTIONS(4584), + [anon_sym_EQ] = ACTIONS(4584), + [anon_sym_QMARK] = ACTIONS(4584), + [anon_sym_LBRACK] = ACTIONS(4586), + [anon_sym_BSLASH] = ACTIONS(4586), + [anon_sym_CARET] = ACTIONS(4586), + [anon_sym__] = ACTIONS(4584), + [anon_sym_BQUOTE] = ACTIONS(4584), + [anon_sym_LBRACE] = ACTIONS(4618), + [anon_sym_PIPE] = ACTIONS(4584), + [anon_sym_TILDE] = ACTIONS(4584), + [anon_sym_LPAREN] = ACTIONS(4584), + [anon_sym_RPAREN] = ACTIONS(4584), + [sym__newline_token] = ACTIONS(4584), + [aux_sym_insert_token1] = ACTIONS(4584), + [aux_sym_delete_token1] = ACTIONS(4584), + [aux_sym_highlight_token1] = ACTIONS(4584), + [aux_sym_edit_comment_token1] = ACTIONS(4584), + [anon_sym_CARET_LBRACK] = ACTIONS(4584), + [anon_sym_LBRACK_CARET] = ACTIONS(4584), + [sym_uri_autolink] = ACTIONS(4584), + [sym_email_autolink] = ACTIONS(4584), + [sym__whitespace_ge_2] = ACTIONS(4584), + [aux_sym__whitespace_token1] = ACTIONS(4586), + [sym__word_no_digit] = ACTIONS(4584), + [sym__digits] = ACTIONS(4584), + [anon_sym_DASH_DASH] = ACTIONS(4586), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4584), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4584), + [sym__code_span_start] = ACTIONS(4584), + [sym__emphasis_open_star] = ACTIONS(4584), + [sym__emphasis_open_underscore] = ACTIONS(4584), + [sym__strikeout_open] = ACTIONS(4584), + [sym__latex_span_start] = ACTIONS(4584), + [sym__single_quote_open] = ACTIONS(4584), + [sym__double_quote_open] = ACTIONS(4584), + [sym__superscript_open] = ACTIONS(4584), + [sym__subscript_open] = ACTIONS(4584), + [sym__subscript_close] = ACTIONS(4584), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4584), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4584), + [sym__cite_author_in_text] = ACTIONS(4584), + [sym__cite_suppress_author] = ACTIONS(4584), + [sym__shortcode_open_escaped] = ACTIONS(4584), + [sym__shortcode_open] = ACTIONS(4584), + [sym__unclosed_span] = ACTIONS(4584), + }, + [STATE(437)] = { + [sym__qmd_attribute] = STATE(1071), + [sym_raw_attribute] = STATE(1071), + [sym_commonmark_attribute] = STATE(1071), + [sym_language_attribute] = STATE(1071), + [sym__backslash_escape] = ACTIONS(4554), + [sym_entity_reference] = ACTIONS(4554), + [sym_numeric_character_reference] = ACTIONS(4554), + [anon_sym_LT] = ACTIONS(4556), + [anon_sym_GT] = ACTIONS(4554), + [anon_sym_BANG] = ACTIONS(4554), + [anon_sym_DQUOTE] = ACTIONS(4554), + [anon_sym_POUND] = ACTIONS(4554), + [anon_sym_DOLLAR] = ACTIONS(4554), + [anon_sym_PERCENT] = ACTIONS(4554), + [anon_sym_AMP] = ACTIONS(4556), + [anon_sym_SQUOTE] = ACTIONS(4554), + [anon_sym_STAR] = ACTIONS(4554), + [anon_sym_PLUS] = ACTIONS(4554), + [anon_sym_COMMA] = ACTIONS(4554), + [anon_sym_DASH] = ACTIONS(4556), + [anon_sym_DOT] = ACTIONS(4556), + [anon_sym_SLASH] = ACTIONS(4554), + [anon_sym_COLON] = ACTIONS(4554), + [anon_sym_SEMI] = ACTIONS(4554), + [anon_sym_EQ] = ACTIONS(4554), + [anon_sym_QMARK] = ACTIONS(4554), + [anon_sym_LBRACK] = ACTIONS(4556), + [anon_sym_BSLASH] = ACTIONS(4556), + [anon_sym_CARET] = ACTIONS(4556), + [anon_sym__] = ACTIONS(4554), + [anon_sym_BQUOTE] = ACTIONS(4554), + [anon_sym_LBRACE] = ACTIONS(4570), + [anon_sym_PIPE] = ACTIONS(4554), + [anon_sym_TILDE] = ACTIONS(4554), + [anon_sym_LPAREN] = ACTIONS(4554), + [anon_sym_RPAREN] = ACTIONS(4554), + [sym__newline_token] = ACTIONS(4554), + [aux_sym_insert_token1] = ACTIONS(4554), + [aux_sym_delete_token1] = ACTIONS(4554), + [aux_sym_highlight_token1] = ACTIONS(4554), + [aux_sym_edit_comment_token1] = ACTIONS(4554), + [anon_sym_CARET_LBRACK] = ACTIONS(4554), + [anon_sym_LBRACK_CARET] = ACTIONS(4554), + [sym_uri_autolink] = ACTIONS(4554), + [sym_email_autolink] = ACTIONS(4554), + [sym__whitespace_ge_2] = ACTIONS(4554), + [aux_sym__whitespace_token1] = ACTIONS(4556), + [sym__word_no_digit] = ACTIONS(4554), + [sym__digits] = ACTIONS(4554), + [anon_sym_DASH_DASH] = ACTIONS(4556), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4554), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4554), + [sym__code_span_start] = ACTIONS(4554), + [sym__emphasis_open_star] = ACTIONS(4554), + [sym__emphasis_open_underscore] = ACTIONS(4554), + [sym__emphasis_close_underscore] = ACTIONS(4554), + [sym__strikeout_open] = ACTIONS(4554), + [sym__latex_span_start] = ACTIONS(4554), + [sym__single_quote_open] = ACTIONS(4554), + [sym__double_quote_open] = ACTIONS(4554), + [sym__superscript_open] = ACTIONS(4554), + [sym__subscript_open] = ACTIONS(4554), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4554), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4554), + [sym__cite_author_in_text] = ACTIONS(4554), + [sym__cite_suppress_author] = ACTIONS(4554), + [sym__shortcode_open_escaped] = ACTIONS(4554), + [sym__shortcode_open] = ACTIONS(4554), + [sym__unclosed_span] = ACTIONS(4554), + }, + [STATE(438)] = { + [sym__qmd_attribute] = STATE(845), + [sym_raw_attribute] = STATE(845), + [sym_commonmark_attribute] = STATE(845), + [sym_language_attribute] = STATE(845), + [sym__backslash_escape] = ACTIONS(4592), + [sym_entity_reference] = ACTIONS(4592), + [sym_numeric_character_reference] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(4594), + [anon_sym_GT] = ACTIONS(4592), + [anon_sym_BANG] = ACTIONS(4592), + [anon_sym_DQUOTE] = ACTIONS(4592), + [anon_sym_POUND] = ACTIONS(4592), + [anon_sym_DOLLAR] = ACTIONS(4592), + [anon_sym_PERCENT] = ACTIONS(4592), + [anon_sym_AMP] = ACTIONS(4594), + [anon_sym_SQUOTE] = ACTIONS(4592), + [anon_sym_STAR] = ACTIONS(4592), + [anon_sym_PLUS] = ACTIONS(4592), + [anon_sym_COMMA] = ACTIONS(4592), + [anon_sym_DASH] = ACTIONS(4594), + [anon_sym_DOT] = ACTIONS(4594), + [anon_sym_SLASH] = ACTIONS(4592), + [anon_sym_COLON] = ACTIONS(4592), + [anon_sym_SEMI] = ACTIONS(4592), + [anon_sym_EQ] = ACTIONS(4592), + [anon_sym_QMARK] = ACTIONS(4592), + [anon_sym_LBRACK] = ACTIONS(4594), + [anon_sym_BSLASH] = ACTIONS(4594), + [anon_sym_CARET] = ACTIONS(4594), + [anon_sym__] = ACTIONS(4592), + [anon_sym_BQUOTE] = ACTIONS(4592), + [anon_sym_LBRACE] = ACTIONS(4618), + [anon_sym_PIPE] = ACTIONS(4592), + [anon_sym_TILDE] = ACTIONS(4592), + [anon_sym_LPAREN] = ACTIONS(4592), + [anon_sym_RPAREN] = ACTIONS(4592), + [sym__newline_token] = ACTIONS(4592), + [aux_sym_insert_token1] = ACTIONS(4592), + [aux_sym_delete_token1] = ACTIONS(4592), + [aux_sym_highlight_token1] = ACTIONS(4592), + [aux_sym_edit_comment_token1] = ACTIONS(4592), + [anon_sym_CARET_LBRACK] = ACTIONS(4592), + [anon_sym_LBRACK_CARET] = ACTIONS(4592), + [sym_uri_autolink] = ACTIONS(4592), + [sym_email_autolink] = ACTIONS(4592), + [sym__whitespace_ge_2] = ACTIONS(4592), + [aux_sym__whitespace_token1] = ACTIONS(4594), + [sym__word_no_digit] = ACTIONS(4592), + [sym__digits] = ACTIONS(4592), + [anon_sym_DASH_DASH] = ACTIONS(4594), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4592), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4592), + [sym__code_span_start] = ACTIONS(4592), + [sym__emphasis_open_star] = ACTIONS(4592), + [sym__emphasis_open_underscore] = ACTIONS(4592), + [sym__strikeout_open] = ACTIONS(4592), + [sym__latex_span_start] = ACTIONS(4592), + [sym__single_quote_open] = ACTIONS(4592), + [sym__double_quote_open] = ACTIONS(4592), + [sym__superscript_open] = ACTIONS(4592), + [sym__subscript_open] = ACTIONS(4592), + [sym__subscript_close] = ACTIONS(4592), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4592), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4592), + [sym__cite_author_in_text] = ACTIONS(4592), + [sym__cite_suppress_author] = ACTIONS(4592), + [sym__shortcode_open_escaped] = ACTIONS(4592), + [sym__shortcode_open] = ACTIONS(4592), + [sym__unclosed_span] = ACTIONS(4592), + }, + [STATE(439)] = { + [sym__qmd_attribute] = STATE(858), + [sym_raw_attribute] = STATE(858), + [sym_commonmark_attribute] = STATE(858), + [sym_language_attribute] = STATE(858), + [sym__backslash_escape] = ACTIONS(4596), + [sym_entity_reference] = ACTIONS(4596), + [sym_numeric_character_reference] = ACTIONS(4596), + [anon_sym_LT] = ACTIONS(4598), + [anon_sym_GT] = ACTIONS(4596), + [anon_sym_BANG] = ACTIONS(4596), + [anon_sym_DQUOTE] = ACTIONS(4596), + [anon_sym_POUND] = ACTIONS(4596), + [anon_sym_DOLLAR] = ACTIONS(4596), + [anon_sym_PERCENT] = ACTIONS(4596), + [anon_sym_AMP] = ACTIONS(4598), + [anon_sym_SQUOTE] = ACTIONS(4596), + [anon_sym_STAR] = ACTIONS(4596), + [anon_sym_PLUS] = ACTIONS(4596), + [anon_sym_COMMA] = ACTIONS(4596), + [anon_sym_DASH] = ACTIONS(4598), + [anon_sym_DOT] = ACTIONS(4598), + [anon_sym_SLASH] = ACTIONS(4596), + [anon_sym_COLON] = ACTIONS(4596), + [anon_sym_SEMI] = ACTIONS(4596), + [anon_sym_EQ] = ACTIONS(4596), + [anon_sym_QMARK] = ACTIONS(4596), + [anon_sym_LBRACK] = ACTIONS(4598), + [anon_sym_BSLASH] = ACTIONS(4598), + [anon_sym_CARET] = ACTIONS(4598), + [anon_sym__] = ACTIONS(4596), + [anon_sym_BQUOTE] = ACTIONS(4596), + [anon_sym_LBRACE] = ACTIONS(4618), + [anon_sym_PIPE] = ACTIONS(4596), + [anon_sym_TILDE] = ACTIONS(4596), + [anon_sym_LPAREN] = ACTIONS(4596), + [anon_sym_RPAREN] = ACTIONS(4596), + [sym__newline_token] = ACTIONS(4596), + [aux_sym_insert_token1] = ACTIONS(4596), + [aux_sym_delete_token1] = ACTIONS(4596), + [aux_sym_highlight_token1] = ACTIONS(4596), + [aux_sym_edit_comment_token1] = ACTIONS(4596), + [anon_sym_CARET_LBRACK] = ACTIONS(4596), + [anon_sym_LBRACK_CARET] = ACTIONS(4596), + [sym_uri_autolink] = ACTIONS(4596), + [sym_email_autolink] = ACTIONS(4596), + [sym__whitespace_ge_2] = ACTIONS(4596), + [aux_sym__whitespace_token1] = ACTIONS(4598), + [sym__word_no_digit] = ACTIONS(4596), + [sym__digits] = ACTIONS(4596), + [anon_sym_DASH_DASH] = ACTIONS(4598), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4596), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4596), + [sym__code_span_start] = ACTIONS(4596), + [sym__emphasis_open_star] = ACTIONS(4596), + [sym__emphasis_open_underscore] = ACTIONS(4596), + [sym__strikeout_open] = ACTIONS(4596), + [sym__latex_span_start] = ACTIONS(4596), + [sym__single_quote_open] = ACTIONS(4596), + [sym__double_quote_open] = ACTIONS(4596), + [sym__superscript_open] = ACTIONS(4596), + [sym__subscript_open] = ACTIONS(4596), + [sym__subscript_close] = ACTIONS(4596), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4596), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4596), + [sym__cite_author_in_text] = ACTIONS(4596), + [sym__cite_suppress_author] = ACTIONS(4596), + [sym__shortcode_open_escaped] = ACTIONS(4596), + [sym__shortcode_open] = ACTIONS(4596), + [sym__unclosed_span] = ACTIONS(4596), + }, + [STATE(440)] = { + [sym__qmd_attribute] = STATE(1134), + [sym_raw_attribute] = STATE(1134), + [sym_commonmark_attribute] = STATE(1134), + [sym_language_attribute] = STATE(1134), + [sym__backslash_escape] = ACTIONS(4558), + [sym_entity_reference] = ACTIONS(4558), + [sym_numeric_character_reference] = ACTIONS(4558), + [anon_sym_LT] = ACTIONS(4560), + [anon_sym_GT] = ACTIONS(4558), + [anon_sym_BANG] = ACTIONS(4558), + [anon_sym_DQUOTE] = ACTIONS(4558), + [anon_sym_POUND] = ACTIONS(4558), + [anon_sym_DOLLAR] = ACTIONS(4558), + [anon_sym_PERCENT] = ACTIONS(4558), + [anon_sym_AMP] = ACTIONS(4560), + [anon_sym_SQUOTE] = ACTIONS(4558), + [anon_sym_STAR] = ACTIONS(4558), + [anon_sym_PLUS] = ACTIONS(4558), + [anon_sym_COMMA] = ACTIONS(4558), + [anon_sym_DASH] = ACTIONS(4560), + [anon_sym_DOT] = ACTIONS(4560), + [anon_sym_SLASH] = ACTIONS(4558), + [anon_sym_COLON] = ACTIONS(4558), + [anon_sym_SEMI] = ACTIONS(4558), + [anon_sym_EQ] = ACTIONS(4558), + [anon_sym_QMARK] = ACTIONS(4558), + [anon_sym_LBRACK] = ACTIONS(4560), + [anon_sym_BSLASH] = ACTIONS(4560), + [anon_sym_CARET] = ACTIONS(4560), + [anon_sym__] = ACTIONS(4558), + [anon_sym_BQUOTE] = ACTIONS(4558), + [anon_sym_LBRACE] = ACTIONS(4570), + [anon_sym_PIPE] = ACTIONS(4558), + [anon_sym_TILDE] = ACTIONS(4558), + [anon_sym_LPAREN] = ACTIONS(4558), + [anon_sym_RPAREN] = ACTIONS(4558), + [sym__newline_token] = ACTIONS(4558), + [aux_sym_insert_token1] = ACTIONS(4558), + [aux_sym_delete_token1] = ACTIONS(4558), + [aux_sym_highlight_token1] = ACTIONS(4558), + [aux_sym_edit_comment_token1] = ACTIONS(4558), + [anon_sym_CARET_LBRACK] = ACTIONS(4558), + [anon_sym_LBRACK_CARET] = ACTIONS(4558), + [sym_uri_autolink] = ACTIONS(4558), + [sym_email_autolink] = ACTIONS(4558), + [sym__whitespace_ge_2] = ACTIONS(4558), + [aux_sym__whitespace_token1] = ACTIONS(4560), + [sym__word_no_digit] = ACTIONS(4558), + [sym__digits] = ACTIONS(4558), + [anon_sym_DASH_DASH] = ACTIONS(4560), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4558), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4558), + [sym__code_span_start] = ACTIONS(4558), + [sym__emphasis_open_star] = ACTIONS(4558), + [sym__emphasis_open_underscore] = ACTIONS(4558), + [sym__emphasis_close_underscore] = ACTIONS(4558), + [sym__strikeout_open] = ACTIONS(4558), + [sym__latex_span_start] = ACTIONS(4558), + [sym__single_quote_open] = ACTIONS(4558), + [sym__double_quote_open] = ACTIONS(4558), + [sym__superscript_open] = ACTIONS(4558), + [sym__subscript_open] = ACTIONS(4558), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4558), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4558), + [sym__cite_author_in_text] = ACTIONS(4558), + [sym__cite_suppress_author] = ACTIONS(4558), + [sym__shortcode_open_escaped] = ACTIONS(4558), + [sym__shortcode_open] = ACTIONS(4558), + [sym__unclosed_span] = ACTIONS(4558), + }, + [STATE(441)] = { + [sym__qmd_attribute] = STATE(871), + [sym_raw_attribute] = STATE(871), + [sym_commonmark_attribute] = STATE(871), + [sym_language_attribute] = STATE(871), + [sym__backslash_escape] = ACTIONS(4600), + [sym_entity_reference] = ACTIONS(4600), + [sym_numeric_character_reference] = ACTIONS(4600), + [anon_sym_LT] = ACTIONS(4602), + [anon_sym_GT] = ACTIONS(4600), + [anon_sym_BANG] = ACTIONS(4600), + [anon_sym_DQUOTE] = ACTIONS(4600), + [anon_sym_POUND] = ACTIONS(4600), + [anon_sym_DOLLAR] = ACTIONS(4600), + [anon_sym_PERCENT] = ACTIONS(4600), + [anon_sym_AMP] = ACTIONS(4602), + [anon_sym_SQUOTE] = ACTIONS(4600), + [anon_sym_STAR] = ACTIONS(4600), + [anon_sym_PLUS] = ACTIONS(4600), + [anon_sym_COMMA] = ACTIONS(4600), + [anon_sym_DASH] = ACTIONS(4602), + [anon_sym_DOT] = ACTIONS(4602), + [anon_sym_SLASH] = ACTIONS(4600), + [anon_sym_COLON] = ACTIONS(4600), + [anon_sym_SEMI] = ACTIONS(4600), + [anon_sym_EQ] = ACTIONS(4600), + [anon_sym_QMARK] = ACTIONS(4600), + [anon_sym_LBRACK] = ACTIONS(4602), + [anon_sym_BSLASH] = ACTIONS(4602), + [anon_sym_CARET] = ACTIONS(4602), + [anon_sym__] = ACTIONS(4600), + [anon_sym_BQUOTE] = ACTIONS(4600), + [anon_sym_LBRACE] = ACTIONS(4618), + [anon_sym_PIPE] = ACTIONS(4600), + [anon_sym_TILDE] = ACTIONS(4600), + [anon_sym_LPAREN] = ACTIONS(4600), + [anon_sym_RPAREN] = ACTIONS(4600), + [sym__newline_token] = ACTIONS(4600), + [aux_sym_insert_token1] = ACTIONS(4600), + [aux_sym_delete_token1] = ACTIONS(4600), + [aux_sym_highlight_token1] = ACTIONS(4600), + [aux_sym_edit_comment_token1] = ACTIONS(4600), + [anon_sym_CARET_LBRACK] = ACTIONS(4600), + [anon_sym_LBRACK_CARET] = ACTIONS(4600), + [sym_uri_autolink] = ACTIONS(4600), + [sym_email_autolink] = ACTIONS(4600), + [sym__whitespace_ge_2] = ACTIONS(4600), + [aux_sym__whitespace_token1] = ACTIONS(4602), + [sym__word_no_digit] = ACTIONS(4600), + [sym__digits] = ACTIONS(4600), + [anon_sym_DASH_DASH] = ACTIONS(4602), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4600), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4600), + [sym__code_span_start] = ACTIONS(4600), + [sym__emphasis_open_star] = ACTIONS(4600), + [sym__emphasis_open_underscore] = ACTIONS(4600), + [sym__strikeout_open] = ACTIONS(4600), + [sym__latex_span_start] = ACTIONS(4600), + [sym__single_quote_open] = ACTIONS(4600), + [sym__double_quote_open] = ACTIONS(4600), + [sym__superscript_open] = ACTIONS(4600), + [sym__subscript_open] = ACTIONS(4600), + [sym__subscript_close] = ACTIONS(4600), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4600), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4600), + [sym__cite_author_in_text] = ACTIONS(4600), + [sym__cite_suppress_author] = ACTIONS(4600), + [sym__shortcode_open_escaped] = ACTIONS(4600), + [sym__shortcode_open] = ACTIONS(4600), + [sym__unclosed_span] = ACTIONS(4600), + }, + [STATE(442)] = { + [sym__qmd_attribute] = STATE(880), + [sym_raw_attribute] = STATE(880), + [sym_commonmark_attribute] = STATE(880), + [sym_language_attribute] = STATE(880), + [sym__backslash_escape] = ACTIONS(4606), + [sym_entity_reference] = ACTIONS(4606), + [sym_numeric_character_reference] = ACTIONS(4606), + [anon_sym_LT] = ACTIONS(4608), + [anon_sym_GT] = ACTIONS(4606), + [anon_sym_BANG] = ACTIONS(4606), + [anon_sym_DQUOTE] = ACTIONS(4606), + [anon_sym_POUND] = ACTIONS(4606), + [anon_sym_DOLLAR] = ACTIONS(4606), + [anon_sym_PERCENT] = ACTIONS(4606), + [anon_sym_AMP] = ACTIONS(4608), + [anon_sym_SQUOTE] = ACTIONS(4606), + [anon_sym_STAR] = ACTIONS(4606), + [anon_sym_PLUS] = ACTIONS(4606), + [anon_sym_COMMA] = ACTIONS(4606), + [anon_sym_DASH] = ACTIONS(4608), + [anon_sym_DOT] = ACTIONS(4608), + [anon_sym_SLASH] = ACTIONS(4606), + [anon_sym_COLON] = ACTIONS(4606), + [anon_sym_SEMI] = ACTIONS(4606), + [anon_sym_EQ] = ACTIONS(4606), + [anon_sym_QMARK] = ACTIONS(4606), + [anon_sym_LBRACK] = ACTIONS(4608), + [anon_sym_BSLASH] = ACTIONS(4608), + [anon_sym_CARET] = ACTIONS(4608), + [anon_sym__] = ACTIONS(4606), + [anon_sym_BQUOTE] = ACTIONS(4606), + [anon_sym_LBRACE] = ACTIONS(4618), + [anon_sym_PIPE] = ACTIONS(4606), + [anon_sym_TILDE] = ACTIONS(4606), + [anon_sym_LPAREN] = ACTIONS(4606), + [anon_sym_RPAREN] = ACTIONS(4606), + [sym__newline_token] = ACTIONS(4606), + [aux_sym_insert_token1] = ACTIONS(4606), + [aux_sym_delete_token1] = ACTIONS(4606), + [aux_sym_highlight_token1] = ACTIONS(4606), + [aux_sym_edit_comment_token1] = ACTIONS(4606), + [anon_sym_CARET_LBRACK] = ACTIONS(4606), + [anon_sym_LBRACK_CARET] = ACTIONS(4606), + [sym_uri_autolink] = ACTIONS(4606), + [sym_email_autolink] = ACTIONS(4606), + [sym__whitespace_ge_2] = ACTIONS(4606), + [aux_sym__whitespace_token1] = ACTIONS(4608), + [sym__word_no_digit] = ACTIONS(4606), + [sym__digits] = ACTIONS(4606), + [anon_sym_DASH_DASH] = ACTIONS(4608), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4606), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4606), + [sym__code_span_start] = ACTIONS(4606), + [sym__emphasis_open_star] = ACTIONS(4606), + [sym__emphasis_open_underscore] = ACTIONS(4606), + [sym__strikeout_open] = ACTIONS(4606), + [sym__latex_span_start] = ACTIONS(4606), + [sym__single_quote_open] = ACTIONS(4606), + [sym__double_quote_open] = ACTIONS(4606), + [sym__superscript_open] = ACTIONS(4606), + [sym__subscript_open] = ACTIONS(4606), + [sym__subscript_close] = ACTIONS(4606), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4606), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4606), + [sym__cite_author_in_text] = ACTIONS(4606), + [sym__cite_suppress_author] = ACTIONS(4606), + [sym__shortcode_open_escaped] = ACTIONS(4606), + [sym__shortcode_open] = ACTIONS(4606), + [sym__unclosed_span] = ACTIONS(4606), + }, + [STATE(443)] = { + [sym__qmd_attribute] = STATE(882), + [sym_raw_attribute] = STATE(882), + [sym_commonmark_attribute] = STATE(882), + [sym_language_attribute] = STATE(882), + [sym__backslash_escape] = ACTIONS(4610), + [sym_entity_reference] = ACTIONS(4610), + [sym_numeric_character_reference] = ACTIONS(4610), + [anon_sym_LT] = ACTIONS(4612), + [anon_sym_GT] = ACTIONS(4610), + [anon_sym_BANG] = ACTIONS(4610), + [anon_sym_DQUOTE] = ACTIONS(4610), + [anon_sym_POUND] = ACTIONS(4610), + [anon_sym_DOLLAR] = ACTIONS(4610), + [anon_sym_PERCENT] = ACTIONS(4610), + [anon_sym_AMP] = ACTIONS(4612), + [anon_sym_SQUOTE] = ACTIONS(4610), + [anon_sym_STAR] = ACTIONS(4610), + [anon_sym_PLUS] = ACTIONS(4610), + [anon_sym_COMMA] = ACTIONS(4610), + [anon_sym_DASH] = ACTIONS(4612), + [anon_sym_DOT] = ACTIONS(4612), + [anon_sym_SLASH] = ACTIONS(4610), + [anon_sym_COLON] = ACTIONS(4610), + [anon_sym_SEMI] = ACTIONS(4610), + [anon_sym_EQ] = ACTIONS(4610), + [anon_sym_QMARK] = ACTIONS(4610), + [anon_sym_LBRACK] = ACTIONS(4612), + [anon_sym_BSLASH] = ACTIONS(4612), + [anon_sym_CARET] = ACTIONS(4612), + [anon_sym__] = ACTIONS(4610), + [anon_sym_BQUOTE] = ACTIONS(4610), + [anon_sym_LBRACE] = ACTIONS(4618), + [anon_sym_PIPE] = ACTIONS(4610), + [anon_sym_TILDE] = ACTIONS(4610), + [anon_sym_LPAREN] = ACTIONS(4610), + [anon_sym_RPAREN] = ACTIONS(4610), + [sym__newline_token] = ACTIONS(4610), + [aux_sym_insert_token1] = ACTIONS(4610), + [aux_sym_delete_token1] = ACTIONS(4610), + [aux_sym_highlight_token1] = ACTIONS(4610), + [aux_sym_edit_comment_token1] = ACTIONS(4610), + [anon_sym_CARET_LBRACK] = ACTIONS(4610), + [anon_sym_LBRACK_CARET] = ACTIONS(4610), + [sym_uri_autolink] = ACTIONS(4610), + [sym_email_autolink] = ACTIONS(4610), + [sym__whitespace_ge_2] = ACTIONS(4610), + [aux_sym__whitespace_token1] = ACTIONS(4612), + [sym__word_no_digit] = ACTIONS(4610), + [sym__digits] = ACTIONS(4610), + [anon_sym_DASH_DASH] = ACTIONS(4612), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4610), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4610), + [sym__code_span_start] = ACTIONS(4610), + [sym__emphasis_open_star] = ACTIONS(4610), + [sym__emphasis_open_underscore] = ACTIONS(4610), + [sym__strikeout_open] = ACTIONS(4610), + [sym__latex_span_start] = ACTIONS(4610), + [sym__single_quote_open] = ACTIONS(4610), + [sym__double_quote_open] = ACTIONS(4610), + [sym__superscript_open] = ACTIONS(4610), + [sym__subscript_open] = ACTIONS(4610), + [sym__subscript_close] = ACTIONS(4610), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4610), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4610), + [sym__cite_author_in_text] = ACTIONS(4610), + [sym__cite_suppress_author] = ACTIONS(4610), + [sym__shortcode_open_escaped] = ACTIONS(4610), + [sym__shortcode_open] = ACTIONS(4610), + [sym__unclosed_span] = ACTIONS(4610), + }, + [STATE(444)] = { + [sym__qmd_attribute] = STATE(889), + [sym_raw_attribute] = STATE(889), + [sym_commonmark_attribute] = STATE(889), + [sym_language_attribute] = STATE(889), + [sym__backslash_escape] = ACTIONS(4566), + [sym_entity_reference] = ACTIONS(4566), + [sym_numeric_character_reference] = ACTIONS(4566), + [anon_sym_LT] = ACTIONS(4568), + [anon_sym_GT] = ACTIONS(4566), + [anon_sym_BANG] = ACTIONS(4566), + [anon_sym_DQUOTE] = ACTIONS(4566), + [anon_sym_POUND] = ACTIONS(4566), + [anon_sym_DOLLAR] = ACTIONS(4566), + [anon_sym_PERCENT] = ACTIONS(4566), + [anon_sym_AMP] = ACTIONS(4568), + [anon_sym_SQUOTE] = ACTIONS(4566), + [anon_sym_STAR] = ACTIONS(4566), + [anon_sym_PLUS] = ACTIONS(4566), + [anon_sym_COMMA] = ACTIONS(4566), + [anon_sym_DASH] = ACTIONS(4568), + [anon_sym_DOT] = ACTIONS(4568), + [anon_sym_SLASH] = ACTIONS(4566), + [anon_sym_COLON] = ACTIONS(4566), + [anon_sym_SEMI] = ACTIONS(4566), + [anon_sym_EQ] = ACTIONS(4566), + [anon_sym_QMARK] = ACTIONS(4566), + [anon_sym_LBRACK] = ACTIONS(4568), + [anon_sym_BSLASH] = ACTIONS(4568), + [anon_sym_CARET] = ACTIONS(4568), + [anon_sym__] = ACTIONS(4566), + [anon_sym_BQUOTE] = ACTIONS(4566), + [anon_sym_LBRACE] = ACTIONS(4618), + [anon_sym_PIPE] = ACTIONS(4566), + [anon_sym_TILDE] = ACTIONS(4566), + [anon_sym_LPAREN] = ACTIONS(4566), + [anon_sym_RPAREN] = ACTIONS(4566), + [sym__newline_token] = ACTIONS(4566), + [aux_sym_insert_token1] = ACTIONS(4566), + [aux_sym_delete_token1] = ACTIONS(4566), + [aux_sym_highlight_token1] = ACTIONS(4566), + [aux_sym_edit_comment_token1] = ACTIONS(4566), + [anon_sym_CARET_LBRACK] = ACTIONS(4566), + [anon_sym_LBRACK_CARET] = ACTIONS(4566), + [sym_uri_autolink] = ACTIONS(4566), + [sym_email_autolink] = ACTIONS(4566), + [sym__whitespace_ge_2] = ACTIONS(4566), + [aux_sym__whitespace_token1] = ACTIONS(4568), + [sym__word_no_digit] = ACTIONS(4566), + [sym__digits] = ACTIONS(4566), + [anon_sym_DASH_DASH] = ACTIONS(4568), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4566), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4566), + [sym__code_span_start] = ACTIONS(4566), + [sym__emphasis_open_star] = ACTIONS(4566), + [sym__emphasis_open_underscore] = ACTIONS(4566), + [sym__strikeout_open] = ACTIONS(4566), + [sym__latex_span_start] = ACTIONS(4566), + [sym__single_quote_open] = ACTIONS(4566), + [sym__double_quote_open] = ACTIONS(4566), + [sym__superscript_open] = ACTIONS(4566), + [sym__subscript_open] = ACTIONS(4566), + [sym__subscript_close] = ACTIONS(4566), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4566), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4566), + [sym__cite_author_in_text] = ACTIONS(4566), + [sym__cite_suppress_author] = ACTIONS(4566), + [sym__shortcode_open_escaped] = ACTIONS(4566), + [sym__shortcode_open] = ACTIONS(4566), + [sym__unclosed_span] = ACTIONS(4566), + }, + [STATE(445)] = { + [sym__qmd_attribute] = STATE(891), + [sym_raw_attribute] = STATE(891), + [sym_commonmark_attribute] = STATE(891), + [sym_language_attribute] = STATE(891), + [sym__backslash_escape] = ACTIONS(4572), + [sym_entity_reference] = ACTIONS(4572), + [sym_numeric_character_reference] = ACTIONS(4572), + [anon_sym_LT] = ACTIONS(4574), + [anon_sym_GT] = ACTIONS(4572), + [anon_sym_BANG] = ACTIONS(4572), + [anon_sym_DQUOTE] = ACTIONS(4572), + [anon_sym_POUND] = ACTIONS(4572), + [anon_sym_DOLLAR] = ACTIONS(4572), + [anon_sym_PERCENT] = ACTIONS(4572), + [anon_sym_AMP] = ACTIONS(4574), + [anon_sym_SQUOTE] = ACTIONS(4572), + [anon_sym_STAR] = ACTIONS(4572), + [anon_sym_PLUS] = ACTIONS(4572), + [anon_sym_COMMA] = ACTIONS(4572), + [anon_sym_DASH] = ACTIONS(4574), + [anon_sym_DOT] = ACTIONS(4574), + [anon_sym_SLASH] = ACTIONS(4572), + [anon_sym_COLON] = ACTIONS(4572), + [anon_sym_SEMI] = ACTIONS(4572), + [anon_sym_EQ] = ACTIONS(4572), + [anon_sym_QMARK] = ACTIONS(4572), + [anon_sym_LBRACK] = ACTIONS(4574), + [anon_sym_BSLASH] = ACTIONS(4574), + [anon_sym_CARET] = ACTIONS(4574), + [anon_sym__] = ACTIONS(4572), + [anon_sym_BQUOTE] = ACTIONS(4572), + [anon_sym_LBRACE] = ACTIONS(4618), + [anon_sym_PIPE] = ACTIONS(4572), + [anon_sym_TILDE] = ACTIONS(4572), + [anon_sym_LPAREN] = ACTIONS(4572), + [anon_sym_RPAREN] = ACTIONS(4572), + [sym__newline_token] = ACTIONS(4572), + [aux_sym_insert_token1] = ACTIONS(4572), + [aux_sym_delete_token1] = ACTIONS(4572), + [aux_sym_highlight_token1] = ACTIONS(4572), + [aux_sym_edit_comment_token1] = ACTIONS(4572), + [anon_sym_CARET_LBRACK] = ACTIONS(4572), + [anon_sym_LBRACK_CARET] = ACTIONS(4572), + [sym_uri_autolink] = ACTIONS(4572), + [sym_email_autolink] = ACTIONS(4572), + [sym__whitespace_ge_2] = ACTIONS(4572), + [aux_sym__whitespace_token1] = ACTIONS(4574), + [sym__word_no_digit] = ACTIONS(4572), + [sym__digits] = ACTIONS(4572), + [anon_sym_DASH_DASH] = ACTIONS(4574), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4572), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4572), + [sym__code_span_start] = ACTIONS(4572), + [sym__emphasis_open_star] = ACTIONS(4572), + [sym__emphasis_open_underscore] = ACTIONS(4572), + [sym__strikeout_open] = ACTIONS(4572), + [sym__latex_span_start] = ACTIONS(4572), + [sym__single_quote_open] = ACTIONS(4572), + [sym__double_quote_open] = ACTIONS(4572), + [sym__superscript_open] = ACTIONS(4572), + [sym__subscript_open] = ACTIONS(4572), + [sym__subscript_close] = ACTIONS(4572), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4572), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4572), + [sym__cite_author_in_text] = ACTIONS(4572), + [sym__cite_suppress_author] = ACTIONS(4572), + [sym__shortcode_open_escaped] = ACTIONS(4572), + [sym__shortcode_open] = ACTIONS(4572), + [sym__unclosed_span] = ACTIONS(4572), + }, + [STATE(446)] = { + [sym__qmd_attribute] = STATE(897), + [sym_raw_attribute] = STATE(897), + [sym_commonmark_attribute] = STATE(897), + [sym_language_attribute] = STATE(897), + [sym__backslash_escape] = ACTIONS(4588), + [sym_entity_reference] = ACTIONS(4588), + [sym_numeric_character_reference] = ACTIONS(4588), + [anon_sym_LT] = ACTIONS(4590), + [anon_sym_GT] = ACTIONS(4588), + [anon_sym_BANG] = ACTIONS(4588), + [anon_sym_DQUOTE] = ACTIONS(4588), + [anon_sym_POUND] = ACTIONS(4588), + [anon_sym_DOLLAR] = ACTIONS(4588), + [anon_sym_PERCENT] = ACTIONS(4588), + [anon_sym_AMP] = ACTIONS(4590), + [anon_sym_SQUOTE] = ACTIONS(4588), + [anon_sym_STAR] = ACTIONS(4588), + [anon_sym_PLUS] = ACTIONS(4588), + [anon_sym_COMMA] = ACTIONS(4588), + [anon_sym_DASH] = ACTIONS(4590), + [anon_sym_DOT] = ACTIONS(4590), + [anon_sym_SLASH] = ACTIONS(4588), + [anon_sym_COLON] = ACTIONS(4588), + [anon_sym_SEMI] = ACTIONS(4588), + [anon_sym_EQ] = ACTIONS(4588), + [anon_sym_QMARK] = ACTIONS(4588), + [anon_sym_LBRACK] = ACTIONS(4590), + [anon_sym_BSLASH] = ACTIONS(4590), + [anon_sym_CARET] = ACTIONS(4590), + [anon_sym__] = ACTIONS(4588), + [anon_sym_BQUOTE] = ACTIONS(4588), + [anon_sym_LBRACE] = ACTIONS(4618), + [anon_sym_PIPE] = ACTIONS(4588), + [anon_sym_TILDE] = ACTIONS(4588), + [anon_sym_LPAREN] = ACTIONS(4588), + [anon_sym_RPAREN] = ACTIONS(4588), + [sym__newline_token] = ACTIONS(4588), + [aux_sym_insert_token1] = ACTIONS(4588), + [aux_sym_delete_token1] = ACTIONS(4588), + [aux_sym_highlight_token1] = ACTIONS(4588), + [aux_sym_edit_comment_token1] = ACTIONS(4588), + [anon_sym_CARET_LBRACK] = ACTIONS(4588), + [anon_sym_LBRACK_CARET] = ACTIONS(4588), + [sym_uri_autolink] = ACTIONS(4588), + [sym_email_autolink] = ACTIONS(4588), + [sym__whitespace_ge_2] = ACTIONS(4588), + [aux_sym__whitespace_token1] = ACTIONS(4590), + [sym__word_no_digit] = ACTIONS(4588), + [sym__digits] = ACTIONS(4588), + [anon_sym_DASH_DASH] = ACTIONS(4590), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4588), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4588), + [sym__code_span_start] = ACTIONS(4588), + [sym__emphasis_open_star] = ACTIONS(4588), + [sym__emphasis_open_underscore] = ACTIONS(4588), + [sym__strikeout_open] = ACTIONS(4588), + [sym__latex_span_start] = ACTIONS(4588), + [sym__single_quote_open] = ACTIONS(4588), + [sym__double_quote_open] = ACTIONS(4588), + [sym__superscript_open] = ACTIONS(4588), + [sym__subscript_open] = ACTIONS(4588), + [sym__subscript_close] = ACTIONS(4588), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4588), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4588), + [sym__cite_author_in_text] = ACTIONS(4588), + [sym__cite_suppress_author] = ACTIONS(4588), + [sym__shortcode_open_escaped] = ACTIONS(4588), + [sym__shortcode_open] = ACTIONS(4588), + [sym__unclosed_span] = ACTIONS(4588), + }, + [STATE(447)] = { + [sym__qmd_attribute] = STATE(899), + [sym_raw_attribute] = STATE(899), + [sym_commonmark_attribute] = STATE(899), + [sym_language_attribute] = STATE(899), + [sym__backslash_escape] = ACTIONS(4540), + [sym_entity_reference] = ACTIONS(4540), + [sym_numeric_character_reference] = ACTIONS(4540), + [anon_sym_LT] = ACTIONS(4542), + [anon_sym_GT] = ACTIONS(4540), + [anon_sym_BANG] = ACTIONS(4540), + [anon_sym_DQUOTE] = ACTIONS(4540), + [anon_sym_POUND] = ACTIONS(4540), + [anon_sym_DOLLAR] = ACTIONS(4540), + [anon_sym_PERCENT] = ACTIONS(4540), + [anon_sym_AMP] = ACTIONS(4542), + [anon_sym_SQUOTE] = ACTIONS(4540), + [anon_sym_STAR] = ACTIONS(4540), + [anon_sym_PLUS] = ACTIONS(4540), + [anon_sym_COMMA] = ACTIONS(4540), + [anon_sym_DASH] = ACTIONS(4542), + [anon_sym_DOT] = ACTIONS(4542), + [anon_sym_SLASH] = ACTIONS(4540), + [anon_sym_COLON] = ACTIONS(4540), + [anon_sym_SEMI] = ACTIONS(4540), + [anon_sym_EQ] = ACTIONS(4540), + [anon_sym_QMARK] = ACTIONS(4540), + [anon_sym_LBRACK] = ACTIONS(4542), + [anon_sym_BSLASH] = ACTIONS(4542), + [anon_sym_CARET] = ACTIONS(4542), + [anon_sym__] = ACTIONS(4540), + [anon_sym_BQUOTE] = ACTIONS(4540), + [anon_sym_LBRACE] = ACTIONS(4618), + [anon_sym_PIPE] = ACTIONS(4540), + [anon_sym_TILDE] = ACTIONS(4540), + [anon_sym_LPAREN] = ACTIONS(4540), + [anon_sym_RPAREN] = ACTIONS(4540), + [sym__newline_token] = ACTIONS(4540), + [aux_sym_insert_token1] = ACTIONS(4540), + [aux_sym_delete_token1] = ACTIONS(4540), + [aux_sym_highlight_token1] = ACTIONS(4540), + [aux_sym_edit_comment_token1] = ACTIONS(4540), + [anon_sym_CARET_LBRACK] = ACTIONS(4540), + [anon_sym_LBRACK_CARET] = ACTIONS(4540), + [sym_uri_autolink] = ACTIONS(4540), + [sym_email_autolink] = ACTIONS(4540), + [sym__whitespace_ge_2] = ACTIONS(4540), + [aux_sym__whitespace_token1] = ACTIONS(4542), + [sym__word_no_digit] = ACTIONS(4540), + [sym__digits] = ACTIONS(4540), + [anon_sym_DASH_DASH] = ACTIONS(4542), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4540), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4540), + [sym__code_span_start] = ACTIONS(4540), + [sym__emphasis_open_star] = ACTIONS(4540), + [sym__emphasis_open_underscore] = ACTIONS(4540), + [sym__strikeout_open] = ACTIONS(4540), + [sym__latex_span_start] = ACTIONS(4540), + [sym__single_quote_open] = ACTIONS(4540), + [sym__double_quote_open] = ACTIONS(4540), + [sym__superscript_open] = ACTIONS(4540), + [sym__subscript_open] = ACTIONS(4540), + [sym__subscript_close] = ACTIONS(4540), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4540), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4540), + [sym__cite_author_in_text] = ACTIONS(4540), + [sym__cite_suppress_author] = ACTIONS(4540), + [sym__shortcode_open_escaped] = ACTIONS(4540), + [sym__shortcode_open] = ACTIONS(4540), + [sym__unclosed_span] = ACTIONS(4540), + }, + [STATE(448)] = { + [sym__qmd_attribute] = STATE(903), + [sym_raw_attribute] = STATE(903), + [sym_commonmark_attribute] = STATE(903), + [sym_language_attribute] = STATE(903), + [sym__backslash_escape] = ACTIONS(4534), + [sym_entity_reference] = ACTIONS(4534), + [sym_numeric_character_reference] = ACTIONS(4534), + [anon_sym_LT] = ACTIONS(4536), + [anon_sym_GT] = ACTIONS(4534), + [anon_sym_BANG] = ACTIONS(4534), + [anon_sym_DQUOTE] = ACTIONS(4534), + [anon_sym_POUND] = ACTIONS(4534), + [anon_sym_DOLLAR] = ACTIONS(4534), + [anon_sym_PERCENT] = ACTIONS(4534), + [anon_sym_AMP] = ACTIONS(4536), + [anon_sym_SQUOTE] = ACTIONS(4534), + [anon_sym_STAR] = ACTIONS(4534), + [anon_sym_PLUS] = ACTIONS(4534), + [anon_sym_COMMA] = ACTIONS(4534), + [anon_sym_DASH] = ACTIONS(4536), + [anon_sym_DOT] = ACTIONS(4536), + [anon_sym_SLASH] = ACTIONS(4534), + [anon_sym_COLON] = ACTIONS(4534), + [anon_sym_SEMI] = ACTIONS(4534), + [anon_sym_EQ] = ACTIONS(4534), + [anon_sym_QMARK] = ACTIONS(4534), + [anon_sym_LBRACK] = ACTIONS(4536), + [anon_sym_BSLASH] = ACTIONS(4536), + [anon_sym_CARET] = ACTIONS(4536), + [anon_sym__] = ACTIONS(4534), + [anon_sym_BQUOTE] = ACTIONS(4534), + [anon_sym_LBRACE] = ACTIONS(4618), + [anon_sym_PIPE] = ACTIONS(4534), + [anon_sym_TILDE] = ACTIONS(4534), + [anon_sym_LPAREN] = ACTIONS(4534), + [anon_sym_RPAREN] = ACTIONS(4534), + [sym__newline_token] = ACTIONS(4534), + [aux_sym_insert_token1] = ACTIONS(4534), + [aux_sym_delete_token1] = ACTIONS(4534), + [aux_sym_highlight_token1] = ACTIONS(4534), + [aux_sym_edit_comment_token1] = ACTIONS(4534), + [anon_sym_CARET_LBRACK] = ACTIONS(4534), + [anon_sym_LBRACK_CARET] = ACTIONS(4534), + [sym_uri_autolink] = ACTIONS(4534), + [sym_email_autolink] = ACTIONS(4534), + [sym__whitespace_ge_2] = ACTIONS(4534), + [aux_sym__whitespace_token1] = ACTIONS(4536), + [sym__word_no_digit] = ACTIONS(4534), + [sym__digits] = ACTIONS(4534), + [anon_sym_DASH_DASH] = ACTIONS(4536), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4534), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4534), + [sym__code_span_start] = ACTIONS(4534), + [sym__emphasis_open_star] = ACTIONS(4534), + [sym__emphasis_open_underscore] = ACTIONS(4534), + [sym__strikeout_open] = ACTIONS(4534), + [sym__latex_span_start] = ACTIONS(4534), + [sym__single_quote_open] = ACTIONS(4534), + [sym__double_quote_open] = ACTIONS(4534), + [sym__superscript_open] = ACTIONS(4534), + [sym__subscript_open] = ACTIONS(4534), + [sym__subscript_close] = ACTIONS(4534), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4534), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4534), + [sym__cite_author_in_text] = ACTIONS(4534), + [sym__cite_suppress_author] = ACTIONS(4534), + [sym__shortcode_open_escaped] = ACTIONS(4534), + [sym__shortcode_open] = ACTIONS(4534), + [sym__unclosed_span] = ACTIONS(4534), + }, + [STATE(449)] = { + [sym__qmd_attribute] = STATE(905), + [sym_raw_attribute] = STATE(905), + [sym_commonmark_attribute] = STATE(905), + [sym_language_attribute] = STATE(905), + [sym__backslash_escape] = ACTIONS(4546), + [sym_entity_reference] = ACTIONS(4546), + [sym_numeric_character_reference] = ACTIONS(4546), + [anon_sym_LT] = ACTIONS(4548), + [anon_sym_GT] = ACTIONS(4546), + [anon_sym_BANG] = ACTIONS(4546), + [anon_sym_DQUOTE] = ACTIONS(4546), + [anon_sym_POUND] = ACTIONS(4546), + [anon_sym_DOLLAR] = ACTIONS(4546), + [anon_sym_PERCENT] = ACTIONS(4546), + [anon_sym_AMP] = ACTIONS(4548), + [anon_sym_SQUOTE] = ACTIONS(4546), + [anon_sym_STAR] = ACTIONS(4546), + [anon_sym_PLUS] = ACTIONS(4546), + [anon_sym_COMMA] = ACTIONS(4546), + [anon_sym_DASH] = ACTIONS(4548), + [anon_sym_DOT] = ACTIONS(4548), + [anon_sym_SLASH] = ACTIONS(4546), + [anon_sym_COLON] = ACTIONS(4546), + [anon_sym_SEMI] = ACTIONS(4546), + [anon_sym_EQ] = ACTIONS(4546), + [anon_sym_QMARK] = ACTIONS(4546), + [anon_sym_LBRACK] = ACTIONS(4548), + [anon_sym_BSLASH] = ACTIONS(4548), + [anon_sym_CARET] = ACTIONS(4548), + [anon_sym__] = ACTIONS(4546), + [anon_sym_BQUOTE] = ACTIONS(4546), + [anon_sym_LBRACE] = ACTIONS(4618), + [anon_sym_PIPE] = ACTIONS(4546), + [anon_sym_TILDE] = ACTIONS(4546), + [anon_sym_LPAREN] = ACTIONS(4546), + [anon_sym_RPAREN] = ACTIONS(4546), + [sym__newline_token] = ACTIONS(4546), + [aux_sym_insert_token1] = ACTIONS(4546), + [aux_sym_delete_token1] = ACTIONS(4546), + [aux_sym_highlight_token1] = ACTIONS(4546), + [aux_sym_edit_comment_token1] = ACTIONS(4546), + [anon_sym_CARET_LBRACK] = ACTIONS(4546), + [anon_sym_LBRACK_CARET] = ACTIONS(4546), + [sym_uri_autolink] = ACTIONS(4546), + [sym_email_autolink] = ACTIONS(4546), + [sym__whitespace_ge_2] = ACTIONS(4546), + [aux_sym__whitespace_token1] = ACTIONS(4548), + [sym__word_no_digit] = ACTIONS(4546), + [sym__digits] = ACTIONS(4546), + [anon_sym_DASH_DASH] = ACTIONS(4548), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4546), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4546), + [sym__code_span_start] = ACTIONS(4546), + [sym__emphasis_open_star] = ACTIONS(4546), + [sym__emphasis_open_underscore] = ACTIONS(4546), + [sym__strikeout_open] = ACTIONS(4546), + [sym__latex_span_start] = ACTIONS(4546), + [sym__single_quote_open] = ACTIONS(4546), + [sym__double_quote_open] = ACTIONS(4546), + [sym__superscript_open] = ACTIONS(4546), + [sym__subscript_open] = ACTIONS(4546), + [sym__subscript_close] = ACTIONS(4546), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4546), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4546), + [sym__cite_author_in_text] = ACTIONS(4546), + [sym__cite_suppress_author] = ACTIONS(4546), + [sym__shortcode_open_escaped] = ACTIONS(4546), + [sym__shortcode_open] = ACTIONS(4546), + [sym__unclosed_span] = ACTIONS(4546), + }, + [STATE(450)] = { + [sym__qmd_attribute] = STATE(907), + [sym_raw_attribute] = STATE(907), + [sym_commonmark_attribute] = STATE(907), + [sym_language_attribute] = STATE(907), + [sym__backslash_escape] = ACTIONS(4550), + [sym_entity_reference] = ACTIONS(4550), + [sym_numeric_character_reference] = ACTIONS(4550), + [anon_sym_LT] = ACTIONS(4552), + [anon_sym_GT] = ACTIONS(4550), + [anon_sym_BANG] = ACTIONS(4550), + [anon_sym_DQUOTE] = ACTIONS(4550), + [anon_sym_POUND] = ACTIONS(4550), + [anon_sym_DOLLAR] = ACTIONS(4550), + [anon_sym_PERCENT] = ACTIONS(4550), + [anon_sym_AMP] = ACTIONS(4552), + [anon_sym_SQUOTE] = ACTIONS(4550), + [anon_sym_STAR] = ACTIONS(4550), + [anon_sym_PLUS] = ACTIONS(4550), + [anon_sym_COMMA] = ACTIONS(4550), + [anon_sym_DASH] = ACTIONS(4552), + [anon_sym_DOT] = ACTIONS(4552), + [anon_sym_SLASH] = ACTIONS(4550), + [anon_sym_COLON] = ACTIONS(4550), + [anon_sym_SEMI] = ACTIONS(4550), + [anon_sym_EQ] = ACTIONS(4550), + [anon_sym_QMARK] = ACTIONS(4550), + [anon_sym_LBRACK] = ACTIONS(4552), + [anon_sym_BSLASH] = ACTIONS(4552), + [anon_sym_CARET] = ACTIONS(4552), + [anon_sym__] = ACTIONS(4550), + [anon_sym_BQUOTE] = ACTIONS(4550), + [anon_sym_LBRACE] = ACTIONS(4618), + [anon_sym_PIPE] = ACTIONS(4550), + [anon_sym_TILDE] = ACTIONS(4550), + [anon_sym_LPAREN] = ACTIONS(4550), + [anon_sym_RPAREN] = ACTIONS(4550), + [sym__newline_token] = ACTIONS(4550), + [aux_sym_insert_token1] = ACTIONS(4550), + [aux_sym_delete_token1] = ACTIONS(4550), + [aux_sym_highlight_token1] = ACTIONS(4550), + [aux_sym_edit_comment_token1] = ACTIONS(4550), + [anon_sym_CARET_LBRACK] = ACTIONS(4550), + [anon_sym_LBRACK_CARET] = ACTIONS(4550), + [sym_uri_autolink] = ACTIONS(4550), + [sym_email_autolink] = ACTIONS(4550), + [sym__whitespace_ge_2] = ACTIONS(4550), + [aux_sym__whitespace_token1] = ACTIONS(4552), + [sym__word_no_digit] = ACTIONS(4550), + [sym__digits] = ACTIONS(4550), + [anon_sym_DASH_DASH] = ACTIONS(4552), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4550), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4550), + [sym__code_span_start] = ACTIONS(4550), + [sym__emphasis_open_star] = ACTIONS(4550), + [sym__emphasis_open_underscore] = ACTIONS(4550), + [sym__strikeout_open] = ACTIONS(4550), + [sym__latex_span_start] = ACTIONS(4550), + [sym__single_quote_open] = ACTIONS(4550), + [sym__double_quote_open] = ACTIONS(4550), + [sym__superscript_open] = ACTIONS(4550), + [sym__subscript_open] = ACTIONS(4550), + [sym__subscript_close] = ACTIONS(4550), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4550), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4550), + [sym__cite_author_in_text] = ACTIONS(4550), + [sym__cite_suppress_author] = ACTIONS(4550), + [sym__shortcode_open_escaped] = ACTIONS(4550), + [sym__shortcode_open] = ACTIONS(4550), + [sym__unclosed_span] = ACTIONS(4550), + }, + [STATE(451)] = { + [sym__qmd_attribute] = STATE(909), + [sym_raw_attribute] = STATE(909), + [sym_commonmark_attribute] = STATE(909), + [sym_language_attribute] = STATE(909), + [sym__backslash_escape] = ACTIONS(4554), + [sym_entity_reference] = ACTIONS(4554), + [sym_numeric_character_reference] = ACTIONS(4554), + [anon_sym_LT] = ACTIONS(4556), + [anon_sym_GT] = ACTIONS(4554), + [anon_sym_BANG] = ACTIONS(4554), + [anon_sym_DQUOTE] = ACTIONS(4554), + [anon_sym_POUND] = ACTIONS(4554), + [anon_sym_DOLLAR] = ACTIONS(4554), + [anon_sym_PERCENT] = ACTIONS(4554), + [anon_sym_AMP] = ACTIONS(4556), + [anon_sym_SQUOTE] = ACTIONS(4554), + [anon_sym_STAR] = ACTIONS(4554), + [anon_sym_PLUS] = ACTIONS(4554), + [anon_sym_COMMA] = ACTIONS(4554), + [anon_sym_DASH] = ACTIONS(4556), + [anon_sym_DOT] = ACTIONS(4556), + [anon_sym_SLASH] = ACTIONS(4554), + [anon_sym_COLON] = ACTIONS(4554), + [anon_sym_SEMI] = ACTIONS(4554), + [anon_sym_EQ] = ACTIONS(4554), + [anon_sym_QMARK] = ACTIONS(4554), + [anon_sym_LBRACK] = ACTIONS(4556), + [anon_sym_BSLASH] = ACTIONS(4556), + [anon_sym_CARET] = ACTIONS(4556), + [anon_sym__] = ACTIONS(4554), + [anon_sym_BQUOTE] = ACTIONS(4554), + [anon_sym_LBRACE] = ACTIONS(4618), + [anon_sym_PIPE] = ACTIONS(4554), + [anon_sym_TILDE] = ACTIONS(4554), + [anon_sym_LPAREN] = ACTIONS(4554), + [anon_sym_RPAREN] = ACTIONS(4554), + [sym__newline_token] = ACTIONS(4554), + [aux_sym_insert_token1] = ACTIONS(4554), + [aux_sym_delete_token1] = ACTIONS(4554), + [aux_sym_highlight_token1] = ACTIONS(4554), + [aux_sym_edit_comment_token1] = ACTIONS(4554), + [anon_sym_CARET_LBRACK] = ACTIONS(4554), + [anon_sym_LBRACK_CARET] = ACTIONS(4554), + [sym_uri_autolink] = ACTIONS(4554), + [sym_email_autolink] = ACTIONS(4554), + [sym__whitespace_ge_2] = ACTIONS(4554), + [aux_sym__whitespace_token1] = ACTIONS(4556), + [sym__word_no_digit] = ACTIONS(4554), + [sym__digits] = ACTIONS(4554), + [anon_sym_DASH_DASH] = ACTIONS(4556), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4554), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4554), + [sym__code_span_start] = ACTIONS(4554), + [sym__emphasis_open_star] = ACTIONS(4554), + [sym__emphasis_open_underscore] = ACTIONS(4554), + [sym__strikeout_open] = ACTIONS(4554), + [sym__latex_span_start] = ACTIONS(4554), + [sym__single_quote_open] = ACTIONS(4554), + [sym__double_quote_open] = ACTIONS(4554), + [sym__superscript_open] = ACTIONS(4554), + [sym__subscript_open] = ACTIONS(4554), + [sym__subscript_close] = ACTIONS(4554), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4554), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4554), + [sym__cite_author_in_text] = ACTIONS(4554), + [sym__cite_suppress_author] = ACTIONS(4554), + [sym__shortcode_open_escaped] = ACTIONS(4554), + [sym__shortcode_open] = ACTIONS(4554), + [sym__unclosed_span] = ACTIONS(4554), + }, + [STATE(452)] = { + [sym__qmd_attribute] = STATE(911), + [sym_raw_attribute] = STATE(911), + [sym_commonmark_attribute] = STATE(911), + [sym_language_attribute] = STATE(911), + [sym__backslash_escape] = ACTIONS(4558), + [sym_entity_reference] = ACTIONS(4558), + [sym_numeric_character_reference] = ACTIONS(4558), + [anon_sym_LT] = ACTIONS(4560), + [anon_sym_GT] = ACTIONS(4558), + [anon_sym_BANG] = ACTIONS(4558), + [anon_sym_DQUOTE] = ACTIONS(4558), + [anon_sym_POUND] = ACTIONS(4558), + [anon_sym_DOLLAR] = ACTIONS(4558), + [anon_sym_PERCENT] = ACTIONS(4558), + [anon_sym_AMP] = ACTIONS(4560), + [anon_sym_SQUOTE] = ACTIONS(4558), + [anon_sym_STAR] = ACTIONS(4558), + [anon_sym_PLUS] = ACTIONS(4558), + [anon_sym_COMMA] = ACTIONS(4558), + [anon_sym_DASH] = ACTIONS(4560), + [anon_sym_DOT] = ACTIONS(4560), + [anon_sym_SLASH] = ACTIONS(4558), + [anon_sym_COLON] = ACTIONS(4558), + [anon_sym_SEMI] = ACTIONS(4558), + [anon_sym_EQ] = ACTIONS(4558), + [anon_sym_QMARK] = ACTIONS(4558), + [anon_sym_LBRACK] = ACTIONS(4560), + [anon_sym_BSLASH] = ACTIONS(4560), + [anon_sym_CARET] = ACTIONS(4560), + [anon_sym__] = ACTIONS(4558), + [anon_sym_BQUOTE] = ACTIONS(4558), + [anon_sym_LBRACE] = ACTIONS(4618), + [anon_sym_PIPE] = ACTIONS(4558), + [anon_sym_TILDE] = ACTIONS(4558), + [anon_sym_LPAREN] = ACTIONS(4558), + [anon_sym_RPAREN] = ACTIONS(4558), + [sym__newline_token] = ACTIONS(4558), + [aux_sym_insert_token1] = ACTIONS(4558), + [aux_sym_delete_token1] = ACTIONS(4558), + [aux_sym_highlight_token1] = ACTIONS(4558), + [aux_sym_edit_comment_token1] = ACTIONS(4558), + [anon_sym_CARET_LBRACK] = ACTIONS(4558), + [anon_sym_LBRACK_CARET] = ACTIONS(4558), + [sym_uri_autolink] = ACTIONS(4558), + [sym_email_autolink] = ACTIONS(4558), + [sym__whitespace_ge_2] = ACTIONS(4558), + [aux_sym__whitespace_token1] = ACTIONS(4560), + [sym__word_no_digit] = ACTIONS(4558), + [sym__digits] = ACTIONS(4558), + [anon_sym_DASH_DASH] = ACTIONS(4560), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4558), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4558), + [sym__code_span_start] = ACTIONS(4558), + [sym__emphasis_open_star] = ACTIONS(4558), + [sym__emphasis_open_underscore] = ACTIONS(4558), + [sym__strikeout_open] = ACTIONS(4558), + [sym__latex_span_start] = ACTIONS(4558), + [sym__single_quote_open] = ACTIONS(4558), + [sym__double_quote_open] = ACTIONS(4558), + [sym__superscript_open] = ACTIONS(4558), + [sym__subscript_open] = ACTIONS(4558), + [sym__subscript_close] = ACTIONS(4558), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4558), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4558), + [sym__cite_author_in_text] = ACTIONS(4558), + [sym__cite_suppress_author] = ACTIONS(4558), + [sym__shortcode_open_escaped] = ACTIONS(4558), + [sym__shortcode_open] = ACTIONS(4558), + [sym__unclosed_span] = ACTIONS(4558), + }, + [STATE(453)] = { + [sym__qmd_attribute] = STATE(912), + [sym_raw_attribute] = STATE(912), + [sym_commonmark_attribute] = STATE(912), + [sym_language_attribute] = STATE(912), + [sym__backslash_escape] = ACTIONS(4562), + [sym_entity_reference] = ACTIONS(4562), + [sym_numeric_character_reference] = ACTIONS(4562), + [anon_sym_LT] = ACTIONS(4564), + [anon_sym_GT] = ACTIONS(4562), + [anon_sym_BANG] = ACTIONS(4562), + [anon_sym_DQUOTE] = ACTIONS(4562), + [anon_sym_POUND] = ACTIONS(4562), + [anon_sym_DOLLAR] = ACTIONS(4562), + [anon_sym_PERCENT] = ACTIONS(4562), + [anon_sym_AMP] = ACTIONS(4564), + [anon_sym_SQUOTE] = ACTIONS(4562), + [anon_sym_STAR] = ACTIONS(4562), + [anon_sym_PLUS] = ACTIONS(4562), + [anon_sym_COMMA] = ACTIONS(4562), + [anon_sym_DASH] = ACTIONS(4564), + [anon_sym_DOT] = ACTIONS(4564), + [anon_sym_SLASH] = ACTIONS(4562), + [anon_sym_COLON] = ACTIONS(4562), + [anon_sym_SEMI] = ACTIONS(4562), + [anon_sym_EQ] = ACTIONS(4562), + [anon_sym_QMARK] = ACTIONS(4562), + [anon_sym_LBRACK] = ACTIONS(4564), + [anon_sym_BSLASH] = ACTIONS(4564), + [anon_sym_CARET] = ACTIONS(4564), + [anon_sym__] = ACTIONS(4562), + [anon_sym_BQUOTE] = ACTIONS(4562), + [anon_sym_LBRACE] = ACTIONS(4618), + [anon_sym_PIPE] = ACTIONS(4562), + [anon_sym_TILDE] = ACTIONS(4562), + [anon_sym_LPAREN] = ACTIONS(4562), + [anon_sym_RPAREN] = ACTIONS(4562), + [sym__newline_token] = ACTIONS(4562), + [aux_sym_insert_token1] = ACTIONS(4562), + [aux_sym_delete_token1] = ACTIONS(4562), + [aux_sym_highlight_token1] = ACTIONS(4562), + [aux_sym_edit_comment_token1] = ACTIONS(4562), + [anon_sym_CARET_LBRACK] = ACTIONS(4562), + [anon_sym_LBRACK_CARET] = ACTIONS(4562), + [sym_uri_autolink] = ACTIONS(4562), + [sym_email_autolink] = ACTIONS(4562), + [sym__whitespace_ge_2] = ACTIONS(4562), + [aux_sym__whitespace_token1] = ACTIONS(4564), + [sym__word_no_digit] = ACTIONS(4562), + [sym__digits] = ACTIONS(4562), + [anon_sym_DASH_DASH] = ACTIONS(4564), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4562), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4562), + [sym__code_span_start] = ACTIONS(4562), + [sym__emphasis_open_star] = ACTIONS(4562), + [sym__emphasis_open_underscore] = ACTIONS(4562), + [sym__strikeout_open] = ACTIONS(4562), + [sym__latex_span_start] = ACTIONS(4562), + [sym__single_quote_open] = ACTIONS(4562), + [sym__double_quote_open] = ACTIONS(4562), + [sym__superscript_open] = ACTIONS(4562), + [sym__subscript_open] = ACTIONS(4562), + [sym__subscript_close] = ACTIONS(4562), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4562), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4562), + [sym__cite_author_in_text] = ACTIONS(4562), + [sym__cite_suppress_author] = ACTIONS(4562), + [sym__shortcode_open_escaped] = ACTIONS(4562), + [sym__shortcode_open] = ACTIONS(4562), + [sym__unclosed_span] = ACTIONS(4562), + }, + [STATE(454)] = { + [sym__qmd_attribute] = STATE(945), + [sym_raw_attribute] = STATE(945), + [sym_commonmark_attribute] = STATE(945), + [sym_language_attribute] = STATE(945), + [sym__backslash_escape] = ACTIONS(4576), + [sym_entity_reference] = ACTIONS(4576), + [sym_numeric_character_reference] = ACTIONS(4576), + [anon_sym_LT] = ACTIONS(4578), + [anon_sym_GT] = ACTIONS(4576), + [anon_sym_BANG] = ACTIONS(4576), + [anon_sym_DQUOTE] = ACTIONS(4576), + [anon_sym_POUND] = ACTIONS(4576), + [anon_sym_DOLLAR] = ACTIONS(4576), + [anon_sym_PERCENT] = ACTIONS(4576), + [anon_sym_AMP] = ACTIONS(4578), + [anon_sym_SQUOTE] = ACTIONS(4576), + [anon_sym_STAR] = ACTIONS(4576), + [anon_sym_PLUS] = ACTIONS(4576), + [anon_sym_COMMA] = ACTIONS(4576), + [anon_sym_DASH] = ACTIONS(4578), + [anon_sym_DOT] = ACTIONS(4578), + [anon_sym_SLASH] = ACTIONS(4576), + [anon_sym_COLON] = ACTIONS(4576), + [anon_sym_SEMI] = ACTIONS(4576), + [anon_sym_EQ] = ACTIONS(4576), + [anon_sym_QMARK] = ACTIONS(4576), + [anon_sym_LBRACK] = ACTIONS(4578), + [anon_sym_BSLASH] = ACTIONS(4578), + [anon_sym_CARET] = ACTIONS(4578), + [anon_sym__] = ACTIONS(4576), + [anon_sym_BQUOTE] = ACTIONS(4576), + [anon_sym_LBRACE] = ACTIONS(4538), + [anon_sym_PIPE] = ACTIONS(4576), + [anon_sym_TILDE] = ACTIONS(4576), + [anon_sym_LPAREN] = ACTIONS(4622), + [anon_sym_RPAREN] = ACTIONS(4576), + [sym__newline_token] = ACTIONS(4576), + [aux_sym_insert_token1] = ACTIONS(4576), + [aux_sym_insert_token2] = ACTIONS(4576), + [aux_sym_delete_token1] = ACTIONS(4576), + [aux_sym_highlight_token1] = ACTIONS(4576), + [aux_sym_edit_comment_token1] = ACTIONS(4576), + [anon_sym_CARET_LBRACK] = ACTIONS(4576), + [anon_sym_LBRACK_CARET] = ACTIONS(4576), + [sym_uri_autolink] = ACTIONS(4576), + [sym_email_autolink] = ACTIONS(4576), + [sym__whitespace_ge_2] = ACTIONS(4578), + [aux_sym__whitespace_token1] = ACTIONS(4578), + [sym__word_no_digit] = ACTIONS(4576), + [sym__digits] = ACTIONS(4576), + [anon_sym_DASH_DASH] = ACTIONS(4578), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4576), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4576), + [sym__code_span_start] = ACTIONS(4576), + [sym__emphasis_open_star] = ACTIONS(4576), + [sym__emphasis_open_underscore] = ACTIONS(4576), + [sym__strikeout_open] = ACTIONS(4576), + [sym__latex_span_start] = ACTIONS(4576), + [sym__single_quote_open] = ACTIONS(4576), + [sym__double_quote_open] = ACTIONS(4576), + [sym__superscript_open] = ACTIONS(4576), + [sym__subscript_open] = ACTIONS(4576), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4576), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4576), + [sym__cite_author_in_text] = ACTIONS(4576), + [sym__cite_suppress_author] = ACTIONS(4576), + [sym__shortcode_open_escaped] = ACTIONS(4576), + [sym__shortcode_open] = ACTIONS(4576), + [sym__unclosed_span] = ACTIONS(4576), + }, + [STATE(455)] = { + [sym__qmd_attribute] = STATE(655), + [sym_raw_attribute] = STATE(655), + [sym_commonmark_attribute] = STATE(655), + [sym_language_attribute] = STATE(655), + [sym__backslash_escape] = ACTIONS(4584), + [sym_entity_reference] = ACTIONS(4584), + [sym_numeric_character_reference] = ACTIONS(4584), + [anon_sym_LT] = ACTIONS(4586), + [anon_sym_GT] = ACTIONS(4584), + [anon_sym_BANG] = ACTIONS(4584), + [anon_sym_DQUOTE] = ACTIONS(4584), + [anon_sym_POUND] = ACTIONS(4584), + [anon_sym_DOLLAR] = ACTIONS(4584), + [anon_sym_PERCENT] = ACTIONS(4584), + [anon_sym_AMP] = ACTIONS(4586), + [anon_sym_SQUOTE] = ACTIONS(4584), + [anon_sym_STAR] = ACTIONS(4584), + [anon_sym_PLUS] = ACTIONS(4584), + [anon_sym_COMMA] = ACTIONS(4584), + [anon_sym_DASH] = ACTIONS(4586), + [anon_sym_DOT] = ACTIONS(4586), + [anon_sym_SLASH] = ACTIONS(4584), + [anon_sym_COLON] = ACTIONS(4584), + [anon_sym_SEMI] = ACTIONS(4584), + [anon_sym_EQ] = ACTIONS(4584), + [anon_sym_QMARK] = ACTIONS(4584), + [anon_sym_LBRACK] = ACTIONS(4586), + [anon_sym_BSLASH] = ACTIONS(4586), + [anon_sym_CARET] = ACTIONS(4586), + [anon_sym__] = ACTIONS(4584), + [anon_sym_BQUOTE] = ACTIONS(4584), + [anon_sym_LBRACE] = ACTIONS(4538), + [anon_sym_PIPE] = ACTIONS(4584), + [anon_sym_TILDE] = ACTIONS(4584), + [anon_sym_LPAREN] = ACTIONS(4584), + [anon_sym_RPAREN] = ACTIONS(4584), + [sym__newline_token] = ACTIONS(4584), + [aux_sym_insert_token1] = ACTIONS(4584), + [aux_sym_insert_token2] = ACTIONS(4584), + [aux_sym_delete_token1] = ACTIONS(4584), + [aux_sym_highlight_token1] = ACTIONS(4584), + [aux_sym_edit_comment_token1] = ACTIONS(4584), + [anon_sym_CARET_LBRACK] = ACTIONS(4584), + [anon_sym_LBRACK_CARET] = ACTIONS(4584), + [sym_uri_autolink] = ACTIONS(4584), + [sym_email_autolink] = ACTIONS(4584), + [sym__whitespace_ge_2] = ACTIONS(4586), + [aux_sym__whitespace_token1] = ACTIONS(4586), + [sym__word_no_digit] = ACTIONS(4584), + [sym__digits] = ACTIONS(4584), + [anon_sym_DASH_DASH] = ACTIONS(4586), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4584), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4584), + [sym__code_span_start] = ACTIONS(4584), + [sym__emphasis_open_star] = ACTIONS(4584), + [sym__emphasis_open_underscore] = ACTIONS(4584), + [sym__strikeout_open] = ACTIONS(4584), + [sym__latex_span_start] = ACTIONS(4584), + [sym__single_quote_open] = ACTIONS(4584), + [sym__double_quote_open] = ACTIONS(4584), + [sym__superscript_open] = ACTIONS(4584), + [sym__subscript_open] = ACTIONS(4584), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4584), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4584), + [sym__cite_author_in_text] = ACTIONS(4584), + [sym__cite_suppress_author] = ACTIONS(4584), + [sym__shortcode_open_escaped] = ACTIONS(4584), + [sym__shortcode_open] = ACTIONS(4584), + [sym__unclosed_span] = ACTIONS(4584), + }, + [STATE(456)] = { + [sym__qmd_attribute] = STATE(1136), + [sym_raw_attribute] = STATE(1136), + [sym_commonmark_attribute] = STATE(1136), + [sym_language_attribute] = STATE(1136), + [sym__backslash_escape] = ACTIONS(4562), + [sym_entity_reference] = ACTIONS(4562), + [sym_numeric_character_reference] = ACTIONS(4562), + [anon_sym_LT] = ACTIONS(4564), + [anon_sym_GT] = ACTIONS(4562), + [anon_sym_BANG] = ACTIONS(4562), + [anon_sym_DQUOTE] = ACTIONS(4562), + [anon_sym_POUND] = ACTIONS(4562), + [anon_sym_DOLLAR] = ACTIONS(4562), + [anon_sym_PERCENT] = ACTIONS(4562), + [anon_sym_AMP] = ACTIONS(4564), + [anon_sym_SQUOTE] = ACTIONS(4562), + [anon_sym_STAR] = ACTIONS(4562), + [anon_sym_PLUS] = ACTIONS(4562), + [anon_sym_COMMA] = ACTIONS(4562), + [anon_sym_DASH] = ACTIONS(4564), + [anon_sym_DOT] = ACTIONS(4564), + [anon_sym_SLASH] = ACTIONS(4562), + [anon_sym_COLON] = ACTIONS(4562), + [anon_sym_SEMI] = ACTIONS(4562), + [anon_sym_EQ] = ACTIONS(4562), + [anon_sym_QMARK] = ACTIONS(4562), + [anon_sym_LBRACK] = ACTIONS(4564), + [anon_sym_BSLASH] = ACTIONS(4564), + [anon_sym_CARET] = ACTIONS(4564), + [anon_sym__] = ACTIONS(4562), + [anon_sym_BQUOTE] = ACTIONS(4562), + [anon_sym_LBRACE] = ACTIONS(4570), + [anon_sym_PIPE] = ACTIONS(4562), + [anon_sym_TILDE] = ACTIONS(4562), + [anon_sym_LPAREN] = ACTIONS(4562), + [anon_sym_RPAREN] = ACTIONS(4562), + [sym__newline_token] = ACTIONS(4562), + [aux_sym_insert_token1] = ACTIONS(4562), + [aux_sym_delete_token1] = ACTIONS(4562), + [aux_sym_highlight_token1] = ACTIONS(4562), + [aux_sym_edit_comment_token1] = ACTIONS(4562), + [anon_sym_CARET_LBRACK] = ACTIONS(4562), + [anon_sym_LBRACK_CARET] = ACTIONS(4562), + [sym_uri_autolink] = ACTIONS(4562), + [sym_email_autolink] = ACTIONS(4562), + [sym__whitespace_ge_2] = ACTIONS(4562), + [aux_sym__whitespace_token1] = ACTIONS(4564), + [sym__word_no_digit] = ACTIONS(4562), + [sym__digits] = ACTIONS(4562), + [anon_sym_DASH_DASH] = ACTIONS(4564), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4562), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4562), + [sym__code_span_start] = ACTIONS(4562), + [sym__emphasis_open_star] = ACTIONS(4562), + [sym__emphasis_open_underscore] = ACTIONS(4562), + [sym__emphasis_close_underscore] = ACTIONS(4562), + [sym__strikeout_open] = ACTIONS(4562), + [sym__latex_span_start] = ACTIONS(4562), + [sym__single_quote_open] = ACTIONS(4562), + [sym__double_quote_open] = ACTIONS(4562), + [sym__superscript_open] = ACTIONS(4562), + [sym__subscript_open] = ACTIONS(4562), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4562), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4562), + [sym__cite_author_in_text] = ACTIONS(4562), + [sym__cite_suppress_author] = ACTIONS(4562), + [sym__shortcode_open_escaped] = ACTIONS(4562), + [sym__shortcode_open] = ACTIONS(4562), + [sym__unclosed_span] = ACTIONS(4562), + }, + [STATE(457)] = { + [sym__qmd_attribute] = STATE(948), + [sym_raw_attribute] = STATE(948), + [sym_commonmark_attribute] = STATE(948), + [sym_language_attribute] = STATE(948), + [sym__backslash_escape] = ACTIONS(4592), + [sym_entity_reference] = ACTIONS(4592), + [sym_numeric_character_reference] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(4594), + [anon_sym_GT] = ACTIONS(4592), + [anon_sym_BANG] = ACTIONS(4592), + [anon_sym_DQUOTE] = ACTIONS(4592), + [anon_sym_POUND] = ACTIONS(4592), + [anon_sym_DOLLAR] = ACTIONS(4592), + [anon_sym_PERCENT] = ACTIONS(4592), + [anon_sym_AMP] = ACTIONS(4594), + [anon_sym_SQUOTE] = ACTIONS(4592), + [anon_sym_STAR] = ACTIONS(4592), + [anon_sym_PLUS] = ACTIONS(4592), + [anon_sym_COMMA] = ACTIONS(4592), + [anon_sym_DASH] = ACTIONS(4594), + [anon_sym_DOT] = ACTIONS(4594), + [anon_sym_SLASH] = ACTIONS(4592), + [anon_sym_COLON] = ACTIONS(4592), + [anon_sym_SEMI] = ACTIONS(4592), + [anon_sym_EQ] = ACTIONS(4592), + [anon_sym_QMARK] = ACTIONS(4592), + [anon_sym_LBRACK] = ACTIONS(4594), + [anon_sym_BSLASH] = ACTIONS(4594), + [anon_sym_RBRACK] = ACTIONS(4592), + [anon_sym_CARET] = ACTIONS(4594), + [anon_sym__] = ACTIONS(4592), + [anon_sym_BQUOTE] = ACTIONS(4592), + [anon_sym_LBRACE] = ACTIONS(4624), + [anon_sym_PIPE] = ACTIONS(4592), + [anon_sym_TILDE] = ACTIONS(4592), + [anon_sym_LPAREN] = ACTIONS(4592), + [anon_sym_RPAREN] = ACTIONS(4592), + [sym__newline_token] = ACTIONS(4592), + [aux_sym_insert_token1] = ACTIONS(4592), + [aux_sym_delete_token1] = ACTIONS(4592), + [aux_sym_highlight_token1] = ACTIONS(4592), + [aux_sym_edit_comment_token1] = ACTIONS(4592), + [anon_sym_CARET_LBRACK] = ACTIONS(4592), + [anon_sym_LBRACK_CARET] = ACTIONS(4592), + [sym_uri_autolink] = ACTIONS(4592), + [sym_email_autolink] = ACTIONS(4592), + [sym__whitespace_ge_2] = ACTIONS(4592), + [aux_sym__whitespace_token1] = ACTIONS(4594), + [sym__word_no_digit] = ACTIONS(4592), + [sym__digits] = ACTIONS(4592), + [anon_sym_DASH_DASH] = ACTIONS(4594), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4592), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4592), + [sym__code_span_start] = ACTIONS(4592), + [sym__emphasis_open_star] = ACTIONS(4592), + [sym__emphasis_open_underscore] = ACTIONS(4592), + [sym__strikeout_open] = ACTIONS(4592), + [sym__latex_span_start] = ACTIONS(4592), + [sym__single_quote_open] = ACTIONS(4592), + [sym__double_quote_open] = ACTIONS(4592), + [sym__superscript_open] = ACTIONS(4592), + [sym__subscript_open] = ACTIONS(4592), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4592), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4592), + [sym__cite_author_in_text] = ACTIONS(4592), + [sym__cite_suppress_author] = ACTIONS(4592), + [sym__shortcode_open_escaped] = ACTIONS(4592), + [sym__shortcode_open] = ACTIONS(4592), + [sym__unclosed_span] = ACTIONS(4592), + }, + [STATE(458)] = { + [sym__qmd_attribute] = STATE(961), + [sym_raw_attribute] = STATE(961), + [sym_commonmark_attribute] = STATE(961), + [sym_language_attribute] = STATE(961), + [sym__backslash_escape] = ACTIONS(4596), + [sym_entity_reference] = ACTIONS(4596), + [sym_numeric_character_reference] = ACTIONS(4596), + [anon_sym_LT] = ACTIONS(4598), + [anon_sym_GT] = ACTIONS(4596), + [anon_sym_BANG] = ACTIONS(4596), + [anon_sym_DQUOTE] = ACTIONS(4596), + [anon_sym_POUND] = ACTIONS(4596), + [anon_sym_DOLLAR] = ACTIONS(4596), + [anon_sym_PERCENT] = ACTIONS(4596), + [anon_sym_AMP] = ACTIONS(4598), + [anon_sym_SQUOTE] = ACTIONS(4596), + [anon_sym_STAR] = ACTIONS(4596), + [anon_sym_PLUS] = ACTIONS(4596), + [anon_sym_COMMA] = ACTIONS(4596), + [anon_sym_DASH] = ACTIONS(4598), + [anon_sym_DOT] = ACTIONS(4598), + [anon_sym_SLASH] = ACTIONS(4596), + [anon_sym_COLON] = ACTIONS(4596), + [anon_sym_SEMI] = ACTIONS(4596), + [anon_sym_EQ] = ACTIONS(4596), + [anon_sym_QMARK] = ACTIONS(4596), + [anon_sym_LBRACK] = ACTIONS(4598), + [anon_sym_BSLASH] = ACTIONS(4598), + [anon_sym_CARET] = ACTIONS(4598), + [anon_sym__] = ACTIONS(4596), + [anon_sym_BQUOTE] = ACTIONS(4596), + [anon_sym_LBRACE] = ACTIONS(4538), + [anon_sym_PIPE] = ACTIONS(4596), + [anon_sym_TILDE] = ACTIONS(4596), + [anon_sym_LPAREN] = ACTIONS(4596), + [anon_sym_RPAREN] = ACTIONS(4596), + [sym__newline_token] = ACTIONS(4596), + [aux_sym_insert_token1] = ACTIONS(4596), + [aux_sym_insert_token2] = ACTIONS(4596), + [aux_sym_delete_token1] = ACTIONS(4596), + [aux_sym_highlight_token1] = ACTIONS(4596), + [aux_sym_edit_comment_token1] = ACTIONS(4596), + [anon_sym_CARET_LBRACK] = ACTIONS(4596), + [anon_sym_LBRACK_CARET] = ACTIONS(4596), + [sym_uri_autolink] = ACTIONS(4596), + [sym_email_autolink] = ACTIONS(4596), + [sym__whitespace_ge_2] = ACTIONS(4598), + [aux_sym__whitespace_token1] = ACTIONS(4598), + [sym__word_no_digit] = ACTIONS(4596), + [sym__digits] = ACTIONS(4596), + [anon_sym_DASH_DASH] = ACTIONS(4598), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4596), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4596), + [sym__code_span_start] = ACTIONS(4596), + [sym__emphasis_open_star] = ACTIONS(4596), + [sym__emphasis_open_underscore] = ACTIONS(4596), + [sym__strikeout_open] = ACTIONS(4596), + [sym__latex_span_start] = ACTIONS(4596), + [sym__single_quote_open] = ACTIONS(4596), + [sym__double_quote_open] = ACTIONS(4596), + [sym__superscript_open] = ACTIONS(4596), + [sym__subscript_open] = ACTIONS(4596), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4596), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4596), + [sym__cite_author_in_text] = ACTIONS(4596), + [sym__cite_suppress_author] = ACTIONS(4596), + [sym__shortcode_open_escaped] = ACTIONS(4596), + [sym__shortcode_open] = ACTIONS(4596), + [sym__unclosed_span] = ACTIONS(4596), + }, + [STATE(459)] = { + [sym__qmd_attribute] = STATE(974), + [sym_raw_attribute] = STATE(974), + [sym_commonmark_attribute] = STATE(974), + [sym_language_attribute] = STATE(974), + [sym__backslash_escape] = ACTIONS(4600), + [sym_entity_reference] = ACTIONS(4600), + [sym_numeric_character_reference] = ACTIONS(4600), + [anon_sym_LT] = ACTIONS(4602), + [anon_sym_GT] = ACTIONS(4600), + [anon_sym_BANG] = ACTIONS(4600), + [anon_sym_DQUOTE] = ACTIONS(4600), + [anon_sym_POUND] = ACTIONS(4600), + [anon_sym_DOLLAR] = ACTIONS(4600), + [anon_sym_PERCENT] = ACTIONS(4600), + [anon_sym_AMP] = ACTIONS(4602), + [anon_sym_SQUOTE] = ACTIONS(4600), + [anon_sym_STAR] = ACTIONS(4600), + [anon_sym_PLUS] = ACTIONS(4600), + [anon_sym_COMMA] = ACTIONS(4600), + [anon_sym_DASH] = ACTIONS(4602), + [anon_sym_DOT] = ACTIONS(4602), + [anon_sym_SLASH] = ACTIONS(4600), + [anon_sym_COLON] = ACTIONS(4600), + [anon_sym_SEMI] = ACTIONS(4600), + [anon_sym_EQ] = ACTIONS(4600), + [anon_sym_QMARK] = ACTIONS(4600), + [anon_sym_LBRACK] = ACTIONS(4602), + [anon_sym_BSLASH] = ACTIONS(4602), + [anon_sym_RBRACK] = ACTIONS(4600), + [anon_sym_CARET] = ACTIONS(4602), + [anon_sym__] = ACTIONS(4600), + [anon_sym_BQUOTE] = ACTIONS(4600), + [anon_sym_LBRACE] = ACTIONS(4624), + [anon_sym_PIPE] = ACTIONS(4600), + [anon_sym_TILDE] = ACTIONS(4600), + [anon_sym_LPAREN] = ACTIONS(4600), + [anon_sym_RPAREN] = ACTIONS(4600), + [sym__newline_token] = ACTIONS(4600), + [aux_sym_insert_token1] = ACTIONS(4600), + [aux_sym_delete_token1] = ACTIONS(4600), + [aux_sym_highlight_token1] = ACTIONS(4600), + [aux_sym_edit_comment_token1] = ACTIONS(4600), + [anon_sym_CARET_LBRACK] = ACTIONS(4600), + [anon_sym_LBRACK_CARET] = ACTIONS(4600), + [sym_uri_autolink] = ACTIONS(4600), + [sym_email_autolink] = ACTIONS(4600), + [sym__whitespace_ge_2] = ACTIONS(4600), + [aux_sym__whitespace_token1] = ACTIONS(4602), + [sym__word_no_digit] = ACTIONS(4600), + [sym__digits] = ACTIONS(4600), + [anon_sym_DASH_DASH] = ACTIONS(4602), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4600), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4600), + [sym__code_span_start] = ACTIONS(4600), + [sym__emphasis_open_star] = ACTIONS(4600), + [sym__emphasis_open_underscore] = ACTIONS(4600), + [sym__strikeout_open] = ACTIONS(4600), + [sym__latex_span_start] = ACTIONS(4600), + [sym__single_quote_open] = ACTIONS(4600), + [sym__double_quote_open] = ACTIONS(4600), + [sym__superscript_open] = ACTIONS(4600), + [sym__subscript_open] = ACTIONS(4600), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4600), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4600), + [sym__cite_author_in_text] = ACTIONS(4600), + [sym__cite_suppress_author] = ACTIONS(4600), + [sym__shortcode_open_escaped] = ACTIONS(4600), + [sym__shortcode_open] = ACTIONS(4600), + [sym__unclosed_span] = ACTIONS(4600), + }, + [STATE(460)] = { + [sym__qmd_attribute] = STATE(983), + [sym_raw_attribute] = STATE(983), + [sym_commonmark_attribute] = STATE(983), + [sym_language_attribute] = STATE(983), + [sym__backslash_escape] = ACTIONS(4606), + [sym_entity_reference] = ACTIONS(4606), + [sym_numeric_character_reference] = ACTIONS(4606), + [anon_sym_LT] = ACTIONS(4608), + [anon_sym_GT] = ACTIONS(4606), + [anon_sym_BANG] = ACTIONS(4606), + [anon_sym_DQUOTE] = ACTIONS(4606), + [anon_sym_POUND] = ACTIONS(4606), + [anon_sym_DOLLAR] = ACTIONS(4606), + [anon_sym_PERCENT] = ACTIONS(4606), + [anon_sym_AMP] = ACTIONS(4608), + [anon_sym_SQUOTE] = ACTIONS(4606), + [anon_sym_STAR] = ACTIONS(4606), + [anon_sym_PLUS] = ACTIONS(4606), + [anon_sym_COMMA] = ACTIONS(4606), + [anon_sym_DASH] = ACTIONS(4608), + [anon_sym_DOT] = ACTIONS(4608), + [anon_sym_SLASH] = ACTIONS(4606), + [anon_sym_COLON] = ACTIONS(4606), + [anon_sym_SEMI] = ACTIONS(4606), + [anon_sym_EQ] = ACTIONS(4606), + [anon_sym_QMARK] = ACTIONS(4606), + [anon_sym_LBRACK] = ACTIONS(4608), + [anon_sym_BSLASH] = ACTIONS(4608), + [anon_sym_CARET] = ACTIONS(4608), + [anon_sym__] = ACTIONS(4606), + [anon_sym_BQUOTE] = ACTIONS(4606), + [anon_sym_LBRACE] = ACTIONS(4538), + [anon_sym_PIPE] = ACTIONS(4606), + [anon_sym_TILDE] = ACTIONS(4606), + [anon_sym_LPAREN] = ACTIONS(4606), + [anon_sym_RPAREN] = ACTIONS(4606), + [sym__newline_token] = ACTIONS(4606), + [aux_sym_insert_token1] = ACTIONS(4606), + [aux_sym_insert_token2] = ACTIONS(4606), + [aux_sym_delete_token1] = ACTIONS(4606), + [aux_sym_highlight_token1] = ACTIONS(4606), + [aux_sym_edit_comment_token1] = ACTIONS(4606), + [anon_sym_CARET_LBRACK] = ACTIONS(4606), + [anon_sym_LBRACK_CARET] = ACTIONS(4606), + [sym_uri_autolink] = ACTIONS(4606), + [sym_email_autolink] = ACTIONS(4606), + [sym__whitespace_ge_2] = ACTIONS(4608), + [aux_sym__whitespace_token1] = ACTIONS(4608), + [sym__word_no_digit] = ACTIONS(4606), + [sym__digits] = ACTIONS(4606), + [anon_sym_DASH_DASH] = ACTIONS(4608), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4606), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4606), + [sym__code_span_start] = ACTIONS(4606), + [sym__emphasis_open_star] = ACTIONS(4606), + [sym__emphasis_open_underscore] = ACTIONS(4606), + [sym__strikeout_open] = ACTIONS(4606), + [sym__latex_span_start] = ACTIONS(4606), + [sym__single_quote_open] = ACTIONS(4606), + [sym__double_quote_open] = ACTIONS(4606), + [sym__superscript_open] = ACTIONS(4606), + [sym__subscript_open] = ACTIONS(4606), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4606), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4606), + [sym__cite_author_in_text] = ACTIONS(4606), + [sym__cite_suppress_author] = ACTIONS(4606), + [sym__shortcode_open_escaped] = ACTIONS(4606), + [sym__shortcode_open] = ACTIONS(4606), + [sym__unclosed_span] = ACTIONS(4606), + }, + [STATE(461)] = { + [sym__qmd_attribute] = STATE(985), + [sym_raw_attribute] = STATE(985), + [sym_commonmark_attribute] = STATE(985), + [sym_language_attribute] = STATE(985), + [sym__backslash_escape] = ACTIONS(4610), + [sym_entity_reference] = ACTIONS(4610), + [sym_numeric_character_reference] = ACTIONS(4610), + [anon_sym_LT] = ACTIONS(4612), + [anon_sym_GT] = ACTIONS(4610), + [anon_sym_BANG] = ACTIONS(4610), + [anon_sym_DQUOTE] = ACTIONS(4610), + [anon_sym_POUND] = ACTIONS(4610), + [anon_sym_DOLLAR] = ACTIONS(4610), + [anon_sym_PERCENT] = ACTIONS(4610), + [anon_sym_AMP] = ACTIONS(4612), + [anon_sym_SQUOTE] = ACTIONS(4610), + [anon_sym_STAR] = ACTIONS(4610), + [anon_sym_PLUS] = ACTIONS(4610), + [anon_sym_COMMA] = ACTIONS(4610), + [anon_sym_DASH] = ACTIONS(4612), + [anon_sym_DOT] = ACTIONS(4612), + [anon_sym_SLASH] = ACTIONS(4610), + [anon_sym_COLON] = ACTIONS(4610), + [anon_sym_SEMI] = ACTIONS(4610), + [anon_sym_EQ] = ACTIONS(4610), + [anon_sym_QMARK] = ACTIONS(4610), + [anon_sym_LBRACK] = ACTIONS(4612), + [anon_sym_BSLASH] = ACTIONS(4612), + [anon_sym_RBRACK] = ACTIONS(4610), + [anon_sym_CARET] = ACTIONS(4612), + [anon_sym__] = ACTIONS(4610), + [anon_sym_BQUOTE] = ACTIONS(4610), + [anon_sym_LBRACE] = ACTIONS(4624), + [anon_sym_PIPE] = ACTIONS(4610), + [anon_sym_TILDE] = ACTIONS(4610), + [anon_sym_LPAREN] = ACTIONS(4610), + [anon_sym_RPAREN] = ACTIONS(4610), + [sym__newline_token] = ACTIONS(4610), + [aux_sym_insert_token1] = ACTIONS(4610), + [aux_sym_delete_token1] = ACTIONS(4610), + [aux_sym_highlight_token1] = ACTIONS(4610), + [aux_sym_edit_comment_token1] = ACTIONS(4610), + [anon_sym_CARET_LBRACK] = ACTIONS(4610), + [anon_sym_LBRACK_CARET] = ACTIONS(4610), + [sym_uri_autolink] = ACTIONS(4610), + [sym_email_autolink] = ACTIONS(4610), + [sym__whitespace_ge_2] = ACTIONS(4610), + [aux_sym__whitespace_token1] = ACTIONS(4612), + [sym__word_no_digit] = ACTIONS(4610), + [sym__digits] = ACTIONS(4610), + [anon_sym_DASH_DASH] = ACTIONS(4612), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4610), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4610), + [sym__code_span_start] = ACTIONS(4610), + [sym__emphasis_open_star] = ACTIONS(4610), + [sym__emphasis_open_underscore] = ACTIONS(4610), + [sym__strikeout_open] = ACTIONS(4610), + [sym__latex_span_start] = ACTIONS(4610), + [sym__single_quote_open] = ACTIONS(4610), + [sym__double_quote_open] = ACTIONS(4610), + [sym__superscript_open] = ACTIONS(4610), + [sym__subscript_open] = ACTIONS(4610), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4610), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4610), + [sym__cite_author_in_text] = ACTIONS(4610), + [sym__cite_suppress_author] = ACTIONS(4610), + [sym__shortcode_open_escaped] = ACTIONS(4610), + [sym__shortcode_open] = ACTIONS(4610), + [sym__unclosed_span] = ACTIONS(4610), + }, + [STATE(462)] = { + [sym__qmd_attribute] = STATE(992), + [sym_raw_attribute] = STATE(992), + [sym_commonmark_attribute] = STATE(992), + [sym_language_attribute] = STATE(992), + [sym__backslash_escape] = ACTIONS(4566), + [sym_entity_reference] = ACTIONS(4566), + [sym_numeric_character_reference] = ACTIONS(4566), + [anon_sym_LT] = ACTIONS(4568), + [anon_sym_GT] = ACTIONS(4566), + [anon_sym_BANG] = ACTIONS(4566), + [anon_sym_DQUOTE] = ACTIONS(4566), + [anon_sym_POUND] = ACTIONS(4566), + [anon_sym_DOLLAR] = ACTIONS(4566), + [anon_sym_PERCENT] = ACTIONS(4566), + [anon_sym_AMP] = ACTIONS(4568), + [anon_sym_SQUOTE] = ACTIONS(4566), + [anon_sym_STAR] = ACTIONS(4566), + [anon_sym_PLUS] = ACTIONS(4566), + [anon_sym_COMMA] = ACTIONS(4566), + [anon_sym_DASH] = ACTIONS(4568), + [anon_sym_DOT] = ACTIONS(4568), + [anon_sym_SLASH] = ACTIONS(4566), + [anon_sym_COLON] = ACTIONS(4566), + [anon_sym_SEMI] = ACTIONS(4566), + [anon_sym_EQ] = ACTIONS(4566), + [anon_sym_QMARK] = ACTIONS(4566), + [anon_sym_LBRACK] = ACTIONS(4568), + [anon_sym_BSLASH] = ACTIONS(4568), + [anon_sym_CARET] = ACTIONS(4568), + [anon_sym__] = ACTIONS(4566), + [anon_sym_BQUOTE] = ACTIONS(4566), + [anon_sym_LBRACE] = ACTIONS(4538), + [anon_sym_PIPE] = ACTIONS(4566), + [anon_sym_TILDE] = ACTIONS(4566), + [anon_sym_LPAREN] = ACTIONS(4566), + [anon_sym_RPAREN] = ACTIONS(4566), + [sym__newline_token] = ACTIONS(4566), + [aux_sym_insert_token1] = ACTIONS(4566), + [aux_sym_insert_token2] = ACTIONS(4566), + [aux_sym_delete_token1] = ACTIONS(4566), + [aux_sym_highlight_token1] = ACTIONS(4566), + [aux_sym_edit_comment_token1] = ACTIONS(4566), + [anon_sym_CARET_LBRACK] = ACTIONS(4566), + [anon_sym_LBRACK_CARET] = ACTIONS(4566), + [sym_uri_autolink] = ACTIONS(4566), + [sym_email_autolink] = ACTIONS(4566), + [sym__whitespace_ge_2] = ACTIONS(4568), + [aux_sym__whitespace_token1] = ACTIONS(4568), + [sym__word_no_digit] = ACTIONS(4566), + [sym__digits] = ACTIONS(4566), + [anon_sym_DASH_DASH] = ACTIONS(4568), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4566), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4566), + [sym__code_span_start] = ACTIONS(4566), + [sym__emphasis_open_star] = ACTIONS(4566), + [sym__emphasis_open_underscore] = ACTIONS(4566), + [sym__strikeout_open] = ACTIONS(4566), + [sym__latex_span_start] = ACTIONS(4566), + [sym__single_quote_open] = ACTIONS(4566), + [sym__double_quote_open] = ACTIONS(4566), + [sym__superscript_open] = ACTIONS(4566), + [sym__subscript_open] = ACTIONS(4566), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4566), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4566), + [sym__cite_author_in_text] = ACTIONS(4566), + [sym__cite_suppress_author] = ACTIONS(4566), + [sym__shortcode_open_escaped] = ACTIONS(4566), + [sym__shortcode_open] = ACTIONS(4566), + [sym__unclosed_span] = ACTIONS(4566), + }, + [STATE(463)] = { + [sym__qmd_attribute] = STATE(994), + [sym_raw_attribute] = STATE(994), + [sym_commonmark_attribute] = STATE(994), + [sym_language_attribute] = STATE(994), + [sym__backslash_escape] = ACTIONS(4572), + [sym_entity_reference] = ACTIONS(4572), + [sym_numeric_character_reference] = ACTIONS(4572), + [anon_sym_LT] = ACTIONS(4574), + [anon_sym_GT] = ACTIONS(4572), + [anon_sym_BANG] = ACTIONS(4572), + [anon_sym_DQUOTE] = ACTIONS(4572), + [anon_sym_POUND] = ACTIONS(4572), + [anon_sym_DOLLAR] = ACTIONS(4572), + [anon_sym_PERCENT] = ACTIONS(4572), + [anon_sym_AMP] = ACTIONS(4574), + [anon_sym_SQUOTE] = ACTIONS(4572), + [anon_sym_STAR] = ACTIONS(4572), + [anon_sym_PLUS] = ACTIONS(4572), + [anon_sym_COMMA] = ACTIONS(4572), + [anon_sym_DASH] = ACTIONS(4574), + [anon_sym_DOT] = ACTIONS(4574), + [anon_sym_SLASH] = ACTIONS(4572), + [anon_sym_COLON] = ACTIONS(4572), + [anon_sym_SEMI] = ACTIONS(4572), + [anon_sym_EQ] = ACTIONS(4572), + [anon_sym_QMARK] = ACTIONS(4572), + [anon_sym_LBRACK] = ACTIONS(4574), + [anon_sym_BSLASH] = ACTIONS(4574), + [anon_sym_RBRACK] = ACTIONS(4572), + [anon_sym_CARET] = ACTIONS(4574), + [anon_sym__] = ACTIONS(4572), + [anon_sym_BQUOTE] = ACTIONS(4572), + [anon_sym_LBRACE] = ACTIONS(4624), + [anon_sym_PIPE] = ACTIONS(4572), + [anon_sym_TILDE] = ACTIONS(4572), + [anon_sym_LPAREN] = ACTIONS(4572), + [anon_sym_RPAREN] = ACTIONS(4572), + [sym__newline_token] = ACTIONS(4572), + [aux_sym_insert_token1] = ACTIONS(4572), + [aux_sym_delete_token1] = ACTIONS(4572), + [aux_sym_highlight_token1] = ACTIONS(4572), + [aux_sym_edit_comment_token1] = ACTIONS(4572), + [anon_sym_CARET_LBRACK] = ACTIONS(4572), + [anon_sym_LBRACK_CARET] = ACTIONS(4572), + [sym_uri_autolink] = ACTIONS(4572), + [sym_email_autolink] = ACTIONS(4572), + [sym__whitespace_ge_2] = ACTIONS(4572), + [aux_sym__whitespace_token1] = ACTIONS(4574), + [sym__word_no_digit] = ACTIONS(4572), + [sym__digits] = ACTIONS(4572), + [anon_sym_DASH_DASH] = ACTIONS(4574), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4572), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4572), + [sym__code_span_start] = ACTIONS(4572), + [sym__emphasis_open_star] = ACTIONS(4572), + [sym__emphasis_open_underscore] = ACTIONS(4572), + [sym__strikeout_open] = ACTIONS(4572), + [sym__latex_span_start] = ACTIONS(4572), + [sym__single_quote_open] = ACTIONS(4572), + [sym__double_quote_open] = ACTIONS(4572), + [sym__superscript_open] = ACTIONS(4572), + [sym__subscript_open] = ACTIONS(4572), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4572), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4572), + [sym__cite_author_in_text] = ACTIONS(4572), + [sym__cite_suppress_author] = ACTIONS(4572), + [sym__shortcode_open_escaped] = ACTIONS(4572), + [sym__shortcode_open] = ACTIONS(4572), + [sym__unclosed_span] = ACTIONS(4572), + }, + [STATE(464)] = { + [sym__qmd_attribute] = STATE(1000), + [sym_raw_attribute] = STATE(1000), + [sym_commonmark_attribute] = STATE(1000), + [sym_language_attribute] = STATE(1000), + [sym__backslash_escape] = ACTIONS(4588), + [sym_entity_reference] = ACTIONS(4588), + [sym_numeric_character_reference] = ACTIONS(4588), + [anon_sym_LT] = ACTIONS(4590), + [anon_sym_GT] = ACTIONS(4588), + [anon_sym_BANG] = ACTIONS(4588), + [anon_sym_DQUOTE] = ACTIONS(4588), + [anon_sym_POUND] = ACTIONS(4588), + [anon_sym_DOLLAR] = ACTIONS(4588), + [anon_sym_PERCENT] = ACTIONS(4588), + [anon_sym_AMP] = ACTIONS(4590), + [anon_sym_SQUOTE] = ACTIONS(4588), + [anon_sym_STAR] = ACTIONS(4588), + [anon_sym_PLUS] = ACTIONS(4588), + [anon_sym_COMMA] = ACTIONS(4588), + [anon_sym_DASH] = ACTIONS(4590), + [anon_sym_DOT] = ACTIONS(4590), + [anon_sym_SLASH] = ACTIONS(4588), + [anon_sym_COLON] = ACTIONS(4588), + [anon_sym_SEMI] = ACTIONS(4588), + [anon_sym_EQ] = ACTIONS(4588), + [anon_sym_QMARK] = ACTIONS(4588), + [anon_sym_LBRACK] = ACTIONS(4590), + [anon_sym_BSLASH] = ACTIONS(4590), + [anon_sym_CARET] = ACTIONS(4590), + [anon_sym__] = ACTIONS(4588), + [anon_sym_BQUOTE] = ACTIONS(4588), + [anon_sym_LBRACE] = ACTIONS(4538), + [anon_sym_PIPE] = ACTIONS(4588), + [anon_sym_TILDE] = ACTIONS(4588), + [anon_sym_LPAREN] = ACTIONS(4588), + [anon_sym_RPAREN] = ACTIONS(4588), + [sym__newline_token] = ACTIONS(4588), + [aux_sym_insert_token1] = ACTIONS(4588), + [aux_sym_insert_token2] = ACTIONS(4588), + [aux_sym_delete_token1] = ACTIONS(4588), + [aux_sym_highlight_token1] = ACTIONS(4588), + [aux_sym_edit_comment_token1] = ACTIONS(4588), + [anon_sym_CARET_LBRACK] = ACTIONS(4588), + [anon_sym_LBRACK_CARET] = ACTIONS(4588), + [sym_uri_autolink] = ACTIONS(4588), + [sym_email_autolink] = ACTIONS(4588), + [sym__whitespace_ge_2] = ACTIONS(4590), + [aux_sym__whitespace_token1] = ACTIONS(4590), + [sym__word_no_digit] = ACTIONS(4588), + [sym__digits] = ACTIONS(4588), + [anon_sym_DASH_DASH] = ACTIONS(4590), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4588), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4588), + [sym__code_span_start] = ACTIONS(4588), + [sym__emphasis_open_star] = ACTIONS(4588), + [sym__emphasis_open_underscore] = ACTIONS(4588), + [sym__strikeout_open] = ACTIONS(4588), + [sym__latex_span_start] = ACTIONS(4588), + [sym__single_quote_open] = ACTIONS(4588), + [sym__double_quote_open] = ACTIONS(4588), + [sym__superscript_open] = ACTIONS(4588), + [sym__subscript_open] = ACTIONS(4588), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4588), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4588), + [sym__cite_author_in_text] = ACTIONS(4588), + [sym__cite_suppress_author] = ACTIONS(4588), + [sym__shortcode_open_escaped] = ACTIONS(4588), + [sym__shortcode_open] = ACTIONS(4588), + [sym__unclosed_span] = ACTIONS(4588), + }, + [STATE(465)] = { + [sym__qmd_attribute] = STATE(1002), + [sym_raw_attribute] = STATE(1002), + [sym_commonmark_attribute] = STATE(1002), + [sym_language_attribute] = STATE(1002), + [sym__backslash_escape] = ACTIONS(4540), + [sym_entity_reference] = ACTIONS(4540), + [sym_numeric_character_reference] = ACTIONS(4540), + [anon_sym_LT] = ACTIONS(4542), + [anon_sym_GT] = ACTIONS(4540), + [anon_sym_BANG] = ACTIONS(4540), + [anon_sym_DQUOTE] = ACTIONS(4540), + [anon_sym_POUND] = ACTIONS(4540), + [anon_sym_DOLLAR] = ACTIONS(4540), + [anon_sym_PERCENT] = ACTIONS(4540), + [anon_sym_AMP] = ACTIONS(4542), + [anon_sym_SQUOTE] = ACTIONS(4540), + [anon_sym_STAR] = ACTIONS(4540), + [anon_sym_PLUS] = ACTIONS(4540), + [anon_sym_COMMA] = ACTIONS(4540), + [anon_sym_DASH] = ACTIONS(4542), + [anon_sym_DOT] = ACTIONS(4542), + [anon_sym_SLASH] = ACTIONS(4540), + [anon_sym_COLON] = ACTIONS(4540), + [anon_sym_SEMI] = ACTIONS(4540), + [anon_sym_EQ] = ACTIONS(4540), + [anon_sym_QMARK] = ACTIONS(4540), + [anon_sym_LBRACK] = ACTIONS(4542), + [anon_sym_BSLASH] = ACTIONS(4542), + [anon_sym_RBRACK] = ACTIONS(4540), + [anon_sym_CARET] = ACTIONS(4542), + [anon_sym__] = ACTIONS(4540), + [anon_sym_BQUOTE] = ACTIONS(4540), + [anon_sym_LBRACE] = ACTIONS(4624), + [anon_sym_PIPE] = ACTIONS(4540), + [anon_sym_TILDE] = ACTIONS(4540), + [anon_sym_LPAREN] = ACTIONS(4540), + [anon_sym_RPAREN] = ACTIONS(4540), + [sym__newline_token] = ACTIONS(4540), + [aux_sym_insert_token1] = ACTIONS(4540), + [aux_sym_delete_token1] = ACTIONS(4540), + [aux_sym_highlight_token1] = ACTIONS(4540), + [aux_sym_edit_comment_token1] = ACTIONS(4540), + [anon_sym_CARET_LBRACK] = ACTIONS(4540), + [anon_sym_LBRACK_CARET] = ACTIONS(4540), + [sym_uri_autolink] = ACTIONS(4540), + [sym_email_autolink] = ACTIONS(4540), + [sym__whitespace_ge_2] = ACTIONS(4540), + [aux_sym__whitespace_token1] = ACTIONS(4542), + [sym__word_no_digit] = ACTIONS(4540), + [sym__digits] = ACTIONS(4540), + [anon_sym_DASH_DASH] = ACTIONS(4542), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4540), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4540), + [sym__code_span_start] = ACTIONS(4540), + [sym__emphasis_open_star] = ACTIONS(4540), + [sym__emphasis_open_underscore] = ACTIONS(4540), + [sym__strikeout_open] = ACTIONS(4540), + [sym__latex_span_start] = ACTIONS(4540), + [sym__single_quote_open] = ACTIONS(4540), + [sym__double_quote_open] = ACTIONS(4540), + [sym__superscript_open] = ACTIONS(4540), + [sym__subscript_open] = ACTIONS(4540), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4540), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4540), + [sym__cite_author_in_text] = ACTIONS(4540), + [sym__cite_suppress_author] = ACTIONS(4540), + [sym__shortcode_open_escaped] = ACTIONS(4540), + [sym__shortcode_open] = ACTIONS(4540), + [sym__unclosed_span] = ACTIONS(4540), + }, + [STATE(466)] = { + [sym__qmd_attribute] = STATE(1204), + [sym_raw_attribute] = STATE(1204), + [sym_commonmark_attribute] = STATE(1204), + [sym_language_attribute] = STATE(1204), + [sym__backslash_escape] = ACTIONS(4600), + [sym_entity_reference] = ACTIONS(4600), + [sym_numeric_character_reference] = ACTIONS(4600), + [anon_sym_LT] = ACTIONS(4602), + [anon_sym_GT] = ACTIONS(4600), + [anon_sym_BANG] = ACTIONS(4600), + [anon_sym_DQUOTE] = ACTIONS(4600), + [anon_sym_POUND] = ACTIONS(4600), + [anon_sym_DOLLAR] = ACTIONS(4600), + [anon_sym_PERCENT] = ACTIONS(4600), + [anon_sym_AMP] = ACTIONS(4602), + [anon_sym_SQUOTE] = ACTIONS(4600), + [anon_sym_STAR] = ACTIONS(4600), + [anon_sym_PLUS] = ACTIONS(4600), + [anon_sym_COMMA] = ACTIONS(4600), + [anon_sym_DASH] = ACTIONS(4602), + [anon_sym_DOT] = ACTIONS(4602), + [anon_sym_SLASH] = ACTIONS(4600), + [anon_sym_COLON] = ACTIONS(4600), + [anon_sym_SEMI] = ACTIONS(4600), + [anon_sym_EQ] = ACTIONS(4600), + [anon_sym_QMARK] = ACTIONS(4600), + [anon_sym_LBRACK] = ACTIONS(4602), + [anon_sym_BSLASH] = ACTIONS(4602), + [anon_sym_CARET] = ACTIONS(4602), + [anon_sym__] = ACTIONS(4600), + [anon_sym_BQUOTE] = ACTIONS(4600), + [anon_sym_LBRACE] = ACTIONS(4570), + [anon_sym_PIPE] = ACTIONS(4600), + [anon_sym_TILDE] = ACTIONS(4600), + [anon_sym_LPAREN] = ACTIONS(4600), + [anon_sym_RPAREN] = ACTIONS(4600), + [sym__newline_token] = ACTIONS(4600), + [aux_sym_insert_token1] = ACTIONS(4600), + [aux_sym_delete_token1] = ACTIONS(4600), + [aux_sym_highlight_token1] = ACTIONS(4600), + [aux_sym_edit_comment_token1] = ACTIONS(4600), + [anon_sym_CARET_LBRACK] = ACTIONS(4600), + [anon_sym_LBRACK_CARET] = ACTIONS(4600), + [sym_uri_autolink] = ACTIONS(4600), + [sym_email_autolink] = ACTIONS(4600), + [sym__whitespace_ge_2] = ACTIONS(4600), + [aux_sym__whitespace_token1] = ACTIONS(4602), + [sym__word_no_digit] = ACTIONS(4600), + [sym__digits] = ACTIONS(4600), + [anon_sym_DASH_DASH] = ACTIONS(4602), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4600), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4600), + [sym__code_span_start] = ACTIONS(4600), + [sym__emphasis_open_star] = ACTIONS(4600), + [sym__emphasis_open_underscore] = ACTIONS(4600), + [sym__emphasis_close_underscore] = ACTIONS(4600), + [sym__strikeout_open] = ACTIONS(4600), + [sym__latex_span_start] = ACTIONS(4600), + [sym__single_quote_open] = ACTIONS(4600), + [sym__double_quote_open] = ACTIONS(4600), + [sym__superscript_open] = ACTIONS(4600), + [sym__subscript_open] = ACTIONS(4600), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4600), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4600), + [sym__cite_author_in_text] = ACTIONS(4600), + [sym__cite_suppress_author] = ACTIONS(4600), + [sym__shortcode_open_escaped] = ACTIONS(4600), + [sym__shortcode_open] = ACTIONS(4600), + [sym__unclosed_span] = ACTIONS(4600), + }, + [STATE(467)] = { + [sym__qmd_attribute] = STATE(1008), + [sym_raw_attribute] = STATE(1008), + [sym_commonmark_attribute] = STATE(1008), + [sym_language_attribute] = STATE(1008), + [sym__backslash_escape] = ACTIONS(4546), + [sym_entity_reference] = ACTIONS(4546), + [sym_numeric_character_reference] = ACTIONS(4546), + [anon_sym_LT] = ACTIONS(4548), + [anon_sym_GT] = ACTIONS(4546), + [anon_sym_BANG] = ACTIONS(4546), + [anon_sym_DQUOTE] = ACTIONS(4546), + [anon_sym_POUND] = ACTIONS(4546), + [anon_sym_DOLLAR] = ACTIONS(4546), + [anon_sym_PERCENT] = ACTIONS(4546), + [anon_sym_AMP] = ACTIONS(4548), + [anon_sym_SQUOTE] = ACTIONS(4546), + [anon_sym_STAR] = ACTIONS(4546), + [anon_sym_PLUS] = ACTIONS(4546), + [anon_sym_COMMA] = ACTIONS(4546), + [anon_sym_DASH] = ACTIONS(4548), + [anon_sym_DOT] = ACTIONS(4548), + [anon_sym_SLASH] = ACTIONS(4546), + [anon_sym_COLON] = ACTIONS(4546), + [anon_sym_SEMI] = ACTIONS(4546), + [anon_sym_EQ] = ACTIONS(4546), + [anon_sym_QMARK] = ACTIONS(4546), + [anon_sym_LBRACK] = ACTIONS(4548), + [anon_sym_BSLASH] = ACTIONS(4548), + [anon_sym_RBRACK] = ACTIONS(4546), + [anon_sym_CARET] = ACTIONS(4548), + [anon_sym__] = ACTIONS(4546), + [anon_sym_BQUOTE] = ACTIONS(4546), + [anon_sym_LBRACE] = ACTIONS(4624), + [anon_sym_PIPE] = ACTIONS(4546), + [anon_sym_TILDE] = ACTIONS(4546), + [anon_sym_LPAREN] = ACTIONS(4546), + [anon_sym_RPAREN] = ACTIONS(4546), + [sym__newline_token] = ACTIONS(4546), + [aux_sym_insert_token1] = ACTIONS(4546), + [aux_sym_delete_token1] = ACTIONS(4546), + [aux_sym_highlight_token1] = ACTIONS(4546), + [aux_sym_edit_comment_token1] = ACTIONS(4546), + [anon_sym_CARET_LBRACK] = ACTIONS(4546), + [anon_sym_LBRACK_CARET] = ACTIONS(4546), + [sym_uri_autolink] = ACTIONS(4546), + [sym_email_autolink] = ACTIONS(4546), + [sym__whitespace_ge_2] = ACTIONS(4546), + [aux_sym__whitespace_token1] = ACTIONS(4548), + [sym__word_no_digit] = ACTIONS(4546), + [sym__digits] = ACTIONS(4546), + [anon_sym_DASH_DASH] = ACTIONS(4548), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4546), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4546), + [sym__code_span_start] = ACTIONS(4546), + [sym__emphasis_open_star] = ACTIONS(4546), + [sym__emphasis_open_underscore] = ACTIONS(4546), + [sym__strikeout_open] = ACTIONS(4546), + [sym__latex_span_start] = ACTIONS(4546), + [sym__single_quote_open] = ACTIONS(4546), + [sym__double_quote_open] = ACTIONS(4546), + [sym__superscript_open] = ACTIONS(4546), + [sym__subscript_open] = ACTIONS(4546), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4546), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4546), + [sym__cite_author_in_text] = ACTIONS(4546), + [sym__cite_suppress_author] = ACTIONS(4546), + [sym__shortcode_open_escaped] = ACTIONS(4546), + [sym__shortcode_open] = ACTIONS(4546), + [sym__unclosed_span] = ACTIONS(4546), + }, + [STATE(468)] = { + [sym__qmd_attribute] = STATE(1010), + [sym_raw_attribute] = STATE(1010), + [sym_commonmark_attribute] = STATE(1010), + [sym_language_attribute] = STATE(1010), + [sym__backslash_escape] = ACTIONS(4550), + [sym_entity_reference] = ACTIONS(4550), + [sym_numeric_character_reference] = ACTIONS(4550), + [anon_sym_LT] = ACTIONS(4552), + [anon_sym_GT] = ACTIONS(4550), + [anon_sym_BANG] = ACTIONS(4550), + [anon_sym_DQUOTE] = ACTIONS(4550), + [anon_sym_POUND] = ACTIONS(4550), + [anon_sym_DOLLAR] = ACTIONS(4550), + [anon_sym_PERCENT] = ACTIONS(4550), + [anon_sym_AMP] = ACTIONS(4552), + [anon_sym_SQUOTE] = ACTIONS(4550), + [anon_sym_STAR] = ACTIONS(4550), + [anon_sym_PLUS] = ACTIONS(4550), + [anon_sym_COMMA] = ACTIONS(4550), + [anon_sym_DASH] = ACTIONS(4552), + [anon_sym_DOT] = ACTIONS(4552), + [anon_sym_SLASH] = ACTIONS(4550), + [anon_sym_COLON] = ACTIONS(4550), + [anon_sym_SEMI] = ACTIONS(4550), + [anon_sym_EQ] = ACTIONS(4550), + [anon_sym_QMARK] = ACTIONS(4550), + [anon_sym_LBRACK] = ACTIONS(4552), + [anon_sym_BSLASH] = ACTIONS(4552), + [anon_sym_CARET] = ACTIONS(4552), + [anon_sym__] = ACTIONS(4550), + [anon_sym_BQUOTE] = ACTIONS(4550), + [anon_sym_LBRACE] = ACTIONS(4538), + [anon_sym_PIPE] = ACTIONS(4550), + [anon_sym_TILDE] = ACTIONS(4550), + [anon_sym_LPAREN] = ACTIONS(4550), + [anon_sym_RPAREN] = ACTIONS(4550), + [sym__newline_token] = ACTIONS(4550), + [aux_sym_insert_token1] = ACTIONS(4550), + [aux_sym_insert_token2] = ACTIONS(4550), + [aux_sym_delete_token1] = ACTIONS(4550), + [aux_sym_highlight_token1] = ACTIONS(4550), + [aux_sym_edit_comment_token1] = ACTIONS(4550), + [anon_sym_CARET_LBRACK] = ACTIONS(4550), + [anon_sym_LBRACK_CARET] = ACTIONS(4550), + [sym_uri_autolink] = ACTIONS(4550), + [sym_email_autolink] = ACTIONS(4550), + [sym__whitespace_ge_2] = ACTIONS(4552), + [aux_sym__whitespace_token1] = ACTIONS(4552), + [sym__word_no_digit] = ACTIONS(4550), + [sym__digits] = ACTIONS(4550), + [anon_sym_DASH_DASH] = ACTIONS(4552), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4550), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4550), + [sym__code_span_start] = ACTIONS(4550), + [sym__emphasis_open_star] = ACTIONS(4550), + [sym__emphasis_open_underscore] = ACTIONS(4550), + [sym__strikeout_open] = ACTIONS(4550), + [sym__latex_span_start] = ACTIONS(4550), + [sym__single_quote_open] = ACTIONS(4550), + [sym__double_quote_open] = ACTIONS(4550), + [sym__superscript_open] = ACTIONS(4550), + [sym__subscript_open] = ACTIONS(4550), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4550), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4550), + [sym__cite_author_in_text] = ACTIONS(4550), + [sym__cite_suppress_author] = ACTIONS(4550), + [sym__shortcode_open_escaped] = ACTIONS(4550), + [sym__shortcode_open] = ACTIONS(4550), + [sym__unclosed_span] = ACTIONS(4550), + }, + [STATE(469)] = { + [sym__qmd_attribute] = STATE(1012), + [sym_raw_attribute] = STATE(1012), + [sym_commonmark_attribute] = STATE(1012), + [sym_language_attribute] = STATE(1012), + [sym__backslash_escape] = ACTIONS(4554), + [sym_entity_reference] = ACTIONS(4554), + [sym_numeric_character_reference] = ACTIONS(4554), + [anon_sym_LT] = ACTIONS(4556), + [anon_sym_GT] = ACTIONS(4554), + [anon_sym_BANG] = ACTIONS(4554), + [anon_sym_DQUOTE] = ACTIONS(4554), + [anon_sym_POUND] = ACTIONS(4554), + [anon_sym_DOLLAR] = ACTIONS(4554), + [anon_sym_PERCENT] = ACTIONS(4554), + [anon_sym_AMP] = ACTIONS(4556), + [anon_sym_SQUOTE] = ACTIONS(4554), + [anon_sym_STAR] = ACTIONS(4554), + [anon_sym_PLUS] = ACTIONS(4554), + [anon_sym_COMMA] = ACTIONS(4554), + [anon_sym_DASH] = ACTIONS(4556), + [anon_sym_DOT] = ACTIONS(4556), + [anon_sym_SLASH] = ACTIONS(4554), + [anon_sym_COLON] = ACTIONS(4554), + [anon_sym_SEMI] = ACTIONS(4554), + [anon_sym_EQ] = ACTIONS(4554), + [anon_sym_QMARK] = ACTIONS(4554), + [anon_sym_LBRACK] = ACTIONS(4556), + [anon_sym_BSLASH] = ACTIONS(4556), + [anon_sym_RBRACK] = ACTIONS(4554), + [anon_sym_CARET] = ACTIONS(4556), + [anon_sym__] = ACTIONS(4554), + [anon_sym_BQUOTE] = ACTIONS(4554), + [anon_sym_LBRACE] = ACTIONS(4624), + [anon_sym_PIPE] = ACTIONS(4554), + [anon_sym_TILDE] = ACTIONS(4554), + [anon_sym_LPAREN] = ACTIONS(4554), + [anon_sym_RPAREN] = ACTIONS(4554), + [sym__newline_token] = ACTIONS(4554), + [aux_sym_insert_token1] = ACTIONS(4554), + [aux_sym_delete_token1] = ACTIONS(4554), + [aux_sym_highlight_token1] = ACTIONS(4554), + [aux_sym_edit_comment_token1] = ACTIONS(4554), + [anon_sym_CARET_LBRACK] = ACTIONS(4554), + [anon_sym_LBRACK_CARET] = ACTIONS(4554), + [sym_uri_autolink] = ACTIONS(4554), + [sym_email_autolink] = ACTIONS(4554), + [sym__whitespace_ge_2] = ACTIONS(4554), + [aux_sym__whitespace_token1] = ACTIONS(4556), + [sym__word_no_digit] = ACTIONS(4554), + [sym__digits] = ACTIONS(4554), + [anon_sym_DASH_DASH] = ACTIONS(4556), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4554), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4554), + [sym__code_span_start] = ACTIONS(4554), + [sym__emphasis_open_star] = ACTIONS(4554), + [sym__emphasis_open_underscore] = ACTIONS(4554), + [sym__strikeout_open] = ACTIONS(4554), + [sym__latex_span_start] = ACTIONS(4554), + [sym__single_quote_open] = ACTIONS(4554), + [sym__double_quote_open] = ACTIONS(4554), + [sym__superscript_open] = ACTIONS(4554), + [sym__subscript_open] = ACTIONS(4554), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4554), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4554), + [sym__cite_author_in_text] = ACTIONS(4554), + [sym__cite_suppress_author] = ACTIONS(4554), + [sym__shortcode_open_escaped] = ACTIONS(4554), + [sym__shortcode_open] = ACTIONS(4554), + [sym__unclosed_span] = ACTIONS(4554), + }, + [STATE(470)] = { + [sym__qmd_attribute] = STATE(1014), + [sym_raw_attribute] = STATE(1014), + [sym_commonmark_attribute] = STATE(1014), + [sym_language_attribute] = STATE(1014), + [sym__backslash_escape] = ACTIONS(4558), + [sym_entity_reference] = ACTIONS(4558), + [sym_numeric_character_reference] = ACTIONS(4558), + [anon_sym_LT] = ACTIONS(4560), + [anon_sym_GT] = ACTIONS(4558), + [anon_sym_BANG] = ACTIONS(4558), + [anon_sym_DQUOTE] = ACTIONS(4558), + [anon_sym_POUND] = ACTIONS(4558), + [anon_sym_DOLLAR] = ACTIONS(4558), + [anon_sym_PERCENT] = ACTIONS(4558), + [anon_sym_AMP] = ACTIONS(4560), + [anon_sym_SQUOTE] = ACTIONS(4558), + [anon_sym_STAR] = ACTIONS(4558), + [anon_sym_PLUS] = ACTIONS(4558), + [anon_sym_COMMA] = ACTIONS(4558), + [anon_sym_DASH] = ACTIONS(4560), + [anon_sym_DOT] = ACTIONS(4560), + [anon_sym_SLASH] = ACTIONS(4558), + [anon_sym_COLON] = ACTIONS(4558), + [anon_sym_SEMI] = ACTIONS(4558), + [anon_sym_EQ] = ACTIONS(4558), + [anon_sym_QMARK] = ACTIONS(4558), + [anon_sym_LBRACK] = ACTIONS(4560), + [anon_sym_BSLASH] = ACTIONS(4560), + [anon_sym_CARET] = ACTIONS(4560), + [anon_sym__] = ACTIONS(4558), + [anon_sym_BQUOTE] = ACTIONS(4558), + [anon_sym_LBRACE] = ACTIONS(4538), + [anon_sym_PIPE] = ACTIONS(4558), + [anon_sym_TILDE] = ACTIONS(4558), + [anon_sym_LPAREN] = ACTIONS(4558), + [anon_sym_RPAREN] = ACTIONS(4558), + [sym__newline_token] = ACTIONS(4558), + [aux_sym_insert_token1] = ACTIONS(4558), + [aux_sym_insert_token2] = ACTIONS(4558), + [aux_sym_delete_token1] = ACTIONS(4558), + [aux_sym_highlight_token1] = ACTIONS(4558), + [aux_sym_edit_comment_token1] = ACTIONS(4558), + [anon_sym_CARET_LBRACK] = ACTIONS(4558), + [anon_sym_LBRACK_CARET] = ACTIONS(4558), + [sym_uri_autolink] = ACTIONS(4558), + [sym_email_autolink] = ACTIONS(4558), + [sym__whitespace_ge_2] = ACTIONS(4560), + [aux_sym__whitespace_token1] = ACTIONS(4560), + [sym__word_no_digit] = ACTIONS(4558), + [sym__digits] = ACTIONS(4558), + [anon_sym_DASH_DASH] = ACTIONS(4560), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4558), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4558), + [sym__code_span_start] = ACTIONS(4558), + [sym__emphasis_open_star] = ACTIONS(4558), + [sym__emphasis_open_underscore] = ACTIONS(4558), + [sym__strikeout_open] = ACTIONS(4558), + [sym__latex_span_start] = ACTIONS(4558), + [sym__single_quote_open] = ACTIONS(4558), + [sym__double_quote_open] = ACTIONS(4558), + [sym__superscript_open] = ACTIONS(4558), + [sym__subscript_open] = ACTIONS(4558), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4558), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4558), + [sym__cite_author_in_text] = ACTIONS(4558), + [sym__cite_suppress_author] = ACTIONS(4558), + [sym__shortcode_open_escaped] = ACTIONS(4558), + [sym__shortcode_open] = ACTIONS(4558), + [sym__unclosed_span] = ACTIONS(4558), + }, + [STATE(471)] = { + [sym__qmd_attribute] = STATE(1015), + [sym_raw_attribute] = STATE(1015), + [sym_commonmark_attribute] = STATE(1015), + [sym_language_attribute] = STATE(1015), + [sym__backslash_escape] = ACTIONS(4562), + [sym_entity_reference] = ACTIONS(4562), + [sym_numeric_character_reference] = ACTIONS(4562), + [anon_sym_LT] = ACTIONS(4564), + [anon_sym_GT] = ACTIONS(4562), + [anon_sym_BANG] = ACTIONS(4562), + [anon_sym_DQUOTE] = ACTIONS(4562), + [anon_sym_POUND] = ACTIONS(4562), + [anon_sym_DOLLAR] = ACTIONS(4562), + [anon_sym_PERCENT] = ACTIONS(4562), + [anon_sym_AMP] = ACTIONS(4564), + [anon_sym_SQUOTE] = ACTIONS(4562), + [anon_sym_STAR] = ACTIONS(4562), + [anon_sym_PLUS] = ACTIONS(4562), + [anon_sym_COMMA] = ACTIONS(4562), + [anon_sym_DASH] = ACTIONS(4564), + [anon_sym_DOT] = ACTIONS(4564), + [anon_sym_SLASH] = ACTIONS(4562), + [anon_sym_COLON] = ACTIONS(4562), + [anon_sym_SEMI] = ACTIONS(4562), + [anon_sym_EQ] = ACTIONS(4562), + [anon_sym_QMARK] = ACTIONS(4562), + [anon_sym_LBRACK] = ACTIONS(4564), + [anon_sym_BSLASH] = ACTIONS(4564), + [anon_sym_RBRACK] = ACTIONS(4562), + [anon_sym_CARET] = ACTIONS(4564), + [anon_sym__] = ACTIONS(4562), + [anon_sym_BQUOTE] = ACTIONS(4562), + [anon_sym_LBRACE] = ACTIONS(4624), + [anon_sym_PIPE] = ACTIONS(4562), + [anon_sym_TILDE] = ACTIONS(4562), + [anon_sym_LPAREN] = ACTIONS(4562), + [anon_sym_RPAREN] = ACTIONS(4562), + [sym__newline_token] = ACTIONS(4562), + [aux_sym_insert_token1] = ACTIONS(4562), + [aux_sym_delete_token1] = ACTIONS(4562), + [aux_sym_highlight_token1] = ACTIONS(4562), + [aux_sym_edit_comment_token1] = ACTIONS(4562), + [anon_sym_CARET_LBRACK] = ACTIONS(4562), + [anon_sym_LBRACK_CARET] = ACTIONS(4562), + [sym_uri_autolink] = ACTIONS(4562), + [sym_email_autolink] = ACTIONS(4562), + [sym__whitespace_ge_2] = ACTIONS(4562), + [aux_sym__whitespace_token1] = ACTIONS(4564), + [sym__word_no_digit] = ACTIONS(4562), + [sym__digits] = ACTIONS(4562), + [anon_sym_DASH_DASH] = ACTIONS(4564), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4562), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4562), + [sym__code_span_start] = ACTIONS(4562), + [sym__emphasis_open_star] = ACTIONS(4562), + [sym__emphasis_open_underscore] = ACTIONS(4562), + [sym__strikeout_open] = ACTIONS(4562), + [sym__latex_span_start] = ACTIONS(4562), + [sym__single_quote_open] = ACTIONS(4562), + [sym__double_quote_open] = ACTIONS(4562), + [sym__superscript_open] = ACTIONS(4562), + [sym__subscript_open] = ACTIONS(4562), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4562), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4562), + [sym__cite_author_in_text] = ACTIONS(4562), + [sym__cite_suppress_author] = ACTIONS(4562), + [sym__shortcode_open_escaped] = ACTIONS(4562), + [sym__shortcode_open] = ACTIONS(4562), + [sym__unclosed_span] = ACTIONS(4562), + }, + [STATE(472)] = { + [sym__qmd_attribute] = STATE(1046), + [sym_raw_attribute] = STATE(1046), + [sym_commonmark_attribute] = STATE(1046), + [sym_language_attribute] = STATE(1046), + [sym__backslash_escape] = ACTIONS(4576), + [sym_entity_reference] = ACTIONS(4576), + [sym_numeric_character_reference] = ACTIONS(4576), + [anon_sym_LT] = ACTIONS(4578), + [anon_sym_GT] = ACTIONS(4576), + [anon_sym_BANG] = ACTIONS(4576), + [anon_sym_DQUOTE] = ACTIONS(4576), + [anon_sym_POUND] = ACTIONS(4576), + [anon_sym_DOLLAR] = ACTIONS(4576), + [anon_sym_PERCENT] = ACTIONS(4576), + [anon_sym_AMP] = ACTIONS(4578), + [anon_sym_SQUOTE] = ACTIONS(4576), + [anon_sym_STAR] = ACTIONS(4576), + [anon_sym_PLUS] = ACTIONS(4576), + [anon_sym_COMMA] = ACTIONS(4576), + [anon_sym_DASH] = ACTIONS(4578), + [anon_sym_DOT] = ACTIONS(4578), + [anon_sym_SLASH] = ACTIONS(4576), + [anon_sym_COLON] = ACTIONS(4576), + [anon_sym_SEMI] = ACTIONS(4576), + [anon_sym_EQ] = ACTIONS(4576), + [anon_sym_QMARK] = ACTIONS(4576), + [anon_sym_LBRACK] = ACTIONS(4578), + [anon_sym_BSLASH] = ACTIONS(4578), + [anon_sym_RBRACK] = ACTIONS(4576), + [anon_sym_CARET] = ACTIONS(4578), + [anon_sym__] = ACTIONS(4576), + [anon_sym_BQUOTE] = ACTIONS(4576), + [anon_sym_LBRACE] = ACTIONS(4624), + [anon_sym_PIPE] = ACTIONS(4576), + [anon_sym_TILDE] = ACTIONS(4576), + [anon_sym_LPAREN] = ACTIONS(4626), + [anon_sym_RPAREN] = ACTIONS(4576), + [sym__newline_token] = ACTIONS(4576), + [aux_sym_insert_token1] = ACTIONS(4576), + [aux_sym_delete_token1] = ACTIONS(4576), + [aux_sym_highlight_token1] = ACTIONS(4576), + [aux_sym_edit_comment_token1] = ACTIONS(4576), + [anon_sym_CARET_LBRACK] = ACTIONS(4576), + [anon_sym_LBRACK_CARET] = ACTIONS(4576), + [sym_uri_autolink] = ACTIONS(4576), + [sym_email_autolink] = ACTIONS(4576), + [sym__whitespace_ge_2] = ACTIONS(4576), + [aux_sym__whitespace_token1] = ACTIONS(4578), + [sym__word_no_digit] = ACTIONS(4576), + [sym__digits] = ACTIONS(4576), + [anon_sym_DASH_DASH] = ACTIONS(4578), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4576), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4576), + [sym__code_span_start] = ACTIONS(4576), + [sym__emphasis_open_star] = ACTIONS(4576), + [sym__emphasis_open_underscore] = ACTIONS(4576), + [sym__strikeout_open] = ACTIONS(4576), + [sym__latex_span_start] = ACTIONS(4576), + [sym__single_quote_open] = ACTIONS(4576), + [sym__double_quote_open] = ACTIONS(4576), + [sym__superscript_open] = ACTIONS(4576), + [sym__subscript_open] = ACTIONS(4576), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4576), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4576), + [sym__cite_author_in_text] = ACTIONS(4576), + [sym__cite_suppress_author] = ACTIONS(4576), + [sym__shortcode_open_escaped] = ACTIONS(4576), + [sym__shortcode_open] = ACTIONS(4576), + [sym__unclosed_span] = ACTIONS(4576), + }, + [STATE(473)] = { + [sym__qmd_attribute] = STATE(1047), + [sym_raw_attribute] = STATE(1047), + [sym_commonmark_attribute] = STATE(1047), + [sym_language_attribute] = STATE(1047), + [sym__backslash_escape] = ACTIONS(4584), + [sym_entity_reference] = ACTIONS(4584), + [sym_numeric_character_reference] = ACTIONS(4584), + [anon_sym_LT] = ACTIONS(4586), + [anon_sym_GT] = ACTIONS(4584), + [anon_sym_BANG] = ACTIONS(4584), + [anon_sym_DQUOTE] = ACTIONS(4584), + [anon_sym_POUND] = ACTIONS(4584), + [anon_sym_DOLLAR] = ACTIONS(4584), + [anon_sym_PERCENT] = ACTIONS(4584), + [anon_sym_AMP] = ACTIONS(4586), + [anon_sym_SQUOTE] = ACTIONS(4584), + [anon_sym_STAR] = ACTIONS(4584), + [anon_sym_PLUS] = ACTIONS(4584), + [anon_sym_COMMA] = ACTIONS(4584), + [anon_sym_DASH] = ACTIONS(4586), + [anon_sym_DOT] = ACTIONS(4586), + [anon_sym_SLASH] = ACTIONS(4584), + [anon_sym_COLON] = ACTIONS(4584), + [anon_sym_SEMI] = ACTIONS(4584), + [anon_sym_EQ] = ACTIONS(4584), + [anon_sym_QMARK] = ACTIONS(4584), + [anon_sym_LBRACK] = ACTIONS(4586), + [anon_sym_BSLASH] = ACTIONS(4586), + [anon_sym_RBRACK] = ACTIONS(4584), + [anon_sym_CARET] = ACTIONS(4586), + [anon_sym__] = ACTIONS(4584), + [anon_sym_BQUOTE] = ACTIONS(4584), + [anon_sym_LBRACE] = ACTIONS(4624), + [anon_sym_PIPE] = ACTIONS(4584), + [anon_sym_TILDE] = ACTIONS(4584), + [anon_sym_LPAREN] = ACTIONS(4584), + [anon_sym_RPAREN] = ACTIONS(4584), + [sym__newline_token] = ACTIONS(4584), + [aux_sym_insert_token1] = ACTIONS(4584), + [aux_sym_delete_token1] = ACTIONS(4584), + [aux_sym_highlight_token1] = ACTIONS(4584), + [aux_sym_edit_comment_token1] = ACTIONS(4584), + [anon_sym_CARET_LBRACK] = ACTIONS(4584), + [anon_sym_LBRACK_CARET] = ACTIONS(4584), + [sym_uri_autolink] = ACTIONS(4584), + [sym_email_autolink] = ACTIONS(4584), + [sym__whitespace_ge_2] = ACTIONS(4584), + [aux_sym__whitespace_token1] = ACTIONS(4586), + [sym__word_no_digit] = ACTIONS(4584), + [sym__digits] = ACTIONS(4584), + [anon_sym_DASH_DASH] = ACTIONS(4586), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4584), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4584), + [sym__code_span_start] = ACTIONS(4584), + [sym__emphasis_open_star] = ACTIONS(4584), + [sym__emphasis_open_underscore] = ACTIONS(4584), + [sym__strikeout_open] = ACTIONS(4584), + [sym__latex_span_start] = ACTIONS(4584), + [sym__single_quote_open] = ACTIONS(4584), + [sym__double_quote_open] = ACTIONS(4584), + [sym__superscript_open] = ACTIONS(4584), + [sym__subscript_open] = ACTIONS(4584), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4584), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4584), + [sym__cite_author_in_text] = ACTIONS(4584), + [sym__cite_suppress_author] = ACTIONS(4584), + [sym__shortcode_open_escaped] = ACTIONS(4584), + [sym__shortcode_open] = ACTIONS(4584), + [sym__unclosed_span] = ACTIONS(4584), + }, + [STATE(474)] = { + [sym__qmd_attribute] = STATE(1049), + [sym_raw_attribute] = STATE(1049), + [sym_commonmark_attribute] = STATE(1049), + [sym_language_attribute] = STATE(1049), + [sym__backslash_escape] = ACTIONS(4592), + [sym_entity_reference] = ACTIONS(4592), + [sym_numeric_character_reference] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(4594), + [anon_sym_GT] = ACTIONS(4592), + [anon_sym_BANG] = ACTIONS(4592), + [anon_sym_DQUOTE] = ACTIONS(4592), + [anon_sym_POUND] = ACTIONS(4592), + [anon_sym_DOLLAR] = ACTIONS(4592), + [anon_sym_PERCENT] = ACTIONS(4592), + [anon_sym_AMP] = ACTIONS(4594), + [anon_sym_SQUOTE] = ACTIONS(4592), + [anon_sym_STAR] = ACTIONS(4592), + [anon_sym_PLUS] = ACTIONS(4592), + [anon_sym_COMMA] = ACTIONS(4592), + [anon_sym_DASH] = ACTIONS(4594), + [anon_sym_DOT] = ACTIONS(4594), + [anon_sym_SLASH] = ACTIONS(4592), + [anon_sym_COLON] = ACTIONS(4592), + [anon_sym_SEMI] = ACTIONS(4592), + [anon_sym_EQ] = ACTIONS(4592), + [anon_sym_QMARK] = ACTIONS(4592), + [anon_sym_LBRACK] = ACTIONS(4594), + [anon_sym_BSLASH] = ACTIONS(4594), + [anon_sym_CARET] = ACTIONS(4594), + [anon_sym__] = ACTIONS(4592), + [anon_sym_BQUOTE] = ACTIONS(4592), + [anon_sym_LBRACE] = ACTIONS(4538), + [anon_sym_PIPE] = ACTIONS(4592), + [anon_sym_TILDE] = ACTIONS(4592), + [anon_sym_LPAREN] = ACTIONS(4592), + [anon_sym_RPAREN] = ACTIONS(4592), + [sym__newline_token] = ACTIONS(4592), + [aux_sym_insert_token1] = ACTIONS(4592), + [aux_sym_insert_token2] = ACTIONS(4592), + [aux_sym_delete_token1] = ACTIONS(4592), + [aux_sym_highlight_token1] = ACTIONS(4592), + [aux_sym_edit_comment_token1] = ACTIONS(4592), + [anon_sym_CARET_LBRACK] = ACTIONS(4592), + [anon_sym_LBRACK_CARET] = ACTIONS(4592), + [sym_uri_autolink] = ACTIONS(4592), + [sym_email_autolink] = ACTIONS(4592), + [sym__whitespace_ge_2] = ACTIONS(4594), + [aux_sym__whitespace_token1] = ACTIONS(4594), + [sym__word_no_digit] = ACTIONS(4592), + [sym__digits] = ACTIONS(4592), + [anon_sym_DASH_DASH] = ACTIONS(4594), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4592), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4592), + [sym__code_span_start] = ACTIONS(4592), + [sym__emphasis_open_star] = ACTIONS(4592), + [sym__emphasis_open_underscore] = ACTIONS(4592), + [sym__strikeout_open] = ACTIONS(4592), + [sym__latex_span_start] = ACTIONS(4592), + [sym__single_quote_open] = ACTIONS(4592), + [sym__double_quote_open] = ACTIONS(4592), + [sym__superscript_open] = ACTIONS(4592), + [sym__subscript_open] = ACTIONS(4592), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4592), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4592), + [sym__cite_author_in_text] = ACTIONS(4592), + [sym__cite_suppress_author] = ACTIONS(4592), + [sym__shortcode_open_escaped] = ACTIONS(4592), + [sym__shortcode_open] = ACTIONS(4592), + [sym__unclosed_span] = ACTIONS(4592), + }, + [STATE(475)] = { + [sym__qmd_attribute] = STATE(1062), + [sym_raw_attribute] = STATE(1062), + [sym_commonmark_attribute] = STATE(1062), + [sym_language_attribute] = STATE(1062), + [sym__backslash_escape] = ACTIONS(4596), + [sym_entity_reference] = ACTIONS(4596), + [sym_numeric_character_reference] = ACTIONS(4596), + [anon_sym_LT] = ACTIONS(4598), + [anon_sym_GT] = ACTIONS(4596), + [anon_sym_BANG] = ACTIONS(4596), + [anon_sym_DQUOTE] = ACTIONS(4596), + [anon_sym_POUND] = ACTIONS(4596), + [anon_sym_DOLLAR] = ACTIONS(4596), + [anon_sym_PERCENT] = ACTIONS(4596), + [anon_sym_AMP] = ACTIONS(4598), + [anon_sym_SQUOTE] = ACTIONS(4596), + [anon_sym_STAR] = ACTIONS(4596), + [anon_sym_PLUS] = ACTIONS(4596), + [anon_sym_COMMA] = ACTIONS(4596), + [anon_sym_DASH] = ACTIONS(4598), + [anon_sym_DOT] = ACTIONS(4598), + [anon_sym_SLASH] = ACTIONS(4596), + [anon_sym_COLON] = ACTIONS(4596), + [anon_sym_SEMI] = ACTIONS(4596), + [anon_sym_EQ] = ACTIONS(4596), + [anon_sym_QMARK] = ACTIONS(4596), + [anon_sym_LBRACK] = ACTIONS(4598), + [anon_sym_BSLASH] = ACTIONS(4598), + [anon_sym_RBRACK] = ACTIONS(4596), + [anon_sym_CARET] = ACTIONS(4598), + [anon_sym__] = ACTIONS(4596), + [anon_sym_BQUOTE] = ACTIONS(4596), + [anon_sym_LBRACE] = ACTIONS(4624), + [anon_sym_PIPE] = ACTIONS(4596), + [anon_sym_TILDE] = ACTIONS(4596), + [anon_sym_LPAREN] = ACTIONS(4596), + [anon_sym_RPAREN] = ACTIONS(4596), + [sym__newline_token] = ACTIONS(4596), + [aux_sym_insert_token1] = ACTIONS(4596), + [aux_sym_delete_token1] = ACTIONS(4596), + [aux_sym_highlight_token1] = ACTIONS(4596), + [aux_sym_edit_comment_token1] = ACTIONS(4596), + [anon_sym_CARET_LBRACK] = ACTIONS(4596), + [anon_sym_LBRACK_CARET] = ACTIONS(4596), + [sym_uri_autolink] = ACTIONS(4596), + [sym_email_autolink] = ACTIONS(4596), + [sym__whitespace_ge_2] = ACTIONS(4596), + [aux_sym__whitespace_token1] = ACTIONS(4598), + [sym__word_no_digit] = ACTIONS(4596), + [sym__digits] = ACTIONS(4596), + [anon_sym_DASH_DASH] = ACTIONS(4598), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4596), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4596), + [sym__code_span_start] = ACTIONS(4596), + [sym__emphasis_open_star] = ACTIONS(4596), + [sym__emphasis_open_underscore] = ACTIONS(4596), + [sym__strikeout_open] = ACTIONS(4596), + [sym__latex_span_start] = ACTIONS(4596), + [sym__single_quote_open] = ACTIONS(4596), + [sym__double_quote_open] = ACTIONS(4596), + [sym__superscript_open] = ACTIONS(4596), + [sym__subscript_open] = ACTIONS(4596), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4596), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4596), + [sym__cite_author_in_text] = ACTIONS(4596), + [sym__cite_suppress_author] = ACTIONS(4596), + [sym__shortcode_open_escaped] = ACTIONS(4596), + [sym__shortcode_open] = ACTIONS(4596), + [sym__unclosed_span] = ACTIONS(4596), + }, + [STATE(476)] = { + [sym__qmd_attribute] = STATE(1075), + [sym_raw_attribute] = STATE(1075), + [sym_commonmark_attribute] = STATE(1075), + [sym_language_attribute] = STATE(1075), + [sym__backslash_escape] = ACTIONS(4600), + [sym_entity_reference] = ACTIONS(4600), + [sym_numeric_character_reference] = ACTIONS(4600), + [anon_sym_LT] = ACTIONS(4602), + [anon_sym_GT] = ACTIONS(4600), + [anon_sym_BANG] = ACTIONS(4600), + [anon_sym_DQUOTE] = ACTIONS(4600), + [anon_sym_POUND] = ACTIONS(4600), + [anon_sym_DOLLAR] = ACTIONS(4600), + [anon_sym_PERCENT] = ACTIONS(4600), + [anon_sym_AMP] = ACTIONS(4602), + [anon_sym_SQUOTE] = ACTIONS(4600), + [anon_sym_STAR] = ACTIONS(4600), + [anon_sym_PLUS] = ACTIONS(4600), + [anon_sym_COMMA] = ACTIONS(4600), + [anon_sym_DASH] = ACTIONS(4602), + [anon_sym_DOT] = ACTIONS(4602), + [anon_sym_SLASH] = ACTIONS(4600), + [anon_sym_COLON] = ACTIONS(4600), + [anon_sym_SEMI] = ACTIONS(4600), + [anon_sym_EQ] = ACTIONS(4600), + [anon_sym_QMARK] = ACTIONS(4600), + [anon_sym_LBRACK] = ACTIONS(4602), + [anon_sym_BSLASH] = ACTIONS(4602), + [anon_sym_CARET] = ACTIONS(4602), + [anon_sym__] = ACTIONS(4600), + [anon_sym_BQUOTE] = ACTIONS(4600), + [anon_sym_LBRACE] = ACTIONS(4538), + [anon_sym_PIPE] = ACTIONS(4600), + [anon_sym_TILDE] = ACTIONS(4600), + [anon_sym_LPAREN] = ACTIONS(4600), + [anon_sym_RPAREN] = ACTIONS(4600), + [sym__newline_token] = ACTIONS(4600), + [aux_sym_insert_token1] = ACTIONS(4600), + [aux_sym_insert_token2] = ACTIONS(4600), + [aux_sym_delete_token1] = ACTIONS(4600), + [aux_sym_highlight_token1] = ACTIONS(4600), + [aux_sym_edit_comment_token1] = ACTIONS(4600), + [anon_sym_CARET_LBRACK] = ACTIONS(4600), + [anon_sym_LBRACK_CARET] = ACTIONS(4600), + [sym_uri_autolink] = ACTIONS(4600), + [sym_email_autolink] = ACTIONS(4600), + [sym__whitespace_ge_2] = ACTIONS(4602), + [aux_sym__whitespace_token1] = ACTIONS(4602), + [sym__word_no_digit] = ACTIONS(4600), + [sym__digits] = ACTIONS(4600), + [anon_sym_DASH_DASH] = ACTIONS(4602), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4600), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4600), + [sym__code_span_start] = ACTIONS(4600), + [sym__emphasis_open_star] = ACTIONS(4600), + [sym__emphasis_open_underscore] = ACTIONS(4600), + [sym__strikeout_open] = ACTIONS(4600), + [sym__latex_span_start] = ACTIONS(4600), + [sym__single_quote_open] = ACTIONS(4600), + [sym__double_quote_open] = ACTIONS(4600), + [sym__superscript_open] = ACTIONS(4600), + [sym__subscript_open] = ACTIONS(4600), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4600), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4600), + [sym__cite_author_in_text] = ACTIONS(4600), + [sym__cite_suppress_author] = ACTIONS(4600), + [sym__shortcode_open_escaped] = ACTIONS(4600), + [sym__shortcode_open] = ACTIONS(4600), + [sym__unclosed_span] = ACTIONS(4600), + }, + [STATE(477)] = { + [sym__qmd_attribute] = STATE(1084), + [sym_raw_attribute] = STATE(1084), + [sym_commonmark_attribute] = STATE(1084), + [sym_language_attribute] = STATE(1084), + [sym__backslash_escape] = ACTIONS(4606), + [sym_entity_reference] = ACTIONS(4606), + [sym_numeric_character_reference] = ACTIONS(4606), + [anon_sym_LT] = ACTIONS(4608), + [anon_sym_GT] = ACTIONS(4606), + [anon_sym_BANG] = ACTIONS(4606), + [anon_sym_DQUOTE] = ACTIONS(4606), + [anon_sym_POUND] = ACTIONS(4606), + [anon_sym_DOLLAR] = ACTIONS(4606), + [anon_sym_PERCENT] = ACTIONS(4606), + [anon_sym_AMP] = ACTIONS(4608), + [anon_sym_SQUOTE] = ACTIONS(4606), + [anon_sym_STAR] = ACTIONS(4606), + [anon_sym_PLUS] = ACTIONS(4606), + [anon_sym_COMMA] = ACTIONS(4606), + [anon_sym_DASH] = ACTIONS(4608), + [anon_sym_DOT] = ACTIONS(4608), + [anon_sym_SLASH] = ACTIONS(4606), + [anon_sym_COLON] = ACTIONS(4606), + [anon_sym_SEMI] = ACTIONS(4606), + [anon_sym_EQ] = ACTIONS(4606), + [anon_sym_QMARK] = ACTIONS(4606), + [anon_sym_LBRACK] = ACTIONS(4608), + [anon_sym_BSLASH] = ACTIONS(4608), + [anon_sym_RBRACK] = ACTIONS(4606), + [anon_sym_CARET] = ACTIONS(4608), + [anon_sym__] = ACTIONS(4606), + [anon_sym_BQUOTE] = ACTIONS(4606), + [anon_sym_LBRACE] = ACTIONS(4624), + [anon_sym_PIPE] = ACTIONS(4606), + [anon_sym_TILDE] = ACTIONS(4606), + [anon_sym_LPAREN] = ACTIONS(4606), + [anon_sym_RPAREN] = ACTIONS(4606), + [sym__newline_token] = ACTIONS(4606), + [aux_sym_insert_token1] = ACTIONS(4606), + [aux_sym_delete_token1] = ACTIONS(4606), + [aux_sym_highlight_token1] = ACTIONS(4606), + [aux_sym_edit_comment_token1] = ACTIONS(4606), + [anon_sym_CARET_LBRACK] = ACTIONS(4606), + [anon_sym_LBRACK_CARET] = ACTIONS(4606), + [sym_uri_autolink] = ACTIONS(4606), + [sym_email_autolink] = ACTIONS(4606), + [sym__whitespace_ge_2] = ACTIONS(4606), + [aux_sym__whitespace_token1] = ACTIONS(4608), + [sym__word_no_digit] = ACTIONS(4606), + [sym__digits] = ACTIONS(4606), + [anon_sym_DASH_DASH] = ACTIONS(4608), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4606), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4606), + [sym__code_span_start] = ACTIONS(4606), + [sym__emphasis_open_star] = ACTIONS(4606), + [sym__emphasis_open_underscore] = ACTIONS(4606), + [sym__strikeout_open] = ACTIONS(4606), + [sym__latex_span_start] = ACTIONS(4606), + [sym__single_quote_open] = ACTIONS(4606), + [sym__double_quote_open] = ACTIONS(4606), + [sym__superscript_open] = ACTIONS(4606), + [sym__subscript_open] = ACTIONS(4606), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4606), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4606), + [sym__cite_author_in_text] = ACTIONS(4606), + [sym__cite_suppress_author] = ACTIONS(4606), + [sym__shortcode_open_escaped] = ACTIONS(4606), + [sym__shortcode_open] = ACTIONS(4606), + [sym__unclosed_span] = ACTIONS(4606), + }, + [STATE(478)] = { + [sym__qmd_attribute] = STATE(1086), + [sym_raw_attribute] = STATE(1086), + [sym_commonmark_attribute] = STATE(1086), + [sym_language_attribute] = STATE(1086), + [sym__backslash_escape] = ACTIONS(4610), + [sym_entity_reference] = ACTIONS(4610), + [sym_numeric_character_reference] = ACTIONS(4610), + [anon_sym_LT] = ACTIONS(4612), + [anon_sym_GT] = ACTIONS(4610), + [anon_sym_BANG] = ACTIONS(4610), + [anon_sym_DQUOTE] = ACTIONS(4610), + [anon_sym_POUND] = ACTIONS(4610), + [anon_sym_DOLLAR] = ACTIONS(4610), + [anon_sym_PERCENT] = ACTIONS(4610), + [anon_sym_AMP] = ACTIONS(4612), + [anon_sym_SQUOTE] = ACTIONS(4610), + [anon_sym_STAR] = ACTIONS(4610), + [anon_sym_PLUS] = ACTIONS(4610), + [anon_sym_COMMA] = ACTIONS(4610), + [anon_sym_DASH] = ACTIONS(4612), + [anon_sym_DOT] = ACTIONS(4612), + [anon_sym_SLASH] = ACTIONS(4610), + [anon_sym_COLON] = ACTIONS(4610), + [anon_sym_SEMI] = ACTIONS(4610), + [anon_sym_EQ] = ACTIONS(4610), + [anon_sym_QMARK] = ACTIONS(4610), + [anon_sym_LBRACK] = ACTIONS(4612), + [anon_sym_BSLASH] = ACTIONS(4612), + [anon_sym_CARET] = ACTIONS(4612), + [anon_sym__] = ACTIONS(4610), + [anon_sym_BQUOTE] = ACTIONS(4610), + [anon_sym_LBRACE] = ACTIONS(4538), + [anon_sym_PIPE] = ACTIONS(4610), + [anon_sym_TILDE] = ACTIONS(4610), + [anon_sym_LPAREN] = ACTIONS(4610), + [anon_sym_RPAREN] = ACTIONS(4610), + [sym__newline_token] = ACTIONS(4610), + [aux_sym_insert_token1] = ACTIONS(4610), + [aux_sym_insert_token2] = ACTIONS(4610), + [aux_sym_delete_token1] = ACTIONS(4610), + [aux_sym_highlight_token1] = ACTIONS(4610), + [aux_sym_edit_comment_token1] = ACTIONS(4610), + [anon_sym_CARET_LBRACK] = ACTIONS(4610), + [anon_sym_LBRACK_CARET] = ACTIONS(4610), + [sym_uri_autolink] = ACTIONS(4610), + [sym_email_autolink] = ACTIONS(4610), + [sym__whitespace_ge_2] = ACTIONS(4612), + [aux_sym__whitespace_token1] = ACTIONS(4612), + [sym__word_no_digit] = ACTIONS(4610), + [sym__digits] = ACTIONS(4610), + [anon_sym_DASH_DASH] = ACTIONS(4612), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4610), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4610), + [sym__code_span_start] = ACTIONS(4610), + [sym__emphasis_open_star] = ACTIONS(4610), + [sym__emphasis_open_underscore] = ACTIONS(4610), + [sym__strikeout_open] = ACTIONS(4610), + [sym__latex_span_start] = ACTIONS(4610), + [sym__single_quote_open] = ACTIONS(4610), + [sym__double_quote_open] = ACTIONS(4610), + [sym__superscript_open] = ACTIONS(4610), + [sym__subscript_open] = ACTIONS(4610), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4610), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4610), + [sym__cite_author_in_text] = ACTIONS(4610), + [sym__cite_suppress_author] = ACTIONS(4610), + [sym__shortcode_open_escaped] = ACTIONS(4610), + [sym__shortcode_open] = ACTIONS(4610), + [sym__unclosed_span] = ACTIONS(4610), + }, + [STATE(479)] = { + [sym__qmd_attribute] = STATE(1093), + [sym_raw_attribute] = STATE(1093), + [sym_commonmark_attribute] = STATE(1093), + [sym_language_attribute] = STATE(1093), + [sym__backslash_escape] = ACTIONS(4566), + [sym_entity_reference] = ACTIONS(4566), + [sym_numeric_character_reference] = ACTIONS(4566), + [anon_sym_LT] = ACTIONS(4568), + [anon_sym_GT] = ACTIONS(4566), + [anon_sym_BANG] = ACTIONS(4566), + [anon_sym_DQUOTE] = ACTIONS(4566), + [anon_sym_POUND] = ACTIONS(4566), + [anon_sym_DOLLAR] = ACTIONS(4566), + [anon_sym_PERCENT] = ACTIONS(4566), + [anon_sym_AMP] = ACTIONS(4568), + [anon_sym_SQUOTE] = ACTIONS(4566), + [anon_sym_STAR] = ACTIONS(4566), + [anon_sym_PLUS] = ACTIONS(4566), + [anon_sym_COMMA] = ACTIONS(4566), + [anon_sym_DASH] = ACTIONS(4568), + [anon_sym_DOT] = ACTIONS(4568), + [anon_sym_SLASH] = ACTIONS(4566), + [anon_sym_COLON] = ACTIONS(4566), + [anon_sym_SEMI] = ACTIONS(4566), + [anon_sym_EQ] = ACTIONS(4566), + [anon_sym_QMARK] = ACTIONS(4566), + [anon_sym_LBRACK] = ACTIONS(4568), + [anon_sym_BSLASH] = ACTIONS(4568), + [anon_sym_RBRACK] = ACTIONS(4566), + [anon_sym_CARET] = ACTIONS(4568), + [anon_sym__] = ACTIONS(4566), + [anon_sym_BQUOTE] = ACTIONS(4566), + [anon_sym_LBRACE] = ACTIONS(4624), + [anon_sym_PIPE] = ACTIONS(4566), + [anon_sym_TILDE] = ACTIONS(4566), + [anon_sym_LPAREN] = ACTIONS(4566), + [anon_sym_RPAREN] = ACTIONS(4566), + [sym__newline_token] = ACTIONS(4566), + [aux_sym_insert_token1] = ACTIONS(4566), + [aux_sym_delete_token1] = ACTIONS(4566), + [aux_sym_highlight_token1] = ACTIONS(4566), + [aux_sym_edit_comment_token1] = ACTIONS(4566), + [anon_sym_CARET_LBRACK] = ACTIONS(4566), + [anon_sym_LBRACK_CARET] = ACTIONS(4566), + [sym_uri_autolink] = ACTIONS(4566), + [sym_email_autolink] = ACTIONS(4566), + [sym__whitespace_ge_2] = ACTIONS(4566), + [aux_sym__whitespace_token1] = ACTIONS(4568), + [sym__word_no_digit] = ACTIONS(4566), + [sym__digits] = ACTIONS(4566), + [anon_sym_DASH_DASH] = ACTIONS(4568), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4566), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4566), + [sym__code_span_start] = ACTIONS(4566), + [sym__emphasis_open_star] = ACTIONS(4566), + [sym__emphasis_open_underscore] = ACTIONS(4566), + [sym__strikeout_open] = ACTIONS(4566), + [sym__latex_span_start] = ACTIONS(4566), + [sym__single_quote_open] = ACTIONS(4566), + [sym__double_quote_open] = ACTIONS(4566), + [sym__superscript_open] = ACTIONS(4566), + [sym__subscript_open] = ACTIONS(4566), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4566), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4566), + [sym__cite_author_in_text] = ACTIONS(4566), + [sym__cite_suppress_author] = ACTIONS(4566), + [sym__shortcode_open_escaped] = ACTIONS(4566), + [sym__shortcode_open] = ACTIONS(4566), + [sym__unclosed_span] = ACTIONS(4566), + }, + [STATE(480)] = { + [sym__qmd_attribute] = STATE(1095), + [sym_raw_attribute] = STATE(1095), + [sym_commonmark_attribute] = STATE(1095), + [sym_language_attribute] = STATE(1095), + [sym__backslash_escape] = ACTIONS(4572), + [sym_entity_reference] = ACTIONS(4572), + [sym_numeric_character_reference] = ACTIONS(4572), + [anon_sym_LT] = ACTIONS(4574), + [anon_sym_GT] = ACTIONS(4572), + [anon_sym_BANG] = ACTIONS(4572), + [anon_sym_DQUOTE] = ACTIONS(4572), + [anon_sym_POUND] = ACTIONS(4572), + [anon_sym_DOLLAR] = ACTIONS(4572), + [anon_sym_PERCENT] = ACTIONS(4572), + [anon_sym_AMP] = ACTIONS(4574), + [anon_sym_SQUOTE] = ACTIONS(4572), + [anon_sym_STAR] = ACTIONS(4572), + [anon_sym_PLUS] = ACTIONS(4572), + [anon_sym_COMMA] = ACTIONS(4572), + [anon_sym_DASH] = ACTIONS(4574), + [anon_sym_DOT] = ACTIONS(4574), + [anon_sym_SLASH] = ACTIONS(4572), + [anon_sym_COLON] = ACTIONS(4572), + [anon_sym_SEMI] = ACTIONS(4572), + [anon_sym_EQ] = ACTIONS(4572), + [anon_sym_QMARK] = ACTIONS(4572), + [anon_sym_LBRACK] = ACTIONS(4574), + [anon_sym_BSLASH] = ACTIONS(4574), + [anon_sym_CARET] = ACTIONS(4574), + [anon_sym__] = ACTIONS(4572), + [anon_sym_BQUOTE] = ACTIONS(4572), + [anon_sym_LBRACE] = ACTIONS(4538), + [anon_sym_PIPE] = ACTIONS(4572), + [anon_sym_TILDE] = ACTIONS(4572), + [anon_sym_LPAREN] = ACTIONS(4572), + [anon_sym_RPAREN] = ACTIONS(4572), + [sym__newline_token] = ACTIONS(4572), + [aux_sym_insert_token1] = ACTIONS(4572), + [aux_sym_insert_token2] = ACTIONS(4572), + [aux_sym_delete_token1] = ACTIONS(4572), + [aux_sym_highlight_token1] = ACTIONS(4572), + [aux_sym_edit_comment_token1] = ACTIONS(4572), + [anon_sym_CARET_LBRACK] = ACTIONS(4572), + [anon_sym_LBRACK_CARET] = ACTIONS(4572), + [sym_uri_autolink] = ACTIONS(4572), + [sym_email_autolink] = ACTIONS(4572), + [sym__whitespace_ge_2] = ACTIONS(4574), + [aux_sym__whitespace_token1] = ACTIONS(4574), + [sym__word_no_digit] = ACTIONS(4572), + [sym__digits] = ACTIONS(4572), + [anon_sym_DASH_DASH] = ACTIONS(4574), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4572), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4572), + [sym__code_span_start] = ACTIONS(4572), + [sym__emphasis_open_star] = ACTIONS(4572), + [sym__emphasis_open_underscore] = ACTIONS(4572), + [sym__strikeout_open] = ACTIONS(4572), + [sym__latex_span_start] = ACTIONS(4572), + [sym__single_quote_open] = ACTIONS(4572), + [sym__double_quote_open] = ACTIONS(4572), + [sym__superscript_open] = ACTIONS(4572), + [sym__subscript_open] = ACTIONS(4572), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4572), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4572), + [sym__cite_author_in_text] = ACTIONS(4572), + [sym__cite_suppress_author] = ACTIONS(4572), + [sym__shortcode_open_escaped] = ACTIONS(4572), + [sym__shortcode_open] = ACTIONS(4572), + [sym__unclosed_span] = ACTIONS(4572), + }, + [STATE(481)] = { + [sym__qmd_attribute] = STATE(1101), + [sym_raw_attribute] = STATE(1101), + [sym_commonmark_attribute] = STATE(1101), + [sym_language_attribute] = STATE(1101), + [sym__backslash_escape] = ACTIONS(4588), + [sym_entity_reference] = ACTIONS(4588), + [sym_numeric_character_reference] = ACTIONS(4588), + [anon_sym_LT] = ACTIONS(4590), + [anon_sym_GT] = ACTIONS(4588), + [anon_sym_BANG] = ACTIONS(4588), + [anon_sym_DQUOTE] = ACTIONS(4588), + [anon_sym_POUND] = ACTIONS(4588), + [anon_sym_DOLLAR] = ACTIONS(4588), + [anon_sym_PERCENT] = ACTIONS(4588), + [anon_sym_AMP] = ACTIONS(4590), + [anon_sym_SQUOTE] = ACTIONS(4588), + [anon_sym_STAR] = ACTIONS(4588), + [anon_sym_PLUS] = ACTIONS(4588), + [anon_sym_COMMA] = ACTIONS(4588), + [anon_sym_DASH] = ACTIONS(4590), + [anon_sym_DOT] = ACTIONS(4590), + [anon_sym_SLASH] = ACTIONS(4588), + [anon_sym_COLON] = ACTIONS(4588), + [anon_sym_SEMI] = ACTIONS(4588), + [anon_sym_EQ] = ACTIONS(4588), + [anon_sym_QMARK] = ACTIONS(4588), + [anon_sym_LBRACK] = ACTIONS(4590), + [anon_sym_BSLASH] = ACTIONS(4590), + [anon_sym_RBRACK] = ACTIONS(4588), + [anon_sym_CARET] = ACTIONS(4590), + [anon_sym__] = ACTIONS(4588), + [anon_sym_BQUOTE] = ACTIONS(4588), + [anon_sym_LBRACE] = ACTIONS(4624), + [anon_sym_PIPE] = ACTIONS(4588), + [anon_sym_TILDE] = ACTIONS(4588), + [anon_sym_LPAREN] = ACTIONS(4588), + [anon_sym_RPAREN] = ACTIONS(4588), + [sym__newline_token] = ACTIONS(4588), + [aux_sym_insert_token1] = ACTIONS(4588), + [aux_sym_delete_token1] = ACTIONS(4588), + [aux_sym_highlight_token1] = ACTIONS(4588), + [aux_sym_edit_comment_token1] = ACTIONS(4588), + [anon_sym_CARET_LBRACK] = ACTIONS(4588), + [anon_sym_LBRACK_CARET] = ACTIONS(4588), + [sym_uri_autolink] = ACTIONS(4588), + [sym_email_autolink] = ACTIONS(4588), + [sym__whitespace_ge_2] = ACTIONS(4588), + [aux_sym__whitespace_token1] = ACTIONS(4590), + [sym__word_no_digit] = ACTIONS(4588), + [sym__digits] = ACTIONS(4588), + [anon_sym_DASH_DASH] = ACTIONS(4590), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4588), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4588), + [sym__code_span_start] = ACTIONS(4588), + [sym__emphasis_open_star] = ACTIONS(4588), + [sym__emphasis_open_underscore] = ACTIONS(4588), + [sym__strikeout_open] = ACTIONS(4588), + [sym__latex_span_start] = ACTIONS(4588), + [sym__single_quote_open] = ACTIONS(4588), + [sym__double_quote_open] = ACTIONS(4588), + [sym__superscript_open] = ACTIONS(4588), + [sym__subscript_open] = ACTIONS(4588), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4588), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4588), + [sym__cite_author_in_text] = ACTIONS(4588), + [sym__cite_suppress_author] = ACTIONS(4588), + [sym__shortcode_open_escaped] = ACTIONS(4588), + [sym__shortcode_open] = ACTIONS(4588), + [sym__unclosed_span] = ACTIONS(4588), + }, + [STATE(482)] = { + [sym__qmd_attribute] = STATE(1107), + [sym_raw_attribute] = STATE(1107), + [sym_commonmark_attribute] = STATE(1107), + [sym_language_attribute] = STATE(1107), + [sym__backslash_escape] = ACTIONS(4534), + [sym_entity_reference] = ACTIONS(4534), + [sym_numeric_character_reference] = ACTIONS(4534), + [anon_sym_LT] = ACTIONS(4536), + [anon_sym_GT] = ACTIONS(4534), + [anon_sym_BANG] = ACTIONS(4534), + [anon_sym_DQUOTE] = ACTIONS(4534), + [anon_sym_POUND] = ACTIONS(4534), + [anon_sym_DOLLAR] = ACTIONS(4534), + [anon_sym_PERCENT] = ACTIONS(4534), + [anon_sym_AMP] = ACTIONS(4536), + [anon_sym_SQUOTE] = ACTIONS(4534), + [anon_sym_STAR] = ACTIONS(4534), + [anon_sym_PLUS] = ACTIONS(4534), + [anon_sym_COMMA] = ACTIONS(4534), + [anon_sym_DASH] = ACTIONS(4536), + [anon_sym_DOT] = ACTIONS(4536), + [anon_sym_SLASH] = ACTIONS(4534), + [anon_sym_COLON] = ACTIONS(4534), + [anon_sym_SEMI] = ACTIONS(4534), + [anon_sym_EQ] = ACTIONS(4534), + [anon_sym_QMARK] = ACTIONS(4534), + [anon_sym_LBRACK] = ACTIONS(4536), + [anon_sym_BSLASH] = ACTIONS(4536), + [anon_sym_RBRACK] = ACTIONS(4534), + [anon_sym_CARET] = ACTIONS(4536), + [anon_sym__] = ACTIONS(4534), + [anon_sym_BQUOTE] = ACTIONS(4534), + [anon_sym_LBRACE] = ACTIONS(4624), + [anon_sym_PIPE] = ACTIONS(4534), + [anon_sym_TILDE] = ACTIONS(4534), + [anon_sym_LPAREN] = ACTIONS(4534), + [anon_sym_RPAREN] = ACTIONS(4534), + [sym__newline_token] = ACTIONS(4534), + [aux_sym_insert_token1] = ACTIONS(4534), + [aux_sym_delete_token1] = ACTIONS(4534), + [aux_sym_highlight_token1] = ACTIONS(4534), + [aux_sym_edit_comment_token1] = ACTIONS(4534), + [anon_sym_CARET_LBRACK] = ACTIONS(4534), + [anon_sym_LBRACK_CARET] = ACTIONS(4534), + [sym_uri_autolink] = ACTIONS(4534), + [sym_email_autolink] = ACTIONS(4534), + [sym__whitespace_ge_2] = ACTIONS(4534), + [aux_sym__whitespace_token1] = ACTIONS(4536), + [sym__word_no_digit] = ACTIONS(4534), + [sym__digits] = ACTIONS(4534), + [anon_sym_DASH_DASH] = ACTIONS(4536), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4534), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4534), + [sym__code_span_start] = ACTIONS(4534), + [sym__emphasis_open_star] = ACTIONS(4534), + [sym__emphasis_open_underscore] = ACTIONS(4534), + [sym__strikeout_open] = ACTIONS(4534), + [sym__latex_span_start] = ACTIONS(4534), + [sym__single_quote_open] = ACTIONS(4534), + [sym__double_quote_open] = ACTIONS(4534), + [sym__superscript_open] = ACTIONS(4534), + [sym__subscript_open] = ACTIONS(4534), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4534), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4534), + [sym__cite_author_in_text] = ACTIONS(4534), + [sym__cite_suppress_author] = ACTIONS(4534), + [sym__shortcode_open_escaped] = ACTIONS(4534), + [sym__shortcode_open] = ACTIONS(4534), + [sym__unclosed_span] = ACTIONS(4534), + }, + [STATE(483)] = { + [sym__qmd_attribute] = STATE(1109), + [sym_raw_attribute] = STATE(1109), + [sym_commonmark_attribute] = STATE(1109), + [sym_language_attribute] = STATE(1109), + [sym__backslash_escape] = ACTIONS(4546), + [sym_entity_reference] = ACTIONS(4546), + [sym_numeric_character_reference] = ACTIONS(4546), + [anon_sym_LT] = ACTIONS(4548), + [anon_sym_GT] = ACTIONS(4546), + [anon_sym_BANG] = ACTIONS(4546), + [anon_sym_DQUOTE] = ACTIONS(4546), + [anon_sym_POUND] = ACTIONS(4546), + [anon_sym_DOLLAR] = ACTIONS(4546), + [anon_sym_PERCENT] = ACTIONS(4546), + [anon_sym_AMP] = ACTIONS(4548), + [anon_sym_SQUOTE] = ACTIONS(4546), + [anon_sym_STAR] = ACTIONS(4546), + [anon_sym_PLUS] = ACTIONS(4546), + [anon_sym_COMMA] = ACTIONS(4546), + [anon_sym_DASH] = ACTIONS(4548), + [anon_sym_DOT] = ACTIONS(4548), + [anon_sym_SLASH] = ACTIONS(4546), + [anon_sym_COLON] = ACTIONS(4546), + [anon_sym_SEMI] = ACTIONS(4546), + [anon_sym_EQ] = ACTIONS(4546), + [anon_sym_QMARK] = ACTIONS(4546), + [anon_sym_LBRACK] = ACTIONS(4548), + [anon_sym_BSLASH] = ACTIONS(4548), + [anon_sym_CARET] = ACTIONS(4548), + [anon_sym__] = ACTIONS(4546), + [anon_sym_BQUOTE] = ACTIONS(4546), + [anon_sym_LBRACE] = ACTIONS(4538), + [anon_sym_PIPE] = ACTIONS(4546), + [anon_sym_TILDE] = ACTIONS(4546), + [anon_sym_LPAREN] = ACTIONS(4546), + [anon_sym_RPAREN] = ACTIONS(4546), + [sym__newline_token] = ACTIONS(4546), + [aux_sym_insert_token1] = ACTIONS(4546), + [aux_sym_insert_token2] = ACTIONS(4546), + [aux_sym_delete_token1] = ACTIONS(4546), + [aux_sym_highlight_token1] = ACTIONS(4546), + [aux_sym_edit_comment_token1] = ACTIONS(4546), + [anon_sym_CARET_LBRACK] = ACTIONS(4546), + [anon_sym_LBRACK_CARET] = ACTIONS(4546), + [sym_uri_autolink] = ACTIONS(4546), + [sym_email_autolink] = ACTIONS(4546), + [sym__whitespace_ge_2] = ACTIONS(4548), + [aux_sym__whitespace_token1] = ACTIONS(4548), + [sym__word_no_digit] = ACTIONS(4546), + [sym__digits] = ACTIONS(4546), + [anon_sym_DASH_DASH] = ACTIONS(4548), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4546), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4546), + [sym__code_span_start] = ACTIONS(4546), + [sym__emphasis_open_star] = ACTIONS(4546), + [sym__emphasis_open_underscore] = ACTIONS(4546), + [sym__strikeout_open] = ACTIONS(4546), + [sym__latex_span_start] = ACTIONS(4546), + [sym__single_quote_open] = ACTIONS(4546), + [sym__double_quote_open] = ACTIONS(4546), + [sym__superscript_open] = ACTIONS(4546), + [sym__subscript_open] = ACTIONS(4546), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4546), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4546), + [sym__cite_author_in_text] = ACTIONS(4546), + [sym__cite_suppress_author] = ACTIONS(4546), + [sym__shortcode_open_escaped] = ACTIONS(4546), + [sym__shortcode_open] = ACTIONS(4546), + [sym__unclosed_span] = ACTIONS(4546), + }, + [STATE(484)] = { + [sym__qmd_attribute] = STATE(1111), + [sym_raw_attribute] = STATE(1111), + [sym_commonmark_attribute] = STATE(1111), + [sym_language_attribute] = STATE(1111), + [sym__backslash_escape] = ACTIONS(4550), + [sym_entity_reference] = ACTIONS(4550), + [sym_numeric_character_reference] = ACTIONS(4550), + [anon_sym_LT] = ACTIONS(4552), + [anon_sym_GT] = ACTIONS(4550), + [anon_sym_BANG] = ACTIONS(4550), + [anon_sym_DQUOTE] = ACTIONS(4550), + [anon_sym_POUND] = ACTIONS(4550), + [anon_sym_DOLLAR] = ACTIONS(4550), + [anon_sym_PERCENT] = ACTIONS(4550), + [anon_sym_AMP] = ACTIONS(4552), + [anon_sym_SQUOTE] = ACTIONS(4550), + [anon_sym_STAR] = ACTIONS(4550), + [anon_sym_PLUS] = ACTIONS(4550), + [anon_sym_COMMA] = ACTIONS(4550), + [anon_sym_DASH] = ACTIONS(4552), + [anon_sym_DOT] = ACTIONS(4552), + [anon_sym_SLASH] = ACTIONS(4550), + [anon_sym_COLON] = ACTIONS(4550), + [anon_sym_SEMI] = ACTIONS(4550), + [anon_sym_EQ] = ACTIONS(4550), + [anon_sym_QMARK] = ACTIONS(4550), + [anon_sym_LBRACK] = ACTIONS(4552), + [anon_sym_BSLASH] = ACTIONS(4552), + [anon_sym_RBRACK] = ACTIONS(4550), + [anon_sym_CARET] = ACTIONS(4552), + [anon_sym__] = ACTIONS(4550), + [anon_sym_BQUOTE] = ACTIONS(4550), + [anon_sym_LBRACE] = ACTIONS(4624), + [anon_sym_PIPE] = ACTIONS(4550), + [anon_sym_TILDE] = ACTIONS(4550), + [anon_sym_LPAREN] = ACTIONS(4550), + [anon_sym_RPAREN] = ACTIONS(4550), + [sym__newline_token] = ACTIONS(4550), + [aux_sym_insert_token1] = ACTIONS(4550), + [aux_sym_delete_token1] = ACTIONS(4550), + [aux_sym_highlight_token1] = ACTIONS(4550), + [aux_sym_edit_comment_token1] = ACTIONS(4550), + [anon_sym_CARET_LBRACK] = ACTIONS(4550), + [anon_sym_LBRACK_CARET] = ACTIONS(4550), + [sym_uri_autolink] = ACTIONS(4550), + [sym_email_autolink] = ACTIONS(4550), + [sym__whitespace_ge_2] = ACTIONS(4550), + [aux_sym__whitespace_token1] = ACTIONS(4552), + [sym__word_no_digit] = ACTIONS(4550), + [sym__digits] = ACTIONS(4550), + [anon_sym_DASH_DASH] = ACTIONS(4552), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4550), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4550), + [sym__code_span_start] = ACTIONS(4550), + [sym__emphasis_open_star] = ACTIONS(4550), + [sym__emphasis_open_underscore] = ACTIONS(4550), + [sym__strikeout_open] = ACTIONS(4550), + [sym__latex_span_start] = ACTIONS(4550), + [sym__single_quote_open] = ACTIONS(4550), + [sym__double_quote_open] = ACTIONS(4550), + [sym__superscript_open] = ACTIONS(4550), + [sym__subscript_open] = ACTIONS(4550), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4550), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4550), + [sym__cite_author_in_text] = ACTIONS(4550), + [sym__cite_suppress_author] = ACTIONS(4550), + [sym__shortcode_open_escaped] = ACTIONS(4550), + [sym__shortcode_open] = ACTIONS(4550), + [sym__unclosed_span] = ACTIONS(4550), + }, + [STATE(485)] = { + [sym__qmd_attribute] = STATE(1113), + [sym_raw_attribute] = STATE(1113), + [sym_commonmark_attribute] = STATE(1113), + [sym_language_attribute] = STATE(1113), + [sym__backslash_escape] = ACTIONS(4554), + [sym_entity_reference] = ACTIONS(4554), + [sym_numeric_character_reference] = ACTIONS(4554), + [anon_sym_LT] = ACTIONS(4556), + [anon_sym_GT] = ACTIONS(4554), + [anon_sym_BANG] = ACTIONS(4554), + [anon_sym_DQUOTE] = ACTIONS(4554), + [anon_sym_POUND] = ACTIONS(4554), + [anon_sym_DOLLAR] = ACTIONS(4554), + [anon_sym_PERCENT] = ACTIONS(4554), + [anon_sym_AMP] = ACTIONS(4556), + [anon_sym_SQUOTE] = ACTIONS(4554), + [anon_sym_STAR] = ACTIONS(4554), + [anon_sym_PLUS] = ACTIONS(4554), + [anon_sym_COMMA] = ACTIONS(4554), + [anon_sym_DASH] = ACTIONS(4556), + [anon_sym_DOT] = ACTIONS(4556), + [anon_sym_SLASH] = ACTIONS(4554), + [anon_sym_COLON] = ACTIONS(4554), + [anon_sym_SEMI] = ACTIONS(4554), + [anon_sym_EQ] = ACTIONS(4554), + [anon_sym_QMARK] = ACTIONS(4554), + [anon_sym_LBRACK] = ACTIONS(4556), + [anon_sym_BSLASH] = ACTIONS(4556), + [anon_sym_CARET] = ACTIONS(4556), + [anon_sym__] = ACTIONS(4554), + [anon_sym_BQUOTE] = ACTIONS(4554), + [anon_sym_LBRACE] = ACTIONS(4538), + [anon_sym_PIPE] = ACTIONS(4554), + [anon_sym_TILDE] = ACTIONS(4554), + [anon_sym_LPAREN] = ACTIONS(4554), + [anon_sym_RPAREN] = ACTIONS(4554), + [sym__newline_token] = ACTIONS(4554), + [aux_sym_insert_token1] = ACTIONS(4554), + [aux_sym_insert_token2] = ACTIONS(4554), + [aux_sym_delete_token1] = ACTIONS(4554), + [aux_sym_highlight_token1] = ACTIONS(4554), + [aux_sym_edit_comment_token1] = ACTIONS(4554), + [anon_sym_CARET_LBRACK] = ACTIONS(4554), + [anon_sym_LBRACK_CARET] = ACTIONS(4554), + [sym_uri_autolink] = ACTIONS(4554), + [sym_email_autolink] = ACTIONS(4554), + [sym__whitespace_ge_2] = ACTIONS(4556), + [aux_sym__whitespace_token1] = ACTIONS(4556), + [sym__word_no_digit] = ACTIONS(4554), + [sym__digits] = ACTIONS(4554), + [anon_sym_DASH_DASH] = ACTIONS(4556), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4554), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4554), + [sym__code_span_start] = ACTIONS(4554), + [sym__emphasis_open_star] = ACTIONS(4554), + [sym__emphasis_open_underscore] = ACTIONS(4554), + [sym__strikeout_open] = ACTIONS(4554), + [sym__latex_span_start] = ACTIONS(4554), + [sym__single_quote_open] = ACTIONS(4554), + [sym__double_quote_open] = ACTIONS(4554), + [sym__superscript_open] = ACTIONS(4554), + [sym__subscript_open] = ACTIONS(4554), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4554), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4554), + [sym__cite_author_in_text] = ACTIONS(4554), + [sym__cite_suppress_author] = ACTIONS(4554), + [sym__shortcode_open_escaped] = ACTIONS(4554), + [sym__shortcode_open] = ACTIONS(4554), + [sym__unclosed_span] = ACTIONS(4554), + }, + [STATE(486)] = { + [sym__qmd_attribute] = STATE(1115), + [sym_raw_attribute] = STATE(1115), + [sym_commonmark_attribute] = STATE(1115), + [sym_language_attribute] = STATE(1115), + [sym__backslash_escape] = ACTIONS(4558), + [sym_entity_reference] = ACTIONS(4558), + [sym_numeric_character_reference] = ACTIONS(4558), + [anon_sym_LT] = ACTIONS(4560), + [anon_sym_GT] = ACTIONS(4558), + [anon_sym_BANG] = ACTIONS(4558), + [anon_sym_DQUOTE] = ACTIONS(4558), + [anon_sym_POUND] = ACTIONS(4558), + [anon_sym_DOLLAR] = ACTIONS(4558), + [anon_sym_PERCENT] = ACTIONS(4558), + [anon_sym_AMP] = ACTIONS(4560), + [anon_sym_SQUOTE] = ACTIONS(4558), + [anon_sym_STAR] = ACTIONS(4558), + [anon_sym_PLUS] = ACTIONS(4558), + [anon_sym_COMMA] = ACTIONS(4558), + [anon_sym_DASH] = ACTIONS(4560), + [anon_sym_DOT] = ACTIONS(4560), + [anon_sym_SLASH] = ACTIONS(4558), + [anon_sym_COLON] = ACTIONS(4558), + [anon_sym_SEMI] = ACTIONS(4558), + [anon_sym_EQ] = ACTIONS(4558), + [anon_sym_QMARK] = ACTIONS(4558), + [anon_sym_LBRACK] = ACTIONS(4560), + [anon_sym_BSLASH] = ACTIONS(4560), + [anon_sym_RBRACK] = ACTIONS(4558), + [anon_sym_CARET] = ACTIONS(4560), + [anon_sym__] = ACTIONS(4558), + [anon_sym_BQUOTE] = ACTIONS(4558), + [anon_sym_LBRACE] = ACTIONS(4624), + [anon_sym_PIPE] = ACTIONS(4558), + [anon_sym_TILDE] = ACTIONS(4558), + [anon_sym_LPAREN] = ACTIONS(4558), + [anon_sym_RPAREN] = ACTIONS(4558), + [sym__newline_token] = ACTIONS(4558), + [aux_sym_insert_token1] = ACTIONS(4558), + [aux_sym_delete_token1] = ACTIONS(4558), + [aux_sym_highlight_token1] = ACTIONS(4558), + [aux_sym_edit_comment_token1] = ACTIONS(4558), + [anon_sym_CARET_LBRACK] = ACTIONS(4558), + [anon_sym_LBRACK_CARET] = ACTIONS(4558), + [sym_uri_autolink] = ACTIONS(4558), + [sym_email_autolink] = ACTIONS(4558), + [sym__whitespace_ge_2] = ACTIONS(4558), + [aux_sym__whitespace_token1] = ACTIONS(4560), + [sym__word_no_digit] = ACTIONS(4558), + [sym__digits] = ACTIONS(4558), + [anon_sym_DASH_DASH] = ACTIONS(4560), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4558), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4558), + [sym__code_span_start] = ACTIONS(4558), + [sym__emphasis_open_star] = ACTIONS(4558), + [sym__emphasis_open_underscore] = ACTIONS(4558), + [sym__strikeout_open] = ACTIONS(4558), + [sym__latex_span_start] = ACTIONS(4558), + [sym__single_quote_open] = ACTIONS(4558), + [sym__double_quote_open] = ACTIONS(4558), + [sym__superscript_open] = ACTIONS(4558), + [sym__subscript_open] = ACTIONS(4558), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4558), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4558), + [sym__cite_author_in_text] = ACTIONS(4558), + [sym__cite_suppress_author] = ACTIONS(4558), + [sym__shortcode_open_escaped] = ACTIONS(4558), + [sym__shortcode_open] = ACTIONS(4558), + [sym__unclosed_span] = ACTIONS(4558), + }, + [STATE(487)] = { + [sym__qmd_attribute] = STATE(1116), + [sym_raw_attribute] = STATE(1116), + [sym_commonmark_attribute] = STATE(1116), + [sym_language_attribute] = STATE(1116), + [sym__backslash_escape] = ACTIONS(4562), + [sym_entity_reference] = ACTIONS(4562), + [sym_numeric_character_reference] = ACTIONS(4562), + [anon_sym_LT] = ACTIONS(4564), + [anon_sym_GT] = ACTIONS(4562), + [anon_sym_BANG] = ACTIONS(4562), + [anon_sym_DQUOTE] = ACTIONS(4562), + [anon_sym_POUND] = ACTIONS(4562), + [anon_sym_DOLLAR] = ACTIONS(4562), + [anon_sym_PERCENT] = ACTIONS(4562), + [anon_sym_AMP] = ACTIONS(4564), + [anon_sym_SQUOTE] = ACTIONS(4562), + [anon_sym_STAR] = ACTIONS(4562), + [anon_sym_PLUS] = ACTIONS(4562), + [anon_sym_COMMA] = ACTIONS(4562), + [anon_sym_DASH] = ACTIONS(4564), + [anon_sym_DOT] = ACTIONS(4564), + [anon_sym_SLASH] = ACTIONS(4562), + [anon_sym_COLON] = ACTIONS(4562), + [anon_sym_SEMI] = ACTIONS(4562), + [anon_sym_EQ] = ACTIONS(4562), + [anon_sym_QMARK] = ACTIONS(4562), + [anon_sym_LBRACK] = ACTIONS(4564), + [anon_sym_BSLASH] = ACTIONS(4564), + [anon_sym_CARET] = ACTIONS(4564), + [anon_sym__] = ACTIONS(4562), + [anon_sym_BQUOTE] = ACTIONS(4562), + [anon_sym_LBRACE] = ACTIONS(4538), + [anon_sym_PIPE] = ACTIONS(4562), + [anon_sym_TILDE] = ACTIONS(4562), + [anon_sym_LPAREN] = ACTIONS(4562), + [anon_sym_RPAREN] = ACTIONS(4562), + [sym__newline_token] = ACTIONS(4562), + [aux_sym_insert_token1] = ACTIONS(4562), + [aux_sym_insert_token2] = ACTIONS(4562), + [aux_sym_delete_token1] = ACTIONS(4562), + [aux_sym_highlight_token1] = ACTIONS(4562), + [aux_sym_edit_comment_token1] = ACTIONS(4562), + [anon_sym_CARET_LBRACK] = ACTIONS(4562), + [anon_sym_LBRACK_CARET] = ACTIONS(4562), + [sym_uri_autolink] = ACTIONS(4562), + [sym_email_autolink] = ACTIONS(4562), + [sym__whitespace_ge_2] = ACTIONS(4564), + [aux_sym__whitespace_token1] = ACTIONS(4564), + [sym__word_no_digit] = ACTIONS(4562), + [sym__digits] = ACTIONS(4562), + [anon_sym_DASH_DASH] = ACTIONS(4564), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4562), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4562), + [sym__code_span_start] = ACTIONS(4562), + [sym__emphasis_open_star] = ACTIONS(4562), + [sym__emphasis_open_underscore] = ACTIONS(4562), + [sym__strikeout_open] = ACTIONS(4562), + [sym__latex_span_start] = ACTIONS(4562), + [sym__single_quote_open] = ACTIONS(4562), + [sym__double_quote_open] = ACTIONS(4562), + [sym__superscript_open] = ACTIONS(4562), + [sym__subscript_open] = ACTIONS(4562), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4562), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4562), + [sym__cite_author_in_text] = ACTIONS(4562), + [sym__cite_suppress_author] = ACTIONS(4562), + [sym__shortcode_open_escaped] = ACTIONS(4562), + [sym__shortcode_open] = ACTIONS(4562), + [sym__unclosed_span] = ACTIONS(4562), + }, + [STATE(488)] = { + [sym__qmd_attribute] = STATE(1144), + [sym_raw_attribute] = STATE(1144), + [sym_commonmark_attribute] = STATE(1144), + [sym_language_attribute] = STATE(1144), + [ts_builtin_sym_end] = ACTIONS(4592), + [sym__backslash_escape] = ACTIONS(4592), + [sym_entity_reference] = ACTIONS(4592), + [sym_numeric_character_reference] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(4594), + [anon_sym_GT] = ACTIONS(4592), + [anon_sym_BANG] = ACTIONS(4592), + [anon_sym_DQUOTE] = ACTIONS(4592), + [anon_sym_POUND] = ACTIONS(4592), + [anon_sym_DOLLAR] = ACTIONS(4592), + [anon_sym_PERCENT] = ACTIONS(4592), + [anon_sym_AMP] = ACTIONS(4594), + [anon_sym_SQUOTE] = ACTIONS(4592), + [anon_sym_STAR] = ACTIONS(4592), + [anon_sym_PLUS] = ACTIONS(4592), + [anon_sym_COMMA] = ACTIONS(4592), + [anon_sym_DASH] = ACTIONS(4594), + [anon_sym_DOT] = ACTIONS(4594), + [anon_sym_SLASH] = ACTIONS(4592), + [anon_sym_COLON] = ACTIONS(4592), + [anon_sym_SEMI] = ACTIONS(4592), + [anon_sym_EQ] = ACTIONS(4592), + [anon_sym_QMARK] = ACTIONS(4592), + [anon_sym_LBRACK] = ACTIONS(4594), + [anon_sym_BSLASH] = ACTIONS(4594), + [anon_sym_CARET] = ACTIONS(4594), + [anon_sym__] = ACTIONS(4592), + [anon_sym_BQUOTE] = ACTIONS(4592), + [anon_sym_LBRACE] = ACTIONS(4604), + [anon_sym_PIPE] = ACTIONS(4592), + [anon_sym_TILDE] = ACTIONS(4592), + [anon_sym_LPAREN] = ACTIONS(4592), + [anon_sym_RPAREN] = ACTIONS(4592), + [sym__newline_token] = ACTIONS(4592), + [aux_sym_insert_token1] = ACTIONS(4592), + [aux_sym_delete_token1] = ACTIONS(4592), + [aux_sym_highlight_token1] = ACTIONS(4592), + [aux_sym_edit_comment_token1] = ACTIONS(4592), + [anon_sym_CARET_LBRACK] = ACTIONS(4592), + [anon_sym_LBRACK_CARET] = ACTIONS(4592), + [sym_uri_autolink] = ACTIONS(4592), + [sym_email_autolink] = ACTIONS(4592), + [sym__whitespace_ge_2] = ACTIONS(4592), + [aux_sym__whitespace_token1] = ACTIONS(4594), + [sym__word_no_digit] = ACTIONS(4592), + [sym__digits] = ACTIONS(4592), + [anon_sym_DASH_DASH] = ACTIONS(4594), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4592), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4592), + [sym__code_span_start] = ACTIONS(4592), + [sym__emphasis_open_star] = ACTIONS(4592), + [sym__emphasis_open_underscore] = ACTIONS(4592), + [sym__strikeout_open] = ACTIONS(4592), + [sym__latex_span_start] = ACTIONS(4592), + [sym__single_quote_open] = ACTIONS(4592), + [sym__double_quote_open] = ACTIONS(4592), + [sym__superscript_open] = ACTIONS(4592), + [sym__subscript_open] = ACTIONS(4592), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4592), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4592), + [sym__cite_author_in_text] = ACTIONS(4592), + [sym__cite_suppress_author] = ACTIONS(4592), + [sym__shortcode_open_escaped] = ACTIONS(4592), + [sym__shortcode_open] = ACTIONS(4592), + [sym__unclosed_span] = ACTIONS(4592), + }, + [STATE(489)] = { + [sym__qmd_attribute] = STATE(1201), + [sym_raw_attribute] = STATE(1201), + [sym_commonmark_attribute] = STATE(1201), + [sym_language_attribute] = STATE(1201), + [ts_builtin_sym_end] = ACTIONS(4600), + [sym__backslash_escape] = ACTIONS(4600), + [sym_entity_reference] = ACTIONS(4600), + [sym_numeric_character_reference] = ACTIONS(4600), + [anon_sym_LT] = ACTIONS(4602), + [anon_sym_GT] = ACTIONS(4600), + [anon_sym_BANG] = ACTIONS(4600), + [anon_sym_DQUOTE] = ACTIONS(4600), + [anon_sym_POUND] = ACTIONS(4600), + [anon_sym_DOLLAR] = ACTIONS(4600), + [anon_sym_PERCENT] = ACTIONS(4600), + [anon_sym_AMP] = ACTIONS(4602), + [anon_sym_SQUOTE] = ACTIONS(4600), + [anon_sym_STAR] = ACTIONS(4600), + [anon_sym_PLUS] = ACTIONS(4600), + [anon_sym_COMMA] = ACTIONS(4600), + [anon_sym_DASH] = ACTIONS(4602), + [anon_sym_DOT] = ACTIONS(4602), + [anon_sym_SLASH] = ACTIONS(4600), + [anon_sym_COLON] = ACTIONS(4600), + [anon_sym_SEMI] = ACTIONS(4600), + [anon_sym_EQ] = ACTIONS(4600), + [anon_sym_QMARK] = ACTIONS(4600), + [anon_sym_LBRACK] = ACTIONS(4602), + [anon_sym_BSLASH] = ACTIONS(4602), + [anon_sym_CARET] = ACTIONS(4602), + [anon_sym__] = ACTIONS(4600), + [anon_sym_BQUOTE] = ACTIONS(4600), + [anon_sym_LBRACE] = ACTIONS(4604), + [anon_sym_PIPE] = ACTIONS(4600), + [anon_sym_TILDE] = ACTIONS(4600), + [anon_sym_LPAREN] = ACTIONS(4600), + [anon_sym_RPAREN] = ACTIONS(4600), + [sym__newline_token] = ACTIONS(4600), + [aux_sym_insert_token1] = ACTIONS(4600), + [aux_sym_delete_token1] = ACTIONS(4600), + [aux_sym_highlight_token1] = ACTIONS(4600), + [aux_sym_edit_comment_token1] = ACTIONS(4600), + [anon_sym_CARET_LBRACK] = ACTIONS(4600), + [anon_sym_LBRACK_CARET] = ACTIONS(4600), + [sym_uri_autolink] = ACTIONS(4600), + [sym_email_autolink] = ACTIONS(4600), + [sym__whitespace_ge_2] = ACTIONS(4600), + [aux_sym__whitespace_token1] = ACTIONS(4602), + [sym__word_no_digit] = ACTIONS(4600), + [sym__digits] = ACTIONS(4600), + [anon_sym_DASH_DASH] = ACTIONS(4602), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4600), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4600), + [sym__code_span_start] = ACTIONS(4600), + [sym__emphasis_open_star] = ACTIONS(4600), + [sym__emphasis_open_underscore] = ACTIONS(4600), + [sym__strikeout_open] = ACTIONS(4600), + [sym__latex_span_start] = ACTIONS(4600), + [sym__single_quote_open] = ACTIONS(4600), + [sym__double_quote_open] = ACTIONS(4600), + [sym__superscript_open] = ACTIONS(4600), + [sym__subscript_open] = ACTIONS(4600), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4600), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4600), + [sym__cite_author_in_text] = ACTIONS(4600), + [sym__cite_suppress_author] = ACTIONS(4600), + [sym__shortcode_open_escaped] = ACTIONS(4600), + [sym__shortcode_open] = ACTIONS(4600), + [sym__unclosed_span] = ACTIONS(4600), + }, + [STATE(490)] = { + [sym__qmd_attribute] = STATE(677), + [sym_raw_attribute] = STATE(677), + [sym_commonmark_attribute] = STATE(677), + [sym_language_attribute] = STATE(677), + [sym__backslash_escape] = ACTIONS(4576), + [sym_entity_reference] = ACTIONS(4576), + [sym_numeric_character_reference] = ACTIONS(4576), + [anon_sym_LT] = ACTIONS(4578), + [anon_sym_GT] = ACTIONS(4576), + [anon_sym_BANG] = ACTIONS(4576), + [anon_sym_DQUOTE] = ACTIONS(4576), + [anon_sym_POUND] = ACTIONS(4576), + [anon_sym_DOLLAR] = ACTIONS(4576), + [anon_sym_PERCENT] = ACTIONS(4576), + [anon_sym_AMP] = ACTIONS(4578), + [anon_sym_SQUOTE] = ACTIONS(4576), + [anon_sym_STAR] = ACTIONS(4576), + [anon_sym_PLUS] = ACTIONS(4576), + [anon_sym_COMMA] = ACTIONS(4576), + [anon_sym_DASH] = ACTIONS(4578), + [anon_sym_DOT] = ACTIONS(4578), + [anon_sym_SLASH] = ACTIONS(4576), + [anon_sym_COLON] = ACTIONS(4576), + [anon_sym_SEMI] = ACTIONS(4576), + [anon_sym_EQ] = ACTIONS(4576), + [anon_sym_QMARK] = ACTIONS(4576), + [anon_sym_LBRACK] = ACTIONS(4578), + [anon_sym_BSLASH] = ACTIONS(4578), + [anon_sym_CARET] = ACTIONS(4578), + [anon_sym__] = ACTIONS(4576), + [anon_sym_BQUOTE] = ACTIONS(4576), + [anon_sym_LBRACE] = ACTIONS(4628), + [anon_sym_PIPE] = ACTIONS(4576), + [anon_sym_TILDE] = ACTIONS(4576), + [anon_sym_LPAREN] = ACTIONS(4630), + [anon_sym_RPAREN] = ACTIONS(4576), + [sym__newline_token] = ACTIONS(4576), + [aux_sym_insert_token1] = ACTIONS(4576), + [aux_sym_delete_token1] = ACTIONS(4576), + [aux_sym_highlight_token1] = ACTIONS(4576), + [aux_sym_edit_comment_token1] = ACTIONS(4576), + [anon_sym_CARET_LBRACK] = ACTIONS(4576), + [anon_sym_LBRACK_CARET] = ACTIONS(4576), + [sym_uri_autolink] = ACTIONS(4576), + [sym_email_autolink] = ACTIONS(4576), + [sym__whitespace_ge_2] = ACTIONS(4576), + [aux_sym__whitespace_token1] = ACTIONS(4578), + [sym__word_no_digit] = ACTIONS(4576), + [sym__digits] = ACTIONS(4576), + [anon_sym_DASH_DASH] = ACTIONS(4578), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4576), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4576), + [sym__code_span_start] = ACTIONS(4576), + [sym__emphasis_open_star] = ACTIONS(4576), + [sym__emphasis_open_underscore] = ACTIONS(4576), + [sym__strikeout_open] = ACTIONS(4576), + [sym__strikeout_close] = ACTIONS(4576), + [sym__latex_span_start] = ACTIONS(4576), + [sym__single_quote_open] = ACTIONS(4576), + [sym__double_quote_open] = ACTIONS(4576), + [sym__superscript_open] = ACTIONS(4576), + [sym__subscript_open] = ACTIONS(4576), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4576), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4576), + [sym__cite_author_in_text] = ACTIONS(4576), + [sym__cite_suppress_author] = ACTIONS(4576), + [sym__shortcode_open_escaped] = ACTIONS(4576), + [sym__shortcode_open] = ACTIONS(4576), + [sym__unclosed_span] = ACTIONS(4576), + }, + [STATE(491)] = { + [sym__qmd_attribute] = STATE(679), + [sym_raw_attribute] = STATE(679), + [sym_commonmark_attribute] = STATE(679), + [sym_language_attribute] = STATE(679), + [sym__backslash_escape] = ACTIONS(4584), + [sym_entity_reference] = ACTIONS(4584), + [sym_numeric_character_reference] = ACTIONS(4584), + [anon_sym_LT] = ACTIONS(4586), + [anon_sym_GT] = ACTIONS(4584), + [anon_sym_BANG] = ACTIONS(4584), + [anon_sym_DQUOTE] = ACTIONS(4584), + [anon_sym_POUND] = ACTIONS(4584), + [anon_sym_DOLLAR] = ACTIONS(4584), + [anon_sym_PERCENT] = ACTIONS(4584), + [anon_sym_AMP] = ACTIONS(4586), + [anon_sym_SQUOTE] = ACTIONS(4584), + [anon_sym_STAR] = ACTIONS(4584), + [anon_sym_PLUS] = ACTIONS(4584), + [anon_sym_COMMA] = ACTIONS(4584), + [anon_sym_DASH] = ACTIONS(4586), + [anon_sym_DOT] = ACTIONS(4586), + [anon_sym_SLASH] = ACTIONS(4584), + [anon_sym_COLON] = ACTIONS(4584), + [anon_sym_SEMI] = ACTIONS(4584), + [anon_sym_EQ] = ACTIONS(4584), + [anon_sym_QMARK] = ACTIONS(4584), + [anon_sym_LBRACK] = ACTIONS(4586), + [anon_sym_BSLASH] = ACTIONS(4586), + [anon_sym_CARET] = ACTIONS(4586), + [anon_sym__] = ACTIONS(4584), + [anon_sym_BQUOTE] = ACTIONS(4584), + [anon_sym_LBRACE] = ACTIONS(4628), + [anon_sym_PIPE] = ACTIONS(4584), + [anon_sym_TILDE] = ACTIONS(4584), + [anon_sym_LPAREN] = ACTIONS(4584), + [anon_sym_RPAREN] = ACTIONS(4584), + [sym__newline_token] = ACTIONS(4584), + [aux_sym_insert_token1] = ACTIONS(4584), + [aux_sym_delete_token1] = ACTIONS(4584), + [aux_sym_highlight_token1] = ACTIONS(4584), + [aux_sym_edit_comment_token1] = ACTIONS(4584), + [anon_sym_CARET_LBRACK] = ACTIONS(4584), + [anon_sym_LBRACK_CARET] = ACTIONS(4584), + [sym_uri_autolink] = ACTIONS(4584), + [sym_email_autolink] = ACTIONS(4584), + [sym__whitespace_ge_2] = ACTIONS(4584), + [aux_sym__whitespace_token1] = ACTIONS(4586), + [sym__word_no_digit] = ACTIONS(4584), + [sym__digits] = ACTIONS(4584), + [anon_sym_DASH_DASH] = ACTIONS(4586), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4584), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4584), + [sym__code_span_start] = ACTIONS(4584), + [sym__emphasis_open_star] = ACTIONS(4584), + [sym__emphasis_open_underscore] = ACTIONS(4584), + [sym__strikeout_open] = ACTIONS(4584), + [sym__strikeout_close] = ACTIONS(4584), + [sym__latex_span_start] = ACTIONS(4584), + [sym__single_quote_open] = ACTIONS(4584), + [sym__double_quote_open] = ACTIONS(4584), + [sym__superscript_open] = ACTIONS(4584), + [sym__subscript_open] = ACTIONS(4584), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4584), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4584), + [sym__cite_author_in_text] = ACTIONS(4584), + [sym__cite_suppress_author] = ACTIONS(4584), + [sym__shortcode_open_escaped] = ACTIONS(4584), + [sym__shortcode_open] = ACTIONS(4584), + [sym__unclosed_span] = ACTIONS(4584), + }, + [STATE(492)] = { + [sym__qmd_attribute] = STATE(687), + [sym_raw_attribute] = STATE(687), + [sym_commonmark_attribute] = STATE(687), + [sym_language_attribute] = STATE(687), + [sym__backslash_escape] = ACTIONS(4592), + [sym_entity_reference] = ACTIONS(4592), + [sym_numeric_character_reference] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(4594), + [anon_sym_GT] = ACTIONS(4592), + [anon_sym_BANG] = ACTIONS(4592), + [anon_sym_DQUOTE] = ACTIONS(4592), + [anon_sym_POUND] = ACTIONS(4592), + [anon_sym_DOLLAR] = ACTIONS(4592), + [anon_sym_PERCENT] = ACTIONS(4592), + [anon_sym_AMP] = ACTIONS(4594), + [anon_sym_SQUOTE] = ACTIONS(4592), + [anon_sym_STAR] = ACTIONS(4592), + [anon_sym_PLUS] = ACTIONS(4592), + [anon_sym_COMMA] = ACTIONS(4592), + [anon_sym_DASH] = ACTIONS(4594), + [anon_sym_DOT] = ACTIONS(4594), + [anon_sym_SLASH] = ACTIONS(4592), + [anon_sym_COLON] = ACTIONS(4592), + [anon_sym_SEMI] = ACTIONS(4592), + [anon_sym_EQ] = ACTIONS(4592), + [anon_sym_QMARK] = ACTIONS(4592), + [anon_sym_LBRACK] = ACTIONS(4594), + [anon_sym_BSLASH] = ACTIONS(4594), + [anon_sym_CARET] = ACTIONS(4594), + [anon_sym__] = ACTIONS(4592), + [anon_sym_BQUOTE] = ACTIONS(4592), + [anon_sym_LBRACE] = ACTIONS(4628), + [anon_sym_PIPE] = ACTIONS(4592), + [anon_sym_TILDE] = ACTIONS(4592), + [anon_sym_LPAREN] = ACTIONS(4592), + [anon_sym_RPAREN] = ACTIONS(4592), + [sym__newline_token] = ACTIONS(4592), + [aux_sym_insert_token1] = ACTIONS(4592), + [aux_sym_delete_token1] = ACTIONS(4592), + [aux_sym_highlight_token1] = ACTIONS(4592), + [aux_sym_edit_comment_token1] = ACTIONS(4592), + [anon_sym_CARET_LBRACK] = ACTIONS(4592), + [anon_sym_LBRACK_CARET] = ACTIONS(4592), + [sym_uri_autolink] = ACTIONS(4592), + [sym_email_autolink] = ACTIONS(4592), + [sym__whitespace_ge_2] = ACTIONS(4592), + [aux_sym__whitespace_token1] = ACTIONS(4594), + [sym__word_no_digit] = ACTIONS(4592), + [sym__digits] = ACTIONS(4592), + [anon_sym_DASH_DASH] = ACTIONS(4594), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4592), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4592), + [sym__code_span_start] = ACTIONS(4592), + [sym__emphasis_open_star] = ACTIONS(4592), + [sym__emphasis_open_underscore] = ACTIONS(4592), + [sym__strikeout_open] = ACTIONS(4592), + [sym__strikeout_close] = ACTIONS(4592), + [sym__latex_span_start] = ACTIONS(4592), + [sym__single_quote_open] = ACTIONS(4592), + [sym__double_quote_open] = ACTIONS(4592), + [sym__superscript_open] = ACTIONS(4592), + [sym__subscript_open] = ACTIONS(4592), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4592), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4592), + [sym__cite_author_in_text] = ACTIONS(4592), + [sym__cite_suppress_author] = ACTIONS(4592), + [sym__shortcode_open_escaped] = ACTIONS(4592), + [sym__shortcode_open] = ACTIONS(4592), + [sym__unclosed_span] = ACTIONS(4592), + }, + [STATE(493)] = { + [sym__qmd_attribute] = STATE(715), + [sym_raw_attribute] = STATE(715), + [sym_commonmark_attribute] = STATE(715), + [sym_language_attribute] = STATE(715), + [sym__backslash_escape] = ACTIONS(4596), + [sym_entity_reference] = ACTIONS(4596), + [sym_numeric_character_reference] = ACTIONS(4596), + [anon_sym_LT] = ACTIONS(4598), + [anon_sym_GT] = ACTIONS(4596), + [anon_sym_BANG] = ACTIONS(4596), + [anon_sym_DQUOTE] = ACTIONS(4596), + [anon_sym_POUND] = ACTIONS(4596), + [anon_sym_DOLLAR] = ACTIONS(4596), + [anon_sym_PERCENT] = ACTIONS(4596), + [anon_sym_AMP] = ACTIONS(4598), + [anon_sym_SQUOTE] = ACTIONS(4596), + [anon_sym_STAR] = ACTIONS(4596), + [anon_sym_PLUS] = ACTIONS(4596), + [anon_sym_COMMA] = ACTIONS(4596), + [anon_sym_DASH] = ACTIONS(4598), + [anon_sym_DOT] = ACTIONS(4598), + [anon_sym_SLASH] = ACTIONS(4596), + [anon_sym_COLON] = ACTIONS(4596), + [anon_sym_SEMI] = ACTIONS(4596), + [anon_sym_EQ] = ACTIONS(4596), + [anon_sym_QMARK] = ACTIONS(4596), + [anon_sym_LBRACK] = ACTIONS(4598), + [anon_sym_BSLASH] = ACTIONS(4598), + [anon_sym_CARET] = ACTIONS(4598), + [anon_sym__] = ACTIONS(4596), + [anon_sym_BQUOTE] = ACTIONS(4596), + [anon_sym_LBRACE] = ACTIONS(4628), + [anon_sym_PIPE] = ACTIONS(4596), + [anon_sym_TILDE] = ACTIONS(4596), + [anon_sym_LPAREN] = ACTIONS(4596), + [anon_sym_RPAREN] = ACTIONS(4596), + [sym__newline_token] = ACTIONS(4596), + [aux_sym_insert_token1] = ACTIONS(4596), + [aux_sym_delete_token1] = ACTIONS(4596), + [aux_sym_highlight_token1] = ACTIONS(4596), + [aux_sym_edit_comment_token1] = ACTIONS(4596), + [anon_sym_CARET_LBRACK] = ACTIONS(4596), + [anon_sym_LBRACK_CARET] = ACTIONS(4596), + [sym_uri_autolink] = ACTIONS(4596), + [sym_email_autolink] = ACTIONS(4596), + [sym__whitespace_ge_2] = ACTIONS(4596), + [aux_sym__whitespace_token1] = ACTIONS(4598), + [sym__word_no_digit] = ACTIONS(4596), + [sym__digits] = ACTIONS(4596), + [anon_sym_DASH_DASH] = ACTIONS(4598), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4596), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4596), + [sym__code_span_start] = ACTIONS(4596), + [sym__emphasis_open_star] = ACTIONS(4596), + [sym__emphasis_open_underscore] = ACTIONS(4596), + [sym__strikeout_open] = ACTIONS(4596), + [sym__strikeout_close] = ACTIONS(4596), + [sym__latex_span_start] = ACTIONS(4596), + [sym__single_quote_open] = ACTIONS(4596), + [sym__double_quote_open] = ACTIONS(4596), + [sym__superscript_open] = ACTIONS(4596), + [sym__subscript_open] = ACTIONS(4596), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4596), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4596), + [sym__cite_author_in_text] = ACTIONS(4596), + [sym__cite_suppress_author] = ACTIONS(4596), + [sym__shortcode_open_escaped] = ACTIONS(4596), + [sym__shortcode_open] = ACTIONS(4596), + [sym__unclosed_span] = ACTIONS(4596), + }, + [STATE(494)] = { + [sym__qmd_attribute] = STATE(691), + [sym_raw_attribute] = STATE(691), + [sym_commonmark_attribute] = STATE(691), + [sym_language_attribute] = STATE(691), + [sym__backslash_escape] = ACTIONS(4606), + [sym_entity_reference] = ACTIONS(4606), + [sym_numeric_character_reference] = ACTIONS(4606), + [anon_sym_LT] = ACTIONS(4608), + [anon_sym_GT] = ACTIONS(4606), + [anon_sym_BANG] = ACTIONS(4606), + [anon_sym_DQUOTE] = ACTIONS(4606), + [anon_sym_POUND] = ACTIONS(4606), + [anon_sym_DOLLAR] = ACTIONS(4606), + [anon_sym_PERCENT] = ACTIONS(4606), + [anon_sym_AMP] = ACTIONS(4608), + [anon_sym_SQUOTE] = ACTIONS(4606), + [anon_sym_STAR] = ACTIONS(4606), + [anon_sym_PLUS] = ACTIONS(4606), + [anon_sym_COMMA] = ACTIONS(4606), + [anon_sym_DASH] = ACTIONS(4608), + [anon_sym_DOT] = ACTIONS(4608), + [anon_sym_SLASH] = ACTIONS(4606), + [anon_sym_COLON] = ACTIONS(4606), + [anon_sym_SEMI] = ACTIONS(4606), + [anon_sym_EQ] = ACTIONS(4606), + [anon_sym_QMARK] = ACTIONS(4606), + [anon_sym_LBRACK] = ACTIONS(4608), + [anon_sym_BSLASH] = ACTIONS(4608), + [anon_sym_CARET] = ACTIONS(4608), + [anon_sym__] = ACTIONS(4606), + [anon_sym_BQUOTE] = ACTIONS(4606), + [anon_sym_LBRACE] = ACTIONS(4570), + [anon_sym_PIPE] = ACTIONS(4606), + [anon_sym_TILDE] = ACTIONS(4606), + [anon_sym_LPAREN] = ACTIONS(4606), + [anon_sym_RPAREN] = ACTIONS(4606), + [sym__newline_token] = ACTIONS(4606), + [aux_sym_insert_token1] = ACTIONS(4606), + [aux_sym_delete_token1] = ACTIONS(4606), + [aux_sym_highlight_token1] = ACTIONS(4606), + [aux_sym_edit_comment_token1] = ACTIONS(4606), + [anon_sym_CARET_LBRACK] = ACTIONS(4606), + [anon_sym_LBRACK_CARET] = ACTIONS(4606), + [sym_uri_autolink] = ACTIONS(4606), + [sym_email_autolink] = ACTIONS(4606), + [sym__whitespace_ge_2] = ACTIONS(4606), + [aux_sym__whitespace_token1] = ACTIONS(4608), + [sym__word_no_digit] = ACTIONS(4606), + [sym__digits] = ACTIONS(4606), + [anon_sym_DASH_DASH] = ACTIONS(4608), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4606), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4606), + [sym__code_span_start] = ACTIONS(4606), + [sym__emphasis_open_star] = ACTIONS(4606), + [sym__emphasis_open_underscore] = ACTIONS(4606), + [sym__emphasis_close_underscore] = ACTIONS(4606), + [sym__strikeout_open] = ACTIONS(4606), + [sym__latex_span_start] = ACTIONS(4606), + [sym__single_quote_open] = ACTIONS(4606), + [sym__double_quote_open] = ACTIONS(4606), + [sym__superscript_open] = ACTIONS(4606), + [sym__subscript_open] = ACTIONS(4606), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4606), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4606), + [sym__cite_author_in_text] = ACTIONS(4606), + [sym__cite_suppress_author] = ACTIONS(4606), + [sym__shortcode_open_escaped] = ACTIONS(4606), + [sym__shortcode_open] = ACTIONS(4606), + [sym__unclosed_span] = ACTIONS(4606), + }, + [STATE(495)] = { + [sym__qmd_attribute] = STATE(784), + [sym_raw_attribute] = STATE(784), + [sym_commonmark_attribute] = STATE(784), + [sym_language_attribute] = STATE(784), + [sym__backslash_escape] = ACTIONS(4600), + [sym_entity_reference] = ACTIONS(4600), + [sym_numeric_character_reference] = ACTIONS(4600), + [anon_sym_LT] = ACTIONS(4602), + [anon_sym_GT] = ACTIONS(4600), + [anon_sym_BANG] = ACTIONS(4600), + [anon_sym_DQUOTE] = ACTIONS(4600), + [anon_sym_POUND] = ACTIONS(4600), + [anon_sym_DOLLAR] = ACTIONS(4600), + [anon_sym_PERCENT] = ACTIONS(4600), + [anon_sym_AMP] = ACTIONS(4602), + [anon_sym_SQUOTE] = ACTIONS(4600), + [anon_sym_STAR] = ACTIONS(4600), + [anon_sym_PLUS] = ACTIONS(4600), + [anon_sym_COMMA] = ACTIONS(4600), + [anon_sym_DASH] = ACTIONS(4602), + [anon_sym_DOT] = ACTIONS(4602), + [anon_sym_SLASH] = ACTIONS(4600), + [anon_sym_COLON] = ACTIONS(4600), + [anon_sym_SEMI] = ACTIONS(4600), + [anon_sym_EQ] = ACTIONS(4600), + [anon_sym_QMARK] = ACTIONS(4600), + [anon_sym_LBRACK] = ACTIONS(4602), + [anon_sym_BSLASH] = ACTIONS(4602), + [anon_sym_CARET] = ACTIONS(4602), + [anon_sym__] = ACTIONS(4600), + [anon_sym_BQUOTE] = ACTIONS(4600), + [anon_sym_LBRACE] = ACTIONS(4628), + [anon_sym_PIPE] = ACTIONS(4600), + [anon_sym_TILDE] = ACTIONS(4600), + [anon_sym_LPAREN] = ACTIONS(4600), + [anon_sym_RPAREN] = ACTIONS(4600), + [sym__newline_token] = ACTIONS(4600), + [aux_sym_insert_token1] = ACTIONS(4600), + [aux_sym_delete_token1] = ACTIONS(4600), + [aux_sym_highlight_token1] = ACTIONS(4600), + [aux_sym_edit_comment_token1] = ACTIONS(4600), + [anon_sym_CARET_LBRACK] = ACTIONS(4600), + [anon_sym_LBRACK_CARET] = ACTIONS(4600), + [sym_uri_autolink] = ACTIONS(4600), + [sym_email_autolink] = ACTIONS(4600), + [sym__whitespace_ge_2] = ACTIONS(4600), + [aux_sym__whitespace_token1] = ACTIONS(4602), + [sym__word_no_digit] = ACTIONS(4600), + [sym__digits] = ACTIONS(4600), + [anon_sym_DASH_DASH] = ACTIONS(4602), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4600), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4600), + [sym__code_span_start] = ACTIONS(4600), + [sym__emphasis_open_star] = ACTIONS(4600), + [sym__emphasis_open_underscore] = ACTIONS(4600), + [sym__strikeout_open] = ACTIONS(4600), + [sym__strikeout_close] = ACTIONS(4600), + [sym__latex_span_start] = ACTIONS(4600), + [sym__single_quote_open] = ACTIONS(4600), + [sym__double_quote_open] = ACTIONS(4600), + [sym__superscript_open] = ACTIONS(4600), + [sym__subscript_open] = ACTIONS(4600), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4600), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4600), + [sym__cite_author_in_text] = ACTIONS(4600), + [sym__cite_suppress_author] = ACTIONS(4600), + [sym__shortcode_open_escaped] = ACTIONS(4600), + [sym__shortcode_open] = ACTIONS(4600), + [sym__unclosed_span] = ACTIONS(4600), + }, + [STATE(496)] = { + [sym__qmd_attribute] = STATE(1139), + [sym_raw_attribute] = STATE(1139), + [sym_commonmark_attribute] = STATE(1139), + [sym_language_attribute] = STATE(1139), + [ts_builtin_sym_end] = ACTIONS(4576), + [sym__backslash_escape] = ACTIONS(4576), + [sym_entity_reference] = ACTIONS(4576), + [sym_numeric_character_reference] = ACTIONS(4576), + [anon_sym_LT] = ACTIONS(4578), + [anon_sym_GT] = ACTIONS(4576), + [anon_sym_BANG] = ACTIONS(4576), + [anon_sym_DQUOTE] = ACTIONS(4576), + [anon_sym_POUND] = ACTIONS(4576), + [anon_sym_DOLLAR] = ACTIONS(4576), + [anon_sym_PERCENT] = ACTIONS(4576), + [anon_sym_AMP] = ACTIONS(4578), + [anon_sym_SQUOTE] = ACTIONS(4576), + [anon_sym_STAR] = ACTIONS(4576), + [anon_sym_PLUS] = ACTIONS(4576), + [anon_sym_COMMA] = ACTIONS(4576), + [anon_sym_DASH] = ACTIONS(4578), + [anon_sym_DOT] = ACTIONS(4578), + [anon_sym_SLASH] = ACTIONS(4576), + [anon_sym_COLON] = ACTIONS(4576), + [anon_sym_SEMI] = ACTIONS(4576), + [anon_sym_EQ] = ACTIONS(4576), + [anon_sym_QMARK] = ACTIONS(4576), + [anon_sym_LBRACK] = ACTIONS(4578), + [anon_sym_BSLASH] = ACTIONS(4578), + [anon_sym_CARET] = ACTIONS(4578), + [anon_sym__] = ACTIONS(4576), + [anon_sym_BQUOTE] = ACTIONS(4576), + [anon_sym_LBRACE] = ACTIONS(4604), + [anon_sym_PIPE] = ACTIONS(4576), + [anon_sym_TILDE] = ACTIONS(4576), + [anon_sym_LPAREN] = ACTIONS(4632), + [anon_sym_RPAREN] = ACTIONS(4576), + [sym__newline_token] = ACTIONS(4576), + [aux_sym_insert_token1] = ACTIONS(4576), + [aux_sym_delete_token1] = ACTIONS(4576), + [aux_sym_highlight_token1] = ACTIONS(4576), + [aux_sym_edit_comment_token1] = ACTIONS(4576), + [anon_sym_CARET_LBRACK] = ACTIONS(4576), + [anon_sym_LBRACK_CARET] = ACTIONS(4576), + [sym_uri_autolink] = ACTIONS(4576), + [sym_email_autolink] = ACTIONS(4576), + [sym__whitespace_ge_2] = ACTIONS(4576), + [aux_sym__whitespace_token1] = ACTIONS(4578), + [sym__word_no_digit] = ACTIONS(4576), + [sym__digits] = ACTIONS(4576), + [anon_sym_DASH_DASH] = ACTIONS(4578), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4576), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4576), + [sym__code_span_start] = ACTIONS(4576), + [sym__emphasis_open_star] = ACTIONS(4576), + [sym__emphasis_open_underscore] = ACTIONS(4576), + [sym__strikeout_open] = ACTIONS(4576), + [sym__latex_span_start] = ACTIONS(4576), + [sym__single_quote_open] = ACTIONS(4576), + [sym__double_quote_open] = ACTIONS(4576), + [sym__superscript_open] = ACTIONS(4576), + [sym__subscript_open] = ACTIONS(4576), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4576), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4576), + [sym__cite_author_in_text] = ACTIONS(4576), + [sym__cite_suppress_author] = ACTIONS(4576), + [sym__shortcode_open_escaped] = ACTIONS(4576), + [sym__shortcode_open] = ACTIONS(4576), + [sym__unclosed_span] = ACTIONS(4576), + }, + [STATE(497)] = { + [sym__qmd_attribute] = STATE(811), + [sym_raw_attribute] = STATE(811), + [sym_commonmark_attribute] = STATE(811), + [sym_language_attribute] = STATE(811), + [sym__backslash_escape] = ACTIONS(4606), + [sym_entity_reference] = ACTIONS(4606), + [sym_numeric_character_reference] = ACTIONS(4606), + [anon_sym_LT] = ACTIONS(4608), + [anon_sym_GT] = ACTIONS(4606), + [anon_sym_BANG] = ACTIONS(4606), + [anon_sym_DQUOTE] = ACTIONS(4606), + [anon_sym_POUND] = ACTIONS(4606), + [anon_sym_DOLLAR] = ACTIONS(4606), + [anon_sym_PERCENT] = ACTIONS(4606), + [anon_sym_AMP] = ACTIONS(4608), + [anon_sym_SQUOTE] = ACTIONS(4606), + [anon_sym_STAR] = ACTIONS(4606), + [anon_sym_PLUS] = ACTIONS(4606), + [anon_sym_COMMA] = ACTIONS(4606), + [anon_sym_DASH] = ACTIONS(4608), + [anon_sym_DOT] = ACTIONS(4608), + [anon_sym_SLASH] = ACTIONS(4606), + [anon_sym_COLON] = ACTIONS(4606), + [anon_sym_SEMI] = ACTIONS(4606), + [anon_sym_EQ] = ACTIONS(4606), + [anon_sym_QMARK] = ACTIONS(4606), + [anon_sym_LBRACK] = ACTIONS(4608), + [anon_sym_BSLASH] = ACTIONS(4608), + [anon_sym_CARET] = ACTIONS(4608), + [anon_sym__] = ACTIONS(4606), + [anon_sym_BQUOTE] = ACTIONS(4606), + [anon_sym_LBRACE] = ACTIONS(4628), + [anon_sym_PIPE] = ACTIONS(4606), + [anon_sym_TILDE] = ACTIONS(4606), + [anon_sym_LPAREN] = ACTIONS(4606), + [anon_sym_RPAREN] = ACTIONS(4606), + [sym__newline_token] = ACTIONS(4606), + [aux_sym_insert_token1] = ACTIONS(4606), + [aux_sym_delete_token1] = ACTIONS(4606), + [aux_sym_highlight_token1] = ACTIONS(4606), + [aux_sym_edit_comment_token1] = ACTIONS(4606), + [anon_sym_CARET_LBRACK] = ACTIONS(4606), + [anon_sym_LBRACK_CARET] = ACTIONS(4606), + [sym_uri_autolink] = ACTIONS(4606), + [sym_email_autolink] = ACTIONS(4606), + [sym__whitespace_ge_2] = ACTIONS(4606), + [aux_sym__whitespace_token1] = ACTIONS(4608), + [sym__word_no_digit] = ACTIONS(4606), + [sym__digits] = ACTIONS(4606), + [anon_sym_DASH_DASH] = ACTIONS(4608), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4606), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4606), + [sym__code_span_start] = ACTIONS(4606), + [sym__emphasis_open_star] = ACTIONS(4606), + [sym__emphasis_open_underscore] = ACTIONS(4606), + [sym__strikeout_open] = ACTIONS(4606), + [sym__strikeout_close] = ACTIONS(4606), + [sym__latex_span_start] = ACTIONS(4606), + [sym__single_quote_open] = ACTIONS(4606), + [sym__double_quote_open] = ACTIONS(4606), + [sym__superscript_open] = ACTIONS(4606), + [sym__subscript_open] = ACTIONS(4606), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4606), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4606), + [sym__cite_author_in_text] = ACTIONS(4606), + [sym__cite_suppress_author] = ACTIONS(4606), + [sym__shortcode_open_escaped] = ACTIONS(4606), + [sym__shortcode_open] = ACTIONS(4606), + [sym__unclosed_span] = ACTIONS(4606), + }, + [STATE(498)] = { + [sym__qmd_attribute] = STATE(813), + [sym_raw_attribute] = STATE(813), + [sym_commonmark_attribute] = STATE(813), + [sym_language_attribute] = STATE(813), + [sym__backslash_escape] = ACTIONS(4610), + [sym_entity_reference] = ACTIONS(4610), + [sym_numeric_character_reference] = ACTIONS(4610), + [anon_sym_LT] = ACTIONS(4612), + [anon_sym_GT] = ACTIONS(4610), + [anon_sym_BANG] = ACTIONS(4610), + [anon_sym_DQUOTE] = ACTIONS(4610), + [anon_sym_POUND] = ACTIONS(4610), + [anon_sym_DOLLAR] = ACTIONS(4610), + [anon_sym_PERCENT] = ACTIONS(4610), + [anon_sym_AMP] = ACTIONS(4612), + [anon_sym_SQUOTE] = ACTIONS(4610), + [anon_sym_STAR] = ACTIONS(4610), + [anon_sym_PLUS] = ACTIONS(4610), + [anon_sym_COMMA] = ACTIONS(4610), + [anon_sym_DASH] = ACTIONS(4612), + [anon_sym_DOT] = ACTIONS(4612), + [anon_sym_SLASH] = ACTIONS(4610), + [anon_sym_COLON] = ACTIONS(4610), + [anon_sym_SEMI] = ACTIONS(4610), + [anon_sym_EQ] = ACTIONS(4610), + [anon_sym_QMARK] = ACTIONS(4610), + [anon_sym_LBRACK] = ACTIONS(4612), + [anon_sym_BSLASH] = ACTIONS(4612), + [anon_sym_CARET] = ACTIONS(4612), + [anon_sym__] = ACTIONS(4610), + [anon_sym_BQUOTE] = ACTIONS(4610), + [anon_sym_LBRACE] = ACTIONS(4628), + [anon_sym_PIPE] = ACTIONS(4610), + [anon_sym_TILDE] = ACTIONS(4610), + [anon_sym_LPAREN] = ACTIONS(4610), + [anon_sym_RPAREN] = ACTIONS(4610), + [sym__newline_token] = ACTIONS(4610), + [aux_sym_insert_token1] = ACTIONS(4610), + [aux_sym_delete_token1] = ACTIONS(4610), + [aux_sym_highlight_token1] = ACTIONS(4610), + [aux_sym_edit_comment_token1] = ACTIONS(4610), + [anon_sym_CARET_LBRACK] = ACTIONS(4610), + [anon_sym_LBRACK_CARET] = ACTIONS(4610), + [sym_uri_autolink] = ACTIONS(4610), + [sym_email_autolink] = ACTIONS(4610), + [sym__whitespace_ge_2] = ACTIONS(4610), + [aux_sym__whitespace_token1] = ACTIONS(4612), + [sym__word_no_digit] = ACTIONS(4610), + [sym__digits] = ACTIONS(4610), + [anon_sym_DASH_DASH] = ACTIONS(4612), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4610), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4610), + [sym__code_span_start] = ACTIONS(4610), + [sym__emphasis_open_star] = ACTIONS(4610), + [sym__emphasis_open_underscore] = ACTIONS(4610), + [sym__strikeout_open] = ACTIONS(4610), + [sym__strikeout_close] = ACTIONS(4610), + [sym__latex_span_start] = ACTIONS(4610), + [sym__single_quote_open] = ACTIONS(4610), + [sym__double_quote_open] = ACTIONS(4610), + [sym__superscript_open] = ACTIONS(4610), + [sym__subscript_open] = ACTIONS(4610), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4610), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4610), + [sym__cite_author_in_text] = ACTIONS(4610), + [sym__cite_suppress_author] = ACTIONS(4610), + [sym__shortcode_open_escaped] = ACTIONS(4610), + [sym__shortcode_open] = ACTIONS(4610), + [sym__unclosed_span] = ACTIONS(4610), + }, + [STATE(499)] = { + [sym__qmd_attribute] = STATE(832), + [sym_raw_attribute] = STATE(832), + [sym_commonmark_attribute] = STATE(832), + [sym_language_attribute] = STATE(832), + [sym__backslash_escape] = ACTIONS(4566), + [sym_entity_reference] = ACTIONS(4566), + [sym_numeric_character_reference] = ACTIONS(4566), + [anon_sym_LT] = ACTIONS(4568), + [anon_sym_GT] = ACTIONS(4566), + [anon_sym_BANG] = ACTIONS(4566), + [anon_sym_DQUOTE] = ACTIONS(4566), + [anon_sym_POUND] = ACTIONS(4566), + [anon_sym_DOLLAR] = ACTIONS(4566), + [anon_sym_PERCENT] = ACTIONS(4566), + [anon_sym_AMP] = ACTIONS(4568), + [anon_sym_SQUOTE] = ACTIONS(4566), + [anon_sym_STAR] = ACTIONS(4566), + [anon_sym_PLUS] = ACTIONS(4566), + [anon_sym_COMMA] = ACTIONS(4566), + [anon_sym_DASH] = ACTIONS(4568), + [anon_sym_DOT] = ACTIONS(4568), + [anon_sym_SLASH] = ACTIONS(4566), + [anon_sym_COLON] = ACTIONS(4566), + [anon_sym_SEMI] = ACTIONS(4566), + [anon_sym_EQ] = ACTIONS(4566), + [anon_sym_QMARK] = ACTIONS(4566), + [anon_sym_LBRACK] = ACTIONS(4568), + [anon_sym_BSLASH] = ACTIONS(4568), + [anon_sym_CARET] = ACTIONS(4568), + [anon_sym__] = ACTIONS(4566), + [anon_sym_BQUOTE] = ACTIONS(4566), + [anon_sym_LBRACE] = ACTIONS(4628), + [anon_sym_PIPE] = ACTIONS(4566), + [anon_sym_TILDE] = ACTIONS(4566), + [anon_sym_LPAREN] = ACTIONS(4566), + [anon_sym_RPAREN] = ACTIONS(4566), + [sym__newline_token] = ACTIONS(4566), + [aux_sym_insert_token1] = ACTIONS(4566), + [aux_sym_delete_token1] = ACTIONS(4566), + [aux_sym_highlight_token1] = ACTIONS(4566), + [aux_sym_edit_comment_token1] = ACTIONS(4566), + [anon_sym_CARET_LBRACK] = ACTIONS(4566), + [anon_sym_LBRACK_CARET] = ACTIONS(4566), + [sym_uri_autolink] = ACTIONS(4566), + [sym_email_autolink] = ACTIONS(4566), + [sym__whitespace_ge_2] = ACTIONS(4566), + [aux_sym__whitespace_token1] = ACTIONS(4568), + [sym__word_no_digit] = ACTIONS(4566), + [sym__digits] = ACTIONS(4566), + [anon_sym_DASH_DASH] = ACTIONS(4568), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4566), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4566), + [sym__code_span_start] = ACTIONS(4566), + [sym__emphasis_open_star] = ACTIONS(4566), + [sym__emphasis_open_underscore] = ACTIONS(4566), + [sym__strikeout_open] = ACTIONS(4566), + [sym__strikeout_close] = ACTIONS(4566), + [sym__latex_span_start] = ACTIONS(4566), + [sym__single_quote_open] = ACTIONS(4566), + [sym__double_quote_open] = ACTIONS(4566), + [sym__superscript_open] = ACTIONS(4566), + [sym__subscript_open] = ACTIONS(4566), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4566), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4566), + [sym__cite_author_in_text] = ACTIONS(4566), + [sym__cite_suppress_author] = ACTIONS(4566), + [sym__shortcode_open_escaped] = ACTIONS(4566), + [sym__shortcode_open] = ACTIONS(4566), + [sym__unclosed_span] = ACTIONS(4566), + }, + [STATE(500)] = { + [sym__qmd_attribute] = STATE(844), + [sym_raw_attribute] = STATE(844), + [sym_commonmark_attribute] = STATE(844), + [sym_language_attribute] = STATE(844), + [sym__backslash_escape] = ACTIONS(4572), + [sym_entity_reference] = ACTIONS(4572), + [sym_numeric_character_reference] = ACTIONS(4572), + [anon_sym_LT] = ACTIONS(4574), + [anon_sym_GT] = ACTIONS(4572), + [anon_sym_BANG] = ACTIONS(4572), + [anon_sym_DQUOTE] = ACTIONS(4572), + [anon_sym_POUND] = ACTIONS(4572), + [anon_sym_DOLLAR] = ACTIONS(4572), + [anon_sym_PERCENT] = ACTIONS(4572), + [anon_sym_AMP] = ACTIONS(4574), + [anon_sym_SQUOTE] = ACTIONS(4572), + [anon_sym_STAR] = ACTIONS(4572), + [anon_sym_PLUS] = ACTIONS(4572), + [anon_sym_COMMA] = ACTIONS(4572), + [anon_sym_DASH] = ACTIONS(4574), + [anon_sym_DOT] = ACTIONS(4574), + [anon_sym_SLASH] = ACTIONS(4572), + [anon_sym_COLON] = ACTIONS(4572), + [anon_sym_SEMI] = ACTIONS(4572), + [anon_sym_EQ] = ACTIONS(4572), + [anon_sym_QMARK] = ACTIONS(4572), + [anon_sym_LBRACK] = ACTIONS(4574), + [anon_sym_BSLASH] = ACTIONS(4574), + [anon_sym_CARET] = ACTIONS(4574), + [anon_sym__] = ACTIONS(4572), + [anon_sym_BQUOTE] = ACTIONS(4572), + [anon_sym_LBRACE] = ACTIONS(4628), + [anon_sym_PIPE] = ACTIONS(4572), + [anon_sym_TILDE] = ACTIONS(4572), + [anon_sym_LPAREN] = ACTIONS(4572), + [anon_sym_RPAREN] = ACTIONS(4572), + [sym__newline_token] = ACTIONS(4572), + [aux_sym_insert_token1] = ACTIONS(4572), + [aux_sym_delete_token1] = ACTIONS(4572), + [aux_sym_highlight_token1] = ACTIONS(4572), + [aux_sym_edit_comment_token1] = ACTIONS(4572), + [anon_sym_CARET_LBRACK] = ACTIONS(4572), + [anon_sym_LBRACK_CARET] = ACTIONS(4572), + [sym_uri_autolink] = ACTIONS(4572), + [sym_email_autolink] = ACTIONS(4572), + [sym__whitespace_ge_2] = ACTIONS(4572), + [aux_sym__whitespace_token1] = ACTIONS(4574), + [sym__word_no_digit] = ACTIONS(4572), + [sym__digits] = ACTIONS(4572), + [anon_sym_DASH_DASH] = ACTIONS(4574), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4572), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4572), + [sym__code_span_start] = ACTIONS(4572), + [sym__emphasis_open_star] = ACTIONS(4572), + [sym__emphasis_open_underscore] = ACTIONS(4572), + [sym__strikeout_open] = ACTIONS(4572), + [sym__strikeout_close] = ACTIONS(4572), + [sym__latex_span_start] = ACTIONS(4572), + [sym__single_quote_open] = ACTIONS(4572), + [sym__double_quote_open] = ACTIONS(4572), + [sym__superscript_open] = ACTIONS(4572), + [sym__subscript_open] = ACTIONS(4572), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4572), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4572), + [sym__cite_author_in_text] = ACTIONS(4572), + [sym__cite_suppress_author] = ACTIONS(4572), + [sym__shortcode_open_escaped] = ACTIONS(4572), + [sym__shortcode_open] = ACTIONS(4572), + [sym__unclosed_span] = ACTIONS(4572), + }, + [STATE(501)] = { + [sym__qmd_attribute] = STATE(876), + [sym_raw_attribute] = STATE(876), + [sym_commonmark_attribute] = STATE(876), + [sym_language_attribute] = STATE(876), + [sym__backslash_escape] = ACTIONS(4588), + [sym_entity_reference] = ACTIONS(4588), + [sym_numeric_character_reference] = ACTIONS(4588), + [anon_sym_LT] = ACTIONS(4590), + [anon_sym_GT] = ACTIONS(4588), + [anon_sym_BANG] = ACTIONS(4588), + [anon_sym_DQUOTE] = ACTIONS(4588), + [anon_sym_POUND] = ACTIONS(4588), + [anon_sym_DOLLAR] = ACTIONS(4588), + [anon_sym_PERCENT] = ACTIONS(4588), + [anon_sym_AMP] = ACTIONS(4590), + [anon_sym_SQUOTE] = ACTIONS(4588), + [anon_sym_STAR] = ACTIONS(4588), + [anon_sym_PLUS] = ACTIONS(4588), + [anon_sym_COMMA] = ACTIONS(4588), + [anon_sym_DASH] = ACTIONS(4590), + [anon_sym_DOT] = ACTIONS(4590), + [anon_sym_SLASH] = ACTIONS(4588), + [anon_sym_COLON] = ACTIONS(4588), + [anon_sym_SEMI] = ACTIONS(4588), + [anon_sym_EQ] = ACTIONS(4588), + [anon_sym_QMARK] = ACTIONS(4588), + [anon_sym_LBRACK] = ACTIONS(4590), + [anon_sym_BSLASH] = ACTIONS(4590), + [anon_sym_CARET] = ACTIONS(4590), + [anon_sym__] = ACTIONS(4588), + [anon_sym_BQUOTE] = ACTIONS(4588), + [anon_sym_LBRACE] = ACTIONS(4628), + [anon_sym_PIPE] = ACTIONS(4588), + [anon_sym_TILDE] = ACTIONS(4588), + [anon_sym_LPAREN] = ACTIONS(4588), + [anon_sym_RPAREN] = ACTIONS(4588), + [sym__newline_token] = ACTIONS(4588), + [aux_sym_insert_token1] = ACTIONS(4588), + [aux_sym_delete_token1] = ACTIONS(4588), + [aux_sym_highlight_token1] = ACTIONS(4588), + [aux_sym_edit_comment_token1] = ACTIONS(4588), + [anon_sym_CARET_LBRACK] = ACTIONS(4588), + [anon_sym_LBRACK_CARET] = ACTIONS(4588), + [sym_uri_autolink] = ACTIONS(4588), + [sym_email_autolink] = ACTIONS(4588), + [sym__whitespace_ge_2] = ACTIONS(4588), + [aux_sym__whitespace_token1] = ACTIONS(4590), + [sym__word_no_digit] = ACTIONS(4588), + [sym__digits] = ACTIONS(4588), + [anon_sym_DASH_DASH] = ACTIONS(4590), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4588), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4588), + [sym__code_span_start] = ACTIONS(4588), + [sym__emphasis_open_star] = ACTIONS(4588), + [sym__emphasis_open_underscore] = ACTIONS(4588), + [sym__strikeout_open] = ACTIONS(4588), + [sym__strikeout_close] = ACTIONS(4588), + [sym__latex_span_start] = ACTIONS(4588), + [sym__single_quote_open] = ACTIONS(4588), + [sym__double_quote_open] = ACTIONS(4588), + [sym__superscript_open] = ACTIONS(4588), + [sym__subscript_open] = ACTIONS(4588), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4588), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4588), + [sym__cite_author_in_text] = ACTIONS(4588), + [sym__cite_suppress_author] = ACTIONS(4588), + [sym__shortcode_open_escaped] = ACTIONS(4588), + [sym__shortcode_open] = ACTIONS(4588), + [sym__unclosed_span] = ACTIONS(4588), + }, + [STATE(502)] = { + [sym__qmd_attribute] = STATE(883), + [sym_raw_attribute] = STATE(883), + [sym_commonmark_attribute] = STATE(883), + [sym_language_attribute] = STATE(883), + [sym__backslash_escape] = ACTIONS(4540), + [sym_entity_reference] = ACTIONS(4540), + [sym_numeric_character_reference] = ACTIONS(4540), + [anon_sym_LT] = ACTIONS(4542), + [anon_sym_GT] = ACTIONS(4540), + [anon_sym_BANG] = ACTIONS(4540), + [anon_sym_DQUOTE] = ACTIONS(4540), + [anon_sym_POUND] = ACTIONS(4540), + [anon_sym_DOLLAR] = ACTIONS(4540), + [anon_sym_PERCENT] = ACTIONS(4540), + [anon_sym_AMP] = ACTIONS(4542), + [anon_sym_SQUOTE] = ACTIONS(4540), + [anon_sym_STAR] = ACTIONS(4540), + [anon_sym_PLUS] = ACTIONS(4540), + [anon_sym_COMMA] = ACTIONS(4540), + [anon_sym_DASH] = ACTIONS(4542), + [anon_sym_DOT] = ACTIONS(4542), + [anon_sym_SLASH] = ACTIONS(4540), + [anon_sym_COLON] = ACTIONS(4540), + [anon_sym_SEMI] = ACTIONS(4540), + [anon_sym_EQ] = ACTIONS(4540), + [anon_sym_QMARK] = ACTIONS(4540), + [anon_sym_LBRACK] = ACTIONS(4542), + [anon_sym_BSLASH] = ACTIONS(4542), + [anon_sym_CARET] = ACTIONS(4542), + [anon_sym__] = ACTIONS(4540), + [anon_sym_BQUOTE] = ACTIONS(4540), + [anon_sym_LBRACE] = ACTIONS(4628), + [anon_sym_PIPE] = ACTIONS(4540), + [anon_sym_TILDE] = ACTIONS(4540), + [anon_sym_LPAREN] = ACTIONS(4540), + [anon_sym_RPAREN] = ACTIONS(4540), + [sym__newline_token] = ACTIONS(4540), + [aux_sym_insert_token1] = ACTIONS(4540), + [aux_sym_delete_token1] = ACTIONS(4540), + [aux_sym_highlight_token1] = ACTIONS(4540), + [aux_sym_edit_comment_token1] = ACTIONS(4540), + [anon_sym_CARET_LBRACK] = ACTIONS(4540), + [anon_sym_LBRACK_CARET] = ACTIONS(4540), + [sym_uri_autolink] = ACTIONS(4540), + [sym_email_autolink] = ACTIONS(4540), + [sym__whitespace_ge_2] = ACTIONS(4540), + [aux_sym__whitespace_token1] = ACTIONS(4542), + [sym__word_no_digit] = ACTIONS(4540), + [sym__digits] = ACTIONS(4540), + [anon_sym_DASH_DASH] = ACTIONS(4542), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4540), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4540), + [sym__code_span_start] = ACTIONS(4540), + [sym__emphasis_open_star] = ACTIONS(4540), + [sym__emphasis_open_underscore] = ACTIONS(4540), + [sym__strikeout_open] = ACTIONS(4540), + [sym__strikeout_close] = ACTIONS(4540), + [sym__latex_span_start] = ACTIONS(4540), + [sym__single_quote_open] = ACTIONS(4540), + [sym__double_quote_open] = ACTIONS(4540), + [sym__superscript_open] = ACTIONS(4540), + [sym__subscript_open] = ACTIONS(4540), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4540), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4540), + [sym__cite_author_in_text] = ACTIONS(4540), + [sym__cite_suppress_author] = ACTIONS(4540), + [sym__shortcode_open_escaped] = ACTIONS(4540), + [sym__shortcode_open] = ACTIONS(4540), + [sym__unclosed_span] = ACTIONS(4540), + }, + [STATE(503)] = { + [sym__qmd_attribute] = STATE(900), + [sym_raw_attribute] = STATE(900), + [sym_commonmark_attribute] = STATE(900), + [sym_language_attribute] = STATE(900), + [sym__backslash_escape] = ACTIONS(4534), + [sym_entity_reference] = ACTIONS(4534), + [sym_numeric_character_reference] = ACTIONS(4534), + [anon_sym_LT] = ACTIONS(4536), + [anon_sym_GT] = ACTIONS(4534), + [anon_sym_BANG] = ACTIONS(4534), + [anon_sym_DQUOTE] = ACTIONS(4534), + [anon_sym_POUND] = ACTIONS(4534), + [anon_sym_DOLLAR] = ACTIONS(4534), + [anon_sym_PERCENT] = ACTIONS(4534), + [anon_sym_AMP] = ACTIONS(4536), + [anon_sym_SQUOTE] = ACTIONS(4534), + [anon_sym_STAR] = ACTIONS(4534), + [anon_sym_PLUS] = ACTIONS(4534), + [anon_sym_COMMA] = ACTIONS(4534), + [anon_sym_DASH] = ACTIONS(4536), + [anon_sym_DOT] = ACTIONS(4536), + [anon_sym_SLASH] = ACTIONS(4534), + [anon_sym_COLON] = ACTIONS(4534), + [anon_sym_SEMI] = ACTIONS(4534), + [anon_sym_EQ] = ACTIONS(4534), + [anon_sym_QMARK] = ACTIONS(4534), + [anon_sym_LBRACK] = ACTIONS(4536), + [anon_sym_BSLASH] = ACTIONS(4536), + [anon_sym_CARET] = ACTIONS(4536), + [anon_sym__] = ACTIONS(4534), + [anon_sym_BQUOTE] = ACTIONS(4534), + [anon_sym_LBRACE] = ACTIONS(4628), + [anon_sym_PIPE] = ACTIONS(4534), + [anon_sym_TILDE] = ACTIONS(4534), + [anon_sym_LPAREN] = ACTIONS(4534), + [anon_sym_RPAREN] = ACTIONS(4534), + [sym__newline_token] = ACTIONS(4534), + [aux_sym_insert_token1] = ACTIONS(4534), + [aux_sym_delete_token1] = ACTIONS(4534), + [aux_sym_highlight_token1] = ACTIONS(4534), + [aux_sym_edit_comment_token1] = ACTIONS(4534), + [anon_sym_CARET_LBRACK] = ACTIONS(4534), + [anon_sym_LBRACK_CARET] = ACTIONS(4534), + [sym_uri_autolink] = ACTIONS(4534), + [sym_email_autolink] = ACTIONS(4534), + [sym__whitespace_ge_2] = ACTIONS(4534), + [aux_sym__whitespace_token1] = ACTIONS(4536), + [sym__word_no_digit] = ACTIONS(4534), + [sym__digits] = ACTIONS(4534), + [anon_sym_DASH_DASH] = ACTIONS(4536), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4534), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4534), + [sym__code_span_start] = ACTIONS(4534), + [sym__emphasis_open_star] = ACTIONS(4534), + [sym__emphasis_open_underscore] = ACTIONS(4534), + [sym__strikeout_open] = ACTIONS(4534), + [sym__strikeout_close] = ACTIONS(4534), + [sym__latex_span_start] = ACTIONS(4534), + [sym__single_quote_open] = ACTIONS(4534), + [sym__double_quote_open] = ACTIONS(4534), + [sym__superscript_open] = ACTIONS(4534), + [sym__subscript_open] = ACTIONS(4534), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4534), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4534), + [sym__cite_author_in_text] = ACTIONS(4534), + [sym__cite_suppress_author] = ACTIONS(4534), + [sym__shortcode_open_escaped] = ACTIONS(4534), + [sym__shortcode_open] = ACTIONS(4534), + [sym__unclosed_span] = ACTIONS(4534), + }, + [STATE(504)] = { + [sym__qmd_attribute] = STATE(906), + [sym_raw_attribute] = STATE(906), + [sym_commonmark_attribute] = STATE(906), + [sym_language_attribute] = STATE(906), + [sym__backslash_escape] = ACTIONS(4546), + [sym_entity_reference] = ACTIONS(4546), + [sym_numeric_character_reference] = ACTIONS(4546), + [anon_sym_LT] = ACTIONS(4548), + [anon_sym_GT] = ACTIONS(4546), + [anon_sym_BANG] = ACTIONS(4546), + [anon_sym_DQUOTE] = ACTIONS(4546), + [anon_sym_POUND] = ACTIONS(4546), + [anon_sym_DOLLAR] = ACTIONS(4546), + [anon_sym_PERCENT] = ACTIONS(4546), + [anon_sym_AMP] = ACTIONS(4548), + [anon_sym_SQUOTE] = ACTIONS(4546), + [anon_sym_STAR] = ACTIONS(4546), + [anon_sym_PLUS] = ACTIONS(4546), + [anon_sym_COMMA] = ACTIONS(4546), + [anon_sym_DASH] = ACTIONS(4548), + [anon_sym_DOT] = ACTIONS(4548), + [anon_sym_SLASH] = ACTIONS(4546), + [anon_sym_COLON] = ACTIONS(4546), + [anon_sym_SEMI] = ACTIONS(4546), + [anon_sym_EQ] = ACTIONS(4546), + [anon_sym_QMARK] = ACTIONS(4546), + [anon_sym_LBRACK] = ACTIONS(4548), + [anon_sym_BSLASH] = ACTIONS(4548), + [anon_sym_CARET] = ACTIONS(4548), + [anon_sym__] = ACTIONS(4546), + [anon_sym_BQUOTE] = ACTIONS(4546), + [anon_sym_LBRACE] = ACTIONS(4628), + [anon_sym_PIPE] = ACTIONS(4546), + [anon_sym_TILDE] = ACTIONS(4546), + [anon_sym_LPAREN] = ACTIONS(4546), + [anon_sym_RPAREN] = ACTIONS(4546), + [sym__newline_token] = ACTIONS(4546), + [aux_sym_insert_token1] = ACTIONS(4546), + [aux_sym_delete_token1] = ACTIONS(4546), + [aux_sym_highlight_token1] = ACTIONS(4546), + [aux_sym_edit_comment_token1] = ACTIONS(4546), + [anon_sym_CARET_LBRACK] = ACTIONS(4546), + [anon_sym_LBRACK_CARET] = ACTIONS(4546), + [sym_uri_autolink] = ACTIONS(4546), + [sym_email_autolink] = ACTIONS(4546), + [sym__whitespace_ge_2] = ACTIONS(4546), + [aux_sym__whitespace_token1] = ACTIONS(4548), + [sym__word_no_digit] = ACTIONS(4546), + [sym__digits] = ACTIONS(4546), + [anon_sym_DASH_DASH] = ACTIONS(4548), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4546), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4546), + [sym__code_span_start] = ACTIONS(4546), + [sym__emphasis_open_star] = ACTIONS(4546), + [sym__emphasis_open_underscore] = ACTIONS(4546), + [sym__strikeout_open] = ACTIONS(4546), + [sym__strikeout_close] = ACTIONS(4546), + [sym__latex_span_start] = ACTIONS(4546), + [sym__single_quote_open] = ACTIONS(4546), + [sym__double_quote_open] = ACTIONS(4546), + [sym__superscript_open] = ACTIONS(4546), + [sym__subscript_open] = ACTIONS(4546), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4546), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4546), + [sym__cite_author_in_text] = ACTIONS(4546), + [sym__cite_suppress_author] = ACTIONS(4546), + [sym__shortcode_open_escaped] = ACTIONS(4546), + [sym__shortcode_open] = ACTIONS(4546), + [sym__unclosed_span] = ACTIONS(4546), + }, + [STATE(505)] = { + [sym__qmd_attribute] = STATE(1217), + [sym_raw_attribute] = STATE(1217), + [sym_commonmark_attribute] = STATE(1217), + [sym_language_attribute] = STATE(1217), + [ts_builtin_sym_end] = ACTIONS(4606), + [sym__backslash_escape] = ACTIONS(4606), + [sym_entity_reference] = ACTIONS(4606), + [sym_numeric_character_reference] = ACTIONS(4606), + [anon_sym_LT] = ACTIONS(4608), + [anon_sym_GT] = ACTIONS(4606), + [anon_sym_BANG] = ACTIONS(4606), + [anon_sym_DQUOTE] = ACTIONS(4606), + [anon_sym_POUND] = ACTIONS(4606), + [anon_sym_DOLLAR] = ACTIONS(4606), + [anon_sym_PERCENT] = ACTIONS(4606), + [anon_sym_AMP] = ACTIONS(4608), + [anon_sym_SQUOTE] = ACTIONS(4606), + [anon_sym_STAR] = ACTIONS(4606), + [anon_sym_PLUS] = ACTIONS(4606), + [anon_sym_COMMA] = ACTIONS(4606), + [anon_sym_DASH] = ACTIONS(4608), + [anon_sym_DOT] = ACTIONS(4608), + [anon_sym_SLASH] = ACTIONS(4606), + [anon_sym_COLON] = ACTIONS(4606), + [anon_sym_SEMI] = ACTIONS(4606), + [anon_sym_EQ] = ACTIONS(4606), + [anon_sym_QMARK] = ACTIONS(4606), + [anon_sym_LBRACK] = ACTIONS(4608), + [anon_sym_BSLASH] = ACTIONS(4608), + [anon_sym_CARET] = ACTIONS(4608), + [anon_sym__] = ACTIONS(4606), + [anon_sym_BQUOTE] = ACTIONS(4606), + [anon_sym_LBRACE] = ACTIONS(4604), + [anon_sym_PIPE] = ACTIONS(4606), + [anon_sym_TILDE] = ACTIONS(4606), + [anon_sym_LPAREN] = ACTIONS(4606), + [anon_sym_RPAREN] = ACTIONS(4606), + [sym__newline_token] = ACTIONS(4606), + [aux_sym_insert_token1] = ACTIONS(4606), + [aux_sym_delete_token1] = ACTIONS(4606), + [aux_sym_highlight_token1] = ACTIONS(4606), + [aux_sym_edit_comment_token1] = ACTIONS(4606), + [anon_sym_CARET_LBRACK] = ACTIONS(4606), + [anon_sym_LBRACK_CARET] = ACTIONS(4606), + [sym_uri_autolink] = ACTIONS(4606), + [sym_email_autolink] = ACTIONS(4606), + [sym__whitespace_ge_2] = ACTIONS(4606), + [aux_sym__whitespace_token1] = ACTIONS(4608), + [sym__word_no_digit] = ACTIONS(4606), + [sym__digits] = ACTIONS(4606), + [anon_sym_DASH_DASH] = ACTIONS(4608), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4606), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4606), + [sym__code_span_start] = ACTIONS(4606), + [sym__emphasis_open_star] = ACTIONS(4606), + [sym__emphasis_open_underscore] = ACTIONS(4606), + [sym__strikeout_open] = ACTIONS(4606), + [sym__latex_span_start] = ACTIONS(4606), + [sym__single_quote_open] = ACTIONS(4606), + [sym__double_quote_open] = ACTIONS(4606), + [sym__superscript_open] = ACTIONS(4606), + [sym__subscript_open] = ACTIONS(4606), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4606), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4606), + [sym__cite_author_in_text] = ACTIONS(4606), + [sym__cite_suppress_author] = ACTIONS(4606), + [sym__shortcode_open_escaped] = ACTIONS(4606), + [sym__shortcode_open] = ACTIONS(4606), + [sym__unclosed_span] = ACTIONS(4606), + }, + [STATE(506)] = { + [sym__qmd_attribute] = STATE(910), + [sym_raw_attribute] = STATE(910), + [sym_commonmark_attribute] = STATE(910), + [sym_language_attribute] = STATE(910), + [sym__backslash_escape] = ACTIONS(4550), + [sym_entity_reference] = ACTIONS(4550), + [sym_numeric_character_reference] = ACTIONS(4550), + [anon_sym_LT] = ACTIONS(4552), + [anon_sym_GT] = ACTIONS(4550), + [anon_sym_BANG] = ACTIONS(4550), + [anon_sym_DQUOTE] = ACTIONS(4550), + [anon_sym_POUND] = ACTIONS(4550), + [anon_sym_DOLLAR] = ACTIONS(4550), + [anon_sym_PERCENT] = ACTIONS(4550), + [anon_sym_AMP] = ACTIONS(4552), + [anon_sym_SQUOTE] = ACTIONS(4550), + [anon_sym_STAR] = ACTIONS(4550), + [anon_sym_PLUS] = ACTIONS(4550), + [anon_sym_COMMA] = ACTIONS(4550), + [anon_sym_DASH] = ACTIONS(4552), + [anon_sym_DOT] = ACTIONS(4552), + [anon_sym_SLASH] = ACTIONS(4550), + [anon_sym_COLON] = ACTIONS(4550), + [anon_sym_SEMI] = ACTIONS(4550), + [anon_sym_EQ] = ACTIONS(4550), + [anon_sym_QMARK] = ACTIONS(4550), + [anon_sym_LBRACK] = ACTIONS(4552), + [anon_sym_BSLASH] = ACTIONS(4552), + [anon_sym_CARET] = ACTIONS(4552), + [anon_sym__] = ACTIONS(4550), + [anon_sym_BQUOTE] = ACTIONS(4550), + [anon_sym_LBRACE] = ACTIONS(4628), + [anon_sym_PIPE] = ACTIONS(4550), + [anon_sym_TILDE] = ACTIONS(4550), + [anon_sym_LPAREN] = ACTIONS(4550), + [anon_sym_RPAREN] = ACTIONS(4550), + [sym__newline_token] = ACTIONS(4550), + [aux_sym_insert_token1] = ACTIONS(4550), + [aux_sym_delete_token1] = ACTIONS(4550), + [aux_sym_highlight_token1] = ACTIONS(4550), + [aux_sym_edit_comment_token1] = ACTIONS(4550), + [anon_sym_CARET_LBRACK] = ACTIONS(4550), + [anon_sym_LBRACK_CARET] = ACTIONS(4550), + [sym_uri_autolink] = ACTIONS(4550), + [sym_email_autolink] = ACTIONS(4550), + [sym__whitespace_ge_2] = ACTIONS(4550), + [aux_sym__whitespace_token1] = ACTIONS(4552), + [sym__word_no_digit] = ACTIONS(4550), + [sym__digits] = ACTIONS(4550), + [anon_sym_DASH_DASH] = ACTIONS(4552), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4550), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4550), + [sym__code_span_start] = ACTIONS(4550), + [sym__emphasis_open_star] = ACTIONS(4550), + [sym__emphasis_open_underscore] = ACTIONS(4550), + [sym__strikeout_open] = ACTIONS(4550), + [sym__strikeout_close] = ACTIONS(4550), + [sym__latex_span_start] = ACTIONS(4550), + [sym__single_quote_open] = ACTIONS(4550), + [sym__double_quote_open] = ACTIONS(4550), + [sym__superscript_open] = ACTIONS(4550), + [sym__subscript_open] = ACTIONS(4550), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4550), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4550), + [sym__cite_author_in_text] = ACTIONS(4550), + [sym__cite_suppress_author] = ACTIONS(4550), + [sym__shortcode_open_escaped] = ACTIONS(4550), + [sym__shortcode_open] = ACTIONS(4550), + [sym__unclosed_span] = ACTIONS(4550), + }, + [STATE(507)] = { + [sym__qmd_attribute] = STATE(1219), + [sym_raw_attribute] = STATE(1219), + [sym_commonmark_attribute] = STATE(1219), + [sym_language_attribute] = STATE(1219), + [ts_builtin_sym_end] = ACTIONS(4610), + [sym__backslash_escape] = ACTIONS(4610), + [sym_entity_reference] = ACTIONS(4610), + [sym_numeric_character_reference] = ACTIONS(4610), + [anon_sym_LT] = ACTIONS(4612), + [anon_sym_GT] = ACTIONS(4610), + [anon_sym_BANG] = ACTIONS(4610), + [anon_sym_DQUOTE] = ACTIONS(4610), + [anon_sym_POUND] = ACTIONS(4610), + [anon_sym_DOLLAR] = ACTIONS(4610), + [anon_sym_PERCENT] = ACTIONS(4610), + [anon_sym_AMP] = ACTIONS(4612), + [anon_sym_SQUOTE] = ACTIONS(4610), + [anon_sym_STAR] = ACTIONS(4610), + [anon_sym_PLUS] = ACTIONS(4610), + [anon_sym_COMMA] = ACTIONS(4610), + [anon_sym_DASH] = ACTIONS(4612), + [anon_sym_DOT] = ACTIONS(4612), + [anon_sym_SLASH] = ACTIONS(4610), + [anon_sym_COLON] = ACTIONS(4610), + [anon_sym_SEMI] = ACTIONS(4610), + [anon_sym_EQ] = ACTIONS(4610), + [anon_sym_QMARK] = ACTIONS(4610), + [anon_sym_LBRACK] = ACTIONS(4612), + [anon_sym_BSLASH] = ACTIONS(4612), + [anon_sym_CARET] = ACTIONS(4612), + [anon_sym__] = ACTIONS(4610), + [anon_sym_BQUOTE] = ACTIONS(4610), + [anon_sym_LBRACE] = ACTIONS(4604), + [anon_sym_PIPE] = ACTIONS(4610), + [anon_sym_TILDE] = ACTIONS(4610), + [anon_sym_LPAREN] = ACTIONS(4610), + [anon_sym_RPAREN] = ACTIONS(4610), + [sym__newline_token] = ACTIONS(4610), + [aux_sym_insert_token1] = ACTIONS(4610), + [aux_sym_delete_token1] = ACTIONS(4610), + [aux_sym_highlight_token1] = ACTIONS(4610), + [aux_sym_edit_comment_token1] = ACTIONS(4610), + [anon_sym_CARET_LBRACK] = ACTIONS(4610), + [anon_sym_LBRACK_CARET] = ACTIONS(4610), + [sym_uri_autolink] = ACTIONS(4610), + [sym_email_autolink] = ACTIONS(4610), + [sym__whitespace_ge_2] = ACTIONS(4610), + [aux_sym__whitespace_token1] = ACTIONS(4612), + [sym__word_no_digit] = ACTIONS(4610), + [sym__digits] = ACTIONS(4610), + [anon_sym_DASH_DASH] = ACTIONS(4612), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4610), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4610), + [sym__code_span_start] = ACTIONS(4610), + [sym__emphasis_open_star] = ACTIONS(4610), + [sym__emphasis_open_underscore] = ACTIONS(4610), + [sym__strikeout_open] = ACTIONS(4610), + [sym__latex_span_start] = ACTIONS(4610), + [sym__single_quote_open] = ACTIONS(4610), + [sym__double_quote_open] = ACTIONS(4610), + [sym__superscript_open] = ACTIONS(4610), + [sym__subscript_open] = ACTIONS(4610), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4610), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4610), + [sym__cite_author_in_text] = ACTIONS(4610), + [sym__cite_suppress_author] = ACTIONS(4610), + [sym__shortcode_open_escaped] = ACTIONS(4610), + [sym__shortcode_open] = ACTIONS(4610), + [sym__unclosed_span] = ACTIONS(4610), + }, + [STATE(508)] = { + [sym__qmd_attribute] = STATE(915), + [sym_raw_attribute] = STATE(915), + [sym_commonmark_attribute] = STATE(915), + [sym_language_attribute] = STATE(915), + [sym__backslash_escape] = ACTIONS(4554), + [sym_entity_reference] = ACTIONS(4554), + [sym_numeric_character_reference] = ACTIONS(4554), + [anon_sym_LT] = ACTIONS(4556), + [anon_sym_GT] = ACTIONS(4554), + [anon_sym_BANG] = ACTIONS(4554), + [anon_sym_DQUOTE] = ACTIONS(4554), + [anon_sym_POUND] = ACTIONS(4554), + [anon_sym_DOLLAR] = ACTIONS(4554), + [anon_sym_PERCENT] = ACTIONS(4554), + [anon_sym_AMP] = ACTIONS(4556), + [anon_sym_SQUOTE] = ACTIONS(4554), + [anon_sym_STAR] = ACTIONS(4554), + [anon_sym_PLUS] = ACTIONS(4554), + [anon_sym_COMMA] = ACTIONS(4554), + [anon_sym_DASH] = ACTIONS(4556), + [anon_sym_DOT] = ACTIONS(4556), + [anon_sym_SLASH] = ACTIONS(4554), + [anon_sym_COLON] = ACTIONS(4554), + [anon_sym_SEMI] = ACTIONS(4554), + [anon_sym_EQ] = ACTIONS(4554), + [anon_sym_QMARK] = ACTIONS(4554), + [anon_sym_LBRACK] = ACTIONS(4556), + [anon_sym_BSLASH] = ACTIONS(4556), + [anon_sym_CARET] = ACTIONS(4556), + [anon_sym__] = ACTIONS(4554), + [anon_sym_BQUOTE] = ACTIONS(4554), + [anon_sym_LBRACE] = ACTIONS(4628), + [anon_sym_PIPE] = ACTIONS(4554), + [anon_sym_TILDE] = ACTIONS(4554), + [anon_sym_LPAREN] = ACTIONS(4554), + [anon_sym_RPAREN] = ACTIONS(4554), + [sym__newline_token] = ACTIONS(4554), + [aux_sym_insert_token1] = ACTIONS(4554), + [aux_sym_delete_token1] = ACTIONS(4554), + [aux_sym_highlight_token1] = ACTIONS(4554), + [aux_sym_edit_comment_token1] = ACTIONS(4554), + [anon_sym_CARET_LBRACK] = ACTIONS(4554), + [anon_sym_LBRACK_CARET] = ACTIONS(4554), + [sym_uri_autolink] = ACTIONS(4554), + [sym_email_autolink] = ACTIONS(4554), + [sym__whitespace_ge_2] = ACTIONS(4554), + [aux_sym__whitespace_token1] = ACTIONS(4556), + [sym__word_no_digit] = ACTIONS(4554), + [sym__digits] = ACTIONS(4554), + [anon_sym_DASH_DASH] = ACTIONS(4556), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4554), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4554), + [sym__code_span_start] = ACTIONS(4554), + [sym__emphasis_open_star] = ACTIONS(4554), + [sym__emphasis_open_underscore] = ACTIONS(4554), + [sym__strikeout_open] = ACTIONS(4554), + [sym__strikeout_close] = ACTIONS(4554), + [sym__latex_span_start] = ACTIONS(4554), + [sym__single_quote_open] = ACTIONS(4554), + [sym__double_quote_open] = ACTIONS(4554), + [sym__superscript_open] = ACTIONS(4554), + [sym__subscript_open] = ACTIONS(4554), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4554), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4554), + [sym__cite_author_in_text] = ACTIONS(4554), + [sym__cite_suppress_author] = ACTIONS(4554), + [sym__shortcode_open_escaped] = ACTIONS(4554), + [sym__shortcode_open] = ACTIONS(4554), + [sym__unclosed_span] = ACTIONS(4554), + }, + [STATE(509)] = { + [sym__qmd_attribute] = STATE(917), + [sym_raw_attribute] = STATE(917), + [sym_commonmark_attribute] = STATE(917), + [sym_language_attribute] = STATE(917), + [sym__backslash_escape] = ACTIONS(4558), + [sym_entity_reference] = ACTIONS(4558), + [sym_numeric_character_reference] = ACTIONS(4558), + [anon_sym_LT] = ACTIONS(4560), + [anon_sym_GT] = ACTIONS(4558), + [anon_sym_BANG] = ACTIONS(4558), + [anon_sym_DQUOTE] = ACTIONS(4558), + [anon_sym_POUND] = ACTIONS(4558), + [anon_sym_DOLLAR] = ACTIONS(4558), + [anon_sym_PERCENT] = ACTIONS(4558), + [anon_sym_AMP] = ACTIONS(4560), + [anon_sym_SQUOTE] = ACTIONS(4558), + [anon_sym_STAR] = ACTIONS(4558), + [anon_sym_PLUS] = ACTIONS(4558), + [anon_sym_COMMA] = ACTIONS(4558), + [anon_sym_DASH] = ACTIONS(4560), + [anon_sym_DOT] = ACTIONS(4560), + [anon_sym_SLASH] = ACTIONS(4558), + [anon_sym_COLON] = ACTIONS(4558), + [anon_sym_SEMI] = ACTIONS(4558), + [anon_sym_EQ] = ACTIONS(4558), + [anon_sym_QMARK] = ACTIONS(4558), + [anon_sym_LBRACK] = ACTIONS(4560), + [anon_sym_BSLASH] = ACTIONS(4560), + [anon_sym_CARET] = ACTIONS(4560), + [anon_sym__] = ACTIONS(4558), + [anon_sym_BQUOTE] = ACTIONS(4558), + [anon_sym_LBRACE] = ACTIONS(4628), + [anon_sym_PIPE] = ACTIONS(4558), + [anon_sym_TILDE] = ACTIONS(4558), + [anon_sym_LPAREN] = ACTIONS(4558), + [anon_sym_RPAREN] = ACTIONS(4558), + [sym__newline_token] = ACTIONS(4558), + [aux_sym_insert_token1] = ACTIONS(4558), + [aux_sym_delete_token1] = ACTIONS(4558), + [aux_sym_highlight_token1] = ACTIONS(4558), + [aux_sym_edit_comment_token1] = ACTIONS(4558), + [anon_sym_CARET_LBRACK] = ACTIONS(4558), + [anon_sym_LBRACK_CARET] = ACTIONS(4558), + [sym_uri_autolink] = ACTIONS(4558), + [sym_email_autolink] = ACTIONS(4558), + [sym__whitespace_ge_2] = ACTIONS(4558), + [aux_sym__whitespace_token1] = ACTIONS(4560), + [sym__word_no_digit] = ACTIONS(4558), + [sym__digits] = ACTIONS(4558), + [anon_sym_DASH_DASH] = ACTIONS(4560), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4558), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4558), + [sym__code_span_start] = ACTIONS(4558), + [sym__emphasis_open_star] = ACTIONS(4558), + [sym__emphasis_open_underscore] = ACTIONS(4558), + [sym__strikeout_open] = ACTIONS(4558), + [sym__strikeout_close] = ACTIONS(4558), + [sym__latex_span_start] = ACTIONS(4558), + [sym__single_quote_open] = ACTIONS(4558), + [sym__double_quote_open] = ACTIONS(4558), + [sym__superscript_open] = ACTIONS(4558), + [sym__subscript_open] = ACTIONS(4558), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4558), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4558), + [sym__cite_author_in_text] = ACTIONS(4558), + [sym__cite_suppress_author] = ACTIONS(4558), + [sym__shortcode_open_escaped] = ACTIONS(4558), + [sym__shortcode_open] = ACTIONS(4558), + [sym__unclosed_span] = ACTIONS(4558), + }, + [STATE(510)] = { + [sym__qmd_attribute] = STATE(918), + [sym_raw_attribute] = STATE(918), + [sym_commonmark_attribute] = STATE(918), + [sym_language_attribute] = STATE(918), + [sym__backslash_escape] = ACTIONS(4562), + [sym_entity_reference] = ACTIONS(4562), + [sym_numeric_character_reference] = ACTIONS(4562), + [anon_sym_LT] = ACTIONS(4564), + [anon_sym_GT] = ACTIONS(4562), + [anon_sym_BANG] = ACTIONS(4562), + [anon_sym_DQUOTE] = ACTIONS(4562), + [anon_sym_POUND] = ACTIONS(4562), + [anon_sym_DOLLAR] = ACTIONS(4562), + [anon_sym_PERCENT] = ACTIONS(4562), + [anon_sym_AMP] = ACTIONS(4564), + [anon_sym_SQUOTE] = ACTIONS(4562), + [anon_sym_STAR] = ACTIONS(4562), + [anon_sym_PLUS] = ACTIONS(4562), + [anon_sym_COMMA] = ACTIONS(4562), + [anon_sym_DASH] = ACTIONS(4564), + [anon_sym_DOT] = ACTIONS(4564), + [anon_sym_SLASH] = ACTIONS(4562), + [anon_sym_COLON] = ACTIONS(4562), + [anon_sym_SEMI] = ACTIONS(4562), + [anon_sym_EQ] = ACTIONS(4562), + [anon_sym_QMARK] = ACTIONS(4562), + [anon_sym_LBRACK] = ACTIONS(4564), + [anon_sym_BSLASH] = ACTIONS(4564), + [anon_sym_CARET] = ACTIONS(4564), + [anon_sym__] = ACTIONS(4562), + [anon_sym_BQUOTE] = ACTIONS(4562), + [anon_sym_LBRACE] = ACTIONS(4628), + [anon_sym_PIPE] = ACTIONS(4562), + [anon_sym_TILDE] = ACTIONS(4562), + [anon_sym_LPAREN] = ACTIONS(4562), + [anon_sym_RPAREN] = ACTIONS(4562), + [sym__newline_token] = ACTIONS(4562), + [aux_sym_insert_token1] = ACTIONS(4562), + [aux_sym_delete_token1] = ACTIONS(4562), + [aux_sym_highlight_token1] = ACTIONS(4562), + [aux_sym_edit_comment_token1] = ACTIONS(4562), + [anon_sym_CARET_LBRACK] = ACTIONS(4562), + [anon_sym_LBRACK_CARET] = ACTIONS(4562), + [sym_uri_autolink] = ACTIONS(4562), + [sym_email_autolink] = ACTIONS(4562), + [sym__whitespace_ge_2] = ACTIONS(4562), + [aux_sym__whitespace_token1] = ACTIONS(4564), + [sym__word_no_digit] = ACTIONS(4562), + [sym__digits] = ACTIONS(4562), + [anon_sym_DASH_DASH] = ACTIONS(4564), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4562), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4562), + [sym__code_span_start] = ACTIONS(4562), + [sym__emphasis_open_star] = ACTIONS(4562), + [sym__emphasis_open_underscore] = ACTIONS(4562), + [sym__strikeout_open] = ACTIONS(4562), + [sym__strikeout_close] = ACTIONS(4562), + [sym__latex_span_start] = ACTIONS(4562), + [sym__single_quote_open] = ACTIONS(4562), + [sym__double_quote_open] = ACTIONS(4562), + [sym__superscript_open] = ACTIONS(4562), + [sym__subscript_open] = ACTIONS(4562), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4562), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4562), + [sym__cite_author_in_text] = ACTIONS(4562), + [sym__cite_suppress_author] = ACTIONS(4562), + [sym__shortcode_open_escaped] = ACTIONS(4562), + [sym__shortcode_open] = ACTIONS(4562), + [sym__unclosed_span] = ACTIONS(4562), + }, + [STATE(511)] = { + [sym__qmd_attribute] = STATE(1226), + [sym_raw_attribute] = STATE(1226), + [sym_commonmark_attribute] = STATE(1226), + [sym_language_attribute] = STATE(1226), + [ts_builtin_sym_end] = ACTIONS(4566), + [sym__backslash_escape] = ACTIONS(4566), + [sym_entity_reference] = ACTIONS(4566), + [sym_numeric_character_reference] = ACTIONS(4566), + [anon_sym_LT] = ACTIONS(4568), + [anon_sym_GT] = ACTIONS(4566), + [anon_sym_BANG] = ACTIONS(4566), + [anon_sym_DQUOTE] = ACTIONS(4566), + [anon_sym_POUND] = ACTIONS(4566), + [anon_sym_DOLLAR] = ACTIONS(4566), + [anon_sym_PERCENT] = ACTIONS(4566), + [anon_sym_AMP] = ACTIONS(4568), + [anon_sym_SQUOTE] = ACTIONS(4566), + [anon_sym_STAR] = ACTIONS(4566), + [anon_sym_PLUS] = ACTIONS(4566), + [anon_sym_COMMA] = ACTIONS(4566), + [anon_sym_DASH] = ACTIONS(4568), + [anon_sym_DOT] = ACTIONS(4568), + [anon_sym_SLASH] = ACTIONS(4566), + [anon_sym_COLON] = ACTIONS(4566), + [anon_sym_SEMI] = ACTIONS(4566), + [anon_sym_EQ] = ACTIONS(4566), + [anon_sym_QMARK] = ACTIONS(4566), + [anon_sym_LBRACK] = ACTIONS(4568), + [anon_sym_BSLASH] = ACTIONS(4568), + [anon_sym_CARET] = ACTIONS(4568), + [anon_sym__] = ACTIONS(4566), + [anon_sym_BQUOTE] = ACTIONS(4566), + [anon_sym_LBRACE] = ACTIONS(4604), + [anon_sym_PIPE] = ACTIONS(4566), + [anon_sym_TILDE] = ACTIONS(4566), + [anon_sym_LPAREN] = ACTIONS(4566), + [anon_sym_RPAREN] = ACTIONS(4566), + [sym__newline_token] = ACTIONS(4566), + [aux_sym_insert_token1] = ACTIONS(4566), + [aux_sym_delete_token1] = ACTIONS(4566), + [aux_sym_highlight_token1] = ACTIONS(4566), + [aux_sym_edit_comment_token1] = ACTIONS(4566), + [anon_sym_CARET_LBRACK] = ACTIONS(4566), + [anon_sym_LBRACK_CARET] = ACTIONS(4566), + [sym_uri_autolink] = ACTIONS(4566), + [sym_email_autolink] = ACTIONS(4566), + [sym__whitespace_ge_2] = ACTIONS(4566), + [aux_sym__whitespace_token1] = ACTIONS(4568), + [sym__word_no_digit] = ACTIONS(4566), + [sym__digits] = ACTIONS(4566), + [anon_sym_DASH_DASH] = ACTIONS(4568), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4566), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4566), + [sym__code_span_start] = ACTIONS(4566), + [sym__emphasis_open_star] = ACTIONS(4566), + [sym__emphasis_open_underscore] = ACTIONS(4566), + [sym__strikeout_open] = ACTIONS(4566), + [sym__latex_span_start] = ACTIONS(4566), + [sym__single_quote_open] = ACTIONS(4566), + [sym__double_quote_open] = ACTIONS(4566), + [sym__superscript_open] = ACTIONS(4566), + [sym__subscript_open] = ACTIONS(4566), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4566), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4566), + [sym__cite_author_in_text] = ACTIONS(4566), + [sym__cite_suppress_author] = ACTIONS(4566), + [sym__shortcode_open_escaped] = ACTIONS(4566), + [sym__shortcode_open] = ACTIONS(4566), + [sym__unclosed_span] = ACTIONS(4566), + }, + [STATE(512)] = { + [sym__qmd_attribute] = STATE(1228), + [sym_raw_attribute] = STATE(1228), + [sym_commonmark_attribute] = STATE(1228), + [sym_language_attribute] = STATE(1228), + [ts_builtin_sym_end] = ACTIONS(4572), + [sym__backslash_escape] = ACTIONS(4572), + [sym_entity_reference] = ACTIONS(4572), + [sym_numeric_character_reference] = ACTIONS(4572), + [anon_sym_LT] = ACTIONS(4574), + [anon_sym_GT] = ACTIONS(4572), + [anon_sym_BANG] = ACTIONS(4572), + [anon_sym_DQUOTE] = ACTIONS(4572), + [anon_sym_POUND] = ACTIONS(4572), + [anon_sym_DOLLAR] = ACTIONS(4572), + [anon_sym_PERCENT] = ACTIONS(4572), + [anon_sym_AMP] = ACTIONS(4574), + [anon_sym_SQUOTE] = ACTIONS(4572), + [anon_sym_STAR] = ACTIONS(4572), + [anon_sym_PLUS] = ACTIONS(4572), + [anon_sym_COMMA] = ACTIONS(4572), + [anon_sym_DASH] = ACTIONS(4574), + [anon_sym_DOT] = ACTIONS(4574), + [anon_sym_SLASH] = ACTIONS(4572), + [anon_sym_COLON] = ACTIONS(4572), + [anon_sym_SEMI] = ACTIONS(4572), + [anon_sym_EQ] = ACTIONS(4572), + [anon_sym_QMARK] = ACTIONS(4572), + [anon_sym_LBRACK] = ACTIONS(4574), + [anon_sym_BSLASH] = ACTIONS(4574), + [anon_sym_CARET] = ACTIONS(4574), + [anon_sym__] = ACTIONS(4572), + [anon_sym_BQUOTE] = ACTIONS(4572), + [anon_sym_LBRACE] = ACTIONS(4604), + [anon_sym_PIPE] = ACTIONS(4572), + [anon_sym_TILDE] = ACTIONS(4572), + [anon_sym_LPAREN] = ACTIONS(4572), + [anon_sym_RPAREN] = ACTIONS(4572), + [sym__newline_token] = ACTIONS(4572), + [aux_sym_insert_token1] = ACTIONS(4572), + [aux_sym_delete_token1] = ACTIONS(4572), + [aux_sym_highlight_token1] = ACTIONS(4572), + [aux_sym_edit_comment_token1] = ACTIONS(4572), + [anon_sym_CARET_LBRACK] = ACTIONS(4572), + [anon_sym_LBRACK_CARET] = ACTIONS(4572), + [sym_uri_autolink] = ACTIONS(4572), + [sym_email_autolink] = ACTIONS(4572), + [sym__whitespace_ge_2] = ACTIONS(4572), + [aux_sym__whitespace_token1] = ACTIONS(4574), + [sym__word_no_digit] = ACTIONS(4572), + [sym__digits] = ACTIONS(4572), + [anon_sym_DASH_DASH] = ACTIONS(4574), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4572), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4572), + [sym__code_span_start] = ACTIONS(4572), + [sym__emphasis_open_star] = ACTIONS(4572), + [sym__emphasis_open_underscore] = ACTIONS(4572), + [sym__strikeout_open] = ACTIONS(4572), + [sym__latex_span_start] = ACTIONS(4572), + [sym__single_quote_open] = ACTIONS(4572), + [sym__double_quote_open] = ACTIONS(4572), + [sym__superscript_open] = ACTIONS(4572), + [sym__subscript_open] = ACTIONS(4572), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4572), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4572), + [sym__cite_author_in_text] = ACTIONS(4572), + [sym__cite_suppress_author] = ACTIONS(4572), + [sym__shortcode_open_escaped] = ACTIONS(4572), + [sym__shortcode_open] = ACTIONS(4572), + [sym__unclosed_span] = ACTIONS(4572), + }, + [STATE(513)] = { + [sym__qmd_attribute] = STATE(1235), + [sym_raw_attribute] = STATE(1235), + [sym_commonmark_attribute] = STATE(1235), + [sym_language_attribute] = STATE(1235), + [ts_builtin_sym_end] = ACTIONS(4588), + [sym__backslash_escape] = ACTIONS(4588), + [sym_entity_reference] = ACTIONS(4588), + [sym_numeric_character_reference] = ACTIONS(4588), + [anon_sym_LT] = ACTIONS(4590), + [anon_sym_GT] = ACTIONS(4588), + [anon_sym_BANG] = ACTIONS(4588), + [anon_sym_DQUOTE] = ACTIONS(4588), + [anon_sym_POUND] = ACTIONS(4588), + [anon_sym_DOLLAR] = ACTIONS(4588), + [anon_sym_PERCENT] = ACTIONS(4588), + [anon_sym_AMP] = ACTIONS(4590), + [anon_sym_SQUOTE] = ACTIONS(4588), + [anon_sym_STAR] = ACTIONS(4588), + [anon_sym_PLUS] = ACTIONS(4588), + [anon_sym_COMMA] = ACTIONS(4588), + [anon_sym_DASH] = ACTIONS(4590), + [anon_sym_DOT] = ACTIONS(4590), + [anon_sym_SLASH] = ACTIONS(4588), + [anon_sym_COLON] = ACTIONS(4588), + [anon_sym_SEMI] = ACTIONS(4588), + [anon_sym_EQ] = ACTIONS(4588), + [anon_sym_QMARK] = ACTIONS(4588), + [anon_sym_LBRACK] = ACTIONS(4590), + [anon_sym_BSLASH] = ACTIONS(4590), + [anon_sym_CARET] = ACTIONS(4590), + [anon_sym__] = ACTIONS(4588), + [anon_sym_BQUOTE] = ACTIONS(4588), + [anon_sym_LBRACE] = ACTIONS(4604), + [anon_sym_PIPE] = ACTIONS(4588), + [anon_sym_TILDE] = ACTIONS(4588), + [anon_sym_LPAREN] = ACTIONS(4588), + [anon_sym_RPAREN] = ACTIONS(4588), + [sym__newline_token] = ACTIONS(4588), + [aux_sym_insert_token1] = ACTIONS(4588), + [aux_sym_delete_token1] = ACTIONS(4588), + [aux_sym_highlight_token1] = ACTIONS(4588), + [aux_sym_edit_comment_token1] = ACTIONS(4588), + [anon_sym_CARET_LBRACK] = ACTIONS(4588), + [anon_sym_LBRACK_CARET] = ACTIONS(4588), + [sym_uri_autolink] = ACTIONS(4588), + [sym_email_autolink] = ACTIONS(4588), + [sym__whitespace_ge_2] = ACTIONS(4588), + [aux_sym__whitespace_token1] = ACTIONS(4590), + [sym__word_no_digit] = ACTIONS(4588), + [sym__digits] = ACTIONS(4588), + [anon_sym_DASH_DASH] = ACTIONS(4590), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4588), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4588), + [sym__code_span_start] = ACTIONS(4588), + [sym__emphasis_open_star] = ACTIONS(4588), + [sym__emphasis_open_underscore] = ACTIONS(4588), + [sym__strikeout_open] = ACTIONS(4588), + [sym__latex_span_start] = ACTIONS(4588), + [sym__single_quote_open] = ACTIONS(4588), + [sym__double_quote_open] = ACTIONS(4588), + [sym__superscript_open] = ACTIONS(4588), + [sym__subscript_open] = ACTIONS(4588), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4588), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4588), + [sym__cite_author_in_text] = ACTIONS(4588), + [sym__cite_suppress_author] = ACTIONS(4588), + [sym__shortcode_open_escaped] = ACTIONS(4588), + [sym__shortcode_open] = ACTIONS(4588), + [sym__unclosed_span] = ACTIONS(4588), + }, + [STATE(514)] = { + [sym__qmd_attribute] = STATE(1239), + [sym_raw_attribute] = STATE(1239), + [sym_commonmark_attribute] = STATE(1239), + [sym_language_attribute] = STATE(1239), + [ts_builtin_sym_end] = ACTIONS(4540), + [sym__backslash_escape] = ACTIONS(4540), + [sym_entity_reference] = ACTIONS(4540), + [sym_numeric_character_reference] = ACTIONS(4540), + [anon_sym_LT] = ACTIONS(4542), + [anon_sym_GT] = ACTIONS(4540), + [anon_sym_BANG] = ACTIONS(4540), + [anon_sym_DQUOTE] = ACTIONS(4540), + [anon_sym_POUND] = ACTIONS(4540), + [anon_sym_DOLLAR] = ACTIONS(4540), + [anon_sym_PERCENT] = ACTIONS(4540), + [anon_sym_AMP] = ACTIONS(4542), + [anon_sym_SQUOTE] = ACTIONS(4540), + [anon_sym_STAR] = ACTIONS(4540), + [anon_sym_PLUS] = ACTIONS(4540), + [anon_sym_COMMA] = ACTIONS(4540), + [anon_sym_DASH] = ACTIONS(4542), + [anon_sym_DOT] = ACTIONS(4542), + [anon_sym_SLASH] = ACTIONS(4540), + [anon_sym_COLON] = ACTIONS(4540), + [anon_sym_SEMI] = ACTIONS(4540), + [anon_sym_EQ] = ACTIONS(4540), + [anon_sym_QMARK] = ACTIONS(4540), + [anon_sym_LBRACK] = ACTIONS(4542), + [anon_sym_BSLASH] = ACTIONS(4542), + [anon_sym_CARET] = ACTIONS(4542), + [anon_sym__] = ACTIONS(4540), + [anon_sym_BQUOTE] = ACTIONS(4540), + [anon_sym_LBRACE] = ACTIONS(4604), + [anon_sym_PIPE] = ACTIONS(4540), + [anon_sym_TILDE] = ACTIONS(4540), + [anon_sym_LPAREN] = ACTIONS(4540), + [anon_sym_RPAREN] = ACTIONS(4540), + [sym__newline_token] = ACTIONS(4540), + [aux_sym_insert_token1] = ACTIONS(4540), + [aux_sym_delete_token1] = ACTIONS(4540), + [aux_sym_highlight_token1] = ACTIONS(4540), + [aux_sym_edit_comment_token1] = ACTIONS(4540), + [anon_sym_CARET_LBRACK] = ACTIONS(4540), + [anon_sym_LBRACK_CARET] = ACTIONS(4540), + [sym_uri_autolink] = ACTIONS(4540), + [sym_email_autolink] = ACTIONS(4540), + [sym__whitespace_ge_2] = ACTIONS(4540), + [aux_sym__whitespace_token1] = ACTIONS(4542), + [sym__word_no_digit] = ACTIONS(4540), + [sym__digits] = ACTIONS(4540), + [anon_sym_DASH_DASH] = ACTIONS(4542), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4540), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4540), + [sym__code_span_start] = ACTIONS(4540), + [sym__emphasis_open_star] = ACTIONS(4540), + [sym__emphasis_open_underscore] = ACTIONS(4540), + [sym__strikeout_open] = ACTIONS(4540), + [sym__latex_span_start] = ACTIONS(4540), + [sym__single_quote_open] = ACTIONS(4540), + [sym__double_quote_open] = ACTIONS(4540), + [sym__superscript_open] = ACTIONS(4540), + [sym__subscript_open] = ACTIONS(4540), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4540), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4540), + [sym__cite_author_in_text] = ACTIONS(4540), + [sym__cite_suppress_author] = ACTIONS(4540), + [sym__shortcode_open_escaped] = ACTIONS(4540), + [sym__shortcode_open] = ACTIONS(4540), + [sym__unclosed_span] = ACTIONS(4540), + }, + [STATE(515)] = { + [sym__qmd_attribute] = STATE(1243), + [sym_raw_attribute] = STATE(1243), + [sym_commonmark_attribute] = STATE(1243), + [sym_language_attribute] = STATE(1243), + [ts_builtin_sym_end] = ACTIONS(4534), + [sym__backslash_escape] = ACTIONS(4534), + [sym_entity_reference] = ACTIONS(4534), + [sym_numeric_character_reference] = ACTIONS(4534), + [anon_sym_LT] = ACTIONS(4536), + [anon_sym_GT] = ACTIONS(4534), + [anon_sym_BANG] = ACTIONS(4534), + [anon_sym_DQUOTE] = ACTIONS(4534), + [anon_sym_POUND] = ACTIONS(4534), + [anon_sym_DOLLAR] = ACTIONS(4534), + [anon_sym_PERCENT] = ACTIONS(4534), + [anon_sym_AMP] = ACTIONS(4536), + [anon_sym_SQUOTE] = ACTIONS(4534), + [anon_sym_STAR] = ACTIONS(4534), + [anon_sym_PLUS] = ACTIONS(4534), + [anon_sym_COMMA] = ACTIONS(4534), + [anon_sym_DASH] = ACTIONS(4536), + [anon_sym_DOT] = ACTIONS(4536), + [anon_sym_SLASH] = ACTIONS(4534), + [anon_sym_COLON] = ACTIONS(4534), + [anon_sym_SEMI] = ACTIONS(4534), + [anon_sym_EQ] = ACTIONS(4534), + [anon_sym_QMARK] = ACTIONS(4534), + [anon_sym_LBRACK] = ACTIONS(4536), + [anon_sym_BSLASH] = ACTIONS(4536), + [anon_sym_CARET] = ACTIONS(4536), + [anon_sym__] = ACTIONS(4534), + [anon_sym_BQUOTE] = ACTIONS(4534), + [anon_sym_LBRACE] = ACTIONS(4604), + [anon_sym_PIPE] = ACTIONS(4534), + [anon_sym_TILDE] = ACTIONS(4534), + [anon_sym_LPAREN] = ACTIONS(4534), + [anon_sym_RPAREN] = ACTIONS(4534), + [sym__newline_token] = ACTIONS(4534), + [aux_sym_insert_token1] = ACTIONS(4534), + [aux_sym_delete_token1] = ACTIONS(4534), + [aux_sym_highlight_token1] = ACTIONS(4534), + [aux_sym_edit_comment_token1] = ACTIONS(4534), + [anon_sym_CARET_LBRACK] = ACTIONS(4534), + [anon_sym_LBRACK_CARET] = ACTIONS(4534), + [sym_uri_autolink] = ACTIONS(4534), + [sym_email_autolink] = ACTIONS(4534), + [sym__whitespace_ge_2] = ACTIONS(4534), + [aux_sym__whitespace_token1] = ACTIONS(4536), + [sym__word_no_digit] = ACTIONS(4534), + [sym__digits] = ACTIONS(4534), + [anon_sym_DASH_DASH] = ACTIONS(4536), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4534), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4534), + [sym__code_span_start] = ACTIONS(4534), + [sym__emphasis_open_star] = ACTIONS(4534), + [sym__emphasis_open_underscore] = ACTIONS(4534), + [sym__strikeout_open] = ACTIONS(4534), + [sym__latex_span_start] = ACTIONS(4534), + [sym__single_quote_open] = ACTIONS(4534), + [sym__double_quote_open] = ACTIONS(4534), + [sym__superscript_open] = ACTIONS(4534), + [sym__subscript_open] = ACTIONS(4534), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4534), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4534), + [sym__cite_author_in_text] = ACTIONS(4534), + [sym__cite_suppress_author] = ACTIONS(4534), + [sym__shortcode_open_escaped] = ACTIONS(4534), + [sym__shortcode_open] = ACTIONS(4534), + [sym__unclosed_span] = ACTIONS(4534), + }, + [STATE(516)] = { + [sym__qmd_attribute] = STATE(1246), + [sym_raw_attribute] = STATE(1246), + [sym_commonmark_attribute] = STATE(1246), + [sym_language_attribute] = STATE(1246), + [ts_builtin_sym_end] = ACTIONS(4546), + [sym__backslash_escape] = ACTIONS(4546), + [sym_entity_reference] = ACTIONS(4546), + [sym_numeric_character_reference] = ACTIONS(4546), + [anon_sym_LT] = ACTIONS(4548), + [anon_sym_GT] = ACTIONS(4546), + [anon_sym_BANG] = ACTIONS(4546), + [anon_sym_DQUOTE] = ACTIONS(4546), + [anon_sym_POUND] = ACTIONS(4546), + [anon_sym_DOLLAR] = ACTIONS(4546), + [anon_sym_PERCENT] = ACTIONS(4546), + [anon_sym_AMP] = ACTIONS(4548), + [anon_sym_SQUOTE] = ACTIONS(4546), + [anon_sym_STAR] = ACTIONS(4546), + [anon_sym_PLUS] = ACTIONS(4546), + [anon_sym_COMMA] = ACTIONS(4546), + [anon_sym_DASH] = ACTIONS(4548), + [anon_sym_DOT] = ACTIONS(4548), + [anon_sym_SLASH] = ACTIONS(4546), + [anon_sym_COLON] = ACTIONS(4546), + [anon_sym_SEMI] = ACTIONS(4546), + [anon_sym_EQ] = ACTIONS(4546), + [anon_sym_QMARK] = ACTIONS(4546), + [anon_sym_LBRACK] = ACTIONS(4548), + [anon_sym_BSLASH] = ACTIONS(4548), + [anon_sym_CARET] = ACTIONS(4548), + [anon_sym__] = ACTIONS(4546), + [anon_sym_BQUOTE] = ACTIONS(4546), + [anon_sym_LBRACE] = ACTIONS(4604), + [anon_sym_PIPE] = ACTIONS(4546), + [anon_sym_TILDE] = ACTIONS(4546), + [anon_sym_LPAREN] = ACTIONS(4546), + [anon_sym_RPAREN] = ACTIONS(4546), + [sym__newline_token] = ACTIONS(4546), + [aux_sym_insert_token1] = ACTIONS(4546), + [aux_sym_delete_token1] = ACTIONS(4546), + [aux_sym_highlight_token1] = ACTIONS(4546), + [aux_sym_edit_comment_token1] = ACTIONS(4546), + [anon_sym_CARET_LBRACK] = ACTIONS(4546), + [anon_sym_LBRACK_CARET] = ACTIONS(4546), + [sym_uri_autolink] = ACTIONS(4546), + [sym_email_autolink] = ACTIONS(4546), + [sym__whitespace_ge_2] = ACTIONS(4546), + [aux_sym__whitespace_token1] = ACTIONS(4548), + [sym__word_no_digit] = ACTIONS(4546), + [sym__digits] = ACTIONS(4546), + [anon_sym_DASH_DASH] = ACTIONS(4548), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4546), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4546), + [sym__code_span_start] = ACTIONS(4546), + [sym__emphasis_open_star] = ACTIONS(4546), + [sym__emphasis_open_underscore] = ACTIONS(4546), + [sym__strikeout_open] = ACTIONS(4546), + [sym__latex_span_start] = ACTIONS(4546), + [sym__single_quote_open] = ACTIONS(4546), + [sym__double_quote_open] = ACTIONS(4546), + [sym__superscript_open] = ACTIONS(4546), + [sym__subscript_open] = ACTIONS(4546), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4546), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4546), + [sym__cite_author_in_text] = ACTIONS(4546), + [sym__cite_suppress_author] = ACTIONS(4546), + [sym__shortcode_open_escaped] = ACTIONS(4546), + [sym__shortcode_open] = ACTIONS(4546), + [sym__unclosed_span] = ACTIONS(4546), + }, + [STATE(517)] = { + [sym__qmd_attribute] = STATE(1248), + [sym_raw_attribute] = STATE(1248), + [sym_commonmark_attribute] = STATE(1248), + [sym_language_attribute] = STATE(1248), + [ts_builtin_sym_end] = ACTIONS(4550), + [sym__backslash_escape] = ACTIONS(4550), + [sym_entity_reference] = ACTIONS(4550), + [sym_numeric_character_reference] = ACTIONS(4550), + [anon_sym_LT] = ACTIONS(4552), + [anon_sym_GT] = ACTIONS(4550), + [anon_sym_BANG] = ACTIONS(4550), + [anon_sym_DQUOTE] = ACTIONS(4550), + [anon_sym_POUND] = ACTIONS(4550), + [anon_sym_DOLLAR] = ACTIONS(4550), + [anon_sym_PERCENT] = ACTIONS(4550), + [anon_sym_AMP] = ACTIONS(4552), + [anon_sym_SQUOTE] = ACTIONS(4550), + [anon_sym_STAR] = ACTIONS(4550), + [anon_sym_PLUS] = ACTIONS(4550), + [anon_sym_COMMA] = ACTIONS(4550), + [anon_sym_DASH] = ACTIONS(4552), + [anon_sym_DOT] = ACTIONS(4552), + [anon_sym_SLASH] = ACTIONS(4550), + [anon_sym_COLON] = ACTIONS(4550), + [anon_sym_SEMI] = ACTIONS(4550), + [anon_sym_EQ] = ACTIONS(4550), + [anon_sym_QMARK] = ACTIONS(4550), + [anon_sym_LBRACK] = ACTIONS(4552), + [anon_sym_BSLASH] = ACTIONS(4552), + [anon_sym_CARET] = ACTIONS(4552), + [anon_sym__] = ACTIONS(4550), + [anon_sym_BQUOTE] = ACTIONS(4550), + [anon_sym_LBRACE] = ACTIONS(4604), + [anon_sym_PIPE] = ACTIONS(4550), + [anon_sym_TILDE] = ACTIONS(4550), + [anon_sym_LPAREN] = ACTIONS(4550), + [anon_sym_RPAREN] = ACTIONS(4550), + [sym__newline_token] = ACTIONS(4550), + [aux_sym_insert_token1] = ACTIONS(4550), + [aux_sym_delete_token1] = ACTIONS(4550), + [aux_sym_highlight_token1] = ACTIONS(4550), + [aux_sym_edit_comment_token1] = ACTIONS(4550), + [anon_sym_CARET_LBRACK] = ACTIONS(4550), + [anon_sym_LBRACK_CARET] = ACTIONS(4550), + [sym_uri_autolink] = ACTIONS(4550), + [sym_email_autolink] = ACTIONS(4550), + [sym__whitespace_ge_2] = ACTIONS(4550), + [aux_sym__whitespace_token1] = ACTIONS(4552), + [sym__word_no_digit] = ACTIONS(4550), + [sym__digits] = ACTIONS(4550), + [anon_sym_DASH_DASH] = ACTIONS(4552), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4550), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4550), + [sym__code_span_start] = ACTIONS(4550), + [sym__emphasis_open_star] = ACTIONS(4550), + [sym__emphasis_open_underscore] = ACTIONS(4550), + [sym__strikeout_open] = ACTIONS(4550), + [sym__latex_span_start] = ACTIONS(4550), + [sym__single_quote_open] = ACTIONS(4550), + [sym__double_quote_open] = ACTIONS(4550), + [sym__superscript_open] = ACTIONS(4550), + [sym__subscript_open] = ACTIONS(4550), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4550), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4550), + [sym__cite_author_in_text] = ACTIONS(4550), + [sym__cite_suppress_author] = ACTIONS(4550), + [sym__shortcode_open_escaped] = ACTIONS(4550), + [sym__shortcode_open] = ACTIONS(4550), + [sym__unclosed_span] = ACTIONS(4550), + }, + [STATE(518)] = { + [sym__qmd_attribute] = STATE(1250), + [sym_raw_attribute] = STATE(1250), + [sym_commonmark_attribute] = STATE(1250), + [sym_language_attribute] = STATE(1250), + [ts_builtin_sym_end] = ACTIONS(4554), + [sym__backslash_escape] = ACTIONS(4554), + [sym_entity_reference] = ACTIONS(4554), + [sym_numeric_character_reference] = ACTIONS(4554), + [anon_sym_LT] = ACTIONS(4556), + [anon_sym_GT] = ACTIONS(4554), + [anon_sym_BANG] = ACTIONS(4554), + [anon_sym_DQUOTE] = ACTIONS(4554), + [anon_sym_POUND] = ACTIONS(4554), + [anon_sym_DOLLAR] = ACTIONS(4554), + [anon_sym_PERCENT] = ACTIONS(4554), + [anon_sym_AMP] = ACTIONS(4556), + [anon_sym_SQUOTE] = ACTIONS(4554), + [anon_sym_STAR] = ACTIONS(4554), + [anon_sym_PLUS] = ACTIONS(4554), + [anon_sym_COMMA] = ACTIONS(4554), + [anon_sym_DASH] = ACTIONS(4556), + [anon_sym_DOT] = ACTIONS(4556), + [anon_sym_SLASH] = ACTIONS(4554), + [anon_sym_COLON] = ACTIONS(4554), + [anon_sym_SEMI] = ACTIONS(4554), + [anon_sym_EQ] = ACTIONS(4554), + [anon_sym_QMARK] = ACTIONS(4554), + [anon_sym_LBRACK] = ACTIONS(4556), + [anon_sym_BSLASH] = ACTIONS(4556), + [anon_sym_CARET] = ACTIONS(4556), + [anon_sym__] = ACTIONS(4554), + [anon_sym_BQUOTE] = ACTIONS(4554), + [anon_sym_LBRACE] = ACTIONS(4604), + [anon_sym_PIPE] = ACTIONS(4554), + [anon_sym_TILDE] = ACTIONS(4554), + [anon_sym_LPAREN] = ACTIONS(4554), + [anon_sym_RPAREN] = ACTIONS(4554), + [sym__newline_token] = ACTIONS(4554), + [aux_sym_insert_token1] = ACTIONS(4554), + [aux_sym_delete_token1] = ACTIONS(4554), + [aux_sym_highlight_token1] = ACTIONS(4554), + [aux_sym_edit_comment_token1] = ACTIONS(4554), + [anon_sym_CARET_LBRACK] = ACTIONS(4554), + [anon_sym_LBRACK_CARET] = ACTIONS(4554), + [sym_uri_autolink] = ACTIONS(4554), + [sym_email_autolink] = ACTIONS(4554), + [sym__whitespace_ge_2] = ACTIONS(4554), + [aux_sym__whitespace_token1] = ACTIONS(4556), + [sym__word_no_digit] = ACTIONS(4554), + [sym__digits] = ACTIONS(4554), + [anon_sym_DASH_DASH] = ACTIONS(4556), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4554), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4554), + [sym__code_span_start] = ACTIONS(4554), + [sym__emphasis_open_star] = ACTIONS(4554), + [sym__emphasis_open_underscore] = ACTIONS(4554), + [sym__strikeout_open] = ACTIONS(4554), + [sym__latex_span_start] = ACTIONS(4554), + [sym__single_quote_open] = ACTIONS(4554), + [sym__double_quote_open] = ACTIONS(4554), + [sym__superscript_open] = ACTIONS(4554), + [sym__subscript_open] = ACTIONS(4554), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4554), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4554), + [sym__cite_author_in_text] = ACTIONS(4554), + [sym__cite_suppress_author] = ACTIONS(4554), + [sym__shortcode_open_escaped] = ACTIONS(4554), + [sym__shortcode_open] = ACTIONS(4554), + [sym__unclosed_span] = ACTIONS(4554), + }, + [STATE(519)] = { + [sym__qmd_attribute] = STATE(1252), + [sym_raw_attribute] = STATE(1252), + [sym_commonmark_attribute] = STATE(1252), + [sym_language_attribute] = STATE(1252), + [ts_builtin_sym_end] = ACTIONS(4558), + [sym__backslash_escape] = ACTIONS(4558), + [sym_entity_reference] = ACTIONS(4558), + [sym_numeric_character_reference] = ACTIONS(4558), + [anon_sym_LT] = ACTIONS(4560), + [anon_sym_GT] = ACTIONS(4558), + [anon_sym_BANG] = ACTIONS(4558), + [anon_sym_DQUOTE] = ACTIONS(4558), + [anon_sym_POUND] = ACTIONS(4558), + [anon_sym_DOLLAR] = ACTIONS(4558), + [anon_sym_PERCENT] = ACTIONS(4558), + [anon_sym_AMP] = ACTIONS(4560), + [anon_sym_SQUOTE] = ACTIONS(4558), + [anon_sym_STAR] = ACTIONS(4558), + [anon_sym_PLUS] = ACTIONS(4558), + [anon_sym_COMMA] = ACTIONS(4558), + [anon_sym_DASH] = ACTIONS(4560), + [anon_sym_DOT] = ACTIONS(4560), + [anon_sym_SLASH] = ACTIONS(4558), + [anon_sym_COLON] = ACTIONS(4558), + [anon_sym_SEMI] = ACTIONS(4558), + [anon_sym_EQ] = ACTIONS(4558), + [anon_sym_QMARK] = ACTIONS(4558), + [anon_sym_LBRACK] = ACTIONS(4560), + [anon_sym_BSLASH] = ACTIONS(4560), + [anon_sym_CARET] = ACTIONS(4560), + [anon_sym__] = ACTIONS(4558), + [anon_sym_BQUOTE] = ACTIONS(4558), + [anon_sym_LBRACE] = ACTIONS(4604), + [anon_sym_PIPE] = ACTIONS(4558), + [anon_sym_TILDE] = ACTIONS(4558), + [anon_sym_LPAREN] = ACTIONS(4558), + [anon_sym_RPAREN] = ACTIONS(4558), + [sym__newline_token] = ACTIONS(4558), + [aux_sym_insert_token1] = ACTIONS(4558), + [aux_sym_delete_token1] = ACTIONS(4558), + [aux_sym_highlight_token1] = ACTIONS(4558), + [aux_sym_edit_comment_token1] = ACTIONS(4558), + [anon_sym_CARET_LBRACK] = ACTIONS(4558), + [anon_sym_LBRACK_CARET] = ACTIONS(4558), + [sym_uri_autolink] = ACTIONS(4558), + [sym_email_autolink] = ACTIONS(4558), + [sym__whitespace_ge_2] = ACTIONS(4558), + [aux_sym__whitespace_token1] = ACTIONS(4560), + [sym__word_no_digit] = ACTIONS(4558), + [sym__digits] = ACTIONS(4558), + [anon_sym_DASH_DASH] = ACTIONS(4560), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4558), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4558), + [sym__code_span_start] = ACTIONS(4558), + [sym__emphasis_open_star] = ACTIONS(4558), + [sym__emphasis_open_underscore] = ACTIONS(4558), + [sym__strikeout_open] = ACTIONS(4558), + [sym__latex_span_start] = ACTIONS(4558), + [sym__single_quote_open] = ACTIONS(4558), + [sym__double_quote_open] = ACTIONS(4558), + [sym__superscript_open] = ACTIONS(4558), + [sym__subscript_open] = ACTIONS(4558), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4558), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4558), + [sym__cite_author_in_text] = ACTIONS(4558), + [sym__cite_suppress_author] = ACTIONS(4558), + [sym__shortcode_open_escaped] = ACTIONS(4558), + [sym__shortcode_open] = ACTIONS(4558), + [sym__unclosed_span] = ACTIONS(4558), + }, + [STATE(520)] = { + [sym__qmd_attribute] = STATE(1253), + [sym_raw_attribute] = STATE(1253), + [sym_commonmark_attribute] = STATE(1253), + [sym_language_attribute] = STATE(1253), + [ts_builtin_sym_end] = ACTIONS(4562), + [sym__backslash_escape] = ACTIONS(4562), + [sym_entity_reference] = ACTIONS(4562), + [sym_numeric_character_reference] = ACTIONS(4562), + [anon_sym_LT] = ACTIONS(4564), + [anon_sym_GT] = ACTIONS(4562), + [anon_sym_BANG] = ACTIONS(4562), + [anon_sym_DQUOTE] = ACTIONS(4562), + [anon_sym_POUND] = ACTIONS(4562), + [anon_sym_DOLLAR] = ACTIONS(4562), + [anon_sym_PERCENT] = ACTIONS(4562), + [anon_sym_AMP] = ACTIONS(4564), + [anon_sym_SQUOTE] = ACTIONS(4562), + [anon_sym_STAR] = ACTIONS(4562), + [anon_sym_PLUS] = ACTIONS(4562), + [anon_sym_COMMA] = ACTIONS(4562), + [anon_sym_DASH] = ACTIONS(4564), + [anon_sym_DOT] = ACTIONS(4564), + [anon_sym_SLASH] = ACTIONS(4562), + [anon_sym_COLON] = ACTIONS(4562), + [anon_sym_SEMI] = ACTIONS(4562), + [anon_sym_EQ] = ACTIONS(4562), + [anon_sym_QMARK] = ACTIONS(4562), + [anon_sym_LBRACK] = ACTIONS(4564), + [anon_sym_BSLASH] = ACTIONS(4564), + [anon_sym_CARET] = ACTIONS(4564), + [anon_sym__] = ACTIONS(4562), + [anon_sym_BQUOTE] = ACTIONS(4562), + [anon_sym_LBRACE] = ACTIONS(4604), + [anon_sym_PIPE] = ACTIONS(4562), + [anon_sym_TILDE] = ACTIONS(4562), + [anon_sym_LPAREN] = ACTIONS(4562), + [anon_sym_RPAREN] = ACTIONS(4562), + [sym__newline_token] = ACTIONS(4562), + [aux_sym_insert_token1] = ACTIONS(4562), + [aux_sym_delete_token1] = ACTIONS(4562), + [aux_sym_highlight_token1] = ACTIONS(4562), + [aux_sym_edit_comment_token1] = ACTIONS(4562), + [anon_sym_CARET_LBRACK] = ACTIONS(4562), + [anon_sym_LBRACK_CARET] = ACTIONS(4562), + [sym_uri_autolink] = ACTIONS(4562), + [sym_email_autolink] = ACTIONS(4562), + [sym__whitespace_ge_2] = ACTIONS(4562), + [aux_sym__whitespace_token1] = ACTIONS(4564), + [sym__word_no_digit] = ACTIONS(4562), + [sym__digits] = ACTIONS(4562), + [anon_sym_DASH_DASH] = ACTIONS(4564), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4562), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4562), + [sym__code_span_start] = ACTIONS(4562), + [sym__emphasis_open_star] = ACTIONS(4562), + [sym__emphasis_open_underscore] = ACTIONS(4562), + [sym__strikeout_open] = ACTIONS(4562), + [sym__latex_span_start] = ACTIONS(4562), + [sym__single_quote_open] = ACTIONS(4562), + [sym__double_quote_open] = ACTIONS(4562), + [sym__superscript_open] = ACTIONS(4562), + [sym__subscript_open] = ACTIONS(4562), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4562), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4562), + [sym__cite_author_in_text] = ACTIONS(4562), + [sym__cite_suppress_author] = ACTIONS(4562), + [sym__shortcode_open_escaped] = ACTIONS(4562), + [sym__shortcode_open] = ACTIONS(4562), + [sym__unclosed_span] = ACTIONS(4562), + }, + [STATE(521)] = { + [sym__qmd_attribute] = STATE(1141), + [sym_raw_attribute] = STATE(1141), + [sym_commonmark_attribute] = STATE(1141), + [sym_language_attribute] = STATE(1141), + [ts_builtin_sym_end] = ACTIONS(4584), + [sym__backslash_escape] = ACTIONS(4584), + [sym_entity_reference] = ACTIONS(4584), + [sym_numeric_character_reference] = ACTIONS(4584), + [anon_sym_LT] = ACTIONS(4586), + [anon_sym_GT] = ACTIONS(4584), + [anon_sym_BANG] = ACTIONS(4584), + [anon_sym_DQUOTE] = ACTIONS(4584), + [anon_sym_POUND] = ACTIONS(4584), + [anon_sym_DOLLAR] = ACTIONS(4584), + [anon_sym_PERCENT] = ACTIONS(4584), + [anon_sym_AMP] = ACTIONS(4586), + [anon_sym_SQUOTE] = ACTIONS(4584), + [anon_sym_STAR] = ACTIONS(4584), + [anon_sym_PLUS] = ACTIONS(4584), + [anon_sym_COMMA] = ACTIONS(4584), + [anon_sym_DASH] = ACTIONS(4586), + [anon_sym_DOT] = ACTIONS(4586), + [anon_sym_SLASH] = ACTIONS(4584), + [anon_sym_COLON] = ACTIONS(4584), + [anon_sym_SEMI] = ACTIONS(4584), + [anon_sym_EQ] = ACTIONS(4584), + [anon_sym_QMARK] = ACTIONS(4584), + [anon_sym_LBRACK] = ACTIONS(4586), + [anon_sym_BSLASH] = ACTIONS(4586), + [anon_sym_CARET] = ACTIONS(4586), + [anon_sym__] = ACTIONS(4584), + [anon_sym_BQUOTE] = ACTIONS(4584), + [anon_sym_LBRACE] = ACTIONS(4604), + [anon_sym_PIPE] = ACTIONS(4584), + [anon_sym_TILDE] = ACTIONS(4584), + [anon_sym_LPAREN] = ACTIONS(4584), + [anon_sym_RPAREN] = ACTIONS(4584), + [sym__newline_token] = ACTIONS(4584), + [aux_sym_insert_token1] = ACTIONS(4584), + [aux_sym_delete_token1] = ACTIONS(4584), + [aux_sym_highlight_token1] = ACTIONS(4584), + [aux_sym_edit_comment_token1] = ACTIONS(4584), + [anon_sym_CARET_LBRACK] = ACTIONS(4584), + [anon_sym_LBRACK_CARET] = ACTIONS(4584), + [sym_uri_autolink] = ACTIONS(4584), + [sym_email_autolink] = ACTIONS(4584), + [sym__whitespace_ge_2] = ACTIONS(4584), + [aux_sym__whitespace_token1] = ACTIONS(4586), + [sym__word_no_digit] = ACTIONS(4584), + [sym__digits] = ACTIONS(4584), + [anon_sym_DASH_DASH] = ACTIONS(4586), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4584), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4584), + [sym__code_span_start] = ACTIONS(4584), + [sym__emphasis_open_star] = ACTIONS(4584), + [sym__emphasis_open_underscore] = ACTIONS(4584), + [sym__strikeout_open] = ACTIONS(4584), + [sym__latex_span_start] = ACTIONS(4584), + [sym__single_quote_open] = ACTIONS(4584), + [sym__double_quote_open] = ACTIONS(4584), + [sym__superscript_open] = ACTIONS(4584), + [sym__subscript_open] = ACTIONS(4584), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4584), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4584), + [sym__cite_author_in_text] = ACTIONS(4584), + [sym__cite_suppress_author] = ACTIONS(4584), + [sym__shortcode_open_escaped] = ACTIONS(4584), + [sym__shortcode_open] = ACTIONS(4584), + [sym__unclosed_span] = ACTIONS(4584), + }, + [STATE(522)] = { + [sym__qmd_attribute] = STATE(1291), + [sym_raw_attribute] = STATE(1291), + [sym_commonmark_attribute] = STATE(1291), + [sym_language_attribute] = STATE(1291), + [sym__backslash_escape] = ACTIONS(4576), + [sym_entity_reference] = ACTIONS(4576), + [sym_numeric_character_reference] = ACTIONS(4576), + [anon_sym_LT] = ACTIONS(4578), + [anon_sym_GT] = ACTIONS(4576), + [anon_sym_BANG] = ACTIONS(4576), + [anon_sym_DQUOTE] = ACTIONS(4576), + [anon_sym_POUND] = ACTIONS(4576), + [anon_sym_DOLLAR] = ACTIONS(4576), + [anon_sym_PERCENT] = ACTIONS(4576), + [anon_sym_AMP] = ACTIONS(4578), + [anon_sym_SQUOTE] = ACTIONS(4576), + [anon_sym_STAR] = ACTIONS(4576), + [anon_sym_PLUS] = ACTIONS(4576), + [anon_sym_COMMA] = ACTIONS(4576), + [anon_sym_DASH] = ACTIONS(4578), + [anon_sym_DOT] = ACTIONS(4578), + [anon_sym_SLASH] = ACTIONS(4576), + [anon_sym_COLON] = ACTIONS(4576), + [anon_sym_SEMI] = ACTIONS(4576), + [anon_sym_EQ] = ACTIONS(4576), + [anon_sym_QMARK] = ACTIONS(4576), + [anon_sym_LBRACK] = ACTIONS(4578), + [anon_sym_BSLASH] = ACTIONS(4578), + [anon_sym_CARET] = ACTIONS(4578), + [anon_sym__] = ACTIONS(4576), + [anon_sym_BQUOTE] = ACTIONS(4576), + [anon_sym_LBRACE] = ACTIONS(4634), + [anon_sym_PIPE] = ACTIONS(4576), + [anon_sym_TILDE] = ACTIONS(4576), + [anon_sym_LPAREN] = ACTIONS(4636), + [anon_sym_RPAREN] = ACTIONS(4576), + [sym__newline_token] = ACTIONS(4576), + [aux_sym_insert_token1] = ACTIONS(4576), + [aux_sym_delete_token1] = ACTIONS(4576), + [aux_sym_highlight_token1] = ACTIONS(4576), + [aux_sym_edit_comment_token1] = ACTIONS(4576), + [anon_sym_CARET_LBRACK] = ACTIONS(4576), + [anon_sym_LBRACK_CARET] = ACTIONS(4576), + [sym_uri_autolink] = ACTIONS(4576), + [sym_email_autolink] = ACTIONS(4576), + [sym__whitespace_ge_2] = ACTIONS(4576), + [aux_sym__whitespace_token1] = ACTIONS(4578), + [sym__word_no_digit] = ACTIONS(4576), + [sym__digits] = ACTIONS(4576), + [anon_sym_DASH_DASH] = ACTIONS(4578), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4576), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4576), + [sym__code_span_start] = ACTIONS(4576), + [sym__emphasis_open_star] = ACTIONS(4576), + [sym__emphasis_open_underscore] = ACTIONS(4576), + [sym__emphasis_close_star] = ACTIONS(4576), + [sym__strikeout_open] = ACTIONS(4576), + [sym__latex_span_start] = ACTIONS(4576), + [sym__single_quote_open] = ACTIONS(4576), + [sym__double_quote_open] = ACTIONS(4576), + [sym__superscript_open] = ACTIONS(4576), + [sym__subscript_open] = ACTIONS(4576), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4576), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4576), + [sym__cite_author_in_text] = ACTIONS(4576), + [sym__cite_suppress_author] = ACTIONS(4576), + [sym__shortcode_open_escaped] = ACTIONS(4576), + [sym__shortcode_open] = ACTIONS(4576), + [sym__unclosed_span] = ACTIONS(4576), + }, + [STATE(523)] = { + [sym__qmd_attribute] = STATE(1292), + [sym_raw_attribute] = STATE(1292), + [sym_commonmark_attribute] = STATE(1292), + [sym_language_attribute] = STATE(1292), + [sym__backslash_escape] = ACTIONS(4584), + [sym_entity_reference] = ACTIONS(4584), + [sym_numeric_character_reference] = ACTIONS(4584), + [anon_sym_LT] = ACTIONS(4586), + [anon_sym_GT] = ACTIONS(4584), + [anon_sym_BANG] = ACTIONS(4584), + [anon_sym_DQUOTE] = ACTIONS(4584), + [anon_sym_POUND] = ACTIONS(4584), + [anon_sym_DOLLAR] = ACTIONS(4584), + [anon_sym_PERCENT] = ACTIONS(4584), + [anon_sym_AMP] = ACTIONS(4586), + [anon_sym_SQUOTE] = ACTIONS(4584), + [anon_sym_STAR] = ACTIONS(4584), + [anon_sym_PLUS] = ACTIONS(4584), + [anon_sym_COMMA] = ACTIONS(4584), + [anon_sym_DASH] = ACTIONS(4586), + [anon_sym_DOT] = ACTIONS(4586), + [anon_sym_SLASH] = ACTIONS(4584), + [anon_sym_COLON] = ACTIONS(4584), + [anon_sym_SEMI] = ACTIONS(4584), + [anon_sym_EQ] = ACTIONS(4584), + [anon_sym_QMARK] = ACTIONS(4584), + [anon_sym_LBRACK] = ACTIONS(4586), + [anon_sym_BSLASH] = ACTIONS(4586), + [anon_sym_CARET] = ACTIONS(4586), + [anon_sym__] = ACTIONS(4584), + [anon_sym_BQUOTE] = ACTIONS(4584), + [anon_sym_LBRACE] = ACTIONS(4634), + [anon_sym_PIPE] = ACTIONS(4584), + [anon_sym_TILDE] = ACTIONS(4584), + [anon_sym_LPAREN] = ACTIONS(4584), + [anon_sym_RPAREN] = ACTIONS(4584), + [sym__newline_token] = ACTIONS(4584), + [aux_sym_insert_token1] = ACTIONS(4584), + [aux_sym_delete_token1] = ACTIONS(4584), + [aux_sym_highlight_token1] = ACTIONS(4584), + [aux_sym_edit_comment_token1] = ACTIONS(4584), + [anon_sym_CARET_LBRACK] = ACTIONS(4584), + [anon_sym_LBRACK_CARET] = ACTIONS(4584), + [sym_uri_autolink] = ACTIONS(4584), + [sym_email_autolink] = ACTIONS(4584), + [sym__whitespace_ge_2] = ACTIONS(4584), + [aux_sym__whitespace_token1] = ACTIONS(4586), + [sym__word_no_digit] = ACTIONS(4584), + [sym__digits] = ACTIONS(4584), + [anon_sym_DASH_DASH] = ACTIONS(4586), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4584), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4584), + [sym__code_span_start] = ACTIONS(4584), + [sym__emphasis_open_star] = ACTIONS(4584), + [sym__emphasis_open_underscore] = ACTIONS(4584), + [sym__emphasis_close_star] = ACTIONS(4584), + [sym__strikeout_open] = ACTIONS(4584), + [sym__latex_span_start] = ACTIONS(4584), + [sym__single_quote_open] = ACTIONS(4584), + [sym__double_quote_open] = ACTIONS(4584), + [sym__superscript_open] = ACTIONS(4584), + [sym__subscript_open] = ACTIONS(4584), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4584), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4584), + [sym__cite_author_in_text] = ACTIONS(4584), + [sym__cite_suppress_author] = ACTIONS(4584), + [sym__shortcode_open_escaped] = ACTIONS(4584), + [sym__shortcode_open] = ACTIONS(4584), + [sym__unclosed_span] = ACTIONS(4584), + }, + [STATE(524)] = { + [sym__qmd_attribute] = STATE(1295), + [sym_raw_attribute] = STATE(1295), + [sym_commonmark_attribute] = STATE(1295), + [sym_language_attribute] = STATE(1295), + [sym__backslash_escape] = ACTIONS(4592), + [sym_entity_reference] = ACTIONS(4592), + [sym_numeric_character_reference] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(4594), + [anon_sym_GT] = ACTIONS(4592), + [anon_sym_BANG] = ACTIONS(4592), + [anon_sym_DQUOTE] = ACTIONS(4592), + [anon_sym_POUND] = ACTIONS(4592), + [anon_sym_DOLLAR] = ACTIONS(4592), + [anon_sym_PERCENT] = ACTIONS(4592), + [anon_sym_AMP] = ACTIONS(4594), + [anon_sym_SQUOTE] = ACTIONS(4592), + [anon_sym_STAR] = ACTIONS(4592), + [anon_sym_PLUS] = ACTIONS(4592), + [anon_sym_COMMA] = ACTIONS(4592), + [anon_sym_DASH] = ACTIONS(4594), + [anon_sym_DOT] = ACTIONS(4594), + [anon_sym_SLASH] = ACTIONS(4592), + [anon_sym_COLON] = ACTIONS(4592), + [anon_sym_SEMI] = ACTIONS(4592), + [anon_sym_EQ] = ACTIONS(4592), + [anon_sym_QMARK] = ACTIONS(4592), + [anon_sym_LBRACK] = ACTIONS(4594), + [anon_sym_BSLASH] = ACTIONS(4594), + [anon_sym_CARET] = ACTIONS(4594), + [anon_sym__] = ACTIONS(4592), + [anon_sym_BQUOTE] = ACTIONS(4592), + [anon_sym_LBRACE] = ACTIONS(4634), + [anon_sym_PIPE] = ACTIONS(4592), + [anon_sym_TILDE] = ACTIONS(4592), + [anon_sym_LPAREN] = ACTIONS(4592), + [anon_sym_RPAREN] = ACTIONS(4592), + [sym__newline_token] = ACTIONS(4592), + [aux_sym_insert_token1] = ACTIONS(4592), + [aux_sym_delete_token1] = ACTIONS(4592), + [aux_sym_highlight_token1] = ACTIONS(4592), + [aux_sym_edit_comment_token1] = ACTIONS(4592), + [anon_sym_CARET_LBRACK] = ACTIONS(4592), + [anon_sym_LBRACK_CARET] = ACTIONS(4592), + [sym_uri_autolink] = ACTIONS(4592), + [sym_email_autolink] = ACTIONS(4592), + [sym__whitespace_ge_2] = ACTIONS(4592), + [aux_sym__whitespace_token1] = ACTIONS(4594), + [sym__word_no_digit] = ACTIONS(4592), + [sym__digits] = ACTIONS(4592), + [anon_sym_DASH_DASH] = ACTIONS(4594), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4592), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4592), + [sym__code_span_start] = ACTIONS(4592), + [sym__emphasis_open_star] = ACTIONS(4592), + [sym__emphasis_open_underscore] = ACTIONS(4592), + [sym__emphasis_close_star] = ACTIONS(4592), + [sym__strikeout_open] = ACTIONS(4592), + [sym__latex_span_start] = ACTIONS(4592), + [sym__single_quote_open] = ACTIONS(4592), + [sym__double_quote_open] = ACTIONS(4592), + [sym__superscript_open] = ACTIONS(4592), + [sym__subscript_open] = ACTIONS(4592), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4592), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4592), + [sym__cite_author_in_text] = ACTIONS(4592), + [sym__cite_suppress_author] = ACTIONS(4592), + [sym__shortcode_open_escaped] = ACTIONS(4592), + [sym__shortcode_open] = ACTIONS(4592), + [sym__unclosed_span] = ACTIONS(4592), + }, + [STATE(525)] = { + [sym__qmd_attribute] = STATE(1045), + [sym_raw_attribute] = STATE(1045), + [sym_commonmark_attribute] = STATE(1045), + [sym_language_attribute] = STATE(1045), + [sym__backslash_escape] = ACTIONS(4576), + [sym_entity_reference] = ACTIONS(4576), + [sym_numeric_character_reference] = ACTIONS(4576), + [anon_sym_LT] = ACTIONS(4578), + [anon_sym_GT] = ACTIONS(4576), + [anon_sym_BANG] = ACTIONS(4576), + [anon_sym_DQUOTE] = ACTIONS(4576), + [anon_sym_POUND] = ACTIONS(4576), + [anon_sym_DOLLAR] = ACTIONS(4576), + [anon_sym_PERCENT] = ACTIONS(4576), + [anon_sym_AMP] = ACTIONS(4578), + [anon_sym_SQUOTE] = ACTIONS(4576), + [anon_sym_STAR] = ACTIONS(4576), + [anon_sym_PLUS] = ACTIONS(4576), + [anon_sym_COMMA] = ACTIONS(4576), + [anon_sym_DASH] = ACTIONS(4578), + [anon_sym_DOT] = ACTIONS(4578), + [anon_sym_SLASH] = ACTIONS(4576), + [anon_sym_COLON] = ACTIONS(4576), + [anon_sym_SEMI] = ACTIONS(4576), + [anon_sym_EQ] = ACTIONS(4576), + [anon_sym_QMARK] = ACTIONS(4576), + [anon_sym_LBRACK] = ACTIONS(4578), + [anon_sym_BSLASH] = ACTIONS(4578), + [anon_sym_CARET] = ACTIONS(4578), + [anon_sym__] = ACTIONS(4576), + [anon_sym_BQUOTE] = ACTIONS(4576), + [anon_sym_LBRACE] = ACTIONS(4544), + [anon_sym_PIPE] = ACTIONS(4576), + [anon_sym_TILDE] = ACTIONS(4576), + [anon_sym_LPAREN] = ACTIONS(4638), + [anon_sym_RPAREN] = ACTIONS(4576), + [sym__newline_token] = ACTIONS(4576), + [aux_sym_insert_token1] = ACTIONS(4576), + [aux_sym_delete_token1] = ACTIONS(4576), + [aux_sym_highlight_token1] = ACTIONS(4576), + [aux_sym_edit_comment_token1] = ACTIONS(4576), + [anon_sym_CARET_LBRACK] = ACTIONS(4576), + [anon_sym_LBRACK_CARET] = ACTIONS(4576), + [sym_uri_autolink] = ACTIONS(4576), + [sym_email_autolink] = ACTIONS(4576), + [sym__whitespace_ge_2] = ACTIONS(4576), + [aux_sym__whitespace_token1] = ACTIONS(4578), + [sym__word_no_digit] = ACTIONS(4576), + [sym__digits] = ACTIONS(4576), + [anon_sym_DASH_DASH] = ACTIONS(4578), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4576), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4576), + [sym__code_span_start] = ACTIONS(4576), + [sym__emphasis_open_star] = ACTIONS(4576), + [sym__emphasis_open_underscore] = ACTIONS(4576), + [sym__strikeout_open] = ACTIONS(4576), + [sym__latex_span_start] = ACTIONS(4576), + [sym__single_quote_open] = ACTIONS(4576), + [sym__single_quote_close] = ACTIONS(4576), + [sym__double_quote_open] = ACTIONS(4576), + [sym__superscript_open] = ACTIONS(4576), + [sym__subscript_open] = ACTIONS(4576), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4576), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4576), + [sym__cite_author_in_text] = ACTIONS(4576), + [sym__cite_suppress_author] = ACTIONS(4576), + [sym__shortcode_open_escaped] = ACTIONS(4576), + [sym__shortcode_open] = ACTIONS(4576), + [sym__unclosed_span] = ACTIONS(4576), + }, + [STATE(526)] = { + [sym__qmd_attribute] = STATE(1312), + [sym_raw_attribute] = STATE(1312), + [sym_commonmark_attribute] = STATE(1312), + [sym_language_attribute] = STATE(1312), + [sym__backslash_escape] = ACTIONS(4596), + [sym_entity_reference] = ACTIONS(4596), + [sym_numeric_character_reference] = ACTIONS(4596), + [anon_sym_LT] = ACTIONS(4598), + [anon_sym_GT] = ACTIONS(4596), + [anon_sym_BANG] = ACTIONS(4596), + [anon_sym_DQUOTE] = ACTIONS(4596), + [anon_sym_POUND] = ACTIONS(4596), + [anon_sym_DOLLAR] = ACTIONS(4596), + [anon_sym_PERCENT] = ACTIONS(4596), + [anon_sym_AMP] = ACTIONS(4598), + [anon_sym_SQUOTE] = ACTIONS(4596), + [anon_sym_STAR] = ACTIONS(4596), + [anon_sym_PLUS] = ACTIONS(4596), + [anon_sym_COMMA] = ACTIONS(4596), + [anon_sym_DASH] = ACTIONS(4598), + [anon_sym_DOT] = ACTIONS(4598), + [anon_sym_SLASH] = ACTIONS(4596), + [anon_sym_COLON] = ACTIONS(4596), + [anon_sym_SEMI] = ACTIONS(4596), + [anon_sym_EQ] = ACTIONS(4596), + [anon_sym_QMARK] = ACTIONS(4596), + [anon_sym_LBRACK] = ACTIONS(4598), + [anon_sym_BSLASH] = ACTIONS(4598), + [anon_sym_CARET] = ACTIONS(4598), + [anon_sym__] = ACTIONS(4596), + [anon_sym_BQUOTE] = ACTIONS(4596), + [anon_sym_LBRACE] = ACTIONS(4634), + [anon_sym_PIPE] = ACTIONS(4596), + [anon_sym_TILDE] = ACTIONS(4596), + [anon_sym_LPAREN] = ACTIONS(4596), + [anon_sym_RPAREN] = ACTIONS(4596), + [sym__newline_token] = ACTIONS(4596), + [aux_sym_insert_token1] = ACTIONS(4596), + [aux_sym_delete_token1] = ACTIONS(4596), + [aux_sym_highlight_token1] = ACTIONS(4596), + [aux_sym_edit_comment_token1] = ACTIONS(4596), + [anon_sym_CARET_LBRACK] = ACTIONS(4596), + [anon_sym_LBRACK_CARET] = ACTIONS(4596), + [sym_uri_autolink] = ACTIONS(4596), + [sym_email_autolink] = ACTIONS(4596), + [sym__whitespace_ge_2] = ACTIONS(4596), + [aux_sym__whitespace_token1] = ACTIONS(4598), + [sym__word_no_digit] = ACTIONS(4596), + [sym__digits] = ACTIONS(4596), + [anon_sym_DASH_DASH] = ACTIONS(4598), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4596), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4596), + [sym__code_span_start] = ACTIONS(4596), + [sym__emphasis_open_star] = ACTIONS(4596), + [sym__emphasis_open_underscore] = ACTIONS(4596), + [sym__emphasis_close_star] = ACTIONS(4596), + [sym__strikeout_open] = ACTIONS(4596), + [sym__latex_span_start] = ACTIONS(4596), + [sym__single_quote_open] = ACTIONS(4596), + [sym__double_quote_open] = ACTIONS(4596), + [sym__superscript_open] = ACTIONS(4596), + [sym__subscript_open] = ACTIONS(4596), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4596), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4596), + [sym__cite_author_in_text] = ACTIONS(4596), + [sym__cite_suppress_author] = ACTIONS(4596), + [sym__shortcode_open_escaped] = ACTIONS(4596), + [sym__shortcode_open] = ACTIONS(4596), + [sym__unclosed_span] = ACTIONS(4596), + }, + [STATE(527)] = { + [sym__qmd_attribute] = STATE(1048), + [sym_raw_attribute] = STATE(1048), + [sym_commonmark_attribute] = STATE(1048), + [sym_language_attribute] = STATE(1048), + [sym__backslash_escape] = ACTIONS(4584), + [sym_entity_reference] = ACTIONS(4584), + [sym_numeric_character_reference] = ACTIONS(4584), + [anon_sym_LT] = ACTIONS(4586), + [anon_sym_GT] = ACTIONS(4584), + [anon_sym_BANG] = ACTIONS(4584), + [anon_sym_DQUOTE] = ACTIONS(4584), + [anon_sym_POUND] = ACTIONS(4584), + [anon_sym_DOLLAR] = ACTIONS(4584), + [anon_sym_PERCENT] = ACTIONS(4584), + [anon_sym_AMP] = ACTIONS(4586), + [anon_sym_SQUOTE] = ACTIONS(4584), + [anon_sym_STAR] = ACTIONS(4584), + [anon_sym_PLUS] = ACTIONS(4584), + [anon_sym_COMMA] = ACTIONS(4584), + [anon_sym_DASH] = ACTIONS(4586), + [anon_sym_DOT] = ACTIONS(4586), + [anon_sym_SLASH] = ACTIONS(4584), + [anon_sym_COLON] = ACTIONS(4584), + [anon_sym_SEMI] = ACTIONS(4584), + [anon_sym_EQ] = ACTIONS(4584), + [anon_sym_QMARK] = ACTIONS(4584), + [anon_sym_LBRACK] = ACTIONS(4586), + [anon_sym_BSLASH] = ACTIONS(4586), + [anon_sym_CARET] = ACTIONS(4586), + [anon_sym__] = ACTIONS(4584), + [anon_sym_BQUOTE] = ACTIONS(4584), + [anon_sym_LBRACE] = ACTIONS(4544), + [anon_sym_PIPE] = ACTIONS(4584), + [anon_sym_TILDE] = ACTIONS(4584), + [anon_sym_LPAREN] = ACTIONS(4584), + [anon_sym_RPAREN] = ACTIONS(4584), + [sym__newline_token] = ACTIONS(4584), + [aux_sym_insert_token1] = ACTIONS(4584), + [aux_sym_delete_token1] = ACTIONS(4584), + [aux_sym_highlight_token1] = ACTIONS(4584), + [aux_sym_edit_comment_token1] = ACTIONS(4584), + [anon_sym_CARET_LBRACK] = ACTIONS(4584), + [anon_sym_LBRACK_CARET] = ACTIONS(4584), + [sym_uri_autolink] = ACTIONS(4584), + [sym_email_autolink] = ACTIONS(4584), + [sym__whitespace_ge_2] = ACTIONS(4584), + [aux_sym__whitespace_token1] = ACTIONS(4586), + [sym__word_no_digit] = ACTIONS(4584), + [sym__digits] = ACTIONS(4584), + [anon_sym_DASH_DASH] = ACTIONS(4586), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4584), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4584), + [sym__code_span_start] = ACTIONS(4584), + [sym__emphasis_open_star] = ACTIONS(4584), + [sym__emphasis_open_underscore] = ACTIONS(4584), + [sym__strikeout_open] = ACTIONS(4584), + [sym__latex_span_start] = ACTIONS(4584), + [sym__single_quote_open] = ACTIONS(4584), + [sym__single_quote_close] = ACTIONS(4584), + [sym__double_quote_open] = ACTIONS(4584), + [sym__superscript_open] = ACTIONS(4584), + [sym__subscript_open] = ACTIONS(4584), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4584), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4584), + [sym__cite_author_in_text] = ACTIONS(4584), + [sym__cite_suppress_author] = ACTIONS(4584), + [sym__shortcode_open_escaped] = ACTIONS(4584), + [sym__shortcode_open] = ACTIONS(4584), + [sym__unclosed_span] = ACTIONS(4584), + }, + [STATE(528)] = { + [sym__qmd_attribute] = STATE(764), + [sym_raw_attribute] = STATE(764), + [sym_commonmark_attribute] = STATE(764), + [sym_language_attribute] = STATE(764), + [sym__backslash_escape] = ACTIONS(4610), + [sym_entity_reference] = ACTIONS(4610), + [sym_numeric_character_reference] = ACTIONS(4610), + [anon_sym_LT] = ACTIONS(4612), + [anon_sym_GT] = ACTIONS(4610), + [anon_sym_BANG] = ACTIONS(4610), + [anon_sym_DQUOTE] = ACTIONS(4610), + [anon_sym_POUND] = ACTIONS(4610), + [anon_sym_DOLLAR] = ACTIONS(4610), + [anon_sym_PERCENT] = ACTIONS(4610), + [anon_sym_AMP] = ACTIONS(4612), + [anon_sym_SQUOTE] = ACTIONS(4610), + [anon_sym_STAR] = ACTIONS(4610), + [anon_sym_PLUS] = ACTIONS(4610), + [anon_sym_COMMA] = ACTIONS(4610), + [anon_sym_DASH] = ACTIONS(4612), + [anon_sym_DOT] = ACTIONS(4612), + [anon_sym_SLASH] = ACTIONS(4610), + [anon_sym_COLON] = ACTIONS(4610), + [anon_sym_SEMI] = ACTIONS(4610), + [anon_sym_EQ] = ACTIONS(4610), + [anon_sym_QMARK] = ACTIONS(4610), + [anon_sym_LBRACK] = ACTIONS(4612), + [anon_sym_BSLASH] = ACTIONS(4612), + [anon_sym_CARET] = ACTIONS(4612), + [anon_sym__] = ACTIONS(4610), + [anon_sym_BQUOTE] = ACTIONS(4610), + [anon_sym_LBRACE] = ACTIONS(4570), + [anon_sym_PIPE] = ACTIONS(4610), + [anon_sym_TILDE] = ACTIONS(4610), + [anon_sym_LPAREN] = ACTIONS(4610), + [anon_sym_RPAREN] = ACTIONS(4610), + [sym__newline_token] = ACTIONS(4610), + [aux_sym_insert_token1] = ACTIONS(4610), + [aux_sym_delete_token1] = ACTIONS(4610), + [aux_sym_highlight_token1] = ACTIONS(4610), + [aux_sym_edit_comment_token1] = ACTIONS(4610), + [anon_sym_CARET_LBRACK] = ACTIONS(4610), + [anon_sym_LBRACK_CARET] = ACTIONS(4610), + [sym_uri_autolink] = ACTIONS(4610), + [sym_email_autolink] = ACTIONS(4610), + [sym__whitespace_ge_2] = ACTIONS(4610), + [aux_sym__whitespace_token1] = ACTIONS(4612), + [sym__word_no_digit] = ACTIONS(4610), + [sym__digits] = ACTIONS(4610), + [anon_sym_DASH_DASH] = ACTIONS(4612), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4610), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4610), + [sym__code_span_start] = ACTIONS(4610), + [sym__emphasis_open_star] = ACTIONS(4610), + [sym__emphasis_open_underscore] = ACTIONS(4610), + [sym__emphasis_close_underscore] = ACTIONS(4610), + [sym__strikeout_open] = ACTIONS(4610), + [sym__latex_span_start] = ACTIONS(4610), + [sym__single_quote_open] = ACTIONS(4610), + [sym__double_quote_open] = ACTIONS(4610), + [sym__superscript_open] = ACTIONS(4610), + [sym__subscript_open] = ACTIONS(4610), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4610), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4610), + [sym__cite_author_in_text] = ACTIONS(4610), + [sym__cite_suppress_author] = ACTIONS(4610), + [sym__shortcode_open_escaped] = ACTIONS(4610), + [sym__shortcode_open] = ACTIONS(4610), + [sym__unclosed_span] = ACTIONS(4610), + }, + [STATE(529)] = { + [sym__qmd_attribute] = STATE(1327), + [sym_raw_attribute] = STATE(1327), + [sym_commonmark_attribute] = STATE(1327), + [sym_language_attribute] = STATE(1327), + [sym__backslash_escape] = ACTIONS(4600), + [sym_entity_reference] = ACTIONS(4600), + [sym_numeric_character_reference] = ACTIONS(4600), + [anon_sym_LT] = ACTIONS(4602), + [anon_sym_GT] = ACTIONS(4600), + [anon_sym_BANG] = ACTIONS(4600), + [anon_sym_DQUOTE] = ACTIONS(4600), + [anon_sym_POUND] = ACTIONS(4600), + [anon_sym_DOLLAR] = ACTIONS(4600), + [anon_sym_PERCENT] = ACTIONS(4600), + [anon_sym_AMP] = ACTIONS(4602), + [anon_sym_SQUOTE] = ACTIONS(4600), + [anon_sym_STAR] = ACTIONS(4600), + [anon_sym_PLUS] = ACTIONS(4600), + [anon_sym_COMMA] = ACTIONS(4600), + [anon_sym_DASH] = ACTIONS(4602), + [anon_sym_DOT] = ACTIONS(4602), + [anon_sym_SLASH] = ACTIONS(4600), + [anon_sym_COLON] = ACTIONS(4600), + [anon_sym_SEMI] = ACTIONS(4600), + [anon_sym_EQ] = ACTIONS(4600), + [anon_sym_QMARK] = ACTIONS(4600), + [anon_sym_LBRACK] = ACTIONS(4602), + [anon_sym_BSLASH] = ACTIONS(4602), + [anon_sym_CARET] = ACTIONS(4602), + [anon_sym__] = ACTIONS(4600), + [anon_sym_BQUOTE] = ACTIONS(4600), + [anon_sym_LBRACE] = ACTIONS(4634), + [anon_sym_PIPE] = ACTIONS(4600), + [anon_sym_TILDE] = ACTIONS(4600), + [anon_sym_LPAREN] = ACTIONS(4600), + [anon_sym_RPAREN] = ACTIONS(4600), + [sym__newline_token] = ACTIONS(4600), + [aux_sym_insert_token1] = ACTIONS(4600), + [aux_sym_delete_token1] = ACTIONS(4600), + [aux_sym_highlight_token1] = ACTIONS(4600), + [aux_sym_edit_comment_token1] = ACTIONS(4600), + [anon_sym_CARET_LBRACK] = ACTIONS(4600), + [anon_sym_LBRACK_CARET] = ACTIONS(4600), + [sym_uri_autolink] = ACTIONS(4600), + [sym_email_autolink] = ACTIONS(4600), + [sym__whitespace_ge_2] = ACTIONS(4600), + [aux_sym__whitespace_token1] = ACTIONS(4602), + [sym__word_no_digit] = ACTIONS(4600), + [sym__digits] = ACTIONS(4600), + [anon_sym_DASH_DASH] = ACTIONS(4602), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4600), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4600), + [sym__code_span_start] = ACTIONS(4600), + [sym__emphasis_open_star] = ACTIONS(4600), + [sym__emphasis_open_underscore] = ACTIONS(4600), + [sym__emphasis_close_star] = ACTIONS(4600), + [sym__strikeout_open] = ACTIONS(4600), + [sym__latex_span_start] = ACTIONS(4600), + [sym__single_quote_open] = ACTIONS(4600), + [sym__double_quote_open] = ACTIONS(4600), + [sym__superscript_open] = ACTIONS(4600), + [sym__subscript_open] = ACTIONS(4600), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4600), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4600), + [sym__cite_author_in_text] = ACTIONS(4600), + [sym__cite_suppress_author] = ACTIONS(4600), + [sym__shortcode_open_escaped] = ACTIONS(4600), + [sym__shortcode_open] = ACTIONS(4600), + [sym__unclosed_span] = ACTIONS(4600), + }, + [STATE(530)] = { + [sym__qmd_attribute] = STATE(1069), + [sym_raw_attribute] = STATE(1069), + [sym_commonmark_attribute] = STATE(1069), + [sym_language_attribute] = STATE(1069), + [sym__backslash_escape] = ACTIONS(4592), + [sym_entity_reference] = ACTIONS(4592), + [sym_numeric_character_reference] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(4594), + [anon_sym_GT] = ACTIONS(4592), + [anon_sym_BANG] = ACTIONS(4592), + [anon_sym_DQUOTE] = ACTIONS(4592), + [anon_sym_POUND] = ACTIONS(4592), + [anon_sym_DOLLAR] = ACTIONS(4592), + [anon_sym_PERCENT] = ACTIONS(4592), + [anon_sym_AMP] = ACTIONS(4594), + [anon_sym_SQUOTE] = ACTIONS(4592), + [anon_sym_STAR] = ACTIONS(4592), + [anon_sym_PLUS] = ACTIONS(4592), + [anon_sym_COMMA] = ACTIONS(4592), + [anon_sym_DASH] = ACTIONS(4594), + [anon_sym_DOT] = ACTIONS(4594), + [anon_sym_SLASH] = ACTIONS(4592), + [anon_sym_COLON] = ACTIONS(4592), + [anon_sym_SEMI] = ACTIONS(4592), + [anon_sym_EQ] = ACTIONS(4592), + [anon_sym_QMARK] = ACTIONS(4592), + [anon_sym_LBRACK] = ACTIONS(4594), + [anon_sym_BSLASH] = ACTIONS(4594), + [anon_sym_CARET] = ACTIONS(4594), + [anon_sym__] = ACTIONS(4592), + [anon_sym_BQUOTE] = ACTIONS(4592), + [anon_sym_LBRACE] = ACTIONS(4544), + [anon_sym_PIPE] = ACTIONS(4592), + [anon_sym_TILDE] = ACTIONS(4592), + [anon_sym_LPAREN] = ACTIONS(4592), + [anon_sym_RPAREN] = ACTIONS(4592), + [sym__newline_token] = ACTIONS(4592), + [aux_sym_insert_token1] = ACTIONS(4592), + [aux_sym_delete_token1] = ACTIONS(4592), + [aux_sym_highlight_token1] = ACTIONS(4592), + [aux_sym_edit_comment_token1] = ACTIONS(4592), + [anon_sym_CARET_LBRACK] = ACTIONS(4592), + [anon_sym_LBRACK_CARET] = ACTIONS(4592), + [sym_uri_autolink] = ACTIONS(4592), + [sym_email_autolink] = ACTIONS(4592), + [sym__whitespace_ge_2] = ACTIONS(4592), + [aux_sym__whitespace_token1] = ACTIONS(4594), + [sym__word_no_digit] = ACTIONS(4592), + [sym__digits] = ACTIONS(4592), + [anon_sym_DASH_DASH] = ACTIONS(4594), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4592), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4592), + [sym__code_span_start] = ACTIONS(4592), + [sym__emphasis_open_star] = ACTIONS(4592), + [sym__emphasis_open_underscore] = ACTIONS(4592), + [sym__strikeout_open] = ACTIONS(4592), + [sym__latex_span_start] = ACTIONS(4592), + [sym__single_quote_open] = ACTIONS(4592), + [sym__single_quote_close] = ACTIONS(4592), + [sym__double_quote_open] = ACTIONS(4592), + [sym__superscript_open] = ACTIONS(4592), + [sym__subscript_open] = ACTIONS(4592), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4592), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4592), + [sym__cite_author_in_text] = ACTIONS(4592), + [sym__cite_suppress_author] = ACTIONS(4592), + [sym__shortcode_open_escaped] = ACTIONS(4592), + [sym__shortcode_open] = ACTIONS(4592), + [sym__unclosed_span] = ACTIONS(4592), + }, + [STATE(531)] = { + [sym__qmd_attribute] = STATE(1114), + [sym_raw_attribute] = STATE(1114), + [sym_commonmark_attribute] = STATE(1114), + [sym_language_attribute] = STATE(1114), + [sym__backslash_escape] = ACTIONS(4596), + [sym_entity_reference] = ACTIONS(4596), + [sym_numeric_character_reference] = ACTIONS(4596), + [anon_sym_LT] = ACTIONS(4598), + [anon_sym_GT] = ACTIONS(4596), + [anon_sym_BANG] = ACTIONS(4596), + [anon_sym_DQUOTE] = ACTIONS(4596), + [anon_sym_POUND] = ACTIONS(4596), + [anon_sym_DOLLAR] = ACTIONS(4596), + [anon_sym_PERCENT] = ACTIONS(4596), + [anon_sym_AMP] = ACTIONS(4598), + [anon_sym_SQUOTE] = ACTIONS(4596), + [anon_sym_STAR] = ACTIONS(4596), + [anon_sym_PLUS] = ACTIONS(4596), + [anon_sym_COMMA] = ACTIONS(4596), + [anon_sym_DASH] = ACTIONS(4598), + [anon_sym_DOT] = ACTIONS(4598), + [anon_sym_SLASH] = ACTIONS(4596), + [anon_sym_COLON] = ACTIONS(4596), + [anon_sym_SEMI] = ACTIONS(4596), + [anon_sym_EQ] = ACTIONS(4596), + [anon_sym_QMARK] = ACTIONS(4596), + [anon_sym_LBRACK] = ACTIONS(4598), + [anon_sym_BSLASH] = ACTIONS(4598), + [anon_sym_CARET] = ACTIONS(4598), + [anon_sym__] = ACTIONS(4596), + [anon_sym_BQUOTE] = ACTIONS(4596), + [anon_sym_LBRACE] = ACTIONS(4544), + [anon_sym_PIPE] = ACTIONS(4596), + [anon_sym_TILDE] = ACTIONS(4596), + [anon_sym_LPAREN] = ACTIONS(4596), + [anon_sym_RPAREN] = ACTIONS(4596), + [sym__newline_token] = ACTIONS(4596), + [aux_sym_insert_token1] = ACTIONS(4596), + [aux_sym_delete_token1] = ACTIONS(4596), + [aux_sym_highlight_token1] = ACTIONS(4596), + [aux_sym_edit_comment_token1] = ACTIONS(4596), + [anon_sym_CARET_LBRACK] = ACTIONS(4596), + [anon_sym_LBRACK_CARET] = ACTIONS(4596), + [sym_uri_autolink] = ACTIONS(4596), + [sym_email_autolink] = ACTIONS(4596), + [sym__whitespace_ge_2] = ACTIONS(4596), + [aux_sym__whitespace_token1] = ACTIONS(4598), + [sym__word_no_digit] = ACTIONS(4596), + [sym__digits] = ACTIONS(4596), + [anon_sym_DASH_DASH] = ACTIONS(4598), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4596), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4596), + [sym__code_span_start] = ACTIONS(4596), + [sym__emphasis_open_star] = ACTIONS(4596), + [sym__emphasis_open_underscore] = ACTIONS(4596), + [sym__strikeout_open] = ACTIONS(4596), + [sym__latex_span_start] = ACTIONS(4596), + [sym__single_quote_open] = ACTIONS(4596), + [sym__single_quote_close] = ACTIONS(4596), + [sym__double_quote_open] = ACTIONS(4596), + [sym__superscript_open] = ACTIONS(4596), + [sym__subscript_open] = ACTIONS(4596), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4596), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4596), + [sym__cite_author_in_text] = ACTIONS(4596), + [sym__cite_suppress_author] = ACTIONS(4596), + [sym__shortcode_open_escaped] = ACTIONS(4596), + [sym__shortcode_open] = ACTIONS(4596), + [sym__unclosed_span] = ACTIONS(4596), + }, + [STATE(532)] = { + [sym__qmd_attribute] = STATE(1338), + [sym_raw_attribute] = STATE(1338), + [sym_commonmark_attribute] = STATE(1338), + [sym_language_attribute] = STATE(1338), + [sym__backslash_escape] = ACTIONS(4606), + [sym_entity_reference] = ACTIONS(4606), + [sym_numeric_character_reference] = ACTIONS(4606), + [anon_sym_LT] = ACTIONS(4608), + [anon_sym_GT] = ACTIONS(4606), + [anon_sym_BANG] = ACTIONS(4606), + [anon_sym_DQUOTE] = ACTIONS(4606), + [anon_sym_POUND] = ACTIONS(4606), + [anon_sym_DOLLAR] = ACTIONS(4606), + [anon_sym_PERCENT] = ACTIONS(4606), + [anon_sym_AMP] = ACTIONS(4608), + [anon_sym_SQUOTE] = ACTIONS(4606), + [anon_sym_STAR] = ACTIONS(4606), + [anon_sym_PLUS] = ACTIONS(4606), + [anon_sym_COMMA] = ACTIONS(4606), + [anon_sym_DASH] = ACTIONS(4608), + [anon_sym_DOT] = ACTIONS(4608), + [anon_sym_SLASH] = ACTIONS(4606), + [anon_sym_COLON] = ACTIONS(4606), + [anon_sym_SEMI] = ACTIONS(4606), + [anon_sym_EQ] = ACTIONS(4606), + [anon_sym_QMARK] = ACTIONS(4606), + [anon_sym_LBRACK] = ACTIONS(4608), + [anon_sym_BSLASH] = ACTIONS(4608), + [anon_sym_CARET] = ACTIONS(4608), + [anon_sym__] = ACTIONS(4606), + [anon_sym_BQUOTE] = ACTIONS(4606), + [anon_sym_LBRACE] = ACTIONS(4634), + [anon_sym_PIPE] = ACTIONS(4606), + [anon_sym_TILDE] = ACTIONS(4606), + [anon_sym_LPAREN] = ACTIONS(4606), + [anon_sym_RPAREN] = ACTIONS(4606), + [sym__newline_token] = ACTIONS(4606), + [aux_sym_insert_token1] = ACTIONS(4606), + [aux_sym_delete_token1] = ACTIONS(4606), + [aux_sym_highlight_token1] = ACTIONS(4606), + [aux_sym_edit_comment_token1] = ACTIONS(4606), + [anon_sym_CARET_LBRACK] = ACTIONS(4606), + [anon_sym_LBRACK_CARET] = ACTIONS(4606), + [sym_uri_autolink] = ACTIONS(4606), + [sym_email_autolink] = ACTIONS(4606), + [sym__whitespace_ge_2] = ACTIONS(4606), + [aux_sym__whitespace_token1] = ACTIONS(4608), + [sym__word_no_digit] = ACTIONS(4606), + [sym__digits] = ACTIONS(4606), + [anon_sym_DASH_DASH] = ACTIONS(4608), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4606), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4606), + [sym__code_span_start] = ACTIONS(4606), + [sym__emphasis_open_star] = ACTIONS(4606), + [sym__emphasis_open_underscore] = ACTIONS(4606), + [sym__emphasis_close_star] = ACTIONS(4606), + [sym__strikeout_open] = ACTIONS(4606), + [sym__latex_span_start] = ACTIONS(4606), + [sym__single_quote_open] = ACTIONS(4606), + [sym__double_quote_open] = ACTIONS(4606), + [sym__superscript_open] = ACTIONS(4606), + [sym__subscript_open] = ACTIONS(4606), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4606), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4606), + [sym__cite_author_in_text] = ACTIONS(4606), + [sym__cite_suppress_author] = ACTIONS(4606), + [sym__shortcode_open_escaped] = ACTIONS(4606), + [sym__shortcode_open] = ACTIONS(4606), + [sym__unclosed_span] = ACTIONS(4606), + }, + [STATE(533)] = { + [sym__qmd_attribute] = STATE(1340), + [sym_raw_attribute] = STATE(1340), + [sym_commonmark_attribute] = STATE(1340), + [sym_language_attribute] = STATE(1340), + [sym__backslash_escape] = ACTIONS(4610), + [sym_entity_reference] = ACTIONS(4610), + [sym_numeric_character_reference] = ACTIONS(4610), + [anon_sym_LT] = ACTIONS(4612), + [anon_sym_GT] = ACTIONS(4610), + [anon_sym_BANG] = ACTIONS(4610), + [anon_sym_DQUOTE] = ACTIONS(4610), + [anon_sym_POUND] = ACTIONS(4610), + [anon_sym_DOLLAR] = ACTIONS(4610), + [anon_sym_PERCENT] = ACTIONS(4610), + [anon_sym_AMP] = ACTIONS(4612), + [anon_sym_SQUOTE] = ACTIONS(4610), + [anon_sym_STAR] = ACTIONS(4610), + [anon_sym_PLUS] = ACTIONS(4610), + [anon_sym_COMMA] = ACTIONS(4610), + [anon_sym_DASH] = ACTIONS(4612), + [anon_sym_DOT] = ACTIONS(4612), + [anon_sym_SLASH] = ACTIONS(4610), + [anon_sym_COLON] = ACTIONS(4610), + [anon_sym_SEMI] = ACTIONS(4610), + [anon_sym_EQ] = ACTIONS(4610), + [anon_sym_QMARK] = ACTIONS(4610), + [anon_sym_LBRACK] = ACTIONS(4612), + [anon_sym_BSLASH] = ACTIONS(4612), + [anon_sym_CARET] = ACTIONS(4612), + [anon_sym__] = ACTIONS(4610), + [anon_sym_BQUOTE] = ACTIONS(4610), + [anon_sym_LBRACE] = ACTIONS(4634), + [anon_sym_PIPE] = ACTIONS(4610), + [anon_sym_TILDE] = ACTIONS(4610), + [anon_sym_LPAREN] = ACTIONS(4610), + [anon_sym_RPAREN] = ACTIONS(4610), + [sym__newline_token] = ACTIONS(4610), + [aux_sym_insert_token1] = ACTIONS(4610), + [aux_sym_delete_token1] = ACTIONS(4610), + [aux_sym_highlight_token1] = ACTIONS(4610), + [aux_sym_edit_comment_token1] = ACTIONS(4610), + [anon_sym_CARET_LBRACK] = ACTIONS(4610), + [anon_sym_LBRACK_CARET] = ACTIONS(4610), + [sym_uri_autolink] = ACTIONS(4610), + [sym_email_autolink] = ACTIONS(4610), + [sym__whitespace_ge_2] = ACTIONS(4610), + [aux_sym__whitespace_token1] = ACTIONS(4612), + [sym__word_no_digit] = ACTIONS(4610), + [sym__digits] = ACTIONS(4610), + [anon_sym_DASH_DASH] = ACTIONS(4612), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4610), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4610), + [sym__code_span_start] = ACTIONS(4610), + [sym__emphasis_open_star] = ACTIONS(4610), + [sym__emphasis_open_underscore] = ACTIONS(4610), + [sym__emphasis_close_star] = ACTIONS(4610), + [sym__strikeout_open] = ACTIONS(4610), + [sym__latex_span_start] = ACTIONS(4610), + [sym__single_quote_open] = ACTIONS(4610), + [sym__double_quote_open] = ACTIONS(4610), + [sym__superscript_open] = ACTIONS(4610), + [sym__subscript_open] = ACTIONS(4610), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4610), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4610), + [sym__cite_author_in_text] = ACTIONS(4610), + [sym__cite_suppress_author] = ACTIONS(4610), + [sym__shortcode_open_escaped] = ACTIONS(4610), + [sym__shortcode_open] = ACTIONS(4610), + [sym__unclosed_span] = ACTIONS(4610), + }, + [STATE(534)] = { + [sym__qmd_attribute] = STATE(1347), + [sym_raw_attribute] = STATE(1347), + [sym_commonmark_attribute] = STATE(1347), + [sym_language_attribute] = STATE(1347), + [sym__backslash_escape] = ACTIONS(4566), + [sym_entity_reference] = ACTIONS(4566), + [sym_numeric_character_reference] = ACTIONS(4566), + [anon_sym_LT] = ACTIONS(4568), + [anon_sym_GT] = ACTIONS(4566), + [anon_sym_BANG] = ACTIONS(4566), + [anon_sym_DQUOTE] = ACTIONS(4566), + [anon_sym_POUND] = ACTIONS(4566), + [anon_sym_DOLLAR] = ACTIONS(4566), + [anon_sym_PERCENT] = ACTIONS(4566), + [anon_sym_AMP] = ACTIONS(4568), + [anon_sym_SQUOTE] = ACTIONS(4566), + [anon_sym_STAR] = ACTIONS(4566), + [anon_sym_PLUS] = ACTIONS(4566), + [anon_sym_COMMA] = ACTIONS(4566), + [anon_sym_DASH] = ACTIONS(4568), + [anon_sym_DOT] = ACTIONS(4568), + [anon_sym_SLASH] = ACTIONS(4566), + [anon_sym_COLON] = ACTIONS(4566), + [anon_sym_SEMI] = ACTIONS(4566), + [anon_sym_EQ] = ACTIONS(4566), + [anon_sym_QMARK] = ACTIONS(4566), + [anon_sym_LBRACK] = ACTIONS(4568), + [anon_sym_BSLASH] = ACTIONS(4568), + [anon_sym_CARET] = ACTIONS(4568), + [anon_sym__] = ACTIONS(4566), + [anon_sym_BQUOTE] = ACTIONS(4566), + [anon_sym_LBRACE] = ACTIONS(4634), + [anon_sym_PIPE] = ACTIONS(4566), + [anon_sym_TILDE] = ACTIONS(4566), + [anon_sym_LPAREN] = ACTIONS(4566), + [anon_sym_RPAREN] = ACTIONS(4566), + [sym__newline_token] = ACTIONS(4566), + [aux_sym_insert_token1] = ACTIONS(4566), + [aux_sym_delete_token1] = ACTIONS(4566), + [aux_sym_highlight_token1] = ACTIONS(4566), + [aux_sym_edit_comment_token1] = ACTIONS(4566), + [anon_sym_CARET_LBRACK] = ACTIONS(4566), + [anon_sym_LBRACK_CARET] = ACTIONS(4566), + [sym_uri_autolink] = ACTIONS(4566), + [sym_email_autolink] = ACTIONS(4566), + [sym__whitespace_ge_2] = ACTIONS(4566), + [aux_sym__whitespace_token1] = ACTIONS(4568), + [sym__word_no_digit] = ACTIONS(4566), + [sym__digits] = ACTIONS(4566), + [anon_sym_DASH_DASH] = ACTIONS(4568), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4566), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4566), + [sym__code_span_start] = ACTIONS(4566), + [sym__emphasis_open_star] = ACTIONS(4566), + [sym__emphasis_open_underscore] = ACTIONS(4566), + [sym__emphasis_close_star] = ACTIONS(4566), + [sym__strikeout_open] = ACTIONS(4566), + [sym__latex_span_start] = ACTIONS(4566), + [sym__single_quote_open] = ACTIONS(4566), + [sym__double_quote_open] = ACTIONS(4566), + [sym__superscript_open] = ACTIONS(4566), + [sym__subscript_open] = ACTIONS(4566), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4566), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4566), + [sym__cite_author_in_text] = ACTIONS(4566), + [sym__cite_suppress_author] = ACTIONS(4566), + [sym__shortcode_open_escaped] = ACTIONS(4566), + [sym__shortcode_open] = ACTIONS(4566), + [sym__unclosed_span] = ACTIONS(4566), + }, + [STATE(535)] = { + [sym__qmd_attribute] = STATE(1350), + [sym_raw_attribute] = STATE(1350), + [sym_commonmark_attribute] = STATE(1350), + [sym_language_attribute] = STATE(1350), + [sym__backslash_escape] = ACTIONS(4572), + [sym_entity_reference] = ACTIONS(4572), + [sym_numeric_character_reference] = ACTIONS(4572), + [anon_sym_LT] = ACTIONS(4574), + [anon_sym_GT] = ACTIONS(4572), + [anon_sym_BANG] = ACTIONS(4572), + [anon_sym_DQUOTE] = ACTIONS(4572), + [anon_sym_POUND] = ACTIONS(4572), + [anon_sym_DOLLAR] = ACTIONS(4572), + [anon_sym_PERCENT] = ACTIONS(4572), + [anon_sym_AMP] = ACTIONS(4574), + [anon_sym_SQUOTE] = ACTIONS(4572), + [anon_sym_STAR] = ACTIONS(4572), + [anon_sym_PLUS] = ACTIONS(4572), + [anon_sym_COMMA] = ACTIONS(4572), + [anon_sym_DASH] = ACTIONS(4574), + [anon_sym_DOT] = ACTIONS(4574), + [anon_sym_SLASH] = ACTIONS(4572), + [anon_sym_COLON] = ACTIONS(4572), + [anon_sym_SEMI] = ACTIONS(4572), + [anon_sym_EQ] = ACTIONS(4572), + [anon_sym_QMARK] = ACTIONS(4572), + [anon_sym_LBRACK] = ACTIONS(4574), + [anon_sym_BSLASH] = ACTIONS(4574), + [anon_sym_CARET] = ACTIONS(4574), + [anon_sym__] = ACTIONS(4572), + [anon_sym_BQUOTE] = ACTIONS(4572), + [anon_sym_LBRACE] = ACTIONS(4634), + [anon_sym_PIPE] = ACTIONS(4572), + [anon_sym_TILDE] = ACTIONS(4572), + [anon_sym_LPAREN] = ACTIONS(4572), + [anon_sym_RPAREN] = ACTIONS(4572), + [sym__newline_token] = ACTIONS(4572), + [aux_sym_insert_token1] = ACTIONS(4572), + [aux_sym_delete_token1] = ACTIONS(4572), + [aux_sym_highlight_token1] = ACTIONS(4572), + [aux_sym_edit_comment_token1] = ACTIONS(4572), + [anon_sym_CARET_LBRACK] = ACTIONS(4572), + [anon_sym_LBRACK_CARET] = ACTIONS(4572), + [sym_uri_autolink] = ACTIONS(4572), + [sym_email_autolink] = ACTIONS(4572), + [sym__whitespace_ge_2] = ACTIONS(4572), + [aux_sym__whitespace_token1] = ACTIONS(4574), + [sym__word_no_digit] = ACTIONS(4572), + [sym__digits] = ACTIONS(4572), + [anon_sym_DASH_DASH] = ACTIONS(4574), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4572), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4572), + [sym__code_span_start] = ACTIONS(4572), + [sym__emphasis_open_star] = ACTIONS(4572), + [sym__emphasis_open_underscore] = ACTIONS(4572), + [sym__emphasis_close_star] = ACTIONS(4572), + [sym__strikeout_open] = ACTIONS(4572), + [sym__latex_span_start] = ACTIONS(4572), + [sym__single_quote_open] = ACTIONS(4572), + [sym__double_quote_open] = ACTIONS(4572), + [sym__superscript_open] = ACTIONS(4572), + [sym__subscript_open] = ACTIONS(4572), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4572), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4572), + [sym__cite_author_in_text] = ACTIONS(4572), + [sym__cite_suppress_author] = ACTIONS(4572), + [sym__shortcode_open_escaped] = ACTIONS(4572), + [sym__shortcode_open] = ACTIONS(4572), + [sym__unclosed_span] = ACTIONS(4572), + }, + [STATE(536)] = { + [sym__qmd_attribute] = STATE(1357), + [sym_raw_attribute] = STATE(1357), + [sym_commonmark_attribute] = STATE(1357), + [sym_language_attribute] = STATE(1357), + [sym__backslash_escape] = ACTIONS(4588), + [sym_entity_reference] = ACTIONS(4588), + [sym_numeric_character_reference] = ACTIONS(4588), + [anon_sym_LT] = ACTIONS(4590), + [anon_sym_GT] = ACTIONS(4588), + [anon_sym_BANG] = ACTIONS(4588), + [anon_sym_DQUOTE] = ACTIONS(4588), + [anon_sym_POUND] = ACTIONS(4588), + [anon_sym_DOLLAR] = ACTIONS(4588), + [anon_sym_PERCENT] = ACTIONS(4588), + [anon_sym_AMP] = ACTIONS(4590), + [anon_sym_SQUOTE] = ACTIONS(4588), + [anon_sym_STAR] = ACTIONS(4588), + [anon_sym_PLUS] = ACTIONS(4588), + [anon_sym_COMMA] = ACTIONS(4588), + [anon_sym_DASH] = ACTIONS(4590), + [anon_sym_DOT] = ACTIONS(4590), + [anon_sym_SLASH] = ACTIONS(4588), + [anon_sym_COLON] = ACTIONS(4588), + [anon_sym_SEMI] = ACTIONS(4588), + [anon_sym_EQ] = ACTIONS(4588), + [anon_sym_QMARK] = ACTIONS(4588), + [anon_sym_LBRACK] = ACTIONS(4590), + [anon_sym_BSLASH] = ACTIONS(4590), + [anon_sym_CARET] = ACTIONS(4590), + [anon_sym__] = ACTIONS(4588), + [anon_sym_BQUOTE] = ACTIONS(4588), + [anon_sym_LBRACE] = ACTIONS(4634), + [anon_sym_PIPE] = ACTIONS(4588), + [anon_sym_TILDE] = ACTIONS(4588), + [anon_sym_LPAREN] = ACTIONS(4588), + [anon_sym_RPAREN] = ACTIONS(4588), + [sym__newline_token] = ACTIONS(4588), + [aux_sym_insert_token1] = ACTIONS(4588), + [aux_sym_delete_token1] = ACTIONS(4588), + [aux_sym_highlight_token1] = ACTIONS(4588), + [aux_sym_edit_comment_token1] = ACTIONS(4588), + [anon_sym_CARET_LBRACK] = ACTIONS(4588), + [anon_sym_LBRACK_CARET] = ACTIONS(4588), + [sym_uri_autolink] = ACTIONS(4588), + [sym_email_autolink] = ACTIONS(4588), + [sym__whitespace_ge_2] = ACTIONS(4588), + [aux_sym__whitespace_token1] = ACTIONS(4590), + [sym__word_no_digit] = ACTIONS(4588), + [sym__digits] = ACTIONS(4588), + [anon_sym_DASH_DASH] = ACTIONS(4590), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4588), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4588), + [sym__code_span_start] = ACTIONS(4588), + [sym__emphasis_open_star] = ACTIONS(4588), + [sym__emphasis_open_underscore] = ACTIONS(4588), + [sym__emphasis_close_star] = ACTIONS(4588), + [sym__strikeout_open] = ACTIONS(4588), + [sym__latex_span_start] = ACTIONS(4588), + [sym__single_quote_open] = ACTIONS(4588), + [sym__double_quote_open] = ACTIONS(4588), + [sym__superscript_open] = ACTIONS(4588), + [sym__subscript_open] = ACTIONS(4588), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4588), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4588), + [sym__cite_author_in_text] = ACTIONS(4588), + [sym__cite_suppress_author] = ACTIONS(4588), + [sym__shortcode_open_escaped] = ACTIONS(4588), + [sym__shortcode_open] = ACTIONS(4588), + [sym__unclosed_span] = ACTIONS(4588), + }, + [STATE(537)] = { + [sym__qmd_attribute] = STATE(1360), + [sym_raw_attribute] = STATE(1360), + [sym_commonmark_attribute] = STATE(1360), + [sym_language_attribute] = STATE(1360), + [sym__backslash_escape] = ACTIONS(4540), + [sym_entity_reference] = ACTIONS(4540), + [sym_numeric_character_reference] = ACTIONS(4540), + [anon_sym_LT] = ACTIONS(4542), + [anon_sym_GT] = ACTIONS(4540), + [anon_sym_BANG] = ACTIONS(4540), + [anon_sym_DQUOTE] = ACTIONS(4540), + [anon_sym_POUND] = ACTIONS(4540), + [anon_sym_DOLLAR] = ACTIONS(4540), + [anon_sym_PERCENT] = ACTIONS(4540), + [anon_sym_AMP] = ACTIONS(4542), + [anon_sym_SQUOTE] = ACTIONS(4540), + [anon_sym_STAR] = ACTIONS(4540), + [anon_sym_PLUS] = ACTIONS(4540), + [anon_sym_COMMA] = ACTIONS(4540), + [anon_sym_DASH] = ACTIONS(4542), + [anon_sym_DOT] = ACTIONS(4542), + [anon_sym_SLASH] = ACTIONS(4540), + [anon_sym_COLON] = ACTIONS(4540), + [anon_sym_SEMI] = ACTIONS(4540), + [anon_sym_EQ] = ACTIONS(4540), + [anon_sym_QMARK] = ACTIONS(4540), + [anon_sym_LBRACK] = ACTIONS(4542), + [anon_sym_BSLASH] = ACTIONS(4542), + [anon_sym_CARET] = ACTIONS(4542), + [anon_sym__] = ACTIONS(4540), + [anon_sym_BQUOTE] = ACTIONS(4540), + [anon_sym_LBRACE] = ACTIONS(4634), + [anon_sym_PIPE] = ACTIONS(4540), + [anon_sym_TILDE] = ACTIONS(4540), + [anon_sym_LPAREN] = ACTIONS(4540), + [anon_sym_RPAREN] = ACTIONS(4540), + [sym__newline_token] = ACTIONS(4540), + [aux_sym_insert_token1] = ACTIONS(4540), + [aux_sym_delete_token1] = ACTIONS(4540), + [aux_sym_highlight_token1] = ACTIONS(4540), + [aux_sym_edit_comment_token1] = ACTIONS(4540), + [anon_sym_CARET_LBRACK] = ACTIONS(4540), + [anon_sym_LBRACK_CARET] = ACTIONS(4540), + [sym_uri_autolink] = ACTIONS(4540), + [sym_email_autolink] = ACTIONS(4540), + [sym__whitespace_ge_2] = ACTIONS(4540), + [aux_sym__whitespace_token1] = ACTIONS(4542), + [sym__word_no_digit] = ACTIONS(4540), + [sym__digits] = ACTIONS(4540), + [anon_sym_DASH_DASH] = ACTIONS(4542), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4540), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4540), + [sym__code_span_start] = ACTIONS(4540), + [sym__emphasis_open_star] = ACTIONS(4540), + [sym__emphasis_open_underscore] = ACTIONS(4540), + [sym__emphasis_close_star] = ACTIONS(4540), + [sym__strikeout_open] = ACTIONS(4540), + [sym__latex_span_start] = ACTIONS(4540), + [sym__single_quote_open] = ACTIONS(4540), + [sym__double_quote_open] = ACTIONS(4540), + [sym__superscript_open] = ACTIONS(4540), + [sym__subscript_open] = ACTIONS(4540), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4540), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4540), + [sym__cite_author_in_text] = ACTIONS(4540), + [sym__cite_suppress_author] = ACTIONS(4540), + [sym__shortcode_open_escaped] = ACTIONS(4540), + [sym__shortcode_open] = ACTIONS(4540), + [sym__unclosed_span] = ACTIONS(4540), + }, + [STATE(538)] = { + [sym__qmd_attribute] = STATE(1365), + [sym_raw_attribute] = STATE(1365), + [sym_commonmark_attribute] = STATE(1365), + [sym_language_attribute] = STATE(1365), + [sym__backslash_escape] = ACTIONS(4534), + [sym_entity_reference] = ACTIONS(4534), + [sym_numeric_character_reference] = ACTIONS(4534), + [anon_sym_LT] = ACTIONS(4536), + [anon_sym_GT] = ACTIONS(4534), + [anon_sym_BANG] = ACTIONS(4534), + [anon_sym_DQUOTE] = ACTIONS(4534), + [anon_sym_POUND] = ACTIONS(4534), + [anon_sym_DOLLAR] = ACTIONS(4534), + [anon_sym_PERCENT] = ACTIONS(4534), + [anon_sym_AMP] = ACTIONS(4536), + [anon_sym_SQUOTE] = ACTIONS(4534), + [anon_sym_STAR] = ACTIONS(4534), + [anon_sym_PLUS] = ACTIONS(4534), + [anon_sym_COMMA] = ACTIONS(4534), + [anon_sym_DASH] = ACTIONS(4536), + [anon_sym_DOT] = ACTIONS(4536), + [anon_sym_SLASH] = ACTIONS(4534), + [anon_sym_COLON] = ACTIONS(4534), + [anon_sym_SEMI] = ACTIONS(4534), + [anon_sym_EQ] = ACTIONS(4534), + [anon_sym_QMARK] = ACTIONS(4534), + [anon_sym_LBRACK] = ACTIONS(4536), + [anon_sym_BSLASH] = ACTIONS(4536), + [anon_sym_CARET] = ACTIONS(4536), + [anon_sym__] = ACTIONS(4534), + [anon_sym_BQUOTE] = ACTIONS(4534), + [anon_sym_LBRACE] = ACTIONS(4634), + [anon_sym_PIPE] = ACTIONS(4534), + [anon_sym_TILDE] = ACTIONS(4534), + [anon_sym_LPAREN] = ACTIONS(4534), + [anon_sym_RPAREN] = ACTIONS(4534), + [sym__newline_token] = ACTIONS(4534), + [aux_sym_insert_token1] = ACTIONS(4534), + [aux_sym_delete_token1] = ACTIONS(4534), + [aux_sym_highlight_token1] = ACTIONS(4534), + [aux_sym_edit_comment_token1] = ACTIONS(4534), + [anon_sym_CARET_LBRACK] = ACTIONS(4534), + [anon_sym_LBRACK_CARET] = ACTIONS(4534), + [sym_uri_autolink] = ACTIONS(4534), + [sym_email_autolink] = ACTIONS(4534), + [sym__whitespace_ge_2] = ACTIONS(4534), + [aux_sym__whitespace_token1] = ACTIONS(4536), + [sym__word_no_digit] = ACTIONS(4534), + [sym__digits] = ACTIONS(4534), + [anon_sym_DASH_DASH] = ACTIONS(4536), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4534), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4534), + [sym__code_span_start] = ACTIONS(4534), + [sym__emphasis_open_star] = ACTIONS(4534), + [sym__emphasis_open_underscore] = ACTIONS(4534), + [sym__emphasis_close_star] = ACTIONS(4534), + [sym__strikeout_open] = ACTIONS(4534), + [sym__latex_span_start] = ACTIONS(4534), + [sym__single_quote_open] = ACTIONS(4534), + [sym__double_quote_open] = ACTIONS(4534), + [sym__superscript_open] = ACTIONS(4534), + [sym__subscript_open] = ACTIONS(4534), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4534), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4534), + [sym__cite_author_in_text] = ACTIONS(4534), + [sym__cite_suppress_author] = ACTIONS(4534), + [sym__shortcode_open_escaped] = ACTIONS(4534), + [sym__shortcode_open] = ACTIONS(4534), + [sym__unclosed_span] = ACTIONS(4534), + }, + [STATE(539)] = { + [sym__qmd_attribute] = STATE(1367), + [sym_raw_attribute] = STATE(1367), + [sym_commonmark_attribute] = STATE(1367), + [sym_language_attribute] = STATE(1367), + [sym__backslash_escape] = ACTIONS(4546), + [sym_entity_reference] = ACTIONS(4546), + [sym_numeric_character_reference] = ACTIONS(4546), + [anon_sym_LT] = ACTIONS(4548), + [anon_sym_GT] = ACTIONS(4546), + [anon_sym_BANG] = ACTIONS(4546), + [anon_sym_DQUOTE] = ACTIONS(4546), + [anon_sym_POUND] = ACTIONS(4546), + [anon_sym_DOLLAR] = ACTIONS(4546), + [anon_sym_PERCENT] = ACTIONS(4546), + [anon_sym_AMP] = ACTIONS(4548), + [anon_sym_SQUOTE] = ACTIONS(4546), + [anon_sym_STAR] = ACTIONS(4546), + [anon_sym_PLUS] = ACTIONS(4546), + [anon_sym_COMMA] = ACTIONS(4546), + [anon_sym_DASH] = ACTIONS(4548), + [anon_sym_DOT] = ACTIONS(4548), + [anon_sym_SLASH] = ACTIONS(4546), + [anon_sym_COLON] = ACTIONS(4546), + [anon_sym_SEMI] = ACTIONS(4546), + [anon_sym_EQ] = ACTIONS(4546), + [anon_sym_QMARK] = ACTIONS(4546), + [anon_sym_LBRACK] = ACTIONS(4548), + [anon_sym_BSLASH] = ACTIONS(4548), + [anon_sym_CARET] = ACTIONS(4548), + [anon_sym__] = ACTIONS(4546), + [anon_sym_BQUOTE] = ACTIONS(4546), + [anon_sym_LBRACE] = ACTIONS(4634), + [anon_sym_PIPE] = ACTIONS(4546), + [anon_sym_TILDE] = ACTIONS(4546), + [anon_sym_LPAREN] = ACTIONS(4546), + [anon_sym_RPAREN] = ACTIONS(4546), + [sym__newline_token] = ACTIONS(4546), + [aux_sym_insert_token1] = ACTIONS(4546), + [aux_sym_delete_token1] = ACTIONS(4546), + [aux_sym_highlight_token1] = ACTIONS(4546), + [aux_sym_edit_comment_token1] = ACTIONS(4546), + [anon_sym_CARET_LBRACK] = ACTIONS(4546), + [anon_sym_LBRACK_CARET] = ACTIONS(4546), + [sym_uri_autolink] = ACTIONS(4546), + [sym_email_autolink] = ACTIONS(4546), + [sym__whitespace_ge_2] = ACTIONS(4546), + [aux_sym__whitespace_token1] = ACTIONS(4548), + [sym__word_no_digit] = ACTIONS(4546), + [sym__digits] = ACTIONS(4546), + [anon_sym_DASH_DASH] = ACTIONS(4548), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4546), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4546), + [sym__code_span_start] = ACTIONS(4546), + [sym__emphasis_open_star] = ACTIONS(4546), + [sym__emphasis_open_underscore] = ACTIONS(4546), + [sym__emphasis_close_star] = ACTIONS(4546), + [sym__strikeout_open] = ACTIONS(4546), + [sym__latex_span_start] = ACTIONS(4546), + [sym__single_quote_open] = ACTIONS(4546), + [sym__double_quote_open] = ACTIONS(4546), + [sym__superscript_open] = ACTIONS(4546), + [sym__subscript_open] = ACTIONS(4546), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4546), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4546), + [sym__cite_author_in_text] = ACTIONS(4546), + [sym__cite_suppress_author] = ACTIONS(4546), + [sym__shortcode_open_escaped] = ACTIONS(4546), + [sym__shortcode_open] = ACTIONS(4546), + [sym__unclosed_span] = ACTIONS(4546), + }, + [STATE(540)] = { + [sym__qmd_attribute] = STATE(1145), + [sym_raw_attribute] = STATE(1145), + [sym_commonmark_attribute] = STATE(1145), + [sym_language_attribute] = STATE(1145), + [sym__backslash_escape] = ACTIONS(4600), + [sym_entity_reference] = ACTIONS(4600), + [sym_numeric_character_reference] = ACTIONS(4600), + [anon_sym_LT] = ACTIONS(4602), + [anon_sym_GT] = ACTIONS(4600), + [anon_sym_BANG] = ACTIONS(4600), + [anon_sym_DQUOTE] = ACTIONS(4600), + [anon_sym_POUND] = ACTIONS(4600), + [anon_sym_DOLLAR] = ACTIONS(4600), + [anon_sym_PERCENT] = ACTIONS(4600), + [anon_sym_AMP] = ACTIONS(4602), + [anon_sym_SQUOTE] = ACTIONS(4600), + [anon_sym_STAR] = ACTIONS(4600), + [anon_sym_PLUS] = ACTIONS(4600), + [anon_sym_COMMA] = ACTIONS(4600), + [anon_sym_DASH] = ACTIONS(4602), + [anon_sym_DOT] = ACTIONS(4602), + [anon_sym_SLASH] = ACTIONS(4600), + [anon_sym_COLON] = ACTIONS(4600), + [anon_sym_SEMI] = ACTIONS(4600), + [anon_sym_EQ] = ACTIONS(4600), + [anon_sym_QMARK] = ACTIONS(4600), + [anon_sym_LBRACK] = ACTIONS(4602), + [anon_sym_BSLASH] = ACTIONS(4602), + [anon_sym_CARET] = ACTIONS(4602), + [anon_sym__] = ACTIONS(4600), + [anon_sym_BQUOTE] = ACTIONS(4600), + [anon_sym_LBRACE] = ACTIONS(4544), + [anon_sym_PIPE] = ACTIONS(4600), + [anon_sym_TILDE] = ACTIONS(4600), + [anon_sym_LPAREN] = ACTIONS(4600), + [anon_sym_RPAREN] = ACTIONS(4600), + [sym__newline_token] = ACTIONS(4600), + [aux_sym_insert_token1] = ACTIONS(4600), + [aux_sym_delete_token1] = ACTIONS(4600), + [aux_sym_highlight_token1] = ACTIONS(4600), + [aux_sym_edit_comment_token1] = ACTIONS(4600), + [anon_sym_CARET_LBRACK] = ACTIONS(4600), + [anon_sym_LBRACK_CARET] = ACTIONS(4600), + [sym_uri_autolink] = ACTIONS(4600), + [sym_email_autolink] = ACTIONS(4600), + [sym__whitespace_ge_2] = ACTIONS(4600), + [aux_sym__whitespace_token1] = ACTIONS(4602), + [sym__word_no_digit] = ACTIONS(4600), + [sym__digits] = ACTIONS(4600), + [anon_sym_DASH_DASH] = ACTIONS(4602), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4600), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4600), + [sym__code_span_start] = ACTIONS(4600), + [sym__emphasis_open_star] = ACTIONS(4600), + [sym__emphasis_open_underscore] = ACTIONS(4600), + [sym__strikeout_open] = ACTIONS(4600), + [sym__latex_span_start] = ACTIONS(4600), + [sym__single_quote_open] = ACTIONS(4600), + [sym__single_quote_close] = ACTIONS(4600), + [sym__double_quote_open] = ACTIONS(4600), + [sym__superscript_open] = ACTIONS(4600), + [sym__subscript_open] = ACTIONS(4600), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4600), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4600), + [sym__cite_author_in_text] = ACTIONS(4600), + [sym__cite_suppress_author] = ACTIONS(4600), + [sym__shortcode_open_escaped] = ACTIONS(4600), + [sym__shortcode_open] = ACTIONS(4600), + [sym__unclosed_span] = ACTIONS(4600), + }, + [STATE(541)] = { + [sym__qmd_attribute] = STATE(1369), + [sym_raw_attribute] = STATE(1369), + [sym_commonmark_attribute] = STATE(1369), + [sym_language_attribute] = STATE(1369), + [sym__backslash_escape] = ACTIONS(4550), + [sym_entity_reference] = ACTIONS(4550), + [sym_numeric_character_reference] = ACTIONS(4550), + [anon_sym_LT] = ACTIONS(4552), + [anon_sym_GT] = ACTIONS(4550), + [anon_sym_BANG] = ACTIONS(4550), + [anon_sym_DQUOTE] = ACTIONS(4550), + [anon_sym_POUND] = ACTIONS(4550), + [anon_sym_DOLLAR] = ACTIONS(4550), + [anon_sym_PERCENT] = ACTIONS(4550), + [anon_sym_AMP] = ACTIONS(4552), + [anon_sym_SQUOTE] = ACTIONS(4550), + [anon_sym_STAR] = ACTIONS(4550), + [anon_sym_PLUS] = ACTIONS(4550), + [anon_sym_COMMA] = ACTIONS(4550), + [anon_sym_DASH] = ACTIONS(4552), + [anon_sym_DOT] = ACTIONS(4552), + [anon_sym_SLASH] = ACTIONS(4550), + [anon_sym_COLON] = ACTIONS(4550), + [anon_sym_SEMI] = ACTIONS(4550), + [anon_sym_EQ] = ACTIONS(4550), + [anon_sym_QMARK] = ACTIONS(4550), + [anon_sym_LBRACK] = ACTIONS(4552), + [anon_sym_BSLASH] = ACTIONS(4552), + [anon_sym_CARET] = ACTIONS(4552), + [anon_sym__] = ACTIONS(4550), + [anon_sym_BQUOTE] = ACTIONS(4550), + [anon_sym_LBRACE] = ACTIONS(4634), + [anon_sym_PIPE] = ACTIONS(4550), + [anon_sym_TILDE] = ACTIONS(4550), + [anon_sym_LPAREN] = ACTIONS(4550), + [anon_sym_RPAREN] = ACTIONS(4550), + [sym__newline_token] = ACTIONS(4550), + [aux_sym_insert_token1] = ACTIONS(4550), + [aux_sym_delete_token1] = ACTIONS(4550), + [aux_sym_highlight_token1] = ACTIONS(4550), + [aux_sym_edit_comment_token1] = ACTIONS(4550), + [anon_sym_CARET_LBRACK] = ACTIONS(4550), + [anon_sym_LBRACK_CARET] = ACTIONS(4550), + [sym_uri_autolink] = ACTIONS(4550), + [sym_email_autolink] = ACTIONS(4550), + [sym__whitespace_ge_2] = ACTIONS(4550), + [aux_sym__whitespace_token1] = ACTIONS(4552), + [sym__word_no_digit] = ACTIONS(4550), + [sym__digits] = ACTIONS(4550), + [anon_sym_DASH_DASH] = ACTIONS(4552), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4550), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4550), + [sym__code_span_start] = ACTIONS(4550), + [sym__emphasis_open_star] = ACTIONS(4550), + [sym__emphasis_open_underscore] = ACTIONS(4550), + [sym__emphasis_close_star] = ACTIONS(4550), + [sym__strikeout_open] = ACTIONS(4550), + [sym__latex_span_start] = ACTIONS(4550), + [sym__single_quote_open] = ACTIONS(4550), + [sym__double_quote_open] = ACTIONS(4550), + [sym__superscript_open] = ACTIONS(4550), + [sym__subscript_open] = ACTIONS(4550), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4550), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4550), + [sym__cite_author_in_text] = ACTIONS(4550), + [sym__cite_suppress_author] = ACTIONS(4550), + [sym__shortcode_open_escaped] = ACTIONS(4550), + [sym__shortcode_open] = ACTIONS(4550), + [sym__unclosed_span] = ACTIONS(4550), + }, + [STATE(542)] = { + [sym__qmd_attribute] = STATE(1371), + [sym_raw_attribute] = STATE(1371), + [sym_commonmark_attribute] = STATE(1371), + [sym_language_attribute] = STATE(1371), + [sym__backslash_escape] = ACTIONS(4554), + [sym_entity_reference] = ACTIONS(4554), + [sym_numeric_character_reference] = ACTIONS(4554), + [anon_sym_LT] = ACTIONS(4556), + [anon_sym_GT] = ACTIONS(4554), + [anon_sym_BANG] = ACTIONS(4554), + [anon_sym_DQUOTE] = ACTIONS(4554), + [anon_sym_POUND] = ACTIONS(4554), + [anon_sym_DOLLAR] = ACTIONS(4554), + [anon_sym_PERCENT] = ACTIONS(4554), + [anon_sym_AMP] = ACTIONS(4556), + [anon_sym_SQUOTE] = ACTIONS(4554), + [anon_sym_STAR] = ACTIONS(4554), + [anon_sym_PLUS] = ACTIONS(4554), + [anon_sym_COMMA] = ACTIONS(4554), + [anon_sym_DASH] = ACTIONS(4556), + [anon_sym_DOT] = ACTIONS(4556), + [anon_sym_SLASH] = ACTIONS(4554), + [anon_sym_COLON] = ACTIONS(4554), + [anon_sym_SEMI] = ACTIONS(4554), + [anon_sym_EQ] = ACTIONS(4554), + [anon_sym_QMARK] = ACTIONS(4554), + [anon_sym_LBRACK] = ACTIONS(4556), + [anon_sym_BSLASH] = ACTIONS(4556), + [anon_sym_CARET] = ACTIONS(4556), + [anon_sym__] = ACTIONS(4554), + [anon_sym_BQUOTE] = ACTIONS(4554), + [anon_sym_LBRACE] = ACTIONS(4634), + [anon_sym_PIPE] = ACTIONS(4554), + [anon_sym_TILDE] = ACTIONS(4554), + [anon_sym_LPAREN] = ACTIONS(4554), + [anon_sym_RPAREN] = ACTIONS(4554), + [sym__newline_token] = ACTIONS(4554), + [aux_sym_insert_token1] = ACTIONS(4554), + [aux_sym_delete_token1] = ACTIONS(4554), + [aux_sym_highlight_token1] = ACTIONS(4554), + [aux_sym_edit_comment_token1] = ACTIONS(4554), + [anon_sym_CARET_LBRACK] = ACTIONS(4554), + [anon_sym_LBRACK_CARET] = ACTIONS(4554), + [sym_uri_autolink] = ACTIONS(4554), + [sym_email_autolink] = ACTIONS(4554), + [sym__whitespace_ge_2] = ACTIONS(4554), + [aux_sym__whitespace_token1] = ACTIONS(4556), + [sym__word_no_digit] = ACTIONS(4554), + [sym__digits] = ACTIONS(4554), + [anon_sym_DASH_DASH] = ACTIONS(4556), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4554), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4554), + [sym__code_span_start] = ACTIONS(4554), + [sym__emphasis_open_star] = ACTIONS(4554), + [sym__emphasis_open_underscore] = ACTIONS(4554), + [sym__emphasis_close_star] = ACTIONS(4554), + [sym__strikeout_open] = ACTIONS(4554), + [sym__latex_span_start] = ACTIONS(4554), + [sym__single_quote_open] = ACTIONS(4554), + [sym__double_quote_open] = ACTIONS(4554), + [sym__superscript_open] = ACTIONS(4554), + [sym__subscript_open] = ACTIONS(4554), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4554), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4554), + [sym__cite_author_in_text] = ACTIONS(4554), + [sym__cite_suppress_author] = ACTIONS(4554), + [sym__shortcode_open_escaped] = ACTIONS(4554), + [sym__shortcode_open] = ACTIONS(4554), + [sym__unclosed_span] = ACTIONS(4554), + }, + [STATE(543)] = { + [sym__qmd_attribute] = STATE(1373), + [sym_raw_attribute] = STATE(1373), + [sym_commonmark_attribute] = STATE(1373), + [sym_language_attribute] = STATE(1373), + [sym__backslash_escape] = ACTIONS(4558), + [sym_entity_reference] = ACTIONS(4558), + [sym_numeric_character_reference] = ACTIONS(4558), + [anon_sym_LT] = ACTIONS(4560), + [anon_sym_GT] = ACTIONS(4558), + [anon_sym_BANG] = ACTIONS(4558), + [anon_sym_DQUOTE] = ACTIONS(4558), + [anon_sym_POUND] = ACTIONS(4558), + [anon_sym_DOLLAR] = ACTIONS(4558), + [anon_sym_PERCENT] = ACTIONS(4558), + [anon_sym_AMP] = ACTIONS(4560), + [anon_sym_SQUOTE] = ACTIONS(4558), + [anon_sym_STAR] = ACTIONS(4558), + [anon_sym_PLUS] = ACTIONS(4558), + [anon_sym_COMMA] = ACTIONS(4558), + [anon_sym_DASH] = ACTIONS(4560), + [anon_sym_DOT] = ACTIONS(4560), + [anon_sym_SLASH] = ACTIONS(4558), + [anon_sym_COLON] = ACTIONS(4558), + [anon_sym_SEMI] = ACTIONS(4558), + [anon_sym_EQ] = ACTIONS(4558), + [anon_sym_QMARK] = ACTIONS(4558), + [anon_sym_LBRACK] = ACTIONS(4560), + [anon_sym_BSLASH] = ACTIONS(4560), + [anon_sym_CARET] = ACTIONS(4560), + [anon_sym__] = ACTIONS(4558), + [anon_sym_BQUOTE] = ACTIONS(4558), + [anon_sym_LBRACE] = ACTIONS(4634), + [anon_sym_PIPE] = ACTIONS(4558), + [anon_sym_TILDE] = ACTIONS(4558), + [anon_sym_LPAREN] = ACTIONS(4558), + [anon_sym_RPAREN] = ACTIONS(4558), + [sym__newline_token] = ACTIONS(4558), + [aux_sym_insert_token1] = ACTIONS(4558), + [aux_sym_delete_token1] = ACTIONS(4558), + [aux_sym_highlight_token1] = ACTIONS(4558), + [aux_sym_edit_comment_token1] = ACTIONS(4558), + [anon_sym_CARET_LBRACK] = ACTIONS(4558), + [anon_sym_LBRACK_CARET] = ACTIONS(4558), + [sym_uri_autolink] = ACTIONS(4558), + [sym_email_autolink] = ACTIONS(4558), + [sym__whitespace_ge_2] = ACTIONS(4558), + [aux_sym__whitespace_token1] = ACTIONS(4560), + [sym__word_no_digit] = ACTIONS(4558), + [sym__digits] = ACTIONS(4558), + [anon_sym_DASH_DASH] = ACTIONS(4560), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4558), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4558), + [sym__code_span_start] = ACTIONS(4558), + [sym__emphasis_open_star] = ACTIONS(4558), + [sym__emphasis_open_underscore] = ACTIONS(4558), + [sym__emphasis_close_star] = ACTIONS(4558), + [sym__strikeout_open] = ACTIONS(4558), + [sym__latex_span_start] = ACTIONS(4558), + [sym__single_quote_open] = ACTIONS(4558), + [sym__double_quote_open] = ACTIONS(4558), + [sym__superscript_open] = ACTIONS(4558), + [sym__subscript_open] = ACTIONS(4558), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4558), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4558), + [sym__cite_author_in_text] = ACTIONS(4558), + [sym__cite_suppress_author] = ACTIONS(4558), + [sym__shortcode_open_escaped] = ACTIONS(4558), + [sym__shortcode_open] = ACTIONS(4558), + [sym__unclosed_span] = ACTIONS(4558), + }, + [STATE(544)] = { + [sym__qmd_attribute] = STATE(1374), + [sym_raw_attribute] = STATE(1374), + [sym_commonmark_attribute] = STATE(1374), + [sym_language_attribute] = STATE(1374), + [sym__backslash_escape] = ACTIONS(4562), + [sym_entity_reference] = ACTIONS(4562), + [sym_numeric_character_reference] = ACTIONS(4562), + [anon_sym_LT] = ACTIONS(4564), + [anon_sym_GT] = ACTIONS(4562), + [anon_sym_BANG] = ACTIONS(4562), + [anon_sym_DQUOTE] = ACTIONS(4562), + [anon_sym_POUND] = ACTIONS(4562), + [anon_sym_DOLLAR] = ACTIONS(4562), + [anon_sym_PERCENT] = ACTIONS(4562), + [anon_sym_AMP] = ACTIONS(4564), + [anon_sym_SQUOTE] = ACTIONS(4562), + [anon_sym_STAR] = ACTIONS(4562), + [anon_sym_PLUS] = ACTIONS(4562), + [anon_sym_COMMA] = ACTIONS(4562), + [anon_sym_DASH] = ACTIONS(4564), + [anon_sym_DOT] = ACTIONS(4564), + [anon_sym_SLASH] = ACTIONS(4562), + [anon_sym_COLON] = ACTIONS(4562), + [anon_sym_SEMI] = ACTIONS(4562), + [anon_sym_EQ] = ACTIONS(4562), + [anon_sym_QMARK] = ACTIONS(4562), + [anon_sym_LBRACK] = ACTIONS(4564), + [anon_sym_BSLASH] = ACTIONS(4564), + [anon_sym_CARET] = ACTIONS(4564), + [anon_sym__] = ACTIONS(4562), + [anon_sym_BQUOTE] = ACTIONS(4562), + [anon_sym_LBRACE] = ACTIONS(4634), + [anon_sym_PIPE] = ACTIONS(4562), + [anon_sym_TILDE] = ACTIONS(4562), + [anon_sym_LPAREN] = ACTIONS(4562), + [anon_sym_RPAREN] = ACTIONS(4562), + [sym__newline_token] = ACTIONS(4562), + [aux_sym_insert_token1] = ACTIONS(4562), + [aux_sym_delete_token1] = ACTIONS(4562), + [aux_sym_highlight_token1] = ACTIONS(4562), + [aux_sym_edit_comment_token1] = ACTIONS(4562), + [anon_sym_CARET_LBRACK] = ACTIONS(4562), + [anon_sym_LBRACK_CARET] = ACTIONS(4562), + [sym_uri_autolink] = ACTIONS(4562), + [sym_email_autolink] = ACTIONS(4562), + [sym__whitespace_ge_2] = ACTIONS(4562), + [aux_sym__whitespace_token1] = ACTIONS(4564), + [sym__word_no_digit] = ACTIONS(4562), + [sym__digits] = ACTIONS(4562), + [anon_sym_DASH_DASH] = ACTIONS(4564), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4562), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4562), + [sym__code_span_start] = ACTIONS(4562), + [sym__emphasis_open_star] = ACTIONS(4562), + [sym__emphasis_open_underscore] = ACTIONS(4562), + [sym__emphasis_close_star] = ACTIONS(4562), + [sym__strikeout_open] = ACTIONS(4562), + [sym__latex_span_start] = ACTIONS(4562), + [sym__single_quote_open] = ACTIONS(4562), + [sym__double_quote_open] = ACTIONS(4562), + [sym__superscript_open] = ACTIONS(4562), + [sym__subscript_open] = ACTIONS(4562), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4562), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4562), + [sym__cite_author_in_text] = ACTIONS(4562), + [sym__cite_suppress_author] = ACTIONS(4562), + [sym__shortcode_open_escaped] = ACTIONS(4562), + [sym__shortcode_open] = ACTIONS(4562), + [sym__unclosed_span] = ACTIONS(4562), + }, + [STATE(545)] = { + [sym__qmd_attribute] = STATE(1418), + [sym_raw_attribute] = STATE(1418), + [sym_commonmark_attribute] = STATE(1418), + [sym_language_attribute] = STATE(1418), + [sym__backslash_escape] = ACTIONS(4576), + [sym_entity_reference] = ACTIONS(4576), + [sym_numeric_character_reference] = ACTIONS(4576), + [anon_sym_LT] = ACTIONS(4578), + [anon_sym_GT] = ACTIONS(4576), + [anon_sym_BANG] = ACTIONS(4576), + [anon_sym_DQUOTE] = ACTIONS(4576), + [anon_sym_POUND] = ACTIONS(4576), + [anon_sym_DOLLAR] = ACTIONS(4576), + [anon_sym_PERCENT] = ACTIONS(4576), + [anon_sym_AMP] = ACTIONS(4578), + [anon_sym_SQUOTE] = ACTIONS(4576), + [anon_sym_STAR] = ACTIONS(4576), + [anon_sym_PLUS] = ACTIONS(4576), + [anon_sym_COMMA] = ACTIONS(4576), + [anon_sym_DASH] = ACTIONS(4578), + [anon_sym_DOT] = ACTIONS(4578), + [anon_sym_SLASH] = ACTIONS(4576), + [anon_sym_COLON] = ACTIONS(4576), + [anon_sym_SEMI] = ACTIONS(4576), + [anon_sym_EQ] = ACTIONS(4576), + [anon_sym_QMARK] = ACTIONS(4576), + [anon_sym_LBRACK] = ACTIONS(4578), + [anon_sym_BSLASH] = ACTIONS(4578), + [anon_sym_CARET] = ACTIONS(4578), + [anon_sym__] = ACTIONS(4576), + [anon_sym_BQUOTE] = ACTIONS(4576), + [anon_sym_LBRACE] = ACTIONS(4570), + [anon_sym_PIPE] = ACTIONS(4576), + [anon_sym_TILDE] = ACTIONS(4576), + [anon_sym_LPAREN] = ACTIONS(4640), + [anon_sym_RPAREN] = ACTIONS(4576), + [sym__newline_token] = ACTIONS(4576), + [aux_sym_insert_token1] = ACTIONS(4576), + [aux_sym_delete_token1] = ACTIONS(4576), + [aux_sym_highlight_token1] = ACTIONS(4576), + [aux_sym_edit_comment_token1] = ACTIONS(4576), + [anon_sym_CARET_LBRACK] = ACTIONS(4576), + [anon_sym_LBRACK_CARET] = ACTIONS(4576), + [sym_uri_autolink] = ACTIONS(4576), + [sym_email_autolink] = ACTIONS(4576), + [sym__whitespace_ge_2] = ACTIONS(4576), + [aux_sym__whitespace_token1] = ACTIONS(4578), + [sym__word_no_digit] = ACTIONS(4576), + [sym__digits] = ACTIONS(4576), + [anon_sym_DASH_DASH] = ACTIONS(4578), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4576), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4576), + [sym__code_span_start] = ACTIONS(4576), + [sym__emphasis_open_star] = ACTIONS(4576), + [sym__emphasis_open_underscore] = ACTIONS(4576), + [sym__emphasis_close_underscore] = ACTIONS(4576), + [sym__strikeout_open] = ACTIONS(4576), + [sym__latex_span_start] = ACTIONS(4576), + [sym__single_quote_open] = ACTIONS(4576), + [sym__double_quote_open] = ACTIONS(4576), + [sym__superscript_open] = ACTIONS(4576), + [sym__subscript_open] = ACTIONS(4576), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4576), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4576), + [sym__cite_author_in_text] = ACTIONS(4576), + [sym__cite_suppress_author] = ACTIONS(4576), + [sym__shortcode_open_escaped] = ACTIONS(4576), + [sym__shortcode_open] = ACTIONS(4576), + [sym__unclosed_span] = ACTIONS(4576), + }, + [STATE(546)] = { + [sym__qmd_attribute] = STATE(1419), + [sym_raw_attribute] = STATE(1419), + [sym_commonmark_attribute] = STATE(1419), + [sym_language_attribute] = STATE(1419), + [sym__backslash_escape] = ACTIONS(4584), + [sym_entity_reference] = ACTIONS(4584), + [sym_numeric_character_reference] = ACTIONS(4584), + [anon_sym_LT] = ACTIONS(4586), + [anon_sym_GT] = ACTIONS(4584), + [anon_sym_BANG] = ACTIONS(4584), + [anon_sym_DQUOTE] = ACTIONS(4584), + [anon_sym_POUND] = ACTIONS(4584), + [anon_sym_DOLLAR] = ACTIONS(4584), + [anon_sym_PERCENT] = ACTIONS(4584), + [anon_sym_AMP] = ACTIONS(4586), + [anon_sym_SQUOTE] = ACTIONS(4584), + [anon_sym_STAR] = ACTIONS(4584), + [anon_sym_PLUS] = ACTIONS(4584), + [anon_sym_COMMA] = ACTIONS(4584), + [anon_sym_DASH] = ACTIONS(4586), + [anon_sym_DOT] = ACTIONS(4586), + [anon_sym_SLASH] = ACTIONS(4584), + [anon_sym_COLON] = ACTIONS(4584), + [anon_sym_SEMI] = ACTIONS(4584), + [anon_sym_EQ] = ACTIONS(4584), + [anon_sym_QMARK] = ACTIONS(4584), + [anon_sym_LBRACK] = ACTIONS(4586), + [anon_sym_BSLASH] = ACTIONS(4586), + [anon_sym_CARET] = ACTIONS(4586), + [anon_sym__] = ACTIONS(4584), + [anon_sym_BQUOTE] = ACTIONS(4584), + [anon_sym_LBRACE] = ACTIONS(4570), + [anon_sym_PIPE] = ACTIONS(4584), + [anon_sym_TILDE] = ACTIONS(4584), + [anon_sym_LPAREN] = ACTIONS(4584), + [anon_sym_RPAREN] = ACTIONS(4584), + [sym__newline_token] = ACTIONS(4584), + [aux_sym_insert_token1] = ACTIONS(4584), + [aux_sym_delete_token1] = ACTIONS(4584), + [aux_sym_highlight_token1] = ACTIONS(4584), + [aux_sym_edit_comment_token1] = ACTIONS(4584), + [anon_sym_CARET_LBRACK] = ACTIONS(4584), + [anon_sym_LBRACK_CARET] = ACTIONS(4584), + [sym_uri_autolink] = ACTIONS(4584), + [sym_email_autolink] = ACTIONS(4584), + [sym__whitespace_ge_2] = ACTIONS(4584), + [aux_sym__whitespace_token1] = ACTIONS(4586), + [sym__word_no_digit] = ACTIONS(4584), + [sym__digits] = ACTIONS(4584), + [anon_sym_DASH_DASH] = ACTIONS(4586), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4584), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4584), + [sym__code_span_start] = ACTIONS(4584), + [sym__emphasis_open_star] = ACTIONS(4584), + [sym__emphasis_open_underscore] = ACTIONS(4584), + [sym__emphasis_close_underscore] = ACTIONS(4584), + [sym__strikeout_open] = ACTIONS(4584), + [sym__latex_span_start] = ACTIONS(4584), + [sym__single_quote_open] = ACTIONS(4584), + [sym__double_quote_open] = ACTIONS(4584), + [sym__superscript_open] = ACTIONS(4584), + [sym__subscript_open] = ACTIONS(4584), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4584), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4584), + [sym__cite_author_in_text] = ACTIONS(4584), + [sym__cite_suppress_author] = ACTIONS(4584), + [sym__shortcode_open_escaped] = ACTIONS(4584), + [sym__shortcode_open] = ACTIONS(4584), + [sym__unclosed_span] = ACTIONS(4584), + }, + [STATE(547)] = { + [sym__qmd_attribute] = STATE(1165), + [sym_raw_attribute] = STATE(1165), + [sym_commonmark_attribute] = STATE(1165), + [sym_language_attribute] = STATE(1165), + [sym__backslash_escape] = ACTIONS(4606), + [sym_entity_reference] = ACTIONS(4606), + [sym_numeric_character_reference] = ACTIONS(4606), + [anon_sym_LT] = ACTIONS(4608), + [anon_sym_GT] = ACTIONS(4606), + [anon_sym_BANG] = ACTIONS(4606), + [anon_sym_DQUOTE] = ACTIONS(4606), + [anon_sym_POUND] = ACTIONS(4606), + [anon_sym_DOLLAR] = ACTIONS(4606), + [anon_sym_PERCENT] = ACTIONS(4606), + [anon_sym_AMP] = ACTIONS(4608), + [anon_sym_SQUOTE] = ACTIONS(4606), + [anon_sym_STAR] = ACTIONS(4606), + [anon_sym_PLUS] = ACTIONS(4606), + [anon_sym_COMMA] = ACTIONS(4606), + [anon_sym_DASH] = ACTIONS(4608), + [anon_sym_DOT] = ACTIONS(4608), + [anon_sym_SLASH] = ACTIONS(4606), + [anon_sym_COLON] = ACTIONS(4606), + [anon_sym_SEMI] = ACTIONS(4606), + [anon_sym_EQ] = ACTIONS(4606), + [anon_sym_QMARK] = ACTIONS(4606), + [anon_sym_LBRACK] = ACTIONS(4608), + [anon_sym_BSLASH] = ACTIONS(4608), + [anon_sym_CARET] = ACTIONS(4608), + [anon_sym__] = ACTIONS(4606), + [anon_sym_BQUOTE] = ACTIONS(4606), + [anon_sym_LBRACE] = ACTIONS(4544), + [anon_sym_PIPE] = ACTIONS(4606), + [anon_sym_TILDE] = ACTIONS(4606), + [anon_sym_LPAREN] = ACTIONS(4606), + [anon_sym_RPAREN] = ACTIONS(4606), + [sym__newline_token] = ACTIONS(4606), + [aux_sym_insert_token1] = ACTIONS(4606), + [aux_sym_delete_token1] = ACTIONS(4606), + [aux_sym_highlight_token1] = ACTIONS(4606), + [aux_sym_edit_comment_token1] = ACTIONS(4606), + [anon_sym_CARET_LBRACK] = ACTIONS(4606), + [anon_sym_LBRACK_CARET] = ACTIONS(4606), + [sym_uri_autolink] = ACTIONS(4606), + [sym_email_autolink] = ACTIONS(4606), + [sym__whitespace_ge_2] = ACTIONS(4606), + [aux_sym__whitespace_token1] = ACTIONS(4608), + [sym__word_no_digit] = ACTIONS(4606), + [sym__digits] = ACTIONS(4606), + [anon_sym_DASH_DASH] = ACTIONS(4608), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4606), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4606), + [sym__code_span_start] = ACTIONS(4606), + [sym__emphasis_open_star] = ACTIONS(4606), + [sym__emphasis_open_underscore] = ACTIONS(4606), + [sym__strikeout_open] = ACTIONS(4606), + [sym__latex_span_start] = ACTIONS(4606), + [sym__single_quote_open] = ACTIONS(4606), + [sym__single_quote_close] = ACTIONS(4606), + [sym__double_quote_open] = ACTIONS(4606), + [sym__superscript_open] = ACTIONS(4606), + [sym__subscript_open] = ACTIONS(4606), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4606), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4606), + [sym__cite_author_in_text] = ACTIONS(4606), + [sym__cite_suppress_author] = ACTIONS(4606), + [sym__shortcode_open_escaped] = ACTIONS(4606), + [sym__shortcode_open] = ACTIONS(4606), + [sym__unclosed_span] = ACTIONS(4606), + }, + [STATE(548)] = { + [sym__qmd_attribute] = STATE(1421), + [sym_raw_attribute] = STATE(1421), + [sym_commonmark_attribute] = STATE(1421), + [sym_language_attribute] = STATE(1421), + [sym__backslash_escape] = ACTIONS(4592), + [sym_entity_reference] = ACTIONS(4592), + [sym_numeric_character_reference] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(4594), + [anon_sym_GT] = ACTIONS(4592), + [anon_sym_BANG] = ACTIONS(4592), + [anon_sym_DQUOTE] = ACTIONS(4592), + [anon_sym_POUND] = ACTIONS(4592), + [anon_sym_DOLLAR] = ACTIONS(4592), + [anon_sym_PERCENT] = ACTIONS(4592), + [anon_sym_AMP] = ACTIONS(4594), + [anon_sym_SQUOTE] = ACTIONS(4592), + [anon_sym_STAR] = ACTIONS(4592), + [anon_sym_PLUS] = ACTIONS(4592), + [anon_sym_COMMA] = ACTIONS(4592), + [anon_sym_DASH] = ACTIONS(4594), + [anon_sym_DOT] = ACTIONS(4594), + [anon_sym_SLASH] = ACTIONS(4592), + [anon_sym_COLON] = ACTIONS(4592), + [anon_sym_SEMI] = ACTIONS(4592), + [anon_sym_EQ] = ACTIONS(4592), + [anon_sym_QMARK] = ACTIONS(4592), + [anon_sym_LBRACK] = ACTIONS(4594), + [anon_sym_BSLASH] = ACTIONS(4594), + [anon_sym_CARET] = ACTIONS(4594), + [anon_sym__] = ACTIONS(4592), + [anon_sym_BQUOTE] = ACTIONS(4592), + [anon_sym_LBRACE] = ACTIONS(4570), + [anon_sym_PIPE] = ACTIONS(4592), + [anon_sym_TILDE] = ACTIONS(4592), + [anon_sym_LPAREN] = ACTIONS(4592), + [anon_sym_RPAREN] = ACTIONS(4592), + [sym__newline_token] = ACTIONS(4592), + [aux_sym_insert_token1] = ACTIONS(4592), + [aux_sym_delete_token1] = ACTIONS(4592), + [aux_sym_highlight_token1] = ACTIONS(4592), + [aux_sym_edit_comment_token1] = ACTIONS(4592), + [anon_sym_CARET_LBRACK] = ACTIONS(4592), + [anon_sym_LBRACK_CARET] = ACTIONS(4592), + [sym_uri_autolink] = ACTIONS(4592), + [sym_email_autolink] = ACTIONS(4592), + [sym__whitespace_ge_2] = ACTIONS(4592), + [aux_sym__whitespace_token1] = ACTIONS(4594), + [sym__word_no_digit] = ACTIONS(4592), + [sym__digits] = ACTIONS(4592), + [anon_sym_DASH_DASH] = ACTIONS(4594), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4592), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4592), + [sym__code_span_start] = ACTIONS(4592), + [sym__emphasis_open_star] = ACTIONS(4592), + [sym__emphasis_open_underscore] = ACTIONS(4592), + [sym__emphasis_close_underscore] = ACTIONS(4592), + [sym__strikeout_open] = ACTIONS(4592), + [sym__latex_span_start] = ACTIONS(4592), + [sym__single_quote_open] = ACTIONS(4592), + [sym__double_quote_open] = ACTIONS(4592), + [sym__superscript_open] = ACTIONS(4592), + [sym__subscript_open] = ACTIONS(4592), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4592), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4592), + [sym__cite_author_in_text] = ACTIONS(4592), + [sym__cite_suppress_author] = ACTIONS(4592), + [sym__shortcode_open_escaped] = ACTIONS(4592), + [sym__shortcode_open] = ACTIONS(4592), + [sym__unclosed_span] = ACTIONS(4592), + }, + [STATE(549)] = { + [sym__qmd_attribute] = STATE(881), + [sym_raw_attribute] = STATE(881), + [sym_commonmark_attribute] = STATE(881), + [sym_language_attribute] = STATE(881), + [sym__backslash_escape] = ACTIONS(4596), + [sym_entity_reference] = ACTIONS(4596), + [sym_numeric_character_reference] = ACTIONS(4596), + [anon_sym_LT] = ACTIONS(4598), + [anon_sym_GT] = ACTIONS(4596), + [anon_sym_BANG] = ACTIONS(4596), + [anon_sym_DQUOTE] = ACTIONS(4596), + [anon_sym_POUND] = ACTIONS(4596), + [anon_sym_DOLLAR] = ACTIONS(4596), + [anon_sym_PERCENT] = ACTIONS(4596), + [anon_sym_AMP] = ACTIONS(4598), + [anon_sym_SQUOTE] = ACTIONS(4596), + [anon_sym_STAR] = ACTIONS(4596), + [anon_sym_PLUS] = ACTIONS(4596), + [anon_sym_COMMA] = ACTIONS(4596), + [anon_sym_DASH] = ACTIONS(4598), + [anon_sym_DOT] = ACTIONS(4598), + [anon_sym_SLASH] = ACTIONS(4596), + [anon_sym_COLON] = ACTIONS(4596), + [anon_sym_SEMI] = ACTIONS(4596), + [anon_sym_EQ] = ACTIONS(4596), + [anon_sym_QMARK] = ACTIONS(4596), + [anon_sym_LBRACK] = ACTIONS(4598), + [anon_sym_BSLASH] = ACTIONS(4598), + [anon_sym_CARET] = ACTIONS(4598), + [anon_sym__] = ACTIONS(4596), + [anon_sym_BQUOTE] = ACTIONS(4596), + [anon_sym_LBRACE] = ACTIONS(4570), + [anon_sym_PIPE] = ACTIONS(4596), + [anon_sym_TILDE] = ACTIONS(4596), + [anon_sym_LPAREN] = ACTIONS(4596), + [anon_sym_RPAREN] = ACTIONS(4596), + [sym__newline_token] = ACTIONS(4596), + [aux_sym_insert_token1] = ACTIONS(4596), + [aux_sym_delete_token1] = ACTIONS(4596), + [aux_sym_highlight_token1] = ACTIONS(4596), + [aux_sym_edit_comment_token1] = ACTIONS(4596), + [anon_sym_CARET_LBRACK] = ACTIONS(4596), + [anon_sym_LBRACK_CARET] = ACTIONS(4596), + [sym_uri_autolink] = ACTIONS(4596), + [sym_email_autolink] = ACTIONS(4596), + [sym__whitespace_ge_2] = ACTIONS(4596), + [aux_sym__whitespace_token1] = ACTIONS(4598), + [sym__word_no_digit] = ACTIONS(4596), + [sym__digits] = ACTIONS(4596), + [anon_sym_DASH_DASH] = ACTIONS(4598), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4596), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4596), + [sym__code_span_start] = ACTIONS(4596), + [sym__emphasis_open_star] = ACTIONS(4596), + [sym__emphasis_open_underscore] = ACTIONS(4596), + [sym__emphasis_close_underscore] = ACTIONS(4596), + [sym__strikeout_open] = ACTIONS(4596), + [sym__latex_span_start] = ACTIONS(4596), + [sym__single_quote_open] = ACTIONS(4596), + [sym__double_quote_open] = ACTIONS(4596), + [sym__superscript_open] = ACTIONS(4596), + [sym__subscript_open] = ACTIONS(4596), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4596), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4596), + [sym__cite_author_in_text] = ACTIONS(4596), + [sym__cite_suppress_author] = ACTIONS(4596), + [sym__shortcode_open_escaped] = ACTIONS(4596), + [sym__shortcode_open] = ACTIONS(4596), + [sym__unclosed_span] = ACTIONS(4596), + }, + [STATE(550)] = { + [sym__qmd_attribute] = STATE(1171), + [sym_raw_attribute] = STATE(1171), + [sym_commonmark_attribute] = STATE(1171), + [sym_language_attribute] = STATE(1171), + [sym__backslash_escape] = ACTIONS(4610), + [sym_entity_reference] = ACTIONS(4610), + [sym_numeric_character_reference] = ACTIONS(4610), + [anon_sym_LT] = ACTIONS(4612), + [anon_sym_GT] = ACTIONS(4610), + [anon_sym_BANG] = ACTIONS(4610), + [anon_sym_DQUOTE] = ACTIONS(4610), + [anon_sym_POUND] = ACTIONS(4610), + [anon_sym_DOLLAR] = ACTIONS(4610), + [anon_sym_PERCENT] = ACTIONS(4610), + [anon_sym_AMP] = ACTIONS(4612), + [anon_sym_SQUOTE] = ACTIONS(4610), + [anon_sym_STAR] = ACTIONS(4610), + [anon_sym_PLUS] = ACTIONS(4610), + [anon_sym_COMMA] = ACTIONS(4610), + [anon_sym_DASH] = ACTIONS(4612), + [anon_sym_DOT] = ACTIONS(4612), + [anon_sym_SLASH] = ACTIONS(4610), + [anon_sym_COLON] = ACTIONS(4610), + [anon_sym_SEMI] = ACTIONS(4610), + [anon_sym_EQ] = ACTIONS(4610), + [anon_sym_QMARK] = ACTIONS(4610), + [anon_sym_LBRACK] = ACTIONS(4612), + [anon_sym_BSLASH] = ACTIONS(4612), + [anon_sym_CARET] = ACTIONS(4612), + [anon_sym__] = ACTIONS(4610), + [anon_sym_BQUOTE] = ACTIONS(4610), + [anon_sym_LBRACE] = ACTIONS(4544), + [anon_sym_PIPE] = ACTIONS(4610), + [anon_sym_TILDE] = ACTIONS(4610), + [anon_sym_LPAREN] = ACTIONS(4610), + [anon_sym_RPAREN] = ACTIONS(4610), + [sym__newline_token] = ACTIONS(4610), + [aux_sym_insert_token1] = ACTIONS(4610), + [aux_sym_delete_token1] = ACTIONS(4610), + [aux_sym_highlight_token1] = ACTIONS(4610), + [aux_sym_edit_comment_token1] = ACTIONS(4610), + [anon_sym_CARET_LBRACK] = ACTIONS(4610), + [anon_sym_LBRACK_CARET] = ACTIONS(4610), + [sym_uri_autolink] = ACTIONS(4610), + [sym_email_autolink] = ACTIONS(4610), + [sym__whitespace_ge_2] = ACTIONS(4610), + [aux_sym__whitespace_token1] = ACTIONS(4612), + [sym__word_no_digit] = ACTIONS(4610), + [sym__digits] = ACTIONS(4610), + [anon_sym_DASH_DASH] = ACTIONS(4612), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4610), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4610), + [sym__code_span_start] = ACTIONS(4610), + [sym__emphasis_open_star] = ACTIONS(4610), + [sym__emphasis_open_underscore] = ACTIONS(4610), + [sym__strikeout_open] = ACTIONS(4610), + [sym__latex_span_start] = ACTIONS(4610), + [sym__single_quote_open] = ACTIONS(4610), + [sym__single_quote_close] = ACTIONS(4610), + [sym__double_quote_open] = ACTIONS(4610), + [sym__superscript_open] = ACTIONS(4610), + [sym__subscript_open] = ACTIONS(4610), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4610), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4610), + [sym__cite_author_in_text] = ACTIONS(4610), + [sym__cite_suppress_author] = ACTIONS(4610), + [sym__shortcode_open_escaped] = ACTIONS(4610), + [sym__shortcode_open] = ACTIONS(4610), + [sym__unclosed_span] = ACTIONS(4610), + }, + [STATE(551)] = { + [sym__qmd_attribute] = STATE(1180), + [sym_raw_attribute] = STATE(1180), + [sym_commonmark_attribute] = STATE(1180), + [sym_language_attribute] = STATE(1180), + [sym__backslash_escape] = ACTIONS(4566), + [sym_entity_reference] = ACTIONS(4566), + [sym_numeric_character_reference] = ACTIONS(4566), + [anon_sym_LT] = ACTIONS(4568), + [anon_sym_GT] = ACTIONS(4566), + [anon_sym_BANG] = ACTIONS(4566), + [anon_sym_DQUOTE] = ACTIONS(4566), + [anon_sym_POUND] = ACTIONS(4566), + [anon_sym_DOLLAR] = ACTIONS(4566), + [anon_sym_PERCENT] = ACTIONS(4566), + [anon_sym_AMP] = ACTIONS(4568), + [anon_sym_SQUOTE] = ACTIONS(4566), + [anon_sym_STAR] = ACTIONS(4566), + [anon_sym_PLUS] = ACTIONS(4566), + [anon_sym_COMMA] = ACTIONS(4566), + [anon_sym_DASH] = ACTIONS(4568), + [anon_sym_DOT] = ACTIONS(4568), + [anon_sym_SLASH] = ACTIONS(4566), + [anon_sym_COLON] = ACTIONS(4566), + [anon_sym_SEMI] = ACTIONS(4566), + [anon_sym_EQ] = ACTIONS(4566), + [anon_sym_QMARK] = ACTIONS(4566), + [anon_sym_LBRACK] = ACTIONS(4568), + [anon_sym_BSLASH] = ACTIONS(4568), + [anon_sym_CARET] = ACTIONS(4568), + [anon_sym__] = ACTIONS(4566), + [anon_sym_BQUOTE] = ACTIONS(4566), + [anon_sym_LBRACE] = ACTIONS(4544), + [anon_sym_PIPE] = ACTIONS(4566), + [anon_sym_TILDE] = ACTIONS(4566), + [anon_sym_LPAREN] = ACTIONS(4566), + [anon_sym_RPAREN] = ACTIONS(4566), + [sym__newline_token] = ACTIONS(4566), + [aux_sym_insert_token1] = ACTIONS(4566), + [aux_sym_delete_token1] = ACTIONS(4566), + [aux_sym_highlight_token1] = ACTIONS(4566), + [aux_sym_edit_comment_token1] = ACTIONS(4566), + [anon_sym_CARET_LBRACK] = ACTIONS(4566), + [anon_sym_LBRACK_CARET] = ACTIONS(4566), + [sym_uri_autolink] = ACTIONS(4566), + [sym_email_autolink] = ACTIONS(4566), + [sym__whitespace_ge_2] = ACTIONS(4566), + [aux_sym__whitespace_token1] = ACTIONS(4568), + [sym__word_no_digit] = ACTIONS(4566), + [sym__digits] = ACTIONS(4566), + [anon_sym_DASH_DASH] = ACTIONS(4568), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4566), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4566), + [sym__code_span_start] = ACTIONS(4566), + [sym__emphasis_open_star] = ACTIONS(4566), + [sym__emphasis_open_underscore] = ACTIONS(4566), + [sym__strikeout_open] = ACTIONS(4566), + [sym__latex_span_start] = ACTIONS(4566), + [sym__single_quote_open] = ACTIONS(4566), + [sym__single_quote_close] = ACTIONS(4566), + [sym__double_quote_open] = ACTIONS(4566), + [sym__superscript_open] = ACTIONS(4566), + [sym__subscript_open] = ACTIONS(4566), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4566), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4566), + [sym__cite_author_in_text] = ACTIONS(4566), + [sym__cite_suppress_author] = ACTIONS(4566), + [sym__shortcode_open_escaped] = ACTIONS(4566), + [sym__shortcode_open] = ACTIONS(4566), + [sym__unclosed_span] = ACTIONS(4566), + }, + [STATE(552)] = { + [sym__qmd_attribute] = STATE(1189), + [sym_raw_attribute] = STATE(1189), + [sym_commonmark_attribute] = STATE(1189), + [sym_language_attribute] = STATE(1189), + [sym__backslash_escape] = ACTIONS(4572), + [sym_entity_reference] = ACTIONS(4572), + [sym_numeric_character_reference] = ACTIONS(4572), + [anon_sym_LT] = ACTIONS(4574), + [anon_sym_GT] = ACTIONS(4572), + [anon_sym_BANG] = ACTIONS(4572), + [anon_sym_DQUOTE] = ACTIONS(4572), + [anon_sym_POUND] = ACTIONS(4572), + [anon_sym_DOLLAR] = ACTIONS(4572), + [anon_sym_PERCENT] = ACTIONS(4572), + [anon_sym_AMP] = ACTIONS(4574), + [anon_sym_SQUOTE] = ACTIONS(4572), + [anon_sym_STAR] = ACTIONS(4572), + [anon_sym_PLUS] = ACTIONS(4572), + [anon_sym_COMMA] = ACTIONS(4572), + [anon_sym_DASH] = ACTIONS(4574), + [anon_sym_DOT] = ACTIONS(4574), + [anon_sym_SLASH] = ACTIONS(4572), + [anon_sym_COLON] = ACTIONS(4572), + [anon_sym_SEMI] = ACTIONS(4572), + [anon_sym_EQ] = ACTIONS(4572), + [anon_sym_QMARK] = ACTIONS(4572), + [anon_sym_LBRACK] = ACTIONS(4574), + [anon_sym_BSLASH] = ACTIONS(4574), + [anon_sym_CARET] = ACTIONS(4574), + [anon_sym__] = ACTIONS(4572), + [anon_sym_BQUOTE] = ACTIONS(4572), + [anon_sym_LBRACE] = ACTIONS(4544), + [anon_sym_PIPE] = ACTIONS(4572), + [anon_sym_TILDE] = ACTIONS(4572), + [anon_sym_LPAREN] = ACTIONS(4572), + [anon_sym_RPAREN] = ACTIONS(4572), + [sym__newline_token] = ACTIONS(4572), + [aux_sym_insert_token1] = ACTIONS(4572), + [aux_sym_delete_token1] = ACTIONS(4572), + [aux_sym_highlight_token1] = ACTIONS(4572), + [aux_sym_edit_comment_token1] = ACTIONS(4572), + [anon_sym_CARET_LBRACK] = ACTIONS(4572), + [anon_sym_LBRACK_CARET] = ACTIONS(4572), + [sym_uri_autolink] = ACTIONS(4572), + [sym_email_autolink] = ACTIONS(4572), + [sym__whitespace_ge_2] = ACTIONS(4572), + [aux_sym__whitespace_token1] = ACTIONS(4574), + [sym__word_no_digit] = ACTIONS(4572), + [sym__digits] = ACTIONS(4572), + [anon_sym_DASH_DASH] = ACTIONS(4574), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4572), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4572), + [sym__code_span_start] = ACTIONS(4572), + [sym__emphasis_open_star] = ACTIONS(4572), + [sym__emphasis_open_underscore] = ACTIONS(4572), + [sym__strikeout_open] = ACTIONS(4572), + [sym__latex_span_start] = ACTIONS(4572), + [sym__single_quote_open] = ACTIONS(4572), + [sym__single_quote_close] = ACTIONS(4572), + [sym__double_quote_open] = ACTIONS(4572), + [sym__superscript_open] = ACTIONS(4572), + [sym__subscript_open] = ACTIONS(4572), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4572), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4572), + [sym__cite_author_in_text] = ACTIONS(4572), + [sym__cite_suppress_author] = ACTIONS(4572), + [sym__shortcode_open_escaped] = ACTIONS(4572), + [sym__shortcode_open] = ACTIONS(4572), + [sym__unclosed_span] = ACTIONS(4572), + }, + [STATE(553)] = { + [sym__qmd_attribute] = STATE(1198), + [sym_raw_attribute] = STATE(1198), + [sym_commonmark_attribute] = STATE(1198), + [sym_language_attribute] = STATE(1198), + [sym__backslash_escape] = ACTIONS(4588), + [sym_entity_reference] = ACTIONS(4588), + [sym_numeric_character_reference] = ACTIONS(4588), + [anon_sym_LT] = ACTIONS(4590), + [anon_sym_GT] = ACTIONS(4588), + [anon_sym_BANG] = ACTIONS(4588), + [anon_sym_DQUOTE] = ACTIONS(4588), + [anon_sym_POUND] = ACTIONS(4588), + [anon_sym_DOLLAR] = ACTIONS(4588), + [anon_sym_PERCENT] = ACTIONS(4588), + [anon_sym_AMP] = ACTIONS(4590), + [anon_sym_SQUOTE] = ACTIONS(4588), + [anon_sym_STAR] = ACTIONS(4588), + [anon_sym_PLUS] = ACTIONS(4588), + [anon_sym_COMMA] = ACTIONS(4588), + [anon_sym_DASH] = ACTIONS(4590), + [anon_sym_DOT] = ACTIONS(4590), + [anon_sym_SLASH] = ACTIONS(4588), + [anon_sym_COLON] = ACTIONS(4588), + [anon_sym_SEMI] = ACTIONS(4588), + [anon_sym_EQ] = ACTIONS(4588), + [anon_sym_QMARK] = ACTIONS(4588), + [anon_sym_LBRACK] = ACTIONS(4590), + [anon_sym_BSLASH] = ACTIONS(4590), + [anon_sym_CARET] = ACTIONS(4590), + [anon_sym__] = ACTIONS(4588), + [anon_sym_BQUOTE] = ACTIONS(4588), + [anon_sym_LBRACE] = ACTIONS(4544), + [anon_sym_PIPE] = ACTIONS(4588), + [anon_sym_TILDE] = ACTIONS(4588), + [anon_sym_LPAREN] = ACTIONS(4588), + [anon_sym_RPAREN] = ACTIONS(4588), + [sym__newline_token] = ACTIONS(4588), + [aux_sym_insert_token1] = ACTIONS(4588), + [aux_sym_delete_token1] = ACTIONS(4588), + [aux_sym_highlight_token1] = ACTIONS(4588), + [aux_sym_edit_comment_token1] = ACTIONS(4588), + [anon_sym_CARET_LBRACK] = ACTIONS(4588), + [anon_sym_LBRACK_CARET] = ACTIONS(4588), + [sym_uri_autolink] = ACTIONS(4588), + [sym_email_autolink] = ACTIONS(4588), + [sym__whitespace_ge_2] = ACTIONS(4588), + [aux_sym__whitespace_token1] = ACTIONS(4590), + [sym__word_no_digit] = ACTIONS(4588), + [sym__digits] = ACTIONS(4588), + [anon_sym_DASH_DASH] = ACTIONS(4590), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4588), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4588), + [sym__code_span_start] = ACTIONS(4588), + [sym__emphasis_open_star] = ACTIONS(4588), + [sym__emphasis_open_underscore] = ACTIONS(4588), + [sym__strikeout_open] = ACTIONS(4588), + [sym__latex_span_start] = ACTIONS(4588), + [sym__single_quote_open] = ACTIONS(4588), + [sym__single_quote_close] = ACTIONS(4588), + [sym__double_quote_open] = ACTIONS(4588), + [sym__superscript_open] = ACTIONS(4588), + [sym__subscript_open] = ACTIONS(4588), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4588), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4588), + [sym__cite_author_in_text] = ACTIONS(4588), + [sym__cite_suppress_author] = ACTIONS(4588), + [sym__shortcode_open_escaped] = ACTIONS(4588), + [sym__shortcode_open] = ACTIONS(4588), + [sym__unclosed_span] = ACTIONS(4588), + }, + [STATE(554)] = { + [sym__qmd_attribute] = STATE(1103), + [sym_raw_attribute] = STATE(1103), + [sym_commonmark_attribute] = STATE(1103), + [sym_language_attribute] = STATE(1103), + [sym__backslash_escape] = ACTIONS(4540), + [sym_entity_reference] = ACTIONS(4540), + [sym_numeric_character_reference] = ACTIONS(4540), + [anon_sym_LT] = ACTIONS(4542), + [anon_sym_GT] = ACTIONS(4540), + [anon_sym_BANG] = ACTIONS(4540), + [anon_sym_DQUOTE] = ACTIONS(4540), + [anon_sym_POUND] = ACTIONS(4540), + [anon_sym_DOLLAR] = ACTIONS(4540), + [anon_sym_PERCENT] = ACTIONS(4540), + [anon_sym_AMP] = ACTIONS(4542), + [anon_sym_SQUOTE] = ACTIONS(4540), + [anon_sym_STAR] = ACTIONS(4540), + [anon_sym_PLUS] = ACTIONS(4540), + [anon_sym_COMMA] = ACTIONS(4540), + [anon_sym_DASH] = ACTIONS(4542), + [anon_sym_DOT] = ACTIONS(4542), + [anon_sym_SLASH] = ACTIONS(4540), + [anon_sym_COLON] = ACTIONS(4540), + [anon_sym_SEMI] = ACTIONS(4540), + [anon_sym_EQ] = ACTIONS(4540), + [anon_sym_QMARK] = ACTIONS(4540), + [anon_sym_LBRACK] = ACTIONS(4542), + [anon_sym_BSLASH] = ACTIONS(4542), + [anon_sym_CARET] = ACTIONS(4542), + [anon_sym__] = ACTIONS(4540), + [anon_sym_BQUOTE] = ACTIONS(4540), + [anon_sym_LBRACE] = ACTIONS(4538), + [anon_sym_PIPE] = ACTIONS(4540), + [anon_sym_TILDE] = ACTIONS(4540), + [anon_sym_LPAREN] = ACTIONS(4540), + [anon_sym_RPAREN] = ACTIONS(4540), + [sym__newline_token] = ACTIONS(4540), + [aux_sym_insert_token1] = ACTIONS(4540), + [aux_sym_insert_token2] = ACTIONS(4540), + [aux_sym_delete_token1] = ACTIONS(4540), + [aux_sym_highlight_token1] = ACTIONS(4540), + [aux_sym_edit_comment_token1] = ACTIONS(4540), + [anon_sym_CARET_LBRACK] = ACTIONS(4540), + [anon_sym_LBRACK_CARET] = ACTIONS(4540), + [sym_uri_autolink] = ACTIONS(4540), + [sym_email_autolink] = ACTIONS(4540), + [sym__whitespace_ge_2] = ACTIONS(4542), + [aux_sym__whitespace_token1] = ACTIONS(4542), + [sym__word_no_digit] = ACTIONS(4540), + [sym__digits] = ACTIONS(4540), + [anon_sym_DASH_DASH] = ACTIONS(4542), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4540), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4540), + [sym__code_span_start] = ACTIONS(4540), + [sym__emphasis_open_star] = ACTIONS(4540), + [sym__emphasis_open_underscore] = ACTIONS(4540), + [sym__strikeout_open] = ACTIONS(4540), + [sym__latex_span_start] = ACTIONS(4540), + [sym__single_quote_open] = ACTIONS(4540), + [sym__double_quote_open] = ACTIONS(4540), + [sym__superscript_open] = ACTIONS(4540), + [sym__subscript_open] = ACTIONS(4540), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4540), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4540), + [sym__cite_author_in_text] = ACTIONS(4540), + [sym__cite_suppress_author] = ACTIONS(4540), + [sym__shortcode_open_escaped] = ACTIONS(4540), + [sym__shortcode_open] = ACTIONS(4540), + [sym__unclosed_span] = ACTIONS(4540), + }, + [STATE(555)] = { + [sym__soft_line_break] = STATE(701), + [ts_builtin_sym_end] = ACTIONS(4642), + [sym__backslash_escape] = ACTIONS(4642), + [sym_entity_reference] = ACTIONS(4642), + [sym_numeric_character_reference] = ACTIONS(4642), + [anon_sym_LT] = ACTIONS(4644), + [anon_sym_GT] = ACTIONS(4642), + [anon_sym_BANG] = ACTIONS(4642), + [anon_sym_DQUOTE] = ACTIONS(4642), + [anon_sym_POUND] = ACTIONS(4642), + [anon_sym_DOLLAR] = ACTIONS(4642), + [anon_sym_PERCENT] = ACTIONS(4642), + [anon_sym_AMP] = ACTIONS(4644), + [anon_sym_SQUOTE] = ACTIONS(4642), + [anon_sym_STAR] = ACTIONS(4642), + [anon_sym_PLUS] = ACTIONS(4642), + [anon_sym_COMMA] = ACTIONS(4642), + [anon_sym_DASH] = ACTIONS(4644), + [anon_sym_DOT] = ACTIONS(4644), + [anon_sym_SLASH] = ACTIONS(4642), + [anon_sym_COLON] = ACTIONS(4642), + [anon_sym_SEMI] = ACTIONS(4642), + [anon_sym_EQ] = ACTIONS(4642), + [anon_sym_QMARK] = ACTIONS(4642), + [anon_sym_LBRACK] = ACTIONS(4644), + [anon_sym_BSLASH] = ACTIONS(4644), + [anon_sym_CARET] = ACTIONS(4644), + [anon_sym__] = ACTIONS(4642), + [anon_sym_BQUOTE] = ACTIONS(4642), + [anon_sym_LBRACE] = ACTIONS(4642), + [anon_sym_PIPE] = ACTIONS(4642), + [anon_sym_TILDE] = ACTIONS(4642), + [anon_sym_LPAREN] = ACTIONS(4642), + [anon_sym_RPAREN] = ACTIONS(4642), + [sym__newline_token] = ACTIONS(19), + [aux_sym_insert_token1] = ACTIONS(4642), + [aux_sym_delete_token1] = ACTIONS(4642), + [aux_sym_highlight_token1] = ACTIONS(4642), + [aux_sym_edit_comment_token1] = ACTIONS(4642), + [anon_sym_CARET_LBRACK] = ACTIONS(4642), + [anon_sym_LBRACK_CARET] = ACTIONS(4642), + [sym_uri_autolink] = ACTIONS(4642), + [sym_email_autolink] = ACTIONS(4642), + [sym__whitespace_ge_2] = ACTIONS(4642), + [aux_sym__whitespace_token1] = ACTIONS(4644), + [sym__word_no_digit] = ACTIONS(4642), + [sym__digits] = ACTIONS(4642), + [anon_sym_DASH_DASH] = ACTIONS(4644), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4642), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4642), + [sym__code_span_start] = ACTIONS(4642), + [sym__emphasis_open_star] = ACTIONS(4642), + [sym__emphasis_open_underscore] = ACTIONS(4642), + [sym__last_token_whitespace] = ACTIONS(4646), + [sym__strikeout_open] = ACTIONS(4642), + [sym__latex_span_start] = ACTIONS(4642), + [sym__single_quote_open] = ACTIONS(4642), + [sym__double_quote_open] = ACTIONS(4642), + [sym__superscript_open] = ACTIONS(4642), + [sym__subscript_open] = ACTIONS(4642), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4642), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4642), + [sym__cite_author_in_text] = ACTIONS(4642), + [sym__cite_suppress_author] = ACTIONS(4642), + [sym__shortcode_open_escaped] = ACTIONS(4642), + [sym__shortcode_open] = ACTIONS(4642), + [sym__unclosed_span] = ACTIONS(4642), + }, + [STATE(556)] = { + [sym__soft_line_break] = STATE(833), + [sym__backslash_escape] = ACTIONS(4648), + [sym_entity_reference] = ACTIONS(4648), + [sym_numeric_character_reference] = ACTIONS(4648), + [anon_sym_LT] = ACTIONS(4650), + [anon_sym_GT] = ACTIONS(4648), + [anon_sym_BANG] = ACTIONS(4648), + [anon_sym_DQUOTE] = ACTIONS(4648), + [anon_sym_POUND] = ACTIONS(4648), + [anon_sym_DOLLAR] = ACTIONS(4648), + [anon_sym_PERCENT] = ACTIONS(4648), + [anon_sym_AMP] = ACTIONS(4650), + [anon_sym_SQUOTE] = ACTIONS(4648), + [anon_sym_STAR] = ACTIONS(4648), + [anon_sym_PLUS] = ACTIONS(4648), + [anon_sym_COMMA] = ACTIONS(4648), + [anon_sym_DASH] = ACTIONS(4650), + [anon_sym_DOT] = ACTIONS(4650), + [anon_sym_SLASH] = ACTIONS(4648), + [anon_sym_COLON] = ACTIONS(4648), + [anon_sym_SEMI] = ACTIONS(4648), + [anon_sym_EQ] = ACTIONS(4648), + [anon_sym_QMARK] = ACTIONS(4648), + [anon_sym_LBRACK] = ACTIONS(4650), + [anon_sym_BSLASH] = ACTIONS(4650), + [anon_sym_CARET] = ACTIONS(4650), + [anon_sym__] = ACTIONS(4648), + [anon_sym_BQUOTE] = ACTIONS(4648), + [anon_sym_LBRACE] = ACTIONS(4648), + [anon_sym_PIPE] = ACTIONS(4648), + [anon_sym_TILDE] = ACTIONS(4648), + [anon_sym_LPAREN] = ACTIONS(4648), + [anon_sym_RPAREN] = ACTIONS(4648), + [sym__newline_token] = ACTIONS(1429), + [aux_sym_insert_token1] = ACTIONS(4648), + [aux_sym_delete_token1] = ACTIONS(4648), + [aux_sym_highlight_token1] = ACTIONS(4648), + [aux_sym_edit_comment_token1] = ACTIONS(4648), + [anon_sym_CARET_LBRACK] = ACTIONS(4648), + [anon_sym_LBRACK_CARET] = ACTIONS(4648), + [sym_uri_autolink] = ACTIONS(4648), + [sym_email_autolink] = ACTIONS(4648), + [sym__whitespace_ge_2] = ACTIONS(4648), + [aux_sym__whitespace_token1] = ACTIONS(4650), + [sym__word_no_digit] = ACTIONS(4648), + [sym__digits] = ACTIONS(4648), + [anon_sym_DASH_DASH] = ACTIONS(4650), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4648), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4648), + [sym__code_span_start] = ACTIONS(4648), + [sym__emphasis_open_star] = ACTIONS(4648), + [sym__emphasis_open_underscore] = ACTIONS(4648), + [sym__last_token_punctuation] = ACTIONS(4652), + [sym__strikeout_open] = ACTIONS(4648), + [sym__latex_span_start] = ACTIONS(4648), + [sym__single_quote_open] = ACTIONS(4648), + [sym__double_quote_open] = ACTIONS(4648), + [sym__superscript_open] = ACTIONS(4648), + [sym__subscript_open] = ACTIONS(4648), + [sym__subscript_close] = ACTIONS(4648), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4648), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4648), + [sym__cite_author_in_text] = ACTIONS(4648), + [sym__cite_suppress_author] = ACTIONS(4648), + [sym__shortcode_open_escaped] = ACTIONS(4648), + [sym__shortcode_open] = ACTIONS(4648), + [sym__unclosed_span] = ACTIONS(4648), + }, + [STATE(557)] = { + [sym__soft_line_break] = STATE(833), + [sym__backslash_escape] = ACTIONS(4642), + [sym_entity_reference] = ACTIONS(4642), + [sym_numeric_character_reference] = ACTIONS(4642), + [anon_sym_LT] = ACTIONS(4644), + [anon_sym_GT] = ACTIONS(4642), + [anon_sym_BANG] = ACTIONS(4642), + [anon_sym_DQUOTE] = ACTIONS(4642), + [anon_sym_POUND] = ACTIONS(4642), + [anon_sym_DOLLAR] = ACTIONS(4642), + [anon_sym_PERCENT] = ACTIONS(4642), + [anon_sym_AMP] = ACTIONS(4644), + [anon_sym_SQUOTE] = ACTIONS(4642), + [anon_sym_STAR] = ACTIONS(4642), + [anon_sym_PLUS] = ACTIONS(4642), + [anon_sym_COMMA] = ACTIONS(4642), + [anon_sym_DASH] = ACTIONS(4644), + [anon_sym_DOT] = ACTIONS(4644), + [anon_sym_SLASH] = ACTIONS(4642), + [anon_sym_COLON] = ACTIONS(4642), + [anon_sym_SEMI] = ACTIONS(4642), + [anon_sym_EQ] = ACTIONS(4642), + [anon_sym_QMARK] = ACTIONS(4642), + [anon_sym_LBRACK] = ACTIONS(4644), + [anon_sym_BSLASH] = ACTIONS(4644), + [anon_sym_CARET] = ACTIONS(4644), + [anon_sym__] = ACTIONS(4642), + [anon_sym_BQUOTE] = ACTIONS(4642), + [anon_sym_LBRACE] = ACTIONS(4642), + [anon_sym_PIPE] = ACTIONS(4642), + [anon_sym_TILDE] = ACTIONS(4642), + [anon_sym_LPAREN] = ACTIONS(4642), + [anon_sym_RPAREN] = ACTIONS(4642), + [sym__newline_token] = ACTIONS(1429), + [aux_sym_insert_token1] = ACTIONS(4642), + [aux_sym_delete_token1] = ACTIONS(4642), + [aux_sym_highlight_token1] = ACTIONS(4642), + [aux_sym_edit_comment_token1] = ACTIONS(4642), + [anon_sym_CARET_LBRACK] = ACTIONS(4642), + [anon_sym_LBRACK_CARET] = ACTIONS(4642), + [sym_uri_autolink] = ACTIONS(4642), + [sym_email_autolink] = ACTIONS(4642), + [sym__whitespace_ge_2] = ACTIONS(4642), + [aux_sym__whitespace_token1] = ACTIONS(4644), + [sym__word_no_digit] = ACTIONS(4642), + [sym__digits] = ACTIONS(4642), + [anon_sym_DASH_DASH] = ACTIONS(4644), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4642), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4642), + [sym__code_span_start] = ACTIONS(4642), + [sym__emphasis_open_star] = ACTIONS(4642), + [sym__emphasis_open_underscore] = ACTIONS(4642), + [sym__last_token_whitespace] = ACTIONS(4654), + [sym__strikeout_open] = ACTIONS(4642), + [sym__latex_span_start] = ACTIONS(4642), + [sym__single_quote_open] = ACTIONS(4642), + [sym__double_quote_open] = ACTIONS(4642), + [sym__superscript_open] = ACTIONS(4642), + [sym__subscript_open] = ACTIONS(4642), + [sym__subscript_close] = ACTIONS(4642), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4642), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4642), + [sym__cite_author_in_text] = ACTIONS(4642), + [sym__cite_suppress_author] = ACTIONS(4642), + [sym__shortcode_open_escaped] = ACTIONS(4642), + [sym__shortcode_open] = ACTIONS(4642), + [sym__unclosed_span] = ACTIONS(4642), + }, + [STATE(558)] = { + [sym__soft_line_break] = STATE(1324), + [sym__backslash_escape] = ACTIONS(4642), + [sym_entity_reference] = ACTIONS(4642), + [sym_numeric_character_reference] = ACTIONS(4642), + [anon_sym_LT] = ACTIONS(4644), + [anon_sym_GT] = ACTIONS(4642), + [anon_sym_BANG] = ACTIONS(4642), + [anon_sym_DQUOTE] = ACTIONS(4642), + [anon_sym_POUND] = ACTIONS(4642), + [anon_sym_DOLLAR] = ACTIONS(4642), + [anon_sym_PERCENT] = ACTIONS(4642), + [anon_sym_AMP] = ACTIONS(4644), + [anon_sym_SQUOTE] = ACTIONS(4642), + [anon_sym_STAR] = ACTIONS(4642), + [anon_sym_PLUS] = ACTIONS(4642), + [anon_sym_COMMA] = ACTIONS(4642), + [anon_sym_DASH] = ACTIONS(4644), + [anon_sym_DOT] = ACTIONS(4644), + [anon_sym_SLASH] = ACTIONS(4642), + [anon_sym_COLON] = ACTIONS(4642), + [anon_sym_SEMI] = ACTIONS(4642), + [anon_sym_EQ] = ACTIONS(4642), + [anon_sym_QMARK] = ACTIONS(4642), + [anon_sym_LBRACK] = ACTIONS(4644), + [anon_sym_BSLASH] = ACTIONS(4644), + [anon_sym_CARET] = ACTIONS(4644), + [anon_sym__] = ACTIONS(4642), + [anon_sym_BQUOTE] = ACTIONS(4642), + [anon_sym_LBRACE] = ACTIONS(4642), + [anon_sym_PIPE] = ACTIONS(4642), + [anon_sym_TILDE] = ACTIONS(4642), + [anon_sym_LPAREN] = ACTIONS(4642), + [anon_sym_RPAREN] = ACTIONS(4642), + [sym__newline_token] = ACTIONS(653), + [aux_sym_insert_token1] = ACTIONS(4642), + [aux_sym_delete_token1] = ACTIONS(4642), + [aux_sym_highlight_token1] = ACTIONS(4642), + [aux_sym_edit_comment_token1] = ACTIONS(4642), + [anon_sym_CARET_LBRACK] = ACTIONS(4642), + [anon_sym_LBRACK_CARET] = ACTIONS(4642), + [sym_uri_autolink] = ACTIONS(4642), + [sym_email_autolink] = ACTIONS(4642), + [sym__whitespace_ge_2] = ACTIONS(4642), + [aux_sym__whitespace_token1] = ACTIONS(4644), + [sym__word_no_digit] = ACTIONS(4642), + [sym__digits] = ACTIONS(4642), + [anon_sym_DASH_DASH] = ACTIONS(4644), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4642), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4642), + [sym__code_span_start] = ACTIONS(4642), + [sym__emphasis_open_star] = ACTIONS(4642), + [sym__emphasis_open_underscore] = ACTIONS(4642), + [sym__last_token_whitespace] = ACTIONS(4656), + [sym__strikeout_open] = ACTIONS(4642), + [sym__latex_span_start] = ACTIONS(4642), + [sym__single_quote_open] = ACTIONS(4642), + [sym__double_quote_open] = ACTIONS(4642), + [sym__double_quote_close] = ACTIONS(4642), + [sym__superscript_open] = ACTIONS(4642), + [sym__subscript_open] = ACTIONS(4642), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4642), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4642), + [sym__cite_author_in_text] = ACTIONS(4642), + [sym__cite_suppress_author] = ACTIONS(4642), + [sym__shortcode_open_escaped] = ACTIONS(4642), + [sym__shortcode_open] = ACTIONS(4642), + [sym__unclosed_span] = ACTIONS(4642), + }, + [STATE(559)] = { + [sym__soft_line_break] = STATE(1018), + [sym__backslash_escape] = ACTIONS(4648), + [sym_entity_reference] = ACTIONS(4648), + [sym_numeric_character_reference] = ACTIONS(4648), + [anon_sym_LT] = ACTIONS(4650), + [anon_sym_GT] = ACTIONS(4648), + [anon_sym_BANG] = ACTIONS(4648), + [anon_sym_DQUOTE] = ACTIONS(4648), + [anon_sym_POUND] = ACTIONS(4648), + [anon_sym_DOLLAR] = ACTIONS(4648), + [anon_sym_PERCENT] = ACTIONS(4648), + [anon_sym_AMP] = ACTIONS(4650), + [anon_sym_SQUOTE] = ACTIONS(4648), + [anon_sym_STAR] = ACTIONS(4648), + [anon_sym_PLUS] = ACTIONS(4648), + [anon_sym_COMMA] = ACTIONS(4648), + [anon_sym_DASH] = ACTIONS(4650), + [anon_sym_DOT] = ACTIONS(4650), + [anon_sym_SLASH] = ACTIONS(4648), + [anon_sym_COLON] = ACTIONS(4648), + [anon_sym_SEMI] = ACTIONS(4648), + [anon_sym_EQ] = ACTIONS(4648), + [anon_sym_QMARK] = ACTIONS(4648), + [anon_sym_LBRACK] = ACTIONS(4650), + [anon_sym_BSLASH] = ACTIONS(4650), + [anon_sym_CARET] = ACTIONS(4650), + [anon_sym__] = ACTIONS(4648), + [anon_sym_BQUOTE] = ACTIONS(4648), + [anon_sym_LBRACE] = ACTIONS(4648), + [anon_sym_PIPE] = ACTIONS(4648), + [anon_sym_TILDE] = ACTIONS(4648), + [anon_sym_LPAREN] = ACTIONS(4648), + [anon_sym_RPAREN] = ACTIONS(4648), + [sym__newline_token] = ACTIONS(2195), + [aux_sym_insert_token1] = ACTIONS(4648), + [aux_sym_delete_token1] = ACTIONS(4648), + [aux_sym_highlight_token1] = ACTIONS(4648), + [aux_sym_edit_comment_token1] = ACTIONS(4648), + [anon_sym_CARET_LBRACK] = ACTIONS(4648), + [anon_sym_LBRACK_CARET] = ACTIONS(4648), + [sym_uri_autolink] = ACTIONS(4648), + [sym_email_autolink] = ACTIONS(4648), + [sym__whitespace_ge_2] = ACTIONS(4648), + [aux_sym__whitespace_token1] = ACTIONS(4650), + [sym__word_no_digit] = ACTIONS(4648), + [sym__digits] = ACTIONS(4648), + [anon_sym_DASH_DASH] = ACTIONS(4650), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4648), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4648), + [sym__code_span_start] = ACTIONS(4648), + [sym__emphasis_open_star] = ACTIONS(4648), + [sym__emphasis_open_underscore] = ACTIONS(4648), + [sym__last_token_punctuation] = ACTIONS(4658), + [sym__strikeout_open] = ACTIONS(4648), + [sym__latex_span_start] = ACTIONS(4648), + [sym__single_quote_open] = ACTIONS(4648), + [sym__single_quote_close] = ACTIONS(4648), + [sym__double_quote_open] = ACTIONS(4648), + [sym__superscript_open] = ACTIONS(4648), + [sym__subscript_open] = ACTIONS(4648), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4648), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4648), + [sym__cite_author_in_text] = ACTIONS(4648), + [sym__cite_suppress_author] = ACTIONS(4648), + [sym__shortcode_open_escaped] = ACTIONS(4648), + [sym__shortcode_open] = ACTIONS(4648), + [sym__unclosed_span] = ACTIONS(4648), + }, + [STATE(560)] = { + [sym__soft_line_break] = STATE(1038), + [sym__backslash_escape] = ACTIONS(4648), + [sym_entity_reference] = ACTIONS(4648), + [sym_numeric_character_reference] = ACTIONS(4648), + [anon_sym_LT] = ACTIONS(4650), + [anon_sym_GT] = ACTIONS(4648), + [anon_sym_BANG] = ACTIONS(4648), + [anon_sym_DQUOTE] = ACTIONS(4648), + [anon_sym_POUND] = ACTIONS(4648), + [anon_sym_DOLLAR] = ACTIONS(4648), + [anon_sym_PERCENT] = ACTIONS(4648), + [anon_sym_AMP] = ACTIONS(4650), + [anon_sym_SQUOTE] = ACTIONS(4648), + [anon_sym_STAR] = ACTIONS(4648), + [anon_sym_PLUS] = ACTIONS(4648), + [anon_sym_COMMA] = ACTIONS(4648), + [anon_sym_DASH] = ACTIONS(4650), + [anon_sym_DOT] = ACTIONS(4650), + [anon_sym_SLASH] = ACTIONS(4648), + [anon_sym_COLON] = ACTIONS(4648), + [anon_sym_SEMI] = ACTIONS(4648), + [anon_sym_EQ] = ACTIONS(4648), + [anon_sym_QMARK] = ACTIONS(4648), + [anon_sym_LBRACK] = ACTIONS(4650), + [anon_sym_BSLASH] = ACTIONS(4650), + [anon_sym_CARET] = ACTIONS(4650), + [anon_sym__] = ACTIONS(4648), + [anon_sym_BQUOTE] = ACTIONS(4648), + [anon_sym_LBRACE] = ACTIONS(4648), + [anon_sym_PIPE] = ACTIONS(4648), + [anon_sym_TILDE] = ACTIONS(4648), + [anon_sym_LPAREN] = ACTIONS(4648), + [anon_sym_RPAREN] = ACTIONS(4648), + [sym__newline_token] = ACTIONS(723), + [aux_sym_insert_token1] = ACTIONS(4648), + [aux_sym_insert_token2] = ACTIONS(4648), + [aux_sym_delete_token1] = ACTIONS(4648), + [aux_sym_highlight_token1] = ACTIONS(4648), + [aux_sym_edit_comment_token1] = ACTIONS(4648), + [anon_sym_CARET_LBRACK] = ACTIONS(4648), + [anon_sym_LBRACK_CARET] = ACTIONS(4648), + [sym_uri_autolink] = ACTIONS(4648), + [sym_email_autolink] = ACTIONS(4648), + [sym__whitespace_ge_2] = ACTIONS(4650), + [aux_sym__whitespace_token1] = ACTIONS(4650), + [sym__word_no_digit] = ACTIONS(4648), + [sym__digits] = ACTIONS(4648), + [anon_sym_DASH_DASH] = ACTIONS(4650), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4648), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4648), + [sym__code_span_start] = ACTIONS(4648), + [sym__emphasis_open_star] = ACTIONS(4648), + [sym__emphasis_open_underscore] = ACTIONS(4648), + [sym__last_token_punctuation] = ACTIONS(4660), + [sym__strikeout_open] = ACTIONS(4648), + [sym__latex_span_start] = ACTIONS(4648), + [sym__single_quote_open] = ACTIONS(4648), + [sym__double_quote_open] = ACTIONS(4648), + [sym__superscript_open] = ACTIONS(4648), + [sym__subscript_open] = ACTIONS(4648), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4648), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4648), + [sym__cite_author_in_text] = ACTIONS(4648), + [sym__cite_suppress_author] = ACTIONS(4648), + [sym__shortcode_open_escaped] = ACTIONS(4648), + [sym__shortcode_open] = ACTIONS(4648), + [sym__unclosed_span] = ACTIONS(4648), + }, + [STATE(561)] = { + [sym__soft_line_break] = STATE(1038), + [sym__backslash_escape] = ACTIONS(4642), + [sym_entity_reference] = ACTIONS(4642), + [sym_numeric_character_reference] = ACTIONS(4642), + [anon_sym_LT] = ACTIONS(4644), + [anon_sym_GT] = ACTIONS(4642), + [anon_sym_BANG] = ACTIONS(4642), + [anon_sym_DQUOTE] = ACTIONS(4642), + [anon_sym_POUND] = ACTIONS(4642), + [anon_sym_DOLLAR] = ACTIONS(4642), + [anon_sym_PERCENT] = ACTIONS(4642), + [anon_sym_AMP] = ACTIONS(4644), + [anon_sym_SQUOTE] = ACTIONS(4642), + [anon_sym_STAR] = ACTIONS(4642), + [anon_sym_PLUS] = ACTIONS(4642), + [anon_sym_COMMA] = ACTIONS(4642), + [anon_sym_DASH] = ACTIONS(4644), + [anon_sym_DOT] = ACTIONS(4644), + [anon_sym_SLASH] = ACTIONS(4642), + [anon_sym_COLON] = ACTIONS(4642), + [anon_sym_SEMI] = ACTIONS(4642), + [anon_sym_EQ] = ACTIONS(4642), + [anon_sym_QMARK] = ACTIONS(4642), + [anon_sym_LBRACK] = ACTIONS(4644), + [anon_sym_BSLASH] = ACTIONS(4644), + [anon_sym_CARET] = ACTIONS(4644), + [anon_sym__] = ACTIONS(4642), + [anon_sym_BQUOTE] = ACTIONS(4642), + [anon_sym_LBRACE] = ACTIONS(4642), + [anon_sym_PIPE] = ACTIONS(4642), + [anon_sym_TILDE] = ACTIONS(4642), + [anon_sym_LPAREN] = ACTIONS(4642), + [anon_sym_RPAREN] = ACTIONS(4642), + [sym__newline_token] = ACTIONS(723), + [aux_sym_insert_token1] = ACTIONS(4642), + [aux_sym_insert_token2] = ACTIONS(4642), + [aux_sym_delete_token1] = ACTIONS(4642), + [aux_sym_highlight_token1] = ACTIONS(4642), + [aux_sym_edit_comment_token1] = ACTIONS(4642), + [anon_sym_CARET_LBRACK] = ACTIONS(4642), + [anon_sym_LBRACK_CARET] = ACTIONS(4642), + [sym_uri_autolink] = ACTIONS(4642), + [sym_email_autolink] = ACTIONS(4642), + [sym__whitespace_ge_2] = ACTIONS(4644), + [aux_sym__whitespace_token1] = ACTIONS(4644), + [sym__word_no_digit] = ACTIONS(4642), + [sym__digits] = ACTIONS(4642), + [anon_sym_DASH_DASH] = ACTIONS(4644), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4642), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4642), + [sym__code_span_start] = ACTIONS(4642), + [sym__emphasis_open_star] = ACTIONS(4642), + [sym__emphasis_open_underscore] = ACTIONS(4642), + [sym__last_token_whitespace] = ACTIONS(4662), + [sym__strikeout_open] = ACTIONS(4642), + [sym__latex_span_start] = ACTIONS(4642), + [sym__single_quote_open] = ACTIONS(4642), + [sym__double_quote_open] = ACTIONS(4642), + [sym__superscript_open] = ACTIONS(4642), + [sym__subscript_open] = ACTIONS(4642), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4642), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4642), + [sym__cite_author_in_text] = ACTIONS(4642), + [sym__cite_suppress_author] = ACTIONS(4642), + [sym__shortcode_open_escaped] = ACTIONS(4642), + [sym__shortcode_open] = ACTIONS(4642), + [sym__unclosed_span] = ACTIONS(4642), + }, + [STATE(562)] = { + [sym__soft_line_break] = STATE(726), + [sym__backslash_escape] = ACTIONS(4648), + [sym_entity_reference] = ACTIONS(4648), + [sym_numeric_character_reference] = ACTIONS(4648), + [anon_sym_LT] = ACTIONS(4650), + [anon_sym_GT] = ACTIONS(4648), + [anon_sym_BANG] = ACTIONS(4648), + [anon_sym_DQUOTE] = ACTIONS(4648), + [anon_sym_POUND] = ACTIONS(4648), + [anon_sym_DOLLAR] = ACTIONS(4648), + [anon_sym_PERCENT] = ACTIONS(4648), + [anon_sym_AMP] = ACTIONS(4650), + [anon_sym_SQUOTE] = ACTIONS(4648), + [anon_sym_STAR] = ACTIONS(4648), + [anon_sym_PLUS] = ACTIONS(4648), + [anon_sym_COMMA] = ACTIONS(4648), + [anon_sym_DASH] = ACTIONS(4650), + [anon_sym_DOT] = ACTIONS(4650), + [anon_sym_SLASH] = ACTIONS(4648), + [anon_sym_COLON] = ACTIONS(4648), + [anon_sym_SEMI] = ACTIONS(4648), + [anon_sym_EQ] = ACTIONS(4648), + [anon_sym_QMARK] = ACTIONS(4648), + [anon_sym_LBRACK] = ACTIONS(4650), + [anon_sym_BSLASH] = ACTIONS(4650), + [anon_sym_CARET] = ACTIONS(4650), + [anon_sym__] = ACTIONS(4648), + [anon_sym_BQUOTE] = ACTIONS(4648), + [anon_sym_LBRACE] = ACTIONS(4648), + [anon_sym_PIPE] = ACTIONS(4648), + [anon_sym_TILDE] = ACTIONS(4648), + [anon_sym_LPAREN] = ACTIONS(4648), + [anon_sym_RPAREN] = ACTIONS(4648), + [sym__newline_token] = ACTIONS(1357), + [aux_sym_insert_token1] = ACTIONS(4648), + [aux_sym_delete_token1] = ACTIONS(4648), + [aux_sym_highlight_token1] = ACTIONS(4648), + [aux_sym_edit_comment_token1] = ACTIONS(4648), + [anon_sym_CARET_LBRACK] = ACTIONS(4648), + [anon_sym_LBRACK_CARET] = ACTIONS(4648), + [sym_uri_autolink] = ACTIONS(4648), + [sym_email_autolink] = ACTIONS(4648), + [sym__whitespace_ge_2] = ACTIONS(4648), + [aux_sym__whitespace_token1] = ACTIONS(4650), + [sym__word_no_digit] = ACTIONS(4648), + [sym__digits] = ACTIONS(4648), + [anon_sym_DASH_DASH] = ACTIONS(4650), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4648), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4648), + [sym__code_span_start] = ACTIONS(4648), + [sym__emphasis_open_star] = ACTIONS(4648), + [sym__emphasis_open_underscore] = ACTIONS(4648), + [sym__last_token_punctuation] = ACTIONS(4664), + [sym__strikeout_open] = ACTIONS(4648), + [sym__latex_span_start] = ACTIONS(4648), + [sym__single_quote_open] = ACTIONS(4648), + [sym__double_quote_open] = ACTIONS(4648), + [sym__superscript_open] = ACTIONS(4648), + [sym__superscript_close] = ACTIONS(4648), + [sym__subscript_open] = ACTIONS(4648), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4648), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4648), + [sym__cite_author_in_text] = ACTIONS(4648), + [sym__cite_suppress_author] = ACTIONS(4648), + [sym__shortcode_open_escaped] = ACTIONS(4648), + [sym__shortcode_open] = ACTIONS(4648), + [sym__unclosed_span] = ACTIONS(4648), + }, + [STATE(563)] = { + [sym__soft_line_break] = STATE(1018), + [sym__backslash_escape] = ACTIONS(4642), + [sym_entity_reference] = ACTIONS(4642), + [sym_numeric_character_reference] = ACTIONS(4642), + [anon_sym_LT] = ACTIONS(4644), + [anon_sym_GT] = ACTIONS(4642), + [anon_sym_BANG] = ACTIONS(4642), + [anon_sym_DQUOTE] = ACTIONS(4642), + [anon_sym_POUND] = ACTIONS(4642), + [anon_sym_DOLLAR] = ACTIONS(4642), + [anon_sym_PERCENT] = ACTIONS(4642), + [anon_sym_AMP] = ACTIONS(4644), + [anon_sym_SQUOTE] = ACTIONS(4642), + [anon_sym_STAR] = ACTIONS(4642), + [anon_sym_PLUS] = ACTIONS(4642), + [anon_sym_COMMA] = ACTIONS(4642), + [anon_sym_DASH] = ACTIONS(4644), + [anon_sym_DOT] = ACTIONS(4644), + [anon_sym_SLASH] = ACTIONS(4642), + [anon_sym_COLON] = ACTIONS(4642), + [anon_sym_SEMI] = ACTIONS(4642), + [anon_sym_EQ] = ACTIONS(4642), + [anon_sym_QMARK] = ACTIONS(4642), + [anon_sym_LBRACK] = ACTIONS(4644), + [anon_sym_BSLASH] = ACTIONS(4644), + [anon_sym_CARET] = ACTIONS(4644), + [anon_sym__] = ACTIONS(4642), + [anon_sym_BQUOTE] = ACTIONS(4642), + [anon_sym_LBRACE] = ACTIONS(4642), + [anon_sym_PIPE] = ACTIONS(4642), + [anon_sym_TILDE] = ACTIONS(4642), + [anon_sym_LPAREN] = ACTIONS(4642), + [anon_sym_RPAREN] = ACTIONS(4642), + [sym__newline_token] = ACTIONS(2195), + [aux_sym_insert_token1] = ACTIONS(4642), + [aux_sym_delete_token1] = ACTIONS(4642), + [aux_sym_highlight_token1] = ACTIONS(4642), + [aux_sym_edit_comment_token1] = ACTIONS(4642), + [anon_sym_CARET_LBRACK] = ACTIONS(4642), + [anon_sym_LBRACK_CARET] = ACTIONS(4642), + [sym_uri_autolink] = ACTIONS(4642), + [sym_email_autolink] = ACTIONS(4642), + [sym__whitespace_ge_2] = ACTIONS(4642), + [aux_sym__whitespace_token1] = ACTIONS(4644), + [sym__word_no_digit] = ACTIONS(4642), + [sym__digits] = ACTIONS(4642), + [anon_sym_DASH_DASH] = ACTIONS(4644), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4642), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4642), + [sym__code_span_start] = ACTIONS(4642), + [sym__emphasis_open_star] = ACTIONS(4642), + [sym__emphasis_open_underscore] = ACTIONS(4642), + [sym__last_token_whitespace] = ACTIONS(4666), + [sym__strikeout_open] = ACTIONS(4642), + [sym__latex_span_start] = ACTIONS(4642), + [sym__single_quote_open] = ACTIONS(4642), + [sym__single_quote_close] = ACTIONS(4642), + [sym__double_quote_open] = ACTIONS(4642), + [sym__superscript_open] = ACTIONS(4642), + [sym__subscript_open] = ACTIONS(4642), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4642), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4642), + [sym__cite_author_in_text] = ACTIONS(4642), + [sym__cite_suppress_author] = ACTIONS(4642), + [sym__shortcode_open_escaped] = ACTIONS(4642), + [sym__shortcode_open] = ACTIONS(4642), + [sym__unclosed_span] = ACTIONS(4642), + }, + [STATE(564)] = { + [sym__soft_line_break] = STATE(1283), + [sym__backslash_escape] = ACTIONS(4648), + [sym_entity_reference] = ACTIONS(4648), + [sym_numeric_character_reference] = ACTIONS(4648), + [anon_sym_LT] = ACTIONS(4650), + [anon_sym_GT] = ACTIONS(4648), + [anon_sym_BANG] = ACTIONS(4648), + [anon_sym_DQUOTE] = ACTIONS(4648), + [anon_sym_POUND] = ACTIONS(4648), + [anon_sym_DOLLAR] = ACTIONS(4648), + [anon_sym_PERCENT] = ACTIONS(4648), + [anon_sym_AMP] = ACTIONS(4650), + [anon_sym_SQUOTE] = ACTIONS(4648), + [anon_sym_STAR] = ACTIONS(4648), + [anon_sym_PLUS] = ACTIONS(4648), + [anon_sym_COMMA] = ACTIONS(4648), + [anon_sym_DASH] = ACTIONS(4650), + [anon_sym_DOT] = ACTIONS(4650), + [anon_sym_SLASH] = ACTIONS(4648), + [anon_sym_COLON] = ACTIONS(4648), + [anon_sym_SEMI] = ACTIONS(4648), + [anon_sym_EQ] = ACTIONS(4648), + [anon_sym_QMARK] = ACTIONS(4648), + [anon_sym_LBRACK] = ACTIONS(4650), + [anon_sym_BSLASH] = ACTIONS(4650), + [anon_sym_CARET] = ACTIONS(4650), + [anon_sym__] = ACTIONS(4648), + [anon_sym_BQUOTE] = ACTIONS(4648), + [anon_sym_LBRACE] = ACTIONS(4648), + [anon_sym_PIPE] = ACTIONS(4648), + [anon_sym_TILDE] = ACTIONS(4648), + [anon_sym_LPAREN] = ACTIONS(4648), + [anon_sym_RPAREN] = ACTIONS(4648), + [sym__newline_token] = ACTIONS(901), + [aux_sym_insert_token1] = ACTIONS(4648), + [aux_sym_delete_token1] = ACTIONS(4648), + [aux_sym_highlight_token1] = ACTIONS(4648), + [aux_sym_edit_comment_token1] = ACTIONS(4648), + [anon_sym_CARET_LBRACK] = ACTIONS(4648), + [anon_sym_LBRACK_CARET] = ACTIONS(4648), + [sym_uri_autolink] = ACTIONS(4648), + [sym_email_autolink] = ACTIONS(4648), + [sym__whitespace_ge_2] = ACTIONS(4648), + [aux_sym__whitespace_token1] = ACTIONS(4650), + [sym__word_no_digit] = ACTIONS(4648), + [sym__digits] = ACTIONS(4648), + [anon_sym_DASH_DASH] = ACTIONS(4650), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4648), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4648), + [sym__code_span_start] = ACTIONS(4648), + [sym__emphasis_open_star] = ACTIONS(4648), + [sym__emphasis_open_underscore] = ACTIONS(4648), + [sym__emphasis_close_star] = ACTIONS(4648), + [sym__last_token_punctuation] = ACTIONS(4668), + [sym__strikeout_open] = ACTIONS(4648), + [sym__latex_span_start] = ACTIONS(4648), + [sym__single_quote_open] = ACTIONS(4648), + [sym__double_quote_open] = ACTIONS(4648), + [sym__superscript_open] = ACTIONS(4648), + [sym__subscript_open] = ACTIONS(4648), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4648), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4648), + [sym__cite_author_in_text] = ACTIONS(4648), + [sym__cite_suppress_author] = ACTIONS(4648), + [sym__shortcode_open_escaped] = ACTIONS(4648), + [sym__shortcode_open] = ACTIONS(4648), + [sym__unclosed_span] = ACTIONS(4648), + }, + [STATE(565)] = { + [sym__soft_line_break] = STATE(1283), + [sym__backslash_escape] = ACTIONS(4642), + [sym_entity_reference] = ACTIONS(4642), + [sym_numeric_character_reference] = ACTIONS(4642), + [anon_sym_LT] = ACTIONS(4644), + [anon_sym_GT] = ACTIONS(4642), + [anon_sym_BANG] = ACTIONS(4642), + [anon_sym_DQUOTE] = ACTIONS(4642), + [anon_sym_POUND] = ACTIONS(4642), + [anon_sym_DOLLAR] = ACTIONS(4642), + [anon_sym_PERCENT] = ACTIONS(4642), + [anon_sym_AMP] = ACTIONS(4644), + [anon_sym_SQUOTE] = ACTIONS(4642), + [anon_sym_STAR] = ACTIONS(4642), + [anon_sym_PLUS] = ACTIONS(4642), + [anon_sym_COMMA] = ACTIONS(4642), + [anon_sym_DASH] = ACTIONS(4644), + [anon_sym_DOT] = ACTIONS(4644), + [anon_sym_SLASH] = ACTIONS(4642), + [anon_sym_COLON] = ACTIONS(4642), + [anon_sym_SEMI] = ACTIONS(4642), + [anon_sym_EQ] = ACTIONS(4642), + [anon_sym_QMARK] = ACTIONS(4642), + [anon_sym_LBRACK] = ACTIONS(4644), + [anon_sym_BSLASH] = ACTIONS(4644), + [anon_sym_CARET] = ACTIONS(4644), + [anon_sym__] = ACTIONS(4642), + [anon_sym_BQUOTE] = ACTIONS(4642), + [anon_sym_LBRACE] = ACTIONS(4642), + [anon_sym_PIPE] = ACTIONS(4642), + [anon_sym_TILDE] = ACTIONS(4642), + [anon_sym_LPAREN] = ACTIONS(4642), + [anon_sym_RPAREN] = ACTIONS(4642), + [sym__newline_token] = ACTIONS(901), + [aux_sym_insert_token1] = ACTIONS(4642), + [aux_sym_delete_token1] = ACTIONS(4642), + [aux_sym_highlight_token1] = ACTIONS(4642), + [aux_sym_edit_comment_token1] = ACTIONS(4642), + [anon_sym_CARET_LBRACK] = ACTIONS(4642), + [anon_sym_LBRACK_CARET] = ACTIONS(4642), + [sym_uri_autolink] = ACTIONS(4642), + [sym_email_autolink] = ACTIONS(4642), + [sym__whitespace_ge_2] = ACTIONS(4642), + [aux_sym__whitespace_token1] = ACTIONS(4644), + [sym__word_no_digit] = ACTIONS(4642), + [sym__digits] = ACTIONS(4642), + [anon_sym_DASH_DASH] = ACTIONS(4644), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4642), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4642), + [sym__code_span_start] = ACTIONS(4642), + [sym__emphasis_open_star] = ACTIONS(4642), + [sym__emphasis_open_underscore] = ACTIONS(4642), + [sym__emphasis_close_star] = ACTIONS(4642), + [sym__last_token_whitespace] = ACTIONS(4670), + [sym__strikeout_open] = ACTIONS(4642), + [sym__latex_span_start] = ACTIONS(4642), + [sym__single_quote_open] = ACTIONS(4642), + [sym__double_quote_open] = ACTIONS(4642), + [sym__superscript_open] = ACTIONS(4642), + [sym__subscript_open] = ACTIONS(4642), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4642), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4642), + [sym__cite_author_in_text] = ACTIONS(4642), + [sym__cite_suppress_author] = ACTIONS(4642), + [sym__shortcode_open_escaped] = ACTIONS(4642), + [sym__shortcode_open] = ACTIONS(4642), + [sym__unclosed_span] = ACTIONS(4642), + }, + [STATE(566)] = { + [sym__soft_line_break] = STATE(701), + [ts_builtin_sym_end] = ACTIONS(4648), + [sym__backslash_escape] = ACTIONS(4648), + [sym_entity_reference] = ACTIONS(4648), + [sym_numeric_character_reference] = ACTIONS(4648), + [anon_sym_LT] = ACTIONS(4650), + [anon_sym_GT] = ACTIONS(4648), + [anon_sym_BANG] = ACTIONS(4648), + [anon_sym_DQUOTE] = ACTIONS(4648), + [anon_sym_POUND] = ACTIONS(4648), + [anon_sym_DOLLAR] = ACTIONS(4648), + [anon_sym_PERCENT] = ACTIONS(4648), + [anon_sym_AMP] = ACTIONS(4650), + [anon_sym_SQUOTE] = ACTIONS(4648), + [anon_sym_STAR] = ACTIONS(4648), + [anon_sym_PLUS] = ACTIONS(4648), + [anon_sym_COMMA] = ACTIONS(4648), + [anon_sym_DASH] = ACTIONS(4650), + [anon_sym_DOT] = ACTIONS(4650), + [anon_sym_SLASH] = ACTIONS(4648), + [anon_sym_COLON] = ACTIONS(4648), + [anon_sym_SEMI] = ACTIONS(4648), + [anon_sym_EQ] = ACTIONS(4648), + [anon_sym_QMARK] = ACTIONS(4648), + [anon_sym_LBRACK] = ACTIONS(4650), + [anon_sym_BSLASH] = ACTIONS(4650), + [anon_sym_CARET] = ACTIONS(4650), + [anon_sym__] = ACTIONS(4648), + [anon_sym_BQUOTE] = ACTIONS(4648), + [anon_sym_LBRACE] = ACTIONS(4648), + [anon_sym_PIPE] = ACTIONS(4648), + [anon_sym_TILDE] = ACTIONS(4648), + [anon_sym_LPAREN] = ACTIONS(4648), + [anon_sym_RPAREN] = ACTIONS(4648), + [sym__newline_token] = ACTIONS(19), + [aux_sym_insert_token1] = ACTIONS(4648), + [aux_sym_delete_token1] = ACTIONS(4648), + [aux_sym_highlight_token1] = ACTIONS(4648), + [aux_sym_edit_comment_token1] = ACTIONS(4648), + [anon_sym_CARET_LBRACK] = ACTIONS(4648), + [anon_sym_LBRACK_CARET] = ACTIONS(4648), + [sym_uri_autolink] = ACTIONS(4648), + [sym_email_autolink] = ACTIONS(4648), + [sym__whitespace_ge_2] = ACTIONS(4648), + [aux_sym__whitespace_token1] = ACTIONS(4650), + [sym__word_no_digit] = ACTIONS(4648), + [sym__digits] = ACTIONS(4648), + [anon_sym_DASH_DASH] = ACTIONS(4650), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4648), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4648), + [sym__code_span_start] = ACTIONS(4648), + [sym__emphasis_open_star] = ACTIONS(4648), + [sym__emphasis_open_underscore] = ACTIONS(4648), + [sym__last_token_punctuation] = ACTIONS(4672), + [sym__strikeout_open] = ACTIONS(4648), + [sym__latex_span_start] = ACTIONS(4648), + [sym__single_quote_open] = ACTIONS(4648), + [sym__double_quote_open] = ACTIONS(4648), + [sym__superscript_open] = ACTIONS(4648), + [sym__subscript_open] = ACTIONS(4648), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4648), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4648), + [sym__cite_author_in_text] = ACTIONS(4648), + [sym__cite_suppress_author] = ACTIONS(4648), + [sym__shortcode_open_escaped] = ACTIONS(4648), + [sym__shortcode_open] = ACTIONS(4648), + [sym__unclosed_span] = ACTIONS(4648), + }, + [STATE(567)] = { + [sym__soft_line_break] = STATE(726), + [sym__backslash_escape] = ACTIONS(4642), + [sym_entity_reference] = ACTIONS(4642), + [sym_numeric_character_reference] = ACTIONS(4642), + [anon_sym_LT] = ACTIONS(4644), + [anon_sym_GT] = ACTIONS(4642), + [anon_sym_BANG] = ACTIONS(4642), + [anon_sym_DQUOTE] = ACTIONS(4642), + [anon_sym_POUND] = ACTIONS(4642), + [anon_sym_DOLLAR] = ACTIONS(4642), + [anon_sym_PERCENT] = ACTIONS(4642), + [anon_sym_AMP] = ACTIONS(4644), + [anon_sym_SQUOTE] = ACTIONS(4642), + [anon_sym_STAR] = ACTIONS(4642), + [anon_sym_PLUS] = ACTIONS(4642), + [anon_sym_COMMA] = ACTIONS(4642), + [anon_sym_DASH] = ACTIONS(4644), + [anon_sym_DOT] = ACTIONS(4644), + [anon_sym_SLASH] = ACTIONS(4642), + [anon_sym_COLON] = ACTIONS(4642), + [anon_sym_SEMI] = ACTIONS(4642), + [anon_sym_EQ] = ACTIONS(4642), + [anon_sym_QMARK] = ACTIONS(4642), + [anon_sym_LBRACK] = ACTIONS(4644), + [anon_sym_BSLASH] = ACTIONS(4644), + [anon_sym_CARET] = ACTIONS(4644), + [anon_sym__] = ACTIONS(4642), + [anon_sym_BQUOTE] = ACTIONS(4642), + [anon_sym_LBRACE] = ACTIONS(4642), + [anon_sym_PIPE] = ACTIONS(4642), + [anon_sym_TILDE] = ACTIONS(4642), + [anon_sym_LPAREN] = ACTIONS(4642), + [anon_sym_RPAREN] = ACTIONS(4642), + [sym__newline_token] = ACTIONS(1357), + [aux_sym_insert_token1] = ACTIONS(4642), + [aux_sym_delete_token1] = ACTIONS(4642), + [aux_sym_highlight_token1] = ACTIONS(4642), + [aux_sym_edit_comment_token1] = ACTIONS(4642), + [anon_sym_CARET_LBRACK] = ACTIONS(4642), + [anon_sym_LBRACK_CARET] = ACTIONS(4642), + [sym_uri_autolink] = ACTIONS(4642), + [sym_email_autolink] = ACTIONS(4642), + [sym__whitespace_ge_2] = ACTIONS(4642), + [aux_sym__whitespace_token1] = ACTIONS(4644), + [sym__word_no_digit] = ACTIONS(4642), + [sym__digits] = ACTIONS(4642), + [anon_sym_DASH_DASH] = ACTIONS(4644), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4642), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4642), + [sym__code_span_start] = ACTIONS(4642), + [sym__emphasis_open_star] = ACTIONS(4642), + [sym__emphasis_open_underscore] = ACTIONS(4642), + [sym__last_token_whitespace] = ACTIONS(4674), + [sym__strikeout_open] = ACTIONS(4642), + [sym__latex_span_start] = ACTIONS(4642), + [sym__single_quote_open] = ACTIONS(4642), + [sym__double_quote_open] = ACTIONS(4642), + [sym__superscript_open] = ACTIONS(4642), + [sym__superscript_close] = ACTIONS(4642), + [sym__subscript_open] = ACTIONS(4642), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4642), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4642), + [sym__cite_author_in_text] = ACTIONS(4642), + [sym__cite_suppress_author] = ACTIONS(4642), + [sym__shortcode_open_escaped] = ACTIONS(4642), + [sym__shortcode_open] = ACTIONS(4642), + [sym__unclosed_span] = ACTIONS(4642), + }, + [STATE(568)] = { + [sym__soft_line_break] = STATE(1324), + [sym__backslash_escape] = ACTIONS(4648), + [sym_entity_reference] = ACTIONS(4648), + [sym_numeric_character_reference] = ACTIONS(4648), + [anon_sym_LT] = ACTIONS(4650), + [anon_sym_GT] = ACTIONS(4648), + [anon_sym_BANG] = ACTIONS(4648), + [anon_sym_DQUOTE] = ACTIONS(4648), + [anon_sym_POUND] = ACTIONS(4648), + [anon_sym_DOLLAR] = ACTIONS(4648), + [anon_sym_PERCENT] = ACTIONS(4648), + [anon_sym_AMP] = ACTIONS(4650), + [anon_sym_SQUOTE] = ACTIONS(4648), + [anon_sym_STAR] = ACTIONS(4648), + [anon_sym_PLUS] = ACTIONS(4648), + [anon_sym_COMMA] = ACTIONS(4648), + [anon_sym_DASH] = ACTIONS(4650), + [anon_sym_DOT] = ACTIONS(4650), + [anon_sym_SLASH] = ACTIONS(4648), + [anon_sym_COLON] = ACTIONS(4648), + [anon_sym_SEMI] = ACTIONS(4648), + [anon_sym_EQ] = ACTIONS(4648), + [anon_sym_QMARK] = ACTIONS(4648), + [anon_sym_LBRACK] = ACTIONS(4650), + [anon_sym_BSLASH] = ACTIONS(4650), + [anon_sym_CARET] = ACTIONS(4650), + [anon_sym__] = ACTIONS(4648), + [anon_sym_BQUOTE] = ACTIONS(4648), + [anon_sym_LBRACE] = ACTIONS(4648), + [anon_sym_PIPE] = ACTIONS(4648), + [anon_sym_TILDE] = ACTIONS(4648), + [anon_sym_LPAREN] = ACTIONS(4648), + [anon_sym_RPAREN] = ACTIONS(4648), + [sym__newline_token] = ACTIONS(653), + [aux_sym_insert_token1] = ACTIONS(4648), + [aux_sym_delete_token1] = ACTIONS(4648), + [aux_sym_highlight_token1] = ACTIONS(4648), + [aux_sym_edit_comment_token1] = ACTIONS(4648), + [anon_sym_CARET_LBRACK] = ACTIONS(4648), + [anon_sym_LBRACK_CARET] = ACTIONS(4648), + [sym_uri_autolink] = ACTIONS(4648), + [sym_email_autolink] = ACTIONS(4648), + [sym__whitespace_ge_2] = ACTIONS(4648), + [aux_sym__whitespace_token1] = ACTIONS(4650), + [sym__word_no_digit] = ACTIONS(4648), + [sym__digits] = ACTIONS(4648), + [anon_sym_DASH_DASH] = ACTIONS(4650), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4648), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4648), + [sym__code_span_start] = ACTIONS(4648), + [sym__emphasis_open_star] = ACTIONS(4648), + [sym__emphasis_open_underscore] = ACTIONS(4648), + [sym__last_token_punctuation] = ACTIONS(4676), + [sym__strikeout_open] = ACTIONS(4648), + [sym__latex_span_start] = ACTIONS(4648), + [sym__single_quote_open] = ACTIONS(4648), + [sym__double_quote_open] = ACTIONS(4648), + [sym__double_quote_close] = ACTIONS(4648), + [sym__superscript_open] = ACTIONS(4648), + [sym__subscript_open] = ACTIONS(4648), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4648), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4648), + [sym__cite_author_in_text] = ACTIONS(4648), + [sym__cite_suppress_author] = ACTIONS(4648), + [sym__shortcode_open_escaped] = ACTIONS(4648), + [sym__shortcode_open] = ACTIONS(4648), + [sym__unclosed_span] = ACTIONS(4648), + }, + [STATE(569)] = { + [sym__soft_line_break] = STATE(936), + [sym__backslash_escape] = ACTIONS(4648), + [sym_entity_reference] = ACTIONS(4648), + [sym_numeric_character_reference] = ACTIONS(4648), + [anon_sym_LT] = ACTIONS(4650), + [anon_sym_GT] = ACTIONS(4648), + [anon_sym_BANG] = ACTIONS(4648), + [anon_sym_DQUOTE] = ACTIONS(4648), + [anon_sym_POUND] = ACTIONS(4648), + [anon_sym_DOLLAR] = ACTIONS(4648), + [anon_sym_PERCENT] = ACTIONS(4648), + [anon_sym_AMP] = ACTIONS(4650), + [anon_sym_SQUOTE] = ACTIONS(4648), + [anon_sym_STAR] = ACTIONS(4648), + [anon_sym_PLUS] = ACTIONS(4648), + [anon_sym_COMMA] = ACTIONS(4648), + [anon_sym_DASH] = ACTIONS(4650), + [anon_sym_DOT] = ACTIONS(4650), + [anon_sym_SLASH] = ACTIONS(4648), + [anon_sym_COLON] = ACTIONS(4648), + [anon_sym_SEMI] = ACTIONS(4648), + [anon_sym_EQ] = ACTIONS(4648), + [anon_sym_QMARK] = ACTIONS(4648), + [anon_sym_LBRACK] = ACTIONS(4650), + [anon_sym_BSLASH] = ACTIONS(4650), + [anon_sym_RBRACK] = ACTIONS(4648), + [anon_sym_CARET] = ACTIONS(4650), + [anon_sym__] = ACTIONS(4648), + [anon_sym_BQUOTE] = ACTIONS(4648), + [anon_sym_LBRACE] = ACTIONS(4648), + [anon_sym_PIPE] = ACTIONS(4648), + [anon_sym_TILDE] = ACTIONS(4648), + [anon_sym_LPAREN] = ACTIONS(4648), + [anon_sym_RPAREN] = ACTIONS(4648), + [sym__newline_token] = ACTIONS(91), + [aux_sym_insert_token1] = ACTIONS(4648), + [aux_sym_delete_token1] = ACTIONS(4648), + [aux_sym_highlight_token1] = ACTIONS(4648), + [aux_sym_edit_comment_token1] = ACTIONS(4648), + [anon_sym_CARET_LBRACK] = ACTIONS(4648), + [anon_sym_LBRACK_CARET] = ACTIONS(4648), + [sym_uri_autolink] = ACTIONS(4648), + [sym_email_autolink] = ACTIONS(4648), + [sym__whitespace_ge_2] = ACTIONS(4648), + [aux_sym__whitespace_token1] = ACTIONS(4650), + [sym__word_no_digit] = ACTIONS(4648), + [sym__digits] = ACTIONS(4648), + [anon_sym_DASH_DASH] = ACTIONS(4650), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4648), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4648), + [sym__code_span_start] = ACTIONS(4648), + [sym__emphasis_open_star] = ACTIONS(4648), + [sym__emphasis_open_underscore] = ACTIONS(4648), + [sym__last_token_punctuation] = ACTIONS(4678), + [sym__strikeout_open] = ACTIONS(4648), + [sym__latex_span_start] = ACTIONS(4648), + [sym__single_quote_open] = ACTIONS(4648), + [sym__double_quote_open] = ACTIONS(4648), + [sym__superscript_open] = ACTIONS(4648), + [sym__subscript_open] = ACTIONS(4648), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4648), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4648), + [sym__cite_author_in_text] = ACTIONS(4648), + [sym__cite_suppress_author] = ACTIONS(4648), + [sym__shortcode_open_escaped] = ACTIONS(4648), + [sym__shortcode_open] = ACTIONS(4648), + [sym__unclosed_span] = ACTIONS(4648), + }, + [STATE(570)] = { + [sym__soft_line_break] = STATE(936), + [sym__backslash_escape] = ACTIONS(4642), + [sym_entity_reference] = ACTIONS(4642), + [sym_numeric_character_reference] = ACTIONS(4642), + [anon_sym_LT] = ACTIONS(4644), + [anon_sym_GT] = ACTIONS(4642), + [anon_sym_BANG] = ACTIONS(4642), + [anon_sym_DQUOTE] = ACTIONS(4642), + [anon_sym_POUND] = ACTIONS(4642), + [anon_sym_DOLLAR] = ACTIONS(4642), + [anon_sym_PERCENT] = ACTIONS(4642), + [anon_sym_AMP] = ACTIONS(4644), + [anon_sym_SQUOTE] = ACTIONS(4642), + [anon_sym_STAR] = ACTIONS(4642), + [anon_sym_PLUS] = ACTIONS(4642), + [anon_sym_COMMA] = ACTIONS(4642), + [anon_sym_DASH] = ACTIONS(4644), + [anon_sym_DOT] = ACTIONS(4644), + [anon_sym_SLASH] = ACTIONS(4642), + [anon_sym_COLON] = ACTIONS(4642), + [anon_sym_SEMI] = ACTIONS(4642), + [anon_sym_EQ] = ACTIONS(4642), + [anon_sym_QMARK] = ACTIONS(4642), + [anon_sym_LBRACK] = ACTIONS(4644), + [anon_sym_BSLASH] = ACTIONS(4644), + [anon_sym_RBRACK] = ACTIONS(4642), + [anon_sym_CARET] = ACTIONS(4644), + [anon_sym__] = ACTIONS(4642), + [anon_sym_BQUOTE] = ACTIONS(4642), + [anon_sym_LBRACE] = ACTIONS(4642), + [anon_sym_PIPE] = ACTIONS(4642), + [anon_sym_TILDE] = ACTIONS(4642), + [anon_sym_LPAREN] = ACTIONS(4642), + [anon_sym_RPAREN] = ACTIONS(4642), + [sym__newline_token] = ACTIONS(91), + [aux_sym_insert_token1] = ACTIONS(4642), + [aux_sym_delete_token1] = ACTIONS(4642), + [aux_sym_highlight_token1] = ACTIONS(4642), + [aux_sym_edit_comment_token1] = ACTIONS(4642), + [anon_sym_CARET_LBRACK] = ACTIONS(4642), + [anon_sym_LBRACK_CARET] = ACTIONS(4642), + [sym_uri_autolink] = ACTIONS(4642), + [sym_email_autolink] = ACTIONS(4642), + [sym__whitespace_ge_2] = ACTIONS(4642), + [aux_sym__whitespace_token1] = ACTIONS(4644), + [sym__word_no_digit] = ACTIONS(4642), + [sym__digits] = ACTIONS(4642), + [anon_sym_DASH_DASH] = ACTIONS(4644), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4642), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4642), + [sym__code_span_start] = ACTIONS(4642), + [sym__emphasis_open_star] = ACTIONS(4642), + [sym__emphasis_open_underscore] = ACTIONS(4642), + [sym__last_token_whitespace] = ACTIONS(4680), + [sym__strikeout_open] = ACTIONS(4642), + [sym__latex_span_start] = ACTIONS(4642), + [sym__single_quote_open] = ACTIONS(4642), + [sym__double_quote_open] = ACTIONS(4642), + [sym__superscript_open] = ACTIONS(4642), + [sym__subscript_open] = ACTIONS(4642), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4642), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4642), + [sym__cite_author_in_text] = ACTIONS(4642), + [sym__cite_suppress_author] = ACTIONS(4642), + [sym__shortcode_open_escaped] = ACTIONS(4642), + [sym__shortcode_open] = ACTIONS(4642), + [sym__unclosed_span] = ACTIONS(4642), + }, + [STATE(571)] = { + [sym__soft_line_break] = STATE(1366), + [sym__backslash_escape] = ACTIONS(4648), + [sym_entity_reference] = ACTIONS(4648), + [sym_numeric_character_reference] = ACTIONS(4648), + [anon_sym_LT] = ACTIONS(4650), + [anon_sym_GT] = ACTIONS(4648), + [anon_sym_BANG] = ACTIONS(4648), + [anon_sym_DQUOTE] = ACTIONS(4648), + [anon_sym_POUND] = ACTIONS(4648), + [anon_sym_DOLLAR] = ACTIONS(4648), + [anon_sym_PERCENT] = ACTIONS(4648), + [anon_sym_AMP] = ACTIONS(4650), + [anon_sym_SQUOTE] = ACTIONS(4648), + [anon_sym_STAR] = ACTIONS(4648), + [anon_sym_PLUS] = ACTIONS(4648), + [anon_sym_COMMA] = ACTIONS(4648), + [anon_sym_DASH] = ACTIONS(4650), + [anon_sym_DOT] = ACTIONS(4650), + [anon_sym_SLASH] = ACTIONS(4648), + [anon_sym_COLON] = ACTIONS(4648), + [anon_sym_SEMI] = ACTIONS(4648), + [anon_sym_EQ] = ACTIONS(4648), + [anon_sym_QMARK] = ACTIONS(4648), + [anon_sym_LBRACK] = ACTIONS(4650), + [anon_sym_BSLASH] = ACTIONS(4650), + [anon_sym_CARET] = ACTIONS(4650), + [anon_sym__] = ACTIONS(4648), + [anon_sym_BQUOTE] = ACTIONS(4648), + [anon_sym_LBRACE] = ACTIONS(4648), + [anon_sym_PIPE] = ACTIONS(4648), + [anon_sym_TILDE] = ACTIONS(4648), + [anon_sym_LPAREN] = ACTIONS(4648), + [anon_sym_RPAREN] = ACTIONS(4648), + [sym__newline_token] = ACTIONS(2021), + [aux_sym_insert_token1] = ACTIONS(4648), + [aux_sym_delete_token1] = ACTIONS(4648), + [aux_sym_highlight_token1] = ACTIONS(4648), + [aux_sym_edit_comment_token1] = ACTIONS(4648), + [anon_sym_CARET_LBRACK] = ACTIONS(4648), + [anon_sym_LBRACK_CARET] = ACTIONS(4648), + [sym_uri_autolink] = ACTIONS(4648), + [sym_email_autolink] = ACTIONS(4648), + [sym__whitespace_ge_2] = ACTIONS(4648), + [aux_sym__whitespace_token1] = ACTIONS(4650), + [sym__word_no_digit] = ACTIONS(4648), + [sym__digits] = ACTIONS(4648), + [anon_sym_DASH_DASH] = ACTIONS(4650), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4648), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4648), + [sym__code_span_start] = ACTIONS(4648), + [sym__emphasis_open_star] = ACTIONS(4648), + [sym__emphasis_open_underscore] = ACTIONS(4648), + [sym__last_token_punctuation] = ACTIONS(4682), + [sym__strikeout_open] = ACTIONS(4648), + [sym__strikeout_close] = ACTIONS(4648), + [sym__latex_span_start] = ACTIONS(4648), + [sym__single_quote_open] = ACTIONS(4648), + [sym__double_quote_open] = ACTIONS(4648), + [sym__superscript_open] = ACTIONS(4648), + [sym__subscript_open] = ACTIONS(4648), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4648), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4648), + [sym__cite_author_in_text] = ACTIONS(4648), + [sym__cite_suppress_author] = ACTIONS(4648), + [sym__shortcode_open_escaped] = ACTIONS(4648), + [sym__shortcode_open] = ACTIONS(4648), + [sym__unclosed_span] = ACTIONS(4648), + }, + [STATE(572)] = { + [sym__soft_line_break] = STATE(1405), + [sym__backslash_escape] = ACTIONS(4648), + [sym_entity_reference] = ACTIONS(4648), + [sym_numeric_character_reference] = ACTIONS(4648), + [anon_sym_LT] = ACTIONS(4650), + [anon_sym_GT] = ACTIONS(4648), + [anon_sym_BANG] = ACTIONS(4648), + [anon_sym_DQUOTE] = ACTIONS(4648), + [anon_sym_POUND] = ACTIONS(4648), + [anon_sym_DOLLAR] = ACTIONS(4648), + [anon_sym_PERCENT] = ACTIONS(4648), + [anon_sym_AMP] = ACTIONS(4650), + [anon_sym_SQUOTE] = ACTIONS(4648), + [anon_sym_STAR] = ACTIONS(4648), + [anon_sym_PLUS] = ACTIONS(4648), + [anon_sym_COMMA] = ACTIONS(4648), + [anon_sym_DASH] = ACTIONS(4650), + [anon_sym_DOT] = ACTIONS(4650), + [anon_sym_SLASH] = ACTIONS(4648), + [anon_sym_COLON] = ACTIONS(4648), + [anon_sym_SEMI] = ACTIONS(4648), + [anon_sym_EQ] = ACTIONS(4648), + [anon_sym_QMARK] = ACTIONS(4648), + [anon_sym_LBRACK] = ACTIONS(4650), + [anon_sym_BSLASH] = ACTIONS(4650), + [anon_sym_CARET] = ACTIONS(4650), + [anon_sym__] = ACTIONS(4648), + [anon_sym_BQUOTE] = ACTIONS(4648), + [anon_sym_LBRACE] = ACTIONS(4648), + [anon_sym_PIPE] = ACTIONS(4648), + [anon_sym_TILDE] = ACTIONS(4648), + [anon_sym_LPAREN] = ACTIONS(4648), + [anon_sym_RPAREN] = ACTIONS(4648), + [sym__newline_token] = ACTIONS(1075), + [aux_sym_insert_token1] = ACTIONS(4648), + [aux_sym_delete_token1] = ACTIONS(4648), + [aux_sym_highlight_token1] = ACTIONS(4648), + [aux_sym_edit_comment_token1] = ACTIONS(4648), + [anon_sym_CARET_LBRACK] = ACTIONS(4648), + [anon_sym_LBRACK_CARET] = ACTIONS(4648), + [sym_uri_autolink] = ACTIONS(4648), + [sym_email_autolink] = ACTIONS(4648), + [sym__whitespace_ge_2] = ACTIONS(4648), + [aux_sym__whitespace_token1] = ACTIONS(4650), + [sym__word_no_digit] = ACTIONS(4648), + [sym__digits] = ACTIONS(4648), + [anon_sym_DASH_DASH] = ACTIONS(4650), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4648), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4648), + [sym__code_span_start] = ACTIONS(4648), + [sym__emphasis_open_star] = ACTIONS(4648), + [sym__emphasis_open_underscore] = ACTIONS(4648), + [sym__emphasis_close_underscore] = ACTIONS(4648), + [sym__last_token_punctuation] = ACTIONS(4684), + [sym__strikeout_open] = ACTIONS(4648), + [sym__latex_span_start] = ACTIONS(4648), + [sym__single_quote_open] = ACTIONS(4648), + [sym__double_quote_open] = ACTIONS(4648), + [sym__superscript_open] = ACTIONS(4648), + [sym__subscript_open] = ACTIONS(4648), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4648), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4648), + [sym__cite_author_in_text] = ACTIONS(4648), + [sym__cite_suppress_author] = ACTIONS(4648), + [sym__shortcode_open_escaped] = ACTIONS(4648), + [sym__shortcode_open] = ACTIONS(4648), + [sym__unclosed_span] = ACTIONS(4648), + }, + [STATE(573)] = { + [sym__soft_line_break] = STATE(1405), + [sym__backslash_escape] = ACTIONS(4642), + [sym_entity_reference] = ACTIONS(4642), + [sym_numeric_character_reference] = ACTIONS(4642), + [anon_sym_LT] = ACTIONS(4644), + [anon_sym_GT] = ACTIONS(4642), + [anon_sym_BANG] = ACTIONS(4642), + [anon_sym_DQUOTE] = ACTIONS(4642), + [anon_sym_POUND] = ACTIONS(4642), + [anon_sym_DOLLAR] = ACTIONS(4642), + [anon_sym_PERCENT] = ACTIONS(4642), + [anon_sym_AMP] = ACTIONS(4644), + [anon_sym_SQUOTE] = ACTIONS(4642), + [anon_sym_STAR] = ACTIONS(4642), + [anon_sym_PLUS] = ACTIONS(4642), + [anon_sym_COMMA] = ACTIONS(4642), + [anon_sym_DASH] = ACTIONS(4644), + [anon_sym_DOT] = ACTIONS(4644), + [anon_sym_SLASH] = ACTIONS(4642), + [anon_sym_COLON] = ACTIONS(4642), + [anon_sym_SEMI] = ACTIONS(4642), + [anon_sym_EQ] = ACTIONS(4642), + [anon_sym_QMARK] = ACTIONS(4642), + [anon_sym_LBRACK] = ACTIONS(4644), + [anon_sym_BSLASH] = ACTIONS(4644), + [anon_sym_CARET] = ACTIONS(4644), + [anon_sym__] = ACTIONS(4642), + [anon_sym_BQUOTE] = ACTIONS(4642), + [anon_sym_LBRACE] = ACTIONS(4642), + [anon_sym_PIPE] = ACTIONS(4642), + [anon_sym_TILDE] = ACTIONS(4642), + [anon_sym_LPAREN] = ACTIONS(4642), + [anon_sym_RPAREN] = ACTIONS(4642), + [sym__newline_token] = ACTIONS(1075), + [aux_sym_insert_token1] = ACTIONS(4642), + [aux_sym_delete_token1] = ACTIONS(4642), + [aux_sym_highlight_token1] = ACTIONS(4642), + [aux_sym_edit_comment_token1] = ACTIONS(4642), + [anon_sym_CARET_LBRACK] = ACTIONS(4642), + [anon_sym_LBRACK_CARET] = ACTIONS(4642), + [sym_uri_autolink] = ACTIONS(4642), + [sym_email_autolink] = ACTIONS(4642), + [sym__whitespace_ge_2] = ACTIONS(4642), + [aux_sym__whitespace_token1] = ACTIONS(4644), + [sym__word_no_digit] = ACTIONS(4642), + [sym__digits] = ACTIONS(4642), + [anon_sym_DASH_DASH] = ACTIONS(4644), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4642), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4642), + [sym__code_span_start] = ACTIONS(4642), + [sym__emphasis_open_star] = ACTIONS(4642), + [sym__emphasis_open_underscore] = ACTIONS(4642), + [sym__emphasis_close_underscore] = ACTIONS(4642), + [sym__last_token_whitespace] = ACTIONS(4686), + [sym__strikeout_open] = ACTIONS(4642), + [sym__latex_span_start] = ACTIONS(4642), + [sym__single_quote_open] = ACTIONS(4642), + [sym__double_quote_open] = ACTIONS(4642), + [sym__superscript_open] = ACTIONS(4642), + [sym__subscript_open] = ACTIONS(4642), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4642), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4642), + [sym__cite_author_in_text] = ACTIONS(4642), + [sym__cite_suppress_author] = ACTIONS(4642), + [sym__shortcode_open_escaped] = ACTIONS(4642), + [sym__shortcode_open] = ACTIONS(4642), + [sym__unclosed_span] = ACTIONS(4642), + }, + [STATE(574)] = { + [sym__soft_line_break] = STATE(1366), + [sym__backslash_escape] = ACTIONS(4642), + [sym_entity_reference] = ACTIONS(4642), + [sym_numeric_character_reference] = ACTIONS(4642), + [anon_sym_LT] = ACTIONS(4644), + [anon_sym_GT] = ACTIONS(4642), + [anon_sym_BANG] = ACTIONS(4642), + [anon_sym_DQUOTE] = ACTIONS(4642), + [anon_sym_POUND] = ACTIONS(4642), + [anon_sym_DOLLAR] = ACTIONS(4642), + [anon_sym_PERCENT] = ACTIONS(4642), + [anon_sym_AMP] = ACTIONS(4644), + [anon_sym_SQUOTE] = ACTIONS(4642), + [anon_sym_STAR] = ACTIONS(4642), + [anon_sym_PLUS] = ACTIONS(4642), + [anon_sym_COMMA] = ACTIONS(4642), + [anon_sym_DASH] = ACTIONS(4644), + [anon_sym_DOT] = ACTIONS(4644), + [anon_sym_SLASH] = ACTIONS(4642), + [anon_sym_COLON] = ACTIONS(4642), + [anon_sym_SEMI] = ACTIONS(4642), + [anon_sym_EQ] = ACTIONS(4642), + [anon_sym_QMARK] = ACTIONS(4642), + [anon_sym_LBRACK] = ACTIONS(4644), + [anon_sym_BSLASH] = ACTIONS(4644), + [anon_sym_CARET] = ACTIONS(4644), + [anon_sym__] = ACTIONS(4642), + [anon_sym_BQUOTE] = ACTIONS(4642), + [anon_sym_LBRACE] = ACTIONS(4642), + [anon_sym_PIPE] = ACTIONS(4642), + [anon_sym_TILDE] = ACTIONS(4642), + [anon_sym_LPAREN] = ACTIONS(4642), + [anon_sym_RPAREN] = ACTIONS(4642), + [sym__newline_token] = ACTIONS(2021), + [aux_sym_insert_token1] = ACTIONS(4642), + [aux_sym_delete_token1] = ACTIONS(4642), + [aux_sym_highlight_token1] = ACTIONS(4642), + [aux_sym_edit_comment_token1] = ACTIONS(4642), + [anon_sym_CARET_LBRACK] = ACTIONS(4642), + [anon_sym_LBRACK_CARET] = ACTIONS(4642), + [sym_uri_autolink] = ACTIONS(4642), + [sym_email_autolink] = ACTIONS(4642), + [sym__whitespace_ge_2] = ACTIONS(4642), + [aux_sym__whitespace_token1] = ACTIONS(4644), + [sym__word_no_digit] = ACTIONS(4642), + [sym__digits] = ACTIONS(4642), + [anon_sym_DASH_DASH] = ACTIONS(4644), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4642), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4642), + [sym__code_span_start] = ACTIONS(4642), + [sym__emphasis_open_star] = ACTIONS(4642), + [sym__emphasis_open_underscore] = ACTIONS(4642), + [sym__last_token_whitespace] = ACTIONS(4688), + [sym__strikeout_open] = ACTIONS(4642), + [sym__strikeout_close] = ACTIONS(4642), + [sym__latex_span_start] = ACTIONS(4642), + [sym__single_quote_open] = ACTIONS(4642), + [sym__double_quote_open] = ACTIONS(4642), + [sym__superscript_open] = ACTIONS(4642), + [sym__subscript_open] = ACTIONS(4642), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4642), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4642), + [sym__cite_author_in_text] = ACTIONS(4642), + [sym__cite_suppress_author] = ACTIONS(4642), + [sym__shortcode_open_escaped] = ACTIONS(4642), + [sym__shortcode_open] = ACTIONS(4642), + [sym__unclosed_span] = ACTIONS(4642), + }, + [STATE(575)] = { + [sym__backslash_escape] = ACTIONS(4690), + [sym_entity_reference] = ACTIONS(4690), + [sym_numeric_character_reference] = ACTIONS(4690), + [anon_sym_LT] = ACTIONS(4692), + [anon_sym_GT] = ACTIONS(4690), + [anon_sym_BANG] = ACTIONS(4690), + [anon_sym_DQUOTE] = ACTIONS(4690), + [anon_sym_POUND] = ACTIONS(4690), + [anon_sym_DOLLAR] = ACTIONS(4690), + [anon_sym_PERCENT] = ACTIONS(4690), + [anon_sym_AMP] = ACTIONS(4692), + [anon_sym_SQUOTE] = ACTIONS(4690), + [anon_sym_STAR] = ACTIONS(4690), + [anon_sym_PLUS] = ACTIONS(4690), + [anon_sym_COMMA] = ACTIONS(4690), + [anon_sym_DASH] = ACTIONS(4692), + [anon_sym_DOT] = ACTIONS(4692), + [anon_sym_SLASH] = ACTIONS(4690), + [anon_sym_COLON] = ACTIONS(4690), + [anon_sym_SEMI] = ACTIONS(4690), + [anon_sym_EQ] = ACTIONS(4690), + [anon_sym_QMARK] = ACTIONS(4690), + [anon_sym_LBRACK] = ACTIONS(4692), + [anon_sym_BSLASH] = ACTIONS(4692), + [anon_sym_CARET] = ACTIONS(4692), + [anon_sym__] = ACTIONS(4690), + [anon_sym_BQUOTE] = ACTIONS(4690), + [anon_sym_LBRACE] = ACTIONS(4690), + [anon_sym_PIPE] = ACTIONS(4690), + [anon_sym_TILDE] = ACTIONS(4690), + [anon_sym_LPAREN] = ACTIONS(4690), + [anon_sym_RPAREN] = ACTIONS(4690), + [sym__newline_token] = ACTIONS(4690), + [aux_sym_insert_token1] = ACTIONS(4690), + [aux_sym_insert_token2] = ACTIONS(4690), + [aux_sym_delete_token1] = ACTIONS(4690), + [aux_sym_highlight_token1] = ACTIONS(4690), + [aux_sym_edit_comment_token1] = ACTIONS(4690), + [anon_sym_CARET_LBRACK] = ACTIONS(4690), + [anon_sym_LBRACK_CARET] = ACTIONS(4690), + [sym_uri_autolink] = ACTIONS(4690), + [sym_email_autolink] = ACTIONS(4690), + [sym__whitespace_ge_2] = ACTIONS(4692), + [aux_sym__whitespace_token1] = ACTIONS(4692), + [sym__word_no_digit] = ACTIONS(4690), + [sym__digits] = ACTIONS(4690), + [anon_sym_DASH_DASH] = ACTIONS(4692), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4690), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4690), + [sym__code_span_start] = ACTIONS(4690), + [sym__emphasis_open_star] = ACTIONS(4690), + [sym__emphasis_open_underscore] = ACTIONS(4690), + [sym__last_token_punctuation] = ACTIONS(4694), + [sym__strikeout_open] = ACTIONS(4690), + [sym__latex_span_start] = ACTIONS(4690), + [sym__single_quote_open] = ACTIONS(4690), + [sym__double_quote_open] = ACTIONS(4690), + [sym__superscript_open] = ACTIONS(4690), + [sym__subscript_open] = ACTIONS(4690), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4690), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4690), + [sym__cite_author_in_text] = ACTIONS(4690), + [sym__cite_suppress_author] = ACTIONS(4690), + [sym__shortcode_open_escaped] = ACTIONS(4690), + [sym__shortcode_open] = ACTIONS(4690), + [sym__unclosed_span] = ACTIONS(4690), + }, + [STATE(576)] = { + [sym__backslash_escape] = ACTIONS(4690), + [sym_entity_reference] = ACTIONS(4690), + [sym_numeric_character_reference] = ACTIONS(4690), + [anon_sym_LT] = ACTIONS(4692), + [anon_sym_GT] = ACTIONS(4690), + [anon_sym_BANG] = ACTIONS(4690), + [anon_sym_DQUOTE] = ACTIONS(4690), + [anon_sym_POUND] = ACTIONS(4690), + [anon_sym_DOLLAR] = ACTIONS(4690), + [anon_sym_PERCENT] = ACTIONS(4690), + [anon_sym_AMP] = ACTIONS(4692), + [anon_sym_SQUOTE] = ACTIONS(4690), + [anon_sym_STAR] = ACTIONS(4690), + [anon_sym_PLUS] = ACTIONS(4690), + [anon_sym_COMMA] = ACTIONS(4690), + [anon_sym_DASH] = ACTIONS(4692), + [anon_sym_DOT] = ACTIONS(4692), + [anon_sym_SLASH] = ACTIONS(4690), + [anon_sym_COLON] = ACTIONS(4690), + [anon_sym_SEMI] = ACTIONS(4690), + [anon_sym_EQ] = ACTIONS(4690), + [anon_sym_QMARK] = ACTIONS(4690), + [anon_sym_LBRACK] = ACTIONS(4692), + [anon_sym_BSLASH] = ACTIONS(4692), + [anon_sym_CARET] = ACTIONS(4692), + [anon_sym__] = ACTIONS(4690), + [anon_sym_BQUOTE] = ACTIONS(4690), + [anon_sym_LBRACE] = ACTIONS(4690), + [anon_sym_PIPE] = ACTIONS(4690), + [anon_sym_TILDE] = ACTIONS(4690), + [anon_sym_LPAREN] = ACTIONS(4690), + [anon_sym_RPAREN] = ACTIONS(4690), + [sym__newline_token] = ACTIONS(4690), + [aux_sym_insert_token1] = ACTIONS(4690), + [aux_sym_delete_token1] = ACTIONS(4690), + [aux_sym_highlight_token1] = ACTIONS(4690), + [aux_sym_edit_comment_token1] = ACTIONS(4690), + [anon_sym_CARET_LBRACK] = ACTIONS(4690), + [anon_sym_LBRACK_CARET] = ACTIONS(4690), + [sym_uri_autolink] = ACTIONS(4690), + [sym_email_autolink] = ACTIONS(4690), + [sym__whitespace_ge_2] = ACTIONS(4690), + [aux_sym__whitespace_token1] = ACTIONS(4692), + [sym__word_no_digit] = ACTIONS(4690), + [sym__digits] = ACTIONS(4690), + [anon_sym_DASH_DASH] = ACTIONS(4692), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4690), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4690), + [sym__code_span_start] = ACTIONS(4690), + [sym__emphasis_open_star] = ACTIONS(4690), + [sym__emphasis_open_underscore] = ACTIONS(4690), + [sym__last_token_punctuation] = ACTIONS(4696), + [sym__strikeout_open] = ACTIONS(4690), + [sym__latex_span_start] = ACTIONS(4690), + [sym__single_quote_open] = ACTIONS(4690), + [sym__double_quote_open] = ACTIONS(4690), + [sym__superscript_open] = ACTIONS(4690), + [sym__superscript_close] = ACTIONS(4690), + [sym__subscript_open] = ACTIONS(4690), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4690), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4690), + [sym__cite_author_in_text] = ACTIONS(4690), + [sym__cite_suppress_author] = ACTIONS(4690), + [sym__shortcode_open_escaped] = ACTIONS(4690), + [sym__shortcode_open] = ACTIONS(4690), + [sym__unclosed_span] = ACTIONS(4690), + }, + [STATE(577)] = { + [ts_builtin_sym_end] = ACTIONS(4698), + [sym__backslash_escape] = ACTIONS(4698), + [sym_entity_reference] = ACTIONS(4698), + [sym_numeric_character_reference] = ACTIONS(4698), + [anon_sym_LT] = ACTIONS(4700), + [anon_sym_GT] = ACTIONS(4698), + [anon_sym_BANG] = ACTIONS(4698), + [anon_sym_DQUOTE] = ACTIONS(4698), + [anon_sym_POUND] = ACTIONS(4698), + [anon_sym_DOLLAR] = ACTIONS(4698), + [anon_sym_PERCENT] = ACTIONS(4698), + [anon_sym_AMP] = ACTIONS(4700), + [anon_sym_SQUOTE] = ACTIONS(4698), + [anon_sym_STAR] = ACTIONS(4698), + [anon_sym_PLUS] = ACTIONS(4698), + [anon_sym_COMMA] = ACTIONS(4698), + [anon_sym_DASH] = ACTIONS(4700), + [anon_sym_DOT] = ACTIONS(4700), + [anon_sym_SLASH] = ACTIONS(4698), + [anon_sym_COLON] = ACTIONS(4698), + [anon_sym_SEMI] = ACTIONS(4698), + [anon_sym_EQ] = ACTIONS(4698), + [anon_sym_QMARK] = ACTIONS(4698), + [anon_sym_LBRACK] = ACTIONS(4700), + [anon_sym_BSLASH] = ACTIONS(4700), + [anon_sym_CARET] = ACTIONS(4700), + [anon_sym__] = ACTIONS(4698), + [anon_sym_BQUOTE] = ACTIONS(4698), + [anon_sym_LBRACE] = ACTIONS(4698), + [anon_sym_PIPE] = ACTIONS(4698), + [anon_sym_TILDE] = ACTIONS(4698), + [anon_sym_LPAREN] = ACTIONS(4698), + [anon_sym_RPAREN] = ACTIONS(4698), + [sym__newline_token] = ACTIONS(4698), + [aux_sym_insert_token1] = ACTIONS(4698), + [aux_sym_delete_token1] = ACTIONS(4698), + [aux_sym_highlight_token1] = ACTIONS(4698), + [aux_sym_edit_comment_token1] = ACTIONS(4698), + [anon_sym_CARET_LBRACK] = ACTIONS(4698), + [anon_sym_LBRACK_CARET] = ACTIONS(4698), + [sym_uri_autolink] = ACTIONS(4698), + [sym_email_autolink] = ACTIONS(4698), + [sym__whitespace_ge_2] = ACTIONS(4698), + [aux_sym__whitespace_token1] = ACTIONS(4700), + [sym__word_no_digit] = ACTIONS(4698), + [sym__digits] = ACTIONS(4698), + [anon_sym_DASH_DASH] = ACTIONS(4700), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4698), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4698), + [sym__code_span_start] = ACTIONS(4698), + [sym__emphasis_open_star] = ACTIONS(4698), + [sym__emphasis_open_underscore] = ACTIONS(4698), + [sym__last_token_punctuation] = ACTIONS(4702), + [sym__strikeout_open] = ACTIONS(4698), + [sym__latex_span_start] = ACTIONS(4698), + [sym__single_quote_open] = ACTIONS(4698), + [sym__double_quote_open] = ACTIONS(4698), + [sym__superscript_open] = ACTIONS(4698), + [sym__subscript_open] = ACTIONS(4698), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4698), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4698), + [sym__cite_author_in_text] = ACTIONS(4698), + [sym__cite_suppress_author] = ACTIONS(4698), + [sym__shortcode_open_escaped] = ACTIONS(4698), + [sym__shortcode_open] = ACTIONS(4698), + [sym__unclosed_span] = ACTIONS(4698), + }, + [STATE(578)] = { + [sym__backslash_escape] = ACTIONS(4704), + [sym_entity_reference] = ACTIONS(4704), + [sym_numeric_character_reference] = ACTIONS(4704), + [anon_sym_LT] = ACTIONS(4706), + [anon_sym_GT] = ACTIONS(4704), + [anon_sym_BANG] = ACTIONS(4704), + [anon_sym_DQUOTE] = ACTIONS(4704), + [anon_sym_POUND] = ACTIONS(4704), + [anon_sym_DOLLAR] = ACTIONS(4704), + [anon_sym_PERCENT] = ACTIONS(4704), + [anon_sym_AMP] = ACTIONS(4706), + [anon_sym_SQUOTE] = ACTIONS(4704), + [anon_sym_STAR] = ACTIONS(4704), + [anon_sym_PLUS] = ACTIONS(4704), + [anon_sym_COMMA] = ACTIONS(4704), + [anon_sym_DASH] = ACTIONS(4706), + [anon_sym_DOT] = ACTIONS(4706), + [anon_sym_SLASH] = ACTIONS(4704), + [anon_sym_COLON] = ACTIONS(4704), + [anon_sym_SEMI] = ACTIONS(4704), + [anon_sym_EQ] = ACTIONS(4704), + [anon_sym_QMARK] = ACTIONS(4704), + [anon_sym_LBRACK] = ACTIONS(4706), + [anon_sym_BSLASH] = ACTIONS(4706), + [anon_sym_CARET] = ACTIONS(4706), + [anon_sym__] = ACTIONS(4704), + [anon_sym_BQUOTE] = ACTIONS(4704), + [anon_sym_LBRACE] = ACTIONS(4704), + [anon_sym_PIPE] = ACTIONS(4704), + [anon_sym_TILDE] = ACTIONS(4704), + [anon_sym_LPAREN] = ACTIONS(4704), + [anon_sym_RPAREN] = ACTIONS(4704), + [sym__newline_token] = ACTIONS(4704), + [aux_sym_insert_token1] = ACTIONS(4704), + [aux_sym_delete_token1] = ACTIONS(4704), + [aux_sym_highlight_token1] = ACTIONS(4704), + [aux_sym_edit_comment_token1] = ACTIONS(4704), + [anon_sym_CARET_LBRACK] = ACTIONS(4704), + [anon_sym_LBRACK_CARET] = ACTIONS(4704), + [sym_uri_autolink] = ACTIONS(4704), + [sym_email_autolink] = ACTIONS(4704), + [sym__whitespace_ge_2] = ACTIONS(4704), + [aux_sym__whitespace_token1] = ACTIONS(4706), + [sym__word_no_digit] = ACTIONS(4704), + [sym__digits] = ACTIONS(4704), + [anon_sym_DASH_DASH] = ACTIONS(4706), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4704), + [sym__code_span_start] = ACTIONS(4704), + [sym__emphasis_open_star] = ACTIONS(4704), + [sym__emphasis_open_underscore] = ACTIONS(4704), + [sym__last_token_punctuation] = ACTIONS(4708), + [sym__strikeout_open] = ACTIONS(4704), + [sym__latex_span_start] = ACTIONS(4704), + [sym__single_quote_open] = ACTIONS(4704), + [sym__double_quote_open] = ACTIONS(4704), + [sym__superscript_open] = ACTIONS(4704), + [sym__subscript_open] = ACTIONS(4704), + [sym__subscript_close] = ACTIONS(4704), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4704), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4704), + [sym__cite_author_in_text] = ACTIONS(4704), + [sym__cite_suppress_author] = ACTIONS(4704), + [sym__shortcode_open_escaped] = ACTIONS(4704), + [sym__shortcode_open] = ACTIONS(4704), + [sym__unclosed_span] = ACTIONS(4704), + }, + [STATE(579)] = { + [sym__backslash_escape] = ACTIONS(4698), + [sym_entity_reference] = ACTIONS(4698), + [sym_numeric_character_reference] = ACTIONS(4698), + [anon_sym_LT] = ACTIONS(4700), + [anon_sym_GT] = ACTIONS(4698), + [anon_sym_BANG] = ACTIONS(4698), + [anon_sym_DQUOTE] = ACTIONS(4698), + [anon_sym_POUND] = ACTIONS(4698), + [anon_sym_DOLLAR] = ACTIONS(4698), + [anon_sym_PERCENT] = ACTIONS(4698), + [anon_sym_AMP] = ACTIONS(4700), + [anon_sym_SQUOTE] = ACTIONS(4698), + [anon_sym_STAR] = ACTIONS(4698), + [anon_sym_PLUS] = ACTIONS(4698), + [anon_sym_COMMA] = ACTIONS(4698), + [anon_sym_DASH] = ACTIONS(4700), + [anon_sym_DOT] = ACTIONS(4700), + [anon_sym_SLASH] = ACTIONS(4698), + [anon_sym_COLON] = ACTIONS(4698), + [anon_sym_SEMI] = ACTIONS(4698), + [anon_sym_EQ] = ACTIONS(4698), + [anon_sym_QMARK] = ACTIONS(4698), + [anon_sym_LBRACK] = ACTIONS(4700), + [anon_sym_BSLASH] = ACTIONS(4700), + [anon_sym_CARET] = ACTIONS(4700), + [anon_sym__] = ACTIONS(4698), + [anon_sym_BQUOTE] = ACTIONS(4698), + [anon_sym_LBRACE] = ACTIONS(4698), + [anon_sym_PIPE] = ACTIONS(4698), + [anon_sym_TILDE] = ACTIONS(4698), + [anon_sym_LPAREN] = ACTIONS(4698), + [anon_sym_RPAREN] = ACTIONS(4698), + [sym__newline_token] = ACTIONS(4698), + [aux_sym_insert_token1] = ACTIONS(4698), + [aux_sym_delete_token1] = ACTIONS(4698), + [aux_sym_highlight_token1] = ACTIONS(4698), + [aux_sym_edit_comment_token1] = ACTIONS(4698), + [anon_sym_CARET_LBRACK] = ACTIONS(4698), + [anon_sym_LBRACK_CARET] = ACTIONS(4698), + [sym_uri_autolink] = ACTIONS(4698), + [sym_email_autolink] = ACTIONS(4698), + [sym__whitespace_ge_2] = ACTIONS(4698), + [aux_sym__whitespace_token1] = ACTIONS(4700), + [sym__word_no_digit] = ACTIONS(4698), + [sym__digits] = ACTIONS(4698), + [anon_sym_DASH_DASH] = ACTIONS(4700), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4698), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4698), + [sym__code_span_start] = ACTIONS(4698), + [sym__emphasis_open_star] = ACTIONS(4698), + [sym__emphasis_open_underscore] = ACTIONS(4698), + [sym__last_token_punctuation] = ACTIONS(4710), + [sym__strikeout_open] = ACTIONS(4698), + [sym__latex_span_start] = ACTIONS(4698), + [sym__single_quote_open] = ACTIONS(4698), + [sym__double_quote_open] = ACTIONS(4698), + [sym__superscript_open] = ACTIONS(4698), + [sym__superscript_close] = ACTIONS(4698), + [sym__subscript_open] = ACTIONS(4698), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4698), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4698), + [sym__cite_author_in_text] = ACTIONS(4698), + [sym__cite_suppress_author] = ACTIONS(4698), + [sym__shortcode_open_escaped] = ACTIONS(4698), + [sym__shortcode_open] = ACTIONS(4698), + [sym__unclosed_span] = ACTIONS(4698), + }, + [STATE(580)] = { + [sym__backslash_escape] = ACTIONS(4704), + [sym_entity_reference] = ACTIONS(4704), + [sym_numeric_character_reference] = ACTIONS(4704), + [anon_sym_LT] = ACTIONS(4706), + [anon_sym_GT] = ACTIONS(4704), + [anon_sym_BANG] = ACTIONS(4704), + [anon_sym_DQUOTE] = ACTIONS(4704), + [anon_sym_POUND] = ACTIONS(4704), + [anon_sym_DOLLAR] = ACTIONS(4704), + [anon_sym_PERCENT] = ACTIONS(4704), + [anon_sym_AMP] = ACTIONS(4706), + [anon_sym_SQUOTE] = ACTIONS(4704), + [anon_sym_STAR] = ACTIONS(4704), + [anon_sym_PLUS] = ACTIONS(4704), + [anon_sym_COMMA] = ACTIONS(4704), + [anon_sym_DASH] = ACTIONS(4706), + [anon_sym_DOT] = ACTIONS(4706), + [anon_sym_SLASH] = ACTIONS(4704), + [anon_sym_COLON] = ACTIONS(4704), + [anon_sym_SEMI] = ACTIONS(4704), + [anon_sym_EQ] = ACTIONS(4704), + [anon_sym_QMARK] = ACTIONS(4704), + [anon_sym_LBRACK] = ACTIONS(4706), + [anon_sym_BSLASH] = ACTIONS(4706), + [anon_sym_CARET] = ACTIONS(4706), + [anon_sym__] = ACTIONS(4704), + [anon_sym_BQUOTE] = ACTIONS(4704), + [anon_sym_LBRACE] = ACTIONS(4704), + [anon_sym_PIPE] = ACTIONS(4704), + [anon_sym_TILDE] = ACTIONS(4704), + [anon_sym_LPAREN] = ACTIONS(4704), + [anon_sym_RPAREN] = ACTIONS(4704), + [sym__newline_token] = ACTIONS(4704), + [aux_sym_insert_token1] = ACTIONS(4704), + [aux_sym_delete_token1] = ACTIONS(4704), + [aux_sym_highlight_token1] = ACTIONS(4704), + [aux_sym_edit_comment_token1] = ACTIONS(4704), + [anon_sym_CARET_LBRACK] = ACTIONS(4704), + [anon_sym_LBRACK_CARET] = ACTIONS(4704), + [sym_uri_autolink] = ACTIONS(4704), + [sym_email_autolink] = ACTIONS(4704), + [sym__whitespace_ge_2] = ACTIONS(4704), + [aux_sym__whitespace_token1] = ACTIONS(4706), + [sym__word_no_digit] = ACTIONS(4704), + [sym__digits] = ACTIONS(4704), + [anon_sym_DASH_DASH] = ACTIONS(4706), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4704), + [sym__code_span_start] = ACTIONS(4704), + [sym__emphasis_open_star] = ACTIONS(4704), + [sym__emphasis_open_underscore] = ACTIONS(4704), + [sym__last_token_punctuation] = ACTIONS(4712), + [sym__strikeout_open] = ACTIONS(4704), + [sym__latex_span_start] = ACTIONS(4704), + [sym__single_quote_open] = ACTIONS(4704), + [sym__double_quote_open] = ACTIONS(4704), + [sym__double_quote_close] = ACTIONS(4704), + [sym__superscript_open] = ACTIONS(4704), + [sym__subscript_open] = ACTIONS(4704), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4704), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4704), + [sym__cite_author_in_text] = ACTIONS(4704), + [sym__cite_suppress_author] = ACTIONS(4704), + [sym__shortcode_open_escaped] = ACTIONS(4704), + [sym__shortcode_open] = ACTIONS(4704), + [sym__unclosed_span] = ACTIONS(4704), + }, + [STATE(581)] = { + [sym__backslash_escape] = ACTIONS(4690), + [sym_entity_reference] = ACTIONS(4690), + [sym_numeric_character_reference] = ACTIONS(4690), + [anon_sym_LT] = ACTIONS(4692), + [anon_sym_GT] = ACTIONS(4690), + [anon_sym_BANG] = ACTIONS(4690), + [anon_sym_DQUOTE] = ACTIONS(4690), + [anon_sym_POUND] = ACTIONS(4690), + [anon_sym_DOLLAR] = ACTIONS(4690), + [anon_sym_PERCENT] = ACTIONS(4690), + [anon_sym_AMP] = ACTIONS(4692), + [anon_sym_SQUOTE] = ACTIONS(4690), + [anon_sym_STAR] = ACTIONS(4690), + [anon_sym_PLUS] = ACTIONS(4690), + [anon_sym_COMMA] = ACTIONS(4690), + [anon_sym_DASH] = ACTIONS(4692), + [anon_sym_DOT] = ACTIONS(4692), + [anon_sym_SLASH] = ACTIONS(4690), + [anon_sym_COLON] = ACTIONS(4690), + [anon_sym_SEMI] = ACTIONS(4690), + [anon_sym_EQ] = ACTIONS(4690), + [anon_sym_QMARK] = ACTIONS(4690), + [anon_sym_LBRACK] = ACTIONS(4692), + [anon_sym_BSLASH] = ACTIONS(4692), + [anon_sym_CARET] = ACTIONS(4692), + [anon_sym__] = ACTIONS(4690), + [anon_sym_BQUOTE] = ACTIONS(4690), + [anon_sym_LBRACE] = ACTIONS(4690), + [anon_sym_PIPE] = ACTIONS(4690), + [anon_sym_TILDE] = ACTIONS(4690), + [anon_sym_LPAREN] = ACTIONS(4690), + [anon_sym_RPAREN] = ACTIONS(4690), + [sym__newline_token] = ACTIONS(4690), + [aux_sym_insert_token1] = ACTIONS(4690), + [aux_sym_delete_token1] = ACTIONS(4690), + [aux_sym_highlight_token1] = ACTIONS(4690), + [aux_sym_edit_comment_token1] = ACTIONS(4690), + [anon_sym_CARET_LBRACK] = ACTIONS(4690), + [anon_sym_LBRACK_CARET] = ACTIONS(4690), + [sym_uri_autolink] = ACTIONS(4690), + [sym_email_autolink] = ACTIONS(4690), + [sym__whitespace_ge_2] = ACTIONS(4690), + [aux_sym__whitespace_token1] = ACTIONS(4692), + [sym__word_no_digit] = ACTIONS(4690), + [sym__digits] = ACTIONS(4690), + [anon_sym_DASH_DASH] = ACTIONS(4692), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4690), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4690), + [sym__code_span_start] = ACTIONS(4690), + [sym__emphasis_open_star] = ACTIONS(4690), + [sym__emphasis_open_underscore] = ACTIONS(4690), + [sym__last_token_punctuation] = ACTIONS(4714), + [sym__strikeout_open] = ACTIONS(4690), + [sym__latex_span_start] = ACTIONS(4690), + [sym__single_quote_open] = ACTIONS(4690), + [sym__double_quote_open] = ACTIONS(4690), + [sym__superscript_open] = ACTIONS(4690), + [sym__subscript_open] = ACTIONS(4690), + [sym__subscript_close] = ACTIONS(4690), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4690), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4690), + [sym__cite_author_in_text] = ACTIONS(4690), + [sym__cite_suppress_author] = ACTIONS(4690), + [sym__shortcode_open_escaped] = ACTIONS(4690), + [sym__shortcode_open] = ACTIONS(4690), + [sym__unclosed_span] = ACTIONS(4690), + }, + [STATE(582)] = { + [sym__backslash_escape] = ACTIONS(4698), + [sym_entity_reference] = ACTIONS(4698), + [sym_numeric_character_reference] = ACTIONS(4698), + [anon_sym_LT] = ACTIONS(4700), + [anon_sym_GT] = ACTIONS(4698), + [anon_sym_BANG] = ACTIONS(4698), + [anon_sym_DQUOTE] = ACTIONS(4698), + [anon_sym_POUND] = ACTIONS(4698), + [anon_sym_DOLLAR] = ACTIONS(4698), + [anon_sym_PERCENT] = ACTIONS(4698), + [anon_sym_AMP] = ACTIONS(4700), + [anon_sym_SQUOTE] = ACTIONS(4698), + [anon_sym_STAR] = ACTIONS(4698), + [anon_sym_PLUS] = ACTIONS(4698), + [anon_sym_COMMA] = ACTIONS(4698), + [anon_sym_DASH] = ACTIONS(4700), + [anon_sym_DOT] = ACTIONS(4700), + [anon_sym_SLASH] = ACTIONS(4698), + [anon_sym_COLON] = ACTIONS(4698), + [anon_sym_SEMI] = ACTIONS(4698), + [anon_sym_EQ] = ACTIONS(4698), + [anon_sym_QMARK] = ACTIONS(4698), + [anon_sym_LBRACK] = ACTIONS(4700), + [anon_sym_BSLASH] = ACTIONS(4700), + [anon_sym_CARET] = ACTIONS(4700), + [anon_sym__] = ACTIONS(4698), + [anon_sym_BQUOTE] = ACTIONS(4698), + [anon_sym_LBRACE] = ACTIONS(4698), + [anon_sym_PIPE] = ACTIONS(4698), + [anon_sym_TILDE] = ACTIONS(4698), + [anon_sym_LPAREN] = ACTIONS(4698), + [anon_sym_RPAREN] = ACTIONS(4698), + [sym__newline_token] = ACTIONS(4698), + [aux_sym_insert_token1] = ACTIONS(4698), + [aux_sym_delete_token1] = ACTIONS(4698), + [aux_sym_highlight_token1] = ACTIONS(4698), + [aux_sym_edit_comment_token1] = ACTIONS(4698), + [anon_sym_CARET_LBRACK] = ACTIONS(4698), + [anon_sym_LBRACK_CARET] = ACTIONS(4698), + [sym_uri_autolink] = ACTIONS(4698), + [sym_email_autolink] = ACTIONS(4698), + [sym__whitespace_ge_2] = ACTIONS(4698), + [aux_sym__whitespace_token1] = ACTIONS(4700), + [sym__word_no_digit] = ACTIONS(4698), + [sym__digits] = ACTIONS(4698), + [anon_sym_DASH_DASH] = ACTIONS(4700), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4698), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4698), + [sym__code_span_start] = ACTIONS(4698), + [sym__emphasis_open_star] = ACTIONS(4698), + [sym__emphasis_open_underscore] = ACTIONS(4698), + [sym__last_token_punctuation] = ACTIONS(4716), + [sym__strikeout_open] = ACTIONS(4698), + [sym__latex_span_start] = ACTIONS(4698), + [sym__single_quote_open] = ACTIONS(4698), + [sym__double_quote_open] = ACTIONS(4698), + [sym__superscript_open] = ACTIONS(4698), + [sym__subscript_open] = ACTIONS(4698), + [sym__subscript_close] = ACTIONS(4698), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4698), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4698), + [sym__cite_author_in_text] = ACTIONS(4698), + [sym__cite_suppress_author] = ACTIONS(4698), + [sym__shortcode_open_escaped] = ACTIONS(4698), + [sym__shortcode_open] = ACTIONS(4698), + [sym__unclosed_span] = ACTIONS(4698), + }, + [STATE(583)] = { + [sym__backslash_escape] = ACTIONS(4648), + [sym_entity_reference] = ACTIONS(4648), + [sym_numeric_character_reference] = ACTIONS(4648), + [anon_sym_LT] = ACTIONS(4650), + [anon_sym_GT] = ACTIONS(4648), + [anon_sym_BANG] = ACTIONS(4648), + [anon_sym_DQUOTE] = ACTIONS(4648), + [anon_sym_POUND] = ACTIONS(4648), + [anon_sym_DOLLAR] = ACTIONS(4648), + [anon_sym_PERCENT] = ACTIONS(4648), + [anon_sym_AMP] = ACTIONS(4650), + [anon_sym_SQUOTE] = ACTIONS(4648), + [anon_sym_STAR] = ACTIONS(4648), + [anon_sym_PLUS] = ACTIONS(4648), + [anon_sym_COMMA] = ACTIONS(4648), + [anon_sym_DASH] = ACTIONS(4650), + [anon_sym_DOT] = ACTIONS(4650), + [anon_sym_SLASH] = ACTIONS(4648), + [anon_sym_COLON] = ACTIONS(4648), + [anon_sym_SEMI] = ACTIONS(4648), + [anon_sym_EQ] = ACTIONS(4648), + [anon_sym_QMARK] = ACTIONS(4648), + [anon_sym_LBRACK] = ACTIONS(4650), + [anon_sym_BSLASH] = ACTIONS(4650), + [anon_sym_CARET] = ACTIONS(4650), + [anon_sym__] = ACTIONS(4648), + [anon_sym_BQUOTE] = ACTIONS(4648), + [anon_sym_LBRACE] = ACTIONS(4648), + [anon_sym_PIPE] = ACTIONS(4648), + [anon_sym_TILDE] = ACTIONS(4648), + [anon_sym_LPAREN] = ACTIONS(4648), + [anon_sym_RPAREN] = ACTIONS(4648), + [sym__newline_token] = ACTIONS(4648), + [aux_sym_insert_token1] = ACTIONS(4648), + [aux_sym_delete_token1] = ACTIONS(4648), + [aux_sym_highlight_token1] = ACTIONS(4648), + [aux_sym_edit_comment_token1] = ACTIONS(4648), + [anon_sym_CARET_LBRACK] = ACTIONS(4648), + [anon_sym_LBRACK_CARET] = ACTIONS(4648), + [sym_uri_autolink] = ACTIONS(4648), + [sym_email_autolink] = ACTIONS(4648), + [sym__whitespace_ge_2] = ACTIONS(4648), + [aux_sym__whitespace_token1] = ACTIONS(4650), + [sym__word_no_digit] = ACTIONS(4648), + [sym__digits] = ACTIONS(4648), + [anon_sym_DASH_DASH] = ACTIONS(4650), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4648), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4648), + [sym__code_span_start] = ACTIONS(4648), + [sym__emphasis_open_star] = ACTIONS(4648), + [sym__emphasis_open_underscore] = ACTIONS(4648), + [sym__last_token_punctuation] = ACTIONS(4676), + [sym__strikeout_open] = ACTIONS(4648), + [sym__latex_span_start] = ACTIONS(4648), + [sym__single_quote_open] = ACTIONS(4648), + [sym__double_quote_open] = ACTIONS(4648), + [sym__double_quote_close] = ACTIONS(4648), + [sym__superscript_open] = ACTIONS(4648), + [sym__subscript_open] = ACTIONS(4648), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4648), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4648), + [sym__cite_author_in_text] = ACTIONS(4648), + [sym__cite_suppress_author] = ACTIONS(4648), + [sym__shortcode_open_escaped] = ACTIONS(4648), + [sym__shortcode_open] = ACTIONS(4648), + [sym__unclosed_span] = ACTIONS(4648), + }, + [STATE(584)] = { + [sym__backslash_escape] = ACTIONS(4648), + [sym_entity_reference] = ACTIONS(4648), + [sym_numeric_character_reference] = ACTIONS(4648), + [anon_sym_LT] = ACTIONS(4650), + [anon_sym_GT] = ACTIONS(4648), + [anon_sym_BANG] = ACTIONS(4648), + [anon_sym_DQUOTE] = ACTIONS(4648), + [anon_sym_POUND] = ACTIONS(4648), + [anon_sym_DOLLAR] = ACTIONS(4648), + [anon_sym_PERCENT] = ACTIONS(4648), + [anon_sym_AMP] = ACTIONS(4650), + [anon_sym_SQUOTE] = ACTIONS(4648), + [anon_sym_STAR] = ACTIONS(4648), + [anon_sym_PLUS] = ACTIONS(4648), + [anon_sym_COMMA] = ACTIONS(4648), + [anon_sym_DASH] = ACTIONS(4650), + [anon_sym_DOT] = ACTIONS(4650), + [anon_sym_SLASH] = ACTIONS(4648), + [anon_sym_COLON] = ACTIONS(4648), + [anon_sym_SEMI] = ACTIONS(4648), + [anon_sym_EQ] = ACTIONS(4648), + [anon_sym_QMARK] = ACTIONS(4648), + [anon_sym_LBRACK] = ACTIONS(4650), + [anon_sym_BSLASH] = ACTIONS(4650), + [anon_sym_CARET] = ACTIONS(4650), + [anon_sym__] = ACTIONS(4648), + [anon_sym_BQUOTE] = ACTIONS(4648), + [anon_sym_LBRACE] = ACTIONS(4648), + [anon_sym_PIPE] = ACTIONS(4648), + [anon_sym_TILDE] = ACTIONS(4648), + [anon_sym_LPAREN] = ACTIONS(4648), + [anon_sym_RPAREN] = ACTIONS(4648), + [sym__newline_token] = ACTIONS(4648), + [aux_sym_insert_token1] = ACTIONS(4648), + [aux_sym_delete_token1] = ACTIONS(4648), + [aux_sym_highlight_token1] = ACTIONS(4648), + [aux_sym_edit_comment_token1] = ACTIONS(4648), + [anon_sym_CARET_LBRACK] = ACTIONS(4648), + [anon_sym_LBRACK_CARET] = ACTIONS(4648), + [sym_uri_autolink] = ACTIONS(4648), + [sym_email_autolink] = ACTIONS(4648), + [sym__whitespace_ge_2] = ACTIONS(4648), + [aux_sym__whitespace_token1] = ACTIONS(4650), + [sym__word_no_digit] = ACTIONS(4648), + [sym__digits] = ACTIONS(4648), + [anon_sym_DASH_DASH] = ACTIONS(4650), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4648), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4648), + [sym__code_span_start] = ACTIONS(4648), + [sym__emphasis_open_star] = ACTIONS(4648), + [sym__emphasis_open_underscore] = ACTIONS(4648), + [sym__last_token_punctuation] = ACTIONS(4658), + [sym__strikeout_open] = ACTIONS(4648), + [sym__latex_span_start] = ACTIONS(4648), + [sym__single_quote_open] = ACTIONS(4648), + [sym__single_quote_close] = ACTIONS(4648), + [sym__double_quote_open] = ACTIONS(4648), + [sym__superscript_open] = ACTIONS(4648), + [sym__subscript_open] = ACTIONS(4648), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4648), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4648), + [sym__cite_author_in_text] = ACTIONS(4648), + [sym__cite_suppress_author] = ACTIONS(4648), + [sym__shortcode_open_escaped] = ACTIONS(4648), + [sym__shortcode_open] = ACTIONS(4648), + [sym__unclosed_span] = ACTIONS(4648), + }, + [STATE(585)] = { + [ts_builtin_sym_end] = ACTIONS(4718), + [sym__backslash_escape] = ACTIONS(4718), + [sym_entity_reference] = ACTIONS(4718), + [sym_numeric_character_reference] = ACTIONS(4718), + [anon_sym_LT] = ACTIONS(4720), + [anon_sym_GT] = ACTIONS(4718), + [anon_sym_BANG] = ACTIONS(4718), + [anon_sym_DQUOTE] = ACTIONS(4718), + [anon_sym_POUND] = ACTIONS(4718), + [anon_sym_DOLLAR] = ACTIONS(4718), + [anon_sym_PERCENT] = ACTIONS(4718), + [anon_sym_AMP] = ACTIONS(4720), + [anon_sym_SQUOTE] = ACTIONS(4718), + [anon_sym_STAR] = ACTIONS(4718), + [anon_sym_PLUS] = ACTIONS(4718), + [anon_sym_COMMA] = ACTIONS(4718), + [anon_sym_DASH] = ACTIONS(4720), + [anon_sym_DOT] = ACTIONS(4720), + [anon_sym_SLASH] = ACTIONS(4718), + [anon_sym_COLON] = ACTIONS(4718), + [anon_sym_SEMI] = ACTIONS(4718), + [anon_sym_EQ] = ACTIONS(4718), + [anon_sym_QMARK] = ACTIONS(4718), + [anon_sym_LBRACK] = ACTIONS(4720), + [anon_sym_BSLASH] = ACTIONS(4720), + [anon_sym_CARET] = ACTIONS(4720), + [anon_sym__] = ACTIONS(4718), + [anon_sym_BQUOTE] = ACTIONS(4718), + [anon_sym_LBRACE] = ACTIONS(4718), + [anon_sym_PIPE] = ACTIONS(4718), + [anon_sym_TILDE] = ACTIONS(4718), + [anon_sym_LPAREN] = ACTIONS(4718), + [anon_sym_RPAREN] = ACTIONS(4718), + [sym__newline_token] = ACTIONS(4718), + [aux_sym_insert_token1] = ACTIONS(4718), + [aux_sym_delete_token1] = ACTIONS(4718), + [aux_sym_highlight_token1] = ACTIONS(4718), + [aux_sym_edit_comment_token1] = ACTIONS(4718), + [anon_sym_CARET_LBRACK] = ACTIONS(4718), + [anon_sym_LBRACK_CARET] = ACTIONS(4718), + [sym_uri_autolink] = ACTIONS(4718), + [sym_email_autolink] = ACTIONS(4718), + [sym__whitespace_ge_2] = ACTIONS(4718), + [aux_sym__whitespace_token1] = ACTIONS(4720), + [sym__word_no_digit] = ACTIONS(4718), + [sym__digits] = ACTIONS(4718), + [anon_sym_DASH_DASH] = ACTIONS(4720), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4718), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4718), + [sym__code_span_start] = ACTIONS(4718), + [sym__emphasis_open_star] = ACTIONS(4718), + [sym__emphasis_open_underscore] = ACTIONS(4718), + [sym__last_token_punctuation] = ACTIONS(4722), + [sym__strikeout_open] = ACTIONS(4718), + [sym__latex_span_start] = ACTIONS(4718), + [sym__single_quote_open] = ACTIONS(4718), + [sym__double_quote_open] = ACTIONS(4718), + [sym__superscript_open] = ACTIONS(4718), + [sym__subscript_open] = ACTIONS(4718), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4718), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4718), + [sym__cite_author_in_text] = ACTIONS(4718), + [sym__cite_suppress_author] = ACTIONS(4718), + [sym__shortcode_open_escaped] = ACTIONS(4718), + [sym__shortcode_open] = ACTIONS(4718), + [sym__unclosed_span] = ACTIONS(4718), + }, + [STATE(586)] = { + [sym__backslash_escape] = ACTIONS(4648), + [sym_entity_reference] = ACTIONS(4648), + [sym_numeric_character_reference] = ACTIONS(4648), + [anon_sym_LT] = ACTIONS(4650), + [anon_sym_GT] = ACTIONS(4648), + [anon_sym_BANG] = ACTIONS(4648), + [anon_sym_DQUOTE] = ACTIONS(4648), + [anon_sym_POUND] = ACTIONS(4648), + [anon_sym_DOLLAR] = ACTIONS(4648), + [anon_sym_PERCENT] = ACTIONS(4648), + [anon_sym_AMP] = ACTIONS(4650), + [anon_sym_SQUOTE] = ACTIONS(4648), + [anon_sym_STAR] = ACTIONS(4648), + [anon_sym_PLUS] = ACTIONS(4648), + [anon_sym_COMMA] = ACTIONS(4648), + [anon_sym_DASH] = ACTIONS(4650), + [anon_sym_DOT] = ACTIONS(4650), + [anon_sym_SLASH] = ACTIONS(4648), + [anon_sym_COLON] = ACTIONS(4648), + [anon_sym_SEMI] = ACTIONS(4648), + [anon_sym_EQ] = ACTIONS(4648), + [anon_sym_QMARK] = ACTIONS(4648), + [anon_sym_LBRACK] = ACTIONS(4724), + [anon_sym_BSLASH] = ACTIONS(4650), + [anon_sym_CARET] = ACTIONS(4650), + [anon_sym__] = ACTIONS(4648), + [anon_sym_BQUOTE] = ACTIONS(4648), + [anon_sym_LBRACE] = ACTIONS(4648), + [anon_sym_PIPE] = ACTIONS(4648), + [anon_sym_TILDE] = ACTIONS(4648), + [anon_sym_LPAREN] = ACTIONS(4648), + [anon_sym_RPAREN] = ACTIONS(4648), + [sym__newline_token] = ACTIONS(4648), + [aux_sym_insert_token1] = ACTIONS(4648), + [aux_sym_delete_token1] = ACTIONS(4648), + [aux_sym_highlight_token1] = ACTIONS(4648), + [aux_sym_edit_comment_token1] = ACTIONS(4648), + [anon_sym_CARET_LBRACK] = ACTIONS(4648), + [anon_sym_LBRACK_CARET] = ACTIONS(4648), + [sym_uri_autolink] = ACTIONS(4648), + [sym_email_autolink] = ACTIONS(4648), + [sym__whitespace_ge_2] = ACTIONS(4648), + [aux_sym__whitespace_token1] = ACTIONS(4650), + [sym__word_no_digit] = ACTIONS(4648), + [sym__digits] = ACTIONS(4648), + [anon_sym_DASH_DASH] = ACTIONS(4650), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4648), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4648), + [sym__code_span_start] = ACTIONS(4648), + [sym__emphasis_open_star] = ACTIONS(4648), + [sym__emphasis_open_underscore] = ACTIONS(4648), + [sym__last_token_punctuation] = ACTIONS(4658), + [sym__strikeout_open] = ACTIONS(4648), + [sym__latex_span_start] = ACTIONS(4648), + [sym__single_quote_open] = ACTIONS(4648), + [sym__single_quote_close] = ACTIONS(4648), + [sym__double_quote_open] = ACTIONS(4648), + [sym__superscript_open] = ACTIONS(4648), + [sym__subscript_open] = ACTIONS(4648), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4648), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4648), + [sym__cite_author_in_text] = ACTIONS(4648), + [sym__cite_suppress_author] = ACTIONS(4648), + [sym__shortcode_open_escaped] = ACTIONS(4648), + [sym__shortcode_open] = ACTIONS(4648), + [sym__unclosed_span] = ACTIONS(4648), + }, + [STATE(587)] = { + [sym__backslash_escape] = ACTIONS(4718), + [sym_entity_reference] = ACTIONS(4718), + [sym_numeric_character_reference] = ACTIONS(4718), + [anon_sym_LT] = ACTIONS(4720), + [anon_sym_GT] = ACTIONS(4718), + [anon_sym_BANG] = ACTIONS(4718), + [anon_sym_DQUOTE] = ACTIONS(4718), + [anon_sym_POUND] = ACTIONS(4718), + [anon_sym_DOLLAR] = ACTIONS(4718), + [anon_sym_PERCENT] = ACTIONS(4718), + [anon_sym_AMP] = ACTIONS(4720), + [anon_sym_SQUOTE] = ACTIONS(4718), + [anon_sym_STAR] = ACTIONS(4718), + [anon_sym_PLUS] = ACTIONS(4718), + [anon_sym_COMMA] = ACTIONS(4718), + [anon_sym_DASH] = ACTIONS(4720), + [anon_sym_DOT] = ACTIONS(4720), + [anon_sym_SLASH] = ACTIONS(4718), + [anon_sym_COLON] = ACTIONS(4718), + [anon_sym_SEMI] = ACTIONS(4718), + [anon_sym_EQ] = ACTIONS(4718), + [anon_sym_QMARK] = ACTIONS(4718), + [anon_sym_LBRACK] = ACTIONS(4720), + [anon_sym_BSLASH] = ACTIONS(4720), + [anon_sym_CARET] = ACTIONS(4720), + [anon_sym__] = ACTIONS(4718), + [anon_sym_BQUOTE] = ACTIONS(4718), + [anon_sym_LBRACE] = ACTIONS(4718), + [anon_sym_PIPE] = ACTIONS(4718), + [anon_sym_TILDE] = ACTIONS(4718), + [anon_sym_LPAREN] = ACTIONS(4718), + [anon_sym_RPAREN] = ACTIONS(4718), + [sym__newline_token] = ACTIONS(4718), + [aux_sym_insert_token1] = ACTIONS(4718), + [aux_sym_delete_token1] = ACTIONS(4718), + [aux_sym_highlight_token1] = ACTIONS(4718), + [aux_sym_edit_comment_token1] = ACTIONS(4718), + [anon_sym_CARET_LBRACK] = ACTIONS(4718), + [anon_sym_LBRACK_CARET] = ACTIONS(4718), + [sym_uri_autolink] = ACTIONS(4718), + [sym_email_autolink] = ACTIONS(4718), + [sym__whitespace_ge_2] = ACTIONS(4718), + [aux_sym__whitespace_token1] = ACTIONS(4720), + [sym__word_no_digit] = ACTIONS(4718), + [sym__digits] = ACTIONS(4718), + [anon_sym_DASH_DASH] = ACTIONS(4720), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4718), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4718), + [sym__code_span_start] = ACTIONS(4718), + [sym__emphasis_open_star] = ACTIONS(4718), + [sym__emphasis_open_underscore] = ACTIONS(4718), + [sym__last_token_punctuation] = ACTIONS(4726), + [sym__strikeout_open] = ACTIONS(4718), + [sym__latex_span_start] = ACTIONS(4718), + [sym__single_quote_open] = ACTIONS(4718), + [sym__double_quote_open] = ACTIONS(4718), + [sym__superscript_open] = ACTIONS(4718), + [sym__superscript_close] = ACTIONS(4718), + [sym__subscript_open] = ACTIONS(4718), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4718), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4718), + [sym__cite_author_in_text] = ACTIONS(4718), + [sym__cite_suppress_author] = ACTIONS(4718), + [sym__shortcode_open_escaped] = ACTIONS(4718), + [sym__shortcode_open] = ACTIONS(4718), + [sym__unclosed_span] = ACTIONS(4718), + }, + [STATE(588)] = { + [sym__backslash_escape] = ACTIONS(4648), + [sym_entity_reference] = ACTIONS(4648), + [sym_numeric_character_reference] = ACTIONS(4648), + [anon_sym_LT] = ACTIONS(4650), + [anon_sym_GT] = ACTIONS(4648), + [anon_sym_BANG] = ACTIONS(4648), + [anon_sym_DQUOTE] = ACTIONS(4648), + [anon_sym_POUND] = ACTIONS(4648), + [anon_sym_DOLLAR] = ACTIONS(4648), + [anon_sym_PERCENT] = ACTIONS(4648), + [anon_sym_AMP] = ACTIONS(4650), + [anon_sym_SQUOTE] = ACTIONS(4648), + [anon_sym_STAR] = ACTIONS(4648), + [anon_sym_PLUS] = ACTIONS(4648), + [anon_sym_COMMA] = ACTIONS(4648), + [anon_sym_DASH] = ACTIONS(4650), + [anon_sym_DOT] = ACTIONS(4650), + [anon_sym_SLASH] = ACTIONS(4648), + [anon_sym_COLON] = ACTIONS(4648), + [anon_sym_SEMI] = ACTIONS(4648), + [anon_sym_EQ] = ACTIONS(4648), + [anon_sym_QMARK] = ACTIONS(4648), + [anon_sym_LBRACK] = ACTIONS(4650), + [anon_sym_BSLASH] = ACTIONS(4650), + [anon_sym_CARET] = ACTIONS(4650), + [anon_sym__] = ACTIONS(4648), + [anon_sym_BQUOTE] = ACTIONS(4648), + [anon_sym_LBRACE] = ACTIONS(4648), + [anon_sym_PIPE] = ACTIONS(4648), + [anon_sym_TILDE] = ACTIONS(4648), + [anon_sym_LPAREN] = ACTIONS(4648), + [anon_sym_RPAREN] = ACTIONS(4648), + [sym__newline_token] = ACTIONS(4648), + [aux_sym_insert_token1] = ACTIONS(4648), + [aux_sym_insert_token2] = ACTIONS(4648), + [aux_sym_delete_token1] = ACTIONS(4648), + [aux_sym_highlight_token1] = ACTIONS(4648), + [aux_sym_edit_comment_token1] = ACTIONS(4648), + [anon_sym_CARET_LBRACK] = ACTIONS(4648), + [anon_sym_LBRACK_CARET] = ACTIONS(4648), + [sym_uri_autolink] = ACTIONS(4648), + [sym_email_autolink] = ACTIONS(4648), + [sym__whitespace_ge_2] = ACTIONS(4650), + [aux_sym__whitespace_token1] = ACTIONS(4650), + [sym__word_no_digit] = ACTIONS(4648), + [sym__digits] = ACTIONS(4648), + [anon_sym_DASH_DASH] = ACTIONS(4650), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4648), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4648), + [sym__code_span_start] = ACTIONS(4648), + [sym__emphasis_open_star] = ACTIONS(4648), + [sym__emphasis_open_underscore] = ACTIONS(4648), + [sym__last_token_punctuation] = ACTIONS(4660), + [sym__strikeout_open] = ACTIONS(4648), + [sym__latex_span_start] = ACTIONS(4648), + [sym__single_quote_open] = ACTIONS(4648), + [sym__double_quote_open] = ACTIONS(4648), + [sym__superscript_open] = ACTIONS(4648), + [sym__subscript_open] = ACTIONS(4648), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4648), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4648), + [sym__cite_author_in_text] = ACTIONS(4648), + [sym__cite_suppress_author] = ACTIONS(4648), + [sym__shortcode_open_escaped] = ACTIONS(4648), + [sym__shortcode_open] = ACTIONS(4648), + [sym__unclosed_span] = ACTIONS(4648), + }, + [STATE(589)] = { + [sym__backslash_escape] = ACTIONS(4648), + [sym_entity_reference] = ACTIONS(4648), + [sym_numeric_character_reference] = ACTIONS(4648), + [anon_sym_LT] = ACTIONS(4650), + [anon_sym_GT] = ACTIONS(4648), + [anon_sym_BANG] = ACTIONS(4648), + [anon_sym_DQUOTE] = ACTIONS(4648), + [anon_sym_POUND] = ACTIONS(4648), + [anon_sym_DOLLAR] = ACTIONS(4648), + [anon_sym_PERCENT] = ACTIONS(4648), + [anon_sym_AMP] = ACTIONS(4650), + [anon_sym_SQUOTE] = ACTIONS(4648), + [anon_sym_STAR] = ACTIONS(4648), + [anon_sym_PLUS] = ACTIONS(4648), + [anon_sym_COMMA] = ACTIONS(4648), + [anon_sym_DASH] = ACTIONS(4650), + [anon_sym_DOT] = ACTIONS(4650), + [anon_sym_SLASH] = ACTIONS(4648), + [anon_sym_COLON] = ACTIONS(4648), + [anon_sym_SEMI] = ACTIONS(4648), + [anon_sym_EQ] = ACTIONS(4648), + [anon_sym_QMARK] = ACTIONS(4648), + [anon_sym_LBRACK] = ACTIONS(4724), + [anon_sym_BSLASH] = ACTIONS(4650), + [anon_sym_CARET] = ACTIONS(4650), + [anon_sym__] = ACTIONS(4648), + [anon_sym_BQUOTE] = ACTIONS(4648), + [anon_sym_LBRACE] = ACTIONS(4648), + [anon_sym_PIPE] = ACTIONS(4648), + [anon_sym_TILDE] = ACTIONS(4648), + [anon_sym_LPAREN] = ACTIONS(4648), + [anon_sym_RPAREN] = ACTIONS(4648), + [sym__newline_token] = ACTIONS(4648), + [aux_sym_insert_token1] = ACTIONS(4648), + [aux_sym_insert_token2] = ACTIONS(4648), + [aux_sym_delete_token1] = ACTIONS(4648), + [aux_sym_highlight_token1] = ACTIONS(4648), + [aux_sym_edit_comment_token1] = ACTIONS(4648), + [anon_sym_CARET_LBRACK] = ACTIONS(4648), + [anon_sym_LBRACK_CARET] = ACTIONS(4648), + [sym_uri_autolink] = ACTIONS(4648), + [sym_email_autolink] = ACTIONS(4648), + [sym__whitespace_ge_2] = ACTIONS(4650), + [aux_sym__whitespace_token1] = ACTIONS(4650), + [sym__word_no_digit] = ACTIONS(4648), + [sym__digits] = ACTIONS(4648), + [anon_sym_DASH_DASH] = ACTIONS(4650), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4648), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4648), + [sym__code_span_start] = ACTIONS(4648), + [sym__emphasis_open_star] = ACTIONS(4648), + [sym__emphasis_open_underscore] = ACTIONS(4648), + [sym__last_token_punctuation] = ACTIONS(4660), + [sym__strikeout_open] = ACTIONS(4648), + [sym__latex_span_start] = ACTIONS(4648), + [sym__single_quote_open] = ACTIONS(4648), + [sym__double_quote_open] = ACTIONS(4648), + [sym__superscript_open] = ACTIONS(4648), + [sym__subscript_open] = ACTIONS(4648), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4648), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4648), + [sym__cite_author_in_text] = ACTIONS(4648), + [sym__cite_suppress_author] = ACTIONS(4648), + [sym__shortcode_open_escaped] = ACTIONS(4648), + [sym__shortcode_open] = ACTIONS(4648), + [sym__unclosed_span] = ACTIONS(4648), + }, + [STATE(590)] = { + [sym__backslash_escape] = ACTIONS(4728), + [sym_entity_reference] = ACTIONS(4728), + [sym_numeric_character_reference] = ACTIONS(4728), + [anon_sym_LT] = ACTIONS(4730), + [anon_sym_GT] = ACTIONS(4728), + [anon_sym_BANG] = ACTIONS(4728), + [anon_sym_DQUOTE] = ACTIONS(4728), + [anon_sym_POUND] = ACTIONS(4728), + [anon_sym_DOLLAR] = ACTIONS(4728), + [anon_sym_PERCENT] = ACTIONS(4728), + [anon_sym_AMP] = ACTIONS(4730), + [anon_sym_SQUOTE] = ACTIONS(4728), + [anon_sym_STAR] = ACTIONS(4728), + [anon_sym_PLUS] = ACTIONS(4728), + [anon_sym_COMMA] = ACTIONS(4728), + [anon_sym_DASH] = ACTIONS(4730), + [anon_sym_DOT] = ACTIONS(4730), + [anon_sym_SLASH] = ACTIONS(4728), + [anon_sym_COLON] = ACTIONS(4728), + [anon_sym_SEMI] = ACTIONS(4728), + [anon_sym_EQ] = ACTIONS(4728), + [anon_sym_QMARK] = ACTIONS(4728), + [anon_sym_LBRACK] = ACTIONS(4730), + [anon_sym_BSLASH] = ACTIONS(4730), + [anon_sym_CARET] = ACTIONS(4730), + [anon_sym__] = ACTIONS(4728), + [anon_sym_BQUOTE] = ACTIONS(4728), + [anon_sym_LBRACE] = ACTIONS(4728), + [anon_sym_PIPE] = ACTIONS(4728), + [anon_sym_TILDE] = ACTIONS(4728), + [anon_sym_LPAREN] = ACTIONS(4728), + [anon_sym_RPAREN] = ACTIONS(4728), + [sym__newline_token] = ACTIONS(4728), + [aux_sym_insert_token1] = ACTIONS(4728), + [aux_sym_delete_token1] = ACTIONS(4728), + [aux_sym_highlight_token1] = ACTIONS(4728), + [aux_sym_edit_comment_token1] = ACTIONS(4728), + [anon_sym_CARET_LBRACK] = ACTIONS(4728), + [anon_sym_LBRACK_CARET] = ACTIONS(4728), + [sym_uri_autolink] = ACTIONS(4728), + [sym_email_autolink] = ACTIONS(4728), + [sym__whitespace_ge_2] = ACTIONS(4728), + [aux_sym__whitespace_token1] = ACTIONS(4730), + [sym__word_no_digit] = ACTIONS(4728), + [sym__digits] = ACTIONS(4728), + [anon_sym_DASH_DASH] = ACTIONS(4730), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4728), + [sym__code_span_start] = ACTIONS(4728), + [sym__emphasis_open_star] = ACTIONS(4728), + [sym__emphasis_open_underscore] = ACTIONS(4728), + [sym__last_token_whitespace] = ACTIONS(4732), + [sym__strikeout_open] = ACTIONS(4728), + [sym__latex_span_start] = ACTIONS(4728), + [sym__single_quote_open] = ACTIONS(4728), + [sym__double_quote_open] = ACTIONS(4728), + [sym__double_quote_close] = ACTIONS(4728), + [sym__superscript_open] = ACTIONS(4728), + [sym__subscript_open] = ACTIONS(4728), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4728), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4728), + [sym__cite_author_in_text] = ACTIONS(4728), + [sym__cite_suppress_author] = ACTIONS(4728), + [sym__shortcode_open_escaped] = ACTIONS(4728), + [sym__shortcode_open] = ACTIONS(4728), + [sym__unclosed_span] = ACTIONS(4728), + }, + [STATE(591)] = { + [ts_builtin_sym_end] = ACTIONS(4642), + [sym__backslash_escape] = ACTIONS(4642), + [sym_entity_reference] = ACTIONS(4642), + [sym_numeric_character_reference] = ACTIONS(4642), + [anon_sym_LT] = ACTIONS(4644), + [anon_sym_GT] = ACTIONS(4642), + [anon_sym_BANG] = ACTIONS(4642), + [anon_sym_DQUOTE] = ACTIONS(4642), + [anon_sym_POUND] = ACTIONS(4642), + [anon_sym_DOLLAR] = ACTIONS(4642), + [anon_sym_PERCENT] = ACTIONS(4642), + [anon_sym_AMP] = ACTIONS(4644), + [anon_sym_SQUOTE] = ACTIONS(4642), + [anon_sym_STAR] = ACTIONS(4642), + [anon_sym_PLUS] = ACTIONS(4642), + [anon_sym_COMMA] = ACTIONS(4642), + [anon_sym_DASH] = ACTIONS(4644), + [anon_sym_DOT] = ACTIONS(4644), + [anon_sym_SLASH] = ACTIONS(4642), + [anon_sym_COLON] = ACTIONS(4642), + [anon_sym_SEMI] = ACTIONS(4642), + [anon_sym_EQ] = ACTIONS(4642), + [anon_sym_QMARK] = ACTIONS(4642), + [anon_sym_LBRACK] = ACTIONS(4644), + [anon_sym_BSLASH] = ACTIONS(4644), + [anon_sym_CARET] = ACTIONS(4644), + [anon_sym__] = ACTIONS(4642), + [anon_sym_BQUOTE] = ACTIONS(4642), + [anon_sym_LBRACE] = ACTIONS(4642), + [anon_sym_PIPE] = ACTIONS(4642), + [anon_sym_TILDE] = ACTIONS(4642), + [anon_sym_LPAREN] = ACTIONS(4642), + [anon_sym_RPAREN] = ACTIONS(4642), + [sym__newline_token] = ACTIONS(4642), + [aux_sym_insert_token1] = ACTIONS(4642), + [aux_sym_delete_token1] = ACTIONS(4642), + [aux_sym_highlight_token1] = ACTIONS(4642), + [aux_sym_edit_comment_token1] = ACTIONS(4642), + [anon_sym_CARET_LBRACK] = ACTIONS(4642), + [anon_sym_LBRACK_CARET] = ACTIONS(4642), + [sym_uri_autolink] = ACTIONS(4642), + [sym_email_autolink] = ACTIONS(4642), + [sym__whitespace_ge_2] = ACTIONS(4642), + [aux_sym__whitespace_token1] = ACTIONS(4644), + [sym__word_no_digit] = ACTIONS(4642), + [sym__digits] = ACTIONS(4642), + [anon_sym_DASH_DASH] = ACTIONS(4644), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4642), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4642), + [sym__code_span_start] = ACTIONS(4642), + [sym__emphasis_open_star] = ACTIONS(4642), + [sym__emphasis_open_underscore] = ACTIONS(4642), + [sym__last_token_whitespace] = ACTIONS(4646), + [sym__strikeout_open] = ACTIONS(4642), + [sym__latex_span_start] = ACTIONS(4642), + [sym__single_quote_open] = ACTIONS(4642), + [sym__double_quote_open] = ACTIONS(4642), + [sym__superscript_open] = ACTIONS(4642), + [sym__subscript_open] = ACTIONS(4642), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4642), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4642), + [sym__cite_author_in_text] = ACTIONS(4642), + [sym__cite_suppress_author] = ACTIONS(4642), + [sym__shortcode_open_escaped] = ACTIONS(4642), + [sym__shortcode_open] = ACTIONS(4642), + [sym__unclosed_span] = ACTIONS(4642), + }, + [STATE(592)] = { + [sym__backslash_escape] = ACTIONS(4728), + [sym_entity_reference] = ACTIONS(4728), + [sym_numeric_character_reference] = ACTIONS(4728), + [anon_sym_LT] = ACTIONS(4730), + [anon_sym_GT] = ACTIONS(4728), + [anon_sym_BANG] = ACTIONS(4728), + [anon_sym_DQUOTE] = ACTIONS(4728), + [anon_sym_POUND] = ACTIONS(4728), + [anon_sym_DOLLAR] = ACTIONS(4728), + [anon_sym_PERCENT] = ACTIONS(4728), + [anon_sym_AMP] = ACTIONS(4730), + [anon_sym_SQUOTE] = ACTIONS(4728), + [anon_sym_STAR] = ACTIONS(4728), + [anon_sym_PLUS] = ACTIONS(4728), + [anon_sym_COMMA] = ACTIONS(4728), + [anon_sym_DASH] = ACTIONS(4730), + [anon_sym_DOT] = ACTIONS(4730), + [anon_sym_SLASH] = ACTIONS(4728), + [anon_sym_COLON] = ACTIONS(4728), + [anon_sym_SEMI] = ACTIONS(4728), + [anon_sym_EQ] = ACTIONS(4728), + [anon_sym_QMARK] = ACTIONS(4728), + [anon_sym_LBRACK] = ACTIONS(4730), + [anon_sym_BSLASH] = ACTIONS(4730), + [anon_sym_CARET] = ACTIONS(4730), + [anon_sym__] = ACTIONS(4728), + [anon_sym_BQUOTE] = ACTIONS(4728), + [anon_sym_LBRACE] = ACTIONS(4728), + [anon_sym_PIPE] = ACTIONS(4728), + [anon_sym_TILDE] = ACTIONS(4728), + [anon_sym_LPAREN] = ACTIONS(4728), + [anon_sym_RPAREN] = ACTIONS(4728), + [sym__newline_token] = ACTIONS(4728), + [aux_sym_insert_token1] = ACTIONS(4728), + [aux_sym_delete_token1] = ACTIONS(4728), + [aux_sym_highlight_token1] = ACTIONS(4728), + [aux_sym_edit_comment_token1] = ACTIONS(4728), + [anon_sym_CARET_LBRACK] = ACTIONS(4728), + [anon_sym_LBRACK_CARET] = ACTIONS(4728), + [sym_uri_autolink] = ACTIONS(4728), + [sym_email_autolink] = ACTIONS(4728), + [sym__whitespace_ge_2] = ACTIONS(4728), + [aux_sym__whitespace_token1] = ACTIONS(4730), + [sym__word_no_digit] = ACTIONS(4728), + [sym__digits] = ACTIONS(4728), + [anon_sym_DASH_DASH] = ACTIONS(4730), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4728), + [sym__code_span_start] = ACTIONS(4728), + [sym__emphasis_open_star] = ACTIONS(4728), + [sym__emphasis_open_underscore] = ACTIONS(4728), + [sym__last_token_whitespace] = ACTIONS(4734), + [sym__strikeout_open] = ACTIONS(4728), + [sym__latex_span_start] = ACTIONS(4728), + [sym__single_quote_open] = ACTIONS(4728), + [sym__double_quote_open] = ACTIONS(4728), + [sym__superscript_open] = ACTIONS(4728), + [sym__subscript_open] = ACTIONS(4728), + [sym__subscript_close] = ACTIONS(4728), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4728), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4728), + [sym__cite_author_in_text] = ACTIONS(4728), + [sym__cite_suppress_author] = ACTIONS(4728), + [sym__shortcode_open_escaped] = ACTIONS(4728), + [sym__shortcode_open] = ACTIONS(4728), + [sym__unclosed_span] = ACTIONS(4728), + }, + [STATE(593)] = { + [sym__backslash_escape] = ACTIONS(4704), + [sym_entity_reference] = ACTIONS(4704), + [sym_numeric_character_reference] = ACTIONS(4704), + [anon_sym_LT] = ACTIONS(4706), + [anon_sym_GT] = ACTIONS(4704), + [anon_sym_BANG] = ACTIONS(4704), + [anon_sym_DQUOTE] = ACTIONS(4704), + [anon_sym_POUND] = ACTIONS(4704), + [anon_sym_DOLLAR] = ACTIONS(4704), + [anon_sym_PERCENT] = ACTIONS(4704), + [anon_sym_AMP] = ACTIONS(4706), + [anon_sym_SQUOTE] = ACTIONS(4704), + [anon_sym_STAR] = ACTIONS(4704), + [anon_sym_PLUS] = ACTIONS(4704), + [anon_sym_COMMA] = ACTIONS(4704), + [anon_sym_DASH] = ACTIONS(4706), + [anon_sym_DOT] = ACTIONS(4706), + [anon_sym_SLASH] = ACTIONS(4704), + [anon_sym_COLON] = ACTIONS(4704), + [anon_sym_SEMI] = ACTIONS(4704), + [anon_sym_EQ] = ACTIONS(4704), + [anon_sym_QMARK] = ACTIONS(4704), + [anon_sym_LBRACK] = ACTIONS(4706), + [anon_sym_BSLASH] = ACTIONS(4706), + [anon_sym_CARET] = ACTIONS(4706), + [anon_sym__] = ACTIONS(4704), + [anon_sym_BQUOTE] = ACTIONS(4704), + [anon_sym_LBRACE] = ACTIONS(4704), + [anon_sym_PIPE] = ACTIONS(4704), + [anon_sym_TILDE] = ACTIONS(4704), + [anon_sym_LPAREN] = ACTIONS(4704), + [anon_sym_RPAREN] = ACTIONS(4704), + [sym__newline_token] = ACTIONS(4704), + [aux_sym_insert_token1] = ACTIONS(4704), + [aux_sym_delete_token1] = ACTIONS(4704), + [aux_sym_highlight_token1] = ACTIONS(4704), + [aux_sym_edit_comment_token1] = ACTIONS(4704), + [anon_sym_CARET_LBRACK] = ACTIONS(4704), + [anon_sym_LBRACK_CARET] = ACTIONS(4704), + [sym_uri_autolink] = ACTIONS(4704), + [sym_email_autolink] = ACTIONS(4704), + [sym__whitespace_ge_2] = ACTIONS(4704), + [aux_sym__whitespace_token1] = ACTIONS(4706), + [sym__word_no_digit] = ACTIONS(4704), + [sym__digits] = ACTIONS(4704), + [anon_sym_DASH_DASH] = ACTIONS(4706), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4704), + [sym__code_span_start] = ACTIONS(4704), + [sym__emphasis_open_star] = ACTIONS(4704), + [sym__emphasis_open_underscore] = ACTIONS(4704), + [sym__last_token_punctuation] = ACTIONS(4736), + [sym__strikeout_open] = ACTIONS(4704), + [sym__strikeout_close] = ACTIONS(4704), + [sym__latex_span_start] = ACTIONS(4704), + [sym__single_quote_open] = ACTIONS(4704), + [sym__double_quote_open] = ACTIONS(4704), + [sym__superscript_open] = ACTIONS(4704), + [sym__subscript_open] = ACTIONS(4704), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4704), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4704), + [sym__cite_author_in_text] = ACTIONS(4704), + [sym__cite_suppress_author] = ACTIONS(4704), + [sym__shortcode_open_escaped] = ACTIONS(4704), + [sym__shortcode_open] = ACTIONS(4704), + [sym__unclosed_span] = ACTIONS(4704), + }, + [STATE(594)] = { + [sym__backslash_escape] = ACTIONS(4728), + [sym_entity_reference] = ACTIONS(4728), + [sym_numeric_character_reference] = ACTIONS(4728), + [anon_sym_LT] = ACTIONS(4730), + [anon_sym_GT] = ACTIONS(4728), + [anon_sym_BANG] = ACTIONS(4728), + [anon_sym_DQUOTE] = ACTIONS(4728), + [anon_sym_POUND] = ACTIONS(4728), + [anon_sym_DOLLAR] = ACTIONS(4728), + [anon_sym_PERCENT] = ACTIONS(4728), + [anon_sym_AMP] = ACTIONS(4730), + [anon_sym_SQUOTE] = ACTIONS(4728), + [anon_sym_STAR] = ACTIONS(4728), + [anon_sym_PLUS] = ACTIONS(4728), + [anon_sym_COMMA] = ACTIONS(4728), + [anon_sym_DASH] = ACTIONS(4730), + [anon_sym_DOT] = ACTIONS(4730), + [anon_sym_SLASH] = ACTIONS(4728), + [anon_sym_COLON] = ACTIONS(4728), + [anon_sym_SEMI] = ACTIONS(4728), + [anon_sym_EQ] = ACTIONS(4728), + [anon_sym_QMARK] = ACTIONS(4728), + [anon_sym_LBRACK] = ACTIONS(4730), + [anon_sym_BSLASH] = ACTIONS(4730), + [anon_sym_CARET] = ACTIONS(4730), + [anon_sym__] = ACTIONS(4728), + [anon_sym_BQUOTE] = ACTIONS(4728), + [anon_sym_LBRACE] = ACTIONS(4728), + [anon_sym_PIPE] = ACTIONS(4728), + [anon_sym_TILDE] = ACTIONS(4728), + [anon_sym_LPAREN] = ACTIONS(4728), + [anon_sym_RPAREN] = ACTIONS(4728), + [sym__newline_token] = ACTIONS(4728), + [aux_sym_insert_token1] = ACTIONS(4728), + [aux_sym_delete_token1] = ACTIONS(4728), + [aux_sym_highlight_token1] = ACTIONS(4728), + [aux_sym_edit_comment_token1] = ACTIONS(4728), + [anon_sym_CARET_LBRACK] = ACTIONS(4728), + [anon_sym_LBRACK_CARET] = ACTIONS(4728), + [sym_uri_autolink] = ACTIONS(4728), + [sym_email_autolink] = ACTIONS(4728), + [sym__whitespace_ge_2] = ACTIONS(4728), + [aux_sym__whitespace_token1] = ACTIONS(4730), + [sym__word_no_digit] = ACTIONS(4728), + [sym__digits] = ACTIONS(4728), + [anon_sym_DASH_DASH] = ACTIONS(4730), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4728), + [sym__code_span_start] = ACTIONS(4728), + [sym__emphasis_open_star] = ACTIONS(4728), + [sym__emphasis_open_underscore] = ACTIONS(4728), + [sym__last_token_whitespace] = ACTIONS(4738), + [sym__strikeout_open] = ACTIONS(4728), + [sym__strikeout_close] = ACTIONS(4728), + [sym__latex_span_start] = ACTIONS(4728), + [sym__single_quote_open] = ACTIONS(4728), + [sym__double_quote_open] = ACTIONS(4728), + [sym__superscript_open] = ACTIONS(4728), + [sym__subscript_open] = ACTIONS(4728), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4728), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4728), + [sym__cite_author_in_text] = ACTIONS(4728), + [sym__cite_suppress_author] = ACTIONS(4728), + [sym__shortcode_open_escaped] = ACTIONS(4728), + [sym__shortcode_open] = ACTIONS(4728), + [sym__unclosed_span] = ACTIONS(4728), + }, + [STATE(595)] = { + [sym__backslash_escape] = ACTIONS(4718), + [sym_entity_reference] = ACTIONS(4718), + [sym_numeric_character_reference] = ACTIONS(4718), + [anon_sym_LT] = ACTIONS(4720), + [anon_sym_GT] = ACTIONS(4718), + [anon_sym_BANG] = ACTIONS(4718), + [anon_sym_DQUOTE] = ACTIONS(4718), + [anon_sym_POUND] = ACTIONS(4718), + [anon_sym_DOLLAR] = ACTIONS(4718), + [anon_sym_PERCENT] = ACTIONS(4718), + [anon_sym_AMP] = ACTIONS(4720), + [anon_sym_SQUOTE] = ACTIONS(4718), + [anon_sym_STAR] = ACTIONS(4718), + [anon_sym_PLUS] = ACTIONS(4718), + [anon_sym_COMMA] = ACTIONS(4718), + [anon_sym_DASH] = ACTIONS(4720), + [anon_sym_DOT] = ACTIONS(4720), + [anon_sym_SLASH] = ACTIONS(4718), + [anon_sym_COLON] = ACTIONS(4718), + [anon_sym_SEMI] = ACTIONS(4718), + [anon_sym_EQ] = ACTIONS(4718), + [anon_sym_QMARK] = ACTIONS(4718), + [anon_sym_LBRACK] = ACTIONS(4720), + [anon_sym_BSLASH] = ACTIONS(4720), + [anon_sym_CARET] = ACTIONS(4720), + [anon_sym__] = ACTIONS(4718), + [anon_sym_BQUOTE] = ACTIONS(4718), + [anon_sym_LBRACE] = ACTIONS(4718), + [anon_sym_PIPE] = ACTIONS(4718), + [anon_sym_TILDE] = ACTIONS(4718), + [anon_sym_LPAREN] = ACTIONS(4718), + [anon_sym_RPAREN] = ACTIONS(4718), + [sym__newline_token] = ACTIONS(4718), + [aux_sym_insert_token1] = ACTIONS(4718), + [aux_sym_delete_token1] = ACTIONS(4718), + [aux_sym_highlight_token1] = ACTIONS(4718), + [aux_sym_edit_comment_token1] = ACTIONS(4718), + [anon_sym_CARET_LBRACK] = ACTIONS(4718), + [anon_sym_LBRACK_CARET] = ACTIONS(4718), + [sym_uri_autolink] = ACTIONS(4718), + [sym_email_autolink] = ACTIONS(4718), + [sym__whitespace_ge_2] = ACTIONS(4718), + [aux_sym__whitespace_token1] = ACTIONS(4720), + [sym__word_no_digit] = ACTIONS(4718), + [sym__digits] = ACTIONS(4718), + [anon_sym_DASH_DASH] = ACTIONS(4720), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4718), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4718), + [sym__code_span_start] = ACTIONS(4718), + [sym__emphasis_open_star] = ACTIONS(4718), + [sym__emphasis_open_underscore] = ACTIONS(4718), + [sym__last_token_punctuation] = ACTIONS(4740), + [sym__strikeout_open] = ACTIONS(4718), + [sym__latex_span_start] = ACTIONS(4718), + [sym__single_quote_open] = ACTIONS(4718), + [sym__double_quote_open] = ACTIONS(4718), + [sym__superscript_open] = ACTIONS(4718), + [sym__subscript_open] = ACTIONS(4718), + [sym__subscript_close] = ACTIONS(4718), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4718), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4718), + [sym__cite_author_in_text] = ACTIONS(4718), + [sym__cite_suppress_author] = ACTIONS(4718), + [sym__shortcode_open_escaped] = ACTIONS(4718), + [sym__shortcode_open] = ACTIONS(4718), + [sym__unclosed_span] = ACTIONS(4718), + }, + [STATE(596)] = { + [sym__backslash_escape] = ACTIONS(4648), + [sym_entity_reference] = ACTIONS(4648), + [sym_numeric_character_reference] = ACTIONS(4648), + [anon_sym_LT] = ACTIONS(4650), + [anon_sym_GT] = ACTIONS(4648), + [anon_sym_BANG] = ACTIONS(4648), + [anon_sym_DQUOTE] = ACTIONS(4648), + [anon_sym_POUND] = ACTIONS(4648), + [anon_sym_DOLLAR] = ACTIONS(4648), + [anon_sym_PERCENT] = ACTIONS(4648), + [anon_sym_AMP] = ACTIONS(4650), + [anon_sym_SQUOTE] = ACTIONS(4648), + [anon_sym_STAR] = ACTIONS(4648), + [anon_sym_PLUS] = ACTIONS(4648), + [anon_sym_COMMA] = ACTIONS(4648), + [anon_sym_DASH] = ACTIONS(4650), + [anon_sym_DOT] = ACTIONS(4650), + [anon_sym_SLASH] = ACTIONS(4648), + [anon_sym_COLON] = ACTIONS(4648), + [anon_sym_SEMI] = ACTIONS(4648), + [anon_sym_EQ] = ACTIONS(4648), + [anon_sym_QMARK] = ACTIONS(4648), + [anon_sym_LBRACK] = ACTIONS(4650), + [anon_sym_BSLASH] = ACTIONS(4650), + [anon_sym_CARET] = ACTIONS(4650), + [anon_sym__] = ACTIONS(4648), + [anon_sym_BQUOTE] = ACTIONS(4648), + [anon_sym_LBRACE] = ACTIONS(4648), + [anon_sym_PIPE] = ACTIONS(4648), + [anon_sym_TILDE] = ACTIONS(4648), + [anon_sym_LPAREN] = ACTIONS(4648), + [anon_sym_RPAREN] = ACTIONS(4648), + [sym__newline_token] = ACTIONS(4648), + [aux_sym_insert_token1] = ACTIONS(4648), + [aux_sym_delete_token1] = ACTIONS(4648), + [aux_sym_highlight_token1] = ACTIONS(4648), + [aux_sym_edit_comment_token1] = ACTIONS(4648), + [anon_sym_CARET_LBRACK] = ACTIONS(4648), + [anon_sym_LBRACK_CARET] = ACTIONS(4648), + [sym_uri_autolink] = ACTIONS(4648), + [sym_email_autolink] = ACTIONS(4648), + [sym__whitespace_ge_2] = ACTIONS(4648), + [aux_sym__whitespace_token1] = ACTIONS(4650), + [sym__word_no_digit] = ACTIONS(4648), + [sym__digits] = ACTIONS(4648), + [anon_sym_DASH_DASH] = ACTIONS(4650), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4648), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4648), + [sym__code_span_start] = ACTIONS(4648), + [sym__emphasis_open_star] = ACTIONS(4648), + [sym__emphasis_open_underscore] = ACTIONS(4648), + [sym__last_token_punctuation] = ACTIONS(4664), + [sym__strikeout_open] = ACTIONS(4648), + [sym__latex_span_start] = ACTIONS(4648), + [sym__single_quote_open] = ACTIONS(4648), + [sym__double_quote_open] = ACTIONS(4648), + [sym__superscript_open] = ACTIONS(4648), + [sym__superscript_close] = ACTIONS(4648), + [sym__subscript_open] = ACTIONS(4648), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4648), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4648), + [sym__cite_author_in_text] = ACTIONS(4648), + [sym__cite_suppress_author] = ACTIONS(4648), + [sym__shortcode_open_escaped] = ACTIONS(4648), + [sym__shortcode_open] = ACTIONS(4648), + [sym__unclosed_span] = ACTIONS(4648), + }, + [STATE(597)] = { + [sym__backslash_escape] = ACTIONS(4648), + [sym_entity_reference] = ACTIONS(4648), + [sym_numeric_character_reference] = ACTIONS(4648), + [anon_sym_LT] = ACTIONS(4650), + [anon_sym_GT] = ACTIONS(4648), + [anon_sym_BANG] = ACTIONS(4648), + [anon_sym_DQUOTE] = ACTIONS(4648), + [anon_sym_POUND] = ACTIONS(4648), + [anon_sym_DOLLAR] = ACTIONS(4648), + [anon_sym_PERCENT] = ACTIONS(4648), + [anon_sym_AMP] = ACTIONS(4650), + [anon_sym_SQUOTE] = ACTIONS(4648), + [anon_sym_STAR] = ACTIONS(4648), + [anon_sym_PLUS] = ACTIONS(4648), + [anon_sym_COMMA] = ACTIONS(4648), + [anon_sym_DASH] = ACTIONS(4650), + [anon_sym_DOT] = ACTIONS(4650), + [anon_sym_SLASH] = ACTIONS(4648), + [anon_sym_COLON] = ACTIONS(4648), + [anon_sym_SEMI] = ACTIONS(4648), + [anon_sym_EQ] = ACTIONS(4648), + [anon_sym_QMARK] = ACTIONS(4648), + [anon_sym_LBRACK] = ACTIONS(4650), + [anon_sym_BSLASH] = ACTIONS(4650), + [anon_sym_CARET] = ACTIONS(4650), + [anon_sym__] = ACTIONS(4648), + [anon_sym_BQUOTE] = ACTIONS(4648), + [anon_sym_LBRACE] = ACTIONS(4648), + [anon_sym_PIPE] = ACTIONS(4648), + [anon_sym_TILDE] = ACTIONS(4648), + [anon_sym_LPAREN] = ACTIONS(4648), + [anon_sym_RPAREN] = ACTIONS(4648), + [sym__newline_token] = ACTIONS(4648), + [aux_sym_insert_token1] = ACTIONS(4648), + [aux_sym_delete_token1] = ACTIONS(4648), + [aux_sym_highlight_token1] = ACTIONS(4648), + [aux_sym_edit_comment_token1] = ACTIONS(4648), + [anon_sym_CARET_LBRACK] = ACTIONS(4648), + [anon_sym_LBRACK_CARET] = ACTIONS(4648), + [sym_uri_autolink] = ACTIONS(4648), + [sym_email_autolink] = ACTIONS(4648), + [sym__whitespace_ge_2] = ACTIONS(4648), + [aux_sym__whitespace_token1] = ACTIONS(4650), + [sym__word_no_digit] = ACTIONS(4648), + [sym__digits] = ACTIONS(4648), + [anon_sym_DASH_DASH] = ACTIONS(4650), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4648), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4648), + [sym__code_span_start] = ACTIONS(4648), + [sym__emphasis_open_star] = ACTIONS(4648), + [sym__emphasis_open_underscore] = ACTIONS(4648), + [sym__last_token_punctuation] = ACTIONS(4682), + [sym__strikeout_open] = ACTIONS(4648), + [sym__strikeout_close] = ACTIONS(4648), + [sym__latex_span_start] = ACTIONS(4648), + [sym__single_quote_open] = ACTIONS(4648), + [sym__double_quote_open] = ACTIONS(4648), + [sym__superscript_open] = ACTIONS(4648), + [sym__subscript_open] = ACTIONS(4648), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4648), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4648), + [sym__cite_author_in_text] = ACTIONS(4648), + [sym__cite_suppress_author] = ACTIONS(4648), + [sym__shortcode_open_escaped] = ACTIONS(4648), + [sym__shortcode_open] = ACTIONS(4648), + [sym__unclosed_span] = ACTIONS(4648), + }, + [STATE(598)] = { + [sym__backslash_escape] = ACTIONS(4648), + [sym_entity_reference] = ACTIONS(4648), + [sym_numeric_character_reference] = ACTIONS(4648), + [anon_sym_LT] = ACTIONS(4650), + [anon_sym_GT] = ACTIONS(4648), + [anon_sym_BANG] = ACTIONS(4648), + [anon_sym_DQUOTE] = ACTIONS(4648), + [anon_sym_POUND] = ACTIONS(4648), + [anon_sym_DOLLAR] = ACTIONS(4648), + [anon_sym_PERCENT] = ACTIONS(4648), + [anon_sym_AMP] = ACTIONS(4650), + [anon_sym_SQUOTE] = ACTIONS(4648), + [anon_sym_STAR] = ACTIONS(4648), + [anon_sym_PLUS] = ACTIONS(4648), + [anon_sym_COMMA] = ACTIONS(4648), + [anon_sym_DASH] = ACTIONS(4650), + [anon_sym_DOT] = ACTIONS(4650), + [anon_sym_SLASH] = ACTIONS(4648), + [anon_sym_COLON] = ACTIONS(4648), + [anon_sym_SEMI] = ACTIONS(4648), + [anon_sym_EQ] = ACTIONS(4648), + [anon_sym_QMARK] = ACTIONS(4648), + [anon_sym_LBRACK] = ACTIONS(4724), + [anon_sym_BSLASH] = ACTIONS(4650), + [anon_sym_CARET] = ACTIONS(4650), + [anon_sym__] = ACTIONS(4648), + [anon_sym_BQUOTE] = ACTIONS(4648), + [anon_sym_LBRACE] = ACTIONS(4648), + [anon_sym_PIPE] = ACTIONS(4648), + [anon_sym_TILDE] = ACTIONS(4648), + [anon_sym_LPAREN] = ACTIONS(4648), + [anon_sym_RPAREN] = ACTIONS(4648), + [sym__newline_token] = ACTIONS(4648), + [aux_sym_insert_token1] = ACTIONS(4648), + [aux_sym_delete_token1] = ACTIONS(4648), + [aux_sym_highlight_token1] = ACTIONS(4648), + [aux_sym_edit_comment_token1] = ACTIONS(4648), + [anon_sym_CARET_LBRACK] = ACTIONS(4648), + [anon_sym_LBRACK_CARET] = ACTIONS(4648), + [sym_uri_autolink] = ACTIONS(4648), + [sym_email_autolink] = ACTIONS(4648), + [sym__whitespace_ge_2] = ACTIONS(4648), + [aux_sym__whitespace_token1] = ACTIONS(4650), + [sym__word_no_digit] = ACTIONS(4648), + [sym__digits] = ACTIONS(4648), + [anon_sym_DASH_DASH] = ACTIONS(4650), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4648), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4648), + [sym__code_span_start] = ACTIONS(4648), + [sym__emphasis_open_star] = ACTIONS(4648), + [sym__emphasis_open_underscore] = ACTIONS(4648), + [sym__last_token_punctuation] = ACTIONS(4664), + [sym__strikeout_open] = ACTIONS(4648), + [sym__latex_span_start] = ACTIONS(4648), + [sym__single_quote_open] = ACTIONS(4648), + [sym__double_quote_open] = ACTIONS(4648), + [sym__superscript_open] = ACTIONS(4648), + [sym__superscript_close] = ACTIONS(4648), + [sym__subscript_open] = ACTIONS(4648), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4648), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4648), + [sym__cite_author_in_text] = ACTIONS(4648), + [sym__cite_suppress_author] = ACTIONS(4648), + [sym__shortcode_open_escaped] = ACTIONS(4648), + [sym__shortcode_open] = ACTIONS(4648), + [sym__unclosed_span] = ACTIONS(4648), + }, + [STATE(599)] = { + [sym__backslash_escape] = ACTIONS(4704), + [sym_entity_reference] = ACTIONS(4704), + [sym_numeric_character_reference] = ACTIONS(4704), + [anon_sym_LT] = ACTIONS(4706), + [anon_sym_GT] = ACTIONS(4704), + [anon_sym_BANG] = ACTIONS(4704), + [anon_sym_DQUOTE] = ACTIONS(4704), + [anon_sym_POUND] = ACTIONS(4704), + [anon_sym_DOLLAR] = ACTIONS(4704), + [anon_sym_PERCENT] = ACTIONS(4704), + [anon_sym_AMP] = ACTIONS(4706), + [anon_sym_SQUOTE] = ACTIONS(4704), + [anon_sym_STAR] = ACTIONS(4704), + [anon_sym_PLUS] = ACTIONS(4704), + [anon_sym_COMMA] = ACTIONS(4704), + [anon_sym_DASH] = ACTIONS(4706), + [anon_sym_DOT] = ACTIONS(4706), + [anon_sym_SLASH] = ACTIONS(4704), + [anon_sym_COLON] = ACTIONS(4704), + [anon_sym_SEMI] = ACTIONS(4704), + [anon_sym_EQ] = ACTIONS(4704), + [anon_sym_QMARK] = ACTIONS(4704), + [anon_sym_LBRACK] = ACTIONS(4706), + [anon_sym_BSLASH] = ACTIONS(4706), + [anon_sym_RBRACK] = ACTIONS(4704), + [anon_sym_CARET] = ACTIONS(4706), + [anon_sym__] = ACTIONS(4704), + [anon_sym_BQUOTE] = ACTIONS(4704), + [anon_sym_LBRACE] = ACTIONS(4704), + [anon_sym_PIPE] = ACTIONS(4704), + [anon_sym_TILDE] = ACTIONS(4704), + [anon_sym_LPAREN] = ACTIONS(4704), + [anon_sym_RPAREN] = ACTIONS(4704), + [sym__newline_token] = ACTIONS(4704), + [aux_sym_insert_token1] = ACTIONS(4704), + [aux_sym_delete_token1] = ACTIONS(4704), + [aux_sym_highlight_token1] = ACTIONS(4704), + [aux_sym_edit_comment_token1] = ACTIONS(4704), + [anon_sym_CARET_LBRACK] = ACTIONS(4704), + [anon_sym_LBRACK_CARET] = ACTIONS(4704), + [sym_uri_autolink] = ACTIONS(4704), + [sym_email_autolink] = ACTIONS(4704), + [sym__whitespace_ge_2] = ACTIONS(4704), + [aux_sym__whitespace_token1] = ACTIONS(4706), + [sym__word_no_digit] = ACTIONS(4704), + [sym__digits] = ACTIONS(4704), + [anon_sym_DASH_DASH] = ACTIONS(4706), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4704), + [sym__code_span_start] = ACTIONS(4704), + [sym__emphasis_open_star] = ACTIONS(4704), + [sym__emphasis_open_underscore] = ACTIONS(4704), + [sym__last_token_punctuation] = ACTIONS(4742), + [sym__strikeout_open] = ACTIONS(4704), + [sym__latex_span_start] = ACTIONS(4704), + [sym__single_quote_open] = ACTIONS(4704), + [sym__double_quote_open] = ACTIONS(4704), + [sym__superscript_open] = ACTIONS(4704), + [sym__subscript_open] = ACTIONS(4704), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4704), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4704), + [sym__cite_author_in_text] = ACTIONS(4704), + [sym__cite_suppress_author] = ACTIONS(4704), + [sym__shortcode_open_escaped] = ACTIONS(4704), + [sym__shortcode_open] = ACTIONS(4704), + [sym__unclosed_span] = ACTIONS(4704), + }, + [STATE(600)] = { + [sym__backslash_escape] = ACTIONS(4648), + [sym_entity_reference] = ACTIONS(4648), + [sym_numeric_character_reference] = ACTIONS(4648), + [anon_sym_LT] = ACTIONS(4650), + [anon_sym_GT] = ACTIONS(4648), + [anon_sym_BANG] = ACTIONS(4648), + [anon_sym_DQUOTE] = ACTIONS(4648), + [anon_sym_POUND] = ACTIONS(4648), + [anon_sym_DOLLAR] = ACTIONS(4648), + [anon_sym_PERCENT] = ACTIONS(4648), + [anon_sym_AMP] = ACTIONS(4650), + [anon_sym_SQUOTE] = ACTIONS(4648), + [anon_sym_STAR] = ACTIONS(4648), + [anon_sym_PLUS] = ACTIONS(4648), + [anon_sym_COMMA] = ACTIONS(4648), + [anon_sym_DASH] = ACTIONS(4650), + [anon_sym_DOT] = ACTIONS(4650), + [anon_sym_SLASH] = ACTIONS(4648), + [anon_sym_COLON] = ACTIONS(4648), + [anon_sym_SEMI] = ACTIONS(4648), + [anon_sym_EQ] = ACTIONS(4648), + [anon_sym_QMARK] = ACTIONS(4648), + [anon_sym_LBRACK] = ACTIONS(4650), + [anon_sym_BSLASH] = ACTIONS(4650), + [anon_sym_CARET] = ACTIONS(4650), + [anon_sym__] = ACTIONS(4648), + [anon_sym_BQUOTE] = ACTIONS(4648), + [anon_sym_LBRACE] = ACTIONS(4648), + [anon_sym_PIPE] = ACTIONS(4648), + [anon_sym_TILDE] = ACTIONS(4648), + [anon_sym_LPAREN] = ACTIONS(4648), + [anon_sym_RPAREN] = ACTIONS(4648), + [sym__newline_token] = ACTIONS(4648), + [aux_sym_insert_token1] = ACTIONS(4648), + [aux_sym_delete_token1] = ACTIONS(4648), + [aux_sym_highlight_token1] = ACTIONS(4648), + [aux_sym_edit_comment_token1] = ACTIONS(4648), + [anon_sym_CARET_LBRACK] = ACTIONS(4648), + [anon_sym_LBRACK_CARET] = ACTIONS(4648), + [sym_uri_autolink] = ACTIONS(4648), + [sym_email_autolink] = ACTIONS(4648), + [sym__whitespace_ge_2] = ACTIONS(4648), + [aux_sym__whitespace_token1] = ACTIONS(4650), + [sym__word_no_digit] = ACTIONS(4648), + [sym__digits] = ACTIONS(4648), + [anon_sym_DASH_DASH] = ACTIONS(4650), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4648), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4648), + [sym__code_span_start] = ACTIONS(4648), + [sym__emphasis_open_star] = ACTIONS(4648), + [sym__emphasis_open_underscore] = ACTIONS(4648), + [sym__emphasis_close_star] = ACTIONS(4648), + [sym__last_token_punctuation] = ACTIONS(4668), + [sym__strikeout_open] = ACTIONS(4648), + [sym__latex_span_start] = ACTIONS(4648), + [sym__single_quote_open] = ACTIONS(4648), + [sym__double_quote_open] = ACTIONS(4648), + [sym__superscript_open] = ACTIONS(4648), + [sym__subscript_open] = ACTIONS(4648), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4648), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4648), + [sym__cite_author_in_text] = ACTIONS(4648), + [sym__cite_suppress_author] = ACTIONS(4648), + [sym__shortcode_open_escaped] = ACTIONS(4648), + [sym__shortcode_open] = ACTIONS(4648), + [sym__unclosed_span] = ACTIONS(4648), + }, + [STATE(601)] = { + [sym__backslash_escape] = ACTIONS(4648), + [sym_entity_reference] = ACTIONS(4648), + [sym_numeric_character_reference] = ACTIONS(4648), + [anon_sym_LT] = ACTIONS(4650), + [anon_sym_GT] = ACTIONS(4648), + [anon_sym_BANG] = ACTIONS(4648), + [anon_sym_DQUOTE] = ACTIONS(4648), + [anon_sym_POUND] = ACTIONS(4648), + [anon_sym_DOLLAR] = ACTIONS(4648), + [anon_sym_PERCENT] = ACTIONS(4648), + [anon_sym_AMP] = ACTIONS(4650), + [anon_sym_SQUOTE] = ACTIONS(4648), + [anon_sym_STAR] = ACTIONS(4648), + [anon_sym_PLUS] = ACTIONS(4648), + [anon_sym_COMMA] = ACTIONS(4648), + [anon_sym_DASH] = ACTIONS(4650), + [anon_sym_DOT] = ACTIONS(4650), + [anon_sym_SLASH] = ACTIONS(4648), + [anon_sym_COLON] = ACTIONS(4648), + [anon_sym_SEMI] = ACTIONS(4648), + [anon_sym_EQ] = ACTIONS(4648), + [anon_sym_QMARK] = ACTIONS(4648), + [anon_sym_LBRACK] = ACTIONS(4724), + [anon_sym_BSLASH] = ACTIONS(4650), + [anon_sym_CARET] = ACTIONS(4650), + [anon_sym__] = ACTIONS(4648), + [anon_sym_BQUOTE] = ACTIONS(4648), + [anon_sym_LBRACE] = ACTIONS(4648), + [anon_sym_PIPE] = ACTIONS(4648), + [anon_sym_TILDE] = ACTIONS(4648), + [anon_sym_LPAREN] = ACTIONS(4648), + [anon_sym_RPAREN] = ACTIONS(4648), + [sym__newline_token] = ACTIONS(4648), + [aux_sym_insert_token1] = ACTIONS(4648), + [aux_sym_delete_token1] = ACTIONS(4648), + [aux_sym_highlight_token1] = ACTIONS(4648), + [aux_sym_edit_comment_token1] = ACTIONS(4648), + [anon_sym_CARET_LBRACK] = ACTIONS(4648), + [anon_sym_LBRACK_CARET] = ACTIONS(4648), + [sym_uri_autolink] = ACTIONS(4648), + [sym_email_autolink] = ACTIONS(4648), + [sym__whitespace_ge_2] = ACTIONS(4648), + [aux_sym__whitespace_token1] = ACTIONS(4650), + [sym__word_no_digit] = ACTIONS(4648), + [sym__digits] = ACTIONS(4648), + [anon_sym_DASH_DASH] = ACTIONS(4650), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4648), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4648), + [sym__code_span_start] = ACTIONS(4648), + [sym__emphasis_open_star] = ACTIONS(4648), + [sym__emphasis_open_underscore] = ACTIONS(4648), + [sym__emphasis_close_star] = ACTIONS(4648), + [sym__last_token_punctuation] = ACTIONS(4668), + [sym__strikeout_open] = ACTIONS(4648), + [sym__latex_span_start] = ACTIONS(4648), + [sym__single_quote_open] = ACTIONS(4648), + [sym__double_quote_open] = ACTIONS(4648), + [sym__superscript_open] = ACTIONS(4648), + [sym__subscript_open] = ACTIONS(4648), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4648), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4648), + [sym__cite_author_in_text] = ACTIONS(4648), + [sym__cite_suppress_author] = ACTIONS(4648), + [sym__shortcode_open_escaped] = ACTIONS(4648), + [sym__shortcode_open] = ACTIONS(4648), + [sym__unclosed_span] = ACTIONS(4648), + }, + [STATE(602)] = { + [ts_builtin_sym_end] = ACTIONS(4728), + [sym__backslash_escape] = ACTIONS(4728), + [sym_entity_reference] = ACTIONS(4728), + [sym_numeric_character_reference] = ACTIONS(4728), + [anon_sym_LT] = ACTIONS(4730), + [anon_sym_GT] = ACTIONS(4728), + [anon_sym_BANG] = ACTIONS(4728), + [anon_sym_DQUOTE] = ACTIONS(4728), + [anon_sym_POUND] = ACTIONS(4728), + [anon_sym_DOLLAR] = ACTIONS(4728), + [anon_sym_PERCENT] = ACTIONS(4728), + [anon_sym_AMP] = ACTIONS(4730), + [anon_sym_SQUOTE] = ACTIONS(4728), + [anon_sym_STAR] = ACTIONS(4728), + [anon_sym_PLUS] = ACTIONS(4728), + [anon_sym_COMMA] = ACTIONS(4728), + [anon_sym_DASH] = ACTIONS(4730), + [anon_sym_DOT] = ACTIONS(4730), + [anon_sym_SLASH] = ACTIONS(4728), + [anon_sym_COLON] = ACTIONS(4728), + [anon_sym_SEMI] = ACTIONS(4728), + [anon_sym_EQ] = ACTIONS(4728), + [anon_sym_QMARK] = ACTIONS(4728), + [anon_sym_LBRACK] = ACTIONS(4730), + [anon_sym_BSLASH] = ACTIONS(4730), + [anon_sym_CARET] = ACTIONS(4730), + [anon_sym__] = ACTIONS(4728), + [anon_sym_BQUOTE] = ACTIONS(4728), + [anon_sym_LBRACE] = ACTIONS(4728), + [anon_sym_PIPE] = ACTIONS(4728), + [anon_sym_TILDE] = ACTIONS(4728), + [anon_sym_LPAREN] = ACTIONS(4728), + [anon_sym_RPAREN] = ACTIONS(4728), + [sym__newline_token] = ACTIONS(4728), + [aux_sym_insert_token1] = ACTIONS(4728), + [aux_sym_delete_token1] = ACTIONS(4728), + [aux_sym_highlight_token1] = ACTIONS(4728), + [aux_sym_edit_comment_token1] = ACTIONS(4728), + [anon_sym_CARET_LBRACK] = ACTIONS(4728), + [anon_sym_LBRACK_CARET] = ACTIONS(4728), + [sym_uri_autolink] = ACTIONS(4728), + [sym_email_autolink] = ACTIONS(4728), + [sym__whitespace_ge_2] = ACTIONS(4728), + [aux_sym__whitespace_token1] = ACTIONS(4730), + [sym__word_no_digit] = ACTIONS(4728), + [sym__digits] = ACTIONS(4728), + [anon_sym_DASH_DASH] = ACTIONS(4730), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4728), + [sym__code_span_start] = ACTIONS(4728), + [sym__emphasis_open_star] = ACTIONS(4728), + [sym__emphasis_open_underscore] = ACTIONS(4728), + [sym__last_token_whitespace] = ACTIONS(4744), + [sym__strikeout_open] = ACTIONS(4728), + [sym__latex_span_start] = ACTIONS(4728), + [sym__single_quote_open] = ACTIONS(4728), + [sym__double_quote_open] = ACTIONS(4728), + [sym__superscript_open] = ACTIONS(4728), + [sym__subscript_open] = ACTIONS(4728), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4728), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4728), + [sym__cite_author_in_text] = ACTIONS(4728), + [sym__cite_suppress_author] = ACTIONS(4728), + [sym__shortcode_open_escaped] = ACTIONS(4728), + [sym__shortcode_open] = ACTIONS(4728), + [sym__unclosed_span] = ACTIONS(4728), + }, + [STATE(603)] = { + [sym__backslash_escape] = ACTIONS(4690), + [sym_entity_reference] = ACTIONS(4690), + [sym_numeric_character_reference] = ACTIONS(4690), + [anon_sym_LT] = ACTIONS(4692), + [anon_sym_GT] = ACTIONS(4690), + [anon_sym_BANG] = ACTIONS(4690), + [anon_sym_DQUOTE] = ACTIONS(4690), + [anon_sym_POUND] = ACTIONS(4690), + [anon_sym_DOLLAR] = ACTIONS(4690), + [anon_sym_PERCENT] = ACTIONS(4690), + [anon_sym_AMP] = ACTIONS(4692), + [anon_sym_SQUOTE] = ACTIONS(4690), + [anon_sym_STAR] = ACTIONS(4690), + [anon_sym_PLUS] = ACTIONS(4690), + [anon_sym_COMMA] = ACTIONS(4690), + [anon_sym_DASH] = ACTIONS(4692), + [anon_sym_DOT] = ACTIONS(4692), + [anon_sym_SLASH] = ACTIONS(4690), + [anon_sym_COLON] = ACTIONS(4690), + [anon_sym_SEMI] = ACTIONS(4690), + [anon_sym_EQ] = ACTIONS(4690), + [anon_sym_QMARK] = ACTIONS(4690), + [anon_sym_LBRACK] = ACTIONS(4692), + [anon_sym_BSLASH] = ACTIONS(4692), + [anon_sym_CARET] = ACTIONS(4692), + [anon_sym__] = ACTIONS(4690), + [anon_sym_BQUOTE] = ACTIONS(4690), + [anon_sym_LBRACE] = ACTIONS(4690), + [anon_sym_PIPE] = ACTIONS(4690), + [anon_sym_TILDE] = ACTIONS(4690), + [anon_sym_LPAREN] = ACTIONS(4690), + [anon_sym_RPAREN] = ACTIONS(4690), + [sym__newline_token] = ACTIONS(4690), + [aux_sym_insert_token1] = ACTIONS(4690), + [aux_sym_delete_token1] = ACTIONS(4690), + [aux_sym_highlight_token1] = ACTIONS(4690), + [aux_sym_edit_comment_token1] = ACTIONS(4690), + [anon_sym_CARET_LBRACK] = ACTIONS(4690), + [anon_sym_LBRACK_CARET] = ACTIONS(4690), + [sym_uri_autolink] = ACTIONS(4690), + [sym_email_autolink] = ACTIONS(4690), + [sym__whitespace_ge_2] = ACTIONS(4690), + [aux_sym__whitespace_token1] = ACTIONS(4692), + [sym__word_no_digit] = ACTIONS(4690), + [sym__digits] = ACTIONS(4690), + [anon_sym_DASH_DASH] = ACTIONS(4692), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4690), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4690), + [sym__code_span_start] = ACTIONS(4690), + [sym__emphasis_open_star] = ACTIONS(4690), + [sym__emphasis_open_underscore] = ACTIONS(4690), + [sym__last_token_punctuation] = ACTIONS(4746), + [sym__strikeout_open] = ACTIONS(4690), + [sym__strikeout_close] = ACTIONS(4690), + [sym__latex_span_start] = ACTIONS(4690), + [sym__single_quote_open] = ACTIONS(4690), + [sym__double_quote_open] = ACTIONS(4690), + [sym__superscript_open] = ACTIONS(4690), + [sym__subscript_open] = ACTIONS(4690), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4690), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4690), + [sym__cite_author_in_text] = ACTIONS(4690), + [sym__cite_suppress_author] = ACTIONS(4690), + [sym__shortcode_open_escaped] = ACTIONS(4690), + [sym__shortcode_open] = ACTIONS(4690), + [sym__unclosed_span] = ACTIONS(4690), + }, + [STATE(604)] = { + [sym__backslash_escape] = ACTIONS(4642), + [sym_entity_reference] = ACTIONS(4642), + [sym_numeric_character_reference] = ACTIONS(4642), + [anon_sym_LT] = ACTIONS(4644), + [anon_sym_GT] = ACTIONS(4642), + [anon_sym_BANG] = ACTIONS(4642), + [anon_sym_DQUOTE] = ACTIONS(4642), + [anon_sym_POUND] = ACTIONS(4642), + [anon_sym_DOLLAR] = ACTIONS(4642), + [anon_sym_PERCENT] = ACTIONS(4642), + [anon_sym_AMP] = ACTIONS(4644), + [anon_sym_SQUOTE] = ACTIONS(4642), + [anon_sym_STAR] = ACTIONS(4642), + [anon_sym_PLUS] = ACTIONS(4642), + [anon_sym_COMMA] = ACTIONS(4642), + [anon_sym_DASH] = ACTIONS(4644), + [anon_sym_DOT] = ACTIONS(4644), + [anon_sym_SLASH] = ACTIONS(4642), + [anon_sym_COLON] = ACTIONS(4642), + [anon_sym_SEMI] = ACTIONS(4642), + [anon_sym_EQ] = ACTIONS(4642), + [anon_sym_QMARK] = ACTIONS(4642), + [anon_sym_LBRACK] = ACTIONS(4644), + [anon_sym_BSLASH] = ACTIONS(4644), + [anon_sym_CARET] = ACTIONS(4644), + [anon_sym__] = ACTIONS(4642), + [anon_sym_BQUOTE] = ACTIONS(4642), + [anon_sym_LBRACE] = ACTIONS(4642), + [anon_sym_PIPE] = ACTIONS(4642), + [anon_sym_TILDE] = ACTIONS(4642), + [anon_sym_LPAREN] = ACTIONS(4642), + [anon_sym_RPAREN] = ACTIONS(4642), + [sym__newline_token] = ACTIONS(4642), + [aux_sym_insert_token1] = ACTIONS(4642), + [aux_sym_delete_token1] = ACTIONS(4642), + [aux_sym_highlight_token1] = ACTIONS(4642), + [aux_sym_edit_comment_token1] = ACTIONS(4642), + [anon_sym_CARET_LBRACK] = ACTIONS(4642), + [anon_sym_LBRACK_CARET] = ACTIONS(4642), + [sym_uri_autolink] = ACTIONS(4642), + [sym_email_autolink] = ACTIONS(4642), + [sym__whitespace_ge_2] = ACTIONS(4642), + [aux_sym__whitespace_token1] = ACTIONS(4644), + [sym__word_no_digit] = ACTIONS(4642), + [sym__digits] = ACTIONS(4642), + [anon_sym_DASH_DASH] = ACTIONS(4644), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4642), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4642), + [sym__code_span_start] = ACTIONS(4642), + [sym__emphasis_open_star] = ACTIONS(4642), + [sym__emphasis_open_underscore] = ACTIONS(4642), + [sym__last_token_whitespace] = ACTIONS(4674), + [sym__strikeout_open] = ACTIONS(4642), + [sym__latex_span_start] = ACTIONS(4642), + [sym__single_quote_open] = ACTIONS(4642), + [sym__double_quote_open] = ACTIONS(4642), + [sym__superscript_open] = ACTIONS(4642), + [sym__superscript_close] = ACTIONS(4642), + [sym__subscript_open] = ACTIONS(4642), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4642), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4642), + [sym__cite_author_in_text] = ACTIONS(4642), + [sym__cite_suppress_author] = ACTIONS(4642), + [sym__shortcode_open_escaped] = ACTIONS(4642), + [sym__shortcode_open] = ACTIONS(4642), + [sym__unclosed_span] = ACTIONS(4642), + }, + [STATE(605)] = { + [sym__backslash_escape] = ACTIONS(4704), + [sym_entity_reference] = ACTIONS(4704), + [sym_numeric_character_reference] = ACTIONS(4704), + [anon_sym_LT] = ACTIONS(4706), + [anon_sym_GT] = ACTIONS(4704), + [anon_sym_BANG] = ACTIONS(4704), + [anon_sym_DQUOTE] = ACTIONS(4704), + [anon_sym_POUND] = ACTIONS(4704), + [anon_sym_DOLLAR] = ACTIONS(4704), + [anon_sym_PERCENT] = ACTIONS(4704), + [anon_sym_AMP] = ACTIONS(4706), + [anon_sym_SQUOTE] = ACTIONS(4704), + [anon_sym_STAR] = ACTIONS(4704), + [anon_sym_PLUS] = ACTIONS(4704), + [anon_sym_COMMA] = ACTIONS(4704), + [anon_sym_DASH] = ACTIONS(4706), + [anon_sym_DOT] = ACTIONS(4706), + [anon_sym_SLASH] = ACTIONS(4704), + [anon_sym_COLON] = ACTIONS(4704), + [anon_sym_SEMI] = ACTIONS(4704), + [anon_sym_EQ] = ACTIONS(4704), + [anon_sym_QMARK] = ACTIONS(4704), + [anon_sym_LBRACK] = ACTIONS(4706), + [anon_sym_BSLASH] = ACTIONS(4706), + [anon_sym_CARET] = ACTIONS(4706), + [anon_sym__] = ACTIONS(4704), + [anon_sym_BQUOTE] = ACTIONS(4704), + [anon_sym_LBRACE] = ACTIONS(4704), + [anon_sym_PIPE] = ACTIONS(4704), + [anon_sym_TILDE] = ACTIONS(4704), + [anon_sym_LPAREN] = ACTIONS(4704), + [anon_sym_RPAREN] = ACTIONS(4704), + [sym__newline_token] = ACTIONS(4704), + [aux_sym_insert_token1] = ACTIONS(4704), + [aux_sym_insert_token2] = ACTIONS(4704), + [aux_sym_delete_token1] = ACTIONS(4704), + [aux_sym_highlight_token1] = ACTIONS(4704), + [aux_sym_edit_comment_token1] = ACTIONS(4704), + [anon_sym_CARET_LBRACK] = ACTIONS(4704), + [anon_sym_LBRACK_CARET] = ACTIONS(4704), + [sym_uri_autolink] = ACTIONS(4704), + [sym_email_autolink] = ACTIONS(4704), + [sym__whitespace_ge_2] = ACTIONS(4706), + [aux_sym__whitespace_token1] = ACTIONS(4706), + [sym__word_no_digit] = ACTIONS(4704), + [sym__digits] = ACTIONS(4704), + [anon_sym_DASH_DASH] = ACTIONS(4706), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4704), + [sym__code_span_start] = ACTIONS(4704), + [sym__emphasis_open_star] = ACTIONS(4704), + [sym__emphasis_open_underscore] = ACTIONS(4704), + [sym__last_token_punctuation] = ACTIONS(4748), + [sym__strikeout_open] = ACTIONS(4704), + [sym__latex_span_start] = ACTIONS(4704), + [sym__single_quote_open] = ACTIONS(4704), + [sym__double_quote_open] = ACTIONS(4704), + [sym__superscript_open] = ACTIONS(4704), + [sym__subscript_open] = ACTIONS(4704), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4704), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4704), + [sym__cite_author_in_text] = ACTIONS(4704), + [sym__cite_suppress_author] = ACTIONS(4704), + [sym__shortcode_open_escaped] = ACTIONS(4704), + [sym__shortcode_open] = ACTIONS(4704), + [sym__unclosed_span] = ACTIONS(4704), + }, + [STATE(606)] = { + [sym__backslash_escape] = ACTIONS(4648), + [sym_entity_reference] = ACTIONS(4648), + [sym_numeric_character_reference] = ACTIONS(4648), + [anon_sym_LT] = ACTIONS(4650), + [anon_sym_GT] = ACTIONS(4648), + [anon_sym_BANG] = ACTIONS(4648), + [anon_sym_DQUOTE] = ACTIONS(4648), + [anon_sym_POUND] = ACTIONS(4648), + [anon_sym_DOLLAR] = ACTIONS(4648), + [anon_sym_PERCENT] = ACTIONS(4648), + [anon_sym_AMP] = ACTIONS(4650), + [anon_sym_SQUOTE] = ACTIONS(4648), + [anon_sym_STAR] = ACTIONS(4648), + [anon_sym_PLUS] = ACTIONS(4648), + [anon_sym_COMMA] = ACTIONS(4648), + [anon_sym_DASH] = ACTIONS(4650), + [anon_sym_DOT] = ACTIONS(4650), + [anon_sym_SLASH] = ACTIONS(4648), + [anon_sym_COLON] = ACTIONS(4648), + [anon_sym_SEMI] = ACTIONS(4648), + [anon_sym_EQ] = ACTIONS(4648), + [anon_sym_QMARK] = ACTIONS(4648), + [anon_sym_LBRACK] = ACTIONS(4724), + [anon_sym_BSLASH] = ACTIONS(4650), + [anon_sym_CARET] = ACTIONS(4650), + [anon_sym__] = ACTIONS(4648), + [anon_sym_BQUOTE] = ACTIONS(4648), + [anon_sym_LBRACE] = ACTIONS(4648), + [anon_sym_PIPE] = ACTIONS(4648), + [anon_sym_TILDE] = ACTIONS(4648), + [anon_sym_LPAREN] = ACTIONS(4648), + [anon_sym_RPAREN] = ACTIONS(4648), + [sym__newline_token] = ACTIONS(4648), + [aux_sym_insert_token1] = ACTIONS(4648), + [aux_sym_delete_token1] = ACTIONS(4648), + [aux_sym_highlight_token1] = ACTIONS(4648), + [aux_sym_edit_comment_token1] = ACTIONS(4648), + [anon_sym_CARET_LBRACK] = ACTIONS(4648), + [anon_sym_LBRACK_CARET] = ACTIONS(4648), + [sym_uri_autolink] = ACTIONS(4648), + [sym_email_autolink] = ACTIONS(4648), + [sym__whitespace_ge_2] = ACTIONS(4648), + [aux_sym__whitespace_token1] = ACTIONS(4650), + [sym__word_no_digit] = ACTIONS(4648), + [sym__digits] = ACTIONS(4648), + [anon_sym_DASH_DASH] = ACTIONS(4650), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4648), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4648), + [sym__code_span_start] = ACTIONS(4648), + [sym__emphasis_open_star] = ACTIONS(4648), + [sym__emphasis_open_underscore] = ACTIONS(4648), + [sym__last_token_punctuation] = ACTIONS(4682), + [sym__strikeout_open] = ACTIONS(4648), + [sym__strikeout_close] = ACTIONS(4648), + [sym__latex_span_start] = ACTIONS(4648), + [sym__single_quote_open] = ACTIONS(4648), + [sym__double_quote_open] = ACTIONS(4648), + [sym__superscript_open] = ACTIONS(4648), + [sym__subscript_open] = ACTIONS(4648), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4648), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4648), + [sym__cite_author_in_text] = ACTIONS(4648), + [sym__cite_suppress_author] = ACTIONS(4648), + [sym__shortcode_open_escaped] = ACTIONS(4648), + [sym__shortcode_open] = ACTIONS(4648), + [sym__unclosed_span] = ACTIONS(4648), + }, + [STATE(607)] = { + [sym__backslash_escape] = ACTIONS(4642), + [sym_entity_reference] = ACTIONS(4642), + [sym_numeric_character_reference] = ACTIONS(4642), + [anon_sym_LT] = ACTIONS(4644), + [anon_sym_GT] = ACTIONS(4642), + [anon_sym_BANG] = ACTIONS(4642), + [anon_sym_DQUOTE] = ACTIONS(4642), + [anon_sym_POUND] = ACTIONS(4642), + [anon_sym_DOLLAR] = ACTIONS(4642), + [anon_sym_PERCENT] = ACTIONS(4642), + [anon_sym_AMP] = ACTIONS(4644), + [anon_sym_SQUOTE] = ACTIONS(4642), + [anon_sym_STAR] = ACTIONS(4642), + [anon_sym_PLUS] = ACTIONS(4642), + [anon_sym_COMMA] = ACTIONS(4642), + [anon_sym_DASH] = ACTIONS(4644), + [anon_sym_DOT] = ACTIONS(4644), + [anon_sym_SLASH] = ACTIONS(4642), + [anon_sym_COLON] = ACTIONS(4642), + [anon_sym_SEMI] = ACTIONS(4642), + [anon_sym_EQ] = ACTIONS(4642), + [anon_sym_QMARK] = ACTIONS(4642), + [anon_sym_LBRACK] = ACTIONS(4644), + [anon_sym_BSLASH] = ACTIONS(4644), + [anon_sym_CARET] = ACTIONS(4644), + [anon_sym__] = ACTIONS(4642), + [anon_sym_BQUOTE] = ACTIONS(4642), + [anon_sym_LBRACE] = ACTIONS(4642), + [anon_sym_PIPE] = ACTIONS(4642), + [anon_sym_TILDE] = ACTIONS(4642), + [anon_sym_LPAREN] = ACTIONS(4642), + [anon_sym_RPAREN] = ACTIONS(4642), + [sym__newline_token] = ACTIONS(4642), + [aux_sym_insert_token1] = ACTIONS(4642), + [aux_sym_delete_token1] = ACTIONS(4642), + [aux_sym_highlight_token1] = ACTIONS(4642), + [aux_sym_edit_comment_token1] = ACTIONS(4642), + [anon_sym_CARET_LBRACK] = ACTIONS(4642), + [anon_sym_LBRACK_CARET] = ACTIONS(4642), + [sym_uri_autolink] = ACTIONS(4642), + [sym_email_autolink] = ACTIONS(4642), + [sym__whitespace_ge_2] = ACTIONS(4642), + [aux_sym__whitespace_token1] = ACTIONS(4644), + [sym__word_no_digit] = ACTIONS(4642), + [sym__digits] = ACTIONS(4642), + [anon_sym_DASH_DASH] = ACTIONS(4644), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4642), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4642), + [sym__code_span_start] = ACTIONS(4642), + [sym__emphasis_open_star] = ACTIONS(4642), + [sym__emphasis_open_underscore] = ACTIONS(4642), + [sym__last_token_whitespace] = ACTIONS(4688), + [sym__strikeout_open] = ACTIONS(4642), + [sym__strikeout_close] = ACTIONS(4642), + [sym__latex_span_start] = ACTIONS(4642), + [sym__single_quote_open] = ACTIONS(4642), + [sym__double_quote_open] = ACTIONS(4642), + [sym__superscript_open] = ACTIONS(4642), + [sym__subscript_open] = ACTIONS(4642), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4642), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4642), + [sym__cite_author_in_text] = ACTIONS(4642), + [sym__cite_suppress_author] = ACTIONS(4642), + [sym__shortcode_open_escaped] = ACTIONS(4642), + [sym__shortcode_open] = ACTIONS(4642), + [sym__unclosed_span] = ACTIONS(4642), + }, + [STATE(608)] = { + [sym__backslash_escape] = ACTIONS(4728), + [sym_entity_reference] = ACTIONS(4728), + [sym_numeric_character_reference] = ACTIONS(4728), + [anon_sym_LT] = ACTIONS(4730), + [anon_sym_GT] = ACTIONS(4728), + [anon_sym_BANG] = ACTIONS(4728), + [anon_sym_DQUOTE] = ACTIONS(4728), + [anon_sym_POUND] = ACTIONS(4728), + [anon_sym_DOLLAR] = ACTIONS(4728), + [anon_sym_PERCENT] = ACTIONS(4728), + [anon_sym_AMP] = ACTIONS(4730), + [anon_sym_SQUOTE] = ACTIONS(4728), + [anon_sym_STAR] = ACTIONS(4728), + [anon_sym_PLUS] = ACTIONS(4728), + [anon_sym_COMMA] = ACTIONS(4728), + [anon_sym_DASH] = ACTIONS(4730), + [anon_sym_DOT] = ACTIONS(4730), + [anon_sym_SLASH] = ACTIONS(4728), + [anon_sym_COLON] = ACTIONS(4728), + [anon_sym_SEMI] = ACTIONS(4728), + [anon_sym_EQ] = ACTIONS(4728), + [anon_sym_QMARK] = ACTIONS(4728), + [anon_sym_LBRACK] = ACTIONS(4730), + [anon_sym_BSLASH] = ACTIONS(4730), + [anon_sym_CARET] = ACTIONS(4730), + [anon_sym__] = ACTIONS(4728), + [anon_sym_BQUOTE] = ACTIONS(4728), + [anon_sym_LBRACE] = ACTIONS(4728), + [anon_sym_PIPE] = ACTIONS(4728), + [anon_sym_TILDE] = ACTIONS(4728), + [anon_sym_LPAREN] = ACTIONS(4728), + [anon_sym_RPAREN] = ACTIONS(4728), + [sym__newline_token] = ACTIONS(4728), + [aux_sym_insert_token1] = ACTIONS(4728), + [aux_sym_delete_token1] = ACTIONS(4728), + [aux_sym_highlight_token1] = ACTIONS(4728), + [aux_sym_edit_comment_token1] = ACTIONS(4728), + [anon_sym_CARET_LBRACK] = ACTIONS(4728), + [anon_sym_LBRACK_CARET] = ACTIONS(4728), + [sym_uri_autolink] = ACTIONS(4728), + [sym_email_autolink] = ACTIONS(4728), + [sym__whitespace_ge_2] = ACTIONS(4728), + [aux_sym__whitespace_token1] = ACTIONS(4730), + [sym__word_no_digit] = ACTIONS(4728), + [sym__digits] = ACTIONS(4728), + [anon_sym_DASH_DASH] = ACTIONS(4730), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4728), + [sym__code_span_start] = ACTIONS(4728), + [sym__emphasis_open_star] = ACTIONS(4728), + [sym__emphasis_open_underscore] = ACTIONS(4728), + [sym__last_token_whitespace] = ACTIONS(4750), + [sym__strikeout_open] = ACTIONS(4728), + [sym__latex_span_start] = ACTIONS(4728), + [sym__single_quote_open] = ACTIONS(4728), + [sym__single_quote_close] = ACTIONS(4728), + [sym__double_quote_open] = ACTIONS(4728), + [sym__superscript_open] = ACTIONS(4728), + [sym__subscript_open] = ACTIONS(4728), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4728), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4728), + [sym__cite_author_in_text] = ACTIONS(4728), + [sym__cite_suppress_author] = ACTIONS(4728), + [sym__shortcode_open_escaped] = ACTIONS(4728), + [sym__shortcode_open] = ACTIONS(4728), + [sym__unclosed_span] = ACTIONS(4728), + }, + [STATE(609)] = { + [sym__backslash_escape] = ACTIONS(4698), + [sym_entity_reference] = ACTIONS(4698), + [sym_numeric_character_reference] = ACTIONS(4698), + [anon_sym_LT] = ACTIONS(4700), + [anon_sym_GT] = ACTIONS(4698), + [anon_sym_BANG] = ACTIONS(4698), + [anon_sym_DQUOTE] = ACTIONS(4698), + [anon_sym_POUND] = ACTIONS(4698), + [anon_sym_DOLLAR] = ACTIONS(4698), + [anon_sym_PERCENT] = ACTIONS(4698), + [anon_sym_AMP] = ACTIONS(4700), + [anon_sym_SQUOTE] = ACTIONS(4698), + [anon_sym_STAR] = ACTIONS(4698), + [anon_sym_PLUS] = ACTIONS(4698), + [anon_sym_COMMA] = ACTIONS(4698), + [anon_sym_DASH] = ACTIONS(4700), + [anon_sym_DOT] = ACTIONS(4700), + [anon_sym_SLASH] = ACTIONS(4698), + [anon_sym_COLON] = ACTIONS(4698), + [anon_sym_SEMI] = ACTIONS(4698), + [anon_sym_EQ] = ACTIONS(4698), + [anon_sym_QMARK] = ACTIONS(4698), + [anon_sym_LBRACK] = ACTIONS(4700), + [anon_sym_BSLASH] = ACTIONS(4700), + [anon_sym_CARET] = ACTIONS(4700), + [anon_sym__] = ACTIONS(4698), + [anon_sym_BQUOTE] = ACTIONS(4698), + [anon_sym_LBRACE] = ACTIONS(4698), + [anon_sym_PIPE] = ACTIONS(4698), + [anon_sym_TILDE] = ACTIONS(4698), + [anon_sym_LPAREN] = ACTIONS(4698), + [anon_sym_RPAREN] = ACTIONS(4698), + [sym__newline_token] = ACTIONS(4698), + [aux_sym_insert_token1] = ACTIONS(4698), + [aux_sym_delete_token1] = ACTIONS(4698), + [aux_sym_highlight_token1] = ACTIONS(4698), + [aux_sym_edit_comment_token1] = ACTIONS(4698), + [anon_sym_CARET_LBRACK] = ACTIONS(4698), + [anon_sym_LBRACK_CARET] = ACTIONS(4698), + [sym_uri_autolink] = ACTIONS(4698), + [sym_email_autolink] = ACTIONS(4698), + [sym__whitespace_ge_2] = ACTIONS(4698), + [aux_sym__whitespace_token1] = ACTIONS(4700), + [sym__word_no_digit] = ACTIONS(4698), + [sym__digits] = ACTIONS(4698), + [anon_sym_DASH_DASH] = ACTIONS(4700), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4698), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4698), + [sym__code_span_start] = ACTIONS(4698), + [sym__emphasis_open_star] = ACTIONS(4698), + [sym__emphasis_open_underscore] = ACTIONS(4698), + [sym__last_token_punctuation] = ACTIONS(4752), + [sym__strikeout_open] = ACTIONS(4698), + [sym__strikeout_close] = ACTIONS(4698), + [sym__latex_span_start] = ACTIONS(4698), + [sym__single_quote_open] = ACTIONS(4698), + [sym__double_quote_open] = ACTIONS(4698), + [sym__superscript_open] = ACTIONS(4698), + [sym__subscript_open] = ACTIONS(4698), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4698), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4698), + [sym__cite_author_in_text] = ACTIONS(4698), + [sym__cite_suppress_author] = ACTIONS(4698), + [sym__shortcode_open_escaped] = ACTIONS(4698), + [sym__shortcode_open] = ACTIONS(4698), + [sym__unclosed_span] = ACTIONS(4698), + }, + [STATE(610)] = { + [sym__backslash_escape] = ACTIONS(4698), + [sym_entity_reference] = ACTIONS(4698), + [sym_numeric_character_reference] = ACTIONS(4698), + [anon_sym_LT] = ACTIONS(4700), + [anon_sym_GT] = ACTIONS(4698), + [anon_sym_BANG] = ACTIONS(4698), + [anon_sym_DQUOTE] = ACTIONS(4698), + [anon_sym_POUND] = ACTIONS(4698), + [anon_sym_DOLLAR] = ACTIONS(4698), + [anon_sym_PERCENT] = ACTIONS(4698), + [anon_sym_AMP] = ACTIONS(4700), + [anon_sym_SQUOTE] = ACTIONS(4698), + [anon_sym_STAR] = ACTIONS(4698), + [anon_sym_PLUS] = ACTIONS(4698), + [anon_sym_COMMA] = ACTIONS(4698), + [anon_sym_DASH] = ACTIONS(4700), + [anon_sym_DOT] = ACTIONS(4700), + [anon_sym_SLASH] = ACTIONS(4698), + [anon_sym_COLON] = ACTIONS(4698), + [anon_sym_SEMI] = ACTIONS(4698), + [anon_sym_EQ] = ACTIONS(4698), + [anon_sym_QMARK] = ACTIONS(4698), + [anon_sym_LBRACK] = ACTIONS(4700), + [anon_sym_BSLASH] = ACTIONS(4700), + [anon_sym_CARET] = ACTIONS(4700), + [anon_sym__] = ACTIONS(4698), + [anon_sym_BQUOTE] = ACTIONS(4698), + [anon_sym_LBRACE] = ACTIONS(4698), + [anon_sym_PIPE] = ACTIONS(4698), + [anon_sym_TILDE] = ACTIONS(4698), + [anon_sym_LPAREN] = ACTIONS(4698), + [anon_sym_RPAREN] = ACTIONS(4698), + [sym__newline_token] = ACTIONS(4698), + [aux_sym_insert_token1] = ACTIONS(4698), + [aux_sym_insert_token2] = ACTIONS(4698), + [aux_sym_delete_token1] = ACTIONS(4698), + [aux_sym_highlight_token1] = ACTIONS(4698), + [aux_sym_edit_comment_token1] = ACTIONS(4698), + [anon_sym_CARET_LBRACK] = ACTIONS(4698), + [anon_sym_LBRACK_CARET] = ACTIONS(4698), + [sym_uri_autolink] = ACTIONS(4698), + [sym_email_autolink] = ACTIONS(4698), + [sym__whitespace_ge_2] = ACTIONS(4700), + [aux_sym__whitespace_token1] = ACTIONS(4700), + [sym__word_no_digit] = ACTIONS(4698), + [sym__digits] = ACTIONS(4698), + [anon_sym_DASH_DASH] = ACTIONS(4700), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4698), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4698), + [sym__code_span_start] = ACTIONS(4698), + [sym__emphasis_open_star] = ACTIONS(4698), + [sym__emphasis_open_underscore] = ACTIONS(4698), + [sym__last_token_punctuation] = ACTIONS(4754), + [sym__strikeout_open] = ACTIONS(4698), + [sym__latex_span_start] = ACTIONS(4698), + [sym__single_quote_open] = ACTIONS(4698), + [sym__double_quote_open] = ACTIONS(4698), + [sym__superscript_open] = ACTIONS(4698), + [sym__subscript_open] = ACTIONS(4698), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4698), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4698), + [sym__cite_author_in_text] = ACTIONS(4698), + [sym__cite_suppress_author] = ACTIONS(4698), + [sym__shortcode_open_escaped] = ACTIONS(4698), + [sym__shortcode_open] = ACTIONS(4698), + [sym__unclosed_span] = ACTIONS(4698), + }, + [STATE(611)] = { + [sym__backslash_escape] = ACTIONS(4690), + [sym_entity_reference] = ACTIONS(4690), + [sym_numeric_character_reference] = ACTIONS(4690), + [anon_sym_LT] = ACTIONS(4692), + [anon_sym_GT] = ACTIONS(4690), + [anon_sym_BANG] = ACTIONS(4690), + [anon_sym_DQUOTE] = ACTIONS(4690), + [anon_sym_POUND] = ACTIONS(4690), + [anon_sym_DOLLAR] = ACTIONS(4690), + [anon_sym_PERCENT] = ACTIONS(4690), + [anon_sym_AMP] = ACTIONS(4692), + [anon_sym_SQUOTE] = ACTIONS(4690), + [anon_sym_STAR] = ACTIONS(4690), + [anon_sym_PLUS] = ACTIONS(4690), + [anon_sym_COMMA] = ACTIONS(4690), + [anon_sym_DASH] = ACTIONS(4692), + [anon_sym_DOT] = ACTIONS(4692), + [anon_sym_SLASH] = ACTIONS(4690), + [anon_sym_COLON] = ACTIONS(4690), + [anon_sym_SEMI] = ACTIONS(4690), + [anon_sym_EQ] = ACTIONS(4690), + [anon_sym_QMARK] = ACTIONS(4690), + [anon_sym_LBRACK] = ACTIONS(4692), + [anon_sym_BSLASH] = ACTIONS(4692), + [anon_sym_RBRACK] = ACTIONS(4690), + [anon_sym_CARET] = ACTIONS(4692), + [anon_sym__] = ACTIONS(4690), + [anon_sym_BQUOTE] = ACTIONS(4690), + [anon_sym_LBRACE] = ACTIONS(4690), + [anon_sym_PIPE] = ACTIONS(4690), + [anon_sym_TILDE] = ACTIONS(4690), + [anon_sym_LPAREN] = ACTIONS(4690), + [anon_sym_RPAREN] = ACTIONS(4690), + [sym__newline_token] = ACTIONS(4690), + [aux_sym_insert_token1] = ACTIONS(4690), + [aux_sym_delete_token1] = ACTIONS(4690), + [aux_sym_highlight_token1] = ACTIONS(4690), + [aux_sym_edit_comment_token1] = ACTIONS(4690), + [anon_sym_CARET_LBRACK] = ACTIONS(4690), + [anon_sym_LBRACK_CARET] = ACTIONS(4690), + [sym_uri_autolink] = ACTIONS(4690), + [sym_email_autolink] = ACTIONS(4690), + [sym__whitespace_ge_2] = ACTIONS(4690), + [aux_sym__whitespace_token1] = ACTIONS(4692), + [sym__word_no_digit] = ACTIONS(4690), + [sym__digits] = ACTIONS(4690), + [anon_sym_DASH_DASH] = ACTIONS(4692), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4690), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4690), + [sym__code_span_start] = ACTIONS(4690), + [sym__emphasis_open_star] = ACTIONS(4690), + [sym__emphasis_open_underscore] = ACTIONS(4690), + [sym__last_token_punctuation] = ACTIONS(4756), + [sym__strikeout_open] = ACTIONS(4690), + [sym__latex_span_start] = ACTIONS(4690), + [sym__single_quote_open] = ACTIONS(4690), + [sym__double_quote_open] = ACTIONS(4690), + [sym__superscript_open] = ACTIONS(4690), + [sym__subscript_open] = ACTIONS(4690), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4690), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4690), + [sym__cite_author_in_text] = ACTIONS(4690), + [sym__cite_suppress_author] = ACTIONS(4690), + [sym__shortcode_open_escaped] = ACTIONS(4690), + [sym__shortcode_open] = ACTIONS(4690), + [sym__unclosed_span] = ACTIONS(4690), + }, + [STATE(612)] = { + [sym__backslash_escape] = ACTIONS(4704), + [sym_entity_reference] = ACTIONS(4704), + [sym_numeric_character_reference] = ACTIONS(4704), + [anon_sym_LT] = ACTIONS(4706), + [anon_sym_GT] = ACTIONS(4704), + [anon_sym_BANG] = ACTIONS(4704), + [anon_sym_DQUOTE] = ACTIONS(4704), + [anon_sym_POUND] = ACTIONS(4704), + [anon_sym_DOLLAR] = ACTIONS(4704), + [anon_sym_PERCENT] = ACTIONS(4704), + [anon_sym_AMP] = ACTIONS(4706), + [anon_sym_SQUOTE] = ACTIONS(4704), + [anon_sym_STAR] = ACTIONS(4704), + [anon_sym_PLUS] = ACTIONS(4704), + [anon_sym_COMMA] = ACTIONS(4704), + [anon_sym_DASH] = ACTIONS(4706), + [anon_sym_DOT] = ACTIONS(4706), + [anon_sym_SLASH] = ACTIONS(4704), + [anon_sym_COLON] = ACTIONS(4704), + [anon_sym_SEMI] = ACTIONS(4704), + [anon_sym_EQ] = ACTIONS(4704), + [anon_sym_QMARK] = ACTIONS(4704), + [anon_sym_LBRACK] = ACTIONS(4706), + [anon_sym_BSLASH] = ACTIONS(4706), + [anon_sym_CARET] = ACTIONS(4706), + [anon_sym__] = ACTIONS(4704), + [anon_sym_BQUOTE] = ACTIONS(4704), + [anon_sym_LBRACE] = ACTIONS(4704), + [anon_sym_PIPE] = ACTIONS(4704), + [anon_sym_TILDE] = ACTIONS(4704), + [anon_sym_LPAREN] = ACTIONS(4704), + [anon_sym_RPAREN] = ACTIONS(4704), + [sym__newline_token] = ACTIONS(4704), + [aux_sym_insert_token1] = ACTIONS(4704), + [aux_sym_delete_token1] = ACTIONS(4704), + [aux_sym_highlight_token1] = ACTIONS(4704), + [aux_sym_edit_comment_token1] = ACTIONS(4704), + [anon_sym_CARET_LBRACK] = ACTIONS(4704), + [anon_sym_LBRACK_CARET] = ACTIONS(4704), + [sym_uri_autolink] = ACTIONS(4704), + [sym_email_autolink] = ACTIONS(4704), + [sym__whitespace_ge_2] = ACTIONS(4704), + [aux_sym__whitespace_token1] = ACTIONS(4706), + [sym__word_no_digit] = ACTIONS(4704), + [sym__digits] = ACTIONS(4704), + [anon_sym_DASH_DASH] = ACTIONS(4706), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4704), + [sym__code_span_start] = ACTIONS(4704), + [sym__emphasis_open_star] = ACTIONS(4704), + [sym__emphasis_open_underscore] = ACTIONS(4704), + [sym__emphasis_close_star] = ACTIONS(4704), + [sym__last_token_punctuation] = ACTIONS(4758), + [sym__strikeout_open] = ACTIONS(4704), + [sym__latex_span_start] = ACTIONS(4704), + [sym__single_quote_open] = ACTIONS(4704), + [sym__double_quote_open] = ACTIONS(4704), + [sym__superscript_open] = ACTIONS(4704), + [sym__subscript_open] = ACTIONS(4704), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4704), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4704), + [sym__cite_author_in_text] = ACTIONS(4704), + [sym__cite_suppress_author] = ACTIONS(4704), + [sym__shortcode_open_escaped] = ACTIONS(4704), + [sym__shortcode_open] = ACTIONS(4704), + [sym__unclosed_span] = ACTIONS(4704), + }, + [STATE(613)] = { + [sym__backslash_escape] = ACTIONS(4642), + [sym_entity_reference] = ACTIONS(4642), + [sym_numeric_character_reference] = ACTIONS(4642), + [anon_sym_LT] = ACTIONS(4644), + [anon_sym_GT] = ACTIONS(4642), + [anon_sym_BANG] = ACTIONS(4642), + [anon_sym_DQUOTE] = ACTIONS(4642), + [anon_sym_POUND] = ACTIONS(4642), + [anon_sym_DOLLAR] = ACTIONS(4642), + [anon_sym_PERCENT] = ACTIONS(4642), + [anon_sym_AMP] = ACTIONS(4644), + [anon_sym_SQUOTE] = ACTIONS(4642), + [anon_sym_STAR] = ACTIONS(4642), + [anon_sym_PLUS] = ACTIONS(4642), + [anon_sym_COMMA] = ACTIONS(4642), + [anon_sym_DASH] = ACTIONS(4644), + [anon_sym_DOT] = ACTIONS(4644), + [anon_sym_SLASH] = ACTIONS(4642), + [anon_sym_COLON] = ACTIONS(4642), + [anon_sym_SEMI] = ACTIONS(4642), + [anon_sym_EQ] = ACTIONS(4642), + [anon_sym_QMARK] = ACTIONS(4642), + [anon_sym_LBRACK] = ACTIONS(4644), + [anon_sym_BSLASH] = ACTIONS(4644), + [anon_sym_CARET] = ACTIONS(4644), + [anon_sym__] = ACTIONS(4642), + [anon_sym_BQUOTE] = ACTIONS(4642), + [anon_sym_LBRACE] = ACTIONS(4642), + [anon_sym_PIPE] = ACTIONS(4642), + [anon_sym_TILDE] = ACTIONS(4642), + [anon_sym_LPAREN] = ACTIONS(4642), + [anon_sym_RPAREN] = ACTIONS(4642), + [sym__newline_token] = ACTIONS(4642), + [aux_sym_insert_token1] = ACTIONS(4642), + [aux_sym_delete_token1] = ACTIONS(4642), + [aux_sym_highlight_token1] = ACTIONS(4642), + [aux_sym_edit_comment_token1] = ACTIONS(4642), + [anon_sym_CARET_LBRACK] = ACTIONS(4642), + [anon_sym_LBRACK_CARET] = ACTIONS(4642), + [sym_uri_autolink] = ACTIONS(4642), + [sym_email_autolink] = ACTIONS(4642), + [sym__whitespace_ge_2] = ACTIONS(4642), + [aux_sym__whitespace_token1] = ACTIONS(4644), + [sym__word_no_digit] = ACTIONS(4642), + [sym__digits] = ACTIONS(4642), + [anon_sym_DASH_DASH] = ACTIONS(4644), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4642), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4642), + [sym__code_span_start] = ACTIONS(4642), + [sym__emphasis_open_star] = ACTIONS(4642), + [sym__emphasis_open_underscore] = ACTIONS(4642), + [sym__last_token_whitespace] = ACTIONS(4656), + [sym__strikeout_open] = ACTIONS(4642), + [sym__latex_span_start] = ACTIONS(4642), + [sym__single_quote_open] = ACTIONS(4642), + [sym__double_quote_open] = ACTIONS(4642), + [sym__double_quote_close] = ACTIONS(4642), + [sym__superscript_open] = ACTIONS(4642), + [sym__subscript_open] = ACTIONS(4642), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4642), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4642), + [sym__cite_author_in_text] = ACTIONS(4642), + [sym__cite_suppress_author] = ACTIONS(4642), + [sym__shortcode_open_escaped] = ACTIONS(4642), + [sym__shortcode_open] = ACTIONS(4642), + [sym__unclosed_span] = ACTIONS(4642), + }, + [STATE(614)] = { + [sym__backslash_escape] = ACTIONS(4718), + [sym_entity_reference] = ACTIONS(4718), + [sym_numeric_character_reference] = ACTIONS(4718), + [anon_sym_LT] = ACTIONS(4720), + [anon_sym_GT] = ACTIONS(4718), + [anon_sym_BANG] = ACTIONS(4718), + [anon_sym_DQUOTE] = ACTIONS(4718), + [anon_sym_POUND] = ACTIONS(4718), + [anon_sym_DOLLAR] = ACTIONS(4718), + [anon_sym_PERCENT] = ACTIONS(4718), + [anon_sym_AMP] = ACTIONS(4720), + [anon_sym_SQUOTE] = ACTIONS(4718), + [anon_sym_STAR] = ACTIONS(4718), + [anon_sym_PLUS] = ACTIONS(4718), + [anon_sym_COMMA] = ACTIONS(4718), + [anon_sym_DASH] = ACTIONS(4720), + [anon_sym_DOT] = ACTIONS(4720), + [anon_sym_SLASH] = ACTIONS(4718), + [anon_sym_COLON] = ACTIONS(4718), + [anon_sym_SEMI] = ACTIONS(4718), + [anon_sym_EQ] = ACTIONS(4718), + [anon_sym_QMARK] = ACTIONS(4718), + [anon_sym_LBRACK] = ACTIONS(4720), + [anon_sym_BSLASH] = ACTIONS(4720), + [anon_sym_CARET] = ACTIONS(4720), + [anon_sym__] = ACTIONS(4718), + [anon_sym_BQUOTE] = ACTIONS(4718), + [anon_sym_LBRACE] = ACTIONS(4718), + [anon_sym_PIPE] = ACTIONS(4718), + [anon_sym_TILDE] = ACTIONS(4718), + [anon_sym_LPAREN] = ACTIONS(4718), + [anon_sym_RPAREN] = ACTIONS(4718), + [sym__newline_token] = ACTIONS(4718), + [aux_sym_insert_token1] = ACTIONS(4718), + [aux_sym_insert_token2] = ACTIONS(4718), + [aux_sym_delete_token1] = ACTIONS(4718), + [aux_sym_highlight_token1] = ACTIONS(4718), + [aux_sym_edit_comment_token1] = ACTIONS(4718), + [anon_sym_CARET_LBRACK] = ACTIONS(4718), + [anon_sym_LBRACK_CARET] = ACTIONS(4718), + [sym_uri_autolink] = ACTIONS(4718), + [sym_email_autolink] = ACTIONS(4718), + [sym__whitespace_ge_2] = ACTIONS(4720), + [aux_sym__whitespace_token1] = ACTIONS(4720), + [sym__word_no_digit] = ACTIONS(4718), + [sym__digits] = ACTIONS(4718), + [anon_sym_DASH_DASH] = ACTIONS(4720), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4718), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4718), + [sym__code_span_start] = ACTIONS(4718), + [sym__emphasis_open_star] = ACTIONS(4718), + [sym__emphasis_open_underscore] = ACTIONS(4718), + [sym__last_token_punctuation] = ACTIONS(4760), + [sym__strikeout_open] = ACTIONS(4718), + [sym__latex_span_start] = ACTIONS(4718), + [sym__single_quote_open] = ACTIONS(4718), + [sym__double_quote_open] = ACTIONS(4718), + [sym__superscript_open] = ACTIONS(4718), + [sym__subscript_open] = ACTIONS(4718), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4718), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4718), + [sym__cite_author_in_text] = ACTIONS(4718), + [sym__cite_suppress_author] = ACTIONS(4718), + [sym__shortcode_open_escaped] = ACTIONS(4718), + [sym__shortcode_open] = ACTIONS(4718), + [sym__unclosed_span] = ACTIONS(4718), + }, + [STATE(615)] = { + [sym__backslash_escape] = ACTIONS(4718), + [sym_entity_reference] = ACTIONS(4718), + [sym_numeric_character_reference] = ACTIONS(4718), + [anon_sym_LT] = ACTIONS(4720), + [anon_sym_GT] = ACTIONS(4718), + [anon_sym_BANG] = ACTIONS(4718), + [anon_sym_DQUOTE] = ACTIONS(4718), + [anon_sym_POUND] = ACTIONS(4718), + [anon_sym_DOLLAR] = ACTIONS(4718), + [anon_sym_PERCENT] = ACTIONS(4718), + [anon_sym_AMP] = ACTIONS(4720), + [anon_sym_SQUOTE] = ACTIONS(4718), + [anon_sym_STAR] = ACTIONS(4718), + [anon_sym_PLUS] = ACTIONS(4718), + [anon_sym_COMMA] = ACTIONS(4718), + [anon_sym_DASH] = ACTIONS(4720), + [anon_sym_DOT] = ACTIONS(4720), + [anon_sym_SLASH] = ACTIONS(4718), + [anon_sym_COLON] = ACTIONS(4718), + [anon_sym_SEMI] = ACTIONS(4718), + [anon_sym_EQ] = ACTIONS(4718), + [anon_sym_QMARK] = ACTIONS(4718), + [anon_sym_LBRACK] = ACTIONS(4720), + [anon_sym_BSLASH] = ACTIONS(4720), + [anon_sym_CARET] = ACTIONS(4720), + [anon_sym__] = ACTIONS(4718), + [anon_sym_BQUOTE] = ACTIONS(4718), + [anon_sym_LBRACE] = ACTIONS(4718), + [anon_sym_PIPE] = ACTIONS(4718), + [anon_sym_TILDE] = ACTIONS(4718), + [anon_sym_LPAREN] = ACTIONS(4718), + [anon_sym_RPAREN] = ACTIONS(4718), + [sym__newline_token] = ACTIONS(4718), + [aux_sym_insert_token1] = ACTIONS(4718), + [aux_sym_delete_token1] = ACTIONS(4718), + [aux_sym_highlight_token1] = ACTIONS(4718), + [aux_sym_edit_comment_token1] = ACTIONS(4718), + [anon_sym_CARET_LBRACK] = ACTIONS(4718), + [anon_sym_LBRACK_CARET] = ACTIONS(4718), + [sym_uri_autolink] = ACTIONS(4718), + [sym_email_autolink] = ACTIONS(4718), + [sym__whitespace_ge_2] = ACTIONS(4718), + [aux_sym__whitespace_token1] = ACTIONS(4720), + [sym__word_no_digit] = ACTIONS(4718), + [sym__digits] = ACTIONS(4718), + [anon_sym_DASH_DASH] = ACTIONS(4720), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4718), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4718), + [sym__code_span_start] = ACTIONS(4718), + [sym__emphasis_open_star] = ACTIONS(4718), + [sym__emphasis_open_underscore] = ACTIONS(4718), + [sym__last_token_punctuation] = ACTIONS(4762), + [sym__strikeout_open] = ACTIONS(4718), + [sym__latex_span_start] = ACTIONS(4718), + [sym__single_quote_open] = ACTIONS(4718), + [sym__double_quote_open] = ACTIONS(4718), + [sym__double_quote_close] = ACTIONS(4718), + [sym__superscript_open] = ACTIONS(4718), + [sym__subscript_open] = ACTIONS(4718), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4718), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4718), + [sym__cite_author_in_text] = ACTIONS(4718), + [sym__cite_suppress_author] = ACTIONS(4718), + [sym__shortcode_open_escaped] = ACTIONS(4718), + [sym__shortcode_open] = ACTIONS(4718), + [sym__unclosed_span] = ACTIONS(4718), + }, + [STATE(616)] = { + [sym__backslash_escape] = ACTIONS(4698), + [sym_entity_reference] = ACTIONS(4698), + [sym_numeric_character_reference] = ACTIONS(4698), + [anon_sym_LT] = ACTIONS(4700), + [anon_sym_GT] = ACTIONS(4698), + [anon_sym_BANG] = ACTIONS(4698), + [anon_sym_DQUOTE] = ACTIONS(4698), + [anon_sym_POUND] = ACTIONS(4698), + [anon_sym_DOLLAR] = ACTIONS(4698), + [anon_sym_PERCENT] = ACTIONS(4698), + [anon_sym_AMP] = ACTIONS(4700), + [anon_sym_SQUOTE] = ACTIONS(4698), + [anon_sym_STAR] = ACTIONS(4698), + [anon_sym_PLUS] = ACTIONS(4698), + [anon_sym_COMMA] = ACTIONS(4698), + [anon_sym_DASH] = ACTIONS(4700), + [anon_sym_DOT] = ACTIONS(4700), + [anon_sym_SLASH] = ACTIONS(4698), + [anon_sym_COLON] = ACTIONS(4698), + [anon_sym_SEMI] = ACTIONS(4698), + [anon_sym_EQ] = ACTIONS(4698), + [anon_sym_QMARK] = ACTIONS(4698), + [anon_sym_LBRACK] = ACTIONS(4700), + [anon_sym_BSLASH] = ACTIONS(4700), + [anon_sym_RBRACK] = ACTIONS(4698), + [anon_sym_CARET] = ACTIONS(4700), + [anon_sym__] = ACTIONS(4698), + [anon_sym_BQUOTE] = ACTIONS(4698), + [anon_sym_LBRACE] = ACTIONS(4698), + [anon_sym_PIPE] = ACTIONS(4698), + [anon_sym_TILDE] = ACTIONS(4698), + [anon_sym_LPAREN] = ACTIONS(4698), + [anon_sym_RPAREN] = ACTIONS(4698), + [sym__newline_token] = ACTIONS(4698), + [aux_sym_insert_token1] = ACTIONS(4698), + [aux_sym_delete_token1] = ACTIONS(4698), + [aux_sym_highlight_token1] = ACTIONS(4698), + [aux_sym_edit_comment_token1] = ACTIONS(4698), + [anon_sym_CARET_LBRACK] = ACTIONS(4698), + [anon_sym_LBRACK_CARET] = ACTIONS(4698), + [sym_uri_autolink] = ACTIONS(4698), + [sym_email_autolink] = ACTIONS(4698), + [sym__whitespace_ge_2] = ACTIONS(4698), + [aux_sym__whitespace_token1] = ACTIONS(4700), + [sym__word_no_digit] = ACTIONS(4698), + [sym__digits] = ACTIONS(4698), + [anon_sym_DASH_DASH] = ACTIONS(4700), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4698), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4698), + [sym__code_span_start] = ACTIONS(4698), + [sym__emphasis_open_star] = ACTIONS(4698), + [sym__emphasis_open_underscore] = ACTIONS(4698), + [sym__last_token_punctuation] = ACTIONS(4764), + [sym__strikeout_open] = ACTIONS(4698), + [sym__latex_span_start] = ACTIONS(4698), + [sym__single_quote_open] = ACTIONS(4698), + [sym__double_quote_open] = ACTIONS(4698), + [sym__superscript_open] = ACTIONS(4698), + [sym__subscript_open] = ACTIONS(4698), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4698), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4698), + [sym__cite_author_in_text] = ACTIONS(4698), + [sym__cite_suppress_author] = ACTIONS(4698), + [sym__shortcode_open_escaped] = ACTIONS(4698), + [sym__shortcode_open] = ACTIONS(4698), + [sym__unclosed_span] = ACTIONS(4698), + }, + [STATE(617)] = { + [sym__backslash_escape] = ACTIONS(4690), + [sym_entity_reference] = ACTIONS(4690), + [sym_numeric_character_reference] = ACTIONS(4690), + [anon_sym_LT] = ACTIONS(4692), + [anon_sym_GT] = ACTIONS(4690), + [anon_sym_BANG] = ACTIONS(4690), + [anon_sym_DQUOTE] = ACTIONS(4690), + [anon_sym_POUND] = ACTIONS(4690), + [anon_sym_DOLLAR] = ACTIONS(4690), + [anon_sym_PERCENT] = ACTIONS(4690), + [anon_sym_AMP] = ACTIONS(4692), + [anon_sym_SQUOTE] = ACTIONS(4690), + [anon_sym_STAR] = ACTIONS(4690), + [anon_sym_PLUS] = ACTIONS(4690), + [anon_sym_COMMA] = ACTIONS(4690), + [anon_sym_DASH] = ACTIONS(4692), + [anon_sym_DOT] = ACTIONS(4692), + [anon_sym_SLASH] = ACTIONS(4690), + [anon_sym_COLON] = ACTIONS(4690), + [anon_sym_SEMI] = ACTIONS(4690), + [anon_sym_EQ] = ACTIONS(4690), + [anon_sym_QMARK] = ACTIONS(4690), + [anon_sym_LBRACK] = ACTIONS(4692), + [anon_sym_BSLASH] = ACTIONS(4692), + [anon_sym_CARET] = ACTIONS(4692), + [anon_sym__] = ACTIONS(4690), + [anon_sym_BQUOTE] = ACTIONS(4690), + [anon_sym_LBRACE] = ACTIONS(4690), + [anon_sym_PIPE] = ACTIONS(4690), + [anon_sym_TILDE] = ACTIONS(4690), + [anon_sym_LPAREN] = ACTIONS(4690), + [anon_sym_RPAREN] = ACTIONS(4690), + [sym__newline_token] = ACTIONS(4690), + [aux_sym_insert_token1] = ACTIONS(4690), + [aux_sym_delete_token1] = ACTIONS(4690), + [aux_sym_highlight_token1] = ACTIONS(4690), + [aux_sym_edit_comment_token1] = ACTIONS(4690), + [anon_sym_CARET_LBRACK] = ACTIONS(4690), + [anon_sym_LBRACK_CARET] = ACTIONS(4690), + [sym_uri_autolink] = ACTIONS(4690), + [sym_email_autolink] = ACTIONS(4690), + [sym__whitespace_ge_2] = ACTIONS(4690), + [aux_sym__whitespace_token1] = ACTIONS(4692), + [sym__word_no_digit] = ACTIONS(4690), + [sym__digits] = ACTIONS(4690), + [anon_sym_DASH_DASH] = ACTIONS(4692), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4690), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4690), + [sym__code_span_start] = ACTIONS(4690), + [sym__emphasis_open_star] = ACTIONS(4690), + [sym__emphasis_open_underscore] = ACTIONS(4690), + [sym__emphasis_close_star] = ACTIONS(4690), + [sym__last_token_punctuation] = ACTIONS(4766), + [sym__strikeout_open] = ACTIONS(4690), + [sym__latex_span_start] = ACTIONS(4690), + [sym__single_quote_open] = ACTIONS(4690), + [sym__double_quote_open] = ACTIONS(4690), + [sym__superscript_open] = ACTIONS(4690), + [sym__subscript_open] = ACTIONS(4690), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4690), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4690), + [sym__cite_author_in_text] = ACTIONS(4690), + [sym__cite_suppress_author] = ACTIONS(4690), + [sym__shortcode_open_escaped] = ACTIONS(4690), + [sym__shortcode_open] = ACTIONS(4690), + [sym__unclosed_span] = ACTIONS(4690), + }, + [STATE(618)] = { + [sym__backslash_escape] = ACTIONS(4698), + [sym_entity_reference] = ACTIONS(4698), + [sym_numeric_character_reference] = ACTIONS(4698), + [anon_sym_LT] = ACTIONS(4700), + [anon_sym_GT] = ACTIONS(4698), + [anon_sym_BANG] = ACTIONS(4698), + [anon_sym_DQUOTE] = ACTIONS(4698), + [anon_sym_POUND] = ACTIONS(4698), + [anon_sym_DOLLAR] = ACTIONS(4698), + [anon_sym_PERCENT] = ACTIONS(4698), + [anon_sym_AMP] = ACTIONS(4700), + [anon_sym_SQUOTE] = ACTIONS(4698), + [anon_sym_STAR] = ACTIONS(4698), + [anon_sym_PLUS] = ACTIONS(4698), + [anon_sym_COMMA] = ACTIONS(4698), + [anon_sym_DASH] = ACTIONS(4700), + [anon_sym_DOT] = ACTIONS(4700), + [anon_sym_SLASH] = ACTIONS(4698), + [anon_sym_COLON] = ACTIONS(4698), + [anon_sym_SEMI] = ACTIONS(4698), + [anon_sym_EQ] = ACTIONS(4698), + [anon_sym_QMARK] = ACTIONS(4698), + [anon_sym_LBRACK] = ACTIONS(4700), + [anon_sym_BSLASH] = ACTIONS(4700), + [anon_sym_CARET] = ACTIONS(4700), + [anon_sym__] = ACTIONS(4698), + [anon_sym_BQUOTE] = ACTIONS(4698), + [anon_sym_LBRACE] = ACTIONS(4698), + [anon_sym_PIPE] = ACTIONS(4698), + [anon_sym_TILDE] = ACTIONS(4698), + [anon_sym_LPAREN] = ACTIONS(4698), + [anon_sym_RPAREN] = ACTIONS(4698), + [sym__newline_token] = ACTIONS(4698), + [aux_sym_insert_token1] = ACTIONS(4698), + [aux_sym_delete_token1] = ACTIONS(4698), + [aux_sym_highlight_token1] = ACTIONS(4698), + [aux_sym_edit_comment_token1] = ACTIONS(4698), + [anon_sym_CARET_LBRACK] = ACTIONS(4698), + [anon_sym_LBRACK_CARET] = ACTIONS(4698), + [sym_uri_autolink] = ACTIONS(4698), + [sym_email_autolink] = ACTIONS(4698), + [sym__whitespace_ge_2] = ACTIONS(4698), + [aux_sym__whitespace_token1] = ACTIONS(4700), + [sym__word_no_digit] = ACTIONS(4698), + [sym__digits] = ACTIONS(4698), + [anon_sym_DASH_DASH] = ACTIONS(4700), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4698), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4698), + [sym__code_span_start] = ACTIONS(4698), + [sym__emphasis_open_star] = ACTIONS(4698), + [sym__emphasis_open_underscore] = ACTIONS(4698), + [sym__emphasis_close_star] = ACTIONS(4698), + [sym__last_token_punctuation] = ACTIONS(4768), + [sym__strikeout_open] = ACTIONS(4698), + [sym__latex_span_start] = ACTIONS(4698), + [sym__single_quote_open] = ACTIONS(4698), + [sym__double_quote_open] = ACTIONS(4698), + [sym__superscript_open] = ACTIONS(4698), + [sym__subscript_open] = ACTIONS(4698), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4698), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4698), + [sym__cite_author_in_text] = ACTIONS(4698), + [sym__cite_suppress_author] = ACTIONS(4698), + [sym__shortcode_open_escaped] = ACTIONS(4698), + [sym__shortcode_open] = ACTIONS(4698), + [sym__unclosed_span] = ACTIONS(4698), + }, + [STATE(619)] = { + [sym__backslash_escape] = ACTIONS(4690), + [sym_entity_reference] = ACTIONS(4690), + [sym_numeric_character_reference] = ACTIONS(4690), + [anon_sym_LT] = ACTIONS(4692), + [anon_sym_GT] = ACTIONS(4690), + [anon_sym_BANG] = ACTIONS(4690), + [anon_sym_DQUOTE] = ACTIONS(4690), + [anon_sym_POUND] = ACTIONS(4690), + [anon_sym_DOLLAR] = ACTIONS(4690), + [anon_sym_PERCENT] = ACTIONS(4690), + [anon_sym_AMP] = ACTIONS(4692), + [anon_sym_SQUOTE] = ACTIONS(4690), + [anon_sym_STAR] = ACTIONS(4690), + [anon_sym_PLUS] = ACTIONS(4690), + [anon_sym_COMMA] = ACTIONS(4690), + [anon_sym_DASH] = ACTIONS(4692), + [anon_sym_DOT] = ACTIONS(4692), + [anon_sym_SLASH] = ACTIONS(4690), + [anon_sym_COLON] = ACTIONS(4690), + [anon_sym_SEMI] = ACTIONS(4690), + [anon_sym_EQ] = ACTIONS(4690), + [anon_sym_QMARK] = ACTIONS(4690), + [anon_sym_LBRACK] = ACTIONS(4692), + [anon_sym_BSLASH] = ACTIONS(4692), + [anon_sym_CARET] = ACTIONS(4692), + [anon_sym__] = ACTIONS(4690), + [anon_sym_BQUOTE] = ACTIONS(4690), + [anon_sym_LBRACE] = ACTIONS(4690), + [anon_sym_PIPE] = ACTIONS(4690), + [anon_sym_TILDE] = ACTIONS(4690), + [anon_sym_LPAREN] = ACTIONS(4690), + [anon_sym_RPAREN] = ACTIONS(4690), + [sym__newline_token] = ACTIONS(4690), + [aux_sym_insert_token1] = ACTIONS(4690), + [aux_sym_delete_token1] = ACTIONS(4690), + [aux_sym_highlight_token1] = ACTIONS(4690), + [aux_sym_edit_comment_token1] = ACTIONS(4690), + [anon_sym_CARET_LBRACK] = ACTIONS(4690), + [anon_sym_LBRACK_CARET] = ACTIONS(4690), + [sym_uri_autolink] = ACTIONS(4690), + [sym_email_autolink] = ACTIONS(4690), + [sym__whitespace_ge_2] = ACTIONS(4690), + [aux_sym__whitespace_token1] = ACTIONS(4692), + [sym__word_no_digit] = ACTIONS(4690), + [sym__digits] = ACTIONS(4690), + [anon_sym_DASH_DASH] = ACTIONS(4692), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4690), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4690), + [sym__code_span_start] = ACTIONS(4690), + [sym__emphasis_open_star] = ACTIONS(4690), + [sym__emphasis_open_underscore] = ACTIONS(4690), + [sym__last_token_punctuation] = ACTIONS(4770), + [sym__strikeout_open] = ACTIONS(4690), + [sym__latex_span_start] = ACTIONS(4690), + [sym__single_quote_open] = ACTIONS(4690), + [sym__double_quote_open] = ACTIONS(4690), + [sym__double_quote_close] = ACTIONS(4690), + [sym__superscript_open] = ACTIONS(4690), + [sym__subscript_open] = ACTIONS(4690), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4690), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4690), + [sym__cite_author_in_text] = ACTIONS(4690), + [sym__cite_suppress_author] = ACTIONS(4690), + [sym__shortcode_open_escaped] = ACTIONS(4690), + [sym__shortcode_open] = ACTIONS(4690), + [sym__unclosed_span] = ACTIONS(4690), + }, + [STATE(620)] = { + [sym__backslash_escape] = ACTIONS(4690), + [sym_entity_reference] = ACTIONS(4690), + [sym_numeric_character_reference] = ACTIONS(4690), + [anon_sym_LT] = ACTIONS(4692), + [anon_sym_GT] = ACTIONS(4690), + [anon_sym_BANG] = ACTIONS(4690), + [anon_sym_DQUOTE] = ACTIONS(4690), + [anon_sym_POUND] = ACTIONS(4690), + [anon_sym_DOLLAR] = ACTIONS(4690), + [anon_sym_PERCENT] = ACTIONS(4690), + [anon_sym_AMP] = ACTIONS(4692), + [anon_sym_SQUOTE] = ACTIONS(4690), + [anon_sym_STAR] = ACTIONS(4690), + [anon_sym_PLUS] = ACTIONS(4690), + [anon_sym_COMMA] = ACTIONS(4690), + [anon_sym_DASH] = ACTIONS(4692), + [anon_sym_DOT] = ACTIONS(4692), + [anon_sym_SLASH] = ACTIONS(4690), + [anon_sym_COLON] = ACTIONS(4690), + [anon_sym_SEMI] = ACTIONS(4690), + [anon_sym_EQ] = ACTIONS(4690), + [anon_sym_QMARK] = ACTIONS(4690), + [anon_sym_LBRACK] = ACTIONS(4692), + [anon_sym_BSLASH] = ACTIONS(4692), + [anon_sym_CARET] = ACTIONS(4692), + [anon_sym__] = ACTIONS(4690), + [anon_sym_BQUOTE] = ACTIONS(4690), + [anon_sym_LBRACE] = ACTIONS(4690), + [anon_sym_PIPE] = ACTIONS(4690), + [anon_sym_TILDE] = ACTIONS(4690), + [anon_sym_LPAREN] = ACTIONS(4690), + [anon_sym_RPAREN] = ACTIONS(4690), + [sym__newline_token] = ACTIONS(4690), + [aux_sym_insert_token1] = ACTIONS(4690), + [aux_sym_delete_token1] = ACTIONS(4690), + [aux_sym_highlight_token1] = ACTIONS(4690), + [aux_sym_edit_comment_token1] = ACTIONS(4690), + [anon_sym_CARET_LBRACK] = ACTIONS(4690), + [anon_sym_LBRACK_CARET] = ACTIONS(4690), + [sym_uri_autolink] = ACTIONS(4690), + [sym_email_autolink] = ACTIONS(4690), + [sym__whitespace_ge_2] = ACTIONS(4690), + [aux_sym__whitespace_token1] = ACTIONS(4692), + [sym__word_no_digit] = ACTIONS(4690), + [sym__digits] = ACTIONS(4690), + [anon_sym_DASH_DASH] = ACTIONS(4692), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4690), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4690), + [sym__code_span_start] = ACTIONS(4690), + [sym__emphasis_open_star] = ACTIONS(4690), + [sym__emphasis_open_underscore] = ACTIONS(4690), + [sym__emphasis_close_underscore] = ACTIONS(4690), + [sym__last_token_punctuation] = ACTIONS(4772), + [sym__strikeout_open] = ACTIONS(4690), + [sym__latex_span_start] = ACTIONS(4690), + [sym__single_quote_open] = ACTIONS(4690), + [sym__double_quote_open] = ACTIONS(4690), + [sym__superscript_open] = ACTIONS(4690), + [sym__subscript_open] = ACTIONS(4690), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4690), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4690), + [sym__cite_author_in_text] = ACTIONS(4690), + [sym__cite_suppress_author] = ACTIONS(4690), + [sym__shortcode_open_escaped] = ACTIONS(4690), + [sym__shortcode_open] = ACTIONS(4690), + [sym__unclosed_span] = ACTIONS(4690), + }, + [STATE(621)] = { + [sym__backslash_escape] = ACTIONS(4718), + [sym_entity_reference] = ACTIONS(4718), + [sym_numeric_character_reference] = ACTIONS(4718), + [anon_sym_LT] = ACTIONS(4720), + [anon_sym_GT] = ACTIONS(4718), + [anon_sym_BANG] = ACTIONS(4718), + [anon_sym_DQUOTE] = ACTIONS(4718), + [anon_sym_POUND] = ACTIONS(4718), + [anon_sym_DOLLAR] = ACTIONS(4718), + [anon_sym_PERCENT] = ACTIONS(4718), + [anon_sym_AMP] = ACTIONS(4720), + [anon_sym_SQUOTE] = ACTIONS(4718), + [anon_sym_STAR] = ACTIONS(4718), + [anon_sym_PLUS] = ACTIONS(4718), + [anon_sym_COMMA] = ACTIONS(4718), + [anon_sym_DASH] = ACTIONS(4720), + [anon_sym_DOT] = ACTIONS(4720), + [anon_sym_SLASH] = ACTIONS(4718), + [anon_sym_COLON] = ACTIONS(4718), + [anon_sym_SEMI] = ACTIONS(4718), + [anon_sym_EQ] = ACTIONS(4718), + [anon_sym_QMARK] = ACTIONS(4718), + [anon_sym_LBRACK] = ACTIONS(4720), + [anon_sym_BSLASH] = ACTIONS(4720), + [anon_sym_CARET] = ACTIONS(4720), + [anon_sym__] = ACTIONS(4718), + [anon_sym_BQUOTE] = ACTIONS(4718), + [anon_sym_LBRACE] = ACTIONS(4718), + [anon_sym_PIPE] = ACTIONS(4718), + [anon_sym_TILDE] = ACTIONS(4718), + [anon_sym_LPAREN] = ACTIONS(4718), + [anon_sym_RPAREN] = ACTIONS(4718), + [sym__newline_token] = ACTIONS(4718), + [aux_sym_insert_token1] = ACTIONS(4718), + [aux_sym_delete_token1] = ACTIONS(4718), + [aux_sym_highlight_token1] = ACTIONS(4718), + [aux_sym_edit_comment_token1] = ACTIONS(4718), + [anon_sym_CARET_LBRACK] = ACTIONS(4718), + [anon_sym_LBRACK_CARET] = ACTIONS(4718), + [sym_uri_autolink] = ACTIONS(4718), + [sym_email_autolink] = ACTIONS(4718), + [sym__whitespace_ge_2] = ACTIONS(4718), + [aux_sym__whitespace_token1] = ACTIONS(4720), + [sym__word_no_digit] = ACTIONS(4718), + [sym__digits] = ACTIONS(4718), + [anon_sym_DASH_DASH] = ACTIONS(4720), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4718), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4718), + [sym__code_span_start] = ACTIONS(4718), + [sym__emphasis_open_star] = ACTIONS(4718), + [sym__emphasis_open_underscore] = ACTIONS(4718), + [sym__emphasis_close_star] = ACTIONS(4718), + [sym__last_token_punctuation] = ACTIONS(4774), + [sym__strikeout_open] = ACTIONS(4718), + [sym__latex_span_start] = ACTIONS(4718), + [sym__single_quote_open] = ACTIONS(4718), + [sym__double_quote_open] = ACTIONS(4718), + [sym__superscript_open] = ACTIONS(4718), + [sym__subscript_open] = ACTIONS(4718), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4718), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4718), + [sym__cite_author_in_text] = ACTIONS(4718), + [sym__cite_suppress_author] = ACTIONS(4718), + [sym__shortcode_open_escaped] = ACTIONS(4718), + [sym__shortcode_open] = ACTIONS(4718), + [sym__unclosed_span] = ACTIONS(4718), + }, + [STATE(622)] = { + [sym__backslash_escape] = ACTIONS(4704), + [sym_entity_reference] = ACTIONS(4704), + [sym_numeric_character_reference] = ACTIONS(4704), + [anon_sym_LT] = ACTIONS(4706), + [anon_sym_GT] = ACTIONS(4704), + [anon_sym_BANG] = ACTIONS(4704), + [anon_sym_DQUOTE] = ACTIONS(4704), + [anon_sym_POUND] = ACTIONS(4704), + [anon_sym_DOLLAR] = ACTIONS(4704), + [anon_sym_PERCENT] = ACTIONS(4704), + [anon_sym_AMP] = ACTIONS(4706), + [anon_sym_SQUOTE] = ACTIONS(4704), + [anon_sym_STAR] = ACTIONS(4704), + [anon_sym_PLUS] = ACTIONS(4704), + [anon_sym_COMMA] = ACTIONS(4704), + [anon_sym_DASH] = ACTIONS(4706), + [anon_sym_DOT] = ACTIONS(4706), + [anon_sym_SLASH] = ACTIONS(4704), + [anon_sym_COLON] = ACTIONS(4704), + [anon_sym_SEMI] = ACTIONS(4704), + [anon_sym_EQ] = ACTIONS(4704), + [anon_sym_QMARK] = ACTIONS(4704), + [anon_sym_LBRACK] = ACTIONS(4706), + [anon_sym_BSLASH] = ACTIONS(4706), + [anon_sym_CARET] = ACTIONS(4706), + [anon_sym__] = ACTIONS(4704), + [anon_sym_BQUOTE] = ACTIONS(4704), + [anon_sym_LBRACE] = ACTIONS(4704), + [anon_sym_PIPE] = ACTIONS(4704), + [anon_sym_TILDE] = ACTIONS(4704), + [anon_sym_LPAREN] = ACTIONS(4704), + [anon_sym_RPAREN] = ACTIONS(4704), + [sym__newline_token] = ACTIONS(4704), + [aux_sym_insert_token1] = ACTIONS(4704), + [aux_sym_delete_token1] = ACTIONS(4704), + [aux_sym_highlight_token1] = ACTIONS(4704), + [aux_sym_edit_comment_token1] = ACTIONS(4704), + [anon_sym_CARET_LBRACK] = ACTIONS(4704), + [anon_sym_LBRACK_CARET] = ACTIONS(4704), + [sym_uri_autolink] = ACTIONS(4704), + [sym_email_autolink] = ACTIONS(4704), + [sym__whitespace_ge_2] = ACTIONS(4704), + [aux_sym__whitespace_token1] = ACTIONS(4706), + [sym__word_no_digit] = ACTIONS(4704), + [sym__digits] = ACTIONS(4704), + [anon_sym_DASH_DASH] = ACTIONS(4706), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4704), + [sym__code_span_start] = ACTIONS(4704), + [sym__emphasis_open_star] = ACTIONS(4704), + [sym__emphasis_open_underscore] = ACTIONS(4704), + [sym__last_token_punctuation] = ACTIONS(4776), + [sym__strikeout_open] = ACTIONS(4704), + [sym__latex_span_start] = ACTIONS(4704), + [sym__single_quote_open] = ACTIONS(4704), + [sym__single_quote_close] = ACTIONS(4704), + [sym__double_quote_open] = ACTIONS(4704), + [sym__superscript_open] = ACTIONS(4704), + [sym__subscript_open] = ACTIONS(4704), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4704), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4704), + [sym__cite_author_in_text] = ACTIONS(4704), + [sym__cite_suppress_author] = ACTIONS(4704), + [sym__shortcode_open_escaped] = ACTIONS(4704), + [sym__shortcode_open] = ACTIONS(4704), + [sym__unclosed_span] = ACTIONS(4704), + }, + [STATE(623)] = { + [sym__backslash_escape] = ACTIONS(4698), + [sym_entity_reference] = ACTIONS(4698), + [sym_numeric_character_reference] = ACTIONS(4698), + [anon_sym_LT] = ACTIONS(4700), + [anon_sym_GT] = ACTIONS(4698), + [anon_sym_BANG] = ACTIONS(4698), + [anon_sym_DQUOTE] = ACTIONS(4698), + [anon_sym_POUND] = ACTIONS(4698), + [anon_sym_DOLLAR] = ACTIONS(4698), + [anon_sym_PERCENT] = ACTIONS(4698), + [anon_sym_AMP] = ACTIONS(4700), + [anon_sym_SQUOTE] = ACTIONS(4698), + [anon_sym_STAR] = ACTIONS(4698), + [anon_sym_PLUS] = ACTIONS(4698), + [anon_sym_COMMA] = ACTIONS(4698), + [anon_sym_DASH] = ACTIONS(4700), + [anon_sym_DOT] = ACTIONS(4700), + [anon_sym_SLASH] = ACTIONS(4698), + [anon_sym_COLON] = ACTIONS(4698), + [anon_sym_SEMI] = ACTIONS(4698), + [anon_sym_EQ] = ACTIONS(4698), + [anon_sym_QMARK] = ACTIONS(4698), + [anon_sym_LBRACK] = ACTIONS(4700), + [anon_sym_BSLASH] = ACTIONS(4700), + [anon_sym_CARET] = ACTIONS(4700), + [anon_sym__] = ACTIONS(4698), + [anon_sym_BQUOTE] = ACTIONS(4698), + [anon_sym_LBRACE] = ACTIONS(4698), + [anon_sym_PIPE] = ACTIONS(4698), + [anon_sym_TILDE] = ACTIONS(4698), + [anon_sym_LPAREN] = ACTIONS(4698), + [anon_sym_RPAREN] = ACTIONS(4698), + [sym__newline_token] = ACTIONS(4698), + [aux_sym_insert_token1] = ACTIONS(4698), + [aux_sym_delete_token1] = ACTIONS(4698), + [aux_sym_highlight_token1] = ACTIONS(4698), + [aux_sym_edit_comment_token1] = ACTIONS(4698), + [anon_sym_CARET_LBRACK] = ACTIONS(4698), + [anon_sym_LBRACK_CARET] = ACTIONS(4698), + [sym_uri_autolink] = ACTIONS(4698), + [sym_email_autolink] = ACTIONS(4698), + [sym__whitespace_ge_2] = ACTIONS(4698), + [aux_sym__whitespace_token1] = ACTIONS(4700), + [sym__word_no_digit] = ACTIONS(4698), + [sym__digits] = ACTIONS(4698), + [anon_sym_DASH_DASH] = ACTIONS(4700), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4698), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4698), + [sym__code_span_start] = ACTIONS(4698), + [sym__emphasis_open_star] = ACTIONS(4698), + [sym__emphasis_open_underscore] = ACTIONS(4698), + [sym__last_token_punctuation] = ACTIONS(4778), + [sym__strikeout_open] = ACTIONS(4698), + [sym__latex_span_start] = ACTIONS(4698), + [sym__single_quote_open] = ACTIONS(4698), + [sym__double_quote_open] = ACTIONS(4698), + [sym__double_quote_close] = ACTIONS(4698), + [sym__superscript_open] = ACTIONS(4698), + [sym__subscript_open] = ACTIONS(4698), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4698), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4698), + [sym__cite_author_in_text] = ACTIONS(4698), + [sym__cite_suppress_author] = ACTIONS(4698), + [sym__shortcode_open_escaped] = ACTIONS(4698), + [sym__shortcode_open] = ACTIONS(4698), + [sym__unclosed_span] = ACTIONS(4698), + }, + [STATE(624)] = { + [sym__backslash_escape] = ACTIONS(4648), + [sym_entity_reference] = ACTIONS(4648), + [sym_numeric_character_reference] = ACTIONS(4648), + [anon_sym_LT] = ACTIONS(4650), + [anon_sym_GT] = ACTIONS(4648), + [anon_sym_BANG] = ACTIONS(4648), + [anon_sym_DQUOTE] = ACTIONS(4648), + [anon_sym_POUND] = ACTIONS(4648), + [anon_sym_DOLLAR] = ACTIONS(4648), + [anon_sym_PERCENT] = ACTIONS(4648), + [anon_sym_AMP] = ACTIONS(4650), + [anon_sym_SQUOTE] = ACTIONS(4648), + [anon_sym_STAR] = ACTIONS(4648), + [anon_sym_PLUS] = ACTIONS(4648), + [anon_sym_COMMA] = ACTIONS(4648), + [anon_sym_DASH] = ACTIONS(4650), + [anon_sym_DOT] = ACTIONS(4650), + [anon_sym_SLASH] = ACTIONS(4648), + [anon_sym_COLON] = ACTIONS(4648), + [anon_sym_SEMI] = ACTIONS(4648), + [anon_sym_EQ] = ACTIONS(4648), + [anon_sym_QMARK] = ACTIONS(4648), + [anon_sym_LBRACK] = ACTIONS(4650), + [anon_sym_BSLASH] = ACTIONS(4650), + [anon_sym_RBRACK] = ACTIONS(4648), + [anon_sym_CARET] = ACTIONS(4650), + [anon_sym__] = ACTIONS(4648), + [anon_sym_BQUOTE] = ACTIONS(4648), + [anon_sym_LBRACE] = ACTIONS(4648), + [anon_sym_PIPE] = ACTIONS(4648), + [anon_sym_TILDE] = ACTIONS(4648), + [anon_sym_LPAREN] = ACTIONS(4648), + [anon_sym_RPAREN] = ACTIONS(4648), + [sym__newline_token] = ACTIONS(4648), + [aux_sym_insert_token1] = ACTIONS(4648), + [aux_sym_delete_token1] = ACTIONS(4648), + [aux_sym_highlight_token1] = ACTIONS(4648), + [aux_sym_edit_comment_token1] = ACTIONS(4648), + [anon_sym_CARET_LBRACK] = ACTIONS(4648), + [anon_sym_LBRACK_CARET] = ACTIONS(4648), + [sym_uri_autolink] = ACTIONS(4648), + [sym_email_autolink] = ACTIONS(4648), + [sym__whitespace_ge_2] = ACTIONS(4648), + [aux_sym__whitespace_token1] = ACTIONS(4650), + [sym__word_no_digit] = ACTIONS(4648), + [sym__digits] = ACTIONS(4648), + [anon_sym_DASH_DASH] = ACTIONS(4650), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4648), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4648), + [sym__code_span_start] = ACTIONS(4648), + [sym__emphasis_open_star] = ACTIONS(4648), + [sym__emphasis_open_underscore] = ACTIONS(4648), + [sym__last_token_punctuation] = ACTIONS(4678), + [sym__strikeout_open] = ACTIONS(4648), + [sym__latex_span_start] = ACTIONS(4648), + [sym__single_quote_open] = ACTIONS(4648), + [sym__double_quote_open] = ACTIONS(4648), + [sym__superscript_open] = ACTIONS(4648), + [sym__subscript_open] = ACTIONS(4648), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4648), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4648), + [sym__cite_author_in_text] = ACTIONS(4648), + [sym__cite_suppress_author] = ACTIONS(4648), + [sym__shortcode_open_escaped] = ACTIONS(4648), + [sym__shortcode_open] = ACTIONS(4648), + [sym__unclosed_span] = ACTIONS(4648), + }, + [STATE(625)] = { + [sym__backslash_escape] = ACTIONS(4648), + [sym_entity_reference] = ACTIONS(4648), + [sym_numeric_character_reference] = ACTIONS(4648), + [anon_sym_LT] = ACTIONS(4650), + [anon_sym_GT] = ACTIONS(4648), + [anon_sym_BANG] = ACTIONS(4648), + [anon_sym_DQUOTE] = ACTIONS(4648), + [anon_sym_POUND] = ACTIONS(4648), + [anon_sym_DOLLAR] = ACTIONS(4648), + [anon_sym_PERCENT] = ACTIONS(4648), + [anon_sym_AMP] = ACTIONS(4650), + [anon_sym_SQUOTE] = ACTIONS(4648), + [anon_sym_STAR] = ACTIONS(4648), + [anon_sym_PLUS] = ACTIONS(4648), + [anon_sym_COMMA] = ACTIONS(4648), + [anon_sym_DASH] = ACTIONS(4650), + [anon_sym_DOT] = ACTIONS(4650), + [anon_sym_SLASH] = ACTIONS(4648), + [anon_sym_COLON] = ACTIONS(4648), + [anon_sym_SEMI] = ACTIONS(4648), + [anon_sym_EQ] = ACTIONS(4648), + [anon_sym_QMARK] = ACTIONS(4648), + [anon_sym_LBRACK] = ACTIONS(4724), + [anon_sym_BSLASH] = ACTIONS(4650), + [anon_sym_RBRACK] = ACTIONS(4648), + [anon_sym_CARET] = ACTIONS(4650), + [anon_sym__] = ACTIONS(4648), + [anon_sym_BQUOTE] = ACTIONS(4648), + [anon_sym_LBRACE] = ACTIONS(4648), + [anon_sym_PIPE] = ACTIONS(4648), + [anon_sym_TILDE] = ACTIONS(4648), + [anon_sym_LPAREN] = ACTIONS(4648), + [anon_sym_RPAREN] = ACTIONS(4648), + [sym__newline_token] = ACTIONS(4648), + [aux_sym_insert_token1] = ACTIONS(4648), + [aux_sym_delete_token1] = ACTIONS(4648), + [aux_sym_highlight_token1] = ACTIONS(4648), + [aux_sym_edit_comment_token1] = ACTIONS(4648), + [anon_sym_CARET_LBRACK] = ACTIONS(4648), + [anon_sym_LBRACK_CARET] = ACTIONS(4648), + [sym_uri_autolink] = ACTIONS(4648), + [sym_email_autolink] = ACTIONS(4648), + [sym__whitespace_ge_2] = ACTIONS(4648), + [aux_sym__whitespace_token1] = ACTIONS(4650), + [sym__word_no_digit] = ACTIONS(4648), + [sym__digits] = ACTIONS(4648), + [anon_sym_DASH_DASH] = ACTIONS(4650), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4648), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4648), + [sym__code_span_start] = ACTIONS(4648), + [sym__emphasis_open_star] = ACTIONS(4648), + [sym__emphasis_open_underscore] = ACTIONS(4648), + [sym__last_token_punctuation] = ACTIONS(4678), + [sym__strikeout_open] = ACTIONS(4648), + [sym__latex_span_start] = ACTIONS(4648), + [sym__single_quote_open] = ACTIONS(4648), + [sym__double_quote_open] = ACTIONS(4648), + [sym__superscript_open] = ACTIONS(4648), + [sym__subscript_open] = ACTIONS(4648), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4648), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4648), + [sym__cite_author_in_text] = ACTIONS(4648), + [sym__cite_suppress_author] = ACTIONS(4648), + [sym__shortcode_open_escaped] = ACTIONS(4648), + [sym__shortcode_open] = ACTIONS(4648), + [sym__unclosed_span] = ACTIONS(4648), + }, + [STATE(626)] = { + [sym__backslash_escape] = ACTIONS(4718), + [sym_entity_reference] = ACTIONS(4718), + [sym_numeric_character_reference] = ACTIONS(4718), + [anon_sym_LT] = ACTIONS(4720), + [anon_sym_GT] = ACTIONS(4718), + [anon_sym_BANG] = ACTIONS(4718), + [anon_sym_DQUOTE] = ACTIONS(4718), + [anon_sym_POUND] = ACTIONS(4718), + [anon_sym_DOLLAR] = ACTIONS(4718), + [anon_sym_PERCENT] = ACTIONS(4718), + [anon_sym_AMP] = ACTIONS(4720), + [anon_sym_SQUOTE] = ACTIONS(4718), + [anon_sym_STAR] = ACTIONS(4718), + [anon_sym_PLUS] = ACTIONS(4718), + [anon_sym_COMMA] = ACTIONS(4718), + [anon_sym_DASH] = ACTIONS(4720), + [anon_sym_DOT] = ACTIONS(4720), + [anon_sym_SLASH] = ACTIONS(4718), + [anon_sym_COLON] = ACTIONS(4718), + [anon_sym_SEMI] = ACTIONS(4718), + [anon_sym_EQ] = ACTIONS(4718), + [anon_sym_QMARK] = ACTIONS(4718), + [anon_sym_LBRACK] = ACTIONS(4720), + [anon_sym_BSLASH] = ACTIONS(4720), + [anon_sym_CARET] = ACTIONS(4720), + [anon_sym__] = ACTIONS(4718), + [anon_sym_BQUOTE] = ACTIONS(4718), + [anon_sym_LBRACE] = ACTIONS(4718), + [anon_sym_PIPE] = ACTIONS(4718), + [anon_sym_TILDE] = ACTIONS(4718), + [anon_sym_LPAREN] = ACTIONS(4718), + [anon_sym_RPAREN] = ACTIONS(4718), + [sym__newline_token] = ACTIONS(4718), + [aux_sym_insert_token1] = ACTIONS(4718), + [aux_sym_delete_token1] = ACTIONS(4718), + [aux_sym_highlight_token1] = ACTIONS(4718), + [aux_sym_edit_comment_token1] = ACTIONS(4718), + [anon_sym_CARET_LBRACK] = ACTIONS(4718), + [anon_sym_LBRACK_CARET] = ACTIONS(4718), + [sym_uri_autolink] = ACTIONS(4718), + [sym_email_autolink] = ACTIONS(4718), + [sym__whitespace_ge_2] = ACTIONS(4718), + [aux_sym__whitespace_token1] = ACTIONS(4720), + [sym__word_no_digit] = ACTIONS(4718), + [sym__digits] = ACTIONS(4718), + [anon_sym_DASH_DASH] = ACTIONS(4720), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4718), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4718), + [sym__code_span_start] = ACTIONS(4718), + [sym__emphasis_open_star] = ACTIONS(4718), + [sym__emphasis_open_underscore] = ACTIONS(4718), + [sym__emphasis_close_underscore] = ACTIONS(4718), + [sym__last_token_punctuation] = ACTIONS(4780), + [sym__strikeout_open] = ACTIONS(4718), + [sym__latex_span_start] = ACTIONS(4718), + [sym__single_quote_open] = ACTIONS(4718), + [sym__double_quote_open] = ACTIONS(4718), + [sym__superscript_open] = ACTIONS(4718), + [sym__subscript_open] = ACTIONS(4718), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4718), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4718), + [sym__cite_author_in_text] = ACTIONS(4718), + [sym__cite_suppress_author] = ACTIONS(4718), + [sym__shortcode_open_escaped] = ACTIONS(4718), + [sym__shortcode_open] = ACTIONS(4718), + [sym__unclosed_span] = ACTIONS(4718), + }, + [STATE(627)] = { + [sym__backslash_escape] = ACTIONS(4718), + [sym_entity_reference] = ACTIONS(4718), + [sym_numeric_character_reference] = ACTIONS(4718), + [anon_sym_LT] = ACTIONS(4720), + [anon_sym_GT] = ACTIONS(4718), + [anon_sym_BANG] = ACTIONS(4718), + [anon_sym_DQUOTE] = ACTIONS(4718), + [anon_sym_POUND] = ACTIONS(4718), + [anon_sym_DOLLAR] = ACTIONS(4718), + [anon_sym_PERCENT] = ACTIONS(4718), + [anon_sym_AMP] = ACTIONS(4720), + [anon_sym_SQUOTE] = ACTIONS(4718), + [anon_sym_STAR] = ACTIONS(4718), + [anon_sym_PLUS] = ACTIONS(4718), + [anon_sym_COMMA] = ACTIONS(4718), + [anon_sym_DASH] = ACTIONS(4720), + [anon_sym_DOT] = ACTIONS(4720), + [anon_sym_SLASH] = ACTIONS(4718), + [anon_sym_COLON] = ACTIONS(4718), + [anon_sym_SEMI] = ACTIONS(4718), + [anon_sym_EQ] = ACTIONS(4718), + [anon_sym_QMARK] = ACTIONS(4718), + [anon_sym_LBRACK] = ACTIONS(4720), + [anon_sym_BSLASH] = ACTIONS(4720), + [anon_sym_CARET] = ACTIONS(4720), + [anon_sym__] = ACTIONS(4718), + [anon_sym_BQUOTE] = ACTIONS(4718), + [anon_sym_LBRACE] = ACTIONS(4718), + [anon_sym_PIPE] = ACTIONS(4718), + [anon_sym_TILDE] = ACTIONS(4718), + [anon_sym_LPAREN] = ACTIONS(4718), + [anon_sym_RPAREN] = ACTIONS(4718), + [sym__newline_token] = ACTIONS(4718), + [aux_sym_insert_token1] = ACTIONS(4718), + [aux_sym_delete_token1] = ACTIONS(4718), + [aux_sym_highlight_token1] = ACTIONS(4718), + [aux_sym_edit_comment_token1] = ACTIONS(4718), + [anon_sym_CARET_LBRACK] = ACTIONS(4718), + [anon_sym_LBRACK_CARET] = ACTIONS(4718), + [sym_uri_autolink] = ACTIONS(4718), + [sym_email_autolink] = ACTIONS(4718), + [sym__whitespace_ge_2] = ACTIONS(4718), + [aux_sym__whitespace_token1] = ACTIONS(4720), + [sym__word_no_digit] = ACTIONS(4718), + [sym__digits] = ACTIONS(4718), + [anon_sym_DASH_DASH] = ACTIONS(4720), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4718), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4718), + [sym__code_span_start] = ACTIONS(4718), + [sym__emphasis_open_star] = ACTIONS(4718), + [sym__emphasis_open_underscore] = ACTIONS(4718), + [sym__last_token_punctuation] = ACTIONS(4782), + [sym__strikeout_open] = ACTIONS(4718), + [sym__strikeout_close] = ACTIONS(4718), + [sym__latex_span_start] = ACTIONS(4718), + [sym__single_quote_open] = ACTIONS(4718), + [sym__double_quote_open] = ACTIONS(4718), + [sym__superscript_open] = ACTIONS(4718), + [sym__subscript_open] = ACTIONS(4718), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4718), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4718), + [sym__cite_author_in_text] = ACTIONS(4718), + [sym__cite_suppress_author] = ACTIONS(4718), + [sym__shortcode_open_escaped] = ACTIONS(4718), + [sym__shortcode_open] = ACTIONS(4718), + [sym__unclosed_span] = ACTIONS(4718), + }, + [STATE(628)] = { + [sym__backslash_escape] = ACTIONS(4728), + [sym_entity_reference] = ACTIONS(4728), + [sym_numeric_character_reference] = ACTIONS(4728), + [anon_sym_LT] = ACTIONS(4730), + [anon_sym_GT] = ACTIONS(4728), + [anon_sym_BANG] = ACTIONS(4728), + [anon_sym_DQUOTE] = ACTIONS(4728), + [anon_sym_POUND] = ACTIONS(4728), + [anon_sym_DOLLAR] = ACTIONS(4728), + [anon_sym_PERCENT] = ACTIONS(4728), + [anon_sym_AMP] = ACTIONS(4730), + [anon_sym_SQUOTE] = ACTIONS(4728), + [anon_sym_STAR] = ACTIONS(4728), + [anon_sym_PLUS] = ACTIONS(4728), + [anon_sym_COMMA] = ACTIONS(4728), + [anon_sym_DASH] = ACTIONS(4730), + [anon_sym_DOT] = ACTIONS(4730), + [anon_sym_SLASH] = ACTIONS(4728), + [anon_sym_COLON] = ACTIONS(4728), + [anon_sym_SEMI] = ACTIONS(4728), + [anon_sym_EQ] = ACTIONS(4728), + [anon_sym_QMARK] = ACTIONS(4728), + [anon_sym_LBRACK] = ACTIONS(4730), + [anon_sym_BSLASH] = ACTIONS(4730), + [anon_sym_CARET] = ACTIONS(4730), + [anon_sym__] = ACTIONS(4728), + [anon_sym_BQUOTE] = ACTIONS(4728), + [anon_sym_LBRACE] = ACTIONS(4728), + [anon_sym_PIPE] = ACTIONS(4728), + [anon_sym_TILDE] = ACTIONS(4728), + [anon_sym_LPAREN] = ACTIONS(4728), + [anon_sym_RPAREN] = ACTIONS(4728), + [sym__newline_token] = ACTIONS(4728), + [aux_sym_insert_token1] = ACTIONS(4728), + [aux_sym_delete_token1] = ACTIONS(4728), + [aux_sym_highlight_token1] = ACTIONS(4728), + [aux_sym_edit_comment_token1] = ACTIONS(4728), + [anon_sym_CARET_LBRACK] = ACTIONS(4728), + [anon_sym_LBRACK_CARET] = ACTIONS(4728), + [sym_uri_autolink] = ACTIONS(4728), + [sym_email_autolink] = ACTIONS(4728), + [sym__whitespace_ge_2] = ACTIONS(4728), + [aux_sym__whitespace_token1] = ACTIONS(4730), + [sym__word_no_digit] = ACTIONS(4728), + [sym__digits] = ACTIONS(4728), + [anon_sym_DASH_DASH] = ACTIONS(4730), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4728), + [sym__code_span_start] = ACTIONS(4728), + [sym__emphasis_open_star] = ACTIONS(4728), + [sym__emphasis_open_underscore] = ACTIONS(4728), + [sym__last_token_whitespace] = ACTIONS(4784), + [sym__strikeout_open] = ACTIONS(4728), + [sym__latex_span_start] = ACTIONS(4728), + [sym__single_quote_open] = ACTIONS(4728), + [sym__double_quote_open] = ACTIONS(4728), + [sym__superscript_open] = ACTIONS(4728), + [sym__superscript_close] = ACTIONS(4728), + [sym__subscript_open] = ACTIONS(4728), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4728), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4728), + [sym__cite_author_in_text] = ACTIONS(4728), + [sym__cite_suppress_author] = ACTIONS(4728), + [sym__shortcode_open_escaped] = ACTIONS(4728), + [sym__shortcode_open] = ACTIONS(4728), + [sym__unclosed_span] = ACTIONS(4728), + }, + [STATE(629)] = { + [sym__backslash_escape] = ACTIONS(4698), + [sym_entity_reference] = ACTIONS(4698), + [sym_numeric_character_reference] = ACTIONS(4698), + [anon_sym_LT] = ACTIONS(4700), + [anon_sym_GT] = ACTIONS(4698), + [anon_sym_BANG] = ACTIONS(4698), + [anon_sym_DQUOTE] = ACTIONS(4698), + [anon_sym_POUND] = ACTIONS(4698), + [anon_sym_DOLLAR] = ACTIONS(4698), + [anon_sym_PERCENT] = ACTIONS(4698), + [anon_sym_AMP] = ACTIONS(4700), + [anon_sym_SQUOTE] = ACTIONS(4698), + [anon_sym_STAR] = ACTIONS(4698), + [anon_sym_PLUS] = ACTIONS(4698), + [anon_sym_COMMA] = ACTIONS(4698), + [anon_sym_DASH] = ACTIONS(4700), + [anon_sym_DOT] = ACTIONS(4700), + [anon_sym_SLASH] = ACTIONS(4698), + [anon_sym_COLON] = ACTIONS(4698), + [anon_sym_SEMI] = ACTIONS(4698), + [anon_sym_EQ] = ACTIONS(4698), + [anon_sym_QMARK] = ACTIONS(4698), + [anon_sym_LBRACK] = ACTIONS(4700), + [anon_sym_BSLASH] = ACTIONS(4700), + [anon_sym_CARET] = ACTIONS(4700), + [anon_sym__] = ACTIONS(4698), + [anon_sym_BQUOTE] = ACTIONS(4698), + [anon_sym_LBRACE] = ACTIONS(4698), + [anon_sym_PIPE] = ACTIONS(4698), + [anon_sym_TILDE] = ACTIONS(4698), + [anon_sym_LPAREN] = ACTIONS(4698), + [anon_sym_RPAREN] = ACTIONS(4698), + [sym__newline_token] = ACTIONS(4698), + [aux_sym_insert_token1] = ACTIONS(4698), + [aux_sym_delete_token1] = ACTIONS(4698), + [aux_sym_highlight_token1] = ACTIONS(4698), + [aux_sym_edit_comment_token1] = ACTIONS(4698), + [anon_sym_CARET_LBRACK] = ACTIONS(4698), + [anon_sym_LBRACK_CARET] = ACTIONS(4698), + [sym_uri_autolink] = ACTIONS(4698), + [sym_email_autolink] = ACTIONS(4698), + [sym__whitespace_ge_2] = ACTIONS(4698), + [aux_sym__whitespace_token1] = ACTIONS(4700), + [sym__word_no_digit] = ACTIONS(4698), + [sym__digits] = ACTIONS(4698), + [anon_sym_DASH_DASH] = ACTIONS(4700), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4698), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4698), + [sym__code_span_start] = ACTIONS(4698), + [sym__emphasis_open_star] = ACTIONS(4698), + [sym__emphasis_open_underscore] = ACTIONS(4698), + [sym__emphasis_close_underscore] = ACTIONS(4698), + [sym__last_token_punctuation] = ACTIONS(4786), + [sym__strikeout_open] = ACTIONS(4698), + [sym__latex_span_start] = ACTIONS(4698), + [sym__single_quote_open] = ACTIONS(4698), + [sym__double_quote_open] = ACTIONS(4698), + [sym__superscript_open] = ACTIONS(4698), + [sym__subscript_open] = ACTIONS(4698), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4698), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4698), + [sym__cite_author_in_text] = ACTIONS(4698), + [sym__cite_suppress_author] = ACTIONS(4698), + [sym__shortcode_open_escaped] = ACTIONS(4698), + [sym__shortcode_open] = ACTIONS(4698), + [sym__unclosed_span] = ACTIONS(4698), + }, + [STATE(630)] = { + [sym__backslash_escape] = ACTIONS(4728), + [sym_entity_reference] = ACTIONS(4728), + [sym_numeric_character_reference] = ACTIONS(4728), + [anon_sym_LT] = ACTIONS(4730), + [anon_sym_GT] = ACTIONS(4728), + [anon_sym_BANG] = ACTIONS(4728), + [anon_sym_DQUOTE] = ACTIONS(4728), + [anon_sym_POUND] = ACTIONS(4728), + [anon_sym_DOLLAR] = ACTIONS(4728), + [anon_sym_PERCENT] = ACTIONS(4728), + [anon_sym_AMP] = ACTIONS(4730), + [anon_sym_SQUOTE] = ACTIONS(4728), + [anon_sym_STAR] = ACTIONS(4728), + [anon_sym_PLUS] = ACTIONS(4728), + [anon_sym_COMMA] = ACTIONS(4728), + [anon_sym_DASH] = ACTIONS(4730), + [anon_sym_DOT] = ACTIONS(4730), + [anon_sym_SLASH] = ACTIONS(4728), + [anon_sym_COLON] = ACTIONS(4728), + [anon_sym_SEMI] = ACTIONS(4728), + [anon_sym_EQ] = ACTIONS(4728), + [anon_sym_QMARK] = ACTIONS(4728), + [anon_sym_LBRACK] = ACTIONS(4730), + [anon_sym_BSLASH] = ACTIONS(4730), + [anon_sym_RBRACK] = ACTIONS(4728), + [anon_sym_CARET] = ACTIONS(4730), + [anon_sym__] = ACTIONS(4728), + [anon_sym_BQUOTE] = ACTIONS(4728), + [anon_sym_LBRACE] = ACTIONS(4728), + [anon_sym_PIPE] = ACTIONS(4728), + [anon_sym_TILDE] = ACTIONS(4728), + [anon_sym_LPAREN] = ACTIONS(4728), + [anon_sym_RPAREN] = ACTIONS(4728), + [sym__newline_token] = ACTIONS(4728), + [aux_sym_insert_token1] = ACTIONS(4728), + [aux_sym_delete_token1] = ACTIONS(4728), + [aux_sym_highlight_token1] = ACTIONS(4728), + [aux_sym_edit_comment_token1] = ACTIONS(4728), + [anon_sym_CARET_LBRACK] = ACTIONS(4728), + [anon_sym_LBRACK_CARET] = ACTIONS(4728), + [sym_uri_autolink] = ACTIONS(4728), + [sym_email_autolink] = ACTIONS(4728), + [sym__whitespace_ge_2] = ACTIONS(4728), + [aux_sym__whitespace_token1] = ACTIONS(4730), + [sym__word_no_digit] = ACTIONS(4728), + [sym__digits] = ACTIONS(4728), + [anon_sym_DASH_DASH] = ACTIONS(4730), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4728), + [sym__code_span_start] = ACTIONS(4728), + [sym__emphasis_open_star] = ACTIONS(4728), + [sym__emphasis_open_underscore] = ACTIONS(4728), + [sym__last_token_whitespace] = ACTIONS(4788), + [sym__strikeout_open] = ACTIONS(4728), + [sym__latex_span_start] = ACTIONS(4728), + [sym__single_quote_open] = ACTIONS(4728), + [sym__double_quote_open] = ACTIONS(4728), + [sym__superscript_open] = ACTIONS(4728), + [sym__subscript_open] = ACTIONS(4728), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4728), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4728), + [sym__cite_author_in_text] = ACTIONS(4728), + [sym__cite_suppress_author] = ACTIONS(4728), + [sym__shortcode_open_escaped] = ACTIONS(4728), + [sym__shortcode_open] = ACTIONS(4728), + [sym__unclosed_span] = ACTIONS(4728), + }, + [STATE(631)] = { + [sym__backslash_escape] = ACTIONS(4642), + [sym_entity_reference] = ACTIONS(4642), + [sym_numeric_character_reference] = ACTIONS(4642), + [anon_sym_LT] = ACTIONS(4644), + [anon_sym_GT] = ACTIONS(4642), + [anon_sym_BANG] = ACTIONS(4642), + [anon_sym_DQUOTE] = ACTIONS(4642), + [anon_sym_POUND] = ACTIONS(4642), + [anon_sym_DOLLAR] = ACTIONS(4642), + [anon_sym_PERCENT] = ACTIONS(4642), + [anon_sym_AMP] = ACTIONS(4644), + [anon_sym_SQUOTE] = ACTIONS(4642), + [anon_sym_STAR] = ACTIONS(4642), + [anon_sym_PLUS] = ACTIONS(4642), + [anon_sym_COMMA] = ACTIONS(4642), + [anon_sym_DASH] = ACTIONS(4644), + [anon_sym_DOT] = ACTIONS(4644), + [anon_sym_SLASH] = ACTIONS(4642), + [anon_sym_COLON] = ACTIONS(4642), + [anon_sym_SEMI] = ACTIONS(4642), + [anon_sym_EQ] = ACTIONS(4642), + [anon_sym_QMARK] = ACTIONS(4642), + [anon_sym_LBRACK] = ACTIONS(4644), + [anon_sym_BSLASH] = ACTIONS(4644), + [anon_sym_RBRACK] = ACTIONS(4642), + [anon_sym_CARET] = ACTIONS(4644), + [anon_sym__] = ACTIONS(4642), + [anon_sym_BQUOTE] = ACTIONS(4642), + [anon_sym_LBRACE] = ACTIONS(4642), + [anon_sym_PIPE] = ACTIONS(4642), + [anon_sym_TILDE] = ACTIONS(4642), + [anon_sym_LPAREN] = ACTIONS(4642), + [anon_sym_RPAREN] = ACTIONS(4642), + [sym__newline_token] = ACTIONS(4642), + [aux_sym_insert_token1] = ACTIONS(4642), + [aux_sym_delete_token1] = ACTIONS(4642), + [aux_sym_highlight_token1] = ACTIONS(4642), + [aux_sym_edit_comment_token1] = ACTIONS(4642), + [anon_sym_CARET_LBRACK] = ACTIONS(4642), + [anon_sym_LBRACK_CARET] = ACTIONS(4642), + [sym_uri_autolink] = ACTIONS(4642), + [sym_email_autolink] = ACTIONS(4642), + [sym__whitespace_ge_2] = ACTIONS(4642), + [aux_sym__whitespace_token1] = ACTIONS(4644), + [sym__word_no_digit] = ACTIONS(4642), + [sym__digits] = ACTIONS(4642), + [anon_sym_DASH_DASH] = ACTIONS(4644), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4642), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4642), + [sym__code_span_start] = ACTIONS(4642), + [sym__emphasis_open_star] = ACTIONS(4642), + [sym__emphasis_open_underscore] = ACTIONS(4642), + [sym__last_token_whitespace] = ACTIONS(4680), + [sym__strikeout_open] = ACTIONS(4642), + [sym__latex_span_start] = ACTIONS(4642), + [sym__single_quote_open] = ACTIONS(4642), + [sym__double_quote_open] = ACTIONS(4642), + [sym__superscript_open] = ACTIONS(4642), + [sym__subscript_open] = ACTIONS(4642), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4642), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4642), + [sym__cite_author_in_text] = ACTIONS(4642), + [sym__cite_suppress_author] = ACTIONS(4642), + [sym__shortcode_open_escaped] = ACTIONS(4642), + [sym__shortcode_open] = ACTIONS(4642), + [sym__unclosed_span] = ACTIONS(4642), + }, + [STATE(632)] = { + [sym__backslash_escape] = ACTIONS(4728), + [sym_entity_reference] = ACTIONS(4728), + [sym_numeric_character_reference] = ACTIONS(4728), + [anon_sym_LT] = ACTIONS(4730), + [anon_sym_GT] = ACTIONS(4728), + [anon_sym_BANG] = ACTIONS(4728), + [anon_sym_DQUOTE] = ACTIONS(4728), + [anon_sym_POUND] = ACTIONS(4728), + [anon_sym_DOLLAR] = ACTIONS(4728), + [anon_sym_PERCENT] = ACTIONS(4728), + [anon_sym_AMP] = ACTIONS(4730), + [anon_sym_SQUOTE] = ACTIONS(4728), + [anon_sym_STAR] = ACTIONS(4728), + [anon_sym_PLUS] = ACTIONS(4728), + [anon_sym_COMMA] = ACTIONS(4728), + [anon_sym_DASH] = ACTIONS(4730), + [anon_sym_DOT] = ACTIONS(4730), + [anon_sym_SLASH] = ACTIONS(4728), + [anon_sym_COLON] = ACTIONS(4728), + [anon_sym_SEMI] = ACTIONS(4728), + [anon_sym_EQ] = ACTIONS(4728), + [anon_sym_QMARK] = ACTIONS(4728), + [anon_sym_LBRACK] = ACTIONS(4730), + [anon_sym_BSLASH] = ACTIONS(4730), + [anon_sym_CARET] = ACTIONS(4730), + [anon_sym__] = ACTIONS(4728), + [anon_sym_BQUOTE] = ACTIONS(4728), + [anon_sym_LBRACE] = ACTIONS(4728), + [anon_sym_PIPE] = ACTIONS(4728), + [anon_sym_TILDE] = ACTIONS(4728), + [anon_sym_LPAREN] = ACTIONS(4728), + [anon_sym_RPAREN] = ACTIONS(4728), + [sym__newline_token] = ACTIONS(4728), + [aux_sym_insert_token1] = ACTIONS(4728), + [aux_sym_insert_token2] = ACTIONS(4728), + [aux_sym_delete_token1] = ACTIONS(4728), + [aux_sym_highlight_token1] = ACTIONS(4728), + [aux_sym_edit_comment_token1] = ACTIONS(4728), + [anon_sym_CARET_LBRACK] = ACTIONS(4728), + [anon_sym_LBRACK_CARET] = ACTIONS(4728), + [sym_uri_autolink] = ACTIONS(4728), + [sym_email_autolink] = ACTIONS(4728), + [sym__whitespace_ge_2] = ACTIONS(4730), + [aux_sym__whitespace_token1] = ACTIONS(4730), + [sym__word_no_digit] = ACTIONS(4728), + [sym__digits] = ACTIONS(4728), + [anon_sym_DASH_DASH] = ACTIONS(4730), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4728), + [sym__code_span_start] = ACTIONS(4728), + [sym__emphasis_open_star] = ACTIONS(4728), + [sym__emphasis_open_underscore] = ACTIONS(4728), + [sym__last_token_whitespace] = ACTIONS(4790), + [sym__strikeout_open] = ACTIONS(4728), + [sym__latex_span_start] = ACTIONS(4728), + [sym__single_quote_open] = ACTIONS(4728), + [sym__double_quote_open] = ACTIONS(4728), + [sym__superscript_open] = ACTIONS(4728), + [sym__subscript_open] = ACTIONS(4728), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4728), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4728), + [sym__cite_author_in_text] = ACTIONS(4728), + [sym__cite_suppress_author] = ACTIONS(4728), + [sym__shortcode_open_escaped] = ACTIONS(4728), + [sym__shortcode_open] = ACTIONS(4728), + [sym__unclosed_span] = ACTIONS(4728), + }, + [STATE(633)] = { + [sym__backslash_escape] = ACTIONS(4642), + [sym_entity_reference] = ACTIONS(4642), + [sym_numeric_character_reference] = ACTIONS(4642), + [anon_sym_LT] = ACTIONS(4644), + [anon_sym_GT] = ACTIONS(4642), + [anon_sym_BANG] = ACTIONS(4642), + [anon_sym_DQUOTE] = ACTIONS(4642), + [anon_sym_POUND] = ACTIONS(4642), + [anon_sym_DOLLAR] = ACTIONS(4642), + [anon_sym_PERCENT] = ACTIONS(4642), + [anon_sym_AMP] = ACTIONS(4644), + [anon_sym_SQUOTE] = ACTIONS(4642), + [anon_sym_STAR] = ACTIONS(4642), + [anon_sym_PLUS] = ACTIONS(4642), + [anon_sym_COMMA] = ACTIONS(4642), + [anon_sym_DASH] = ACTIONS(4644), + [anon_sym_DOT] = ACTIONS(4644), + [anon_sym_SLASH] = ACTIONS(4642), + [anon_sym_COLON] = ACTIONS(4642), + [anon_sym_SEMI] = ACTIONS(4642), + [anon_sym_EQ] = ACTIONS(4642), + [anon_sym_QMARK] = ACTIONS(4642), + [anon_sym_LBRACK] = ACTIONS(4644), + [anon_sym_BSLASH] = ACTIONS(4644), + [anon_sym_CARET] = ACTIONS(4644), + [anon_sym__] = ACTIONS(4642), + [anon_sym_BQUOTE] = ACTIONS(4642), + [anon_sym_LBRACE] = ACTIONS(4642), + [anon_sym_PIPE] = ACTIONS(4642), + [anon_sym_TILDE] = ACTIONS(4642), + [anon_sym_LPAREN] = ACTIONS(4642), + [anon_sym_RPAREN] = ACTIONS(4642), + [sym__newline_token] = ACTIONS(4642), + [aux_sym_insert_token1] = ACTIONS(4642), + [aux_sym_insert_token2] = ACTIONS(4642), + [aux_sym_delete_token1] = ACTIONS(4642), + [aux_sym_highlight_token1] = ACTIONS(4642), + [aux_sym_edit_comment_token1] = ACTIONS(4642), + [anon_sym_CARET_LBRACK] = ACTIONS(4642), + [anon_sym_LBRACK_CARET] = ACTIONS(4642), + [sym_uri_autolink] = ACTIONS(4642), + [sym_email_autolink] = ACTIONS(4642), + [sym__whitespace_ge_2] = ACTIONS(4644), + [aux_sym__whitespace_token1] = ACTIONS(4644), + [sym__word_no_digit] = ACTIONS(4642), + [sym__digits] = ACTIONS(4642), + [anon_sym_DASH_DASH] = ACTIONS(4644), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4642), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4642), + [sym__code_span_start] = ACTIONS(4642), + [sym__emphasis_open_star] = ACTIONS(4642), + [sym__emphasis_open_underscore] = ACTIONS(4642), + [sym__last_token_whitespace] = ACTIONS(4662), + [sym__strikeout_open] = ACTIONS(4642), + [sym__latex_span_start] = ACTIONS(4642), + [sym__single_quote_open] = ACTIONS(4642), + [sym__double_quote_open] = ACTIONS(4642), + [sym__superscript_open] = ACTIONS(4642), + [sym__subscript_open] = ACTIONS(4642), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4642), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4642), + [sym__cite_author_in_text] = ACTIONS(4642), + [sym__cite_suppress_author] = ACTIONS(4642), + [sym__shortcode_open_escaped] = ACTIONS(4642), + [sym__shortcode_open] = ACTIONS(4642), + [sym__unclosed_span] = ACTIONS(4642), + }, + [STATE(634)] = { + [sym__backslash_escape] = ACTIONS(4704), + [sym_entity_reference] = ACTIONS(4704), + [sym_numeric_character_reference] = ACTIONS(4704), + [anon_sym_LT] = ACTIONS(4706), + [anon_sym_GT] = ACTIONS(4704), + [anon_sym_BANG] = ACTIONS(4704), + [anon_sym_DQUOTE] = ACTIONS(4704), + [anon_sym_POUND] = ACTIONS(4704), + [anon_sym_DOLLAR] = ACTIONS(4704), + [anon_sym_PERCENT] = ACTIONS(4704), + [anon_sym_AMP] = ACTIONS(4706), + [anon_sym_SQUOTE] = ACTIONS(4704), + [anon_sym_STAR] = ACTIONS(4704), + [anon_sym_PLUS] = ACTIONS(4704), + [anon_sym_COMMA] = ACTIONS(4704), + [anon_sym_DASH] = ACTIONS(4706), + [anon_sym_DOT] = ACTIONS(4706), + [anon_sym_SLASH] = ACTIONS(4704), + [anon_sym_COLON] = ACTIONS(4704), + [anon_sym_SEMI] = ACTIONS(4704), + [anon_sym_EQ] = ACTIONS(4704), + [anon_sym_QMARK] = ACTIONS(4704), + [anon_sym_LBRACK] = ACTIONS(4706), + [anon_sym_BSLASH] = ACTIONS(4706), + [anon_sym_CARET] = ACTIONS(4706), + [anon_sym__] = ACTIONS(4704), + [anon_sym_BQUOTE] = ACTIONS(4704), + [anon_sym_LBRACE] = ACTIONS(4704), + [anon_sym_PIPE] = ACTIONS(4704), + [anon_sym_TILDE] = ACTIONS(4704), + [anon_sym_LPAREN] = ACTIONS(4704), + [anon_sym_RPAREN] = ACTIONS(4704), + [sym__newline_token] = ACTIONS(4704), + [aux_sym_insert_token1] = ACTIONS(4704), + [aux_sym_delete_token1] = ACTIONS(4704), + [aux_sym_highlight_token1] = ACTIONS(4704), + [aux_sym_edit_comment_token1] = ACTIONS(4704), + [anon_sym_CARET_LBRACK] = ACTIONS(4704), + [anon_sym_LBRACK_CARET] = ACTIONS(4704), + [sym_uri_autolink] = ACTIONS(4704), + [sym_email_autolink] = ACTIONS(4704), + [sym__whitespace_ge_2] = ACTIONS(4704), + [aux_sym__whitespace_token1] = ACTIONS(4706), + [sym__word_no_digit] = ACTIONS(4704), + [sym__digits] = ACTIONS(4704), + [anon_sym_DASH_DASH] = ACTIONS(4706), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4704), + [sym__code_span_start] = ACTIONS(4704), + [sym__emphasis_open_star] = ACTIONS(4704), + [sym__emphasis_open_underscore] = ACTIONS(4704), + [sym__last_token_punctuation] = ACTIONS(4792), + [sym__strikeout_open] = ACTIONS(4704), + [sym__latex_span_start] = ACTIONS(4704), + [sym__single_quote_open] = ACTIONS(4704), + [sym__double_quote_open] = ACTIONS(4704), + [sym__superscript_open] = ACTIONS(4704), + [sym__superscript_close] = ACTIONS(4704), + [sym__subscript_open] = ACTIONS(4704), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4704), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4704), + [sym__cite_author_in_text] = ACTIONS(4704), + [sym__cite_suppress_author] = ACTIONS(4704), + [sym__shortcode_open_escaped] = ACTIONS(4704), + [sym__shortcode_open] = ACTIONS(4704), + [sym__unclosed_span] = ACTIONS(4704), + }, + [STATE(635)] = { + [sym__backslash_escape] = ACTIONS(4648), + [sym_entity_reference] = ACTIONS(4648), + [sym_numeric_character_reference] = ACTIONS(4648), + [anon_sym_LT] = ACTIONS(4650), + [anon_sym_GT] = ACTIONS(4648), + [anon_sym_BANG] = ACTIONS(4648), + [anon_sym_DQUOTE] = ACTIONS(4648), + [anon_sym_POUND] = ACTIONS(4648), + [anon_sym_DOLLAR] = ACTIONS(4648), + [anon_sym_PERCENT] = ACTIONS(4648), + [anon_sym_AMP] = ACTIONS(4650), + [anon_sym_SQUOTE] = ACTIONS(4648), + [anon_sym_STAR] = ACTIONS(4648), + [anon_sym_PLUS] = ACTIONS(4648), + [anon_sym_COMMA] = ACTIONS(4648), + [anon_sym_DASH] = ACTIONS(4650), + [anon_sym_DOT] = ACTIONS(4650), + [anon_sym_SLASH] = ACTIONS(4648), + [anon_sym_COLON] = ACTIONS(4648), + [anon_sym_SEMI] = ACTIONS(4648), + [anon_sym_EQ] = ACTIONS(4648), + [anon_sym_QMARK] = ACTIONS(4648), + [anon_sym_LBRACK] = ACTIONS(4650), + [anon_sym_BSLASH] = ACTIONS(4650), + [anon_sym_CARET] = ACTIONS(4650), + [anon_sym__] = ACTIONS(4648), + [anon_sym_BQUOTE] = ACTIONS(4648), + [anon_sym_LBRACE] = ACTIONS(4648), + [anon_sym_PIPE] = ACTIONS(4648), + [anon_sym_TILDE] = ACTIONS(4648), + [anon_sym_LPAREN] = ACTIONS(4648), + [anon_sym_RPAREN] = ACTIONS(4648), + [sym__newline_token] = ACTIONS(4648), + [aux_sym_insert_token1] = ACTIONS(4648), + [aux_sym_delete_token1] = ACTIONS(4648), + [aux_sym_highlight_token1] = ACTIONS(4648), + [aux_sym_edit_comment_token1] = ACTIONS(4648), + [anon_sym_CARET_LBRACK] = ACTIONS(4648), + [anon_sym_LBRACK_CARET] = ACTIONS(4648), + [sym_uri_autolink] = ACTIONS(4648), + [sym_email_autolink] = ACTIONS(4648), + [sym__whitespace_ge_2] = ACTIONS(4648), + [aux_sym__whitespace_token1] = ACTIONS(4650), + [sym__word_no_digit] = ACTIONS(4648), + [sym__digits] = ACTIONS(4648), + [anon_sym_DASH_DASH] = ACTIONS(4650), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4648), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4648), + [sym__code_span_start] = ACTIONS(4648), + [sym__emphasis_open_star] = ACTIONS(4648), + [sym__emphasis_open_underscore] = ACTIONS(4648), + [sym__emphasis_close_underscore] = ACTIONS(4648), + [sym__last_token_punctuation] = ACTIONS(4684), + [sym__strikeout_open] = ACTIONS(4648), + [sym__latex_span_start] = ACTIONS(4648), + [sym__single_quote_open] = ACTIONS(4648), + [sym__double_quote_open] = ACTIONS(4648), + [sym__superscript_open] = ACTIONS(4648), + [sym__subscript_open] = ACTIONS(4648), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4648), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4648), + [sym__cite_author_in_text] = ACTIONS(4648), + [sym__cite_suppress_author] = ACTIONS(4648), + [sym__shortcode_open_escaped] = ACTIONS(4648), + [sym__shortcode_open] = ACTIONS(4648), + [sym__unclosed_span] = ACTIONS(4648), + }, + [STATE(636)] = { + [sym__backslash_escape] = ACTIONS(4690), + [sym_entity_reference] = ACTIONS(4690), + [sym_numeric_character_reference] = ACTIONS(4690), + [anon_sym_LT] = ACTIONS(4692), + [anon_sym_GT] = ACTIONS(4690), + [anon_sym_BANG] = ACTIONS(4690), + [anon_sym_DQUOTE] = ACTIONS(4690), + [anon_sym_POUND] = ACTIONS(4690), + [anon_sym_DOLLAR] = ACTIONS(4690), + [anon_sym_PERCENT] = ACTIONS(4690), + [anon_sym_AMP] = ACTIONS(4692), + [anon_sym_SQUOTE] = ACTIONS(4690), + [anon_sym_STAR] = ACTIONS(4690), + [anon_sym_PLUS] = ACTIONS(4690), + [anon_sym_COMMA] = ACTIONS(4690), + [anon_sym_DASH] = ACTIONS(4692), + [anon_sym_DOT] = ACTIONS(4692), + [anon_sym_SLASH] = ACTIONS(4690), + [anon_sym_COLON] = ACTIONS(4690), + [anon_sym_SEMI] = ACTIONS(4690), + [anon_sym_EQ] = ACTIONS(4690), + [anon_sym_QMARK] = ACTIONS(4690), + [anon_sym_LBRACK] = ACTIONS(4692), + [anon_sym_BSLASH] = ACTIONS(4692), + [anon_sym_CARET] = ACTIONS(4692), + [anon_sym__] = ACTIONS(4690), + [anon_sym_BQUOTE] = ACTIONS(4690), + [anon_sym_LBRACE] = ACTIONS(4690), + [anon_sym_PIPE] = ACTIONS(4690), + [anon_sym_TILDE] = ACTIONS(4690), + [anon_sym_LPAREN] = ACTIONS(4690), + [anon_sym_RPAREN] = ACTIONS(4690), + [sym__newline_token] = ACTIONS(4690), + [aux_sym_insert_token1] = ACTIONS(4690), + [aux_sym_delete_token1] = ACTIONS(4690), + [aux_sym_highlight_token1] = ACTIONS(4690), + [aux_sym_edit_comment_token1] = ACTIONS(4690), + [anon_sym_CARET_LBRACK] = ACTIONS(4690), + [anon_sym_LBRACK_CARET] = ACTIONS(4690), + [sym_uri_autolink] = ACTIONS(4690), + [sym_email_autolink] = ACTIONS(4690), + [sym__whitespace_ge_2] = ACTIONS(4690), + [aux_sym__whitespace_token1] = ACTIONS(4692), + [sym__word_no_digit] = ACTIONS(4690), + [sym__digits] = ACTIONS(4690), + [anon_sym_DASH_DASH] = ACTIONS(4692), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4690), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4690), + [sym__code_span_start] = ACTIONS(4690), + [sym__emphasis_open_star] = ACTIONS(4690), + [sym__emphasis_open_underscore] = ACTIONS(4690), + [sym__last_token_punctuation] = ACTIONS(4794), + [sym__strikeout_open] = ACTIONS(4690), + [sym__latex_span_start] = ACTIONS(4690), + [sym__single_quote_open] = ACTIONS(4690), + [sym__single_quote_close] = ACTIONS(4690), + [sym__double_quote_open] = ACTIONS(4690), + [sym__superscript_open] = ACTIONS(4690), + [sym__subscript_open] = ACTIONS(4690), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4690), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4690), + [sym__cite_author_in_text] = ACTIONS(4690), + [sym__cite_suppress_author] = ACTIONS(4690), + [sym__shortcode_open_escaped] = ACTIONS(4690), + [sym__shortcode_open] = ACTIONS(4690), + [sym__unclosed_span] = ACTIONS(4690), + }, + [STATE(637)] = { + [sym__backslash_escape] = ACTIONS(4648), + [sym_entity_reference] = ACTIONS(4648), + [sym_numeric_character_reference] = ACTIONS(4648), + [anon_sym_LT] = ACTIONS(4650), + [anon_sym_GT] = ACTIONS(4648), + [anon_sym_BANG] = ACTIONS(4648), + [anon_sym_DQUOTE] = ACTIONS(4648), + [anon_sym_POUND] = ACTIONS(4648), + [anon_sym_DOLLAR] = ACTIONS(4648), + [anon_sym_PERCENT] = ACTIONS(4648), + [anon_sym_AMP] = ACTIONS(4650), + [anon_sym_SQUOTE] = ACTIONS(4648), + [anon_sym_STAR] = ACTIONS(4648), + [anon_sym_PLUS] = ACTIONS(4648), + [anon_sym_COMMA] = ACTIONS(4648), + [anon_sym_DASH] = ACTIONS(4650), + [anon_sym_DOT] = ACTIONS(4650), + [anon_sym_SLASH] = ACTIONS(4648), + [anon_sym_COLON] = ACTIONS(4648), + [anon_sym_SEMI] = ACTIONS(4648), + [anon_sym_EQ] = ACTIONS(4648), + [anon_sym_QMARK] = ACTIONS(4648), + [anon_sym_LBRACK] = ACTIONS(4724), + [anon_sym_BSLASH] = ACTIONS(4650), + [anon_sym_CARET] = ACTIONS(4650), + [anon_sym__] = ACTIONS(4648), + [anon_sym_BQUOTE] = ACTIONS(4648), + [anon_sym_LBRACE] = ACTIONS(4648), + [anon_sym_PIPE] = ACTIONS(4648), + [anon_sym_TILDE] = ACTIONS(4648), + [anon_sym_LPAREN] = ACTIONS(4648), + [anon_sym_RPAREN] = ACTIONS(4648), + [sym__newline_token] = ACTIONS(4648), + [aux_sym_insert_token1] = ACTIONS(4648), + [aux_sym_delete_token1] = ACTIONS(4648), + [aux_sym_highlight_token1] = ACTIONS(4648), + [aux_sym_edit_comment_token1] = ACTIONS(4648), + [anon_sym_CARET_LBRACK] = ACTIONS(4648), + [anon_sym_LBRACK_CARET] = ACTIONS(4648), + [sym_uri_autolink] = ACTIONS(4648), + [sym_email_autolink] = ACTIONS(4648), + [sym__whitespace_ge_2] = ACTIONS(4648), + [aux_sym__whitespace_token1] = ACTIONS(4650), + [sym__word_no_digit] = ACTIONS(4648), + [sym__digits] = ACTIONS(4648), + [anon_sym_DASH_DASH] = ACTIONS(4650), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4648), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4648), + [sym__code_span_start] = ACTIONS(4648), + [sym__emphasis_open_star] = ACTIONS(4648), + [sym__emphasis_open_underscore] = ACTIONS(4648), + [sym__emphasis_close_underscore] = ACTIONS(4648), + [sym__last_token_punctuation] = ACTIONS(4684), + [sym__strikeout_open] = ACTIONS(4648), + [sym__latex_span_start] = ACTIONS(4648), + [sym__single_quote_open] = ACTIONS(4648), + [sym__double_quote_open] = ACTIONS(4648), + [sym__superscript_open] = ACTIONS(4648), + [sym__subscript_open] = ACTIONS(4648), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4648), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4648), + [sym__cite_author_in_text] = ACTIONS(4648), + [sym__cite_suppress_author] = ACTIONS(4648), + [sym__shortcode_open_escaped] = ACTIONS(4648), + [sym__shortcode_open] = ACTIONS(4648), + [sym__unclosed_span] = ACTIONS(4648), + }, + [STATE(638)] = { + [sym__backslash_escape] = ACTIONS(4718), + [sym_entity_reference] = ACTIONS(4718), + [sym_numeric_character_reference] = ACTIONS(4718), + [anon_sym_LT] = ACTIONS(4720), + [anon_sym_GT] = ACTIONS(4718), + [anon_sym_BANG] = ACTIONS(4718), + [anon_sym_DQUOTE] = ACTIONS(4718), + [anon_sym_POUND] = ACTIONS(4718), + [anon_sym_DOLLAR] = ACTIONS(4718), + [anon_sym_PERCENT] = ACTIONS(4718), + [anon_sym_AMP] = ACTIONS(4720), + [anon_sym_SQUOTE] = ACTIONS(4718), + [anon_sym_STAR] = ACTIONS(4718), + [anon_sym_PLUS] = ACTIONS(4718), + [anon_sym_COMMA] = ACTIONS(4718), + [anon_sym_DASH] = ACTIONS(4720), + [anon_sym_DOT] = ACTIONS(4720), + [anon_sym_SLASH] = ACTIONS(4718), + [anon_sym_COLON] = ACTIONS(4718), + [anon_sym_SEMI] = ACTIONS(4718), + [anon_sym_EQ] = ACTIONS(4718), + [anon_sym_QMARK] = ACTIONS(4718), + [anon_sym_LBRACK] = ACTIONS(4720), + [anon_sym_BSLASH] = ACTIONS(4720), + [anon_sym_RBRACK] = ACTIONS(4718), + [anon_sym_CARET] = ACTIONS(4720), + [anon_sym__] = ACTIONS(4718), + [anon_sym_BQUOTE] = ACTIONS(4718), + [anon_sym_LBRACE] = ACTIONS(4718), + [anon_sym_PIPE] = ACTIONS(4718), + [anon_sym_TILDE] = ACTIONS(4718), + [anon_sym_LPAREN] = ACTIONS(4718), + [anon_sym_RPAREN] = ACTIONS(4718), + [sym__newline_token] = ACTIONS(4718), + [aux_sym_insert_token1] = ACTIONS(4718), + [aux_sym_delete_token1] = ACTIONS(4718), + [aux_sym_highlight_token1] = ACTIONS(4718), + [aux_sym_edit_comment_token1] = ACTIONS(4718), + [anon_sym_CARET_LBRACK] = ACTIONS(4718), + [anon_sym_LBRACK_CARET] = ACTIONS(4718), + [sym_uri_autolink] = ACTIONS(4718), + [sym_email_autolink] = ACTIONS(4718), + [sym__whitespace_ge_2] = ACTIONS(4718), + [aux_sym__whitespace_token1] = ACTIONS(4720), + [sym__word_no_digit] = ACTIONS(4718), + [sym__digits] = ACTIONS(4718), + [anon_sym_DASH_DASH] = ACTIONS(4720), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4718), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4718), + [sym__code_span_start] = ACTIONS(4718), + [sym__emphasis_open_star] = ACTIONS(4718), + [sym__emphasis_open_underscore] = ACTIONS(4718), + [sym__last_token_punctuation] = ACTIONS(4796), + [sym__strikeout_open] = ACTIONS(4718), + [sym__latex_span_start] = ACTIONS(4718), + [sym__single_quote_open] = ACTIONS(4718), + [sym__double_quote_open] = ACTIONS(4718), + [sym__superscript_open] = ACTIONS(4718), + [sym__subscript_open] = ACTIONS(4718), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4718), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4718), + [sym__cite_author_in_text] = ACTIONS(4718), + [sym__cite_suppress_author] = ACTIONS(4718), + [sym__shortcode_open_escaped] = ACTIONS(4718), + [sym__shortcode_open] = ACTIONS(4718), + [sym__unclosed_span] = ACTIONS(4718), + }, + [STATE(639)] = { + [sym__backslash_escape] = ACTIONS(4728), + [sym_entity_reference] = ACTIONS(4728), + [sym_numeric_character_reference] = ACTIONS(4728), + [anon_sym_LT] = ACTIONS(4730), + [anon_sym_GT] = ACTIONS(4728), + [anon_sym_BANG] = ACTIONS(4728), + [anon_sym_DQUOTE] = ACTIONS(4728), + [anon_sym_POUND] = ACTIONS(4728), + [anon_sym_DOLLAR] = ACTIONS(4728), + [anon_sym_PERCENT] = ACTIONS(4728), + [anon_sym_AMP] = ACTIONS(4730), + [anon_sym_SQUOTE] = ACTIONS(4728), + [anon_sym_STAR] = ACTIONS(4728), + [anon_sym_PLUS] = ACTIONS(4728), + [anon_sym_COMMA] = ACTIONS(4728), + [anon_sym_DASH] = ACTIONS(4730), + [anon_sym_DOT] = ACTIONS(4730), + [anon_sym_SLASH] = ACTIONS(4728), + [anon_sym_COLON] = ACTIONS(4728), + [anon_sym_SEMI] = ACTIONS(4728), + [anon_sym_EQ] = ACTIONS(4728), + [anon_sym_QMARK] = ACTIONS(4728), + [anon_sym_LBRACK] = ACTIONS(4730), + [anon_sym_BSLASH] = ACTIONS(4730), + [anon_sym_CARET] = ACTIONS(4730), + [anon_sym__] = ACTIONS(4728), + [anon_sym_BQUOTE] = ACTIONS(4728), + [anon_sym_LBRACE] = ACTIONS(4728), + [anon_sym_PIPE] = ACTIONS(4728), + [anon_sym_TILDE] = ACTIONS(4728), + [anon_sym_LPAREN] = ACTIONS(4728), + [anon_sym_RPAREN] = ACTIONS(4728), + [sym__newline_token] = ACTIONS(4728), + [aux_sym_insert_token1] = ACTIONS(4728), + [aux_sym_delete_token1] = ACTIONS(4728), + [aux_sym_highlight_token1] = ACTIONS(4728), + [aux_sym_edit_comment_token1] = ACTIONS(4728), + [anon_sym_CARET_LBRACK] = ACTIONS(4728), + [anon_sym_LBRACK_CARET] = ACTIONS(4728), + [sym_uri_autolink] = ACTIONS(4728), + [sym_email_autolink] = ACTIONS(4728), + [sym__whitespace_ge_2] = ACTIONS(4728), + [aux_sym__whitespace_token1] = ACTIONS(4730), + [sym__word_no_digit] = ACTIONS(4728), + [sym__digits] = ACTIONS(4728), + [anon_sym_DASH_DASH] = ACTIONS(4730), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4728), + [sym__code_span_start] = ACTIONS(4728), + [sym__emphasis_open_star] = ACTIONS(4728), + [sym__emphasis_open_underscore] = ACTIONS(4728), + [sym__emphasis_close_star] = ACTIONS(4728), + [sym__last_token_whitespace] = ACTIONS(4798), + [sym__strikeout_open] = ACTIONS(4728), + [sym__latex_span_start] = ACTIONS(4728), + [sym__single_quote_open] = ACTIONS(4728), + [sym__double_quote_open] = ACTIONS(4728), + [sym__superscript_open] = ACTIONS(4728), + [sym__subscript_open] = ACTIONS(4728), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4728), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4728), + [sym__cite_author_in_text] = ACTIONS(4728), + [sym__cite_suppress_author] = ACTIONS(4728), + [sym__shortcode_open_escaped] = ACTIONS(4728), + [sym__shortcode_open] = ACTIONS(4728), + [sym__unclosed_span] = ACTIONS(4728), + }, + [STATE(640)] = { + [sym__backslash_escape] = ACTIONS(4642), + [sym_entity_reference] = ACTIONS(4642), + [sym_numeric_character_reference] = ACTIONS(4642), + [anon_sym_LT] = ACTIONS(4644), + [anon_sym_GT] = ACTIONS(4642), + [anon_sym_BANG] = ACTIONS(4642), + [anon_sym_DQUOTE] = ACTIONS(4642), + [anon_sym_POUND] = ACTIONS(4642), + [anon_sym_DOLLAR] = ACTIONS(4642), + [anon_sym_PERCENT] = ACTIONS(4642), + [anon_sym_AMP] = ACTIONS(4644), + [anon_sym_SQUOTE] = ACTIONS(4642), + [anon_sym_STAR] = ACTIONS(4642), + [anon_sym_PLUS] = ACTIONS(4642), + [anon_sym_COMMA] = ACTIONS(4642), + [anon_sym_DASH] = ACTIONS(4644), + [anon_sym_DOT] = ACTIONS(4644), + [anon_sym_SLASH] = ACTIONS(4642), + [anon_sym_COLON] = ACTIONS(4642), + [anon_sym_SEMI] = ACTIONS(4642), + [anon_sym_EQ] = ACTIONS(4642), + [anon_sym_QMARK] = ACTIONS(4642), + [anon_sym_LBRACK] = ACTIONS(4644), + [anon_sym_BSLASH] = ACTIONS(4644), + [anon_sym_CARET] = ACTIONS(4644), + [anon_sym__] = ACTIONS(4642), + [anon_sym_BQUOTE] = ACTIONS(4642), + [anon_sym_LBRACE] = ACTIONS(4642), + [anon_sym_PIPE] = ACTIONS(4642), + [anon_sym_TILDE] = ACTIONS(4642), + [anon_sym_LPAREN] = ACTIONS(4642), + [anon_sym_RPAREN] = ACTIONS(4642), + [sym__newline_token] = ACTIONS(4642), + [aux_sym_insert_token1] = ACTIONS(4642), + [aux_sym_delete_token1] = ACTIONS(4642), + [aux_sym_highlight_token1] = ACTIONS(4642), + [aux_sym_edit_comment_token1] = ACTIONS(4642), + [anon_sym_CARET_LBRACK] = ACTIONS(4642), + [anon_sym_LBRACK_CARET] = ACTIONS(4642), + [sym_uri_autolink] = ACTIONS(4642), + [sym_email_autolink] = ACTIONS(4642), + [sym__whitespace_ge_2] = ACTIONS(4642), + [aux_sym__whitespace_token1] = ACTIONS(4644), + [sym__word_no_digit] = ACTIONS(4642), + [sym__digits] = ACTIONS(4642), + [anon_sym_DASH_DASH] = ACTIONS(4644), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4642), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4642), + [sym__code_span_start] = ACTIONS(4642), + [sym__emphasis_open_star] = ACTIONS(4642), + [sym__emphasis_open_underscore] = ACTIONS(4642), + [sym__last_token_whitespace] = ACTIONS(4666), + [sym__strikeout_open] = ACTIONS(4642), + [sym__latex_span_start] = ACTIONS(4642), + [sym__single_quote_open] = ACTIONS(4642), + [sym__single_quote_close] = ACTIONS(4642), + [sym__double_quote_open] = ACTIONS(4642), + [sym__superscript_open] = ACTIONS(4642), + [sym__subscript_open] = ACTIONS(4642), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4642), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4642), + [sym__cite_author_in_text] = ACTIONS(4642), + [sym__cite_suppress_author] = ACTIONS(4642), + [sym__shortcode_open_escaped] = ACTIONS(4642), + [sym__shortcode_open] = ACTIONS(4642), + [sym__unclosed_span] = ACTIONS(4642), + }, + [STATE(641)] = { + [sym__backslash_escape] = ACTIONS(4642), + [sym_entity_reference] = ACTIONS(4642), + [sym_numeric_character_reference] = ACTIONS(4642), + [anon_sym_LT] = ACTIONS(4644), + [anon_sym_GT] = ACTIONS(4642), + [anon_sym_BANG] = ACTIONS(4642), + [anon_sym_DQUOTE] = ACTIONS(4642), + [anon_sym_POUND] = ACTIONS(4642), + [anon_sym_DOLLAR] = ACTIONS(4642), + [anon_sym_PERCENT] = ACTIONS(4642), + [anon_sym_AMP] = ACTIONS(4644), + [anon_sym_SQUOTE] = ACTIONS(4642), + [anon_sym_STAR] = ACTIONS(4642), + [anon_sym_PLUS] = ACTIONS(4642), + [anon_sym_COMMA] = ACTIONS(4642), + [anon_sym_DASH] = ACTIONS(4644), + [anon_sym_DOT] = ACTIONS(4644), + [anon_sym_SLASH] = ACTIONS(4642), + [anon_sym_COLON] = ACTIONS(4642), + [anon_sym_SEMI] = ACTIONS(4642), + [anon_sym_EQ] = ACTIONS(4642), + [anon_sym_QMARK] = ACTIONS(4642), + [anon_sym_LBRACK] = ACTIONS(4644), + [anon_sym_BSLASH] = ACTIONS(4644), + [anon_sym_CARET] = ACTIONS(4644), + [anon_sym__] = ACTIONS(4642), + [anon_sym_BQUOTE] = ACTIONS(4642), + [anon_sym_LBRACE] = ACTIONS(4642), + [anon_sym_PIPE] = ACTIONS(4642), + [anon_sym_TILDE] = ACTIONS(4642), + [anon_sym_LPAREN] = ACTIONS(4642), + [anon_sym_RPAREN] = ACTIONS(4642), + [sym__newline_token] = ACTIONS(4642), + [aux_sym_insert_token1] = ACTIONS(4642), + [aux_sym_delete_token1] = ACTIONS(4642), + [aux_sym_highlight_token1] = ACTIONS(4642), + [aux_sym_edit_comment_token1] = ACTIONS(4642), + [anon_sym_CARET_LBRACK] = ACTIONS(4642), + [anon_sym_LBRACK_CARET] = ACTIONS(4642), + [sym_uri_autolink] = ACTIONS(4642), + [sym_email_autolink] = ACTIONS(4642), + [sym__whitespace_ge_2] = ACTIONS(4642), + [aux_sym__whitespace_token1] = ACTIONS(4644), + [sym__word_no_digit] = ACTIONS(4642), + [sym__digits] = ACTIONS(4642), + [anon_sym_DASH_DASH] = ACTIONS(4644), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4642), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4642), + [sym__code_span_start] = ACTIONS(4642), + [sym__emphasis_open_star] = ACTIONS(4642), + [sym__emphasis_open_underscore] = ACTIONS(4642), + [sym__emphasis_close_star] = ACTIONS(4642), + [sym__last_token_whitespace] = ACTIONS(4670), + [sym__strikeout_open] = ACTIONS(4642), + [sym__latex_span_start] = ACTIONS(4642), + [sym__single_quote_open] = ACTIONS(4642), + [sym__double_quote_open] = ACTIONS(4642), + [sym__superscript_open] = ACTIONS(4642), + [sym__subscript_open] = ACTIONS(4642), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4642), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4642), + [sym__cite_author_in_text] = ACTIONS(4642), + [sym__cite_suppress_author] = ACTIONS(4642), + [sym__shortcode_open_escaped] = ACTIONS(4642), + [sym__shortcode_open] = ACTIONS(4642), + [sym__unclosed_span] = ACTIONS(4642), + }, + [STATE(642)] = { + [sym__backslash_escape] = ACTIONS(4642), + [sym_entity_reference] = ACTIONS(4642), + [sym_numeric_character_reference] = ACTIONS(4642), + [anon_sym_LT] = ACTIONS(4644), + [anon_sym_GT] = ACTIONS(4642), + [anon_sym_BANG] = ACTIONS(4642), + [anon_sym_DQUOTE] = ACTIONS(4642), + [anon_sym_POUND] = ACTIONS(4642), + [anon_sym_DOLLAR] = ACTIONS(4642), + [anon_sym_PERCENT] = ACTIONS(4642), + [anon_sym_AMP] = ACTIONS(4644), + [anon_sym_SQUOTE] = ACTIONS(4642), + [anon_sym_STAR] = ACTIONS(4642), + [anon_sym_PLUS] = ACTIONS(4642), + [anon_sym_COMMA] = ACTIONS(4642), + [anon_sym_DASH] = ACTIONS(4644), + [anon_sym_DOT] = ACTIONS(4644), + [anon_sym_SLASH] = ACTIONS(4642), + [anon_sym_COLON] = ACTIONS(4642), + [anon_sym_SEMI] = ACTIONS(4642), + [anon_sym_EQ] = ACTIONS(4642), + [anon_sym_QMARK] = ACTIONS(4642), + [anon_sym_LBRACK] = ACTIONS(4644), + [anon_sym_BSLASH] = ACTIONS(4644), + [anon_sym_CARET] = ACTIONS(4644), + [anon_sym__] = ACTIONS(4642), + [anon_sym_BQUOTE] = ACTIONS(4642), + [anon_sym_LBRACE] = ACTIONS(4642), + [anon_sym_PIPE] = ACTIONS(4642), + [anon_sym_TILDE] = ACTIONS(4642), + [anon_sym_LPAREN] = ACTIONS(4642), + [anon_sym_RPAREN] = ACTIONS(4642), + [sym__newline_token] = ACTIONS(4642), + [aux_sym_insert_token1] = ACTIONS(4642), + [aux_sym_delete_token1] = ACTIONS(4642), + [aux_sym_highlight_token1] = ACTIONS(4642), + [aux_sym_edit_comment_token1] = ACTIONS(4642), + [anon_sym_CARET_LBRACK] = ACTIONS(4642), + [anon_sym_LBRACK_CARET] = ACTIONS(4642), + [sym_uri_autolink] = ACTIONS(4642), + [sym_email_autolink] = ACTIONS(4642), + [sym__whitespace_ge_2] = ACTIONS(4642), + [aux_sym__whitespace_token1] = ACTIONS(4644), + [sym__word_no_digit] = ACTIONS(4642), + [sym__digits] = ACTIONS(4642), + [anon_sym_DASH_DASH] = ACTIONS(4644), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4642), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4642), + [sym__code_span_start] = ACTIONS(4642), + [sym__emphasis_open_star] = ACTIONS(4642), + [sym__emphasis_open_underscore] = ACTIONS(4642), + [sym__last_token_whitespace] = ACTIONS(4654), + [sym__strikeout_open] = ACTIONS(4642), + [sym__latex_span_start] = ACTIONS(4642), + [sym__single_quote_open] = ACTIONS(4642), + [sym__double_quote_open] = ACTIONS(4642), + [sym__superscript_open] = ACTIONS(4642), + [sym__subscript_open] = ACTIONS(4642), + [sym__subscript_close] = ACTIONS(4642), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4642), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4642), + [sym__cite_author_in_text] = ACTIONS(4642), + [sym__cite_suppress_author] = ACTIONS(4642), + [sym__shortcode_open_escaped] = ACTIONS(4642), + [sym__shortcode_open] = ACTIONS(4642), + [sym__unclosed_span] = ACTIONS(4642), + }, + [STATE(643)] = { + [sym__backslash_escape] = ACTIONS(4728), + [sym_entity_reference] = ACTIONS(4728), + [sym_numeric_character_reference] = ACTIONS(4728), + [anon_sym_LT] = ACTIONS(4730), + [anon_sym_GT] = ACTIONS(4728), + [anon_sym_BANG] = ACTIONS(4728), + [anon_sym_DQUOTE] = ACTIONS(4728), + [anon_sym_POUND] = ACTIONS(4728), + [anon_sym_DOLLAR] = ACTIONS(4728), + [anon_sym_PERCENT] = ACTIONS(4728), + [anon_sym_AMP] = ACTIONS(4730), + [anon_sym_SQUOTE] = ACTIONS(4728), + [anon_sym_STAR] = ACTIONS(4728), + [anon_sym_PLUS] = ACTIONS(4728), + [anon_sym_COMMA] = ACTIONS(4728), + [anon_sym_DASH] = ACTIONS(4730), + [anon_sym_DOT] = ACTIONS(4730), + [anon_sym_SLASH] = ACTIONS(4728), + [anon_sym_COLON] = ACTIONS(4728), + [anon_sym_SEMI] = ACTIONS(4728), + [anon_sym_EQ] = ACTIONS(4728), + [anon_sym_QMARK] = ACTIONS(4728), + [anon_sym_LBRACK] = ACTIONS(4730), + [anon_sym_BSLASH] = ACTIONS(4730), + [anon_sym_CARET] = ACTIONS(4730), + [anon_sym__] = ACTIONS(4728), + [anon_sym_BQUOTE] = ACTIONS(4728), + [anon_sym_LBRACE] = ACTIONS(4728), + [anon_sym_PIPE] = ACTIONS(4728), + [anon_sym_TILDE] = ACTIONS(4728), + [anon_sym_LPAREN] = ACTIONS(4728), + [anon_sym_RPAREN] = ACTIONS(4728), + [sym__newline_token] = ACTIONS(4728), + [aux_sym_insert_token1] = ACTIONS(4728), + [aux_sym_delete_token1] = ACTIONS(4728), + [aux_sym_highlight_token1] = ACTIONS(4728), + [aux_sym_edit_comment_token1] = ACTIONS(4728), + [anon_sym_CARET_LBRACK] = ACTIONS(4728), + [anon_sym_LBRACK_CARET] = ACTIONS(4728), + [sym_uri_autolink] = ACTIONS(4728), + [sym_email_autolink] = ACTIONS(4728), + [sym__whitespace_ge_2] = ACTIONS(4728), + [aux_sym__whitespace_token1] = ACTIONS(4730), + [sym__word_no_digit] = ACTIONS(4728), + [sym__digits] = ACTIONS(4728), + [anon_sym_DASH_DASH] = ACTIONS(4730), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4728), + [sym__code_span_start] = ACTIONS(4728), + [sym__emphasis_open_star] = ACTIONS(4728), + [sym__emphasis_open_underscore] = ACTIONS(4728), + [sym__emphasis_close_underscore] = ACTIONS(4728), + [sym__last_token_whitespace] = ACTIONS(4800), + [sym__strikeout_open] = ACTIONS(4728), + [sym__latex_span_start] = ACTIONS(4728), + [sym__single_quote_open] = ACTIONS(4728), + [sym__double_quote_open] = ACTIONS(4728), + [sym__superscript_open] = ACTIONS(4728), + [sym__subscript_open] = ACTIONS(4728), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4728), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4728), + [sym__cite_author_in_text] = ACTIONS(4728), + [sym__cite_suppress_author] = ACTIONS(4728), + [sym__shortcode_open_escaped] = ACTIONS(4728), + [sym__shortcode_open] = ACTIONS(4728), + [sym__unclosed_span] = ACTIONS(4728), + }, + [STATE(644)] = { + [sym__backslash_escape] = ACTIONS(4698), + [sym_entity_reference] = ACTIONS(4698), + [sym_numeric_character_reference] = ACTIONS(4698), + [anon_sym_LT] = ACTIONS(4700), + [anon_sym_GT] = ACTIONS(4698), + [anon_sym_BANG] = ACTIONS(4698), + [anon_sym_DQUOTE] = ACTIONS(4698), + [anon_sym_POUND] = ACTIONS(4698), + [anon_sym_DOLLAR] = ACTIONS(4698), + [anon_sym_PERCENT] = ACTIONS(4698), + [anon_sym_AMP] = ACTIONS(4700), + [anon_sym_SQUOTE] = ACTIONS(4698), + [anon_sym_STAR] = ACTIONS(4698), + [anon_sym_PLUS] = ACTIONS(4698), + [anon_sym_COMMA] = ACTIONS(4698), + [anon_sym_DASH] = ACTIONS(4700), + [anon_sym_DOT] = ACTIONS(4700), + [anon_sym_SLASH] = ACTIONS(4698), + [anon_sym_COLON] = ACTIONS(4698), + [anon_sym_SEMI] = ACTIONS(4698), + [anon_sym_EQ] = ACTIONS(4698), + [anon_sym_QMARK] = ACTIONS(4698), + [anon_sym_LBRACK] = ACTIONS(4700), + [anon_sym_BSLASH] = ACTIONS(4700), + [anon_sym_CARET] = ACTIONS(4700), + [anon_sym__] = ACTIONS(4698), + [anon_sym_BQUOTE] = ACTIONS(4698), + [anon_sym_LBRACE] = ACTIONS(4698), + [anon_sym_PIPE] = ACTIONS(4698), + [anon_sym_TILDE] = ACTIONS(4698), + [anon_sym_LPAREN] = ACTIONS(4698), + [anon_sym_RPAREN] = ACTIONS(4698), + [sym__newline_token] = ACTIONS(4698), + [aux_sym_insert_token1] = ACTIONS(4698), + [aux_sym_delete_token1] = ACTIONS(4698), + [aux_sym_highlight_token1] = ACTIONS(4698), + [aux_sym_edit_comment_token1] = ACTIONS(4698), + [anon_sym_CARET_LBRACK] = ACTIONS(4698), + [anon_sym_LBRACK_CARET] = ACTIONS(4698), + [sym_uri_autolink] = ACTIONS(4698), + [sym_email_autolink] = ACTIONS(4698), + [sym__whitespace_ge_2] = ACTIONS(4698), + [aux_sym__whitespace_token1] = ACTIONS(4700), + [sym__word_no_digit] = ACTIONS(4698), + [sym__digits] = ACTIONS(4698), + [anon_sym_DASH_DASH] = ACTIONS(4700), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4698), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4698), + [sym__code_span_start] = ACTIONS(4698), + [sym__emphasis_open_star] = ACTIONS(4698), + [sym__emphasis_open_underscore] = ACTIONS(4698), + [sym__last_token_punctuation] = ACTIONS(4802), + [sym__strikeout_open] = ACTIONS(4698), + [sym__latex_span_start] = ACTIONS(4698), + [sym__single_quote_open] = ACTIONS(4698), + [sym__single_quote_close] = ACTIONS(4698), + [sym__double_quote_open] = ACTIONS(4698), + [sym__superscript_open] = ACTIONS(4698), + [sym__subscript_open] = ACTIONS(4698), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4698), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4698), + [sym__cite_author_in_text] = ACTIONS(4698), + [sym__cite_suppress_author] = ACTIONS(4698), + [sym__shortcode_open_escaped] = ACTIONS(4698), + [sym__shortcode_open] = ACTIONS(4698), + [sym__unclosed_span] = ACTIONS(4698), + }, + [STATE(645)] = { + [ts_builtin_sym_end] = ACTIONS(4648), + [sym__backslash_escape] = ACTIONS(4648), + [sym_entity_reference] = ACTIONS(4648), + [sym_numeric_character_reference] = ACTIONS(4648), + [anon_sym_LT] = ACTIONS(4650), + [anon_sym_GT] = ACTIONS(4648), + [anon_sym_BANG] = ACTIONS(4648), + [anon_sym_DQUOTE] = ACTIONS(4648), + [anon_sym_POUND] = ACTIONS(4648), + [anon_sym_DOLLAR] = ACTIONS(4648), + [anon_sym_PERCENT] = ACTIONS(4648), + [anon_sym_AMP] = ACTIONS(4650), + [anon_sym_SQUOTE] = ACTIONS(4648), + [anon_sym_STAR] = ACTIONS(4648), + [anon_sym_PLUS] = ACTIONS(4648), + [anon_sym_COMMA] = ACTIONS(4648), + [anon_sym_DASH] = ACTIONS(4650), + [anon_sym_DOT] = ACTIONS(4650), + [anon_sym_SLASH] = ACTIONS(4648), + [anon_sym_COLON] = ACTIONS(4648), + [anon_sym_SEMI] = ACTIONS(4648), + [anon_sym_EQ] = ACTIONS(4648), + [anon_sym_QMARK] = ACTIONS(4648), + [anon_sym_LBRACK] = ACTIONS(4650), + [anon_sym_BSLASH] = ACTIONS(4650), + [anon_sym_CARET] = ACTIONS(4650), + [anon_sym__] = ACTIONS(4648), + [anon_sym_BQUOTE] = ACTIONS(4648), + [anon_sym_LBRACE] = ACTIONS(4648), + [anon_sym_PIPE] = ACTIONS(4648), + [anon_sym_TILDE] = ACTIONS(4648), + [anon_sym_LPAREN] = ACTIONS(4648), + [anon_sym_RPAREN] = ACTIONS(4648), + [sym__newline_token] = ACTIONS(4648), + [aux_sym_insert_token1] = ACTIONS(4648), + [aux_sym_delete_token1] = ACTIONS(4648), + [aux_sym_highlight_token1] = ACTIONS(4648), + [aux_sym_edit_comment_token1] = ACTIONS(4648), + [anon_sym_CARET_LBRACK] = ACTIONS(4648), + [anon_sym_LBRACK_CARET] = ACTIONS(4648), + [sym_uri_autolink] = ACTIONS(4648), + [sym_email_autolink] = ACTIONS(4648), + [sym__whitespace_ge_2] = ACTIONS(4648), + [aux_sym__whitespace_token1] = ACTIONS(4650), + [sym__word_no_digit] = ACTIONS(4648), + [sym__digits] = ACTIONS(4648), + [anon_sym_DASH_DASH] = ACTIONS(4650), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4648), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4648), + [sym__code_span_start] = ACTIONS(4648), + [sym__emphasis_open_star] = ACTIONS(4648), + [sym__emphasis_open_underscore] = ACTIONS(4648), + [sym__last_token_punctuation] = ACTIONS(4672), + [sym__strikeout_open] = ACTIONS(4648), + [sym__latex_span_start] = ACTIONS(4648), + [sym__single_quote_open] = ACTIONS(4648), + [sym__double_quote_open] = ACTIONS(4648), + [sym__superscript_open] = ACTIONS(4648), + [sym__subscript_open] = ACTIONS(4648), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4648), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4648), + [sym__cite_author_in_text] = ACTIONS(4648), + [sym__cite_suppress_author] = ACTIONS(4648), + [sym__shortcode_open_escaped] = ACTIONS(4648), + [sym__shortcode_open] = ACTIONS(4648), + [sym__unclosed_span] = ACTIONS(4648), + }, + [STATE(646)] = { + [ts_builtin_sym_end] = ACTIONS(4648), + [sym__backslash_escape] = ACTIONS(4648), + [sym_entity_reference] = ACTIONS(4648), + [sym_numeric_character_reference] = ACTIONS(4648), + [anon_sym_LT] = ACTIONS(4650), + [anon_sym_GT] = ACTIONS(4648), + [anon_sym_BANG] = ACTIONS(4648), + [anon_sym_DQUOTE] = ACTIONS(4648), + [anon_sym_POUND] = ACTIONS(4648), + [anon_sym_DOLLAR] = ACTIONS(4648), + [anon_sym_PERCENT] = ACTIONS(4648), + [anon_sym_AMP] = ACTIONS(4650), + [anon_sym_SQUOTE] = ACTIONS(4648), + [anon_sym_STAR] = ACTIONS(4648), + [anon_sym_PLUS] = ACTIONS(4648), + [anon_sym_COMMA] = ACTIONS(4648), + [anon_sym_DASH] = ACTIONS(4650), + [anon_sym_DOT] = ACTIONS(4650), + [anon_sym_SLASH] = ACTIONS(4648), + [anon_sym_COLON] = ACTIONS(4648), + [anon_sym_SEMI] = ACTIONS(4648), + [anon_sym_EQ] = ACTIONS(4648), + [anon_sym_QMARK] = ACTIONS(4648), + [anon_sym_LBRACK] = ACTIONS(4724), + [anon_sym_BSLASH] = ACTIONS(4650), + [anon_sym_CARET] = ACTIONS(4650), + [anon_sym__] = ACTIONS(4648), + [anon_sym_BQUOTE] = ACTIONS(4648), + [anon_sym_LBRACE] = ACTIONS(4648), + [anon_sym_PIPE] = ACTIONS(4648), + [anon_sym_TILDE] = ACTIONS(4648), + [anon_sym_LPAREN] = ACTIONS(4648), + [anon_sym_RPAREN] = ACTIONS(4648), + [sym__newline_token] = ACTIONS(4648), + [aux_sym_insert_token1] = ACTIONS(4648), + [aux_sym_delete_token1] = ACTIONS(4648), + [aux_sym_highlight_token1] = ACTIONS(4648), + [aux_sym_edit_comment_token1] = ACTIONS(4648), + [anon_sym_CARET_LBRACK] = ACTIONS(4648), + [anon_sym_LBRACK_CARET] = ACTIONS(4648), + [sym_uri_autolink] = ACTIONS(4648), + [sym_email_autolink] = ACTIONS(4648), + [sym__whitespace_ge_2] = ACTIONS(4648), + [aux_sym__whitespace_token1] = ACTIONS(4650), + [sym__word_no_digit] = ACTIONS(4648), + [sym__digits] = ACTIONS(4648), + [anon_sym_DASH_DASH] = ACTIONS(4650), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4648), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4648), + [sym__code_span_start] = ACTIONS(4648), + [sym__emphasis_open_star] = ACTIONS(4648), + [sym__emphasis_open_underscore] = ACTIONS(4648), + [sym__last_token_punctuation] = ACTIONS(4672), + [sym__strikeout_open] = ACTIONS(4648), + [sym__latex_span_start] = ACTIONS(4648), + [sym__single_quote_open] = ACTIONS(4648), + [sym__double_quote_open] = ACTIONS(4648), + [sym__superscript_open] = ACTIONS(4648), + [sym__subscript_open] = ACTIONS(4648), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4648), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4648), + [sym__cite_author_in_text] = ACTIONS(4648), + [sym__cite_suppress_author] = ACTIONS(4648), + [sym__shortcode_open_escaped] = ACTIONS(4648), + [sym__shortcode_open] = ACTIONS(4648), + [sym__unclosed_span] = ACTIONS(4648), + }, + [STATE(647)] = { + [ts_builtin_sym_end] = ACTIONS(4704), + [sym__backslash_escape] = ACTIONS(4704), + [sym_entity_reference] = ACTIONS(4704), + [sym_numeric_character_reference] = ACTIONS(4704), + [anon_sym_LT] = ACTIONS(4706), + [anon_sym_GT] = ACTIONS(4704), + [anon_sym_BANG] = ACTIONS(4704), + [anon_sym_DQUOTE] = ACTIONS(4704), + [anon_sym_POUND] = ACTIONS(4704), + [anon_sym_DOLLAR] = ACTIONS(4704), + [anon_sym_PERCENT] = ACTIONS(4704), + [anon_sym_AMP] = ACTIONS(4706), + [anon_sym_SQUOTE] = ACTIONS(4704), + [anon_sym_STAR] = ACTIONS(4704), + [anon_sym_PLUS] = ACTIONS(4704), + [anon_sym_COMMA] = ACTIONS(4704), + [anon_sym_DASH] = ACTIONS(4706), + [anon_sym_DOT] = ACTIONS(4706), + [anon_sym_SLASH] = ACTIONS(4704), + [anon_sym_COLON] = ACTIONS(4704), + [anon_sym_SEMI] = ACTIONS(4704), + [anon_sym_EQ] = ACTIONS(4704), + [anon_sym_QMARK] = ACTIONS(4704), + [anon_sym_LBRACK] = ACTIONS(4706), + [anon_sym_BSLASH] = ACTIONS(4706), + [anon_sym_CARET] = ACTIONS(4706), + [anon_sym__] = ACTIONS(4704), + [anon_sym_BQUOTE] = ACTIONS(4704), + [anon_sym_LBRACE] = ACTIONS(4704), + [anon_sym_PIPE] = ACTIONS(4704), + [anon_sym_TILDE] = ACTIONS(4704), + [anon_sym_LPAREN] = ACTIONS(4704), + [anon_sym_RPAREN] = ACTIONS(4704), + [sym__newline_token] = ACTIONS(4704), + [aux_sym_insert_token1] = ACTIONS(4704), + [aux_sym_delete_token1] = ACTIONS(4704), + [aux_sym_highlight_token1] = ACTIONS(4704), + [aux_sym_edit_comment_token1] = ACTIONS(4704), + [anon_sym_CARET_LBRACK] = ACTIONS(4704), + [anon_sym_LBRACK_CARET] = ACTIONS(4704), + [sym_uri_autolink] = ACTIONS(4704), + [sym_email_autolink] = ACTIONS(4704), + [sym__whitespace_ge_2] = ACTIONS(4704), + [aux_sym__whitespace_token1] = ACTIONS(4706), + [sym__word_no_digit] = ACTIONS(4704), + [sym__digits] = ACTIONS(4704), + [anon_sym_DASH_DASH] = ACTIONS(4706), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4704), + [sym__code_span_start] = ACTIONS(4704), + [sym__emphasis_open_star] = ACTIONS(4704), + [sym__emphasis_open_underscore] = ACTIONS(4704), + [sym__last_token_punctuation] = ACTIONS(4804), + [sym__strikeout_open] = ACTIONS(4704), + [sym__latex_span_start] = ACTIONS(4704), + [sym__single_quote_open] = ACTIONS(4704), + [sym__double_quote_open] = ACTIONS(4704), + [sym__superscript_open] = ACTIONS(4704), + [sym__subscript_open] = ACTIONS(4704), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4704), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4704), + [sym__cite_author_in_text] = ACTIONS(4704), + [sym__cite_suppress_author] = ACTIONS(4704), + [sym__shortcode_open_escaped] = ACTIONS(4704), + [sym__shortcode_open] = ACTIONS(4704), + [sym__unclosed_span] = ACTIONS(4704), + }, + [STATE(648)] = { + [ts_builtin_sym_end] = ACTIONS(4690), + [sym__backslash_escape] = ACTIONS(4690), + [sym_entity_reference] = ACTIONS(4690), + [sym_numeric_character_reference] = ACTIONS(4690), + [anon_sym_LT] = ACTIONS(4692), + [anon_sym_GT] = ACTIONS(4690), + [anon_sym_BANG] = ACTIONS(4690), + [anon_sym_DQUOTE] = ACTIONS(4690), + [anon_sym_POUND] = ACTIONS(4690), + [anon_sym_DOLLAR] = ACTIONS(4690), + [anon_sym_PERCENT] = ACTIONS(4690), + [anon_sym_AMP] = ACTIONS(4692), + [anon_sym_SQUOTE] = ACTIONS(4690), + [anon_sym_STAR] = ACTIONS(4690), + [anon_sym_PLUS] = ACTIONS(4690), + [anon_sym_COMMA] = ACTIONS(4690), + [anon_sym_DASH] = ACTIONS(4692), + [anon_sym_DOT] = ACTIONS(4692), + [anon_sym_SLASH] = ACTIONS(4690), + [anon_sym_COLON] = ACTIONS(4690), + [anon_sym_SEMI] = ACTIONS(4690), + [anon_sym_EQ] = ACTIONS(4690), + [anon_sym_QMARK] = ACTIONS(4690), + [anon_sym_LBRACK] = ACTIONS(4692), + [anon_sym_BSLASH] = ACTIONS(4692), + [anon_sym_CARET] = ACTIONS(4692), + [anon_sym__] = ACTIONS(4690), + [anon_sym_BQUOTE] = ACTIONS(4690), + [anon_sym_LBRACE] = ACTIONS(4690), + [anon_sym_PIPE] = ACTIONS(4690), + [anon_sym_TILDE] = ACTIONS(4690), + [anon_sym_LPAREN] = ACTIONS(4690), + [anon_sym_RPAREN] = ACTIONS(4690), + [sym__newline_token] = ACTIONS(4690), + [aux_sym_insert_token1] = ACTIONS(4690), + [aux_sym_delete_token1] = ACTIONS(4690), + [aux_sym_highlight_token1] = ACTIONS(4690), + [aux_sym_edit_comment_token1] = ACTIONS(4690), + [anon_sym_CARET_LBRACK] = ACTIONS(4690), + [anon_sym_LBRACK_CARET] = ACTIONS(4690), + [sym_uri_autolink] = ACTIONS(4690), + [sym_email_autolink] = ACTIONS(4690), + [sym__whitespace_ge_2] = ACTIONS(4690), + [aux_sym__whitespace_token1] = ACTIONS(4692), + [sym__word_no_digit] = ACTIONS(4690), + [sym__digits] = ACTIONS(4690), + [anon_sym_DASH_DASH] = ACTIONS(4692), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4690), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4690), + [sym__code_span_start] = ACTIONS(4690), + [sym__emphasis_open_star] = ACTIONS(4690), + [sym__emphasis_open_underscore] = ACTIONS(4690), + [sym__last_token_punctuation] = ACTIONS(4806), + [sym__strikeout_open] = ACTIONS(4690), + [sym__latex_span_start] = ACTIONS(4690), + [sym__single_quote_open] = ACTIONS(4690), + [sym__double_quote_open] = ACTIONS(4690), + [sym__superscript_open] = ACTIONS(4690), + [sym__subscript_open] = ACTIONS(4690), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4690), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4690), + [sym__cite_author_in_text] = ACTIONS(4690), + [sym__cite_suppress_author] = ACTIONS(4690), + [sym__shortcode_open_escaped] = ACTIONS(4690), + [sym__shortcode_open] = ACTIONS(4690), + [sym__unclosed_span] = ACTIONS(4690), + }, + [STATE(649)] = { + [sym__backslash_escape] = ACTIONS(4718), + [sym_entity_reference] = ACTIONS(4718), + [sym_numeric_character_reference] = ACTIONS(4718), + [anon_sym_LT] = ACTIONS(4720), + [anon_sym_GT] = ACTIONS(4718), + [anon_sym_BANG] = ACTIONS(4718), + [anon_sym_DQUOTE] = ACTIONS(4718), + [anon_sym_POUND] = ACTIONS(4718), + [anon_sym_DOLLAR] = ACTIONS(4718), + [anon_sym_PERCENT] = ACTIONS(4718), + [anon_sym_AMP] = ACTIONS(4720), + [anon_sym_SQUOTE] = ACTIONS(4718), + [anon_sym_STAR] = ACTIONS(4718), + [anon_sym_PLUS] = ACTIONS(4718), + [anon_sym_COMMA] = ACTIONS(4718), + [anon_sym_DASH] = ACTIONS(4720), + [anon_sym_DOT] = ACTIONS(4720), + [anon_sym_SLASH] = ACTIONS(4718), + [anon_sym_COLON] = ACTIONS(4718), + [anon_sym_SEMI] = ACTIONS(4718), + [anon_sym_EQ] = ACTIONS(4718), + [anon_sym_QMARK] = ACTIONS(4718), + [anon_sym_LBRACK] = ACTIONS(4720), + [anon_sym_BSLASH] = ACTIONS(4720), + [anon_sym_CARET] = ACTIONS(4720), + [anon_sym__] = ACTIONS(4718), + [anon_sym_BQUOTE] = ACTIONS(4718), + [anon_sym_LBRACE] = ACTIONS(4718), + [anon_sym_PIPE] = ACTIONS(4718), + [anon_sym_TILDE] = ACTIONS(4718), + [anon_sym_LPAREN] = ACTIONS(4718), + [anon_sym_RPAREN] = ACTIONS(4718), + [sym__newline_token] = ACTIONS(4718), + [aux_sym_insert_token1] = ACTIONS(4718), + [aux_sym_delete_token1] = ACTIONS(4718), + [aux_sym_highlight_token1] = ACTIONS(4718), + [aux_sym_edit_comment_token1] = ACTIONS(4718), + [anon_sym_CARET_LBRACK] = ACTIONS(4718), + [anon_sym_LBRACK_CARET] = ACTIONS(4718), + [sym_uri_autolink] = ACTIONS(4718), + [sym_email_autolink] = ACTIONS(4718), + [sym__whitespace_ge_2] = ACTIONS(4718), + [aux_sym__whitespace_token1] = ACTIONS(4720), + [sym__word_no_digit] = ACTIONS(4718), + [sym__digits] = ACTIONS(4718), + [anon_sym_DASH_DASH] = ACTIONS(4720), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4718), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4718), + [sym__code_span_start] = ACTIONS(4718), + [sym__emphasis_open_star] = ACTIONS(4718), + [sym__emphasis_open_underscore] = ACTIONS(4718), + [sym__last_token_punctuation] = ACTIONS(4808), + [sym__strikeout_open] = ACTIONS(4718), + [sym__latex_span_start] = ACTIONS(4718), + [sym__single_quote_open] = ACTIONS(4718), + [sym__single_quote_close] = ACTIONS(4718), + [sym__double_quote_open] = ACTIONS(4718), + [sym__superscript_open] = ACTIONS(4718), + [sym__subscript_open] = ACTIONS(4718), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4718), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4718), + [sym__cite_author_in_text] = ACTIONS(4718), + [sym__cite_suppress_author] = ACTIONS(4718), + [sym__shortcode_open_escaped] = ACTIONS(4718), + [sym__shortcode_open] = ACTIONS(4718), + [sym__unclosed_span] = ACTIONS(4718), + }, + [STATE(650)] = { + [sym__backslash_escape] = ACTIONS(4642), + [sym_entity_reference] = ACTIONS(4642), + [sym_numeric_character_reference] = ACTIONS(4642), + [anon_sym_LT] = ACTIONS(4644), + [anon_sym_GT] = ACTIONS(4642), + [anon_sym_BANG] = ACTIONS(4642), + [anon_sym_DQUOTE] = ACTIONS(4642), + [anon_sym_POUND] = ACTIONS(4642), + [anon_sym_DOLLAR] = ACTIONS(4642), + [anon_sym_PERCENT] = ACTIONS(4642), + [anon_sym_AMP] = ACTIONS(4644), + [anon_sym_SQUOTE] = ACTIONS(4642), + [anon_sym_STAR] = ACTIONS(4642), + [anon_sym_PLUS] = ACTIONS(4642), + [anon_sym_COMMA] = ACTIONS(4642), + [anon_sym_DASH] = ACTIONS(4644), + [anon_sym_DOT] = ACTIONS(4644), + [anon_sym_SLASH] = ACTIONS(4642), + [anon_sym_COLON] = ACTIONS(4642), + [anon_sym_SEMI] = ACTIONS(4642), + [anon_sym_EQ] = ACTIONS(4642), + [anon_sym_QMARK] = ACTIONS(4642), + [anon_sym_LBRACK] = ACTIONS(4644), + [anon_sym_BSLASH] = ACTIONS(4644), + [anon_sym_CARET] = ACTIONS(4644), + [anon_sym__] = ACTIONS(4642), + [anon_sym_BQUOTE] = ACTIONS(4642), + [anon_sym_LBRACE] = ACTIONS(4642), + [anon_sym_PIPE] = ACTIONS(4642), + [anon_sym_TILDE] = ACTIONS(4642), + [anon_sym_LPAREN] = ACTIONS(4642), + [anon_sym_RPAREN] = ACTIONS(4642), + [sym__newline_token] = ACTIONS(4642), + [aux_sym_insert_token1] = ACTIONS(4642), + [aux_sym_delete_token1] = ACTIONS(4642), + [aux_sym_highlight_token1] = ACTIONS(4642), + [aux_sym_edit_comment_token1] = ACTIONS(4642), + [anon_sym_CARET_LBRACK] = ACTIONS(4642), + [anon_sym_LBRACK_CARET] = ACTIONS(4642), + [sym_uri_autolink] = ACTIONS(4642), + [sym_email_autolink] = ACTIONS(4642), + [sym__whitespace_ge_2] = ACTIONS(4642), + [aux_sym__whitespace_token1] = ACTIONS(4644), + [sym__word_no_digit] = ACTIONS(4642), + [sym__digits] = ACTIONS(4642), + [anon_sym_DASH_DASH] = ACTIONS(4644), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4642), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4642), + [sym__code_span_start] = ACTIONS(4642), + [sym__emphasis_open_star] = ACTIONS(4642), + [sym__emphasis_open_underscore] = ACTIONS(4642), + [sym__emphasis_close_underscore] = ACTIONS(4642), + [sym__last_token_whitespace] = ACTIONS(4686), + [sym__strikeout_open] = ACTIONS(4642), + [sym__latex_span_start] = ACTIONS(4642), + [sym__single_quote_open] = ACTIONS(4642), + [sym__double_quote_open] = ACTIONS(4642), + [sym__superscript_open] = ACTIONS(4642), + [sym__subscript_open] = ACTIONS(4642), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4642), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4642), + [sym__cite_author_in_text] = ACTIONS(4642), + [sym__cite_suppress_author] = ACTIONS(4642), + [sym__shortcode_open_escaped] = ACTIONS(4642), + [sym__shortcode_open] = ACTIONS(4642), + [sym__unclosed_span] = ACTIONS(4642), + }, + [STATE(651)] = { + [sym__backslash_escape] = ACTIONS(4648), + [sym_entity_reference] = ACTIONS(4648), + [sym_numeric_character_reference] = ACTIONS(4648), + [anon_sym_LT] = ACTIONS(4650), + [anon_sym_GT] = ACTIONS(4648), + [anon_sym_BANG] = ACTIONS(4648), + [anon_sym_DQUOTE] = ACTIONS(4648), + [anon_sym_POUND] = ACTIONS(4648), + [anon_sym_DOLLAR] = ACTIONS(4648), + [anon_sym_PERCENT] = ACTIONS(4648), + [anon_sym_AMP] = ACTIONS(4650), + [anon_sym_SQUOTE] = ACTIONS(4648), + [anon_sym_STAR] = ACTIONS(4648), + [anon_sym_PLUS] = ACTIONS(4648), + [anon_sym_COMMA] = ACTIONS(4648), + [anon_sym_DASH] = ACTIONS(4650), + [anon_sym_DOT] = ACTIONS(4650), + [anon_sym_SLASH] = ACTIONS(4648), + [anon_sym_COLON] = ACTIONS(4648), + [anon_sym_SEMI] = ACTIONS(4648), + [anon_sym_EQ] = ACTIONS(4648), + [anon_sym_QMARK] = ACTIONS(4648), + [anon_sym_LBRACK] = ACTIONS(4650), + [anon_sym_BSLASH] = ACTIONS(4650), + [anon_sym_CARET] = ACTIONS(4650), + [anon_sym__] = ACTIONS(4648), + [anon_sym_BQUOTE] = ACTIONS(4648), + [anon_sym_LBRACE] = ACTIONS(4648), + [anon_sym_PIPE] = ACTIONS(4648), + [anon_sym_TILDE] = ACTIONS(4648), + [anon_sym_LPAREN] = ACTIONS(4648), + [anon_sym_RPAREN] = ACTIONS(4648), + [sym__newline_token] = ACTIONS(4648), + [aux_sym_insert_token1] = ACTIONS(4648), + [aux_sym_delete_token1] = ACTIONS(4648), + [aux_sym_highlight_token1] = ACTIONS(4648), + [aux_sym_edit_comment_token1] = ACTIONS(4648), + [anon_sym_CARET_LBRACK] = ACTIONS(4648), + [anon_sym_LBRACK_CARET] = ACTIONS(4648), + [sym_uri_autolink] = ACTIONS(4648), + [sym_email_autolink] = ACTIONS(4648), + [sym__whitespace_ge_2] = ACTIONS(4648), + [aux_sym__whitespace_token1] = ACTIONS(4650), + [sym__word_no_digit] = ACTIONS(4648), + [sym__digits] = ACTIONS(4648), + [anon_sym_DASH_DASH] = ACTIONS(4650), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4648), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4648), + [sym__code_span_start] = ACTIONS(4648), + [sym__emphasis_open_star] = ACTIONS(4648), + [sym__emphasis_open_underscore] = ACTIONS(4648), + [sym__last_token_punctuation] = ACTIONS(4652), + [sym__strikeout_open] = ACTIONS(4648), + [sym__latex_span_start] = ACTIONS(4648), + [sym__single_quote_open] = ACTIONS(4648), + [sym__double_quote_open] = ACTIONS(4648), + [sym__superscript_open] = ACTIONS(4648), + [sym__subscript_open] = ACTIONS(4648), + [sym__subscript_close] = ACTIONS(4648), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4648), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4648), + [sym__cite_author_in_text] = ACTIONS(4648), + [sym__cite_suppress_author] = ACTIONS(4648), + [sym__shortcode_open_escaped] = ACTIONS(4648), + [sym__shortcode_open] = ACTIONS(4648), + [sym__unclosed_span] = ACTIONS(4648), + }, + [STATE(652)] = { + [sym__backslash_escape] = ACTIONS(4704), + [sym_entity_reference] = ACTIONS(4704), + [sym_numeric_character_reference] = ACTIONS(4704), + [anon_sym_LT] = ACTIONS(4706), + [anon_sym_GT] = ACTIONS(4704), + [anon_sym_BANG] = ACTIONS(4704), + [anon_sym_DQUOTE] = ACTIONS(4704), + [anon_sym_POUND] = ACTIONS(4704), + [anon_sym_DOLLAR] = ACTIONS(4704), + [anon_sym_PERCENT] = ACTIONS(4704), + [anon_sym_AMP] = ACTIONS(4706), + [anon_sym_SQUOTE] = ACTIONS(4704), + [anon_sym_STAR] = ACTIONS(4704), + [anon_sym_PLUS] = ACTIONS(4704), + [anon_sym_COMMA] = ACTIONS(4704), + [anon_sym_DASH] = ACTIONS(4706), + [anon_sym_DOT] = ACTIONS(4706), + [anon_sym_SLASH] = ACTIONS(4704), + [anon_sym_COLON] = ACTIONS(4704), + [anon_sym_SEMI] = ACTIONS(4704), + [anon_sym_EQ] = ACTIONS(4704), + [anon_sym_QMARK] = ACTIONS(4704), + [anon_sym_LBRACK] = ACTIONS(4706), + [anon_sym_BSLASH] = ACTIONS(4706), + [anon_sym_CARET] = ACTIONS(4706), + [anon_sym__] = ACTIONS(4704), + [anon_sym_BQUOTE] = ACTIONS(4704), + [anon_sym_LBRACE] = ACTIONS(4704), + [anon_sym_PIPE] = ACTIONS(4704), + [anon_sym_TILDE] = ACTIONS(4704), + [anon_sym_LPAREN] = ACTIONS(4704), + [anon_sym_RPAREN] = ACTIONS(4704), + [sym__newline_token] = ACTIONS(4704), + [aux_sym_insert_token1] = ACTIONS(4704), + [aux_sym_delete_token1] = ACTIONS(4704), + [aux_sym_highlight_token1] = ACTIONS(4704), + [aux_sym_edit_comment_token1] = ACTIONS(4704), + [anon_sym_CARET_LBRACK] = ACTIONS(4704), + [anon_sym_LBRACK_CARET] = ACTIONS(4704), + [sym_uri_autolink] = ACTIONS(4704), + [sym_email_autolink] = ACTIONS(4704), + [sym__whitespace_ge_2] = ACTIONS(4704), + [aux_sym__whitespace_token1] = ACTIONS(4706), + [sym__word_no_digit] = ACTIONS(4704), + [sym__digits] = ACTIONS(4704), + [anon_sym_DASH_DASH] = ACTIONS(4706), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4704), + [sym__code_span_start] = ACTIONS(4704), + [sym__emphasis_open_star] = ACTIONS(4704), + [sym__emphasis_open_underscore] = ACTIONS(4704), + [sym__emphasis_close_underscore] = ACTIONS(4704), + [sym__last_token_punctuation] = ACTIONS(4810), + [sym__strikeout_open] = ACTIONS(4704), + [sym__latex_span_start] = ACTIONS(4704), + [sym__single_quote_open] = ACTIONS(4704), + [sym__double_quote_open] = ACTIONS(4704), + [sym__superscript_open] = ACTIONS(4704), + [sym__subscript_open] = ACTIONS(4704), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4704), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4704), + [sym__cite_author_in_text] = ACTIONS(4704), + [sym__cite_suppress_author] = ACTIONS(4704), + [sym__shortcode_open_escaped] = ACTIONS(4704), + [sym__shortcode_open] = ACTIONS(4704), + [sym__unclosed_span] = ACTIONS(4704), + }, + [STATE(653)] = { + [sym__backslash_escape] = ACTIONS(4648), + [sym_entity_reference] = ACTIONS(4648), + [sym_numeric_character_reference] = ACTIONS(4648), + [anon_sym_LT] = ACTIONS(4650), + [anon_sym_GT] = ACTIONS(4648), + [anon_sym_BANG] = ACTIONS(4648), + [anon_sym_DQUOTE] = ACTIONS(4648), + [anon_sym_POUND] = ACTIONS(4648), + [anon_sym_DOLLAR] = ACTIONS(4648), + [anon_sym_PERCENT] = ACTIONS(4648), + [anon_sym_AMP] = ACTIONS(4650), + [anon_sym_SQUOTE] = ACTIONS(4648), + [anon_sym_STAR] = ACTIONS(4648), + [anon_sym_PLUS] = ACTIONS(4648), + [anon_sym_COMMA] = ACTIONS(4648), + [anon_sym_DASH] = ACTIONS(4650), + [anon_sym_DOT] = ACTIONS(4650), + [anon_sym_SLASH] = ACTIONS(4648), + [anon_sym_COLON] = ACTIONS(4648), + [anon_sym_SEMI] = ACTIONS(4648), + [anon_sym_EQ] = ACTIONS(4648), + [anon_sym_QMARK] = ACTIONS(4648), + [anon_sym_LBRACK] = ACTIONS(4724), + [anon_sym_BSLASH] = ACTIONS(4650), + [anon_sym_CARET] = ACTIONS(4650), + [anon_sym__] = ACTIONS(4648), + [anon_sym_BQUOTE] = ACTIONS(4648), + [anon_sym_LBRACE] = ACTIONS(4648), + [anon_sym_PIPE] = ACTIONS(4648), + [anon_sym_TILDE] = ACTIONS(4648), + [anon_sym_LPAREN] = ACTIONS(4648), + [anon_sym_RPAREN] = ACTIONS(4648), + [sym__newline_token] = ACTIONS(4648), + [aux_sym_insert_token1] = ACTIONS(4648), + [aux_sym_delete_token1] = ACTIONS(4648), + [aux_sym_highlight_token1] = ACTIONS(4648), + [aux_sym_edit_comment_token1] = ACTIONS(4648), + [anon_sym_CARET_LBRACK] = ACTIONS(4648), + [anon_sym_LBRACK_CARET] = ACTIONS(4648), + [sym_uri_autolink] = ACTIONS(4648), + [sym_email_autolink] = ACTIONS(4648), + [sym__whitespace_ge_2] = ACTIONS(4648), + [aux_sym__whitespace_token1] = ACTIONS(4650), + [sym__word_no_digit] = ACTIONS(4648), + [sym__digits] = ACTIONS(4648), + [anon_sym_DASH_DASH] = ACTIONS(4650), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4648), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4648), + [sym__code_span_start] = ACTIONS(4648), + [sym__emphasis_open_star] = ACTIONS(4648), + [sym__emphasis_open_underscore] = ACTIONS(4648), + [sym__last_token_punctuation] = ACTIONS(4652), + [sym__strikeout_open] = ACTIONS(4648), + [sym__latex_span_start] = ACTIONS(4648), + [sym__single_quote_open] = ACTIONS(4648), + [sym__double_quote_open] = ACTIONS(4648), + [sym__superscript_open] = ACTIONS(4648), + [sym__subscript_open] = ACTIONS(4648), + [sym__subscript_close] = ACTIONS(4648), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4648), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4648), + [sym__cite_author_in_text] = ACTIONS(4648), + [sym__cite_suppress_author] = ACTIONS(4648), + [sym__shortcode_open_escaped] = ACTIONS(4648), + [sym__shortcode_open] = ACTIONS(4648), + [sym__unclosed_span] = ACTIONS(4648), + }, + [STATE(654)] = { + [sym__backslash_escape] = ACTIONS(4648), + [sym_entity_reference] = ACTIONS(4648), + [sym_numeric_character_reference] = ACTIONS(4648), + [anon_sym_LT] = ACTIONS(4650), + [anon_sym_GT] = ACTIONS(4648), + [anon_sym_BANG] = ACTIONS(4648), + [anon_sym_DQUOTE] = ACTIONS(4648), + [anon_sym_POUND] = ACTIONS(4648), + [anon_sym_DOLLAR] = ACTIONS(4648), + [anon_sym_PERCENT] = ACTIONS(4648), + [anon_sym_AMP] = ACTIONS(4650), + [anon_sym_SQUOTE] = ACTIONS(4648), + [anon_sym_STAR] = ACTIONS(4648), + [anon_sym_PLUS] = ACTIONS(4648), + [anon_sym_COMMA] = ACTIONS(4648), + [anon_sym_DASH] = ACTIONS(4650), + [anon_sym_DOT] = ACTIONS(4650), + [anon_sym_SLASH] = ACTIONS(4648), + [anon_sym_COLON] = ACTIONS(4648), + [anon_sym_SEMI] = ACTIONS(4648), + [anon_sym_EQ] = ACTIONS(4648), + [anon_sym_QMARK] = ACTIONS(4648), + [anon_sym_LBRACK] = ACTIONS(4724), + [anon_sym_BSLASH] = ACTIONS(4650), + [anon_sym_CARET] = ACTIONS(4650), + [anon_sym__] = ACTIONS(4648), + [anon_sym_BQUOTE] = ACTIONS(4648), + [anon_sym_LBRACE] = ACTIONS(4648), + [anon_sym_PIPE] = ACTIONS(4648), + [anon_sym_TILDE] = ACTIONS(4648), + [anon_sym_LPAREN] = ACTIONS(4648), + [anon_sym_RPAREN] = ACTIONS(4648), + [sym__newline_token] = ACTIONS(4648), + [aux_sym_insert_token1] = ACTIONS(4648), + [aux_sym_delete_token1] = ACTIONS(4648), + [aux_sym_highlight_token1] = ACTIONS(4648), + [aux_sym_edit_comment_token1] = ACTIONS(4648), + [anon_sym_CARET_LBRACK] = ACTIONS(4648), + [anon_sym_LBRACK_CARET] = ACTIONS(4648), + [sym_uri_autolink] = ACTIONS(4648), + [sym_email_autolink] = ACTIONS(4648), + [sym__whitespace_ge_2] = ACTIONS(4648), + [aux_sym__whitespace_token1] = ACTIONS(4650), + [sym__word_no_digit] = ACTIONS(4648), + [sym__digits] = ACTIONS(4648), + [anon_sym_DASH_DASH] = ACTIONS(4650), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4648), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4648), + [sym__code_span_start] = ACTIONS(4648), + [sym__emphasis_open_star] = ACTIONS(4648), + [sym__emphasis_open_underscore] = ACTIONS(4648), + [sym__last_token_punctuation] = ACTIONS(4676), + [sym__strikeout_open] = ACTIONS(4648), + [sym__latex_span_start] = ACTIONS(4648), + [sym__single_quote_open] = ACTIONS(4648), + [sym__double_quote_open] = ACTIONS(4648), + [sym__double_quote_close] = ACTIONS(4648), + [sym__superscript_open] = ACTIONS(4648), + [sym__subscript_open] = ACTIONS(4648), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4648), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4648), + [sym__cite_author_in_text] = ACTIONS(4648), + [sym__cite_suppress_author] = ACTIONS(4648), + [sym__shortcode_open_escaped] = ACTIONS(4648), + [sym__shortcode_open] = ACTIONS(4648), + [sym__unclosed_span] = ACTIONS(4648), + }, + [STATE(655)] = { + [sym__backslash_escape] = ACTIONS(4596), + [sym_entity_reference] = ACTIONS(4596), + [sym_numeric_character_reference] = ACTIONS(4596), + [anon_sym_LT] = ACTIONS(4598), + [anon_sym_GT] = ACTIONS(4596), + [anon_sym_BANG] = ACTIONS(4596), + [anon_sym_DQUOTE] = ACTIONS(4596), + [anon_sym_POUND] = ACTIONS(4596), + [anon_sym_DOLLAR] = ACTIONS(4596), + [anon_sym_PERCENT] = ACTIONS(4596), + [anon_sym_AMP] = ACTIONS(4598), + [anon_sym_SQUOTE] = ACTIONS(4596), + [anon_sym_STAR] = ACTIONS(4596), + [anon_sym_PLUS] = ACTIONS(4596), + [anon_sym_COMMA] = ACTIONS(4596), + [anon_sym_DASH] = ACTIONS(4598), + [anon_sym_DOT] = ACTIONS(4598), + [anon_sym_SLASH] = ACTIONS(4596), + [anon_sym_COLON] = ACTIONS(4596), + [anon_sym_SEMI] = ACTIONS(4596), + [anon_sym_EQ] = ACTIONS(4596), + [anon_sym_QMARK] = ACTIONS(4596), + [anon_sym_LBRACK] = ACTIONS(4598), + [anon_sym_BSLASH] = ACTIONS(4598), + [anon_sym_CARET] = ACTIONS(4598), + [anon_sym__] = ACTIONS(4596), + [anon_sym_BQUOTE] = ACTIONS(4596), + [anon_sym_LBRACE] = ACTIONS(4596), + [anon_sym_PIPE] = ACTIONS(4596), + [anon_sym_TILDE] = ACTIONS(4596), + [anon_sym_LPAREN] = ACTIONS(4596), + [anon_sym_RPAREN] = ACTIONS(4596), + [sym__newline_token] = ACTIONS(4596), + [aux_sym_insert_token1] = ACTIONS(4596), + [aux_sym_insert_token2] = ACTIONS(4596), + [aux_sym_delete_token1] = ACTIONS(4596), + [aux_sym_highlight_token1] = ACTIONS(4596), + [aux_sym_edit_comment_token1] = ACTIONS(4596), + [anon_sym_CARET_LBRACK] = ACTIONS(4596), + [anon_sym_LBRACK_CARET] = ACTIONS(4596), + [sym_uri_autolink] = ACTIONS(4596), + [sym_email_autolink] = ACTIONS(4596), + [sym__whitespace_ge_2] = ACTIONS(4598), + [aux_sym__whitespace_token1] = ACTIONS(4598), + [sym__word_no_digit] = ACTIONS(4596), + [sym__digits] = ACTIONS(4596), + [anon_sym_DASH_DASH] = ACTIONS(4598), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4596), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4596), + [sym__code_span_start] = ACTIONS(4596), + [sym__emphasis_open_star] = ACTIONS(4596), + [sym__emphasis_open_underscore] = ACTIONS(4596), + [sym__strikeout_open] = ACTIONS(4596), + [sym__latex_span_start] = ACTIONS(4596), + [sym__single_quote_open] = ACTIONS(4596), + [sym__double_quote_open] = ACTIONS(4596), + [sym__superscript_open] = ACTIONS(4596), + [sym__subscript_open] = ACTIONS(4596), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4596), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4596), + [sym__cite_author_in_text] = ACTIONS(4596), + [sym__cite_suppress_author] = ACTIONS(4596), + [sym__shortcode_open_escaped] = ACTIONS(4596), + [sym__shortcode_open] = ACTIONS(4596), + [sym__unclosed_span] = ACTIONS(4596), + }, + [STATE(656)] = { + [sym__backslash_escape] = ACTIONS(4812), + [sym_entity_reference] = ACTIONS(4812), + [sym_numeric_character_reference] = ACTIONS(4812), + [anon_sym_LT] = ACTIONS(4814), + [anon_sym_GT] = ACTIONS(4812), + [anon_sym_BANG] = ACTIONS(4812), + [anon_sym_DQUOTE] = ACTIONS(4812), + [anon_sym_POUND] = ACTIONS(4812), + [anon_sym_DOLLAR] = ACTIONS(4812), + [anon_sym_PERCENT] = ACTIONS(4812), + [anon_sym_AMP] = ACTIONS(4814), + [anon_sym_SQUOTE] = ACTIONS(4812), + [anon_sym_STAR] = ACTIONS(4812), + [anon_sym_PLUS] = ACTIONS(4812), + [anon_sym_COMMA] = ACTIONS(4812), + [anon_sym_DASH] = ACTIONS(4814), + [anon_sym_DOT] = ACTIONS(4814), + [anon_sym_SLASH] = ACTIONS(4812), + [anon_sym_COLON] = ACTIONS(4812), + [anon_sym_SEMI] = ACTIONS(4812), + [anon_sym_EQ] = ACTIONS(4812), + [anon_sym_QMARK] = ACTIONS(4812), + [anon_sym_LBRACK] = ACTIONS(4814), + [anon_sym_BSLASH] = ACTIONS(4814), + [anon_sym_CARET] = ACTIONS(4814), + [anon_sym__] = ACTIONS(4812), + [anon_sym_BQUOTE] = ACTIONS(4812), + [anon_sym_LBRACE] = ACTIONS(4812), + [anon_sym_PIPE] = ACTIONS(4812), + [anon_sym_TILDE] = ACTIONS(4812), + [anon_sym_LPAREN] = ACTIONS(4812), + [anon_sym_RPAREN] = ACTIONS(4812), + [sym__newline_token] = ACTIONS(4812), + [aux_sym_insert_token1] = ACTIONS(4812), + [aux_sym_delete_token1] = ACTIONS(4812), + [aux_sym_highlight_token1] = ACTIONS(4812), + [aux_sym_edit_comment_token1] = ACTIONS(4812), + [anon_sym_CARET_LBRACK] = ACTIONS(4812), + [anon_sym_LBRACK_CARET] = ACTIONS(4812), + [sym_uri_autolink] = ACTIONS(4812), + [sym_email_autolink] = ACTIONS(4812), + [sym__whitespace_ge_2] = ACTIONS(4812), + [aux_sym__whitespace_token1] = ACTIONS(4814), + [sym__word_no_digit] = ACTIONS(4812), + [sym__digits] = ACTIONS(4812), + [anon_sym_DASH_DASH] = ACTIONS(4814), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4812), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4812), + [sym__code_span_start] = ACTIONS(4812), + [sym__emphasis_open_star] = ACTIONS(4812), + [sym__emphasis_open_underscore] = ACTIONS(4812), + [sym__strikeout_open] = ACTIONS(4812), + [sym__strikeout_close] = ACTIONS(4812), + [sym__latex_span_start] = ACTIONS(4812), + [sym__single_quote_open] = ACTIONS(4812), + [sym__double_quote_open] = ACTIONS(4812), + [sym__superscript_open] = ACTIONS(4812), + [sym__subscript_open] = ACTIONS(4812), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4812), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4812), + [sym__cite_author_in_text] = ACTIONS(4812), + [sym__cite_suppress_author] = ACTIONS(4812), + [sym__shortcode_open_escaped] = ACTIONS(4812), + [sym__shortcode_open] = ACTIONS(4812), + [sym__unclosed_span] = ACTIONS(4812), + }, + [STATE(657)] = { + [sym__backslash_escape] = ACTIONS(4816), + [sym_entity_reference] = ACTIONS(4816), + [sym_numeric_character_reference] = ACTIONS(4816), + [anon_sym_LT] = ACTIONS(4818), + [anon_sym_GT] = ACTIONS(4816), + [anon_sym_BANG] = ACTIONS(4816), + [anon_sym_DQUOTE] = ACTIONS(4816), + [anon_sym_POUND] = ACTIONS(4816), + [anon_sym_DOLLAR] = ACTIONS(4816), + [anon_sym_PERCENT] = ACTIONS(4816), + [anon_sym_AMP] = ACTIONS(4818), + [anon_sym_SQUOTE] = ACTIONS(4816), + [anon_sym_STAR] = ACTIONS(4816), + [anon_sym_PLUS] = ACTIONS(4816), + [anon_sym_COMMA] = ACTIONS(4816), + [anon_sym_DASH] = ACTIONS(4818), + [anon_sym_DOT] = ACTIONS(4818), + [anon_sym_SLASH] = ACTIONS(4816), + [anon_sym_COLON] = ACTIONS(4816), + [anon_sym_SEMI] = ACTIONS(4816), + [anon_sym_EQ] = ACTIONS(4816), + [anon_sym_QMARK] = ACTIONS(4816), + [anon_sym_LBRACK] = ACTIONS(4818), + [anon_sym_BSLASH] = ACTIONS(4818), + [anon_sym_CARET] = ACTIONS(4818), + [anon_sym__] = ACTIONS(4816), + [anon_sym_BQUOTE] = ACTIONS(4816), + [anon_sym_LBRACE] = ACTIONS(4816), + [anon_sym_PIPE] = ACTIONS(4816), + [anon_sym_TILDE] = ACTIONS(4816), + [anon_sym_LPAREN] = ACTIONS(4816), + [anon_sym_RPAREN] = ACTIONS(4816), + [sym__newline_token] = ACTIONS(4816), + [aux_sym_insert_token1] = ACTIONS(4816), + [aux_sym_delete_token1] = ACTIONS(4816), + [aux_sym_highlight_token1] = ACTIONS(4816), + [aux_sym_edit_comment_token1] = ACTIONS(4816), + [anon_sym_CARET_LBRACK] = ACTIONS(4816), + [anon_sym_LBRACK_CARET] = ACTIONS(4816), + [sym_uri_autolink] = ACTIONS(4816), + [sym_email_autolink] = ACTIONS(4816), + [sym__whitespace_ge_2] = ACTIONS(4816), + [aux_sym__whitespace_token1] = ACTIONS(4818), + [sym__word_no_digit] = ACTIONS(4816), + [sym__digits] = ACTIONS(4816), + [anon_sym_DASH_DASH] = ACTIONS(4818), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4816), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4816), + [sym__code_span_start] = ACTIONS(4816), + [sym__emphasis_open_star] = ACTIONS(4816), + [sym__emphasis_open_underscore] = ACTIONS(4816), + [sym__strikeout_open] = ACTIONS(4816), + [sym__strikeout_close] = ACTIONS(4816), + [sym__latex_span_start] = ACTIONS(4816), + [sym__single_quote_open] = ACTIONS(4816), + [sym__double_quote_open] = ACTIONS(4816), + [sym__superscript_open] = ACTIONS(4816), + [sym__subscript_open] = ACTIONS(4816), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4816), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4816), + [sym__cite_author_in_text] = ACTIONS(4816), + [sym__cite_suppress_author] = ACTIONS(4816), + [sym__shortcode_open_escaped] = ACTIONS(4816), + [sym__shortcode_open] = ACTIONS(4816), + [sym__unclosed_span] = ACTIONS(4816), + }, + [STATE(658)] = { + [sym__backslash_escape] = ACTIONS(4820), + [sym_entity_reference] = ACTIONS(4820), + [sym_numeric_character_reference] = ACTIONS(4820), + [anon_sym_LT] = ACTIONS(4822), + [anon_sym_GT] = ACTIONS(4820), + [anon_sym_BANG] = ACTIONS(4820), + [anon_sym_DQUOTE] = ACTIONS(4820), + [anon_sym_POUND] = ACTIONS(4820), + [anon_sym_DOLLAR] = ACTIONS(4820), + [anon_sym_PERCENT] = ACTIONS(4820), + [anon_sym_AMP] = ACTIONS(4822), + [anon_sym_SQUOTE] = ACTIONS(4820), + [anon_sym_STAR] = ACTIONS(4820), + [anon_sym_PLUS] = ACTIONS(4820), + [anon_sym_COMMA] = ACTIONS(4820), + [anon_sym_DASH] = ACTIONS(4822), + [anon_sym_DOT] = ACTIONS(4822), + [anon_sym_SLASH] = ACTIONS(4820), + [anon_sym_COLON] = ACTIONS(4820), + [anon_sym_SEMI] = ACTIONS(4820), + [anon_sym_EQ] = ACTIONS(4820), + [anon_sym_QMARK] = ACTIONS(4820), + [anon_sym_LBRACK] = ACTIONS(4822), + [anon_sym_BSLASH] = ACTIONS(4822), + [anon_sym_CARET] = ACTIONS(4822), + [anon_sym__] = ACTIONS(4820), + [anon_sym_BQUOTE] = ACTIONS(4820), + [anon_sym_LBRACE] = ACTIONS(4820), + [anon_sym_PIPE] = ACTIONS(4820), + [anon_sym_TILDE] = ACTIONS(4820), + [anon_sym_LPAREN] = ACTIONS(4820), + [anon_sym_RPAREN] = ACTIONS(4820), + [sym__newline_token] = ACTIONS(4820), + [aux_sym_insert_token1] = ACTIONS(4820), + [aux_sym_delete_token1] = ACTIONS(4820), + [aux_sym_highlight_token1] = ACTIONS(4820), + [aux_sym_edit_comment_token1] = ACTIONS(4820), + [anon_sym_CARET_LBRACK] = ACTIONS(4820), + [anon_sym_LBRACK_CARET] = ACTIONS(4820), + [sym_uri_autolink] = ACTIONS(4820), + [sym_email_autolink] = ACTIONS(4820), + [sym__whitespace_ge_2] = ACTIONS(4820), + [aux_sym__whitespace_token1] = ACTIONS(4822), + [sym__word_no_digit] = ACTIONS(4820), + [sym__digits] = ACTIONS(4820), + [anon_sym_DASH_DASH] = ACTIONS(4822), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4820), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4820), + [sym__code_span_start] = ACTIONS(4820), + [sym__emphasis_open_star] = ACTIONS(4820), + [sym__emphasis_open_underscore] = ACTIONS(4820), + [sym__strikeout_open] = ACTIONS(4820), + [sym__latex_span_start] = ACTIONS(4820), + [sym__single_quote_open] = ACTIONS(4820), + [sym__double_quote_open] = ACTIONS(4820), + [sym__double_quote_close] = ACTIONS(4820), + [sym__superscript_open] = ACTIONS(4820), + [sym__subscript_open] = ACTIONS(4820), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4820), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4820), + [sym__cite_author_in_text] = ACTIONS(4820), + [sym__cite_suppress_author] = ACTIONS(4820), + [sym__shortcode_open_escaped] = ACTIONS(4820), + [sym__shortcode_open] = ACTIONS(4820), + [sym__unclosed_span] = ACTIONS(4820), + }, + [STATE(659)] = { + [sym__backslash_escape] = ACTIONS(4824), + [sym_entity_reference] = ACTIONS(4824), + [sym_numeric_character_reference] = ACTIONS(4824), + [anon_sym_LT] = ACTIONS(4826), + [anon_sym_GT] = ACTIONS(4824), + [anon_sym_BANG] = ACTIONS(4824), + [anon_sym_DQUOTE] = ACTIONS(4824), + [anon_sym_POUND] = ACTIONS(4824), + [anon_sym_DOLLAR] = ACTIONS(4824), + [anon_sym_PERCENT] = ACTIONS(4824), + [anon_sym_AMP] = ACTIONS(4826), + [anon_sym_SQUOTE] = ACTIONS(4824), + [anon_sym_STAR] = ACTIONS(4824), + [anon_sym_PLUS] = ACTIONS(4824), + [anon_sym_COMMA] = ACTIONS(4824), + [anon_sym_DASH] = ACTIONS(4826), + [anon_sym_DOT] = ACTIONS(4826), + [anon_sym_SLASH] = ACTIONS(4824), + [anon_sym_COLON] = ACTIONS(4824), + [anon_sym_SEMI] = ACTIONS(4824), + [anon_sym_EQ] = ACTIONS(4824), + [anon_sym_QMARK] = ACTIONS(4824), + [anon_sym_LBRACK] = ACTIONS(4826), + [anon_sym_BSLASH] = ACTIONS(4826), + [anon_sym_CARET] = ACTIONS(4826), + [anon_sym__] = ACTIONS(4824), + [anon_sym_BQUOTE] = ACTIONS(4824), + [anon_sym_LBRACE] = ACTIONS(4824), + [anon_sym_PIPE] = ACTIONS(4824), + [anon_sym_TILDE] = ACTIONS(4824), + [anon_sym_LPAREN] = ACTIONS(4824), + [anon_sym_RPAREN] = ACTIONS(4824), + [sym__newline_token] = ACTIONS(4824), + [aux_sym_insert_token1] = ACTIONS(4824), + [aux_sym_delete_token1] = ACTIONS(4824), + [aux_sym_highlight_token1] = ACTIONS(4824), + [aux_sym_edit_comment_token1] = ACTIONS(4824), + [anon_sym_CARET_LBRACK] = ACTIONS(4824), + [anon_sym_LBRACK_CARET] = ACTIONS(4824), + [sym_uri_autolink] = ACTIONS(4824), + [sym_email_autolink] = ACTIONS(4824), + [sym__whitespace_ge_2] = ACTIONS(4824), + [aux_sym__whitespace_token1] = ACTIONS(4826), + [sym__word_no_digit] = ACTIONS(4824), + [sym__digits] = ACTIONS(4824), + [anon_sym_DASH_DASH] = ACTIONS(4826), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4824), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4824), + [sym__code_span_start] = ACTIONS(4824), + [sym__emphasis_open_star] = ACTIONS(4824), + [sym__emphasis_open_underscore] = ACTIONS(4824), + [sym__strikeout_open] = ACTIONS(4824), + [sym__latex_span_start] = ACTIONS(4824), + [sym__single_quote_open] = ACTIONS(4824), + [sym__double_quote_open] = ACTIONS(4824), + [sym__double_quote_close] = ACTIONS(4824), + [sym__superscript_open] = ACTIONS(4824), + [sym__subscript_open] = ACTIONS(4824), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4824), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4824), + [sym__cite_author_in_text] = ACTIONS(4824), + [sym__cite_suppress_author] = ACTIONS(4824), + [sym__shortcode_open_escaped] = ACTIONS(4824), + [sym__shortcode_open] = ACTIONS(4824), + [sym__unclosed_span] = ACTIONS(4824), + }, + [STATE(660)] = { + [sym__backslash_escape] = ACTIONS(4828), + [sym_entity_reference] = ACTIONS(4828), + [sym_numeric_character_reference] = ACTIONS(4828), + [anon_sym_LT] = ACTIONS(4830), + [anon_sym_GT] = ACTIONS(4828), + [anon_sym_BANG] = ACTIONS(4828), + [anon_sym_DQUOTE] = ACTIONS(4828), + [anon_sym_POUND] = ACTIONS(4828), + [anon_sym_DOLLAR] = ACTIONS(4828), + [anon_sym_PERCENT] = ACTIONS(4828), + [anon_sym_AMP] = ACTIONS(4830), + [anon_sym_SQUOTE] = ACTIONS(4828), + [anon_sym_STAR] = ACTIONS(4828), + [anon_sym_PLUS] = ACTIONS(4828), + [anon_sym_COMMA] = ACTIONS(4828), + [anon_sym_DASH] = ACTIONS(4830), + [anon_sym_DOT] = ACTIONS(4830), + [anon_sym_SLASH] = ACTIONS(4828), + [anon_sym_COLON] = ACTIONS(4828), + [anon_sym_SEMI] = ACTIONS(4828), + [anon_sym_EQ] = ACTIONS(4828), + [anon_sym_QMARK] = ACTIONS(4828), + [anon_sym_LBRACK] = ACTIONS(4830), + [anon_sym_BSLASH] = ACTIONS(4830), + [anon_sym_CARET] = ACTIONS(4830), + [anon_sym__] = ACTIONS(4828), + [anon_sym_BQUOTE] = ACTIONS(4828), + [anon_sym_LBRACE] = ACTIONS(4828), + [anon_sym_PIPE] = ACTIONS(4828), + [anon_sym_TILDE] = ACTIONS(4828), + [anon_sym_LPAREN] = ACTIONS(4828), + [anon_sym_RPAREN] = ACTIONS(4828), + [sym__newline_token] = ACTIONS(4828), + [aux_sym_insert_token1] = ACTIONS(4828), + [aux_sym_delete_token1] = ACTIONS(4828), + [aux_sym_highlight_token1] = ACTIONS(4828), + [aux_sym_edit_comment_token1] = ACTIONS(4828), + [anon_sym_CARET_LBRACK] = ACTIONS(4828), + [anon_sym_LBRACK_CARET] = ACTIONS(4828), + [sym_uri_autolink] = ACTIONS(4828), + [sym_email_autolink] = ACTIONS(4828), + [sym__whitespace_ge_2] = ACTIONS(4828), + [aux_sym__whitespace_token1] = ACTIONS(4830), + [sym__word_no_digit] = ACTIONS(4828), + [sym__digits] = ACTIONS(4828), + [anon_sym_DASH_DASH] = ACTIONS(4830), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4828), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4828), + [sym__code_span_start] = ACTIONS(4828), + [sym__emphasis_open_star] = ACTIONS(4828), + [sym__emphasis_open_underscore] = ACTIONS(4828), + [sym__strikeout_open] = ACTIONS(4828), + [sym__latex_span_start] = ACTIONS(4828), + [sym__single_quote_open] = ACTIONS(4828), + [sym__double_quote_open] = ACTIONS(4828), + [sym__double_quote_close] = ACTIONS(4828), + [sym__superscript_open] = ACTIONS(4828), + [sym__subscript_open] = ACTIONS(4828), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4828), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4828), + [sym__cite_author_in_text] = ACTIONS(4828), + [sym__cite_suppress_author] = ACTIONS(4828), + [sym__shortcode_open_escaped] = ACTIONS(4828), + [sym__shortcode_open] = ACTIONS(4828), + [sym__unclosed_span] = ACTIONS(4828), + }, + [STATE(661)] = { + [sym__backslash_escape] = ACTIONS(4832), + [sym_entity_reference] = ACTIONS(4832), + [sym_numeric_character_reference] = ACTIONS(4832), + [anon_sym_LT] = ACTIONS(4834), + [anon_sym_GT] = ACTIONS(4832), + [anon_sym_BANG] = ACTIONS(4832), + [anon_sym_DQUOTE] = ACTIONS(4832), + [anon_sym_POUND] = ACTIONS(4832), + [anon_sym_DOLLAR] = ACTIONS(4832), + [anon_sym_PERCENT] = ACTIONS(4832), + [anon_sym_AMP] = ACTIONS(4834), + [anon_sym_SQUOTE] = ACTIONS(4832), + [anon_sym_STAR] = ACTIONS(4832), + [anon_sym_PLUS] = ACTIONS(4832), + [anon_sym_COMMA] = ACTIONS(4832), + [anon_sym_DASH] = ACTIONS(4834), + [anon_sym_DOT] = ACTIONS(4834), + [anon_sym_SLASH] = ACTIONS(4832), + [anon_sym_COLON] = ACTIONS(4832), + [anon_sym_SEMI] = ACTIONS(4832), + [anon_sym_EQ] = ACTIONS(4832), + [anon_sym_QMARK] = ACTIONS(4832), + [anon_sym_LBRACK] = ACTIONS(4834), + [anon_sym_BSLASH] = ACTIONS(4834), + [anon_sym_CARET] = ACTIONS(4834), + [anon_sym__] = ACTIONS(4832), + [anon_sym_BQUOTE] = ACTIONS(4832), + [anon_sym_LBRACE] = ACTIONS(4832), + [anon_sym_PIPE] = ACTIONS(4832), + [anon_sym_TILDE] = ACTIONS(4832), + [anon_sym_LPAREN] = ACTIONS(4832), + [anon_sym_RPAREN] = ACTIONS(4832), + [sym__newline_token] = ACTIONS(4832), + [aux_sym_insert_token1] = ACTIONS(4832), + [aux_sym_delete_token1] = ACTIONS(4832), + [aux_sym_highlight_token1] = ACTIONS(4832), + [aux_sym_edit_comment_token1] = ACTIONS(4832), + [anon_sym_CARET_LBRACK] = ACTIONS(4832), + [anon_sym_LBRACK_CARET] = ACTIONS(4832), + [sym_uri_autolink] = ACTIONS(4832), + [sym_email_autolink] = ACTIONS(4832), + [sym__whitespace_ge_2] = ACTIONS(4832), + [aux_sym__whitespace_token1] = ACTIONS(4834), + [sym__word_no_digit] = ACTIONS(4832), + [sym__digits] = ACTIONS(4832), + [anon_sym_DASH_DASH] = ACTIONS(4834), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4832), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4832), + [sym__code_span_start] = ACTIONS(4832), + [sym__emphasis_open_star] = ACTIONS(4832), + [sym__emphasis_open_underscore] = ACTIONS(4832), + [sym__strikeout_open] = ACTIONS(4832), + [sym__latex_span_start] = ACTIONS(4832), + [sym__single_quote_open] = ACTIONS(4832), + [sym__double_quote_open] = ACTIONS(4832), + [sym__double_quote_close] = ACTIONS(4832), + [sym__superscript_open] = ACTIONS(4832), + [sym__subscript_open] = ACTIONS(4832), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4832), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4832), + [sym__cite_author_in_text] = ACTIONS(4832), + [sym__cite_suppress_author] = ACTIONS(4832), + [sym__shortcode_open_escaped] = ACTIONS(4832), + [sym__shortcode_open] = ACTIONS(4832), + [sym__unclosed_span] = ACTIONS(4832), + }, + [STATE(662)] = { + [sym__backslash_escape] = ACTIONS(4836), + [sym_entity_reference] = ACTIONS(4836), + [sym_numeric_character_reference] = ACTIONS(4836), + [anon_sym_LT] = ACTIONS(4838), + [anon_sym_GT] = ACTIONS(4836), + [anon_sym_BANG] = ACTIONS(4836), + [anon_sym_DQUOTE] = ACTIONS(4836), + [anon_sym_POUND] = ACTIONS(4836), + [anon_sym_DOLLAR] = ACTIONS(4836), + [anon_sym_PERCENT] = ACTIONS(4836), + [anon_sym_AMP] = ACTIONS(4838), + [anon_sym_SQUOTE] = ACTIONS(4836), + [anon_sym_STAR] = ACTIONS(4836), + [anon_sym_PLUS] = ACTIONS(4836), + [anon_sym_COMMA] = ACTIONS(4836), + [anon_sym_DASH] = ACTIONS(4838), + [anon_sym_DOT] = ACTIONS(4838), + [anon_sym_SLASH] = ACTIONS(4836), + [anon_sym_COLON] = ACTIONS(4836), + [anon_sym_SEMI] = ACTIONS(4836), + [anon_sym_EQ] = ACTIONS(4836), + [anon_sym_QMARK] = ACTIONS(4836), + [anon_sym_LBRACK] = ACTIONS(4838), + [anon_sym_BSLASH] = ACTIONS(4838), + [anon_sym_CARET] = ACTIONS(4838), + [anon_sym__] = ACTIONS(4836), + [anon_sym_BQUOTE] = ACTIONS(4836), + [anon_sym_LBRACE] = ACTIONS(4836), + [anon_sym_PIPE] = ACTIONS(4836), + [anon_sym_TILDE] = ACTIONS(4836), + [anon_sym_LPAREN] = ACTIONS(4836), + [anon_sym_RPAREN] = ACTIONS(4836), + [sym__newline_token] = ACTIONS(4836), + [aux_sym_insert_token1] = ACTIONS(4836), + [aux_sym_delete_token1] = ACTIONS(4836), + [aux_sym_highlight_token1] = ACTIONS(4836), + [aux_sym_edit_comment_token1] = ACTIONS(4836), + [anon_sym_CARET_LBRACK] = ACTIONS(4836), + [anon_sym_LBRACK_CARET] = ACTIONS(4836), + [sym_uri_autolink] = ACTIONS(4836), + [sym_email_autolink] = ACTIONS(4836), + [sym__whitespace_ge_2] = ACTIONS(4836), + [aux_sym__whitespace_token1] = ACTIONS(4838), + [sym__word_no_digit] = ACTIONS(4836), + [sym__digits] = ACTIONS(4836), + [anon_sym_DASH_DASH] = ACTIONS(4838), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4836), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4836), + [sym__code_span_start] = ACTIONS(4836), + [sym__emphasis_open_star] = ACTIONS(4836), + [sym__emphasis_open_underscore] = ACTIONS(4836), + [sym__strikeout_open] = ACTIONS(4836), + [sym__latex_span_start] = ACTIONS(4836), + [sym__single_quote_open] = ACTIONS(4836), + [sym__double_quote_open] = ACTIONS(4836), + [sym__double_quote_close] = ACTIONS(4836), + [sym__superscript_open] = ACTIONS(4836), + [sym__subscript_open] = ACTIONS(4836), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4836), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4836), + [sym__cite_author_in_text] = ACTIONS(4836), + [sym__cite_suppress_author] = ACTIONS(4836), + [sym__shortcode_open_escaped] = ACTIONS(4836), + [sym__shortcode_open] = ACTIONS(4836), + [sym__unclosed_span] = ACTIONS(4836), + }, + [STATE(663)] = { + [sym__backslash_escape] = ACTIONS(4840), + [sym_entity_reference] = ACTIONS(4840), + [sym_numeric_character_reference] = ACTIONS(4840), + [anon_sym_LT] = ACTIONS(4842), + [anon_sym_GT] = ACTIONS(4840), + [anon_sym_BANG] = ACTIONS(4840), + [anon_sym_DQUOTE] = ACTIONS(4840), + [anon_sym_POUND] = ACTIONS(4840), + [anon_sym_DOLLAR] = ACTIONS(4840), + [anon_sym_PERCENT] = ACTIONS(4840), + [anon_sym_AMP] = ACTIONS(4842), + [anon_sym_SQUOTE] = ACTIONS(4840), + [anon_sym_STAR] = ACTIONS(4840), + [anon_sym_PLUS] = ACTIONS(4840), + [anon_sym_COMMA] = ACTIONS(4840), + [anon_sym_DASH] = ACTIONS(4842), + [anon_sym_DOT] = ACTIONS(4842), + [anon_sym_SLASH] = ACTIONS(4840), + [anon_sym_COLON] = ACTIONS(4840), + [anon_sym_SEMI] = ACTIONS(4840), + [anon_sym_EQ] = ACTIONS(4840), + [anon_sym_QMARK] = ACTIONS(4840), + [anon_sym_LBRACK] = ACTIONS(4842), + [anon_sym_BSLASH] = ACTIONS(4842), + [anon_sym_CARET] = ACTIONS(4842), + [anon_sym__] = ACTIONS(4840), + [anon_sym_BQUOTE] = ACTIONS(4840), + [anon_sym_LBRACE] = ACTIONS(4840), + [anon_sym_PIPE] = ACTIONS(4840), + [anon_sym_TILDE] = ACTIONS(4840), + [anon_sym_LPAREN] = ACTIONS(4840), + [anon_sym_RPAREN] = ACTIONS(4840), + [sym__newline_token] = ACTIONS(4840), + [aux_sym_insert_token1] = ACTIONS(4840), + [aux_sym_delete_token1] = ACTIONS(4840), + [aux_sym_highlight_token1] = ACTIONS(4840), + [aux_sym_edit_comment_token1] = ACTIONS(4840), + [anon_sym_CARET_LBRACK] = ACTIONS(4840), + [anon_sym_LBRACK_CARET] = ACTIONS(4840), + [sym_uri_autolink] = ACTIONS(4840), + [sym_email_autolink] = ACTIONS(4840), + [sym__whitespace_ge_2] = ACTIONS(4840), + [aux_sym__whitespace_token1] = ACTIONS(4842), + [sym__word_no_digit] = ACTIONS(4840), + [sym__digits] = ACTIONS(4840), + [anon_sym_DASH_DASH] = ACTIONS(4842), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4840), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4840), + [sym__code_span_start] = ACTIONS(4840), + [sym__emphasis_open_star] = ACTIONS(4840), + [sym__emphasis_open_underscore] = ACTIONS(4840), + [sym__strikeout_open] = ACTIONS(4840), + [sym__strikeout_close] = ACTIONS(4840), + [sym__latex_span_start] = ACTIONS(4840), + [sym__single_quote_open] = ACTIONS(4840), + [sym__double_quote_open] = ACTIONS(4840), + [sym__superscript_open] = ACTIONS(4840), + [sym__subscript_open] = ACTIONS(4840), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4840), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4840), + [sym__cite_author_in_text] = ACTIONS(4840), + [sym__cite_suppress_author] = ACTIONS(4840), + [sym__shortcode_open_escaped] = ACTIONS(4840), + [sym__shortcode_open] = ACTIONS(4840), + [sym__unclosed_span] = ACTIONS(4840), + }, + [STATE(664)] = { + [sym__backslash_escape] = ACTIONS(4844), + [sym_entity_reference] = ACTIONS(4844), + [sym_numeric_character_reference] = ACTIONS(4844), + [anon_sym_LT] = ACTIONS(4846), + [anon_sym_GT] = ACTIONS(4844), + [anon_sym_BANG] = ACTIONS(4844), + [anon_sym_DQUOTE] = ACTIONS(4844), + [anon_sym_POUND] = ACTIONS(4844), + [anon_sym_DOLLAR] = ACTIONS(4844), + [anon_sym_PERCENT] = ACTIONS(4844), + [anon_sym_AMP] = ACTIONS(4846), + [anon_sym_SQUOTE] = ACTIONS(4844), + [anon_sym_STAR] = ACTIONS(4844), + [anon_sym_PLUS] = ACTIONS(4844), + [anon_sym_COMMA] = ACTIONS(4844), + [anon_sym_DASH] = ACTIONS(4846), + [anon_sym_DOT] = ACTIONS(4846), + [anon_sym_SLASH] = ACTIONS(4844), + [anon_sym_COLON] = ACTIONS(4844), + [anon_sym_SEMI] = ACTIONS(4844), + [anon_sym_EQ] = ACTIONS(4844), + [anon_sym_QMARK] = ACTIONS(4844), + [anon_sym_LBRACK] = ACTIONS(4846), + [anon_sym_BSLASH] = ACTIONS(4846), + [anon_sym_CARET] = ACTIONS(4846), + [anon_sym__] = ACTIONS(4844), + [anon_sym_BQUOTE] = ACTIONS(4844), + [anon_sym_LBRACE] = ACTIONS(4844), + [anon_sym_PIPE] = ACTIONS(4844), + [anon_sym_TILDE] = ACTIONS(4844), + [anon_sym_LPAREN] = ACTIONS(4844), + [anon_sym_RPAREN] = ACTIONS(4844), + [sym__newline_token] = ACTIONS(4844), + [aux_sym_insert_token1] = ACTIONS(4844), + [aux_sym_delete_token1] = ACTIONS(4844), + [aux_sym_highlight_token1] = ACTIONS(4844), + [aux_sym_edit_comment_token1] = ACTIONS(4844), + [anon_sym_CARET_LBRACK] = ACTIONS(4844), + [anon_sym_LBRACK_CARET] = ACTIONS(4844), + [sym_uri_autolink] = ACTIONS(4844), + [sym_email_autolink] = ACTIONS(4844), + [sym__whitespace_ge_2] = ACTIONS(4844), + [aux_sym__whitespace_token1] = ACTIONS(4846), + [sym__word_no_digit] = ACTIONS(4844), + [sym__digits] = ACTIONS(4844), + [anon_sym_DASH_DASH] = ACTIONS(4846), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4844), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4844), + [sym__code_span_start] = ACTIONS(4844), + [sym__emphasis_open_star] = ACTIONS(4844), + [sym__emphasis_open_underscore] = ACTIONS(4844), + [sym__strikeout_open] = ACTIONS(4844), + [sym__latex_span_start] = ACTIONS(4844), + [sym__single_quote_open] = ACTIONS(4844), + [sym__double_quote_open] = ACTIONS(4844), + [sym__double_quote_close] = ACTIONS(4844), + [sym__superscript_open] = ACTIONS(4844), + [sym__subscript_open] = ACTIONS(4844), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4844), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4844), + [sym__cite_author_in_text] = ACTIONS(4844), + [sym__cite_suppress_author] = ACTIONS(4844), + [sym__shortcode_open_escaped] = ACTIONS(4844), + [sym__shortcode_open] = ACTIONS(4844), + [sym__unclosed_span] = ACTIONS(4844), + }, + [STATE(665)] = { + [sym__backslash_escape] = ACTIONS(4848), + [sym_entity_reference] = ACTIONS(4848), + [sym_numeric_character_reference] = ACTIONS(4848), + [anon_sym_LT] = ACTIONS(4850), + [anon_sym_GT] = ACTIONS(4848), + [anon_sym_BANG] = ACTIONS(4848), + [anon_sym_DQUOTE] = ACTIONS(4848), + [anon_sym_POUND] = ACTIONS(4848), + [anon_sym_DOLLAR] = ACTIONS(4848), + [anon_sym_PERCENT] = ACTIONS(4848), + [anon_sym_AMP] = ACTIONS(4850), + [anon_sym_SQUOTE] = ACTIONS(4848), + [anon_sym_STAR] = ACTIONS(4848), + [anon_sym_PLUS] = ACTIONS(4848), + [anon_sym_COMMA] = ACTIONS(4848), + [anon_sym_DASH] = ACTIONS(4850), + [anon_sym_DOT] = ACTIONS(4850), + [anon_sym_SLASH] = ACTIONS(4848), + [anon_sym_COLON] = ACTIONS(4848), + [anon_sym_SEMI] = ACTIONS(4848), + [anon_sym_EQ] = ACTIONS(4848), + [anon_sym_QMARK] = ACTIONS(4848), + [anon_sym_LBRACK] = ACTIONS(4850), + [anon_sym_BSLASH] = ACTIONS(4850), + [anon_sym_CARET] = ACTIONS(4850), + [anon_sym__] = ACTIONS(4848), + [anon_sym_BQUOTE] = ACTIONS(4848), + [anon_sym_LBRACE] = ACTIONS(4848), + [anon_sym_PIPE] = ACTIONS(4848), + [anon_sym_TILDE] = ACTIONS(4848), + [anon_sym_LPAREN] = ACTIONS(4848), + [anon_sym_RPAREN] = ACTIONS(4848), + [sym__newline_token] = ACTIONS(4848), + [aux_sym_insert_token1] = ACTIONS(4848), + [aux_sym_delete_token1] = ACTIONS(4848), + [aux_sym_highlight_token1] = ACTIONS(4848), + [aux_sym_edit_comment_token1] = ACTIONS(4848), + [anon_sym_CARET_LBRACK] = ACTIONS(4848), + [anon_sym_LBRACK_CARET] = ACTIONS(4848), + [sym_uri_autolink] = ACTIONS(4848), + [sym_email_autolink] = ACTIONS(4848), + [sym__whitespace_ge_2] = ACTIONS(4848), + [aux_sym__whitespace_token1] = ACTIONS(4850), + [sym__word_no_digit] = ACTIONS(4848), + [sym__digits] = ACTIONS(4848), + [anon_sym_DASH_DASH] = ACTIONS(4850), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4848), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4848), + [sym__code_span_start] = ACTIONS(4848), + [sym__emphasis_open_star] = ACTIONS(4848), + [sym__emphasis_open_underscore] = ACTIONS(4848), + [sym__strikeout_open] = ACTIONS(4848), + [sym__latex_span_start] = ACTIONS(4848), + [sym__single_quote_open] = ACTIONS(4848), + [sym__double_quote_open] = ACTIONS(4848), + [sym__double_quote_close] = ACTIONS(4848), + [sym__superscript_open] = ACTIONS(4848), + [sym__subscript_open] = ACTIONS(4848), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4848), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4848), + [sym__cite_author_in_text] = ACTIONS(4848), + [sym__cite_suppress_author] = ACTIONS(4848), + [sym__shortcode_open_escaped] = ACTIONS(4848), + [sym__shortcode_open] = ACTIONS(4848), + [sym__unclosed_span] = ACTIONS(4848), + }, + [STATE(666)] = { + [sym__backslash_escape] = ACTIONS(4852), + [sym_entity_reference] = ACTIONS(4852), + [sym_numeric_character_reference] = ACTIONS(4852), + [anon_sym_LT] = ACTIONS(4854), + [anon_sym_GT] = ACTIONS(4852), + [anon_sym_BANG] = ACTIONS(4852), + [anon_sym_DQUOTE] = ACTIONS(4852), + [anon_sym_POUND] = ACTIONS(4852), + [anon_sym_DOLLAR] = ACTIONS(4852), + [anon_sym_PERCENT] = ACTIONS(4852), + [anon_sym_AMP] = ACTIONS(4854), + [anon_sym_SQUOTE] = ACTIONS(4852), + [anon_sym_STAR] = ACTIONS(4852), + [anon_sym_PLUS] = ACTIONS(4852), + [anon_sym_COMMA] = ACTIONS(4852), + [anon_sym_DASH] = ACTIONS(4854), + [anon_sym_DOT] = ACTIONS(4854), + [anon_sym_SLASH] = ACTIONS(4852), + [anon_sym_COLON] = ACTIONS(4852), + [anon_sym_SEMI] = ACTIONS(4852), + [anon_sym_EQ] = ACTIONS(4852), + [anon_sym_QMARK] = ACTIONS(4852), + [anon_sym_LBRACK] = ACTIONS(4854), + [anon_sym_BSLASH] = ACTIONS(4854), + [anon_sym_CARET] = ACTIONS(4854), + [anon_sym__] = ACTIONS(4852), + [anon_sym_BQUOTE] = ACTIONS(4852), + [anon_sym_LBRACE] = ACTIONS(4852), + [anon_sym_PIPE] = ACTIONS(4852), + [anon_sym_TILDE] = ACTIONS(4852), + [anon_sym_LPAREN] = ACTIONS(4852), + [anon_sym_RPAREN] = ACTIONS(4852), + [sym__newline_token] = ACTIONS(4852), + [aux_sym_insert_token1] = ACTIONS(4852), + [aux_sym_delete_token1] = ACTIONS(4852), + [aux_sym_highlight_token1] = ACTIONS(4852), + [aux_sym_edit_comment_token1] = ACTIONS(4852), + [anon_sym_CARET_LBRACK] = ACTIONS(4852), + [anon_sym_LBRACK_CARET] = ACTIONS(4852), + [sym_uri_autolink] = ACTIONS(4852), + [sym_email_autolink] = ACTIONS(4852), + [sym__whitespace_ge_2] = ACTIONS(4852), + [aux_sym__whitespace_token1] = ACTIONS(4854), + [sym__word_no_digit] = ACTIONS(4852), + [sym__digits] = ACTIONS(4852), + [anon_sym_DASH_DASH] = ACTIONS(4854), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4852), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4852), + [sym__code_span_start] = ACTIONS(4852), + [sym__emphasis_open_star] = ACTIONS(4852), + [sym__emphasis_open_underscore] = ACTIONS(4852), + [sym__strikeout_open] = ACTIONS(4852), + [sym__latex_span_start] = ACTIONS(4852), + [sym__single_quote_open] = ACTIONS(4852), + [sym__double_quote_open] = ACTIONS(4852), + [sym__double_quote_close] = ACTIONS(4852), + [sym__superscript_open] = ACTIONS(4852), + [sym__subscript_open] = ACTIONS(4852), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4852), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4852), + [sym__cite_author_in_text] = ACTIONS(4852), + [sym__cite_suppress_author] = ACTIONS(4852), + [sym__shortcode_open_escaped] = ACTIONS(4852), + [sym__shortcode_open] = ACTIONS(4852), + [sym__unclosed_span] = ACTIONS(4852), + }, + [STATE(667)] = { + [sym__backslash_escape] = ACTIONS(4566), + [sym_entity_reference] = ACTIONS(4566), + [sym_numeric_character_reference] = ACTIONS(4566), + [anon_sym_LT] = ACTIONS(4568), + [anon_sym_GT] = ACTIONS(4566), + [anon_sym_BANG] = ACTIONS(4566), + [anon_sym_DQUOTE] = ACTIONS(4566), + [anon_sym_POUND] = ACTIONS(4566), + [anon_sym_DOLLAR] = ACTIONS(4566), + [anon_sym_PERCENT] = ACTIONS(4566), + [anon_sym_AMP] = ACTIONS(4568), + [anon_sym_SQUOTE] = ACTIONS(4566), + [anon_sym_STAR] = ACTIONS(4566), + [anon_sym_PLUS] = ACTIONS(4566), + [anon_sym_COMMA] = ACTIONS(4566), + [anon_sym_DASH] = ACTIONS(4568), + [anon_sym_DOT] = ACTIONS(4568), + [anon_sym_SLASH] = ACTIONS(4566), + [anon_sym_COLON] = ACTIONS(4566), + [anon_sym_SEMI] = ACTIONS(4566), + [anon_sym_EQ] = ACTIONS(4566), + [anon_sym_QMARK] = ACTIONS(4566), + [anon_sym_LBRACK] = ACTIONS(4568), + [anon_sym_BSLASH] = ACTIONS(4568), + [anon_sym_CARET] = ACTIONS(4568), + [anon_sym__] = ACTIONS(4566), + [anon_sym_BQUOTE] = ACTIONS(4566), + [anon_sym_LBRACE] = ACTIONS(4566), + [anon_sym_PIPE] = ACTIONS(4566), + [anon_sym_TILDE] = ACTIONS(4566), + [anon_sym_LPAREN] = ACTIONS(4566), + [anon_sym_RPAREN] = ACTIONS(4566), + [sym__newline_token] = ACTIONS(4566), + [aux_sym_insert_token1] = ACTIONS(4566), + [aux_sym_delete_token1] = ACTIONS(4566), + [aux_sym_highlight_token1] = ACTIONS(4566), + [aux_sym_edit_comment_token1] = ACTIONS(4566), + [anon_sym_CARET_LBRACK] = ACTIONS(4566), + [anon_sym_LBRACK_CARET] = ACTIONS(4566), + [sym_uri_autolink] = ACTIONS(4566), + [sym_email_autolink] = ACTIONS(4566), + [sym__whitespace_ge_2] = ACTIONS(4566), + [aux_sym__whitespace_token1] = ACTIONS(4568), + [sym__word_no_digit] = ACTIONS(4566), + [sym__digits] = ACTIONS(4566), + [anon_sym_DASH_DASH] = ACTIONS(4568), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4566), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4566), + [sym__code_span_start] = ACTIONS(4566), + [sym__emphasis_open_star] = ACTIONS(4566), + [sym__emphasis_open_underscore] = ACTIONS(4566), + [sym__strikeout_open] = ACTIONS(4566), + [sym__latex_span_start] = ACTIONS(4566), + [sym__single_quote_open] = ACTIONS(4566), + [sym__double_quote_open] = ACTIONS(4566), + [sym__double_quote_close] = ACTIONS(4566), + [sym__superscript_open] = ACTIONS(4566), + [sym__subscript_open] = ACTIONS(4566), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4566), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4566), + [sym__cite_author_in_text] = ACTIONS(4566), + [sym__cite_suppress_author] = ACTIONS(4566), + [sym__shortcode_open_escaped] = ACTIONS(4566), + [sym__shortcode_open] = ACTIONS(4566), + [sym__unclosed_span] = ACTIONS(4566), + }, + [STATE(668)] = { + [sym__backslash_escape] = ACTIONS(4848), + [sym_entity_reference] = ACTIONS(4848), + [sym_numeric_character_reference] = ACTIONS(4848), + [anon_sym_LT] = ACTIONS(4850), + [anon_sym_GT] = ACTIONS(4848), + [anon_sym_BANG] = ACTIONS(4848), + [anon_sym_DQUOTE] = ACTIONS(4848), + [anon_sym_POUND] = ACTIONS(4848), + [anon_sym_DOLLAR] = ACTIONS(4848), + [anon_sym_PERCENT] = ACTIONS(4848), + [anon_sym_AMP] = ACTIONS(4850), + [anon_sym_SQUOTE] = ACTIONS(4848), + [anon_sym_STAR] = ACTIONS(4848), + [anon_sym_PLUS] = ACTIONS(4848), + [anon_sym_COMMA] = ACTIONS(4848), + [anon_sym_DASH] = ACTIONS(4850), + [anon_sym_DOT] = ACTIONS(4850), + [anon_sym_SLASH] = ACTIONS(4848), + [anon_sym_COLON] = ACTIONS(4848), + [anon_sym_SEMI] = ACTIONS(4848), + [anon_sym_EQ] = ACTIONS(4848), + [anon_sym_QMARK] = ACTIONS(4848), + [anon_sym_LBRACK] = ACTIONS(4850), + [anon_sym_BSLASH] = ACTIONS(4850), + [anon_sym_CARET] = ACTIONS(4850), + [anon_sym__] = ACTIONS(4848), + [anon_sym_BQUOTE] = ACTIONS(4848), + [anon_sym_LBRACE] = ACTIONS(4848), + [anon_sym_PIPE] = ACTIONS(4848), + [anon_sym_TILDE] = ACTIONS(4848), + [anon_sym_LPAREN] = ACTIONS(4848), + [anon_sym_RPAREN] = ACTIONS(4848), + [sym__newline_token] = ACTIONS(4848), + [aux_sym_insert_token1] = ACTIONS(4848), + [aux_sym_delete_token1] = ACTIONS(4848), + [aux_sym_highlight_token1] = ACTIONS(4848), + [aux_sym_edit_comment_token1] = ACTIONS(4848), + [anon_sym_CARET_LBRACK] = ACTIONS(4848), + [anon_sym_LBRACK_CARET] = ACTIONS(4848), + [sym_uri_autolink] = ACTIONS(4848), + [sym_email_autolink] = ACTIONS(4848), + [sym__whitespace_ge_2] = ACTIONS(4848), + [aux_sym__whitespace_token1] = ACTIONS(4850), + [sym__word_no_digit] = ACTIONS(4848), + [sym__digits] = ACTIONS(4848), + [anon_sym_DASH_DASH] = ACTIONS(4850), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4848), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4848), + [sym__code_span_start] = ACTIONS(4848), + [sym__emphasis_open_star] = ACTIONS(4848), + [sym__emphasis_open_underscore] = ACTIONS(4848), + [sym__emphasis_close_underscore] = ACTIONS(4848), + [sym__strikeout_open] = ACTIONS(4848), + [sym__latex_span_start] = ACTIONS(4848), + [sym__single_quote_open] = ACTIONS(4848), + [sym__double_quote_open] = ACTIONS(4848), + [sym__superscript_open] = ACTIONS(4848), + [sym__subscript_open] = ACTIONS(4848), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4848), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4848), + [sym__cite_author_in_text] = ACTIONS(4848), + [sym__cite_suppress_author] = ACTIONS(4848), + [sym__shortcode_open_escaped] = ACTIONS(4848), + [sym__shortcode_open] = ACTIONS(4848), + [sym__unclosed_span] = ACTIONS(4848), + }, + [STATE(669)] = { + [sym__backslash_escape] = ACTIONS(4572), + [sym_entity_reference] = ACTIONS(4572), + [sym_numeric_character_reference] = ACTIONS(4572), + [anon_sym_LT] = ACTIONS(4574), + [anon_sym_GT] = ACTIONS(4572), + [anon_sym_BANG] = ACTIONS(4572), + [anon_sym_DQUOTE] = ACTIONS(4572), + [anon_sym_POUND] = ACTIONS(4572), + [anon_sym_DOLLAR] = ACTIONS(4572), + [anon_sym_PERCENT] = ACTIONS(4572), + [anon_sym_AMP] = ACTIONS(4574), + [anon_sym_SQUOTE] = ACTIONS(4572), + [anon_sym_STAR] = ACTIONS(4572), + [anon_sym_PLUS] = ACTIONS(4572), + [anon_sym_COMMA] = ACTIONS(4572), + [anon_sym_DASH] = ACTIONS(4574), + [anon_sym_DOT] = ACTIONS(4574), + [anon_sym_SLASH] = ACTIONS(4572), + [anon_sym_COLON] = ACTIONS(4572), + [anon_sym_SEMI] = ACTIONS(4572), + [anon_sym_EQ] = ACTIONS(4572), + [anon_sym_QMARK] = ACTIONS(4572), + [anon_sym_LBRACK] = ACTIONS(4574), + [anon_sym_BSLASH] = ACTIONS(4574), + [anon_sym_CARET] = ACTIONS(4574), + [anon_sym__] = ACTIONS(4572), + [anon_sym_BQUOTE] = ACTIONS(4572), + [anon_sym_LBRACE] = ACTIONS(4572), + [anon_sym_PIPE] = ACTIONS(4572), + [anon_sym_TILDE] = ACTIONS(4572), + [anon_sym_LPAREN] = ACTIONS(4572), + [anon_sym_RPAREN] = ACTIONS(4572), + [sym__newline_token] = ACTIONS(4572), + [aux_sym_insert_token1] = ACTIONS(4572), + [aux_sym_delete_token1] = ACTIONS(4572), + [aux_sym_highlight_token1] = ACTIONS(4572), + [aux_sym_edit_comment_token1] = ACTIONS(4572), + [anon_sym_CARET_LBRACK] = ACTIONS(4572), + [anon_sym_LBRACK_CARET] = ACTIONS(4572), + [sym_uri_autolink] = ACTIONS(4572), + [sym_email_autolink] = ACTIONS(4572), + [sym__whitespace_ge_2] = ACTIONS(4572), + [aux_sym__whitespace_token1] = ACTIONS(4574), + [sym__word_no_digit] = ACTIONS(4572), + [sym__digits] = ACTIONS(4572), + [anon_sym_DASH_DASH] = ACTIONS(4574), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4572), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4572), + [sym__code_span_start] = ACTIONS(4572), + [sym__emphasis_open_star] = ACTIONS(4572), + [sym__emphasis_open_underscore] = ACTIONS(4572), + [sym__strikeout_open] = ACTIONS(4572), + [sym__latex_span_start] = ACTIONS(4572), + [sym__single_quote_open] = ACTIONS(4572), + [sym__double_quote_open] = ACTIONS(4572), + [sym__double_quote_close] = ACTIONS(4572), + [sym__superscript_open] = ACTIONS(4572), + [sym__subscript_open] = ACTIONS(4572), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4572), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4572), + [sym__cite_author_in_text] = ACTIONS(4572), + [sym__cite_suppress_author] = ACTIONS(4572), + [sym__shortcode_open_escaped] = ACTIONS(4572), + [sym__shortcode_open] = ACTIONS(4572), + [sym__unclosed_span] = ACTIONS(4572), + }, + [STATE(670)] = { + [sym__backslash_escape] = ACTIONS(4856), + [sym_entity_reference] = ACTIONS(4856), + [sym_numeric_character_reference] = ACTIONS(4856), + [anon_sym_LT] = ACTIONS(4858), + [anon_sym_GT] = ACTIONS(4856), + [anon_sym_BANG] = ACTIONS(4856), + [anon_sym_DQUOTE] = ACTIONS(4856), + [anon_sym_POUND] = ACTIONS(4856), + [anon_sym_DOLLAR] = ACTIONS(4856), + [anon_sym_PERCENT] = ACTIONS(4856), + [anon_sym_AMP] = ACTIONS(4858), + [anon_sym_SQUOTE] = ACTIONS(4856), + [anon_sym_STAR] = ACTIONS(4856), + [anon_sym_PLUS] = ACTIONS(4856), + [anon_sym_COMMA] = ACTIONS(4856), + [anon_sym_DASH] = ACTIONS(4858), + [anon_sym_DOT] = ACTIONS(4858), + [anon_sym_SLASH] = ACTIONS(4856), + [anon_sym_COLON] = ACTIONS(4856), + [anon_sym_SEMI] = ACTIONS(4856), + [anon_sym_EQ] = ACTIONS(4856), + [anon_sym_QMARK] = ACTIONS(4856), + [anon_sym_LBRACK] = ACTIONS(4858), + [anon_sym_BSLASH] = ACTIONS(4858), + [anon_sym_CARET] = ACTIONS(4858), + [anon_sym__] = ACTIONS(4856), + [anon_sym_BQUOTE] = ACTIONS(4856), + [anon_sym_LBRACE] = ACTIONS(4856), + [anon_sym_PIPE] = ACTIONS(4856), + [anon_sym_TILDE] = ACTIONS(4856), + [anon_sym_LPAREN] = ACTIONS(4856), + [anon_sym_RPAREN] = ACTIONS(4856), + [sym__newline_token] = ACTIONS(4856), + [aux_sym_insert_token1] = ACTIONS(4856), + [aux_sym_delete_token1] = ACTIONS(4856), + [aux_sym_highlight_token1] = ACTIONS(4856), + [aux_sym_edit_comment_token1] = ACTIONS(4856), + [anon_sym_CARET_LBRACK] = ACTIONS(4856), + [anon_sym_LBRACK_CARET] = ACTIONS(4856), + [sym_uri_autolink] = ACTIONS(4856), + [sym_email_autolink] = ACTIONS(4856), + [sym__whitespace_ge_2] = ACTIONS(4856), + [aux_sym__whitespace_token1] = ACTIONS(4858), + [sym__word_no_digit] = ACTIONS(4856), + [sym__digits] = ACTIONS(4856), + [anon_sym_DASH_DASH] = ACTIONS(4858), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4856), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4856), + [sym__code_span_start] = ACTIONS(4856), + [sym__emphasis_open_star] = ACTIONS(4856), + [sym__emphasis_open_underscore] = ACTIONS(4856), + [sym__emphasis_close_underscore] = ACTIONS(4856), + [sym__strikeout_open] = ACTIONS(4856), + [sym__latex_span_start] = ACTIONS(4856), + [sym__single_quote_open] = ACTIONS(4856), + [sym__double_quote_open] = ACTIONS(4856), + [sym__superscript_open] = ACTIONS(4856), + [sym__subscript_open] = ACTIONS(4856), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4856), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4856), + [sym__cite_author_in_text] = ACTIONS(4856), + [sym__cite_suppress_author] = ACTIONS(4856), + [sym__shortcode_open_escaped] = ACTIONS(4856), + [sym__shortcode_open] = ACTIONS(4856), + [sym__unclosed_span] = ACTIONS(4856), + }, + [STATE(671)] = { + [sym__backslash_escape] = ACTIONS(4860), + [sym_entity_reference] = ACTIONS(4860), + [sym_numeric_character_reference] = ACTIONS(4860), + [anon_sym_LT] = ACTIONS(4862), + [anon_sym_GT] = ACTIONS(4860), + [anon_sym_BANG] = ACTIONS(4860), + [anon_sym_DQUOTE] = ACTIONS(4860), + [anon_sym_POUND] = ACTIONS(4860), + [anon_sym_DOLLAR] = ACTIONS(4860), + [anon_sym_PERCENT] = ACTIONS(4860), + [anon_sym_AMP] = ACTIONS(4862), + [anon_sym_SQUOTE] = ACTIONS(4860), + [anon_sym_STAR] = ACTIONS(4860), + [anon_sym_PLUS] = ACTIONS(4860), + [anon_sym_COMMA] = ACTIONS(4860), + [anon_sym_DASH] = ACTIONS(4862), + [anon_sym_DOT] = ACTIONS(4862), + [anon_sym_SLASH] = ACTIONS(4860), + [anon_sym_COLON] = ACTIONS(4860), + [anon_sym_SEMI] = ACTIONS(4860), + [anon_sym_EQ] = ACTIONS(4860), + [anon_sym_QMARK] = ACTIONS(4860), + [anon_sym_LBRACK] = ACTIONS(4862), + [anon_sym_BSLASH] = ACTIONS(4862), + [anon_sym_CARET] = ACTIONS(4862), + [anon_sym__] = ACTIONS(4860), + [anon_sym_BQUOTE] = ACTIONS(4860), + [anon_sym_LBRACE] = ACTIONS(4860), + [anon_sym_PIPE] = ACTIONS(4860), + [anon_sym_TILDE] = ACTIONS(4860), + [anon_sym_LPAREN] = ACTIONS(4860), + [anon_sym_RPAREN] = ACTIONS(4860), + [sym__newline_token] = ACTIONS(4860), + [aux_sym_insert_token1] = ACTIONS(4860), + [aux_sym_delete_token1] = ACTIONS(4860), + [aux_sym_highlight_token1] = ACTIONS(4860), + [aux_sym_edit_comment_token1] = ACTIONS(4860), + [anon_sym_CARET_LBRACK] = ACTIONS(4860), + [anon_sym_LBRACK_CARET] = ACTIONS(4860), + [sym_uri_autolink] = ACTIONS(4860), + [sym_email_autolink] = ACTIONS(4860), + [sym__whitespace_ge_2] = ACTIONS(4860), + [aux_sym__whitespace_token1] = ACTIONS(4862), + [sym__word_no_digit] = ACTIONS(4860), + [sym__digits] = ACTIONS(4860), + [anon_sym_DASH_DASH] = ACTIONS(4862), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4860), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4860), + [sym__code_span_start] = ACTIONS(4860), + [sym__emphasis_open_star] = ACTIONS(4860), + [sym__emphasis_open_underscore] = ACTIONS(4860), + [sym__strikeout_open] = ACTIONS(4860), + [sym__latex_span_start] = ACTIONS(4860), + [sym__single_quote_open] = ACTIONS(4860), + [sym__double_quote_open] = ACTIONS(4860), + [sym__double_quote_close] = ACTIONS(4860), + [sym__superscript_open] = ACTIONS(4860), + [sym__subscript_open] = ACTIONS(4860), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4860), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4860), + [sym__cite_author_in_text] = ACTIONS(4860), + [sym__cite_suppress_author] = ACTIONS(4860), + [sym__shortcode_open_escaped] = ACTIONS(4860), + [sym__shortcode_open] = ACTIONS(4860), + [sym__unclosed_span] = ACTIONS(4860), + }, + [STATE(672)] = { + [sym__backslash_escape] = ACTIONS(4864), + [sym_entity_reference] = ACTIONS(4864), + [sym_numeric_character_reference] = ACTIONS(4864), + [anon_sym_LT] = ACTIONS(4866), + [anon_sym_GT] = ACTIONS(4864), + [anon_sym_BANG] = ACTIONS(4864), + [anon_sym_DQUOTE] = ACTIONS(4864), + [anon_sym_POUND] = ACTIONS(4864), + [anon_sym_DOLLAR] = ACTIONS(4864), + [anon_sym_PERCENT] = ACTIONS(4864), + [anon_sym_AMP] = ACTIONS(4866), + [anon_sym_SQUOTE] = ACTIONS(4864), + [anon_sym_STAR] = ACTIONS(4864), + [anon_sym_PLUS] = ACTIONS(4864), + [anon_sym_COMMA] = ACTIONS(4864), + [anon_sym_DASH] = ACTIONS(4866), + [anon_sym_DOT] = ACTIONS(4866), + [anon_sym_SLASH] = ACTIONS(4864), + [anon_sym_COLON] = ACTIONS(4864), + [anon_sym_SEMI] = ACTIONS(4864), + [anon_sym_EQ] = ACTIONS(4864), + [anon_sym_QMARK] = ACTIONS(4864), + [anon_sym_LBRACK] = ACTIONS(4866), + [anon_sym_BSLASH] = ACTIONS(4866), + [anon_sym_CARET] = ACTIONS(4866), + [anon_sym__] = ACTIONS(4864), + [anon_sym_BQUOTE] = ACTIONS(4864), + [anon_sym_LBRACE] = ACTIONS(4864), + [anon_sym_PIPE] = ACTIONS(4864), + [anon_sym_TILDE] = ACTIONS(4864), + [anon_sym_LPAREN] = ACTIONS(4864), + [anon_sym_RPAREN] = ACTIONS(4864), + [sym__newline_token] = ACTIONS(4864), + [aux_sym_insert_token1] = ACTIONS(4864), + [aux_sym_delete_token1] = ACTIONS(4864), + [aux_sym_highlight_token1] = ACTIONS(4864), + [aux_sym_edit_comment_token1] = ACTIONS(4864), + [anon_sym_CARET_LBRACK] = ACTIONS(4864), + [anon_sym_LBRACK_CARET] = ACTIONS(4864), + [sym_uri_autolink] = ACTIONS(4864), + [sym_email_autolink] = ACTIONS(4864), + [sym__whitespace_ge_2] = ACTIONS(4864), + [aux_sym__whitespace_token1] = ACTIONS(4866), + [sym__word_no_digit] = ACTIONS(4864), + [sym__digits] = ACTIONS(4864), + [anon_sym_DASH_DASH] = ACTIONS(4866), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4864), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4864), + [sym__code_span_start] = ACTIONS(4864), + [sym__emphasis_open_star] = ACTIONS(4864), + [sym__emphasis_open_underscore] = ACTIONS(4864), + [sym__strikeout_open] = ACTIONS(4864), + [sym__latex_span_start] = ACTIONS(4864), + [sym__single_quote_open] = ACTIONS(4864), + [sym__double_quote_open] = ACTIONS(4864), + [sym__double_quote_close] = ACTIONS(4864), + [sym__superscript_open] = ACTIONS(4864), + [sym__subscript_open] = ACTIONS(4864), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4864), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4864), + [sym__cite_author_in_text] = ACTIONS(4864), + [sym__cite_suppress_author] = ACTIONS(4864), + [sym__shortcode_open_escaped] = ACTIONS(4864), + [sym__shortcode_open] = ACTIONS(4864), + [sym__unclosed_span] = ACTIONS(4864), + }, + [STATE(673)] = { + [sym__backslash_escape] = ACTIONS(4868), + [sym_entity_reference] = ACTIONS(4868), + [sym_numeric_character_reference] = ACTIONS(4868), + [anon_sym_LT] = ACTIONS(4870), + [anon_sym_GT] = ACTIONS(4868), + [anon_sym_BANG] = ACTIONS(4868), + [anon_sym_DQUOTE] = ACTIONS(4868), + [anon_sym_POUND] = ACTIONS(4868), + [anon_sym_DOLLAR] = ACTIONS(4868), + [anon_sym_PERCENT] = ACTIONS(4868), + [anon_sym_AMP] = ACTIONS(4870), + [anon_sym_SQUOTE] = ACTIONS(4868), + [anon_sym_STAR] = ACTIONS(4868), + [anon_sym_PLUS] = ACTIONS(4868), + [anon_sym_COMMA] = ACTIONS(4868), + [anon_sym_DASH] = ACTIONS(4870), + [anon_sym_DOT] = ACTIONS(4870), + [anon_sym_SLASH] = ACTIONS(4868), + [anon_sym_COLON] = ACTIONS(4868), + [anon_sym_SEMI] = ACTIONS(4868), + [anon_sym_EQ] = ACTIONS(4868), + [anon_sym_QMARK] = ACTIONS(4868), + [anon_sym_LBRACK] = ACTIONS(4870), + [anon_sym_BSLASH] = ACTIONS(4870), + [anon_sym_CARET] = ACTIONS(4870), + [anon_sym__] = ACTIONS(4868), + [anon_sym_BQUOTE] = ACTIONS(4868), + [anon_sym_LBRACE] = ACTIONS(4868), + [anon_sym_PIPE] = ACTIONS(4868), + [anon_sym_TILDE] = ACTIONS(4868), + [anon_sym_LPAREN] = ACTIONS(4868), + [anon_sym_RPAREN] = ACTIONS(4868), + [sym__newline_token] = ACTIONS(4868), + [aux_sym_insert_token1] = ACTIONS(4868), + [aux_sym_delete_token1] = ACTIONS(4868), + [aux_sym_highlight_token1] = ACTIONS(4868), + [aux_sym_edit_comment_token1] = ACTIONS(4868), + [anon_sym_CARET_LBRACK] = ACTIONS(4868), + [anon_sym_LBRACK_CARET] = ACTIONS(4868), + [sym_uri_autolink] = ACTIONS(4868), + [sym_email_autolink] = ACTIONS(4868), + [sym__whitespace_ge_2] = ACTIONS(4868), + [aux_sym__whitespace_token1] = ACTIONS(4870), + [sym__word_no_digit] = ACTIONS(4868), + [sym__digits] = ACTIONS(4868), + [anon_sym_DASH_DASH] = ACTIONS(4870), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4868), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4868), + [sym__code_span_start] = ACTIONS(4868), + [sym__emphasis_open_star] = ACTIONS(4868), + [sym__emphasis_open_underscore] = ACTIONS(4868), + [sym__strikeout_open] = ACTIONS(4868), + [sym__latex_span_start] = ACTIONS(4868), + [sym__single_quote_open] = ACTIONS(4868), + [sym__double_quote_open] = ACTIONS(4868), + [sym__double_quote_close] = ACTIONS(4868), + [sym__superscript_open] = ACTIONS(4868), + [sym__subscript_open] = ACTIONS(4868), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4868), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4868), + [sym__cite_author_in_text] = ACTIONS(4868), + [sym__cite_suppress_author] = ACTIONS(4868), + [sym__shortcode_open_escaped] = ACTIONS(4868), + [sym__shortcode_open] = ACTIONS(4868), + [sym__unclosed_span] = ACTIONS(4868), + }, + [STATE(674)] = { + [sym__backslash_escape] = ACTIONS(4872), + [sym_entity_reference] = ACTIONS(4872), + [sym_numeric_character_reference] = ACTIONS(4872), + [anon_sym_LT] = ACTIONS(4874), + [anon_sym_GT] = ACTIONS(4872), + [anon_sym_BANG] = ACTIONS(4872), + [anon_sym_DQUOTE] = ACTIONS(4872), + [anon_sym_POUND] = ACTIONS(4872), + [anon_sym_DOLLAR] = ACTIONS(4872), + [anon_sym_PERCENT] = ACTIONS(4872), + [anon_sym_AMP] = ACTIONS(4874), + [anon_sym_SQUOTE] = ACTIONS(4872), + [anon_sym_STAR] = ACTIONS(4872), + [anon_sym_PLUS] = ACTIONS(4872), + [anon_sym_COMMA] = ACTIONS(4872), + [anon_sym_DASH] = ACTIONS(4874), + [anon_sym_DOT] = ACTIONS(4874), + [anon_sym_SLASH] = ACTIONS(4872), + [anon_sym_COLON] = ACTIONS(4872), + [anon_sym_SEMI] = ACTIONS(4872), + [anon_sym_EQ] = ACTIONS(4872), + [anon_sym_QMARK] = ACTIONS(4872), + [anon_sym_LBRACK] = ACTIONS(4874), + [anon_sym_BSLASH] = ACTIONS(4874), + [anon_sym_CARET] = ACTIONS(4874), + [anon_sym__] = ACTIONS(4872), + [anon_sym_BQUOTE] = ACTIONS(4872), + [anon_sym_LBRACE] = ACTIONS(4872), + [anon_sym_PIPE] = ACTIONS(4872), + [anon_sym_TILDE] = ACTIONS(4872), + [anon_sym_LPAREN] = ACTIONS(4872), + [anon_sym_RPAREN] = ACTIONS(4872), + [sym__newline_token] = ACTIONS(4872), + [aux_sym_insert_token1] = ACTIONS(4872), + [aux_sym_delete_token1] = ACTIONS(4872), + [aux_sym_highlight_token1] = ACTIONS(4872), + [aux_sym_edit_comment_token1] = ACTIONS(4872), + [anon_sym_CARET_LBRACK] = ACTIONS(4872), + [anon_sym_LBRACK_CARET] = ACTIONS(4872), + [sym_uri_autolink] = ACTIONS(4872), + [sym_email_autolink] = ACTIONS(4872), + [sym__whitespace_ge_2] = ACTIONS(4872), + [aux_sym__whitespace_token1] = ACTIONS(4874), + [sym__word_no_digit] = ACTIONS(4872), + [sym__digits] = ACTIONS(4872), + [anon_sym_DASH_DASH] = ACTIONS(4874), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4872), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4872), + [sym__code_span_start] = ACTIONS(4872), + [sym__emphasis_open_star] = ACTIONS(4872), + [sym__emphasis_open_underscore] = ACTIONS(4872), + [sym__strikeout_open] = ACTIONS(4872), + [sym__latex_span_start] = ACTIONS(4872), + [sym__single_quote_open] = ACTIONS(4872), + [sym__double_quote_open] = ACTIONS(4872), + [sym__double_quote_close] = ACTIONS(4872), + [sym__superscript_open] = ACTIONS(4872), + [sym__subscript_open] = ACTIONS(4872), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4872), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4872), + [sym__cite_author_in_text] = ACTIONS(4872), + [sym__cite_suppress_author] = ACTIONS(4872), + [sym__shortcode_open_escaped] = ACTIONS(4872), + [sym__shortcode_open] = ACTIONS(4872), + [sym__unclosed_span] = ACTIONS(4872), + }, + [STATE(675)] = { + [sym__backslash_escape] = ACTIONS(4876), + [sym_entity_reference] = ACTIONS(4876), + [sym_numeric_character_reference] = ACTIONS(4876), + [anon_sym_LT] = ACTIONS(4878), + [anon_sym_GT] = ACTIONS(4876), + [anon_sym_BANG] = ACTIONS(4876), + [anon_sym_DQUOTE] = ACTIONS(4876), + [anon_sym_POUND] = ACTIONS(4876), + [anon_sym_DOLLAR] = ACTIONS(4876), + [anon_sym_PERCENT] = ACTIONS(4876), + [anon_sym_AMP] = ACTIONS(4878), + [anon_sym_SQUOTE] = ACTIONS(4876), + [anon_sym_STAR] = ACTIONS(4876), + [anon_sym_PLUS] = ACTIONS(4876), + [anon_sym_COMMA] = ACTIONS(4876), + [anon_sym_DASH] = ACTIONS(4878), + [anon_sym_DOT] = ACTIONS(4878), + [anon_sym_SLASH] = ACTIONS(4876), + [anon_sym_COLON] = ACTIONS(4876), + [anon_sym_SEMI] = ACTIONS(4876), + [anon_sym_EQ] = ACTIONS(4876), + [anon_sym_QMARK] = ACTIONS(4876), + [anon_sym_LBRACK] = ACTIONS(4878), + [anon_sym_BSLASH] = ACTIONS(4878), + [anon_sym_CARET] = ACTIONS(4878), + [anon_sym__] = ACTIONS(4876), + [anon_sym_BQUOTE] = ACTIONS(4876), + [anon_sym_LBRACE] = ACTIONS(4876), + [anon_sym_PIPE] = ACTIONS(4876), + [anon_sym_TILDE] = ACTIONS(4876), + [anon_sym_LPAREN] = ACTIONS(4876), + [anon_sym_RPAREN] = ACTIONS(4876), + [sym__newline_token] = ACTIONS(4876), + [aux_sym_insert_token1] = ACTIONS(4876), + [aux_sym_delete_token1] = ACTIONS(4876), + [aux_sym_highlight_token1] = ACTIONS(4876), + [aux_sym_edit_comment_token1] = ACTIONS(4876), + [anon_sym_CARET_LBRACK] = ACTIONS(4876), + [anon_sym_LBRACK_CARET] = ACTIONS(4876), + [sym_uri_autolink] = ACTIONS(4876), + [sym_email_autolink] = ACTIONS(4876), + [sym__whitespace_ge_2] = ACTIONS(4876), + [aux_sym__whitespace_token1] = ACTIONS(4878), + [sym__word_no_digit] = ACTIONS(4876), + [sym__digits] = ACTIONS(4876), + [anon_sym_DASH_DASH] = ACTIONS(4878), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4876), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4876), + [sym__code_span_start] = ACTIONS(4876), + [sym__emphasis_open_star] = ACTIONS(4876), + [sym__emphasis_open_underscore] = ACTIONS(4876), + [sym__strikeout_open] = ACTIONS(4876), + [sym__latex_span_start] = ACTIONS(4876), + [sym__single_quote_open] = ACTIONS(4876), + [sym__double_quote_open] = ACTIONS(4876), + [sym__double_quote_close] = ACTIONS(4876), + [sym__superscript_open] = ACTIONS(4876), + [sym__subscript_open] = ACTIONS(4876), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4876), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4876), + [sym__cite_author_in_text] = ACTIONS(4876), + [sym__cite_suppress_author] = ACTIONS(4876), + [sym__shortcode_open_escaped] = ACTIONS(4876), + [sym__shortcode_open] = ACTIONS(4876), + [sym__unclosed_span] = ACTIONS(4876), + }, + [STATE(676)] = { + [sym__backslash_escape] = ACTIONS(4588), + [sym_entity_reference] = ACTIONS(4588), + [sym_numeric_character_reference] = ACTIONS(4588), + [anon_sym_LT] = ACTIONS(4590), + [anon_sym_GT] = ACTIONS(4588), + [anon_sym_BANG] = ACTIONS(4588), + [anon_sym_DQUOTE] = ACTIONS(4588), + [anon_sym_POUND] = ACTIONS(4588), + [anon_sym_DOLLAR] = ACTIONS(4588), + [anon_sym_PERCENT] = ACTIONS(4588), + [anon_sym_AMP] = ACTIONS(4590), + [anon_sym_SQUOTE] = ACTIONS(4588), + [anon_sym_STAR] = ACTIONS(4588), + [anon_sym_PLUS] = ACTIONS(4588), + [anon_sym_COMMA] = ACTIONS(4588), + [anon_sym_DASH] = ACTIONS(4590), + [anon_sym_DOT] = ACTIONS(4590), + [anon_sym_SLASH] = ACTIONS(4588), + [anon_sym_COLON] = ACTIONS(4588), + [anon_sym_SEMI] = ACTIONS(4588), + [anon_sym_EQ] = ACTIONS(4588), + [anon_sym_QMARK] = ACTIONS(4588), + [anon_sym_LBRACK] = ACTIONS(4590), + [anon_sym_BSLASH] = ACTIONS(4590), + [anon_sym_CARET] = ACTIONS(4590), + [anon_sym__] = ACTIONS(4588), + [anon_sym_BQUOTE] = ACTIONS(4588), + [anon_sym_LBRACE] = ACTIONS(4588), + [anon_sym_PIPE] = ACTIONS(4588), + [anon_sym_TILDE] = ACTIONS(4588), + [anon_sym_LPAREN] = ACTIONS(4588), + [anon_sym_RPAREN] = ACTIONS(4588), + [sym__newline_token] = ACTIONS(4588), + [aux_sym_insert_token1] = ACTIONS(4588), + [aux_sym_delete_token1] = ACTIONS(4588), + [aux_sym_highlight_token1] = ACTIONS(4588), + [aux_sym_edit_comment_token1] = ACTIONS(4588), + [anon_sym_CARET_LBRACK] = ACTIONS(4588), + [anon_sym_LBRACK_CARET] = ACTIONS(4588), + [sym_uri_autolink] = ACTIONS(4588), + [sym_email_autolink] = ACTIONS(4588), + [sym__whitespace_ge_2] = ACTIONS(4588), + [aux_sym__whitespace_token1] = ACTIONS(4590), + [sym__word_no_digit] = ACTIONS(4588), + [sym__digits] = ACTIONS(4588), + [anon_sym_DASH_DASH] = ACTIONS(4590), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4588), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4588), + [sym__code_span_start] = ACTIONS(4588), + [sym__emphasis_open_star] = ACTIONS(4588), + [sym__emphasis_open_underscore] = ACTIONS(4588), + [sym__strikeout_open] = ACTIONS(4588), + [sym__latex_span_start] = ACTIONS(4588), + [sym__single_quote_open] = ACTIONS(4588), + [sym__double_quote_open] = ACTIONS(4588), + [sym__double_quote_close] = ACTIONS(4588), + [sym__superscript_open] = ACTIONS(4588), + [sym__subscript_open] = ACTIONS(4588), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4588), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4588), + [sym__cite_author_in_text] = ACTIONS(4588), + [sym__cite_suppress_author] = ACTIONS(4588), + [sym__shortcode_open_escaped] = ACTIONS(4588), + [sym__shortcode_open] = ACTIONS(4588), + [sym__unclosed_span] = ACTIONS(4588), + }, + [STATE(677)] = { + [sym__backslash_escape] = ACTIONS(4880), + [sym_entity_reference] = ACTIONS(4880), + [sym_numeric_character_reference] = ACTIONS(4880), + [anon_sym_LT] = ACTIONS(4882), + [anon_sym_GT] = ACTIONS(4880), + [anon_sym_BANG] = ACTIONS(4880), + [anon_sym_DQUOTE] = ACTIONS(4880), + [anon_sym_POUND] = ACTIONS(4880), + [anon_sym_DOLLAR] = ACTIONS(4880), + [anon_sym_PERCENT] = ACTIONS(4880), + [anon_sym_AMP] = ACTIONS(4882), + [anon_sym_SQUOTE] = ACTIONS(4880), + [anon_sym_STAR] = ACTIONS(4880), + [anon_sym_PLUS] = ACTIONS(4880), + [anon_sym_COMMA] = ACTIONS(4880), + [anon_sym_DASH] = ACTIONS(4882), + [anon_sym_DOT] = ACTIONS(4882), + [anon_sym_SLASH] = ACTIONS(4880), + [anon_sym_COLON] = ACTIONS(4880), + [anon_sym_SEMI] = ACTIONS(4880), + [anon_sym_EQ] = ACTIONS(4880), + [anon_sym_QMARK] = ACTIONS(4880), + [anon_sym_LBRACK] = ACTIONS(4882), + [anon_sym_BSLASH] = ACTIONS(4882), + [anon_sym_CARET] = ACTIONS(4882), + [anon_sym__] = ACTIONS(4880), + [anon_sym_BQUOTE] = ACTIONS(4880), + [anon_sym_LBRACE] = ACTIONS(4880), + [anon_sym_PIPE] = ACTIONS(4880), + [anon_sym_TILDE] = ACTIONS(4880), + [anon_sym_LPAREN] = ACTIONS(4880), + [anon_sym_RPAREN] = ACTIONS(4880), + [sym__newline_token] = ACTIONS(4880), + [aux_sym_insert_token1] = ACTIONS(4880), + [aux_sym_delete_token1] = ACTIONS(4880), + [aux_sym_highlight_token1] = ACTIONS(4880), + [aux_sym_edit_comment_token1] = ACTIONS(4880), + [anon_sym_CARET_LBRACK] = ACTIONS(4880), + [anon_sym_LBRACK_CARET] = ACTIONS(4880), + [sym_uri_autolink] = ACTIONS(4880), + [sym_email_autolink] = ACTIONS(4880), + [sym__whitespace_ge_2] = ACTIONS(4880), + [aux_sym__whitespace_token1] = ACTIONS(4882), + [sym__word_no_digit] = ACTIONS(4880), + [sym__digits] = ACTIONS(4880), + [anon_sym_DASH_DASH] = ACTIONS(4882), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4880), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4880), + [sym__code_span_start] = ACTIONS(4880), + [sym__emphasis_open_star] = ACTIONS(4880), + [sym__emphasis_open_underscore] = ACTIONS(4880), + [sym__strikeout_open] = ACTIONS(4880), + [sym__strikeout_close] = ACTIONS(4880), + [sym__latex_span_start] = ACTIONS(4880), + [sym__single_quote_open] = ACTIONS(4880), + [sym__double_quote_open] = ACTIONS(4880), + [sym__superscript_open] = ACTIONS(4880), + [sym__subscript_open] = ACTIONS(4880), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4880), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4880), + [sym__cite_author_in_text] = ACTIONS(4880), + [sym__cite_suppress_author] = ACTIONS(4880), + [sym__shortcode_open_escaped] = ACTIONS(4880), + [sym__shortcode_open] = ACTIONS(4880), + [sym__unclosed_span] = ACTIONS(4880), + }, + [STATE(678)] = { + [sym__backslash_escape] = ACTIONS(4540), + [sym_entity_reference] = ACTIONS(4540), + [sym_numeric_character_reference] = ACTIONS(4540), + [anon_sym_LT] = ACTIONS(4542), + [anon_sym_GT] = ACTIONS(4540), + [anon_sym_BANG] = ACTIONS(4540), + [anon_sym_DQUOTE] = ACTIONS(4540), + [anon_sym_POUND] = ACTIONS(4540), + [anon_sym_DOLLAR] = ACTIONS(4540), + [anon_sym_PERCENT] = ACTIONS(4540), + [anon_sym_AMP] = ACTIONS(4542), + [anon_sym_SQUOTE] = ACTIONS(4540), + [anon_sym_STAR] = ACTIONS(4540), + [anon_sym_PLUS] = ACTIONS(4540), + [anon_sym_COMMA] = ACTIONS(4540), + [anon_sym_DASH] = ACTIONS(4542), + [anon_sym_DOT] = ACTIONS(4542), + [anon_sym_SLASH] = ACTIONS(4540), + [anon_sym_COLON] = ACTIONS(4540), + [anon_sym_SEMI] = ACTIONS(4540), + [anon_sym_EQ] = ACTIONS(4540), + [anon_sym_QMARK] = ACTIONS(4540), + [anon_sym_LBRACK] = ACTIONS(4542), + [anon_sym_BSLASH] = ACTIONS(4542), + [anon_sym_CARET] = ACTIONS(4542), + [anon_sym__] = ACTIONS(4540), + [anon_sym_BQUOTE] = ACTIONS(4540), + [anon_sym_LBRACE] = ACTIONS(4540), + [anon_sym_PIPE] = ACTIONS(4540), + [anon_sym_TILDE] = ACTIONS(4540), + [anon_sym_LPAREN] = ACTIONS(4540), + [anon_sym_RPAREN] = ACTIONS(4540), + [sym__newline_token] = ACTIONS(4540), + [aux_sym_insert_token1] = ACTIONS(4540), + [aux_sym_delete_token1] = ACTIONS(4540), + [aux_sym_highlight_token1] = ACTIONS(4540), + [aux_sym_edit_comment_token1] = ACTIONS(4540), + [anon_sym_CARET_LBRACK] = ACTIONS(4540), + [anon_sym_LBRACK_CARET] = ACTIONS(4540), + [sym_uri_autolink] = ACTIONS(4540), + [sym_email_autolink] = ACTIONS(4540), + [sym__whitespace_ge_2] = ACTIONS(4540), + [aux_sym__whitespace_token1] = ACTIONS(4542), + [sym__word_no_digit] = ACTIONS(4540), + [sym__digits] = ACTIONS(4540), + [anon_sym_DASH_DASH] = ACTIONS(4542), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4540), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4540), + [sym__code_span_start] = ACTIONS(4540), + [sym__emphasis_open_star] = ACTIONS(4540), + [sym__emphasis_open_underscore] = ACTIONS(4540), + [sym__strikeout_open] = ACTIONS(4540), + [sym__latex_span_start] = ACTIONS(4540), + [sym__single_quote_open] = ACTIONS(4540), + [sym__double_quote_open] = ACTIONS(4540), + [sym__double_quote_close] = ACTIONS(4540), + [sym__superscript_open] = ACTIONS(4540), + [sym__subscript_open] = ACTIONS(4540), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4540), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4540), + [sym__cite_author_in_text] = ACTIONS(4540), + [sym__cite_suppress_author] = ACTIONS(4540), + [sym__shortcode_open_escaped] = ACTIONS(4540), + [sym__shortcode_open] = ACTIONS(4540), + [sym__unclosed_span] = ACTIONS(4540), + }, + [STATE(679)] = { + [sym__backslash_escape] = ACTIONS(4596), + [sym_entity_reference] = ACTIONS(4596), + [sym_numeric_character_reference] = ACTIONS(4596), + [anon_sym_LT] = ACTIONS(4598), + [anon_sym_GT] = ACTIONS(4596), + [anon_sym_BANG] = ACTIONS(4596), + [anon_sym_DQUOTE] = ACTIONS(4596), + [anon_sym_POUND] = ACTIONS(4596), + [anon_sym_DOLLAR] = ACTIONS(4596), + [anon_sym_PERCENT] = ACTIONS(4596), + [anon_sym_AMP] = ACTIONS(4598), + [anon_sym_SQUOTE] = ACTIONS(4596), + [anon_sym_STAR] = ACTIONS(4596), + [anon_sym_PLUS] = ACTIONS(4596), + [anon_sym_COMMA] = ACTIONS(4596), + [anon_sym_DASH] = ACTIONS(4598), + [anon_sym_DOT] = ACTIONS(4598), + [anon_sym_SLASH] = ACTIONS(4596), + [anon_sym_COLON] = ACTIONS(4596), + [anon_sym_SEMI] = ACTIONS(4596), + [anon_sym_EQ] = ACTIONS(4596), + [anon_sym_QMARK] = ACTIONS(4596), + [anon_sym_LBRACK] = ACTIONS(4598), + [anon_sym_BSLASH] = ACTIONS(4598), + [anon_sym_CARET] = ACTIONS(4598), + [anon_sym__] = ACTIONS(4596), + [anon_sym_BQUOTE] = ACTIONS(4596), + [anon_sym_LBRACE] = ACTIONS(4596), + [anon_sym_PIPE] = ACTIONS(4596), + [anon_sym_TILDE] = ACTIONS(4596), + [anon_sym_LPAREN] = ACTIONS(4596), + [anon_sym_RPAREN] = ACTIONS(4596), + [sym__newline_token] = ACTIONS(4596), + [aux_sym_insert_token1] = ACTIONS(4596), + [aux_sym_delete_token1] = ACTIONS(4596), + [aux_sym_highlight_token1] = ACTIONS(4596), + [aux_sym_edit_comment_token1] = ACTIONS(4596), + [anon_sym_CARET_LBRACK] = ACTIONS(4596), + [anon_sym_LBRACK_CARET] = ACTIONS(4596), + [sym_uri_autolink] = ACTIONS(4596), + [sym_email_autolink] = ACTIONS(4596), + [sym__whitespace_ge_2] = ACTIONS(4596), + [aux_sym__whitespace_token1] = ACTIONS(4598), + [sym__word_no_digit] = ACTIONS(4596), + [sym__digits] = ACTIONS(4596), + [anon_sym_DASH_DASH] = ACTIONS(4598), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4596), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4596), + [sym__code_span_start] = ACTIONS(4596), + [sym__emphasis_open_star] = ACTIONS(4596), + [sym__emphasis_open_underscore] = ACTIONS(4596), + [sym__strikeout_open] = ACTIONS(4596), + [sym__strikeout_close] = ACTIONS(4596), + [sym__latex_span_start] = ACTIONS(4596), + [sym__single_quote_open] = ACTIONS(4596), + [sym__double_quote_open] = ACTIONS(4596), + [sym__superscript_open] = ACTIONS(4596), + [sym__subscript_open] = ACTIONS(4596), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4596), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4596), + [sym__cite_author_in_text] = ACTIONS(4596), + [sym__cite_suppress_author] = ACTIONS(4596), + [sym__shortcode_open_escaped] = ACTIONS(4596), + [sym__shortcode_open] = ACTIONS(4596), + [sym__unclosed_span] = ACTIONS(4596), + }, + [STATE(680)] = { + [sym__backslash_escape] = ACTIONS(4884), + [sym_entity_reference] = ACTIONS(4884), + [sym_numeric_character_reference] = ACTIONS(4884), + [anon_sym_LT] = ACTIONS(4886), + [anon_sym_GT] = ACTIONS(4884), + [anon_sym_BANG] = ACTIONS(4884), + [anon_sym_DQUOTE] = ACTIONS(4884), + [anon_sym_POUND] = ACTIONS(4884), + [anon_sym_DOLLAR] = ACTIONS(4884), + [anon_sym_PERCENT] = ACTIONS(4884), + [anon_sym_AMP] = ACTIONS(4886), + [anon_sym_SQUOTE] = ACTIONS(4884), + [anon_sym_STAR] = ACTIONS(4884), + [anon_sym_PLUS] = ACTIONS(4884), + [anon_sym_COMMA] = ACTIONS(4884), + [anon_sym_DASH] = ACTIONS(4886), + [anon_sym_DOT] = ACTIONS(4886), + [anon_sym_SLASH] = ACTIONS(4884), + [anon_sym_COLON] = ACTIONS(4884), + [anon_sym_SEMI] = ACTIONS(4884), + [anon_sym_EQ] = ACTIONS(4884), + [anon_sym_QMARK] = ACTIONS(4884), + [anon_sym_LBRACK] = ACTIONS(4886), + [anon_sym_BSLASH] = ACTIONS(4886), + [anon_sym_CARET] = ACTIONS(4886), + [anon_sym__] = ACTIONS(4884), + [anon_sym_BQUOTE] = ACTIONS(4884), + [anon_sym_LBRACE] = ACTIONS(4884), + [anon_sym_PIPE] = ACTIONS(4884), + [anon_sym_TILDE] = ACTIONS(4884), + [anon_sym_LPAREN] = ACTIONS(4884), + [anon_sym_RPAREN] = ACTIONS(4884), + [sym__newline_token] = ACTIONS(4884), + [aux_sym_insert_token1] = ACTIONS(4884), + [aux_sym_delete_token1] = ACTIONS(4884), + [aux_sym_highlight_token1] = ACTIONS(4884), + [aux_sym_edit_comment_token1] = ACTIONS(4884), + [anon_sym_CARET_LBRACK] = ACTIONS(4884), + [anon_sym_LBRACK_CARET] = ACTIONS(4884), + [sym_uri_autolink] = ACTIONS(4884), + [sym_email_autolink] = ACTIONS(4884), + [sym__whitespace_ge_2] = ACTIONS(4884), + [aux_sym__whitespace_token1] = ACTIONS(4886), + [sym__word_no_digit] = ACTIONS(4884), + [sym__digits] = ACTIONS(4884), + [anon_sym_DASH_DASH] = ACTIONS(4886), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4884), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4884), + [sym__code_span_start] = ACTIONS(4884), + [sym__emphasis_open_star] = ACTIONS(4884), + [sym__emphasis_open_underscore] = ACTIONS(4884), + [sym__strikeout_open] = ACTIONS(4884), + [sym__latex_span_start] = ACTIONS(4884), + [sym__single_quote_open] = ACTIONS(4884), + [sym__double_quote_open] = ACTIONS(4884), + [sym__double_quote_close] = ACTIONS(4884), + [sym__superscript_open] = ACTIONS(4884), + [sym__subscript_open] = ACTIONS(4884), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4884), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4884), + [sym__cite_author_in_text] = ACTIONS(4884), + [sym__cite_suppress_author] = ACTIONS(4884), + [sym__shortcode_open_escaped] = ACTIONS(4884), + [sym__shortcode_open] = ACTIONS(4884), + [sym__unclosed_span] = ACTIONS(4884), + }, + [STATE(681)] = { + [sym__backslash_escape] = ACTIONS(4888), + [sym_entity_reference] = ACTIONS(4888), + [sym_numeric_character_reference] = ACTIONS(4888), + [anon_sym_LT] = ACTIONS(4890), + [anon_sym_GT] = ACTIONS(4888), + [anon_sym_BANG] = ACTIONS(4888), + [anon_sym_DQUOTE] = ACTIONS(4888), + [anon_sym_POUND] = ACTIONS(4888), + [anon_sym_DOLLAR] = ACTIONS(4888), + [anon_sym_PERCENT] = ACTIONS(4888), + [anon_sym_AMP] = ACTIONS(4890), + [anon_sym_SQUOTE] = ACTIONS(4888), + [anon_sym_STAR] = ACTIONS(4888), + [anon_sym_PLUS] = ACTIONS(4888), + [anon_sym_COMMA] = ACTIONS(4888), + [anon_sym_DASH] = ACTIONS(4890), + [anon_sym_DOT] = ACTIONS(4890), + [anon_sym_SLASH] = ACTIONS(4888), + [anon_sym_COLON] = ACTIONS(4888), + [anon_sym_SEMI] = ACTIONS(4888), + [anon_sym_EQ] = ACTIONS(4888), + [anon_sym_QMARK] = ACTIONS(4888), + [anon_sym_LBRACK] = ACTIONS(4890), + [anon_sym_BSLASH] = ACTIONS(4890), + [anon_sym_CARET] = ACTIONS(4890), + [anon_sym__] = ACTIONS(4888), + [anon_sym_BQUOTE] = ACTIONS(4888), + [anon_sym_LBRACE] = ACTIONS(4888), + [anon_sym_PIPE] = ACTIONS(4888), + [anon_sym_TILDE] = ACTIONS(4888), + [anon_sym_LPAREN] = ACTIONS(4888), + [anon_sym_RPAREN] = ACTIONS(4888), + [sym__newline_token] = ACTIONS(4888), + [aux_sym_insert_token1] = ACTIONS(4888), + [aux_sym_delete_token1] = ACTIONS(4888), + [aux_sym_highlight_token1] = ACTIONS(4888), + [aux_sym_edit_comment_token1] = ACTIONS(4888), + [anon_sym_CARET_LBRACK] = ACTIONS(4888), + [anon_sym_LBRACK_CARET] = ACTIONS(4888), + [sym_uri_autolink] = ACTIONS(4888), + [sym_email_autolink] = ACTIONS(4888), + [sym__whitespace_ge_2] = ACTIONS(4888), + [aux_sym__whitespace_token1] = ACTIONS(4890), + [sym__word_no_digit] = ACTIONS(4888), + [sym__digits] = ACTIONS(4888), + [anon_sym_DASH_DASH] = ACTIONS(4890), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4888), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4888), + [sym__code_span_start] = ACTIONS(4888), + [sym__emphasis_open_star] = ACTIONS(4888), + [sym__emphasis_open_underscore] = ACTIONS(4888), + [sym__strikeout_open] = ACTIONS(4888), + [sym__latex_span_start] = ACTIONS(4888), + [sym__single_quote_open] = ACTIONS(4888), + [sym__double_quote_open] = ACTIONS(4888), + [sym__double_quote_close] = ACTIONS(4888), + [sym__superscript_open] = ACTIONS(4888), + [sym__subscript_open] = ACTIONS(4888), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4888), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4888), + [sym__cite_author_in_text] = ACTIONS(4888), + [sym__cite_suppress_author] = ACTIONS(4888), + [sym__shortcode_open_escaped] = ACTIONS(4888), + [sym__shortcode_open] = ACTIONS(4888), + [sym__unclosed_span] = ACTIONS(4888), + }, + [STATE(682)] = { + [sym__backslash_escape] = ACTIONS(4892), + [sym_entity_reference] = ACTIONS(4892), + [sym_numeric_character_reference] = ACTIONS(4892), + [anon_sym_LT] = ACTIONS(4894), + [anon_sym_GT] = ACTIONS(4892), + [anon_sym_BANG] = ACTIONS(4892), + [anon_sym_DQUOTE] = ACTIONS(4892), + [anon_sym_POUND] = ACTIONS(4892), + [anon_sym_DOLLAR] = ACTIONS(4892), + [anon_sym_PERCENT] = ACTIONS(4892), + [anon_sym_AMP] = ACTIONS(4894), + [anon_sym_SQUOTE] = ACTIONS(4892), + [anon_sym_STAR] = ACTIONS(4892), + [anon_sym_PLUS] = ACTIONS(4892), + [anon_sym_COMMA] = ACTIONS(4892), + [anon_sym_DASH] = ACTIONS(4894), + [anon_sym_DOT] = ACTIONS(4894), + [anon_sym_SLASH] = ACTIONS(4892), + [anon_sym_COLON] = ACTIONS(4892), + [anon_sym_SEMI] = ACTIONS(4892), + [anon_sym_EQ] = ACTIONS(4892), + [anon_sym_QMARK] = ACTIONS(4892), + [anon_sym_LBRACK] = ACTIONS(4894), + [anon_sym_BSLASH] = ACTIONS(4894), + [anon_sym_CARET] = ACTIONS(4894), + [anon_sym__] = ACTIONS(4892), + [anon_sym_BQUOTE] = ACTIONS(4892), + [anon_sym_LBRACE] = ACTIONS(4892), + [anon_sym_PIPE] = ACTIONS(4892), + [anon_sym_TILDE] = ACTIONS(4892), + [anon_sym_LPAREN] = ACTIONS(4892), + [anon_sym_RPAREN] = ACTIONS(4892), + [sym__newline_token] = ACTIONS(4892), + [aux_sym_insert_token1] = ACTIONS(4892), + [aux_sym_delete_token1] = ACTIONS(4892), + [aux_sym_highlight_token1] = ACTIONS(4892), + [aux_sym_edit_comment_token1] = ACTIONS(4892), + [anon_sym_CARET_LBRACK] = ACTIONS(4892), + [anon_sym_LBRACK_CARET] = ACTIONS(4892), + [sym_uri_autolink] = ACTIONS(4892), + [sym_email_autolink] = ACTIONS(4892), + [sym__whitespace_ge_2] = ACTIONS(4892), + [aux_sym__whitespace_token1] = ACTIONS(4894), + [sym__word_no_digit] = ACTIONS(4892), + [sym__digits] = ACTIONS(4892), + [anon_sym_DASH_DASH] = ACTIONS(4894), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4892), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4892), + [sym__code_span_start] = ACTIONS(4892), + [sym__emphasis_open_star] = ACTIONS(4892), + [sym__emphasis_open_underscore] = ACTIONS(4892), + [sym__strikeout_open] = ACTIONS(4892), + [sym__latex_span_start] = ACTIONS(4892), + [sym__single_quote_open] = ACTIONS(4892), + [sym__double_quote_open] = ACTIONS(4892), + [sym__double_quote_close] = ACTIONS(4892), + [sym__superscript_open] = ACTIONS(4892), + [sym__subscript_open] = ACTIONS(4892), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4892), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4892), + [sym__cite_author_in_text] = ACTIONS(4892), + [sym__cite_suppress_author] = ACTIONS(4892), + [sym__shortcode_open_escaped] = ACTIONS(4892), + [sym__shortcode_open] = ACTIONS(4892), + [sym__unclosed_span] = ACTIONS(4892), + }, + [STATE(683)] = { + [sym__backslash_escape] = ACTIONS(4896), + [sym_entity_reference] = ACTIONS(4896), + [sym_numeric_character_reference] = ACTIONS(4896), + [anon_sym_LT] = ACTIONS(4898), + [anon_sym_GT] = ACTIONS(4896), + [anon_sym_BANG] = ACTIONS(4896), + [anon_sym_DQUOTE] = ACTIONS(4896), + [anon_sym_POUND] = ACTIONS(4896), + [anon_sym_DOLLAR] = ACTIONS(4896), + [anon_sym_PERCENT] = ACTIONS(4896), + [anon_sym_AMP] = ACTIONS(4898), + [anon_sym_SQUOTE] = ACTIONS(4896), + [anon_sym_STAR] = ACTIONS(4896), + [anon_sym_PLUS] = ACTIONS(4896), + [anon_sym_COMMA] = ACTIONS(4896), + [anon_sym_DASH] = ACTIONS(4898), + [anon_sym_DOT] = ACTIONS(4898), + [anon_sym_SLASH] = ACTIONS(4896), + [anon_sym_COLON] = ACTIONS(4896), + [anon_sym_SEMI] = ACTIONS(4896), + [anon_sym_EQ] = ACTIONS(4896), + [anon_sym_QMARK] = ACTIONS(4896), + [anon_sym_LBRACK] = ACTIONS(4898), + [anon_sym_BSLASH] = ACTIONS(4898), + [anon_sym_CARET] = ACTIONS(4898), + [anon_sym__] = ACTIONS(4896), + [anon_sym_BQUOTE] = ACTIONS(4896), + [anon_sym_LBRACE] = ACTIONS(4896), + [anon_sym_PIPE] = ACTIONS(4896), + [anon_sym_TILDE] = ACTIONS(4896), + [anon_sym_LPAREN] = ACTIONS(4896), + [anon_sym_RPAREN] = ACTIONS(4896), + [sym__newline_token] = ACTIONS(4896), + [aux_sym_insert_token1] = ACTIONS(4896), + [aux_sym_delete_token1] = ACTIONS(4896), + [aux_sym_highlight_token1] = ACTIONS(4896), + [aux_sym_edit_comment_token1] = ACTIONS(4896), + [anon_sym_CARET_LBRACK] = ACTIONS(4896), + [anon_sym_LBRACK_CARET] = ACTIONS(4896), + [sym_uri_autolink] = ACTIONS(4896), + [sym_email_autolink] = ACTIONS(4896), + [sym__whitespace_ge_2] = ACTIONS(4896), + [aux_sym__whitespace_token1] = ACTIONS(4898), + [sym__word_no_digit] = ACTIONS(4896), + [sym__digits] = ACTIONS(4896), + [anon_sym_DASH_DASH] = ACTIONS(4898), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4896), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4896), + [sym__code_span_start] = ACTIONS(4896), + [sym__emphasis_open_star] = ACTIONS(4896), + [sym__emphasis_open_underscore] = ACTIONS(4896), + [sym__strikeout_open] = ACTIONS(4896), + [sym__latex_span_start] = ACTIONS(4896), + [sym__single_quote_open] = ACTIONS(4896), + [sym__double_quote_open] = ACTIONS(4896), + [sym__double_quote_close] = ACTIONS(4896), + [sym__superscript_open] = ACTIONS(4896), + [sym__subscript_open] = ACTIONS(4896), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4896), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4896), + [sym__cite_author_in_text] = ACTIONS(4896), + [sym__cite_suppress_author] = ACTIONS(4896), + [sym__shortcode_open_escaped] = ACTIONS(4896), + [sym__shortcode_open] = ACTIONS(4896), + [sym__unclosed_span] = ACTIONS(4896), + }, + [STATE(684)] = { + [sym__backslash_escape] = ACTIONS(4534), + [sym_entity_reference] = ACTIONS(4534), + [sym_numeric_character_reference] = ACTIONS(4534), + [anon_sym_LT] = ACTIONS(4536), + [anon_sym_GT] = ACTIONS(4534), + [anon_sym_BANG] = ACTIONS(4534), + [anon_sym_DQUOTE] = ACTIONS(4534), + [anon_sym_POUND] = ACTIONS(4534), + [anon_sym_DOLLAR] = ACTIONS(4534), + [anon_sym_PERCENT] = ACTIONS(4534), + [anon_sym_AMP] = ACTIONS(4536), + [anon_sym_SQUOTE] = ACTIONS(4534), + [anon_sym_STAR] = ACTIONS(4534), + [anon_sym_PLUS] = ACTIONS(4534), + [anon_sym_COMMA] = ACTIONS(4534), + [anon_sym_DASH] = ACTIONS(4536), + [anon_sym_DOT] = ACTIONS(4536), + [anon_sym_SLASH] = ACTIONS(4534), + [anon_sym_COLON] = ACTIONS(4534), + [anon_sym_SEMI] = ACTIONS(4534), + [anon_sym_EQ] = ACTIONS(4534), + [anon_sym_QMARK] = ACTIONS(4534), + [anon_sym_LBRACK] = ACTIONS(4536), + [anon_sym_BSLASH] = ACTIONS(4536), + [anon_sym_CARET] = ACTIONS(4536), + [anon_sym__] = ACTIONS(4534), + [anon_sym_BQUOTE] = ACTIONS(4534), + [anon_sym_LBRACE] = ACTIONS(4534), + [anon_sym_PIPE] = ACTIONS(4534), + [anon_sym_TILDE] = ACTIONS(4534), + [anon_sym_LPAREN] = ACTIONS(4534), + [anon_sym_RPAREN] = ACTIONS(4534), + [sym__newline_token] = ACTIONS(4534), + [aux_sym_insert_token1] = ACTIONS(4534), + [aux_sym_delete_token1] = ACTIONS(4534), + [aux_sym_highlight_token1] = ACTIONS(4534), + [aux_sym_edit_comment_token1] = ACTIONS(4534), + [anon_sym_CARET_LBRACK] = ACTIONS(4534), + [anon_sym_LBRACK_CARET] = ACTIONS(4534), + [sym_uri_autolink] = ACTIONS(4534), + [sym_email_autolink] = ACTIONS(4534), + [sym__whitespace_ge_2] = ACTIONS(4534), + [aux_sym__whitespace_token1] = ACTIONS(4536), + [sym__word_no_digit] = ACTIONS(4534), + [sym__digits] = ACTIONS(4534), + [anon_sym_DASH_DASH] = ACTIONS(4536), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4534), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4534), + [sym__code_span_start] = ACTIONS(4534), + [sym__emphasis_open_star] = ACTIONS(4534), + [sym__emphasis_open_underscore] = ACTIONS(4534), + [sym__strikeout_open] = ACTIONS(4534), + [sym__latex_span_start] = ACTIONS(4534), + [sym__single_quote_open] = ACTIONS(4534), + [sym__double_quote_open] = ACTIONS(4534), + [sym__double_quote_close] = ACTIONS(4534), + [sym__superscript_open] = ACTIONS(4534), + [sym__subscript_open] = ACTIONS(4534), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4534), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4534), + [sym__cite_author_in_text] = ACTIONS(4534), + [sym__cite_suppress_author] = ACTIONS(4534), + [sym__shortcode_open_escaped] = ACTIONS(4534), + [sym__shortcode_open] = ACTIONS(4534), + [sym__unclosed_span] = ACTIONS(4534), + }, + [STATE(685)] = { + [sym__backslash_escape] = ACTIONS(4852), + [sym_entity_reference] = ACTIONS(4852), + [sym_numeric_character_reference] = ACTIONS(4852), + [anon_sym_LT] = ACTIONS(4854), + [anon_sym_GT] = ACTIONS(4852), + [anon_sym_BANG] = ACTIONS(4852), + [anon_sym_DQUOTE] = ACTIONS(4852), + [anon_sym_POUND] = ACTIONS(4852), + [anon_sym_DOLLAR] = ACTIONS(4852), + [anon_sym_PERCENT] = ACTIONS(4852), + [anon_sym_AMP] = ACTIONS(4854), + [anon_sym_SQUOTE] = ACTIONS(4852), + [anon_sym_STAR] = ACTIONS(4852), + [anon_sym_PLUS] = ACTIONS(4852), + [anon_sym_COMMA] = ACTIONS(4852), + [anon_sym_DASH] = ACTIONS(4854), + [anon_sym_DOT] = ACTIONS(4854), + [anon_sym_SLASH] = ACTIONS(4852), + [anon_sym_COLON] = ACTIONS(4852), + [anon_sym_SEMI] = ACTIONS(4852), + [anon_sym_EQ] = ACTIONS(4852), + [anon_sym_QMARK] = ACTIONS(4852), + [anon_sym_LBRACK] = ACTIONS(4854), + [anon_sym_BSLASH] = ACTIONS(4854), + [anon_sym_CARET] = ACTIONS(4854), + [anon_sym__] = ACTIONS(4852), + [anon_sym_BQUOTE] = ACTIONS(4852), + [anon_sym_LBRACE] = ACTIONS(4852), + [anon_sym_PIPE] = ACTIONS(4852), + [anon_sym_TILDE] = ACTIONS(4852), + [anon_sym_LPAREN] = ACTIONS(4852), + [anon_sym_RPAREN] = ACTIONS(4852), + [sym__newline_token] = ACTIONS(4852), + [aux_sym_insert_token1] = ACTIONS(4852), + [aux_sym_delete_token1] = ACTIONS(4852), + [aux_sym_highlight_token1] = ACTIONS(4852), + [aux_sym_edit_comment_token1] = ACTIONS(4852), + [anon_sym_CARET_LBRACK] = ACTIONS(4852), + [anon_sym_LBRACK_CARET] = ACTIONS(4852), + [sym_uri_autolink] = ACTIONS(4852), + [sym_email_autolink] = ACTIONS(4852), + [sym__whitespace_ge_2] = ACTIONS(4852), + [aux_sym__whitespace_token1] = ACTIONS(4854), + [sym__word_no_digit] = ACTIONS(4852), + [sym__digits] = ACTIONS(4852), + [anon_sym_DASH_DASH] = ACTIONS(4854), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4852), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4852), + [sym__code_span_start] = ACTIONS(4852), + [sym__emphasis_open_star] = ACTIONS(4852), + [sym__emphasis_open_underscore] = ACTIONS(4852), + [sym__emphasis_close_underscore] = ACTIONS(4852), + [sym__strikeout_open] = ACTIONS(4852), + [sym__latex_span_start] = ACTIONS(4852), + [sym__single_quote_open] = ACTIONS(4852), + [sym__double_quote_open] = ACTIONS(4852), + [sym__superscript_open] = ACTIONS(4852), + [sym__subscript_open] = ACTIONS(4852), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4852), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4852), + [sym__cite_author_in_text] = ACTIONS(4852), + [sym__cite_suppress_author] = ACTIONS(4852), + [sym__shortcode_open_escaped] = ACTIONS(4852), + [sym__shortcode_open] = ACTIONS(4852), + [sym__unclosed_span] = ACTIONS(4852), + }, + [STATE(686)] = { + [sym__backslash_escape] = ACTIONS(4546), + [sym_entity_reference] = ACTIONS(4546), + [sym_numeric_character_reference] = ACTIONS(4546), + [anon_sym_LT] = ACTIONS(4548), + [anon_sym_GT] = ACTIONS(4546), + [anon_sym_BANG] = ACTIONS(4546), + [anon_sym_DQUOTE] = ACTIONS(4546), + [anon_sym_POUND] = ACTIONS(4546), + [anon_sym_DOLLAR] = ACTIONS(4546), + [anon_sym_PERCENT] = ACTIONS(4546), + [anon_sym_AMP] = ACTIONS(4548), + [anon_sym_SQUOTE] = ACTIONS(4546), + [anon_sym_STAR] = ACTIONS(4546), + [anon_sym_PLUS] = ACTIONS(4546), + [anon_sym_COMMA] = ACTIONS(4546), + [anon_sym_DASH] = ACTIONS(4548), + [anon_sym_DOT] = ACTIONS(4548), + [anon_sym_SLASH] = ACTIONS(4546), + [anon_sym_COLON] = ACTIONS(4546), + [anon_sym_SEMI] = ACTIONS(4546), + [anon_sym_EQ] = ACTIONS(4546), + [anon_sym_QMARK] = ACTIONS(4546), + [anon_sym_LBRACK] = ACTIONS(4548), + [anon_sym_BSLASH] = ACTIONS(4548), + [anon_sym_CARET] = ACTIONS(4548), + [anon_sym__] = ACTIONS(4546), + [anon_sym_BQUOTE] = ACTIONS(4546), + [anon_sym_LBRACE] = ACTIONS(4546), + [anon_sym_PIPE] = ACTIONS(4546), + [anon_sym_TILDE] = ACTIONS(4546), + [anon_sym_LPAREN] = ACTIONS(4546), + [anon_sym_RPAREN] = ACTIONS(4546), + [sym__newline_token] = ACTIONS(4546), + [aux_sym_insert_token1] = ACTIONS(4546), + [aux_sym_delete_token1] = ACTIONS(4546), + [aux_sym_highlight_token1] = ACTIONS(4546), + [aux_sym_edit_comment_token1] = ACTIONS(4546), + [anon_sym_CARET_LBRACK] = ACTIONS(4546), + [anon_sym_LBRACK_CARET] = ACTIONS(4546), + [sym_uri_autolink] = ACTIONS(4546), + [sym_email_autolink] = ACTIONS(4546), + [sym__whitespace_ge_2] = ACTIONS(4546), + [aux_sym__whitespace_token1] = ACTIONS(4548), + [sym__word_no_digit] = ACTIONS(4546), + [sym__digits] = ACTIONS(4546), + [anon_sym_DASH_DASH] = ACTIONS(4548), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4546), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4546), + [sym__code_span_start] = ACTIONS(4546), + [sym__emphasis_open_star] = ACTIONS(4546), + [sym__emphasis_open_underscore] = ACTIONS(4546), + [sym__strikeout_open] = ACTIONS(4546), + [sym__latex_span_start] = ACTIONS(4546), + [sym__single_quote_open] = ACTIONS(4546), + [sym__double_quote_open] = ACTIONS(4546), + [sym__double_quote_close] = ACTIONS(4546), + [sym__superscript_open] = ACTIONS(4546), + [sym__subscript_open] = ACTIONS(4546), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4546), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4546), + [sym__cite_author_in_text] = ACTIONS(4546), + [sym__cite_suppress_author] = ACTIONS(4546), + [sym__shortcode_open_escaped] = ACTIONS(4546), + [sym__shortcode_open] = ACTIONS(4546), + [sym__unclosed_span] = ACTIONS(4546), + }, + [STATE(687)] = { + [sym__backslash_escape] = ACTIONS(4900), + [sym_entity_reference] = ACTIONS(4900), + [sym_numeric_character_reference] = ACTIONS(4900), + [anon_sym_LT] = ACTIONS(4902), + [anon_sym_GT] = ACTIONS(4900), + [anon_sym_BANG] = ACTIONS(4900), + [anon_sym_DQUOTE] = ACTIONS(4900), + [anon_sym_POUND] = ACTIONS(4900), + [anon_sym_DOLLAR] = ACTIONS(4900), + [anon_sym_PERCENT] = ACTIONS(4900), + [anon_sym_AMP] = ACTIONS(4902), + [anon_sym_SQUOTE] = ACTIONS(4900), + [anon_sym_STAR] = ACTIONS(4900), + [anon_sym_PLUS] = ACTIONS(4900), + [anon_sym_COMMA] = ACTIONS(4900), + [anon_sym_DASH] = ACTIONS(4902), + [anon_sym_DOT] = ACTIONS(4902), + [anon_sym_SLASH] = ACTIONS(4900), + [anon_sym_COLON] = ACTIONS(4900), + [anon_sym_SEMI] = ACTIONS(4900), + [anon_sym_EQ] = ACTIONS(4900), + [anon_sym_QMARK] = ACTIONS(4900), + [anon_sym_LBRACK] = ACTIONS(4902), + [anon_sym_BSLASH] = ACTIONS(4902), + [anon_sym_CARET] = ACTIONS(4902), + [anon_sym__] = ACTIONS(4900), + [anon_sym_BQUOTE] = ACTIONS(4900), + [anon_sym_LBRACE] = ACTIONS(4900), + [anon_sym_PIPE] = ACTIONS(4900), + [anon_sym_TILDE] = ACTIONS(4900), + [anon_sym_LPAREN] = ACTIONS(4900), + [anon_sym_RPAREN] = ACTIONS(4900), + [sym__newline_token] = ACTIONS(4900), + [aux_sym_insert_token1] = ACTIONS(4900), + [aux_sym_delete_token1] = ACTIONS(4900), + [aux_sym_highlight_token1] = ACTIONS(4900), + [aux_sym_edit_comment_token1] = ACTIONS(4900), + [anon_sym_CARET_LBRACK] = ACTIONS(4900), + [anon_sym_LBRACK_CARET] = ACTIONS(4900), + [sym_uri_autolink] = ACTIONS(4900), + [sym_email_autolink] = ACTIONS(4900), + [sym__whitespace_ge_2] = ACTIONS(4900), + [aux_sym__whitespace_token1] = ACTIONS(4902), + [sym__word_no_digit] = ACTIONS(4900), + [sym__digits] = ACTIONS(4900), + [anon_sym_DASH_DASH] = ACTIONS(4902), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4900), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4900), + [sym__code_span_start] = ACTIONS(4900), + [sym__emphasis_open_star] = ACTIONS(4900), + [sym__emphasis_open_underscore] = ACTIONS(4900), + [sym__strikeout_open] = ACTIONS(4900), + [sym__strikeout_close] = ACTIONS(4900), + [sym__latex_span_start] = ACTIONS(4900), + [sym__single_quote_open] = ACTIONS(4900), + [sym__double_quote_open] = ACTIONS(4900), + [sym__superscript_open] = ACTIONS(4900), + [sym__subscript_open] = ACTIONS(4900), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4900), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4900), + [sym__cite_author_in_text] = ACTIONS(4900), + [sym__cite_suppress_author] = ACTIONS(4900), + [sym__shortcode_open_escaped] = ACTIONS(4900), + [sym__shortcode_open] = ACTIONS(4900), + [sym__unclosed_span] = ACTIONS(4900), + }, + [STATE(688)] = { + [sym__backslash_escape] = ACTIONS(4904), + [sym_entity_reference] = ACTIONS(4904), + [sym_numeric_character_reference] = ACTIONS(4904), + [anon_sym_LT] = ACTIONS(4906), + [anon_sym_GT] = ACTIONS(4904), + [anon_sym_BANG] = ACTIONS(4904), + [anon_sym_DQUOTE] = ACTIONS(4904), + [anon_sym_POUND] = ACTIONS(4904), + [anon_sym_DOLLAR] = ACTIONS(4904), + [anon_sym_PERCENT] = ACTIONS(4904), + [anon_sym_AMP] = ACTIONS(4906), + [anon_sym_SQUOTE] = ACTIONS(4904), + [anon_sym_STAR] = ACTIONS(4904), + [anon_sym_PLUS] = ACTIONS(4904), + [anon_sym_COMMA] = ACTIONS(4904), + [anon_sym_DASH] = ACTIONS(4906), + [anon_sym_DOT] = ACTIONS(4906), + [anon_sym_SLASH] = ACTIONS(4904), + [anon_sym_COLON] = ACTIONS(4904), + [anon_sym_SEMI] = ACTIONS(4904), + [anon_sym_EQ] = ACTIONS(4904), + [anon_sym_QMARK] = ACTIONS(4904), + [anon_sym_LBRACK] = ACTIONS(4906), + [anon_sym_BSLASH] = ACTIONS(4906), + [anon_sym_CARET] = ACTIONS(4906), + [anon_sym__] = ACTIONS(4904), + [anon_sym_BQUOTE] = ACTIONS(4904), + [anon_sym_LBRACE] = ACTIONS(4904), + [anon_sym_PIPE] = ACTIONS(4904), + [anon_sym_TILDE] = ACTIONS(4904), + [anon_sym_LPAREN] = ACTIONS(4904), + [anon_sym_RPAREN] = ACTIONS(4904), + [sym__newline_token] = ACTIONS(4904), + [aux_sym_insert_token1] = ACTIONS(4904), + [aux_sym_delete_token1] = ACTIONS(4904), + [aux_sym_highlight_token1] = ACTIONS(4904), + [aux_sym_edit_comment_token1] = ACTIONS(4904), + [anon_sym_CARET_LBRACK] = ACTIONS(4904), + [anon_sym_LBRACK_CARET] = ACTIONS(4904), + [sym_uri_autolink] = ACTIONS(4904), + [sym_email_autolink] = ACTIONS(4904), + [sym__whitespace_ge_2] = ACTIONS(4904), + [aux_sym__whitespace_token1] = ACTIONS(4906), + [sym__word_no_digit] = ACTIONS(4904), + [sym__digits] = ACTIONS(4904), + [anon_sym_DASH_DASH] = ACTIONS(4906), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4904), + [sym__code_span_start] = ACTIONS(4904), + [sym__emphasis_open_star] = ACTIONS(4904), + [sym__emphasis_open_underscore] = ACTIONS(4904), + [sym__strikeout_open] = ACTIONS(4904), + [sym__latex_span_start] = ACTIONS(4904), + [sym__single_quote_open] = ACTIONS(4904), + [sym__double_quote_open] = ACTIONS(4904), + [sym__double_quote_close] = ACTIONS(4904), + [sym__superscript_open] = ACTIONS(4904), + [sym__subscript_open] = ACTIONS(4904), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4904), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4904), + [sym__cite_author_in_text] = ACTIONS(4904), + [sym__cite_suppress_author] = ACTIONS(4904), + [sym__shortcode_open_escaped] = ACTIONS(4904), + [sym__shortcode_open] = ACTIONS(4904), + [sym__unclosed_span] = ACTIONS(4904), + }, + [STATE(689)] = { + [sym__backslash_escape] = ACTIONS(4908), + [sym_entity_reference] = ACTIONS(4908), + [sym_numeric_character_reference] = ACTIONS(4908), + [anon_sym_LT] = ACTIONS(4910), + [anon_sym_GT] = ACTIONS(4908), + [anon_sym_BANG] = ACTIONS(4908), + [anon_sym_DQUOTE] = ACTIONS(4908), + [anon_sym_POUND] = ACTIONS(4908), + [anon_sym_DOLLAR] = ACTIONS(4908), + [anon_sym_PERCENT] = ACTIONS(4908), + [anon_sym_AMP] = ACTIONS(4910), + [anon_sym_SQUOTE] = ACTIONS(4908), + [anon_sym_STAR] = ACTIONS(4908), + [anon_sym_PLUS] = ACTIONS(4908), + [anon_sym_COMMA] = ACTIONS(4908), + [anon_sym_DASH] = ACTIONS(4910), + [anon_sym_DOT] = ACTIONS(4910), + [anon_sym_SLASH] = ACTIONS(4908), + [anon_sym_COLON] = ACTIONS(4908), + [anon_sym_SEMI] = ACTIONS(4908), + [anon_sym_EQ] = ACTIONS(4908), + [anon_sym_QMARK] = ACTIONS(4908), + [anon_sym_LBRACK] = ACTIONS(4910), + [anon_sym_BSLASH] = ACTIONS(4910), + [anon_sym_CARET] = ACTIONS(4910), + [anon_sym__] = ACTIONS(4908), + [anon_sym_BQUOTE] = ACTIONS(4908), + [anon_sym_LBRACE] = ACTIONS(4908), + [anon_sym_PIPE] = ACTIONS(4908), + [anon_sym_TILDE] = ACTIONS(4908), + [anon_sym_LPAREN] = ACTIONS(4908), + [anon_sym_RPAREN] = ACTIONS(4908), + [sym__newline_token] = ACTIONS(4908), + [aux_sym_insert_token1] = ACTIONS(4908), + [aux_sym_delete_token1] = ACTIONS(4908), + [aux_sym_highlight_token1] = ACTIONS(4908), + [aux_sym_edit_comment_token1] = ACTIONS(4908), + [anon_sym_CARET_LBRACK] = ACTIONS(4908), + [anon_sym_LBRACK_CARET] = ACTIONS(4908), + [sym_uri_autolink] = ACTIONS(4908), + [sym_email_autolink] = ACTIONS(4908), + [sym__whitespace_ge_2] = ACTIONS(4908), + [aux_sym__whitespace_token1] = ACTIONS(4910), + [sym__word_no_digit] = ACTIONS(4908), + [sym__digits] = ACTIONS(4908), + [anon_sym_DASH_DASH] = ACTIONS(4910), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4908), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4908), + [sym__code_span_start] = ACTIONS(4908), + [sym__emphasis_open_star] = ACTIONS(4908), + [sym__emphasis_open_underscore] = ACTIONS(4908), + [sym__strikeout_open] = ACTIONS(4908), + [sym__latex_span_start] = ACTIONS(4908), + [sym__single_quote_open] = ACTIONS(4908), + [sym__double_quote_open] = ACTIONS(4908), + [sym__double_quote_close] = ACTIONS(4908), + [sym__superscript_open] = ACTIONS(4908), + [sym__subscript_open] = ACTIONS(4908), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4908), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4908), + [sym__cite_author_in_text] = ACTIONS(4908), + [sym__cite_suppress_author] = ACTIONS(4908), + [sym__shortcode_open_escaped] = ACTIONS(4908), + [sym__shortcode_open] = ACTIONS(4908), + [sym__unclosed_span] = ACTIONS(4908), + }, + [STATE(690)] = { + [sym__backslash_escape] = ACTIONS(4550), + [sym_entity_reference] = ACTIONS(4550), + [sym_numeric_character_reference] = ACTIONS(4550), + [anon_sym_LT] = ACTIONS(4552), + [anon_sym_GT] = ACTIONS(4550), + [anon_sym_BANG] = ACTIONS(4550), + [anon_sym_DQUOTE] = ACTIONS(4550), + [anon_sym_POUND] = ACTIONS(4550), + [anon_sym_DOLLAR] = ACTIONS(4550), + [anon_sym_PERCENT] = ACTIONS(4550), + [anon_sym_AMP] = ACTIONS(4552), + [anon_sym_SQUOTE] = ACTIONS(4550), + [anon_sym_STAR] = ACTIONS(4550), + [anon_sym_PLUS] = ACTIONS(4550), + [anon_sym_COMMA] = ACTIONS(4550), + [anon_sym_DASH] = ACTIONS(4552), + [anon_sym_DOT] = ACTIONS(4552), + [anon_sym_SLASH] = ACTIONS(4550), + [anon_sym_COLON] = ACTIONS(4550), + [anon_sym_SEMI] = ACTIONS(4550), + [anon_sym_EQ] = ACTIONS(4550), + [anon_sym_QMARK] = ACTIONS(4550), + [anon_sym_LBRACK] = ACTIONS(4552), + [anon_sym_BSLASH] = ACTIONS(4552), + [anon_sym_CARET] = ACTIONS(4552), + [anon_sym__] = ACTIONS(4550), + [anon_sym_BQUOTE] = ACTIONS(4550), + [anon_sym_LBRACE] = ACTIONS(4550), + [anon_sym_PIPE] = ACTIONS(4550), + [anon_sym_TILDE] = ACTIONS(4550), + [anon_sym_LPAREN] = ACTIONS(4550), + [anon_sym_RPAREN] = ACTIONS(4550), + [sym__newline_token] = ACTIONS(4550), + [aux_sym_insert_token1] = ACTIONS(4550), + [aux_sym_delete_token1] = ACTIONS(4550), + [aux_sym_highlight_token1] = ACTIONS(4550), + [aux_sym_edit_comment_token1] = ACTIONS(4550), + [anon_sym_CARET_LBRACK] = ACTIONS(4550), + [anon_sym_LBRACK_CARET] = ACTIONS(4550), + [sym_uri_autolink] = ACTIONS(4550), + [sym_email_autolink] = ACTIONS(4550), + [sym__whitespace_ge_2] = ACTIONS(4550), + [aux_sym__whitespace_token1] = ACTIONS(4552), + [sym__word_no_digit] = ACTIONS(4550), + [sym__digits] = ACTIONS(4550), + [anon_sym_DASH_DASH] = ACTIONS(4552), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4550), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4550), + [sym__code_span_start] = ACTIONS(4550), + [sym__emphasis_open_star] = ACTIONS(4550), + [sym__emphasis_open_underscore] = ACTIONS(4550), + [sym__strikeout_open] = ACTIONS(4550), + [sym__latex_span_start] = ACTIONS(4550), + [sym__single_quote_open] = ACTIONS(4550), + [sym__double_quote_open] = ACTIONS(4550), + [sym__double_quote_close] = ACTIONS(4550), + [sym__superscript_open] = ACTIONS(4550), + [sym__subscript_open] = ACTIONS(4550), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4550), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4550), + [sym__cite_author_in_text] = ACTIONS(4550), + [sym__cite_suppress_author] = ACTIONS(4550), + [sym__shortcode_open_escaped] = ACTIONS(4550), + [sym__shortcode_open] = ACTIONS(4550), + [sym__unclosed_span] = ACTIONS(4550), + }, + [STATE(691)] = { + [sym__backslash_escape] = ACTIONS(4566), + [sym_entity_reference] = ACTIONS(4566), + [sym_numeric_character_reference] = ACTIONS(4566), + [anon_sym_LT] = ACTIONS(4568), + [anon_sym_GT] = ACTIONS(4566), + [anon_sym_BANG] = ACTIONS(4566), + [anon_sym_DQUOTE] = ACTIONS(4566), + [anon_sym_POUND] = ACTIONS(4566), + [anon_sym_DOLLAR] = ACTIONS(4566), + [anon_sym_PERCENT] = ACTIONS(4566), + [anon_sym_AMP] = ACTIONS(4568), + [anon_sym_SQUOTE] = ACTIONS(4566), + [anon_sym_STAR] = ACTIONS(4566), + [anon_sym_PLUS] = ACTIONS(4566), + [anon_sym_COMMA] = ACTIONS(4566), + [anon_sym_DASH] = ACTIONS(4568), + [anon_sym_DOT] = ACTIONS(4568), + [anon_sym_SLASH] = ACTIONS(4566), + [anon_sym_COLON] = ACTIONS(4566), + [anon_sym_SEMI] = ACTIONS(4566), + [anon_sym_EQ] = ACTIONS(4566), + [anon_sym_QMARK] = ACTIONS(4566), + [anon_sym_LBRACK] = ACTIONS(4568), + [anon_sym_BSLASH] = ACTIONS(4568), + [anon_sym_CARET] = ACTIONS(4568), + [anon_sym__] = ACTIONS(4566), + [anon_sym_BQUOTE] = ACTIONS(4566), + [anon_sym_LBRACE] = ACTIONS(4566), + [anon_sym_PIPE] = ACTIONS(4566), + [anon_sym_TILDE] = ACTIONS(4566), + [anon_sym_LPAREN] = ACTIONS(4566), + [anon_sym_RPAREN] = ACTIONS(4566), + [sym__newline_token] = ACTIONS(4566), + [aux_sym_insert_token1] = ACTIONS(4566), + [aux_sym_delete_token1] = ACTIONS(4566), + [aux_sym_highlight_token1] = ACTIONS(4566), + [aux_sym_edit_comment_token1] = ACTIONS(4566), + [anon_sym_CARET_LBRACK] = ACTIONS(4566), + [anon_sym_LBRACK_CARET] = ACTIONS(4566), + [sym_uri_autolink] = ACTIONS(4566), + [sym_email_autolink] = ACTIONS(4566), + [sym__whitespace_ge_2] = ACTIONS(4566), + [aux_sym__whitespace_token1] = ACTIONS(4568), + [sym__word_no_digit] = ACTIONS(4566), + [sym__digits] = ACTIONS(4566), + [anon_sym_DASH_DASH] = ACTIONS(4568), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4566), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4566), + [sym__code_span_start] = ACTIONS(4566), + [sym__emphasis_open_star] = ACTIONS(4566), + [sym__emphasis_open_underscore] = ACTIONS(4566), + [sym__emphasis_close_underscore] = ACTIONS(4566), + [sym__strikeout_open] = ACTIONS(4566), + [sym__latex_span_start] = ACTIONS(4566), + [sym__single_quote_open] = ACTIONS(4566), + [sym__double_quote_open] = ACTIONS(4566), + [sym__superscript_open] = ACTIONS(4566), + [sym__subscript_open] = ACTIONS(4566), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4566), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4566), + [sym__cite_author_in_text] = ACTIONS(4566), + [sym__cite_suppress_author] = ACTIONS(4566), + [sym__shortcode_open_escaped] = ACTIONS(4566), + [sym__shortcode_open] = ACTIONS(4566), + [sym__unclosed_span] = ACTIONS(4566), + }, + [STATE(692)] = { + [sym__backslash_escape] = ACTIONS(4554), + [sym_entity_reference] = ACTIONS(4554), + [sym_numeric_character_reference] = ACTIONS(4554), + [anon_sym_LT] = ACTIONS(4556), + [anon_sym_GT] = ACTIONS(4554), + [anon_sym_BANG] = ACTIONS(4554), + [anon_sym_DQUOTE] = ACTIONS(4554), + [anon_sym_POUND] = ACTIONS(4554), + [anon_sym_DOLLAR] = ACTIONS(4554), + [anon_sym_PERCENT] = ACTIONS(4554), + [anon_sym_AMP] = ACTIONS(4556), + [anon_sym_SQUOTE] = ACTIONS(4554), + [anon_sym_STAR] = ACTIONS(4554), + [anon_sym_PLUS] = ACTIONS(4554), + [anon_sym_COMMA] = ACTIONS(4554), + [anon_sym_DASH] = ACTIONS(4556), + [anon_sym_DOT] = ACTIONS(4556), + [anon_sym_SLASH] = ACTIONS(4554), + [anon_sym_COLON] = ACTIONS(4554), + [anon_sym_SEMI] = ACTIONS(4554), + [anon_sym_EQ] = ACTIONS(4554), + [anon_sym_QMARK] = ACTIONS(4554), + [anon_sym_LBRACK] = ACTIONS(4556), + [anon_sym_BSLASH] = ACTIONS(4556), + [anon_sym_CARET] = ACTIONS(4556), + [anon_sym__] = ACTIONS(4554), + [anon_sym_BQUOTE] = ACTIONS(4554), + [anon_sym_LBRACE] = ACTIONS(4554), + [anon_sym_PIPE] = ACTIONS(4554), + [anon_sym_TILDE] = ACTIONS(4554), + [anon_sym_LPAREN] = ACTIONS(4554), + [anon_sym_RPAREN] = ACTIONS(4554), + [sym__newline_token] = ACTIONS(4554), + [aux_sym_insert_token1] = ACTIONS(4554), + [aux_sym_delete_token1] = ACTIONS(4554), + [aux_sym_highlight_token1] = ACTIONS(4554), + [aux_sym_edit_comment_token1] = ACTIONS(4554), + [anon_sym_CARET_LBRACK] = ACTIONS(4554), + [anon_sym_LBRACK_CARET] = ACTIONS(4554), + [sym_uri_autolink] = ACTIONS(4554), + [sym_email_autolink] = ACTIONS(4554), + [sym__whitespace_ge_2] = ACTIONS(4554), + [aux_sym__whitespace_token1] = ACTIONS(4556), + [sym__word_no_digit] = ACTIONS(4554), + [sym__digits] = ACTIONS(4554), + [anon_sym_DASH_DASH] = ACTIONS(4556), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4554), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4554), + [sym__code_span_start] = ACTIONS(4554), + [sym__emphasis_open_star] = ACTIONS(4554), + [sym__emphasis_open_underscore] = ACTIONS(4554), + [sym__strikeout_open] = ACTIONS(4554), + [sym__latex_span_start] = ACTIONS(4554), + [sym__single_quote_open] = ACTIONS(4554), + [sym__double_quote_open] = ACTIONS(4554), + [sym__double_quote_close] = ACTIONS(4554), + [sym__superscript_open] = ACTIONS(4554), + [sym__subscript_open] = ACTIONS(4554), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4554), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4554), + [sym__cite_author_in_text] = ACTIONS(4554), + [sym__cite_suppress_author] = ACTIONS(4554), + [sym__shortcode_open_escaped] = ACTIONS(4554), + [sym__shortcode_open] = ACTIONS(4554), + [sym__unclosed_span] = ACTIONS(4554), + }, + [STATE(693)] = { + [sym__backslash_escape] = ACTIONS(4912), + [sym_entity_reference] = ACTIONS(4912), + [sym_numeric_character_reference] = ACTIONS(4912), + [anon_sym_LT] = ACTIONS(4914), + [anon_sym_GT] = ACTIONS(4912), + [anon_sym_BANG] = ACTIONS(4912), + [anon_sym_DQUOTE] = ACTIONS(4912), + [anon_sym_POUND] = ACTIONS(4912), + [anon_sym_DOLLAR] = ACTIONS(4912), + [anon_sym_PERCENT] = ACTIONS(4912), + [anon_sym_AMP] = ACTIONS(4914), + [anon_sym_SQUOTE] = ACTIONS(4912), + [anon_sym_STAR] = ACTIONS(4912), + [anon_sym_PLUS] = ACTIONS(4912), + [anon_sym_COMMA] = ACTIONS(4912), + [anon_sym_DASH] = ACTIONS(4914), + [anon_sym_DOT] = ACTIONS(4914), + [anon_sym_SLASH] = ACTIONS(4912), + [anon_sym_COLON] = ACTIONS(4912), + [anon_sym_SEMI] = ACTIONS(4912), + [anon_sym_EQ] = ACTIONS(4912), + [anon_sym_QMARK] = ACTIONS(4912), + [anon_sym_LBRACK] = ACTIONS(4914), + [anon_sym_BSLASH] = ACTIONS(4914), + [anon_sym_CARET] = ACTIONS(4914), + [anon_sym__] = ACTIONS(4912), + [anon_sym_BQUOTE] = ACTIONS(4912), + [anon_sym_LBRACE] = ACTIONS(4912), + [anon_sym_PIPE] = ACTIONS(4912), + [anon_sym_TILDE] = ACTIONS(4912), + [anon_sym_LPAREN] = ACTIONS(4912), + [anon_sym_RPAREN] = ACTIONS(4912), + [sym__newline_token] = ACTIONS(4912), + [aux_sym_insert_token1] = ACTIONS(4912), + [aux_sym_delete_token1] = ACTIONS(4912), + [aux_sym_highlight_token1] = ACTIONS(4912), + [aux_sym_edit_comment_token1] = ACTIONS(4912), + [anon_sym_CARET_LBRACK] = ACTIONS(4912), + [anon_sym_LBRACK_CARET] = ACTIONS(4912), + [sym_uri_autolink] = ACTIONS(4912), + [sym_email_autolink] = ACTIONS(4912), + [sym__whitespace_ge_2] = ACTIONS(4912), + [aux_sym__whitespace_token1] = ACTIONS(4914), + [sym__word_no_digit] = ACTIONS(4912), + [sym__digits] = ACTIONS(4912), + [anon_sym_DASH_DASH] = ACTIONS(4914), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4912), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4912), + [sym__code_span_start] = ACTIONS(4912), + [sym__emphasis_open_star] = ACTIONS(4912), + [sym__emphasis_open_underscore] = ACTIONS(4912), + [sym__strikeout_open] = ACTIONS(4912), + [sym__strikeout_close] = ACTIONS(4912), + [sym__latex_span_start] = ACTIONS(4912), + [sym__single_quote_open] = ACTIONS(4912), + [sym__double_quote_open] = ACTIONS(4912), + [sym__superscript_open] = ACTIONS(4912), + [sym__subscript_open] = ACTIONS(4912), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4912), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4912), + [sym__cite_author_in_text] = ACTIONS(4912), + [sym__cite_suppress_author] = ACTIONS(4912), + [sym__shortcode_open_escaped] = ACTIONS(4912), + [sym__shortcode_open] = ACTIONS(4912), + [sym__unclosed_span] = ACTIONS(4912), + }, + [STATE(694)] = { + [sym__backslash_escape] = ACTIONS(4558), + [sym_entity_reference] = ACTIONS(4558), + [sym_numeric_character_reference] = ACTIONS(4558), + [anon_sym_LT] = ACTIONS(4560), + [anon_sym_GT] = ACTIONS(4558), + [anon_sym_BANG] = ACTIONS(4558), + [anon_sym_DQUOTE] = ACTIONS(4558), + [anon_sym_POUND] = ACTIONS(4558), + [anon_sym_DOLLAR] = ACTIONS(4558), + [anon_sym_PERCENT] = ACTIONS(4558), + [anon_sym_AMP] = ACTIONS(4560), + [anon_sym_SQUOTE] = ACTIONS(4558), + [anon_sym_STAR] = ACTIONS(4558), + [anon_sym_PLUS] = ACTIONS(4558), + [anon_sym_COMMA] = ACTIONS(4558), + [anon_sym_DASH] = ACTIONS(4560), + [anon_sym_DOT] = ACTIONS(4560), + [anon_sym_SLASH] = ACTIONS(4558), + [anon_sym_COLON] = ACTIONS(4558), + [anon_sym_SEMI] = ACTIONS(4558), + [anon_sym_EQ] = ACTIONS(4558), + [anon_sym_QMARK] = ACTIONS(4558), + [anon_sym_LBRACK] = ACTIONS(4560), + [anon_sym_BSLASH] = ACTIONS(4560), + [anon_sym_CARET] = ACTIONS(4560), + [anon_sym__] = ACTIONS(4558), + [anon_sym_BQUOTE] = ACTIONS(4558), + [anon_sym_LBRACE] = ACTIONS(4558), + [anon_sym_PIPE] = ACTIONS(4558), + [anon_sym_TILDE] = ACTIONS(4558), + [anon_sym_LPAREN] = ACTIONS(4558), + [anon_sym_RPAREN] = ACTIONS(4558), + [sym__newline_token] = ACTIONS(4558), + [aux_sym_insert_token1] = ACTIONS(4558), + [aux_sym_delete_token1] = ACTIONS(4558), + [aux_sym_highlight_token1] = ACTIONS(4558), + [aux_sym_edit_comment_token1] = ACTIONS(4558), + [anon_sym_CARET_LBRACK] = ACTIONS(4558), + [anon_sym_LBRACK_CARET] = ACTIONS(4558), + [sym_uri_autolink] = ACTIONS(4558), + [sym_email_autolink] = ACTIONS(4558), + [sym__whitespace_ge_2] = ACTIONS(4558), + [aux_sym__whitespace_token1] = ACTIONS(4560), + [sym__word_no_digit] = ACTIONS(4558), + [sym__digits] = ACTIONS(4558), + [anon_sym_DASH_DASH] = ACTIONS(4560), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4558), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4558), + [sym__code_span_start] = ACTIONS(4558), + [sym__emphasis_open_star] = ACTIONS(4558), + [sym__emphasis_open_underscore] = ACTIONS(4558), + [sym__strikeout_open] = ACTIONS(4558), + [sym__latex_span_start] = ACTIONS(4558), + [sym__single_quote_open] = ACTIONS(4558), + [sym__double_quote_open] = ACTIONS(4558), + [sym__double_quote_close] = ACTIONS(4558), + [sym__superscript_open] = ACTIONS(4558), + [sym__subscript_open] = ACTIONS(4558), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4558), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4558), + [sym__cite_author_in_text] = ACTIONS(4558), + [sym__cite_suppress_author] = ACTIONS(4558), + [sym__shortcode_open_escaped] = ACTIONS(4558), + [sym__shortcode_open] = ACTIONS(4558), + [sym__unclosed_span] = ACTIONS(4558), + }, + [STATE(695)] = { + [sym__backslash_escape] = ACTIONS(4916), + [sym_entity_reference] = ACTIONS(4916), + [sym_numeric_character_reference] = ACTIONS(4916), + [anon_sym_LT] = ACTIONS(4918), + [anon_sym_GT] = ACTIONS(4916), + [anon_sym_BANG] = ACTIONS(4916), + [anon_sym_DQUOTE] = ACTIONS(4916), + [anon_sym_POUND] = ACTIONS(4916), + [anon_sym_DOLLAR] = ACTIONS(4916), + [anon_sym_PERCENT] = ACTIONS(4916), + [anon_sym_AMP] = ACTIONS(4918), + [anon_sym_SQUOTE] = ACTIONS(4916), + [anon_sym_STAR] = ACTIONS(4916), + [anon_sym_PLUS] = ACTIONS(4916), + [anon_sym_COMMA] = ACTIONS(4916), + [anon_sym_DASH] = ACTIONS(4918), + [anon_sym_DOT] = ACTIONS(4918), + [anon_sym_SLASH] = ACTIONS(4916), + [anon_sym_COLON] = ACTIONS(4916), + [anon_sym_SEMI] = ACTIONS(4916), + [anon_sym_EQ] = ACTIONS(4916), + [anon_sym_QMARK] = ACTIONS(4916), + [anon_sym_LBRACK] = ACTIONS(4918), + [anon_sym_BSLASH] = ACTIONS(4918), + [anon_sym_CARET] = ACTIONS(4918), + [anon_sym__] = ACTIONS(4916), + [anon_sym_BQUOTE] = ACTIONS(4916), + [anon_sym_LBRACE] = ACTIONS(4916), + [anon_sym_PIPE] = ACTIONS(4916), + [anon_sym_TILDE] = ACTIONS(4916), + [anon_sym_LPAREN] = ACTIONS(4916), + [anon_sym_RPAREN] = ACTIONS(4916), + [sym__newline_token] = ACTIONS(4916), + [aux_sym_insert_token1] = ACTIONS(4916), + [aux_sym_delete_token1] = ACTIONS(4916), + [aux_sym_highlight_token1] = ACTIONS(4916), + [aux_sym_edit_comment_token1] = ACTIONS(4916), + [anon_sym_CARET_LBRACK] = ACTIONS(4916), + [anon_sym_LBRACK_CARET] = ACTIONS(4916), + [sym_uri_autolink] = ACTIONS(4916), + [sym_email_autolink] = ACTIONS(4916), + [sym__whitespace_ge_2] = ACTIONS(4916), + [aux_sym__whitespace_token1] = ACTIONS(4918), + [sym__word_no_digit] = ACTIONS(4916), + [sym__digits] = ACTIONS(4916), + [anon_sym_DASH_DASH] = ACTIONS(4918), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4916), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4916), + [sym__code_span_start] = ACTIONS(4916), + [sym__emphasis_open_star] = ACTIONS(4916), + [sym__emphasis_open_underscore] = ACTIONS(4916), + [sym__strikeout_open] = ACTIONS(4916), + [sym__strikeout_close] = ACTIONS(4916), + [sym__latex_span_start] = ACTIONS(4916), + [sym__single_quote_open] = ACTIONS(4916), + [sym__double_quote_open] = ACTIONS(4916), + [sym__superscript_open] = ACTIONS(4916), + [sym__subscript_open] = ACTIONS(4916), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4916), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4916), + [sym__cite_author_in_text] = ACTIONS(4916), + [sym__cite_suppress_author] = ACTIONS(4916), + [sym__shortcode_open_escaped] = ACTIONS(4916), + [sym__shortcode_open] = ACTIONS(4916), + [sym__unclosed_span] = ACTIONS(4916), + }, + [STATE(696)] = { + [sym__backslash_escape] = ACTIONS(4562), + [sym_entity_reference] = ACTIONS(4562), + [sym_numeric_character_reference] = ACTIONS(4562), + [anon_sym_LT] = ACTIONS(4564), + [anon_sym_GT] = ACTIONS(4562), + [anon_sym_BANG] = ACTIONS(4562), + [anon_sym_DQUOTE] = ACTIONS(4562), + [anon_sym_POUND] = ACTIONS(4562), + [anon_sym_DOLLAR] = ACTIONS(4562), + [anon_sym_PERCENT] = ACTIONS(4562), + [anon_sym_AMP] = ACTIONS(4564), + [anon_sym_SQUOTE] = ACTIONS(4562), + [anon_sym_STAR] = ACTIONS(4562), + [anon_sym_PLUS] = ACTIONS(4562), + [anon_sym_COMMA] = ACTIONS(4562), + [anon_sym_DASH] = ACTIONS(4564), + [anon_sym_DOT] = ACTIONS(4564), + [anon_sym_SLASH] = ACTIONS(4562), + [anon_sym_COLON] = ACTIONS(4562), + [anon_sym_SEMI] = ACTIONS(4562), + [anon_sym_EQ] = ACTIONS(4562), + [anon_sym_QMARK] = ACTIONS(4562), + [anon_sym_LBRACK] = ACTIONS(4564), + [anon_sym_BSLASH] = ACTIONS(4564), + [anon_sym_CARET] = ACTIONS(4564), + [anon_sym__] = ACTIONS(4562), + [anon_sym_BQUOTE] = ACTIONS(4562), + [anon_sym_LBRACE] = ACTIONS(4562), + [anon_sym_PIPE] = ACTIONS(4562), + [anon_sym_TILDE] = ACTIONS(4562), + [anon_sym_LPAREN] = ACTIONS(4562), + [anon_sym_RPAREN] = ACTIONS(4562), + [sym__newline_token] = ACTIONS(4562), + [aux_sym_insert_token1] = ACTIONS(4562), + [aux_sym_delete_token1] = ACTIONS(4562), + [aux_sym_highlight_token1] = ACTIONS(4562), + [aux_sym_edit_comment_token1] = ACTIONS(4562), + [anon_sym_CARET_LBRACK] = ACTIONS(4562), + [anon_sym_LBRACK_CARET] = ACTIONS(4562), + [sym_uri_autolink] = ACTIONS(4562), + [sym_email_autolink] = ACTIONS(4562), + [sym__whitespace_ge_2] = ACTIONS(4562), + [aux_sym__whitespace_token1] = ACTIONS(4564), + [sym__word_no_digit] = ACTIONS(4562), + [sym__digits] = ACTIONS(4562), + [anon_sym_DASH_DASH] = ACTIONS(4564), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4562), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4562), + [sym__code_span_start] = ACTIONS(4562), + [sym__emphasis_open_star] = ACTIONS(4562), + [sym__emphasis_open_underscore] = ACTIONS(4562), + [sym__strikeout_open] = ACTIONS(4562), + [sym__latex_span_start] = ACTIONS(4562), + [sym__single_quote_open] = ACTIONS(4562), + [sym__double_quote_open] = ACTIONS(4562), + [sym__double_quote_close] = ACTIONS(4562), + [sym__superscript_open] = ACTIONS(4562), + [sym__subscript_open] = ACTIONS(4562), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4562), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4562), + [sym__cite_author_in_text] = ACTIONS(4562), + [sym__cite_suppress_author] = ACTIONS(4562), + [sym__shortcode_open_escaped] = ACTIONS(4562), + [sym__shortcode_open] = ACTIONS(4562), + [sym__unclosed_span] = ACTIONS(4562), + }, + [STATE(697)] = { + [sym__backslash_escape] = ACTIONS(4920), + [sym_entity_reference] = ACTIONS(4920), + [sym_numeric_character_reference] = ACTIONS(4920), + [anon_sym_LT] = ACTIONS(4922), + [anon_sym_GT] = ACTIONS(4920), + [anon_sym_BANG] = ACTIONS(4920), + [anon_sym_DQUOTE] = ACTIONS(4920), + [anon_sym_POUND] = ACTIONS(4920), + [anon_sym_DOLLAR] = ACTIONS(4920), + [anon_sym_PERCENT] = ACTIONS(4920), + [anon_sym_AMP] = ACTIONS(4922), + [anon_sym_SQUOTE] = ACTIONS(4920), + [anon_sym_STAR] = ACTIONS(4920), + [anon_sym_PLUS] = ACTIONS(4920), + [anon_sym_COMMA] = ACTIONS(4920), + [anon_sym_DASH] = ACTIONS(4922), + [anon_sym_DOT] = ACTIONS(4922), + [anon_sym_SLASH] = ACTIONS(4920), + [anon_sym_COLON] = ACTIONS(4920), + [anon_sym_SEMI] = ACTIONS(4920), + [anon_sym_EQ] = ACTIONS(4920), + [anon_sym_QMARK] = ACTIONS(4920), + [anon_sym_LBRACK] = ACTIONS(4922), + [anon_sym_BSLASH] = ACTIONS(4922), + [anon_sym_CARET] = ACTIONS(4922), + [anon_sym__] = ACTIONS(4920), + [anon_sym_BQUOTE] = ACTIONS(4920), + [anon_sym_LBRACE] = ACTIONS(4920), + [anon_sym_PIPE] = ACTIONS(4920), + [anon_sym_TILDE] = ACTIONS(4920), + [anon_sym_LPAREN] = ACTIONS(4920), + [anon_sym_RPAREN] = ACTIONS(4920), + [sym__newline_token] = ACTIONS(4920), + [aux_sym_insert_token1] = ACTIONS(4920), + [aux_sym_delete_token1] = ACTIONS(4920), + [aux_sym_highlight_token1] = ACTIONS(4920), + [aux_sym_edit_comment_token1] = ACTIONS(4920), + [anon_sym_CARET_LBRACK] = ACTIONS(4920), + [anon_sym_LBRACK_CARET] = ACTIONS(4920), + [sym_uri_autolink] = ACTIONS(4920), + [sym_email_autolink] = ACTIONS(4920), + [sym__whitespace_ge_2] = ACTIONS(4920), + [aux_sym__whitespace_token1] = ACTIONS(4922), + [sym__word_no_digit] = ACTIONS(4920), + [sym__digits] = ACTIONS(4920), + [anon_sym_DASH_DASH] = ACTIONS(4922), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4920), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4920), + [sym__code_span_start] = ACTIONS(4920), + [sym__emphasis_open_star] = ACTIONS(4920), + [sym__emphasis_open_underscore] = ACTIONS(4920), + [sym__strikeout_open] = ACTIONS(4920), + [sym__strikeout_close] = ACTIONS(4920), + [sym__latex_span_start] = ACTIONS(4920), + [sym__single_quote_open] = ACTIONS(4920), + [sym__double_quote_open] = ACTIONS(4920), + [sym__superscript_open] = ACTIONS(4920), + [sym__subscript_open] = ACTIONS(4920), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4920), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4920), + [sym__cite_author_in_text] = ACTIONS(4920), + [sym__cite_suppress_author] = ACTIONS(4920), + [sym__shortcode_open_escaped] = ACTIONS(4920), + [sym__shortcode_open] = ACTIONS(4920), + [sym__unclosed_span] = ACTIONS(4920), + }, + [STATE(698)] = { + [sym__backslash_escape] = ACTIONS(4924), + [sym_entity_reference] = ACTIONS(4924), + [sym_numeric_character_reference] = ACTIONS(4924), + [anon_sym_LT] = ACTIONS(4926), + [anon_sym_GT] = ACTIONS(4924), + [anon_sym_BANG] = ACTIONS(4924), + [anon_sym_DQUOTE] = ACTIONS(4924), + [anon_sym_POUND] = ACTIONS(4924), + [anon_sym_DOLLAR] = ACTIONS(4924), + [anon_sym_PERCENT] = ACTIONS(4924), + [anon_sym_AMP] = ACTIONS(4926), + [anon_sym_SQUOTE] = ACTIONS(4924), + [anon_sym_STAR] = ACTIONS(4924), + [anon_sym_PLUS] = ACTIONS(4924), + [anon_sym_COMMA] = ACTIONS(4924), + [anon_sym_DASH] = ACTIONS(4926), + [anon_sym_DOT] = ACTIONS(4926), + [anon_sym_SLASH] = ACTIONS(4924), + [anon_sym_COLON] = ACTIONS(4924), + [anon_sym_SEMI] = ACTIONS(4924), + [anon_sym_EQ] = ACTIONS(4924), + [anon_sym_QMARK] = ACTIONS(4924), + [anon_sym_LBRACK] = ACTIONS(4926), + [anon_sym_BSLASH] = ACTIONS(4926), + [anon_sym_CARET] = ACTIONS(4926), + [anon_sym__] = ACTIONS(4924), + [anon_sym_BQUOTE] = ACTIONS(4924), + [anon_sym_LBRACE] = ACTIONS(4924), + [anon_sym_PIPE] = ACTIONS(4924), + [anon_sym_TILDE] = ACTIONS(4924), + [anon_sym_LPAREN] = ACTIONS(4924), + [anon_sym_RPAREN] = ACTIONS(4924), + [sym__newline_token] = ACTIONS(4924), + [aux_sym_insert_token1] = ACTIONS(4924), + [aux_sym_delete_token1] = ACTIONS(4924), + [aux_sym_highlight_token1] = ACTIONS(4924), + [aux_sym_edit_comment_token1] = ACTIONS(4924), + [anon_sym_CARET_LBRACK] = ACTIONS(4924), + [anon_sym_LBRACK_CARET] = ACTIONS(4924), + [sym_uri_autolink] = ACTIONS(4924), + [sym_email_autolink] = ACTIONS(4924), + [sym__whitespace_ge_2] = ACTIONS(4924), + [aux_sym__whitespace_token1] = ACTIONS(4926), + [sym__word_no_digit] = ACTIONS(4924), + [sym__digits] = ACTIONS(4924), + [anon_sym_DASH_DASH] = ACTIONS(4926), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4924), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4924), + [sym__code_span_start] = ACTIONS(4924), + [sym__emphasis_open_star] = ACTIONS(4924), + [sym__emphasis_open_underscore] = ACTIONS(4924), + [sym__strikeout_open] = ACTIONS(4924), + [sym__latex_span_start] = ACTIONS(4924), + [sym__single_quote_open] = ACTIONS(4924), + [sym__double_quote_open] = ACTIONS(4924), + [sym__double_quote_close] = ACTIONS(4924), + [sym__superscript_open] = ACTIONS(4924), + [sym__subscript_open] = ACTIONS(4924), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4924), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4924), + [sym__cite_author_in_text] = ACTIONS(4924), + [sym__cite_suppress_author] = ACTIONS(4924), + [sym__shortcode_open_escaped] = ACTIONS(4924), + [sym__shortcode_open] = ACTIONS(4924), + [sym__unclosed_span] = ACTIONS(4924), + }, + [STATE(699)] = { + [sym__backslash_escape] = ACTIONS(4928), + [sym_entity_reference] = ACTIONS(4928), + [sym_numeric_character_reference] = ACTIONS(4928), + [anon_sym_LT] = ACTIONS(4930), + [anon_sym_GT] = ACTIONS(4928), + [anon_sym_BANG] = ACTIONS(4928), + [anon_sym_DQUOTE] = ACTIONS(4928), + [anon_sym_POUND] = ACTIONS(4928), + [anon_sym_DOLLAR] = ACTIONS(4928), + [anon_sym_PERCENT] = ACTIONS(4928), + [anon_sym_AMP] = ACTIONS(4930), + [anon_sym_SQUOTE] = ACTIONS(4928), + [anon_sym_STAR] = ACTIONS(4928), + [anon_sym_PLUS] = ACTIONS(4928), + [anon_sym_COMMA] = ACTIONS(4928), + [anon_sym_DASH] = ACTIONS(4930), + [anon_sym_DOT] = ACTIONS(4930), + [anon_sym_SLASH] = ACTIONS(4928), + [anon_sym_COLON] = ACTIONS(4928), + [anon_sym_SEMI] = ACTIONS(4928), + [anon_sym_EQ] = ACTIONS(4928), + [anon_sym_QMARK] = ACTIONS(4928), + [anon_sym_LBRACK] = ACTIONS(4930), + [anon_sym_BSLASH] = ACTIONS(4930), + [anon_sym_CARET] = ACTIONS(4930), + [anon_sym__] = ACTIONS(4928), + [anon_sym_BQUOTE] = ACTIONS(4928), + [anon_sym_LBRACE] = ACTIONS(4928), + [anon_sym_PIPE] = ACTIONS(4928), + [anon_sym_TILDE] = ACTIONS(4928), + [anon_sym_LPAREN] = ACTIONS(4928), + [anon_sym_RPAREN] = ACTIONS(4928), + [sym__newline_token] = ACTIONS(4928), + [aux_sym_insert_token1] = ACTIONS(4928), + [aux_sym_delete_token1] = ACTIONS(4928), + [aux_sym_highlight_token1] = ACTIONS(4928), + [aux_sym_edit_comment_token1] = ACTIONS(4928), + [anon_sym_CARET_LBRACK] = ACTIONS(4928), + [anon_sym_LBRACK_CARET] = ACTIONS(4928), + [sym_uri_autolink] = ACTIONS(4928), + [sym_email_autolink] = ACTIONS(4928), + [sym__whitespace_ge_2] = ACTIONS(4928), + [aux_sym__whitespace_token1] = ACTIONS(4930), + [sym__word_no_digit] = ACTIONS(4928), + [sym__digits] = ACTIONS(4928), + [anon_sym_DASH_DASH] = ACTIONS(4930), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4928), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4928), + [sym__code_span_start] = ACTIONS(4928), + [sym__emphasis_open_star] = ACTIONS(4928), + [sym__emphasis_open_underscore] = ACTIONS(4928), + [sym__strikeout_open] = ACTIONS(4928), + [sym__latex_span_start] = ACTIONS(4928), + [sym__single_quote_open] = ACTIONS(4928), + [sym__double_quote_open] = ACTIONS(4928), + [sym__double_quote_close] = ACTIONS(4928), + [sym__superscript_open] = ACTIONS(4928), + [sym__subscript_open] = ACTIONS(4928), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4928), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4928), + [sym__cite_author_in_text] = ACTIONS(4928), + [sym__cite_suppress_author] = ACTIONS(4928), + [sym__shortcode_open_escaped] = ACTIONS(4928), + [sym__shortcode_open] = ACTIONS(4928), + [sym__unclosed_span] = ACTIONS(4928), + }, + [STATE(700)] = { + [sym__backslash_escape] = ACTIONS(4932), + [sym_entity_reference] = ACTIONS(4932), + [sym_numeric_character_reference] = ACTIONS(4932), + [anon_sym_LT] = ACTIONS(4934), + [anon_sym_GT] = ACTIONS(4932), + [anon_sym_BANG] = ACTIONS(4932), + [anon_sym_DQUOTE] = ACTIONS(4932), + [anon_sym_POUND] = ACTIONS(4932), + [anon_sym_DOLLAR] = ACTIONS(4932), + [anon_sym_PERCENT] = ACTIONS(4932), + [anon_sym_AMP] = ACTIONS(4934), + [anon_sym_SQUOTE] = ACTIONS(4932), + [anon_sym_STAR] = ACTIONS(4932), + [anon_sym_PLUS] = ACTIONS(4932), + [anon_sym_COMMA] = ACTIONS(4932), + [anon_sym_DASH] = ACTIONS(4934), + [anon_sym_DOT] = ACTIONS(4934), + [anon_sym_SLASH] = ACTIONS(4932), + [anon_sym_COLON] = ACTIONS(4932), + [anon_sym_SEMI] = ACTIONS(4932), + [anon_sym_EQ] = ACTIONS(4932), + [anon_sym_QMARK] = ACTIONS(4932), + [anon_sym_LBRACK] = ACTIONS(4934), + [anon_sym_BSLASH] = ACTIONS(4934), + [anon_sym_CARET] = ACTIONS(4934), + [anon_sym__] = ACTIONS(4932), + [anon_sym_BQUOTE] = ACTIONS(4932), + [anon_sym_LBRACE] = ACTIONS(4932), + [anon_sym_PIPE] = ACTIONS(4932), + [anon_sym_TILDE] = ACTIONS(4932), + [anon_sym_LPAREN] = ACTIONS(4932), + [anon_sym_RPAREN] = ACTIONS(4932), + [sym__newline_token] = ACTIONS(4932), + [aux_sym_insert_token1] = ACTIONS(4932), + [aux_sym_delete_token1] = ACTIONS(4932), + [aux_sym_highlight_token1] = ACTIONS(4932), + [aux_sym_edit_comment_token1] = ACTIONS(4932), + [anon_sym_CARET_LBRACK] = ACTIONS(4932), + [anon_sym_LBRACK_CARET] = ACTIONS(4932), + [sym_uri_autolink] = ACTIONS(4932), + [sym_email_autolink] = ACTIONS(4932), + [sym__whitespace_ge_2] = ACTIONS(4932), + [aux_sym__whitespace_token1] = ACTIONS(4934), + [sym__word_no_digit] = ACTIONS(4932), + [sym__digits] = ACTIONS(4932), + [anon_sym_DASH_DASH] = ACTIONS(4934), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4932), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4932), + [sym__code_span_start] = ACTIONS(4932), + [sym__emphasis_open_star] = ACTIONS(4932), + [sym__emphasis_open_underscore] = ACTIONS(4932), + [sym__strikeout_open] = ACTIONS(4932), + [sym__strikeout_close] = ACTIONS(4932), + [sym__latex_span_start] = ACTIONS(4932), + [sym__single_quote_open] = ACTIONS(4932), + [sym__double_quote_open] = ACTIONS(4932), + [sym__superscript_open] = ACTIONS(4932), + [sym__subscript_open] = ACTIONS(4932), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4932), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4932), + [sym__cite_author_in_text] = ACTIONS(4932), + [sym__cite_suppress_author] = ACTIONS(4932), + [sym__shortcode_open_escaped] = ACTIONS(4932), + [sym__shortcode_open] = ACTIONS(4932), + [sym__unclosed_span] = ACTIONS(4932), + }, + [STATE(701)] = { + [ts_builtin_sym_end] = ACTIONS(4936), + [sym__backslash_escape] = ACTIONS(4936), + [sym_entity_reference] = ACTIONS(4936), + [sym_numeric_character_reference] = ACTIONS(4936), + [anon_sym_LT] = ACTIONS(4938), + [anon_sym_GT] = ACTIONS(4936), + [anon_sym_BANG] = ACTIONS(4936), + [anon_sym_DQUOTE] = ACTIONS(4936), + [anon_sym_POUND] = ACTIONS(4936), + [anon_sym_DOLLAR] = ACTIONS(4936), + [anon_sym_PERCENT] = ACTIONS(4936), + [anon_sym_AMP] = ACTIONS(4938), + [anon_sym_SQUOTE] = ACTIONS(4936), + [anon_sym_STAR] = ACTIONS(4936), + [anon_sym_PLUS] = ACTIONS(4936), + [anon_sym_COMMA] = ACTIONS(4936), + [anon_sym_DASH] = ACTIONS(4938), + [anon_sym_DOT] = ACTIONS(4938), + [anon_sym_SLASH] = ACTIONS(4936), + [anon_sym_COLON] = ACTIONS(4936), + [anon_sym_SEMI] = ACTIONS(4936), + [anon_sym_EQ] = ACTIONS(4936), + [anon_sym_QMARK] = ACTIONS(4936), + [anon_sym_LBRACK] = ACTIONS(4938), + [anon_sym_BSLASH] = ACTIONS(4938), + [anon_sym_CARET] = ACTIONS(4938), + [anon_sym__] = ACTIONS(4936), + [anon_sym_BQUOTE] = ACTIONS(4936), + [anon_sym_LBRACE] = ACTIONS(4936), + [anon_sym_PIPE] = ACTIONS(4936), + [anon_sym_TILDE] = ACTIONS(4936), + [anon_sym_LPAREN] = ACTIONS(4936), + [anon_sym_RPAREN] = ACTIONS(4936), + [sym__newline_token] = ACTIONS(4936), + [aux_sym_insert_token1] = ACTIONS(4936), + [aux_sym_delete_token1] = ACTIONS(4936), + [aux_sym_highlight_token1] = ACTIONS(4936), + [aux_sym_edit_comment_token1] = ACTIONS(4936), + [anon_sym_CARET_LBRACK] = ACTIONS(4936), + [anon_sym_LBRACK_CARET] = ACTIONS(4936), + [sym_uri_autolink] = ACTIONS(4936), + [sym_email_autolink] = ACTIONS(4936), + [sym__whitespace_ge_2] = ACTIONS(4936), + [aux_sym__whitespace_token1] = ACTIONS(4938), + [sym__word_no_digit] = ACTIONS(4936), + [sym__digits] = ACTIONS(4936), + [anon_sym_DASH_DASH] = ACTIONS(4938), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4936), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4936), + [sym__code_span_start] = ACTIONS(4936), + [sym__emphasis_open_star] = ACTIONS(4936), + [sym__emphasis_open_underscore] = ACTIONS(4936), + [sym__strikeout_open] = ACTIONS(4936), + [sym__latex_span_start] = ACTIONS(4936), + [sym__single_quote_open] = ACTIONS(4936), + [sym__double_quote_open] = ACTIONS(4936), + [sym__superscript_open] = ACTIONS(4936), + [sym__subscript_open] = ACTIONS(4936), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4936), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4936), + [sym__cite_author_in_text] = ACTIONS(4936), + [sym__cite_suppress_author] = ACTIONS(4936), + [sym__shortcode_open_escaped] = ACTIONS(4936), + [sym__shortcode_open] = ACTIONS(4936), + [sym__unclosed_span] = ACTIONS(4936), + }, + [STATE(702)] = { + [sym__backslash_escape] = ACTIONS(4940), + [sym_entity_reference] = ACTIONS(4940), + [sym_numeric_character_reference] = ACTIONS(4940), + [anon_sym_LT] = ACTIONS(4942), + [anon_sym_GT] = ACTIONS(4940), + [anon_sym_BANG] = ACTIONS(4940), + [anon_sym_DQUOTE] = ACTIONS(4940), + [anon_sym_POUND] = ACTIONS(4940), + [anon_sym_DOLLAR] = ACTIONS(4940), + [anon_sym_PERCENT] = ACTIONS(4940), + [anon_sym_AMP] = ACTIONS(4942), + [anon_sym_SQUOTE] = ACTIONS(4940), + [anon_sym_STAR] = ACTIONS(4940), + [anon_sym_PLUS] = ACTIONS(4940), + [anon_sym_COMMA] = ACTIONS(4940), + [anon_sym_DASH] = ACTIONS(4942), + [anon_sym_DOT] = ACTIONS(4942), + [anon_sym_SLASH] = ACTIONS(4940), + [anon_sym_COLON] = ACTIONS(4940), + [anon_sym_SEMI] = ACTIONS(4940), + [anon_sym_EQ] = ACTIONS(4940), + [anon_sym_QMARK] = ACTIONS(4940), + [anon_sym_LBRACK] = ACTIONS(4942), + [anon_sym_BSLASH] = ACTIONS(4942), + [anon_sym_CARET] = ACTIONS(4942), + [anon_sym__] = ACTIONS(4940), + [anon_sym_BQUOTE] = ACTIONS(4940), + [anon_sym_LBRACE] = ACTIONS(4940), + [anon_sym_PIPE] = ACTIONS(4940), + [anon_sym_TILDE] = ACTIONS(4940), + [anon_sym_LPAREN] = ACTIONS(4940), + [anon_sym_RPAREN] = ACTIONS(4940), + [sym__newline_token] = ACTIONS(4940), + [aux_sym_insert_token1] = ACTIONS(4940), + [aux_sym_delete_token1] = ACTIONS(4940), + [aux_sym_highlight_token1] = ACTIONS(4940), + [aux_sym_edit_comment_token1] = ACTIONS(4940), + [anon_sym_CARET_LBRACK] = ACTIONS(4940), + [anon_sym_LBRACK_CARET] = ACTIONS(4940), + [sym_uri_autolink] = ACTIONS(4940), + [sym_email_autolink] = ACTIONS(4940), + [sym__whitespace_ge_2] = ACTIONS(4940), + [aux_sym__whitespace_token1] = ACTIONS(4942), + [sym__word_no_digit] = ACTIONS(4940), + [sym__digits] = ACTIONS(4940), + [anon_sym_DASH_DASH] = ACTIONS(4942), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4940), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4940), + [sym__code_span_start] = ACTIONS(4940), + [sym__emphasis_open_star] = ACTIONS(4940), + [sym__emphasis_open_underscore] = ACTIONS(4940), + [sym__strikeout_open] = ACTIONS(4940), + [sym__latex_span_start] = ACTIONS(4940), + [sym__single_quote_open] = ACTIONS(4940), + [sym__double_quote_open] = ACTIONS(4940), + [sym__double_quote_close] = ACTIONS(4940), + [sym__superscript_open] = ACTIONS(4940), + [sym__subscript_open] = ACTIONS(4940), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4940), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4940), + [sym__cite_author_in_text] = ACTIONS(4940), + [sym__cite_suppress_author] = ACTIONS(4940), + [sym__shortcode_open_escaped] = ACTIONS(4940), + [sym__shortcode_open] = ACTIONS(4940), + [sym__unclosed_span] = ACTIONS(4940), + }, + [STATE(703)] = { + [sym__backslash_escape] = ACTIONS(4944), + [sym_entity_reference] = ACTIONS(4944), + [sym_numeric_character_reference] = ACTIONS(4944), + [anon_sym_LT] = ACTIONS(4946), + [anon_sym_GT] = ACTIONS(4944), + [anon_sym_BANG] = ACTIONS(4944), + [anon_sym_DQUOTE] = ACTIONS(4944), + [anon_sym_POUND] = ACTIONS(4944), + [anon_sym_DOLLAR] = ACTIONS(4944), + [anon_sym_PERCENT] = ACTIONS(4944), + [anon_sym_AMP] = ACTIONS(4946), + [anon_sym_SQUOTE] = ACTIONS(4944), + [anon_sym_STAR] = ACTIONS(4944), + [anon_sym_PLUS] = ACTIONS(4944), + [anon_sym_COMMA] = ACTIONS(4944), + [anon_sym_DASH] = ACTIONS(4946), + [anon_sym_DOT] = ACTIONS(4946), + [anon_sym_SLASH] = ACTIONS(4944), + [anon_sym_COLON] = ACTIONS(4944), + [anon_sym_SEMI] = ACTIONS(4944), + [anon_sym_EQ] = ACTIONS(4944), + [anon_sym_QMARK] = ACTIONS(4944), + [anon_sym_LBRACK] = ACTIONS(4946), + [anon_sym_BSLASH] = ACTIONS(4946), + [anon_sym_CARET] = ACTIONS(4946), + [anon_sym__] = ACTIONS(4944), + [anon_sym_BQUOTE] = ACTIONS(4944), + [anon_sym_LBRACE] = ACTIONS(4944), + [anon_sym_PIPE] = ACTIONS(4944), + [anon_sym_TILDE] = ACTIONS(4944), + [anon_sym_LPAREN] = ACTIONS(4944), + [anon_sym_RPAREN] = ACTIONS(4944), + [sym__newline_token] = ACTIONS(4944), + [aux_sym_insert_token1] = ACTIONS(4944), + [aux_sym_delete_token1] = ACTIONS(4944), + [aux_sym_highlight_token1] = ACTIONS(4944), + [aux_sym_edit_comment_token1] = ACTIONS(4944), + [anon_sym_CARET_LBRACK] = ACTIONS(4944), + [anon_sym_LBRACK_CARET] = ACTIONS(4944), + [sym_uri_autolink] = ACTIONS(4944), + [sym_email_autolink] = ACTIONS(4944), + [sym__whitespace_ge_2] = ACTIONS(4944), + [aux_sym__whitespace_token1] = ACTIONS(4946), + [sym__word_no_digit] = ACTIONS(4944), + [sym__digits] = ACTIONS(4944), + [anon_sym_DASH_DASH] = ACTIONS(4946), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4944), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4944), + [sym__code_span_start] = ACTIONS(4944), + [sym__emphasis_open_star] = ACTIONS(4944), + [sym__emphasis_open_underscore] = ACTIONS(4944), + [sym__strikeout_open] = ACTIONS(4944), + [sym__strikeout_close] = ACTIONS(4944), + [sym__latex_span_start] = ACTIONS(4944), + [sym__single_quote_open] = ACTIONS(4944), + [sym__double_quote_open] = ACTIONS(4944), + [sym__superscript_open] = ACTIONS(4944), + [sym__subscript_open] = ACTIONS(4944), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4944), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4944), + [sym__cite_author_in_text] = ACTIONS(4944), + [sym__cite_suppress_author] = ACTIONS(4944), + [sym__shortcode_open_escaped] = ACTIONS(4944), + [sym__shortcode_open] = ACTIONS(4944), + [sym__unclosed_span] = ACTIONS(4944), + }, + [STATE(704)] = { + [ts_builtin_sym_end] = ACTIONS(4948), + [sym__backslash_escape] = ACTIONS(4948), + [sym_entity_reference] = ACTIONS(4948), + [sym_numeric_character_reference] = ACTIONS(4948), + [anon_sym_LT] = ACTIONS(4950), + [anon_sym_GT] = ACTIONS(4948), + [anon_sym_BANG] = ACTIONS(4948), + [anon_sym_DQUOTE] = ACTIONS(4948), + [anon_sym_POUND] = ACTIONS(4948), + [anon_sym_DOLLAR] = ACTIONS(4948), + [anon_sym_PERCENT] = ACTIONS(4948), + [anon_sym_AMP] = ACTIONS(4950), + [anon_sym_SQUOTE] = ACTIONS(4948), + [anon_sym_STAR] = ACTIONS(4948), + [anon_sym_PLUS] = ACTIONS(4948), + [anon_sym_COMMA] = ACTIONS(4948), + [anon_sym_DASH] = ACTIONS(4950), + [anon_sym_DOT] = ACTIONS(4950), + [anon_sym_SLASH] = ACTIONS(4948), + [anon_sym_COLON] = ACTIONS(4948), + [anon_sym_SEMI] = ACTIONS(4948), + [anon_sym_EQ] = ACTIONS(4948), + [anon_sym_QMARK] = ACTIONS(4948), + [anon_sym_LBRACK] = ACTIONS(4950), + [anon_sym_BSLASH] = ACTIONS(4950), + [anon_sym_CARET] = ACTIONS(4950), + [anon_sym__] = ACTIONS(4948), + [anon_sym_BQUOTE] = ACTIONS(4948), + [anon_sym_LBRACE] = ACTIONS(4948), + [anon_sym_PIPE] = ACTIONS(4948), + [anon_sym_TILDE] = ACTIONS(4948), + [anon_sym_LPAREN] = ACTIONS(4948), + [anon_sym_RPAREN] = ACTIONS(4948), + [sym__newline_token] = ACTIONS(4948), + [aux_sym_insert_token1] = ACTIONS(4948), + [aux_sym_delete_token1] = ACTIONS(4948), + [aux_sym_highlight_token1] = ACTIONS(4948), + [aux_sym_edit_comment_token1] = ACTIONS(4948), + [anon_sym_CARET_LBRACK] = ACTIONS(4948), + [anon_sym_LBRACK_CARET] = ACTIONS(4948), + [sym_uri_autolink] = ACTIONS(4948), + [sym_email_autolink] = ACTIONS(4948), + [sym__whitespace_ge_2] = ACTIONS(4948), + [aux_sym__whitespace_token1] = ACTIONS(4950), + [sym__word_no_digit] = ACTIONS(4948), + [sym__digits] = ACTIONS(4948), + [anon_sym_DASH_DASH] = ACTIONS(4950), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4948), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4948), + [sym__code_span_start] = ACTIONS(4948), + [sym__emphasis_open_star] = ACTIONS(4948), + [sym__emphasis_open_underscore] = ACTIONS(4948), + [sym__strikeout_open] = ACTIONS(4948), + [sym__latex_span_start] = ACTIONS(4948), + [sym__single_quote_open] = ACTIONS(4948), + [sym__double_quote_open] = ACTIONS(4948), + [sym__superscript_open] = ACTIONS(4948), + [sym__subscript_open] = ACTIONS(4948), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4948), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4948), + [sym__cite_author_in_text] = ACTIONS(4948), + [sym__cite_suppress_author] = ACTIONS(4948), + [sym__shortcode_open_escaped] = ACTIONS(4948), + [sym__shortcode_open] = ACTIONS(4948), + [sym__unclosed_span] = ACTIONS(4948), + }, + [STATE(705)] = { + [sym__backslash_escape] = ACTIONS(4952), + [sym_entity_reference] = ACTIONS(4952), + [sym_numeric_character_reference] = ACTIONS(4952), + [anon_sym_LT] = ACTIONS(4954), + [anon_sym_GT] = ACTIONS(4952), + [anon_sym_BANG] = ACTIONS(4952), + [anon_sym_DQUOTE] = ACTIONS(4952), + [anon_sym_POUND] = ACTIONS(4952), + [anon_sym_DOLLAR] = ACTIONS(4952), + [anon_sym_PERCENT] = ACTIONS(4952), + [anon_sym_AMP] = ACTIONS(4954), + [anon_sym_SQUOTE] = ACTIONS(4952), + [anon_sym_STAR] = ACTIONS(4952), + [anon_sym_PLUS] = ACTIONS(4952), + [anon_sym_COMMA] = ACTIONS(4952), + [anon_sym_DASH] = ACTIONS(4954), + [anon_sym_DOT] = ACTIONS(4954), + [anon_sym_SLASH] = ACTIONS(4952), + [anon_sym_COLON] = ACTIONS(4952), + [anon_sym_SEMI] = ACTIONS(4952), + [anon_sym_EQ] = ACTIONS(4952), + [anon_sym_QMARK] = ACTIONS(4952), + [anon_sym_LBRACK] = ACTIONS(4954), + [anon_sym_BSLASH] = ACTIONS(4954), + [anon_sym_CARET] = ACTIONS(4954), + [anon_sym__] = ACTIONS(4952), + [anon_sym_BQUOTE] = ACTIONS(4952), + [anon_sym_LBRACE] = ACTIONS(4952), + [anon_sym_PIPE] = ACTIONS(4952), + [anon_sym_TILDE] = ACTIONS(4952), + [anon_sym_LPAREN] = ACTIONS(4952), + [anon_sym_RPAREN] = ACTIONS(4952), + [sym__newline_token] = ACTIONS(4952), + [aux_sym_insert_token1] = ACTIONS(4952), + [aux_sym_delete_token1] = ACTIONS(4952), + [aux_sym_highlight_token1] = ACTIONS(4952), + [aux_sym_edit_comment_token1] = ACTIONS(4952), + [anon_sym_CARET_LBRACK] = ACTIONS(4952), + [anon_sym_LBRACK_CARET] = ACTIONS(4952), + [sym_uri_autolink] = ACTIONS(4952), + [sym_email_autolink] = ACTIONS(4952), + [sym__whitespace_ge_2] = ACTIONS(4952), + [aux_sym__whitespace_token1] = ACTIONS(4954), + [sym__word_no_digit] = ACTIONS(4952), + [sym__digits] = ACTIONS(4952), + [anon_sym_DASH_DASH] = ACTIONS(4954), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4952), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4952), + [sym__code_span_start] = ACTIONS(4952), + [sym__emphasis_open_star] = ACTIONS(4952), + [sym__emphasis_open_underscore] = ACTIONS(4952), + [sym__strikeout_open] = ACTIONS(4952), + [sym__strikeout_close] = ACTIONS(4952), + [sym__latex_span_start] = ACTIONS(4952), + [sym__single_quote_open] = ACTIONS(4952), + [sym__double_quote_open] = ACTIONS(4952), + [sym__superscript_open] = ACTIONS(4952), + [sym__subscript_open] = ACTIONS(4952), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4952), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4952), + [sym__cite_author_in_text] = ACTIONS(4952), + [sym__cite_suppress_author] = ACTIONS(4952), + [sym__shortcode_open_escaped] = ACTIONS(4952), + [sym__shortcode_open] = ACTIONS(4952), + [sym__unclosed_span] = ACTIONS(4952), + }, + [STATE(706)] = { + [sym__backslash_escape] = ACTIONS(4956), + [sym_entity_reference] = ACTIONS(4956), + [sym_numeric_character_reference] = ACTIONS(4956), + [anon_sym_LT] = ACTIONS(4958), + [anon_sym_GT] = ACTIONS(4956), + [anon_sym_BANG] = ACTIONS(4956), + [anon_sym_DQUOTE] = ACTIONS(4956), + [anon_sym_POUND] = ACTIONS(4956), + [anon_sym_DOLLAR] = ACTIONS(4956), + [anon_sym_PERCENT] = ACTIONS(4956), + [anon_sym_AMP] = ACTIONS(4958), + [anon_sym_SQUOTE] = ACTIONS(4956), + [anon_sym_STAR] = ACTIONS(4956), + [anon_sym_PLUS] = ACTIONS(4956), + [anon_sym_COMMA] = ACTIONS(4956), + [anon_sym_DASH] = ACTIONS(4958), + [anon_sym_DOT] = ACTIONS(4958), + [anon_sym_SLASH] = ACTIONS(4956), + [anon_sym_COLON] = ACTIONS(4956), + [anon_sym_SEMI] = ACTIONS(4956), + [anon_sym_EQ] = ACTIONS(4956), + [anon_sym_QMARK] = ACTIONS(4956), + [anon_sym_LBRACK] = ACTIONS(4958), + [anon_sym_BSLASH] = ACTIONS(4958), + [anon_sym_CARET] = ACTIONS(4958), + [anon_sym__] = ACTIONS(4956), + [anon_sym_BQUOTE] = ACTIONS(4956), + [anon_sym_LBRACE] = ACTIONS(4956), + [anon_sym_PIPE] = ACTIONS(4956), + [anon_sym_TILDE] = ACTIONS(4956), + [anon_sym_LPAREN] = ACTIONS(4956), + [anon_sym_RPAREN] = ACTIONS(4956), + [sym__newline_token] = ACTIONS(4956), + [aux_sym_insert_token1] = ACTIONS(4956), + [aux_sym_delete_token1] = ACTIONS(4956), + [aux_sym_highlight_token1] = ACTIONS(4956), + [aux_sym_edit_comment_token1] = ACTIONS(4956), + [anon_sym_CARET_LBRACK] = ACTIONS(4956), + [anon_sym_LBRACK_CARET] = ACTIONS(4956), + [sym_uri_autolink] = ACTIONS(4956), + [sym_email_autolink] = ACTIONS(4956), + [sym__whitespace_ge_2] = ACTIONS(4956), + [aux_sym__whitespace_token1] = ACTIONS(4958), + [sym__word_no_digit] = ACTIONS(4956), + [sym__digits] = ACTIONS(4956), + [anon_sym_DASH_DASH] = ACTIONS(4958), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4956), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4956), + [sym__code_span_start] = ACTIONS(4956), + [sym__emphasis_open_star] = ACTIONS(4956), + [sym__emphasis_open_underscore] = ACTIONS(4956), + [sym__strikeout_open] = ACTIONS(4956), + [sym__strikeout_close] = ACTIONS(4956), + [sym__latex_span_start] = ACTIONS(4956), + [sym__single_quote_open] = ACTIONS(4956), + [sym__double_quote_open] = ACTIONS(4956), + [sym__superscript_open] = ACTIONS(4956), + [sym__subscript_open] = ACTIONS(4956), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4956), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4956), + [sym__cite_author_in_text] = ACTIONS(4956), + [sym__cite_suppress_author] = ACTIONS(4956), + [sym__shortcode_open_escaped] = ACTIONS(4956), + [sym__shortcode_open] = ACTIONS(4956), + [sym__unclosed_span] = ACTIONS(4956), + }, + [STATE(707)] = { + [sym__backslash_escape] = ACTIONS(4960), + [sym_entity_reference] = ACTIONS(4960), + [sym_numeric_character_reference] = ACTIONS(4960), + [anon_sym_LT] = ACTIONS(4962), + [anon_sym_GT] = ACTIONS(4960), + [anon_sym_BANG] = ACTIONS(4960), + [anon_sym_DQUOTE] = ACTIONS(4960), + [anon_sym_POUND] = ACTIONS(4960), + [anon_sym_DOLLAR] = ACTIONS(4960), + [anon_sym_PERCENT] = ACTIONS(4960), + [anon_sym_AMP] = ACTIONS(4962), + [anon_sym_SQUOTE] = ACTIONS(4960), + [anon_sym_STAR] = ACTIONS(4960), + [anon_sym_PLUS] = ACTIONS(4960), + [anon_sym_COMMA] = ACTIONS(4960), + [anon_sym_DASH] = ACTIONS(4962), + [anon_sym_DOT] = ACTIONS(4962), + [anon_sym_SLASH] = ACTIONS(4960), + [anon_sym_COLON] = ACTIONS(4960), + [anon_sym_SEMI] = ACTIONS(4960), + [anon_sym_EQ] = ACTIONS(4960), + [anon_sym_QMARK] = ACTIONS(4960), + [anon_sym_LBRACK] = ACTIONS(4962), + [anon_sym_BSLASH] = ACTIONS(4962), + [anon_sym_CARET] = ACTIONS(4962), + [anon_sym__] = ACTIONS(4960), + [anon_sym_BQUOTE] = ACTIONS(4960), + [anon_sym_LBRACE] = ACTIONS(4960), + [anon_sym_PIPE] = ACTIONS(4960), + [anon_sym_TILDE] = ACTIONS(4960), + [anon_sym_LPAREN] = ACTIONS(4960), + [anon_sym_RPAREN] = ACTIONS(4960), + [sym__newline_token] = ACTIONS(4960), + [aux_sym_insert_token1] = ACTIONS(4960), + [aux_sym_delete_token1] = ACTIONS(4960), + [aux_sym_highlight_token1] = ACTIONS(4960), + [aux_sym_edit_comment_token1] = ACTIONS(4960), + [anon_sym_CARET_LBRACK] = ACTIONS(4960), + [anon_sym_LBRACK_CARET] = ACTIONS(4960), + [sym_uri_autolink] = ACTIONS(4960), + [sym_email_autolink] = ACTIONS(4960), + [sym__whitespace_ge_2] = ACTIONS(4960), + [aux_sym__whitespace_token1] = ACTIONS(4962), + [sym__word_no_digit] = ACTIONS(4960), + [sym__digits] = ACTIONS(4960), + [anon_sym_DASH_DASH] = ACTIONS(4962), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4960), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4960), + [sym__code_span_start] = ACTIONS(4960), + [sym__emphasis_open_star] = ACTIONS(4960), + [sym__emphasis_open_underscore] = ACTIONS(4960), + [sym__strikeout_open] = ACTIONS(4960), + [sym__strikeout_close] = ACTIONS(4960), + [sym__latex_span_start] = ACTIONS(4960), + [sym__single_quote_open] = ACTIONS(4960), + [sym__double_quote_open] = ACTIONS(4960), + [sym__superscript_open] = ACTIONS(4960), + [sym__subscript_open] = ACTIONS(4960), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4960), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4960), + [sym__cite_author_in_text] = ACTIONS(4960), + [sym__cite_suppress_author] = ACTIONS(4960), + [sym__shortcode_open_escaped] = ACTIONS(4960), + [sym__shortcode_open] = ACTIONS(4960), + [sym__unclosed_span] = ACTIONS(4960), + }, + [STATE(708)] = { + [sym__backslash_escape] = ACTIONS(4964), + [sym_entity_reference] = ACTIONS(4964), + [sym_numeric_character_reference] = ACTIONS(4964), + [anon_sym_LT] = ACTIONS(4966), + [anon_sym_GT] = ACTIONS(4964), + [anon_sym_BANG] = ACTIONS(4964), + [anon_sym_DQUOTE] = ACTIONS(4964), + [anon_sym_POUND] = ACTIONS(4964), + [anon_sym_DOLLAR] = ACTIONS(4964), + [anon_sym_PERCENT] = ACTIONS(4964), + [anon_sym_AMP] = ACTIONS(4966), + [anon_sym_SQUOTE] = ACTIONS(4964), + [anon_sym_STAR] = ACTIONS(4964), + [anon_sym_PLUS] = ACTIONS(4964), + [anon_sym_COMMA] = ACTIONS(4964), + [anon_sym_DASH] = ACTIONS(4966), + [anon_sym_DOT] = ACTIONS(4966), + [anon_sym_SLASH] = ACTIONS(4964), + [anon_sym_COLON] = ACTIONS(4964), + [anon_sym_SEMI] = ACTIONS(4964), + [anon_sym_EQ] = ACTIONS(4964), + [anon_sym_QMARK] = ACTIONS(4964), + [anon_sym_LBRACK] = ACTIONS(4966), + [anon_sym_BSLASH] = ACTIONS(4966), + [anon_sym_CARET] = ACTIONS(4966), + [anon_sym__] = ACTIONS(4964), + [anon_sym_BQUOTE] = ACTIONS(4964), + [anon_sym_LBRACE] = ACTIONS(4964), + [anon_sym_PIPE] = ACTIONS(4964), + [anon_sym_TILDE] = ACTIONS(4964), + [anon_sym_LPAREN] = ACTIONS(4964), + [anon_sym_RPAREN] = ACTIONS(4964), + [sym__newline_token] = ACTIONS(4964), + [aux_sym_insert_token1] = ACTIONS(4964), + [aux_sym_delete_token1] = ACTIONS(4964), + [aux_sym_highlight_token1] = ACTIONS(4964), + [aux_sym_edit_comment_token1] = ACTIONS(4964), + [anon_sym_CARET_LBRACK] = ACTIONS(4964), + [anon_sym_LBRACK_CARET] = ACTIONS(4964), + [sym_uri_autolink] = ACTIONS(4964), + [sym_email_autolink] = ACTIONS(4964), + [sym__whitespace_ge_2] = ACTIONS(4964), + [aux_sym__whitespace_token1] = ACTIONS(4966), + [sym__word_no_digit] = ACTIONS(4964), + [sym__digits] = ACTIONS(4964), + [anon_sym_DASH_DASH] = ACTIONS(4966), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4964), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4964), + [sym__code_span_start] = ACTIONS(4964), + [sym__emphasis_open_star] = ACTIONS(4964), + [sym__emphasis_open_underscore] = ACTIONS(4964), + [sym__strikeout_open] = ACTIONS(4964), + [sym__strikeout_close] = ACTIONS(4964), + [sym__latex_span_start] = ACTIONS(4964), + [sym__single_quote_open] = ACTIONS(4964), + [sym__double_quote_open] = ACTIONS(4964), + [sym__superscript_open] = ACTIONS(4964), + [sym__subscript_open] = ACTIONS(4964), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4964), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4964), + [sym__cite_author_in_text] = ACTIONS(4964), + [sym__cite_suppress_author] = ACTIONS(4964), + [sym__shortcode_open_escaped] = ACTIONS(4964), + [sym__shortcode_open] = ACTIONS(4964), + [sym__unclosed_span] = ACTIONS(4964), + }, + [STATE(709)] = { + [sym__backslash_escape] = ACTIONS(4648), + [sym_entity_reference] = ACTIONS(4648), + [sym_numeric_character_reference] = ACTIONS(4648), + [anon_sym_LT] = ACTIONS(4650), + [anon_sym_GT] = ACTIONS(4648), + [anon_sym_BANG] = ACTIONS(4648), + [anon_sym_DQUOTE] = ACTIONS(4648), + [anon_sym_POUND] = ACTIONS(4648), + [anon_sym_DOLLAR] = ACTIONS(4648), + [anon_sym_PERCENT] = ACTIONS(4648), + [anon_sym_AMP] = ACTIONS(4650), + [anon_sym_SQUOTE] = ACTIONS(4648), + [anon_sym_STAR] = ACTIONS(4648), + [anon_sym_PLUS] = ACTIONS(4648), + [anon_sym_COMMA] = ACTIONS(4648), + [anon_sym_DASH] = ACTIONS(4650), + [anon_sym_DOT] = ACTIONS(4650), + [anon_sym_SLASH] = ACTIONS(4648), + [anon_sym_COLON] = ACTIONS(4648), + [anon_sym_SEMI] = ACTIONS(4648), + [anon_sym_EQ] = ACTIONS(4648), + [anon_sym_QMARK] = ACTIONS(4648), + [anon_sym_LBRACK] = ACTIONS(4650), + [anon_sym_BSLASH] = ACTIONS(4650), + [anon_sym_CARET] = ACTIONS(4650), + [anon_sym__] = ACTIONS(4648), + [anon_sym_BQUOTE] = ACTIONS(4648), + [anon_sym_LBRACE] = ACTIONS(4648), + [anon_sym_PIPE] = ACTIONS(4648), + [anon_sym_TILDE] = ACTIONS(4648), + [anon_sym_LPAREN] = ACTIONS(4648), + [anon_sym_RPAREN] = ACTIONS(4648), + [sym__newline_token] = ACTIONS(4648), + [aux_sym_insert_token1] = ACTIONS(4648), + [aux_sym_delete_token1] = ACTIONS(4648), + [aux_sym_highlight_token1] = ACTIONS(4648), + [aux_sym_edit_comment_token1] = ACTIONS(4648), + [anon_sym_CARET_LBRACK] = ACTIONS(4648), + [anon_sym_LBRACK_CARET] = ACTIONS(4648), + [sym_uri_autolink] = ACTIONS(4648), + [sym_email_autolink] = ACTIONS(4648), + [sym__whitespace_ge_2] = ACTIONS(4648), + [aux_sym__whitespace_token1] = ACTIONS(4650), + [sym__word_no_digit] = ACTIONS(4648), + [sym__digits] = ACTIONS(4648), + [anon_sym_DASH_DASH] = ACTIONS(4650), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4648), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4648), + [sym__code_span_start] = ACTIONS(4648), + [sym__emphasis_open_star] = ACTIONS(4648), + [sym__emphasis_open_underscore] = ACTIONS(4648), + [sym__strikeout_open] = ACTIONS(4648), + [sym__latex_span_start] = ACTIONS(4648), + [sym__single_quote_open] = ACTIONS(4648), + [sym__double_quote_open] = ACTIONS(4648), + [sym__superscript_open] = ACTIONS(4648), + [sym__superscript_close] = ACTIONS(4648), + [sym__subscript_open] = ACTIONS(4648), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4648), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4648), + [sym__cite_author_in_text] = ACTIONS(4648), + [sym__cite_suppress_author] = ACTIONS(4648), + [sym__shortcode_open_escaped] = ACTIONS(4648), + [sym__shortcode_open] = ACTIONS(4648), + [sym__unclosed_span] = ACTIONS(4648), + }, + [STATE(710)] = { + [sym__backslash_escape] = ACTIONS(4968), + [sym_entity_reference] = ACTIONS(4968), + [sym_numeric_character_reference] = ACTIONS(4968), + [anon_sym_LT] = ACTIONS(4970), + [anon_sym_GT] = ACTIONS(4968), + [anon_sym_BANG] = ACTIONS(4968), + [anon_sym_DQUOTE] = ACTIONS(4968), + [anon_sym_POUND] = ACTIONS(4968), + [anon_sym_DOLLAR] = ACTIONS(4968), + [anon_sym_PERCENT] = ACTIONS(4968), + [anon_sym_AMP] = ACTIONS(4970), + [anon_sym_SQUOTE] = ACTIONS(4968), + [anon_sym_STAR] = ACTIONS(4968), + [anon_sym_PLUS] = ACTIONS(4968), + [anon_sym_COMMA] = ACTIONS(4968), + [anon_sym_DASH] = ACTIONS(4970), + [anon_sym_DOT] = ACTIONS(4970), + [anon_sym_SLASH] = ACTIONS(4968), + [anon_sym_COLON] = ACTIONS(4968), + [anon_sym_SEMI] = ACTIONS(4968), + [anon_sym_EQ] = ACTIONS(4968), + [anon_sym_QMARK] = ACTIONS(4968), + [anon_sym_LBRACK] = ACTIONS(4970), + [anon_sym_BSLASH] = ACTIONS(4970), + [anon_sym_CARET] = ACTIONS(4970), + [anon_sym__] = ACTIONS(4968), + [anon_sym_BQUOTE] = ACTIONS(4968), + [anon_sym_LBRACE] = ACTIONS(4968), + [anon_sym_PIPE] = ACTIONS(4968), + [anon_sym_TILDE] = ACTIONS(4968), + [anon_sym_LPAREN] = ACTIONS(4968), + [anon_sym_RPAREN] = ACTIONS(4968), + [sym__newline_token] = ACTIONS(4968), + [aux_sym_insert_token1] = ACTIONS(4968), + [aux_sym_delete_token1] = ACTIONS(4968), + [aux_sym_highlight_token1] = ACTIONS(4968), + [aux_sym_edit_comment_token1] = ACTIONS(4968), + [anon_sym_CARET_LBRACK] = ACTIONS(4968), + [anon_sym_LBRACK_CARET] = ACTIONS(4968), + [sym_uri_autolink] = ACTIONS(4968), + [sym_email_autolink] = ACTIONS(4968), + [sym__whitespace_ge_2] = ACTIONS(4968), + [aux_sym__whitespace_token1] = ACTIONS(4970), + [sym__word_no_digit] = ACTIONS(4968), + [sym__digits] = ACTIONS(4968), + [anon_sym_DASH_DASH] = ACTIONS(4970), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4968), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4968), + [sym__code_span_start] = ACTIONS(4968), + [sym__emphasis_open_star] = ACTIONS(4968), + [sym__emphasis_open_underscore] = ACTIONS(4968), + [sym__strikeout_open] = ACTIONS(4968), + [sym__strikeout_close] = ACTIONS(4968), + [sym__latex_span_start] = ACTIONS(4968), + [sym__single_quote_open] = ACTIONS(4968), + [sym__double_quote_open] = ACTIONS(4968), + [sym__superscript_open] = ACTIONS(4968), + [sym__subscript_open] = ACTIONS(4968), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4968), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4968), + [sym__cite_author_in_text] = ACTIONS(4968), + [sym__cite_suppress_author] = ACTIONS(4968), + [sym__shortcode_open_escaped] = ACTIONS(4968), + [sym__shortcode_open] = ACTIONS(4968), + [sym__unclosed_span] = ACTIONS(4968), + }, + [STATE(711)] = { + [sym__backslash_escape] = ACTIONS(4972), + [sym_entity_reference] = ACTIONS(4972), + [sym_numeric_character_reference] = ACTIONS(4972), + [anon_sym_LT] = ACTIONS(4974), + [anon_sym_GT] = ACTIONS(4972), + [anon_sym_BANG] = ACTIONS(4972), + [anon_sym_DQUOTE] = ACTIONS(4972), + [anon_sym_POUND] = ACTIONS(4972), + [anon_sym_DOLLAR] = ACTIONS(4972), + [anon_sym_PERCENT] = ACTIONS(4972), + [anon_sym_AMP] = ACTIONS(4974), + [anon_sym_SQUOTE] = ACTIONS(4972), + [anon_sym_STAR] = ACTIONS(4972), + [anon_sym_PLUS] = ACTIONS(4972), + [anon_sym_COMMA] = ACTIONS(4972), + [anon_sym_DASH] = ACTIONS(4974), + [anon_sym_DOT] = ACTIONS(4974), + [anon_sym_SLASH] = ACTIONS(4972), + [anon_sym_COLON] = ACTIONS(4972), + [anon_sym_SEMI] = ACTIONS(4972), + [anon_sym_EQ] = ACTIONS(4972), + [anon_sym_QMARK] = ACTIONS(4972), + [anon_sym_LBRACK] = ACTIONS(4974), + [anon_sym_BSLASH] = ACTIONS(4974), + [anon_sym_CARET] = ACTIONS(4974), + [anon_sym__] = ACTIONS(4972), + [anon_sym_BQUOTE] = ACTIONS(4972), + [anon_sym_LBRACE] = ACTIONS(4972), + [anon_sym_PIPE] = ACTIONS(4972), + [anon_sym_TILDE] = ACTIONS(4972), + [anon_sym_LPAREN] = ACTIONS(4972), + [anon_sym_RPAREN] = ACTIONS(4972), + [sym__newline_token] = ACTIONS(4972), + [aux_sym_insert_token1] = ACTIONS(4972), + [aux_sym_delete_token1] = ACTIONS(4972), + [aux_sym_highlight_token1] = ACTIONS(4972), + [aux_sym_edit_comment_token1] = ACTIONS(4972), + [anon_sym_CARET_LBRACK] = ACTIONS(4972), + [anon_sym_LBRACK_CARET] = ACTIONS(4972), + [sym_uri_autolink] = ACTIONS(4972), + [sym_email_autolink] = ACTIONS(4972), + [sym__whitespace_ge_2] = ACTIONS(4972), + [aux_sym__whitespace_token1] = ACTIONS(4974), + [sym__word_no_digit] = ACTIONS(4972), + [sym__digits] = ACTIONS(4972), + [anon_sym_DASH_DASH] = ACTIONS(4974), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4972), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4972), + [sym__code_span_start] = ACTIONS(4972), + [sym__emphasis_open_star] = ACTIONS(4972), + [sym__emphasis_open_underscore] = ACTIONS(4972), + [sym__strikeout_open] = ACTIONS(4972), + [sym__strikeout_close] = ACTIONS(4972), + [sym__latex_span_start] = ACTIONS(4972), + [sym__single_quote_open] = ACTIONS(4972), + [sym__double_quote_open] = ACTIONS(4972), + [sym__superscript_open] = ACTIONS(4972), + [sym__subscript_open] = ACTIONS(4972), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4972), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4972), + [sym__cite_author_in_text] = ACTIONS(4972), + [sym__cite_suppress_author] = ACTIONS(4972), + [sym__shortcode_open_escaped] = ACTIONS(4972), + [sym__shortcode_open] = ACTIONS(4972), + [sym__unclosed_span] = ACTIONS(4972), + }, + [STATE(712)] = { + [sym__backslash_escape] = ACTIONS(4976), + [sym_entity_reference] = ACTIONS(4976), + [sym_numeric_character_reference] = ACTIONS(4976), + [anon_sym_LT] = ACTIONS(4978), + [anon_sym_GT] = ACTIONS(4976), + [anon_sym_BANG] = ACTIONS(4976), + [anon_sym_DQUOTE] = ACTIONS(4976), + [anon_sym_POUND] = ACTIONS(4976), + [anon_sym_DOLLAR] = ACTIONS(4976), + [anon_sym_PERCENT] = ACTIONS(4976), + [anon_sym_AMP] = ACTIONS(4978), + [anon_sym_SQUOTE] = ACTIONS(4976), + [anon_sym_STAR] = ACTIONS(4976), + [anon_sym_PLUS] = ACTIONS(4976), + [anon_sym_COMMA] = ACTIONS(4976), + [anon_sym_DASH] = ACTIONS(4978), + [anon_sym_DOT] = ACTIONS(4978), + [anon_sym_SLASH] = ACTIONS(4976), + [anon_sym_COLON] = ACTIONS(4976), + [anon_sym_SEMI] = ACTIONS(4976), + [anon_sym_EQ] = ACTIONS(4976), + [anon_sym_QMARK] = ACTIONS(4976), + [anon_sym_LBRACK] = ACTIONS(4978), + [anon_sym_BSLASH] = ACTIONS(4978), + [anon_sym_CARET] = ACTIONS(4978), + [anon_sym__] = ACTIONS(4976), + [anon_sym_BQUOTE] = ACTIONS(4976), + [anon_sym_LBRACE] = ACTIONS(4976), + [anon_sym_PIPE] = ACTIONS(4976), + [anon_sym_TILDE] = ACTIONS(4976), + [anon_sym_LPAREN] = ACTIONS(4976), + [anon_sym_RPAREN] = ACTIONS(4976), + [sym__newline_token] = ACTIONS(4976), + [aux_sym_insert_token1] = ACTIONS(4976), + [aux_sym_delete_token1] = ACTIONS(4976), + [aux_sym_highlight_token1] = ACTIONS(4976), + [aux_sym_edit_comment_token1] = ACTIONS(4976), + [anon_sym_CARET_LBRACK] = ACTIONS(4976), + [anon_sym_LBRACK_CARET] = ACTIONS(4976), + [sym_uri_autolink] = ACTIONS(4976), + [sym_email_autolink] = ACTIONS(4976), + [sym__whitespace_ge_2] = ACTIONS(4976), + [aux_sym__whitespace_token1] = ACTIONS(4978), + [sym__word_no_digit] = ACTIONS(4976), + [sym__digits] = ACTIONS(4976), + [anon_sym_DASH_DASH] = ACTIONS(4978), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4976), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4976), + [sym__code_span_start] = ACTIONS(4976), + [sym__emphasis_open_star] = ACTIONS(4976), + [sym__emphasis_open_underscore] = ACTIONS(4976), + [sym__strikeout_open] = ACTIONS(4976), + [sym__latex_span_start] = ACTIONS(4976), + [sym__single_quote_open] = ACTIONS(4976), + [sym__double_quote_open] = ACTIONS(4976), + [sym__superscript_open] = ACTIONS(4976), + [sym__superscript_close] = ACTIONS(4976), + [sym__subscript_open] = ACTIONS(4976), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4976), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4976), + [sym__cite_author_in_text] = ACTIONS(4976), + [sym__cite_suppress_author] = ACTIONS(4976), + [sym__shortcode_open_escaped] = ACTIONS(4976), + [sym__shortcode_open] = ACTIONS(4976), + [sym__unclosed_span] = ACTIONS(4976), + }, + [STATE(713)] = { + [sym__backslash_escape] = ACTIONS(4980), + [sym_entity_reference] = ACTIONS(4980), + [sym_numeric_character_reference] = ACTIONS(4980), + [anon_sym_LT] = ACTIONS(4982), + [anon_sym_GT] = ACTIONS(4980), + [anon_sym_BANG] = ACTIONS(4980), + [anon_sym_DQUOTE] = ACTIONS(4980), + [anon_sym_POUND] = ACTIONS(4980), + [anon_sym_DOLLAR] = ACTIONS(4980), + [anon_sym_PERCENT] = ACTIONS(4980), + [anon_sym_AMP] = ACTIONS(4982), + [anon_sym_SQUOTE] = ACTIONS(4980), + [anon_sym_STAR] = ACTIONS(4980), + [anon_sym_PLUS] = ACTIONS(4980), + [anon_sym_COMMA] = ACTIONS(4980), + [anon_sym_DASH] = ACTIONS(4982), + [anon_sym_DOT] = ACTIONS(4982), + [anon_sym_SLASH] = ACTIONS(4980), + [anon_sym_COLON] = ACTIONS(4980), + [anon_sym_SEMI] = ACTIONS(4980), + [anon_sym_EQ] = ACTIONS(4980), + [anon_sym_QMARK] = ACTIONS(4980), + [anon_sym_LBRACK] = ACTIONS(4982), + [anon_sym_BSLASH] = ACTIONS(4982), + [anon_sym_CARET] = ACTIONS(4982), + [anon_sym__] = ACTIONS(4980), + [anon_sym_BQUOTE] = ACTIONS(4980), + [anon_sym_LBRACE] = ACTIONS(4980), + [anon_sym_PIPE] = ACTIONS(4980), + [anon_sym_TILDE] = ACTIONS(4980), + [anon_sym_LPAREN] = ACTIONS(4980), + [anon_sym_RPAREN] = ACTIONS(4980), + [sym__newline_token] = ACTIONS(4980), + [aux_sym_insert_token1] = ACTIONS(4980), + [aux_sym_delete_token1] = ACTIONS(4980), + [aux_sym_highlight_token1] = ACTIONS(4980), + [aux_sym_edit_comment_token1] = ACTIONS(4980), + [anon_sym_CARET_LBRACK] = ACTIONS(4980), + [anon_sym_LBRACK_CARET] = ACTIONS(4980), + [sym_uri_autolink] = ACTIONS(4980), + [sym_email_autolink] = ACTIONS(4980), + [sym__whitespace_ge_2] = ACTIONS(4980), + [aux_sym__whitespace_token1] = ACTIONS(4982), + [sym__word_no_digit] = ACTIONS(4980), + [sym__digits] = ACTIONS(4980), + [anon_sym_DASH_DASH] = ACTIONS(4982), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4980), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4980), + [sym__code_span_start] = ACTIONS(4980), + [sym__emphasis_open_star] = ACTIONS(4980), + [sym__emphasis_open_underscore] = ACTIONS(4980), + [sym__strikeout_open] = ACTIONS(4980), + [sym__latex_span_start] = ACTIONS(4980), + [sym__single_quote_open] = ACTIONS(4980), + [sym__double_quote_open] = ACTIONS(4980), + [sym__superscript_open] = ACTIONS(4980), + [sym__superscript_close] = ACTIONS(4980), + [sym__subscript_open] = ACTIONS(4980), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4980), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4980), + [sym__cite_author_in_text] = ACTIONS(4980), + [sym__cite_suppress_author] = ACTIONS(4980), + [sym__shortcode_open_escaped] = ACTIONS(4980), + [sym__shortcode_open] = ACTIONS(4980), + [sym__unclosed_span] = ACTIONS(4980), + }, + [STATE(714)] = { + [sym__backslash_escape] = ACTIONS(4984), + [sym_entity_reference] = ACTIONS(4984), + [sym_numeric_character_reference] = ACTIONS(4984), + [anon_sym_LT] = ACTIONS(4986), + [anon_sym_GT] = ACTIONS(4984), + [anon_sym_BANG] = ACTIONS(4984), + [anon_sym_DQUOTE] = ACTIONS(4984), + [anon_sym_POUND] = ACTIONS(4984), + [anon_sym_DOLLAR] = ACTIONS(4984), + [anon_sym_PERCENT] = ACTIONS(4984), + [anon_sym_AMP] = ACTIONS(4986), + [anon_sym_SQUOTE] = ACTIONS(4984), + [anon_sym_STAR] = ACTIONS(4984), + [anon_sym_PLUS] = ACTIONS(4984), + [anon_sym_COMMA] = ACTIONS(4984), + [anon_sym_DASH] = ACTIONS(4986), + [anon_sym_DOT] = ACTIONS(4986), + [anon_sym_SLASH] = ACTIONS(4984), + [anon_sym_COLON] = ACTIONS(4984), + [anon_sym_SEMI] = ACTIONS(4984), + [anon_sym_EQ] = ACTIONS(4984), + [anon_sym_QMARK] = ACTIONS(4984), + [anon_sym_LBRACK] = ACTIONS(4986), + [anon_sym_BSLASH] = ACTIONS(4986), + [anon_sym_CARET] = ACTIONS(4986), + [anon_sym__] = ACTIONS(4984), + [anon_sym_BQUOTE] = ACTIONS(4984), + [anon_sym_LBRACE] = ACTIONS(4984), + [anon_sym_PIPE] = ACTIONS(4984), + [anon_sym_TILDE] = ACTIONS(4984), + [anon_sym_LPAREN] = ACTIONS(4984), + [anon_sym_RPAREN] = ACTIONS(4984), + [sym__newline_token] = ACTIONS(4984), + [aux_sym_insert_token1] = ACTIONS(4984), + [aux_sym_insert_token2] = ACTIONS(4984), + [aux_sym_delete_token1] = ACTIONS(4984), + [aux_sym_highlight_token1] = ACTIONS(4984), + [aux_sym_edit_comment_token1] = ACTIONS(4984), + [anon_sym_CARET_LBRACK] = ACTIONS(4984), + [anon_sym_LBRACK_CARET] = ACTIONS(4984), + [sym_uri_autolink] = ACTIONS(4984), + [sym_email_autolink] = ACTIONS(4984), + [sym__whitespace_ge_2] = ACTIONS(4986), + [aux_sym__whitespace_token1] = ACTIONS(4986), + [sym__word_no_digit] = ACTIONS(4984), + [sym__digits] = ACTIONS(4984), + [anon_sym_DASH_DASH] = ACTIONS(4986), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4984), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4984), + [sym__code_span_start] = ACTIONS(4984), + [sym__emphasis_open_star] = ACTIONS(4984), + [sym__emphasis_open_underscore] = ACTIONS(4984), + [sym__strikeout_open] = ACTIONS(4984), + [sym__latex_span_start] = ACTIONS(4984), + [sym__single_quote_open] = ACTIONS(4984), + [sym__double_quote_open] = ACTIONS(4984), + [sym__superscript_open] = ACTIONS(4984), + [sym__subscript_open] = ACTIONS(4984), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4984), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4984), + [sym__cite_author_in_text] = ACTIONS(4984), + [sym__cite_suppress_author] = ACTIONS(4984), + [sym__shortcode_open_escaped] = ACTIONS(4984), + [sym__shortcode_open] = ACTIONS(4984), + [sym__unclosed_span] = ACTIONS(4984), + }, + [STATE(715)] = { + [sym__backslash_escape] = ACTIONS(4988), + [sym_entity_reference] = ACTIONS(4988), + [sym_numeric_character_reference] = ACTIONS(4988), + [anon_sym_LT] = ACTIONS(4990), + [anon_sym_GT] = ACTIONS(4988), + [anon_sym_BANG] = ACTIONS(4988), + [anon_sym_DQUOTE] = ACTIONS(4988), + [anon_sym_POUND] = ACTIONS(4988), + [anon_sym_DOLLAR] = ACTIONS(4988), + [anon_sym_PERCENT] = ACTIONS(4988), + [anon_sym_AMP] = ACTIONS(4990), + [anon_sym_SQUOTE] = ACTIONS(4988), + [anon_sym_STAR] = ACTIONS(4988), + [anon_sym_PLUS] = ACTIONS(4988), + [anon_sym_COMMA] = ACTIONS(4988), + [anon_sym_DASH] = ACTIONS(4990), + [anon_sym_DOT] = ACTIONS(4990), + [anon_sym_SLASH] = ACTIONS(4988), + [anon_sym_COLON] = ACTIONS(4988), + [anon_sym_SEMI] = ACTIONS(4988), + [anon_sym_EQ] = ACTIONS(4988), + [anon_sym_QMARK] = ACTIONS(4988), + [anon_sym_LBRACK] = ACTIONS(4990), + [anon_sym_BSLASH] = ACTIONS(4990), + [anon_sym_CARET] = ACTIONS(4990), + [anon_sym__] = ACTIONS(4988), + [anon_sym_BQUOTE] = ACTIONS(4988), + [anon_sym_LBRACE] = ACTIONS(4988), + [anon_sym_PIPE] = ACTIONS(4988), + [anon_sym_TILDE] = ACTIONS(4988), + [anon_sym_LPAREN] = ACTIONS(4988), + [anon_sym_RPAREN] = ACTIONS(4988), + [sym__newline_token] = ACTIONS(4988), + [aux_sym_insert_token1] = ACTIONS(4988), + [aux_sym_delete_token1] = ACTIONS(4988), + [aux_sym_highlight_token1] = ACTIONS(4988), + [aux_sym_edit_comment_token1] = ACTIONS(4988), + [anon_sym_CARET_LBRACK] = ACTIONS(4988), + [anon_sym_LBRACK_CARET] = ACTIONS(4988), + [sym_uri_autolink] = ACTIONS(4988), + [sym_email_autolink] = ACTIONS(4988), + [sym__whitespace_ge_2] = ACTIONS(4988), + [aux_sym__whitespace_token1] = ACTIONS(4990), + [sym__word_no_digit] = ACTIONS(4988), + [sym__digits] = ACTIONS(4988), + [anon_sym_DASH_DASH] = ACTIONS(4990), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4988), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4988), + [sym__code_span_start] = ACTIONS(4988), + [sym__emphasis_open_star] = ACTIONS(4988), + [sym__emphasis_open_underscore] = ACTIONS(4988), + [sym__strikeout_open] = ACTIONS(4988), + [sym__strikeout_close] = ACTIONS(4988), + [sym__latex_span_start] = ACTIONS(4988), + [sym__single_quote_open] = ACTIONS(4988), + [sym__double_quote_open] = ACTIONS(4988), + [sym__superscript_open] = ACTIONS(4988), + [sym__subscript_open] = ACTIONS(4988), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4988), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4988), + [sym__cite_author_in_text] = ACTIONS(4988), + [sym__cite_suppress_author] = ACTIONS(4988), + [sym__shortcode_open_escaped] = ACTIONS(4988), + [sym__shortcode_open] = ACTIONS(4988), + [sym__unclosed_span] = ACTIONS(4988), + }, + [STATE(716)] = { + [sym__backslash_escape] = ACTIONS(4992), + [sym_entity_reference] = ACTIONS(4992), + [sym_numeric_character_reference] = ACTIONS(4992), + [anon_sym_LT] = ACTIONS(4994), + [anon_sym_GT] = ACTIONS(4992), + [anon_sym_BANG] = ACTIONS(4992), + [anon_sym_DQUOTE] = ACTIONS(4992), + [anon_sym_POUND] = ACTIONS(4992), + [anon_sym_DOLLAR] = ACTIONS(4992), + [anon_sym_PERCENT] = ACTIONS(4992), + [anon_sym_AMP] = ACTIONS(4994), + [anon_sym_SQUOTE] = ACTIONS(4992), + [anon_sym_STAR] = ACTIONS(4992), + [anon_sym_PLUS] = ACTIONS(4992), + [anon_sym_COMMA] = ACTIONS(4992), + [anon_sym_DASH] = ACTIONS(4994), + [anon_sym_DOT] = ACTIONS(4994), + [anon_sym_SLASH] = ACTIONS(4992), + [anon_sym_COLON] = ACTIONS(4992), + [anon_sym_SEMI] = ACTIONS(4992), + [anon_sym_EQ] = ACTIONS(4992), + [anon_sym_QMARK] = ACTIONS(4992), + [anon_sym_LBRACK] = ACTIONS(4994), + [anon_sym_BSLASH] = ACTIONS(4994), + [anon_sym_CARET] = ACTIONS(4994), + [anon_sym__] = ACTIONS(4992), + [anon_sym_BQUOTE] = ACTIONS(4992), + [anon_sym_LBRACE] = ACTIONS(4992), + [anon_sym_PIPE] = ACTIONS(4992), + [anon_sym_TILDE] = ACTIONS(4992), + [anon_sym_LPAREN] = ACTIONS(4992), + [anon_sym_RPAREN] = ACTIONS(4992), + [sym__newline_token] = ACTIONS(4992), + [aux_sym_insert_token1] = ACTIONS(4992), + [aux_sym_delete_token1] = ACTIONS(4992), + [aux_sym_highlight_token1] = ACTIONS(4992), + [aux_sym_edit_comment_token1] = ACTIONS(4992), + [anon_sym_CARET_LBRACK] = ACTIONS(4992), + [anon_sym_LBRACK_CARET] = ACTIONS(4992), + [sym_uri_autolink] = ACTIONS(4992), + [sym_email_autolink] = ACTIONS(4992), + [sym__whitespace_ge_2] = ACTIONS(4992), + [aux_sym__whitespace_token1] = ACTIONS(4994), + [sym__word_no_digit] = ACTIONS(4992), + [sym__digits] = ACTIONS(4992), + [anon_sym_DASH_DASH] = ACTIONS(4994), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4992), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4992), + [sym__code_span_start] = ACTIONS(4992), + [sym__emphasis_open_star] = ACTIONS(4992), + [sym__emphasis_open_underscore] = ACTIONS(4992), + [sym__strikeout_open] = ACTIONS(4992), + [sym__strikeout_close] = ACTIONS(4992), + [sym__latex_span_start] = ACTIONS(4992), + [sym__single_quote_open] = ACTIONS(4992), + [sym__double_quote_open] = ACTIONS(4992), + [sym__superscript_open] = ACTIONS(4992), + [sym__subscript_open] = ACTIONS(4992), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4992), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4992), + [sym__cite_author_in_text] = ACTIONS(4992), + [sym__cite_suppress_author] = ACTIONS(4992), + [sym__shortcode_open_escaped] = ACTIONS(4992), + [sym__shortcode_open] = ACTIONS(4992), + [sym__unclosed_span] = ACTIONS(4992), + }, + [STATE(717)] = { + [sym__backslash_escape] = ACTIONS(4996), + [sym_entity_reference] = ACTIONS(4996), + [sym_numeric_character_reference] = ACTIONS(4996), + [anon_sym_LT] = ACTIONS(4998), + [anon_sym_GT] = ACTIONS(4996), + [anon_sym_BANG] = ACTIONS(4996), + [anon_sym_DQUOTE] = ACTIONS(4996), + [anon_sym_POUND] = ACTIONS(4996), + [anon_sym_DOLLAR] = ACTIONS(4996), + [anon_sym_PERCENT] = ACTIONS(4996), + [anon_sym_AMP] = ACTIONS(4998), + [anon_sym_SQUOTE] = ACTIONS(4996), + [anon_sym_STAR] = ACTIONS(4996), + [anon_sym_PLUS] = ACTIONS(4996), + [anon_sym_COMMA] = ACTIONS(4996), + [anon_sym_DASH] = ACTIONS(4998), + [anon_sym_DOT] = ACTIONS(4998), + [anon_sym_SLASH] = ACTIONS(4996), + [anon_sym_COLON] = ACTIONS(4996), + [anon_sym_SEMI] = ACTIONS(4996), + [anon_sym_EQ] = ACTIONS(4996), + [anon_sym_QMARK] = ACTIONS(4996), + [anon_sym_LBRACK] = ACTIONS(4998), + [anon_sym_BSLASH] = ACTIONS(4998), + [anon_sym_CARET] = ACTIONS(4998), + [anon_sym__] = ACTIONS(4996), + [anon_sym_BQUOTE] = ACTIONS(4996), + [anon_sym_LBRACE] = ACTIONS(4996), + [anon_sym_PIPE] = ACTIONS(4996), + [anon_sym_TILDE] = ACTIONS(4996), + [anon_sym_LPAREN] = ACTIONS(4996), + [anon_sym_RPAREN] = ACTIONS(4996), + [sym__newline_token] = ACTIONS(4996), + [aux_sym_insert_token1] = ACTIONS(4996), + [aux_sym_delete_token1] = ACTIONS(4996), + [aux_sym_highlight_token1] = ACTIONS(4996), + [aux_sym_edit_comment_token1] = ACTIONS(4996), + [anon_sym_CARET_LBRACK] = ACTIONS(4996), + [anon_sym_LBRACK_CARET] = ACTIONS(4996), + [sym_uri_autolink] = ACTIONS(4996), + [sym_email_autolink] = ACTIONS(4996), + [sym__whitespace_ge_2] = ACTIONS(4996), + [aux_sym__whitespace_token1] = ACTIONS(4998), + [sym__word_no_digit] = ACTIONS(4996), + [sym__digits] = ACTIONS(4996), + [anon_sym_DASH_DASH] = ACTIONS(4998), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4996), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4996), + [sym__code_span_start] = ACTIONS(4996), + [sym__emphasis_open_star] = ACTIONS(4996), + [sym__emphasis_open_underscore] = ACTIONS(4996), + [sym__strikeout_open] = ACTIONS(4996), + [sym__latex_span_start] = ACTIONS(4996), + [sym__single_quote_open] = ACTIONS(4996), + [sym__double_quote_open] = ACTIONS(4996), + [sym__superscript_open] = ACTIONS(4996), + [sym__superscript_close] = ACTIONS(4996), + [sym__subscript_open] = ACTIONS(4996), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4996), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4996), + [sym__cite_author_in_text] = ACTIONS(4996), + [sym__cite_suppress_author] = ACTIONS(4996), + [sym__shortcode_open_escaped] = ACTIONS(4996), + [sym__shortcode_open] = ACTIONS(4996), + [sym__unclosed_span] = ACTIONS(4996), + }, + [STATE(718)] = { + [sym__backslash_escape] = ACTIONS(5000), + [sym_entity_reference] = ACTIONS(5000), + [sym_numeric_character_reference] = ACTIONS(5000), + [anon_sym_LT] = ACTIONS(5002), + [anon_sym_GT] = ACTIONS(5000), + [anon_sym_BANG] = ACTIONS(5000), + [anon_sym_DQUOTE] = ACTIONS(5000), + [anon_sym_POUND] = ACTIONS(5000), + [anon_sym_DOLLAR] = ACTIONS(5000), + [anon_sym_PERCENT] = ACTIONS(5000), + [anon_sym_AMP] = ACTIONS(5002), + [anon_sym_SQUOTE] = ACTIONS(5000), + [anon_sym_STAR] = ACTIONS(5000), + [anon_sym_PLUS] = ACTIONS(5000), + [anon_sym_COMMA] = ACTIONS(5000), + [anon_sym_DASH] = ACTIONS(5002), + [anon_sym_DOT] = ACTIONS(5002), + [anon_sym_SLASH] = ACTIONS(5000), + [anon_sym_COLON] = ACTIONS(5000), + [anon_sym_SEMI] = ACTIONS(5000), + [anon_sym_EQ] = ACTIONS(5000), + [anon_sym_QMARK] = ACTIONS(5000), + [anon_sym_LBRACK] = ACTIONS(5002), + [anon_sym_BSLASH] = ACTIONS(5002), + [anon_sym_CARET] = ACTIONS(5002), + [anon_sym__] = ACTIONS(5000), + [anon_sym_BQUOTE] = ACTIONS(5000), + [anon_sym_LBRACE] = ACTIONS(5000), + [anon_sym_PIPE] = ACTIONS(5000), + [anon_sym_TILDE] = ACTIONS(5000), + [anon_sym_LPAREN] = ACTIONS(5000), + [anon_sym_RPAREN] = ACTIONS(5000), + [sym__newline_token] = ACTIONS(5000), + [aux_sym_insert_token1] = ACTIONS(5000), + [aux_sym_delete_token1] = ACTIONS(5000), + [aux_sym_highlight_token1] = ACTIONS(5000), + [aux_sym_edit_comment_token1] = ACTIONS(5000), + [anon_sym_CARET_LBRACK] = ACTIONS(5000), + [anon_sym_LBRACK_CARET] = ACTIONS(5000), + [sym_uri_autolink] = ACTIONS(5000), + [sym_email_autolink] = ACTIONS(5000), + [sym__whitespace_ge_2] = ACTIONS(5000), + [aux_sym__whitespace_token1] = ACTIONS(5002), + [sym__word_no_digit] = ACTIONS(5000), + [sym__digits] = ACTIONS(5000), + [anon_sym_DASH_DASH] = ACTIONS(5002), + [anon_sym_DASH_DASH_DASH] = ACTIONS(5000), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5000), + [sym__code_span_start] = ACTIONS(5000), + [sym__emphasis_open_star] = ACTIONS(5000), + [sym__emphasis_open_underscore] = ACTIONS(5000), + [sym__strikeout_open] = ACTIONS(5000), + [sym__latex_span_start] = ACTIONS(5000), + [sym__single_quote_open] = ACTIONS(5000), + [sym__double_quote_open] = ACTIONS(5000), + [sym__superscript_open] = ACTIONS(5000), + [sym__superscript_close] = ACTIONS(5000), + [sym__subscript_open] = ACTIONS(5000), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5000), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5000), + [sym__cite_author_in_text] = ACTIONS(5000), + [sym__cite_suppress_author] = ACTIONS(5000), + [sym__shortcode_open_escaped] = ACTIONS(5000), + [sym__shortcode_open] = ACTIONS(5000), + [sym__unclosed_span] = ACTIONS(5000), + }, + [STATE(719)] = { + [sym__backslash_escape] = ACTIONS(5004), + [sym_entity_reference] = ACTIONS(5004), + [sym_numeric_character_reference] = ACTIONS(5004), + [anon_sym_LT] = ACTIONS(5006), + [anon_sym_GT] = ACTIONS(5004), + [anon_sym_BANG] = ACTIONS(5004), + [anon_sym_DQUOTE] = ACTIONS(5004), + [anon_sym_POUND] = ACTIONS(5004), + [anon_sym_DOLLAR] = ACTIONS(5004), + [anon_sym_PERCENT] = ACTIONS(5004), + [anon_sym_AMP] = ACTIONS(5006), + [anon_sym_SQUOTE] = ACTIONS(5004), + [anon_sym_STAR] = ACTIONS(5004), + [anon_sym_PLUS] = ACTIONS(5004), + [anon_sym_COMMA] = ACTIONS(5004), + [anon_sym_DASH] = ACTIONS(5006), + [anon_sym_DOT] = ACTIONS(5006), + [anon_sym_SLASH] = ACTIONS(5004), + [anon_sym_COLON] = ACTIONS(5004), + [anon_sym_SEMI] = ACTIONS(5004), + [anon_sym_EQ] = ACTIONS(5004), + [anon_sym_QMARK] = ACTIONS(5004), + [anon_sym_LBRACK] = ACTIONS(5006), + [anon_sym_BSLASH] = ACTIONS(5006), + [anon_sym_CARET] = ACTIONS(5006), + [anon_sym__] = ACTIONS(5004), + [anon_sym_BQUOTE] = ACTIONS(5004), + [anon_sym_LBRACE] = ACTIONS(5004), + [anon_sym_PIPE] = ACTIONS(5004), + [anon_sym_TILDE] = ACTIONS(5004), + [anon_sym_LPAREN] = ACTIONS(5004), + [anon_sym_RPAREN] = ACTIONS(5004), + [sym__newline_token] = ACTIONS(5004), + [aux_sym_insert_token1] = ACTIONS(5004), + [aux_sym_delete_token1] = ACTIONS(5004), + [aux_sym_highlight_token1] = ACTIONS(5004), + [aux_sym_edit_comment_token1] = ACTIONS(5004), + [anon_sym_CARET_LBRACK] = ACTIONS(5004), + [anon_sym_LBRACK_CARET] = ACTIONS(5004), + [sym_uri_autolink] = ACTIONS(5004), + [sym_email_autolink] = ACTIONS(5004), + [sym__whitespace_ge_2] = ACTIONS(5004), + [aux_sym__whitespace_token1] = ACTIONS(5006), + [sym__word_no_digit] = ACTIONS(5004), + [sym__digits] = ACTIONS(5004), + [anon_sym_DASH_DASH] = ACTIONS(5006), + [anon_sym_DASH_DASH_DASH] = ACTIONS(5004), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5004), + [sym__code_span_start] = ACTIONS(5004), + [sym__emphasis_open_star] = ACTIONS(5004), + [sym__emphasis_open_underscore] = ACTIONS(5004), + [sym__strikeout_open] = ACTIONS(5004), + [sym__latex_span_start] = ACTIONS(5004), + [sym__single_quote_open] = ACTIONS(5004), + [sym__double_quote_open] = ACTIONS(5004), + [sym__superscript_open] = ACTIONS(5004), + [sym__superscript_close] = ACTIONS(5004), + [sym__subscript_open] = ACTIONS(5004), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5004), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5004), + [sym__cite_author_in_text] = ACTIONS(5004), + [sym__cite_suppress_author] = ACTIONS(5004), + [sym__shortcode_open_escaped] = ACTIONS(5004), + [sym__shortcode_open] = ACTIONS(5004), + [sym__unclosed_span] = ACTIONS(5004), + }, + [STATE(720)] = { + [sym__backslash_escape] = ACTIONS(5008), + [sym_entity_reference] = ACTIONS(5008), + [sym_numeric_character_reference] = ACTIONS(5008), + [anon_sym_LT] = ACTIONS(5010), + [anon_sym_GT] = ACTIONS(5008), + [anon_sym_BANG] = ACTIONS(5008), + [anon_sym_DQUOTE] = ACTIONS(5008), + [anon_sym_POUND] = ACTIONS(5008), + [anon_sym_DOLLAR] = ACTIONS(5008), + [anon_sym_PERCENT] = ACTIONS(5008), + [anon_sym_AMP] = ACTIONS(5010), + [anon_sym_SQUOTE] = ACTIONS(5008), + [anon_sym_STAR] = ACTIONS(5008), + [anon_sym_PLUS] = ACTIONS(5008), + [anon_sym_COMMA] = ACTIONS(5008), + [anon_sym_DASH] = ACTIONS(5010), + [anon_sym_DOT] = ACTIONS(5010), + [anon_sym_SLASH] = ACTIONS(5008), + [anon_sym_COLON] = ACTIONS(5008), + [anon_sym_SEMI] = ACTIONS(5008), + [anon_sym_EQ] = ACTIONS(5008), + [anon_sym_QMARK] = ACTIONS(5008), + [anon_sym_LBRACK] = ACTIONS(5010), + [anon_sym_BSLASH] = ACTIONS(5010), + [anon_sym_CARET] = ACTIONS(5010), + [anon_sym__] = ACTIONS(5008), + [anon_sym_BQUOTE] = ACTIONS(5008), + [anon_sym_LBRACE] = ACTIONS(5008), + [anon_sym_PIPE] = ACTIONS(5008), + [anon_sym_TILDE] = ACTIONS(5008), + [anon_sym_LPAREN] = ACTIONS(5008), + [anon_sym_RPAREN] = ACTIONS(5008), + [sym__newline_token] = ACTIONS(5008), + [aux_sym_insert_token1] = ACTIONS(5008), + [aux_sym_delete_token1] = ACTIONS(5008), + [aux_sym_highlight_token1] = ACTIONS(5008), + [aux_sym_edit_comment_token1] = ACTIONS(5008), + [anon_sym_CARET_LBRACK] = ACTIONS(5008), + [anon_sym_LBRACK_CARET] = ACTIONS(5008), + [sym_uri_autolink] = ACTIONS(5008), + [sym_email_autolink] = ACTIONS(5008), + [sym__whitespace_ge_2] = ACTIONS(5008), + [aux_sym__whitespace_token1] = ACTIONS(5010), + [sym__word_no_digit] = ACTIONS(5008), + [sym__digits] = ACTIONS(5008), + [anon_sym_DASH_DASH] = ACTIONS(5010), + [anon_sym_DASH_DASH_DASH] = ACTIONS(5008), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5008), + [sym__code_span_start] = ACTIONS(5008), + [sym__emphasis_open_star] = ACTIONS(5008), + [sym__emphasis_open_underscore] = ACTIONS(5008), + [sym__strikeout_open] = ACTIONS(5008), + [sym__latex_span_start] = ACTIONS(5008), + [sym__single_quote_open] = ACTIONS(5008), + [sym__double_quote_open] = ACTIONS(5008), + [sym__superscript_open] = ACTIONS(5008), + [sym__superscript_close] = ACTIONS(5008), + [sym__subscript_open] = ACTIONS(5008), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5008), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5008), + [sym__cite_author_in_text] = ACTIONS(5008), + [sym__cite_suppress_author] = ACTIONS(5008), + [sym__shortcode_open_escaped] = ACTIONS(5008), + [sym__shortcode_open] = ACTIONS(5008), + [sym__unclosed_span] = ACTIONS(5008), + }, + [STATE(721)] = { + [sym__backslash_escape] = ACTIONS(5012), + [sym_entity_reference] = ACTIONS(5012), + [sym_numeric_character_reference] = ACTIONS(5012), + [anon_sym_LT] = ACTIONS(5014), + [anon_sym_GT] = ACTIONS(5012), + [anon_sym_BANG] = ACTIONS(5012), + [anon_sym_DQUOTE] = ACTIONS(5012), + [anon_sym_POUND] = ACTIONS(5012), + [anon_sym_DOLLAR] = ACTIONS(5012), + [anon_sym_PERCENT] = ACTIONS(5012), + [anon_sym_AMP] = ACTIONS(5014), + [anon_sym_SQUOTE] = ACTIONS(5012), + [anon_sym_STAR] = ACTIONS(5012), + [anon_sym_PLUS] = ACTIONS(5012), + [anon_sym_COMMA] = ACTIONS(5012), + [anon_sym_DASH] = ACTIONS(5014), + [anon_sym_DOT] = ACTIONS(5014), + [anon_sym_SLASH] = ACTIONS(5012), + [anon_sym_COLON] = ACTIONS(5012), + [anon_sym_SEMI] = ACTIONS(5012), + [anon_sym_EQ] = ACTIONS(5012), + [anon_sym_QMARK] = ACTIONS(5012), + [anon_sym_LBRACK] = ACTIONS(5014), + [anon_sym_BSLASH] = ACTIONS(5014), + [anon_sym_CARET] = ACTIONS(5014), + [anon_sym__] = ACTIONS(5012), + [anon_sym_BQUOTE] = ACTIONS(5012), + [anon_sym_LBRACE] = ACTIONS(5012), + [anon_sym_PIPE] = ACTIONS(5012), + [anon_sym_TILDE] = ACTIONS(5012), + [anon_sym_LPAREN] = ACTIONS(5012), + [anon_sym_RPAREN] = ACTIONS(5012), + [sym__newline_token] = ACTIONS(5012), + [aux_sym_insert_token1] = ACTIONS(5012), + [aux_sym_delete_token1] = ACTIONS(5012), + [aux_sym_highlight_token1] = ACTIONS(5012), + [aux_sym_edit_comment_token1] = ACTIONS(5012), + [anon_sym_CARET_LBRACK] = ACTIONS(5012), + [anon_sym_LBRACK_CARET] = ACTIONS(5012), + [sym_uri_autolink] = ACTIONS(5012), + [sym_email_autolink] = ACTIONS(5012), + [sym__whitespace_ge_2] = ACTIONS(5012), + [aux_sym__whitespace_token1] = ACTIONS(5014), + [sym__word_no_digit] = ACTIONS(5012), + [sym__digits] = ACTIONS(5012), + [anon_sym_DASH_DASH] = ACTIONS(5014), + [anon_sym_DASH_DASH_DASH] = ACTIONS(5012), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5012), + [sym__code_span_start] = ACTIONS(5012), + [sym__emphasis_open_star] = ACTIONS(5012), + [sym__emphasis_open_underscore] = ACTIONS(5012), + [sym__strikeout_open] = ACTIONS(5012), + [sym__latex_span_start] = ACTIONS(5012), + [sym__single_quote_open] = ACTIONS(5012), + [sym__double_quote_open] = ACTIONS(5012), + [sym__superscript_open] = ACTIONS(5012), + [sym__superscript_close] = ACTIONS(5012), + [sym__subscript_open] = ACTIONS(5012), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5012), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5012), + [sym__cite_author_in_text] = ACTIONS(5012), + [sym__cite_suppress_author] = ACTIONS(5012), + [sym__shortcode_open_escaped] = ACTIONS(5012), + [sym__shortcode_open] = ACTIONS(5012), + [sym__unclosed_span] = ACTIONS(5012), + }, + [STATE(722)] = { + [sym__backslash_escape] = ACTIONS(4948), + [sym_entity_reference] = ACTIONS(4948), + [sym_numeric_character_reference] = ACTIONS(4948), + [anon_sym_LT] = ACTIONS(4950), + [anon_sym_GT] = ACTIONS(4948), + [anon_sym_BANG] = ACTIONS(4948), + [anon_sym_DQUOTE] = ACTIONS(4948), + [anon_sym_POUND] = ACTIONS(4948), + [anon_sym_DOLLAR] = ACTIONS(4948), + [anon_sym_PERCENT] = ACTIONS(4948), + [anon_sym_AMP] = ACTIONS(4950), + [anon_sym_SQUOTE] = ACTIONS(4948), + [anon_sym_STAR] = ACTIONS(4948), + [anon_sym_PLUS] = ACTIONS(4948), + [anon_sym_COMMA] = ACTIONS(4948), + [anon_sym_DASH] = ACTIONS(4950), + [anon_sym_DOT] = ACTIONS(4950), + [anon_sym_SLASH] = ACTIONS(4948), + [anon_sym_COLON] = ACTIONS(4948), + [anon_sym_SEMI] = ACTIONS(4948), + [anon_sym_EQ] = ACTIONS(4948), + [anon_sym_QMARK] = ACTIONS(4948), + [anon_sym_LBRACK] = ACTIONS(4950), + [anon_sym_BSLASH] = ACTIONS(4950), + [anon_sym_CARET] = ACTIONS(4950), + [anon_sym__] = ACTIONS(4948), + [anon_sym_BQUOTE] = ACTIONS(4948), + [anon_sym_LBRACE] = ACTIONS(4948), + [anon_sym_PIPE] = ACTIONS(4948), + [anon_sym_TILDE] = ACTIONS(4948), + [anon_sym_LPAREN] = ACTIONS(4948), + [anon_sym_RPAREN] = ACTIONS(4948), + [sym__newline_token] = ACTIONS(4948), + [aux_sym_insert_token1] = ACTIONS(4948), + [aux_sym_delete_token1] = ACTIONS(4948), + [aux_sym_highlight_token1] = ACTIONS(4948), + [aux_sym_edit_comment_token1] = ACTIONS(4948), + [anon_sym_CARET_LBRACK] = ACTIONS(4948), + [anon_sym_LBRACK_CARET] = ACTIONS(4948), + [sym_uri_autolink] = ACTIONS(4948), + [sym_email_autolink] = ACTIONS(4948), + [sym__whitespace_ge_2] = ACTIONS(4948), + [aux_sym__whitespace_token1] = ACTIONS(4950), + [sym__word_no_digit] = ACTIONS(4948), + [sym__digits] = ACTIONS(4948), + [anon_sym_DASH_DASH] = ACTIONS(4950), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4948), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4948), + [sym__code_span_start] = ACTIONS(4948), + [sym__emphasis_open_star] = ACTIONS(4948), + [sym__emphasis_open_underscore] = ACTIONS(4948), + [sym__strikeout_open] = ACTIONS(4948), + [sym__latex_span_start] = ACTIONS(4948), + [sym__single_quote_open] = ACTIONS(4948), + [sym__double_quote_open] = ACTIONS(4948), + [sym__superscript_open] = ACTIONS(4948), + [sym__superscript_close] = ACTIONS(4948), + [sym__subscript_open] = ACTIONS(4948), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4948), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4948), + [sym__cite_author_in_text] = ACTIONS(4948), + [sym__cite_suppress_author] = ACTIONS(4948), + [sym__shortcode_open_escaped] = ACTIONS(4948), + [sym__shortcode_open] = ACTIONS(4948), + [sym__unclosed_span] = ACTIONS(4948), + }, + [STATE(723)] = { + [sym__backslash_escape] = ACTIONS(5016), + [sym_entity_reference] = ACTIONS(5016), + [sym_numeric_character_reference] = ACTIONS(5016), + [anon_sym_LT] = ACTIONS(5018), + [anon_sym_GT] = ACTIONS(5016), + [anon_sym_BANG] = ACTIONS(5016), + [anon_sym_DQUOTE] = ACTIONS(5016), + [anon_sym_POUND] = ACTIONS(5016), + [anon_sym_DOLLAR] = ACTIONS(5016), + [anon_sym_PERCENT] = ACTIONS(5016), + [anon_sym_AMP] = ACTIONS(5018), + [anon_sym_SQUOTE] = ACTIONS(5016), + [anon_sym_STAR] = ACTIONS(5016), + [anon_sym_PLUS] = ACTIONS(5016), + [anon_sym_COMMA] = ACTIONS(5016), + [anon_sym_DASH] = ACTIONS(5018), + [anon_sym_DOT] = ACTIONS(5018), + [anon_sym_SLASH] = ACTIONS(5016), + [anon_sym_COLON] = ACTIONS(5016), + [anon_sym_SEMI] = ACTIONS(5016), + [anon_sym_EQ] = ACTIONS(5016), + [anon_sym_QMARK] = ACTIONS(5016), + [anon_sym_LBRACK] = ACTIONS(5018), + [anon_sym_BSLASH] = ACTIONS(5018), + [anon_sym_CARET] = ACTIONS(5018), + [anon_sym__] = ACTIONS(5016), + [anon_sym_BQUOTE] = ACTIONS(5016), + [anon_sym_LBRACE] = ACTIONS(5016), + [anon_sym_PIPE] = ACTIONS(5016), + [anon_sym_TILDE] = ACTIONS(5016), + [anon_sym_LPAREN] = ACTIONS(5016), + [anon_sym_RPAREN] = ACTIONS(5016), + [sym__newline_token] = ACTIONS(5016), + [aux_sym_insert_token1] = ACTIONS(5016), + [aux_sym_delete_token1] = ACTIONS(5016), + [aux_sym_highlight_token1] = ACTIONS(5016), + [aux_sym_edit_comment_token1] = ACTIONS(5016), + [anon_sym_CARET_LBRACK] = ACTIONS(5016), + [anon_sym_LBRACK_CARET] = ACTIONS(5016), + [sym_uri_autolink] = ACTIONS(5016), + [sym_email_autolink] = ACTIONS(5016), + [sym__whitespace_ge_2] = ACTIONS(5016), + [aux_sym__whitespace_token1] = ACTIONS(5018), + [sym__word_no_digit] = ACTIONS(5016), + [sym__digits] = ACTIONS(5016), + [anon_sym_DASH_DASH] = ACTIONS(5018), + [anon_sym_DASH_DASH_DASH] = ACTIONS(5016), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5016), + [sym__code_span_start] = ACTIONS(5016), + [sym__emphasis_open_star] = ACTIONS(5016), + [sym__emphasis_open_underscore] = ACTIONS(5016), + [sym__strikeout_open] = ACTIONS(5016), + [sym__latex_span_start] = ACTIONS(5016), + [sym__single_quote_open] = ACTIONS(5016), + [sym__double_quote_open] = ACTIONS(5016), + [sym__superscript_open] = ACTIONS(5016), + [sym__superscript_close] = ACTIONS(5016), + [sym__subscript_open] = ACTIONS(5016), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5016), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5016), + [sym__cite_author_in_text] = ACTIONS(5016), + [sym__cite_suppress_author] = ACTIONS(5016), + [sym__shortcode_open_escaped] = ACTIONS(5016), + [sym__shortcode_open] = ACTIONS(5016), + [sym__unclosed_span] = ACTIONS(5016), + }, + [STATE(724)] = { + [sym__backslash_escape] = ACTIONS(5020), + [sym_entity_reference] = ACTIONS(5020), + [sym_numeric_character_reference] = ACTIONS(5020), + [anon_sym_LT] = ACTIONS(5022), + [anon_sym_GT] = ACTIONS(5020), + [anon_sym_BANG] = ACTIONS(5020), + [anon_sym_DQUOTE] = ACTIONS(5020), + [anon_sym_POUND] = ACTIONS(5020), + [anon_sym_DOLLAR] = ACTIONS(5020), + [anon_sym_PERCENT] = ACTIONS(5020), + [anon_sym_AMP] = ACTIONS(5022), + [anon_sym_SQUOTE] = ACTIONS(5020), + [anon_sym_STAR] = ACTIONS(5020), + [anon_sym_PLUS] = ACTIONS(5020), + [anon_sym_COMMA] = ACTIONS(5020), + [anon_sym_DASH] = ACTIONS(5022), + [anon_sym_DOT] = ACTIONS(5022), + [anon_sym_SLASH] = ACTIONS(5020), + [anon_sym_COLON] = ACTIONS(5020), + [anon_sym_SEMI] = ACTIONS(5020), + [anon_sym_EQ] = ACTIONS(5020), + [anon_sym_QMARK] = ACTIONS(5020), + [anon_sym_LBRACK] = ACTIONS(5022), + [anon_sym_BSLASH] = ACTIONS(5022), + [anon_sym_CARET] = ACTIONS(5022), + [anon_sym__] = ACTIONS(5020), + [anon_sym_BQUOTE] = ACTIONS(5020), + [anon_sym_LBRACE] = ACTIONS(5020), + [anon_sym_PIPE] = ACTIONS(5020), + [anon_sym_TILDE] = ACTIONS(5020), + [anon_sym_LPAREN] = ACTIONS(5020), + [anon_sym_RPAREN] = ACTIONS(5020), + [sym__newline_token] = ACTIONS(5020), + [aux_sym_insert_token1] = ACTIONS(5020), + [aux_sym_delete_token1] = ACTIONS(5020), + [aux_sym_highlight_token1] = ACTIONS(5020), + [aux_sym_edit_comment_token1] = ACTIONS(5020), + [anon_sym_CARET_LBRACK] = ACTIONS(5020), + [anon_sym_LBRACK_CARET] = ACTIONS(5020), + [sym_uri_autolink] = ACTIONS(5020), + [sym_email_autolink] = ACTIONS(5020), + [sym__whitespace_ge_2] = ACTIONS(5020), + [aux_sym__whitespace_token1] = ACTIONS(5022), + [sym__word_no_digit] = ACTIONS(5020), + [sym__digits] = ACTIONS(5020), + [anon_sym_DASH_DASH] = ACTIONS(5022), + [anon_sym_DASH_DASH_DASH] = ACTIONS(5020), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5020), + [sym__code_span_start] = ACTIONS(5020), + [sym__emphasis_open_star] = ACTIONS(5020), + [sym__emphasis_open_underscore] = ACTIONS(5020), + [sym__strikeout_open] = ACTIONS(5020), + [sym__latex_span_start] = ACTIONS(5020), + [sym__single_quote_open] = ACTIONS(5020), + [sym__double_quote_open] = ACTIONS(5020), + [sym__superscript_open] = ACTIONS(5020), + [sym__superscript_close] = ACTIONS(5020), + [sym__subscript_open] = ACTIONS(5020), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5020), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5020), + [sym__cite_author_in_text] = ACTIONS(5020), + [sym__cite_suppress_author] = ACTIONS(5020), + [sym__shortcode_open_escaped] = ACTIONS(5020), + [sym__shortcode_open] = ACTIONS(5020), + [sym__unclosed_span] = ACTIONS(5020), + }, + [STATE(725)] = { + [sym__backslash_escape] = ACTIONS(5024), + [sym_entity_reference] = ACTIONS(5024), + [sym_numeric_character_reference] = ACTIONS(5024), + [anon_sym_LT] = ACTIONS(5026), + [anon_sym_GT] = ACTIONS(5024), + [anon_sym_BANG] = ACTIONS(5024), + [anon_sym_DQUOTE] = ACTIONS(5024), + [anon_sym_POUND] = ACTIONS(5024), + [anon_sym_DOLLAR] = ACTIONS(5024), + [anon_sym_PERCENT] = ACTIONS(5024), + [anon_sym_AMP] = ACTIONS(5026), + [anon_sym_SQUOTE] = ACTIONS(5024), + [anon_sym_STAR] = ACTIONS(5024), + [anon_sym_PLUS] = ACTIONS(5024), + [anon_sym_COMMA] = ACTIONS(5024), + [anon_sym_DASH] = ACTIONS(5026), + [anon_sym_DOT] = ACTIONS(5026), + [anon_sym_SLASH] = ACTIONS(5024), + [anon_sym_COLON] = ACTIONS(5024), + [anon_sym_SEMI] = ACTIONS(5024), + [anon_sym_EQ] = ACTIONS(5024), + [anon_sym_QMARK] = ACTIONS(5024), + [anon_sym_LBRACK] = ACTIONS(5026), + [anon_sym_BSLASH] = ACTIONS(5026), + [anon_sym_CARET] = ACTIONS(5026), + [anon_sym__] = ACTIONS(5024), + [anon_sym_BQUOTE] = ACTIONS(5024), + [anon_sym_LBRACE] = ACTIONS(5024), + [anon_sym_PIPE] = ACTIONS(5024), + [anon_sym_TILDE] = ACTIONS(5024), + [anon_sym_LPAREN] = ACTIONS(5024), + [anon_sym_RPAREN] = ACTIONS(5024), + [sym__newline_token] = ACTIONS(5024), + [aux_sym_insert_token1] = ACTIONS(5024), + [aux_sym_delete_token1] = ACTIONS(5024), + [aux_sym_highlight_token1] = ACTIONS(5024), + [aux_sym_edit_comment_token1] = ACTIONS(5024), + [anon_sym_CARET_LBRACK] = ACTIONS(5024), + [anon_sym_LBRACK_CARET] = ACTIONS(5024), + [sym_uri_autolink] = ACTIONS(5024), + [sym_email_autolink] = ACTIONS(5024), + [sym__whitespace_ge_2] = ACTIONS(5024), + [aux_sym__whitespace_token1] = ACTIONS(5026), + [sym__word_no_digit] = ACTIONS(5024), + [sym__digits] = ACTIONS(5024), + [anon_sym_DASH_DASH] = ACTIONS(5026), + [anon_sym_DASH_DASH_DASH] = ACTIONS(5024), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5024), + [sym__code_span_start] = ACTIONS(5024), + [sym__emphasis_open_star] = ACTIONS(5024), + [sym__emphasis_open_underscore] = ACTIONS(5024), + [sym__strikeout_open] = ACTIONS(5024), + [sym__strikeout_close] = ACTIONS(5024), + [sym__latex_span_start] = ACTIONS(5024), + [sym__single_quote_open] = ACTIONS(5024), + [sym__double_quote_open] = ACTIONS(5024), + [sym__superscript_open] = ACTIONS(5024), + [sym__subscript_open] = ACTIONS(5024), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5024), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5024), + [sym__cite_author_in_text] = ACTIONS(5024), + [sym__cite_suppress_author] = ACTIONS(5024), + [sym__shortcode_open_escaped] = ACTIONS(5024), + [sym__shortcode_open] = ACTIONS(5024), + [sym__unclosed_span] = ACTIONS(5024), + }, + [STATE(726)] = { + [sym__backslash_escape] = ACTIONS(4936), + [sym_entity_reference] = ACTIONS(4936), + [sym_numeric_character_reference] = ACTIONS(4936), + [anon_sym_LT] = ACTIONS(4938), + [anon_sym_GT] = ACTIONS(4936), + [anon_sym_BANG] = ACTIONS(4936), + [anon_sym_DQUOTE] = ACTIONS(4936), + [anon_sym_POUND] = ACTIONS(4936), + [anon_sym_DOLLAR] = ACTIONS(4936), + [anon_sym_PERCENT] = ACTIONS(4936), + [anon_sym_AMP] = ACTIONS(4938), + [anon_sym_SQUOTE] = ACTIONS(4936), + [anon_sym_STAR] = ACTIONS(4936), + [anon_sym_PLUS] = ACTIONS(4936), + [anon_sym_COMMA] = ACTIONS(4936), + [anon_sym_DASH] = ACTIONS(4938), + [anon_sym_DOT] = ACTIONS(4938), + [anon_sym_SLASH] = ACTIONS(4936), + [anon_sym_COLON] = ACTIONS(4936), + [anon_sym_SEMI] = ACTIONS(4936), + [anon_sym_EQ] = ACTIONS(4936), + [anon_sym_QMARK] = ACTIONS(4936), + [anon_sym_LBRACK] = ACTIONS(4938), + [anon_sym_BSLASH] = ACTIONS(4938), + [anon_sym_CARET] = ACTIONS(4938), + [anon_sym__] = ACTIONS(4936), + [anon_sym_BQUOTE] = ACTIONS(4936), + [anon_sym_LBRACE] = ACTIONS(4936), + [anon_sym_PIPE] = ACTIONS(4936), + [anon_sym_TILDE] = ACTIONS(4936), + [anon_sym_LPAREN] = ACTIONS(4936), + [anon_sym_RPAREN] = ACTIONS(4936), + [sym__newline_token] = ACTIONS(4936), + [aux_sym_insert_token1] = ACTIONS(4936), + [aux_sym_delete_token1] = ACTIONS(4936), + [aux_sym_highlight_token1] = ACTIONS(4936), + [aux_sym_edit_comment_token1] = ACTIONS(4936), + [anon_sym_CARET_LBRACK] = ACTIONS(4936), + [anon_sym_LBRACK_CARET] = ACTIONS(4936), + [sym_uri_autolink] = ACTIONS(4936), + [sym_email_autolink] = ACTIONS(4936), + [sym__whitespace_ge_2] = ACTIONS(4936), + [aux_sym__whitespace_token1] = ACTIONS(4938), + [sym__word_no_digit] = ACTIONS(4936), + [sym__digits] = ACTIONS(4936), + [anon_sym_DASH_DASH] = ACTIONS(4938), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4936), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4936), + [sym__code_span_start] = ACTIONS(4936), + [sym__emphasis_open_star] = ACTIONS(4936), + [sym__emphasis_open_underscore] = ACTIONS(4936), + [sym__strikeout_open] = ACTIONS(4936), + [sym__latex_span_start] = ACTIONS(4936), + [sym__single_quote_open] = ACTIONS(4936), + [sym__double_quote_open] = ACTIONS(4936), + [sym__superscript_open] = ACTIONS(4936), + [sym__superscript_close] = ACTIONS(4936), + [sym__subscript_open] = ACTIONS(4936), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4936), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4936), + [sym__cite_author_in_text] = ACTIONS(4936), + [sym__cite_suppress_author] = ACTIONS(4936), + [sym__shortcode_open_escaped] = ACTIONS(4936), + [sym__shortcode_open] = ACTIONS(4936), + [sym__unclosed_span] = ACTIONS(4936), + }, + [STATE(727)] = { + [sym__backslash_escape] = ACTIONS(5028), + [sym_entity_reference] = ACTIONS(5028), + [sym_numeric_character_reference] = ACTIONS(5028), + [anon_sym_LT] = ACTIONS(5030), + [anon_sym_GT] = ACTIONS(5028), + [anon_sym_BANG] = ACTIONS(5028), + [anon_sym_DQUOTE] = ACTIONS(5028), + [anon_sym_POUND] = ACTIONS(5028), + [anon_sym_DOLLAR] = ACTIONS(5028), + [anon_sym_PERCENT] = ACTIONS(5028), + [anon_sym_AMP] = ACTIONS(5030), + [anon_sym_SQUOTE] = ACTIONS(5028), + [anon_sym_STAR] = ACTIONS(5028), + [anon_sym_PLUS] = ACTIONS(5028), + [anon_sym_COMMA] = ACTIONS(5028), + [anon_sym_DASH] = ACTIONS(5030), + [anon_sym_DOT] = ACTIONS(5030), + [anon_sym_SLASH] = ACTIONS(5028), + [anon_sym_COLON] = ACTIONS(5028), + [anon_sym_SEMI] = ACTIONS(5028), + [anon_sym_EQ] = ACTIONS(5028), + [anon_sym_QMARK] = ACTIONS(5028), + [anon_sym_LBRACK] = ACTIONS(5030), + [anon_sym_BSLASH] = ACTIONS(5030), + [anon_sym_CARET] = ACTIONS(5030), + [anon_sym__] = ACTIONS(5028), + [anon_sym_BQUOTE] = ACTIONS(5028), + [anon_sym_LBRACE] = ACTIONS(5028), + [anon_sym_PIPE] = ACTIONS(5028), + [anon_sym_TILDE] = ACTIONS(5028), + [anon_sym_LPAREN] = ACTIONS(5028), + [anon_sym_RPAREN] = ACTIONS(5028), + [sym__newline_token] = ACTIONS(5028), + [aux_sym_insert_token1] = ACTIONS(5028), + [aux_sym_delete_token1] = ACTIONS(5028), + [aux_sym_highlight_token1] = ACTIONS(5028), + [aux_sym_edit_comment_token1] = ACTIONS(5028), + [anon_sym_CARET_LBRACK] = ACTIONS(5028), + [anon_sym_LBRACK_CARET] = ACTIONS(5028), + [sym_uri_autolink] = ACTIONS(5028), + [sym_email_autolink] = ACTIONS(5028), + [sym__whitespace_ge_2] = ACTIONS(5028), + [aux_sym__whitespace_token1] = ACTIONS(5030), + [sym__word_no_digit] = ACTIONS(5028), + [sym__digits] = ACTIONS(5028), + [anon_sym_DASH_DASH] = ACTIONS(5030), + [anon_sym_DASH_DASH_DASH] = ACTIONS(5028), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5028), + [sym__code_span_start] = ACTIONS(5028), + [sym__emphasis_open_star] = ACTIONS(5028), + [sym__emphasis_open_underscore] = ACTIONS(5028), + [sym__strikeout_open] = ACTIONS(5028), + [sym__latex_span_start] = ACTIONS(5028), + [sym__single_quote_open] = ACTIONS(5028), + [sym__double_quote_open] = ACTIONS(5028), + [sym__superscript_open] = ACTIONS(5028), + [sym__superscript_close] = ACTIONS(5028), + [sym__subscript_open] = ACTIONS(5028), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5028), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5028), + [sym__cite_author_in_text] = ACTIONS(5028), + [sym__cite_suppress_author] = ACTIONS(5028), + [sym__shortcode_open_escaped] = ACTIONS(5028), + [sym__shortcode_open] = ACTIONS(5028), + [sym__unclosed_span] = ACTIONS(5028), + }, + [STATE(728)] = { + [sym__backslash_escape] = ACTIONS(5032), + [sym_entity_reference] = ACTIONS(5032), + [sym_numeric_character_reference] = ACTIONS(5032), + [anon_sym_LT] = ACTIONS(5034), + [anon_sym_GT] = ACTIONS(5032), + [anon_sym_BANG] = ACTIONS(5032), + [anon_sym_DQUOTE] = ACTIONS(5032), + [anon_sym_POUND] = ACTIONS(5032), + [anon_sym_DOLLAR] = ACTIONS(5032), + [anon_sym_PERCENT] = ACTIONS(5032), + [anon_sym_AMP] = ACTIONS(5034), + [anon_sym_SQUOTE] = ACTIONS(5032), + [anon_sym_STAR] = ACTIONS(5032), + [anon_sym_PLUS] = ACTIONS(5032), + [anon_sym_COMMA] = ACTIONS(5032), + [anon_sym_DASH] = ACTIONS(5034), + [anon_sym_DOT] = ACTIONS(5034), + [anon_sym_SLASH] = ACTIONS(5032), + [anon_sym_COLON] = ACTIONS(5032), + [anon_sym_SEMI] = ACTIONS(5032), + [anon_sym_EQ] = ACTIONS(5032), + [anon_sym_QMARK] = ACTIONS(5032), + [anon_sym_LBRACK] = ACTIONS(5034), + [anon_sym_BSLASH] = ACTIONS(5034), + [anon_sym_CARET] = ACTIONS(5034), + [anon_sym__] = ACTIONS(5032), + [anon_sym_BQUOTE] = ACTIONS(5032), + [anon_sym_LBRACE] = ACTIONS(5032), + [anon_sym_PIPE] = ACTIONS(5032), + [anon_sym_TILDE] = ACTIONS(5032), + [anon_sym_LPAREN] = ACTIONS(5032), + [anon_sym_RPAREN] = ACTIONS(5032), + [sym__newline_token] = ACTIONS(5032), + [aux_sym_insert_token1] = ACTIONS(5032), + [aux_sym_delete_token1] = ACTIONS(5032), + [aux_sym_highlight_token1] = ACTIONS(5032), + [aux_sym_edit_comment_token1] = ACTIONS(5032), + [anon_sym_CARET_LBRACK] = ACTIONS(5032), + [anon_sym_LBRACK_CARET] = ACTIONS(5032), + [sym_uri_autolink] = ACTIONS(5032), + [sym_email_autolink] = ACTIONS(5032), + [sym__whitespace_ge_2] = ACTIONS(5032), + [aux_sym__whitespace_token1] = ACTIONS(5034), + [sym__word_no_digit] = ACTIONS(5032), + [sym__digits] = ACTIONS(5032), + [anon_sym_DASH_DASH] = ACTIONS(5034), + [anon_sym_DASH_DASH_DASH] = ACTIONS(5032), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5032), + [sym__code_span_start] = ACTIONS(5032), + [sym__emphasis_open_star] = ACTIONS(5032), + [sym__emphasis_open_underscore] = ACTIONS(5032), + [sym__strikeout_open] = ACTIONS(5032), + [sym__latex_span_start] = ACTIONS(5032), + [sym__single_quote_open] = ACTIONS(5032), + [sym__single_quote_close] = ACTIONS(5032), + [sym__double_quote_open] = ACTIONS(5032), + [sym__superscript_open] = ACTIONS(5032), + [sym__subscript_open] = ACTIONS(5032), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5032), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5032), + [sym__cite_author_in_text] = ACTIONS(5032), + [sym__cite_suppress_author] = ACTIONS(5032), + [sym__shortcode_open_escaped] = ACTIONS(5032), + [sym__shortcode_open] = ACTIONS(5032), + [sym__unclosed_span] = ACTIONS(5032), + }, + [STATE(729)] = { + [sym__backslash_escape] = ACTIONS(5036), + [sym_entity_reference] = ACTIONS(5036), + [sym_numeric_character_reference] = ACTIONS(5036), + [anon_sym_LT] = ACTIONS(5038), + [anon_sym_GT] = ACTIONS(5036), + [anon_sym_BANG] = ACTIONS(5036), + [anon_sym_DQUOTE] = ACTIONS(5036), + [anon_sym_POUND] = ACTIONS(5036), + [anon_sym_DOLLAR] = ACTIONS(5036), + [anon_sym_PERCENT] = ACTIONS(5036), + [anon_sym_AMP] = ACTIONS(5038), + [anon_sym_SQUOTE] = ACTIONS(5036), + [anon_sym_STAR] = ACTIONS(5036), + [anon_sym_PLUS] = ACTIONS(5036), + [anon_sym_COMMA] = ACTIONS(5036), + [anon_sym_DASH] = ACTIONS(5038), + [anon_sym_DOT] = ACTIONS(5038), + [anon_sym_SLASH] = ACTIONS(5036), + [anon_sym_COLON] = ACTIONS(5036), + [anon_sym_SEMI] = ACTIONS(5036), + [anon_sym_EQ] = ACTIONS(5036), + [anon_sym_QMARK] = ACTIONS(5036), + [anon_sym_LBRACK] = ACTIONS(5038), + [anon_sym_BSLASH] = ACTIONS(5038), + [anon_sym_CARET] = ACTIONS(5038), + [anon_sym__] = ACTIONS(5036), + [anon_sym_BQUOTE] = ACTIONS(5036), + [anon_sym_LBRACE] = ACTIONS(5036), + [anon_sym_PIPE] = ACTIONS(5036), + [anon_sym_TILDE] = ACTIONS(5036), + [anon_sym_LPAREN] = ACTIONS(5036), + [anon_sym_RPAREN] = ACTIONS(5036), + [sym__newline_token] = ACTIONS(5036), + [aux_sym_insert_token1] = ACTIONS(5036), + [aux_sym_delete_token1] = ACTIONS(5036), + [aux_sym_highlight_token1] = ACTIONS(5036), + [aux_sym_edit_comment_token1] = ACTIONS(5036), + [anon_sym_CARET_LBRACK] = ACTIONS(5036), + [anon_sym_LBRACK_CARET] = ACTIONS(5036), + [sym_uri_autolink] = ACTIONS(5036), + [sym_email_autolink] = ACTIONS(5036), + [sym__whitespace_ge_2] = ACTIONS(5036), + [aux_sym__whitespace_token1] = ACTIONS(5038), + [sym__word_no_digit] = ACTIONS(5036), + [sym__digits] = ACTIONS(5036), + [anon_sym_DASH_DASH] = ACTIONS(5038), + [anon_sym_DASH_DASH_DASH] = ACTIONS(5036), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5036), + [sym__code_span_start] = ACTIONS(5036), + [sym__emphasis_open_star] = ACTIONS(5036), + [sym__emphasis_open_underscore] = ACTIONS(5036), + [sym__strikeout_open] = ACTIONS(5036), + [sym__latex_span_start] = ACTIONS(5036), + [sym__single_quote_open] = ACTIONS(5036), + [sym__double_quote_open] = ACTIONS(5036), + [sym__superscript_open] = ACTIONS(5036), + [sym__superscript_close] = ACTIONS(5036), + [sym__subscript_open] = ACTIONS(5036), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5036), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5036), + [sym__cite_author_in_text] = ACTIONS(5036), + [sym__cite_suppress_author] = ACTIONS(5036), + [sym__shortcode_open_escaped] = ACTIONS(5036), + [sym__shortcode_open] = ACTIONS(5036), + [sym__unclosed_span] = ACTIONS(5036), + }, + [STATE(730)] = { + [sym__backslash_escape] = ACTIONS(4812), + [sym_entity_reference] = ACTIONS(4812), + [sym_numeric_character_reference] = ACTIONS(4812), + [anon_sym_LT] = ACTIONS(4814), + [anon_sym_GT] = ACTIONS(4812), + [anon_sym_BANG] = ACTIONS(4812), + [anon_sym_DQUOTE] = ACTIONS(4812), + [anon_sym_POUND] = ACTIONS(4812), + [anon_sym_DOLLAR] = ACTIONS(4812), + [anon_sym_PERCENT] = ACTIONS(4812), + [anon_sym_AMP] = ACTIONS(4814), + [anon_sym_SQUOTE] = ACTIONS(4812), + [anon_sym_STAR] = ACTIONS(4812), + [anon_sym_PLUS] = ACTIONS(4812), + [anon_sym_COMMA] = ACTIONS(4812), + [anon_sym_DASH] = ACTIONS(4814), + [anon_sym_DOT] = ACTIONS(4814), + [anon_sym_SLASH] = ACTIONS(4812), + [anon_sym_COLON] = ACTIONS(4812), + [anon_sym_SEMI] = ACTIONS(4812), + [anon_sym_EQ] = ACTIONS(4812), + [anon_sym_QMARK] = ACTIONS(4812), + [anon_sym_LBRACK] = ACTIONS(4814), + [anon_sym_BSLASH] = ACTIONS(4814), + [anon_sym_CARET] = ACTIONS(4814), + [anon_sym__] = ACTIONS(4812), + [anon_sym_BQUOTE] = ACTIONS(4812), + [anon_sym_LBRACE] = ACTIONS(4812), + [anon_sym_PIPE] = ACTIONS(4812), + [anon_sym_TILDE] = ACTIONS(4812), + [anon_sym_LPAREN] = ACTIONS(4812), + [anon_sym_RPAREN] = ACTIONS(4812), + [sym__newline_token] = ACTIONS(4812), + [aux_sym_insert_token1] = ACTIONS(4812), + [aux_sym_delete_token1] = ACTIONS(4812), + [aux_sym_highlight_token1] = ACTIONS(4812), + [aux_sym_edit_comment_token1] = ACTIONS(4812), + [anon_sym_CARET_LBRACK] = ACTIONS(4812), + [anon_sym_LBRACK_CARET] = ACTIONS(4812), + [sym_uri_autolink] = ACTIONS(4812), + [sym_email_autolink] = ACTIONS(4812), + [sym__whitespace_ge_2] = ACTIONS(4812), + [aux_sym__whitespace_token1] = ACTIONS(4814), + [sym__word_no_digit] = ACTIONS(4812), + [sym__digits] = ACTIONS(4812), + [anon_sym_DASH_DASH] = ACTIONS(4814), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4812), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4812), + [sym__code_span_start] = ACTIONS(4812), + [sym__emphasis_open_star] = ACTIONS(4812), + [sym__emphasis_open_underscore] = ACTIONS(4812), + [sym__strikeout_open] = ACTIONS(4812), + [sym__latex_span_start] = ACTIONS(4812), + [sym__single_quote_open] = ACTIONS(4812), + [sym__double_quote_open] = ACTIONS(4812), + [sym__superscript_open] = ACTIONS(4812), + [sym__superscript_close] = ACTIONS(4812), + [sym__subscript_open] = ACTIONS(4812), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4812), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4812), + [sym__cite_author_in_text] = ACTIONS(4812), + [sym__cite_suppress_author] = ACTIONS(4812), + [sym__shortcode_open_escaped] = ACTIONS(4812), + [sym__shortcode_open] = ACTIONS(4812), + [sym__unclosed_span] = ACTIONS(4812), + }, + [STATE(731)] = { + [sym__backslash_escape] = ACTIONS(4816), + [sym_entity_reference] = ACTIONS(4816), + [sym_numeric_character_reference] = ACTIONS(4816), + [anon_sym_LT] = ACTIONS(4818), + [anon_sym_GT] = ACTIONS(4816), + [anon_sym_BANG] = ACTIONS(4816), + [anon_sym_DQUOTE] = ACTIONS(4816), + [anon_sym_POUND] = ACTIONS(4816), + [anon_sym_DOLLAR] = ACTIONS(4816), + [anon_sym_PERCENT] = ACTIONS(4816), + [anon_sym_AMP] = ACTIONS(4818), + [anon_sym_SQUOTE] = ACTIONS(4816), + [anon_sym_STAR] = ACTIONS(4816), + [anon_sym_PLUS] = ACTIONS(4816), + [anon_sym_COMMA] = ACTIONS(4816), + [anon_sym_DASH] = ACTIONS(4818), + [anon_sym_DOT] = ACTIONS(4818), + [anon_sym_SLASH] = ACTIONS(4816), + [anon_sym_COLON] = ACTIONS(4816), + [anon_sym_SEMI] = ACTIONS(4816), + [anon_sym_EQ] = ACTIONS(4816), + [anon_sym_QMARK] = ACTIONS(4816), + [anon_sym_LBRACK] = ACTIONS(4818), + [anon_sym_BSLASH] = ACTIONS(4818), + [anon_sym_CARET] = ACTIONS(4818), + [anon_sym__] = ACTIONS(4816), + [anon_sym_BQUOTE] = ACTIONS(4816), + [anon_sym_LBRACE] = ACTIONS(4816), + [anon_sym_PIPE] = ACTIONS(4816), + [anon_sym_TILDE] = ACTIONS(4816), + [anon_sym_LPAREN] = ACTIONS(4816), + [anon_sym_RPAREN] = ACTIONS(4816), + [sym__newline_token] = ACTIONS(4816), + [aux_sym_insert_token1] = ACTIONS(4816), + [aux_sym_delete_token1] = ACTIONS(4816), + [aux_sym_highlight_token1] = ACTIONS(4816), + [aux_sym_edit_comment_token1] = ACTIONS(4816), + [anon_sym_CARET_LBRACK] = ACTIONS(4816), + [anon_sym_LBRACK_CARET] = ACTIONS(4816), + [sym_uri_autolink] = ACTIONS(4816), + [sym_email_autolink] = ACTIONS(4816), + [sym__whitespace_ge_2] = ACTIONS(4816), + [aux_sym__whitespace_token1] = ACTIONS(4818), + [sym__word_no_digit] = ACTIONS(4816), + [sym__digits] = ACTIONS(4816), + [anon_sym_DASH_DASH] = ACTIONS(4818), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4816), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4816), + [sym__code_span_start] = ACTIONS(4816), + [sym__emphasis_open_star] = ACTIONS(4816), + [sym__emphasis_open_underscore] = ACTIONS(4816), + [sym__strikeout_open] = ACTIONS(4816), + [sym__latex_span_start] = ACTIONS(4816), + [sym__single_quote_open] = ACTIONS(4816), + [sym__double_quote_open] = ACTIONS(4816), + [sym__superscript_open] = ACTIONS(4816), + [sym__superscript_close] = ACTIONS(4816), + [sym__subscript_open] = ACTIONS(4816), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4816), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4816), + [sym__cite_author_in_text] = ACTIONS(4816), + [sym__cite_suppress_author] = ACTIONS(4816), + [sym__shortcode_open_escaped] = ACTIONS(4816), + [sym__shortcode_open] = ACTIONS(4816), + [sym__unclosed_span] = ACTIONS(4816), + }, + [STATE(732)] = { + [sym__backslash_escape] = ACTIONS(4840), + [sym_entity_reference] = ACTIONS(4840), + [sym_numeric_character_reference] = ACTIONS(4840), + [anon_sym_LT] = ACTIONS(4842), + [anon_sym_GT] = ACTIONS(4840), + [anon_sym_BANG] = ACTIONS(4840), + [anon_sym_DQUOTE] = ACTIONS(4840), + [anon_sym_POUND] = ACTIONS(4840), + [anon_sym_DOLLAR] = ACTIONS(4840), + [anon_sym_PERCENT] = ACTIONS(4840), + [anon_sym_AMP] = ACTIONS(4842), + [anon_sym_SQUOTE] = ACTIONS(4840), + [anon_sym_STAR] = ACTIONS(4840), + [anon_sym_PLUS] = ACTIONS(4840), + [anon_sym_COMMA] = ACTIONS(4840), + [anon_sym_DASH] = ACTIONS(4842), + [anon_sym_DOT] = ACTIONS(4842), + [anon_sym_SLASH] = ACTIONS(4840), + [anon_sym_COLON] = ACTIONS(4840), + [anon_sym_SEMI] = ACTIONS(4840), + [anon_sym_EQ] = ACTIONS(4840), + [anon_sym_QMARK] = ACTIONS(4840), + [anon_sym_LBRACK] = ACTIONS(4842), + [anon_sym_BSLASH] = ACTIONS(4842), + [anon_sym_CARET] = ACTIONS(4842), + [anon_sym__] = ACTIONS(4840), + [anon_sym_BQUOTE] = ACTIONS(4840), + [anon_sym_LBRACE] = ACTIONS(4840), + [anon_sym_PIPE] = ACTIONS(4840), + [anon_sym_TILDE] = ACTIONS(4840), + [anon_sym_LPAREN] = ACTIONS(4840), + [anon_sym_RPAREN] = ACTIONS(4840), + [sym__newline_token] = ACTIONS(4840), + [aux_sym_insert_token1] = ACTIONS(4840), + [aux_sym_delete_token1] = ACTIONS(4840), + [aux_sym_highlight_token1] = ACTIONS(4840), + [aux_sym_edit_comment_token1] = ACTIONS(4840), + [anon_sym_CARET_LBRACK] = ACTIONS(4840), + [anon_sym_LBRACK_CARET] = ACTIONS(4840), + [sym_uri_autolink] = ACTIONS(4840), + [sym_email_autolink] = ACTIONS(4840), + [sym__whitespace_ge_2] = ACTIONS(4840), + [aux_sym__whitespace_token1] = ACTIONS(4842), + [sym__word_no_digit] = ACTIONS(4840), + [sym__digits] = ACTIONS(4840), + [anon_sym_DASH_DASH] = ACTIONS(4842), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4840), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4840), + [sym__code_span_start] = ACTIONS(4840), + [sym__emphasis_open_star] = ACTIONS(4840), + [sym__emphasis_open_underscore] = ACTIONS(4840), + [sym__strikeout_open] = ACTIONS(4840), + [sym__latex_span_start] = ACTIONS(4840), + [sym__single_quote_open] = ACTIONS(4840), + [sym__double_quote_open] = ACTIONS(4840), + [sym__superscript_open] = ACTIONS(4840), + [sym__superscript_close] = ACTIONS(4840), + [sym__subscript_open] = ACTIONS(4840), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4840), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4840), + [sym__cite_author_in_text] = ACTIONS(4840), + [sym__cite_suppress_author] = ACTIONS(4840), + [sym__shortcode_open_escaped] = ACTIONS(4840), + [sym__shortcode_open] = ACTIONS(4840), + [sym__unclosed_span] = ACTIONS(4840), + }, + [STATE(733)] = { + [sym__backslash_escape] = ACTIONS(5040), + [sym_entity_reference] = ACTIONS(5040), + [sym_numeric_character_reference] = ACTIONS(5040), + [anon_sym_LT] = ACTIONS(5042), + [anon_sym_GT] = ACTIONS(5040), + [anon_sym_BANG] = ACTIONS(5040), + [anon_sym_DQUOTE] = ACTIONS(5040), + [anon_sym_POUND] = ACTIONS(5040), + [anon_sym_DOLLAR] = ACTIONS(5040), + [anon_sym_PERCENT] = ACTIONS(5040), + [anon_sym_AMP] = ACTIONS(5042), + [anon_sym_SQUOTE] = ACTIONS(5040), + [anon_sym_STAR] = ACTIONS(5040), + [anon_sym_PLUS] = ACTIONS(5040), + [anon_sym_COMMA] = ACTIONS(5040), + [anon_sym_DASH] = ACTIONS(5042), + [anon_sym_DOT] = ACTIONS(5042), + [anon_sym_SLASH] = ACTIONS(5040), + [anon_sym_COLON] = ACTIONS(5040), + [anon_sym_SEMI] = ACTIONS(5040), + [anon_sym_EQ] = ACTIONS(5040), + [anon_sym_QMARK] = ACTIONS(5040), + [anon_sym_LBRACK] = ACTIONS(5042), + [anon_sym_BSLASH] = ACTIONS(5042), + [anon_sym_CARET] = ACTIONS(5042), + [anon_sym__] = ACTIONS(5040), + [anon_sym_BQUOTE] = ACTIONS(5040), + [anon_sym_LBRACE] = ACTIONS(5040), + [anon_sym_PIPE] = ACTIONS(5040), + [anon_sym_TILDE] = ACTIONS(5040), + [anon_sym_LPAREN] = ACTIONS(5040), + [anon_sym_RPAREN] = ACTIONS(5040), + [sym__newline_token] = ACTIONS(5040), + [aux_sym_insert_token1] = ACTIONS(5040), + [aux_sym_delete_token1] = ACTIONS(5040), + [aux_sym_highlight_token1] = ACTIONS(5040), + [aux_sym_edit_comment_token1] = ACTIONS(5040), + [anon_sym_CARET_LBRACK] = ACTIONS(5040), + [anon_sym_LBRACK_CARET] = ACTIONS(5040), + [sym_uri_autolink] = ACTIONS(5040), + [sym_email_autolink] = ACTIONS(5040), + [sym__whitespace_ge_2] = ACTIONS(5040), + [aux_sym__whitespace_token1] = ACTIONS(5042), + [sym__word_no_digit] = ACTIONS(5040), + [sym__digits] = ACTIONS(5040), + [anon_sym_DASH_DASH] = ACTIONS(5042), + [anon_sym_DASH_DASH_DASH] = ACTIONS(5040), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5040), + [sym__code_span_start] = ACTIONS(5040), + [sym__emphasis_open_star] = ACTIONS(5040), + [sym__emphasis_open_underscore] = ACTIONS(5040), + [sym__strikeout_open] = ACTIONS(5040), + [sym__strikeout_close] = ACTIONS(5040), + [sym__latex_span_start] = ACTIONS(5040), + [sym__single_quote_open] = ACTIONS(5040), + [sym__double_quote_open] = ACTIONS(5040), + [sym__superscript_open] = ACTIONS(5040), + [sym__subscript_open] = ACTIONS(5040), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5040), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5040), + [sym__cite_author_in_text] = ACTIONS(5040), + [sym__cite_suppress_author] = ACTIONS(5040), + [sym__shortcode_open_escaped] = ACTIONS(5040), + [sym__shortcode_open] = ACTIONS(5040), + [sym__unclosed_span] = ACTIONS(5040), + }, + [STATE(734)] = { + [sym__backslash_escape] = ACTIONS(4856), + [sym_entity_reference] = ACTIONS(4856), + [sym_numeric_character_reference] = ACTIONS(4856), + [anon_sym_LT] = ACTIONS(4858), + [anon_sym_GT] = ACTIONS(4856), + [anon_sym_BANG] = ACTIONS(4856), + [anon_sym_DQUOTE] = ACTIONS(4856), + [anon_sym_POUND] = ACTIONS(4856), + [anon_sym_DOLLAR] = ACTIONS(4856), + [anon_sym_PERCENT] = ACTIONS(4856), + [anon_sym_AMP] = ACTIONS(4858), + [anon_sym_SQUOTE] = ACTIONS(4856), + [anon_sym_STAR] = ACTIONS(4856), + [anon_sym_PLUS] = ACTIONS(4856), + [anon_sym_COMMA] = ACTIONS(4856), + [anon_sym_DASH] = ACTIONS(4858), + [anon_sym_DOT] = ACTIONS(4858), + [anon_sym_SLASH] = ACTIONS(4856), + [anon_sym_COLON] = ACTIONS(4856), + [anon_sym_SEMI] = ACTIONS(4856), + [anon_sym_EQ] = ACTIONS(4856), + [anon_sym_QMARK] = ACTIONS(4856), + [anon_sym_LBRACK] = ACTIONS(4858), + [anon_sym_BSLASH] = ACTIONS(4858), + [anon_sym_CARET] = ACTIONS(4858), + [anon_sym__] = ACTIONS(4856), + [anon_sym_BQUOTE] = ACTIONS(4856), + [anon_sym_LBRACE] = ACTIONS(4856), + [anon_sym_PIPE] = ACTIONS(4856), + [anon_sym_TILDE] = ACTIONS(4856), + [anon_sym_LPAREN] = ACTIONS(4856), + [anon_sym_RPAREN] = ACTIONS(4856), + [sym__newline_token] = ACTIONS(4856), + [aux_sym_insert_token1] = ACTIONS(4856), + [aux_sym_delete_token1] = ACTIONS(4856), + [aux_sym_highlight_token1] = ACTIONS(4856), + [aux_sym_edit_comment_token1] = ACTIONS(4856), + [anon_sym_CARET_LBRACK] = ACTIONS(4856), + [anon_sym_LBRACK_CARET] = ACTIONS(4856), + [sym_uri_autolink] = ACTIONS(4856), + [sym_email_autolink] = ACTIONS(4856), + [sym__whitespace_ge_2] = ACTIONS(4856), + [aux_sym__whitespace_token1] = ACTIONS(4858), + [sym__word_no_digit] = ACTIONS(4856), + [sym__digits] = ACTIONS(4856), + [anon_sym_DASH_DASH] = ACTIONS(4858), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4856), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4856), + [sym__code_span_start] = ACTIONS(4856), + [sym__emphasis_open_star] = ACTIONS(4856), + [sym__emphasis_open_underscore] = ACTIONS(4856), + [sym__strikeout_open] = ACTIONS(4856), + [sym__latex_span_start] = ACTIONS(4856), + [sym__single_quote_open] = ACTIONS(4856), + [sym__double_quote_open] = ACTIONS(4856), + [sym__double_quote_close] = ACTIONS(4856), + [sym__superscript_open] = ACTIONS(4856), + [sym__subscript_open] = ACTIONS(4856), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4856), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4856), + [sym__cite_author_in_text] = ACTIONS(4856), + [sym__cite_suppress_author] = ACTIONS(4856), + [sym__shortcode_open_escaped] = ACTIONS(4856), + [sym__shortcode_open] = ACTIONS(4856), + [sym__unclosed_span] = ACTIONS(4856), + }, + [STATE(735)] = { + [sym__backslash_escape] = ACTIONS(4880), + [sym_entity_reference] = ACTIONS(4880), + [sym_numeric_character_reference] = ACTIONS(4880), + [anon_sym_LT] = ACTIONS(4882), + [anon_sym_GT] = ACTIONS(4880), + [anon_sym_BANG] = ACTIONS(4880), + [anon_sym_DQUOTE] = ACTIONS(4880), + [anon_sym_POUND] = ACTIONS(4880), + [anon_sym_DOLLAR] = ACTIONS(4880), + [anon_sym_PERCENT] = ACTIONS(4880), + [anon_sym_AMP] = ACTIONS(4882), + [anon_sym_SQUOTE] = ACTIONS(4880), + [anon_sym_STAR] = ACTIONS(4880), + [anon_sym_PLUS] = ACTIONS(4880), + [anon_sym_COMMA] = ACTIONS(4880), + [anon_sym_DASH] = ACTIONS(4882), + [anon_sym_DOT] = ACTIONS(4882), + [anon_sym_SLASH] = ACTIONS(4880), + [anon_sym_COLON] = ACTIONS(4880), + [anon_sym_SEMI] = ACTIONS(4880), + [anon_sym_EQ] = ACTIONS(4880), + [anon_sym_QMARK] = ACTIONS(4880), + [anon_sym_LBRACK] = ACTIONS(4882), + [anon_sym_BSLASH] = ACTIONS(4882), + [anon_sym_CARET] = ACTIONS(4882), + [anon_sym__] = ACTIONS(4880), + [anon_sym_BQUOTE] = ACTIONS(4880), + [anon_sym_LBRACE] = ACTIONS(4880), + [anon_sym_PIPE] = ACTIONS(4880), + [anon_sym_TILDE] = ACTIONS(4880), + [anon_sym_LPAREN] = ACTIONS(4880), + [anon_sym_RPAREN] = ACTIONS(4880), + [sym__newline_token] = ACTIONS(4880), + [aux_sym_insert_token1] = ACTIONS(4880), + [aux_sym_delete_token1] = ACTIONS(4880), + [aux_sym_highlight_token1] = ACTIONS(4880), + [aux_sym_edit_comment_token1] = ACTIONS(4880), + [anon_sym_CARET_LBRACK] = ACTIONS(4880), + [anon_sym_LBRACK_CARET] = ACTIONS(4880), + [sym_uri_autolink] = ACTIONS(4880), + [sym_email_autolink] = ACTIONS(4880), + [sym__whitespace_ge_2] = ACTIONS(4880), + [aux_sym__whitespace_token1] = ACTIONS(4882), + [sym__word_no_digit] = ACTIONS(4880), + [sym__digits] = ACTIONS(4880), + [anon_sym_DASH_DASH] = ACTIONS(4882), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4880), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4880), + [sym__code_span_start] = ACTIONS(4880), + [sym__emphasis_open_star] = ACTIONS(4880), + [sym__emphasis_open_underscore] = ACTIONS(4880), + [sym__strikeout_open] = ACTIONS(4880), + [sym__latex_span_start] = ACTIONS(4880), + [sym__single_quote_open] = ACTIONS(4880), + [sym__double_quote_open] = ACTIONS(4880), + [sym__superscript_open] = ACTIONS(4880), + [sym__superscript_close] = ACTIONS(4880), + [sym__subscript_open] = ACTIONS(4880), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4880), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4880), + [sym__cite_author_in_text] = ACTIONS(4880), + [sym__cite_suppress_author] = ACTIONS(4880), + [sym__shortcode_open_escaped] = ACTIONS(4880), + [sym__shortcode_open] = ACTIONS(4880), + [sym__unclosed_span] = ACTIONS(4880), + }, + [STATE(736)] = { + [sym__backslash_escape] = ACTIONS(4596), + [sym_entity_reference] = ACTIONS(4596), + [sym_numeric_character_reference] = ACTIONS(4596), + [anon_sym_LT] = ACTIONS(4598), + [anon_sym_GT] = ACTIONS(4596), + [anon_sym_BANG] = ACTIONS(4596), + [anon_sym_DQUOTE] = ACTIONS(4596), + [anon_sym_POUND] = ACTIONS(4596), + [anon_sym_DOLLAR] = ACTIONS(4596), + [anon_sym_PERCENT] = ACTIONS(4596), + [anon_sym_AMP] = ACTIONS(4598), + [anon_sym_SQUOTE] = ACTIONS(4596), + [anon_sym_STAR] = ACTIONS(4596), + [anon_sym_PLUS] = ACTIONS(4596), + [anon_sym_COMMA] = ACTIONS(4596), + [anon_sym_DASH] = ACTIONS(4598), + [anon_sym_DOT] = ACTIONS(4598), + [anon_sym_SLASH] = ACTIONS(4596), + [anon_sym_COLON] = ACTIONS(4596), + [anon_sym_SEMI] = ACTIONS(4596), + [anon_sym_EQ] = ACTIONS(4596), + [anon_sym_QMARK] = ACTIONS(4596), + [anon_sym_LBRACK] = ACTIONS(4598), + [anon_sym_BSLASH] = ACTIONS(4598), + [anon_sym_CARET] = ACTIONS(4598), + [anon_sym__] = ACTIONS(4596), + [anon_sym_BQUOTE] = ACTIONS(4596), + [anon_sym_LBRACE] = ACTIONS(4596), + [anon_sym_PIPE] = ACTIONS(4596), + [anon_sym_TILDE] = ACTIONS(4596), + [anon_sym_LPAREN] = ACTIONS(4596), + [anon_sym_RPAREN] = ACTIONS(4596), + [sym__newline_token] = ACTIONS(4596), + [aux_sym_insert_token1] = ACTIONS(4596), + [aux_sym_delete_token1] = ACTIONS(4596), + [aux_sym_highlight_token1] = ACTIONS(4596), + [aux_sym_edit_comment_token1] = ACTIONS(4596), + [anon_sym_CARET_LBRACK] = ACTIONS(4596), + [anon_sym_LBRACK_CARET] = ACTIONS(4596), + [sym_uri_autolink] = ACTIONS(4596), + [sym_email_autolink] = ACTIONS(4596), + [sym__whitespace_ge_2] = ACTIONS(4596), + [aux_sym__whitespace_token1] = ACTIONS(4598), + [sym__word_no_digit] = ACTIONS(4596), + [sym__digits] = ACTIONS(4596), + [anon_sym_DASH_DASH] = ACTIONS(4598), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4596), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4596), + [sym__code_span_start] = ACTIONS(4596), + [sym__emphasis_open_star] = ACTIONS(4596), + [sym__emphasis_open_underscore] = ACTIONS(4596), + [sym__strikeout_open] = ACTIONS(4596), + [sym__latex_span_start] = ACTIONS(4596), + [sym__single_quote_open] = ACTIONS(4596), + [sym__double_quote_open] = ACTIONS(4596), + [sym__superscript_open] = ACTIONS(4596), + [sym__superscript_close] = ACTIONS(4596), + [sym__subscript_open] = ACTIONS(4596), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4596), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4596), + [sym__cite_author_in_text] = ACTIONS(4596), + [sym__cite_suppress_author] = ACTIONS(4596), + [sym__shortcode_open_escaped] = ACTIONS(4596), + [sym__shortcode_open] = ACTIONS(4596), + [sym__unclosed_span] = ACTIONS(4596), + }, + [STATE(737)] = { + [sym__backslash_escape] = ACTIONS(5044), + [sym_entity_reference] = ACTIONS(5044), + [sym_numeric_character_reference] = ACTIONS(5044), + [anon_sym_LT] = ACTIONS(5046), + [anon_sym_GT] = ACTIONS(5044), + [anon_sym_BANG] = ACTIONS(5044), + [anon_sym_DQUOTE] = ACTIONS(5044), + [anon_sym_POUND] = ACTIONS(5044), + [anon_sym_DOLLAR] = ACTIONS(5044), + [anon_sym_PERCENT] = ACTIONS(5044), + [anon_sym_AMP] = ACTIONS(5046), + [anon_sym_SQUOTE] = ACTIONS(5044), + [anon_sym_STAR] = ACTIONS(5044), + [anon_sym_PLUS] = ACTIONS(5044), + [anon_sym_COMMA] = ACTIONS(5044), + [anon_sym_DASH] = ACTIONS(5046), + [anon_sym_DOT] = ACTIONS(5046), + [anon_sym_SLASH] = ACTIONS(5044), + [anon_sym_COLON] = ACTIONS(5044), + [anon_sym_SEMI] = ACTIONS(5044), + [anon_sym_EQ] = ACTIONS(5044), + [anon_sym_QMARK] = ACTIONS(5044), + [anon_sym_LBRACK] = ACTIONS(5046), + [anon_sym_BSLASH] = ACTIONS(5046), + [anon_sym_CARET] = ACTIONS(5046), + [anon_sym__] = ACTIONS(5044), + [anon_sym_BQUOTE] = ACTIONS(5044), + [anon_sym_LBRACE] = ACTIONS(5044), + [anon_sym_PIPE] = ACTIONS(5044), + [anon_sym_TILDE] = ACTIONS(5044), + [anon_sym_LPAREN] = ACTIONS(5044), + [anon_sym_RPAREN] = ACTIONS(5044), + [sym__newline_token] = ACTIONS(5044), + [aux_sym_insert_token1] = ACTIONS(5044), + [aux_sym_delete_token1] = ACTIONS(5044), + [aux_sym_highlight_token1] = ACTIONS(5044), + [aux_sym_edit_comment_token1] = ACTIONS(5044), + [anon_sym_CARET_LBRACK] = ACTIONS(5044), + [anon_sym_LBRACK_CARET] = ACTIONS(5044), + [sym_uri_autolink] = ACTIONS(5044), + [sym_email_autolink] = ACTIONS(5044), + [sym__whitespace_ge_2] = ACTIONS(5044), + [aux_sym__whitespace_token1] = ACTIONS(5046), + [sym__word_no_digit] = ACTIONS(5044), + [sym__digits] = ACTIONS(5044), + [anon_sym_DASH_DASH] = ACTIONS(5046), + [anon_sym_DASH_DASH_DASH] = ACTIONS(5044), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5044), + [sym__code_span_start] = ACTIONS(5044), + [sym__emphasis_open_star] = ACTIONS(5044), + [sym__emphasis_open_underscore] = ACTIONS(5044), + [sym__strikeout_open] = ACTIONS(5044), + [sym__strikeout_close] = ACTIONS(5044), + [sym__latex_span_start] = ACTIONS(5044), + [sym__single_quote_open] = ACTIONS(5044), + [sym__double_quote_open] = ACTIONS(5044), + [sym__superscript_open] = ACTIONS(5044), + [sym__subscript_open] = ACTIONS(5044), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5044), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5044), + [sym__cite_author_in_text] = ACTIONS(5044), + [sym__cite_suppress_author] = ACTIONS(5044), + [sym__shortcode_open_escaped] = ACTIONS(5044), + [sym__shortcode_open] = ACTIONS(5044), + [sym__unclosed_span] = ACTIONS(5044), + }, + [STATE(738)] = { + [sym__backslash_escape] = ACTIONS(4900), + [sym_entity_reference] = ACTIONS(4900), + [sym_numeric_character_reference] = ACTIONS(4900), + [anon_sym_LT] = ACTIONS(4902), + [anon_sym_GT] = ACTIONS(4900), + [anon_sym_BANG] = ACTIONS(4900), + [anon_sym_DQUOTE] = ACTIONS(4900), + [anon_sym_POUND] = ACTIONS(4900), + [anon_sym_DOLLAR] = ACTIONS(4900), + [anon_sym_PERCENT] = ACTIONS(4900), + [anon_sym_AMP] = ACTIONS(4902), + [anon_sym_SQUOTE] = ACTIONS(4900), + [anon_sym_STAR] = ACTIONS(4900), + [anon_sym_PLUS] = ACTIONS(4900), + [anon_sym_COMMA] = ACTIONS(4900), + [anon_sym_DASH] = ACTIONS(4902), + [anon_sym_DOT] = ACTIONS(4902), + [anon_sym_SLASH] = ACTIONS(4900), + [anon_sym_COLON] = ACTIONS(4900), + [anon_sym_SEMI] = ACTIONS(4900), + [anon_sym_EQ] = ACTIONS(4900), + [anon_sym_QMARK] = ACTIONS(4900), + [anon_sym_LBRACK] = ACTIONS(4902), + [anon_sym_BSLASH] = ACTIONS(4902), + [anon_sym_CARET] = ACTIONS(4902), + [anon_sym__] = ACTIONS(4900), + [anon_sym_BQUOTE] = ACTIONS(4900), + [anon_sym_LBRACE] = ACTIONS(4900), + [anon_sym_PIPE] = ACTIONS(4900), + [anon_sym_TILDE] = ACTIONS(4900), + [anon_sym_LPAREN] = ACTIONS(4900), + [anon_sym_RPAREN] = ACTIONS(4900), + [sym__newline_token] = ACTIONS(4900), + [aux_sym_insert_token1] = ACTIONS(4900), + [aux_sym_delete_token1] = ACTIONS(4900), + [aux_sym_highlight_token1] = ACTIONS(4900), + [aux_sym_edit_comment_token1] = ACTIONS(4900), + [anon_sym_CARET_LBRACK] = ACTIONS(4900), + [anon_sym_LBRACK_CARET] = ACTIONS(4900), + [sym_uri_autolink] = ACTIONS(4900), + [sym_email_autolink] = ACTIONS(4900), + [sym__whitespace_ge_2] = ACTIONS(4900), + [aux_sym__whitespace_token1] = ACTIONS(4902), + [sym__word_no_digit] = ACTIONS(4900), + [sym__digits] = ACTIONS(4900), + [anon_sym_DASH_DASH] = ACTIONS(4902), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4900), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4900), + [sym__code_span_start] = ACTIONS(4900), + [sym__emphasis_open_star] = ACTIONS(4900), + [sym__emphasis_open_underscore] = ACTIONS(4900), + [sym__strikeout_open] = ACTIONS(4900), + [sym__latex_span_start] = ACTIONS(4900), + [sym__single_quote_open] = ACTIONS(4900), + [sym__double_quote_open] = ACTIONS(4900), + [sym__superscript_open] = ACTIONS(4900), + [sym__superscript_close] = ACTIONS(4900), + [sym__subscript_open] = ACTIONS(4900), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4900), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4900), + [sym__cite_author_in_text] = ACTIONS(4900), + [sym__cite_suppress_author] = ACTIONS(4900), + [sym__shortcode_open_escaped] = ACTIONS(4900), + [sym__shortcode_open] = ACTIONS(4900), + [sym__unclosed_span] = ACTIONS(4900), + }, + [STATE(739)] = { + [sym__backslash_escape] = ACTIONS(5048), + [sym_entity_reference] = ACTIONS(5048), + [sym_numeric_character_reference] = ACTIONS(5048), + [anon_sym_LT] = ACTIONS(5050), + [anon_sym_GT] = ACTIONS(5048), + [anon_sym_BANG] = ACTIONS(5048), + [anon_sym_DQUOTE] = ACTIONS(5048), + [anon_sym_POUND] = ACTIONS(5048), + [anon_sym_DOLLAR] = ACTIONS(5048), + [anon_sym_PERCENT] = ACTIONS(5048), + [anon_sym_AMP] = ACTIONS(5050), + [anon_sym_SQUOTE] = ACTIONS(5048), + [anon_sym_STAR] = ACTIONS(5048), + [anon_sym_PLUS] = ACTIONS(5048), + [anon_sym_COMMA] = ACTIONS(5048), + [anon_sym_DASH] = ACTIONS(5050), + [anon_sym_DOT] = ACTIONS(5050), + [anon_sym_SLASH] = ACTIONS(5048), + [anon_sym_COLON] = ACTIONS(5048), + [anon_sym_SEMI] = ACTIONS(5048), + [anon_sym_EQ] = ACTIONS(5048), + [anon_sym_QMARK] = ACTIONS(5048), + [anon_sym_LBRACK] = ACTIONS(5050), + [anon_sym_BSLASH] = ACTIONS(5050), + [anon_sym_CARET] = ACTIONS(5050), + [anon_sym__] = ACTIONS(5048), + [anon_sym_BQUOTE] = ACTIONS(5048), + [anon_sym_LBRACE] = ACTIONS(5048), + [anon_sym_PIPE] = ACTIONS(5048), + [anon_sym_TILDE] = ACTIONS(5048), + [anon_sym_LPAREN] = ACTIONS(5048), + [anon_sym_RPAREN] = ACTIONS(5048), + [sym__newline_token] = ACTIONS(5048), + [aux_sym_insert_token1] = ACTIONS(5048), + [aux_sym_delete_token1] = ACTIONS(5048), + [aux_sym_highlight_token1] = ACTIONS(5048), + [aux_sym_edit_comment_token1] = ACTIONS(5048), + [anon_sym_CARET_LBRACK] = ACTIONS(5048), + [anon_sym_LBRACK_CARET] = ACTIONS(5048), + [sym_uri_autolink] = ACTIONS(5048), + [sym_email_autolink] = ACTIONS(5048), + [sym__whitespace_ge_2] = ACTIONS(5048), + [aux_sym__whitespace_token1] = ACTIONS(5050), + [sym__word_no_digit] = ACTIONS(5048), + [sym__digits] = ACTIONS(5048), + [anon_sym_DASH_DASH] = ACTIONS(5050), + [anon_sym_DASH_DASH_DASH] = ACTIONS(5048), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5048), + [sym__code_span_start] = ACTIONS(5048), + [sym__emphasis_open_star] = ACTIONS(5048), + [sym__emphasis_open_underscore] = ACTIONS(5048), + [sym__strikeout_open] = ACTIONS(5048), + [sym__strikeout_close] = ACTIONS(5048), + [sym__latex_span_start] = ACTIONS(5048), + [sym__single_quote_open] = ACTIONS(5048), + [sym__double_quote_open] = ACTIONS(5048), + [sym__superscript_open] = ACTIONS(5048), + [sym__subscript_open] = ACTIONS(5048), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5048), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5048), + [sym__cite_author_in_text] = ACTIONS(5048), + [sym__cite_suppress_author] = ACTIONS(5048), + [sym__shortcode_open_escaped] = ACTIONS(5048), + [sym__shortcode_open] = ACTIONS(5048), + [sym__unclosed_span] = ACTIONS(5048), + }, + [STATE(740)] = { + [sym__backslash_escape] = ACTIONS(4912), + [sym_entity_reference] = ACTIONS(4912), + [sym_numeric_character_reference] = ACTIONS(4912), + [anon_sym_LT] = ACTIONS(4914), + [anon_sym_GT] = ACTIONS(4912), + [anon_sym_BANG] = ACTIONS(4912), + [anon_sym_DQUOTE] = ACTIONS(4912), + [anon_sym_POUND] = ACTIONS(4912), + [anon_sym_DOLLAR] = ACTIONS(4912), + [anon_sym_PERCENT] = ACTIONS(4912), + [anon_sym_AMP] = ACTIONS(4914), + [anon_sym_SQUOTE] = ACTIONS(4912), + [anon_sym_STAR] = ACTIONS(4912), + [anon_sym_PLUS] = ACTIONS(4912), + [anon_sym_COMMA] = ACTIONS(4912), + [anon_sym_DASH] = ACTIONS(4914), + [anon_sym_DOT] = ACTIONS(4914), + [anon_sym_SLASH] = ACTIONS(4912), + [anon_sym_COLON] = ACTIONS(4912), + [anon_sym_SEMI] = ACTIONS(4912), + [anon_sym_EQ] = ACTIONS(4912), + [anon_sym_QMARK] = ACTIONS(4912), + [anon_sym_LBRACK] = ACTIONS(4914), + [anon_sym_BSLASH] = ACTIONS(4914), + [anon_sym_CARET] = ACTIONS(4914), + [anon_sym__] = ACTIONS(4912), + [anon_sym_BQUOTE] = ACTIONS(4912), + [anon_sym_LBRACE] = ACTIONS(4912), + [anon_sym_PIPE] = ACTIONS(4912), + [anon_sym_TILDE] = ACTIONS(4912), + [anon_sym_LPAREN] = ACTIONS(4912), + [anon_sym_RPAREN] = ACTIONS(4912), + [sym__newline_token] = ACTIONS(4912), + [aux_sym_insert_token1] = ACTIONS(4912), + [aux_sym_delete_token1] = ACTIONS(4912), + [aux_sym_highlight_token1] = ACTIONS(4912), + [aux_sym_edit_comment_token1] = ACTIONS(4912), + [anon_sym_CARET_LBRACK] = ACTIONS(4912), + [anon_sym_LBRACK_CARET] = ACTIONS(4912), + [sym_uri_autolink] = ACTIONS(4912), + [sym_email_autolink] = ACTIONS(4912), + [sym__whitespace_ge_2] = ACTIONS(4912), + [aux_sym__whitespace_token1] = ACTIONS(4914), + [sym__word_no_digit] = ACTIONS(4912), + [sym__digits] = ACTIONS(4912), + [anon_sym_DASH_DASH] = ACTIONS(4914), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4912), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4912), + [sym__code_span_start] = ACTIONS(4912), + [sym__emphasis_open_star] = ACTIONS(4912), + [sym__emphasis_open_underscore] = ACTIONS(4912), + [sym__strikeout_open] = ACTIONS(4912), + [sym__latex_span_start] = ACTIONS(4912), + [sym__single_quote_open] = ACTIONS(4912), + [sym__double_quote_open] = ACTIONS(4912), + [sym__superscript_open] = ACTIONS(4912), + [sym__superscript_close] = ACTIONS(4912), + [sym__subscript_open] = ACTIONS(4912), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4912), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4912), + [sym__cite_author_in_text] = ACTIONS(4912), + [sym__cite_suppress_author] = ACTIONS(4912), + [sym__shortcode_open_escaped] = ACTIONS(4912), + [sym__shortcode_open] = ACTIONS(4912), + [sym__unclosed_span] = ACTIONS(4912), + }, + [STATE(741)] = { + [sym__backslash_escape] = ACTIONS(4916), + [sym_entity_reference] = ACTIONS(4916), + [sym_numeric_character_reference] = ACTIONS(4916), + [anon_sym_LT] = ACTIONS(4918), + [anon_sym_GT] = ACTIONS(4916), + [anon_sym_BANG] = ACTIONS(4916), + [anon_sym_DQUOTE] = ACTIONS(4916), + [anon_sym_POUND] = ACTIONS(4916), + [anon_sym_DOLLAR] = ACTIONS(4916), + [anon_sym_PERCENT] = ACTIONS(4916), + [anon_sym_AMP] = ACTIONS(4918), + [anon_sym_SQUOTE] = ACTIONS(4916), + [anon_sym_STAR] = ACTIONS(4916), + [anon_sym_PLUS] = ACTIONS(4916), + [anon_sym_COMMA] = ACTIONS(4916), + [anon_sym_DASH] = ACTIONS(4918), + [anon_sym_DOT] = ACTIONS(4918), + [anon_sym_SLASH] = ACTIONS(4916), + [anon_sym_COLON] = ACTIONS(4916), + [anon_sym_SEMI] = ACTIONS(4916), + [anon_sym_EQ] = ACTIONS(4916), + [anon_sym_QMARK] = ACTIONS(4916), + [anon_sym_LBRACK] = ACTIONS(4918), + [anon_sym_BSLASH] = ACTIONS(4918), + [anon_sym_CARET] = ACTIONS(4918), + [anon_sym__] = ACTIONS(4916), + [anon_sym_BQUOTE] = ACTIONS(4916), + [anon_sym_LBRACE] = ACTIONS(4916), + [anon_sym_PIPE] = ACTIONS(4916), + [anon_sym_TILDE] = ACTIONS(4916), + [anon_sym_LPAREN] = ACTIONS(4916), + [anon_sym_RPAREN] = ACTIONS(4916), + [sym__newline_token] = ACTIONS(4916), + [aux_sym_insert_token1] = ACTIONS(4916), + [aux_sym_delete_token1] = ACTIONS(4916), + [aux_sym_highlight_token1] = ACTIONS(4916), + [aux_sym_edit_comment_token1] = ACTIONS(4916), + [anon_sym_CARET_LBRACK] = ACTIONS(4916), + [anon_sym_LBRACK_CARET] = ACTIONS(4916), + [sym_uri_autolink] = ACTIONS(4916), + [sym_email_autolink] = ACTIONS(4916), + [sym__whitespace_ge_2] = ACTIONS(4916), + [aux_sym__whitespace_token1] = ACTIONS(4918), + [sym__word_no_digit] = ACTIONS(4916), + [sym__digits] = ACTIONS(4916), + [anon_sym_DASH_DASH] = ACTIONS(4918), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4916), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4916), + [sym__code_span_start] = ACTIONS(4916), + [sym__emphasis_open_star] = ACTIONS(4916), + [sym__emphasis_open_underscore] = ACTIONS(4916), + [sym__strikeout_open] = ACTIONS(4916), + [sym__latex_span_start] = ACTIONS(4916), + [sym__single_quote_open] = ACTIONS(4916), + [sym__double_quote_open] = ACTIONS(4916), + [sym__superscript_open] = ACTIONS(4916), + [sym__superscript_close] = ACTIONS(4916), + [sym__subscript_open] = ACTIONS(4916), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4916), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4916), + [sym__cite_author_in_text] = ACTIONS(4916), + [sym__cite_suppress_author] = ACTIONS(4916), + [sym__shortcode_open_escaped] = ACTIONS(4916), + [sym__shortcode_open] = ACTIONS(4916), + [sym__unclosed_span] = ACTIONS(4916), + }, + [STATE(742)] = { + [sym__backslash_escape] = ACTIONS(4920), + [sym_entity_reference] = ACTIONS(4920), + [sym_numeric_character_reference] = ACTIONS(4920), + [anon_sym_LT] = ACTIONS(4922), + [anon_sym_GT] = ACTIONS(4920), + [anon_sym_BANG] = ACTIONS(4920), + [anon_sym_DQUOTE] = ACTIONS(4920), + [anon_sym_POUND] = ACTIONS(4920), + [anon_sym_DOLLAR] = ACTIONS(4920), + [anon_sym_PERCENT] = ACTIONS(4920), + [anon_sym_AMP] = ACTIONS(4922), + [anon_sym_SQUOTE] = ACTIONS(4920), + [anon_sym_STAR] = ACTIONS(4920), + [anon_sym_PLUS] = ACTIONS(4920), + [anon_sym_COMMA] = ACTIONS(4920), + [anon_sym_DASH] = ACTIONS(4922), + [anon_sym_DOT] = ACTIONS(4922), + [anon_sym_SLASH] = ACTIONS(4920), + [anon_sym_COLON] = ACTIONS(4920), + [anon_sym_SEMI] = ACTIONS(4920), + [anon_sym_EQ] = ACTIONS(4920), + [anon_sym_QMARK] = ACTIONS(4920), + [anon_sym_LBRACK] = ACTIONS(4922), + [anon_sym_BSLASH] = ACTIONS(4922), + [anon_sym_CARET] = ACTIONS(4922), + [anon_sym__] = ACTIONS(4920), + [anon_sym_BQUOTE] = ACTIONS(4920), + [anon_sym_LBRACE] = ACTIONS(4920), + [anon_sym_PIPE] = ACTIONS(4920), + [anon_sym_TILDE] = ACTIONS(4920), + [anon_sym_LPAREN] = ACTIONS(4920), + [anon_sym_RPAREN] = ACTIONS(4920), + [sym__newline_token] = ACTIONS(4920), + [aux_sym_insert_token1] = ACTIONS(4920), + [aux_sym_delete_token1] = ACTIONS(4920), + [aux_sym_highlight_token1] = ACTIONS(4920), + [aux_sym_edit_comment_token1] = ACTIONS(4920), + [anon_sym_CARET_LBRACK] = ACTIONS(4920), + [anon_sym_LBRACK_CARET] = ACTIONS(4920), + [sym_uri_autolink] = ACTIONS(4920), + [sym_email_autolink] = ACTIONS(4920), + [sym__whitespace_ge_2] = ACTIONS(4920), + [aux_sym__whitespace_token1] = ACTIONS(4922), + [sym__word_no_digit] = ACTIONS(4920), + [sym__digits] = ACTIONS(4920), + [anon_sym_DASH_DASH] = ACTIONS(4922), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4920), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4920), + [sym__code_span_start] = ACTIONS(4920), + [sym__emphasis_open_star] = ACTIONS(4920), + [sym__emphasis_open_underscore] = ACTIONS(4920), + [sym__strikeout_open] = ACTIONS(4920), + [sym__latex_span_start] = ACTIONS(4920), + [sym__single_quote_open] = ACTIONS(4920), + [sym__double_quote_open] = ACTIONS(4920), + [sym__superscript_open] = ACTIONS(4920), + [sym__superscript_close] = ACTIONS(4920), + [sym__subscript_open] = ACTIONS(4920), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4920), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4920), + [sym__cite_author_in_text] = ACTIONS(4920), + [sym__cite_suppress_author] = ACTIONS(4920), + [sym__shortcode_open_escaped] = ACTIONS(4920), + [sym__shortcode_open] = ACTIONS(4920), + [sym__unclosed_span] = ACTIONS(4920), + }, + [STATE(743)] = { + [sym__backslash_escape] = ACTIONS(4932), + [sym_entity_reference] = ACTIONS(4932), + [sym_numeric_character_reference] = ACTIONS(4932), + [anon_sym_LT] = ACTIONS(4934), + [anon_sym_GT] = ACTIONS(4932), + [anon_sym_BANG] = ACTIONS(4932), + [anon_sym_DQUOTE] = ACTIONS(4932), + [anon_sym_POUND] = ACTIONS(4932), + [anon_sym_DOLLAR] = ACTIONS(4932), + [anon_sym_PERCENT] = ACTIONS(4932), + [anon_sym_AMP] = ACTIONS(4934), + [anon_sym_SQUOTE] = ACTIONS(4932), + [anon_sym_STAR] = ACTIONS(4932), + [anon_sym_PLUS] = ACTIONS(4932), + [anon_sym_COMMA] = ACTIONS(4932), + [anon_sym_DASH] = ACTIONS(4934), + [anon_sym_DOT] = ACTIONS(4934), + [anon_sym_SLASH] = ACTIONS(4932), + [anon_sym_COLON] = ACTIONS(4932), + [anon_sym_SEMI] = ACTIONS(4932), + [anon_sym_EQ] = ACTIONS(4932), + [anon_sym_QMARK] = ACTIONS(4932), + [anon_sym_LBRACK] = ACTIONS(4934), + [anon_sym_BSLASH] = ACTIONS(4934), + [anon_sym_CARET] = ACTIONS(4934), + [anon_sym__] = ACTIONS(4932), + [anon_sym_BQUOTE] = ACTIONS(4932), + [anon_sym_LBRACE] = ACTIONS(4932), + [anon_sym_PIPE] = ACTIONS(4932), + [anon_sym_TILDE] = ACTIONS(4932), + [anon_sym_LPAREN] = ACTIONS(4932), + [anon_sym_RPAREN] = ACTIONS(4932), + [sym__newline_token] = ACTIONS(4932), + [aux_sym_insert_token1] = ACTIONS(4932), + [aux_sym_delete_token1] = ACTIONS(4932), + [aux_sym_highlight_token1] = ACTIONS(4932), + [aux_sym_edit_comment_token1] = ACTIONS(4932), + [anon_sym_CARET_LBRACK] = ACTIONS(4932), + [anon_sym_LBRACK_CARET] = ACTIONS(4932), + [sym_uri_autolink] = ACTIONS(4932), + [sym_email_autolink] = ACTIONS(4932), + [sym__whitespace_ge_2] = ACTIONS(4932), + [aux_sym__whitespace_token1] = ACTIONS(4934), + [sym__word_no_digit] = ACTIONS(4932), + [sym__digits] = ACTIONS(4932), + [anon_sym_DASH_DASH] = ACTIONS(4934), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4932), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4932), + [sym__code_span_start] = ACTIONS(4932), + [sym__emphasis_open_star] = ACTIONS(4932), + [sym__emphasis_open_underscore] = ACTIONS(4932), + [sym__strikeout_open] = ACTIONS(4932), + [sym__latex_span_start] = ACTIONS(4932), + [sym__single_quote_open] = ACTIONS(4932), + [sym__double_quote_open] = ACTIONS(4932), + [sym__superscript_open] = ACTIONS(4932), + [sym__superscript_close] = ACTIONS(4932), + [sym__subscript_open] = ACTIONS(4932), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4932), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4932), + [sym__cite_author_in_text] = ACTIONS(4932), + [sym__cite_suppress_author] = ACTIONS(4932), + [sym__shortcode_open_escaped] = ACTIONS(4932), + [sym__shortcode_open] = ACTIONS(4932), + [sym__unclosed_span] = ACTIONS(4932), + }, + [STATE(744)] = { + [sym__backslash_escape] = ACTIONS(4944), + [sym_entity_reference] = ACTIONS(4944), + [sym_numeric_character_reference] = ACTIONS(4944), + [anon_sym_LT] = ACTIONS(4946), + [anon_sym_GT] = ACTIONS(4944), + [anon_sym_BANG] = ACTIONS(4944), + [anon_sym_DQUOTE] = ACTIONS(4944), + [anon_sym_POUND] = ACTIONS(4944), + [anon_sym_DOLLAR] = ACTIONS(4944), + [anon_sym_PERCENT] = ACTIONS(4944), + [anon_sym_AMP] = ACTIONS(4946), + [anon_sym_SQUOTE] = ACTIONS(4944), + [anon_sym_STAR] = ACTIONS(4944), + [anon_sym_PLUS] = ACTIONS(4944), + [anon_sym_COMMA] = ACTIONS(4944), + [anon_sym_DASH] = ACTIONS(4946), + [anon_sym_DOT] = ACTIONS(4946), + [anon_sym_SLASH] = ACTIONS(4944), + [anon_sym_COLON] = ACTIONS(4944), + [anon_sym_SEMI] = ACTIONS(4944), + [anon_sym_EQ] = ACTIONS(4944), + [anon_sym_QMARK] = ACTIONS(4944), + [anon_sym_LBRACK] = ACTIONS(4946), + [anon_sym_BSLASH] = ACTIONS(4946), + [anon_sym_CARET] = ACTIONS(4946), + [anon_sym__] = ACTIONS(4944), + [anon_sym_BQUOTE] = ACTIONS(4944), + [anon_sym_LBRACE] = ACTIONS(4944), + [anon_sym_PIPE] = ACTIONS(4944), + [anon_sym_TILDE] = ACTIONS(4944), + [anon_sym_LPAREN] = ACTIONS(4944), + [anon_sym_RPAREN] = ACTIONS(4944), + [sym__newline_token] = ACTIONS(4944), + [aux_sym_insert_token1] = ACTIONS(4944), + [aux_sym_delete_token1] = ACTIONS(4944), + [aux_sym_highlight_token1] = ACTIONS(4944), + [aux_sym_edit_comment_token1] = ACTIONS(4944), + [anon_sym_CARET_LBRACK] = ACTIONS(4944), + [anon_sym_LBRACK_CARET] = ACTIONS(4944), + [sym_uri_autolink] = ACTIONS(4944), + [sym_email_autolink] = ACTIONS(4944), + [sym__whitespace_ge_2] = ACTIONS(4944), + [aux_sym__whitespace_token1] = ACTIONS(4946), + [sym__word_no_digit] = ACTIONS(4944), + [sym__digits] = ACTIONS(4944), + [anon_sym_DASH_DASH] = ACTIONS(4946), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4944), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4944), + [sym__code_span_start] = ACTIONS(4944), + [sym__emphasis_open_star] = ACTIONS(4944), + [sym__emphasis_open_underscore] = ACTIONS(4944), + [sym__strikeout_open] = ACTIONS(4944), + [sym__latex_span_start] = ACTIONS(4944), + [sym__single_quote_open] = ACTIONS(4944), + [sym__double_quote_open] = ACTIONS(4944), + [sym__superscript_open] = ACTIONS(4944), + [sym__superscript_close] = ACTIONS(4944), + [sym__subscript_open] = ACTIONS(4944), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4944), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4944), + [sym__cite_author_in_text] = ACTIONS(4944), + [sym__cite_suppress_author] = ACTIONS(4944), + [sym__shortcode_open_escaped] = ACTIONS(4944), + [sym__shortcode_open] = ACTIONS(4944), + [sym__unclosed_span] = ACTIONS(4944), + }, + [STATE(745)] = { + [ts_builtin_sym_end] = ACTIONS(5028), + [sym__backslash_escape] = ACTIONS(5028), + [sym_entity_reference] = ACTIONS(5028), + [sym_numeric_character_reference] = ACTIONS(5028), + [anon_sym_LT] = ACTIONS(5030), + [anon_sym_GT] = ACTIONS(5028), + [anon_sym_BANG] = ACTIONS(5028), + [anon_sym_DQUOTE] = ACTIONS(5028), + [anon_sym_POUND] = ACTIONS(5028), + [anon_sym_DOLLAR] = ACTIONS(5028), + [anon_sym_PERCENT] = ACTIONS(5028), + [anon_sym_AMP] = ACTIONS(5030), + [anon_sym_SQUOTE] = ACTIONS(5028), + [anon_sym_STAR] = ACTIONS(5028), + [anon_sym_PLUS] = ACTIONS(5028), + [anon_sym_COMMA] = ACTIONS(5028), + [anon_sym_DASH] = ACTIONS(5030), + [anon_sym_DOT] = ACTIONS(5030), + [anon_sym_SLASH] = ACTIONS(5028), + [anon_sym_COLON] = ACTIONS(5028), + [anon_sym_SEMI] = ACTIONS(5028), + [anon_sym_EQ] = ACTIONS(5028), + [anon_sym_QMARK] = ACTIONS(5028), + [anon_sym_LBRACK] = ACTIONS(5030), + [anon_sym_BSLASH] = ACTIONS(5030), + [anon_sym_CARET] = ACTIONS(5030), + [anon_sym__] = ACTIONS(5028), + [anon_sym_BQUOTE] = ACTIONS(5028), + [anon_sym_LBRACE] = ACTIONS(5028), + [anon_sym_PIPE] = ACTIONS(5028), + [anon_sym_TILDE] = ACTIONS(5028), + [anon_sym_LPAREN] = ACTIONS(5028), + [anon_sym_RPAREN] = ACTIONS(5028), + [sym__newline_token] = ACTIONS(5028), + [aux_sym_insert_token1] = ACTIONS(5028), + [aux_sym_delete_token1] = ACTIONS(5028), + [aux_sym_highlight_token1] = ACTIONS(5028), + [aux_sym_edit_comment_token1] = ACTIONS(5028), + [anon_sym_CARET_LBRACK] = ACTIONS(5028), + [anon_sym_LBRACK_CARET] = ACTIONS(5028), + [sym_uri_autolink] = ACTIONS(5028), + [sym_email_autolink] = ACTIONS(5028), + [sym__whitespace_ge_2] = ACTIONS(5028), + [aux_sym__whitespace_token1] = ACTIONS(5030), + [sym__word_no_digit] = ACTIONS(5028), + [sym__digits] = ACTIONS(5028), + [anon_sym_DASH_DASH] = ACTIONS(5030), + [anon_sym_DASH_DASH_DASH] = ACTIONS(5028), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5028), + [sym__code_span_start] = ACTIONS(5028), + [sym__emphasis_open_star] = ACTIONS(5028), + [sym__emphasis_open_underscore] = ACTIONS(5028), + [sym__strikeout_open] = ACTIONS(5028), + [sym__latex_span_start] = ACTIONS(5028), + [sym__single_quote_open] = ACTIONS(5028), + [sym__double_quote_open] = ACTIONS(5028), + [sym__superscript_open] = ACTIONS(5028), + [sym__subscript_open] = ACTIONS(5028), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5028), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5028), + [sym__cite_author_in_text] = ACTIONS(5028), + [sym__cite_suppress_author] = ACTIONS(5028), + [sym__shortcode_open_escaped] = ACTIONS(5028), + [sym__shortcode_open] = ACTIONS(5028), + [sym__unclosed_span] = ACTIONS(5028), + }, + [STATE(746)] = { + [sym__backslash_escape] = ACTIONS(4952), + [sym_entity_reference] = ACTIONS(4952), + [sym_numeric_character_reference] = ACTIONS(4952), + [anon_sym_LT] = ACTIONS(4954), + [anon_sym_GT] = ACTIONS(4952), + [anon_sym_BANG] = ACTIONS(4952), + [anon_sym_DQUOTE] = ACTIONS(4952), + [anon_sym_POUND] = ACTIONS(4952), + [anon_sym_DOLLAR] = ACTIONS(4952), + [anon_sym_PERCENT] = ACTIONS(4952), + [anon_sym_AMP] = ACTIONS(4954), + [anon_sym_SQUOTE] = ACTIONS(4952), + [anon_sym_STAR] = ACTIONS(4952), + [anon_sym_PLUS] = ACTIONS(4952), + [anon_sym_COMMA] = ACTIONS(4952), + [anon_sym_DASH] = ACTIONS(4954), + [anon_sym_DOT] = ACTIONS(4954), + [anon_sym_SLASH] = ACTIONS(4952), + [anon_sym_COLON] = ACTIONS(4952), + [anon_sym_SEMI] = ACTIONS(4952), + [anon_sym_EQ] = ACTIONS(4952), + [anon_sym_QMARK] = ACTIONS(4952), + [anon_sym_LBRACK] = ACTIONS(4954), + [anon_sym_BSLASH] = ACTIONS(4954), + [anon_sym_CARET] = ACTIONS(4954), + [anon_sym__] = ACTIONS(4952), + [anon_sym_BQUOTE] = ACTIONS(4952), + [anon_sym_LBRACE] = ACTIONS(4952), + [anon_sym_PIPE] = ACTIONS(4952), + [anon_sym_TILDE] = ACTIONS(4952), + [anon_sym_LPAREN] = ACTIONS(4952), + [anon_sym_RPAREN] = ACTIONS(4952), + [sym__newline_token] = ACTIONS(4952), + [aux_sym_insert_token1] = ACTIONS(4952), + [aux_sym_delete_token1] = ACTIONS(4952), + [aux_sym_highlight_token1] = ACTIONS(4952), + [aux_sym_edit_comment_token1] = ACTIONS(4952), + [anon_sym_CARET_LBRACK] = ACTIONS(4952), + [anon_sym_LBRACK_CARET] = ACTIONS(4952), + [sym_uri_autolink] = ACTIONS(4952), + [sym_email_autolink] = ACTIONS(4952), + [sym__whitespace_ge_2] = ACTIONS(4952), + [aux_sym__whitespace_token1] = ACTIONS(4954), + [sym__word_no_digit] = ACTIONS(4952), + [sym__digits] = ACTIONS(4952), + [anon_sym_DASH_DASH] = ACTIONS(4954), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4952), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4952), + [sym__code_span_start] = ACTIONS(4952), + [sym__emphasis_open_star] = ACTIONS(4952), + [sym__emphasis_open_underscore] = ACTIONS(4952), + [sym__strikeout_open] = ACTIONS(4952), + [sym__latex_span_start] = ACTIONS(4952), + [sym__single_quote_open] = ACTIONS(4952), + [sym__double_quote_open] = ACTIONS(4952), + [sym__superscript_open] = ACTIONS(4952), + [sym__superscript_close] = ACTIONS(4952), + [sym__subscript_open] = ACTIONS(4952), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4952), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4952), + [sym__cite_author_in_text] = ACTIONS(4952), + [sym__cite_suppress_author] = ACTIONS(4952), + [sym__shortcode_open_escaped] = ACTIONS(4952), + [sym__shortcode_open] = ACTIONS(4952), + [sym__unclosed_span] = ACTIONS(4952), + }, + [STATE(747)] = { + [sym__backslash_escape] = ACTIONS(4956), + [sym_entity_reference] = ACTIONS(4956), + [sym_numeric_character_reference] = ACTIONS(4956), + [anon_sym_LT] = ACTIONS(4958), + [anon_sym_GT] = ACTIONS(4956), + [anon_sym_BANG] = ACTIONS(4956), + [anon_sym_DQUOTE] = ACTIONS(4956), + [anon_sym_POUND] = ACTIONS(4956), + [anon_sym_DOLLAR] = ACTIONS(4956), + [anon_sym_PERCENT] = ACTIONS(4956), + [anon_sym_AMP] = ACTIONS(4958), + [anon_sym_SQUOTE] = ACTIONS(4956), + [anon_sym_STAR] = ACTIONS(4956), + [anon_sym_PLUS] = ACTIONS(4956), + [anon_sym_COMMA] = ACTIONS(4956), + [anon_sym_DASH] = ACTIONS(4958), + [anon_sym_DOT] = ACTIONS(4958), + [anon_sym_SLASH] = ACTIONS(4956), + [anon_sym_COLON] = ACTIONS(4956), + [anon_sym_SEMI] = ACTIONS(4956), + [anon_sym_EQ] = ACTIONS(4956), + [anon_sym_QMARK] = ACTIONS(4956), + [anon_sym_LBRACK] = ACTIONS(4958), + [anon_sym_BSLASH] = ACTIONS(4958), + [anon_sym_CARET] = ACTIONS(4958), + [anon_sym__] = ACTIONS(4956), + [anon_sym_BQUOTE] = ACTIONS(4956), + [anon_sym_LBRACE] = ACTIONS(4956), + [anon_sym_PIPE] = ACTIONS(4956), + [anon_sym_TILDE] = ACTIONS(4956), + [anon_sym_LPAREN] = ACTIONS(4956), + [anon_sym_RPAREN] = ACTIONS(4956), + [sym__newline_token] = ACTIONS(4956), + [aux_sym_insert_token1] = ACTIONS(4956), + [aux_sym_delete_token1] = ACTIONS(4956), + [aux_sym_highlight_token1] = ACTIONS(4956), + [aux_sym_edit_comment_token1] = ACTIONS(4956), + [anon_sym_CARET_LBRACK] = ACTIONS(4956), + [anon_sym_LBRACK_CARET] = ACTIONS(4956), + [sym_uri_autolink] = ACTIONS(4956), + [sym_email_autolink] = ACTIONS(4956), + [sym__whitespace_ge_2] = ACTIONS(4956), + [aux_sym__whitespace_token1] = ACTIONS(4958), + [sym__word_no_digit] = ACTIONS(4956), + [sym__digits] = ACTIONS(4956), + [anon_sym_DASH_DASH] = ACTIONS(4958), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4956), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4956), + [sym__code_span_start] = ACTIONS(4956), + [sym__emphasis_open_star] = ACTIONS(4956), + [sym__emphasis_open_underscore] = ACTIONS(4956), + [sym__strikeout_open] = ACTIONS(4956), + [sym__latex_span_start] = ACTIONS(4956), + [sym__single_quote_open] = ACTIONS(4956), + [sym__double_quote_open] = ACTIONS(4956), + [sym__superscript_open] = ACTIONS(4956), + [sym__superscript_close] = ACTIONS(4956), + [sym__subscript_open] = ACTIONS(4956), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4956), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4956), + [sym__cite_author_in_text] = ACTIONS(4956), + [sym__cite_suppress_author] = ACTIONS(4956), + [sym__shortcode_open_escaped] = ACTIONS(4956), + [sym__shortcode_open] = ACTIONS(4956), + [sym__unclosed_span] = ACTIONS(4956), + }, + [STATE(748)] = { + [sym__backslash_escape] = ACTIONS(4960), + [sym_entity_reference] = ACTIONS(4960), + [sym_numeric_character_reference] = ACTIONS(4960), + [anon_sym_LT] = ACTIONS(4962), + [anon_sym_GT] = ACTIONS(4960), + [anon_sym_BANG] = ACTIONS(4960), + [anon_sym_DQUOTE] = ACTIONS(4960), + [anon_sym_POUND] = ACTIONS(4960), + [anon_sym_DOLLAR] = ACTIONS(4960), + [anon_sym_PERCENT] = ACTIONS(4960), + [anon_sym_AMP] = ACTIONS(4962), + [anon_sym_SQUOTE] = ACTIONS(4960), + [anon_sym_STAR] = ACTIONS(4960), + [anon_sym_PLUS] = ACTIONS(4960), + [anon_sym_COMMA] = ACTIONS(4960), + [anon_sym_DASH] = ACTIONS(4962), + [anon_sym_DOT] = ACTIONS(4962), + [anon_sym_SLASH] = ACTIONS(4960), + [anon_sym_COLON] = ACTIONS(4960), + [anon_sym_SEMI] = ACTIONS(4960), + [anon_sym_EQ] = ACTIONS(4960), + [anon_sym_QMARK] = ACTIONS(4960), + [anon_sym_LBRACK] = ACTIONS(4962), + [anon_sym_BSLASH] = ACTIONS(4962), + [anon_sym_CARET] = ACTIONS(4962), + [anon_sym__] = ACTIONS(4960), + [anon_sym_BQUOTE] = ACTIONS(4960), + [anon_sym_LBRACE] = ACTIONS(4960), + [anon_sym_PIPE] = ACTIONS(4960), + [anon_sym_TILDE] = ACTIONS(4960), + [anon_sym_LPAREN] = ACTIONS(4960), + [anon_sym_RPAREN] = ACTIONS(4960), + [sym__newline_token] = ACTIONS(4960), + [aux_sym_insert_token1] = ACTIONS(4960), + [aux_sym_delete_token1] = ACTIONS(4960), + [aux_sym_highlight_token1] = ACTIONS(4960), + [aux_sym_edit_comment_token1] = ACTIONS(4960), + [anon_sym_CARET_LBRACK] = ACTIONS(4960), + [anon_sym_LBRACK_CARET] = ACTIONS(4960), + [sym_uri_autolink] = ACTIONS(4960), + [sym_email_autolink] = ACTIONS(4960), + [sym__whitespace_ge_2] = ACTIONS(4960), + [aux_sym__whitespace_token1] = ACTIONS(4962), + [sym__word_no_digit] = ACTIONS(4960), + [sym__digits] = ACTIONS(4960), + [anon_sym_DASH_DASH] = ACTIONS(4962), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4960), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4960), + [sym__code_span_start] = ACTIONS(4960), + [sym__emphasis_open_star] = ACTIONS(4960), + [sym__emphasis_open_underscore] = ACTIONS(4960), + [sym__strikeout_open] = ACTIONS(4960), + [sym__latex_span_start] = ACTIONS(4960), + [sym__single_quote_open] = ACTIONS(4960), + [sym__double_quote_open] = ACTIONS(4960), + [sym__superscript_open] = ACTIONS(4960), + [sym__superscript_close] = ACTIONS(4960), + [sym__subscript_open] = ACTIONS(4960), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4960), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4960), + [sym__cite_author_in_text] = ACTIONS(4960), + [sym__cite_suppress_author] = ACTIONS(4960), + [sym__shortcode_open_escaped] = ACTIONS(4960), + [sym__shortcode_open] = ACTIONS(4960), + [sym__unclosed_span] = ACTIONS(4960), + }, + [STATE(749)] = { + [sym__backslash_escape] = ACTIONS(4964), + [sym_entity_reference] = ACTIONS(4964), + [sym_numeric_character_reference] = ACTIONS(4964), + [anon_sym_LT] = ACTIONS(4966), + [anon_sym_GT] = ACTIONS(4964), + [anon_sym_BANG] = ACTIONS(4964), + [anon_sym_DQUOTE] = ACTIONS(4964), + [anon_sym_POUND] = ACTIONS(4964), + [anon_sym_DOLLAR] = ACTIONS(4964), + [anon_sym_PERCENT] = ACTIONS(4964), + [anon_sym_AMP] = ACTIONS(4966), + [anon_sym_SQUOTE] = ACTIONS(4964), + [anon_sym_STAR] = ACTIONS(4964), + [anon_sym_PLUS] = ACTIONS(4964), + [anon_sym_COMMA] = ACTIONS(4964), + [anon_sym_DASH] = ACTIONS(4966), + [anon_sym_DOT] = ACTIONS(4966), + [anon_sym_SLASH] = ACTIONS(4964), + [anon_sym_COLON] = ACTIONS(4964), + [anon_sym_SEMI] = ACTIONS(4964), + [anon_sym_EQ] = ACTIONS(4964), + [anon_sym_QMARK] = ACTIONS(4964), + [anon_sym_LBRACK] = ACTIONS(4966), + [anon_sym_BSLASH] = ACTIONS(4966), + [anon_sym_CARET] = ACTIONS(4966), + [anon_sym__] = ACTIONS(4964), + [anon_sym_BQUOTE] = ACTIONS(4964), + [anon_sym_LBRACE] = ACTIONS(4964), + [anon_sym_PIPE] = ACTIONS(4964), + [anon_sym_TILDE] = ACTIONS(4964), + [anon_sym_LPAREN] = ACTIONS(4964), + [anon_sym_RPAREN] = ACTIONS(4964), + [sym__newline_token] = ACTIONS(4964), + [aux_sym_insert_token1] = ACTIONS(4964), + [aux_sym_delete_token1] = ACTIONS(4964), + [aux_sym_highlight_token1] = ACTIONS(4964), + [aux_sym_edit_comment_token1] = ACTIONS(4964), + [anon_sym_CARET_LBRACK] = ACTIONS(4964), + [anon_sym_LBRACK_CARET] = ACTIONS(4964), + [sym_uri_autolink] = ACTIONS(4964), + [sym_email_autolink] = ACTIONS(4964), + [sym__whitespace_ge_2] = ACTIONS(4964), + [aux_sym__whitespace_token1] = ACTIONS(4966), + [sym__word_no_digit] = ACTIONS(4964), + [sym__digits] = ACTIONS(4964), + [anon_sym_DASH_DASH] = ACTIONS(4966), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4964), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4964), + [sym__code_span_start] = ACTIONS(4964), + [sym__emphasis_open_star] = ACTIONS(4964), + [sym__emphasis_open_underscore] = ACTIONS(4964), + [sym__strikeout_open] = ACTIONS(4964), + [sym__latex_span_start] = ACTIONS(4964), + [sym__single_quote_open] = ACTIONS(4964), + [sym__double_quote_open] = ACTIONS(4964), + [sym__superscript_open] = ACTIONS(4964), + [sym__superscript_close] = ACTIONS(4964), + [sym__subscript_open] = ACTIONS(4964), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4964), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4964), + [sym__cite_author_in_text] = ACTIONS(4964), + [sym__cite_suppress_author] = ACTIONS(4964), + [sym__shortcode_open_escaped] = ACTIONS(4964), + [sym__shortcode_open] = ACTIONS(4964), + [sym__unclosed_span] = ACTIONS(4964), + }, + [STATE(750)] = { + [sym__backslash_escape] = ACTIONS(4968), + [sym_entity_reference] = ACTIONS(4968), + [sym_numeric_character_reference] = ACTIONS(4968), + [anon_sym_LT] = ACTIONS(4970), + [anon_sym_GT] = ACTIONS(4968), + [anon_sym_BANG] = ACTIONS(4968), + [anon_sym_DQUOTE] = ACTIONS(4968), + [anon_sym_POUND] = ACTIONS(4968), + [anon_sym_DOLLAR] = ACTIONS(4968), + [anon_sym_PERCENT] = ACTIONS(4968), + [anon_sym_AMP] = ACTIONS(4970), + [anon_sym_SQUOTE] = ACTIONS(4968), + [anon_sym_STAR] = ACTIONS(4968), + [anon_sym_PLUS] = ACTIONS(4968), + [anon_sym_COMMA] = ACTIONS(4968), + [anon_sym_DASH] = ACTIONS(4970), + [anon_sym_DOT] = ACTIONS(4970), + [anon_sym_SLASH] = ACTIONS(4968), + [anon_sym_COLON] = ACTIONS(4968), + [anon_sym_SEMI] = ACTIONS(4968), + [anon_sym_EQ] = ACTIONS(4968), + [anon_sym_QMARK] = ACTIONS(4968), + [anon_sym_LBRACK] = ACTIONS(4970), + [anon_sym_BSLASH] = ACTIONS(4970), + [anon_sym_CARET] = ACTIONS(4970), + [anon_sym__] = ACTIONS(4968), + [anon_sym_BQUOTE] = ACTIONS(4968), + [anon_sym_LBRACE] = ACTIONS(4968), + [anon_sym_PIPE] = ACTIONS(4968), + [anon_sym_TILDE] = ACTIONS(4968), + [anon_sym_LPAREN] = ACTIONS(4968), + [anon_sym_RPAREN] = ACTIONS(4968), + [sym__newline_token] = ACTIONS(4968), + [aux_sym_insert_token1] = ACTIONS(4968), + [aux_sym_delete_token1] = ACTIONS(4968), + [aux_sym_highlight_token1] = ACTIONS(4968), + [aux_sym_edit_comment_token1] = ACTIONS(4968), + [anon_sym_CARET_LBRACK] = ACTIONS(4968), + [anon_sym_LBRACK_CARET] = ACTIONS(4968), + [sym_uri_autolink] = ACTIONS(4968), + [sym_email_autolink] = ACTIONS(4968), + [sym__whitespace_ge_2] = ACTIONS(4968), + [aux_sym__whitespace_token1] = ACTIONS(4970), + [sym__word_no_digit] = ACTIONS(4968), + [sym__digits] = ACTIONS(4968), + [anon_sym_DASH_DASH] = ACTIONS(4970), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4968), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4968), + [sym__code_span_start] = ACTIONS(4968), + [sym__emphasis_open_star] = ACTIONS(4968), + [sym__emphasis_open_underscore] = ACTIONS(4968), + [sym__strikeout_open] = ACTIONS(4968), + [sym__latex_span_start] = ACTIONS(4968), + [sym__single_quote_open] = ACTIONS(4968), + [sym__double_quote_open] = ACTIONS(4968), + [sym__superscript_open] = ACTIONS(4968), + [sym__superscript_close] = ACTIONS(4968), + [sym__subscript_open] = ACTIONS(4968), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4968), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4968), + [sym__cite_author_in_text] = ACTIONS(4968), + [sym__cite_suppress_author] = ACTIONS(4968), + [sym__shortcode_open_escaped] = ACTIONS(4968), + [sym__shortcode_open] = ACTIONS(4968), + [sym__unclosed_span] = ACTIONS(4968), + }, + [STATE(751)] = { + [sym__backslash_escape] = ACTIONS(4972), + [sym_entity_reference] = ACTIONS(4972), + [sym_numeric_character_reference] = ACTIONS(4972), + [anon_sym_LT] = ACTIONS(4974), + [anon_sym_GT] = ACTIONS(4972), + [anon_sym_BANG] = ACTIONS(4972), + [anon_sym_DQUOTE] = ACTIONS(4972), + [anon_sym_POUND] = ACTIONS(4972), + [anon_sym_DOLLAR] = ACTIONS(4972), + [anon_sym_PERCENT] = ACTIONS(4972), + [anon_sym_AMP] = ACTIONS(4974), + [anon_sym_SQUOTE] = ACTIONS(4972), + [anon_sym_STAR] = ACTIONS(4972), + [anon_sym_PLUS] = ACTIONS(4972), + [anon_sym_COMMA] = ACTIONS(4972), + [anon_sym_DASH] = ACTIONS(4974), + [anon_sym_DOT] = ACTIONS(4974), + [anon_sym_SLASH] = ACTIONS(4972), + [anon_sym_COLON] = ACTIONS(4972), + [anon_sym_SEMI] = ACTIONS(4972), + [anon_sym_EQ] = ACTIONS(4972), + [anon_sym_QMARK] = ACTIONS(4972), + [anon_sym_LBRACK] = ACTIONS(4974), + [anon_sym_BSLASH] = ACTIONS(4974), + [anon_sym_CARET] = ACTIONS(4974), + [anon_sym__] = ACTIONS(4972), + [anon_sym_BQUOTE] = ACTIONS(4972), + [anon_sym_LBRACE] = ACTIONS(4972), + [anon_sym_PIPE] = ACTIONS(4972), + [anon_sym_TILDE] = ACTIONS(4972), + [anon_sym_LPAREN] = ACTIONS(4972), + [anon_sym_RPAREN] = ACTIONS(4972), + [sym__newline_token] = ACTIONS(4972), + [aux_sym_insert_token1] = ACTIONS(4972), + [aux_sym_delete_token1] = ACTIONS(4972), + [aux_sym_highlight_token1] = ACTIONS(4972), + [aux_sym_edit_comment_token1] = ACTIONS(4972), + [anon_sym_CARET_LBRACK] = ACTIONS(4972), + [anon_sym_LBRACK_CARET] = ACTIONS(4972), + [sym_uri_autolink] = ACTIONS(4972), + [sym_email_autolink] = ACTIONS(4972), + [sym__whitespace_ge_2] = ACTIONS(4972), + [aux_sym__whitespace_token1] = ACTIONS(4974), + [sym__word_no_digit] = ACTIONS(4972), + [sym__digits] = ACTIONS(4972), + [anon_sym_DASH_DASH] = ACTIONS(4974), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4972), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4972), + [sym__code_span_start] = ACTIONS(4972), + [sym__emphasis_open_star] = ACTIONS(4972), + [sym__emphasis_open_underscore] = ACTIONS(4972), + [sym__strikeout_open] = ACTIONS(4972), + [sym__latex_span_start] = ACTIONS(4972), + [sym__single_quote_open] = ACTIONS(4972), + [sym__double_quote_open] = ACTIONS(4972), + [sym__superscript_open] = ACTIONS(4972), + [sym__superscript_close] = ACTIONS(4972), + [sym__subscript_open] = ACTIONS(4972), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4972), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4972), + [sym__cite_author_in_text] = ACTIONS(4972), + [sym__cite_suppress_author] = ACTIONS(4972), + [sym__shortcode_open_escaped] = ACTIONS(4972), + [sym__shortcode_open] = ACTIONS(4972), + [sym__unclosed_span] = ACTIONS(4972), + }, + [STATE(752)] = { + [sym__backslash_escape] = ACTIONS(4988), + [sym_entity_reference] = ACTIONS(4988), + [sym_numeric_character_reference] = ACTIONS(4988), + [anon_sym_LT] = ACTIONS(4990), + [anon_sym_GT] = ACTIONS(4988), + [anon_sym_BANG] = ACTIONS(4988), + [anon_sym_DQUOTE] = ACTIONS(4988), + [anon_sym_POUND] = ACTIONS(4988), + [anon_sym_DOLLAR] = ACTIONS(4988), + [anon_sym_PERCENT] = ACTIONS(4988), + [anon_sym_AMP] = ACTIONS(4990), + [anon_sym_SQUOTE] = ACTIONS(4988), + [anon_sym_STAR] = ACTIONS(4988), + [anon_sym_PLUS] = ACTIONS(4988), + [anon_sym_COMMA] = ACTIONS(4988), + [anon_sym_DASH] = ACTIONS(4990), + [anon_sym_DOT] = ACTIONS(4990), + [anon_sym_SLASH] = ACTIONS(4988), + [anon_sym_COLON] = ACTIONS(4988), + [anon_sym_SEMI] = ACTIONS(4988), + [anon_sym_EQ] = ACTIONS(4988), + [anon_sym_QMARK] = ACTIONS(4988), + [anon_sym_LBRACK] = ACTIONS(4990), + [anon_sym_BSLASH] = ACTIONS(4990), + [anon_sym_CARET] = ACTIONS(4990), + [anon_sym__] = ACTIONS(4988), + [anon_sym_BQUOTE] = ACTIONS(4988), + [anon_sym_LBRACE] = ACTIONS(4988), + [anon_sym_PIPE] = ACTIONS(4988), + [anon_sym_TILDE] = ACTIONS(4988), + [anon_sym_LPAREN] = ACTIONS(4988), + [anon_sym_RPAREN] = ACTIONS(4988), + [sym__newline_token] = ACTIONS(4988), + [aux_sym_insert_token1] = ACTIONS(4988), + [aux_sym_delete_token1] = ACTIONS(4988), + [aux_sym_highlight_token1] = ACTIONS(4988), + [aux_sym_edit_comment_token1] = ACTIONS(4988), + [anon_sym_CARET_LBRACK] = ACTIONS(4988), + [anon_sym_LBRACK_CARET] = ACTIONS(4988), + [sym_uri_autolink] = ACTIONS(4988), + [sym_email_autolink] = ACTIONS(4988), + [sym__whitespace_ge_2] = ACTIONS(4988), + [aux_sym__whitespace_token1] = ACTIONS(4990), + [sym__word_no_digit] = ACTIONS(4988), + [sym__digits] = ACTIONS(4988), + [anon_sym_DASH_DASH] = ACTIONS(4990), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4988), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4988), + [sym__code_span_start] = ACTIONS(4988), + [sym__emphasis_open_star] = ACTIONS(4988), + [sym__emphasis_open_underscore] = ACTIONS(4988), + [sym__strikeout_open] = ACTIONS(4988), + [sym__latex_span_start] = ACTIONS(4988), + [sym__single_quote_open] = ACTIONS(4988), + [sym__double_quote_open] = ACTIONS(4988), + [sym__superscript_open] = ACTIONS(4988), + [sym__superscript_close] = ACTIONS(4988), + [sym__subscript_open] = ACTIONS(4988), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4988), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4988), + [sym__cite_author_in_text] = ACTIONS(4988), + [sym__cite_suppress_author] = ACTIONS(4988), + [sym__shortcode_open_escaped] = ACTIONS(4988), + [sym__shortcode_open] = ACTIONS(4988), + [sym__unclosed_span] = ACTIONS(4988), + }, + [STATE(753)] = { + [sym__backslash_escape] = ACTIONS(4992), + [sym_entity_reference] = ACTIONS(4992), + [sym_numeric_character_reference] = ACTIONS(4992), + [anon_sym_LT] = ACTIONS(4994), + [anon_sym_GT] = ACTIONS(4992), + [anon_sym_BANG] = ACTIONS(4992), + [anon_sym_DQUOTE] = ACTIONS(4992), + [anon_sym_POUND] = ACTIONS(4992), + [anon_sym_DOLLAR] = ACTIONS(4992), + [anon_sym_PERCENT] = ACTIONS(4992), + [anon_sym_AMP] = ACTIONS(4994), + [anon_sym_SQUOTE] = ACTIONS(4992), + [anon_sym_STAR] = ACTIONS(4992), + [anon_sym_PLUS] = ACTIONS(4992), + [anon_sym_COMMA] = ACTIONS(4992), + [anon_sym_DASH] = ACTIONS(4994), + [anon_sym_DOT] = ACTIONS(4994), + [anon_sym_SLASH] = ACTIONS(4992), + [anon_sym_COLON] = ACTIONS(4992), + [anon_sym_SEMI] = ACTIONS(4992), + [anon_sym_EQ] = ACTIONS(4992), + [anon_sym_QMARK] = ACTIONS(4992), + [anon_sym_LBRACK] = ACTIONS(4994), + [anon_sym_BSLASH] = ACTIONS(4994), + [anon_sym_CARET] = ACTIONS(4994), + [anon_sym__] = ACTIONS(4992), + [anon_sym_BQUOTE] = ACTIONS(4992), + [anon_sym_LBRACE] = ACTIONS(4992), + [anon_sym_PIPE] = ACTIONS(4992), + [anon_sym_TILDE] = ACTIONS(4992), + [anon_sym_LPAREN] = ACTIONS(4992), + [anon_sym_RPAREN] = ACTIONS(4992), + [sym__newline_token] = ACTIONS(4992), + [aux_sym_insert_token1] = ACTIONS(4992), + [aux_sym_delete_token1] = ACTIONS(4992), + [aux_sym_highlight_token1] = ACTIONS(4992), + [aux_sym_edit_comment_token1] = ACTIONS(4992), + [anon_sym_CARET_LBRACK] = ACTIONS(4992), + [anon_sym_LBRACK_CARET] = ACTIONS(4992), + [sym_uri_autolink] = ACTIONS(4992), + [sym_email_autolink] = ACTIONS(4992), + [sym__whitespace_ge_2] = ACTIONS(4992), + [aux_sym__whitespace_token1] = ACTIONS(4994), + [sym__word_no_digit] = ACTIONS(4992), + [sym__digits] = ACTIONS(4992), + [anon_sym_DASH_DASH] = ACTIONS(4994), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4992), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4992), + [sym__code_span_start] = ACTIONS(4992), + [sym__emphasis_open_star] = ACTIONS(4992), + [sym__emphasis_open_underscore] = ACTIONS(4992), + [sym__strikeout_open] = ACTIONS(4992), + [sym__latex_span_start] = ACTIONS(4992), + [sym__single_quote_open] = ACTIONS(4992), + [sym__double_quote_open] = ACTIONS(4992), + [sym__superscript_open] = ACTIONS(4992), + [sym__superscript_close] = ACTIONS(4992), + [sym__subscript_open] = ACTIONS(4992), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4992), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4992), + [sym__cite_author_in_text] = ACTIONS(4992), + [sym__cite_suppress_author] = ACTIONS(4992), + [sym__shortcode_open_escaped] = ACTIONS(4992), + [sym__shortcode_open] = ACTIONS(4992), + [sym__unclosed_span] = ACTIONS(4992), + }, + [STATE(754)] = { + [sym__backslash_escape] = ACTIONS(5024), + [sym_entity_reference] = ACTIONS(5024), + [sym_numeric_character_reference] = ACTIONS(5024), + [anon_sym_LT] = ACTIONS(5026), + [anon_sym_GT] = ACTIONS(5024), + [anon_sym_BANG] = ACTIONS(5024), + [anon_sym_DQUOTE] = ACTIONS(5024), + [anon_sym_POUND] = ACTIONS(5024), + [anon_sym_DOLLAR] = ACTIONS(5024), + [anon_sym_PERCENT] = ACTIONS(5024), + [anon_sym_AMP] = ACTIONS(5026), + [anon_sym_SQUOTE] = ACTIONS(5024), + [anon_sym_STAR] = ACTIONS(5024), + [anon_sym_PLUS] = ACTIONS(5024), + [anon_sym_COMMA] = ACTIONS(5024), + [anon_sym_DASH] = ACTIONS(5026), + [anon_sym_DOT] = ACTIONS(5026), + [anon_sym_SLASH] = ACTIONS(5024), + [anon_sym_COLON] = ACTIONS(5024), + [anon_sym_SEMI] = ACTIONS(5024), + [anon_sym_EQ] = ACTIONS(5024), + [anon_sym_QMARK] = ACTIONS(5024), + [anon_sym_LBRACK] = ACTIONS(5026), + [anon_sym_BSLASH] = ACTIONS(5026), + [anon_sym_CARET] = ACTIONS(5026), + [anon_sym__] = ACTIONS(5024), + [anon_sym_BQUOTE] = ACTIONS(5024), + [anon_sym_LBRACE] = ACTIONS(5024), + [anon_sym_PIPE] = ACTIONS(5024), + [anon_sym_TILDE] = ACTIONS(5024), + [anon_sym_LPAREN] = ACTIONS(5024), + [anon_sym_RPAREN] = ACTIONS(5024), + [sym__newline_token] = ACTIONS(5024), + [aux_sym_insert_token1] = ACTIONS(5024), + [aux_sym_delete_token1] = ACTIONS(5024), + [aux_sym_highlight_token1] = ACTIONS(5024), + [aux_sym_edit_comment_token1] = ACTIONS(5024), + [anon_sym_CARET_LBRACK] = ACTIONS(5024), + [anon_sym_LBRACK_CARET] = ACTIONS(5024), + [sym_uri_autolink] = ACTIONS(5024), + [sym_email_autolink] = ACTIONS(5024), + [sym__whitespace_ge_2] = ACTIONS(5024), + [aux_sym__whitespace_token1] = ACTIONS(5026), + [sym__word_no_digit] = ACTIONS(5024), + [sym__digits] = ACTIONS(5024), + [anon_sym_DASH_DASH] = ACTIONS(5026), + [anon_sym_DASH_DASH_DASH] = ACTIONS(5024), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5024), + [sym__code_span_start] = ACTIONS(5024), + [sym__emphasis_open_star] = ACTIONS(5024), + [sym__emphasis_open_underscore] = ACTIONS(5024), + [sym__strikeout_open] = ACTIONS(5024), + [sym__latex_span_start] = ACTIONS(5024), + [sym__single_quote_open] = ACTIONS(5024), + [sym__double_quote_open] = ACTIONS(5024), + [sym__superscript_open] = ACTIONS(5024), + [sym__superscript_close] = ACTIONS(5024), + [sym__subscript_open] = ACTIONS(5024), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5024), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5024), + [sym__cite_author_in_text] = ACTIONS(5024), + [sym__cite_suppress_author] = ACTIONS(5024), + [sym__shortcode_open_escaped] = ACTIONS(5024), + [sym__shortcode_open] = ACTIONS(5024), + [sym__unclosed_span] = ACTIONS(5024), + }, + [STATE(755)] = { + [sym__backslash_escape] = ACTIONS(5040), + [sym_entity_reference] = ACTIONS(5040), + [sym_numeric_character_reference] = ACTIONS(5040), + [anon_sym_LT] = ACTIONS(5042), + [anon_sym_GT] = ACTIONS(5040), + [anon_sym_BANG] = ACTIONS(5040), + [anon_sym_DQUOTE] = ACTIONS(5040), + [anon_sym_POUND] = ACTIONS(5040), + [anon_sym_DOLLAR] = ACTIONS(5040), + [anon_sym_PERCENT] = ACTIONS(5040), + [anon_sym_AMP] = ACTIONS(5042), + [anon_sym_SQUOTE] = ACTIONS(5040), + [anon_sym_STAR] = ACTIONS(5040), + [anon_sym_PLUS] = ACTIONS(5040), + [anon_sym_COMMA] = ACTIONS(5040), + [anon_sym_DASH] = ACTIONS(5042), + [anon_sym_DOT] = ACTIONS(5042), + [anon_sym_SLASH] = ACTIONS(5040), + [anon_sym_COLON] = ACTIONS(5040), + [anon_sym_SEMI] = ACTIONS(5040), + [anon_sym_EQ] = ACTIONS(5040), + [anon_sym_QMARK] = ACTIONS(5040), + [anon_sym_LBRACK] = ACTIONS(5042), + [anon_sym_BSLASH] = ACTIONS(5042), + [anon_sym_CARET] = ACTIONS(5042), + [anon_sym__] = ACTIONS(5040), + [anon_sym_BQUOTE] = ACTIONS(5040), + [anon_sym_LBRACE] = ACTIONS(5040), + [anon_sym_PIPE] = ACTIONS(5040), + [anon_sym_TILDE] = ACTIONS(5040), + [anon_sym_LPAREN] = ACTIONS(5040), + [anon_sym_RPAREN] = ACTIONS(5040), + [sym__newline_token] = ACTIONS(5040), + [aux_sym_insert_token1] = ACTIONS(5040), + [aux_sym_delete_token1] = ACTIONS(5040), + [aux_sym_highlight_token1] = ACTIONS(5040), + [aux_sym_edit_comment_token1] = ACTIONS(5040), + [anon_sym_CARET_LBRACK] = ACTIONS(5040), + [anon_sym_LBRACK_CARET] = ACTIONS(5040), + [sym_uri_autolink] = ACTIONS(5040), + [sym_email_autolink] = ACTIONS(5040), + [sym__whitespace_ge_2] = ACTIONS(5040), + [aux_sym__whitespace_token1] = ACTIONS(5042), + [sym__word_no_digit] = ACTIONS(5040), + [sym__digits] = ACTIONS(5040), + [anon_sym_DASH_DASH] = ACTIONS(5042), + [anon_sym_DASH_DASH_DASH] = ACTIONS(5040), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5040), + [sym__code_span_start] = ACTIONS(5040), + [sym__emphasis_open_star] = ACTIONS(5040), + [sym__emphasis_open_underscore] = ACTIONS(5040), + [sym__strikeout_open] = ACTIONS(5040), + [sym__latex_span_start] = ACTIONS(5040), + [sym__single_quote_open] = ACTIONS(5040), + [sym__double_quote_open] = ACTIONS(5040), + [sym__superscript_open] = ACTIONS(5040), + [sym__superscript_close] = ACTIONS(5040), + [sym__subscript_open] = ACTIONS(5040), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5040), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5040), + [sym__cite_author_in_text] = ACTIONS(5040), + [sym__cite_suppress_author] = ACTIONS(5040), + [sym__shortcode_open_escaped] = ACTIONS(5040), + [sym__shortcode_open] = ACTIONS(5040), + [sym__unclosed_span] = ACTIONS(5040), + }, + [STATE(756)] = { + [sym__backslash_escape] = ACTIONS(5044), + [sym_entity_reference] = ACTIONS(5044), + [sym_numeric_character_reference] = ACTIONS(5044), + [anon_sym_LT] = ACTIONS(5046), + [anon_sym_GT] = ACTIONS(5044), + [anon_sym_BANG] = ACTIONS(5044), + [anon_sym_DQUOTE] = ACTIONS(5044), + [anon_sym_POUND] = ACTIONS(5044), + [anon_sym_DOLLAR] = ACTIONS(5044), + [anon_sym_PERCENT] = ACTIONS(5044), + [anon_sym_AMP] = ACTIONS(5046), + [anon_sym_SQUOTE] = ACTIONS(5044), + [anon_sym_STAR] = ACTIONS(5044), + [anon_sym_PLUS] = ACTIONS(5044), + [anon_sym_COMMA] = ACTIONS(5044), + [anon_sym_DASH] = ACTIONS(5046), + [anon_sym_DOT] = ACTIONS(5046), + [anon_sym_SLASH] = ACTIONS(5044), + [anon_sym_COLON] = ACTIONS(5044), + [anon_sym_SEMI] = ACTIONS(5044), + [anon_sym_EQ] = ACTIONS(5044), + [anon_sym_QMARK] = ACTIONS(5044), + [anon_sym_LBRACK] = ACTIONS(5046), + [anon_sym_BSLASH] = ACTIONS(5046), + [anon_sym_CARET] = ACTIONS(5046), + [anon_sym__] = ACTIONS(5044), + [anon_sym_BQUOTE] = ACTIONS(5044), + [anon_sym_LBRACE] = ACTIONS(5044), + [anon_sym_PIPE] = ACTIONS(5044), + [anon_sym_TILDE] = ACTIONS(5044), + [anon_sym_LPAREN] = ACTIONS(5044), + [anon_sym_RPAREN] = ACTIONS(5044), + [sym__newline_token] = ACTIONS(5044), + [aux_sym_insert_token1] = ACTIONS(5044), + [aux_sym_delete_token1] = ACTIONS(5044), + [aux_sym_highlight_token1] = ACTIONS(5044), + [aux_sym_edit_comment_token1] = ACTIONS(5044), + [anon_sym_CARET_LBRACK] = ACTIONS(5044), + [anon_sym_LBRACK_CARET] = ACTIONS(5044), + [sym_uri_autolink] = ACTIONS(5044), + [sym_email_autolink] = ACTIONS(5044), + [sym__whitespace_ge_2] = ACTIONS(5044), + [aux_sym__whitespace_token1] = ACTIONS(5046), + [sym__word_no_digit] = ACTIONS(5044), + [sym__digits] = ACTIONS(5044), + [anon_sym_DASH_DASH] = ACTIONS(5046), + [anon_sym_DASH_DASH_DASH] = ACTIONS(5044), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5044), + [sym__code_span_start] = ACTIONS(5044), + [sym__emphasis_open_star] = ACTIONS(5044), + [sym__emphasis_open_underscore] = ACTIONS(5044), + [sym__strikeout_open] = ACTIONS(5044), + [sym__latex_span_start] = ACTIONS(5044), + [sym__single_quote_open] = ACTIONS(5044), + [sym__double_quote_open] = ACTIONS(5044), + [sym__superscript_open] = ACTIONS(5044), + [sym__superscript_close] = ACTIONS(5044), + [sym__subscript_open] = ACTIONS(5044), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5044), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5044), + [sym__cite_author_in_text] = ACTIONS(5044), + [sym__cite_suppress_author] = ACTIONS(5044), + [sym__shortcode_open_escaped] = ACTIONS(5044), + [sym__shortcode_open] = ACTIONS(5044), + [sym__unclosed_span] = ACTIONS(5044), + }, + [STATE(757)] = { + [sym__backslash_escape] = ACTIONS(5048), + [sym_entity_reference] = ACTIONS(5048), + [sym_numeric_character_reference] = ACTIONS(5048), + [anon_sym_LT] = ACTIONS(5050), + [anon_sym_GT] = ACTIONS(5048), + [anon_sym_BANG] = ACTIONS(5048), + [anon_sym_DQUOTE] = ACTIONS(5048), + [anon_sym_POUND] = ACTIONS(5048), + [anon_sym_DOLLAR] = ACTIONS(5048), + [anon_sym_PERCENT] = ACTIONS(5048), + [anon_sym_AMP] = ACTIONS(5050), + [anon_sym_SQUOTE] = ACTIONS(5048), + [anon_sym_STAR] = ACTIONS(5048), + [anon_sym_PLUS] = ACTIONS(5048), + [anon_sym_COMMA] = ACTIONS(5048), + [anon_sym_DASH] = ACTIONS(5050), + [anon_sym_DOT] = ACTIONS(5050), + [anon_sym_SLASH] = ACTIONS(5048), + [anon_sym_COLON] = ACTIONS(5048), + [anon_sym_SEMI] = ACTIONS(5048), + [anon_sym_EQ] = ACTIONS(5048), + [anon_sym_QMARK] = ACTIONS(5048), + [anon_sym_LBRACK] = ACTIONS(5050), + [anon_sym_BSLASH] = ACTIONS(5050), + [anon_sym_CARET] = ACTIONS(5050), + [anon_sym__] = ACTIONS(5048), + [anon_sym_BQUOTE] = ACTIONS(5048), + [anon_sym_LBRACE] = ACTIONS(5048), + [anon_sym_PIPE] = ACTIONS(5048), + [anon_sym_TILDE] = ACTIONS(5048), + [anon_sym_LPAREN] = ACTIONS(5048), + [anon_sym_RPAREN] = ACTIONS(5048), + [sym__newline_token] = ACTIONS(5048), + [aux_sym_insert_token1] = ACTIONS(5048), + [aux_sym_delete_token1] = ACTIONS(5048), + [aux_sym_highlight_token1] = ACTIONS(5048), + [aux_sym_edit_comment_token1] = ACTIONS(5048), + [anon_sym_CARET_LBRACK] = ACTIONS(5048), + [anon_sym_LBRACK_CARET] = ACTIONS(5048), + [sym_uri_autolink] = ACTIONS(5048), + [sym_email_autolink] = ACTIONS(5048), + [sym__whitespace_ge_2] = ACTIONS(5048), + [aux_sym__whitespace_token1] = ACTIONS(5050), + [sym__word_no_digit] = ACTIONS(5048), + [sym__digits] = ACTIONS(5048), + [anon_sym_DASH_DASH] = ACTIONS(5050), + [anon_sym_DASH_DASH_DASH] = ACTIONS(5048), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5048), + [sym__code_span_start] = ACTIONS(5048), + [sym__emphasis_open_star] = ACTIONS(5048), + [sym__emphasis_open_underscore] = ACTIONS(5048), + [sym__strikeout_open] = ACTIONS(5048), + [sym__latex_span_start] = ACTIONS(5048), + [sym__single_quote_open] = ACTIONS(5048), + [sym__double_quote_open] = ACTIONS(5048), + [sym__superscript_open] = ACTIONS(5048), + [sym__superscript_close] = ACTIONS(5048), + [sym__subscript_open] = ACTIONS(5048), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5048), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5048), + [sym__cite_author_in_text] = ACTIONS(5048), + [sym__cite_suppress_author] = ACTIONS(5048), + [sym__shortcode_open_escaped] = ACTIONS(5048), + [sym__shortcode_open] = ACTIONS(5048), + [sym__unclosed_span] = ACTIONS(5048), + }, + [STATE(758)] = { + [sym__backslash_escape] = ACTIONS(5052), + [sym_entity_reference] = ACTIONS(5052), + [sym_numeric_character_reference] = ACTIONS(5052), + [anon_sym_LT] = ACTIONS(5054), + [anon_sym_GT] = ACTIONS(5052), + [anon_sym_BANG] = ACTIONS(5052), + [anon_sym_DQUOTE] = ACTIONS(5052), + [anon_sym_POUND] = ACTIONS(5052), + [anon_sym_DOLLAR] = ACTIONS(5052), + [anon_sym_PERCENT] = ACTIONS(5052), + [anon_sym_AMP] = ACTIONS(5054), + [anon_sym_SQUOTE] = ACTIONS(5052), + [anon_sym_STAR] = ACTIONS(5052), + [anon_sym_PLUS] = ACTIONS(5052), + [anon_sym_COMMA] = ACTIONS(5052), + [anon_sym_DASH] = ACTIONS(5054), + [anon_sym_DOT] = ACTIONS(5054), + [anon_sym_SLASH] = ACTIONS(5052), + [anon_sym_COLON] = ACTIONS(5052), + [anon_sym_SEMI] = ACTIONS(5052), + [anon_sym_EQ] = ACTIONS(5052), + [anon_sym_QMARK] = ACTIONS(5052), + [anon_sym_LBRACK] = ACTIONS(5054), + [anon_sym_BSLASH] = ACTIONS(5054), + [anon_sym_CARET] = ACTIONS(5054), + [anon_sym__] = ACTIONS(5052), + [anon_sym_BQUOTE] = ACTIONS(5052), + [anon_sym_LBRACE] = ACTIONS(5052), + [anon_sym_PIPE] = ACTIONS(5052), + [anon_sym_TILDE] = ACTIONS(5052), + [anon_sym_LPAREN] = ACTIONS(5052), + [anon_sym_RPAREN] = ACTIONS(5052), + [sym__newline_token] = ACTIONS(5052), + [aux_sym_insert_token1] = ACTIONS(5052), + [aux_sym_delete_token1] = ACTIONS(5052), + [aux_sym_highlight_token1] = ACTIONS(5052), + [aux_sym_edit_comment_token1] = ACTIONS(5052), + [anon_sym_CARET_LBRACK] = ACTIONS(5052), + [anon_sym_LBRACK_CARET] = ACTIONS(5052), + [sym_uri_autolink] = ACTIONS(5052), + [sym_email_autolink] = ACTIONS(5052), + [sym__whitespace_ge_2] = ACTIONS(5052), + [aux_sym__whitespace_token1] = ACTIONS(5054), + [sym__word_no_digit] = ACTIONS(5052), + [sym__digits] = ACTIONS(5052), + [anon_sym_DASH_DASH] = ACTIONS(5054), + [anon_sym_DASH_DASH_DASH] = ACTIONS(5052), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5052), + [sym__code_span_start] = ACTIONS(5052), + [sym__emphasis_open_star] = ACTIONS(5052), + [sym__emphasis_open_underscore] = ACTIONS(5052), + [sym__strikeout_open] = ACTIONS(5052), + [sym__latex_span_start] = ACTIONS(5052), + [sym__single_quote_open] = ACTIONS(5052), + [sym__double_quote_open] = ACTIONS(5052), + [sym__superscript_open] = ACTIONS(5052), + [sym__superscript_close] = ACTIONS(5052), + [sym__subscript_open] = ACTIONS(5052), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5052), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5052), + [sym__cite_author_in_text] = ACTIONS(5052), + [sym__cite_suppress_author] = ACTIONS(5052), + [sym__shortcode_open_escaped] = ACTIONS(5052), + [sym__shortcode_open] = ACTIONS(5052), + [sym__unclosed_span] = ACTIONS(5052), + }, + [STATE(759)] = { + [sym__backslash_escape] = ACTIONS(5052), + [sym_entity_reference] = ACTIONS(5052), + [sym_numeric_character_reference] = ACTIONS(5052), + [anon_sym_LT] = ACTIONS(5054), + [anon_sym_GT] = ACTIONS(5052), + [anon_sym_BANG] = ACTIONS(5052), + [anon_sym_DQUOTE] = ACTIONS(5052), + [anon_sym_POUND] = ACTIONS(5052), + [anon_sym_DOLLAR] = ACTIONS(5052), + [anon_sym_PERCENT] = ACTIONS(5052), + [anon_sym_AMP] = ACTIONS(5054), + [anon_sym_SQUOTE] = ACTIONS(5052), + [anon_sym_STAR] = ACTIONS(5052), + [anon_sym_PLUS] = ACTIONS(5052), + [anon_sym_COMMA] = ACTIONS(5052), + [anon_sym_DASH] = ACTIONS(5054), + [anon_sym_DOT] = ACTIONS(5054), + [anon_sym_SLASH] = ACTIONS(5052), + [anon_sym_COLON] = ACTIONS(5052), + [anon_sym_SEMI] = ACTIONS(5052), + [anon_sym_EQ] = ACTIONS(5052), + [anon_sym_QMARK] = ACTIONS(5052), + [anon_sym_LBRACK] = ACTIONS(5054), + [anon_sym_BSLASH] = ACTIONS(5054), + [anon_sym_CARET] = ACTIONS(5054), + [anon_sym__] = ACTIONS(5052), + [anon_sym_BQUOTE] = ACTIONS(5052), + [anon_sym_LBRACE] = ACTIONS(5052), + [anon_sym_PIPE] = ACTIONS(5052), + [anon_sym_TILDE] = ACTIONS(5052), + [anon_sym_LPAREN] = ACTIONS(5052), + [anon_sym_RPAREN] = ACTIONS(5052), + [sym__newline_token] = ACTIONS(5052), + [aux_sym_insert_token1] = ACTIONS(5052), + [aux_sym_delete_token1] = ACTIONS(5052), + [aux_sym_highlight_token1] = ACTIONS(5052), + [aux_sym_edit_comment_token1] = ACTIONS(5052), + [anon_sym_CARET_LBRACK] = ACTIONS(5052), + [anon_sym_LBRACK_CARET] = ACTIONS(5052), + [sym_uri_autolink] = ACTIONS(5052), + [sym_email_autolink] = ACTIONS(5052), + [sym__whitespace_ge_2] = ACTIONS(5052), + [aux_sym__whitespace_token1] = ACTIONS(5054), + [sym__word_no_digit] = ACTIONS(5052), + [sym__digits] = ACTIONS(5052), + [anon_sym_DASH_DASH] = ACTIONS(5054), + [anon_sym_DASH_DASH_DASH] = ACTIONS(5052), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5052), + [sym__code_span_start] = ACTIONS(5052), + [sym__emphasis_open_star] = ACTIONS(5052), + [sym__emphasis_open_underscore] = ACTIONS(5052), + [sym__strikeout_open] = ACTIONS(5052), + [sym__strikeout_close] = ACTIONS(5052), + [sym__latex_span_start] = ACTIONS(5052), + [sym__single_quote_open] = ACTIONS(5052), + [sym__double_quote_open] = ACTIONS(5052), + [sym__superscript_open] = ACTIONS(5052), + [sym__subscript_open] = ACTIONS(5052), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5052), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5052), + [sym__cite_author_in_text] = ACTIONS(5052), + [sym__cite_suppress_author] = ACTIONS(5052), + [sym__shortcode_open_escaped] = ACTIONS(5052), + [sym__shortcode_open] = ACTIONS(5052), + [sym__unclosed_span] = ACTIONS(5052), + }, + [STATE(760)] = { + [sym__backslash_escape] = ACTIONS(4690), + [sym_entity_reference] = ACTIONS(4690), + [sym_numeric_character_reference] = ACTIONS(4690), + [anon_sym_LT] = ACTIONS(4692), + [anon_sym_GT] = ACTIONS(4690), + [anon_sym_BANG] = ACTIONS(4690), + [anon_sym_DQUOTE] = ACTIONS(4690), + [anon_sym_POUND] = ACTIONS(4690), + [anon_sym_DOLLAR] = ACTIONS(4690), + [anon_sym_PERCENT] = ACTIONS(4690), + [anon_sym_AMP] = ACTIONS(4692), + [anon_sym_SQUOTE] = ACTIONS(4690), + [anon_sym_STAR] = ACTIONS(4690), + [anon_sym_PLUS] = ACTIONS(4690), + [anon_sym_COMMA] = ACTIONS(4690), + [anon_sym_DASH] = ACTIONS(4692), + [anon_sym_DOT] = ACTIONS(4692), + [anon_sym_SLASH] = ACTIONS(4690), + [anon_sym_COLON] = ACTIONS(4690), + [anon_sym_SEMI] = ACTIONS(4690), + [anon_sym_EQ] = ACTIONS(4690), + [anon_sym_QMARK] = ACTIONS(4690), + [anon_sym_LBRACK] = ACTIONS(4692), + [anon_sym_BSLASH] = ACTIONS(4692), + [anon_sym_CARET] = ACTIONS(4692), + [anon_sym__] = ACTIONS(4690), + [anon_sym_BQUOTE] = ACTIONS(4690), + [anon_sym_LBRACE] = ACTIONS(4690), + [anon_sym_PIPE] = ACTIONS(4690), + [anon_sym_TILDE] = ACTIONS(4690), + [anon_sym_LPAREN] = ACTIONS(4690), + [anon_sym_RPAREN] = ACTIONS(4690), + [sym__newline_token] = ACTIONS(4690), + [aux_sym_insert_token1] = ACTIONS(4690), + [aux_sym_delete_token1] = ACTIONS(4690), + [aux_sym_highlight_token1] = ACTIONS(4690), + [aux_sym_edit_comment_token1] = ACTIONS(4690), + [anon_sym_CARET_LBRACK] = ACTIONS(4690), + [anon_sym_LBRACK_CARET] = ACTIONS(4690), + [sym_uri_autolink] = ACTIONS(4690), + [sym_email_autolink] = ACTIONS(4690), + [sym__whitespace_ge_2] = ACTIONS(4690), + [aux_sym__whitespace_token1] = ACTIONS(4692), + [sym__word_no_digit] = ACTIONS(4690), + [sym__digits] = ACTIONS(4690), + [anon_sym_DASH_DASH] = ACTIONS(4692), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4690), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4690), + [sym__code_span_start] = ACTIONS(4690), + [sym__emphasis_open_star] = ACTIONS(4690), + [sym__emphasis_open_underscore] = ACTIONS(4690), + [sym__strikeout_open] = ACTIONS(4690), + [sym__latex_span_start] = ACTIONS(4690), + [sym__single_quote_open] = ACTIONS(4690), + [sym__double_quote_open] = ACTIONS(4690), + [sym__superscript_open] = ACTIONS(4690), + [sym__superscript_close] = ACTIONS(4690), + [sym__subscript_open] = ACTIONS(4690), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4690), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4690), + [sym__cite_author_in_text] = ACTIONS(4690), + [sym__cite_suppress_author] = ACTIONS(4690), + [sym__shortcode_open_escaped] = ACTIONS(4690), + [sym__shortcode_open] = ACTIONS(4690), + [sym__unclosed_span] = ACTIONS(4690), + }, + [STATE(761)] = { + [sym__backslash_escape] = ACTIONS(4968), + [sym_entity_reference] = ACTIONS(4968), + [sym_numeric_character_reference] = ACTIONS(4968), + [anon_sym_LT] = ACTIONS(4970), + [anon_sym_GT] = ACTIONS(4968), + [anon_sym_BANG] = ACTIONS(4968), + [anon_sym_DQUOTE] = ACTIONS(4968), + [anon_sym_POUND] = ACTIONS(4968), + [anon_sym_DOLLAR] = ACTIONS(4968), + [anon_sym_PERCENT] = ACTIONS(4968), + [anon_sym_AMP] = ACTIONS(4970), + [anon_sym_SQUOTE] = ACTIONS(4968), + [anon_sym_STAR] = ACTIONS(4968), + [anon_sym_PLUS] = ACTIONS(4968), + [anon_sym_COMMA] = ACTIONS(4968), + [anon_sym_DASH] = ACTIONS(4970), + [anon_sym_DOT] = ACTIONS(4970), + [anon_sym_SLASH] = ACTIONS(4968), + [anon_sym_COLON] = ACTIONS(4968), + [anon_sym_SEMI] = ACTIONS(4968), + [anon_sym_EQ] = ACTIONS(4968), + [anon_sym_QMARK] = ACTIONS(4968), + [anon_sym_LBRACK] = ACTIONS(4970), + [anon_sym_BSLASH] = ACTIONS(4970), + [anon_sym_CARET] = ACTIONS(4970), + [anon_sym__] = ACTIONS(4968), + [anon_sym_BQUOTE] = ACTIONS(4968), + [anon_sym_LBRACE] = ACTIONS(4968), + [anon_sym_PIPE] = ACTIONS(4968), + [anon_sym_TILDE] = ACTIONS(4968), + [anon_sym_LPAREN] = ACTIONS(4968), + [anon_sym_RPAREN] = ACTIONS(4968), + [sym__newline_token] = ACTIONS(4968), + [aux_sym_insert_token1] = ACTIONS(4968), + [aux_sym_delete_token1] = ACTIONS(4968), + [aux_sym_highlight_token1] = ACTIONS(4968), + [aux_sym_edit_comment_token1] = ACTIONS(4968), + [anon_sym_CARET_LBRACK] = ACTIONS(4968), + [anon_sym_LBRACK_CARET] = ACTIONS(4968), + [sym_uri_autolink] = ACTIONS(4968), + [sym_email_autolink] = ACTIONS(4968), + [sym__whitespace_ge_2] = ACTIONS(4968), + [aux_sym__whitespace_token1] = ACTIONS(4970), + [sym__word_no_digit] = ACTIONS(4968), + [sym__digits] = ACTIONS(4968), + [anon_sym_DASH_DASH] = ACTIONS(4970), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4968), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4968), + [sym__code_span_start] = ACTIONS(4968), + [sym__emphasis_open_star] = ACTIONS(4968), + [sym__emphasis_open_underscore] = ACTIONS(4968), + [sym__emphasis_close_underscore] = ACTIONS(4968), + [sym__strikeout_open] = ACTIONS(4968), + [sym__latex_span_start] = ACTIONS(4968), + [sym__single_quote_open] = ACTIONS(4968), + [sym__double_quote_open] = ACTIONS(4968), + [sym__superscript_open] = ACTIONS(4968), + [sym__subscript_open] = ACTIONS(4968), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4968), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4968), + [sym__cite_author_in_text] = ACTIONS(4968), + [sym__cite_suppress_author] = ACTIONS(4968), + [sym__shortcode_open_escaped] = ACTIONS(4968), + [sym__shortcode_open] = ACTIONS(4968), + [sym__unclosed_span] = ACTIONS(4968), + }, + [STATE(762)] = { + [sym__backslash_escape] = ACTIONS(5056), + [sym_entity_reference] = ACTIONS(5056), + [sym_numeric_character_reference] = ACTIONS(5056), + [anon_sym_LT] = ACTIONS(5058), + [anon_sym_GT] = ACTIONS(5056), + [anon_sym_BANG] = ACTIONS(5056), + [anon_sym_DQUOTE] = ACTIONS(5056), + [anon_sym_POUND] = ACTIONS(5056), + [anon_sym_DOLLAR] = ACTIONS(5056), + [anon_sym_PERCENT] = ACTIONS(5056), + [anon_sym_AMP] = ACTIONS(5058), + [anon_sym_SQUOTE] = ACTIONS(5056), + [anon_sym_STAR] = ACTIONS(5056), + [anon_sym_PLUS] = ACTIONS(5056), + [anon_sym_COMMA] = ACTIONS(5056), + [anon_sym_DASH] = ACTIONS(5058), + [anon_sym_DOT] = ACTIONS(5058), + [anon_sym_SLASH] = ACTIONS(5056), + [anon_sym_COLON] = ACTIONS(5056), + [anon_sym_SEMI] = ACTIONS(5056), + [anon_sym_EQ] = ACTIONS(5056), + [anon_sym_QMARK] = ACTIONS(5056), + [anon_sym_LBRACK] = ACTIONS(5058), + [anon_sym_BSLASH] = ACTIONS(5058), + [anon_sym_CARET] = ACTIONS(5058), + [anon_sym__] = ACTIONS(5056), + [anon_sym_BQUOTE] = ACTIONS(5056), + [anon_sym_LBRACE] = ACTIONS(5056), + [anon_sym_PIPE] = ACTIONS(5056), + [anon_sym_TILDE] = ACTIONS(5056), + [anon_sym_LPAREN] = ACTIONS(5056), + [anon_sym_RPAREN] = ACTIONS(5056), + [sym__newline_token] = ACTIONS(5056), + [aux_sym_insert_token1] = ACTIONS(5056), + [aux_sym_delete_token1] = ACTIONS(5056), + [aux_sym_highlight_token1] = ACTIONS(5056), + [aux_sym_edit_comment_token1] = ACTIONS(5056), + [anon_sym_CARET_LBRACK] = ACTIONS(5056), + [anon_sym_LBRACK_CARET] = ACTIONS(5056), + [sym_uri_autolink] = ACTIONS(5056), + [sym_email_autolink] = ACTIONS(5056), + [sym__whitespace_ge_2] = ACTIONS(5056), + [aux_sym__whitespace_token1] = ACTIONS(5058), + [sym__word_no_digit] = ACTIONS(5056), + [sym__digits] = ACTIONS(5056), + [anon_sym_DASH_DASH] = ACTIONS(5058), + [anon_sym_DASH_DASH_DASH] = ACTIONS(5056), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5056), + [sym__code_span_start] = ACTIONS(5056), + [sym__emphasis_open_star] = ACTIONS(5056), + [sym__emphasis_open_underscore] = ACTIONS(5056), + [sym__strikeout_open] = ACTIONS(5056), + [sym__latex_span_start] = ACTIONS(5056), + [sym__single_quote_open] = ACTIONS(5056), + [sym__double_quote_open] = ACTIONS(5056), + [sym__superscript_open] = ACTIONS(5056), + [sym__superscript_close] = ACTIONS(5056), + [sym__subscript_open] = ACTIONS(5056), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5056), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5056), + [sym__cite_author_in_text] = ACTIONS(5056), + [sym__cite_suppress_author] = ACTIONS(5056), + [sym__shortcode_open_escaped] = ACTIONS(5056), + [sym__shortcode_open] = ACTIONS(5056), + [sym__unclosed_span] = ACTIONS(5056), + }, + [STATE(763)] = { + [sym__backslash_escape] = ACTIONS(4690), + [sym_entity_reference] = ACTIONS(4690), + [sym_numeric_character_reference] = ACTIONS(4690), + [anon_sym_LT] = ACTIONS(4692), + [anon_sym_GT] = ACTIONS(4690), + [anon_sym_BANG] = ACTIONS(4690), + [anon_sym_DQUOTE] = ACTIONS(4690), + [anon_sym_POUND] = ACTIONS(4690), + [anon_sym_DOLLAR] = ACTIONS(4690), + [anon_sym_PERCENT] = ACTIONS(4690), + [anon_sym_AMP] = ACTIONS(4692), + [anon_sym_SQUOTE] = ACTIONS(4690), + [anon_sym_STAR] = ACTIONS(4690), + [anon_sym_PLUS] = ACTIONS(4690), + [anon_sym_COMMA] = ACTIONS(4690), + [anon_sym_DASH] = ACTIONS(4692), + [anon_sym_DOT] = ACTIONS(4692), + [anon_sym_SLASH] = ACTIONS(4690), + [anon_sym_COLON] = ACTIONS(4690), + [anon_sym_SEMI] = ACTIONS(4690), + [anon_sym_EQ] = ACTIONS(4690), + [anon_sym_QMARK] = ACTIONS(4690), + [anon_sym_LBRACK] = ACTIONS(4692), + [anon_sym_BSLASH] = ACTIONS(4692), + [anon_sym_CARET] = ACTIONS(4692), + [anon_sym__] = ACTIONS(4690), + [anon_sym_BQUOTE] = ACTIONS(4690), + [anon_sym_LBRACE] = ACTIONS(4690), + [anon_sym_PIPE] = ACTIONS(4690), + [anon_sym_TILDE] = ACTIONS(4690), + [anon_sym_LPAREN] = ACTIONS(4690), + [anon_sym_RPAREN] = ACTIONS(4690), + [sym__newline_token] = ACTIONS(4690), + [aux_sym_insert_token1] = ACTIONS(4690), + [aux_sym_delete_token1] = ACTIONS(4690), + [aux_sym_highlight_token1] = ACTIONS(4690), + [aux_sym_edit_comment_token1] = ACTIONS(4690), + [anon_sym_CARET_LBRACK] = ACTIONS(4690), + [anon_sym_LBRACK_CARET] = ACTIONS(4690), + [sym_uri_autolink] = ACTIONS(4690), + [sym_email_autolink] = ACTIONS(4690), + [sym__whitespace_ge_2] = ACTIONS(4690), + [aux_sym__whitespace_token1] = ACTIONS(4692), + [sym__word_no_digit] = ACTIONS(4690), + [sym__digits] = ACTIONS(4690), + [anon_sym_DASH_DASH] = ACTIONS(4692), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4690), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4690), + [sym__code_span_start] = ACTIONS(4690), + [sym__emphasis_open_star] = ACTIONS(4690), + [sym__emphasis_open_underscore] = ACTIONS(4690), + [sym__strikeout_open] = ACTIONS(4690), + [sym__strikeout_close] = ACTIONS(4690), + [sym__latex_span_start] = ACTIONS(4690), + [sym__single_quote_open] = ACTIONS(4690), + [sym__double_quote_open] = ACTIONS(4690), + [sym__superscript_open] = ACTIONS(4690), + [sym__subscript_open] = ACTIONS(4690), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4690), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4690), + [sym__cite_author_in_text] = ACTIONS(4690), + [sym__cite_suppress_author] = ACTIONS(4690), + [sym__shortcode_open_escaped] = ACTIONS(4690), + [sym__shortcode_open] = ACTIONS(4690), + [sym__unclosed_span] = ACTIONS(4690), + }, + [STATE(764)] = { + [sym__backslash_escape] = ACTIONS(4572), + [sym_entity_reference] = ACTIONS(4572), + [sym_numeric_character_reference] = ACTIONS(4572), + [anon_sym_LT] = ACTIONS(4574), + [anon_sym_GT] = ACTIONS(4572), + [anon_sym_BANG] = ACTIONS(4572), + [anon_sym_DQUOTE] = ACTIONS(4572), + [anon_sym_POUND] = ACTIONS(4572), + [anon_sym_DOLLAR] = ACTIONS(4572), + [anon_sym_PERCENT] = ACTIONS(4572), + [anon_sym_AMP] = ACTIONS(4574), + [anon_sym_SQUOTE] = ACTIONS(4572), + [anon_sym_STAR] = ACTIONS(4572), + [anon_sym_PLUS] = ACTIONS(4572), + [anon_sym_COMMA] = ACTIONS(4572), + [anon_sym_DASH] = ACTIONS(4574), + [anon_sym_DOT] = ACTIONS(4574), + [anon_sym_SLASH] = ACTIONS(4572), + [anon_sym_COLON] = ACTIONS(4572), + [anon_sym_SEMI] = ACTIONS(4572), + [anon_sym_EQ] = ACTIONS(4572), + [anon_sym_QMARK] = ACTIONS(4572), + [anon_sym_LBRACK] = ACTIONS(4574), + [anon_sym_BSLASH] = ACTIONS(4574), + [anon_sym_CARET] = ACTIONS(4574), + [anon_sym__] = ACTIONS(4572), + [anon_sym_BQUOTE] = ACTIONS(4572), + [anon_sym_LBRACE] = ACTIONS(4572), + [anon_sym_PIPE] = ACTIONS(4572), + [anon_sym_TILDE] = ACTIONS(4572), + [anon_sym_LPAREN] = ACTIONS(4572), + [anon_sym_RPAREN] = ACTIONS(4572), + [sym__newline_token] = ACTIONS(4572), + [aux_sym_insert_token1] = ACTIONS(4572), + [aux_sym_delete_token1] = ACTIONS(4572), + [aux_sym_highlight_token1] = ACTIONS(4572), + [aux_sym_edit_comment_token1] = ACTIONS(4572), + [anon_sym_CARET_LBRACK] = ACTIONS(4572), + [anon_sym_LBRACK_CARET] = ACTIONS(4572), + [sym_uri_autolink] = ACTIONS(4572), + [sym_email_autolink] = ACTIONS(4572), + [sym__whitespace_ge_2] = ACTIONS(4572), + [aux_sym__whitespace_token1] = ACTIONS(4574), + [sym__word_no_digit] = ACTIONS(4572), + [sym__digits] = ACTIONS(4572), + [anon_sym_DASH_DASH] = ACTIONS(4574), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4572), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4572), + [sym__code_span_start] = ACTIONS(4572), + [sym__emphasis_open_star] = ACTIONS(4572), + [sym__emphasis_open_underscore] = ACTIONS(4572), + [sym__emphasis_close_underscore] = ACTIONS(4572), + [sym__strikeout_open] = ACTIONS(4572), + [sym__latex_span_start] = ACTIONS(4572), + [sym__single_quote_open] = ACTIONS(4572), + [sym__double_quote_open] = ACTIONS(4572), + [sym__superscript_open] = ACTIONS(4572), + [sym__subscript_open] = ACTIONS(4572), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4572), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4572), + [sym__cite_author_in_text] = ACTIONS(4572), + [sym__cite_suppress_author] = ACTIONS(4572), + [sym__shortcode_open_escaped] = ACTIONS(4572), + [sym__shortcode_open] = ACTIONS(4572), + [sym__unclosed_span] = ACTIONS(4572), + }, + [STATE(765)] = { + [sym__backslash_escape] = ACTIONS(4820), + [sym_entity_reference] = ACTIONS(4820), + [sym_numeric_character_reference] = ACTIONS(4820), + [anon_sym_LT] = ACTIONS(4822), + [anon_sym_GT] = ACTIONS(4820), + [anon_sym_BANG] = ACTIONS(4820), + [anon_sym_DQUOTE] = ACTIONS(4820), + [anon_sym_POUND] = ACTIONS(4820), + [anon_sym_DOLLAR] = ACTIONS(4820), + [anon_sym_PERCENT] = ACTIONS(4820), + [anon_sym_AMP] = ACTIONS(4822), + [anon_sym_SQUOTE] = ACTIONS(4820), + [anon_sym_STAR] = ACTIONS(4820), + [anon_sym_PLUS] = ACTIONS(4820), + [anon_sym_COMMA] = ACTIONS(4820), + [anon_sym_DASH] = ACTIONS(4822), + [anon_sym_DOT] = ACTIONS(4822), + [anon_sym_SLASH] = ACTIONS(4820), + [anon_sym_COLON] = ACTIONS(4820), + [anon_sym_SEMI] = ACTIONS(4820), + [anon_sym_EQ] = ACTIONS(4820), + [anon_sym_QMARK] = ACTIONS(4820), + [anon_sym_LBRACK] = ACTIONS(4822), + [anon_sym_BSLASH] = ACTIONS(4822), + [anon_sym_CARET] = ACTIONS(4822), + [anon_sym__] = ACTIONS(4820), + [anon_sym_BQUOTE] = ACTIONS(4820), + [anon_sym_LBRACE] = ACTIONS(4820), + [anon_sym_PIPE] = ACTIONS(4820), + [anon_sym_TILDE] = ACTIONS(4820), + [anon_sym_LPAREN] = ACTIONS(4820), + [anon_sym_RPAREN] = ACTIONS(4820), + [sym__newline_token] = ACTIONS(4820), + [aux_sym_insert_token1] = ACTIONS(4820), + [aux_sym_delete_token1] = ACTIONS(4820), + [aux_sym_highlight_token1] = ACTIONS(4820), + [aux_sym_edit_comment_token1] = ACTIONS(4820), + [anon_sym_CARET_LBRACK] = ACTIONS(4820), + [anon_sym_LBRACK_CARET] = ACTIONS(4820), + [sym_uri_autolink] = ACTIONS(4820), + [sym_email_autolink] = ACTIONS(4820), + [sym__whitespace_ge_2] = ACTIONS(4820), + [aux_sym__whitespace_token1] = ACTIONS(4822), + [sym__word_no_digit] = ACTIONS(4820), + [sym__digits] = ACTIONS(4820), + [anon_sym_DASH_DASH] = ACTIONS(4822), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4820), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4820), + [sym__code_span_start] = ACTIONS(4820), + [sym__emphasis_open_star] = ACTIONS(4820), + [sym__emphasis_open_underscore] = ACTIONS(4820), + [sym__strikeout_open] = ACTIONS(4820), + [sym__latex_span_start] = ACTIONS(4820), + [sym__single_quote_open] = ACTIONS(4820), + [sym__double_quote_open] = ACTIONS(4820), + [sym__superscript_open] = ACTIONS(4820), + [sym__superscript_close] = ACTIONS(4820), + [sym__subscript_open] = ACTIONS(4820), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4820), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4820), + [sym__cite_author_in_text] = ACTIONS(4820), + [sym__cite_suppress_author] = ACTIONS(4820), + [sym__shortcode_open_escaped] = ACTIONS(4820), + [sym__shortcode_open] = ACTIONS(4820), + [sym__unclosed_span] = ACTIONS(4820), + }, + [STATE(766)] = { + [sym__backslash_escape] = ACTIONS(4824), + [sym_entity_reference] = ACTIONS(4824), + [sym_numeric_character_reference] = ACTIONS(4824), + [anon_sym_LT] = ACTIONS(4826), + [anon_sym_GT] = ACTIONS(4824), + [anon_sym_BANG] = ACTIONS(4824), + [anon_sym_DQUOTE] = ACTIONS(4824), + [anon_sym_POUND] = ACTIONS(4824), + [anon_sym_DOLLAR] = ACTIONS(4824), + [anon_sym_PERCENT] = ACTIONS(4824), + [anon_sym_AMP] = ACTIONS(4826), + [anon_sym_SQUOTE] = ACTIONS(4824), + [anon_sym_STAR] = ACTIONS(4824), + [anon_sym_PLUS] = ACTIONS(4824), + [anon_sym_COMMA] = ACTIONS(4824), + [anon_sym_DASH] = ACTIONS(4826), + [anon_sym_DOT] = ACTIONS(4826), + [anon_sym_SLASH] = ACTIONS(4824), + [anon_sym_COLON] = ACTIONS(4824), + [anon_sym_SEMI] = ACTIONS(4824), + [anon_sym_EQ] = ACTIONS(4824), + [anon_sym_QMARK] = ACTIONS(4824), + [anon_sym_LBRACK] = ACTIONS(4826), + [anon_sym_BSLASH] = ACTIONS(4826), + [anon_sym_CARET] = ACTIONS(4826), + [anon_sym__] = ACTIONS(4824), + [anon_sym_BQUOTE] = ACTIONS(4824), + [anon_sym_LBRACE] = ACTIONS(4824), + [anon_sym_PIPE] = ACTIONS(4824), + [anon_sym_TILDE] = ACTIONS(4824), + [anon_sym_LPAREN] = ACTIONS(4824), + [anon_sym_RPAREN] = ACTIONS(4824), + [sym__newline_token] = ACTIONS(4824), + [aux_sym_insert_token1] = ACTIONS(4824), + [aux_sym_delete_token1] = ACTIONS(4824), + [aux_sym_highlight_token1] = ACTIONS(4824), + [aux_sym_edit_comment_token1] = ACTIONS(4824), + [anon_sym_CARET_LBRACK] = ACTIONS(4824), + [anon_sym_LBRACK_CARET] = ACTIONS(4824), + [sym_uri_autolink] = ACTIONS(4824), + [sym_email_autolink] = ACTIONS(4824), + [sym__whitespace_ge_2] = ACTIONS(4824), + [aux_sym__whitespace_token1] = ACTIONS(4826), + [sym__word_no_digit] = ACTIONS(4824), + [sym__digits] = ACTIONS(4824), + [anon_sym_DASH_DASH] = ACTIONS(4826), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4824), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4824), + [sym__code_span_start] = ACTIONS(4824), + [sym__emphasis_open_star] = ACTIONS(4824), + [sym__emphasis_open_underscore] = ACTIONS(4824), + [sym__strikeout_open] = ACTIONS(4824), + [sym__latex_span_start] = ACTIONS(4824), + [sym__single_quote_open] = ACTIONS(4824), + [sym__double_quote_open] = ACTIONS(4824), + [sym__superscript_open] = ACTIONS(4824), + [sym__superscript_close] = ACTIONS(4824), + [sym__subscript_open] = ACTIONS(4824), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4824), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4824), + [sym__cite_author_in_text] = ACTIONS(4824), + [sym__cite_suppress_author] = ACTIONS(4824), + [sym__shortcode_open_escaped] = ACTIONS(4824), + [sym__shortcode_open] = ACTIONS(4824), + [sym__unclosed_span] = ACTIONS(4824), + }, + [STATE(767)] = { + [sym__backslash_escape] = ACTIONS(4828), + [sym_entity_reference] = ACTIONS(4828), + [sym_numeric_character_reference] = ACTIONS(4828), + [anon_sym_LT] = ACTIONS(4830), + [anon_sym_GT] = ACTIONS(4828), + [anon_sym_BANG] = ACTIONS(4828), + [anon_sym_DQUOTE] = ACTIONS(4828), + [anon_sym_POUND] = ACTIONS(4828), + [anon_sym_DOLLAR] = ACTIONS(4828), + [anon_sym_PERCENT] = ACTIONS(4828), + [anon_sym_AMP] = ACTIONS(4830), + [anon_sym_SQUOTE] = ACTIONS(4828), + [anon_sym_STAR] = ACTIONS(4828), + [anon_sym_PLUS] = ACTIONS(4828), + [anon_sym_COMMA] = ACTIONS(4828), + [anon_sym_DASH] = ACTIONS(4830), + [anon_sym_DOT] = ACTIONS(4830), + [anon_sym_SLASH] = ACTIONS(4828), + [anon_sym_COLON] = ACTIONS(4828), + [anon_sym_SEMI] = ACTIONS(4828), + [anon_sym_EQ] = ACTIONS(4828), + [anon_sym_QMARK] = ACTIONS(4828), + [anon_sym_LBRACK] = ACTIONS(4830), + [anon_sym_BSLASH] = ACTIONS(4830), + [anon_sym_CARET] = ACTIONS(4830), + [anon_sym__] = ACTIONS(4828), + [anon_sym_BQUOTE] = ACTIONS(4828), + [anon_sym_LBRACE] = ACTIONS(4828), + [anon_sym_PIPE] = ACTIONS(4828), + [anon_sym_TILDE] = ACTIONS(4828), + [anon_sym_LPAREN] = ACTIONS(4828), + [anon_sym_RPAREN] = ACTIONS(4828), + [sym__newline_token] = ACTIONS(4828), + [aux_sym_insert_token1] = ACTIONS(4828), + [aux_sym_delete_token1] = ACTIONS(4828), + [aux_sym_highlight_token1] = ACTIONS(4828), + [aux_sym_edit_comment_token1] = ACTIONS(4828), + [anon_sym_CARET_LBRACK] = ACTIONS(4828), + [anon_sym_LBRACK_CARET] = ACTIONS(4828), + [sym_uri_autolink] = ACTIONS(4828), + [sym_email_autolink] = ACTIONS(4828), + [sym__whitespace_ge_2] = ACTIONS(4828), + [aux_sym__whitespace_token1] = ACTIONS(4830), + [sym__word_no_digit] = ACTIONS(4828), + [sym__digits] = ACTIONS(4828), + [anon_sym_DASH_DASH] = ACTIONS(4830), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4828), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4828), + [sym__code_span_start] = ACTIONS(4828), + [sym__emphasis_open_star] = ACTIONS(4828), + [sym__emphasis_open_underscore] = ACTIONS(4828), + [sym__strikeout_open] = ACTIONS(4828), + [sym__latex_span_start] = ACTIONS(4828), + [sym__single_quote_open] = ACTIONS(4828), + [sym__double_quote_open] = ACTIONS(4828), + [sym__superscript_open] = ACTIONS(4828), + [sym__superscript_close] = ACTIONS(4828), + [sym__subscript_open] = ACTIONS(4828), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4828), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4828), + [sym__cite_author_in_text] = ACTIONS(4828), + [sym__cite_suppress_author] = ACTIONS(4828), + [sym__shortcode_open_escaped] = ACTIONS(4828), + [sym__shortcode_open] = ACTIONS(4828), + [sym__unclosed_span] = ACTIONS(4828), + }, + [STATE(768)] = { + [sym__backslash_escape] = ACTIONS(4832), + [sym_entity_reference] = ACTIONS(4832), + [sym_numeric_character_reference] = ACTIONS(4832), + [anon_sym_LT] = ACTIONS(4834), + [anon_sym_GT] = ACTIONS(4832), + [anon_sym_BANG] = ACTIONS(4832), + [anon_sym_DQUOTE] = ACTIONS(4832), + [anon_sym_POUND] = ACTIONS(4832), + [anon_sym_DOLLAR] = ACTIONS(4832), + [anon_sym_PERCENT] = ACTIONS(4832), + [anon_sym_AMP] = ACTIONS(4834), + [anon_sym_SQUOTE] = ACTIONS(4832), + [anon_sym_STAR] = ACTIONS(4832), + [anon_sym_PLUS] = ACTIONS(4832), + [anon_sym_COMMA] = ACTIONS(4832), + [anon_sym_DASH] = ACTIONS(4834), + [anon_sym_DOT] = ACTIONS(4834), + [anon_sym_SLASH] = ACTIONS(4832), + [anon_sym_COLON] = ACTIONS(4832), + [anon_sym_SEMI] = ACTIONS(4832), + [anon_sym_EQ] = ACTIONS(4832), + [anon_sym_QMARK] = ACTIONS(4832), + [anon_sym_LBRACK] = ACTIONS(4834), + [anon_sym_BSLASH] = ACTIONS(4834), + [anon_sym_CARET] = ACTIONS(4834), + [anon_sym__] = ACTIONS(4832), + [anon_sym_BQUOTE] = ACTIONS(4832), + [anon_sym_LBRACE] = ACTIONS(4832), + [anon_sym_PIPE] = ACTIONS(4832), + [anon_sym_TILDE] = ACTIONS(4832), + [anon_sym_LPAREN] = ACTIONS(4832), + [anon_sym_RPAREN] = ACTIONS(4832), + [sym__newline_token] = ACTIONS(4832), + [aux_sym_insert_token1] = ACTIONS(4832), + [aux_sym_delete_token1] = ACTIONS(4832), + [aux_sym_highlight_token1] = ACTIONS(4832), + [aux_sym_edit_comment_token1] = ACTIONS(4832), + [anon_sym_CARET_LBRACK] = ACTIONS(4832), + [anon_sym_LBRACK_CARET] = ACTIONS(4832), + [sym_uri_autolink] = ACTIONS(4832), + [sym_email_autolink] = ACTIONS(4832), + [sym__whitespace_ge_2] = ACTIONS(4832), + [aux_sym__whitespace_token1] = ACTIONS(4834), + [sym__word_no_digit] = ACTIONS(4832), + [sym__digits] = ACTIONS(4832), + [anon_sym_DASH_DASH] = ACTIONS(4834), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4832), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4832), + [sym__code_span_start] = ACTIONS(4832), + [sym__emphasis_open_star] = ACTIONS(4832), + [sym__emphasis_open_underscore] = ACTIONS(4832), + [sym__strikeout_open] = ACTIONS(4832), + [sym__latex_span_start] = ACTIONS(4832), + [sym__single_quote_open] = ACTIONS(4832), + [sym__double_quote_open] = ACTIONS(4832), + [sym__superscript_open] = ACTIONS(4832), + [sym__superscript_close] = ACTIONS(4832), + [sym__subscript_open] = ACTIONS(4832), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4832), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4832), + [sym__cite_author_in_text] = ACTIONS(4832), + [sym__cite_suppress_author] = ACTIONS(4832), + [sym__shortcode_open_escaped] = ACTIONS(4832), + [sym__shortcode_open] = ACTIONS(4832), + [sym__unclosed_span] = ACTIONS(4832), + }, + [STATE(769)] = { + [sym__backslash_escape] = ACTIONS(4836), + [sym_entity_reference] = ACTIONS(4836), + [sym_numeric_character_reference] = ACTIONS(4836), + [anon_sym_LT] = ACTIONS(4838), + [anon_sym_GT] = ACTIONS(4836), + [anon_sym_BANG] = ACTIONS(4836), + [anon_sym_DQUOTE] = ACTIONS(4836), + [anon_sym_POUND] = ACTIONS(4836), + [anon_sym_DOLLAR] = ACTIONS(4836), + [anon_sym_PERCENT] = ACTIONS(4836), + [anon_sym_AMP] = ACTIONS(4838), + [anon_sym_SQUOTE] = ACTIONS(4836), + [anon_sym_STAR] = ACTIONS(4836), + [anon_sym_PLUS] = ACTIONS(4836), + [anon_sym_COMMA] = ACTIONS(4836), + [anon_sym_DASH] = ACTIONS(4838), + [anon_sym_DOT] = ACTIONS(4838), + [anon_sym_SLASH] = ACTIONS(4836), + [anon_sym_COLON] = ACTIONS(4836), + [anon_sym_SEMI] = ACTIONS(4836), + [anon_sym_EQ] = ACTIONS(4836), + [anon_sym_QMARK] = ACTIONS(4836), + [anon_sym_LBRACK] = ACTIONS(4838), + [anon_sym_BSLASH] = ACTIONS(4838), + [anon_sym_CARET] = ACTIONS(4838), + [anon_sym__] = ACTIONS(4836), + [anon_sym_BQUOTE] = ACTIONS(4836), + [anon_sym_LBRACE] = ACTIONS(4836), + [anon_sym_PIPE] = ACTIONS(4836), + [anon_sym_TILDE] = ACTIONS(4836), + [anon_sym_LPAREN] = ACTIONS(4836), + [anon_sym_RPAREN] = ACTIONS(4836), + [sym__newline_token] = ACTIONS(4836), + [aux_sym_insert_token1] = ACTIONS(4836), + [aux_sym_delete_token1] = ACTIONS(4836), + [aux_sym_highlight_token1] = ACTIONS(4836), + [aux_sym_edit_comment_token1] = ACTIONS(4836), + [anon_sym_CARET_LBRACK] = ACTIONS(4836), + [anon_sym_LBRACK_CARET] = ACTIONS(4836), + [sym_uri_autolink] = ACTIONS(4836), + [sym_email_autolink] = ACTIONS(4836), + [sym__whitespace_ge_2] = ACTIONS(4836), + [aux_sym__whitespace_token1] = ACTIONS(4838), + [sym__word_no_digit] = ACTIONS(4836), + [sym__digits] = ACTIONS(4836), + [anon_sym_DASH_DASH] = ACTIONS(4838), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4836), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4836), + [sym__code_span_start] = ACTIONS(4836), + [sym__emphasis_open_star] = ACTIONS(4836), + [sym__emphasis_open_underscore] = ACTIONS(4836), + [sym__strikeout_open] = ACTIONS(4836), + [sym__latex_span_start] = ACTIONS(4836), + [sym__single_quote_open] = ACTIONS(4836), + [sym__double_quote_open] = ACTIONS(4836), + [sym__superscript_open] = ACTIONS(4836), + [sym__superscript_close] = ACTIONS(4836), + [sym__subscript_open] = ACTIONS(4836), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4836), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4836), + [sym__cite_author_in_text] = ACTIONS(4836), + [sym__cite_suppress_author] = ACTIONS(4836), + [sym__shortcode_open_escaped] = ACTIONS(4836), + [sym__shortcode_open] = ACTIONS(4836), + [sym__unclosed_span] = ACTIONS(4836), + }, + [STATE(770)] = { + [sym__backslash_escape] = ACTIONS(5056), + [sym_entity_reference] = ACTIONS(5056), + [sym_numeric_character_reference] = ACTIONS(5056), + [anon_sym_LT] = ACTIONS(5058), + [anon_sym_GT] = ACTIONS(5056), + [anon_sym_BANG] = ACTIONS(5056), + [anon_sym_DQUOTE] = ACTIONS(5056), + [anon_sym_POUND] = ACTIONS(5056), + [anon_sym_DOLLAR] = ACTIONS(5056), + [anon_sym_PERCENT] = ACTIONS(5056), + [anon_sym_AMP] = ACTIONS(5058), + [anon_sym_SQUOTE] = ACTIONS(5056), + [anon_sym_STAR] = ACTIONS(5056), + [anon_sym_PLUS] = ACTIONS(5056), + [anon_sym_COMMA] = ACTIONS(5056), + [anon_sym_DASH] = ACTIONS(5058), + [anon_sym_DOT] = ACTIONS(5058), + [anon_sym_SLASH] = ACTIONS(5056), + [anon_sym_COLON] = ACTIONS(5056), + [anon_sym_SEMI] = ACTIONS(5056), + [anon_sym_EQ] = ACTIONS(5056), + [anon_sym_QMARK] = ACTIONS(5056), + [anon_sym_LBRACK] = ACTIONS(5058), + [anon_sym_BSLASH] = ACTIONS(5058), + [anon_sym_CARET] = ACTIONS(5058), + [anon_sym__] = ACTIONS(5056), + [anon_sym_BQUOTE] = ACTIONS(5056), + [anon_sym_LBRACE] = ACTIONS(5056), + [anon_sym_PIPE] = ACTIONS(5056), + [anon_sym_TILDE] = ACTIONS(5056), + [anon_sym_LPAREN] = ACTIONS(5056), + [anon_sym_RPAREN] = ACTIONS(5056), + [sym__newline_token] = ACTIONS(5056), + [aux_sym_insert_token1] = ACTIONS(5056), + [aux_sym_delete_token1] = ACTIONS(5056), + [aux_sym_highlight_token1] = ACTIONS(5056), + [aux_sym_edit_comment_token1] = ACTIONS(5056), + [anon_sym_CARET_LBRACK] = ACTIONS(5056), + [anon_sym_LBRACK_CARET] = ACTIONS(5056), + [sym_uri_autolink] = ACTIONS(5056), + [sym_email_autolink] = ACTIONS(5056), + [sym__whitespace_ge_2] = ACTIONS(5056), + [aux_sym__whitespace_token1] = ACTIONS(5058), + [sym__word_no_digit] = ACTIONS(5056), + [sym__digits] = ACTIONS(5056), + [anon_sym_DASH_DASH] = ACTIONS(5058), + [anon_sym_DASH_DASH_DASH] = ACTIONS(5056), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5056), + [sym__code_span_start] = ACTIONS(5056), + [sym__emphasis_open_star] = ACTIONS(5056), + [sym__emphasis_open_underscore] = ACTIONS(5056), + [sym__strikeout_open] = ACTIONS(5056), + [sym__strikeout_close] = ACTIONS(5056), + [sym__latex_span_start] = ACTIONS(5056), + [sym__single_quote_open] = ACTIONS(5056), + [sym__double_quote_open] = ACTIONS(5056), + [sym__superscript_open] = ACTIONS(5056), + [sym__subscript_open] = ACTIONS(5056), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5056), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5056), + [sym__cite_author_in_text] = ACTIONS(5056), + [sym__cite_suppress_author] = ACTIONS(5056), + [sym__shortcode_open_escaped] = ACTIONS(5056), + [sym__shortcode_open] = ACTIONS(5056), + [sym__unclosed_span] = ACTIONS(5056), + }, + [STATE(771)] = { + [sym__backslash_escape] = ACTIONS(4844), + [sym_entity_reference] = ACTIONS(4844), + [sym_numeric_character_reference] = ACTIONS(4844), + [anon_sym_LT] = ACTIONS(4846), + [anon_sym_GT] = ACTIONS(4844), + [anon_sym_BANG] = ACTIONS(4844), + [anon_sym_DQUOTE] = ACTIONS(4844), + [anon_sym_POUND] = ACTIONS(4844), + [anon_sym_DOLLAR] = ACTIONS(4844), + [anon_sym_PERCENT] = ACTIONS(4844), + [anon_sym_AMP] = ACTIONS(4846), + [anon_sym_SQUOTE] = ACTIONS(4844), + [anon_sym_STAR] = ACTIONS(4844), + [anon_sym_PLUS] = ACTIONS(4844), + [anon_sym_COMMA] = ACTIONS(4844), + [anon_sym_DASH] = ACTIONS(4846), + [anon_sym_DOT] = ACTIONS(4846), + [anon_sym_SLASH] = ACTIONS(4844), + [anon_sym_COLON] = ACTIONS(4844), + [anon_sym_SEMI] = ACTIONS(4844), + [anon_sym_EQ] = ACTIONS(4844), + [anon_sym_QMARK] = ACTIONS(4844), + [anon_sym_LBRACK] = ACTIONS(4846), + [anon_sym_BSLASH] = ACTIONS(4846), + [anon_sym_CARET] = ACTIONS(4846), + [anon_sym__] = ACTIONS(4844), + [anon_sym_BQUOTE] = ACTIONS(4844), + [anon_sym_LBRACE] = ACTIONS(4844), + [anon_sym_PIPE] = ACTIONS(4844), + [anon_sym_TILDE] = ACTIONS(4844), + [anon_sym_LPAREN] = ACTIONS(4844), + [anon_sym_RPAREN] = ACTIONS(4844), + [sym__newline_token] = ACTIONS(4844), + [aux_sym_insert_token1] = ACTIONS(4844), + [aux_sym_delete_token1] = ACTIONS(4844), + [aux_sym_highlight_token1] = ACTIONS(4844), + [aux_sym_edit_comment_token1] = ACTIONS(4844), + [anon_sym_CARET_LBRACK] = ACTIONS(4844), + [anon_sym_LBRACK_CARET] = ACTIONS(4844), + [sym_uri_autolink] = ACTIONS(4844), + [sym_email_autolink] = ACTIONS(4844), + [sym__whitespace_ge_2] = ACTIONS(4844), + [aux_sym__whitespace_token1] = ACTIONS(4846), + [sym__word_no_digit] = ACTIONS(4844), + [sym__digits] = ACTIONS(4844), + [anon_sym_DASH_DASH] = ACTIONS(4846), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4844), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4844), + [sym__code_span_start] = ACTIONS(4844), + [sym__emphasis_open_star] = ACTIONS(4844), + [sym__emphasis_open_underscore] = ACTIONS(4844), + [sym__strikeout_open] = ACTIONS(4844), + [sym__latex_span_start] = ACTIONS(4844), + [sym__single_quote_open] = ACTIONS(4844), + [sym__double_quote_open] = ACTIONS(4844), + [sym__superscript_open] = ACTIONS(4844), + [sym__superscript_close] = ACTIONS(4844), + [sym__subscript_open] = ACTIONS(4844), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4844), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4844), + [sym__cite_author_in_text] = ACTIONS(4844), + [sym__cite_suppress_author] = ACTIONS(4844), + [sym__shortcode_open_escaped] = ACTIONS(4844), + [sym__shortcode_open] = ACTIONS(4844), + [sym__unclosed_span] = ACTIONS(4844), + }, + [STATE(772)] = { + [sym__backslash_escape] = ACTIONS(4848), + [sym_entity_reference] = ACTIONS(4848), + [sym_numeric_character_reference] = ACTIONS(4848), + [anon_sym_LT] = ACTIONS(4850), + [anon_sym_GT] = ACTIONS(4848), + [anon_sym_BANG] = ACTIONS(4848), + [anon_sym_DQUOTE] = ACTIONS(4848), + [anon_sym_POUND] = ACTIONS(4848), + [anon_sym_DOLLAR] = ACTIONS(4848), + [anon_sym_PERCENT] = ACTIONS(4848), + [anon_sym_AMP] = ACTIONS(4850), + [anon_sym_SQUOTE] = ACTIONS(4848), + [anon_sym_STAR] = ACTIONS(4848), + [anon_sym_PLUS] = ACTIONS(4848), + [anon_sym_COMMA] = ACTIONS(4848), + [anon_sym_DASH] = ACTIONS(4850), + [anon_sym_DOT] = ACTIONS(4850), + [anon_sym_SLASH] = ACTIONS(4848), + [anon_sym_COLON] = ACTIONS(4848), + [anon_sym_SEMI] = ACTIONS(4848), + [anon_sym_EQ] = ACTIONS(4848), + [anon_sym_QMARK] = ACTIONS(4848), + [anon_sym_LBRACK] = ACTIONS(4850), + [anon_sym_BSLASH] = ACTIONS(4850), + [anon_sym_CARET] = ACTIONS(4850), + [anon_sym__] = ACTIONS(4848), + [anon_sym_BQUOTE] = ACTIONS(4848), + [anon_sym_LBRACE] = ACTIONS(4848), + [anon_sym_PIPE] = ACTIONS(4848), + [anon_sym_TILDE] = ACTIONS(4848), + [anon_sym_LPAREN] = ACTIONS(4848), + [anon_sym_RPAREN] = ACTIONS(4848), + [sym__newline_token] = ACTIONS(4848), + [aux_sym_insert_token1] = ACTIONS(4848), + [aux_sym_delete_token1] = ACTIONS(4848), + [aux_sym_highlight_token1] = ACTIONS(4848), + [aux_sym_edit_comment_token1] = ACTIONS(4848), + [anon_sym_CARET_LBRACK] = ACTIONS(4848), + [anon_sym_LBRACK_CARET] = ACTIONS(4848), + [sym_uri_autolink] = ACTIONS(4848), + [sym_email_autolink] = ACTIONS(4848), + [sym__whitespace_ge_2] = ACTIONS(4848), + [aux_sym__whitespace_token1] = ACTIONS(4850), + [sym__word_no_digit] = ACTIONS(4848), + [sym__digits] = ACTIONS(4848), + [anon_sym_DASH_DASH] = ACTIONS(4850), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4848), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4848), + [sym__code_span_start] = ACTIONS(4848), + [sym__emphasis_open_star] = ACTIONS(4848), + [sym__emphasis_open_underscore] = ACTIONS(4848), + [sym__strikeout_open] = ACTIONS(4848), + [sym__latex_span_start] = ACTIONS(4848), + [sym__single_quote_open] = ACTIONS(4848), + [sym__double_quote_open] = ACTIONS(4848), + [sym__superscript_open] = ACTIONS(4848), + [sym__superscript_close] = ACTIONS(4848), + [sym__subscript_open] = ACTIONS(4848), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4848), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4848), + [sym__cite_author_in_text] = ACTIONS(4848), + [sym__cite_suppress_author] = ACTIONS(4848), + [sym__shortcode_open_escaped] = ACTIONS(4848), + [sym__shortcode_open] = ACTIONS(4848), + [sym__unclosed_span] = ACTIONS(4848), + }, + [STATE(773)] = { + [sym__backslash_escape] = ACTIONS(4852), + [sym_entity_reference] = ACTIONS(4852), + [sym_numeric_character_reference] = ACTIONS(4852), + [anon_sym_LT] = ACTIONS(4854), + [anon_sym_GT] = ACTIONS(4852), + [anon_sym_BANG] = ACTIONS(4852), + [anon_sym_DQUOTE] = ACTIONS(4852), + [anon_sym_POUND] = ACTIONS(4852), + [anon_sym_DOLLAR] = ACTIONS(4852), + [anon_sym_PERCENT] = ACTIONS(4852), + [anon_sym_AMP] = ACTIONS(4854), + [anon_sym_SQUOTE] = ACTIONS(4852), + [anon_sym_STAR] = ACTIONS(4852), + [anon_sym_PLUS] = ACTIONS(4852), + [anon_sym_COMMA] = ACTIONS(4852), + [anon_sym_DASH] = ACTIONS(4854), + [anon_sym_DOT] = ACTIONS(4854), + [anon_sym_SLASH] = ACTIONS(4852), + [anon_sym_COLON] = ACTIONS(4852), + [anon_sym_SEMI] = ACTIONS(4852), + [anon_sym_EQ] = ACTIONS(4852), + [anon_sym_QMARK] = ACTIONS(4852), + [anon_sym_LBRACK] = ACTIONS(4854), + [anon_sym_BSLASH] = ACTIONS(4854), + [anon_sym_CARET] = ACTIONS(4854), + [anon_sym__] = ACTIONS(4852), + [anon_sym_BQUOTE] = ACTIONS(4852), + [anon_sym_LBRACE] = ACTIONS(4852), + [anon_sym_PIPE] = ACTIONS(4852), + [anon_sym_TILDE] = ACTIONS(4852), + [anon_sym_LPAREN] = ACTIONS(4852), + [anon_sym_RPAREN] = ACTIONS(4852), + [sym__newline_token] = ACTIONS(4852), + [aux_sym_insert_token1] = ACTIONS(4852), + [aux_sym_delete_token1] = ACTIONS(4852), + [aux_sym_highlight_token1] = ACTIONS(4852), + [aux_sym_edit_comment_token1] = ACTIONS(4852), + [anon_sym_CARET_LBRACK] = ACTIONS(4852), + [anon_sym_LBRACK_CARET] = ACTIONS(4852), + [sym_uri_autolink] = ACTIONS(4852), + [sym_email_autolink] = ACTIONS(4852), + [sym__whitespace_ge_2] = ACTIONS(4852), + [aux_sym__whitespace_token1] = ACTIONS(4854), + [sym__word_no_digit] = ACTIONS(4852), + [sym__digits] = ACTIONS(4852), + [anon_sym_DASH_DASH] = ACTIONS(4854), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4852), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4852), + [sym__code_span_start] = ACTIONS(4852), + [sym__emphasis_open_star] = ACTIONS(4852), + [sym__emphasis_open_underscore] = ACTIONS(4852), + [sym__strikeout_open] = ACTIONS(4852), + [sym__latex_span_start] = ACTIONS(4852), + [sym__single_quote_open] = ACTIONS(4852), + [sym__double_quote_open] = ACTIONS(4852), + [sym__superscript_open] = ACTIONS(4852), + [sym__superscript_close] = ACTIONS(4852), + [sym__subscript_open] = ACTIONS(4852), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4852), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4852), + [sym__cite_author_in_text] = ACTIONS(4852), + [sym__cite_suppress_author] = ACTIONS(4852), + [sym__shortcode_open_escaped] = ACTIONS(4852), + [sym__shortcode_open] = ACTIONS(4852), + [sym__unclosed_span] = ACTIONS(4852), + }, + [STATE(774)] = { + [sym__backslash_escape] = ACTIONS(4566), + [sym_entity_reference] = ACTIONS(4566), + [sym_numeric_character_reference] = ACTIONS(4566), + [anon_sym_LT] = ACTIONS(4568), + [anon_sym_GT] = ACTIONS(4566), + [anon_sym_BANG] = ACTIONS(4566), + [anon_sym_DQUOTE] = ACTIONS(4566), + [anon_sym_POUND] = ACTIONS(4566), + [anon_sym_DOLLAR] = ACTIONS(4566), + [anon_sym_PERCENT] = ACTIONS(4566), + [anon_sym_AMP] = ACTIONS(4568), + [anon_sym_SQUOTE] = ACTIONS(4566), + [anon_sym_STAR] = ACTIONS(4566), + [anon_sym_PLUS] = ACTIONS(4566), + [anon_sym_COMMA] = ACTIONS(4566), + [anon_sym_DASH] = ACTIONS(4568), + [anon_sym_DOT] = ACTIONS(4568), + [anon_sym_SLASH] = ACTIONS(4566), + [anon_sym_COLON] = ACTIONS(4566), + [anon_sym_SEMI] = ACTIONS(4566), + [anon_sym_EQ] = ACTIONS(4566), + [anon_sym_QMARK] = ACTIONS(4566), + [anon_sym_LBRACK] = ACTIONS(4568), + [anon_sym_BSLASH] = ACTIONS(4568), + [anon_sym_CARET] = ACTIONS(4568), + [anon_sym__] = ACTIONS(4566), + [anon_sym_BQUOTE] = ACTIONS(4566), + [anon_sym_LBRACE] = ACTIONS(4566), + [anon_sym_PIPE] = ACTIONS(4566), + [anon_sym_TILDE] = ACTIONS(4566), + [anon_sym_LPAREN] = ACTIONS(4566), + [anon_sym_RPAREN] = ACTIONS(4566), + [sym__newline_token] = ACTIONS(4566), + [aux_sym_insert_token1] = ACTIONS(4566), + [aux_sym_delete_token1] = ACTIONS(4566), + [aux_sym_highlight_token1] = ACTIONS(4566), + [aux_sym_edit_comment_token1] = ACTIONS(4566), + [anon_sym_CARET_LBRACK] = ACTIONS(4566), + [anon_sym_LBRACK_CARET] = ACTIONS(4566), + [sym_uri_autolink] = ACTIONS(4566), + [sym_email_autolink] = ACTIONS(4566), + [sym__whitespace_ge_2] = ACTIONS(4566), + [aux_sym__whitespace_token1] = ACTIONS(4568), + [sym__word_no_digit] = ACTIONS(4566), + [sym__digits] = ACTIONS(4566), + [anon_sym_DASH_DASH] = ACTIONS(4568), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4566), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4566), + [sym__code_span_start] = ACTIONS(4566), + [sym__emphasis_open_star] = ACTIONS(4566), + [sym__emphasis_open_underscore] = ACTIONS(4566), + [sym__strikeout_open] = ACTIONS(4566), + [sym__latex_span_start] = ACTIONS(4566), + [sym__single_quote_open] = ACTIONS(4566), + [sym__double_quote_open] = ACTIONS(4566), + [sym__superscript_open] = ACTIONS(4566), + [sym__superscript_close] = ACTIONS(4566), + [sym__subscript_open] = ACTIONS(4566), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4566), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4566), + [sym__cite_author_in_text] = ACTIONS(4566), + [sym__cite_suppress_author] = ACTIONS(4566), + [sym__shortcode_open_escaped] = ACTIONS(4566), + [sym__shortcode_open] = ACTIONS(4566), + [sym__unclosed_span] = ACTIONS(4566), + }, + [STATE(775)] = { + [sym__backslash_escape] = ACTIONS(4972), + [sym_entity_reference] = ACTIONS(4972), + [sym_numeric_character_reference] = ACTIONS(4972), + [anon_sym_LT] = ACTIONS(4974), + [anon_sym_GT] = ACTIONS(4972), + [anon_sym_BANG] = ACTIONS(4972), + [anon_sym_DQUOTE] = ACTIONS(4972), + [anon_sym_POUND] = ACTIONS(4972), + [anon_sym_DOLLAR] = ACTIONS(4972), + [anon_sym_PERCENT] = ACTIONS(4972), + [anon_sym_AMP] = ACTIONS(4974), + [anon_sym_SQUOTE] = ACTIONS(4972), + [anon_sym_STAR] = ACTIONS(4972), + [anon_sym_PLUS] = ACTIONS(4972), + [anon_sym_COMMA] = ACTIONS(4972), + [anon_sym_DASH] = ACTIONS(4974), + [anon_sym_DOT] = ACTIONS(4974), + [anon_sym_SLASH] = ACTIONS(4972), + [anon_sym_COLON] = ACTIONS(4972), + [anon_sym_SEMI] = ACTIONS(4972), + [anon_sym_EQ] = ACTIONS(4972), + [anon_sym_QMARK] = ACTIONS(4972), + [anon_sym_LBRACK] = ACTIONS(4974), + [anon_sym_BSLASH] = ACTIONS(4974), + [anon_sym_CARET] = ACTIONS(4974), + [anon_sym__] = ACTIONS(4972), + [anon_sym_BQUOTE] = ACTIONS(4972), + [anon_sym_LBRACE] = ACTIONS(4972), + [anon_sym_PIPE] = ACTIONS(4972), + [anon_sym_TILDE] = ACTIONS(4972), + [anon_sym_LPAREN] = ACTIONS(4972), + [anon_sym_RPAREN] = ACTIONS(4972), + [sym__newline_token] = ACTIONS(4972), + [aux_sym_insert_token1] = ACTIONS(4972), + [aux_sym_delete_token1] = ACTIONS(4972), + [aux_sym_highlight_token1] = ACTIONS(4972), + [aux_sym_edit_comment_token1] = ACTIONS(4972), + [anon_sym_CARET_LBRACK] = ACTIONS(4972), + [anon_sym_LBRACK_CARET] = ACTIONS(4972), + [sym_uri_autolink] = ACTIONS(4972), + [sym_email_autolink] = ACTIONS(4972), + [sym__whitespace_ge_2] = ACTIONS(4972), + [aux_sym__whitespace_token1] = ACTIONS(4974), + [sym__word_no_digit] = ACTIONS(4972), + [sym__digits] = ACTIONS(4972), + [anon_sym_DASH_DASH] = ACTIONS(4974), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4972), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4972), + [sym__code_span_start] = ACTIONS(4972), + [sym__emphasis_open_star] = ACTIONS(4972), + [sym__emphasis_open_underscore] = ACTIONS(4972), + [sym__emphasis_close_underscore] = ACTIONS(4972), + [sym__strikeout_open] = ACTIONS(4972), + [sym__latex_span_start] = ACTIONS(4972), + [sym__single_quote_open] = ACTIONS(4972), + [sym__double_quote_open] = ACTIONS(4972), + [sym__superscript_open] = ACTIONS(4972), + [sym__subscript_open] = ACTIONS(4972), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4972), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4972), + [sym__cite_author_in_text] = ACTIONS(4972), + [sym__cite_suppress_author] = ACTIONS(4972), + [sym__shortcode_open_escaped] = ACTIONS(4972), + [sym__shortcode_open] = ACTIONS(4972), + [sym__unclosed_span] = ACTIONS(4972), + }, + [STATE(776)] = { + [sym__backslash_escape] = ACTIONS(4572), + [sym_entity_reference] = ACTIONS(4572), + [sym_numeric_character_reference] = ACTIONS(4572), + [anon_sym_LT] = ACTIONS(4574), + [anon_sym_GT] = ACTIONS(4572), + [anon_sym_BANG] = ACTIONS(4572), + [anon_sym_DQUOTE] = ACTIONS(4572), + [anon_sym_POUND] = ACTIONS(4572), + [anon_sym_DOLLAR] = ACTIONS(4572), + [anon_sym_PERCENT] = ACTIONS(4572), + [anon_sym_AMP] = ACTIONS(4574), + [anon_sym_SQUOTE] = ACTIONS(4572), + [anon_sym_STAR] = ACTIONS(4572), + [anon_sym_PLUS] = ACTIONS(4572), + [anon_sym_COMMA] = ACTIONS(4572), + [anon_sym_DASH] = ACTIONS(4574), + [anon_sym_DOT] = ACTIONS(4574), + [anon_sym_SLASH] = ACTIONS(4572), + [anon_sym_COLON] = ACTIONS(4572), + [anon_sym_SEMI] = ACTIONS(4572), + [anon_sym_EQ] = ACTIONS(4572), + [anon_sym_QMARK] = ACTIONS(4572), + [anon_sym_LBRACK] = ACTIONS(4574), + [anon_sym_BSLASH] = ACTIONS(4574), + [anon_sym_CARET] = ACTIONS(4574), + [anon_sym__] = ACTIONS(4572), + [anon_sym_BQUOTE] = ACTIONS(4572), + [anon_sym_LBRACE] = ACTIONS(4572), + [anon_sym_PIPE] = ACTIONS(4572), + [anon_sym_TILDE] = ACTIONS(4572), + [anon_sym_LPAREN] = ACTIONS(4572), + [anon_sym_RPAREN] = ACTIONS(4572), + [sym__newline_token] = ACTIONS(4572), + [aux_sym_insert_token1] = ACTIONS(4572), + [aux_sym_delete_token1] = ACTIONS(4572), + [aux_sym_highlight_token1] = ACTIONS(4572), + [aux_sym_edit_comment_token1] = ACTIONS(4572), + [anon_sym_CARET_LBRACK] = ACTIONS(4572), + [anon_sym_LBRACK_CARET] = ACTIONS(4572), + [sym_uri_autolink] = ACTIONS(4572), + [sym_email_autolink] = ACTIONS(4572), + [sym__whitespace_ge_2] = ACTIONS(4572), + [aux_sym__whitespace_token1] = ACTIONS(4574), + [sym__word_no_digit] = ACTIONS(4572), + [sym__digits] = ACTIONS(4572), + [anon_sym_DASH_DASH] = ACTIONS(4574), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4572), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4572), + [sym__code_span_start] = ACTIONS(4572), + [sym__emphasis_open_star] = ACTIONS(4572), + [sym__emphasis_open_underscore] = ACTIONS(4572), + [sym__strikeout_open] = ACTIONS(4572), + [sym__latex_span_start] = ACTIONS(4572), + [sym__single_quote_open] = ACTIONS(4572), + [sym__double_quote_open] = ACTIONS(4572), + [sym__superscript_open] = ACTIONS(4572), + [sym__superscript_close] = ACTIONS(4572), + [sym__subscript_open] = ACTIONS(4572), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4572), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4572), + [sym__cite_author_in_text] = ACTIONS(4572), + [sym__cite_suppress_author] = ACTIONS(4572), + [sym__shortcode_open_escaped] = ACTIONS(4572), + [sym__shortcode_open] = ACTIONS(4572), + [sym__unclosed_span] = ACTIONS(4572), + }, + [STATE(777)] = { + [sym__backslash_escape] = ACTIONS(4860), + [sym_entity_reference] = ACTIONS(4860), + [sym_numeric_character_reference] = ACTIONS(4860), + [anon_sym_LT] = ACTIONS(4862), + [anon_sym_GT] = ACTIONS(4860), + [anon_sym_BANG] = ACTIONS(4860), + [anon_sym_DQUOTE] = ACTIONS(4860), + [anon_sym_POUND] = ACTIONS(4860), + [anon_sym_DOLLAR] = ACTIONS(4860), + [anon_sym_PERCENT] = ACTIONS(4860), + [anon_sym_AMP] = ACTIONS(4862), + [anon_sym_SQUOTE] = ACTIONS(4860), + [anon_sym_STAR] = ACTIONS(4860), + [anon_sym_PLUS] = ACTIONS(4860), + [anon_sym_COMMA] = ACTIONS(4860), + [anon_sym_DASH] = ACTIONS(4862), + [anon_sym_DOT] = ACTIONS(4862), + [anon_sym_SLASH] = ACTIONS(4860), + [anon_sym_COLON] = ACTIONS(4860), + [anon_sym_SEMI] = ACTIONS(4860), + [anon_sym_EQ] = ACTIONS(4860), + [anon_sym_QMARK] = ACTIONS(4860), + [anon_sym_LBRACK] = ACTIONS(4862), + [anon_sym_BSLASH] = ACTIONS(4862), + [anon_sym_CARET] = ACTIONS(4862), + [anon_sym__] = ACTIONS(4860), + [anon_sym_BQUOTE] = ACTIONS(4860), + [anon_sym_LBRACE] = ACTIONS(4860), + [anon_sym_PIPE] = ACTIONS(4860), + [anon_sym_TILDE] = ACTIONS(4860), + [anon_sym_LPAREN] = ACTIONS(4860), + [anon_sym_RPAREN] = ACTIONS(4860), + [sym__newline_token] = ACTIONS(4860), + [aux_sym_insert_token1] = ACTIONS(4860), + [aux_sym_delete_token1] = ACTIONS(4860), + [aux_sym_highlight_token1] = ACTIONS(4860), + [aux_sym_edit_comment_token1] = ACTIONS(4860), + [anon_sym_CARET_LBRACK] = ACTIONS(4860), + [anon_sym_LBRACK_CARET] = ACTIONS(4860), + [sym_uri_autolink] = ACTIONS(4860), + [sym_email_autolink] = ACTIONS(4860), + [sym__whitespace_ge_2] = ACTIONS(4860), + [aux_sym__whitespace_token1] = ACTIONS(4862), + [sym__word_no_digit] = ACTIONS(4860), + [sym__digits] = ACTIONS(4860), + [anon_sym_DASH_DASH] = ACTIONS(4862), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4860), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4860), + [sym__code_span_start] = ACTIONS(4860), + [sym__emphasis_open_star] = ACTIONS(4860), + [sym__emphasis_open_underscore] = ACTIONS(4860), + [sym__emphasis_close_underscore] = ACTIONS(4860), + [sym__strikeout_open] = ACTIONS(4860), + [sym__latex_span_start] = ACTIONS(4860), + [sym__single_quote_open] = ACTIONS(4860), + [sym__double_quote_open] = ACTIONS(4860), + [sym__superscript_open] = ACTIONS(4860), + [sym__subscript_open] = ACTIONS(4860), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4860), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4860), + [sym__cite_author_in_text] = ACTIONS(4860), + [sym__cite_suppress_author] = ACTIONS(4860), + [sym__shortcode_open_escaped] = ACTIONS(4860), + [sym__shortcode_open] = ACTIONS(4860), + [sym__unclosed_span] = ACTIONS(4860), + }, + [STATE(778)] = { + [sym__backslash_escape] = ACTIONS(4860), + [sym_entity_reference] = ACTIONS(4860), + [sym_numeric_character_reference] = ACTIONS(4860), + [anon_sym_LT] = ACTIONS(4862), + [anon_sym_GT] = ACTIONS(4860), + [anon_sym_BANG] = ACTIONS(4860), + [anon_sym_DQUOTE] = ACTIONS(4860), + [anon_sym_POUND] = ACTIONS(4860), + [anon_sym_DOLLAR] = ACTIONS(4860), + [anon_sym_PERCENT] = ACTIONS(4860), + [anon_sym_AMP] = ACTIONS(4862), + [anon_sym_SQUOTE] = ACTIONS(4860), + [anon_sym_STAR] = ACTIONS(4860), + [anon_sym_PLUS] = ACTIONS(4860), + [anon_sym_COMMA] = ACTIONS(4860), + [anon_sym_DASH] = ACTIONS(4862), + [anon_sym_DOT] = ACTIONS(4862), + [anon_sym_SLASH] = ACTIONS(4860), + [anon_sym_COLON] = ACTIONS(4860), + [anon_sym_SEMI] = ACTIONS(4860), + [anon_sym_EQ] = ACTIONS(4860), + [anon_sym_QMARK] = ACTIONS(4860), + [anon_sym_LBRACK] = ACTIONS(4862), + [anon_sym_BSLASH] = ACTIONS(4862), + [anon_sym_CARET] = ACTIONS(4862), + [anon_sym__] = ACTIONS(4860), + [anon_sym_BQUOTE] = ACTIONS(4860), + [anon_sym_LBRACE] = ACTIONS(4860), + [anon_sym_PIPE] = ACTIONS(4860), + [anon_sym_TILDE] = ACTIONS(4860), + [anon_sym_LPAREN] = ACTIONS(4860), + [anon_sym_RPAREN] = ACTIONS(4860), + [sym__newline_token] = ACTIONS(4860), + [aux_sym_insert_token1] = ACTIONS(4860), + [aux_sym_delete_token1] = ACTIONS(4860), + [aux_sym_highlight_token1] = ACTIONS(4860), + [aux_sym_edit_comment_token1] = ACTIONS(4860), + [anon_sym_CARET_LBRACK] = ACTIONS(4860), + [anon_sym_LBRACK_CARET] = ACTIONS(4860), + [sym_uri_autolink] = ACTIONS(4860), + [sym_email_autolink] = ACTIONS(4860), + [sym__whitespace_ge_2] = ACTIONS(4860), + [aux_sym__whitespace_token1] = ACTIONS(4862), + [sym__word_no_digit] = ACTIONS(4860), + [sym__digits] = ACTIONS(4860), + [anon_sym_DASH_DASH] = ACTIONS(4862), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4860), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4860), + [sym__code_span_start] = ACTIONS(4860), + [sym__emphasis_open_star] = ACTIONS(4860), + [sym__emphasis_open_underscore] = ACTIONS(4860), + [sym__strikeout_open] = ACTIONS(4860), + [sym__latex_span_start] = ACTIONS(4860), + [sym__single_quote_open] = ACTIONS(4860), + [sym__double_quote_open] = ACTIONS(4860), + [sym__superscript_open] = ACTIONS(4860), + [sym__superscript_close] = ACTIONS(4860), + [sym__subscript_open] = ACTIONS(4860), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4860), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4860), + [sym__cite_author_in_text] = ACTIONS(4860), + [sym__cite_suppress_author] = ACTIONS(4860), + [sym__shortcode_open_escaped] = ACTIONS(4860), + [sym__shortcode_open] = ACTIONS(4860), + [sym__unclosed_span] = ACTIONS(4860), + }, + [STATE(779)] = { + [sym__backslash_escape] = ACTIONS(4864), + [sym_entity_reference] = ACTIONS(4864), + [sym_numeric_character_reference] = ACTIONS(4864), + [anon_sym_LT] = ACTIONS(4866), + [anon_sym_GT] = ACTIONS(4864), + [anon_sym_BANG] = ACTIONS(4864), + [anon_sym_DQUOTE] = ACTIONS(4864), + [anon_sym_POUND] = ACTIONS(4864), + [anon_sym_DOLLAR] = ACTIONS(4864), + [anon_sym_PERCENT] = ACTIONS(4864), + [anon_sym_AMP] = ACTIONS(4866), + [anon_sym_SQUOTE] = ACTIONS(4864), + [anon_sym_STAR] = ACTIONS(4864), + [anon_sym_PLUS] = ACTIONS(4864), + [anon_sym_COMMA] = ACTIONS(4864), + [anon_sym_DASH] = ACTIONS(4866), + [anon_sym_DOT] = ACTIONS(4866), + [anon_sym_SLASH] = ACTIONS(4864), + [anon_sym_COLON] = ACTIONS(4864), + [anon_sym_SEMI] = ACTIONS(4864), + [anon_sym_EQ] = ACTIONS(4864), + [anon_sym_QMARK] = ACTIONS(4864), + [anon_sym_LBRACK] = ACTIONS(4866), + [anon_sym_BSLASH] = ACTIONS(4866), + [anon_sym_CARET] = ACTIONS(4866), + [anon_sym__] = ACTIONS(4864), + [anon_sym_BQUOTE] = ACTIONS(4864), + [anon_sym_LBRACE] = ACTIONS(4864), + [anon_sym_PIPE] = ACTIONS(4864), + [anon_sym_TILDE] = ACTIONS(4864), + [anon_sym_LPAREN] = ACTIONS(4864), + [anon_sym_RPAREN] = ACTIONS(4864), + [sym__newline_token] = ACTIONS(4864), + [aux_sym_insert_token1] = ACTIONS(4864), + [aux_sym_delete_token1] = ACTIONS(4864), + [aux_sym_highlight_token1] = ACTIONS(4864), + [aux_sym_edit_comment_token1] = ACTIONS(4864), + [anon_sym_CARET_LBRACK] = ACTIONS(4864), + [anon_sym_LBRACK_CARET] = ACTIONS(4864), + [sym_uri_autolink] = ACTIONS(4864), + [sym_email_autolink] = ACTIONS(4864), + [sym__whitespace_ge_2] = ACTIONS(4864), + [aux_sym__whitespace_token1] = ACTIONS(4866), + [sym__word_no_digit] = ACTIONS(4864), + [sym__digits] = ACTIONS(4864), + [anon_sym_DASH_DASH] = ACTIONS(4866), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4864), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4864), + [sym__code_span_start] = ACTIONS(4864), + [sym__emphasis_open_star] = ACTIONS(4864), + [sym__emphasis_open_underscore] = ACTIONS(4864), + [sym__strikeout_open] = ACTIONS(4864), + [sym__latex_span_start] = ACTIONS(4864), + [sym__single_quote_open] = ACTIONS(4864), + [sym__double_quote_open] = ACTIONS(4864), + [sym__superscript_open] = ACTIONS(4864), + [sym__superscript_close] = ACTIONS(4864), + [sym__subscript_open] = ACTIONS(4864), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4864), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4864), + [sym__cite_author_in_text] = ACTIONS(4864), + [sym__cite_suppress_author] = ACTIONS(4864), + [sym__shortcode_open_escaped] = ACTIONS(4864), + [sym__shortcode_open] = ACTIONS(4864), + [sym__unclosed_span] = ACTIONS(4864), + }, + [STATE(780)] = { + [sym__backslash_escape] = ACTIONS(4868), + [sym_entity_reference] = ACTIONS(4868), + [sym_numeric_character_reference] = ACTIONS(4868), + [anon_sym_LT] = ACTIONS(4870), + [anon_sym_GT] = ACTIONS(4868), + [anon_sym_BANG] = ACTIONS(4868), + [anon_sym_DQUOTE] = ACTIONS(4868), + [anon_sym_POUND] = ACTIONS(4868), + [anon_sym_DOLLAR] = ACTIONS(4868), + [anon_sym_PERCENT] = ACTIONS(4868), + [anon_sym_AMP] = ACTIONS(4870), + [anon_sym_SQUOTE] = ACTIONS(4868), + [anon_sym_STAR] = ACTIONS(4868), + [anon_sym_PLUS] = ACTIONS(4868), + [anon_sym_COMMA] = ACTIONS(4868), + [anon_sym_DASH] = ACTIONS(4870), + [anon_sym_DOT] = ACTIONS(4870), + [anon_sym_SLASH] = ACTIONS(4868), + [anon_sym_COLON] = ACTIONS(4868), + [anon_sym_SEMI] = ACTIONS(4868), + [anon_sym_EQ] = ACTIONS(4868), + [anon_sym_QMARK] = ACTIONS(4868), + [anon_sym_LBRACK] = ACTIONS(4870), + [anon_sym_BSLASH] = ACTIONS(4870), + [anon_sym_CARET] = ACTIONS(4870), + [anon_sym__] = ACTIONS(4868), + [anon_sym_BQUOTE] = ACTIONS(4868), + [anon_sym_LBRACE] = ACTIONS(4868), + [anon_sym_PIPE] = ACTIONS(4868), + [anon_sym_TILDE] = ACTIONS(4868), + [anon_sym_LPAREN] = ACTIONS(4868), + [anon_sym_RPAREN] = ACTIONS(4868), + [sym__newline_token] = ACTIONS(4868), + [aux_sym_insert_token1] = ACTIONS(4868), + [aux_sym_delete_token1] = ACTIONS(4868), + [aux_sym_highlight_token1] = ACTIONS(4868), + [aux_sym_edit_comment_token1] = ACTIONS(4868), + [anon_sym_CARET_LBRACK] = ACTIONS(4868), + [anon_sym_LBRACK_CARET] = ACTIONS(4868), + [sym_uri_autolink] = ACTIONS(4868), + [sym_email_autolink] = ACTIONS(4868), + [sym__whitespace_ge_2] = ACTIONS(4868), + [aux_sym__whitespace_token1] = ACTIONS(4870), + [sym__word_no_digit] = ACTIONS(4868), + [sym__digits] = ACTIONS(4868), + [anon_sym_DASH_DASH] = ACTIONS(4870), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4868), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4868), + [sym__code_span_start] = ACTIONS(4868), + [sym__emphasis_open_star] = ACTIONS(4868), + [sym__emphasis_open_underscore] = ACTIONS(4868), + [sym__strikeout_open] = ACTIONS(4868), + [sym__latex_span_start] = ACTIONS(4868), + [sym__single_quote_open] = ACTIONS(4868), + [sym__double_quote_open] = ACTIONS(4868), + [sym__superscript_open] = ACTIONS(4868), + [sym__superscript_close] = ACTIONS(4868), + [sym__subscript_open] = ACTIONS(4868), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4868), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4868), + [sym__cite_author_in_text] = ACTIONS(4868), + [sym__cite_suppress_author] = ACTIONS(4868), + [sym__shortcode_open_escaped] = ACTIONS(4868), + [sym__shortcode_open] = ACTIONS(4868), + [sym__unclosed_span] = ACTIONS(4868), + }, + [STATE(781)] = { + [sym__backslash_escape] = ACTIONS(4872), + [sym_entity_reference] = ACTIONS(4872), + [sym_numeric_character_reference] = ACTIONS(4872), + [anon_sym_LT] = ACTIONS(4874), + [anon_sym_GT] = ACTIONS(4872), + [anon_sym_BANG] = ACTIONS(4872), + [anon_sym_DQUOTE] = ACTIONS(4872), + [anon_sym_POUND] = ACTIONS(4872), + [anon_sym_DOLLAR] = ACTIONS(4872), + [anon_sym_PERCENT] = ACTIONS(4872), + [anon_sym_AMP] = ACTIONS(4874), + [anon_sym_SQUOTE] = ACTIONS(4872), + [anon_sym_STAR] = ACTIONS(4872), + [anon_sym_PLUS] = ACTIONS(4872), + [anon_sym_COMMA] = ACTIONS(4872), + [anon_sym_DASH] = ACTIONS(4874), + [anon_sym_DOT] = ACTIONS(4874), + [anon_sym_SLASH] = ACTIONS(4872), + [anon_sym_COLON] = ACTIONS(4872), + [anon_sym_SEMI] = ACTIONS(4872), + [anon_sym_EQ] = ACTIONS(4872), + [anon_sym_QMARK] = ACTIONS(4872), + [anon_sym_LBRACK] = ACTIONS(4874), + [anon_sym_BSLASH] = ACTIONS(4874), + [anon_sym_CARET] = ACTIONS(4874), + [anon_sym__] = ACTIONS(4872), + [anon_sym_BQUOTE] = ACTIONS(4872), + [anon_sym_LBRACE] = ACTIONS(4872), + [anon_sym_PIPE] = ACTIONS(4872), + [anon_sym_TILDE] = ACTIONS(4872), + [anon_sym_LPAREN] = ACTIONS(4872), + [anon_sym_RPAREN] = ACTIONS(4872), + [sym__newline_token] = ACTIONS(4872), + [aux_sym_insert_token1] = ACTIONS(4872), + [aux_sym_delete_token1] = ACTIONS(4872), + [aux_sym_highlight_token1] = ACTIONS(4872), + [aux_sym_edit_comment_token1] = ACTIONS(4872), + [anon_sym_CARET_LBRACK] = ACTIONS(4872), + [anon_sym_LBRACK_CARET] = ACTIONS(4872), + [sym_uri_autolink] = ACTIONS(4872), + [sym_email_autolink] = ACTIONS(4872), + [sym__whitespace_ge_2] = ACTIONS(4872), + [aux_sym__whitespace_token1] = ACTIONS(4874), + [sym__word_no_digit] = ACTIONS(4872), + [sym__digits] = ACTIONS(4872), + [anon_sym_DASH_DASH] = ACTIONS(4874), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4872), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4872), + [sym__code_span_start] = ACTIONS(4872), + [sym__emphasis_open_star] = ACTIONS(4872), + [sym__emphasis_open_underscore] = ACTIONS(4872), + [sym__strikeout_open] = ACTIONS(4872), + [sym__latex_span_start] = ACTIONS(4872), + [sym__single_quote_open] = ACTIONS(4872), + [sym__double_quote_open] = ACTIONS(4872), + [sym__superscript_open] = ACTIONS(4872), + [sym__superscript_close] = ACTIONS(4872), + [sym__subscript_open] = ACTIONS(4872), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4872), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4872), + [sym__cite_author_in_text] = ACTIONS(4872), + [sym__cite_suppress_author] = ACTIONS(4872), + [sym__shortcode_open_escaped] = ACTIONS(4872), + [sym__shortcode_open] = ACTIONS(4872), + [sym__unclosed_span] = ACTIONS(4872), + }, + [STATE(782)] = { + [sym__backslash_escape] = ACTIONS(4876), + [sym_entity_reference] = ACTIONS(4876), + [sym_numeric_character_reference] = ACTIONS(4876), + [anon_sym_LT] = ACTIONS(4878), + [anon_sym_GT] = ACTIONS(4876), + [anon_sym_BANG] = ACTIONS(4876), + [anon_sym_DQUOTE] = ACTIONS(4876), + [anon_sym_POUND] = ACTIONS(4876), + [anon_sym_DOLLAR] = ACTIONS(4876), + [anon_sym_PERCENT] = ACTIONS(4876), + [anon_sym_AMP] = ACTIONS(4878), + [anon_sym_SQUOTE] = ACTIONS(4876), + [anon_sym_STAR] = ACTIONS(4876), + [anon_sym_PLUS] = ACTIONS(4876), + [anon_sym_COMMA] = ACTIONS(4876), + [anon_sym_DASH] = ACTIONS(4878), + [anon_sym_DOT] = ACTIONS(4878), + [anon_sym_SLASH] = ACTIONS(4876), + [anon_sym_COLON] = ACTIONS(4876), + [anon_sym_SEMI] = ACTIONS(4876), + [anon_sym_EQ] = ACTIONS(4876), + [anon_sym_QMARK] = ACTIONS(4876), + [anon_sym_LBRACK] = ACTIONS(4878), + [anon_sym_BSLASH] = ACTIONS(4878), + [anon_sym_CARET] = ACTIONS(4878), + [anon_sym__] = ACTIONS(4876), + [anon_sym_BQUOTE] = ACTIONS(4876), + [anon_sym_LBRACE] = ACTIONS(4876), + [anon_sym_PIPE] = ACTIONS(4876), + [anon_sym_TILDE] = ACTIONS(4876), + [anon_sym_LPAREN] = ACTIONS(4876), + [anon_sym_RPAREN] = ACTIONS(4876), + [sym__newline_token] = ACTIONS(4876), + [aux_sym_insert_token1] = ACTIONS(4876), + [aux_sym_delete_token1] = ACTIONS(4876), + [aux_sym_highlight_token1] = ACTIONS(4876), + [aux_sym_edit_comment_token1] = ACTIONS(4876), + [anon_sym_CARET_LBRACK] = ACTIONS(4876), + [anon_sym_LBRACK_CARET] = ACTIONS(4876), + [sym_uri_autolink] = ACTIONS(4876), + [sym_email_autolink] = ACTIONS(4876), + [sym__whitespace_ge_2] = ACTIONS(4876), + [aux_sym__whitespace_token1] = ACTIONS(4878), + [sym__word_no_digit] = ACTIONS(4876), + [sym__digits] = ACTIONS(4876), + [anon_sym_DASH_DASH] = ACTIONS(4878), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4876), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4876), + [sym__code_span_start] = ACTIONS(4876), + [sym__emphasis_open_star] = ACTIONS(4876), + [sym__emphasis_open_underscore] = ACTIONS(4876), + [sym__strikeout_open] = ACTIONS(4876), + [sym__latex_span_start] = ACTIONS(4876), + [sym__single_quote_open] = ACTIONS(4876), + [sym__double_quote_open] = ACTIONS(4876), + [sym__superscript_open] = ACTIONS(4876), + [sym__superscript_close] = ACTIONS(4876), + [sym__subscript_open] = ACTIONS(4876), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4876), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4876), + [sym__cite_author_in_text] = ACTIONS(4876), + [sym__cite_suppress_author] = ACTIONS(4876), + [sym__shortcode_open_escaped] = ACTIONS(4876), + [sym__shortcode_open] = ACTIONS(4876), + [sym__unclosed_span] = ACTIONS(4876), + }, + [STATE(783)] = { + [sym__backslash_escape] = ACTIONS(4588), + [sym_entity_reference] = ACTIONS(4588), + [sym_numeric_character_reference] = ACTIONS(4588), + [anon_sym_LT] = ACTIONS(4590), + [anon_sym_GT] = ACTIONS(4588), + [anon_sym_BANG] = ACTIONS(4588), + [anon_sym_DQUOTE] = ACTIONS(4588), + [anon_sym_POUND] = ACTIONS(4588), + [anon_sym_DOLLAR] = ACTIONS(4588), + [anon_sym_PERCENT] = ACTIONS(4588), + [anon_sym_AMP] = ACTIONS(4590), + [anon_sym_SQUOTE] = ACTIONS(4588), + [anon_sym_STAR] = ACTIONS(4588), + [anon_sym_PLUS] = ACTIONS(4588), + [anon_sym_COMMA] = ACTIONS(4588), + [anon_sym_DASH] = ACTIONS(4590), + [anon_sym_DOT] = ACTIONS(4590), + [anon_sym_SLASH] = ACTIONS(4588), + [anon_sym_COLON] = ACTIONS(4588), + [anon_sym_SEMI] = ACTIONS(4588), + [anon_sym_EQ] = ACTIONS(4588), + [anon_sym_QMARK] = ACTIONS(4588), + [anon_sym_LBRACK] = ACTIONS(4590), + [anon_sym_BSLASH] = ACTIONS(4590), + [anon_sym_CARET] = ACTIONS(4590), + [anon_sym__] = ACTIONS(4588), + [anon_sym_BQUOTE] = ACTIONS(4588), + [anon_sym_LBRACE] = ACTIONS(4588), + [anon_sym_PIPE] = ACTIONS(4588), + [anon_sym_TILDE] = ACTIONS(4588), + [anon_sym_LPAREN] = ACTIONS(4588), + [anon_sym_RPAREN] = ACTIONS(4588), + [sym__newline_token] = ACTIONS(4588), + [aux_sym_insert_token1] = ACTIONS(4588), + [aux_sym_delete_token1] = ACTIONS(4588), + [aux_sym_highlight_token1] = ACTIONS(4588), + [aux_sym_edit_comment_token1] = ACTIONS(4588), + [anon_sym_CARET_LBRACK] = ACTIONS(4588), + [anon_sym_LBRACK_CARET] = ACTIONS(4588), + [sym_uri_autolink] = ACTIONS(4588), + [sym_email_autolink] = ACTIONS(4588), + [sym__whitespace_ge_2] = ACTIONS(4588), + [aux_sym__whitespace_token1] = ACTIONS(4590), + [sym__word_no_digit] = ACTIONS(4588), + [sym__digits] = ACTIONS(4588), + [anon_sym_DASH_DASH] = ACTIONS(4590), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4588), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4588), + [sym__code_span_start] = ACTIONS(4588), + [sym__emphasis_open_star] = ACTIONS(4588), + [sym__emphasis_open_underscore] = ACTIONS(4588), + [sym__strikeout_open] = ACTIONS(4588), + [sym__latex_span_start] = ACTIONS(4588), + [sym__single_quote_open] = ACTIONS(4588), + [sym__double_quote_open] = ACTIONS(4588), + [sym__superscript_open] = ACTIONS(4588), + [sym__superscript_close] = ACTIONS(4588), + [sym__subscript_open] = ACTIONS(4588), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4588), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4588), + [sym__cite_author_in_text] = ACTIONS(4588), + [sym__cite_suppress_author] = ACTIONS(4588), + [sym__shortcode_open_escaped] = ACTIONS(4588), + [sym__shortcode_open] = ACTIONS(4588), + [sym__unclosed_span] = ACTIONS(4588), + }, + [STATE(784)] = { + [sym__backslash_escape] = ACTIONS(4820), + [sym_entity_reference] = ACTIONS(4820), + [sym_numeric_character_reference] = ACTIONS(4820), + [anon_sym_LT] = ACTIONS(4822), + [anon_sym_GT] = ACTIONS(4820), + [anon_sym_BANG] = ACTIONS(4820), + [anon_sym_DQUOTE] = ACTIONS(4820), + [anon_sym_POUND] = ACTIONS(4820), + [anon_sym_DOLLAR] = ACTIONS(4820), + [anon_sym_PERCENT] = ACTIONS(4820), + [anon_sym_AMP] = ACTIONS(4822), + [anon_sym_SQUOTE] = ACTIONS(4820), + [anon_sym_STAR] = ACTIONS(4820), + [anon_sym_PLUS] = ACTIONS(4820), + [anon_sym_COMMA] = ACTIONS(4820), + [anon_sym_DASH] = ACTIONS(4822), + [anon_sym_DOT] = ACTIONS(4822), + [anon_sym_SLASH] = ACTIONS(4820), + [anon_sym_COLON] = ACTIONS(4820), + [anon_sym_SEMI] = ACTIONS(4820), + [anon_sym_EQ] = ACTIONS(4820), + [anon_sym_QMARK] = ACTIONS(4820), + [anon_sym_LBRACK] = ACTIONS(4822), + [anon_sym_BSLASH] = ACTIONS(4822), + [anon_sym_CARET] = ACTIONS(4822), + [anon_sym__] = ACTIONS(4820), + [anon_sym_BQUOTE] = ACTIONS(4820), + [anon_sym_LBRACE] = ACTIONS(4820), + [anon_sym_PIPE] = ACTIONS(4820), + [anon_sym_TILDE] = ACTIONS(4820), + [anon_sym_LPAREN] = ACTIONS(4820), + [anon_sym_RPAREN] = ACTIONS(4820), + [sym__newline_token] = ACTIONS(4820), + [aux_sym_insert_token1] = ACTIONS(4820), + [aux_sym_delete_token1] = ACTIONS(4820), + [aux_sym_highlight_token1] = ACTIONS(4820), + [aux_sym_edit_comment_token1] = ACTIONS(4820), + [anon_sym_CARET_LBRACK] = ACTIONS(4820), + [anon_sym_LBRACK_CARET] = ACTIONS(4820), + [sym_uri_autolink] = ACTIONS(4820), + [sym_email_autolink] = ACTIONS(4820), + [sym__whitespace_ge_2] = ACTIONS(4820), + [aux_sym__whitespace_token1] = ACTIONS(4822), + [sym__word_no_digit] = ACTIONS(4820), + [sym__digits] = ACTIONS(4820), + [anon_sym_DASH_DASH] = ACTIONS(4822), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4820), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4820), + [sym__code_span_start] = ACTIONS(4820), + [sym__emphasis_open_star] = ACTIONS(4820), + [sym__emphasis_open_underscore] = ACTIONS(4820), + [sym__strikeout_open] = ACTIONS(4820), + [sym__strikeout_close] = ACTIONS(4820), + [sym__latex_span_start] = ACTIONS(4820), + [sym__single_quote_open] = ACTIONS(4820), + [sym__double_quote_open] = ACTIONS(4820), + [sym__superscript_open] = ACTIONS(4820), + [sym__subscript_open] = ACTIONS(4820), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4820), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4820), + [sym__cite_author_in_text] = ACTIONS(4820), + [sym__cite_suppress_author] = ACTIONS(4820), + [sym__shortcode_open_escaped] = ACTIONS(4820), + [sym__shortcode_open] = ACTIONS(4820), + [sym__unclosed_span] = ACTIONS(4820), + }, + [STATE(785)] = { + [sym__backslash_escape] = ACTIONS(4540), + [sym_entity_reference] = ACTIONS(4540), + [sym_numeric_character_reference] = ACTIONS(4540), + [anon_sym_LT] = ACTIONS(4542), + [anon_sym_GT] = ACTIONS(4540), + [anon_sym_BANG] = ACTIONS(4540), + [anon_sym_DQUOTE] = ACTIONS(4540), + [anon_sym_POUND] = ACTIONS(4540), + [anon_sym_DOLLAR] = ACTIONS(4540), + [anon_sym_PERCENT] = ACTIONS(4540), + [anon_sym_AMP] = ACTIONS(4542), + [anon_sym_SQUOTE] = ACTIONS(4540), + [anon_sym_STAR] = ACTIONS(4540), + [anon_sym_PLUS] = ACTIONS(4540), + [anon_sym_COMMA] = ACTIONS(4540), + [anon_sym_DASH] = ACTIONS(4542), + [anon_sym_DOT] = ACTIONS(4542), + [anon_sym_SLASH] = ACTIONS(4540), + [anon_sym_COLON] = ACTIONS(4540), + [anon_sym_SEMI] = ACTIONS(4540), + [anon_sym_EQ] = ACTIONS(4540), + [anon_sym_QMARK] = ACTIONS(4540), + [anon_sym_LBRACK] = ACTIONS(4542), + [anon_sym_BSLASH] = ACTIONS(4542), + [anon_sym_CARET] = ACTIONS(4542), + [anon_sym__] = ACTIONS(4540), + [anon_sym_BQUOTE] = ACTIONS(4540), + [anon_sym_LBRACE] = ACTIONS(4540), + [anon_sym_PIPE] = ACTIONS(4540), + [anon_sym_TILDE] = ACTIONS(4540), + [anon_sym_LPAREN] = ACTIONS(4540), + [anon_sym_RPAREN] = ACTIONS(4540), + [sym__newline_token] = ACTIONS(4540), + [aux_sym_insert_token1] = ACTIONS(4540), + [aux_sym_delete_token1] = ACTIONS(4540), + [aux_sym_highlight_token1] = ACTIONS(4540), + [aux_sym_edit_comment_token1] = ACTIONS(4540), + [anon_sym_CARET_LBRACK] = ACTIONS(4540), + [anon_sym_LBRACK_CARET] = ACTIONS(4540), + [sym_uri_autolink] = ACTIONS(4540), + [sym_email_autolink] = ACTIONS(4540), + [sym__whitespace_ge_2] = ACTIONS(4540), + [aux_sym__whitespace_token1] = ACTIONS(4542), + [sym__word_no_digit] = ACTIONS(4540), + [sym__digits] = ACTIONS(4540), + [anon_sym_DASH_DASH] = ACTIONS(4542), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4540), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4540), + [sym__code_span_start] = ACTIONS(4540), + [sym__emphasis_open_star] = ACTIONS(4540), + [sym__emphasis_open_underscore] = ACTIONS(4540), + [sym__strikeout_open] = ACTIONS(4540), + [sym__latex_span_start] = ACTIONS(4540), + [sym__single_quote_open] = ACTIONS(4540), + [sym__double_quote_open] = ACTIONS(4540), + [sym__superscript_open] = ACTIONS(4540), + [sym__superscript_close] = ACTIONS(4540), + [sym__subscript_open] = ACTIONS(4540), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4540), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4540), + [sym__cite_author_in_text] = ACTIONS(4540), + [sym__cite_suppress_author] = ACTIONS(4540), + [sym__shortcode_open_escaped] = ACTIONS(4540), + [sym__shortcode_open] = ACTIONS(4540), + [sym__unclosed_span] = ACTIONS(4540), + }, + [STATE(786)] = { + [sym__backslash_escape] = ACTIONS(4824), + [sym_entity_reference] = ACTIONS(4824), + [sym_numeric_character_reference] = ACTIONS(4824), + [anon_sym_LT] = ACTIONS(4826), + [anon_sym_GT] = ACTIONS(4824), + [anon_sym_BANG] = ACTIONS(4824), + [anon_sym_DQUOTE] = ACTIONS(4824), + [anon_sym_POUND] = ACTIONS(4824), + [anon_sym_DOLLAR] = ACTIONS(4824), + [anon_sym_PERCENT] = ACTIONS(4824), + [anon_sym_AMP] = ACTIONS(4826), + [anon_sym_SQUOTE] = ACTIONS(4824), + [anon_sym_STAR] = ACTIONS(4824), + [anon_sym_PLUS] = ACTIONS(4824), + [anon_sym_COMMA] = ACTIONS(4824), + [anon_sym_DASH] = ACTIONS(4826), + [anon_sym_DOT] = ACTIONS(4826), + [anon_sym_SLASH] = ACTIONS(4824), + [anon_sym_COLON] = ACTIONS(4824), + [anon_sym_SEMI] = ACTIONS(4824), + [anon_sym_EQ] = ACTIONS(4824), + [anon_sym_QMARK] = ACTIONS(4824), + [anon_sym_LBRACK] = ACTIONS(4826), + [anon_sym_BSLASH] = ACTIONS(4826), + [anon_sym_CARET] = ACTIONS(4826), + [anon_sym__] = ACTIONS(4824), + [anon_sym_BQUOTE] = ACTIONS(4824), + [anon_sym_LBRACE] = ACTIONS(4824), + [anon_sym_PIPE] = ACTIONS(4824), + [anon_sym_TILDE] = ACTIONS(4824), + [anon_sym_LPAREN] = ACTIONS(4824), + [anon_sym_RPAREN] = ACTIONS(4824), + [sym__newline_token] = ACTIONS(4824), + [aux_sym_insert_token1] = ACTIONS(4824), + [aux_sym_delete_token1] = ACTIONS(4824), + [aux_sym_highlight_token1] = ACTIONS(4824), + [aux_sym_edit_comment_token1] = ACTIONS(4824), + [anon_sym_CARET_LBRACK] = ACTIONS(4824), + [anon_sym_LBRACK_CARET] = ACTIONS(4824), + [sym_uri_autolink] = ACTIONS(4824), + [sym_email_autolink] = ACTIONS(4824), + [sym__whitespace_ge_2] = ACTIONS(4824), + [aux_sym__whitespace_token1] = ACTIONS(4826), + [sym__word_no_digit] = ACTIONS(4824), + [sym__digits] = ACTIONS(4824), + [anon_sym_DASH_DASH] = ACTIONS(4826), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4824), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4824), + [sym__code_span_start] = ACTIONS(4824), + [sym__emphasis_open_star] = ACTIONS(4824), + [sym__emphasis_open_underscore] = ACTIONS(4824), + [sym__strikeout_open] = ACTIONS(4824), + [sym__strikeout_close] = ACTIONS(4824), + [sym__latex_span_start] = ACTIONS(4824), + [sym__single_quote_open] = ACTIONS(4824), + [sym__double_quote_open] = ACTIONS(4824), + [sym__superscript_open] = ACTIONS(4824), + [sym__subscript_open] = ACTIONS(4824), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4824), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4824), + [sym__cite_author_in_text] = ACTIONS(4824), + [sym__cite_suppress_author] = ACTIONS(4824), + [sym__shortcode_open_escaped] = ACTIONS(4824), + [sym__shortcode_open] = ACTIONS(4824), + [sym__unclosed_span] = ACTIONS(4824), + }, + [STATE(787)] = { + [sym__backslash_escape] = ACTIONS(4884), + [sym_entity_reference] = ACTIONS(4884), + [sym_numeric_character_reference] = ACTIONS(4884), + [anon_sym_LT] = ACTIONS(4886), + [anon_sym_GT] = ACTIONS(4884), + [anon_sym_BANG] = ACTIONS(4884), + [anon_sym_DQUOTE] = ACTIONS(4884), + [anon_sym_POUND] = ACTIONS(4884), + [anon_sym_DOLLAR] = ACTIONS(4884), + [anon_sym_PERCENT] = ACTIONS(4884), + [anon_sym_AMP] = ACTIONS(4886), + [anon_sym_SQUOTE] = ACTIONS(4884), + [anon_sym_STAR] = ACTIONS(4884), + [anon_sym_PLUS] = ACTIONS(4884), + [anon_sym_COMMA] = ACTIONS(4884), + [anon_sym_DASH] = ACTIONS(4886), + [anon_sym_DOT] = ACTIONS(4886), + [anon_sym_SLASH] = ACTIONS(4884), + [anon_sym_COLON] = ACTIONS(4884), + [anon_sym_SEMI] = ACTIONS(4884), + [anon_sym_EQ] = ACTIONS(4884), + [anon_sym_QMARK] = ACTIONS(4884), + [anon_sym_LBRACK] = ACTIONS(4886), + [anon_sym_BSLASH] = ACTIONS(4886), + [anon_sym_CARET] = ACTIONS(4886), + [anon_sym__] = ACTIONS(4884), + [anon_sym_BQUOTE] = ACTIONS(4884), + [anon_sym_LBRACE] = ACTIONS(4884), + [anon_sym_PIPE] = ACTIONS(4884), + [anon_sym_TILDE] = ACTIONS(4884), + [anon_sym_LPAREN] = ACTIONS(4884), + [anon_sym_RPAREN] = ACTIONS(4884), + [sym__newline_token] = ACTIONS(4884), + [aux_sym_insert_token1] = ACTIONS(4884), + [aux_sym_delete_token1] = ACTIONS(4884), + [aux_sym_highlight_token1] = ACTIONS(4884), + [aux_sym_edit_comment_token1] = ACTIONS(4884), + [anon_sym_CARET_LBRACK] = ACTIONS(4884), + [anon_sym_LBRACK_CARET] = ACTIONS(4884), + [sym_uri_autolink] = ACTIONS(4884), + [sym_email_autolink] = ACTIONS(4884), + [sym__whitespace_ge_2] = ACTIONS(4884), + [aux_sym__whitespace_token1] = ACTIONS(4886), + [sym__word_no_digit] = ACTIONS(4884), + [sym__digits] = ACTIONS(4884), + [anon_sym_DASH_DASH] = ACTIONS(4886), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4884), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4884), + [sym__code_span_start] = ACTIONS(4884), + [sym__emphasis_open_star] = ACTIONS(4884), + [sym__emphasis_open_underscore] = ACTIONS(4884), + [sym__strikeout_open] = ACTIONS(4884), + [sym__latex_span_start] = ACTIONS(4884), + [sym__single_quote_open] = ACTIONS(4884), + [sym__double_quote_open] = ACTIONS(4884), + [sym__superscript_open] = ACTIONS(4884), + [sym__superscript_close] = ACTIONS(4884), + [sym__subscript_open] = ACTIONS(4884), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4884), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4884), + [sym__cite_author_in_text] = ACTIONS(4884), + [sym__cite_suppress_author] = ACTIONS(4884), + [sym__shortcode_open_escaped] = ACTIONS(4884), + [sym__shortcode_open] = ACTIONS(4884), + [sym__unclosed_span] = ACTIONS(4884), + }, + [STATE(788)] = { + [sym__backslash_escape] = ACTIONS(4888), + [sym_entity_reference] = ACTIONS(4888), + [sym_numeric_character_reference] = ACTIONS(4888), + [anon_sym_LT] = ACTIONS(4890), + [anon_sym_GT] = ACTIONS(4888), + [anon_sym_BANG] = ACTIONS(4888), + [anon_sym_DQUOTE] = ACTIONS(4888), + [anon_sym_POUND] = ACTIONS(4888), + [anon_sym_DOLLAR] = ACTIONS(4888), + [anon_sym_PERCENT] = ACTIONS(4888), + [anon_sym_AMP] = ACTIONS(4890), + [anon_sym_SQUOTE] = ACTIONS(4888), + [anon_sym_STAR] = ACTIONS(4888), + [anon_sym_PLUS] = ACTIONS(4888), + [anon_sym_COMMA] = ACTIONS(4888), + [anon_sym_DASH] = ACTIONS(4890), + [anon_sym_DOT] = ACTIONS(4890), + [anon_sym_SLASH] = ACTIONS(4888), + [anon_sym_COLON] = ACTIONS(4888), + [anon_sym_SEMI] = ACTIONS(4888), + [anon_sym_EQ] = ACTIONS(4888), + [anon_sym_QMARK] = ACTIONS(4888), + [anon_sym_LBRACK] = ACTIONS(4890), + [anon_sym_BSLASH] = ACTIONS(4890), + [anon_sym_CARET] = ACTIONS(4890), + [anon_sym__] = ACTIONS(4888), + [anon_sym_BQUOTE] = ACTIONS(4888), + [anon_sym_LBRACE] = ACTIONS(4888), + [anon_sym_PIPE] = ACTIONS(4888), + [anon_sym_TILDE] = ACTIONS(4888), + [anon_sym_LPAREN] = ACTIONS(4888), + [anon_sym_RPAREN] = ACTIONS(4888), + [sym__newline_token] = ACTIONS(4888), + [aux_sym_insert_token1] = ACTIONS(4888), + [aux_sym_delete_token1] = ACTIONS(4888), + [aux_sym_highlight_token1] = ACTIONS(4888), + [aux_sym_edit_comment_token1] = ACTIONS(4888), + [anon_sym_CARET_LBRACK] = ACTIONS(4888), + [anon_sym_LBRACK_CARET] = ACTIONS(4888), + [sym_uri_autolink] = ACTIONS(4888), + [sym_email_autolink] = ACTIONS(4888), + [sym__whitespace_ge_2] = ACTIONS(4888), + [aux_sym__whitespace_token1] = ACTIONS(4890), + [sym__word_no_digit] = ACTIONS(4888), + [sym__digits] = ACTIONS(4888), + [anon_sym_DASH_DASH] = ACTIONS(4890), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4888), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4888), + [sym__code_span_start] = ACTIONS(4888), + [sym__emphasis_open_star] = ACTIONS(4888), + [sym__emphasis_open_underscore] = ACTIONS(4888), + [sym__strikeout_open] = ACTIONS(4888), + [sym__latex_span_start] = ACTIONS(4888), + [sym__single_quote_open] = ACTIONS(4888), + [sym__double_quote_open] = ACTIONS(4888), + [sym__superscript_open] = ACTIONS(4888), + [sym__superscript_close] = ACTIONS(4888), + [sym__subscript_open] = ACTIONS(4888), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4888), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4888), + [sym__cite_author_in_text] = ACTIONS(4888), + [sym__cite_suppress_author] = ACTIONS(4888), + [sym__shortcode_open_escaped] = ACTIONS(4888), + [sym__shortcode_open] = ACTIONS(4888), + [sym__unclosed_span] = ACTIONS(4888), + }, + [STATE(789)] = { + [sym__backslash_escape] = ACTIONS(4892), + [sym_entity_reference] = ACTIONS(4892), + [sym_numeric_character_reference] = ACTIONS(4892), + [anon_sym_LT] = ACTIONS(4894), + [anon_sym_GT] = ACTIONS(4892), + [anon_sym_BANG] = ACTIONS(4892), + [anon_sym_DQUOTE] = ACTIONS(4892), + [anon_sym_POUND] = ACTIONS(4892), + [anon_sym_DOLLAR] = ACTIONS(4892), + [anon_sym_PERCENT] = ACTIONS(4892), + [anon_sym_AMP] = ACTIONS(4894), + [anon_sym_SQUOTE] = ACTIONS(4892), + [anon_sym_STAR] = ACTIONS(4892), + [anon_sym_PLUS] = ACTIONS(4892), + [anon_sym_COMMA] = ACTIONS(4892), + [anon_sym_DASH] = ACTIONS(4894), + [anon_sym_DOT] = ACTIONS(4894), + [anon_sym_SLASH] = ACTIONS(4892), + [anon_sym_COLON] = ACTIONS(4892), + [anon_sym_SEMI] = ACTIONS(4892), + [anon_sym_EQ] = ACTIONS(4892), + [anon_sym_QMARK] = ACTIONS(4892), + [anon_sym_LBRACK] = ACTIONS(4894), + [anon_sym_BSLASH] = ACTIONS(4894), + [anon_sym_CARET] = ACTIONS(4894), + [anon_sym__] = ACTIONS(4892), + [anon_sym_BQUOTE] = ACTIONS(4892), + [anon_sym_LBRACE] = ACTIONS(4892), + [anon_sym_PIPE] = ACTIONS(4892), + [anon_sym_TILDE] = ACTIONS(4892), + [anon_sym_LPAREN] = ACTIONS(4892), + [anon_sym_RPAREN] = ACTIONS(4892), + [sym__newline_token] = ACTIONS(4892), + [aux_sym_insert_token1] = ACTIONS(4892), + [aux_sym_delete_token1] = ACTIONS(4892), + [aux_sym_highlight_token1] = ACTIONS(4892), + [aux_sym_edit_comment_token1] = ACTIONS(4892), + [anon_sym_CARET_LBRACK] = ACTIONS(4892), + [anon_sym_LBRACK_CARET] = ACTIONS(4892), + [sym_uri_autolink] = ACTIONS(4892), + [sym_email_autolink] = ACTIONS(4892), + [sym__whitespace_ge_2] = ACTIONS(4892), + [aux_sym__whitespace_token1] = ACTIONS(4894), + [sym__word_no_digit] = ACTIONS(4892), + [sym__digits] = ACTIONS(4892), + [anon_sym_DASH_DASH] = ACTIONS(4894), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4892), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4892), + [sym__code_span_start] = ACTIONS(4892), + [sym__emphasis_open_star] = ACTIONS(4892), + [sym__emphasis_open_underscore] = ACTIONS(4892), + [sym__strikeout_open] = ACTIONS(4892), + [sym__latex_span_start] = ACTIONS(4892), + [sym__single_quote_open] = ACTIONS(4892), + [sym__double_quote_open] = ACTIONS(4892), + [sym__superscript_open] = ACTIONS(4892), + [sym__superscript_close] = ACTIONS(4892), + [sym__subscript_open] = ACTIONS(4892), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4892), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4892), + [sym__cite_author_in_text] = ACTIONS(4892), + [sym__cite_suppress_author] = ACTIONS(4892), + [sym__shortcode_open_escaped] = ACTIONS(4892), + [sym__shortcode_open] = ACTIONS(4892), + [sym__unclosed_span] = ACTIONS(4892), + }, + [STATE(790)] = { + [sym__backslash_escape] = ACTIONS(4896), + [sym_entity_reference] = ACTIONS(4896), + [sym_numeric_character_reference] = ACTIONS(4896), + [anon_sym_LT] = ACTIONS(4898), + [anon_sym_GT] = ACTIONS(4896), + [anon_sym_BANG] = ACTIONS(4896), + [anon_sym_DQUOTE] = ACTIONS(4896), + [anon_sym_POUND] = ACTIONS(4896), + [anon_sym_DOLLAR] = ACTIONS(4896), + [anon_sym_PERCENT] = ACTIONS(4896), + [anon_sym_AMP] = ACTIONS(4898), + [anon_sym_SQUOTE] = ACTIONS(4896), + [anon_sym_STAR] = ACTIONS(4896), + [anon_sym_PLUS] = ACTIONS(4896), + [anon_sym_COMMA] = ACTIONS(4896), + [anon_sym_DASH] = ACTIONS(4898), + [anon_sym_DOT] = ACTIONS(4898), + [anon_sym_SLASH] = ACTIONS(4896), + [anon_sym_COLON] = ACTIONS(4896), + [anon_sym_SEMI] = ACTIONS(4896), + [anon_sym_EQ] = ACTIONS(4896), + [anon_sym_QMARK] = ACTIONS(4896), + [anon_sym_LBRACK] = ACTIONS(4898), + [anon_sym_BSLASH] = ACTIONS(4898), + [anon_sym_CARET] = ACTIONS(4898), + [anon_sym__] = ACTIONS(4896), + [anon_sym_BQUOTE] = ACTIONS(4896), + [anon_sym_LBRACE] = ACTIONS(4896), + [anon_sym_PIPE] = ACTIONS(4896), + [anon_sym_TILDE] = ACTIONS(4896), + [anon_sym_LPAREN] = ACTIONS(4896), + [anon_sym_RPAREN] = ACTIONS(4896), + [sym__newline_token] = ACTIONS(4896), + [aux_sym_insert_token1] = ACTIONS(4896), + [aux_sym_delete_token1] = ACTIONS(4896), + [aux_sym_highlight_token1] = ACTIONS(4896), + [aux_sym_edit_comment_token1] = ACTIONS(4896), + [anon_sym_CARET_LBRACK] = ACTIONS(4896), + [anon_sym_LBRACK_CARET] = ACTIONS(4896), + [sym_uri_autolink] = ACTIONS(4896), + [sym_email_autolink] = ACTIONS(4896), + [sym__whitespace_ge_2] = ACTIONS(4896), + [aux_sym__whitespace_token1] = ACTIONS(4898), + [sym__word_no_digit] = ACTIONS(4896), + [sym__digits] = ACTIONS(4896), + [anon_sym_DASH_DASH] = ACTIONS(4898), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4896), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4896), + [sym__code_span_start] = ACTIONS(4896), + [sym__emphasis_open_star] = ACTIONS(4896), + [sym__emphasis_open_underscore] = ACTIONS(4896), + [sym__strikeout_open] = ACTIONS(4896), + [sym__latex_span_start] = ACTIONS(4896), + [sym__single_quote_open] = ACTIONS(4896), + [sym__double_quote_open] = ACTIONS(4896), + [sym__superscript_open] = ACTIONS(4896), + [sym__superscript_close] = ACTIONS(4896), + [sym__subscript_open] = ACTIONS(4896), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4896), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4896), + [sym__cite_author_in_text] = ACTIONS(4896), + [sym__cite_suppress_author] = ACTIONS(4896), + [sym__shortcode_open_escaped] = ACTIONS(4896), + [sym__shortcode_open] = ACTIONS(4896), + [sym__unclosed_span] = ACTIONS(4896), + }, + [STATE(791)] = { + [sym__backslash_escape] = ACTIONS(4534), + [sym_entity_reference] = ACTIONS(4534), + [sym_numeric_character_reference] = ACTIONS(4534), + [anon_sym_LT] = ACTIONS(4536), + [anon_sym_GT] = ACTIONS(4534), + [anon_sym_BANG] = ACTIONS(4534), + [anon_sym_DQUOTE] = ACTIONS(4534), + [anon_sym_POUND] = ACTIONS(4534), + [anon_sym_DOLLAR] = ACTIONS(4534), + [anon_sym_PERCENT] = ACTIONS(4534), + [anon_sym_AMP] = ACTIONS(4536), + [anon_sym_SQUOTE] = ACTIONS(4534), + [anon_sym_STAR] = ACTIONS(4534), + [anon_sym_PLUS] = ACTIONS(4534), + [anon_sym_COMMA] = ACTIONS(4534), + [anon_sym_DASH] = ACTIONS(4536), + [anon_sym_DOT] = ACTIONS(4536), + [anon_sym_SLASH] = ACTIONS(4534), + [anon_sym_COLON] = ACTIONS(4534), + [anon_sym_SEMI] = ACTIONS(4534), + [anon_sym_EQ] = ACTIONS(4534), + [anon_sym_QMARK] = ACTIONS(4534), + [anon_sym_LBRACK] = ACTIONS(4536), + [anon_sym_BSLASH] = ACTIONS(4536), + [anon_sym_CARET] = ACTIONS(4536), + [anon_sym__] = ACTIONS(4534), + [anon_sym_BQUOTE] = ACTIONS(4534), + [anon_sym_LBRACE] = ACTIONS(4534), + [anon_sym_PIPE] = ACTIONS(4534), + [anon_sym_TILDE] = ACTIONS(4534), + [anon_sym_LPAREN] = ACTIONS(4534), + [anon_sym_RPAREN] = ACTIONS(4534), + [sym__newline_token] = ACTIONS(4534), + [aux_sym_insert_token1] = ACTIONS(4534), + [aux_sym_delete_token1] = ACTIONS(4534), + [aux_sym_highlight_token1] = ACTIONS(4534), + [aux_sym_edit_comment_token1] = ACTIONS(4534), + [anon_sym_CARET_LBRACK] = ACTIONS(4534), + [anon_sym_LBRACK_CARET] = ACTIONS(4534), + [sym_uri_autolink] = ACTIONS(4534), + [sym_email_autolink] = ACTIONS(4534), + [sym__whitespace_ge_2] = ACTIONS(4534), + [aux_sym__whitespace_token1] = ACTIONS(4536), + [sym__word_no_digit] = ACTIONS(4534), + [sym__digits] = ACTIONS(4534), + [anon_sym_DASH_DASH] = ACTIONS(4536), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4534), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4534), + [sym__code_span_start] = ACTIONS(4534), + [sym__emphasis_open_star] = ACTIONS(4534), + [sym__emphasis_open_underscore] = ACTIONS(4534), + [sym__strikeout_open] = ACTIONS(4534), + [sym__latex_span_start] = ACTIONS(4534), + [sym__single_quote_open] = ACTIONS(4534), + [sym__double_quote_open] = ACTIONS(4534), + [sym__superscript_open] = ACTIONS(4534), + [sym__superscript_close] = ACTIONS(4534), + [sym__subscript_open] = ACTIONS(4534), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4534), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4534), + [sym__cite_author_in_text] = ACTIONS(4534), + [sym__cite_suppress_author] = ACTIONS(4534), + [sym__shortcode_open_escaped] = ACTIONS(4534), + [sym__shortcode_open] = ACTIONS(4534), + [sym__unclosed_span] = ACTIONS(4534), + }, + [STATE(792)] = { + [sym__backslash_escape] = ACTIONS(4828), + [sym_entity_reference] = ACTIONS(4828), + [sym_numeric_character_reference] = ACTIONS(4828), + [anon_sym_LT] = ACTIONS(4830), + [anon_sym_GT] = ACTIONS(4828), + [anon_sym_BANG] = ACTIONS(4828), + [anon_sym_DQUOTE] = ACTIONS(4828), + [anon_sym_POUND] = ACTIONS(4828), + [anon_sym_DOLLAR] = ACTIONS(4828), + [anon_sym_PERCENT] = ACTIONS(4828), + [anon_sym_AMP] = ACTIONS(4830), + [anon_sym_SQUOTE] = ACTIONS(4828), + [anon_sym_STAR] = ACTIONS(4828), + [anon_sym_PLUS] = ACTIONS(4828), + [anon_sym_COMMA] = ACTIONS(4828), + [anon_sym_DASH] = ACTIONS(4830), + [anon_sym_DOT] = ACTIONS(4830), + [anon_sym_SLASH] = ACTIONS(4828), + [anon_sym_COLON] = ACTIONS(4828), + [anon_sym_SEMI] = ACTIONS(4828), + [anon_sym_EQ] = ACTIONS(4828), + [anon_sym_QMARK] = ACTIONS(4828), + [anon_sym_LBRACK] = ACTIONS(4830), + [anon_sym_BSLASH] = ACTIONS(4830), + [anon_sym_CARET] = ACTIONS(4830), + [anon_sym__] = ACTIONS(4828), + [anon_sym_BQUOTE] = ACTIONS(4828), + [anon_sym_LBRACE] = ACTIONS(4828), + [anon_sym_PIPE] = ACTIONS(4828), + [anon_sym_TILDE] = ACTIONS(4828), + [anon_sym_LPAREN] = ACTIONS(4828), + [anon_sym_RPAREN] = ACTIONS(4828), + [sym__newline_token] = ACTIONS(4828), + [aux_sym_insert_token1] = ACTIONS(4828), + [aux_sym_delete_token1] = ACTIONS(4828), + [aux_sym_highlight_token1] = ACTIONS(4828), + [aux_sym_edit_comment_token1] = ACTIONS(4828), + [anon_sym_CARET_LBRACK] = ACTIONS(4828), + [anon_sym_LBRACK_CARET] = ACTIONS(4828), + [sym_uri_autolink] = ACTIONS(4828), + [sym_email_autolink] = ACTIONS(4828), + [sym__whitespace_ge_2] = ACTIONS(4828), + [aux_sym__whitespace_token1] = ACTIONS(4830), + [sym__word_no_digit] = ACTIONS(4828), + [sym__digits] = ACTIONS(4828), + [anon_sym_DASH_DASH] = ACTIONS(4830), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4828), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4828), + [sym__code_span_start] = ACTIONS(4828), + [sym__emphasis_open_star] = ACTIONS(4828), + [sym__emphasis_open_underscore] = ACTIONS(4828), + [sym__strikeout_open] = ACTIONS(4828), + [sym__strikeout_close] = ACTIONS(4828), + [sym__latex_span_start] = ACTIONS(4828), + [sym__single_quote_open] = ACTIONS(4828), + [sym__double_quote_open] = ACTIONS(4828), + [sym__superscript_open] = ACTIONS(4828), + [sym__subscript_open] = ACTIONS(4828), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4828), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4828), + [sym__cite_author_in_text] = ACTIONS(4828), + [sym__cite_suppress_author] = ACTIONS(4828), + [sym__shortcode_open_escaped] = ACTIONS(4828), + [sym__shortcode_open] = ACTIONS(4828), + [sym__unclosed_span] = ACTIONS(4828), + }, + [STATE(793)] = { + [sym__backslash_escape] = ACTIONS(4546), + [sym_entity_reference] = ACTIONS(4546), + [sym_numeric_character_reference] = ACTIONS(4546), + [anon_sym_LT] = ACTIONS(4548), + [anon_sym_GT] = ACTIONS(4546), + [anon_sym_BANG] = ACTIONS(4546), + [anon_sym_DQUOTE] = ACTIONS(4546), + [anon_sym_POUND] = ACTIONS(4546), + [anon_sym_DOLLAR] = ACTIONS(4546), + [anon_sym_PERCENT] = ACTIONS(4546), + [anon_sym_AMP] = ACTIONS(4548), + [anon_sym_SQUOTE] = ACTIONS(4546), + [anon_sym_STAR] = ACTIONS(4546), + [anon_sym_PLUS] = ACTIONS(4546), + [anon_sym_COMMA] = ACTIONS(4546), + [anon_sym_DASH] = ACTIONS(4548), + [anon_sym_DOT] = ACTIONS(4548), + [anon_sym_SLASH] = ACTIONS(4546), + [anon_sym_COLON] = ACTIONS(4546), + [anon_sym_SEMI] = ACTIONS(4546), + [anon_sym_EQ] = ACTIONS(4546), + [anon_sym_QMARK] = ACTIONS(4546), + [anon_sym_LBRACK] = ACTIONS(4548), + [anon_sym_BSLASH] = ACTIONS(4548), + [anon_sym_CARET] = ACTIONS(4548), + [anon_sym__] = ACTIONS(4546), + [anon_sym_BQUOTE] = ACTIONS(4546), + [anon_sym_LBRACE] = ACTIONS(4546), + [anon_sym_PIPE] = ACTIONS(4546), + [anon_sym_TILDE] = ACTIONS(4546), + [anon_sym_LPAREN] = ACTIONS(4546), + [anon_sym_RPAREN] = ACTIONS(4546), + [sym__newline_token] = ACTIONS(4546), + [aux_sym_insert_token1] = ACTIONS(4546), + [aux_sym_delete_token1] = ACTIONS(4546), + [aux_sym_highlight_token1] = ACTIONS(4546), + [aux_sym_edit_comment_token1] = ACTIONS(4546), + [anon_sym_CARET_LBRACK] = ACTIONS(4546), + [anon_sym_LBRACK_CARET] = ACTIONS(4546), + [sym_uri_autolink] = ACTIONS(4546), + [sym_email_autolink] = ACTIONS(4546), + [sym__whitespace_ge_2] = ACTIONS(4546), + [aux_sym__whitespace_token1] = ACTIONS(4548), + [sym__word_no_digit] = ACTIONS(4546), + [sym__digits] = ACTIONS(4546), + [anon_sym_DASH_DASH] = ACTIONS(4548), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4546), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4546), + [sym__code_span_start] = ACTIONS(4546), + [sym__emphasis_open_star] = ACTIONS(4546), + [sym__emphasis_open_underscore] = ACTIONS(4546), + [sym__strikeout_open] = ACTIONS(4546), + [sym__latex_span_start] = ACTIONS(4546), + [sym__single_quote_open] = ACTIONS(4546), + [sym__double_quote_open] = ACTIONS(4546), + [sym__superscript_open] = ACTIONS(4546), + [sym__superscript_close] = ACTIONS(4546), + [sym__subscript_open] = ACTIONS(4546), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4546), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4546), + [sym__cite_author_in_text] = ACTIONS(4546), + [sym__cite_suppress_author] = ACTIONS(4546), + [sym__shortcode_open_escaped] = ACTIONS(4546), + [sym__shortcode_open] = ACTIONS(4546), + [sym__unclosed_span] = ACTIONS(4546), + }, + [STATE(794)] = { + [sym__backslash_escape] = ACTIONS(4832), + [sym_entity_reference] = ACTIONS(4832), + [sym_numeric_character_reference] = ACTIONS(4832), + [anon_sym_LT] = ACTIONS(4834), + [anon_sym_GT] = ACTIONS(4832), + [anon_sym_BANG] = ACTIONS(4832), + [anon_sym_DQUOTE] = ACTIONS(4832), + [anon_sym_POUND] = ACTIONS(4832), + [anon_sym_DOLLAR] = ACTIONS(4832), + [anon_sym_PERCENT] = ACTIONS(4832), + [anon_sym_AMP] = ACTIONS(4834), + [anon_sym_SQUOTE] = ACTIONS(4832), + [anon_sym_STAR] = ACTIONS(4832), + [anon_sym_PLUS] = ACTIONS(4832), + [anon_sym_COMMA] = ACTIONS(4832), + [anon_sym_DASH] = ACTIONS(4834), + [anon_sym_DOT] = ACTIONS(4834), + [anon_sym_SLASH] = ACTIONS(4832), + [anon_sym_COLON] = ACTIONS(4832), + [anon_sym_SEMI] = ACTIONS(4832), + [anon_sym_EQ] = ACTIONS(4832), + [anon_sym_QMARK] = ACTIONS(4832), + [anon_sym_LBRACK] = ACTIONS(4834), + [anon_sym_BSLASH] = ACTIONS(4834), + [anon_sym_CARET] = ACTIONS(4834), + [anon_sym__] = ACTIONS(4832), + [anon_sym_BQUOTE] = ACTIONS(4832), + [anon_sym_LBRACE] = ACTIONS(4832), + [anon_sym_PIPE] = ACTIONS(4832), + [anon_sym_TILDE] = ACTIONS(4832), + [anon_sym_LPAREN] = ACTIONS(4832), + [anon_sym_RPAREN] = ACTIONS(4832), + [sym__newline_token] = ACTIONS(4832), + [aux_sym_insert_token1] = ACTIONS(4832), + [aux_sym_delete_token1] = ACTIONS(4832), + [aux_sym_highlight_token1] = ACTIONS(4832), + [aux_sym_edit_comment_token1] = ACTIONS(4832), + [anon_sym_CARET_LBRACK] = ACTIONS(4832), + [anon_sym_LBRACK_CARET] = ACTIONS(4832), + [sym_uri_autolink] = ACTIONS(4832), + [sym_email_autolink] = ACTIONS(4832), + [sym__whitespace_ge_2] = ACTIONS(4832), + [aux_sym__whitespace_token1] = ACTIONS(4834), + [sym__word_no_digit] = ACTIONS(4832), + [sym__digits] = ACTIONS(4832), + [anon_sym_DASH_DASH] = ACTIONS(4834), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4832), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4832), + [sym__code_span_start] = ACTIONS(4832), + [sym__emphasis_open_star] = ACTIONS(4832), + [sym__emphasis_open_underscore] = ACTIONS(4832), + [sym__strikeout_open] = ACTIONS(4832), + [sym__strikeout_close] = ACTIONS(4832), + [sym__latex_span_start] = ACTIONS(4832), + [sym__single_quote_open] = ACTIONS(4832), + [sym__double_quote_open] = ACTIONS(4832), + [sym__superscript_open] = ACTIONS(4832), + [sym__subscript_open] = ACTIONS(4832), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4832), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4832), + [sym__cite_author_in_text] = ACTIONS(4832), + [sym__cite_suppress_author] = ACTIONS(4832), + [sym__shortcode_open_escaped] = ACTIONS(4832), + [sym__shortcode_open] = ACTIONS(4832), + [sym__unclosed_span] = ACTIONS(4832), + }, + [STATE(795)] = { + [sym__backslash_escape] = ACTIONS(4904), + [sym_entity_reference] = ACTIONS(4904), + [sym_numeric_character_reference] = ACTIONS(4904), + [anon_sym_LT] = ACTIONS(4906), + [anon_sym_GT] = ACTIONS(4904), + [anon_sym_BANG] = ACTIONS(4904), + [anon_sym_DQUOTE] = ACTIONS(4904), + [anon_sym_POUND] = ACTIONS(4904), + [anon_sym_DOLLAR] = ACTIONS(4904), + [anon_sym_PERCENT] = ACTIONS(4904), + [anon_sym_AMP] = ACTIONS(4906), + [anon_sym_SQUOTE] = ACTIONS(4904), + [anon_sym_STAR] = ACTIONS(4904), + [anon_sym_PLUS] = ACTIONS(4904), + [anon_sym_COMMA] = ACTIONS(4904), + [anon_sym_DASH] = ACTIONS(4906), + [anon_sym_DOT] = ACTIONS(4906), + [anon_sym_SLASH] = ACTIONS(4904), + [anon_sym_COLON] = ACTIONS(4904), + [anon_sym_SEMI] = ACTIONS(4904), + [anon_sym_EQ] = ACTIONS(4904), + [anon_sym_QMARK] = ACTIONS(4904), + [anon_sym_LBRACK] = ACTIONS(4906), + [anon_sym_BSLASH] = ACTIONS(4906), + [anon_sym_CARET] = ACTIONS(4906), + [anon_sym__] = ACTIONS(4904), + [anon_sym_BQUOTE] = ACTIONS(4904), + [anon_sym_LBRACE] = ACTIONS(4904), + [anon_sym_PIPE] = ACTIONS(4904), + [anon_sym_TILDE] = ACTIONS(4904), + [anon_sym_LPAREN] = ACTIONS(4904), + [anon_sym_RPAREN] = ACTIONS(4904), + [sym__newline_token] = ACTIONS(4904), + [aux_sym_insert_token1] = ACTIONS(4904), + [aux_sym_delete_token1] = ACTIONS(4904), + [aux_sym_highlight_token1] = ACTIONS(4904), + [aux_sym_edit_comment_token1] = ACTIONS(4904), + [anon_sym_CARET_LBRACK] = ACTIONS(4904), + [anon_sym_LBRACK_CARET] = ACTIONS(4904), + [sym_uri_autolink] = ACTIONS(4904), + [sym_email_autolink] = ACTIONS(4904), + [sym__whitespace_ge_2] = ACTIONS(4904), + [aux_sym__whitespace_token1] = ACTIONS(4906), + [sym__word_no_digit] = ACTIONS(4904), + [sym__digits] = ACTIONS(4904), + [anon_sym_DASH_DASH] = ACTIONS(4906), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4904), + [sym__code_span_start] = ACTIONS(4904), + [sym__emphasis_open_star] = ACTIONS(4904), + [sym__emphasis_open_underscore] = ACTIONS(4904), + [sym__strikeout_open] = ACTIONS(4904), + [sym__latex_span_start] = ACTIONS(4904), + [sym__single_quote_open] = ACTIONS(4904), + [sym__double_quote_open] = ACTIONS(4904), + [sym__superscript_open] = ACTIONS(4904), + [sym__superscript_close] = ACTIONS(4904), + [sym__subscript_open] = ACTIONS(4904), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4904), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4904), + [sym__cite_author_in_text] = ACTIONS(4904), + [sym__cite_suppress_author] = ACTIONS(4904), + [sym__shortcode_open_escaped] = ACTIONS(4904), + [sym__shortcode_open] = ACTIONS(4904), + [sym__unclosed_span] = ACTIONS(4904), + }, + [STATE(796)] = { + [sym__backslash_escape] = ACTIONS(4908), + [sym_entity_reference] = ACTIONS(4908), + [sym_numeric_character_reference] = ACTIONS(4908), + [anon_sym_LT] = ACTIONS(4910), + [anon_sym_GT] = ACTIONS(4908), + [anon_sym_BANG] = ACTIONS(4908), + [anon_sym_DQUOTE] = ACTIONS(4908), + [anon_sym_POUND] = ACTIONS(4908), + [anon_sym_DOLLAR] = ACTIONS(4908), + [anon_sym_PERCENT] = ACTIONS(4908), + [anon_sym_AMP] = ACTIONS(4910), + [anon_sym_SQUOTE] = ACTIONS(4908), + [anon_sym_STAR] = ACTIONS(4908), + [anon_sym_PLUS] = ACTIONS(4908), + [anon_sym_COMMA] = ACTIONS(4908), + [anon_sym_DASH] = ACTIONS(4910), + [anon_sym_DOT] = ACTIONS(4910), + [anon_sym_SLASH] = ACTIONS(4908), + [anon_sym_COLON] = ACTIONS(4908), + [anon_sym_SEMI] = ACTIONS(4908), + [anon_sym_EQ] = ACTIONS(4908), + [anon_sym_QMARK] = ACTIONS(4908), + [anon_sym_LBRACK] = ACTIONS(4910), + [anon_sym_BSLASH] = ACTIONS(4910), + [anon_sym_CARET] = ACTIONS(4910), + [anon_sym__] = ACTIONS(4908), + [anon_sym_BQUOTE] = ACTIONS(4908), + [anon_sym_LBRACE] = ACTIONS(4908), + [anon_sym_PIPE] = ACTIONS(4908), + [anon_sym_TILDE] = ACTIONS(4908), + [anon_sym_LPAREN] = ACTIONS(4908), + [anon_sym_RPAREN] = ACTIONS(4908), + [sym__newline_token] = ACTIONS(4908), + [aux_sym_insert_token1] = ACTIONS(4908), + [aux_sym_delete_token1] = ACTIONS(4908), + [aux_sym_highlight_token1] = ACTIONS(4908), + [aux_sym_edit_comment_token1] = ACTIONS(4908), + [anon_sym_CARET_LBRACK] = ACTIONS(4908), + [anon_sym_LBRACK_CARET] = ACTIONS(4908), + [sym_uri_autolink] = ACTIONS(4908), + [sym_email_autolink] = ACTIONS(4908), + [sym__whitespace_ge_2] = ACTIONS(4908), + [aux_sym__whitespace_token1] = ACTIONS(4910), + [sym__word_no_digit] = ACTIONS(4908), + [sym__digits] = ACTIONS(4908), + [anon_sym_DASH_DASH] = ACTIONS(4910), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4908), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4908), + [sym__code_span_start] = ACTIONS(4908), + [sym__emphasis_open_star] = ACTIONS(4908), + [sym__emphasis_open_underscore] = ACTIONS(4908), + [sym__strikeout_open] = ACTIONS(4908), + [sym__latex_span_start] = ACTIONS(4908), + [sym__single_quote_open] = ACTIONS(4908), + [sym__double_quote_open] = ACTIONS(4908), + [sym__superscript_open] = ACTIONS(4908), + [sym__superscript_close] = ACTIONS(4908), + [sym__subscript_open] = ACTIONS(4908), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4908), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4908), + [sym__cite_author_in_text] = ACTIONS(4908), + [sym__cite_suppress_author] = ACTIONS(4908), + [sym__shortcode_open_escaped] = ACTIONS(4908), + [sym__shortcode_open] = ACTIONS(4908), + [sym__unclosed_span] = ACTIONS(4908), + }, + [STATE(797)] = { + [sym__backslash_escape] = ACTIONS(4550), + [sym_entity_reference] = ACTIONS(4550), + [sym_numeric_character_reference] = ACTIONS(4550), + [anon_sym_LT] = ACTIONS(4552), + [anon_sym_GT] = ACTIONS(4550), + [anon_sym_BANG] = ACTIONS(4550), + [anon_sym_DQUOTE] = ACTIONS(4550), + [anon_sym_POUND] = ACTIONS(4550), + [anon_sym_DOLLAR] = ACTIONS(4550), + [anon_sym_PERCENT] = ACTIONS(4550), + [anon_sym_AMP] = ACTIONS(4552), + [anon_sym_SQUOTE] = ACTIONS(4550), + [anon_sym_STAR] = ACTIONS(4550), + [anon_sym_PLUS] = ACTIONS(4550), + [anon_sym_COMMA] = ACTIONS(4550), + [anon_sym_DASH] = ACTIONS(4552), + [anon_sym_DOT] = ACTIONS(4552), + [anon_sym_SLASH] = ACTIONS(4550), + [anon_sym_COLON] = ACTIONS(4550), + [anon_sym_SEMI] = ACTIONS(4550), + [anon_sym_EQ] = ACTIONS(4550), + [anon_sym_QMARK] = ACTIONS(4550), + [anon_sym_LBRACK] = ACTIONS(4552), + [anon_sym_BSLASH] = ACTIONS(4552), + [anon_sym_CARET] = ACTIONS(4552), + [anon_sym__] = ACTIONS(4550), + [anon_sym_BQUOTE] = ACTIONS(4550), + [anon_sym_LBRACE] = ACTIONS(4550), + [anon_sym_PIPE] = ACTIONS(4550), + [anon_sym_TILDE] = ACTIONS(4550), + [anon_sym_LPAREN] = ACTIONS(4550), + [anon_sym_RPAREN] = ACTIONS(4550), + [sym__newline_token] = ACTIONS(4550), + [aux_sym_insert_token1] = ACTIONS(4550), + [aux_sym_delete_token1] = ACTIONS(4550), + [aux_sym_highlight_token1] = ACTIONS(4550), + [aux_sym_edit_comment_token1] = ACTIONS(4550), + [anon_sym_CARET_LBRACK] = ACTIONS(4550), + [anon_sym_LBRACK_CARET] = ACTIONS(4550), + [sym_uri_autolink] = ACTIONS(4550), + [sym_email_autolink] = ACTIONS(4550), + [sym__whitespace_ge_2] = ACTIONS(4550), + [aux_sym__whitespace_token1] = ACTIONS(4552), + [sym__word_no_digit] = ACTIONS(4550), + [sym__digits] = ACTIONS(4550), + [anon_sym_DASH_DASH] = ACTIONS(4552), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4550), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4550), + [sym__code_span_start] = ACTIONS(4550), + [sym__emphasis_open_star] = ACTIONS(4550), + [sym__emphasis_open_underscore] = ACTIONS(4550), + [sym__strikeout_open] = ACTIONS(4550), + [sym__latex_span_start] = ACTIONS(4550), + [sym__single_quote_open] = ACTIONS(4550), + [sym__double_quote_open] = ACTIONS(4550), + [sym__superscript_open] = ACTIONS(4550), + [sym__superscript_close] = ACTIONS(4550), + [sym__subscript_open] = ACTIONS(4550), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4550), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4550), + [sym__cite_author_in_text] = ACTIONS(4550), + [sym__cite_suppress_author] = ACTIONS(4550), + [sym__shortcode_open_escaped] = ACTIONS(4550), + [sym__shortcode_open] = ACTIONS(4550), + [sym__unclosed_span] = ACTIONS(4550), + }, + [STATE(798)] = { + [sym__backslash_escape] = ACTIONS(4836), + [sym_entity_reference] = ACTIONS(4836), + [sym_numeric_character_reference] = ACTIONS(4836), + [anon_sym_LT] = ACTIONS(4838), + [anon_sym_GT] = ACTIONS(4836), + [anon_sym_BANG] = ACTIONS(4836), + [anon_sym_DQUOTE] = ACTIONS(4836), + [anon_sym_POUND] = ACTIONS(4836), + [anon_sym_DOLLAR] = ACTIONS(4836), + [anon_sym_PERCENT] = ACTIONS(4836), + [anon_sym_AMP] = ACTIONS(4838), + [anon_sym_SQUOTE] = ACTIONS(4836), + [anon_sym_STAR] = ACTIONS(4836), + [anon_sym_PLUS] = ACTIONS(4836), + [anon_sym_COMMA] = ACTIONS(4836), + [anon_sym_DASH] = ACTIONS(4838), + [anon_sym_DOT] = ACTIONS(4838), + [anon_sym_SLASH] = ACTIONS(4836), + [anon_sym_COLON] = ACTIONS(4836), + [anon_sym_SEMI] = ACTIONS(4836), + [anon_sym_EQ] = ACTIONS(4836), + [anon_sym_QMARK] = ACTIONS(4836), + [anon_sym_LBRACK] = ACTIONS(4838), + [anon_sym_BSLASH] = ACTIONS(4838), + [anon_sym_CARET] = ACTIONS(4838), + [anon_sym__] = ACTIONS(4836), + [anon_sym_BQUOTE] = ACTIONS(4836), + [anon_sym_LBRACE] = ACTIONS(4836), + [anon_sym_PIPE] = ACTIONS(4836), + [anon_sym_TILDE] = ACTIONS(4836), + [anon_sym_LPAREN] = ACTIONS(4836), + [anon_sym_RPAREN] = ACTIONS(4836), + [sym__newline_token] = ACTIONS(4836), + [aux_sym_insert_token1] = ACTIONS(4836), + [aux_sym_delete_token1] = ACTIONS(4836), + [aux_sym_highlight_token1] = ACTIONS(4836), + [aux_sym_edit_comment_token1] = ACTIONS(4836), + [anon_sym_CARET_LBRACK] = ACTIONS(4836), + [anon_sym_LBRACK_CARET] = ACTIONS(4836), + [sym_uri_autolink] = ACTIONS(4836), + [sym_email_autolink] = ACTIONS(4836), + [sym__whitespace_ge_2] = ACTIONS(4836), + [aux_sym__whitespace_token1] = ACTIONS(4838), + [sym__word_no_digit] = ACTIONS(4836), + [sym__digits] = ACTIONS(4836), + [anon_sym_DASH_DASH] = ACTIONS(4838), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4836), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4836), + [sym__code_span_start] = ACTIONS(4836), + [sym__emphasis_open_star] = ACTIONS(4836), + [sym__emphasis_open_underscore] = ACTIONS(4836), + [sym__strikeout_open] = ACTIONS(4836), + [sym__strikeout_close] = ACTIONS(4836), + [sym__latex_span_start] = ACTIONS(4836), + [sym__single_quote_open] = ACTIONS(4836), + [sym__double_quote_open] = ACTIONS(4836), + [sym__superscript_open] = ACTIONS(4836), + [sym__subscript_open] = ACTIONS(4836), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4836), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4836), + [sym__cite_author_in_text] = ACTIONS(4836), + [sym__cite_suppress_author] = ACTIONS(4836), + [sym__shortcode_open_escaped] = ACTIONS(4836), + [sym__shortcode_open] = ACTIONS(4836), + [sym__unclosed_span] = ACTIONS(4836), + }, + [STATE(799)] = { + [sym__backslash_escape] = ACTIONS(4554), + [sym_entity_reference] = ACTIONS(4554), + [sym_numeric_character_reference] = ACTIONS(4554), + [anon_sym_LT] = ACTIONS(4556), + [anon_sym_GT] = ACTIONS(4554), + [anon_sym_BANG] = ACTIONS(4554), + [anon_sym_DQUOTE] = ACTIONS(4554), + [anon_sym_POUND] = ACTIONS(4554), + [anon_sym_DOLLAR] = ACTIONS(4554), + [anon_sym_PERCENT] = ACTIONS(4554), + [anon_sym_AMP] = ACTIONS(4556), + [anon_sym_SQUOTE] = ACTIONS(4554), + [anon_sym_STAR] = ACTIONS(4554), + [anon_sym_PLUS] = ACTIONS(4554), + [anon_sym_COMMA] = ACTIONS(4554), + [anon_sym_DASH] = ACTIONS(4556), + [anon_sym_DOT] = ACTIONS(4556), + [anon_sym_SLASH] = ACTIONS(4554), + [anon_sym_COLON] = ACTIONS(4554), + [anon_sym_SEMI] = ACTIONS(4554), + [anon_sym_EQ] = ACTIONS(4554), + [anon_sym_QMARK] = ACTIONS(4554), + [anon_sym_LBRACK] = ACTIONS(4556), + [anon_sym_BSLASH] = ACTIONS(4556), + [anon_sym_CARET] = ACTIONS(4556), + [anon_sym__] = ACTIONS(4554), + [anon_sym_BQUOTE] = ACTIONS(4554), + [anon_sym_LBRACE] = ACTIONS(4554), + [anon_sym_PIPE] = ACTIONS(4554), + [anon_sym_TILDE] = ACTIONS(4554), + [anon_sym_LPAREN] = ACTIONS(4554), + [anon_sym_RPAREN] = ACTIONS(4554), + [sym__newline_token] = ACTIONS(4554), + [aux_sym_insert_token1] = ACTIONS(4554), + [aux_sym_delete_token1] = ACTIONS(4554), + [aux_sym_highlight_token1] = ACTIONS(4554), + [aux_sym_edit_comment_token1] = ACTIONS(4554), + [anon_sym_CARET_LBRACK] = ACTIONS(4554), + [anon_sym_LBRACK_CARET] = ACTIONS(4554), + [sym_uri_autolink] = ACTIONS(4554), + [sym_email_autolink] = ACTIONS(4554), + [sym__whitespace_ge_2] = ACTIONS(4554), + [aux_sym__whitespace_token1] = ACTIONS(4556), + [sym__word_no_digit] = ACTIONS(4554), + [sym__digits] = ACTIONS(4554), + [anon_sym_DASH_DASH] = ACTIONS(4556), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4554), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4554), + [sym__code_span_start] = ACTIONS(4554), + [sym__emphasis_open_star] = ACTIONS(4554), + [sym__emphasis_open_underscore] = ACTIONS(4554), + [sym__strikeout_open] = ACTIONS(4554), + [sym__latex_span_start] = ACTIONS(4554), + [sym__single_quote_open] = ACTIONS(4554), + [sym__double_quote_open] = ACTIONS(4554), + [sym__superscript_open] = ACTIONS(4554), + [sym__superscript_close] = ACTIONS(4554), + [sym__subscript_open] = ACTIONS(4554), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4554), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4554), + [sym__cite_author_in_text] = ACTIONS(4554), + [sym__cite_suppress_author] = ACTIONS(4554), + [sym__shortcode_open_escaped] = ACTIONS(4554), + [sym__shortcode_open] = ACTIONS(4554), + [sym__unclosed_span] = ACTIONS(4554), + }, + [STATE(800)] = { + [sym__backslash_escape] = ACTIONS(4864), + [sym_entity_reference] = ACTIONS(4864), + [sym_numeric_character_reference] = ACTIONS(4864), + [anon_sym_LT] = ACTIONS(4866), + [anon_sym_GT] = ACTIONS(4864), + [anon_sym_BANG] = ACTIONS(4864), + [anon_sym_DQUOTE] = ACTIONS(4864), + [anon_sym_POUND] = ACTIONS(4864), + [anon_sym_DOLLAR] = ACTIONS(4864), + [anon_sym_PERCENT] = ACTIONS(4864), + [anon_sym_AMP] = ACTIONS(4866), + [anon_sym_SQUOTE] = ACTIONS(4864), + [anon_sym_STAR] = ACTIONS(4864), + [anon_sym_PLUS] = ACTIONS(4864), + [anon_sym_COMMA] = ACTIONS(4864), + [anon_sym_DASH] = ACTIONS(4866), + [anon_sym_DOT] = ACTIONS(4866), + [anon_sym_SLASH] = ACTIONS(4864), + [anon_sym_COLON] = ACTIONS(4864), + [anon_sym_SEMI] = ACTIONS(4864), + [anon_sym_EQ] = ACTIONS(4864), + [anon_sym_QMARK] = ACTIONS(4864), + [anon_sym_LBRACK] = ACTIONS(4866), + [anon_sym_BSLASH] = ACTIONS(4866), + [anon_sym_CARET] = ACTIONS(4866), + [anon_sym__] = ACTIONS(4864), + [anon_sym_BQUOTE] = ACTIONS(4864), + [anon_sym_LBRACE] = ACTIONS(4864), + [anon_sym_PIPE] = ACTIONS(4864), + [anon_sym_TILDE] = ACTIONS(4864), + [anon_sym_LPAREN] = ACTIONS(4864), + [anon_sym_RPAREN] = ACTIONS(4864), + [sym__newline_token] = ACTIONS(4864), + [aux_sym_insert_token1] = ACTIONS(4864), + [aux_sym_delete_token1] = ACTIONS(4864), + [aux_sym_highlight_token1] = ACTIONS(4864), + [aux_sym_edit_comment_token1] = ACTIONS(4864), + [anon_sym_CARET_LBRACK] = ACTIONS(4864), + [anon_sym_LBRACK_CARET] = ACTIONS(4864), + [sym_uri_autolink] = ACTIONS(4864), + [sym_email_autolink] = ACTIONS(4864), + [sym__whitespace_ge_2] = ACTIONS(4864), + [aux_sym__whitespace_token1] = ACTIONS(4866), + [sym__word_no_digit] = ACTIONS(4864), + [sym__digits] = ACTIONS(4864), + [anon_sym_DASH_DASH] = ACTIONS(4866), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4864), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4864), + [sym__code_span_start] = ACTIONS(4864), + [sym__emphasis_open_star] = ACTIONS(4864), + [sym__emphasis_open_underscore] = ACTIONS(4864), + [sym__emphasis_close_underscore] = ACTIONS(4864), + [sym__strikeout_open] = ACTIONS(4864), + [sym__latex_span_start] = ACTIONS(4864), + [sym__single_quote_open] = ACTIONS(4864), + [sym__double_quote_open] = ACTIONS(4864), + [sym__superscript_open] = ACTIONS(4864), + [sym__subscript_open] = ACTIONS(4864), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4864), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4864), + [sym__cite_author_in_text] = ACTIONS(4864), + [sym__cite_suppress_author] = ACTIONS(4864), + [sym__shortcode_open_escaped] = ACTIONS(4864), + [sym__shortcode_open] = ACTIONS(4864), + [sym__unclosed_span] = ACTIONS(4864), + }, + [STATE(801)] = { + [sym__backslash_escape] = ACTIONS(4558), + [sym_entity_reference] = ACTIONS(4558), + [sym_numeric_character_reference] = ACTIONS(4558), + [anon_sym_LT] = ACTIONS(4560), + [anon_sym_GT] = ACTIONS(4558), + [anon_sym_BANG] = ACTIONS(4558), + [anon_sym_DQUOTE] = ACTIONS(4558), + [anon_sym_POUND] = ACTIONS(4558), + [anon_sym_DOLLAR] = ACTIONS(4558), + [anon_sym_PERCENT] = ACTIONS(4558), + [anon_sym_AMP] = ACTIONS(4560), + [anon_sym_SQUOTE] = ACTIONS(4558), + [anon_sym_STAR] = ACTIONS(4558), + [anon_sym_PLUS] = ACTIONS(4558), + [anon_sym_COMMA] = ACTIONS(4558), + [anon_sym_DASH] = ACTIONS(4560), + [anon_sym_DOT] = ACTIONS(4560), + [anon_sym_SLASH] = ACTIONS(4558), + [anon_sym_COLON] = ACTIONS(4558), + [anon_sym_SEMI] = ACTIONS(4558), + [anon_sym_EQ] = ACTIONS(4558), + [anon_sym_QMARK] = ACTIONS(4558), + [anon_sym_LBRACK] = ACTIONS(4560), + [anon_sym_BSLASH] = ACTIONS(4560), + [anon_sym_CARET] = ACTIONS(4560), + [anon_sym__] = ACTIONS(4558), + [anon_sym_BQUOTE] = ACTIONS(4558), + [anon_sym_LBRACE] = ACTIONS(4558), + [anon_sym_PIPE] = ACTIONS(4558), + [anon_sym_TILDE] = ACTIONS(4558), + [anon_sym_LPAREN] = ACTIONS(4558), + [anon_sym_RPAREN] = ACTIONS(4558), + [sym__newline_token] = ACTIONS(4558), + [aux_sym_insert_token1] = ACTIONS(4558), + [aux_sym_delete_token1] = ACTIONS(4558), + [aux_sym_highlight_token1] = ACTIONS(4558), + [aux_sym_edit_comment_token1] = ACTIONS(4558), + [anon_sym_CARET_LBRACK] = ACTIONS(4558), + [anon_sym_LBRACK_CARET] = ACTIONS(4558), + [sym_uri_autolink] = ACTIONS(4558), + [sym_email_autolink] = ACTIONS(4558), + [sym__whitespace_ge_2] = ACTIONS(4558), + [aux_sym__whitespace_token1] = ACTIONS(4560), + [sym__word_no_digit] = ACTIONS(4558), + [sym__digits] = ACTIONS(4558), + [anon_sym_DASH_DASH] = ACTIONS(4560), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4558), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4558), + [sym__code_span_start] = ACTIONS(4558), + [sym__emphasis_open_star] = ACTIONS(4558), + [sym__emphasis_open_underscore] = ACTIONS(4558), + [sym__strikeout_open] = ACTIONS(4558), + [sym__latex_span_start] = ACTIONS(4558), + [sym__single_quote_open] = ACTIONS(4558), + [sym__double_quote_open] = ACTIONS(4558), + [sym__superscript_open] = ACTIONS(4558), + [sym__superscript_close] = ACTIONS(4558), + [sym__subscript_open] = ACTIONS(4558), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4558), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4558), + [sym__cite_author_in_text] = ACTIONS(4558), + [sym__cite_suppress_author] = ACTIONS(4558), + [sym__shortcode_open_escaped] = ACTIONS(4558), + [sym__shortcode_open] = ACTIONS(4558), + [sym__unclosed_span] = ACTIONS(4558), + }, + [STATE(802)] = { + [sym__backslash_escape] = ACTIONS(4844), + [sym_entity_reference] = ACTIONS(4844), + [sym_numeric_character_reference] = ACTIONS(4844), + [anon_sym_LT] = ACTIONS(4846), + [anon_sym_GT] = ACTIONS(4844), + [anon_sym_BANG] = ACTIONS(4844), + [anon_sym_DQUOTE] = ACTIONS(4844), + [anon_sym_POUND] = ACTIONS(4844), + [anon_sym_DOLLAR] = ACTIONS(4844), + [anon_sym_PERCENT] = ACTIONS(4844), + [anon_sym_AMP] = ACTIONS(4846), + [anon_sym_SQUOTE] = ACTIONS(4844), + [anon_sym_STAR] = ACTIONS(4844), + [anon_sym_PLUS] = ACTIONS(4844), + [anon_sym_COMMA] = ACTIONS(4844), + [anon_sym_DASH] = ACTIONS(4846), + [anon_sym_DOT] = ACTIONS(4846), + [anon_sym_SLASH] = ACTIONS(4844), + [anon_sym_COLON] = ACTIONS(4844), + [anon_sym_SEMI] = ACTIONS(4844), + [anon_sym_EQ] = ACTIONS(4844), + [anon_sym_QMARK] = ACTIONS(4844), + [anon_sym_LBRACK] = ACTIONS(4846), + [anon_sym_BSLASH] = ACTIONS(4846), + [anon_sym_CARET] = ACTIONS(4846), + [anon_sym__] = ACTIONS(4844), + [anon_sym_BQUOTE] = ACTIONS(4844), + [anon_sym_LBRACE] = ACTIONS(4844), + [anon_sym_PIPE] = ACTIONS(4844), + [anon_sym_TILDE] = ACTIONS(4844), + [anon_sym_LPAREN] = ACTIONS(4844), + [anon_sym_RPAREN] = ACTIONS(4844), + [sym__newline_token] = ACTIONS(4844), + [aux_sym_insert_token1] = ACTIONS(4844), + [aux_sym_delete_token1] = ACTIONS(4844), + [aux_sym_highlight_token1] = ACTIONS(4844), + [aux_sym_edit_comment_token1] = ACTIONS(4844), + [anon_sym_CARET_LBRACK] = ACTIONS(4844), + [anon_sym_LBRACK_CARET] = ACTIONS(4844), + [sym_uri_autolink] = ACTIONS(4844), + [sym_email_autolink] = ACTIONS(4844), + [sym__whitespace_ge_2] = ACTIONS(4844), + [aux_sym__whitespace_token1] = ACTIONS(4846), + [sym__word_no_digit] = ACTIONS(4844), + [sym__digits] = ACTIONS(4844), + [anon_sym_DASH_DASH] = ACTIONS(4846), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4844), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4844), + [sym__code_span_start] = ACTIONS(4844), + [sym__emphasis_open_star] = ACTIONS(4844), + [sym__emphasis_open_underscore] = ACTIONS(4844), + [sym__strikeout_open] = ACTIONS(4844), + [sym__strikeout_close] = ACTIONS(4844), + [sym__latex_span_start] = ACTIONS(4844), + [sym__single_quote_open] = ACTIONS(4844), + [sym__double_quote_open] = ACTIONS(4844), + [sym__superscript_open] = ACTIONS(4844), + [sym__subscript_open] = ACTIONS(4844), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4844), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4844), + [sym__cite_author_in_text] = ACTIONS(4844), + [sym__cite_suppress_author] = ACTIONS(4844), + [sym__shortcode_open_escaped] = ACTIONS(4844), + [sym__shortcode_open] = ACTIONS(4844), + [sym__unclosed_span] = ACTIONS(4844), + }, + [STATE(803)] = { + [sym__backslash_escape] = ACTIONS(4562), + [sym_entity_reference] = ACTIONS(4562), + [sym_numeric_character_reference] = ACTIONS(4562), + [anon_sym_LT] = ACTIONS(4564), + [anon_sym_GT] = ACTIONS(4562), + [anon_sym_BANG] = ACTIONS(4562), + [anon_sym_DQUOTE] = ACTIONS(4562), + [anon_sym_POUND] = ACTIONS(4562), + [anon_sym_DOLLAR] = ACTIONS(4562), + [anon_sym_PERCENT] = ACTIONS(4562), + [anon_sym_AMP] = ACTIONS(4564), + [anon_sym_SQUOTE] = ACTIONS(4562), + [anon_sym_STAR] = ACTIONS(4562), + [anon_sym_PLUS] = ACTIONS(4562), + [anon_sym_COMMA] = ACTIONS(4562), + [anon_sym_DASH] = ACTIONS(4564), + [anon_sym_DOT] = ACTIONS(4564), + [anon_sym_SLASH] = ACTIONS(4562), + [anon_sym_COLON] = ACTIONS(4562), + [anon_sym_SEMI] = ACTIONS(4562), + [anon_sym_EQ] = ACTIONS(4562), + [anon_sym_QMARK] = ACTIONS(4562), + [anon_sym_LBRACK] = ACTIONS(4564), + [anon_sym_BSLASH] = ACTIONS(4564), + [anon_sym_CARET] = ACTIONS(4564), + [anon_sym__] = ACTIONS(4562), + [anon_sym_BQUOTE] = ACTIONS(4562), + [anon_sym_LBRACE] = ACTIONS(4562), + [anon_sym_PIPE] = ACTIONS(4562), + [anon_sym_TILDE] = ACTIONS(4562), + [anon_sym_LPAREN] = ACTIONS(4562), + [anon_sym_RPAREN] = ACTIONS(4562), + [sym__newline_token] = ACTIONS(4562), + [aux_sym_insert_token1] = ACTIONS(4562), + [aux_sym_delete_token1] = ACTIONS(4562), + [aux_sym_highlight_token1] = ACTIONS(4562), + [aux_sym_edit_comment_token1] = ACTIONS(4562), + [anon_sym_CARET_LBRACK] = ACTIONS(4562), + [anon_sym_LBRACK_CARET] = ACTIONS(4562), + [sym_uri_autolink] = ACTIONS(4562), + [sym_email_autolink] = ACTIONS(4562), + [sym__whitespace_ge_2] = ACTIONS(4562), + [aux_sym__whitespace_token1] = ACTIONS(4564), + [sym__word_no_digit] = ACTIONS(4562), + [sym__digits] = ACTIONS(4562), + [anon_sym_DASH_DASH] = ACTIONS(4564), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4562), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4562), + [sym__code_span_start] = ACTIONS(4562), + [sym__emphasis_open_star] = ACTIONS(4562), + [sym__emphasis_open_underscore] = ACTIONS(4562), + [sym__strikeout_open] = ACTIONS(4562), + [sym__latex_span_start] = ACTIONS(4562), + [sym__single_quote_open] = ACTIONS(4562), + [sym__double_quote_open] = ACTIONS(4562), + [sym__superscript_open] = ACTIONS(4562), + [sym__superscript_close] = ACTIONS(4562), + [sym__subscript_open] = ACTIONS(4562), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4562), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4562), + [sym__cite_author_in_text] = ACTIONS(4562), + [sym__cite_suppress_author] = ACTIONS(4562), + [sym__shortcode_open_escaped] = ACTIONS(4562), + [sym__shortcode_open] = ACTIONS(4562), + [sym__unclosed_span] = ACTIONS(4562), + }, + [STATE(804)] = { + [sym__backslash_escape] = ACTIONS(4848), + [sym_entity_reference] = ACTIONS(4848), + [sym_numeric_character_reference] = ACTIONS(4848), + [anon_sym_LT] = ACTIONS(4850), + [anon_sym_GT] = ACTIONS(4848), + [anon_sym_BANG] = ACTIONS(4848), + [anon_sym_DQUOTE] = ACTIONS(4848), + [anon_sym_POUND] = ACTIONS(4848), + [anon_sym_DOLLAR] = ACTIONS(4848), + [anon_sym_PERCENT] = ACTIONS(4848), + [anon_sym_AMP] = ACTIONS(4850), + [anon_sym_SQUOTE] = ACTIONS(4848), + [anon_sym_STAR] = ACTIONS(4848), + [anon_sym_PLUS] = ACTIONS(4848), + [anon_sym_COMMA] = ACTIONS(4848), + [anon_sym_DASH] = ACTIONS(4850), + [anon_sym_DOT] = ACTIONS(4850), + [anon_sym_SLASH] = ACTIONS(4848), + [anon_sym_COLON] = ACTIONS(4848), + [anon_sym_SEMI] = ACTIONS(4848), + [anon_sym_EQ] = ACTIONS(4848), + [anon_sym_QMARK] = ACTIONS(4848), + [anon_sym_LBRACK] = ACTIONS(4850), + [anon_sym_BSLASH] = ACTIONS(4850), + [anon_sym_CARET] = ACTIONS(4850), + [anon_sym__] = ACTIONS(4848), + [anon_sym_BQUOTE] = ACTIONS(4848), + [anon_sym_LBRACE] = ACTIONS(4848), + [anon_sym_PIPE] = ACTIONS(4848), + [anon_sym_TILDE] = ACTIONS(4848), + [anon_sym_LPAREN] = ACTIONS(4848), + [anon_sym_RPAREN] = ACTIONS(4848), + [sym__newline_token] = ACTIONS(4848), + [aux_sym_insert_token1] = ACTIONS(4848), + [aux_sym_delete_token1] = ACTIONS(4848), + [aux_sym_highlight_token1] = ACTIONS(4848), + [aux_sym_edit_comment_token1] = ACTIONS(4848), + [anon_sym_CARET_LBRACK] = ACTIONS(4848), + [anon_sym_LBRACK_CARET] = ACTIONS(4848), + [sym_uri_autolink] = ACTIONS(4848), + [sym_email_autolink] = ACTIONS(4848), + [sym__whitespace_ge_2] = ACTIONS(4848), + [aux_sym__whitespace_token1] = ACTIONS(4850), + [sym__word_no_digit] = ACTIONS(4848), + [sym__digits] = ACTIONS(4848), + [anon_sym_DASH_DASH] = ACTIONS(4850), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4848), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4848), + [sym__code_span_start] = ACTIONS(4848), + [sym__emphasis_open_star] = ACTIONS(4848), + [sym__emphasis_open_underscore] = ACTIONS(4848), + [sym__strikeout_open] = ACTIONS(4848), + [sym__strikeout_close] = ACTIONS(4848), + [sym__latex_span_start] = ACTIONS(4848), + [sym__single_quote_open] = ACTIONS(4848), + [sym__double_quote_open] = ACTIONS(4848), + [sym__superscript_open] = ACTIONS(4848), + [sym__subscript_open] = ACTIONS(4848), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4848), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4848), + [sym__cite_author_in_text] = ACTIONS(4848), + [sym__cite_suppress_author] = ACTIONS(4848), + [sym__shortcode_open_escaped] = ACTIONS(4848), + [sym__shortcode_open] = ACTIONS(4848), + [sym__unclosed_span] = ACTIONS(4848), + }, + [STATE(805)] = { + [sym__backslash_escape] = ACTIONS(4924), + [sym_entity_reference] = ACTIONS(4924), + [sym_numeric_character_reference] = ACTIONS(4924), + [anon_sym_LT] = ACTIONS(4926), + [anon_sym_GT] = ACTIONS(4924), + [anon_sym_BANG] = ACTIONS(4924), + [anon_sym_DQUOTE] = ACTIONS(4924), + [anon_sym_POUND] = ACTIONS(4924), + [anon_sym_DOLLAR] = ACTIONS(4924), + [anon_sym_PERCENT] = ACTIONS(4924), + [anon_sym_AMP] = ACTIONS(4926), + [anon_sym_SQUOTE] = ACTIONS(4924), + [anon_sym_STAR] = ACTIONS(4924), + [anon_sym_PLUS] = ACTIONS(4924), + [anon_sym_COMMA] = ACTIONS(4924), + [anon_sym_DASH] = ACTIONS(4926), + [anon_sym_DOT] = ACTIONS(4926), + [anon_sym_SLASH] = ACTIONS(4924), + [anon_sym_COLON] = ACTIONS(4924), + [anon_sym_SEMI] = ACTIONS(4924), + [anon_sym_EQ] = ACTIONS(4924), + [anon_sym_QMARK] = ACTIONS(4924), + [anon_sym_LBRACK] = ACTIONS(4926), + [anon_sym_BSLASH] = ACTIONS(4926), + [anon_sym_CARET] = ACTIONS(4926), + [anon_sym__] = ACTIONS(4924), + [anon_sym_BQUOTE] = ACTIONS(4924), + [anon_sym_LBRACE] = ACTIONS(4924), + [anon_sym_PIPE] = ACTIONS(4924), + [anon_sym_TILDE] = ACTIONS(4924), + [anon_sym_LPAREN] = ACTIONS(4924), + [anon_sym_RPAREN] = ACTIONS(4924), + [sym__newline_token] = ACTIONS(4924), + [aux_sym_insert_token1] = ACTIONS(4924), + [aux_sym_delete_token1] = ACTIONS(4924), + [aux_sym_highlight_token1] = ACTIONS(4924), + [aux_sym_edit_comment_token1] = ACTIONS(4924), + [anon_sym_CARET_LBRACK] = ACTIONS(4924), + [anon_sym_LBRACK_CARET] = ACTIONS(4924), + [sym_uri_autolink] = ACTIONS(4924), + [sym_email_autolink] = ACTIONS(4924), + [sym__whitespace_ge_2] = ACTIONS(4924), + [aux_sym__whitespace_token1] = ACTIONS(4926), + [sym__word_no_digit] = ACTIONS(4924), + [sym__digits] = ACTIONS(4924), + [anon_sym_DASH_DASH] = ACTIONS(4926), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4924), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4924), + [sym__code_span_start] = ACTIONS(4924), + [sym__emphasis_open_star] = ACTIONS(4924), + [sym__emphasis_open_underscore] = ACTIONS(4924), + [sym__strikeout_open] = ACTIONS(4924), + [sym__latex_span_start] = ACTIONS(4924), + [sym__single_quote_open] = ACTIONS(4924), + [sym__double_quote_open] = ACTIONS(4924), + [sym__superscript_open] = ACTIONS(4924), + [sym__superscript_close] = ACTIONS(4924), + [sym__subscript_open] = ACTIONS(4924), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4924), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4924), + [sym__cite_author_in_text] = ACTIONS(4924), + [sym__cite_suppress_author] = ACTIONS(4924), + [sym__shortcode_open_escaped] = ACTIONS(4924), + [sym__shortcode_open] = ACTIONS(4924), + [sym__unclosed_span] = ACTIONS(4924), + }, + [STATE(806)] = { + [sym__backslash_escape] = ACTIONS(4928), + [sym_entity_reference] = ACTIONS(4928), + [sym_numeric_character_reference] = ACTIONS(4928), + [anon_sym_LT] = ACTIONS(4930), + [anon_sym_GT] = ACTIONS(4928), + [anon_sym_BANG] = ACTIONS(4928), + [anon_sym_DQUOTE] = ACTIONS(4928), + [anon_sym_POUND] = ACTIONS(4928), + [anon_sym_DOLLAR] = ACTIONS(4928), + [anon_sym_PERCENT] = ACTIONS(4928), + [anon_sym_AMP] = ACTIONS(4930), + [anon_sym_SQUOTE] = ACTIONS(4928), + [anon_sym_STAR] = ACTIONS(4928), + [anon_sym_PLUS] = ACTIONS(4928), + [anon_sym_COMMA] = ACTIONS(4928), + [anon_sym_DASH] = ACTIONS(4930), + [anon_sym_DOT] = ACTIONS(4930), + [anon_sym_SLASH] = ACTIONS(4928), + [anon_sym_COLON] = ACTIONS(4928), + [anon_sym_SEMI] = ACTIONS(4928), + [anon_sym_EQ] = ACTIONS(4928), + [anon_sym_QMARK] = ACTIONS(4928), + [anon_sym_LBRACK] = ACTIONS(4930), + [anon_sym_BSLASH] = ACTIONS(4930), + [anon_sym_CARET] = ACTIONS(4930), + [anon_sym__] = ACTIONS(4928), + [anon_sym_BQUOTE] = ACTIONS(4928), + [anon_sym_LBRACE] = ACTIONS(4928), + [anon_sym_PIPE] = ACTIONS(4928), + [anon_sym_TILDE] = ACTIONS(4928), + [anon_sym_LPAREN] = ACTIONS(4928), + [anon_sym_RPAREN] = ACTIONS(4928), + [sym__newline_token] = ACTIONS(4928), + [aux_sym_insert_token1] = ACTIONS(4928), + [aux_sym_delete_token1] = ACTIONS(4928), + [aux_sym_highlight_token1] = ACTIONS(4928), + [aux_sym_edit_comment_token1] = ACTIONS(4928), + [anon_sym_CARET_LBRACK] = ACTIONS(4928), + [anon_sym_LBRACK_CARET] = ACTIONS(4928), + [sym_uri_autolink] = ACTIONS(4928), + [sym_email_autolink] = ACTIONS(4928), + [sym__whitespace_ge_2] = ACTIONS(4928), + [aux_sym__whitespace_token1] = ACTIONS(4930), + [sym__word_no_digit] = ACTIONS(4928), + [sym__digits] = ACTIONS(4928), + [anon_sym_DASH_DASH] = ACTIONS(4930), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4928), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4928), + [sym__code_span_start] = ACTIONS(4928), + [sym__emphasis_open_star] = ACTIONS(4928), + [sym__emphasis_open_underscore] = ACTIONS(4928), + [sym__strikeout_open] = ACTIONS(4928), + [sym__latex_span_start] = ACTIONS(4928), + [sym__single_quote_open] = ACTIONS(4928), + [sym__double_quote_open] = ACTIONS(4928), + [sym__superscript_open] = ACTIONS(4928), + [sym__superscript_close] = ACTIONS(4928), + [sym__subscript_open] = ACTIONS(4928), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4928), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4928), + [sym__cite_author_in_text] = ACTIONS(4928), + [sym__cite_suppress_author] = ACTIONS(4928), + [sym__shortcode_open_escaped] = ACTIONS(4928), + [sym__shortcode_open] = ACTIONS(4928), + [sym__unclosed_span] = ACTIONS(4928), + }, + [STATE(807)] = { + [ts_builtin_sym_end] = ACTIONS(5032), + [sym__backslash_escape] = ACTIONS(5032), + [sym_entity_reference] = ACTIONS(5032), + [sym_numeric_character_reference] = ACTIONS(5032), + [anon_sym_LT] = ACTIONS(5034), + [anon_sym_GT] = ACTIONS(5032), + [anon_sym_BANG] = ACTIONS(5032), + [anon_sym_DQUOTE] = ACTIONS(5032), + [anon_sym_POUND] = ACTIONS(5032), + [anon_sym_DOLLAR] = ACTIONS(5032), + [anon_sym_PERCENT] = ACTIONS(5032), + [anon_sym_AMP] = ACTIONS(5034), + [anon_sym_SQUOTE] = ACTIONS(5032), + [anon_sym_STAR] = ACTIONS(5032), + [anon_sym_PLUS] = ACTIONS(5032), + [anon_sym_COMMA] = ACTIONS(5032), + [anon_sym_DASH] = ACTIONS(5034), + [anon_sym_DOT] = ACTIONS(5034), + [anon_sym_SLASH] = ACTIONS(5032), + [anon_sym_COLON] = ACTIONS(5032), + [anon_sym_SEMI] = ACTIONS(5032), + [anon_sym_EQ] = ACTIONS(5032), + [anon_sym_QMARK] = ACTIONS(5032), + [anon_sym_LBRACK] = ACTIONS(5034), + [anon_sym_BSLASH] = ACTIONS(5034), + [anon_sym_CARET] = ACTIONS(5034), + [anon_sym__] = ACTIONS(5032), + [anon_sym_BQUOTE] = ACTIONS(5032), + [anon_sym_LBRACE] = ACTIONS(5032), + [anon_sym_PIPE] = ACTIONS(5032), + [anon_sym_TILDE] = ACTIONS(5032), + [anon_sym_LPAREN] = ACTIONS(5032), + [anon_sym_RPAREN] = ACTIONS(5032), + [sym__newline_token] = ACTIONS(5032), + [aux_sym_insert_token1] = ACTIONS(5032), + [aux_sym_delete_token1] = ACTIONS(5032), + [aux_sym_highlight_token1] = ACTIONS(5032), + [aux_sym_edit_comment_token1] = ACTIONS(5032), + [anon_sym_CARET_LBRACK] = ACTIONS(5032), + [anon_sym_LBRACK_CARET] = ACTIONS(5032), + [sym_uri_autolink] = ACTIONS(5032), + [sym_email_autolink] = ACTIONS(5032), + [sym__whitespace_ge_2] = ACTIONS(5032), + [aux_sym__whitespace_token1] = ACTIONS(5034), + [sym__word_no_digit] = ACTIONS(5032), + [sym__digits] = ACTIONS(5032), + [anon_sym_DASH_DASH] = ACTIONS(5034), + [anon_sym_DASH_DASH_DASH] = ACTIONS(5032), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5032), + [sym__code_span_start] = ACTIONS(5032), + [sym__emphasis_open_star] = ACTIONS(5032), + [sym__emphasis_open_underscore] = ACTIONS(5032), + [sym__strikeout_open] = ACTIONS(5032), + [sym__latex_span_start] = ACTIONS(5032), + [sym__single_quote_open] = ACTIONS(5032), + [sym__double_quote_open] = ACTIONS(5032), + [sym__superscript_open] = ACTIONS(5032), + [sym__subscript_open] = ACTIONS(5032), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5032), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5032), + [sym__cite_author_in_text] = ACTIONS(5032), + [sym__cite_suppress_author] = ACTIONS(5032), + [sym__shortcode_open_escaped] = ACTIONS(5032), + [sym__shortcode_open] = ACTIONS(5032), + [sym__unclosed_span] = ACTIONS(5032), + }, + [STATE(808)] = { + [ts_builtin_sym_end] = ACTIONS(5036), + [sym__backslash_escape] = ACTIONS(5036), + [sym_entity_reference] = ACTIONS(5036), + [sym_numeric_character_reference] = ACTIONS(5036), + [anon_sym_LT] = ACTIONS(5038), + [anon_sym_GT] = ACTIONS(5036), + [anon_sym_BANG] = ACTIONS(5036), + [anon_sym_DQUOTE] = ACTIONS(5036), + [anon_sym_POUND] = ACTIONS(5036), + [anon_sym_DOLLAR] = ACTIONS(5036), + [anon_sym_PERCENT] = ACTIONS(5036), + [anon_sym_AMP] = ACTIONS(5038), + [anon_sym_SQUOTE] = ACTIONS(5036), + [anon_sym_STAR] = ACTIONS(5036), + [anon_sym_PLUS] = ACTIONS(5036), + [anon_sym_COMMA] = ACTIONS(5036), + [anon_sym_DASH] = ACTIONS(5038), + [anon_sym_DOT] = ACTIONS(5038), + [anon_sym_SLASH] = ACTIONS(5036), + [anon_sym_COLON] = ACTIONS(5036), + [anon_sym_SEMI] = ACTIONS(5036), + [anon_sym_EQ] = ACTIONS(5036), + [anon_sym_QMARK] = ACTIONS(5036), + [anon_sym_LBRACK] = ACTIONS(5038), + [anon_sym_BSLASH] = ACTIONS(5038), + [anon_sym_CARET] = ACTIONS(5038), + [anon_sym__] = ACTIONS(5036), + [anon_sym_BQUOTE] = ACTIONS(5036), + [anon_sym_LBRACE] = ACTIONS(5036), + [anon_sym_PIPE] = ACTIONS(5036), + [anon_sym_TILDE] = ACTIONS(5036), + [anon_sym_LPAREN] = ACTIONS(5036), + [anon_sym_RPAREN] = ACTIONS(5036), + [sym__newline_token] = ACTIONS(5036), + [aux_sym_insert_token1] = ACTIONS(5036), + [aux_sym_delete_token1] = ACTIONS(5036), + [aux_sym_highlight_token1] = ACTIONS(5036), + [aux_sym_edit_comment_token1] = ACTIONS(5036), + [anon_sym_CARET_LBRACK] = ACTIONS(5036), + [anon_sym_LBRACK_CARET] = ACTIONS(5036), + [sym_uri_autolink] = ACTIONS(5036), + [sym_email_autolink] = ACTIONS(5036), + [sym__whitespace_ge_2] = ACTIONS(5036), + [aux_sym__whitespace_token1] = ACTIONS(5038), + [sym__word_no_digit] = ACTIONS(5036), + [sym__digits] = ACTIONS(5036), + [anon_sym_DASH_DASH] = ACTIONS(5038), + [anon_sym_DASH_DASH_DASH] = ACTIONS(5036), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5036), + [sym__code_span_start] = ACTIONS(5036), + [sym__emphasis_open_star] = ACTIONS(5036), + [sym__emphasis_open_underscore] = ACTIONS(5036), + [sym__strikeout_open] = ACTIONS(5036), + [sym__latex_span_start] = ACTIONS(5036), + [sym__single_quote_open] = ACTIONS(5036), + [sym__double_quote_open] = ACTIONS(5036), + [sym__superscript_open] = ACTIONS(5036), + [sym__subscript_open] = ACTIONS(5036), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5036), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5036), + [sym__cite_author_in_text] = ACTIONS(5036), + [sym__cite_suppress_author] = ACTIONS(5036), + [sym__shortcode_open_escaped] = ACTIONS(5036), + [sym__shortcode_open] = ACTIONS(5036), + [sym__unclosed_span] = ACTIONS(5036), + }, + [STATE(809)] = { + [sym__backslash_escape] = ACTIONS(4940), + [sym_entity_reference] = ACTIONS(4940), + [sym_numeric_character_reference] = ACTIONS(4940), + [anon_sym_LT] = ACTIONS(4942), + [anon_sym_GT] = ACTIONS(4940), + [anon_sym_BANG] = ACTIONS(4940), + [anon_sym_DQUOTE] = ACTIONS(4940), + [anon_sym_POUND] = ACTIONS(4940), + [anon_sym_DOLLAR] = ACTIONS(4940), + [anon_sym_PERCENT] = ACTIONS(4940), + [anon_sym_AMP] = ACTIONS(4942), + [anon_sym_SQUOTE] = ACTIONS(4940), + [anon_sym_STAR] = ACTIONS(4940), + [anon_sym_PLUS] = ACTIONS(4940), + [anon_sym_COMMA] = ACTIONS(4940), + [anon_sym_DASH] = ACTIONS(4942), + [anon_sym_DOT] = ACTIONS(4942), + [anon_sym_SLASH] = ACTIONS(4940), + [anon_sym_COLON] = ACTIONS(4940), + [anon_sym_SEMI] = ACTIONS(4940), + [anon_sym_EQ] = ACTIONS(4940), + [anon_sym_QMARK] = ACTIONS(4940), + [anon_sym_LBRACK] = ACTIONS(4942), + [anon_sym_BSLASH] = ACTIONS(4942), + [anon_sym_CARET] = ACTIONS(4942), + [anon_sym__] = ACTIONS(4940), + [anon_sym_BQUOTE] = ACTIONS(4940), + [anon_sym_LBRACE] = ACTIONS(4940), + [anon_sym_PIPE] = ACTIONS(4940), + [anon_sym_TILDE] = ACTIONS(4940), + [anon_sym_LPAREN] = ACTIONS(4940), + [anon_sym_RPAREN] = ACTIONS(4940), + [sym__newline_token] = ACTIONS(4940), + [aux_sym_insert_token1] = ACTIONS(4940), + [aux_sym_delete_token1] = ACTIONS(4940), + [aux_sym_highlight_token1] = ACTIONS(4940), + [aux_sym_edit_comment_token1] = ACTIONS(4940), + [anon_sym_CARET_LBRACK] = ACTIONS(4940), + [anon_sym_LBRACK_CARET] = ACTIONS(4940), + [sym_uri_autolink] = ACTIONS(4940), + [sym_email_autolink] = ACTIONS(4940), + [sym__whitespace_ge_2] = ACTIONS(4940), + [aux_sym__whitespace_token1] = ACTIONS(4942), + [sym__word_no_digit] = ACTIONS(4940), + [sym__digits] = ACTIONS(4940), + [anon_sym_DASH_DASH] = ACTIONS(4942), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4940), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4940), + [sym__code_span_start] = ACTIONS(4940), + [sym__emphasis_open_star] = ACTIONS(4940), + [sym__emphasis_open_underscore] = ACTIONS(4940), + [sym__strikeout_open] = ACTIONS(4940), + [sym__latex_span_start] = ACTIONS(4940), + [sym__single_quote_open] = ACTIONS(4940), + [sym__double_quote_open] = ACTIONS(4940), + [sym__superscript_open] = ACTIONS(4940), + [sym__superscript_close] = ACTIONS(4940), + [sym__subscript_open] = ACTIONS(4940), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4940), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4940), + [sym__cite_author_in_text] = ACTIONS(4940), + [sym__cite_suppress_author] = ACTIONS(4940), + [sym__shortcode_open_escaped] = ACTIONS(4940), + [sym__shortcode_open] = ACTIONS(4940), + [sym__unclosed_span] = ACTIONS(4940), + }, + [STATE(810)] = { + [sym__backslash_escape] = ACTIONS(4852), + [sym_entity_reference] = ACTIONS(4852), + [sym_numeric_character_reference] = ACTIONS(4852), + [anon_sym_LT] = ACTIONS(4854), + [anon_sym_GT] = ACTIONS(4852), + [anon_sym_BANG] = ACTIONS(4852), + [anon_sym_DQUOTE] = ACTIONS(4852), + [anon_sym_POUND] = ACTIONS(4852), + [anon_sym_DOLLAR] = ACTIONS(4852), + [anon_sym_PERCENT] = ACTIONS(4852), + [anon_sym_AMP] = ACTIONS(4854), + [anon_sym_SQUOTE] = ACTIONS(4852), + [anon_sym_STAR] = ACTIONS(4852), + [anon_sym_PLUS] = ACTIONS(4852), + [anon_sym_COMMA] = ACTIONS(4852), + [anon_sym_DASH] = ACTIONS(4854), + [anon_sym_DOT] = ACTIONS(4854), + [anon_sym_SLASH] = ACTIONS(4852), + [anon_sym_COLON] = ACTIONS(4852), + [anon_sym_SEMI] = ACTIONS(4852), + [anon_sym_EQ] = ACTIONS(4852), + [anon_sym_QMARK] = ACTIONS(4852), + [anon_sym_LBRACK] = ACTIONS(4854), + [anon_sym_BSLASH] = ACTIONS(4854), + [anon_sym_CARET] = ACTIONS(4854), + [anon_sym__] = ACTIONS(4852), + [anon_sym_BQUOTE] = ACTIONS(4852), + [anon_sym_LBRACE] = ACTIONS(4852), + [anon_sym_PIPE] = ACTIONS(4852), + [anon_sym_TILDE] = ACTIONS(4852), + [anon_sym_LPAREN] = ACTIONS(4852), + [anon_sym_RPAREN] = ACTIONS(4852), + [sym__newline_token] = ACTIONS(4852), + [aux_sym_insert_token1] = ACTIONS(4852), + [aux_sym_delete_token1] = ACTIONS(4852), + [aux_sym_highlight_token1] = ACTIONS(4852), + [aux_sym_edit_comment_token1] = ACTIONS(4852), + [anon_sym_CARET_LBRACK] = ACTIONS(4852), + [anon_sym_LBRACK_CARET] = ACTIONS(4852), + [sym_uri_autolink] = ACTIONS(4852), + [sym_email_autolink] = ACTIONS(4852), + [sym__whitespace_ge_2] = ACTIONS(4852), + [aux_sym__whitespace_token1] = ACTIONS(4854), + [sym__word_no_digit] = ACTIONS(4852), + [sym__digits] = ACTIONS(4852), + [anon_sym_DASH_DASH] = ACTIONS(4854), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4852), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4852), + [sym__code_span_start] = ACTIONS(4852), + [sym__emphasis_open_star] = ACTIONS(4852), + [sym__emphasis_open_underscore] = ACTIONS(4852), + [sym__strikeout_open] = ACTIONS(4852), + [sym__strikeout_close] = ACTIONS(4852), + [sym__latex_span_start] = ACTIONS(4852), + [sym__single_quote_open] = ACTIONS(4852), + [sym__double_quote_open] = ACTIONS(4852), + [sym__superscript_open] = ACTIONS(4852), + [sym__subscript_open] = ACTIONS(4852), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4852), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4852), + [sym__cite_author_in_text] = ACTIONS(4852), + [sym__cite_suppress_author] = ACTIONS(4852), + [sym__shortcode_open_escaped] = ACTIONS(4852), + [sym__shortcode_open] = ACTIONS(4852), + [sym__unclosed_span] = ACTIONS(4852), + }, + [STATE(811)] = { + [sym__backslash_escape] = ACTIONS(4566), + [sym_entity_reference] = ACTIONS(4566), + [sym_numeric_character_reference] = ACTIONS(4566), + [anon_sym_LT] = ACTIONS(4568), + [anon_sym_GT] = ACTIONS(4566), + [anon_sym_BANG] = ACTIONS(4566), + [anon_sym_DQUOTE] = ACTIONS(4566), + [anon_sym_POUND] = ACTIONS(4566), + [anon_sym_DOLLAR] = ACTIONS(4566), + [anon_sym_PERCENT] = ACTIONS(4566), + [anon_sym_AMP] = ACTIONS(4568), + [anon_sym_SQUOTE] = ACTIONS(4566), + [anon_sym_STAR] = ACTIONS(4566), + [anon_sym_PLUS] = ACTIONS(4566), + [anon_sym_COMMA] = ACTIONS(4566), + [anon_sym_DASH] = ACTIONS(4568), + [anon_sym_DOT] = ACTIONS(4568), + [anon_sym_SLASH] = ACTIONS(4566), + [anon_sym_COLON] = ACTIONS(4566), + [anon_sym_SEMI] = ACTIONS(4566), + [anon_sym_EQ] = ACTIONS(4566), + [anon_sym_QMARK] = ACTIONS(4566), + [anon_sym_LBRACK] = ACTIONS(4568), + [anon_sym_BSLASH] = ACTIONS(4568), + [anon_sym_CARET] = ACTIONS(4568), + [anon_sym__] = ACTIONS(4566), + [anon_sym_BQUOTE] = ACTIONS(4566), + [anon_sym_LBRACE] = ACTIONS(4566), + [anon_sym_PIPE] = ACTIONS(4566), + [anon_sym_TILDE] = ACTIONS(4566), + [anon_sym_LPAREN] = ACTIONS(4566), + [anon_sym_RPAREN] = ACTIONS(4566), + [sym__newline_token] = ACTIONS(4566), + [aux_sym_insert_token1] = ACTIONS(4566), + [aux_sym_delete_token1] = ACTIONS(4566), + [aux_sym_highlight_token1] = ACTIONS(4566), + [aux_sym_edit_comment_token1] = ACTIONS(4566), + [anon_sym_CARET_LBRACK] = ACTIONS(4566), + [anon_sym_LBRACK_CARET] = ACTIONS(4566), + [sym_uri_autolink] = ACTIONS(4566), + [sym_email_autolink] = ACTIONS(4566), + [sym__whitespace_ge_2] = ACTIONS(4566), + [aux_sym__whitespace_token1] = ACTIONS(4568), + [sym__word_no_digit] = ACTIONS(4566), + [sym__digits] = ACTIONS(4566), + [anon_sym_DASH_DASH] = ACTIONS(4568), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4566), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4566), + [sym__code_span_start] = ACTIONS(4566), + [sym__emphasis_open_star] = ACTIONS(4566), + [sym__emphasis_open_underscore] = ACTIONS(4566), + [sym__strikeout_open] = ACTIONS(4566), + [sym__strikeout_close] = ACTIONS(4566), + [sym__latex_span_start] = ACTIONS(4566), + [sym__single_quote_open] = ACTIONS(4566), + [sym__double_quote_open] = ACTIONS(4566), + [sym__superscript_open] = ACTIONS(4566), + [sym__subscript_open] = ACTIONS(4566), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4566), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4566), + [sym__cite_author_in_text] = ACTIONS(4566), + [sym__cite_suppress_author] = ACTIONS(4566), + [sym__shortcode_open_escaped] = ACTIONS(4566), + [sym__shortcode_open] = ACTIONS(4566), + [sym__unclosed_span] = ACTIONS(4566), + }, + [STATE(812)] = { + [sym__backslash_escape] = ACTIONS(4868), + [sym_entity_reference] = ACTIONS(4868), + [sym_numeric_character_reference] = ACTIONS(4868), + [anon_sym_LT] = ACTIONS(4870), + [anon_sym_GT] = ACTIONS(4868), + [anon_sym_BANG] = ACTIONS(4868), + [anon_sym_DQUOTE] = ACTIONS(4868), + [anon_sym_POUND] = ACTIONS(4868), + [anon_sym_DOLLAR] = ACTIONS(4868), + [anon_sym_PERCENT] = ACTIONS(4868), + [anon_sym_AMP] = ACTIONS(4870), + [anon_sym_SQUOTE] = ACTIONS(4868), + [anon_sym_STAR] = ACTIONS(4868), + [anon_sym_PLUS] = ACTIONS(4868), + [anon_sym_COMMA] = ACTIONS(4868), + [anon_sym_DASH] = ACTIONS(4870), + [anon_sym_DOT] = ACTIONS(4870), + [anon_sym_SLASH] = ACTIONS(4868), + [anon_sym_COLON] = ACTIONS(4868), + [anon_sym_SEMI] = ACTIONS(4868), + [anon_sym_EQ] = ACTIONS(4868), + [anon_sym_QMARK] = ACTIONS(4868), + [anon_sym_LBRACK] = ACTIONS(4870), + [anon_sym_BSLASH] = ACTIONS(4870), + [anon_sym_CARET] = ACTIONS(4870), + [anon_sym__] = ACTIONS(4868), + [anon_sym_BQUOTE] = ACTIONS(4868), + [anon_sym_LBRACE] = ACTIONS(4868), + [anon_sym_PIPE] = ACTIONS(4868), + [anon_sym_TILDE] = ACTIONS(4868), + [anon_sym_LPAREN] = ACTIONS(4868), + [anon_sym_RPAREN] = ACTIONS(4868), + [sym__newline_token] = ACTIONS(4868), + [aux_sym_insert_token1] = ACTIONS(4868), + [aux_sym_delete_token1] = ACTIONS(4868), + [aux_sym_highlight_token1] = ACTIONS(4868), + [aux_sym_edit_comment_token1] = ACTIONS(4868), + [anon_sym_CARET_LBRACK] = ACTIONS(4868), + [anon_sym_LBRACK_CARET] = ACTIONS(4868), + [sym_uri_autolink] = ACTIONS(4868), + [sym_email_autolink] = ACTIONS(4868), + [sym__whitespace_ge_2] = ACTIONS(4868), + [aux_sym__whitespace_token1] = ACTIONS(4870), + [sym__word_no_digit] = ACTIONS(4868), + [sym__digits] = ACTIONS(4868), + [anon_sym_DASH_DASH] = ACTIONS(4870), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4868), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4868), + [sym__code_span_start] = ACTIONS(4868), + [sym__emphasis_open_star] = ACTIONS(4868), + [sym__emphasis_open_underscore] = ACTIONS(4868), + [sym__emphasis_close_underscore] = ACTIONS(4868), + [sym__strikeout_open] = ACTIONS(4868), + [sym__latex_span_start] = ACTIONS(4868), + [sym__single_quote_open] = ACTIONS(4868), + [sym__double_quote_open] = ACTIONS(4868), + [sym__superscript_open] = ACTIONS(4868), + [sym__subscript_open] = ACTIONS(4868), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4868), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4868), + [sym__cite_author_in_text] = ACTIONS(4868), + [sym__cite_suppress_author] = ACTIONS(4868), + [sym__shortcode_open_escaped] = ACTIONS(4868), + [sym__shortcode_open] = ACTIONS(4868), + [sym__unclosed_span] = ACTIONS(4868), + }, + [STATE(813)] = { + [sym__backslash_escape] = ACTIONS(4572), + [sym_entity_reference] = ACTIONS(4572), + [sym_numeric_character_reference] = ACTIONS(4572), + [anon_sym_LT] = ACTIONS(4574), + [anon_sym_GT] = ACTIONS(4572), + [anon_sym_BANG] = ACTIONS(4572), + [anon_sym_DQUOTE] = ACTIONS(4572), + [anon_sym_POUND] = ACTIONS(4572), + [anon_sym_DOLLAR] = ACTIONS(4572), + [anon_sym_PERCENT] = ACTIONS(4572), + [anon_sym_AMP] = ACTIONS(4574), + [anon_sym_SQUOTE] = ACTIONS(4572), + [anon_sym_STAR] = ACTIONS(4572), + [anon_sym_PLUS] = ACTIONS(4572), + [anon_sym_COMMA] = ACTIONS(4572), + [anon_sym_DASH] = ACTIONS(4574), + [anon_sym_DOT] = ACTIONS(4574), + [anon_sym_SLASH] = ACTIONS(4572), + [anon_sym_COLON] = ACTIONS(4572), + [anon_sym_SEMI] = ACTIONS(4572), + [anon_sym_EQ] = ACTIONS(4572), + [anon_sym_QMARK] = ACTIONS(4572), + [anon_sym_LBRACK] = ACTIONS(4574), + [anon_sym_BSLASH] = ACTIONS(4574), + [anon_sym_CARET] = ACTIONS(4574), + [anon_sym__] = ACTIONS(4572), + [anon_sym_BQUOTE] = ACTIONS(4572), + [anon_sym_LBRACE] = ACTIONS(4572), + [anon_sym_PIPE] = ACTIONS(4572), + [anon_sym_TILDE] = ACTIONS(4572), + [anon_sym_LPAREN] = ACTIONS(4572), + [anon_sym_RPAREN] = ACTIONS(4572), + [sym__newline_token] = ACTIONS(4572), + [aux_sym_insert_token1] = ACTIONS(4572), + [aux_sym_delete_token1] = ACTIONS(4572), + [aux_sym_highlight_token1] = ACTIONS(4572), + [aux_sym_edit_comment_token1] = ACTIONS(4572), + [anon_sym_CARET_LBRACK] = ACTIONS(4572), + [anon_sym_LBRACK_CARET] = ACTIONS(4572), + [sym_uri_autolink] = ACTIONS(4572), + [sym_email_autolink] = ACTIONS(4572), + [sym__whitespace_ge_2] = ACTIONS(4572), + [aux_sym__whitespace_token1] = ACTIONS(4574), + [sym__word_no_digit] = ACTIONS(4572), + [sym__digits] = ACTIONS(4572), + [anon_sym_DASH_DASH] = ACTIONS(4574), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4572), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4572), + [sym__code_span_start] = ACTIONS(4572), + [sym__emphasis_open_star] = ACTIONS(4572), + [sym__emphasis_open_underscore] = ACTIONS(4572), + [sym__strikeout_open] = ACTIONS(4572), + [sym__strikeout_close] = ACTIONS(4572), + [sym__latex_span_start] = ACTIONS(4572), + [sym__single_quote_open] = ACTIONS(4572), + [sym__double_quote_open] = ACTIONS(4572), + [sym__superscript_open] = ACTIONS(4572), + [sym__subscript_open] = ACTIONS(4572), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4572), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4572), + [sym__cite_author_in_text] = ACTIONS(4572), + [sym__cite_suppress_author] = ACTIONS(4572), + [sym__shortcode_open_escaped] = ACTIONS(4572), + [sym__shortcode_open] = ACTIONS(4572), + [sym__unclosed_span] = ACTIONS(4572), + }, + [STATE(814)] = { + [sym__backslash_escape] = ACTIONS(4872), + [sym_entity_reference] = ACTIONS(4872), + [sym_numeric_character_reference] = ACTIONS(4872), + [anon_sym_LT] = ACTIONS(4874), + [anon_sym_GT] = ACTIONS(4872), + [anon_sym_BANG] = ACTIONS(4872), + [anon_sym_DQUOTE] = ACTIONS(4872), + [anon_sym_POUND] = ACTIONS(4872), + [anon_sym_DOLLAR] = ACTIONS(4872), + [anon_sym_PERCENT] = ACTIONS(4872), + [anon_sym_AMP] = ACTIONS(4874), + [anon_sym_SQUOTE] = ACTIONS(4872), + [anon_sym_STAR] = ACTIONS(4872), + [anon_sym_PLUS] = ACTIONS(4872), + [anon_sym_COMMA] = ACTIONS(4872), + [anon_sym_DASH] = ACTIONS(4874), + [anon_sym_DOT] = ACTIONS(4874), + [anon_sym_SLASH] = ACTIONS(4872), + [anon_sym_COLON] = ACTIONS(4872), + [anon_sym_SEMI] = ACTIONS(4872), + [anon_sym_EQ] = ACTIONS(4872), + [anon_sym_QMARK] = ACTIONS(4872), + [anon_sym_LBRACK] = ACTIONS(4874), + [anon_sym_BSLASH] = ACTIONS(4874), + [anon_sym_CARET] = ACTIONS(4874), + [anon_sym__] = ACTIONS(4872), + [anon_sym_BQUOTE] = ACTIONS(4872), + [anon_sym_LBRACE] = ACTIONS(4872), + [anon_sym_PIPE] = ACTIONS(4872), + [anon_sym_TILDE] = ACTIONS(4872), + [anon_sym_LPAREN] = ACTIONS(4872), + [anon_sym_RPAREN] = ACTIONS(4872), + [sym__newline_token] = ACTIONS(4872), + [aux_sym_insert_token1] = ACTIONS(4872), + [aux_sym_delete_token1] = ACTIONS(4872), + [aux_sym_highlight_token1] = ACTIONS(4872), + [aux_sym_edit_comment_token1] = ACTIONS(4872), + [anon_sym_CARET_LBRACK] = ACTIONS(4872), + [anon_sym_LBRACK_CARET] = ACTIONS(4872), + [sym_uri_autolink] = ACTIONS(4872), + [sym_email_autolink] = ACTIONS(4872), + [sym__whitespace_ge_2] = ACTIONS(4872), + [aux_sym__whitespace_token1] = ACTIONS(4874), + [sym__word_no_digit] = ACTIONS(4872), + [sym__digits] = ACTIONS(4872), + [anon_sym_DASH_DASH] = ACTIONS(4874), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4872), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4872), + [sym__code_span_start] = ACTIONS(4872), + [sym__emphasis_open_star] = ACTIONS(4872), + [sym__emphasis_open_underscore] = ACTIONS(4872), + [sym__emphasis_close_underscore] = ACTIONS(4872), + [sym__strikeout_open] = ACTIONS(4872), + [sym__latex_span_start] = ACTIONS(4872), + [sym__single_quote_open] = ACTIONS(4872), + [sym__double_quote_open] = ACTIONS(4872), + [sym__superscript_open] = ACTIONS(4872), + [sym__subscript_open] = ACTIONS(4872), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4872), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4872), + [sym__cite_author_in_text] = ACTIONS(4872), + [sym__cite_suppress_author] = ACTIONS(4872), + [sym__shortcode_open_escaped] = ACTIONS(4872), + [sym__shortcode_open] = ACTIONS(4872), + [sym__unclosed_span] = ACTIONS(4872), + }, + [STATE(815)] = { + [sym__backslash_escape] = ACTIONS(4860), + [sym_entity_reference] = ACTIONS(4860), + [sym_numeric_character_reference] = ACTIONS(4860), + [anon_sym_LT] = ACTIONS(4862), + [anon_sym_GT] = ACTIONS(4860), + [anon_sym_BANG] = ACTIONS(4860), + [anon_sym_DQUOTE] = ACTIONS(4860), + [anon_sym_POUND] = ACTIONS(4860), + [anon_sym_DOLLAR] = ACTIONS(4860), + [anon_sym_PERCENT] = ACTIONS(4860), + [anon_sym_AMP] = ACTIONS(4862), + [anon_sym_SQUOTE] = ACTIONS(4860), + [anon_sym_STAR] = ACTIONS(4860), + [anon_sym_PLUS] = ACTIONS(4860), + [anon_sym_COMMA] = ACTIONS(4860), + [anon_sym_DASH] = ACTIONS(4862), + [anon_sym_DOT] = ACTIONS(4862), + [anon_sym_SLASH] = ACTIONS(4860), + [anon_sym_COLON] = ACTIONS(4860), + [anon_sym_SEMI] = ACTIONS(4860), + [anon_sym_EQ] = ACTIONS(4860), + [anon_sym_QMARK] = ACTIONS(4860), + [anon_sym_LBRACK] = ACTIONS(4862), + [anon_sym_BSLASH] = ACTIONS(4862), + [anon_sym_CARET] = ACTIONS(4862), + [anon_sym__] = ACTIONS(4860), + [anon_sym_BQUOTE] = ACTIONS(4860), + [anon_sym_LBRACE] = ACTIONS(4860), + [anon_sym_PIPE] = ACTIONS(4860), + [anon_sym_TILDE] = ACTIONS(4860), + [anon_sym_LPAREN] = ACTIONS(4860), + [anon_sym_RPAREN] = ACTIONS(4860), + [sym__newline_token] = ACTIONS(4860), + [aux_sym_insert_token1] = ACTIONS(4860), + [aux_sym_delete_token1] = ACTIONS(4860), + [aux_sym_highlight_token1] = ACTIONS(4860), + [aux_sym_edit_comment_token1] = ACTIONS(4860), + [anon_sym_CARET_LBRACK] = ACTIONS(4860), + [anon_sym_LBRACK_CARET] = ACTIONS(4860), + [sym_uri_autolink] = ACTIONS(4860), + [sym_email_autolink] = ACTIONS(4860), + [sym__whitespace_ge_2] = ACTIONS(4860), + [aux_sym__whitespace_token1] = ACTIONS(4862), + [sym__word_no_digit] = ACTIONS(4860), + [sym__digits] = ACTIONS(4860), + [anon_sym_DASH_DASH] = ACTIONS(4862), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4860), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4860), + [sym__code_span_start] = ACTIONS(4860), + [sym__emphasis_open_star] = ACTIONS(4860), + [sym__emphasis_open_underscore] = ACTIONS(4860), + [sym__strikeout_open] = ACTIONS(4860), + [sym__strikeout_close] = ACTIONS(4860), + [sym__latex_span_start] = ACTIONS(4860), + [sym__single_quote_open] = ACTIONS(4860), + [sym__double_quote_open] = ACTIONS(4860), + [sym__superscript_open] = ACTIONS(4860), + [sym__subscript_open] = ACTIONS(4860), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4860), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4860), + [sym__cite_author_in_text] = ACTIONS(4860), + [sym__cite_suppress_author] = ACTIONS(4860), + [sym__shortcode_open_escaped] = ACTIONS(4860), + [sym__shortcode_open] = ACTIONS(4860), + [sym__unclosed_span] = ACTIONS(4860), + }, + [STATE(816)] = { + [sym__backslash_escape] = ACTIONS(4648), + [sym_entity_reference] = ACTIONS(4648), + [sym_numeric_character_reference] = ACTIONS(4648), + [anon_sym_LT] = ACTIONS(4650), + [anon_sym_GT] = ACTIONS(4648), + [anon_sym_BANG] = ACTIONS(4648), + [anon_sym_DQUOTE] = ACTIONS(4648), + [anon_sym_POUND] = ACTIONS(4648), + [anon_sym_DOLLAR] = ACTIONS(4648), + [anon_sym_PERCENT] = ACTIONS(4648), + [anon_sym_AMP] = ACTIONS(4650), + [anon_sym_SQUOTE] = ACTIONS(4648), + [anon_sym_STAR] = ACTIONS(4648), + [anon_sym_PLUS] = ACTIONS(4648), + [anon_sym_COMMA] = ACTIONS(4648), + [anon_sym_DASH] = ACTIONS(4650), + [anon_sym_DOT] = ACTIONS(4650), + [anon_sym_SLASH] = ACTIONS(4648), + [anon_sym_COLON] = ACTIONS(4648), + [anon_sym_SEMI] = ACTIONS(4648), + [anon_sym_EQ] = ACTIONS(4648), + [anon_sym_QMARK] = ACTIONS(4648), + [anon_sym_LBRACK] = ACTIONS(4650), + [anon_sym_BSLASH] = ACTIONS(4650), + [anon_sym_CARET] = ACTIONS(4650), + [anon_sym__] = ACTIONS(4648), + [anon_sym_BQUOTE] = ACTIONS(4648), + [anon_sym_LBRACE] = ACTIONS(4648), + [anon_sym_PIPE] = ACTIONS(4648), + [anon_sym_TILDE] = ACTIONS(4648), + [anon_sym_LPAREN] = ACTIONS(4648), + [anon_sym_RPAREN] = ACTIONS(4648), + [sym__newline_token] = ACTIONS(4648), + [aux_sym_insert_token1] = ACTIONS(4648), + [aux_sym_delete_token1] = ACTIONS(4648), + [aux_sym_highlight_token1] = ACTIONS(4648), + [aux_sym_edit_comment_token1] = ACTIONS(4648), + [anon_sym_CARET_LBRACK] = ACTIONS(4648), + [anon_sym_LBRACK_CARET] = ACTIONS(4648), + [sym_uri_autolink] = ACTIONS(4648), + [sym_email_autolink] = ACTIONS(4648), + [sym__whitespace_ge_2] = ACTIONS(4648), + [aux_sym__whitespace_token1] = ACTIONS(4650), + [sym__word_no_digit] = ACTIONS(4648), + [sym__digits] = ACTIONS(4648), + [anon_sym_DASH_DASH] = ACTIONS(4650), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4648), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4648), + [sym__code_span_start] = ACTIONS(4648), + [sym__emphasis_open_star] = ACTIONS(4648), + [sym__emphasis_open_underscore] = ACTIONS(4648), + [sym__strikeout_open] = ACTIONS(4648), + [sym__latex_span_start] = ACTIONS(4648), + [sym__single_quote_open] = ACTIONS(4648), + [sym__double_quote_open] = ACTIONS(4648), + [sym__superscript_open] = ACTIONS(4648), + [sym__subscript_open] = ACTIONS(4648), + [sym__subscript_close] = ACTIONS(4648), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4648), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4648), + [sym__cite_author_in_text] = ACTIONS(4648), + [sym__cite_suppress_author] = ACTIONS(4648), + [sym__shortcode_open_escaped] = ACTIONS(4648), + [sym__shortcode_open] = ACTIONS(4648), + [sym__unclosed_span] = ACTIONS(4648), + }, + [STATE(817)] = { + [sym__backslash_escape] = ACTIONS(4864), + [sym_entity_reference] = ACTIONS(4864), + [sym_numeric_character_reference] = ACTIONS(4864), + [anon_sym_LT] = ACTIONS(4866), + [anon_sym_GT] = ACTIONS(4864), + [anon_sym_BANG] = ACTIONS(4864), + [anon_sym_DQUOTE] = ACTIONS(4864), + [anon_sym_POUND] = ACTIONS(4864), + [anon_sym_DOLLAR] = ACTIONS(4864), + [anon_sym_PERCENT] = ACTIONS(4864), + [anon_sym_AMP] = ACTIONS(4866), + [anon_sym_SQUOTE] = ACTIONS(4864), + [anon_sym_STAR] = ACTIONS(4864), + [anon_sym_PLUS] = ACTIONS(4864), + [anon_sym_COMMA] = ACTIONS(4864), + [anon_sym_DASH] = ACTIONS(4866), + [anon_sym_DOT] = ACTIONS(4866), + [anon_sym_SLASH] = ACTIONS(4864), + [anon_sym_COLON] = ACTIONS(4864), + [anon_sym_SEMI] = ACTIONS(4864), + [anon_sym_EQ] = ACTIONS(4864), + [anon_sym_QMARK] = ACTIONS(4864), + [anon_sym_LBRACK] = ACTIONS(4866), + [anon_sym_BSLASH] = ACTIONS(4866), + [anon_sym_CARET] = ACTIONS(4866), + [anon_sym__] = ACTIONS(4864), + [anon_sym_BQUOTE] = ACTIONS(4864), + [anon_sym_LBRACE] = ACTIONS(4864), + [anon_sym_PIPE] = ACTIONS(4864), + [anon_sym_TILDE] = ACTIONS(4864), + [anon_sym_LPAREN] = ACTIONS(4864), + [anon_sym_RPAREN] = ACTIONS(4864), + [sym__newline_token] = ACTIONS(4864), + [aux_sym_insert_token1] = ACTIONS(4864), + [aux_sym_delete_token1] = ACTIONS(4864), + [aux_sym_highlight_token1] = ACTIONS(4864), + [aux_sym_edit_comment_token1] = ACTIONS(4864), + [anon_sym_CARET_LBRACK] = ACTIONS(4864), + [anon_sym_LBRACK_CARET] = ACTIONS(4864), + [sym_uri_autolink] = ACTIONS(4864), + [sym_email_autolink] = ACTIONS(4864), + [sym__whitespace_ge_2] = ACTIONS(4864), + [aux_sym__whitespace_token1] = ACTIONS(4866), + [sym__word_no_digit] = ACTIONS(4864), + [sym__digits] = ACTIONS(4864), + [anon_sym_DASH_DASH] = ACTIONS(4866), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4864), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4864), + [sym__code_span_start] = ACTIONS(4864), + [sym__emphasis_open_star] = ACTIONS(4864), + [sym__emphasis_open_underscore] = ACTIONS(4864), + [sym__strikeout_open] = ACTIONS(4864), + [sym__strikeout_close] = ACTIONS(4864), + [sym__latex_span_start] = ACTIONS(4864), + [sym__single_quote_open] = ACTIONS(4864), + [sym__double_quote_open] = ACTIONS(4864), + [sym__superscript_open] = ACTIONS(4864), + [sym__subscript_open] = ACTIONS(4864), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4864), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4864), + [sym__cite_author_in_text] = ACTIONS(4864), + [sym__cite_suppress_author] = ACTIONS(4864), + [sym__shortcode_open_escaped] = ACTIONS(4864), + [sym__shortcode_open] = ACTIONS(4864), + [sym__unclosed_span] = ACTIONS(4864), + }, + [STATE(818)] = { + [sym__backslash_escape] = ACTIONS(4868), + [sym_entity_reference] = ACTIONS(4868), + [sym_numeric_character_reference] = ACTIONS(4868), + [anon_sym_LT] = ACTIONS(4870), + [anon_sym_GT] = ACTIONS(4868), + [anon_sym_BANG] = ACTIONS(4868), + [anon_sym_DQUOTE] = ACTIONS(4868), + [anon_sym_POUND] = ACTIONS(4868), + [anon_sym_DOLLAR] = ACTIONS(4868), + [anon_sym_PERCENT] = ACTIONS(4868), + [anon_sym_AMP] = ACTIONS(4870), + [anon_sym_SQUOTE] = ACTIONS(4868), + [anon_sym_STAR] = ACTIONS(4868), + [anon_sym_PLUS] = ACTIONS(4868), + [anon_sym_COMMA] = ACTIONS(4868), + [anon_sym_DASH] = ACTIONS(4870), + [anon_sym_DOT] = ACTIONS(4870), + [anon_sym_SLASH] = ACTIONS(4868), + [anon_sym_COLON] = ACTIONS(4868), + [anon_sym_SEMI] = ACTIONS(4868), + [anon_sym_EQ] = ACTIONS(4868), + [anon_sym_QMARK] = ACTIONS(4868), + [anon_sym_LBRACK] = ACTIONS(4870), + [anon_sym_BSLASH] = ACTIONS(4870), + [anon_sym_CARET] = ACTIONS(4870), + [anon_sym__] = ACTIONS(4868), + [anon_sym_BQUOTE] = ACTIONS(4868), + [anon_sym_LBRACE] = ACTIONS(4868), + [anon_sym_PIPE] = ACTIONS(4868), + [anon_sym_TILDE] = ACTIONS(4868), + [anon_sym_LPAREN] = ACTIONS(4868), + [anon_sym_RPAREN] = ACTIONS(4868), + [sym__newline_token] = ACTIONS(4868), + [aux_sym_insert_token1] = ACTIONS(4868), + [aux_sym_delete_token1] = ACTIONS(4868), + [aux_sym_highlight_token1] = ACTIONS(4868), + [aux_sym_edit_comment_token1] = ACTIONS(4868), + [anon_sym_CARET_LBRACK] = ACTIONS(4868), + [anon_sym_LBRACK_CARET] = ACTIONS(4868), + [sym_uri_autolink] = ACTIONS(4868), + [sym_email_autolink] = ACTIONS(4868), + [sym__whitespace_ge_2] = ACTIONS(4868), + [aux_sym__whitespace_token1] = ACTIONS(4870), + [sym__word_no_digit] = ACTIONS(4868), + [sym__digits] = ACTIONS(4868), + [anon_sym_DASH_DASH] = ACTIONS(4870), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4868), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4868), + [sym__code_span_start] = ACTIONS(4868), + [sym__emphasis_open_star] = ACTIONS(4868), + [sym__emphasis_open_underscore] = ACTIONS(4868), + [sym__strikeout_open] = ACTIONS(4868), + [sym__strikeout_close] = ACTIONS(4868), + [sym__latex_span_start] = ACTIONS(4868), + [sym__single_quote_open] = ACTIONS(4868), + [sym__double_quote_open] = ACTIONS(4868), + [sym__superscript_open] = ACTIONS(4868), + [sym__subscript_open] = ACTIONS(4868), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4868), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4868), + [sym__cite_author_in_text] = ACTIONS(4868), + [sym__cite_suppress_author] = ACTIONS(4868), + [sym__shortcode_open_escaped] = ACTIONS(4868), + [sym__shortcode_open] = ACTIONS(4868), + [sym__unclosed_span] = ACTIONS(4868), + }, + [STATE(819)] = { + [sym__backslash_escape] = ACTIONS(4976), + [sym_entity_reference] = ACTIONS(4976), + [sym_numeric_character_reference] = ACTIONS(4976), + [anon_sym_LT] = ACTIONS(4978), + [anon_sym_GT] = ACTIONS(4976), + [anon_sym_BANG] = ACTIONS(4976), + [anon_sym_DQUOTE] = ACTIONS(4976), + [anon_sym_POUND] = ACTIONS(4976), + [anon_sym_DOLLAR] = ACTIONS(4976), + [anon_sym_PERCENT] = ACTIONS(4976), + [anon_sym_AMP] = ACTIONS(4978), + [anon_sym_SQUOTE] = ACTIONS(4976), + [anon_sym_STAR] = ACTIONS(4976), + [anon_sym_PLUS] = ACTIONS(4976), + [anon_sym_COMMA] = ACTIONS(4976), + [anon_sym_DASH] = ACTIONS(4978), + [anon_sym_DOT] = ACTIONS(4978), + [anon_sym_SLASH] = ACTIONS(4976), + [anon_sym_COLON] = ACTIONS(4976), + [anon_sym_SEMI] = ACTIONS(4976), + [anon_sym_EQ] = ACTIONS(4976), + [anon_sym_QMARK] = ACTIONS(4976), + [anon_sym_LBRACK] = ACTIONS(4978), + [anon_sym_BSLASH] = ACTIONS(4978), + [anon_sym_CARET] = ACTIONS(4978), + [anon_sym__] = ACTIONS(4976), + [anon_sym_BQUOTE] = ACTIONS(4976), + [anon_sym_LBRACE] = ACTIONS(4976), + [anon_sym_PIPE] = ACTIONS(4976), + [anon_sym_TILDE] = ACTIONS(4976), + [anon_sym_LPAREN] = ACTIONS(4976), + [anon_sym_RPAREN] = ACTIONS(4976), + [sym__newline_token] = ACTIONS(4976), + [aux_sym_insert_token1] = ACTIONS(4976), + [aux_sym_delete_token1] = ACTIONS(4976), + [aux_sym_highlight_token1] = ACTIONS(4976), + [aux_sym_edit_comment_token1] = ACTIONS(4976), + [anon_sym_CARET_LBRACK] = ACTIONS(4976), + [anon_sym_LBRACK_CARET] = ACTIONS(4976), + [sym_uri_autolink] = ACTIONS(4976), + [sym_email_autolink] = ACTIONS(4976), + [sym__whitespace_ge_2] = ACTIONS(4976), + [aux_sym__whitespace_token1] = ACTIONS(4978), + [sym__word_no_digit] = ACTIONS(4976), + [sym__digits] = ACTIONS(4976), + [anon_sym_DASH_DASH] = ACTIONS(4978), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4976), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4976), + [sym__code_span_start] = ACTIONS(4976), + [sym__emphasis_open_star] = ACTIONS(4976), + [sym__emphasis_open_underscore] = ACTIONS(4976), + [sym__strikeout_open] = ACTIONS(4976), + [sym__latex_span_start] = ACTIONS(4976), + [sym__single_quote_open] = ACTIONS(4976), + [sym__double_quote_open] = ACTIONS(4976), + [sym__superscript_open] = ACTIONS(4976), + [sym__subscript_open] = ACTIONS(4976), + [sym__subscript_close] = ACTIONS(4976), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4976), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4976), + [sym__cite_author_in_text] = ACTIONS(4976), + [sym__cite_suppress_author] = ACTIONS(4976), + [sym__shortcode_open_escaped] = ACTIONS(4976), + [sym__shortcode_open] = ACTIONS(4976), + [sym__unclosed_span] = ACTIONS(4976), + }, + [STATE(820)] = { + [sym__backslash_escape] = ACTIONS(4980), + [sym_entity_reference] = ACTIONS(4980), + [sym_numeric_character_reference] = ACTIONS(4980), + [anon_sym_LT] = ACTIONS(4982), + [anon_sym_GT] = ACTIONS(4980), + [anon_sym_BANG] = ACTIONS(4980), + [anon_sym_DQUOTE] = ACTIONS(4980), + [anon_sym_POUND] = ACTIONS(4980), + [anon_sym_DOLLAR] = ACTIONS(4980), + [anon_sym_PERCENT] = ACTIONS(4980), + [anon_sym_AMP] = ACTIONS(4982), + [anon_sym_SQUOTE] = ACTIONS(4980), + [anon_sym_STAR] = ACTIONS(4980), + [anon_sym_PLUS] = ACTIONS(4980), + [anon_sym_COMMA] = ACTIONS(4980), + [anon_sym_DASH] = ACTIONS(4982), + [anon_sym_DOT] = ACTIONS(4982), + [anon_sym_SLASH] = ACTIONS(4980), + [anon_sym_COLON] = ACTIONS(4980), + [anon_sym_SEMI] = ACTIONS(4980), + [anon_sym_EQ] = ACTIONS(4980), + [anon_sym_QMARK] = ACTIONS(4980), + [anon_sym_LBRACK] = ACTIONS(4982), + [anon_sym_BSLASH] = ACTIONS(4982), + [anon_sym_CARET] = ACTIONS(4982), + [anon_sym__] = ACTIONS(4980), + [anon_sym_BQUOTE] = ACTIONS(4980), + [anon_sym_LBRACE] = ACTIONS(4980), + [anon_sym_PIPE] = ACTIONS(4980), + [anon_sym_TILDE] = ACTIONS(4980), + [anon_sym_LPAREN] = ACTIONS(4980), + [anon_sym_RPAREN] = ACTIONS(4980), + [sym__newline_token] = ACTIONS(4980), + [aux_sym_insert_token1] = ACTIONS(4980), + [aux_sym_delete_token1] = ACTIONS(4980), + [aux_sym_highlight_token1] = ACTIONS(4980), + [aux_sym_edit_comment_token1] = ACTIONS(4980), + [anon_sym_CARET_LBRACK] = ACTIONS(4980), + [anon_sym_LBRACK_CARET] = ACTIONS(4980), + [sym_uri_autolink] = ACTIONS(4980), + [sym_email_autolink] = ACTIONS(4980), + [sym__whitespace_ge_2] = ACTIONS(4980), + [aux_sym__whitespace_token1] = ACTIONS(4982), + [sym__word_no_digit] = ACTIONS(4980), + [sym__digits] = ACTIONS(4980), + [anon_sym_DASH_DASH] = ACTIONS(4982), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4980), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4980), + [sym__code_span_start] = ACTIONS(4980), + [sym__emphasis_open_star] = ACTIONS(4980), + [sym__emphasis_open_underscore] = ACTIONS(4980), + [sym__strikeout_open] = ACTIONS(4980), + [sym__latex_span_start] = ACTIONS(4980), + [sym__single_quote_open] = ACTIONS(4980), + [sym__double_quote_open] = ACTIONS(4980), + [sym__superscript_open] = ACTIONS(4980), + [sym__subscript_open] = ACTIONS(4980), + [sym__subscript_close] = ACTIONS(4980), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4980), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4980), + [sym__cite_author_in_text] = ACTIONS(4980), + [sym__cite_suppress_author] = ACTIONS(4980), + [sym__shortcode_open_escaped] = ACTIONS(4980), + [sym__shortcode_open] = ACTIONS(4980), + [sym__unclosed_span] = ACTIONS(4980), + }, + [STATE(821)] = { + [sym__backslash_escape] = ACTIONS(4984), + [sym_entity_reference] = ACTIONS(4984), + [sym_numeric_character_reference] = ACTIONS(4984), + [anon_sym_LT] = ACTIONS(4986), + [anon_sym_GT] = ACTIONS(4984), + [anon_sym_BANG] = ACTIONS(4984), + [anon_sym_DQUOTE] = ACTIONS(4984), + [anon_sym_POUND] = ACTIONS(4984), + [anon_sym_DOLLAR] = ACTIONS(4984), + [anon_sym_PERCENT] = ACTIONS(4984), + [anon_sym_AMP] = ACTIONS(4986), + [anon_sym_SQUOTE] = ACTIONS(4984), + [anon_sym_STAR] = ACTIONS(4984), + [anon_sym_PLUS] = ACTIONS(4984), + [anon_sym_COMMA] = ACTIONS(4984), + [anon_sym_DASH] = ACTIONS(4986), + [anon_sym_DOT] = ACTIONS(4986), + [anon_sym_SLASH] = ACTIONS(4984), + [anon_sym_COLON] = ACTIONS(4984), + [anon_sym_SEMI] = ACTIONS(4984), + [anon_sym_EQ] = ACTIONS(4984), + [anon_sym_QMARK] = ACTIONS(4984), + [anon_sym_LBRACK] = ACTIONS(4986), + [anon_sym_BSLASH] = ACTIONS(4986), + [anon_sym_RBRACK] = ACTIONS(4984), + [anon_sym_CARET] = ACTIONS(4986), + [anon_sym__] = ACTIONS(4984), + [anon_sym_BQUOTE] = ACTIONS(4984), + [anon_sym_LBRACE] = ACTIONS(4984), + [anon_sym_PIPE] = ACTIONS(4984), + [anon_sym_TILDE] = ACTIONS(4984), + [anon_sym_LPAREN] = ACTIONS(4984), + [anon_sym_RPAREN] = ACTIONS(4984), + [sym__newline_token] = ACTIONS(4984), + [aux_sym_insert_token1] = ACTIONS(4984), + [aux_sym_delete_token1] = ACTIONS(4984), + [aux_sym_highlight_token1] = ACTIONS(4984), + [aux_sym_edit_comment_token1] = ACTIONS(4984), + [anon_sym_CARET_LBRACK] = ACTIONS(4984), + [anon_sym_LBRACK_CARET] = ACTIONS(4984), + [sym_uri_autolink] = ACTIONS(4984), + [sym_email_autolink] = ACTIONS(4984), + [sym__whitespace_ge_2] = ACTIONS(4984), + [aux_sym__whitespace_token1] = ACTIONS(4986), + [sym__word_no_digit] = ACTIONS(4984), + [sym__digits] = ACTIONS(4984), + [anon_sym_DASH_DASH] = ACTIONS(4986), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4984), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4984), + [sym__code_span_start] = ACTIONS(4984), + [sym__emphasis_open_star] = ACTIONS(4984), + [sym__emphasis_open_underscore] = ACTIONS(4984), + [sym__strikeout_open] = ACTIONS(4984), + [sym__latex_span_start] = ACTIONS(4984), + [sym__single_quote_open] = ACTIONS(4984), + [sym__double_quote_open] = ACTIONS(4984), + [sym__superscript_open] = ACTIONS(4984), + [sym__subscript_open] = ACTIONS(4984), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4984), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4984), + [sym__cite_author_in_text] = ACTIONS(4984), + [sym__cite_suppress_author] = ACTIONS(4984), + [sym__shortcode_open_escaped] = ACTIONS(4984), + [sym__shortcode_open] = ACTIONS(4984), + [sym__unclosed_span] = ACTIONS(4984), + }, + [STATE(822)] = { + [sym__backslash_escape] = ACTIONS(4872), + [sym_entity_reference] = ACTIONS(4872), + [sym_numeric_character_reference] = ACTIONS(4872), + [anon_sym_LT] = ACTIONS(4874), + [anon_sym_GT] = ACTIONS(4872), + [anon_sym_BANG] = ACTIONS(4872), + [anon_sym_DQUOTE] = ACTIONS(4872), + [anon_sym_POUND] = ACTIONS(4872), + [anon_sym_DOLLAR] = ACTIONS(4872), + [anon_sym_PERCENT] = ACTIONS(4872), + [anon_sym_AMP] = ACTIONS(4874), + [anon_sym_SQUOTE] = ACTIONS(4872), + [anon_sym_STAR] = ACTIONS(4872), + [anon_sym_PLUS] = ACTIONS(4872), + [anon_sym_COMMA] = ACTIONS(4872), + [anon_sym_DASH] = ACTIONS(4874), + [anon_sym_DOT] = ACTIONS(4874), + [anon_sym_SLASH] = ACTIONS(4872), + [anon_sym_COLON] = ACTIONS(4872), + [anon_sym_SEMI] = ACTIONS(4872), + [anon_sym_EQ] = ACTIONS(4872), + [anon_sym_QMARK] = ACTIONS(4872), + [anon_sym_LBRACK] = ACTIONS(4874), + [anon_sym_BSLASH] = ACTIONS(4874), + [anon_sym_CARET] = ACTIONS(4874), + [anon_sym__] = ACTIONS(4872), + [anon_sym_BQUOTE] = ACTIONS(4872), + [anon_sym_LBRACE] = ACTIONS(4872), + [anon_sym_PIPE] = ACTIONS(4872), + [anon_sym_TILDE] = ACTIONS(4872), + [anon_sym_LPAREN] = ACTIONS(4872), + [anon_sym_RPAREN] = ACTIONS(4872), + [sym__newline_token] = ACTIONS(4872), + [aux_sym_insert_token1] = ACTIONS(4872), + [aux_sym_delete_token1] = ACTIONS(4872), + [aux_sym_highlight_token1] = ACTIONS(4872), + [aux_sym_edit_comment_token1] = ACTIONS(4872), + [anon_sym_CARET_LBRACK] = ACTIONS(4872), + [anon_sym_LBRACK_CARET] = ACTIONS(4872), + [sym_uri_autolink] = ACTIONS(4872), + [sym_email_autolink] = ACTIONS(4872), + [sym__whitespace_ge_2] = ACTIONS(4872), + [aux_sym__whitespace_token1] = ACTIONS(4874), + [sym__word_no_digit] = ACTIONS(4872), + [sym__digits] = ACTIONS(4872), + [anon_sym_DASH_DASH] = ACTIONS(4874), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4872), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4872), + [sym__code_span_start] = ACTIONS(4872), + [sym__emphasis_open_star] = ACTIONS(4872), + [sym__emphasis_open_underscore] = ACTIONS(4872), + [sym__strikeout_open] = ACTIONS(4872), + [sym__strikeout_close] = ACTIONS(4872), + [sym__latex_span_start] = ACTIONS(4872), + [sym__single_quote_open] = ACTIONS(4872), + [sym__double_quote_open] = ACTIONS(4872), + [sym__superscript_open] = ACTIONS(4872), + [sym__subscript_open] = ACTIONS(4872), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4872), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4872), + [sym__cite_author_in_text] = ACTIONS(4872), + [sym__cite_suppress_author] = ACTIONS(4872), + [sym__shortcode_open_escaped] = ACTIONS(4872), + [sym__shortcode_open] = ACTIONS(4872), + [sym__unclosed_span] = ACTIONS(4872), + }, + [STATE(823)] = { + [sym__backslash_escape] = ACTIONS(4876), + [sym_entity_reference] = ACTIONS(4876), + [sym_numeric_character_reference] = ACTIONS(4876), + [anon_sym_LT] = ACTIONS(4878), + [anon_sym_GT] = ACTIONS(4876), + [anon_sym_BANG] = ACTIONS(4876), + [anon_sym_DQUOTE] = ACTIONS(4876), + [anon_sym_POUND] = ACTIONS(4876), + [anon_sym_DOLLAR] = ACTIONS(4876), + [anon_sym_PERCENT] = ACTIONS(4876), + [anon_sym_AMP] = ACTIONS(4878), + [anon_sym_SQUOTE] = ACTIONS(4876), + [anon_sym_STAR] = ACTIONS(4876), + [anon_sym_PLUS] = ACTIONS(4876), + [anon_sym_COMMA] = ACTIONS(4876), + [anon_sym_DASH] = ACTIONS(4878), + [anon_sym_DOT] = ACTIONS(4878), + [anon_sym_SLASH] = ACTIONS(4876), + [anon_sym_COLON] = ACTIONS(4876), + [anon_sym_SEMI] = ACTIONS(4876), + [anon_sym_EQ] = ACTIONS(4876), + [anon_sym_QMARK] = ACTIONS(4876), + [anon_sym_LBRACK] = ACTIONS(4878), + [anon_sym_BSLASH] = ACTIONS(4878), + [anon_sym_CARET] = ACTIONS(4878), + [anon_sym__] = ACTIONS(4876), + [anon_sym_BQUOTE] = ACTIONS(4876), + [anon_sym_LBRACE] = ACTIONS(4876), + [anon_sym_PIPE] = ACTIONS(4876), + [anon_sym_TILDE] = ACTIONS(4876), + [anon_sym_LPAREN] = ACTIONS(4876), + [anon_sym_RPAREN] = ACTIONS(4876), + [sym__newline_token] = ACTIONS(4876), + [aux_sym_insert_token1] = ACTIONS(4876), + [aux_sym_delete_token1] = ACTIONS(4876), + [aux_sym_highlight_token1] = ACTIONS(4876), + [aux_sym_edit_comment_token1] = ACTIONS(4876), + [anon_sym_CARET_LBRACK] = ACTIONS(4876), + [anon_sym_LBRACK_CARET] = ACTIONS(4876), + [sym_uri_autolink] = ACTIONS(4876), + [sym_email_autolink] = ACTIONS(4876), + [sym__whitespace_ge_2] = ACTIONS(4876), + [aux_sym__whitespace_token1] = ACTIONS(4878), + [sym__word_no_digit] = ACTIONS(4876), + [sym__digits] = ACTIONS(4876), + [anon_sym_DASH_DASH] = ACTIONS(4878), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4876), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4876), + [sym__code_span_start] = ACTIONS(4876), + [sym__emphasis_open_star] = ACTIONS(4876), + [sym__emphasis_open_underscore] = ACTIONS(4876), + [sym__strikeout_open] = ACTIONS(4876), + [sym__strikeout_close] = ACTIONS(4876), + [sym__latex_span_start] = ACTIONS(4876), + [sym__single_quote_open] = ACTIONS(4876), + [sym__double_quote_open] = ACTIONS(4876), + [sym__superscript_open] = ACTIONS(4876), + [sym__subscript_open] = ACTIONS(4876), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4876), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4876), + [sym__cite_author_in_text] = ACTIONS(4876), + [sym__cite_suppress_author] = ACTIONS(4876), + [sym__shortcode_open_escaped] = ACTIONS(4876), + [sym__shortcode_open] = ACTIONS(4876), + [sym__unclosed_span] = ACTIONS(4876), + }, + [STATE(824)] = { + [sym__backslash_escape] = ACTIONS(4996), + [sym_entity_reference] = ACTIONS(4996), + [sym_numeric_character_reference] = ACTIONS(4996), + [anon_sym_LT] = ACTIONS(4998), + [anon_sym_GT] = ACTIONS(4996), + [anon_sym_BANG] = ACTIONS(4996), + [anon_sym_DQUOTE] = ACTIONS(4996), + [anon_sym_POUND] = ACTIONS(4996), + [anon_sym_DOLLAR] = ACTIONS(4996), + [anon_sym_PERCENT] = ACTIONS(4996), + [anon_sym_AMP] = ACTIONS(4998), + [anon_sym_SQUOTE] = ACTIONS(4996), + [anon_sym_STAR] = ACTIONS(4996), + [anon_sym_PLUS] = ACTIONS(4996), + [anon_sym_COMMA] = ACTIONS(4996), + [anon_sym_DASH] = ACTIONS(4998), + [anon_sym_DOT] = ACTIONS(4998), + [anon_sym_SLASH] = ACTIONS(4996), + [anon_sym_COLON] = ACTIONS(4996), + [anon_sym_SEMI] = ACTIONS(4996), + [anon_sym_EQ] = ACTIONS(4996), + [anon_sym_QMARK] = ACTIONS(4996), + [anon_sym_LBRACK] = ACTIONS(4998), + [anon_sym_BSLASH] = ACTIONS(4998), + [anon_sym_CARET] = ACTIONS(4998), + [anon_sym__] = ACTIONS(4996), + [anon_sym_BQUOTE] = ACTIONS(4996), + [anon_sym_LBRACE] = ACTIONS(4996), + [anon_sym_PIPE] = ACTIONS(4996), + [anon_sym_TILDE] = ACTIONS(4996), + [anon_sym_LPAREN] = ACTIONS(4996), + [anon_sym_RPAREN] = ACTIONS(4996), + [sym__newline_token] = ACTIONS(4996), + [aux_sym_insert_token1] = ACTIONS(4996), + [aux_sym_delete_token1] = ACTIONS(4996), + [aux_sym_highlight_token1] = ACTIONS(4996), + [aux_sym_edit_comment_token1] = ACTIONS(4996), + [anon_sym_CARET_LBRACK] = ACTIONS(4996), + [anon_sym_LBRACK_CARET] = ACTIONS(4996), + [sym_uri_autolink] = ACTIONS(4996), + [sym_email_autolink] = ACTIONS(4996), + [sym__whitespace_ge_2] = ACTIONS(4996), + [aux_sym__whitespace_token1] = ACTIONS(4998), + [sym__word_no_digit] = ACTIONS(4996), + [sym__digits] = ACTIONS(4996), + [anon_sym_DASH_DASH] = ACTIONS(4998), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4996), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4996), + [sym__code_span_start] = ACTIONS(4996), + [sym__emphasis_open_star] = ACTIONS(4996), + [sym__emphasis_open_underscore] = ACTIONS(4996), + [sym__strikeout_open] = ACTIONS(4996), + [sym__latex_span_start] = ACTIONS(4996), + [sym__single_quote_open] = ACTIONS(4996), + [sym__double_quote_open] = ACTIONS(4996), + [sym__superscript_open] = ACTIONS(4996), + [sym__subscript_open] = ACTIONS(4996), + [sym__subscript_close] = ACTIONS(4996), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4996), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4996), + [sym__cite_author_in_text] = ACTIONS(4996), + [sym__cite_suppress_author] = ACTIONS(4996), + [sym__shortcode_open_escaped] = ACTIONS(4996), + [sym__shortcode_open] = ACTIONS(4996), + [sym__unclosed_span] = ACTIONS(4996), + }, + [STATE(825)] = { + [sym__backslash_escape] = ACTIONS(5000), + [sym_entity_reference] = ACTIONS(5000), + [sym_numeric_character_reference] = ACTIONS(5000), + [anon_sym_LT] = ACTIONS(5002), + [anon_sym_GT] = ACTIONS(5000), + [anon_sym_BANG] = ACTIONS(5000), + [anon_sym_DQUOTE] = ACTIONS(5000), + [anon_sym_POUND] = ACTIONS(5000), + [anon_sym_DOLLAR] = ACTIONS(5000), + [anon_sym_PERCENT] = ACTIONS(5000), + [anon_sym_AMP] = ACTIONS(5002), + [anon_sym_SQUOTE] = ACTIONS(5000), + [anon_sym_STAR] = ACTIONS(5000), + [anon_sym_PLUS] = ACTIONS(5000), + [anon_sym_COMMA] = ACTIONS(5000), + [anon_sym_DASH] = ACTIONS(5002), + [anon_sym_DOT] = ACTIONS(5002), + [anon_sym_SLASH] = ACTIONS(5000), + [anon_sym_COLON] = ACTIONS(5000), + [anon_sym_SEMI] = ACTIONS(5000), + [anon_sym_EQ] = ACTIONS(5000), + [anon_sym_QMARK] = ACTIONS(5000), + [anon_sym_LBRACK] = ACTIONS(5002), + [anon_sym_BSLASH] = ACTIONS(5002), + [anon_sym_CARET] = ACTIONS(5002), + [anon_sym__] = ACTIONS(5000), + [anon_sym_BQUOTE] = ACTIONS(5000), + [anon_sym_LBRACE] = ACTIONS(5000), + [anon_sym_PIPE] = ACTIONS(5000), + [anon_sym_TILDE] = ACTIONS(5000), + [anon_sym_LPAREN] = ACTIONS(5000), + [anon_sym_RPAREN] = ACTIONS(5000), + [sym__newline_token] = ACTIONS(5000), + [aux_sym_insert_token1] = ACTIONS(5000), + [aux_sym_delete_token1] = ACTIONS(5000), + [aux_sym_highlight_token1] = ACTIONS(5000), + [aux_sym_edit_comment_token1] = ACTIONS(5000), + [anon_sym_CARET_LBRACK] = ACTIONS(5000), + [anon_sym_LBRACK_CARET] = ACTIONS(5000), + [sym_uri_autolink] = ACTIONS(5000), + [sym_email_autolink] = ACTIONS(5000), + [sym__whitespace_ge_2] = ACTIONS(5000), + [aux_sym__whitespace_token1] = ACTIONS(5002), + [sym__word_no_digit] = ACTIONS(5000), + [sym__digits] = ACTIONS(5000), + [anon_sym_DASH_DASH] = ACTIONS(5002), + [anon_sym_DASH_DASH_DASH] = ACTIONS(5000), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5000), + [sym__code_span_start] = ACTIONS(5000), + [sym__emphasis_open_star] = ACTIONS(5000), + [sym__emphasis_open_underscore] = ACTIONS(5000), + [sym__strikeout_open] = ACTIONS(5000), + [sym__latex_span_start] = ACTIONS(5000), + [sym__single_quote_open] = ACTIONS(5000), + [sym__double_quote_open] = ACTIONS(5000), + [sym__superscript_open] = ACTIONS(5000), + [sym__subscript_open] = ACTIONS(5000), + [sym__subscript_close] = ACTIONS(5000), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5000), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5000), + [sym__cite_author_in_text] = ACTIONS(5000), + [sym__cite_suppress_author] = ACTIONS(5000), + [sym__shortcode_open_escaped] = ACTIONS(5000), + [sym__shortcode_open] = ACTIONS(5000), + [sym__unclosed_span] = ACTIONS(5000), + }, + [STATE(826)] = { + [sym__backslash_escape] = ACTIONS(5004), + [sym_entity_reference] = ACTIONS(5004), + [sym_numeric_character_reference] = ACTIONS(5004), + [anon_sym_LT] = ACTIONS(5006), + [anon_sym_GT] = ACTIONS(5004), + [anon_sym_BANG] = ACTIONS(5004), + [anon_sym_DQUOTE] = ACTIONS(5004), + [anon_sym_POUND] = ACTIONS(5004), + [anon_sym_DOLLAR] = ACTIONS(5004), + [anon_sym_PERCENT] = ACTIONS(5004), + [anon_sym_AMP] = ACTIONS(5006), + [anon_sym_SQUOTE] = ACTIONS(5004), + [anon_sym_STAR] = ACTIONS(5004), + [anon_sym_PLUS] = ACTIONS(5004), + [anon_sym_COMMA] = ACTIONS(5004), + [anon_sym_DASH] = ACTIONS(5006), + [anon_sym_DOT] = ACTIONS(5006), + [anon_sym_SLASH] = ACTIONS(5004), + [anon_sym_COLON] = ACTIONS(5004), + [anon_sym_SEMI] = ACTIONS(5004), + [anon_sym_EQ] = ACTIONS(5004), + [anon_sym_QMARK] = ACTIONS(5004), + [anon_sym_LBRACK] = ACTIONS(5006), + [anon_sym_BSLASH] = ACTIONS(5006), + [anon_sym_CARET] = ACTIONS(5006), + [anon_sym__] = ACTIONS(5004), + [anon_sym_BQUOTE] = ACTIONS(5004), + [anon_sym_LBRACE] = ACTIONS(5004), + [anon_sym_PIPE] = ACTIONS(5004), + [anon_sym_TILDE] = ACTIONS(5004), + [anon_sym_LPAREN] = ACTIONS(5004), + [anon_sym_RPAREN] = ACTIONS(5004), + [sym__newline_token] = ACTIONS(5004), + [aux_sym_insert_token1] = ACTIONS(5004), + [aux_sym_delete_token1] = ACTIONS(5004), + [aux_sym_highlight_token1] = ACTIONS(5004), + [aux_sym_edit_comment_token1] = ACTIONS(5004), + [anon_sym_CARET_LBRACK] = ACTIONS(5004), + [anon_sym_LBRACK_CARET] = ACTIONS(5004), + [sym_uri_autolink] = ACTIONS(5004), + [sym_email_autolink] = ACTIONS(5004), + [sym__whitespace_ge_2] = ACTIONS(5004), + [aux_sym__whitespace_token1] = ACTIONS(5006), + [sym__word_no_digit] = ACTIONS(5004), + [sym__digits] = ACTIONS(5004), + [anon_sym_DASH_DASH] = ACTIONS(5006), + [anon_sym_DASH_DASH_DASH] = ACTIONS(5004), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5004), + [sym__code_span_start] = ACTIONS(5004), + [sym__emphasis_open_star] = ACTIONS(5004), + [sym__emphasis_open_underscore] = ACTIONS(5004), + [sym__strikeout_open] = ACTIONS(5004), + [sym__latex_span_start] = ACTIONS(5004), + [sym__single_quote_open] = ACTIONS(5004), + [sym__double_quote_open] = ACTIONS(5004), + [sym__superscript_open] = ACTIONS(5004), + [sym__subscript_open] = ACTIONS(5004), + [sym__subscript_close] = ACTIONS(5004), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5004), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5004), + [sym__cite_author_in_text] = ACTIONS(5004), + [sym__cite_suppress_author] = ACTIONS(5004), + [sym__shortcode_open_escaped] = ACTIONS(5004), + [sym__shortcode_open] = ACTIONS(5004), + [sym__unclosed_span] = ACTIONS(5004), + }, + [STATE(827)] = { + [sym__backslash_escape] = ACTIONS(5008), + [sym_entity_reference] = ACTIONS(5008), + [sym_numeric_character_reference] = ACTIONS(5008), + [anon_sym_LT] = ACTIONS(5010), + [anon_sym_GT] = ACTIONS(5008), + [anon_sym_BANG] = ACTIONS(5008), + [anon_sym_DQUOTE] = ACTIONS(5008), + [anon_sym_POUND] = ACTIONS(5008), + [anon_sym_DOLLAR] = ACTIONS(5008), + [anon_sym_PERCENT] = ACTIONS(5008), + [anon_sym_AMP] = ACTIONS(5010), + [anon_sym_SQUOTE] = ACTIONS(5008), + [anon_sym_STAR] = ACTIONS(5008), + [anon_sym_PLUS] = ACTIONS(5008), + [anon_sym_COMMA] = ACTIONS(5008), + [anon_sym_DASH] = ACTIONS(5010), + [anon_sym_DOT] = ACTIONS(5010), + [anon_sym_SLASH] = ACTIONS(5008), + [anon_sym_COLON] = ACTIONS(5008), + [anon_sym_SEMI] = ACTIONS(5008), + [anon_sym_EQ] = ACTIONS(5008), + [anon_sym_QMARK] = ACTIONS(5008), + [anon_sym_LBRACK] = ACTIONS(5010), + [anon_sym_BSLASH] = ACTIONS(5010), + [anon_sym_CARET] = ACTIONS(5010), + [anon_sym__] = ACTIONS(5008), + [anon_sym_BQUOTE] = ACTIONS(5008), + [anon_sym_LBRACE] = ACTIONS(5008), + [anon_sym_PIPE] = ACTIONS(5008), + [anon_sym_TILDE] = ACTIONS(5008), + [anon_sym_LPAREN] = ACTIONS(5008), + [anon_sym_RPAREN] = ACTIONS(5008), + [sym__newline_token] = ACTIONS(5008), + [aux_sym_insert_token1] = ACTIONS(5008), + [aux_sym_delete_token1] = ACTIONS(5008), + [aux_sym_highlight_token1] = ACTIONS(5008), + [aux_sym_edit_comment_token1] = ACTIONS(5008), + [anon_sym_CARET_LBRACK] = ACTIONS(5008), + [anon_sym_LBRACK_CARET] = ACTIONS(5008), + [sym_uri_autolink] = ACTIONS(5008), + [sym_email_autolink] = ACTIONS(5008), + [sym__whitespace_ge_2] = ACTIONS(5008), + [aux_sym__whitespace_token1] = ACTIONS(5010), + [sym__word_no_digit] = ACTIONS(5008), + [sym__digits] = ACTIONS(5008), + [anon_sym_DASH_DASH] = ACTIONS(5010), + [anon_sym_DASH_DASH_DASH] = ACTIONS(5008), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5008), + [sym__code_span_start] = ACTIONS(5008), + [sym__emphasis_open_star] = ACTIONS(5008), + [sym__emphasis_open_underscore] = ACTIONS(5008), + [sym__strikeout_open] = ACTIONS(5008), + [sym__latex_span_start] = ACTIONS(5008), + [sym__single_quote_open] = ACTIONS(5008), + [sym__double_quote_open] = ACTIONS(5008), + [sym__superscript_open] = ACTIONS(5008), + [sym__subscript_open] = ACTIONS(5008), + [sym__subscript_close] = ACTIONS(5008), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5008), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5008), + [sym__cite_author_in_text] = ACTIONS(5008), + [sym__cite_suppress_author] = ACTIONS(5008), + [sym__shortcode_open_escaped] = ACTIONS(5008), + [sym__shortcode_open] = ACTIONS(5008), + [sym__unclosed_span] = ACTIONS(5008), + }, + [STATE(828)] = { + [sym__backslash_escape] = ACTIONS(5012), + [sym_entity_reference] = ACTIONS(5012), + [sym_numeric_character_reference] = ACTIONS(5012), + [anon_sym_LT] = ACTIONS(5014), + [anon_sym_GT] = ACTIONS(5012), + [anon_sym_BANG] = ACTIONS(5012), + [anon_sym_DQUOTE] = ACTIONS(5012), + [anon_sym_POUND] = ACTIONS(5012), + [anon_sym_DOLLAR] = ACTIONS(5012), + [anon_sym_PERCENT] = ACTIONS(5012), + [anon_sym_AMP] = ACTIONS(5014), + [anon_sym_SQUOTE] = ACTIONS(5012), + [anon_sym_STAR] = ACTIONS(5012), + [anon_sym_PLUS] = ACTIONS(5012), + [anon_sym_COMMA] = ACTIONS(5012), + [anon_sym_DASH] = ACTIONS(5014), + [anon_sym_DOT] = ACTIONS(5014), + [anon_sym_SLASH] = ACTIONS(5012), + [anon_sym_COLON] = ACTIONS(5012), + [anon_sym_SEMI] = ACTIONS(5012), + [anon_sym_EQ] = ACTIONS(5012), + [anon_sym_QMARK] = ACTIONS(5012), + [anon_sym_LBRACK] = ACTIONS(5014), + [anon_sym_BSLASH] = ACTIONS(5014), + [anon_sym_CARET] = ACTIONS(5014), + [anon_sym__] = ACTIONS(5012), + [anon_sym_BQUOTE] = ACTIONS(5012), + [anon_sym_LBRACE] = ACTIONS(5012), + [anon_sym_PIPE] = ACTIONS(5012), + [anon_sym_TILDE] = ACTIONS(5012), + [anon_sym_LPAREN] = ACTIONS(5012), + [anon_sym_RPAREN] = ACTIONS(5012), + [sym__newline_token] = ACTIONS(5012), + [aux_sym_insert_token1] = ACTIONS(5012), + [aux_sym_delete_token1] = ACTIONS(5012), + [aux_sym_highlight_token1] = ACTIONS(5012), + [aux_sym_edit_comment_token1] = ACTIONS(5012), + [anon_sym_CARET_LBRACK] = ACTIONS(5012), + [anon_sym_LBRACK_CARET] = ACTIONS(5012), + [sym_uri_autolink] = ACTIONS(5012), + [sym_email_autolink] = ACTIONS(5012), + [sym__whitespace_ge_2] = ACTIONS(5012), + [aux_sym__whitespace_token1] = ACTIONS(5014), + [sym__word_no_digit] = ACTIONS(5012), + [sym__digits] = ACTIONS(5012), + [anon_sym_DASH_DASH] = ACTIONS(5014), + [anon_sym_DASH_DASH_DASH] = ACTIONS(5012), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5012), + [sym__code_span_start] = ACTIONS(5012), + [sym__emphasis_open_star] = ACTIONS(5012), + [sym__emphasis_open_underscore] = ACTIONS(5012), + [sym__strikeout_open] = ACTIONS(5012), + [sym__latex_span_start] = ACTIONS(5012), + [sym__single_quote_open] = ACTIONS(5012), + [sym__double_quote_open] = ACTIONS(5012), + [sym__superscript_open] = ACTIONS(5012), + [sym__subscript_open] = ACTIONS(5012), + [sym__subscript_close] = ACTIONS(5012), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5012), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5012), + [sym__cite_author_in_text] = ACTIONS(5012), + [sym__cite_suppress_author] = ACTIONS(5012), + [sym__shortcode_open_escaped] = ACTIONS(5012), + [sym__shortcode_open] = ACTIONS(5012), + [sym__unclosed_span] = ACTIONS(5012), + }, + [STATE(829)] = { + [sym__backslash_escape] = ACTIONS(4948), + [sym_entity_reference] = ACTIONS(4948), + [sym_numeric_character_reference] = ACTIONS(4948), + [anon_sym_LT] = ACTIONS(4950), + [anon_sym_GT] = ACTIONS(4948), + [anon_sym_BANG] = ACTIONS(4948), + [anon_sym_DQUOTE] = ACTIONS(4948), + [anon_sym_POUND] = ACTIONS(4948), + [anon_sym_DOLLAR] = ACTIONS(4948), + [anon_sym_PERCENT] = ACTIONS(4948), + [anon_sym_AMP] = ACTIONS(4950), + [anon_sym_SQUOTE] = ACTIONS(4948), + [anon_sym_STAR] = ACTIONS(4948), + [anon_sym_PLUS] = ACTIONS(4948), + [anon_sym_COMMA] = ACTIONS(4948), + [anon_sym_DASH] = ACTIONS(4950), + [anon_sym_DOT] = ACTIONS(4950), + [anon_sym_SLASH] = ACTIONS(4948), + [anon_sym_COLON] = ACTIONS(4948), + [anon_sym_SEMI] = ACTIONS(4948), + [anon_sym_EQ] = ACTIONS(4948), + [anon_sym_QMARK] = ACTIONS(4948), + [anon_sym_LBRACK] = ACTIONS(4950), + [anon_sym_BSLASH] = ACTIONS(4950), + [anon_sym_CARET] = ACTIONS(4950), + [anon_sym__] = ACTIONS(4948), + [anon_sym_BQUOTE] = ACTIONS(4948), + [anon_sym_LBRACE] = ACTIONS(4948), + [anon_sym_PIPE] = ACTIONS(4948), + [anon_sym_TILDE] = ACTIONS(4948), + [anon_sym_LPAREN] = ACTIONS(4948), + [anon_sym_RPAREN] = ACTIONS(4948), + [sym__newline_token] = ACTIONS(4948), + [aux_sym_insert_token1] = ACTIONS(4948), + [aux_sym_delete_token1] = ACTIONS(4948), + [aux_sym_highlight_token1] = ACTIONS(4948), + [aux_sym_edit_comment_token1] = ACTIONS(4948), + [anon_sym_CARET_LBRACK] = ACTIONS(4948), + [anon_sym_LBRACK_CARET] = ACTIONS(4948), + [sym_uri_autolink] = ACTIONS(4948), + [sym_email_autolink] = ACTIONS(4948), + [sym__whitespace_ge_2] = ACTIONS(4948), + [aux_sym__whitespace_token1] = ACTIONS(4950), + [sym__word_no_digit] = ACTIONS(4948), + [sym__digits] = ACTIONS(4948), + [anon_sym_DASH_DASH] = ACTIONS(4950), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4948), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4948), + [sym__code_span_start] = ACTIONS(4948), + [sym__emphasis_open_star] = ACTIONS(4948), + [sym__emphasis_open_underscore] = ACTIONS(4948), + [sym__strikeout_open] = ACTIONS(4948), + [sym__latex_span_start] = ACTIONS(4948), + [sym__single_quote_open] = ACTIONS(4948), + [sym__double_quote_open] = ACTIONS(4948), + [sym__superscript_open] = ACTIONS(4948), + [sym__subscript_open] = ACTIONS(4948), + [sym__subscript_close] = ACTIONS(4948), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4948), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4948), + [sym__cite_author_in_text] = ACTIONS(4948), + [sym__cite_suppress_author] = ACTIONS(4948), + [sym__shortcode_open_escaped] = ACTIONS(4948), + [sym__shortcode_open] = ACTIONS(4948), + [sym__unclosed_span] = ACTIONS(4948), + }, + [STATE(830)] = { + [sym__backslash_escape] = ACTIONS(5016), + [sym_entity_reference] = ACTIONS(5016), + [sym_numeric_character_reference] = ACTIONS(5016), + [anon_sym_LT] = ACTIONS(5018), + [anon_sym_GT] = ACTIONS(5016), + [anon_sym_BANG] = ACTIONS(5016), + [anon_sym_DQUOTE] = ACTIONS(5016), + [anon_sym_POUND] = ACTIONS(5016), + [anon_sym_DOLLAR] = ACTIONS(5016), + [anon_sym_PERCENT] = ACTIONS(5016), + [anon_sym_AMP] = ACTIONS(5018), + [anon_sym_SQUOTE] = ACTIONS(5016), + [anon_sym_STAR] = ACTIONS(5016), + [anon_sym_PLUS] = ACTIONS(5016), + [anon_sym_COMMA] = ACTIONS(5016), + [anon_sym_DASH] = ACTIONS(5018), + [anon_sym_DOT] = ACTIONS(5018), + [anon_sym_SLASH] = ACTIONS(5016), + [anon_sym_COLON] = ACTIONS(5016), + [anon_sym_SEMI] = ACTIONS(5016), + [anon_sym_EQ] = ACTIONS(5016), + [anon_sym_QMARK] = ACTIONS(5016), + [anon_sym_LBRACK] = ACTIONS(5018), + [anon_sym_BSLASH] = ACTIONS(5018), + [anon_sym_CARET] = ACTIONS(5018), + [anon_sym__] = ACTIONS(5016), + [anon_sym_BQUOTE] = ACTIONS(5016), + [anon_sym_LBRACE] = ACTIONS(5016), + [anon_sym_PIPE] = ACTIONS(5016), + [anon_sym_TILDE] = ACTIONS(5016), + [anon_sym_LPAREN] = ACTIONS(5016), + [anon_sym_RPAREN] = ACTIONS(5016), + [sym__newline_token] = ACTIONS(5016), + [aux_sym_insert_token1] = ACTIONS(5016), + [aux_sym_delete_token1] = ACTIONS(5016), + [aux_sym_highlight_token1] = ACTIONS(5016), + [aux_sym_edit_comment_token1] = ACTIONS(5016), + [anon_sym_CARET_LBRACK] = ACTIONS(5016), + [anon_sym_LBRACK_CARET] = ACTIONS(5016), + [sym_uri_autolink] = ACTIONS(5016), + [sym_email_autolink] = ACTIONS(5016), + [sym__whitespace_ge_2] = ACTIONS(5016), + [aux_sym__whitespace_token1] = ACTIONS(5018), + [sym__word_no_digit] = ACTIONS(5016), + [sym__digits] = ACTIONS(5016), + [anon_sym_DASH_DASH] = ACTIONS(5018), + [anon_sym_DASH_DASH_DASH] = ACTIONS(5016), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5016), + [sym__code_span_start] = ACTIONS(5016), + [sym__emphasis_open_star] = ACTIONS(5016), + [sym__emphasis_open_underscore] = ACTIONS(5016), + [sym__strikeout_open] = ACTIONS(5016), + [sym__latex_span_start] = ACTIONS(5016), + [sym__single_quote_open] = ACTIONS(5016), + [sym__double_quote_open] = ACTIONS(5016), + [sym__superscript_open] = ACTIONS(5016), + [sym__subscript_open] = ACTIONS(5016), + [sym__subscript_close] = ACTIONS(5016), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5016), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5016), + [sym__cite_author_in_text] = ACTIONS(5016), + [sym__cite_suppress_author] = ACTIONS(5016), + [sym__shortcode_open_escaped] = ACTIONS(5016), + [sym__shortcode_open] = ACTIONS(5016), + [sym__unclosed_span] = ACTIONS(5016), + }, + [STATE(831)] = { + [sym__backslash_escape] = ACTIONS(5020), + [sym_entity_reference] = ACTIONS(5020), + [sym_numeric_character_reference] = ACTIONS(5020), + [anon_sym_LT] = ACTIONS(5022), + [anon_sym_GT] = ACTIONS(5020), + [anon_sym_BANG] = ACTIONS(5020), + [anon_sym_DQUOTE] = ACTIONS(5020), + [anon_sym_POUND] = ACTIONS(5020), + [anon_sym_DOLLAR] = ACTIONS(5020), + [anon_sym_PERCENT] = ACTIONS(5020), + [anon_sym_AMP] = ACTIONS(5022), + [anon_sym_SQUOTE] = ACTIONS(5020), + [anon_sym_STAR] = ACTIONS(5020), + [anon_sym_PLUS] = ACTIONS(5020), + [anon_sym_COMMA] = ACTIONS(5020), + [anon_sym_DASH] = ACTIONS(5022), + [anon_sym_DOT] = ACTIONS(5022), + [anon_sym_SLASH] = ACTIONS(5020), + [anon_sym_COLON] = ACTIONS(5020), + [anon_sym_SEMI] = ACTIONS(5020), + [anon_sym_EQ] = ACTIONS(5020), + [anon_sym_QMARK] = ACTIONS(5020), + [anon_sym_LBRACK] = ACTIONS(5022), + [anon_sym_BSLASH] = ACTIONS(5022), + [anon_sym_CARET] = ACTIONS(5022), + [anon_sym__] = ACTIONS(5020), + [anon_sym_BQUOTE] = ACTIONS(5020), + [anon_sym_LBRACE] = ACTIONS(5020), + [anon_sym_PIPE] = ACTIONS(5020), + [anon_sym_TILDE] = ACTIONS(5020), + [anon_sym_LPAREN] = ACTIONS(5020), + [anon_sym_RPAREN] = ACTIONS(5020), + [sym__newline_token] = ACTIONS(5020), + [aux_sym_insert_token1] = ACTIONS(5020), + [aux_sym_delete_token1] = ACTIONS(5020), + [aux_sym_highlight_token1] = ACTIONS(5020), + [aux_sym_edit_comment_token1] = ACTIONS(5020), + [anon_sym_CARET_LBRACK] = ACTIONS(5020), + [anon_sym_LBRACK_CARET] = ACTIONS(5020), + [sym_uri_autolink] = ACTIONS(5020), + [sym_email_autolink] = ACTIONS(5020), + [sym__whitespace_ge_2] = ACTIONS(5020), + [aux_sym__whitespace_token1] = ACTIONS(5022), + [sym__word_no_digit] = ACTIONS(5020), + [sym__digits] = ACTIONS(5020), + [anon_sym_DASH_DASH] = ACTIONS(5022), + [anon_sym_DASH_DASH_DASH] = ACTIONS(5020), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5020), + [sym__code_span_start] = ACTIONS(5020), + [sym__emphasis_open_star] = ACTIONS(5020), + [sym__emphasis_open_underscore] = ACTIONS(5020), + [sym__strikeout_open] = ACTIONS(5020), + [sym__latex_span_start] = ACTIONS(5020), + [sym__single_quote_open] = ACTIONS(5020), + [sym__double_quote_open] = ACTIONS(5020), + [sym__superscript_open] = ACTIONS(5020), + [sym__subscript_open] = ACTIONS(5020), + [sym__subscript_close] = ACTIONS(5020), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5020), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5020), + [sym__cite_author_in_text] = ACTIONS(5020), + [sym__cite_suppress_author] = ACTIONS(5020), + [sym__shortcode_open_escaped] = ACTIONS(5020), + [sym__shortcode_open] = ACTIONS(5020), + [sym__unclosed_span] = ACTIONS(5020), + }, + [STATE(832)] = { + [sym__backslash_escape] = ACTIONS(4588), + [sym_entity_reference] = ACTIONS(4588), + [sym_numeric_character_reference] = ACTIONS(4588), + [anon_sym_LT] = ACTIONS(4590), + [anon_sym_GT] = ACTIONS(4588), + [anon_sym_BANG] = ACTIONS(4588), + [anon_sym_DQUOTE] = ACTIONS(4588), + [anon_sym_POUND] = ACTIONS(4588), + [anon_sym_DOLLAR] = ACTIONS(4588), + [anon_sym_PERCENT] = ACTIONS(4588), + [anon_sym_AMP] = ACTIONS(4590), + [anon_sym_SQUOTE] = ACTIONS(4588), + [anon_sym_STAR] = ACTIONS(4588), + [anon_sym_PLUS] = ACTIONS(4588), + [anon_sym_COMMA] = ACTIONS(4588), + [anon_sym_DASH] = ACTIONS(4590), + [anon_sym_DOT] = ACTIONS(4590), + [anon_sym_SLASH] = ACTIONS(4588), + [anon_sym_COLON] = ACTIONS(4588), + [anon_sym_SEMI] = ACTIONS(4588), + [anon_sym_EQ] = ACTIONS(4588), + [anon_sym_QMARK] = ACTIONS(4588), + [anon_sym_LBRACK] = ACTIONS(4590), + [anon_sym_BSLASH] = ACTIONS(4590), + [anon_sym_CARET] = ACTIONS(4590), + [anon_sym__] = ACTIONS(4588), + [anon_sym_BQUOTE] = ACTIONS(4588), + [anon_sym_LBRACE] = ACTIONS(4588), + [anon_sym_PIPE] = ACTIONS(4588), + [anon_sym_TILDE] = ACTIONS(4588), + [anon_sym_LPAREN] = ACTIONS(4588), + [anon_sym_RPAREN] = ACTIONS(4588), + [sym__newline_token] = ACTIONS(4588), + [aux_sym_insert_token1] = ACTIONS(4588), + [aux_sym_delete_token1] = ACTIONS(4588), + [aux_sym_highlight_token1] = ACTIONS(4588), + [aux_sym_edit_comment_token1] = ACTIONS(4588), + [anon_sym_CARET_LBRACK] = ACTIONS(4588), + [anon_sym_LBRACK_CARET] = ACTIONS(4588), + [sym_uri_autolink] = ACTIONS(4588), + [sym_email_autolink] = ACTIONS(4588), + [sym__whitespace_ge_2] = ACTIONS(4588), + [aux_sym__whitespace_token1] = ACTIONS(4590), + [sym__word_no_digit] = ACTIONS(4588), + [sym__digits] = ACTIONS(4588), + [anon_sym_DASH_DASH] = ACTIONS(4590), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4588), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4588), + [sym__code_span_start] = ACTIONS(4588), + [sym__emphasis_open_star] = ACTIONS(4588), + [sym__emphasis_open_underscore] = ACTIONS(4588), + [sym__strikeout_open] = ACTIONS(4588), + [sym__strikeout_close] = ACTIONS(4588), + [sym__latex_span_start] = ACTIONS(4588), + [sym__single_quote_open] = ACTIONS(4588), + [sym__double_quote_open] = ACTIONS(4588), + [sym__superscript_open] = ACTIONS(4588), + [sym__subscript_open] = ACTIONS(4588), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4588), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4588), + [sym__cite_author_in_text] = ACTIONS(4588), + [sym__cite_suppress_author] = ACTIONS(4588), + [sym__shortcode_open_escaped] = ACTIONS(4588), + [sym__shortcode_open] = ACTIONS(4588), + [sym__unclosed_span] = ACTIONS(4588), + }, + [STATE(833)] = { + [sym__backslash_escape] = ACTIONS(4936), + [sym_entity_reference] = ACTIONS(4936), + [sym_numeric_character_reference] = ACTIONS(4936), + [anon_sym_LT] = ACTIONS(4938), + [anon_sym_GT] = ACTIONS(4936), + [anon_sym_BANG] = ACTIONS(4936), + [anon_sym_DQUOTE] = ACTIONS(4936), + [anon_sym_POUND] = ACTIONS(4936), + [anon_sym_DOLLAR] = ACTIONS(4936), + [anon_sym_PERCENT] = ACTIONS(4936), + [anon_sym_AMP] = ACTIONS(4938), + [anon_sym_SQUOTE] = ACTIONS(4936), + [anon_sym_STAR] = ACTIONS(4936), + [anon_sym_PLUS] = ACTIONS(4936), + [anon_sym_COMMA] = ACTIONS(4936), + [anon_sym_DASH] = ACTIONS(4938), + [anon_sym_DOT] = ACTIONS(4938), + [anon_sym_SLASH] = ACTIONS(4936), + [anon_sym_COLON] = ACTIONS(4936), + [anon_sym_SEMI] = ACTIONS(4936), + [anon_sym_EQ] = ACTIONS(4936), + [anon_sym_QMARK] = ACTIONS(4936), + [anon_sym_LBRACK] = ACTIONS(4938), + [anon_sym_BSLASH] = ACTIONS(4938), + [anon_sym_CARET] = ACTIONS(4938), + [anon_sym__] = ACTIONS(4936), + [anon_sym_BQUOTE] = ACTIONS(4936), + [anon_sym_LBRACE] = ACTIONS(4936), + [anon_sym_PIPE] = ACTIONS(4936), + [anon_sym_TILDE] = ACTIONS(4936), + [anon_sym_LPAREN] = ACTIONS(4936), + [anon_sym_RPAREN] = ACTIONS(4936), + [sym__newline_token] = ACTIONS(4936), + [aux_sym_insert_token1] = ACTIONS(4936), + [aux_sym_delete_token1] = ACTIONS(4936), + [aux_sym_highlight_token1] = ACTIONS(4936), + [aux_sym_edit_comment_token1] = ACTIONS(4936), + [anon_sym_CARET_LBRACK] = ACTIONS(4936), + [anon_sym_LBRACK_CARET] = ACTIONS(4936), + [sym_uri_autolink] = ACTIONS(4936), + [sym_email_autolink] = ACTIONS(4936), + [sym__whitespace_ge_2] = ACTIONS(4936), + [aux_sym__whitespace_token1] = ACTIONS(4938), + [sym__word_no_digit] = ACTIONS(4936), + [sym__digits] = ACTIONS(4936), + [anon_sym_DASH_DASH] = ACTIONS(4938), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4936), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4936), + [sym__code_span_start] = ACTIONS(4936), + [sym__emphasis_open_star] = ACTIONS(4936), + [sym__emphasis_open_underscore] = ACTIONS(4936), + [sym__strikeout_open] = ACTIONS(4936), + [sym__latex_span_start] = ACTIONS(4936), + [sym__single_quote_open] = ACTIONS(4936), + [sym__double_quote_open] = ACTIONS(4936), + [sym__superscript_open] = ACTIONS(4936), + [sym__subscript_open] = ACTIONS(4936), + [sym__subscript_close] = ACTIONS(4936), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4936), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4936), + [sym__cite_author_in_text] = ACTIONS(4936), + [sym__cite_suppress_author] = ACTIONS(4936), + [sym__shortcode_open_escaped] = ACTIONS(4936), + [sym__shortcode_open] = ACTIONS(4936), + [sym__unclosed_span] = ACTIONS(4936), + }, + [STATE(834)] = { + [sym__backslash_escape] = ACTIONS(5028), + [sym_entity_reference] = ACTIONS(5028), + [sym_numeric_character_reference] = ACTIONS(5028), + [anon_sym_LT] = ACTIONS(5030), + [anon_sym_GT] = ACTIONS(5028), + [anon_sym_BANG] = ACTIONS(5028), + [anon_sym_DQUOTE] = ACTIONS(5028), + [anon_sym_POUND] = ACTIONS(5028), + [anon_sym_DOLLAR] = ACTIONS(5028), + [anon_sym_PERCENT] = ACTIONS(5028), + [anon_sym_AMP] = ACTIONS(5030), + [anon_sym_SQUOTE] = ACTIONS(5028), + [anon_sym_STAR] = ACTIONS(5028), + [anon_sym_PLUS] = ACTIONS(5028), + [anon_sym_COMMA] = ACTIONS(5028), + [anon_sym_DASH] = ACTIONS(5030), + [anon_sym_DOT] = ACTIONS(5030), + [anon_sym_SLASH] = ACTIONS(5028), + [anon_sym_COLON] = ACTIONS(5028), + [anon_sym_SEMI] = ACTIONS(5028), + [anon_sym_EQ] = ACTIONS(5028), + [anon_sym_QMARK] = ACTIONS(5028), + [anon_sym_LBRACK] = ACTIONS(5030), + [anon_sym_BSLASH] = ACTIONS(5030), + [anon_sym_CARET] = ACTIONS(5030), + [anon_sym__] = ACTIONS(5028), + [anon_sym_BQUOTE] = ACTIONS(5028), + [anon_sym_LBRACE] = ACTIONS(5028), + [anon_sym_PIPE] = ACTIONS(5028), + [anon_sym_TILDE] = ACTIONS(5028), + [anon_sym_LPAREN] = ACTIONS(5028), + [anon_sym_RPAREN] = ACTIONS(5028), + [sym__newline_token] = ACTIONS(5028), + [aux_sym_insert_token1] = ACTIONS(5028), + [aux_sym_delete_token1] = ACTIONS(5028), + [aux_sym_highlight_token1] = ACTIONS(5028), + [aux_sym_edit_comment_token1] = ACTIONS(5028), + [anon_sym_CARET_LBRACK] = ACTIONS(5028), + [anon_sym_LBRACK_CARET] = ACTIONS(5028), + [sym_uri_autolink] = ACTIONS(5028), + [sym_email_autolink] = ACTIONS(5028), + [sym__whitespace_ge_2] = ACTIONS(5028), + [aux_sym__whitespace_token1] = ACTIONS(5030), + [sym__word_no_digit] = ACTIONS(5028), + [sym__digits] = ACTIONS(5028), + [anon_sym_DASH_DASH] = ACTIONS(5030), + [anon_sym_DASH_DASH_DASH] = ACTIONS(5028), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5028), + [sym__code_span_start] = ACTIONS(5028), + [sym__emphasis_open_star] = ACTIONS(5028), + [sym__emphasis_open_underscore] = ACTIONS(5028), + [sym__strikeout_open] = ACTIONS(5028), + [sym__latex_span_start] = ACTIONS(5028), + [sym__single_quote_open] = ACTIONS(5028), + [sym__double_quote_open] = ACTIONS(5028), + [sym__superscript_open] = ACTIONS(5028), + [sym__subscript_open] = ACTIONS(5028), + [sym__subscript_close] = ACTIONS(5028), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5028), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5028), + [sym__cite_author_in_text] = ACTIONS(5028), + [sym__cite_suppress_author] = ACTIONS(5028), + [sym__shortcode_open_escaped] = ACTIONS(5028), + [sym__shortcode_open] = ACTIONS(5028), + [sym__unclosed_span] = ACTIONS(5028), + }, + [STATE(835)] = { + [sym__backslash_escape] = ACTIONS(5032), + [sym_entity_reference] = ACTIONS(5032), + [sym_numeric_character_reference] = ACTIONS(5032), + [anon_sym_LT] = ACTIONS(5034), + [anon_sym_GT] = ACTIONS(5032), + [anon_sym_BANG] = ACTIONS(5032), + [anon_sym_DQUOTE] = ACTIONS(5032), + [anon_sym_POUND] = ACTIONS(5032), + [anon_sym_DOLLAR] = ACTIONS(5032), + [anon_sym_PERCENT] = ACTIONS(5032), + [anon_sym_AMP] = ACTIONS(5034), + [anon_sym_SQUOTE] = ACTIONS(5032), + [anon_sym_STAR] = ACTIONS(5032), + [anon_sym_PLUS] = ACTIONS(5032), + [anon_sym_COMMA] = ACTIONS(5032), + [anon_sym_DASH] = ACTIONS(5034), + [anon_sym_DOT] = ACTIONS(5034), + [anon_sym_SLASH] = ACTIONS(5032), + [anon_sym_COLON] = ACTIONS(5032), + [anon_sym_SEMI] = ACTIONS(5032), + [anon_sym_EQ] = ACTIONS(5032), + [anon_sym_QMARK] = ACTIONS(5032), + [anon_sym_LBRACK] = ACTIONS(5034), + [anon_sym_BSLASH] = ACTIONS(5034), + [anon_sym_CARET] = ACTIONS(5034), + [anon_sym__] = ACTIONS(5032), + [anon_sym_BQUOTE] = ACTIONS(5032), + [anon_sym_LBRACE] = ACTIONS(5032), + [anon_sym_PIPE] = ACTIONS(5032), + [anon_sym_TILDE] = ACTIONS(5032), + [anon_sym_LPAREN] = ACTIONS(5032), + [anon_sym_RPAREN] = ACTIONS(5032), + [sym__newline_token] = ACTIONS(5032), + [aux_sym_insert_token1] = ACTIONS(5032), + [aux_sym_delete_token1] = ACTIONS(5032), + [aux_sym_highlight_token1] = ACTIONS(5032), + [aux_sym_edit_comment_token1] = ACTIONS(5032), + [anon_sym_CARET_LBRACK] = ACTIONS(5032), + [anon_sym_LBRACK_CARET] = ACTIONS(5032), + [sym_uri_autolink] = ACTIONS(5032), + [sym_email_autolink] = ACTIONS(5032), + [sym__whitespace_ge_2] = ACTIONS(5032), + [aux_sym__whitespace_token1] = ACTIONS(5034), + [sym__word_no_digit] = ACTIONS(5032), + [sym__digits] = ACTIONS(5032), + [anon_sym_DASH_DASH] = ACTIONS(5034), + [anon_sym_DASH_DASH_DASH] = ACTIONS(5032), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5032), + [sym__code_span_start] = ACTIONS(5032), + [sym__emphasis_open_star] = ACTIONS(5032), + [sym__emphasis_open_underscore] = ACTIONS(5032), + [sym__strikeout_open] = ACTIONS(5032), + [sym__latex_span_start] = ACTIONS(5032), + [sym__single_quote_open] = ACTIONS(5032), + [sym__double_quote_open] = ACTIONS(5032), + [sym__double_quote_close] = ACTIONS(5032), + [sym__superscript_open] = ACTIONS(5032), + [sym__subscript_open] = ACTIONS(5032), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5032), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5032), + [sym__cite_author_in_text] = ACTIONS(5032), + [sym__cite_suppress_author] = ACTIONS(5032), + [sym__shortcode_open_escaped] = ACTIONS(5032), + [sym__shortcode_open] = ACTIONS(5032), + [sym__unclosed_span] = ACTIONS(5032), + }, + [STATE(836)] = { + [sym__backslash_escape] = ACTIONS(5036), + [sym_entity_reference] = ACTIONS(5036), + [sym_numeric_character_reference] = ACTIONS(5036), + [anon_sym_LT] = ACTIONS(5038), + [anon_sym_GT] = ACTIONS(5036), + [anon_sym_BANG] = ACTIONS(5036), + [anon_sym_DQUOTE] = ACTIONS(5036), + [anon_sym_POUND] = ACTIONS(5036), + [anon_sym_DOLLAR] = ACTIONS(5036), + [anon_sym_PERCENT] = ACTIONS(5036), + [anon_sym_AMP] = ACTIONS(5038), + [anon_sym_SQUOTE] = ACTIONS(5036), + [anon_sym_STAR] = ACTIONS(5036), + [anon_sym_PLUS] = ACTIONS(5036), + [anon_sym_COMMA] = ACTIONS(5036), + [anon_sym_DASH] = ACTIONS(5038), + [anon_sym_DOT] = ACTIONS(5038), + [anon_sym_SLASH] = ACTIONS(5036), + [anon_sym_COLON] = ACTIONS(5036), + [anon_sym_SEMI] = ACTIONS(5036), + [anon_sym_EQ] = ACTIONS(5036), + [anon_sym_QMARK] = ACTIONS(5036), + [anon_sym_LBRACK] = ACTIONS(5038), + [anon_sym_BSLASH] = ACTIONS(5038), + [anon_sym_CARET] = ACTIONS(5038), + [anon_sym__] = ACTIONS(5036), + [anon_sym_BQUOTE] = ACTIONS(5036), + [anon_sym_LBRACE] = ACTIONS(5036), + [anon_sym_PIPE] = ACTIONS(5036), + [anon_sym_TILDE] = ACTIONS(5036), + [anon_sym_LPAREN] = ACTIONS(5036), + [anon_sym_RPAREN] = ACTIONS(5036), + [sym__newline_token] = ACTIONS(5036), + [aux_sym_insert_token1] = ACTIONS(5036), + [aux_sym_delete_token1] = ACTIONS(5036), + [aux_sym_highlight_token1] = ACTIONS(5036), + [aux_sym_edit_comment_token1] = ACTIONS(5036), + [anon_sym_CARET_LBRACK] = ACTIONS(5036), + [anon_sym_LBRACK_CARET] = ACTIONS(5036), + [sym_uri_autolink] = ACTIONS(5036), + [sym_email_autolink] = ACTIONS(5036), + [sym__whitespace_ge_2] = ACTIONS(5036), + [aux_sym__whitespace_token1] = ACTIONS(5038), + [sym__word_no_digit] = ACTIONS(5036), + [sym__digits] = ACTIONS(5036), + [anon_sym_DASH_DASH] = ACTIONS(5038), + [anon_sym_DASH_DASH_DASH] = ACTIONS(5036), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5036), + [sym__code_span_start] = ACTIONS(5036), + [sym__emphasis_open_star] = ACTIONS(5036), + [sym__emphasis_open_underscore] = ACTIONS(5036), + [sym__strikeout_open] = ACTIONS(5036), + [sym__latex_span_start] = ACTIONS(5036), + [sym__single_quote_open] = ACTIONS(5036), + [sym__double_quote_open] = ACTIONS(5036), + [sym__superscript_open] = ACTIONS(5036), + [sym__subscript_open] = ACTIONS(5036), + [sym__subscript_close] = ACTIONS(5036), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5036), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5036), + [sym__cite_author_in_text] = ACTIONS(5036), + [sym__cite_suppress_author] = ACTIONS(5036), + [sym__shortcode_open_escaped] = ACTIONS(5036), + [sym__shortcode_open] = ACTIONS(5036), + [sym__unclosed_span] = ACTIONS(5036), + }, + [STATE(837)] = { + [sym__backslash_escape] = ACTIONS(4812), + [sym_entity_reference] = ACTIONS(4812), + [sym_numeric_character_reference] = ACTIONS(4812), + [anon_sym_LT] = ACTIONS(4814), + [anon_sym_GT] = ACTIONS(4812), + [anon_sym_BANG] = ACTIONS(4812), + [anon_sym_DQUOTE] = ACTIONS(4812), + [anon_sym_POUND] = ACTIONS(4812), + [anon_sym_DOLLAR] = ACTIONS(4812), + [anon_sym_PERCENT] = ACTIONS(4812), + [anon_sym_AMP] = ACTIONS(4814), + [anon_sym_SQUOTE] = ACTIONS(4812), + [anon_sym_STAR] = ACTIONS(4812), + [anon_sym_PLUS] = ACTIONS(4812), + [anon_sym_COMMA] = ACTIONS(4812), + [anon_sym_DASH] = ACTIONS(4814), + [anon_sym_DOT] = ACTIONS(4814), + [anon_sym_SLASH] = ACTIONS(4812), + [anon_sym_COLON] = ACTIONS(4812), + [anon_sym_SEMI] = ACTIONS(4812), + [anon_sym_EQ] = ACTIONS(4812), + [anon_sym_QMARK] = ACTIONS(4812), + [anon_sym_LBRACK] = ACTIONS(4814), + [anon_sym_BSLASH] = ACTIONS(4814), + [anon_sym_CARET] = ACTIONS(4814), + [anon_sym__] = ACTIONS(4812), + [anon_sym_BQUOTE] = ACTIONS(4812), + [anon_sym_LBRACE] = ACTIONS(4812), + [anon_sym_PIPE] = ACTIONS(4812), + [anon_sym_TILDE] = ACTIONS(4812), + [anon_sym_LPAREN] = ACTIONS(4812), + [anon_sym_RPAREN] = ACTIONS(4812), + [sym__newline_token] = ACTIONS(4812), + [aux_sym_insert_token1] = ACTIONS(4812), + [aux_sym_delete_token1] = ACTIONS(4812), + [aux_sym_highlight_token1] = ACTIONS(4812), + [aux_sym_edit_comment_token1] = ACTIONS(4812), + [anon_sym_CARET_LBRACK] = ACTIONS(4812), + [anon_sym_LBRACK_CARET] = ACTIONS(4812), + [sym_uri_autolink] = ACTIONS(4812), + [sym_email_autolink] = ACTIONS(4812), + [sym__whitespace_ge_2] = ACTIONS(4812), + [aux_sym__whitespace_token1] = ACTIONS(4814), + [sym__word_no_digit] = ACTIONS(4812), + [sym__digits] = ACTIONS(4812), + [anon_sym_DASH_DASH] = ACTIONS(4814), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4812), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4812), + [sym__code_span_start] = ACTIONS(4812), + [sym__emphasis_open_star] = ACTIONS(4812), + [sym__emphasis_open_underscore] = ACTIONS(4812), + [sym__strikeout_open] = ACTIONS(4812), + [sym__latex_span_start] = ACTIONS(4812), + [sym__single_quote_open] = ACTIONS(4812), + [sym__double_quote_open] = ACTIONS(4812), + [sym__superscript_open] = ACTIONS(4812), + [sym__subscript_open] = ACTIONS(4812), + [sym__subscript_close] = ACTIONS(4812), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4812), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4812), + [sym__cite_author_in_text] = ACTIONS(4812), + [sym__cite_suppress_author] = ACTIONS(4812), + [sym__shortcode_open_escaped] = ACTIONS(4812), + [sym__shortcode_open] = ACTIONS(4812), + [sym__unclosed_span] = ACTIONS(4812), + }, + [STATE(838)] = { + [sym__backslash_escape] = ACTIONS(4816), + [sym_entity_reference] = ACTIONS(4816), + [sym_numeric_character_reference] = ACTIONS(4816), + [anon_sym_LT] = ACTIONS(4818), + [anon_sym_GT] = ACTIONS(4816), + [anon_sym_BANG] = ACTIONS(4816), + [anon_sym_DQUOTE] = ACTIONS(4816), + [anon_sym_POUND] = ACTIONS(4816), + [anon_sym_DOLLAR] = ACTIONS(4816), + [anon_sym_PERCENT] = ACTIONS(4816), + [anon_sym_AMP] = ACTIONS(4818), + [anon_sym_SQUOTE] = ACTIONS(4816), + [anon_sym_STAR] = ACTIONS(4816), + [anon_sym_PLUS] = ACTIONS(4816), + [anon_sym_COMMA] = ACTIONS(4816), + [anon_sym_DASH] = ACTIONS(4818), + [anon_sym_DOT] = ACTIONS(4818), + [anon_sym_SLASH] = ACTIONS(4816), + [anon_sym_COLON] = ACTIONS(4816), + [anon_sym_SEMI] = ACTIONS(4816), + [anon_sym_EQ] = ACTIONS(4816), + [anon_sym_QMARK] = ACTIONS(4816), + [anon_sym_LBRACK] = ACTIONS(4818), + [anon_sym_BSLASH] = ACTIONS(4818), + [anon_sym_CARET] = ACTIONS(4818), + [anon_sym__] = ACTIONS(4816), + [anon_sym_BQUOTE] = ACTIONS(4816), + [anon_sym_LBRACE] = ACTIONS(4816), + [anon_sym_PIPE] = ACTIONS(4816), + [anon_sym_TILDE] = ACTIONS(4816), + [anon_sym_LPAREN] = ACTIONS(4816), + [anon_sym_RPAREN] = ACTIONS(4816), + [sym__newline_token] = ACTIONS(4816), + [aux_sym_insert_token1] = ACTIONS(4816), + [aux_sym_delete_token1] = ACTIONS(4816), + [aux_sym_highlight_token1] = ACTIONS(4816), + [aux_sym_edit_comment_token1] = ACTIONS(4816), + [anon_sym_CARET_LBRACK] = ACTIONS(4816), + [anon_sym_LBRACK_CARET] = ACTIONS(4816), + [sym_uri_autolink] = ACTIONS(4816), + [sym_email_autolink] = ACTIONS(4816), + [sym__whitespace_ge_2] = ACTIONS(4816), + [aux_sym__whitespace_token1] = ACTIONS(4818), + [sym__word_no_digit] = ACTIONS(4816), + [sym__digits] = ACTIONS(4816), + [anon_sym_DASH_DASH] = ACTIONS(4818), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4816), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4816), + [sym__code_span_start] = ACTIONS(4816), + [sym__emphasis_open_star] = ACTIONS(4816), + [sym__emphasis_open_underscore] = ACTIONS(4816), + [sym__strikeout_open] = ACTIONS(4816), + [sym__latex_span_start] = ACTIONS(4816), + [sym__single_quote_open] = ACTIONS(4816), + [sym__double_quote_open] = ACTIONS(4816), + [sym__superscript_open] = ACTIONS(4816), + [sym__subscript_open] = ACTIONS(4816), + [sym__subscript_close] = ACTIONS(4816), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4816), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4816), + [sym__cite_author_in_text] = ACTIONS(4816), + [sym__cite_suppress_author] = ACTIONS(4816), + [sym__shortcode_open_escaped] = ACTIONS(4816), + [sym__shortcode_open] = ACTIONS(4816), + [sym__unclosed_span] = ACTIONS(4816), + }, + [STATE(839)] = { + [sym__backslash_escape] = ACTIONS(4840), + [sym_entity_reference] = ACTIONS(4840), + [sym_numeric_character_reference] = ACTIONS(4840), + [anon_sym_LT] = ACTIONS(4842), + [anon_sym_GT] = ACTIONS(4840), + [anon_sym_BANG] = ACTIONS(4840), + [anon_sym_DQUOTE] = ACTIONS(4840), + [anon_sym_POUND] = ACTIONS(4840), + [anon_sym_DOLLAR] = ACTIONS(4840), + [anon_sym_PERCENT] = ACTIONS(4840), + [anon_sym_AMP] = ACTIONS(4842), + [anon_sym_SQUOTE] = ACTIONS(4840), + [anon_sym_STAR] = ACTIONS(4840), + [anon_sym_PLUS] = ACTIONS(4840), + [anon_sym_COMMA] = ACTIONS(4840), + [anon_sym_DASH] = ACTIONS(4842), + [anon_sym_DOT] = ACTIONS(4842), + [anon_sym_SLASH] = ACTIONS(4840), + [anon_sym_COLON] = ACTIONS(4840), + [anon_sym_SEMI] = ACTIONS(4840), + [anon_sym_EQ] = ACTIONS(4840), + [anon_sym_QMARK] = ACTIONS(4840), + [anon_sym_LBRACK] = ACTIONS(4842), + [anon_sym_BSLASH] = ACTIONS(4842), + [anon_sym_CARET] = ACTIONS(4842), + [anon_sym__] = ACTIONS(4840), + [anon_sym_BQUOTE] = ACTIONS(4840), + [anon_sym_LBRACE] = ACTIONS(4840), + [anon_sym_PIPE] = ACTIONS(4840), + [anon_sym_TILDE] = ACTIONS(4840), + [anon_sym_LPAREN] = ACTIONS(4840), + [anon_sym_RPAREN] = ACTIONS(4840), + [sym__newline_token] = ACTIONS(4840), + [aux_sym_insert_token1] = ACTIONS(4840), + [aux_sym_delete_token1] = ACTIONS(4840), + [aux_sym_highlight_token1] = ACTIONS(4840), + [aux_sym_edit_comment_token1] = ACTIONS(4840), + [anon_sym_CARET_LBRACK] = ACTIONS(4840), + [anon_sym_LBRACK_CARET] = ACTIONS(4840), + [sym_uri_autolink] = ACTIONS(4840), + [sym_email_autolink] = ACTIONS(4840), + [sym__whitespace_ge_2] = ACTIONS(4840), + [aux_sym__whitespace_token1] = ACTIONS(4842), + [sym__word_no_digit] = ACTIONS(4840), + [sym__digits] = ACTIONS(4840), + [anon_sym_DASH_DASH] = ACTIONS(4842), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4840), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4840), + [sym__code_span_start] = ACTIONS(4840), + [sym__emphasis_open_star] = ACTIONS(4840), + [sym__emphasis_open_underscore] = ACTIONS(4840), + [sym__strikeout_open] = ACTIONS(4840), + [sym__latex_span_start] = ACTIONS(4840), + [sym__single_quote_open] = ACTIONS(4840), + [sym__double_quote_open] = ACTIONS(4840), + [sym__superscript_open] = ACTIONS(4840), + [sym__subscript_open] = ACTIONS(4840), + [sym__subscript_close] = ACTIONS(4840), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4840), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4840), + [sym__cite_author_in_text] = ACTIONS(4840), + [sym__cite_suppress_author] = ACTIONS(4840), + [sym__shortcode_open_escaped] = ACTIONS(4840), + [sym__shortcode_open] = ACTIONS(4840), + [sym__unclosed_span] = ACTIONS(4840), + }, + [STATE(840)] = { + [sym__backslash_escape] = ACTIONS(4876), + [sym_entity_reference] = ACTIONS(4876), + [sym_numeric_character_reference] = ACTIONS(4876), + [anon_sym_LT] = ACTIONS(4878), + [anon_sym_GT] = ACTIONS(4876), + [anon_sym_BANG] = ACTIONS(4876), + [anon_sym_DQUOTE] = ACTIONS(4876), + [anon_sym_POUND] = ACTIONS(4876), + [anon_sym_DOLLAR] = ACTIONS(4876), + [anon_sym_PERCENT] = ACTIONS(4876), + [anon_sym_AMP] = ACTIONS(4878), + [anon_sym_SQUOTE] = ACTIONS(4876), + [anon_sym_STAR] = ACTIONS(4876), + [anon_sym_PLUS] = ACTIONS(4876), + [anon_sym_COMMA] = ACTIONS(4876), + [anon_sym_DASH] = ACTIONS(4878), + [anon_sym_DOT] = ACTIONS(4878), + [anon_sym_SLASH] = ACTIONS(4876), + [anon_sym_COLON] = ACTIONS(4876), + [anon_sym_SEMI] = ACTIONS(4876), + [anon_sym_EQ] = ACTIONS(4876), + [anon_sym_QMARK] = ACTIONS(4876), + [anon_sym_LBRACK] = ACTIONS(4878), + [anon_sym_BSLASH] = ACTIONS(4878), + [anon_sym_CARET] = ACTIONS(4878), + [anon_sym__] = ACTIONS(4876), + [anon_sym_BQUOTE] = ACTIONS(4876), + [anon_sym_LBRACE] = ACTIONS(4876), + [anon_sym_PIPE] = ACTIONS(4876), + [anon_sym_TILDE] = ACTIONS(4876), + [anon_sym_LPAREN] = ACTIONS(4876), + [anon_sym_RPAREN] = ACTIONS(4876), + [sym__newline_token] = ACTIONS(4876), + [aux_sym_insert_token1] = ACTIONS(4876), + [aux_sym_delete_token1] = ACTIONS(4876), + [aux_sym_highlight_token1] = ACTIONS(4876), + [aux_sym_edit_comment_token1] = ACTIONS(4876), + [anon_sym_CARET_LBRACK] = ACTIONS(4876), + [anon_sym_LBRACK_CARET] = ACTIONS(4876), + [sym_uri_autolink] = ACTIONS(4876), + [sym_email_autolink] = ACTIONS(4876), + [sym__whitespace_ge_2] = ACTIONS(4876), + [aux_sym__whitespace_token1] = ACTIONS(4878), + [sym__word_no_digit] = ACTIONS(4876), + [sym__digits] = ACTIONS(4876), + [anon_sym_DASH_DASH] = ACTIONS(4878), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4876), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4876), + [sym__code_span_start] = ACTIONS(4876), + [sym__emphasis_open_star] = ACTIONS(4876), + [sym__emphasis_open_underscore] = ACTIONS(4876), + [sym__emphasis_close_underscore] = ACTIONS(4876), + [sym__strikeout_open] = ACTIONS(4876), + [sym__latex_span_start] = ACTIONS(4876), + [sym__single_quote_open] = ACTIONS(4876), + [sym__double_quote_open] = ACTIONS(4876), + [sym__superscript_open] = ACTIONS(4876), + [sym__subscript_open] = ACTIONS(4876), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4876), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4876), + [sym__cite_author_in_text] = ACTIONS(4876), + [sym__cite_suppress_author] = ACTIONS(4876), + [sym__shortcode_open_escaped] = ACTIONS(4876), + [sym__shortcode_open] = ACTIONS(4876), + [sym__unclosed_span] = ACTIONS(4876), + }, + [STATE(841)] = { + [sym__backslash_escape] = ACTIONS(4856), + [sym_entity_reference] = ACTIONS(4856), + [sym_numeric_character_reference] = ACTIONS(4856), + [anon_sym_LT] = ACTIONS(4858), + [anon_sym_GT] = ACTIONS(4856), + [anon_sym_BANG] = ACTIONS(4856), + [anon_sym_DQUOTE] = ACTIONS(4856), + [anon_sym_POUND] = ACTIONS(4856), + [anon_sym_DOLLAR] = ACTIONS(4856), + [anon_sym_PERCENT] = ACTIONS(4856), + [anon_sym_AMP] = ACTIONS(4858), + [anon_sym_SQUOTE] = ACTIONS(4856), + [anon_sym_STAR] = ACTIONS(4856), + [anon_sym_PLUS] = ACTIONS(4856), + [anon_sym_COMMA] = ACTIONS(4856), + [anon_sym_DASH] = ACTIONS(4858), + [anon_sym_DOT] = ACTIONS(4858), + [anon_sym_SLASH] = ACTIONS(4856), + [anon_sym_COLON] = ACTIONS(4856), + [anon_sym_SEMI] = ACTIONS(4856), + [anon_sym_EQ] = ACTIONS(4856), + [anon_sym_QMARK] = ACTIONS(4856), + [anon_sym_LBRACK] = ACTIONS(4858), + [anon_sym_BSLASH] = ACTIONS(4858), + [anon_sym_CARET] = ACTIONS(4858), + [anon_sym__] = ACTIONS(4856), + [anon_sym_BQUOTE] = ACTIONS(4856), + [anon_sym_LBRACE] = ACTIONS(4856), + [anon_sym_PIPE] = ACTIONS(4856), + [anon_sym_TILDE] = ACTIONS(4856), + [anon_sym_LPAREN] = ACTIONS(4856), + [anon_sym_RPAREN] = ACTIONS(4856), + [sym__newline_token] = ACTIONS(4856), + [aux_sym_insert_token1] = ACTIONS(4856), + [aux_sym_delete_token1] = ACTIONS(4856), + [aux_sym_highlight_token1] = ACTIONS(4856), + [aux_sym_edit_comment_token1] = ACTIONS(4856), + [anon_sym_CARET_LBRACK] = ACTIONS(4856), + [anon_sym_LBRACK_CARET] = ACTIONS(4856), + [sym_uri_autolink] = ACTIONS(4856), + [sym_email_autolink] = ACTIONS(4856), + [sym__whitespace_ge_2] = ACTIONS(4856), + [aux_sym__whitespace_token1] = ACTIONS(4858), + [sym__word_no_digit] = ACTIONS(4856), + [sym__digits] = ACTIONS(4856), + [anon_sym_DASH_DASH] = ACTIONS(4858), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4856), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4856), + [sym__code_span_start] = ACTIONS(4856), + [sym__emphasis_open_star] = ACTIONS(4856), + [sym__emphasis_open_underscore] = ACTIONS(4856), + [sym__strikeout_open] = ACTIONS(4856), + [sym__latex_span_start] = ACTIONS(4856), + [sym__single_quote_open] = ACTIONS(4856), + [sym__double_quote_open] = ACTIONS(4856), + [sym__superscript_open] = ACTIONS(4856), + [sym__superscript_close] = ACTIONS(4856), + [sym__subscript_open] = ACTIONS(4856), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4856), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4856), + [sym__cite_author_in_text] = ACTIONS(4856), + [sym__cite_suppress_author] = ACTIONS(4856), + [sym__shortcode_open_escaped] = ACTIONS(4856), + [sym__shortcode_open] = ACTIONS(4856), + [sym__unclosed_span] = ACTIONS(4856), + }, + [STATE(842)] = { + [sym__backslash_escape] = ACTIONS(4880), + [sym_entity_reference] = ACTIONS(4880), + [sym_numeric_character_reference] = ACTIONS(4880), + [anon_sym_LT] = ACTIONS(4882), + [anon_sym_GT] = ACTIONS(4880), + [anon_sym_BANG] = ACTIONS(4880), + [anon_sym_DQUOTE] = ACTIONS(4880), + [anon_sym_POUND] = ACTIONS(4880), + [anon_sym_DOLLAR] = ACTIONS(4880), + [anon_sym_PERCENT] = ACTIONS(4880), + [anon_sym_AMP] = ACTIONS(4882), + [anon_sym_SQUOTE] = ACTIONS(4880), + [anon_sym_STAR] = ACTIONS(4880), + [anon_sym_PLUS] = ACTIONS(4880), + [anon_sym_COMMA] = ACTIONS(4880), + [anon_sym_DASH] = ACTIONS(4882), + [anon_sym_DOT] = ACTIONS(4882), + [anon_sym_SLASH] = ACTIONS(4880), + [anon_sym_COLON] = ACTIONS(4880), + [anon_sym_SEMI] = ACTIONS(4880), + [anon_sym_EQ] = ACTIONS(4880), + [anon_sym_QMARK] = ACTIONS(4880), + [anon_sym_LBRACK] = ACTIONS(4882), + [anon_sym_BSLASH] = ACTIONS(4882), + [anon_sym_CARET] = ACTIONS(4882), + [anon_sym__] = ACTIONS(4880), + [anon_sym_BQUOTE] = ACTIONS(4880), + [anon_sym_LBRACE] = ACTIONS(4880), + [anon_sym_PIPE] = ACTIONS(4880), + [anon_sym_TILDE] = ACTIONS(4880), + [anon_sym_LPAREN] = ACTIONS(4880), + [anon_sym_RPAREN] = ACTIONS(4880), + [sym__newline_token] = ACTIONS(4880), + [aux_sym_insert_token1] = ACTIONS(4880), + [aux_sym_delete_token1] = ACTIONS(4880), + [aux_sym_highlight_token1] = ACTIONS(4880), + [aux_sym_edit_comment_token1] = ACTIONS(4880), + [anon_sym_CARET_LBRACK] = ACTIONS(4880), + [anon_sym_LBRACK_CARET] = ACTIONS(4880), + [sym_uri_autolink] = ACTIONS(4880), + [sym_email_autolink] = ACTIONS(4880), + [sym__whitespace_ge_2] = ACTIONS(4880), + [aux_sym__whitespace_token1] = ACTIONS(4882), + [sym__word_no_digit] = ACTIONS(4880), + [sym__digits] = ACTIONS(4880), + [anon_sym_DASH_DASH] = ACTIONS(4882), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4880), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4880), + [sym__code_span_start] = ACTIONS(4880), + [sym__emphasis_open_star] = ACTIONS(4880), + [sym__emphasis_open_underscore] = ACTIONS(4880), + [sym__strikeout_open] = ACTIONS(4880), + [sym__latex_span_start] = ACTIONS(4880), + [sym__single_quote_open] = ACTIONS(4880), + [sym__double_quote_open] = ACTIONS(4880), + [sym__superscript_open] = ACTIONS(4880), + [sym__subscript_open] = ACTIONS(4880), + [sym__subscript_close] = ACTIONS(4880), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4880), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4880), + [sym__cite_author_in_text] = ACTIONS(4880), + [sym__cite_suppress_author] = ACTIONS(4880), + [sym__shortcode_open_escaped] = ACTIONS(4880), + [sym__shortcode_open] = ACTIONS(4880), + [sym__unclosed_span] = ACTIONS(4880), + }, + [STATE(843)] = { + [sym__backslash_escape] = ACTIONS(4596), + [sym_entity_reference] = ACTIONS(4596), + [sym_numeric_character_reference] = ACTIONS(4596), + [anon_sym_LT] = ACTIONS(4598), + [anon_sym_GT] = ACTIONS(4596), + [anon_sym_BANG] = ACTIONS(4596), + [anon_sym_DQUOTE] = ACTIONS(4596), + [anon_sym_POUND] = ACTIONS(4596), + [anon_sym_DOLLAR] = ACTIONS(4596), + [anon_sym_PERCENT] = ACTIONS(4596), + [anon_sym_AMP] = ACTIONS(4598), + [anon_sym_SQUOTE] = ACTIONS(4596), + [anon_sym_STAR] = ACTIONS(4596), + [anon_sym_PLUS] = ACTIONS(4596), + [anon_sym_COMMA] = ACTIONS(4596), + [anon_sym_DASH] = ACTIONS(4598), + [anon_sym_DOT] = ACTIONS(4598), + [anon_sym_SLASH] = ACTIONS(4596), + [anon_sym_COLON] = ACTIONS(4596), + [anon_sym_SEMI] = ACTIONS(4596), + [anon_sym_EQ] = ACTIONS(4596), + [anon_sym_QMARK] = ACTIONS(4596), + [anon_sym_LBRACK] = ACTIONS(4598), + [anon_sym_BSLASH] = ACTIONS(4598), + [anon_sym_CARET] = ACTIONS(4598), + [anon_sym__] = ACTIONS(4596), + [anon_sym_BQUOTE] = ACTIONS(4596), + [anon_sym_LBRACE] = ACTIONS(4596), + [anon_sym_PIPE] = ACTIONS(4596), + [anon_sym_TILDE] = ACTIONS(4596), + [anon_sym_LPAREN] = ACTIONS(4596), + [anon_sym_RPAREN] = ACTIONS(4596), + [sym__newline_token] = ACTIONS(4596), + [aux_sym_insert_token1] = ACTIONS(4596), + [aux_sym_delete_token1] = ACTIONS(4596), + [aux_sym_highlight_token1] = ACTIONS(4596), + [aux_sym_edit_comment_token1] = ACTIONS(4596), + [anon_sym_CARET_LBRACK] = ACTIONS(4596), + [anon_sym_LBRACK_CARET] = ACTIONS(4596), + [sym_uri_autolink] = ACTIONS(4596), + [sym_email_autolink] = ACTIONS(4596), + [sym__whitespace_ge_2] = ACTIONS(4596), + [aux_sym__whitespace_token1] = ACTIONS(4598), + [sym__word_no_digit] = ACTIONS(4596), + [sym__digits] = ACTIONS(4596), + [anon_sym_DASH_DASH] = ACTIONS(4598), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4596), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4596), + [sym__code_span_start] = ACTIONS(4596), + [sym__emphasis_open_star] = ACTIONS(4596), + [sym__emphasis_open_underscore] = ACTIONS(4596), + [sym__strikeout_open] = ACTIONS(4596), + [sym__latex_span_start] = ACTIONS(4596), + [sym__single_quote_open] = ACTIONS(4596), + [sym__double_quote_open] = ACTIONS(4596), + [sym__superscript_open] = ACTIONS(4596), + [sym__subscript_open] = ACTIONS(4596), + [sym__subscript_close] = ACTIONS(4596), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4596), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4596), + [sym__cite_author_in_text] = ACTIONS(4596), + [sym__cite_suppress_author] = ACTIONS(4596), + [sym__shortcode_open_escaped] = ACTIONS(4596), + [sym__shortcode_open] = ACTIONS(4596), + [sym__unclosed_span] = ACTIONS(4596), + }, + [STATE(844)] = { + [sym__backslash_escape] = ACTIONS(4540), + [sym_entity_reference] = ACTIONS(4540), + [sym_numeric_character_reference] = ACTIONS(4540), + [anon_sym_LT] = ACTIONS(4542), + [anon_sym_GT] = ACTIONS(4540), + [anon_sym_BANG] = ACTIONS(4540), + [anon_sym_DQUOTE] = ACTIONS(4540), + [anon_sym_POUND] = ACTIONS(4540), + [anon_sym_DOLLAR] = ACTIONS(4540), + [anon_sym_PERCENT] = ACTIONS(4540), + [anon_sym_AMP] = ACTIONS(4542), + [anon_sym_SQUOTE] = ACTIONS(4540), + [anon_sym_STAR] = ACTIONS(4540), + [anon_sym_PLUS] = ACTIONS(4540), + [anon_sym_COMMA] = ACTIONS(4540), + [anon_sym_DASH] = ACTIONS(4542), + [anon_sym_DOT] = ACTIONS(4542), + [anon_sym_SLASH] = ACTIONS(4540), + [anon_sym_COLON] = ACTIONS(4540), + [anon_sym_SEMI] = ACTIONS(4540), + [anon_sym_EQ] = ACTIONS(4540), + [anon_sym_QMARK] = ACTIONS(4540), + [anon_sym_LBRACK] = ACTIONS(4542), + [anon_sym_BSLASH] = ACTIONS(4542), + [anon_sym_CARET] = ACTIONS(4542), + [anon_sym__] = ACTIONS(4540), + [anon_sym_BQUOTE] = ACTIONS(4540), + [anon_sym_LBRACE] = ACTIONS(4540), + [anon_sym_PIPE] = ACTIONS(4540), + [anon_sym_TILDE] = ACTIONS(4540), + [anon_sym_LPAREN] = ACTIONS(4540), + [anon_sym_RPAREN] = ACTIONS(4540), + [sym__newline_token] = ACTIONS(4540), + [aux_sym_insert_token1] = ACTIONS(4540), + [aux_sym_delete_token1] = ACTIONS(4540), + [aux_sym_highlight_token1] = ACTIONS(4540), + [aux_sym_edit_comment_token1] = ACTIONS(4540), + [anon_sym_CARET_LBRACK] = ACTIONS(4540), + [anon_sym_LBRACK_CARET] = ACTIONS(4540), + [sym_uri_autolink] = ACTIONS(4540), + [sym_email_autolink] = ACTIONS(4540), + [sym__whitespace_ge_2] = ACTIONS(4540), + [aux_sym__whitespace_token1] = ACTIONS(4542), + [sym__word_no_digit] = ACTIONS(4540), + [sym__digits] = ACTIONS(4540), + [anon_sym_DASH_DASH] = ACTIONS(4542), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4540), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4540), + [sym__code_span_start] = ACTIONS(4540), + [sym__emphasis_open_star] = ACTIONS(4540), + [sym__emphasis_open_underscore] = ACTIONS(4540), + [sym__strikeout_open] = ACTIONS(4540), + [sym__strikeout_close] = ACTIONS(4540), + [sym__latex_span_start] = ACTIONS(4540), + [sym__single_quote_open] = ACTIONS(4540), + [sym__double_quote_open] = ACTIONS(4540), + [sym__superscript_open] = ACTIONS(4540), + [sym__subscript_open] = ACTIONS(4540), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4540), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4540), + [sym__cite_author_in_text] = ACTIONS(4540), + [sym__cite_suppress_author] = ACTIONS(4540), + [sym__shortcode_open_escaped] = ACTIONS(4540), + [sym__shortcode_open] = ACTIONS(4540), + [sym__unclosed_span] = ACTIONS(4540), + }, + [STATE(845)] = { + [sym__backslash_escape] = ACTIONS(4900), + [sym_entity_reference] = ACTIONS(4900), + [sym_numeric_character_reference] = ACTIONS(4900), + [anon_sym_LT] = ACTIONS(4902), + [anon_sym_GT] = ACTIONS(4900), + [anon_sym_BANG] = ACTIONS(4900), + [anon_sym_DQUOTE] = ACTIONS(4900), + [anon_sym_POUND] = ACTIONS(4900), + [anon_sym_DOLLAR] = ACTIONS(4900), + [anon_sym_PERCENT] = ACTIONS(4900), + [anon_sym_AMP] = ACTIONS(4902), + [anon_sym_SQUOTE] = ACTIONS(4900), + [anon_sym_STAR] = ACTIONS(4900), + [anon_sym_PLUS] = ACTIONS(4900), + [anon_sym_COMMA] = ACTIONS(4900), + [anon_sym_DASH] = ACTIONS(4902), + [anon_sym_DOT] = ACTIONS(4902), + [anon_sym_SLASH] = ACTIONS(4900), + [anon_sym_COLON] = ACTIONS(4900), + [anon_sym_SEMI] = ACTIONS(4900), + [anon_sym_EQ] = ACTIONS(4900), + [anon_sym_QMARK] = ACTIONS(4900), + [anon_sym_LBRACK] = ACTIONS(4902), + [anon_sym_BSLASH] = ACTIONS(4902), + [anon_sym_CARET] = ACTIONS(4902), + [anon_sym__] = ACTIONS(4900), + [anon_sym_BQUOTE] = ACTIONS(4900), + [anon_sym_LBRACE] = ACTIONS(4900), + [anon_sym_PIPE] = ACTIONS(4900), + [anon_sym_TILDE] = ACTIONS(4900), + [anon_sym_LPAREN] = ACTIONS(4900), + [anon_sym_RPAREN] = ACTIONS(4900), + [sym__newline_token] = ACTIONS(4900), + [aux_sym_insert_token1] = ACTIONS(4900), + [aux_sym_delete_token1] = ACTIONS(4900), + [aux_sym_highlight_token1] = ACTIONS(4900), + [aux_sym_edit_comment_token1] = ACTIONS(4900), + [anon_sym_CARET_LBRACK] = ACTIONS(4900), + [anon_sym_LBRACK_CARET] = ACTIONS(4900), + [sym_uri_autolink] = ACTIONS(4900), + [sym_email_autolink] = ACTIONS(4900), + [sym__whitespace_ge_2] = ACTIONS(4900), + [aux_sym__whitespace_token1] = ACTIONS(4902), + [sym__word_no_digit] = ACTIONS(4900), + [sym__digits] = ACTIONS(4900), + [anon_sym_DASH_DASH] = ACTIONS(4902), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4900), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4900), + [sym__code_span_start] = ACTIONS(4900), + [sym__emphasis_open_star] = ACTIONS(4900), + [sym__emphasis_open_underscore] = ACTIONS(4900), + [sym__strikeout_open] = ACTIONS(4900), + [sym__latex_span_start] = ACTIONS(4900), + [sym__single_quote_open] = ACTIONS(4900), + [sym__double_quote_open] = ACTIONS(4900), + [sym__superscript_open] = ACTIONS(4900), + [sym__subscript_open] = ACTIONS(4900), + [sym__subscript_close] = ACTIONS(4900), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4900), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4900), + [sym__cite_author_in_text] = ACTIONS(4900), + [sym__cite_suppress_author] = ACTIONS(4900), + [sym__shortcode_open_escaped] = ACTIONS(4900), + [sym__shortcode_open] = ACTIONS(4900), + [sym__unclosed_span] = ACTIONS(4900), + }, + [STATE(846)] = { + [sym__backslash_escape] = ACTIONS(4588), + [sym_entity_reference] = ACTIONS(4588), + [sym_numeric_character_reference] = ACTIONS(4588), + [anon_sym_LT] = ACTIONS(4590), + [anon_sym_GT] = ACTIONS(4588), + [anon_sym_BANG] = ACTIONS(4588), + [anon_sym_DQUOTE] = ACTIONS(4588), + [anon_sym_POUND] = ACTIONS(4588), + [anon_sym_DOLLAR] = ACTIONS(4588), + [anon_sym_PERCENT] = ACTIONS(4588), + [anon_sym_AMP] = ACTIONS(4590), + [anon_sym_SQUOTE] = ACTIONS(4588), + [anon_sym_STAR] = ACTIONS(4588), + [anon_sym_PLUS] = ACTIONS(4588), + [anon_sym_COMMA] = ACTIONS(4588), + [anon_sym_DASH] = ACTIONS(4590), + [anon_sym_DOT] = ACTIONS(4590), + [anon_sym_SLASH] = ACTIONS(4588), + [anon_sym_COLON] = ACTIONS(4588), + [anon_sym_SEMI] = ACTIONS(4588), + [anon_sym_EQ] = ACTIONS(4588), + [anon_sym_QMARK] = ACTIONS(4588), + [anon_sym_LBRACK] = ACTIONS(4590), + [anon_sym_BSLASH] = ACTIONS(4590), + [anon_sym_CARET] = ACTIONS(4590), + [anon_sym__] = ACTIONS(4588), + [anon_sym_BQUOTE] = ACTIONS(4588), + [anon_sym_LBRACE] = ACTIONS(4588), + [anon_sym_PIPE] = ACTIONS(4588), + [anon_sym_TILDE] = ACTIONS(4588), + [anon_sym_LPAREN] = ACTIONS(4588), + [anon_sym_RPAREN] = ACTIONS(4588), + [sym__newline_token] = ACTIONS(4588), + [aux_sym_insert_token1] = ACTIONS(4588), + [aux_sym_delete_token1] = ACTIONS(4588), + [aux_sym_highlight_token1] = ACTIONS(4588), + [aux_sym_edit_comment_token1] = ACTIONS(4588), + [anon_sym_CARET_LBRACK] = ACTIONS(4588), + [anon_sym_LBRACK_CARET] = ACTIONS(4588), + [sym_uri_autolink] = ACTIONS(4588), + [sym_email_autolink] = ACTIONS(4588), + [sym__whitespace_ge_2] = ACTIONS(4588), + [aux_sym__whitespace_token1] = ACTIONS(4590), + [sym__word_no_digit] = ACTIONS(4588), + [sym__digits] = ACTIONS(4588), + [anon_sym_DASH_DASH] = ACTIONS(4590), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4588), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4588), + [sym__code_span_start] = ACTIONS(4588), + [sym__emphasis_open_star] = ACTIONS(4588), + [sym__emphasis_open_underscore] = ACTIONS(4588), + [sym__emphasis_close_underscore] = ACTIONS(4588), + [sym__strikeout_open] = ACTIONS(4588), + [sym__latex_span_start] = ACTIONS(4588), + [sym__single_quote_open] = ACTIONS(4588), + [sym__double_quote_open] = ACTIONS(4588), + [sym__superscript_open] = ACTIONS(4588), + [sym__subscript_open] = ACTIONS(4588), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4588), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4588), + [sym__cite_author_in_text] = ACTIONS(4588), + [sym__cite_suppress_author] = ACTIONS(4588), + [sym__shortcode_open_escaped] = ACTIONS(4588), + [sym__shortcode_open] = ACTIONS(4588), + [sym__unclosed_span] = ACTIONS(4588), + }, + [STATE(847)] = { + [sym__backslash_escape] = ACTIONS(4912), + [sym_entity_reference] = ACTIONS(4912), + [sym_numeric_character_reference] = ACTIONS(4912), + [anon_sym_LT] = ACTIONS(4914), + [anon_sym_GT] = ACTIONS(4912), + [anon_sym_BANG] = ACTIONS(4912), + [anon_sym_DQUOTE] = ACTIONS(4912), + [anon_sym_POUND] = ACTIONS(4912), + [anon_sym_DOLLAR] = ACTIONS(4912), + [anon_sym_PERCENT] = ACTIONS(4912), + [anon_sym_AMP] = ACTIONS(4914), + [anon_sym_SQUOTE] = ACTIONS(4912), + [anon_sym_STAR] = ACTIONS(4912), + [anon_sym_PLUS] = ACTIONS(4912), + [anon_sym_COMMA] = ACTIONS(4912), + [anon_sym_DASH] = ACTIONS(4914), + [anon_sym_DOT] = ACTIONS(4914), + [anon_sym_SLASH] = ACTIONS(4912), + [anon_sym_COLON] = ACTIONS(4912), + [anon_sym_SEMI] = ACTIONS(4912), + [anon_sym_EQ] = ACTIONS(4912), + [anon_sym_QMARK] = ACTIONS(4912), + [anon_sym_LBRACK] = ACTIONS(4914), + [anon_sym_BSLASH] = ACTIONS(4914), + [anon_sym_CARET] = ACTIONS(4914), + [anon_sym__] = ACTIONS(4912), + [anon_sym_BQUOTE] = ACTIONS(4912), + [anon_sym_LBRACE] = ACTIONS(4912), + [anon_sym_PIPE] = ACTIONS(4912), + [anon_sym_TILDE] = ACTIONS(4912), + [anon_sym_LPAREN] = ACTIONS(4912), + [anon_sym_RPAREN] = ACTIONS(4912), + [sym__newline_token] = ACTIONS(4912), + [aux_sym_insert_token1] = ACTIONS(4912), + [aux_sym_delete_token1] = ACTIONS(4912), + [aux_sym_highlight_token1] = ACTIONS(4912), + [aux_sym_edit_comment_token1] = ACTIONS(4912), + [anon_sym_CARET_LBRACK] = ACTIONS(4912), + [anon_sym_LBRACK_CARET] = ACTIONS(4912), + [sym_uri_autolink] = ACTIONS(4912), + [sym_email_autolink] = ACTIONS(4912), + [sym__whitespace_ge_2] = ACTIONS(4912), + [aux_sym__whitespace_token1] = ACTIONS(4914), + [sym__word_no_digit] = ACTIONS(4912), + [sym__digits] = ACTIONS(4912), + [anon_sym_DASH_DASH] = ACTIONS(4914), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4912), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4912), + [sym__code_span_start] = ACTIONS(4912), + [sym__emphasis_open_star] = ACTIONS(4912), + [sym__emphasis_open_underscore] = ACTIONS(4912), + [sym__strikeout_open] = ACTIONS(4912), + [sym__latex_span_start] = ACTIONS(4912), + [sym__single_quote_open] = ACTIONS(4912), + [sym__double_quote_open] = ACTIONS(4912), + [sym__superscript_open] = ACTIONS(4912), + [sym__subscript_open] = ACTIONS(4912), + [sym__subscript_close] = ACTIONS(4912), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4912), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4912), + [sym__cite_author_in_text] = ACTIONS(4912), + [sym__cite_suppress_author] = ACTIONS(4912), + [sym__shortcode_open_escaped] = ACTIONS(4912), + [sym__shortcode_open] = ACTIONS(4912), + [sym__unclosed_span] = ACTIONS(4912), + }, + [STATE(848)] = { + [sym__backslash_escape] = ACTIONS(4916), + [sym_entity_reference] = ACTIONS(4916), + [sym_numeric_character_reference] = ACTIONS(4916), + [anon_sym_LT] = ACTIONS(4918), + [anon_sym_GT] = ACTIONS(4916), + [anon_sym_BANG] = ACTIONS(4916), + [anon_sym_DQUOTE] = ACTIONS(4916), + [anon_sym_POUND] = ACTIONS(4916), + [anon_sym_DOLLAR] = ACTIONS(4916), + [anon_sym_PERCENT] = ACTIONS(4916), + [anon_sym_AMP] = ACTIONS(4918), + [anon_sym_SQUOTE] = ACTIONS(4916), + [anon_sym_STAR] = ACTIONS(4916), + [anon_sym_PLUS] = ACTIONS(4916), + [anon_sym_COMMA] = ACTIONS(4916), + [anon_sym_DASH] = ACTIONS(4918), + [anon_sym_DOT] = ACTIONS(4918), + [anon_sym_SLASH] = ACTIONS(4916), + [anon_sym_COLON] = ACTIONS(4916), + [anon_sym_SEMI] = ACTIONS(4916), + [anon_sym_EQ] = ACTIONS(4916), + [anon_sym_QMARK] = ACTIONS(4916), + [anon_sym_LBRACK] = ACTIONS(4918), + [anon_sym_BSLASH] = ACTIONS(4918), + [anon_sym_CARET] = ACTIONS(4918), + [anon_sym__] = ACTIONS(4916), + [anon_sym_BQUOTE] = ACTIONS(4916), + [anon_sym_LBRACE] = ACTIONS(4916), + [anon_sym_PIPE] = ACTIONS(4916), + [anon_sym_TILDE] = ACTIONS(4916), + [anon_sym_LPAREN] = ACTIONS(4916), + [anon_sym_RPAREN] = ACTIONS(4916), + [sym__newline_token] = ACTIONS(4916), + [aux_sym_insert_token1] = ACTIONS(4916), + [aux_sym_delete_token1] = ACTIONS(4916), + [aux_sym_highlight_token1] = ACTIONS(4916), + [aux_sym_edit_comment_token1] = ACTIONS(4916), + [anon_sym_CARET_LBRACK] = ACTIONS(4916), + [anon_sym_LBRACK_CARET] = ACTIONS(4916), + [sym_uri_autolink] = ACTIONS(4916), + [sym_email_autolink] = ACTIONS(4916), + [sym__whitespace_ge_2] = ACTIONS(4916), + [aux_sym__whitespace_token1] = ACTIONS(4918), + [sym__word_no_digit] = ACTIONS(4916), + [sym__digits] = ACTIONS(4916), + [anon_sym_DASH_DASH] = ACTIONS(4918), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4916), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4916), + [sym__code_span_start] = ACTIONS(4916), + [sym__emphasis_open_star] = ACTIONS(4916), + [sym__emphasis_open_underscore] = ACTIONS(4916), + [sym__strikeout_open] = ACTIONS(4916), + [sym__latex_span_start] = ACTIONS(4916), + [sym__single_quote_open] = ACTIONS(4916), + [sym__double_quote_open] = ACTIONS(4916), + [sym__superscript_open] = ACTIONS(4916), + [sym__subscript_open] = ACTIONS(4916), + [sym__subscript_close] = ACTIONS(4916), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4916), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4916), + [sym__cite_author_in_text] = ACTIONS(4916), + [sym__cite_suppress_author] = ACTIONS(4916), + [sym__shortcode_open_escaped] = ACTIONS(4916), + [sym__shortcode_open] = ACTIONS(4916), + [sym__unclosed_span] = ACTIONS(4916), + }, + [STATE(849)] = { + [sym__backslash_escape] = ACTIONS(4920), + [sym_entity_reference] = ACTIONS(4920), + [sym_numeric_character_reference] = ACTIONS(4920), + [anon_sym_LT] = ACTIONS(4922), + [anon_sym_GT] = ACTIONS(4920), + [anon_sym_BANG] = ACTIONS(4920), + [anon_sym_DQUOTE] = ACTIONS(4920), + [anon_sym_POUND] = ACTIONS(4920), + [anon_sym_DOLLAR] = ACTIONS(4920), + [anon_sym_PERCENT] = ACTIONS(4920), + [anon_sym_AMP] = ACTIONS(4922), + [anon_sym_SQUOTE] = ACTIONS(4920), + [anon_sym_STAR] = ACTIONS(4920), + [anon_sym_PLUS] = ACTIONS(4920), + [anon_sym_COMMA] = ACTIONS(4920), + [anon_sym_DASH] = ACTIONS(4922), + [anon_sym_DOT] = ACTIONS(4922), + [anon_sym_SLASH] = ACTIONS(4920), + [anon_sym_COLON] = ACTIONS(4920), + [anon_sym_SEMI] = ACTIONS(4920), + [anon_sym_EQ] = ACTIONS(4920), + [anon_sym_QMARK] = ACTIONS(4920), + [anon_sym_LBRACK] = ACTIONS(4922), + [anon_sym_BSLASH] = ACTIONS(4922), + [anon_sym_CARET] = ACTIONS(4922), + [anon_sym__] = ACTIONS(4920), + [anon_sym_BQUOTE] = ACTIONS(4920), + [anon_sym_LBRACE] = ACTIONS(4920), + [anon_sym_PIPE] = ACTIONS(4920), + [anon_sym_TILDE] = ACTIONS(4920), + [anon_sym_LPAREN] = ACTIONS(4920), + [anon_sym_RPAREN] = ACTIONS(4920), + [sym__newline_token] = ACTIONS(4920), + [aux_sym_insert_token1] = ACTIONS(4920), + [aux_sym_delete_token1] = ACTIONS(4920), + [aux_sym_highlight_token1] = ACTIONS(4920), + [aux_sym_edit_comment_token1] = ACTIONS(4920), + [anon_sym_CARET_LBRACK] = ACTIONS(4920), + [anon_sym_LBRACK_CARET] = ACTIONS(4920), + [sym_uri_autolink] = ACTIONS(4920), + [sym_email_autolink] = ACTIONS(4920), + [sym__whitespace_ge_2] = ACTIONS(4920), + [aux_sym__whitespace_token1] = ACTIONS(4922), + [sym__word_no_digit] = ACTIONS(4920), + [sym__digits] = ACTIONS(4920), + [anon_sym_DASH_DASH] = ACTIONS(4922), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4920), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4920), + [sym__code_span_start] = ACTIONS(4920), + [sym__emphasis_open_star] = ACTIONS(4920), + [sym__emphasis_open_underscore] = ACTIONS(4920), + [sym__strikeout_open] = ACTIONS(4920), + [sym__latex_span_start] = ACTIONS(4920), + [sym__single_quote_open] = ACTIONS(4920), + [sym__double_quote_open] = ACTIONS(4920), + [sym__superscript_open] = ACTIONS(4920), + [sym__subscript_open] = ACTIONS(4920), + [sym__subscript_close] = ACTIONS(4920), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4920), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4920), + [sym__cite_author_in_text] = ACTIONS(4920), + [sym__cite_suppress_author] = ACTIONS(4920), + [sym__shortcode_open_escaped] = ACTIONS(4920), + [sym__shortcode_open] = ACTIONS(4920), + [sym__unclosed_span] = ACTIONS(4920), + }, + [STATE(850)] = { + [sym__backslash_escape] = ACTIONS(4932), + [sym_entity_reference] = ACTIONS(4932), + [sym_numeric_character_reference] = ACTIONS(4932), + [anon_sym_LT] = ACTIONS(4934), + [anon_sym_GT] = ACTIONS(4932), + [anon_sym_BANG] = ACTIONS(4932), + [anon_sym_DQUOTE] = ACTIONS(4932), + [anon_sym_POUND] = ACTIONS(4932), + [anon_sym_DOLLAR] = ACTIONS(4932), + [anon_sym_PERCENT] = ACTIONS(4932), + [anon_sym_AMP] = ACTIONS(4934), + [anon_sym_SQUOTE] = ACTIONS(4932), + [anon_sym_STAR] = ACTIONS(4932), + [anon_sym_PLUS] = ACTIONS(4932), + [anon_sym_COMMA] = ACTIONS(4932), + [anon_sym_DASH] = ACTIONS(4934), + [anon_sym_DOT] = ACTIONS(4934), + [anon_sym_SLASH] = ACTIONS(4932), + [anon_sym_COLON] = ACTIONS(4932), + [anon_sym_SEMI] = ACTIONS(4932), + [anon_sym_EQ] = ACTIONS(4932), + [anon_sym_QMARK] = ACTIONS(4932), + [anon_sym_LBRACK] = ACTIONS(4934), + [anon_sym_BSLASH] = ACTIONS(4934), + [anon_sym_CARET] = ACTIONS(4934), + [anon_sym__] = ACTIONS(4932), + [anon_sym_BQUOTE] = ACTIONS(4932), + [anon_sym_LBRACE] = ACTIONS(4932), + [anon_sym_PIPE] = ACTIONS(4932), + [anon_sym_TILDE] = ACTIONS(4932), + [anon_sym_LPAREN] = ACTIONS(4932), + [anon_sym_RPAREN] = ACTIONS(4932), + [sym__newline_token] = ACTIONS(4932), + [aux_sym_insert_token1] = ACTIONS(4932), + [aux_sym_delete_token1] = ACTIONS(4932), + [aux_sym_highlight_token1] = ACTIONS(4932), + [aux_sym_edit_comment_token1] = ACTIONS(4932), + [anon_sym_CARET_LBRACK] = ACTIONS(4932), + [anon_sym_LBRACK_CARET] = ACTIONS(4932), + [sym_uri_autolink] = ACTIONS(4932), + [sym_email_autolink] = ACTIONS(4932), + [sym__whitespace_ge_2] = ACTIONS(4932), + [aux_sym__whitespace_token1] = ACTIONS(4934), + [sym__word_no_digit] = ACTIONS(4932), + [sym__digits] = ACTIONS(4932), + [anon_sym_DASH_DASH] = ACTIONS(4934), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4932), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4932), + [sym__code_span_start] = ACTIONS(4932), + [sym__emphasis_open_star] = ACTIONS(4932), + [sym__emphasis_open_underscore] = ACTIONS(4932), + [sym__strikeout_open] = ACTIONS(4932), + [sym__latex_span_start] = ACTIONS(4932), + [sym__single_quote_open] = ACTIONS(4932), + [sym__double_quote_open] = ACTIONS(4932), + [sym__superscript_open] = ACTIONS(4932), + [sym__subscript_open] = ACTIONS(4932), + [sym__subscript_close] = ACTIONS(4932), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4932), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4932), + [sym__cite_author_in_text] = ACTIONS(4932), + [sym__cite_suppress_author] = ACTIONS(4932), + [sym__shortcode_open_escaped] = ACTIONS(4932), + [sym__shortcode_open] = ACTIONS(4932), + [sym__unclosed_span] = ACTIONS(4932), + }, + [STATE(851)] = { + [sym__backslash_escape] = ACTIONS(4944), + [sym_entity_reference] = ACTIONS(4944), + [sym_numeric_character_reference] = ACTIONS(4944), + [anon_sym_LT] = ACTIONS(4946), + [anon_sym_GT] = ACTIONS(4944), + [anon_sym_BANG] = ACTIONS(4944), + [anon_sym_DQUOTE] = ACTIONS(4944), + [anon_sym_POUND] = ACTIONS(4944), + [anon_sym_DOLLAR] = ACTIONS(4944), + [anon_sym_PERCENT] = ACTIONS(4944), + [anon_sym_AMP] = ACTIONS(4946), + [anon_sym_SQUOTE] = ACTIONS(4944), + [anon_sym_STAR] = ACTIONS(4944), + [anon_sym_PLUS] = ACTIONS(4944), + [anon_sym_COMMA] = ACTIONS(4944), + [anon_sym_DASH] = ACTIONS(4946), + [anon_sym_DOT] = ACTIONS(4946), + [anon_sym_SLASH] = ACTIONS(4944), + [anon_sym_COLON] = ACTIONS(4944), + [anon_sym_SEMI] = ACTIONS(4944), + [anon_sym_EQ] = ACTIONS(4944), + [anon_sym_QMARK] = ACTIONS(4944), + [anon_sym_LBRACK] = ACTIONS(4946), + [anon_sym_BSLASH] = ACTIONS(4946), + [anon_sym_CARET] = ACTIONS(4946), + [anon_sym__] = ACTIONS(4944), + [anon_sym_BQUOTE] = ACTIONS(4944), + [anon_sym_LBRACE] = ACTIONS(4944), + [anon_sym_PIPE] = ACTIONS(4944), + [anon_sym_TILDE] = ACTIONS(4944), + [anon_sym_LPAREN] = ACTIONS(4944), + [anon_sym_RPAREN] = ACTIONS(4944), + [sym__newline_token] = ACTIONS(4944), + [aux_sym_insert_token1] = ACTIONS(4944), + [aux_sym_delete_token1] = ACTIONS(4944), + [aux_sym_highlight_token1] = ACTIONS(4944), + [aux_sym_edit_comment_token1] = ACTIONS(4944), + [anon_sym_CARET_LBRACK] = ACTIONS(4944), + [anon_sym_LBRACK_CARET] = ACTIONS(4944), + [sym_uri_autolink] = ACTIONS(4944), + [sym_email_autolink] = ACTIONS(4944), + [sym__whitespace_ge_2] = ACTIONS(4944), + [aux_sym__whitespace_token1] = ACTIONS(4946), + [sym__word_no_digit] = ACTIONS(4944), + [sym__digits] = ACTIONS(4944), + [anon_sym_DASH_DASH] = ACTIONS(4946), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4944), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4944), + [sym__code_span_start] = ACTIONS(4944), + [sym__emphasis_open_star] = ACTIONS(4944), + [sym__emphasis_open_underscore] = ACTIONS(4944), + [sym__strikeout_open] = ACTIONS(4944), + [sym__latex_span_start] = ACTIONS(4944), + [sym__single_quote_open] = ACTIONS(4944), + [sym__double_quote_open] = ACTIONS(4944), + [sym__superscript_open] = ACTIONS(4944), + [sym__subscript_open] = ACTIONS(4944), + [sym__subscript_close] = ACTIONS(4944), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4944), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4944), + [sym__cite_author_in_text] = ACTIONS(4944), + [sym__cite_suppress_author] = ACTIONS(4944), + [sym__shortcode_open_escaped] = ACTIONS(4944), + [sym__shortcode_open] = ACTIONS(4944), + [sym__unclosed_span] = ACTIONS(4944), + }, + [STATE(852)] = { + [sym__backslash_escape] = ACTIONS(4952), + [sym_entity_reference] = ACTIONS(4952), + [sym_numeric_character_reference] = ACTIONS(4952), + [anon_sym_LT] = ACTIONS(4954), + [anon_sym_GT] = ACTIONS(4952), + [anon_sym_BANG] = ACTIONS(4952), + [anon_sym_DQUOTE] = ACTIONS(4952), + [anon_sym_POUND] = ACTIONS(4952), + [anon_sym_DOLLAR] = ACTIONS(4952), + [anon_sym_PERCENT] = ACTIONS(4952), + [anon_sym_AMP] = ACTIONS(4954), + [anon_sym_SQUOTE] = ACTIONS(4952), + [anon_sym_STAR] = ACTIONS(4952), + [anon_sym_PLUS] = ACTIONS(4952), + [anon_sym_COMMA] = ACTIONS(4952), + [anon_sym_DASH] = ACTIONS(4954), + [anon_sym_DOT] = ACTIONS(4954), + [anon_sym_SLASH] = ACTIONS(4952), + [anon_sym_COLON] = ACTIONS(4952), + [anon_sym_SEMI] = ACTIONS(4952), + [anon_sym_EQ] = ACTIONS(4952), + [anon_sym_QMARK] = ACTIONS(4952), + [anon_sym_LBRACK] = ACTIONS(4954), + [anon_sym_BSLASH] = ACTIONS(4954), + [anon_sym_CARET] = ACTIONS(4954), + [anon_sym__] = ACTIONS(4952), + [anon_sym_BQUOTE] = ACTIONS(4952), + [anon_sym_LBRACE] = ACTIONS(4952), + [anon_sym_PIPE] = ACTIONS(4952), + [anon_sym_TILDE] = ACTIONS(4952), + [anon_sym_LPAREN] = ACTIONS(4952), + [anon_sym_RPAREN] = ACTIONS(4952), + [sym__newline_token] = ACTIONS(4952), + [aux_sym_insert_token1] = ACTIONS(4952), + [aux_sym_delete_token1] = ACTIONS(4952), + [aux_sym_highlight_token1] = ACTIONS(4952), + [aux_sym_edit_comment_token1] = ACTIONS(4952), + [anon_sym_CARET_LBRACK] = ACTIONS(4952), + [anon_sym_LBRACK_CARET] = ACTIONS(4952), + [sym_uri_autolink] = ACTIONS(4952), + [sym_email_autolink] = ACTIONS(4952), + [sym__whitespace_ge_2] = ACTIONS(4952), + [aux_sym__whitespace_token1] = ACTIONS(4954), + [sym__word_no_digit] = ACTIONS(4952), + [sym__digits] = ACTIONS(4952), + [anon_sym_DASH_DASH] = ACTIONS(4954), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4952), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4952), + [sym__code_span_start] = ACTIONS(4952), + [sym__emphasis_open_star] = ACTIONS(4952), + [sym__emphasis_open_underscore] = ACTIONS(4952), + [sym__strikeout_open] = ACTIONS(4952), + [sym__latex_span_start] = ACTIONS(4952), + [sym__single_quote_open] = ACTIONS(4952), + [sym__double_quote_open] = ACTIONS(4952), + [sym__superscript_open] = ACTIONS(4952), + [sym__subscript_open] = ACTIONS(4952), + [sym__subscript_close] = ACTIONS(4952), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4952), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4952), + [sym__cite_author_in_text] = ACTIONS(4952), + [sym__cite_suppress_author] = ACTIONS(4952), + [sym__shortcode_open_escaped] = ACTIONS(4952), + [sym__shortcode_open] = ACTIONS(4952), + [sym__unclosed_span] = ACTIONS(4952), + }, + [STATE(853)] = { + [sym__backslash_escape] = ACTIONS(4956), + [sym_entity_reference] = ACTIONS(4956), + [sym_numeric_character_reference] = ACTIONS(4956), + [anon_sym_LT] = ACTIONS(4958), + [anon_sym_GT] = ACTIONS(4956), + [anon_sym_BANG] = ACTIONS(4956), + [anon_sym_DQUOTE] = ACTIONS(4956), + [anon_sym_POUND] = ACTIONS(4956), + [anon_sym_DOLLAR] = ACTIONS(4956), + [anon_sym_PERCENT] = ACTIONS(4956), + [anon_sym_AMP] = ACTIONS(4958), + [anon_sym_SQUOTE] = ACTIONS(4956), + [anon_sym_STAR] = ACTIONS(4956), + [anon_sym_PLUS] = ACTIONS(4956), + [anon_sym_COMMA] = ACTIONS(4956), + [anon_sym_DASH] = ACTIONS(4958), + [anon_sym_DOT] = ACTIONS(4958), + [anon_sym_SLASH] = ACTIONS(4956), + [anon_sym_COLON] = ACTIONS(4956), + [anon_sym_SEMI] = ACTIONS(4956), + [anon_sym_EQ] = ACTIONS(4956), + [anon_sym_QMARK] = ACTIONS(4956), + [anon_sym_LBRACK] = ACTIONS(4958), + [anon_sym_BSLASH] = ACTIONS(4958), + [anon_sym_CARET] = ACTIONS(4958), + [anon_sym__] = ACTIONS(4956), + [anon_sym_BQUOTE] = ACTIONS(4956), + [anon_sym_LBRACE] = ACTIONS(4956), + [anon_sym_PIPE] = ACTIONS(4956), + [anon_sym_TILDE] = ACTIONS(4956), + [anon_sym_LPAREN] = ACTIONS(4956), + [anon_sym_RPAREN] = ACTIONS(4956), + [sym__newline_token] = ACTIONS(4956), + [aux_sym_insert_token1] = ACTIONS(4956), + [aux_sym_delete_token1] = ACTIONS(4956), + [aux_sym_highlight_token1] = ACTIONS(4956), + [aux_sym_edit_comment_token1] = ACTIONS(4956), + [anon_sym_CARET_LBRACK] = ACTIONS(4956), + [anon_sym_LBRACK_CARET] = ACTIONS(4956), + [sym_uri_autolink] = ACTIONS(4956), + [sym_email_autolink] = ACTIONS(4956), + [sym__whitespace_ge_2] = ACTIONS(4956), + [aux_sym__whitespace_token1] = ACTIONS(4958), + [sym__word_no_digit] = ACTIONS(4956), + [sym__digits] = ACTIONS(4956), + [anon_sym_DASH_DASH] = ACTIONS(4958), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4956), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4956), + [sym__code_span_start] = ACTIONS(4956), + [sym__emphasis_open_star] = ACTIONS(4956), + [sym__emphasis_open_underscore] = ACTIONS(4956), + [sym__strikeout_open] = ACTIONS(4956), + [sym__latex_span_start] = ACTIONS(4956), + [sym__single_quote_open] = ACTIONS(4956), + [sym__double_quote_open] = ACTIONS(4956), + [sym__superscript_open] = ACTIONS(4956), + [sym__subscript_open] = ACTIONS(4956), + [sym__subscript_close] = ACTIONS(4956), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4956), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4956), + [sym__cite_author_in_text] = ACTIONS(4956), + [sym__cite_suppress_author] = ACTIONS(4956), + [sym__shortcode_open_escaped] = ACTIONS(4956), + [sym__shortcode_open] = ACTIONS(4956), + [sym__unclosed_span] = ACTIONS(4956), + }, + [STATE(854)] = { + [sym__backslash_escape] = ACTIONS(4960), + [sym_entity_reference] = ACTIONS(4960), + [sym_numeric_character_reference] = ACTIONS(4960), + [anon_sym_LT] = ACTIONS(4962), + [anon_sym_GT] = ACTIONS(4960), + [anon_sym_BANG] = ACTIONS(4960), + [anon_sym_DQUOTE] = ACTIONS(4960), + [anon_sym_POUND] = ACTIONS(4960), + [anon_sym_DOLLAR] = ACTIONS(4960), + [anon_sym_PERCENT] = ACTIONS(4960), + [anon_sym_AMP] = ACTIONS(4962), + [anon_sym_SQUOTE] = ACTIONS(4960), + [anon_sym_STAR] = ACTIONS(4960), + [anon_sym_PLUS] = ACTIONS(4960), + [anon_sym_COMMA] = ACTIONS(4960), + [anon_sym_DASH] = ACTIONS(4962), + [anon_sym_DOT] = ACTIONS(4962), + [anon_sym_SLASH] = ACTIONS(4960), + [anon_sym_COLON] = ACTIONS(4960), + [anon_sym_SEMI] = ACTIONS(4960), + [anon_sym_EQ] = ACTIONS(4960), + [anon_sym_QMARK] = ACTIONS(4960), + [anon_sym_LBRACK] = ACTIONS(4962), + [anon_sym_BSLASH] = ACTIONS(4962), + [anon_sym_CARET] = ACTIONS(4962), + [anon_sym__] = ACTIONS(4960), + [anon_sym_BQUOTE] = ACTIONS(4960), + [anon_sym_LBRACE] = ACTIONS(4960), + [anon_sym_PIPE] = ACTIONS(4960), + [anon_sym_TILDE] = ACTIONS(4960), + [anon_sym_LPAREN] = ACTIONS(4960), + [anon_sym_RPAREN] = ACTIONS(4960), + [sym__newline_token] = ACTIONS(4960), + [aux_sym_insert_token1] = ACTIONS(4960), + [aux_sym_delete_token1] = ACTIONS(4960), + [aux_sym_highlight_token1] = ACTIONS(4960), + [aux_sym_edit_comment_token1] = ACTIONS(4960), + [anon_sym_CARET_LBRACK] = ACTIONS(4960), + [anon_sym_LBRACK_CARET] = ACTIONS(4960), + [sym_uri_autolink] = ACTIONS(4960), + [sym_email_autolink] = ACTIONS(4960), + [sym__whitespace_ge_2] = ACTIONS(4960), + [aux_sym__whitespace_token1] = ACTIONS(4962), + [sym__word_no_digit] = ACTIONS(4960), + [sym__digits] = ACTIONS(4960), + [anon_sym_DASH_DASH] = ACTIONS(4962), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4960), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4960), + [sym__code_span_start] = ACTIONS(4960), + [sym__emphasis_open_star] = ACTIONS(4960), + [sym__emphasis_open_underscore] = ACTIONS(4960), + [sym__strikeout_open] = ACTIONS(4960), + [sym__latex_span_start] = ACTIONS(4960), + [sym__single_quote_open] = ACTIONS(4960), + [sym__double_quote_open] = ACTIONS(4960), + [sym__superscript_open] = ACTIONS(4960), + [sym__subscript_open] = ACTIONS(4960), + [sym__subscript_close] = ACTIONS(4960), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4960), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4960), + [sym__cite_author_in_text] = ACTIONS(4960), + [sym__cite_suppress_author] = ACTIONS(4960), + [sym__shortcode_open_escaped] = ACTIONS(4960), + [sym__shortcode_open] = ACTIONS(4960), + [sym__unclosed_span] = ACTIONS(4960), + }, + [STATE(855)] = { + [sym__backslash_escape] = ACTIONS(4964), + [sym_entity_reference] = ACTIONS(4964), + [sym_numeric_character_reference] = ACTIONS(4964), + [anon_sym_LT] = ACTIONS(4966), + [anon_sym_GT] = ACTIONS(4964), + [anon_sym_BANG] = ACTIONS(4964), + [anon_sym_DQUOTE] = ACTIONS(4964), + [anon_sym_POUND] = ACTIONS(4964), + [anon_sym_DOLLAR] = ACTIONS(4964), + [anon_sym_PERCENT] = ACTIONS(4964), + [anon_sym_AMP] = ACTIONS(4966), + [anon_sym_SQUOTE] = ACTIONS(4964), + [anon_sym_STAR] = ACTIONS(4964), + [anon_sym_PLUS] = ACTIONS(4964), + [anon_sym_COMMA] = ACTIONS(4964), + [anon_sym_DASH] = ACTIONS(4966), + [anon_sym_DOT] = ACTIONS(4966), + [anon_sym_SLASH] = ACTIONS(4964), + [anon_sym_COLON] = ACTIONS(4964), + [anon_sym_SEMI] = ACTIONS(4964), + [anon_sym_EQ] = ACTIONS(4964), + [anon_sym_QMARK] = ACTIONS(4964), + [anon_sym_LBRACK] = ACTIONS(4966), + [anon_sym_BSLASH] = ACTIONS(4966), + [anon_sym_CARET] = ACTIONS(4966), + [anon_sym__] = ACTIONS(4964), + [anon_sym_BQUOTE] = ACTIONS(4964), + [anon_sym_LBRACE] = ACTIONS(4964), + [anon_sym_PIPE] = ACTIONS(4964), + [anon_sym_TILDE] = ACTIONS(4964), + [anon_sym_LPAREN] = ACTIONS(4964), + [anon_sym_RPAREN] = ACTIONS(4964), + [sym__newline_token] = ACTIONS(4964), + [aux_sym_insert_token1] = ACTIONS(4964), + [aux_sym_delete_token1] = ACTIONS(4964), + [aux_sym_highlight_token1] = ACTIONS(4964), + [aux_sym_edit_comment_token1] = ACTIONS(4964), + [anon_sym_CARET_LBRACK] = ACTIONS(4964), + [anon_sym_LBRACK_CARET] = ACTIONS(4964), + [sym_uri_autolink] = ACTIONS(4964), + [sym_email_autolink] = ACTIONS(4964), + [sym__whitespace_ge_2] = ACTIONS(4964), + [aux_sym__whitespace_token1] = ACTIONS(4966), + [sym__word_no_digit] = ACTIONS(4964), + [sym__digits] = ACTIONS(4964), + [anon_sym_DASH_DASH] = ACTIONS(4966), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4964), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4964), + [sym__code_span_start] = ACTIONS(4964), + [sym__emphasis_open_star] = ACTIONS(4964), + [sym__emphasis_open_underscore] = ACTIONS(4964), + [sym__strikeout_open] = ACTIONS(4964), + [sym__latex_span_start] = ACTIONS(4964), + [sym__single_quote_open] = ACTIONS(4964), + [sym__double_quote_open] = ACTIONS(4964), + [sym__superscript_open] = ACTIONS(4964), + [sym__subscript_open] = ACTIONS(4964), + [sym__subscript_close] = ACTIONS(4964), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4964), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4964), + [sym__cite_author_in_text] = ACTIONS(4964), + [sym__cite_suppress_author] = ACTIONS(4964), + [sym__shortcode_open_escaped] = ACTIONS(4964), + [sym__shortcode_open] = ACTIONS(4964), + [sym__unclosed_span] = ACTIONS(4964), + }, + [STATE(856)] = { + [sym__backslash_escape] = ACTIONS(4968), + [sym_entity_reference] = ACTIONS(4968), + [sym_numeric_character_reference] = ACTIONS(4968), + [anon_sym_LT] = ACTIONS(4970), + [anon_sym_GT] = ACTIONS(4968), + [anon_sym_BANG] = ACTIONS(4968), + [anon_sym_DQUOTE] = ACTIONS(4968), + [anon_sym_POUND] = ACTIONS(4968), + [anon_sym_DOLLAR] = ACTIONS(4968), + [anon_sym_PERCENT] = ACTIONS(4968), + [anon_sym_AMP] = ACTIONS(4970), + [anon_sym_SQUOTE] = ACTIONS(4968), + [anon_sym_STAR] = ACTIONS(4968), + [anon_sym_PLUS] = ACTIONS(4968), + [anon_sym_COMMA] = ACTIONS(4968), + [anon_sym_DASH] = ACTIONS(4970), + [anon_sym_DOT] = ACTIONS(4970), + [anon_sym_SLASH] = ACTIONS(4968), + [anon_sym_COLON] = ACTIONS(4968), + [anon_sym_SEMI] = ACTIONS(4968), + [anon_sym_EQ] = ACTIONS(4968), + [anon_sym_QMARK] = ACTIONS(4968), + [anon_sym_LBRACK] = ACTIONS(4970), + [anon_sym_BSLASH] = ACTIONS(4970), + [anon_sym_CARET] = ACTIONS(4970), + [anon_sym__] = ACTIONS(4968), + [anon_sym_BQUOTE] = ACTIONS(4968), + [anon_sym_LBRACE] = ACTIONS(4968), + [anon_sym_PIPE] = ACTIONS(4968), + [anon_sym_TILDE] = ACTIONS(4968), + [anon_sym_LPAREN] = ACTIONS(4968), + [anon_sym_RPAREN] = ACTIONS(4968), + [sym__newline_token] = ACTIONS(4968), + [aux_sym_insert_token1] = ACTIONS(4968), + [aux_sym_delete_token1] = ACTIONS(4968), + [aux_sym_highlight_token1] = ACTIONS(4968), + [aux_sym_edit_comment_token1] = ACTIONS(4968), + [anon_sym_CARET_LBRACK] = ACTIONS(4968), + [anon_sym_LBRACK_CARET] = ACTIONS(4968), + [sym_uri_autolink] = ACTIONS(4968), + [sym_email_autolink] = ACTIONS(4968), + [sym__whitespace_ge_2] = ACTIONS(4968), + [aux_sym__whitespace_token1] = ACTIONS(4970), + [sym__word_no_digit] = ACTIONS(4968), + [sym__digits] = ACTIONS(4968), + [anon_sym_DASH_DASH] = ACTIONS(4970), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4968), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4968), + [sym__code_span_start] = ACTIONS(4968), + [sym__emphasis_open_star] = ACTIONS(4968), + [sym__emphasis_open_underscore] = ACTIONS(4968), + [sym__strikeout_open] = ACTIONS(4968), + [sym__latex_span_start] = ACTIONS(4968), + [sym__single_quote_open] = ACTIONS(4968), + [sym__double_quote_open] = ACTIONS(4968), + [sym__superscript_open] = ACTIONS(4968), + [sym__subscript_open] = ACTIONS(4968), + [sym__subscript_close] = ACTIONS(4968), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4968), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4968), + [sym__cite_author_in_text] = ACTIONS(4968), + [sym__cite_suppress_author] = ACTIONS(4968), + [sym__shortcode_open_escaped] = ACTIONS(4968), + [sym__shortcode_open] = ACTIONS(4968), + [sym__unclosed_span] = ACTIONS(4968), + }, + [STATE(857)] = { + [sym__backslash_escape] = ACTIONS(4972), + [sym_entity_reference] = ACTIONS(4972), + [sym_numeric_character_reference] = ACTIONS(4972), + [anon_sym_LT] = ACTIONS(4974), + [anon_sym_GT] = ACTIONS(4972), + [anon_sym_BANG] = ACTIONS(4972), + [anon_sym_DQUOTE] = ACTIONS(4972), + [anon_sym_POUND] = ACTIONS(4972), + [anon_sym_DOLLAR] = ACTIONS(4972), + [anon_sym_PERCENT] = ACTIONS(4972), + [anon_sym_AMP] = ACTIONS(4974), + [anon_sym_SQUOTE] = ACTIONS(4972), + [anon_sym_STAR] = ACTIONS(4972), + [anon_sym_PLUS] = ACTIONS(4972), + [anon_sym_COMMA] = ACTIONS(4972), + [anon_sym_DASH] = ACTIONS(4974), + [anon_sym_DOT] = ACTIONS(4974), + [anon_sym_SLASH] = ACTIONS(4972), + [anon_sym_COLON] = ACTIONS(4972), + [anon_sym_SEMI] = ACTIONS(4972), + [anon_sym_EQ] = ACTIONS(4972), + [anon_sym_QMARK] = ACTIONS(4972), + [anon_sym_LBRACK] = ACTIONS(4974), + [anon_sym_BSLASH] = ACTIONS(4974), + [anon_sym_CARET] = ACTIONS(4974), + [anon_sym__] = ACTIONS(4972), + [anon_sym_BQUOTE] = ACTIONS(4972), + [anon_sym_LBRACE] = ACTIONS(4972), + [anon_sym_PIPE] = ACTIONS(4972), + [anon_sym_TILDE] = ACTIONS(4972), + [anon_sym_LPAREN] = ACTIONS(4972), + [anon_sym_RPAREN] = ACTIONS(4972), + [sym__newline_token] = ACTIONS(4972), + [aux_sym_insert_token1] = ACTIONS(4972), + [aux_sym_delete_token1] = ACTIONS(4972), + [aux_sym_highlight_token1] = ACTIONS(4972), + [aux_sym_edit_comment_token1] = ACTIONS(4972), + [anon_sym_CARET_LBRACK] = ACTIONS(4972), + [anon_sym_LBRACK_CARET] = ACTIONS(4972), + [sym_uri_autolink] = ACTIONS(4972), + [sym_email_autolink] = ACTIONS(4972), + [sym__whitespace_ge_2] = ACTIONS(4972), + [aux_sym__whitespace_token1] = ACTIONS(4974), + [sym__word_no_digit] = ACTIONS(4972), + [sym__digits] = ACTIONS(4972), + [anon_sym_DASH_DASH] = ACTIONS(4974), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4972), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4972), + [sym__code_span_start] = ACTIONS(4972), + [sym__emphasis_open_star] = ACTIONS(4972), + [sym__emphasis_open_underscore] = ACTIONS(4972), + [sym__strikeout_open] = ACTIONS(4972), + [sym__latex_span_start] = ACTIONS(4972), + [sym__single_quote_open] = ACTIONS(4972), + [sym__double_quote_open] = ACTIONS(4972), + [sym__superscript_open] = ACTIONS(4972), + [sym__subscript_open] = ACTIONS(4972), + [sym__subscript_close] = ACTIONS(4972), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4972), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4972), + [sym__cite_author_in_text] = ACTIONS(4972), + [sym__cite_suppress_author] = ACTIONS(4972), + [sym__shortcode_open_escaped] = ACTIONS(4972), + [sym__shortcode_open] = ACTIONS(4972), + [sym__unclosed_span] = ACTIONS(4972), + }, + [STATE(858)] = { + [sym__backslash_escape] = ACTIONS(4988), + [sym_entity_reference] = ACTIONS(4988), + [sym_numeric_character_reference] = ACTIONS(4988), + [anon_sym_LT] = ACTIONS(4990), + [anon_sym_GT] = ACTIONS(4988), + [anon_sym_BANG] = ACTIONS(4988), + [anon_sym_DQUOTE] = ACTIONS(4988), + [anon_sym_POUND] = ACTIONS(4988), + [anon_sym_DOLLAR] = ACTIONS(4988), + [anon_sym_PERCENT] = ACTIONS(4988), + [anon_sym_AMP] = ACTIONS(4990), + [anon_sym_SQUOTE] = ACTIONS(4988), + [anon_sym_STAR] = ACTIONS(4988), + [anon_sym_PLUS] = ACTIONS(4988), + [anon_sym_COMMA] = ACTIONS(4988), + [anon_sym_DASH] = ACTIONS(4990), + [anon_sym_DOT] = ACTIONS(4990), + [anon_sym_SLASH] = ACTIONS(4988), + [anon_sym_COLON] = ACTIONS(4988), + [anon_sym_SEMI] = ACTIONS(4988), + [anon_sym_EQ] = ACTIONS(4988), + [anon_sym_QMARK] = ACTIONS(4988), + [anon_sym_LBRACK] = ACTIONS(4990), + [anon_sym_BSLASH] = ACTIONS(4990), + [anon_sym_CARET] = ACTIONS(4990), + [anon_sym__] = ACTIONS(4988), + [anon_sym_BQUOTE] = ACTIONS(4988), + [anon_sym_LBRACE] = ACTIONS(4988), + [anon_sym_PIPE] = ACTIONS(4988), + [anon_sym_TILDE] = ACTIONS(4988), + [anon_sym_LPAREN] = ACTIONS(4988), + [anon_sym_RPAREN] = ACTIONS(4988), + [sym__newline_token] = ACTIONS(4988), + [aux_sym_insert_token1] = ACTIONS(4988), + [aux_sym_delete_token1] = ACTIONS(4988), + [aux_sym_highlight_token1] = ACTIONS(4988), + [aux_sym_edit_comment_token1] = ACTIONS(4988), + [anon_sym_CARET_LBRACK] = ACTIONS(4988), + [anon_sym_LBRACK_CARET] = ACTIONS(4988), + [sym_uri_autolink] = ACTIONS(4988), + [sym_email_autolink] = ACTIONS(4988), + [sym__whitespace_ge_2] = ACTIONS(4988), + [aux_sym__whitespace_token1] = ACTIONS(4990), + [sym__word_no_digit] = ACTIONS(4988), + [sym__digits] = ACTIONS(4988), + [anon_sym_DASH_DASH] = ACTIONS(4990), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4988), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4988), + [sym__code_span_start] = ACTIONS(4988), + [sym__emphasis_open_star] = ACTIONS(4988), + [sym__emphasis_open_underscore] = ACTIONS(4988), + [sym__strikeout_open] = ACTIONS(4988), + [sym__latex_span_start] = ACTIONS(4988), + [sym__single_quote_open] = ACTIONS(4988), + [sym__double_quote_open] = ACTIONS(4988), + [sym__superscript_open] = ACTIONS(4988), + [sym__subscript_open] = ACTIONS(4988), + [sym__subscript_close] = ACTIONS(4988), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4988), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4988), + [sym__cite_author_in_text] = ACTIONS(4988), + [sym__cite_suppress_author] = ACTIONS(4988), + [sym__shortcode_open_escaped] = ACTIONS(4988), + [sym__shortcode_open] = ACTIONS(4988), + [sym__unclosed_span] = ACTIONS(4988), + }, + [STATE(859)] = { + [sym__backslash_escape] = ACTIONS(4992), + [sym_entity_reference] = ACTIONS(4992), + [sym_numeric_character_reference] = ACTIONS(4992), + [anon_sym_LT] = ACTIONS(4994), + [anon_sym_GT] = ACTIONS(4992), + [anon_sym_BANG] = ACTIONS(4992), + [anon_sym_DQUOTE] = ACTIONS(4992), + [anon_sym_POUND] = ACTIONS(4992), + [anon_sym_DOLLAR] = ACTIONS(4992), + [anon_sym_PERCENT] = ACTIONS(4992), + [anon_sym_AMP] = ACTIONS(4994), + [anon_sym_SQUOTE] = ACTIONS(4992), + [anon_sym_STAR] = ACTIONS(4992), + [anon_sym_PLUS] = ACTIONS(4992), + [anon_sym_COMMA] = ACTIONS(4992), + [anon_sym_DASH] = ACTIONS(4994), + [anon_sym_DOT] = ACTIONS(4994), + [anon_sym_SLASH] = ACTIONS(4992), + [anon_sym_COLON] = ACTIONS(4992), + [anon_sym_SEMI] = ACTIONS(4992), + [anon_sym_EQ] = ACTIONS(4992), + [anon_sym_QMARK] = ACTIONS(4992), + [anon_sym_LBRACK] = ACTIONS(4994), + [anon_sym_BSLASH] = ACTIONS(4994), + [anon_sym_CARET] = ACTIONS(4994), + [anon_sym__] = ACTIONS(4992), + [anon_sym_BQUOTE] = ACTIONS(4992), + [anon_sym_LBRACE] = ACTIONS(4992), + [anon_sym_PIPE] = ACTIONS(4992), + [anon_sym_TILDE] = ACTIONS(4992), + [anon_sym_LPAREN] = ACTIONS(4992), + [anon_sym_RPAREN] = ACTIONS(4992), + [sym__newline_token] = ACTIONS(4992), + [aux_sym_insert_token1] = ACTIONS(4992), + [aux_sym_delete_token1] = ACTIONS(4992), + [aux_sym_highlight_token1] = ACTIONS(4992), + [aux_sym_edit_comment_token1] = ACTIONS(4992), + [anon_sym_CARET_LBRACK] = ACTIONS(4992), + [anon_sym_LBRACK_CARET] = ACTIONS(4992), + [sym_uri_autolink] = ACTIONS(4992), + [sym_email_autolink] = ACTIONS(4992), + [sym__whitespace_ge_2] = ACTIONS(4992), + [aux_sym__whitespace_token1] = ACTIONS(4994), + [sym__word_no_digit] = ACTIONS(4992), + [sym__digits] = ACTIONS(4992), + [anon_sym_DASH_DASH] = ACTIONS(4994), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4992), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4992), + [sym__code_span_start] = ACTIONS(4992), + [sym__emphasis_open_star] = ACTIONS(4992), + [sym__emphasis_open_underscore] = ACTIONS(4992), + [sym__strikeout_open] = ACTIONS(4992), + [sym__latex_span_start] = ACTIONS(4992), + [sym__single_quote_open] = ACTIONS(4992), + [sym__double_quote_open] = ACTIONS(4992), + [sym__superscript_open] = ACTIONS(4992), + [sym__subscript_open] = ACTIONS(4992), + [sym__subscript_close] = ACTIONS(4992), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4992), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4992), + [sym__cite_author_in_text] = ACTIONS(4992), + [sym__cite_suppress_author] = ACTIONS(4992), + [sym__shortcode_open_escaped] = ACTIONS(4992), + [sym__shortcode_open] = ACTIONS(4992), + [sym__unclosed_span] = ACTIONS(4992), + }, + [STATE(860)] = { + [sym__backslash_escape] = ACTIONS(5024), + [sym_entity_reference] = ACTIONS(5024), + [sym_numeric_character_reference] = ACTIONS(5024), + [anon_sym_LT] = ACTIONS(5026), + [anon_sym_GT] = ACTIONS(5024), + [anon_sym_BANG] = ACTIONS(5024), + [anon_sym_DQUOTE] = ACTIONS(5024), + [anon_sym_POUND] = ACTIONS(5024), + [anon_sym_DOLLAR] = ACTIONS(5024), + [anon_sym_PERCENT] = ACTIONS(5024), + [anon_sym_AMP] = ACTIONS(5026), + [anon_sym_SQUOTE] = ACTIONS(5024), + [anon_sym_STAR] = ACTIONS(5024), + [anon_sym_PLUS] = ACTIONS(5024), + [anon_sym_COMMA] = ACTIONS(5024), + [anon_sym_DASH] = ACTIONS(5026), + [anon_sym_DOT] = ACTIONS(5026), + [anon_sym_SLASH] = ACTIONS(5024), + [anon_sym_COLON] = ACTIONS(5024), + [anon_sym_SEMI] = ACTIONS(5024), + [anon_sym_EQ] = ACTIONS(5024), + [anon_sym_QMARK] = ACTIONS(5024), + [anon_sym_LBRACK] = ACTIONS(5026), + [anon_sym_BSLASH] = ACTIONS(5026), + [anon_sym_CARET] = ACTIONS(5026), + [anon_sym__] = ACTIONS(5024), + [anon_sym_BQUOTE] = ACTIONS(5024), + [anon_sym_LBRACE] = ACTIONS(5024), + [anon_sym_PIPE] = ACTIONS(5024), + [anon_sym_TILDE] = ACTIONS(5024), + [anon_sym_LPAREN] = ACTIONS(5024), + [anon_sym_RPAREN] = ACTIONS(5024), + [sym__newline_token] = ACTIONS(5024), + [aux_sym_insert_token1] = ACTIONS(5024), + [aux_sym_delete_token1] = ACTIONS(5024), + [aux_sym_highlight_token1] = ACTIONS(5024), + [aux_sym_edit_comment_token1] = ACTIONS(5024), + [anon_sym_CARET_LBRACK] = ACTIONS(5024), + [anon_sym_LBRACK_CARET] = ACTIONS(5024), + [sym_uri_autolink] = ACTIONS(5024), + [sym_email_autolink] = ACTIONS(5024), + [sym__whitespace_ge_2] = ACTIONS(5024), + [aux_sym__whitespace_token1] = ACTIONS(5026), + [sym__word_no_digit] = ACTIONS(5024), + [sym__digits] = ACTIONS(5024), + [anon_sym_DASH_DASH] = ACTIONS(5026), + [anon_sym_DASH_DASH_DASH] = ACTIONS(5024), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5024), + [sym__code_span_start] = ACTIONS(5024), + [sym__emphasis_open_star] = ACTIONS(5024), + [sym__emphasis_open_underscore] = ACTIONS(5024), + [sym__strikeout_open] = ACTIONS(5024), + [sym__latex_span_start] = ACTIONS(5024), + [sym__single_quote_open] = ACTIONS(5024), + [sym__double_quote_open] = ACTIONS(5024), + [sym__superscript_open] = ACTIONS(5024), + [sym__subscript_open] = ACTIONS(5024), + [sym__subscript_close] = ACTIONS(5024), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5024), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5024), + [sym__cite_author_in_text] = ACTIONS(5024), + [sym__cite_suppress_author] = ACTIONS(5024), + [sym__shortcode_open_escaped] = ACTIONS(5024), + [sym__shortcode_open] = ACTIONS(5024), + [sym__unclosed_span] = ACTIONS(5024), + }, + [STATE(861)] = { + [sym__backslash_escape] = ACTIONS(5040), + [sym_entity_reference] = ACTIONS(5040), + [sym_numeric_character_reference] = ACTIONS(5040), + [anon_sym_LT] = ACTIONS(5042), + [anon_sym_GT] = ACTIONS(5040), + [anon_sym_BANG] = ACTIONS(5040), + [anon_sym_DQUOTE] = ACTIONS(5040), + [anon_sym_POUND] = ACTIONS(5040), + [anon_sym_DOLLAR] = ACTIONS(5040), + [anon_sym_PERCENT] = ACTIONS(5040), + [anon_sym_AMP] = ACTIONS(5042), + [anon_sym_SQUOTE] = ACTIONS(5040), + [anon_sym_STAR] = ACTIONS(5040), + [anon_sym_PLUS] = ACTIONS(5040), + [anon_sym_COMMA] = ACTIONS(5040), + [anon_sym_DASH] = ACTIONS(5042), + [anon_sym_DOT] = ACTIONS(5042), + [anon_sym_SLASH] = ACTIONS(5040), + [anon_sym_COLON] = ACTIONS(5040), + [anon_sym_SEMI] = ACTIONS(5040), + [anon_sym_EQ] = ACTIONS(5040), + [anon_sym_QMARK] = ACTIONS(5040), + [anon_sym_LBRACK] = ACTIONS(5042), + [anon_sym_BSLASH] = ACTIONS(5042), + [anon_sym_CARET] = ACTIONS(5042), + [anon_sym__] = ACTIONS(5040), + [anon_sym_BQUOTE] = ACTIONS(5040), + [anon_sym_LBRACE] = ACTIONS(5040), + [anon_sym_PIPE] = ACTIONS(5040), + [anon_sym_TILDE] = ACTIONS(5040), + [anon_sym_LPAREN] = ACTIONS(5040), + [anon_sym_RPAREN] = ACTIONS(5040), + [sym__newline_token] = ACTIONS(5040), + [aux_sym_insert_token1] = ACTIONS(5040), + [aux_sym_delete_token1] = ACTIONS(5040), + [aux_sym_highlight_token1] = ACTIONS(5040), + [aux_sym_edit_comment_token1] = ACTIONS(5040), + [anon_sym_CARET_LBRACK] = ACTIONS(5040), + [anon_sym_LBRACK_CARET] = ACTIONS(5040), + [sym_uri_autolink] = ACTIONS(5040), + [sym_email_autolink] = ACTIONS(5040), + [sym__whitespace_ge_2] = ACTIONS(5040), + [aux_sym__whitespace_token1] = ACTIONS(5042), + [sym__word_no_digit] = ACTIONS(5040), + [sym__digits] = ACTIONS(5040), + [anon_sym_DASH_DASH] = ACTIONS(5042), + [anon_sym_DASH_DASH_DASH] = ACTIONS(5040), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5040), + [sym__code_span_start] = ACTIONS(5040), + [sym__emphasis_open_star] = ACTIONS(5040), + [sym__emphasis_open_underscore] = ACTIONS(5040), + [sym__strikeout_open] = ACTIONS(5040), + [sym__latex_span_start] = ACTIONS(5040), + [sym__single_quote_open] = ACTIONS(5040), + [sym__double_quote_open] = ACTIONS(5040), + [sym__superscript_open] = ACTIONS(5040), + [sym__subscript_open] = ACTIONS(5040), + [sym__subscript_close] = ACTIONS(5040), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5040), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5040), + [sym__cite_author_in_text] = ACTIONS(5040), + [sym__cite_suppress_author] = ACTIONS(5040), + [sym__shortcode_open_escaped] = ACTIONS(5040), + [sym__shortcode_open] = ACTIONS(5040), + [sym__unclosed_span] = ACTIONS(5040), + }, + [STATE(862)] = { + [sym__backslash_escape] = ACTIONS(5044), + [sym_entity_reference] = ACTIONS(5044), + [sym_numeric_character_reference] = ACTIONS(5044), + [anon_sym_LT] = ACTIONS(5046), + [anon_sym_GT] = ACTIONS(5044), + [anon_sym_BANG] = ACTIONS(5044), + [anon_sym_DQUOTE] = ACTIONS(5044), + [anon_sym_POUND] = ACTIONS(5044), + [anon_sym_DOLLAR] = ACTIONS(5044), + [anon_sym_PERCENT] = ACTIONS(5044), + [anon_sym_AMP] = ACTIONS(5046), + [anon_sym_SQUOTE] = ACTIONS(5044), + [anon_sym_STAR] = ACTIONS(5044), + [anon_sym_PLUS] = ACTIONS(5044), + [anon_sym_COMMA] = ACTIONS(5044), + [anon_sym_DASH] = ACTIONS(5046), + [anon_sym_DOT] = ACTIONS(5046), + [anon_sym_SLASH] = ACTIONS(5044), + [anon_sym_COLON] = ACTIONS(5044), + [anon_sym_SEMI] = ACTIONS(5044), + [anon_sym_EQ] = ACTIONS(5044), + [anon_sym_QMARK] = ACTIONS(5044), + [anon_sym_LBRACK] = ACTIONS(5046), + [anon_sym_BSLASH] = ACTIONS(5046), + [anon_sym_CARET] = ACTIONS(5046), + [anon_sym__] = ACTIONS(5044), + [anon_sym_BQUOTE] = ACTIONS(5044), + [anon_sym_LBRACE] = ACTIONS(5044), + [anon_sym_PIPE] = ACTIONS(5044), + [anon_sym_TILDE] = ACTIONS(5044), + [anon_sym_LPAREN] = ACTIONS(5044), + [anon_sym_RPAREN] = ACTIONS(5044), + [sym__newline_token] = ACTIONS(5044), + [aux_sym_insert_token1] = ACTIONS(5044), + [aux_sym_delete_token1] = ACTIONS(5044), + [aux_sym_highlight_token1] = ACTIONS(5044), + [aux_sym_edit_comment_token1] = ACTIONS(5044), + [anon_sym_CARET_LBRACK] = ACTIONS(5044), + [anon_sym_LBRACK_CARET] = ACTIONS(5044), + [sym_uri_autolink] = ACTIONS(5044), + [sym_email_autolink] = ACTIONS(5044), + [sym__whitespace_ge_2] = ACTIONS(5044), + [aux_sym__whitespace_token1] = ACTIONS(5046), + [sym__word_no_digit] = ACTIONS(5044), + [sym__digits] = ACTIONS(5044), + [anon_sym_DASH_DASH] = ACTIONS(5046), + [anon_sym_DASH_DASH_DASH] = ACTIONS(5044), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5044), + [sym__code_span_start] = ACTIONS(5044), + [sym__emphasis_open_star] = ACTIONS(5044), + [sym__emphasis_open_underscore] = ACTIONS(5044), + [sym__strikeout_open] = ACTIONS(5044), + [sym__latex_span_start] = ACTIONS(5044), + [sym__single_quote_open] = ACTIONS(5044), + [sym__double_quote_open] = ACTIONS(5044), + [sym__superscript_open] = ACTIONS(5044), + [sym__subscript_open] = ACTIONS(5044), + [sym__subscript_close] = ACTIONS(5044), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5044), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5044), + [sym__cite_author_in_text] = ACTIONS(5044), + [sym__cite_suppress_author] = ACTIONS(5044), + [sym__shortcode_open_escaped] = ACTIONS(5044), + [sym__shortcode_open] = ACTIONS(5044), + [sym__unclosed_span] = ACTIONS(5044), + }, + [STATE(863)] = { + [sym__backslash_escape] = ACTIONS(5048), + [sym_entity_reference] = ACTIONS(5048), + [sym_numeric_character_reference] = ACTIONS(5048), + [anon_sym_LT] = ACTIONS(5050), + [anon_sym_GT] = ACTIONS(5048), + [anon_sym_BANG] = ACTIONS(5048), + [anon_sym_DQUOTE] = ACTIONS(5048), + [anon_sym_POUND] = ACTIONS(5048), + [anon_sym_DOLLAR] = ACTIONS(5048), + [anon_sym_PERCENT] = ACTIONS(5048), + [anon_sym_AMP] = ACTIONS(5050), + [anon_sym_SQUOTE] = ACTIONS(5048), + [anon_sym_STAR] = ACTIONS(5048), + [anon_sym_PLUS] = ACTIONS(5048), + [anon_sym_COMMA] = ACTIONS(5048), + [anon_sym_DASH] = ACTIONS(5050), + [anon_sym_DOT] = ACTIONS(5050), + [anon_sym_SLASH] = ACTIONS(5048), + [anon_sym_COLON] = ACTIONS(5048), + [anon_sym_SEMI] = ACTIONS(5048), + [anon_sym_EQ] = ACTIONS(5048), + [anon_sym_QMARK] = ACTIONS(5048), + [anon_sym_LBRACK] = ACTIONS(5050), + [anon_sym_BSLASH] = ACTIONS(5050), + [anon_sym_CARET] = ACTIONS(5050), + [anon_sym__] = ACTIONS(5048), + [anon_sym_BQUOTE] = ACTIONS(5048), + [anon_sym_LBRACE] = ACTIONS(5048), + [anon_sym_PIPE] = ACTIONS(5048), + [anon_sym_TILDE] = ACTIONS(5048), + [anon_sym_LPAREN] = ACTIONS(5048), + [anon_sym_RPAREN] = ACTIONS(5048), + [sym__newline_token] = ACTIONS(5048), + [aux_sym_insert_token1] = ACTIONS(5048), + [aux_sym_delete_token1] = ACTIONS(5048), + [aux_sym_highlight_token1] = ACTIONS(5048), + [aux_sym_edit_comment_token1] = ACTIONS(5048), + [anon_sym_CARET_LBRACK] = ACTIONS(5048), + [anon_sym_LBRACK_CARET] = ACTIONS(5048), + [sym_uri_autolink] = ACTIONS(5048), + [sym_email_autolink] = ACTIONS(5048), + [sym__whitespace_ge_2] = ACTIONS(5048), + [aux_sym__whitespace_token1] = ACTIONS(5050), + [sym__word_no_digit] = ACTIONS(5048), + [sym__digits] = ACTIONS(5048), + [anon_sym_DASH_DASH] = ACTIONS(5050), + [anon_sym_DASH_DASH_DASH] = ACTIONS(5048), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5048), + [sym__code_span_start] = ACTIONS(5048), + [sym__emphasis_open_star] = ACTIONS(5048), + [sym__emphasis_open_underscore] = ACTIONS(5048), + [sym__strikeout_open] = ACTIONS(5048), + [sym__latex_span_start] = ACTIONS(5048), + [sym__single_quote_open] = ACTIONS(5048), + [sym__double_quote_open] = ACTIONS(5048), + [sym__superscript_open] = ACTIONS(5048), + [sym__subscript_open] = ACTIONS(5048), + [sym__subscript_close] = ACTIONS(5048), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5048), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5048), + [sym__cite_author_in_text] = ACTIONS(5048), + [sym__cite_suppress_author] = ACTIONS(5048), + [sym__shortcode_open_escaped] = ACTIONS(5048), + [sym__shortcode_open] = ACTIONS(5048), + [sym__unclosed_span] = ACTIONS(5048), + }, + [STATE(864)] = { + [sym__backslash_escape] = ACTIONS(5052), + [sym_entity_reference] = ACTIONS(5052), + [sym_numeric_character_reference] = ACTIONS(5052), + [anon_sym_LT] = ACTIONS(5054), + [anon_sym_GT] = ACTIONS(5052), + [anon_sym_BANG] = ACTIONS(5052), + [anon_sym_DQUOTE] = ACTIONS(5052), + [anon_sym_POUND] = ACTIONS(5052), + [anon_sym_DOLLAR] = ACTIONS(5052), + [anon_sym_PERCENT] = ACTIONS(5052), + [anon_sym_AMP] = ACTIONS(5054), + [anon_sym_SQUOTE] = ACTIONS(5052), + [anon_sym_STAR] = ACTIONS(5052), + [anon_sym_PLUS] = ACTIONS(5052), + [anon_sym_COMMA] = ACTIONS(5052), + [anon_sym_DASH] = ACTIONS(5054), + [anon_sym_DOT] = ACTIONS(5054), + [anon_sym_SLASH] = ACTIONS(5052), + [anon_sym_COLON] = ACTIONS(5052), + [anon_sym_SEMI] = ACTIONS(5052), + [anon_sym_EQ] = ACTIONS(5052), + [anon_sym_QMARK] = ACTIONS(5052), + [anon_sym_LBRACK] = ACTIONS(5054), + [anon_sym_BSLASH] = ACTIONS(5054), + [anon_sym_CARET] = ACTIONS(5054), + [anon_sym__] = ACTIONS(5052), + [anon_sym_BQUOTE] = ACTIONS(5052), + [anon_sym_LBRACE] = ACTIONS(5052), + [anon_sym_PIPE] = ACTIONS(5052), + [anon_sym_TILDE] = ACTIONS(5052), + [anon_sym_LPAREN] = ACTIONS(5052), + [anon_sym_RPAREN] = ACTIONS(5052), + [sym__newline_token] = ACTIONS(5052), + [aux_sym_insert_token1] = ACTIONS(5052), + [aux_sym_delete_token1] = ACTIONS(5052), + [aux_sym_highlight_token1] = ACTIONS(5052), + [aux_sym_edit_comment_token1] = ACTIONS(5052), + [anon_sym_CARET_LBRACK] = ACTIONS(5052), + [anon_sym_LBRACK_CARET] = ACTIONS(5052), + [sym_uri_autolink] = ACTIONS(5052), + [sym_email_autolink] = ACTIONS(5052), + [sym__whitespace_ge_2] = ACTIONS(5052), + [aux_sym__whitespace_token1] = ACTIONS(5054), + [sym__word_no_digit] = ACTIONS(5052), + [sym__digits] = ACTIONS(5052), + [anon_sym_DASH_DASH] = ACTIONS(5054), + [anon_sym_DASH_DASH_DASH] = ACTIONS(5052), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5052), + [sym__code_span_start] = ACTIONS(5052), + [sym__emphasis_open_star] = ACTIONS(5052), + [sym__emphasis_open_underscore] = ACTIONS(5052), + [sym__strikeout_open] = ACTIONS(5052), + [sym__latex_span_start] = ACTIONS(5052), + [sym__single_quote_open] = ACTIONS(5052), + [sym__double_quote_open] = ACTIONS(5052), + [sym__superscript_open] = ACTIONS(5052), + [sym__subscript_open] = ACTIONS(5052), + [sym__subscript_close] = ACTIONS(5052), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5052), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5052), + [sym__cite_author_in_text] = ACTIONS(5052), + [sym__cite_suppress_author] = ACTIONS(5052), + [sym__shortcode_open_escaped] = ACTIONS(5052), + [sym__shortcode_open] = ACTIONS(5052), + [sym__unclosed_span] = ACTIONS(5052), + }, + [STATE(865)] = { + [sym__backslash_escape] = ACTIONS(4884), + [sym_entity_reference] = ACTIONS(4884), + [sym_numeric_character_reference] = ACTIONS(4884), + [anon_sym_LT] = ACTIONS(4886), + [anon_sym_GT] = ACTIONS(4884), + [anon_sym_BANG] = ACTIONS(4884), + [anon_sym_DQUOTE] = ACTIONS(4884), + [anon_sym_POUND] = ACTIONS(4884), + [anon_sym_DOLLAR] = ACTIONS(4884), + [anon_sym_PERCENT] = ACTIONS(4884), + [anon_sym_AMP] = ACTIONS(4886), + [anon_sym_SQUOTE] = ACTIONS(4884), + [anon_sym_STAR] = ACTIONS(4884), + [anon_sym_PLUS] = ACTIONS(4884), + [anon_sym_COMMA] = ACTIONS(4884), + [anon_sym_DASH] = ACTIONS(4886), + [anon_sym_DOT] = ACTIONS(4886), + [anon_sym_SLASH] = ACTIONS(4884), + [anon_sym_COLON] = ACTIONS(4884), + [anon_sym_SEMI] = ACTIONS(4884), + [anon_sym_EQ] = ACTIONS(4884), + [anon_sym_QMARK] = ACTIONS(4884), + [anon_sym_LBRACK] = ACTIONS(4886), + [anon_sym_BSLASH] = ACTIONS(4886), + [anon_sym_CARET] = ACTIONS(4886), + [anon_sym__] = ACTIONS(4884), + [anon_sym_BQUOTE] = ACTIONS(4884), + [anon_sym_LBRACE] = ACTIONS(4884), + [anon_sym_PIPE] = ACTIONS(4884), + [anon_sym_TILDE] = ACTIONS(4884), + [anon_sym_LPAREN] = ACTIONS(4884), + [anon_sym_RPAREN] = ACTIONS(4884), + [sym__newline_token] = ACTIONS(4884), + [aux_sym_insert_token1] = ACTIONS(4884), + [aux_sym_delete_token1] = ACTIONS(4884), + [aux_sym_highlight_token1] = ACTIONS(4884), + [aux_sym_edit_comment_token1] = ACTIONS(4884), + [anon_sym_CARET_LBRACK] = ACTIONS(4884), + [anon_sym_LBRACK_CARET] = ACTIONS(4884), + [sym_uri_autolink] = ACTIONS(4884), + [sym_email_autolink] = ACTIONS(4884), + [sym__whitespace_ge_2] = ACTIONS(4884), + [aux_sym__whitespace_token1] = ACTIONS(4886), + [sym__word_no_digit] = ACTIONS(4884), + [sym__digits] = ACTIONS(4884), + [anon_sym_DASH_DASH] = ACTIONS(4886), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4884), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4884), + [sym__code_span_start] = ACTIONS(4884), + [sym__emphasis_open_star] = ACTIONS(4884), + [sym__emphasis_open_underscore] = ACTIONS(4884), + [sym__strikeout_open] = ACTIONS(4884), + [sym__strikeout_close] = ACTIONS(4884), + [sym__latex_span_start] = ACTIONS(4884), + [sym__single_quote_open] = ACTIONS(4884), + [sym__double_quote_open] = ACTIONS(4884), + [sym__superscript_open] = ACTIONS(4884), + [sym__subscript_open] = ACTIONS(4884), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4884), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4884), + [sym__cite_author_in_text] = ACTIONS(4884), + [sym__cite_suppress_author] = ACTIONS(4884), + [sym__shortcode_open_escaped] = ACTIONS(4884), + [sym__shortcode_open] = ACTIONS(4884), + [sym__unclosed_span] = ACTIONS(4884), + }, + [STATE(866)] = { + [sym__backslash_escape] = ACTIONS(4690), + [sym_entity_reference] = ACTIONS(4690), + [sym_numeric_character_reference] = ACTIONS(4690), + [anon_sym_LT] = ACTIONS(4692), + [anon_sym_GT] = ACTIONS(4690), + [anon_sym_BANG] = ACTIONS(4690), + [anon_sym_DQUOTE] = ACTIONS(4690), + [anon_sym_POUND] = ACTIONS(4690), + [anon_sym_DOLLAR] = ACTIONS(4690), + [anon_sym_PERCENT] = ACTIONS(4690), + [anon_sym_AMP] = ACTIONS(4692), + [anon_sym_SQUOTE] = ACTIONS(4690), + [anon_sym_STAR] = ACTIONS(4690), + [anon_sym_PLUS] = ACTIONS(4690), + [anon_sym_COMMA] = ACTIONS(4690), + [anon_sym_DASH] = ACTIONS(4692), + [anon_sym_DOT] = ACTIONS(4692), + [anon_sym_SLASH] = ACTIONS(4690), + [anon_sym_COLON] = ACTIONS(4690), + [anon_sym_SEMI] = ACTIONS(4690), + [anon_sym_EQ] = ACTIONS(4690), + [anon_sym_QMARK] = ACTIONS(4690), + [anon_sym_LBRACK] = ACTIONS(4692), + [anon_sym_BSLASH] = ACTIONS(4692), + [anon_sym_CARET] = ACTIONS(4692), + [anon_sym__] = ACTIONS(4690), + [anon_sym_BQUOTE] = ACTIONS(4690), + [anon_sym_LBRACE] = ACTIONS(4690), + [anon_sym_PIPE] = ACTIONS(4690), + [anon_sym_TILDE] = ACTIONS(4690), + [anon_sym_LPAREN] = ACTIONS(4690), + [anon_sym_RPAREN] = ACTIONS(4690), + [sym__newline_token] = ACTIONS(4690), + [aux_sym_insert_token1] = ACTIONS(4690), + [aux_sym_delete_token1] = ACTIONS(4690), + [aux_sym_highlight_token1] = ACTIONS(4690), + [aux_sym_edit_comment_token1] = ACTIONS(4690), + [anon_sym_CARET_LBRACK] = ACTIONS(4690), + [anon_sym_LBRACK_CARET] = ACTIONS(4690), + [sym_uri_autolink] = ACTIONS(4690), + [sym_email_autolink] = ACTIONS(4690), + [sym__whitespace_ge_2] = ACTIONS(4690), + [aux_sym__whitespace_token1] = ACTIONS(4692), + [sym__word_no_digit] = ACTIONS(4690), + [sym__digits] = ACTIONS(4690), + [anon_sym_DASH_DASH] = ACTIONS(4692), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4690), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4690), + [sym__code_span_start] = ACTIONS(4690), + [sym__emphasis_open_star] = ACTIONS(4690), + [sym__emphasis_open_underscore] = ACTIONS(4690), + [sym__strikeout_open] = ACTIONS(4690), + [sym__latex_span_start] = ACTIONS(4690), + [sym__single_quote_open] = ACTIONS(4690), + [sym__double_quote_open] = ACTIONS(4690), + [sym__superscript_open] = ACTIONS(4690), + [sym__subscript_open] = ACTIONS(4690), + [sym__subscript_close] = ACTIONS(4690), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4690), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4690), + [sym__cite_author_in_text] = ACTIONS(4690), + [sym__cite_suppress_author] = ACTIONS(4690), + [sym__shortcode_open_escaped] = ACTIONS(4690), + [sym__shortcode_open] = ACTIONS(4690), + [sym__unclosed_span] = ACTIONS(4690), + }, + [STATE(867)] = { + [sym__backslash_escape] = ACTIONS(4888), + [sym_entity_reference] = ACTIONS(4888), + [sym_numeric_character_reference] = ACTIONS(4888), + [anon_sym_LT] = ACTIONS(4890), + [anon_sym_GT] = ACTIONS(4888), + [anon_sym_BANG] = ACTIONS(4888), + [anon_sym_DQUOTE] = ACTIONS(4888), + [anon_sym_POUND] = ACTIONS(4888), + [anon_sym_DOLLAR] = ACTIONS(4888), + [anon_sym_PERCENT] = ACTIONS(4888), + [anon_sym_AMP] = ACTIONS(4890), + [anon_sym_SQUOTE] = ACTIONS(4888), + [anon_sym_STAR] = ACTIONS(4888), + [anon_sym_PLUS] = ACTIONS(4888), + [anon_sym_COMMA] = ACTIONS(4888), + [anon_sym_DASH] = ACTIONS(4890), + [anon_sym_DOT] = ACTIONS(4890), + [anon_sym_SLASH] = ACTIONS(4888), + [anon_sym_COLON] = ACTIONS(4888), + [anon_sym_SEMI] = ACTIONS(4888), + [anon_sym_EQ] = ACTIONS(4888), + [anon_sym_QMARK] = ACTIONS(4888), + [anon_sym_LBRACK] = ACTIONS(4890), + [anon_sym_BSLASH] = ACTIONS(4890), + [anon_sym_CARET] = ACTIONS(4890), + [anon_sym__] = ACTIONS(4888), + [anon_sym_BQUOTE] = ACTIONS(4888), + [anon_sym_LBRACE] = ACTIONS(4888), + [anon_sym_PIPE] = ACTIONS(4888), + [anon_sym_TILDE] = ACTIONS(4888), + [anon_sym_LPAREN] = ACTIONS(4888), + [anon_sym_RPAREN] = ACTIONS(4888), + [sym__newline_token] = ACTIONS(4888), + [aux_sym_insert_token1] = ACTIONS(4888), + [aux_sym_delete_token1] = ACTIONS(4888), + [aux_sym_highlight_token1] = ACTIONS(4888), + [aux_sym_edit_comment_token1] = ACTIONS(4888), + [anon_sym_CARET_LBRACK] = ACTIONS(4888), + [anon_sym_LBRACK_CARET] = ACTIONS(4888), + [sym_uri_autolink] = ACTIONS(4888), + [sym_email_autolink] = ACTIONS(4888), + [sym__whitespace_ge_2] = ACTIONS(4888), + [aux_sym__whitespace_token1] = ACTIONS(4890), + [sym__word_no_digit] = ACTIONS(4888), + [sym__digits] = ACTIONS(4888), + [anon_sym_DASH_DASH] = ACTIONS(4890), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4888), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4888), + [sym__code_span_start] = ACTIONS(4888), + [sym__emphasis_open_star] = ACTIONS(4888), + [sym__emphasis_open_underscore] = ACTIONS(4888), + [sym__strikeout_open] = ACTIONS(4888), + [sym__strikeout_close] = ACTIONS(4888), + [sym__latex_span_start] = ACTIONS(4888), + [sym__single_quote_open] = ACTIONS(4888), + [sym__double_quote_open] = ACTIONS(4888), + [sym__superscript_open] = ACTIONS(4888), + [sym__subscript_open] = ACTIONS(4888), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4888), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4888), + [sym__cite_author_in_text] = ACTIONS(4888), + [sym__cite_suppress_author] = ACTIONS(4888), + [sym__shortcode_open_escaped] = ACTIONS(4888), + [sym__shortcode_open] = ACTIONS(4888), + [sym__unclosed_span] = ACTIONS(4888), + }, + [STATE(868)] = { + [sym__backslash_escape] = ACTIONS(5056), + [sym_entity_reference] = ACTIONS(5056), + [sym_numeric_character_reference] = ACTIONS(5056), + [anon_sym_LT] = ACTIONS(5058), + [anon_sym_GT] = ACTIONS(5056), + [anon_sym_BANG] = ACTIONS(5056), + [anon_sym_DQUOTE] = ACTIONS(5056), + [anon_sym_POUND] = ACTIONS(5056), + [anon_sym_DOLLAR] = ACTIONS(5056), + [anon_sym_PERCENT] = ACTIONS(5056), + [anon_sym_AMP] = ACTIONS(5058), + [anon_sym_SQUOTE] = ACTIONS(5056), + [anon_sym_STAR] = ACTIONS(5056), + [anon_sym_PLUS] = ACTIONS(5056), + [anon_sym_COMMA] = ACTIONS(5056), + [anon_sym_DASH] = ACTIONS(5058), + [anon_sym_DOT] = ACTIONS(5058), + [anon_sym_SLASH] = ACTIONS(5056), + [anon_sym_COLON] = ACTIONS(5056), + [anon_sym_SEMI] = ACTIONS(5056), + [anon_sym_EQ] = ACTIONS(5056), + [anon_sym_QMARK] = ACTIONS(5056), + [anon_sym_LBRACK] = ACTIONS(5058), + [anon_sym_BSLASH] = ACTIONS(5058), + [anon_sym_CARET] = ACTIONS(5058), + [anon_sym__] = ACTIONS(5056), + [anon_sym_BQUOTE] = ACTIONS(5056), + [anon_sym_LBRACE] = ACTIONS(5056), + [anon_sym_PIPE] = ACTIONS(5056), + [anon_sym_TILDE] = ACTIONS(5056), + [anon_sym_LPAREN] = ACTIONS(5056), + [anon_sym_RPAREN] = ACTIONS(5056), + [sym__newline_token] = ACTIONS(5056), + [aux_sym_insert_token1] = ACTIONS(5056), + [aux_sym_delete_token1] = ACTIONS(5056), + [aux_sym_highlight_token1] = ACTIONS(5056), + [aux_sym_edit_comment_token1] = ACTIONS(5056), + [anon_sym_CARET_LBRACK] = ACTIONS(5056), + [anon_sym_LBRACK_CARET] = ACTIONS(5056), + [sym_uri_autolink] = ACTIONS(5056), + [sym_email_autolink] = ACTIONS(5056), + [sym__whitespace_ge_2] = ACTIONS(5056), + [aux_sym__whitespace_token1] = ACTIONS(5058), + [sym__word_no_digit] = ACTIONS(5056), + [sym__digits] = ACTIONS(5056), + [anon_sym_DASH_DASH] = ACTIONS(5058), + [anon_sym_DASH_DASH_DASH] = ACTIONS(5056), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5056), + [sym__code_span_start] = ACTIONS(5056), + [sym__emphasis_open_star] = ACTIONS(5056), + [sym__emphasis_open_underscore] = ACTIONS(5056), + [sym__strikeout_open] = ACTIONS(5056), + [sym__latex_span_start] = ACTIONS(5056), + [sym__single_quote_open] = ACTIONS(5056), + [sym__double_quote_open] = ACTIONS(5056), + [sym__superscript_open] = ACTIONS(5056), + [sym__subscript_open] = ACTIONS(5056), + [sym__subscript_close] = ACTIONS(5056), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5056), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5056), + [sym__cite_author_in_text] = ACTIONS(5056), + [sym__cite_suppress_author] = ACTIONS(5056), + [sym__shortcode_open_escaped] = ACTIONS(5056), + [sym__shortcode_open] = ACTIONS(5056), + [sym__unclosed_span] = ACTIONS(5056), + }, + [STATE(869)] = { + [sym__backslash_escape] = ACTIONS(4892), + [sym_entity_reference] = ACTIONS(4892), + [sym_numeric_character_reference] = ACTIONS(4892), + [anon_sym_LT] = ACTIONS(4894), + [anon_sym_GT] = ACTIONS(4892), + [anon_sym_BANG] = ACTIONS(4892), + [anon_sym_DQUOTE] = ACTIONS(4892), + [anon_sym_POUND] = ACTIONS(4892), + [anon_sym_DOLLAR] = ACTIONS(4892), + [anon_sym_PERCENT] = ACTIONS(4892), + [anon_sym_AMP] = ACTIONS(4894), + [anon_sym_SQUOTE] = ACTIONS(4892), + [anon_sym_STAR] = ACTIONS(4892), + [anon_sym_PLUS] = ACTIONS(4892), + [anon_sym_COMMA] = ACTIONS(4892), + [anon_sym_DASH] = ACTIONS(4894), + [anon_sym_DOT] = ACTIONS(4894), + [anon_sym_SLASH] = ACTIONS(4892), + [anon_sym_COLON] = ACTIONS(4892), + [anon_sym_SEMI] = ACTIONS(4892), + [anon_sym_EQ] = ACTIONS(4892), + [anon_sym_QMARK] = ACTIONS(4892), + [anon_sym_LBRACK] = ACTIONS(4894), + [anon_sym_BSLASH] = ACTIONS(4894), + [anon_sym_CARET] = ACTIONS(4894), + [anon_sym__] = ACTIONS(4892), + [anon_sym_BQUOTE] = ACTIONS(4892), + [anon_sym_LBRACE] = ACTIONS(4892), + [anon_sym_PIPE] = ACTIONS(4892), + [anon_sym_TILDE] = ACTIONS(4892), + [anon_sym_LPAREN] = ACTIONS(4892), + [anon_sym_RPAREN] = ACTIONS(4892), + [sym__newline_token] = ACTIONS(4892), + [aux_sym_insert_token1] = ACTIONS(4892), + [aux_sym_delete_token1] = ACTIONS(4892), + [aux_sym_highlight_token1] = ACTIONS(4892), + [aux_sym_edit_comment_token1] = ACTIONS(4892), + [anon_sym_CARET_LBRACK] = ACTIONS(4892), + [anon_sym_LBRACK_CARET] = ACTIONS(4892), + [sym_uri_autolink] = ACTIONS(4892), + [sym_email_autolink] = ACTIONS(4892), + [sym__whitespace_ge_2] = ACTIONS(4892), + [aux_sym__whitespace_token1] = ACTIONS(4894), + [sym__word_no_digit] = ACTIONS(4892), + [sym__digits] = ACTIONS(4892), + [anon_sym_DASH_DASH] = ACTIONS(4894), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4892), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4892), + [sym__code_span_start] = ACTIONS(4892), + [sym__emphasis_open_star] = ACTIONS(4892), + [sym__emphasis_open_underscore] = ACTIONS(4892), + [sym__strikeout_open] = ACTIONS(4892), + [sym__strikeout_close] = ACTIONS(4892), + [sym__latex_span_start] = ACTIONS(4892), + [sym__single_quote_open] = ACTIONS(4892), + [sym__double_quote_open] = ACTIONS(4892), + [sym__superscript_open] = ACTIONS(4892), + [sym__subscript_open] = ACTIONS(4892), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4892), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4892), + [sym__cite_author_in_text] = ACTIONS(4892), + [sym__cite_suppress_author] = ACTIONS(4892), + [sym__shortcode_open_escaped] = ACTIONS(4892), + [sym__shortcode_open] = ACTIONS(4892), + [sym__unclosed_span] = ACTIONS(4892), + }, + [STATE(870)] = { + [sym__backslash_escape] = ACTIONS(4896), + [sym_entity_reference] = ACTIONS(4896), + [sym_numeric_character_reference] = ACTIONS(4896), + [anon_sym_LT] = ACTIONS(4898), + [anon_sym_GT] = ACTIONS(4896), + [anon_sym_BANG] = ACTIONS(4896), + [anon_sym_DQUOTE] = ACTIONS(4896), + [anon_sym_POUND] = ACTIONS(4896), + [anon_sym_DOLLAR] = ACTIONS(4896), + [anon_sym_PERCENT] = ACTIONS(4896), + [anon_sym_AMP] = ACTIONS(4898), + [anon_sym_SQUOTE] = ACTIONS(4896), + [anon_sym_STAR] = ACTIONS(4896), + [anon_sym_PLUS] = ACTIONS(4896), + [anon_sym_COMMA] = ACTIONS(4896), + [anon_sym_DASH] = ACTIONS(4898), + [anon_sym_DOT] = ACTIONS(4898), + [anon_sym_SLASH] = ACTIONS(4896), + [anon_sym_COLON] = ACTIONS(4896), + [anon_sym_SEMI] = ACTIONS(4896), + [anon_sym_EQ] = ACTIONS(4896), + [anon_sym_QMARK] = ACTIONS(4896), + [anon_sym_LBRACK] = ACTIONS(4898), + [anon_sym_BSLASH] = ACTIONS(4898), + [anon_sym_CARET] = ACTIONS(4898), + [anon_sym__] = ACTIONS(4896), + [anon_sym_BQUOTE] = ACTIONS(4896), + [anon_sym_LBRACE] = ACTIONS(4896), + [anon_sym_PIPE] = ACTIONS(4896), + [anon_sym_TILDE] = ACTIONS(4896), + [anon_sym_LPAREN] = ACTIONS(4896), + [anon_sym_RPAREN] = ACTIONS(4896), + [sym__newline_token] = ACTIONS(4896), + [aux_sym_insert_token1] = ACTIONS(4896), + [aux_sym_delete_token1] = ACTIONS(4896), + [aux_sym_highlight_token1] = ACTIONS(4896), + [aux_sym_edit_comment_token1] = ACTIONS(4896), + [anon_sym_CARET_LBRACK] = ACTIONS(4896), + [anon_sym_LBRACK_CARET] = ACTIONS(4896), + [sym_uri_autolink] = ACTIONS(4896), + [sym_email_autolink] = ACTIONS(4896), + [sym__whitespace_ge_2] = ACTIONS(4896), + [aux_sym__whitespace_token1] = ACTIONS(4898), + [sym__word_no_digit] = ACTIONS(4896), + [sym__digits] = ACTIONS(4896), + [anon_sym_DASH_DASH] = ACTIONS(4898), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4896), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4896), + [sym__code_span_start] = ACTIONS(4896), + [sym__emphasis_open_star] = ACTIONS(4896), + [sym__emphasis_open_underscore] = ACTIONS(4896), + [sym__strikeout_open] = ACTIONS(4896), + [sym__strikeout_close] = ACTIONS(4896), + [sym__latex_span_start] = ACTIONS(4896), + [sym__single_quote_open] = ACTIONS(4896), + [sym__double_quote_open] = ACTIONS(4896), + [sym__superscript_open] = ACTIONS(4896), + [sym__subscript_open] = ACTIONS(4896), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4896), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4896), + [sym__cite_author_in_text] = ACTIONS(4896), + [sym__cite_suppress_author] = ACTIONS(4896), + [sym__shortcode_open_escaped] = ACTIONS(4896), + [sym__shortcode_open] = ACTIONS(4896), + [sym__unclosed_span] = ACTIONS(4896), + }, + [STATE(871)] = { + [sym__backslash_escape] = ACTIONS(4820), + [sym_entity_reference] = ACTIONS(4820), + [sym_numeric_character_reference] = ACTIONS(4820), + [anon_sym_LT] = ACTIONS(4822), + [anon_sym_GT] = ACTIONS(4820), + [anon_sym_BANG] = ACTIONS(4820), + [anon_sym_DQUOTE] = ACTIONS(4820), + [anon_sym_POUND] = ACTIONS(4820), + [anon_sym_DOLLAR] = ACTIONS(4820), + [anon_sym_PERCENT] = ACTIONS(4820), + [anon_sym_AMP] = ACTIONS(4822), + [anon_sym_SQUOTE] = ACTIONS(4820), + [anon_sym_STAR] = ACTIONS(4820), + [anon_sym_PLUS] = ACTIONS(4820), + [anon_sym_COMMA] = ACTIONS(4820), + [anon_sym_DASH] = ACTIONS(4822), + [anon_sym_DOT] = ACTIONS(4822), + [anon_sym_SLASH] = ACTIONS(4820), + [anon_sym_COLON] = ACTIONS(4820), + [anon_sym_SEMI] = ACTIONS(4820), + [anon_sym_EQ] = ACTIONS(4820), + [anon_sym_QMARK] = ACTIONS(4820), + [anon_sym_LBRACK] = ACTIONS(4822), + [anon_sym_BSLASH] = ACTIONS(4822), + [anon_sym_CARET] = ACTIONS(4822), + [anon_sym__] = ACTIONS(4820), + [anon_sym_BQUOTE] = ACTIONS(4820), + [anon_sym_LBRACE] = ACTIONS(4820), + [anon_sym_PIPE] = ACTIONS(4820), + [anon_sym_TILDE] = ACTIONS(4820), + [anon_sym_LPAREN] = ACTIONS(4820), + [anon_sym_RPAREN] = ACTIONS(4820), + [sym__newline_token] = ACTIONS(4820), + [aux_sym_insert_token1] = ACTIONS(4820), + [aux_sym_delete_token1] = ACTIONS(4820), + [aux_sym_highlight_token1] = ACTIONS(4820), + [aux_sym_edit_comment_token1] = ACTIONS(4820), + [anon_sym_CARET_LBRACK] = ACTIONS(4820), + [anon_sym_LBRACK_CARET] = ACTIONS(4820), + [sym_uri_autolink] = ACTIONS(4820), + [sym_email_autolink] = ACTIONS(4820), + [sym__whitespace_ge_2] = ACTIONS(4820), + [aux_sym__whitespace_token1] = ACTIONS(4822), + [sym__word_no_digit] = ACTIONS(4820), + [sym__digits] = ACTIONS(4820), + [anon_sym_DASH_DASH] = ACTIONS(4822), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4820), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4820), + [sym__code_span_start] = ACTIONS(4820), + [sym__emphasis_open_star] = ACTIONS(4820), + [sym__emphasis_open_underscore] = ACTIONS(4820), + [sym__strikeout_open] = ACTIONS(4820), + [sym__latex_span_start] = ACTIONS(4820), + [sym__single_quote_open] = ACTIONS(4820), + [sym__double_quote_open] = ACTIONS(4820), + [sym__superscript_open] = ACTIONS(4820), + [sym__subscript_open] = ACTIONS(4820), + [sym__subscript_close] = ACTIONS(4820), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4820), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4820), + [sym__cite_author_in_text] = ACTIONS(4820), + [sym__cite_suppress_author] = ACTIONS(4820), + [sym__shortcode_open_escaped] = ACTIONS(4820), + [sym__shortcode_open] = ACTIONS(4820), + [sym__unclosed_span] = ACTIONS(4820), + }, + [STATE(872)] = { + [sym__backslash_escape] = ACTIONS(4824), + [sym_entity_reference] = ACTIONS(4824), + [sym_numeric_character_reference] = ACTIONS(4824), + [anon_sym_LT] = ACTIONS(4826), + [anon_sym_GT] = ACTIONS(4824), + [anon_sym_BANG] = ACTIONS(4824), + [anon_sym_DQUOTE] = ACTIONS(4824), + [anon_sym_POUND] = ACTIONS(4824), + [anon_sym_DOLLAR] = ACTIONS(4824), + [anon_sym_PERCENT] = ACTIONS(4824), + [anon_sym_AMP] = ACTIONS(4826), + [anon_sym_SQUOTE] = ACTIONS(4824), + [anon_sym_STAR] = ACTIONS(4824), + [anon_sym_PLUS] = ACTIONS(4824), + [anon_sym_COMMA] = ACTIONS(4824), + [anon_sym_DASH] = ACTIONS(4826), + [anon_sym_DOT] = ACTIONS(4826), + [anon_sym_SLASH] = ACTIONS(4824), + [anon_sym_COLON] = ACTIONS(4824), + [anon_sym_SEMI] = ACTIONS(4824), + [anon_sym_EQ] = ACTIONS(4824), + [anon_sym_QMARK] = ACTIONS(4824), + [anon_sym_LBRACK] = ACTIONS(4826), + [anon_sym_BSLASH] = ACTIONS(4826), + [anon_sym_CARET] = ACTIONS(4826), + [anon_sym__] = ACTIONS(4824), + [anon_sym_BQUOTE] = ACTIONS(4824), + [anon_sym_LBRACE] = ACTIONS(4824), + [anon_sym_PIPE] = ACTIONS(4824), + [anon_sym_TILDE] = ACTIONS(4824), + [anon_sym_LPAREN] = ACTIONS(4824), + [anon_sym_RPAREN] = ACTIONS(4824), + [sym__newline_token] = ACTIONS(4824), + [aux_sym_insert_token1] = ACTIONS(4824), + [aux_sym_delete_token1] = ACTIONS(4824), + [aux_sym_highlight_token1] = ACTIONS(4824), + [aux_sym_edit_comment_token1] = ACTIONS(4824), + [anon_sym_CARET_LBRACK] = ACTIONS(4824), + [anon_sym_LBRACK_CARET] = ACTIONS(4824), + [sym_uri_autolink] = ACTIONS(4824), + [sym_email_autolink] = ACTIONS(4824), + [sym__whitespace_ge_2] = ACTIONS(4824), + [aux_sym__whitespace_token1] = ACTIONS(4826), + [sym__word_no_digit] = ACTIONS(4824), + [sym__digits] = ACTIONS(4824), + [anon_sym_DASH_DASH] = ACTIONS(4826), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4824), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4824), + [sym__code_span_start] = ACTIONS(4824), + [sym__emphasis_open_star] = ACTIONS(4824), + [sym__emphasis_open_underscore] = ACTIONS(4824), + [sym__strikeout_open] = ACTIONS(4824), + [sym__latex_span_start] = ACTIONS(4824), + [sym__single_quote_open] = ACTIONS(4824), + [sym__double_quote_open] = ACTIONS(4824), + [sym__superscript_open] = ACTIONS(4824), + [sym__subscript_open] = ACTIONS(4824), + [sym__subscript_close] = ACTIONS(4824), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4824), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4824), + [sym__cite_author_in_text] = ACTIONS(4824), + [sym__cite_suppress_author] = ACTIONS(4824), + [sym__shortcode_open_escaped] = ACTIONS(4824), + [sym__shortcode_open] = ACTIONS(4824), + [sym__unclosed_span] = ACTIONS(4824), + }, + [STATE(873)] = { + [sym__backslash_escape] = ACTIONS(4828), + [sym_entity_reference] = ACTIONS(4828), + [sym_numeric_character_reference] = ACTIONS(4828), + [anon_sym_LT] = ACTIONS(4830), + [anon_sym_GT] = ACTIONS(4828), + [anon_sym_BANG] = ACTIONS(4828), + [anon_sym_DQUOTE] = ACTIONS(4828), + [anon_sym_POUND] = ACTIONS(4828), + [anon_sym_DOLLAR] = ACTIONS(4828), + [anon_sym_PERCENT] = ACTIONS(4828), + [anon_sym_AMP] = ACTIONS(4830), + [anon_sym_SQUOTE] = ACTIONS(4828), + [anon_sym_STAR] = ACTIONS(4828), + [anon_sym_PLUS] = ACTIONS(4828), + [anon_sym_COMMA] = ACTIONS(4828), + [anon_sym_DASH] = ACTIONS(4830), + [anon_sym_DOT] = ACTIONS(4830), + [anon_sym_SLASH] = ACTIONS(4828), + [anon_sym_COLON] = ACTIONS(4828), + [anon_sym_SEMI] = ACTIONS(4828), + [anon_sym_EQ] = ACTIONS(4828), + [anon_sym_QMARK] = ACTIONS(4828), + [anon_sym_LBRACK] = ACTIONS(4830), + [anon_sym_BSLASH] = ACTIONS(4830), + [anon_sym_CARET] = ACTIONS(4830), + [anon_sym__] = ACTIONS(4828), + [anon_sym_BQUOTE] = ACTIONS(4828), + [anon_sym_LBRACE] = ACTIONS(4828), + [anon_sym_PIPE] = ACTIONS(4828), + [anon_sym_TILDE] = ACTIONS(4828), + [anon_sym_LPAREN] = ACTIONS(4828), + [anon_sym_RPAREN] = ACTIONS(4828), + [sym__newline_token] = ACTIONS(4828), + [aux_sym_insert_token1] = ACTIONS(4828), + [aux_sym_delete_token1] = ACTIONS(4828), + [aux_sym_highlight_token1] = ACTIONS(4828), + [aux_sym_edit_comment_token1] = ACTIONS(4828), + [anon_sym_CARET_LBRACK] = ACTIONS(4828), + [anon_sym_LBRACK_CARET] = ACTIONS(4828), + [sym_uri_autolink] = ACTIONS(4828), + [sym_email_autolink] = ACTIONS(4828), + [sym__whitespace_ge_2] = ACTIONS(4828), + [aux_sym__whitespace_token1] = ACTIONS(4830), + [sym__word_no_digit] = ACTIONS(4828), + [sym__digits] = ACTIONS(4828), + [anon_sym_DASH_DASH] = ACTIONS(4830), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4828), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4828), + [sym__code_span_start] = ACTIONS(4828), + [sym__emphasis_open_star] = ACTIONS(4828), + [sym__emphasis_open_underscore] = ACTIONS(4828), + [sym__strikeout_open] = ACTIONS(4828), + [sym__latex_span_start] = ACTIONS(4828), + [sym__single_quote_open] = ACTIONS(4828), + [sym__double_quote_open] = ACTIONS(4828), + [sym__superscript_open] = ACTIONS(4828), + [sym__subscript_open] = ACTIONS(4828), + [sym__subscript_close] = ACTIONS(4828), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4828), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4828), + [sym__cite_author_in_text] = ACTIONS(4828), + [sym__cite_suppress_author] = ACTIONS(4828), + [sym__shortcode_open_escaped] = ACTIONS(4828), + [sym__shortcode_open] = ACTIONS(4828), + [sym__unclosed_span] = ACTIONS(4828), + }, + [STATE(874)] = { + [sym__backslash_escape] = ACTIONS(4832), + [sym_entity_reference] = ACTIONS(4832), + [sym_numeric_character_reference] = ACTIONS(4832), + [anon_sym_LT] = ACTIONS(4834), + [anon_sym_GT] = ACTIONS(4832), + [anon_sym_BANG] = ACTIONS(4832), + [anon_sym_DQUOTE] = ACTIONS(4832), + [anon_sym_POUND] = ACTIONS(4832), + [anon_sym_DOLLAR] = ACTIONS(4832), + [anon_sym_PERCENT] = ACTIONS(4832), + [anon_sym_AMP] = ACTIONS(4834), + [anon_sym_SQUOTE] = ACTIONS(4832), + [anon_sym_STAR] = ACTIONS(4832), + [anon_sym_PLUS] = ACTIONS(4832), + [anon_sym_COMMA] = ACTIONS(4832), + [anon_sym_DASH] = ACTIONS(4834), + [anon_sym_DOT] = ACTIONS(4834), + [anon_sym_SLASH] = ACTIONS(4832), + [anon_sym_COLON] = ACTIONS(4832), + [anon_sym_SEMI] = ACTIONS(4832), + [anon_sym_EQ] = ACTIONS(4832), + [anon_sym_QMARK] = ACTIONS(4832), + [anon_sym_LBRACK] = ACTIONS(4834), + [anon_sym_BSLASH] = ACTIONS(4834), + [anon_sym_CARET] = ACTIONS(4834), + [anon_sym__] = ACTIONS(4832), + [anon_sym_BQUOTE] = ACTIONS(4832), + [anon_sym_LBRACE] = ACTIONS(4832), + [anon_sym_PIPE] = ACTIONS(4832), + [anon_sym_TILDE] = ACTIONS(4832), + [anon_sym_LPAREN] = ACTIONS(4832), + [anon_sym_RPAREN] = ACTIONS(4832), + [sym__newline_token] = ACTIONS(4832), + [aux_sym_insert_token1] = ACTIONS(4832), + [aux_sym_delete_token1] = ACTIONS(4832), + [aux_sym_highlight_token1] = ACTIONS(4832), + [aux_sym_edit_comment_token1] = ACTIONS(4832), + [anon_sym_CARET_LBRACK] = ACTIONS(4832), + [anon_sym_LBRACK_CARET] = ACTIONS(4832), + [sym_uri_autolink] = ACTIONS(4832), + [sym_email_autolink] = ACTIONS(4832), + [sym__whitespace_ge_2] = ACTIONS(4832), + [aux_sym__whitespace_token1] = ACTIONS(4834), + [sym__word_no_digit] = ACTIONS(4832), + [sym__digits] = ACTIONS(4832), + [anon_sym_DASH_DASH] = ACTIONS(4834), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4832), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4832), + [sym__code_span_start] = ACTIONS(4832), + [sym__emphasis_open_star] = ACTIONS(4832), + [sym__emphasis_open_underscore] = ACTIONS(4832), + [sym__strikeout_open] = ACTIONS(4832), + [sym__latex_span_start] = ACTIONS(4832), + [sym__single_quote_open] = ACTIONS(4832), + [sym__double_quote_open] = ACTIONS(4832), + [sym__superscript_open] = ACTIONS(4832), + [sym__subscript_open] = ACTIONS(4832), + [sym__subscript_close] = ACTIONS(4832), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4832), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4832), + [sym__cite_author_in_text] = ACTIONS(4832), + [sym__cite_suppress_author] = ACTIONS(4832), + [sym__shortcode_open_escaped] = ACTIONS(4832), + [sym__shortcode_open] = ACTIONS(4832), + [sym__unclosed_span] = ACTIONS(4832), + }, + [STATE(875)] = { + [sym__backslash_escape] = ACTIONS(4836), + [sym_entity_reference] = ACTIONS(4836), + [sym_numeric_character_reference] = ACTIONS(4836), + [anon_sym_LT] = ACTIONS(4838), + [anon_sym_GT] = ACTIONS(4836), + [anon_sym_BANG] = ACTIONS(4836), + [anon_sym_DQUOTE] = ACTIONS(4836), + [anon_sym_POUND] = ACTIONS(4836), + [anon_sym_DOLLAR] = ACTIONS(4836), + [anon_sym_PERCENT] = ACTIONS(4836), + [anon_sym_AMP] = ACTIONS(4838), + [anon_sym_SQUOTE] = ACTIONS(4836), + [anon_sym_STAR] = ACTIONS(4836), + [anon_sym_PLUS] = ACTIONS(4836), + [anon_sym_COMMA] = ACTIONS(4836), + [anon_sym_DASH] = ACTIONS(4838), + [anon_sym_DOT] = ACTIONS(4838), + [anon_sym_SLASH] = ACTIONS(4836), + [anon_sym_COLON] = ACTIONS(4836), + [anon_sym_SEMI] = ACTIONS(4836), + [anon_sym_EQ] = ACTIONS(4836), + [anon_sym_QMARK] = ACTIONS(4836), + [anon_sym_LBRACK] = ACTIONS(4838), + [anon_sym_BSLASH] = ACTIONS(4838), + [anon_sym_CARET] = ACTIONS(4838), + [anon_sym__] = ACTIONS(4836), + [anon_sym_BQUOTE] = ACTIONS(4836), + [anon_sym_LBRACE] = ACTIONS(4836), + [anon_sym_PIPE] = ACTIONS(4836), + [anon_sym_TILDE] = ACTIONS(4836), + [anon_sym_LPAREN] = ACTIONS(4836), + [anon_sym_RPAREN] = ACTIONS(4836), + [sym__newline_token] = ACTIONS(4836), + [aux_sym_insert_token1] = ACTIONS(4836), + [aux_sym_delete_token1] = ACTIONS(4836), + [aux_sym_highlight_token1] = ACTIONS(4836), + [aux_sym_edit_comment_token1] = ACTIONS(4836), + [anon_sym_CARET_LBRACK] = ACTIONS(4836), + [anon_sym_LBRACK_CARET] = ACTIONS(4836), + [sym_uri_autolink] = ACTIONS(4836), + [sym_email_autolink] = ACTIONS(4836), + [sym__whitespace_ge_2] = ACTIONS(4836), + [aux_sym__whitespace_token1] = ACTIONS(4838), + [sym__word_no_digit] = ACTIONS(4836), + [sym__digits] = ACTIONS(4836), + [anon_sym_DASH_DASH] = ACTIONS(4838), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4836), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4836), + [sym__code_span_start] = ACTIONS(4836), + [sym__emphasis_open_star] = ACTIONS(4836), + [sym__emphasis_open_underscore] = ACTIONS(4836), + [sym__strikeout_open] = ACTIONS(4836), + [sym__latex_span_start] = ACTIONS(4836), + [sym__single_quote_open] = ACTIONS(4836), + [sym__double_quote_open] = ACTIONS(4836), + [sym__superscript_open] = ACTIONS(4836), + [sym__subscript_open] = ACTIONS(4836), + [sym__subscript_close] = ACTIONS(4836), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4836), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4836), + [sym__cite_author_in_text] = ACTIONS(4836), + [sym__cite_suppress_author] = ACTIONS(4836), + [sym__shortcode_open_escaped] = ACTIONS(4836), + [sym__shortcode_open] = ACTIONS(4836), + [sym__unclosed_span] = ACTIONS(4836), + }, + [STATE(876)] = { + [sym__backslash_escape] = ACTIONS(4534), + [sym_entity_reference] = ACTIONS(4534), + [sym_numeric_character_reference] = ACTIONS(4534), + [anon_sym_LT] = ACTIONS(4536), + [anon_sym_GT] = ACTIONS(4534), + [anon_sym_BANG] = ACTIONS(4534), + [anon_sym_DQUOTE] = ACTIONS(4534), + [anon_sym_POUND] = ACTIONS(4534), + [anon_sym_DOLLAR] = ACTIONS(4534), + [anon_sym_PERCENT] = ACTIONS(4534), + [anon_sym_AMP] = ACTIONS(4536), + [anon_sym_SQUOTE] = ACTIONS(4534), + [anon_sym_STAR] = ACTIONS(4534), + [anon_sym_PLUS] = ACTIONS(4534), + [anon_sym_COMMA] = ACTIONS(4534), + [anon_sym_DASH] = ACTIONS(4536), + [anon_sym_DOT] = ACTIONS(4536), + [anon_sym_SLASH] = ACTIONS(4534), + [anon_sym_COLON] = ACTIONS(4534), + [anon_sym_SEMI] = ACTIONS(4534), + [anon_sym_EQ] = ACTIONS(4534), + [anon_sym_QMARK] = ACTIONS(4534), + [anon_sym_LBRACK] = ACTIONS(4536), + [anon_sym_BSLASH] = ACTIONS(4536), + [anon_sym_CARET] = ACTIONS(4536), + [anon_sym__] = ACTIONS(4534), + [anon_sym_BQUOTE] = ACTIONS(4534), + [anon_sym_LBRACE] = ACTIONS(4534), + [anon_sym_PIPE] = ACTIONS(4534), + [anon_sym_TILDE] = ACTIONS(4534), + [anon_sym_LPAREN] = ACTIONS(4534), + [anon_sym_RPAREN] = ACTIONS(4534), + [sym__newline_token] = ACTIONS(4534), + [aux_sym_insert_token1] = ACTIONS(4534), + [aux_sym_delete_token1] = ACTIONS(4534), + [aux_sym_highlight_token1] = ACTIONS(4534), + [aux_sym_edit_comment_token1] = ACTIONS(4534), + [anon_sym_CARET_LBRACK] = ACTIONS(4534), + [anon_sym_LBRACK_CARET] = ACTIONS(4534), + [sym_uri_autolink] = ACTIONS(4534), + [sym_email_autolink] = ACTIONS(4534), + [sym__whitespace_ge_2] = ACTIONS(4534), + [aux_sym__whitespace_token1] = ACTIONS(4536), + [sym__word_no_digit] = ACTIONS(4534), + [sym__digits] = ACTIONS(4534), + [anon_sym_DASH_DASH] = ACTIONS(4536), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4534), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4534), + [sym__code_span_start] = ACTIONS(4534), + [sym__emphasis_open_star] = ACTIONS(4534), + [sym__emphasis_open_underscore] = ACTIONS(4534), + [sym__strikeout_open] = ACTIONS(4534), + [sym__strikeout_close] = ACTIONS(4534), + [sym__latex_span_start] = ACTIONS(4534), + [sym__single_quote_open] = ACTIONS(4534), + [sym__double_quote_open] = ACTIONS(4534), + [sym__superscript_open] = ACTIONS(4534), + [sym__subscript_open] = ACTIONS(4534), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4534), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4534), + [sym__cite_author_in_text] = ACTIONS(4534), + [sym__cite_suppress_author] = ACTIONS(4534), + [sym__shortcode_open_escaped] = ACTIONS(4534), + [sym__shortcode_open] = ACTIONS(4534), + [sym__unclosed_span] = ACTIONS(4534), + }, + [STATE(877)] = { + [sym__backslash_escape] = ACTIONS(4844), + [sym_entity_reference] = ACTIONS(4844), + [sym_numeric_character_reference] = ACTIONS(4844), + [anon_sym_LT] = ACTIONS(4846), + [anon_sym_GT] = ACTIONS(4844), + [anon_sym_BANG] = ACTIONS(4844), + [anon_sym_DQUOTE] = ACTIONS(4844), + [anon_sym_POUND] = ACTIONS(4844), + [anon_sym_DOLLAR] = ACTIONS(4844), + [anon_sym_PERCENT] = ACTIONS(4844), + [anon_sym_AMP] = ACTIONS(4846), + [anon_sym_SQUOTE] = ACTIONS(4844), + [anon_sym_STAR] = ACTIONS(4844), + [anon_sym_PLUS] = ACTIONS(4844), + [anon_sym_COMMA] = ACTIONS(4844), + [anon_sym_DASH] = ACTIONS(4846), + [anon_sym_DOT] = ACTIONS(4846), + [anon_sym_SLASH] = ACTIONS(4844), + [anon_sym_COLON] = ACTIONS(4844), + [anon_sym_SEMI] = ACTIONS(4844), + [anon_sym_EQ] = ACTIONS(4844), + [anon_sym_QMARK] = ACTIONS(4844), + [anon_sym_LBRACK] = ACTIONS(4846), + [anon_sym_BSLASH] = ACTIONS(4846), + [anon_sym_CARET] = ACTIONS(4846), + [anon_sym__] = ACTIONS(4844), + [anon_sym_BQUOTE] = ACTIONS(4844), + [anon_sym_LBRACE] = ACTIONS(4844), + [anon_sym_PIPE] = ACTIONS(4844), + [anon_sym_TILDE] = ACTIONS(4844), + [anon_sym_LPAREN] = ACTIONS(4844), + [anon_sym_RPAREN] = ACTIONS(4844), + [sym__newline_token] = ACTIONS(4844), + [aux_sym_insert_token1] = ACTIONS(4844), + [aux_sym_delete_token1] = ACTIONS(4844), + [aux_sym_highlight_token1] = ACTIONS(4844), + [aux_sym_edit_comment_token1] = ACTIONS(4844), + [anon_sym_CARET_LBRACK] = ACTIONS(4844), + [anon_sym_LBRACK_CARET] = ACTIONS(4844), + [sym_uri_autolink] = ACTIONS(4844), + [sym_email_autolink] = ACTIONS(4844), + [sym__whitespace_ge_2] = ACTIONS(4844), + [aux_sym__whitespace_token1] = ACTIONS(4846), + [sym__word_no_digit] = ACTIONS(4844), + [sym__digits] = ACTIONS(4844), + [anon_sym_DASH_DASH] = ACTIONS(4846), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4844), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4844), + [sym__code_span_start] = ACTIONS(4844), + [sym__emphasis_open_star] = ACTIONS(4844), + [sym__emphasis_open_underscore] = ACTIONS(4844), + [sym__strikeout_open] = ACTIONS(4844), + [sym__latex_span_start] = ACTIONS(4844), + [sym__single_quote_open] = ACTIONS(4844), + [sym__double_quote_open] = ACTIONS(4844), + [sym__superscript_open] = ACTIONS(4844), + [sym__subscript_open] = ACTIONS(4844), + [sym__subscript_close] = ACTIONS(4844), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4844), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4844), + [sym__cite_author_in_text] = ACTIONS(4844), + [sym__cite_suppress_author] = ACTIONS(4844), + [sym__shortcode_open_escaped] = ACTIONS(4844), + [sym__shortcode_open] = ACTIONS(4844), + [sym__unclosed_span] = ACTIONS(4844), + }, + [STATE(878)] = { + [sym__backslash_escape] = ACTIONS(4848), + [sym_entity_reference] = ACTIONS(4848), + [sym_numeric_character_reference] = ACTIONS(4848), + [anon_sym_LT] = ACTIONS(4850), + [anon_sym_GT] = ACTIONS(4848), + [anon_sym_BANG] = ACTIONS(4848), + [anon_sym_DQUOTE] = ACTIONS(4848), + [anon_sym_POUND] = ACTIONS(4848), + [anon_sym_DOLLAR] = ACTIONS(4848), + [anon_sym_PERCENT] = ACTIONS(4848), + [anon_sym_AMP] = ACTIONS(4850), + [anon_sym_SQUOTE] = ACTIONS(4848), + [anon_sym_STAR] = ACTIONS(4848), + [anon_sym_PLUS] = ACTIONS(4848), + [anon_sym_COMMA] = ACTIONS(4848), + [anon_sym_DASH] = ACTIONS(4850), + [anon_sym_DOT] = ACTIONS(4850), + [anon_sym_SLASH] = ACTIONS(4848), + [anon_sym_COLON] = ACTIONS(4848), + [anon_sym_SEMI] = ACTIONS(4848), + [anon_sym_EQ] = ACTIONS(4848), + [anon_sym_QMARK] = ACTIONS(4848), + [anon_sym_LBRACK] = ACTIONS(4850), + [anon_sym_BSLASH] = ACTIONS(4850), + [anon_sym_CARET] = ACTIONS(4850), + [anon_sym__] = ACTIONS(4848), + [anon_sym_BQUOTE] = ACTIONS(4848), + [anon_sym_LBRACE] = ACTIONS(4848), + [anon_sym_PIPE] = ACTIONS(4848), + [anon_sym_TILDE] = ACTIONS(4848), + [anon_sym_LPAREN] = ACTIONS(4848), + [anon_sym_RPAREN] = ACTIONS(4848), + [sym__newline_token] = ACTIONS(4848), + [aux_sym_insert_token1] = ACTIONS(4848), + [aux_sym_delete_token1] = ACTIONS(4848), + [aux_sym_highlight_token1] = ACTIONS(4848), + [aux_sym_edit_comment_token1] = ACTIONS(4848), + [anon_sym_CARET_LBRACK] = ACTIONS(4848), + [anon_sym_LBRACK_CARET] = ACTIONS(4848), + [sym_uri_autolink] = ACTIONS(4848), + [sym_email_autolink] = ACTIONS(4848), + [sym__whitespace_ge_2] = ACTIONS(4848), + [aux_sym__whitespace_token1] = ACTIONS(4850), + [sym__word_no_digit] = ACTIONS(4848), + [sym__digits] = ACTIONS(4848), + [anon_sym_DASH_DASH] = ACTIONS(4850), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4848), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4848), + [sym__code_span_start] = ACTIONS(4848), + [sym__emphasis_open_star] = ACTIONS(4848), + [sym__emphasis_open_underscore] = ACTIONS(4848), + [sym__strikeout_open] = ACTIONS(4848), + [sym__latex_span_start] = ACTIONS(4848), + [sym__single_quote_open] = ACTIONS(4848), + [sym__double_quote_open] = ACTIONS(4848), + [sym__superscript_open] = ACTIONS(4848), + [sym__subscript_open] = ACTIONS(4848), + [sym__subscript_close] = ACTIONS(4848), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4848), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4848), + [sym__cite_author_in_text] = ACTIONS(4848), + [sym__cite_suppress_author] = ACTIONS(4848), + [sym__shortcode_open_escaped] = ACTIONS(4848), + [sym__shortcode_open] = ACTIONS(4848), + [sym__unclosed_span] = ACTIONS(4848), + }, + [STATE(879)] = { + [sym__backslash_escape] = ACTIONS(4852), + [sym_entity_reference] = ACTIONS(4852), + [sym_numeric_character_reference] = ACTIONS(4852), + [anon_sym_LT] = ACTIONS(4854), + [anon_sym_GT] = ACTIONS(4852), + [anon_sym_BANG] = ACTIONS(4852), + [anon_sym_DQUOTE] = ACTIONS(4852), + [anon_sym_POUND] = ACTIONS(4852), + [anon_sym_DOLLAR] = ACTIONS(4852), + [anon_sym_PERCENT] = ACTIONS(4852), + [anon_sym_AMP] = ACTIONS(4854), + [anon_sym_SQUOTE] = ACTIONS(4852), + [anon_sym_STAR] = ACTIONS(4852), + [anon_sym_PLUS] = ACTIONS(4852), + [anon_sym_COMMA] = ACTIONS(4852), + [anon_sym_DASH] = ACTIONS(4854), + [anon_sym_DOT] = ACTIONS(4854), + [anon_sym_SLASH] = ACTIONS(4852), + [anon_sym_COLON] = ACTIONS(4852), + [anon_sym_SEMI] = ACTIONS(4852), + [anon_sym_EQ] = ACTIONS(4852), + [anon_sym_QMARK] = ACTIONS(4852), + [anon_sym_LBRACK] = ACTIONS(4854), + [anon_sym_BSLASH] = ACTIONS(4854), + [anon_sym_CARET] = ACTIONS(4854), + [anon_sym__] = ACTIONS(4852), + [anon_sym_BQUOTE] = ACTIONS(4852), + [anon_sym_LBRACE] = ACTIONS(4852), + [anon_sym_PIPE] = ACTIONS(4852), + [anon_sym_TILDE] = ACTIONS(4852), + [anon_sym_LPAREN] = ACTIONS(4852), + [anon_sym_RPAREN] = ACTIONS(4852), + [sym__newline_token] = ACTIONS(4852), + [aux_sym_insert_token1] = ACTIONS(4852), + [aux_sym_delete_token1] = ACTIONS(4852), + [aux_sym_highlight_token1] = ACTIONS(4852), + [aux_sym_edit_comment_token1] = ACTIONS(4852), + [anon_sym_CARET_LBRACK] = ACTIONS(4852), + [anon_sym_LBRACK_CARET] = ACTIONS(4852), + [sym_uri_autolink] = ACTIONS(4852), + [sym_email_autolink] = ACTIONS(4852), + [sym__whitespace_ge_2] = ACTIONS(4852), + [aux_sym__whitespace_token1] = ACTIONS(4854), + [sym__word_no_digit] = ACTIONS(4852), + [sym__digits] = ACTIONS(4852), + [anon_sym_DASH_DASH] = ACTIONS(4854), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4852), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4852), + [sym__code_span_start] = ACTIONS(4852), + [sym__emphasis_open_star] = ACTIONS(4852), + [sym__emphasis_open_underscore] = ACTIONS(4852), + [sym__strikeout_open] = ACTIONS(4852), + [sym__latex_span_start] = ACTIONS(4852), + [sym__single_quote_open] = ACTIONS(4852), + [sym__double_quote_open] = ACTIONS(4852), + [sym__superscript_open] = ACTIONS(4852), + [sym__subscript_open] = ACTIONS(4852), + [sym__subscript_close] = ACTIONS(4852), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4852), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4852), + [sym__cite_author_in_text] = ACTIONS(4852), + [sym__cite_suppress_author] = ACTIONS(4852), + [sym__shortcode_open_escaped] = ACTIONS(4852), + [sym__shortcode_open] = ACTIONS(4852), + [sym__unclosed_span] = ACTIONS(4852), + }, + [STATE(880)] = { + [sym__backslash_escape] = ACTIONS(4566), + [sym_entity_reference] = ACTIONS(4566), + [sym_numeric_character_reference] = ACTIONS(4566), + [anon_sym_LT] = ACTIONS(4568), + [anon_sym_GT] = ACTIONS(4566), + [anon_sym_BANG] = ACTIONS(4566), + [anon_sym_DQUOTE] = ACTIONS(4566), + [anon_sym_POUND] = ACTIONS(4566), + [anon_sym_DOLLAR] = ACTIONS(4566), + [anon_sym_PERCENT] = ACTIONS(4566), + [anon_sym_AMP] = ACTIONS(4568), + [anon_sym_SQUOTE] = ACTIONS(4566), + [anon_sym_STAR] = ACTIONS(4566), + [anon_sym_PLUS] = ACTIONS(4566), + [anon_sym_COMMA] = ACTIONS(4566), + [anon_sym_DASH] = ACTIONS(4568), + [anon_sym_DOT] = ACTIONS(4568), + [anon_sym_SLASH] = ACTIONS(4566), + [anon_sym_COLON] = ACTIONS(4566), + [anon_sym_SEMI] = ACTIONS(4566), + [anon_sym_EQ] = ACTIONS(4566), + [anon_sym_QMARK] = ACTIONS(4566), + [anon_sym_LBRACK] = ACTIONS(4568), + [anon_sym_BSLASH] = ACTIONS(4568), + [anon_sym_CARET] = ACTIONS(4568), + [anon_sym__] = ACTIONS(4566), + [anon_sym_BQUOTE] = ACTIONS(4566), + [anon_sym_LBRACE] = ACTIONS(4566), + [anon_sym_PIPE] = ACTIONS(4566), + [anon_sym_TILDE] = ACTIONS(4566), + [anon_sym_LPAREN] = ACTIONS(4566), + [anon_sym_RPAREN] = ACTIONS(4566), + [sym__newline_token] = ACTIONS(4566), + [aux_sym_insert_token1] = ACTIONS(4566), + [aux_sym_delete_token1] = ACTIONS(4566), + [aux_sym_highlight_token1] = ACTIONS(4566), + [aux_sym_edit_comment_token1] = ACTIONS(4566), + [anon_sym_CARET_LBRACK] = ACTIONS(4566), + [anon_sym_LBRACK_CARET] = ACTIONS(4566), + [sym_uri_autolink] = ACTIONS(4566), + [sym_email_autolink] = ACTIONS(4566), + [sym__whitespace_ge_2] = ACTIONS(4566), + [aux_sym__whitespace_token1] = ACTIONS(4568), + [sym__word_no_digit] = ACTIONS(4566), + [sym__digits] = ACTIONS(4566), + [anon_sym_DASH_DASH] = ACTIONS(4568), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4566), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4566), + [sym__code_span_start] = ACTIONS(4566), + [sym__emphasis_open_star] = ACTIONS(4566), + [sym__emphasis_open_underscore] = ACTIONS(4566), + [sym__strikeout_open] = ACTIONS(4566), + [sym__latex_span_start] = ACTIONS(4566), + [sym__single_quote_open] = ACTIONS(4566), + [sym__double_quote_open] = ACTIONS(4566), + [sym__superscript_open] = ACTIONS(4566), + [sym__subscript_open] = ACTIONS(4566), + [sym__subscript_close] = ACTIONS(4566), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4566), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4566), + [sym__cite_author_in_text] = ACTIONS(4566), + [sym__cite_suppress_author] = ACTIONS(4566), + [sym__shortcode_open_escaped] = ACTIONS(4566), + [sym__shortcode_open] = ACTIONS(4566), + [sym__unclosed_span] = ACTIONS(4566), + }, + [STATE(881)] = { + [sym__backslash_escape] = ACTIONS(4988), + [sym_entity_reference] = ACTIONS(4988), + [sym_numeric_character_reference] = ACTIONS(4988), + [anon_sym_LT] = ACTIONS(4990), + [anon_sym_GT] = ACTIONS(4988), + [anon_sym_BANG] = ACTIONS(4988), + [anon_sym_DQUOTE] = ACTIONS(4988), + [anon_sym_POUND] = ACTIONS(4988), + [anon_sym_DOLLAR] = ACTIONS(4988), + [anon_sym_PERCENT] = ACTIONS(4988), + [anon_sym_AMP] = ACTIONS(4990), + [anon_sym_SQUOTE] = ACTIONS(4988), + [anon_sym_STAR] = ACTIONS(4988), + [anon_sym_PLUS] = ACTIONS(4988), + [anon_sym_COMMA] = ACTIONS(4988), + [anon_sym_DASH] = ACTIONS(4990), + [anon_sym_DOT] = ACTIONS(4990), + [anon_sym_SLASH] = ACTIONS(4988), + [anon_sym_COLON] = ACTIONS(4988), + [anon_sym_SEMI] = ACTIONS(4988), + [anon_sym_EQ] = ACTIONS(4988), + [anon_sym_QMARK] = ACTIONS(4988), + [anon_sym_LBRACK] = ACTIONS(4990), + [anon_sym_BSLASH] = ACTIONS(4990), + [anon_sym_CARET] = ACTIONS(4990), + [anon_sym__] = ACTIONS(4988), + [anon_sym_BQUOTE] = ACTIONS(4988), + [anon_sym_LBRACE] = ACTIONS(4988), + [anon_sym_PIPE] = ACTIONS(4988), + [anon_sym_TILDE] = ACTIONS(4988), + [anon_sym_LPAREN] = ACTIONS(4988), + [anon_sym_RPAREN] = ACTIONS(4988), + [sym__newline_token] = ACTIONS(4988), + [aux_sym_insert_token1] = ACTIONS(4988), + [aux_sym_delete_token1] = ACTIONS(4988), + [aux_sym_highlight_token1] = ACTIONS(4988), + [aux_sym_edit_comment_token1] = ACTIONS(4988), + [anon_sym_CARET_LBRACK] = ACTIONS(4988), + [anon_sym_LBRACK_CARET] = ACTIONS(4988), + [sym_uri_autolink] = ACTIONS(4988), + [sym_email_autolink] = ACTIONS(4988), + [sym__whitespace_ge_2] = ACTIONS(4988), + [aux_sym__whitespace_token1] = ACTIONS(4990), + [sym__word_no_digit] = ACTIONS(4988), + [sym__digits] = ACTIONS(4988), + [anon_sym_DASH_DASH] = ACTIONS(4990), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4988), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4988), + [sym__code_span_start] = ACTIONS(4988), + [sym__emphasis_open_star] = ACTIONS(4988), + [sym__emphasis_open_underscore] = ACTIONS(4988), + [sym__emphasis_close_underscore] = ACTIONS(4988), + [sym__strikeout_open] = ACTIONS(4988), + [sym__latex_span_start] = ACTIONS(4988), + [sym__single_quote_open] = ACTIONS(4988), + [sym__double_quote_open] = ACTIONS(4988), + [sym__superscript_open] = ACTIONS(4988), + [sym__subscript_open] = ACTIONS(4988), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4988), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4988), + [sym__cite_author_in_text] = ACTIONS(4988), + [sym__cite_suppress_author] = ACTIONS(4988), + [sym__shortcode_open_escaped] = ACTIONS(4988), + [sym__shortcode_open] = ACTIONS(4988), + [sym__unclosed_span] = ACTIONS(4988), + }, + [STATE(882)] = { + [sym__backslash_escape] = ACTIONS(4572), + [sym_entity_reference] = ACTIONS(4572), + [sym_numeric_character_reference] = ACTIONS(4572), + [anon_sym_LT] = ACTIONS(4574), + [anon_sym_GT] = ACTIONS(4572), + [anon_sym_BANG] = ACTIONS(4572), + [anon_sym_DQUOTE] = ACTIONS(4572), + [anon_sym_POUND] = ACTIONS(4572), + [anon_sym_DOLLAR] = ACTIONS(4572), + [anon_sym_PERCENT] = ACTIONS(4572), + [anon_sym_AMP] = ACTIONS(4574), + [anon_sym_SQUOTE] = ACTIONS(4572), + [anon_sym_STAR] = ACTIONS(4572), + [anon_sym_PLUS] = ACTIONS(4572), + [anon_sym_COMMA] = ACTIONS(4572), + [anon_sym_DASH] = ACTIONS(4574), + [anon_sym_DOT] = ACTIONS(4574), + [anon_sym_SLASH] = ACTIONS(4572), + [anon_sym_COLON] = ACTIONS(4572), + [anon_sym_SEMI] = ACTIONS(4572), + [anon_sym_EQ] = ACTIONS(4572), + [anon_sym_QMARK] = ACTIONS(4572), + [anon_sym_LBRACK] = ACTIONS(4574), + [anon_sym_BSLASH] = ACTIONS(4574), + [anon_sym_CARET] = ACTIONS(4574), + [anon_sym__] = ACTIONS(4572), + [anon_sym_BQUOTE] = ACTIONS(4572), + [anon_sym_LBRACE] = ACTIONS(4572), + [anon_sym_PIPE] = ACTIONS(4572), + [anon_sym_TILDE] = ACTIONS(4572), + [anon_sym_LPAREN] = ACTIONS(4572), + [anon_sym_RPAREN] = ACTIONS(4572), + [sym__newline_token] = ACTIONS(4572), + [aux_sym_insert_token1] = ACTIONS(4572), + [aux_sym_delete_token1] = ACTIONS(4572), + [aux_sym_highlight_token1] = ACTIONS(4572), + [aux_sym_edit_comment_token1] = ACTIONS(4572), + [anon_sym_CARET_LBRACK] = ACTIONS(4572), + [anon_sym_LBRACK_CARET] = ACTIONS(4572), + [sym_uri_autolink] = ACTIONS(4572), + [sym_email_autolink] = ACTIONS(4572), + [sym__whitespace_ge_2] = ACTIONS(4572), + [aux_sym__whitespace_token1] = ACTIONS(4574), + [sym__word_no_digit] = ACTIONS(4572), + [sym__digits] = ACTIONS(4572), + [anon_sym_DASH_DASH] = ACTIONS(4574), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4572), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4572), + [sym__code_span_start] = ACTIONS(4572), + [sym__emphasis_open_star] = ACTIONS(4572), + [sym__emphasis_open_underscore] = ACTIONS(4572), + [sym__strikeout_open] = ACTIONS(4572), + [sym__latex_span_start] = ACTIONS(4572), + [sym__single_quote_open] = ACTIONS(4572), + [sym__double_quote_open] = ACTIONS(4572), + [sym__superscript_open] = ACTIONS(4572), + [sym__subscript_open] = ACTIONS(4572), + [sym__subscript_close] = ACTIONS(4572), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4572), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4572), + [sym__cite_author_in_text] = ACTIONS(4572), + [sym__cite_suppress_author] = ACTIONS(4572), + [sym__shortcode_open_escaped] = ACTIONS(4572), + [sym__shortcode_open] = ACTIONS(4572), + [sym__unclosed_span] = ACTIONS(4572), + }, + [STATE(883)] = { + [sym__backslash_escape] = ACTIONS(4546), + [sym_entity_reference] = ACTIONS(4546), + [sym_numeric_character_reference] = ACTIONS(4546), + [anon_sym_LT] = ACTIONS(4548), + [anon_sym_GT] = ACTIONS(4546), + [anon_sym_BANG] = ACTIONS(4546), + [anon_sym_DQUOTE] = ACTIONS(4546), + [anon_sym_POUND] = ACTIONS(4546), + [anon_sym_DOLLAR] = ACTIONS(4546), + [anon_sym_PERCENT] = ACTIONS(4546), + [anon_sym_AMP] = ACTIONS(4548), + [anon_sym_SQUOTE] = ACTIONS(4546), + [anon_sym_STAR] = ACTIONS(4546), + [anon_sym_PLUS] = ACTIONS(4546), + [anon_sym_COMMA] = ACTIONS(4546), + [anon_sym_DASH] = ACTIONS(4548), + [anon_sym_DOT] = ACTIONS(4548), + [anon_sym_SLASH] = ACTIONS(4546), + [anon_sym_COLON] = ACTIONS(4546), + [anon_sym_SEMI] = ACTIONS(4546), + [anon_sym_EQ] = ACTIONS(4546), + [anon_sym_QMARK] = ACTIONS(4546), + [anon_sym_LBRACK] = ACTIONS(4548), + [anon_sym_BSLASH] = ACTIONS(4548), + [anon_sym_CARET] = ACTIONS(4548), + [anon_sym__] = ACTIONS(4546), + [anon_sym_BQUOTE] = ACTIONS(4546), + [anon_sym_LBRACE] = ACTIONS(4546), + [anon_sym_PIPE] = ACTIONS(4546), + [anon_sym_TILDE] = ACTIONS(4546), + [anon_sym_LPAREN] = ACTIONS(4546), + [anon_sym_RPAREN] = ACTIONS(4546), + [sym__newline_token] = ACTIONS(4546), + [aux_sym_insert_token1] = ACTIONS(4546), + [aux_sym_delete_token1] = ACTIONS(4546), + [aux_sym_highlight_token1] = ACTIONS(4546), + [aux_sym_edit_comment_token1] = ACTIONS(4546), + [anon_sym_CARET_LBRACK] = ACTIONS(4546), + [anon_sym_LBRACK_CARET] = ACTIONS(4546), + [sym_uri_autolink] = ACTIONS(4546), + [sym_email_autolink] = ACTIONS(4546), + [sym__whitespace_ge_2] = ACTIONS(4546), + [aux_sym__whitespace_token1] = ACTIONS(4548), + [sym__word_no_digit] = ACTIONS(4546), + [sym__digits] = ACTIONS(4546), + [anon_sym_DASH_DASH] = ACTIONS(4548), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4546), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4546), + [sym__code_span_start] = ACTIONS(4546), + [sym__emphasis_open_star] = ACTIONS(4546), + [sym__emphasis_open_underscore] = ACTIONS(4546), + [sym__strikeout_open] = ACTIONS(4546), + [sym__strikeout_close] = ACTIONS(4546), + [sym__latex_span_start] = ACTIONS(4546), + [sym__single_quote_open] = ACTIONS(4546), + [sym__double_quote_open] = ACTIONS(4546), + [sym__superscript_open] = ACTIONS(4546), + [sym__subscript_open] = ACTIONS(4546), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4546), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4546), + [sym__cite_author_in_text] = ACTIONS(4546), + [sym__cite_suppress_author] = ACTIONS(4546), + [sym__shortcode_open_escaped] = ACTIONS(4546), + [sym__shortcode_open] = ACTIONS(4546), + [sym__unclosed_span] = ACTIONS(4546), + }, + [STATE(884)] = { + [sym__backslash_escape] = ACTIONS(4860), + [sym_entity_reference] = ACTIONS(4860), + [sym_numeric_character_reference] = ACTIONS(4860), + [anon_sym_LT] = ACTIONS(4862), + [anon_sym_GT] = ACTIONS(4860), + [anon_sym_BANG] = ACTIONS(4860), + [anon_sym_DQUOTE] = ACTIONS(4860), + [anon_sym_POUND] = ACTIONS(4860), + [anon_sym_DOLLAR] = ACTIONS(4860), + [anon_sym_PERCENT] = ACTIONS(4860), + [anon_sym_AMP] = ACTIONS(4862), + [anon_sym_SQUOTE] = ACTIONS(4860), + [anon_sym_STAR] = ACTIONS(4860), + [anon_sym_PLUS] = ACTIONS(4860), + [anon_sym_COMMA] = ACTIONS(4860), + [anon_sym_DASH] = ACTIONS(4862), + [anon_sym_DOT] = ACTIONS(4862), + [anon_sym_SLASH] = ACTIONS(4860), + [anon_sym_COLON] = ACTIONS(4860), + [anon_sym_SEMI] = ACTIONS(4860), + [anon_sym_EQ] = ACTIONS(4860), + [anon_sym_QMARK] = ACTIONS(4860), + [anon_sym_LBRACK] = ACTIONS(4862), + [anon_sym_BSLASH] = ACTIONS(4862), + [anon_sym_CARET] = ACTIONS(4862), + [anon_sym__] = ACTIONS(4860), + [anon_sym_BQUOTE] = ACTIONS(4860), + [anon_sym_LBRACE] = ACTIONS(4860), + [anon_sym_PIPE] = ACTIONS(4860), + [anon_sym_TILDE] = ACTIONS(4860), + [anon_sym_LPAREN] = ACTIONS(4860), + [anon_sym_RPAREN] = ACTIONS(4860), + [sym__newline_token] = ACTIONS(4860), + [aux_sym_insert_token1] = ACTIONS(4860), + [aux_sym_delete_token1] = ACTIONS(4860), + [aux_sym_highlight_token1] = ACTIONS(4860), + [aux_sym_edit_comment_token1] = ACTIONS(4860), + [anon_sym_CARET_LBRACK] = ACTIONS(4860), + [anon_sym_LBRACK_CARET] = ACTIONS(4860), + [sym_uri_autolink] = ACTIONS(4860), + [sym_email_autolink] = ACTIONS(4860), + [sym__whitespace_ge_2] = ACTIONS(4860), + [aux_sym__whitespace_token1] = ACTIONS(4862), + [sym__word_no_digit] = ACTIONS(4860), + [sym__digits] = ACTIONS(4860), + [anon_sym_DASH_DASH] = ACTIONS(4862), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4860), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4860), + [sym__code_span_start] = ACTIONS(4860), + [sym__emphasis_open_star] = ACTIONS(4860), + [sym__emphasis_open_underscore] = ACTIONS(4860), + [sym__strikeout_open] = ACTIONS(4860), + [sym__latex_span_start] = ACTIONS(4860), + [sym__single_quote_open] = ACTIONS(4860), + [sym__double_quote_open] = ACTIONS(4860), + [sym__superscript_open] = ACTIONS(4860), + [sym__subscript_open] = ACTIONS(4860), + [sym__subscript_close] = ACTIONS(4860), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4860), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4860), + [sym__cite_author_in_text] = ACTIONS(4860), + [sym__cite_suppress_author] = ACTIONS(4860), + [sym__shortcode_open_escaped] = ACTIONS(4860), + [sym__shortcode_open] = ACTIONS(4860), + [sym__unclosed_span] = ACTIONS(4860), + }, + [STATE(885)] = { + [sym__backslash_escape] = ACTIONS(4864), + [sym_entity_reference] = ACTIONS(4864), + [sym_numeric_character_reference] = ACTIONS(4864), + [anon_sym_LT] = ACTIONS(4866), + [anon_sym_GT] = ACTIONS(4864), + [anon_sym_BANG] = ACTIONS(4864), + [anon_sym_DQUOTE] = ACTIONS(4864), + [anon_sym_POUND] = ACTIONS(4864), + [anon_sym_DOLLAR] = ACTIONS(4864), + [anon_sym_PERCENT] = ACTIONS(4864), + [anon_sym_AMP] = ACTIONS(4866), + [anon_sym_SQUOTE] = ACTIONS(4864), + [anon_sym_STAR] = ACTIONS(4864), + [anon_sym_PLUS] = ACTIONS(4864), + [anon_sym_COMMA] = ACTIONS(4864), + [anon_sym_DASH] = ACTIONS(4866), + [anon_sym_DOT] = ACTIONS(4866), + [anon_sym_SLASH] = ACTIONS(4864), + [anon_sym_COLON] = ACTIONS(4864), + [anon_sym_SEMI] = ACTIONS(4864), + [anon_sym_EQ] = ACTIONS(4864), + [anon_sym_QMARK] = ACTIONS(4864), + [anon_sym_LBRACK] = ACTIONS(4866), + [anon_sym_BSLASH] = ACTIONS(4866), + [anon_sym_CARET] = ACTIONS(4866), + [anon_sym__] = ACTIONS(4864), + [anon_sym_BQUOTE] = ACTIONS(4864), + [anon_sym_LBRACE] = ACTIONS(4864), + [anon_sym_PIPE] = ACTIONS(4864), + [anon_sym_TILDE] = ACTIONS(4864), + [anon_sym_LPAREN] = ACTIONS(4864), + [anon_sym_RPAREN] = ACTIONS(4864), + [sym__newline_token] = ACTIONS(4864), + [aux_sym_insert_token1] = ACTIONS(4864), + [aux_sym_delete_token1] = ACTIONS(4864), + [aux_sym_highlight_token1] = ACTIONS(4864), + [aux_sym_edit_comment_token1] = ACTIONS(4864), + [anon_sym_CARET_LBRACK] = ACTIONS(4864), + [anon_sym_LBRACK_CARET] = ACTIONS(4864), + [sym_uri_autolink] = ACTIONS(4864), + [sym_email_autolink] = ACTIONS(4864), + [sym__whitespace_ge_2] = ACTIONS(4864), + [aux_sym__whitespace_token1] = ACTIONS(4866), + [sym__word_no_digit] = ACTIONS(4864), + [sym__digits] = ACTIONS(4864), + [anon_sym_DASH_DASH] = ACTIONS(4866), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4864), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4864), + [sym__code_span_start] = ACTIONS(4864), + [sym__emphasis_open_star] = ACTIONS(4864), + [sym__emphasis_open_underscore] = ACTIONS(4864), + [sym__strikeout_open] = ACTIONS(4864), + [sym__latex_span_start] = ACTIONS(4864), + [sym__single_quote_open] = ACTIONS(4864), + [sym__double_quote_open] = ACTIONS(4864), + [sym__superscript_open] = ACTIONS(4864), + [sym__subscript_open] = ACTIONS(4864), + [sym__subscript_close] = ACTIONS(4864), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4864), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4864), + [sym__cite_author_in_text] = ACTIONS(4864), + [sym__cite_suppress_author] = ACTIONS(4864), + [sym__shortcode_open_escaped] = ACTIONS(4864), + [sym__shortcode_open] = ACTIONS(4864), + [sym__unclosed_span] = ACTIONS(4864), + }, + [STATE(886)] = { + [sym__backslash_escape] = ACTIONS(4868), + [sym_entity_reference] = ACTIONS(4868), + [sym_numeric_character_reference] = ACTIONS(4868), + [anon_sym_LT] = ACTIONS(4870), + [anon_sym_GT] = ACTIONS(4868), + [anon_sym_BANG] = ACTIONS(4868), + [anon_sym_DQUOTE] = ACTIONS(4868), + [anon_sym_POUND] = ACTIONS(4868), + [anon_sym_DOLLAR] = ACTIONS(4868), + [anon_sym_PERCENT] = ACTIONS(4868), + [anon_sym_AMP] = ACTIONS(4870), + [anon_sym_SQUOTE] = ACTIONS(4868), + [anon_sym_STAR] = ACTIONS(4868), + [anon_sym_PLUS] = ACTIONS(4868), + [anon_sym_COMMA] = ACTIONS(4868), + [anon_sym_DASH] = ACTIONS(4870), + [anon_sym_DOT] = ACTIONS(4870), + [anon_sym_SLASH] = ACTIONS(4868), + [anon_sym_COLON] = ACTIONS(4868), + [anon_sym_SEMI] = ACTIONS(4868), + [anon_sym_EQ] = ACTIONS(4868), + [anon_sym_QMARK] = ACTIONS(4868), + [anon_sym_LBRACK] = ACTIONS(4870), + [anon_sym_BSLASH] = ACTIONS(4870), + [anon_sym_CARET] = ACTIONS(4870), + [anon_sym__] = ACTIONS(4868), + [anon_sym_BQUOTE] = ACTIONS(4868), + [anon_sym_LBRACE] = ACTIONS(4868), + [anon_sym_PIPE] = ACTIONS(4868), + [anon_sym_TILDE] = ACTIONS(4868), + [anon_sym_LPAREN] = ACTIONS(4868), + [anon_sym_RPAREN] = ACTIONS(4868), + [sym__newline_token] = ACTIONS(4868), + [aux_sym_insert_token1] = ACTIONS(4868), + [aux_sym_delete_token1] = ACTIONS(4868), + [aux_sym_highlight_token1] = ACTIONS(4868), + [aux_sym_edit_comment_token1] = ACTIONS(4868), + [anon_sym_CARET_LBRACK] = ACTIONS(4868), + [anon_sym_LBRACK_CARET] = ACTIONS(4868), + [sym_uri_autolink] = ACTIONS(4868), + [sym_email_autolink] = ACTIONS(4868), + [sym__whitespace_ge_2] = ACTIONS(4868), + [aux_sym__whitespace_token1] = ACTIONS(4870), + [sym__word_no_digit] = ACTIONS(4868), + [sym__digits] = ACTIONS(4868), + [anon_sym_DASH_DASH] = ACTIONS(4870), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4868), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4868), + [sym__code_span_start] = ACTIONS(4868), + [sym__emphasis_open_star] = ACTIONS(4868), + [sym__emphasis_open_underscore] = ACTIONS(4868), + [sym__strikeout_open] = ACTIONS(4868), + [sym__latex_span_start] = ACTIONS(4868), + [sym__single_quote_open] = ACTIONS(4868), + [sym__double_quote_open] = ACTIONS(4868), + [sym__superscript_open] = ACTIONS(4868), + [sym__subscript_open] = ACTIONS(4868), + [sym__subscript_close] = ACTIONS(4868), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4868), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4868), + [sym__cite_author_in_text] = ACTIONS(4868), + [sym__cite_suppress_author] = ACTIONS(4868), + [sym__shortcode_open_escaped] = ACTIONS(4868), + [sym__shortcode_open] = ACTIONS(4868), + [sym__unclosed_span] = ACTIONS(4868), + }, + [STATE(887)] = { + [sym__backslash_escape] = ACTIONS(4872), + [sym_entity_reference] = ACTIONS(4872), + [sym_numeric_character_reference] = ACTIONS(4872), + [anon_sym_LT] = ACTIONS(4874), + [anon_sym_GT] = ACTIONS(4872), + [anon_sym_BANG] = ACTIONS(4872), + [anon_sym_DQUOTE] = ACTIONS(4872), + [anon_sym_POUND] = ACTIONS(4872), + [anon_sym_DOLLAR] = ACTIONS(4872), + [anon_sym_PERCENT] = ACTIONS(4872), + [anon_sym_AMP] = ACTIONS(4874), + [anon_sym_SQUOTE] = ACTIONS(4872), + [anon_sym_STAR] = ACTIONS(4872), + [anon_sym_PLUS] = ACTIONS(4872), + [anon_sym_COMMA] = ACTIONS(4872), + [anon_sym_DASH] = ACTIONS(4874), + [anon_sym_DOT] = ACTIONS(4874), + [anon_sym_SLASH] = ACTIONS(4872), + [anon_sym_COLON] = ACTIONS(4872), + [anon_sym_SEMI] = ACTIONS(4872), + [anon_sym_EQ] = ACTIONS(4872), + [anon_sym_QMARK] = ACTIONS(4872), + [anon_sym_LBRACK] = ACTIONS(4874), + [anon_sym_BSLASH] = ACTIONS(4874), + [anon_sym_CARET] = ACTIONS(4874), + [anon_sym__] = ACTIONS(4872), + [anon_sym_BQUOTE] = ACTIONS(4872), + [anon_sym_LBRACE] = ACTIONS(4872), + [anon_sym_PIPE] = ACTIONS(4872), + [anon_sym_TILDE] = ACTIONS(4872), + [anon_sym_LPAREN] = ACTIONS(4872), + [anon_sym_RPAREN] = ACTIONS(4872), + [sym__newline_token] = ACTIONS(4872), + [aux_sym_insert_token1] = ACTIONS(4872), + [aux_sym_delete_token1] = ACTIONS(4872), + [aux_sym_highlight_token1] = ACTIONS(4872), + [aux_sym_edit_comment_token1] = ACTIONS(4872), + [anon_sym_CARET_LBRACK] = ACTIONS(4872), + [anon_sym_LBRACK_CARET] = ACTIONS(4872), + [sym_uri_autolink] = ACTIONS(4872), + [sym_email_autolink] = ACTIONS(4872), + [sym__whitespace_ge_2] = ACTIONS(4872), + [aux_sym__whitespace_token1] = ACTIONS(4874), + [sym__word_no_digit] = ACTIONS(4872), + [sym__digits] = ACTIONS(4872), + [anon_sym_DASH_DASH] = ACTIONS(4874), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4872), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4872), + [sym__code_span_start] = ACTIONS(4872), + [sym__emphasis_open_star] = ACTIONS(4872), + [sym__emphasis_open_underscore] = ACTIONS(4872), + [sym__strikeout_open] = ACTIONS(4872), + [sym__latex_span_start] = ACTIONS(4872), + [sym__single_quote_open] = ACTIONS(4872), + [sym__double_quote_open] = ACTIONS(4872), + [sym__superscript_open] = ACTIONS(4872), + [sym__subscript_open] = ACTIONS(4872), + [sym__subscript_close] = ACTIONS(4872), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4872), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4872), + [sym__cite_author_in_text] = ACTIONS(4872), + [sym__cite_suppress_author] = ACTIONS(4872), + [sym__shortcode_open_escaped] = ACTIONS(4872), + [sym__shortcode_open] = ACTIONS(4872), + [sym__unclosed_span] = ACTIONS(4872), + }, + [STATE(888)] = { + [sym__backslash_escape] = ACTIONS(4876), + [sym_entity_reference] = ACTIONS(4876), + [sym_numeric_character_reference] = ACTIONS(4876), + [anon_sym_LT] = ACTIONS(4878), + [anon_sym_GT] = ACTIONS(4876), + [anon_sym_BANG] = ACTIONS(4876), + [anon_sym_DQUOTE] = ACTIONS(4876), + [anon_sym_POUND] = ACTIONS(4876), + [anon_sym_DOLLAR] = ACTIONS(4876), + [anon_sym_PERCENT] = ACTIONS(4876), + [anon_sym_AMP] = ACTIONS(4878), + [anon_sym_SQUOTE] = ACTIONS(4876), + [anon_sym_STAR] = ACTIONS(4876), + [anon_sym_PLUS] = ACTIONS(4876), + [anon_sym_COMMA] = ACTIONS(4876), + [anon_sym_DASH] = ACTIONS(4878), + [anon_sym_DOT] = ACTIONS(4878), + [anon_sym_SLASH] = ACTIONS(4876), + [anon_sym_COLON] = ACTIONS(4876), + [anon_sym_SEMI] = ACTIONS(4876), + [anon_sym_EQ] = ACTIONS(4876), + [anon_sym_QMARK] = ACTIONS(4876), + [anon_sym_LBRACK] = ACTIONS(4878), + [anon_sym_BSLASH] = ACTIONS(4878), + [anon_sym_CARET] = ACTIONS(4878), + [anon_sym__] = ACTIONS(4876), + [anon_sym_BQUOTE] = ACTIONS(4876), + [anon_sym_LBRACE] = ACTIONS(4876), + [anon_sym_PIPE] = ACTIONS(4876), + [anon_sym_TILDE] = ACTIONS(4876), + [anon_sym_LPAREN] = ACTIONS(4876), + [anon_sym_RPAREN] = ACTIONS(4876), + [sym__newline_token] = ACTIONS(4876), + [aux_sym_insert_token1] = ACTIONS(4876), + [aux_sym_delete_token1] = ACTIONS(4876), + [aux_sym_highlight_token1] = ACTIONS(4876), + [aux_sym_edit_comment_token1] = ACTIONS(4876), + [anon_sym_CARET_LBRACK] = ACTIONS(4876), + [anon_sym_LBRACK_CARET] = ACTIONS(4876), + [sym_uri_autolink] = ACTIONS(4876), + [sym_email_autolink] = ACTIONS(4876), + [sym__whitespace_ge_2] = ACTIONS(4876), + [aux_sym__whitespace_token1] = ACTIONS(4878), + [sym__word_no_digit] = ACTIONS(4876), + [sym__digits] = ACTIONS(4876), + [anon_sym_DASH_DASH] = ACTIONS(4878), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4876), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4876), + [sym__code_span_start] = ACTIONS(4876), + [sym__emphasis_open_star] = ACTIONS(4876), + [sym__emphasis_open_underscore] = ACTIONS(4876), + [sym__strikeout_open] = ACTIONS(4876), + [sym__latex_span_start] = ACTIONS(4876), + [sym__single_quote_open] = ACTIONS(4876), + [sym__double_quote_open] = ACTIONS(4876), + [sym__superscript_open] = ACTIONS(4876), + [sym__subscript_open] = ACTIONS(4876), + [sym__subscript_close] = ACTIONS(4876), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4876), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4876), + [sym__cite_author_in_text] = ACTIONS(4876), + [sym__cite_suppress_author] = ACTIONS(4876), + [sym__shortcode_open_escaped] = ACTIONS(4876), + [sym__shortcode_open] = ACTIONS(4876), + [sym__unclosed_span] = ACTIONS(4876), + }, + [STATE(889)] = { + [sym__backslash_escape] = ACTIONS(4588), + [sym_entity_reference] = ACTIONS(4588), + [sym_numeric_character_reference] = ACTIONS(4588), + [anon_sym_LT] = ACTIONS(4590), + [anon_sym_GT] = ACTIONS(4588), + [anon_sym_BANG] = ACTIONS(4588), + [anon_sym_DQUOTE] = ACTIONS(4588), + [anon_sym_POUND] = ACTIONS(4588), + [anon_sym_DOLLAR] = ACTIONS(4588), + [anon_sym_PERCENT] = ACTIONS(4588), + [anon_sym_AMP] = ACTIONS(4590), + [anon_sym_SQUOTE] = ACTIONS(4588), + [anon_sym_STAR] = ACTIONS(4588), + [anon_sym_PLUS] = ACTIONS(4588), + [anon_sym_COMMA] = ACTIONS(4588), + [anon_sym_DASH] = ACTIONS(4590), + [anon_sym_DOT] = ACTIONS(4590), + [anon_sym_SLASH] = ACTIONS(4588), + [anon_sym_COLON] = ACTIONS(4588), + [anon_sym_SEMI] = ACTIONS(4588), + [anon_sym_EQ] = ACTIONS(4588), + [anon_sym_QMARK] = ACTIONS(4588), + [anon_sym_LBRACK] = ACTIONS(4590), + [anon_sym_BSLASH] = ACTIONS(4590), + [anon_sym_CARET] = ACTIONS(4590), + [anon_sym__] = ACTIONS(4588), + [anon_sym_BQUOTE] = ACTIONS(4588), + [anon_sym_LBRACE] = ACTIONS(4588), + [anon_sym_PIPE] = ACTIONS(4588), + [anon_sym_TILDE] = ACTIONS(4588), + [anon_sym_LPAREN] = ACTIONS(4588), + [anon_sym_RPAREN] = ACTIONS(4588), + [sym__newline_token] = ACTIONS(4588), + [aux_sym_insert_token1] = ACTIONS(4588), + [aux_sym_delete_token1] = ACTIONS(4588), + [aux_sym_highlight_token1] = ACTIONS(4588), + [aux_sym_edit_comment_token1] = ACTIONS(4588), + [anon_sym_CARET_LBRACK] = ACTIONS(4588), + [anon_sym_LBRACK_CARET] = ACTIONS(4588), + [sym_uri_autolink] = ACTIONS(4588), + [sym_email_autolink] = ACTIONS(4588), + [sym__whitespace_ge_2] = ACTIONS(4588), + [aux_sym__whitespace_token1] = ACTIONS(4590), + [sym__word_no_digit] = ACTIONS(4588), + [sym__digits] = ACTIONS(4588), + [anon_sym_DASH_DASH] = ACTIONS(4590), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4588), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4588), + [sym__code_span_start] = ACTIONS(4588), + [sym__emphasis_open_star] = ACTIONS(4588), + [sym__emphasis_open_underscore] = ACTIONS(4588), + [sym__strikeout_open] = ACTIONS(4588), + [sym__latex_span_start] = ACTIONS(4588), + [sym__single_quote_open] = ACTIONS(4588), + [sym__double_quote_open] = ACTIONS(4588), + [sym__superscript_open] = ACTIONS(4588), + [sym__subscript_open] = ACTIONS(4588), + [sym__subscript_close] = ACTIONS(4588), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4588), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4588), + [sym__cite_author_in_text] = ACTIONS(4588), + [sym__cite_suppress_author] = ACTIONS(4588), + [sym__shortcode_open_escaped] = ACTIONS(4588), + [sym__shortcode_open] = ACTIONS(4588), + [sym__unclosed_span] = ACTIONS(4588), + }, + [STATE(890)] = { + [sym__backslash_escape] = ACTIONS(4540), + [sym_entity_reference] = ACTIONS(4540), + [sym_numeric_character_reference] = ACTIONS(4540), + [anon_sym_LT] = ACTIONS(4542), + [anon_sym_GT] = ACTIONS(4540), + [anon_sym_BANG] = ACTIONS(4540), + [anon_sym_DQUOTE] = ACTIONS(4540), + [anon_sym_POUND] = ACTIONS(4540), + [anon_sym_DOLLAR] = ACTIONS(4540), + [anon_sym_PERCENT] = ACTIONS(4540), + [anon_sym_AMP] = ACTIONS(4542), + [anon_sym_SQUOTE] = ACTIONS(4540), + [anon_sym_STAR] = ACTIONS(4540), + [anon_sym_PLUS] = ACTIONS(4540), + [anon_sym_COMMA] = ACTIONS(4540), + [anon_sym_DASH] = ACTIONS(4542), + [anon_sym_DOT] = ACTIONS(4542), + [anon_sym_SLASH] = ACTIONS(4540), + [anon_sym_COLON] = ACTIONS(4540), + [anon_sym_SEMI] = ACTIONS(4540), + [anon_sym_EQ] = ACTIONS(4540), + [anon_sym_QMARK] = ACTIONS(4540), + [anon_sym_LBRACK] = ACTIONS(4542), + [anon_sym_BSLASH] = ACTIONS(4542), + [anon_sym_CARET] = ACTIONS(4542), + [anon_sym__] = ACTIONS(4540), + [anon_sym_BQUOTE] = ACTIONS(4540), + [anon_sym_LBRACE] = ACTIONS(4540), + [anon_sym_PIPE] = ACTIONS(4540), + [anon_sym_TILDE] = ACTIONS(4540), + [anon_sym_LPAREN] = ACTIONS(4540), + [anon_sym_RPAREN] = ACTIONS(4540), + [sym__newline_token] = ACTIONS(4540), + [aux_sym_insert_token1] = ACTIONS(4540), + [aux_sym_delete_token1] = ACTIONS(4540), + [aux_sym_highlight_token1] = ACTIONS(4540), + [aux_sym_edit_comment_token1] = ACTIONS(4540), + [anon_sym_CARET_LBRACK] = ACTIONS(4540), + [anon_sym_LBRACK_CARET] = ACTIONS(4540), + [sym_uri_autolink] = ACTIONS(4540), + [sym_email_autolink] = ACTIONS(4540), + [sym__whitespace_ge_2] = ACTIONS(4540), + [aux_sym__whitespace_token1] = ACTIONS(4542), + [sym__word_no_digit] = ACTIONS(4540), + [sym__digits] = ACTIONS(4540), + [anon_sym_DASH_DASH] = ACTIONS(4542), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4540), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4540), + [sym__code_span_start] = ACTIONS(4540), + [sym__emphasis_open_star] = ACTIONS(4540), + [sym__emphasis_open_underscore] = ACTIONS(4540), + [sym__emphasis_close_underscore] = ACTIONS(4540), + [sym__strikeout_open] = ACTIONS(4540), + [sym__latex_span_start] = ACTIONS(4540), + [sym__single_quote_open] = ACTIONS(4540), + [sym__double_quote_open] = ACTIONS(4540), + [sym__superscript_open] = ACTIONS(4540), + [sym__subscript_open] = ACTIONS(4540), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4540), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4540), + [sym__cite_author_in_text] = ACTIONS(4540), + [sym__cite_suppress_author] = ACTIONS(4540), + [sym__shortcode_open_escaped] = ACTIONS(4540), + [sym__shortcode_open] = ACTIONS(4540), + [sym__unclosed_span] = ACTIONS(4540), + }, + [STATE(891)] = { + [sym__backslash_escape] = ACTIONS(4540), + [sym_entity_reference] = ACTIONS(4540), + [sym_numeric_character_reference] = ACTIONS(4540), + [anon_sym_LT] = ACTIONS(4542), + [anon_sym_GT] = ACTIONS(4540), + [anon_sym_BANG] = ACTIONS(4540), + [anon_sym_DQUOTE] = ACTIONS(4540), + [anon_sym_POUND] = ACTIONS(4540), + [anon_sym_DOLLAR] = ACTIONS(4540), + [anon_sym_PERCENT] = ACTIONS(4540), + [anon_sym_AMP] = ACTIONS(4542), + [anon_sym_SQUOTE] = ACTIONS(4540), + [anon_sym_STAR] = ACTIONS(4540), + [anon_sym_PLUS] = ACTIONS(4540), + [anon_sym_COMMA] = ACTIONS(4540), + [anon_sym_DASH] = ACTIONS(4542), + [anon_sym_DOT] = ACTIONS(4542), + [anon_sym_SLASH] = ACTIONS(4540), + [anon_sym_COLON] = ACTIONS(4540), + [anon_sym_SEMI] = ACTIONS(4540), + [anon_sym_EQ] = ACTIONS(4540), + [anon_sym_QMARK] = ACTIONS(4540), + [anon_sym_LBRACK] = ACTIONS(4542), + [anon_sym_BSLASH] = ACTIONS(4542), + [anon_sym_CARET] = ACTIONS(4542), + [anon_sym__] = ACTIONS(4540), + [anon_sym_BQUOTE] = ACTIONS(4540), + [anon_sym_LBRACE] = ACTIONS(4540), + [anon_sym_PIPE] = ACTIONS(4540), + [anon_sym_TILDE] = ACTIONS(4540), + [anon_sym_LPAREN] = ACTIONS(4540), + [anon_sym_RPAREN] = ACTIONS(4540), + [sym__newline_token] = ACTIONS(4540), + [aux_sym_insert_token1] = ACTIONS(4540), + [aux_sym_delete_token1] = ACTIONS(4540), + [aux_sym_highlight_token1] = ACTIONS(4540), + [aux_sym_edit_comment_token1] = ACTIONS(4540), + [anon_sym_CARET_LBRACK] = ACTIONS(4540), + [anon_sym_LBRACK_CARET] = ACTIONS(4540), + [sym_uri_autolink] = ACTIONS(4540), + [sym_email_autolink] = ACTIONS(4540), + [sym__whitespace_ge_2] = ACTIONS(4540), + [aux_sym__whitespace_token1] = ACTIONS(4542), + [sym__word_no_digit] = ACTIONS(4540), + [sym__digits] = ACTIONS(4540), + [anon_sym_DASH_DASH] = ACTIONS(4542), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4540), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4540), + [sym__code_span_start] = ACTIONS(4540), + [sym__emphasis_open_star] = ACTIONS(4540), + [sym__emphasis_open_underscore] = ACTIONS(4540), + [sym__strikeout_open] = ACTIONS(4540), + [sym__latex_span_start] = ACTIONS(4540), + [sym__single_quote_open] = ACTIONS(4540), + [sym__double_quote_open] = ACTIONS(4540), + [sym__superscript_open] = ACTIONS(4540), + [sym__subscript_open] = ACTIONS(4540), + [sym__subscript_close] = ACTIONS(4540), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4540), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4540), + [sym__cite_author_in_text] = ACTIONS(4540), + [sym__cite_suppress_author] = ACTIONS(4540), + [sym__shortcode_open_escaped] = ACTIONS(4540), + [sym__shortcode_open] = ACTIONS(4540), + [sym__unclosed_span] = ACTIONS(4540), + }, + [STATE(892)] = { + [sym__backslash_escape] = ACTIONS(4904), + [sym_entity_reference] = ACTIONS(4904), + [sym_numeric_character_reference] = ACTIONS(4904), + [anon_sym_LT] = ACTIONS(4906), + [anon_sym_GT] = ACTIONS(4904), + [anon_sym_BANG] = ACTIONS(4904), + [anon_sym_DQUOTE] = ACTIONS(4904), + [anon_sym_POUND] = ACTIONS(4904), + [anon_sym_DOLLAR] = ACTIONS(4904), + [anon_sym_PERCENT] = ACTIONS(4904), + [anon_sym_AMP] = ACTIONS(4906), + [anon_sym_SQUOTE] = ACTIONS(4904), + [anon_sym_STAR] = ACTIONS(4904), + [anon_sym_PLUS] = ACTIONS(4904), + [anon_sym_COMMA] = ACTIONS(4904), + [anon_sym_DASH] = ACTIONS(4906), + [anon_sym_DOT] = ACTIONS(4906), + [anon_sym_SLASH] = ACTIONS(4904), + [anon_sym_COLON] = ACTIONS(4904), + [anon_sym_SEMI] = ACTIONS(4904), + [anon_sym_EQ] = ACTIONS(4904), + [anon_sym_QMARK] = ACTIONS(4904), + [anon_sym_LBRACK] = ACTIONS(4906), + [anon_sym_BSLASH] = ACTIONS(4906), + [anon_sym_CARET] = ACTIONS(4906), + [anon_sym__] = ACTIONS(4904), + [anon_sym_BQUOTE] = ACTIONS(4904), + [anon_sym_LBRACE] = ACTIONS(4904), + [anon_sym_PIPE] = ACTIONS(4904), + [anon_sym_TILDE] = ACTIONS(4904), + [anon_sym_LPAREN] = ACTIONS(4904), + [anon_sym_RPAREN] = ACTIONS(4904), + [sym__newline_token] = ACTIONS(4904), + [aux_sym_insert_token1] = ACTIONS(4904), + [aux_sym_delete_token1] = ACTIONS(4904), + [aux_sym_highlight_token1] = ACTIONS(4904), + [aux_sym_edit_comment_token1] = ACTIONS(4904), + [anon_sym_CARET_LBRACK] = ACTIONS(4904), + [anon_sym_LBRACK_CARET] = ACTIONS(4904), + [sym_uri_autolink] = ACTIONS(4904), + [sym_email_autolink] = ACTIONS(4904), + [sym__whitespace_ge_2] = ACTIONS(4904), + [aux_sym__whitespace_token1] = ACTIONS(4906), + [sym__word_no_digit] = ACTIONS(4904), + [sym__digits] = ACTIONS(4904), + [anon_sym_DASH_DASH] = ACTIONS(4906), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4904), + [sym__code_span_start] = ACTIONS(4904), + [sym__emphasis_open_star] = ACTIONS(4904), + [sym__emphasis_open_underscore] = ACTIONS(4904), + [sym__strikeout_open] = ACTIONS(4904), + [sym__strikeout_close] = ACTIONS(4904), + [sym__latex_span_start] = ACTIONS(4904), + [sym__single_quote_open] = ACTIONS(4904), + [sym__double_quote_open] = ACTIONS(4904), + [sym__superscript_open] = ACTIONS(4904), + [sym__subscript_open] = ACTIONS(4904), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4904), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4904), + [sym__cite_author_in_text] = ACTIONS(4904), + [sym__cite_suppress_author] = ACTIONS(4904), + [sym__shortcode_open_escaped] = ACTIONS(4904), + [sym__shortcode_open] = ACTIONS(4904), + [sym__unclosed_span] = ACTIONS(4904), + }, + [STATE(893)] = { + [sym__backslash_escape] = ACTIONS(4884), + [sym_entity_reference] = ACTIONS(4884), + [sym_numeric_character_reference] = ACTIONS(4884), + [anon_sym_LT] = ACTIONS(4886), + [anon_sym_GT] = ACTIONS(4884), + [anon_sym_BANG] = ACTIONS(4884), + [anon_sym_DQUOTE] = ACTIONS(4884), + [anon_sym_POUND] = ACTIONS(4884), + [anon_sym_DOLLAR] = ACTIONS(4884), + [anon_sym_PERCENT] = ACTIONS(4884), + [anon_sym_AMP] = ACTIONS(4886), + [anon_sym_SQUOTE] = ACTIONS(4884), + [anon_sym_STAR] = ACTIONS(4884), + [anon_sym_PLUS] = ACTIONS(4884), + [anon_sym_COMMA] = ACTIONS(4884), + [anon_sym_DASH] = ACTIONS(4886), + [anon_sym_DOT] = ACTIONS(4886), + [anon_sym_SLASH] = ACTIONS(4884), + [anon_sym_COLON] = ACTIONS(4884), + [anon_sym_SEMI] = ACTIONS(4884), + [anon_sym_EQ] = ACTIONS(4884), + [anon_sym_QMARK] = ACTIONS(4884), + [anon_sym_LBRACK] = ACTIONS(4886), + [anon_sym_BSLASH] = ACTIONS(4886), + [anon_sym_CARET] = ACTIONS(4886), + [anon_sym__] = ACTIONS(4884), + [anon_sym_BQUOTE] = ACTIONS(4884), + [anon_sym_LBRACE] = ACTIONS(4884), + [anon_sym_PIPE] = ACTIONS(4884), + [anon_sym_TILDE] = ACTIONS(4884), + [anon_sym_LPAREN] = ACTIONS(4884), + [anon_sym_RPAREN] = ACTIONS(4884), + [sym__newline_token] = ACTIONS(4884), + [aux_sym_insert_token1] = ACTIONS(4884), + [aux_sym_delete_token1] = ACTIONS(4884), + [aux_sym_highlight_token1] = ACTIONS(4884), + [aux_sym_edit_comment_token1] = ACTIONS(4884), + [anon_sym_CARET_LBRACK] = ACTIONS(4884), + [anon_sym_LBRACK_CARET] = ACTIONS(4884), + [sym_uri_autolink] = ACTIONS(4884), + [sym_email_autolink] = ACTIONS(4884), + [sym__whitespace_ge_2] = ACTIONS(4884), + [aux_sym__whitespace_token1] = ACTIONS(4886), + [sym__word_no_digit] = ACTIONS(4884), + [sym__digits] = ACTIONS(4884), + [anon_sym_DASH_DASH] = ACTIONS(4886), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4884), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4884), + [sym__code_span_start] = ACTIONS(4884), + [sym__emphasis_open_star] = ACTIONS(4884), + [sym__emphasis_open_underscore] = ACTIONS(4884), + [sym__strikeout_open] = ACTIONS(4884), + [sym__latex_span_start] = ACTIONS(4884), + [sym__single_quote_open] = ACTIONS(4884), + [sym__double_quote_open] = ACTIONS(4884), + [sym__superscript_open] = ACTIONS(4884), + [sym__subscript_open] = ACTIONS(4884), + [sym__subscript_close] = ACTIONS(4884), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4884), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4884), + [sym__cite_author_in_text] = ACTIONS(4884), + [sym__cite_suppress_author] = ACTIONS(4884), + [sym__shortcode_open_escaped] = ACTIONS(4884), + [sym__shortcode_open] = ACTIONS(4884), + [sym__unclosed_span] = ACTIONS(4884), + }, + [STATE(894)] = { + [sym__backslash_escape] = ACTIONS(4888), + [sym_entity_reference] = ACTIONS(4888), + [sym_numeric_character_reference] = ACTIONS(4888), + [anon_sym_LT] = ACTIONS(4890), + [anon_sym_GT] = ACTIONS(4888), + [anon_sym_BANG] = ACTIONS(4888), + [anon_sym_DQUOTE] = ACTIONS(4888), + [anon_sym_POUND] = ACTIONS(4888), + [anon_sym_DOLLAR] = ACTIONS(4888), + [anon_sym_PERCENT] = ACTIONS(4888), + [anon_sym_AMP] = ACTIONS(4890), + [anon_sym_SQUOTE] = ACTIONS(4888), + [anon_sym_STAR] = ACTIONS(4888), + [anon_sym_PLUS] = ACTIONS(4888), + [anon_sym_COMMA] = ACTIONS(4888), + [anon_sym_DASH] = ACTIONS(4890), + [anon_sym_DOT] = ACTIONS(4890), + [anon_sym_SLASH] = ACTIONS(4888), + [anon_sym_COLON] = ACTIONS(4888), + [anon_sym_SEMI] = ACTIONS(4888), + [anon_sym_EQ] = ACTIONS(4888), + [anon_sym_QMARK] = ACTIONS(4888), + [anon_sym_LBRACK] = ACTIONS(4890), + [anon_sym_BSLASH] = ACTIONS(4890), + [anon_sym_CARET] = ACTIONS(4890), + [anon_sym__] = ACTIONS(4888), + [anon_sym_BQUOTE] = ACTIONS(4888), + [anon_sym_LBRACE] = ACTIONS(4888), + [anon_sym_PIPE] = ACTIONS(4888), + [anon_sym_TILDE] = ACTIONS(4888), + [anon_sym_LPAREN] = ACTIONS(4888), + [anon_sym_RPAREN] = ACTIONS(4888), + [sym__newline_token] = ACTIONS(4888), + [aux_sym_insert_token1] = ACTIONS(4888), + [aux_sym_delete_token1] = ACTIONS(4888), + [aux_sym_highlight_token1] = ACTIONS(4888), + [aux_sym_edit_comment_token1] = ACTIONS(4888), + [anon_sym_CARET_LBRACK] = ACTIONS(4888), + [anon_sym_LBRACK_CARET] = ACTIONS(4888), + [sym_uri_autolink] = ACTIONS(4888), + [sym_email_autolink] = ACTIONS(4888), + [sym__whitespace_ge_2] = ACTIONS(4888), + [aux_sym__whitespace_token1] = ACTIONS(4890), + [sym__word_no_digit] = ACTIONS(4888), + [sym__digits] = ACTIONS(4888), + [anon_sym_DASH_DASH] = ACTIONS(4890), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4888), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4888), + [sym__code_span_start] = ACTIONS(4888), + [sym__emphasis_open_star] = ACTIONS(4888), + [sym__emphasis_open_underscore] = ACTIONS(4888), + [sym__strikeout_open] = ACTIONS(4888), + [sym__latex_span_start] = ACTIONS(4888), + [sym__single_quote_open] = ACTIONS(4888), + [sym__double_quote_open] = ACTIONS(4888), + [sym__superscript_open] = ACTIONS(4888), + [sym__subscript_open] = ACTIONS(4888), + [sym__subscript_close] = ACTIONS(4888), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4888), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4888), + [sym__cite_author_in_text] = ACTIONS(4888), + [sym__cite_suppress_author] = ACTIONS(4888), + [sym__shortcode_open_escaped] = ACTIONS(4888), + [sym__shortcode_open] = ACTIONS(4888), + [sym__unclosed_span] = ACTIONS(4888), + }, + [STATE(895)] = { + [sym__backslash_escape] = ACTIONS(4892), + [sym_entity_reference] = ACTIONS(4892), + [sym_numeric_character_reference] = ACTIONS(4892), + [anon_sym_LT] = ACTIONS(4894), + [anon_sym_GT] = ACTIONS(4892), + [anon_sym_BANG] = ACTIONS(4892), + [anon_sym_DQUOTE] = ACTIONS(4892), + [anon_sym_POUND] = ACTIONS(4892), + [anon_sym_DOLLAR] = ACTIONS(4892), + [anon_sym_PERCENT] = ACTIONS(4892), + [anon_sym_AMP] = ACTIONS(4894), + [anon_sym_SQUOTE] = ACTIONS(4892), + [anon_sym_STAR] = ACTIONS(4892), + [anon_sym_PLUS] = ACTIONS(4892), + [anon_sym_COMMA] = ACTIONS(4892), + [anon_sym_DASH] = ACTIONS(4894), + [anon_sym_DOT] = ACTIONS(4894), + [anon_sym_SLASH] = ACTIONS(4892), + [anon_sym_COLON] = ACTIONS(4892), + [anon_sym_SEMI] = ACTIONS(4892), + [anon_sym_EQ] = ACTIONS(4892), + [anon_sym_QMARK] = ACTIONS(4892), + [anon_sym_LBRACK] = ACTIONS(4894), + [anon_sym_BSLASH] = ACTIONS(4894), + [anon_sym_CARET] = ACTIONS(4894), + [anon_sym__] = ACTIONS(4892), + [anon_sym_BQUOTE] = ACTIONS(4892), + [anon_sym_LBRACE] = ACTIONS(4892), + [anon_sym_PIPE] = ACTIONS(4892), + [anon_sym_TILDE] = ACTIONS(4892), + [anon_sym_LPAREN] = ACTIONS(4892), + [anon_sym_RPAREN] = ACTIONS(4892), + [sym__newline_token] = ACTIONS(4892), + [aux_sym_insert_token1] = ACTIONS(4892), + [aux_sym_delete_token1] = ACTIONS(4892), + [aux_sym_highlight_token1] = ACTIONS(4892), + [aux_sym_edit_comment_token1] = ACTIONS(4892), + [anon_sym_CARET_LBRACK] = ACTIONS(4892), + [anon_sym_LBRACK_CARET] = ACTIONS(4892), + [sym_uri_autolink] = ACTIONS(4892), + [sym_email_autolink] = ACTIONS(4892), + [sym__whitespace_ge_2] = ACTIONS(4892), + [aux_sym__whitespace_token1] = ACTIONS(4894), + [sym__word_no_digit] = ACTIONS(4892), + [sym__digits] = ACTIONS(4892), + [anon_sym_DASH_DASH] = ACTIONS(4894), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4892), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4892), + [sym__code_span_start] = ACTIONS(4892), + [sym__emphasis_open_star] = ACTIONS(4892), + [sym__emphasis_open_underscore] = ACTIONS(4892), + [sym__strikeout_open] = ACTIONS(4892), + [sym__latex_span_start] = ACTIONS(4892), + [sym__single_quote_open] = ACTIONS(4892), + [sym__double_quote_open] = ACTIONS(4892), + [sym__superscript_open] = ACTIONS(4892), + [sym__subscript_open] = ACTIONS(4892), + [sym__subscript_close] = ACTIONS(4892), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4892), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4892), + [sym__cite_author_in_text] = ACTIONS(4892), + [sym__cite_suppress_author] = ACTIONS(4892), + [sym__shortcode_open_escaped] = ACTIONS(4892), + [sym__shortcode_open] = ACTIONS(4892), + [sym__unclosed_span] = ACTIONS(4892), + }, + [STATE(896)] = { + [sym__backslash_escape] = ACTIONS(4896), + [sym_entity_reference] = ACTIONS(4896), + [sym_numeric_character_reference] = ACTIONS(4896), + [anon_sym_LT] = ACTIONS(4898), + [anon_sym_GT] = ACTIONS(4896), + [anon_sym_BANG] = ACTIONS(4896), + [anon_sym_DQUOTE] = ACTIONS(4896), + [anon_sym_POUND] = ACTIONS(4896), + [anon_sym_DOLLAR] = ACTIONS(4896), + [anon_sym_PERCENT] = ACTIONS(4896), + [anon_sym_AMP] = ACTIONS(4898), + [anon_sym_SQUOTE] = ACTIONS(4896), + [anon_sym_STAR] = ACTIONS(4896), + [anon_sym_PLUS] = ACTIONS(4896), + [anon_sym_COMMA] = ACTIONS(4896), + [anon_sym_DASH] = ACTIONS(4898), + [anon_sym_DOT] = ACTIONS(4898), + [anon_sym_SLASH] = ACTIONS(4896), + [anon_sym_COLON] = ACTIONS(4896), + [anon_sym_SEMI] = ACTIONS(4896), + [anon_sym_EQ] = ACTIONS(4896), + [anon_sym_QMARK] = ACTIONS(4896), + [anon_sym_LBRACK] = ACTIONS(4898), + [anon_sym_BSLASH] = ACTIONS(4898), + [anon_sym_CARET] = ACTIONS(4898), + [anon_sym__] = ACTIONS(4896), + [anon_sym_BQUOTE] = ACTIONS(4896), + [anon_sym_LBRACE] = ACTIONS(4896), + [anon_sym_PIPE] = ACTIONS(4896), + [anon_sym_TILDE] = ACTIONS(4896), + [anon_sym_LPAREN] = ACTIONS(4896), + [anon_sym_RPAREN] = ACTIONS(4896), + [sym__newline_token] = ACTIONS(4896), + [aux_sym_insert_token1] = ACTIONS(4896), + [aux_sym_delete_token1] = ACTIONS(4896), + [aux_sym_highlight_token1] = ACTIONS(4896), + [aux_sym_edit_comment_token1] = ACTIONS(4896), + [anon_sym_CARET_LBRACK] = ACTIONS(4896), + [anon_sym_LBRACK_CARET] = ACTIONS(4896), + [sym_uri_autolink] = ACTIONS(4896), + [sym_email_autolink] = ACTIONS(4896), + [sym__whitespace_ge_2] = ACTIONS(4896), + [aux_sym__whitespace_token1] = ACTIONS(4898), + [sym__word_no_digit] = ACTIONS(4896), + [sym__digits] = ACTIONS(4896), + [anon_sym_DASH_DASH] = ACTIONS(4898), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4896), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4896), + [sym__code_span_start] = ACTIONS(4896), + [sym__emphasis_open_star] = ACTIONS(4896), + [sym__emphasis_open_underscore] = ACTIONS(4896), + [sym__strikeout_open] = ACTIONS(4896), + [sym__latex_span_start] = ACTIONS(4896), + [sym__single_quote_open] = ACTIONS(4896), + [sym__double_quote_open] = ACTIONS(4896), + [sym__superscript_open] = ACTIONS(4896), + [sym__subscript_open] = ACTIONS(4896), + [sym__subscript_close] = ACTIONS(4896), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4896), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4896), + [sym__cite_author_in_text] = ACTIONS(4896), + [sym__cite_suppress_author] = ACTIONS(4896), + [sym__shortcode_open_escaped] = ACTIONS(4896), + [sym__shortcode_open] = ACTIONS(4896), + [sym__unclosed_span] = ACTIONS(4896), + }, + [STATE(897)] = { + [sym__backslash_escape] = ACTIONS(4534), + [sym_entity_reference] = ACTIONS(4534), + [sym_numeric_character_reference] = ACTIONS(4534), + [anon_sym_LT] = ACTIONS(4536), + [anon_sym_GT] = ACTIONS(4534), + [anon_sym_BANG] = ACTIONS(4534), + [anon_sym_DQUOTE] = ACTIONS(4534), + [anon_sym_POUND] = ACTIONS(4534), + [anon_sym_DOLLAR] = ACTIONS(4534), + [anon_sym_PERCENT] = ACTIONS(4534), + [anon_sym_AMP] = ACTIONS(4536), + [anon_sym_SQUOTE] = ACTIONS(4534), + [anon_sym_STAR] = ACTIONS(4534), + [anon_sym_PLUS] = ACTIONS(4534), + [anon_sym_COMMA] = ACTIONS(4534), + [anon_sym_DASH] = ACTIONS(4536), + [anon_sym_DOT] = ACTIONS(4536), + [anon_sym_SLASH] = ACTIONS(4534), + [anon_sym_COLON] = ACTIONS(4534), + [anon_sym_SEMI] = ACTIONS(4534), + [anon_sym_EQ] = ACTIONS(4534), + [anon_sym_QMARK] = ACTIONS(4534), + [anon_sym_LBRACK] = ACTIONS(4536), + [anon_sym_BSLASH] = ACTIONS(4536), + [anon_sym_CARET] = ACTIONS(4536), + [anon_sym__] = ACTIONS(4534), + [anon_sym_BQUOTE] = ACTIONS(4534), + [anon_sym_LBRACE] = ACTIONS(4534), + [anon_sym_PIPE] = ACTIONS(4534), + [anon_sym_TILDE] = ACTIONS(4534), + [anon_sym_LPAREN] = ACTIONS(4534), + [anon_sym_RPAREN] = ACTIONS(4534), + [sym__newline_token] = ACTIONS(4534), + [aux_sym_insert_token1] = ACTIONS(4534), + [aux_sym_delete_token1] = ACTIONS(4534), + [aux_sym_highlight_token1] = ACTIONS(4534), + [aux_sym_edit_comment_token1] = ACTIONS(4534), + [anon_sym_CARET_LBRACK] = ACTIONS(4534), + [anon_sym_LBRACK_CARET] = ACTIONS(4534), + [sym_uri_autolink] = ACTIONS(4534), + [sym_email_autolink] = ACTIONS(4534), + [sym__whitespace_ge_2] = ACTIONS(4534), + [aux_sym__whitespace_token1] = ACTIONS(4536), + [sym__word_no_digit] = ACTIONS(4534), + [sym__digits] = ACTIONS(4534), + [anon_sym_DASH_DASH] = ACTIONS(4536), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4534), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4534), + [sym__code_span_start] = ACTIONS(4534), + [sym__emphasis_open_star] = ACTIONS(4534), + [sym__emphasis_open_underscore] = ACTIONS(4534), + [sym__strikeout_open] = ACTIONS(4534), + [sym__latex_span_start] = ACTIONS(4534), + [sym__single_quote_open] = ACTIONS(4534), + [sym__double_quote_open] = ACTIONS(4534), + [sym__superscript_open] = ACTIONS(4534), + [sym__subscript_open] = ACTIONS(4534), + [sym__subscript_close] = ACTIONS(4534), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4534), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4534), + [sym__cite_author_in_text] = ACTIONS(4534), + [sym__cite_suppress_author] = ACTIONS(4534), + [sym__shortcode_open_escaped] = ACTIONS(4534), + [sym__shortcode_open] = ACTIONS(4534), + [sym__unclosed_span] = ACTIONS(4534), + }, + [STATE(898)] = { + [sym__backslash_escape] = ACTIONS(4908), + [sym_entity_reference] = ACTIONS(4908), + [sym_numeric_character_reference] = ACTIONS(4908), + [anon_sym_LT] = ACTIONS(4910), + [anon_sym_GT] = ACTIONS(4908), + [anon_sym_BANG] = ACTIONS(4908), + [anon_sym_DQUOTE] = ACTIONS(4908), + [anon_sym_POUND] = ACTIONS(4908), + [anon_sym_DOLLAR] = ACTIONS(4908), + [anon_sym_PERCENT] = ACTIONS(4908), + [anon_sym_AMP] = ACTIONS(4910), + [anon_sym_SQUOTE] = ACTIONS(4908), + [anon_sym_STAR] = ACTIONS(4908), + [anon_sym_PLUS] = ACTIONS(4908), + [anon_sym_COMMA] = ACTIONS(4908), + [anon_sym_DASH] = ACTIONS(4910), + [anon_sym_DOT] = ACTIONS(4910), + [anon_sym_SLASH] = ACTIONS(4908), + [anon_sym_COLON] = ACTIONS(4908), + [anon_sym_SEMI] = ACTIONS(4908), + [anon_sym_EQ] = ACTIONS(4908), + [anon_sym_QMARK] = ACTIONS(4908), + [anon_sym_LBRACK] = ACTIONS(4910), + [anon_sym_BSLASH] = ACTIONS(4910), + [anon_sym_CARET] = ACTIONS(4910), + [anon_sym__] = ACTIONS(4908), + [anon_sym_BQUOTE] = ACTIONS(4908), + [anon_sym_LBRACE] = ACTIONS(4908), + [anon_sym_PIPE] = ACTIONS(4908), + [anon_sym_TILDE] = ACTIONS(4908), + [anon_sym_LPAREN] = ACTIONS(4908), + [anon_sym_RPAREN] = ACTIONS(4908), + [sym__newline_token] = ACTIONS(4908), + [aux_sym_insert_token1] = ACTIONS(4908), + [aux_sym_delete_token1] = ACTIONS(4908), + [aux_sym_highlight_token1] = ACTIONS(4908), + [aux_sym_edit_comment_token1] = ACTIONS(4908), + [anon_sym_CARET_LBRACK] = ACTIONS(4908), + [anon_sym_LBRACK_CARET] = ACTIONS(4908), + [sym_uri_autolink] = ACTIONS(4908), + [sym_email_autolink] = ACTIONS(4908), + [sym__whitespace_ge_2] = ACTIONS(4908), + [aux_sym__whitespace_token1] = ACTIONS(4910), + [sym__word_no_digit] = ACTIONS(4908), + [sym__digits] = ACTIONS(4908), + [anon_sym_DASH_DASH] = ACTIONS(4910), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4908), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4908), + [sym__code_span_start] = ACTIONS(4908), + [sym__emphasis_open_star] = ACTIONS(4908), + [sym__emphasis_open_underscore] = ACTIONS(4908), + [sym__strikeout_open] = ACTIONS(4908), + [sym__strikeout_close] = ACTIONS(4908), + [sym__latex_span_start] = ACTIONS(4908), + [sym__single_quote_open] = ACTIONS(4908), + [sym__double_quote_open] = ACTIONS(4908), + [sym__superscript_open] = ACTIONS(4908), + [sym__subscript_open] = ACTIONS(4908), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4908), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4908), + [sym__cite_author_in_text] = ACTIONS(4908), + [sym__cite_suppress_author] = ACTIONS(4908), + [sym__shortcode_open_escaped] = ACTIONS(4908), + [sym__shortcode_open] = ACTIONS(4908), + [sym__unclosed_span] = ACTIONS(4908), + }, + [STATE(899)] = { + [sym__backslash_escape] = ACTIONS(4546), + [sym_entity_reference] = ACTIONS(4546), + [sym_numeric_character_reference] = ACTIONS(4546), + [anon_sym_LT] = ACTIONS(4548), + [anon_sym_GT] = ACTIONS(4546), + [anon_sym_BANG] = ACTIONS(4546), + [anon_sym_DQUOTE] = ACTIONS(4546), + [anon_sym_POUND] = ACTIONS(4546), + [anon_sym_DOLLAR] = ACTIONS(4546), + [anon_sym_PERCENT] = ACTIONS(4546), + [anon_sym_AMP] = ACTIONS(4548), + [anon_sym_SQUOTE] = ACTIONS(4546), + [anon_sym_STAR] = ACTIONS(4546), + [anon_sym_PLUS] = ACTIONS(4546), + [anon_sym_COMMA] = ACTIONS(4546), + [anon_sym_DASH] = ACTIONS(4548), + [anon_sym_DOT] = ACTIONS(4548), + [anon_sym_SLASH] = ACTIONS(4546), + [anon_sym_COLON] = ACTIONS(4546), + [anon_sym_SEMI] = ACTIONS(4546), + [anon_sym_EQ] = ACTIONS(4546), + [anon_sym_QMARK] = ACTIONS(4546), + [anon_sym_LBRACK] = ACTIONS(4548), + [anon_sym_BSLASH] = ACTIONS(4548), + [anon_sym_CARET] = ACTIONS(4548), + [anon_sym__] = ACTIONS(4546), + [anon_sym_BQUOTE] = ACTIONS(4546), + [anon_sym_LBRACE] = ACTIONS(4546), + [anon_sym_PIPE] = ACTIONS(4546), + [anon_sym_TILDE] = ACTIONS(4546), + [anon_sym_LPAREN] = ACTIONS(4546), + [anon_sym_RPAREN] = ACTIONS(4546), + [sym__newline_token] = ACTIONS(4546), + [aux_sym_insert_token1] = ACTIONS(4546), + [aux_sym_delete_token1] = ACTIONS(4546), + [aux_sym_highlight_token1] = ACTIONS(4546), + [aux_sym_edit_comment_token1] = ACTIONS(4546), + [anon_sym_CARET_LBRACK] = ACTIONS(4546), + [anon_sym_LBRACK_CARET] = ACTIONS(4546), + [sym_uri_autolink] = ACTIONS(4546), + [sym_email_autolink] = ACTIONS(4546), + [sym__whitespace_ge_2] = ACTIONS(4546), + [aux_sym__whitespace_token1] = ACTIONS(4548), + [sym__word_no_digit] = ACTIONS(4546), + [sym__digits] = ACTIONS(4546), + [anon_sym_DASH_DASH] = ACTIONS(4548), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4546), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4546), + [sym__code_span_start] = ACTIONS(4546), + [sym__emphasis_open_star] = ACTIONS(4546), + [sym__emphasis_open_underscore] = ACTIONS(4546), + [sym__strikeout_open] = ACTIONS(4546), + [sym__latex_span_start] = ACTIONS(4546), + [sym__single_quote_open] = ACTIONS(4546), + [sym__double_quote_open] = ACTIONS(4546), + [sym__superscript_open] = ACTIONS(4546), + [sym__subscript_open] = ACTIONS(4546), + [sym__subscript_close] = ACTIONS(4546), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4546), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4546), + [sym__cite_author_in_text] = ACTIONS(4546), + [sym__cite_suppress_author] = ACTIONS(4546), + [sym__shortcode_open_escaped] = ACTIONS(4546), + [sym__shortcode_open] = ACTIONS(4546), + [sym__unclosed_span] = ACTIONS(4546), + }, + [STATE(900)] = { + [sym__backslash_escape] = ACTIONS(4550), + [sym_entity_reference] = ACTIONS(4550), + [sym_numeric_character_reference] = ACTIONS(4550), + [anon_sym_LT] = ACTIONS(4552), + [anon_sym_GT] = ACTIONS(4550), + [anon_sym_BANG] = ACTIONS(4550), + [anon_sym_DQUOTE] = ACTIONS(4550), + [anon_sym_POUND] = ACTIONS(4550), + [anon_sym_DOLLAR] = ACTIONS(4550), + [anon_sym_PERCENT] = ACTIONS(4550), + [anon_sym_AMP] = ACTIONS(4552), + [anon_sym_SQUOTE] = ACTIONS(4550), + [anon_sym_STAR] = ACTIONS(4550), + [anon_sym_PLUS] = ACTIONS(4550), + [anon_sym_COMMA] = ACTIONS(4550), + [anon_sym_DASH] = ACTIONS(4552), + [anon_sym_DOT] = ACTIONS(4552), + [anon_sym_SLASH] = ACTIONS(4550), + [anon_sym_COLON] = ACTIONS(4550), + [anon_sym_SEMI] = ACTIONS(4550), + [anon_sym_EQ] = ACTIONS(4550), + [anon_sym_QMARK] = ACTIONS(4550), + [anon_sym_LBRACK] = ACTIONS(4552), + [anon_sym_BSLASH] = ACTIONS(4552), + [anon_sym_CARET] = ACTIONS(4552), + [anon_sym__] = ACTIONS(4550), + [anon_sym_BQUOTE] = ACTIONS(4550), + [anon_sym_LBRACE] = ACTIONS(4550), + [anon_sym_PIPE] = ACTIONS(4550), + [anon_sym_TILDE] = ACTIONS(4550), + [anon_sym_LPAREN] = ACTIONS(4550), + [anon_sym_RPAREN] = ACTIONS(4550), + [sym__newline_token] = ACTIONS(4550), + [aux_sym_insert_token1] = ACTIONS(4550), + [aux_sym_delete_token1] = ACTIONS(4550), + [aux_sym_highlight_token1] = ACTIONS(4550), + [aux_sym_edit_comment_token1] = ACTIONS(4550), + [anon_sym_CARET_LBRACK] = ACTIONS(4550), + [anon_sym_LBRACK_CARET] = ACTIONS(4550), + [sym_uri_autolink] = ACTIONS(4550), + [sym_email_autolink] = ACTIONS(4550), + [sym__whitespace_ge_2] = ACTIONS(4550), + [aux_sym__whitespace_token1] = ACTIONS(4552), + [sym__word_no_digit] = ACTIONS(4550), + [sym__digits] = ACTIONS(4550), + [anon_sym_DASH_DASH] = ACTIONS(4552), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4550), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4550), + [sym__code_span_start] = ACTIONS(4550), + [sym__emphasis_open_star] = ACTIONS(4550), + [sym__emphasis_open_underscore] = ACTIONS(4550), + [sym__strikeout_open] = ACTIONS(4550), + [sym__strikeout_close] = ACTIONS(4550), + [sym__latex_span_start] = ACTIONS(4550), + [sym__single_quote_open] = ACTIONS(4550), + [sym__double_quote_open] = ACTIONS(4550), + [sym__superscript_open] = ACTIONS(4550), + [sym__subscript_open] = ACTIONS(4550), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4550), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4550), + [sym__cite_author_in_text] = ACTIONS(4550), + [sym__cite_suppress_author] = ACTIONS(4550), + [sym__shortcode_open_escaped] = ACTIONS(4550), + [sym__shortcode_open] = ACTIONS(4550), + [sym__unclosed_span] = ACTIONS(4550), + }, + [STATE(901)] = { + [sym__backslash_escape] = ACTIONS(4904), + [sym_entity_reference] = ACTIONS(4904), + [sym_numeric_character_reference] = ACTIONS(4904), + [anon_sym_LT] = ACTIONS(4906), + [anon_sym_GT] = ACTIONS(4904), + [anon_sym_BANG] = ACTIONS(4904), + [anon_sym_DQUOTE] = ACTIONS(4904), + [anon_sym_POUND] = ACTIONS(4904), + [anon_sym_DOLLAR] = ACTIONS(4904), + [anon_sym_PERCENT] = ACTIONS(4904), + [anon_sym_AMP] = ACTIONS(4906), + [anon_sym_SQUOTE] = ACTIONS(4904), + [anon_sym_STAR] = ACTIONS(4904), + [anon_sym_PLUS] = ACTIONS(4904), + [anon_sym_COMMA] = ACTIONS(4904), + [anon_sym_DASH] = ACTIONS(4906), + [anon_sym_DOT] = ACTIONS(4906), + [anon_sym_SLASH] = ACTIONS(4904), + [anon_sym_COLON] = ACTIONS(4904), + [anon_sym_SEMI] = ACTIONS(4904), + [anon_sym_EQ] = ACTIONS(4904), + [anon_sym_QMARK] = ACTIONS(4904), + [anon_sym_LBRACK] = ACTIONS(4906), + [anon_sym_BSLASH] = ACTIONS(4906), + [anon_sym_CARET] = ACTIONS(4906), + [anon_sym__] = ACTIONS(4904), + [anon_sym_BQUOTE] = ACTIONS(4904), + [anon_sym_LBRACE] = ACTIONS(4904), + [anon_sym_PIPE] = ACTIONS(4904), + [anon_sym_TILDE] = ACTIONS(4904), + [anon_sym_LPAREN] = ACTIONS(4904), + [anon_sym_RPAREN] = ACTIONS(4904), + [sym__newline_token] = ACTIONS(4904), + [aux_sym_insert_token1] = ACTIONS(4904), + [aux_sym_delete_token1] = ACTIONS(4904), + [aux_sym_highlight_token1] = ACTIONS(4904), + [aux_sym_edit_comment_token1] = ACTIONS(4904), + [anon_sym_CARET_LBRACK] = ACTIONS(4904), + [anon_sym_LBRACK_CARET] = ACTIONS(4904), + [sym_uri_autolink] = ACTIONS(4904), + [sym_email_autolink] = ACTIONS(4904), + [sym__whitespace_ge_2] = ACTIONS(4904), + [aux_sym__whitespace_token1] = ACTIONS(4906), + [sym__word_no_digit] = ACTIONS(4904), + [sym__digits] = ACTIONS(4904), + [anon_sym_DASH_DASH] = ACTIONS(4906), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4904), + [sym__code_span_start] = ACTIONS(4904), + [sym__emphasis_open_star] = ACTIONS(4904), + [sym__emphasis_open_underscore] = ACTIONS(4904), + [sym__strikeout_open] = ACTIONS(4904), + [sym__latex_span_start] = ACTIONS(4904), + [sym__single_quote_open] = ACTIONS(4904), + [sym__double_quote_open] = ACTIONS(4904), + [sym__superscript_open] = ACTIONS(4904), + [sym__subscript_open] = ACTIONS(4904), + [sym__subscript_close] = ACTIONS(4904), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4904), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4904), + [sym__cite_author_in_text] = ACTIONS(4904), + [sym__cite_suppress_author] = ACTIONS(4904), + [sym__shortcode_open_escaped] = ACTIONS(4904), + [sym__shortcode_open] = ACTIONS(4904), + [sym__unclosed_span] = ACTIONS(4904), + }, + [STATE(902)] = { + [sym__backslash_escape] = ACTIONS(4908), + [sym_entity_reference] = ACTIONS(4908), + [sym_numeric_character_reference] = ACTIONS(4908), + [anon_sym_LT] = ACTIONS(4910), + [anon_sym_GT] = ACTIONS(4908), + [anon_sym_BANG] = ACTIONS(4908), + [anon_sym_DQUOTE] = ACTIONS(4908), + [anon_sym_POUND] = ACTIONS(4908), + [anon_sym_DOLLAR] = ACTIONS(4908), + [anon_sym_PERCENT] = ACTIONS(4908), + [anon_sym_AMP] = ACTIONS(4910), + [anon_sym_SQUOTE] = ACTIONS(4908), + [anon_sym_STAR] = ACTIONS(4908), + [anon_sym_PLUS] = ACTIONS(4908), + [anon_sym_COMMA] = ACTIONS(4908), + [anon_sym_DASH] = ACTIONS(4910), + [anon_sym_DOT] = ACTIONS(4910), + [anon_sym_SLASH] = ACTIONS(4908), + [anon_sym_COLON] = ACTIONS(4908), + [anon_sym_SEMI] = ACTIONS(4908), + [anon_sym_EQ] = ACTIONS(4908), + [anon_sym_QMARK] = ACTIONS(4908), + [anon_sym_LBRACK] = ACTIONS(4910), + [anon_sym_BSLASH] = ACTIONS(4910), + [anon_sym_CARET] = ACTIONS(4910), + [anon_sym__] = ACTIONS(4908), + [anon_sym_BQUOTE] = ACTIONS(4908), + [anon_sym_LBRACE] = ACTIONS(4908), + [anon_sym_PIPE] = ACTIONS(4908), + [anon_sym_TILDE] = ACTIONS(4908), + [anon_sym_LPAREN] = ACTIONS(4908), + [anon_sym_RPAREN] = ACTIONS(4908), + [sym__newline_token] = ACTIONS(4908), + [aux_sym_insert_token1] = ACTIONS(4908), + [aux_sym_delete_token1] = ACTIONS(4908), + [aux_sym_highlight_token1] = ACTIONS(4908), + [aux_sym_edit_comment_token1] = ACTIONS(4908), + [anon_sym_CARET_LBRACK] = ACTIONS(4908), + [anon_sym_LBRACK_CARET] = ACTIONS(4908), + [sym_uri_autolink] = ACTIONS(4908), + [sym_email_autolink] = ACTIONS(4908), + [sym__whitespace_ge_2] = ACTIONS(4908), + [aux_sym__whitespace_token1] = ACTIONS(4910), + [sym__word_no_digit] = ACTIONS(4908), + [sym__digits] = ACTIONS(4908), + [anon_sym_DASH_DASH] = ACTIONS(4910), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4908), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4908), + [sym__code_span_start] = ACTIONS(4908), + [sym__emphasis_open_star] = ACTIONS(4908), + [sym__emphasis_open_underscore] = ACTIONS(4908), + [sym__strikeout_open] = ACTIONS(4908), + [sym__latex_span_start] = ACTIONS(4908), + [sym__single_quote_open] = ACTIONS(4908), + [sym__double_quote_open] = ACTIONS(4908), + [sym__superscript_open] = ACTIONS(4908), + [sym__subscript_open] = ACTIONS(4908), + [sym__subscript_close] = ACTIONS(4908), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4908), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4908), + [sym__cite_author_in_text] = ACTIONS(4908), + [sym__cite_suppress_author] = ACTIONS(4908), + [sym__shortcode_open_escaped] = ACTIONS(4908), + [sym__shortcode_open] = ACTIONS(4908), + [sym__unclosed_span] = ACTIONS(4908), + }, + [STATE(903)] = { + [sym__backslash_escape] = ACTIONS(4550), + [sym_entity_reference] = ACTIONS(4550), + [sym_numeric_character_reference] = ACTIONS(4550), + [anon_sym_LT] = ACTIONS(4552), + [anon_sym_GT] = ACTIONS(4550), + [anon_sym_BANG] = ACTIONS(4550), + [anon_sym_DQUOTE] = ACTIONS(4550), + [anon_sym_POUND] = ACTIONS(4550), + [anon_sym_DOLLAR] = ACTIONS(4550), + [anon_sym_PERCENT] = ACTIONS(4550), + [anon_sym_AMP] = ACTIONS(4552), + [anon_sym_SQUOTE] = ACTIONS(4550), + [anon_sym_STAR] = ACTIONS(4550), + [anon_sym_PLUS] = ACTIONS(4550), + [anon_sym_COMMA] = ACTIONS(4550), + [anon_sym_DASH] = ACTIONS(4552), + [anon_sym_DOT] = ACTIONS(4552), + [anon_sym_SLASH] = ACTIONS(4550), + [anon_sym_COLON] = ACTIONS(4550), + [anon_sym_SEMI] = ACTIONS(4550), + [anon_sym_EQ] = ACTIONS(4550), + [anon_sym_QMARK] = ACTIONS(4550), + [anon_sym_LBRACK] = ACTIONS(4552), + [anon_sym_BSLASH] = ACTIONS(4552), + [anon_sym_CARET] = ACTIONS(4552), + [anon_sym__] = ACTIONS(4550), + [anon_sym_BQUOTE] = ACTIONS(4550), + [anon_sym_LBRACE] = ACTIONS(4550), + [anon_sym_PIPE] = ACTIONS(4550), + [anon_sym_TILDE] = ACTIONS(4550), + [anon_sym_LPAREN] = ACTIONS(4550), + [anon_sym_RPAREN] = ACTIONS(4550), + [sym__newline_token] = ACTIONS(4550), + [aux_sym_insert_token1] = ACTIONS(4550), + [aux_sym_delete_token1] = ACTIONS(4550), + [aux_sym_highlight_token1] = ACTIONS(4550), + [aux_sym_edit_comment_token1] = ACTIONS(4550), + [anon_sym_CARET_LBRACK] = ACTIONS(4550), + [anon_sym_LBRACK_CARET] = ACTIONS(4550), + [sym_uri_autolink] = ACTIONS(4550), + [sym_email_autolink] = ACTIONS(4550), + [sym__whitespace_ge_2] = ACTIONS(4550), + [aux_sym__whitespace_token1] = ACTIONS(4552), + [sym__word_no_digit] = ACTIONS(4550), + [sym__digits] = ACTIONS(4550), + [anon_sym_DASH_DASH] = ACTIONS(4552), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4550), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4550), + [sym__code_span_start] = ACTIONS(4550), + [sym__emphasis_open_star] = ACTIONS(4550), + [sym__emphasis_open_underscore] = ACTIONS(4550), + [sym__strikeout_open] = ACTIONS(4550), + [sym__latex_span_start] = ACTIONS(4550), + [sym__single_quote_open] = ACTIONS(4550), + [sym__double_quote_open] = ACTIONS(4550), + [sym__superscript_open] = ACTIONS(4550), + [sym__subscript_open] = ACTIONS(4550), + [sym__subscript_close] = ACTIONS(4550), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4550), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4550), + [sym__cite_author_in_text] = ACTIONS(4550), + [sym__cite_suppress_author] = ACTIONS(4550), + [sym__shortcode_open_escaped] = ACTIONS(4550), + [sym__shortcode_open] = ACTIONS(4550), + [sym__unclosed_span] = ACTIONS(4550), + }, + [STATE(904)] = { + [sym__backslash_escape] = ACTIONS(4992), + [sym_entity_reference] = ACTIONS(4992), + [sym_numeric_character_reference] = ACTIONS(4992), + [anon_sym_LT] = ACTIONS(4994), + [anon_sym_GT] = ACTIONS(4992), + [anon_sym_BANG] = ACTIONS(4992), + [anon_sym_DQUOTE] = ACTIONS(4992), + [anon_sym_POUND] = ACTIONS(4992), + [anon_sym_DOLLAR] = ACTIONS(4992), + [anon_sym_PERCENT] = ACTIONS(4992), + [anon_sym_AMP] = ACTIONS(4994), + [anon_sym_SQUOTE] = ACTIONS(4992), + [anon_sym_STAR] = ACTIONS(4992), + [anon_sym_PLUS] = ACTIONS(4992), + [anon_sym_COMMA] = ACTIONS(4992), + [anon_sym_DASH] = ACTIONS(4994), + [anon_sym_DOT] = ACTIONS(4994), + [anon_sym_SLASH] = ACTIONS(4992), + [anon_sym_COLON] = ACTIONS(4992), + [anon_sym_SEMI] = ACTIONS(4992), + [anon_sym_EQ] = ACTIONS(4992), + [anon_sym_QMARK] = ACTIONS(4992), + [anon_sym_LBRACK] = ACTIONS(4994), + [anon_sym_BSLASH] = ACTIONS(4994), + [anon_sym_CARET] = ACTIONS(4994), + [anon_sym__] = ACTIONS(4992), + [anon_sym_BQUOTE] = ACTIONS(4992), + [anon_sym_LBRACE] = ACTIONS(4992), + [anon_sym_PIPE] = ACTIONS(4992), + [anon_sym_TILDE] = ACTIONS(4992), + [anon_sym_LPAREN] = ACTIONS(4992), + [anon_sym_RPAREN] = ACTIONS(4992), + [sym__newline_token] = ACTIONS(4992), + [aux_sym_insert_token1] = ACTIONS(4992), + [aux_sym_delete_token1] = ACTIONS(4992), + [aux_sym_highlight_token1] = ACTIONS(4992), + [aux_sym_edit_comment_token1] = ACTIONS(4992), + [anon_sym_CARET_LBRACK] = ACTIONS(4992), + [anon_sym_LBRACK_CARET] = ACTIONS(4992), + [sym_uri_autolink] = ACTIONS(4992), + [sym_email_autolink] = ACTIONS(4992), + [sym__whitespace_ge_2] = ACTIONS(4992), + [aux_sym__whitespace_token1] = ACTIONS(4994), + [sym__word_no_digit] = ACTIONS(4992), + [sym__digits] = ACTIONS(4992), + [anon_sym_DASH_DASH] = ACTIONS(4994), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4992), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4992), + [sym__code_span_start] = ACTIONS(4992), + [sym__emphasis_open_star] = ACTIONS(4992), + [sym__emphasis_open_underscore] = ACTIONS(4992), + [sym__emphasis_close_underscore] = ACTIONS(4992), + [sym__strikeout_open] = ACTIONS(4992), + [sym__latex_span_start] = ACTIONS(4992), + [sym__single_quote_open] = ACTIONS(4992), + [sym__double_quote_open] = ACTIONS(4992), + [sym__superscript_open] = ACTIONS(4992), + [sym__subscript_open] = ACTIONS(4992), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4992), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4992), + [sym__cite_author_in_text] = ACTIONS(4992), + [sym__cite_suppress_author] = ACTIONS(4992), + [sym__shortcode_open_escaped] = ACTIONS(4992), + [sym__shortcode_open] = ACTIONS(4992), + [sym__unclosed_span] = ACTIONS(4992), + }, + [STATE(905)] = { + [sym__backslash_escape] = ACTIONS(4554), + [sym_entity_reference] = ACTIONS(4554), + [sym_numeric_character_reference] = ACTIONS(4554), + [anon_sym_LT] = ACTIONS(4556), + [anon_sym_GT] = ACTIONS(4554), + [anon_sym_BANG] = ACTIONS(4554), + [anon_sym_DQUOTE] = ACTIONS(4554), + [anon_sym_POUND] = ACTIONS(4554), + [anon_sym_DOLLAR] = ACTIONS(4554), + [anon_sym_PERCENT] = ACTIONS(4554), + [anon_sym_AMP] = ACTIONS(4556), + [anon_sym_SQUOTE] = ACTIONS(4554), + [anon_sym_STAR] = ACTIONS(4554), + [anon_sym_PLUS] = ACTIONS(4554), + [anon_sym_COMMA] = ACTIONS(4554), + [anon_sym_DASH] = ACTIONS(4556), + [anon_sym_DOT] = ACTIONS(4556), + [anon_sym_SLASH] = ACTIONS(4554), + [anon_sym_COLON] = ACTIONS(4554), + [anon_sym_SEMI] = ACTIONS(4554), + [anon_sym_EQ] = ACTIONS(4554), + [anon_sym_QMARK] = ACTIONS(4554), + [anon_sym_LBRACK] = ACTIONS(4556), + [anon_sym_BSLASH] = ACTIONS(4556), + [anon_sym_CARET] = ACTIONS(4556), + [anon_sym__] = ACTIONS(4554), + [anon_sym_BQUOTE] = ACTIONS(4554), + [anon_sym_LBRACE] = ACTIONS(4554), + [anon_sym_PIPE] = ACTIONS(4554), + [anon_sym_TILDE] = ACTIONS(4554), + [anon_sym_LPAREN] = ACTIONS(4554), + [anon_sym_RPAREN] = ACTIONS(4554), + [sym__newline_token] = ACTIONS(4554), + [aux_sym_insert_token1] = ACTIONS(4554), + [aux_sym_delete_token1] = ACTIONS(4554), + [aux_sym_highlight_token1] = ACTIONS(4554), + [aux_sym_edit_comment_token1] = ACTIONS(4554), + [anon_sym_CARET_LBRACK] = ACTIONS(4554), + [anon_sym_LBRACK_CARET] = ACTIONS(4554), + [sym_uri_autolink] = ACTIONS(4554), + [sym_email_autolink] = ACTIONS(4554), + [sym__whitespace_ge_2] = ACTIONS(4554), + [aux_sym__whitespace_token1] = ACTIONS(4556), + [sym__word_no_digit] = ACTIONS(4554), + [sym__digits] = ACTIONS(4554), + [anon_sym_DASH_DASH] = ACTIONS(4556), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4554), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4554), + [sym__code_span_start] = ACTIONS(4554), + [sym__emphasis_open_star] = ACTIONS(4554), + [sym__emphasis_open_underscore] = ACTIONS(4554), + [sym__strikeout_open] = ACTIONS(4554), + [sym__latex_span_start] = ACTIONS(4554), + [sym__single_quote_open] = ACTIONS(4554), + [sym__double_quote_open] = ACTIONS(4554), + [sym__superscript_open] = ACTIONS(4554), + [sym__subscript_open] = ACTIONS(4554), + [sym__subscript_close] = ACTIONS(4554), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4554), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4554), + [sym__cite_author_in_text] = ACTIONS(4554), + [sym__cite_suppress_author] = ACTIONS(4554), + [sym__shortcode_open_escaped] = ACTIONS(4554), + [sym__shortcode_open] = ACTIONS(4554), + [sym__unclosed_span] = ACTIONS(4554), + }, + [STATE(906)] = { + [sym__backslash_escape] = ACTIONS(4554), + [sym_entity_reference] = ACTIONS(4554), + [sym_numeric_character_reference] = ACTIONS(4554), + [anon_sym_LT] = ACTIONS(4556), + [anon_sym_GT] = ACTIONS(4554), + [anon_sym_BANG] = ACTIONS(4554), + [anon_sym_DQUOTE] = ACTIONS(4554), + [anon_sym_POUND] = ACTIONS(4554), + [anon_sym_DOLLAR] = ACTIONS(4554), + [anon_sym_PERCENT] = ACTIONS(4554), + [anon_sym_AMP] = ACTIONS(4556), + [anon_sym_SQUOTE] = ACTIONS(4554), + [anon_sym_STAR] = ACTIONS(4554), + [anon_sym_PLUS] = ACTIONS(4554), + [anon_sym_COMMA] = ACTIONS(4554), + [anon_sym_DASH] = ACTIONS(4556), + [anon_sym_DOT] = ACTIONS(4556), + [anon_sym_SLASH] = ACTIONS(4554), + [anon_sym_COLON] = ACTIONS(4554), + [anon_sym_SEMI] = ACTIONS(4554), + [anon_sym_EQ] = ACTIONS(4554), + [anon_sym_QMARK] = ACTIONS(4554), + [anon_sym_LBRACK] = ACTIONS(4556), + [anon_sym_BSLASH] = ACTIONS(4556), + [anon_sym_CARET] = ACTIONS(4556), + [anon_sym__] = ACTIONS(4554), + [anon_sym_BQUOTE] = ACTIONS(4554), + [anon_sym_LBRACE] = ACTIONS(4554), + [anon_sym_PIPE] = ACTIONS(4554), + [anon_sym_TILDE] = ACTIONS(4554), + [anon_sym_LPAREN] = ACTIONS(4554), + [anon_sym_RPAREN] = ACTIONS(4554), + [sym__newline_token] = ACTIONS(4554), + [aux_sym_insert_token1] = ACTIONS(4554), + [aux_sym_delete_token1] = ACTIONS(4554), + [aux_sym_highlight_token1] = ACTIONS(4554), + [aux_sym_edit_comment_token1] = ACTIONS(4554), + [anon_sym_CARET_LBRACK] = ACTIONS(4554), + [anon_sym_LBRACK_CARET] = ACTIONS(4554), + [sym_uri_autolink] = ACTIONS(4554), + [sym_email_autolink] = ACTIONS(4554), + [sym__whitespace_ge_2] = ACTIONS(4554), + [aux_sym__whitespace_token1] = ACTIONS(4556), + [sym__word_no_digit] = ACTIONS(4554), + [sym__digits] = ACTIONS(4554), + [anon_sym_DASH_DASH] = ACTIONS(4556), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4554), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4554), + [sym__code_span_start] = ACTIONS(4554), + [sym__emphasis_open_star] = ACTIONS(4554), + [sym__emphasis_open_underscore] = ACTIONS(4554), + [sym__strikeout_open] = ACTIONS(4554), + [sym__strikeout_close] = ACTIONS(4554), + [sym__latex_span_start] = ACTIONS(4554), + [sym__single_quote_open] = ACTIONS(4554), + [sym__double_quote_open] = ACTIONS(4554), + [sym__superscript_open] = ACTIONS(4554), + [sym__subscript_open] = ACTIONS(4554), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4554), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4554), + [sym__cite_author_in_text] = ACTIONS(4554), + [sym__cite_suppress_author] = ACTIONS(4554), + [sym__shortcode_open_escaped] = ACTIONS(4554), + [sym__shortcode_open] = ACTIONS(4554), + [sym__unclosed_span] = ACTIONS(4554), + }, + [STATE(907)] = { + [sym__backslash_escape] = ACTIONS(4558), + [sym_entity_reference] = ACTIONS(4558), + [sym_numeric_character_reference] = ACTIONS(4558), + [anon_sym_LT] = ACTIONS(4560), + [anon_sym_GT] = ACTIONS(4558), + [anon_sym_BANG] = ACTIONS(4558), + [anon_sym_DQUOTE] = ACTIONS(4558), + [anon_sym_POUND] = ACTIONS(4558), + [anon_sym_DOLLAR] = ACTIONS(4558), + [anon_sym_PERCENT] = ACTIONS(4558), + [anon_sym_AMP] = ACTIONS(4560), + [anon_sym_SQUOTE] = ACTIONS(4558), + [anon_sym_STAR] = ACTIONS(4558), + [anon_sym_PLUS] = ACTIONS(4558), + [anon_sym_COMMA] = ACTIONS(4558), + [anon_sym_DASH] = ACTIONS(4560), + [anon_sym_DOT] = ACTIONS(4560), + [anon_sym_SLASH] = ACTIONS(4558), + [anon_sym_COLON] = ACTIONS(4558), + [anon_sym_SEMI] = ACTIONS(4558), + [anon_sym_EQ] = ACTIONS(4558), + [anon_sym_QMARK] = ACTIONS(4558), + [anon_sym_LBRACK] = ACTIONS(4560), + [anon_sym_BSLASH] = ACTIONS(4560), + [anon_sym_CARET] = ACTIONS(4560), + [anon_sym__] = ACTIONS(4558), + [anon_sym_BQUOTE] = ACTIONS(4558), + [anon_sym_LBRACE] = ACTIONS(4558), + [anon_sym_PIPE] = ACTIONS(4558), + [anon_sym_TILDE] = ACTIONS(4558), + [anon_sym_LPAREN] = ACTIONS(4558), + [anon_sym_RPAREN] = ACTIONS(4558), + [sym__newline_token] = ACTIONS(4558), + [aux_sym_insert_token1] = ACTIONS(4558), + [aux_sym_delete_token1] = ACTIONS(4558), + [aux_sym_highlight_token1] = ACTIONS(4558), + [aux_sym_edit_comment_token1] = ACTIONS(4558), + [anon_sym_CARET_LBRACK] = ACTIONS(4558), + [anon_sym_LBRACK_CARET] = ACTIONS(4558), + [sym_uri_autolink] = ACTIONS(4558), + [sym_email_autolink] = ACTIONS(4558), + [sym__whitespace_ge_2] = ACTIONS(4558), + [aux_sym__whitespace_token1] = ACTIONS(4560), + [sym__word_no_digit] = ACTIONS(4558), + [sym__digits] = ACTIONS(4558), + [anon_sym_DASH_DASH] = ACTIONS(4560), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4558), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4558), + [sym__code_span_start] = ACTIONS(4558), + [sym__emphasis_open_star] = ACTIONS(4558), + [sym__emphasis_open_underscore] = ACTIONS(4558), + [sym__strikeout_open] = ACTIONS(4558), + [sym__latex_span_start] = ACTIONS(4558), + [sym__single_quote_open] = ACTIONS(4558), + [sym__double_quote_open] = ACTIONS(4558), + [sym__superscript_open] = ACTIONS(4558), + [sym__subscript_open] = ACTIONS(4558), + [sym__subscript_close] = ACTIONS(4558), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4558), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4558), + [sym__cite_author_in_text] = ACTIONS(4558), + [sym__cite_suppress_author] = ACTIONS(4558), + [sym__shortcode_open_escaped] = ACTIONS(4558), + [sym__shortcode_open] = ACTIONS(4558), + [sym__unclosed_span] = ACTIONS(4558), + }, + [STATE(908)] = { + [sym__backslash_escape] = ACTIONS(4884), + [sym_entity_reference] = ACTIONS(4884), + [sym_numeric_character_reference] = ACTIONS(4884), + [anon_sym_LT] = ACTIONS(4886), + [anon_sym_GT] = ACTIONS(4884), + [anon_sym_BANG] = ACTIONS(4884), + [anon_sym_DQUOTE] = ACTIONS(4884), + [anon_sym_POUND] = ACTIONS(4884), + [anon_sym_DOLLAR] = ACTIONS(4884), + [anon_sym_PERCENT] = ACTIONS(4884), + [anon_sym_AMP] = ACTIONS(4886), + [anon_sym_SQUOTE] = ACTIONS(4884), + [anon_sym_STAR] = ACTIONS(4884), + [anon_sym_PLUS] = ACTIONS(4884), + [anon_sym_COMMA] = ACTIONS(4884), + [anon_sym_DASH] = ACTIONS(4886), + [anon_sym_DOT] = ACTIONS(4886), + [anon_sym_SLASH] = ACTIONS(4884), + [anon_sym_COLON] = ACTIONS(4884), + [anon_sym_SEMI] = ACTIONS(4884), + [anon_sym_EQ] = ACTIONS(4884), + [anon_sym_QMARK] = ACTIONS(4884), + [anon_sym_LBRACK] = ACTIONS(4886), + [anon_sym_BSLASH] = ACTIONS(4886), + [anon_sym_CARET] = ACTIONS(4886), + [anon_sym__] = ACTIONS(4884), + [anon_sym_BQUOTE] = ACTIONS(4884), + [anon_sym_LBRACE] = ACTIONS(4884), + [anon_sym_PIPE] = ACTIONS(4884), + [anon_sym_TILDE] = ACTIONS(4884), + [anon_sym_LPAREN] = ACTIONS(4884), + [anon_sym_RPAREN] = ACTIONS(4884), + [sym__newline_token] = ACTIONS(4884), + [aux_sym_insert_token1] = ACTIONS(4884), + [aux_sym_delete_token1] = ACTIONS(4884), + [aux_sym_highlight_token1] = ACTIONS(4884), + [aux_sym_edit_comment_token1] = ACTIONS(4884), + [anon_sym_CARET_LBRACK] = ACTIONS(4884), + [anon_sym_LBRACK_CARET] = ACTIONS(4884), + [sym_uri_autolink] = ACTIONS(4884), + [sym_email_autolink] = ACTIONS(4884), + [sym__whitespace_ge_2] = ACTIONS(4884), + [aux_sym__whitespace_token1] = ACTIONS(4886), + [sym__word_no_digit] = ACTIONS(4884), + [sym__digits] = ACTIONS(4884), + [anon_sym_DASH_DASH] = ACTIONS(4886), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4884), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4884), + [sym__code_span_start] = ACTIONS(4884), + [sym__emphasis_open_star] = ACTIONS(4884), + [sym__emphasis_open_underscore] = ACTIONS(4884), + [sym__emphasis_close_underscore] = ACTIONS(4884), + [sym__strikeout_open] = ACTIONS(4884), + [sym__latex_span_start] = ACTIONS(4884), + [sym__single_quote_open] = ACTIONS(4884), + [sym__double_quote_open] = ACTIONS(4884), + [sym__superscript_open] = ACTIONS(4884), + [sym__subscript_open] = ACTIONS(4884), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4884), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4884), + [sym__cite_author_in_text] = ACTIONS(4884), + [sym__cite_suppress_author] = ACTIONS(4884), + [sym__shortcode_open_escaped] = ACTIONS(4884), + [sym__shortcode_open] = ACTIONS(4884), + [sym__unclosed_span] = ACTIONS(4884), + }, + [STATE(909)] = { + [sym__backslash_escape] = ACTIONS(4562), + [sym_entity_reference] = ACTIONS(4562), + [sym_numeric_character_reference] = ACTIONS(4562), + [anon_sym_LT] = ACTIONS(4564), + [anon_sym_GT] = ACTIONS(4562), + [anon_sym_BANG] = ACTIONS(4562), + [anon_sym_DQUOTE] = ACTIONS(4562), + [anon_sym_POUND] = ACTIONS(4562), + [anon_sym_DOLLAR] = ACTIONS(4562), + [anon_sym_PERCENT] = ACTIONS(4562), + [anon_sym_AMP] = ACTIONS(4564), + [anon_sym_SQUOTE] = ACTIONS(4562), + [anon_sym_STAR] = ACTIONS(4562), + [anon_sym_PLUS] = ACTIONS(4562), + [anon_sym_COMMA] = ACTIONS(4562), + [anon_sym_DASH] = ACTIONS(4564), + [anon_sym_DOT] = ACTIONS(4564), + [anon_sym_SLASH] = ACTIONS(4562), + [anon_sym_COLON] = ACTIONS(4562), + [anon_sym_SEMI] = ACTIONS(4562), + [anon_sym_EQ] = ACTIONS(4562), + [anon_sym_QMARK] = ACTIONS(4562), + [anon_sym_LBRACK] = ACTIONS(4564), + [anon_sym_BSLASH] = ACTIONS(4564), + [anon_sym_CARET] = ACTIONS(4564), + [anon_sym__] = ACTIONS(4562), + [anon_sym_BQUOTE] = ACTIONS(4562), + [anon_sym_LBRACE] = ACTIONS(4562), + [anon_sym_PIPE] = ACTIONS(4562), + [anon_sym_TILDE] = ACTIONS(4562), + [anon_sym_LPAREN] = ACTIONS(4562), + [anon_sym_RPAREN] = ACTIONS(4562), + [sym__newline_token] = ACTIONS(4562), + [aux_sym_insert_token1] = ACTIONS(4562), + [aux_sym_delete_token1] = ACTIONS(4562), + [aux_sym_highlight_token1] = ACTIONS(4562), + [aux_sym_edit_comment_token1] = ACTIONS(4562), + [anon_sym_CARET_LBRACK] = ACTIONS(4562), + [anon_sym_LBRACK_CARET] = ACTIONS(4562), + [sym_uri_autolink] = ACTIONS(4562), + [sym_email_autolink] = ACTIONS(4562), + [sym__whitespace_ge_2] = ACTIONS(4562), + [aux_sym__whitespace_token1] = ACTIONS(4564), + [sym__word_no_digit] = ACTIONS(4562), + [sym__digits] = ACTIONS(4562), + [anon_sym_DASH_DASH] = ACTIONS(4564), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4562), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4562), + [sym__code_span_start] = ACTIONS(4562), + [sym__emphasis_open_star] = ACTIONS(4562), + [sym__emphasis_open_underscore] = ACTIONS(4562), + [sym__strikeout_open] = ACTIONS(4562), + [sym__latex_span_start] = ACTIONS(4562), + [sym__single_quote_open] = ACTIONS(4562), + [sym__double_quote_open] = ACTIONS(4562), + [sym__superscript_open] = ACTIONS(4562), + [sym__subscript_open] = ACTIONS(4562), + [sym__subscript_close] = ACTIONS(4562), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4562), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4562), + [sym__cite_author_in_text] = ACTIONS(4562), + [sym__cite_suppress_author] = ACTIONS(4562), + [sym__shortcode_open_escaped] = ACTIONS(4562), + [sym__shortcode_open] = ACTIONS(4562), + [sym__unclosed_span] = ACTIONS(4562), + }, + [STATE(910)] = { + [sym__backslash_escape] = ACTIONS(4558), + [sym_entity_reference] = ACTIONS(4558), + [sym_numeric_character_reference] = ACTIONS(4558), + [anon_sym_LT] = ACTIONS(4560), + [anon_sym_GT] = ACTIONS(4558), + [anon_sym_BANG] = ACTIONS(4558), + [anon_sym_DQUOTE] = ACTIONS(4558), + [anon_sym_POUND] = ACTIONS(4558), + [anon_sym_DOLLAR] = ACTIONS(4558), + [anon_sym_PERCENT] = ACTIONS(4558), + [anon_sym_AMP] = ACTIONS(4560), + [anon_sym_SQUOTE] = ACTIONS(4558), + [anon_sym_STAR] = ACTIONS(4558), + [anon_sym_PLUS] = ACTIONS(4558), + [anon_sym_COMMA] = ACTIONS(4558), + [anon_sym_DASH] = ACTIONS(4560), + [anon_sym_DOT] = ACTIONS(4560), + [anon_sym_SLASH] = ACTIONS(4558), + [anon_sym_COLON] = ACTIONS(4558), + [anon_sym_SEMI] = ACTIONS(4558), + [anon_sym_EQ] = ACTIONS(4558), + [anon_sym_QMARK] = ACTIONS(4558), + [anon_sym_LBRACK] = ACTIONS(4560), + [anon_sym_BSLASH] = ACTIONS(4560), + [anon_sym_CARET] = ACTIONS(4560), + [anon_sym__] = ACTIONS(4558), + [anon_sym_BQUOTE] = ACTIONS(4558), + [anon_sym_LBRACE] = ACTIONS(4558), + [anon_sym_PIPE] = ACTIONS(4558), + [anon_sym_TILDE] = ACTIONS(4558), + [anon_sym_LPAREN] = ACTIONS(4558), + [anon_sym_RPAREN] = ACTIONS(4558), + [sym__newline_token] = ACTIONS(4558), + [aux_sym_insert_token1] = ACTIONS(4558), + [aux_sym_delete_token1] = ACTIONS(4558), + [aux_sym_highlight_token1] = ACTIONS(4558), + [aux_sym_edit_comment_token1] = ACTIONS(4558), + [anon_sym_CARET_LBRACK] = ACTIONS(4558), + [anon_sym_LBRACK_CARET] = ACTIONS(4558), + [sym_uri_autolink] = ACTIONS(4558), + [sym_email_autolink] = ACTIONS(4558), + [sym__whitespace_ge_2] = ACTIONS(4558), + [aux_sym__whitespace_token1] = ACTIONS(4560), + [sym__word_no_digit] = ACTIONS(4558), + [sym__digits] = ACTIONS(4558), + [anon_sym_DASH_DASH] = ACTIONS(4560), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4558), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4558), + [sym__code_span_start] = ACTIONS(4558), + [sym__emphasis_open_star] = ACTIONS(4558), + [sym__emphasis_open_underscore] = ACTIONS(4558), + [sym__strikeout_open] = ACTIONS(4558), + [sym__strikeout_close] = ACTIONS(4558), + [sym__latex_span_start] = ACTIONS(4558), + [sym__single_quote_open] = ACTIONS(4558), + [sym__double_quote_open] = ACTIONS(4558), + [sym__superscript_open] = ACTIONS(4558), + [sym__subscript_open] = ACTIONS(4558), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4558), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4558), + [sym__cite_author_in_text] = ACTIONS(4558), + [sym__cite_suppress_author] = ACTIONS(4558), + [sym__shortcode_open_escaped] = ACTIONS(4558), + [sym__shortcode_open] = ACTIONS(4558), + [sym__unclosed_span] = ACTIONS(4558), + }, + [STATE(911)] = { + [sym__backslash_escape] = ACTIONS(4924), + [sym_entity_reference] = ACTIONS(4924), + [sym_numeric_character_reference] = ACTIONS(4924), + [anon_sym_LT] = ACTIONS(4926), + [anon_sym_GT] = ACTIONS(4924), + [anon_sym_BANG] = ACTIONS(4924), + [anon_sym_DQUOTE] = ACTIONS(4924), + [anon_sym_POUND] = ACTIONS(4924), + [anon_sym_DOLLAR] = ACTIONS(4924), + [anon_sym_PERCENT] = ACTIONS(4924), + [anon_sym_AMP] = ACTIONS(4926), + [anon_sym_SQUOTE] = ACTIONS(4924), + [anon_sym_STAR] = ACTIONS(4924), + [anon_sym_PLUS] = ACTIONS(4924), + [anon_sym_COMMA] = ACTIONS(4924), + [anon_sym_DASH] = ACTIONS(4926), + [anon_sym_DOT] = ACTIONS(4926), + [anon_sym_SLASH] = ACTIONS(4924), + [anon_sym_COLON] = ACTIONS(4924), + [anon_sym_SEMI] = ACTIONS(4924), + [anon_sym_EQ] = ACTIONS(4924), + [anon_sym_QMARK] = ACTIONS(4924), + [anon_sym_LBRACK] = ACTIONS(4926), + [anon_sym_BSLASH] = ACTIONS(4926), + [anon_sym_CARET] = ACTIONS(4926), + [anon_sym__] = ACTIONS(4924), + [anon_sym_BQUOTE] = ACTIONS(4924), + [anon_sym_LBRACE] = ACTIONS(4924), + [anon_sym_PIPE] = ACTIONS(4924), + [anon_sym_TILDE] = ACTIONS(4924), + [anon_sym_LPAREN] = ACTIONS(4924), + [anon_sym_RPAREN] = ACTIONS(4924), + [sym__newline_token] = ACTIONS(4924), + [aux_sym_insert_token1] = ACTIONS(4924), + [aux_sym_delete_token1] = ACTIONS(4924), + [aux_sym_highlight_token1] = ACTIONS(4924), + [aux_sym_edit_comment_token1] = ACTIONS(4924), + [anon_sym_CARET_LBRACK] = ACTIONS(4924), + [anon_sym_LBRACK_CARET] = ACTIONS(4924), + [sym_uri_autolink] = ACTIONS(4924), + [sym_email_autolink] = ACTIONS(4924), + [sym__whitespace_ge_2] = ACTIONS(4924), + [aux_sym__whitespace_token1] = ACTIONS(4926), + [sym__word_no_digit] = ACTIONS(4924), + [sym__digits] = ACTIONS(4924), + [anon_sym_DASH_DASH] = ACTIONS(4926), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4924), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4924), + [sym__code_span_start] = ACTIONS(4924), + [sym__emphasis_open_star] = ACTIONS(4924), + [sym__emphasis_open_underscore] = ACTIONS(4924), + [sym__strikeout_open] = ACTIONS(4924), + [sym__latex_span_start] = ACTIONS(4924), + [sym__single_quote_open] = ACTIONS(4924), + [sym__double_quote_open] = ACTIONS(4924), + [sym__superscript_open] = ACTIONS(4924), + [sym__subscript_open] = ACTIONS(4924), + [sym__subscript_close] = ACTIONS(4924), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4924), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4924), + [sym__cite_author_in_text] = ACTIONS(4924), + [sym__cite_suppress_author] = ACTIONS(4924), + [sym__shortcode_open_escaped] = ACTIONS(4924), + [sym__shortcode_open] = ACTIONS(4924), + [sym__unclosed_span] = ACTIONS(4924), + }, + [STATE(912)] = { + [sym__backslash_escape] = ACTIONS(4928), + [sym_entity_reference] = ACTIONS(4928), + [sym_numeric_character_reference] = ACTIONS(4928), + [anon_sym_LT] = ACTIONS(4930), + [anon_sym_GT] = ACTIONS(4928), + [anon_sym_BANG] = ACTIONS(4928), + [anon_sym_DQUOTE] = ACTIONS(4928), + [anon_sym_POUND] = ACTIONS(4928), + [anon_sym_DOLLAR] = ACTIONS(4928), + [anon_sym_PERCENT] = ACTIONS(4928), + [anon_sym_AMP] = ACTIONS(4930), + [anon_sym_SQUOTE] = ACTIONS(4928), + [anon_sym_STAR] = ACTIONS(4928), + [anon_sym_PLUS] = ACTIONS(4928), + [anon_sym_COMMA] = ACTIONS(4928), + [anon_sym_DASH] = ACTIONS(4930), + [anon_sym_DOT] = ACTIONS(4930), + [anon_sym_SLASH] = ACTIONS(4928), + [anon_sym_COLON] = ACTIONS(4928), + [anon_sym_SEMI] = ACTIONS(4928), + [anon_sym_EQ] = ACTIONS(4928), + [anon_sym_QMARK] = ACTIONS(4928), + [anon_sym_LBRACK] = ACTIONS(4930), + [anon_sym_BSLASH] = ACTIONS(4930), + [anon_sym_CARET] = ACTIONS(4930), + [anon_sym__] = ACTIONS(4928), + [anon_sym_BQUOTE] = ACTIONS(4928), + [anon_sym_LBRACE] = ACTIONS(4928), + [anon_sym_PIPE] = ACTIONS(4928), + [anon_sym_TILDE] = ACTIONS(4928), + [anon_sym_LPAREN] = ACTIONS(4928), + [anon_sym_RPAREN] = ACTIONS(4928), + [sym__newline_token] = ACTIONS(4928), + [aux_sym_insert_token1] = ACTIONS(4928), + [aux_sym_delete_token1] = ACTIONS(4928), + [aux_sym_highlight_token1] = ACTIONS(4928), + [aux_sym_edit_comment_token1] = ACTIONS(4928), + [anon_sym_CARET_LBRACK] = ACTIONS(4928), + [anon_sym_LBRACK_CARET] = ACTIONS(4928), + [sym_uri_autolink] = ACTIONS(4928), + [sym_email_autolink] = ACTIONS(4928), + [sym__whitespace_ge_2] = ACTIONS(4928), + [aux_sym__whitespace_token1] = ACTIONS(4930), + [sym__word_no_digit] = ACTIONS(4928), + [sym__digits] = ACTIONS(4928), + [anon_sym_DASH_DASH] = ACTIONS(4930), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4928), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4928), + [sym__code_span_start] = ACTIONS(4928), + [sym__emphasis_open_star] = ACTIONS(4928), + [sym__emphasis_open_underscore] = ACTIONS(4928), + [sym__strikeout_open] = ACTIONS(4928), + [sym__latex_span_start] = ACTIONS(4928), + [sym__single_quote_open] = ACTIONS(4928), + [sym__double_quote_open] = ACTIONS(4928), + [sym__superscript_open] = ACTIONS(4928), + [sym__subscript_open] = ACTIONS(4928), + [sym__subscript_close] = ACTIONS(4928), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4928), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4928), + [sym__cite_author_in_text] = ACTIONS(4928), + [sym__cite_suppress_author] = ACTIONS(4928), + [sym__shortcode_open_escaped] = ACTIONS(4928), + [sym__shortcode_open] = ACTIONS(4928), + [sym__unclosed_span] = ACTIONS(4928), + }, + [STATE(913)] = { + [sym__backslash_escape] = ACTIONS(4940), + [sym_entity_reference] = ACTIONS(4940), + [sym_numeric_character_reference] = ACTIONS(4940), + [anon_sym_LT] = ACTIONS(4942), + [anon_sym_GT] = ACTIONS(4940), + [anon_sym_BANG] = ACTIONS(4940), + [anon_sym_DQUOTE] = ACTIONS(4940), + [anon_sym_POUND] = ACTIONS(4940), + [anon_sym_DOLLAR] = ACTIONS(4940), + [anon_sym_PERCENT] = ACTIONS(4940), + [anon_sym_AMP] = ACTIONS(4942), + [anon_sym_SQUOTE] = ACTIONS(4940), + [anon_sym_STAR] = ACTIONS(4940), + [anon_sym_PLUS] = ACTIONS(4940), + [anon_sym_COMMA] = ACTIONS(4940), + [anon_sym_DASH] = ACTIONS(4942), + [anon_sym_DOT] = ACTIONS(4942), + [anon_sym_SLASH] = ACTIONS(4940), + [anon_sym_COLON] = ACTIONS(4940), + [anon_sym_SEMI] = ACTIONS(4940), + [anon_sym_EQ] = ACTIONS(4940), + [anon_sym_QMARK] = ACTIONS(4940), + [anon_sym_LBRACK] = ACTIONS(4942), + [anon_sym_BSLASH] = ACTIONS(4942), + [anon_sym_CARET] = ACTIONS(4942), + [anon_sym__] = ACTIONS(4940), + [anon_sym_BQUOTE] = ACTIONS(4940), + [anon_sym_LBRACE] = ACTIONS(4940), + [anon_sym_PIPE] = ACTIONS(4940), + [anon_sym_TILDE] = ACTIONS(4940), + [anon_sym_LPAREN] = ACTIONS(4940), + [anon_sym_RPAREN] = ACTIONS(4940), + [sym__newline_token] = ACTIONS(4940), + [aux_sym_insert_token1] = ACTIONS(4940), + [aux_sym_delete_token1] = ACTIONS(4940), + [aux_sym_highlight_token1] = ACTIONS(4940), + [aux_sym_edit_comment_token1] = ACTIONS(4940), + [anon_sym_CARET_LBRACK] = ACTIONS(4940), + [anon_sym_LBRACK_CARET] = ACTIONS(4940), + [sym_uri_autolink] = ACTIONS(4940), + [sym_email_autolink] = ACTIONS(4940), + [sym__whitespace_ge_2] = ACTIONS(4940), + [aux_sym__whitespace_token1] = ACTIONS(4942), + [sym__word_no_digit] = ACTIONS(4940), + [sym__digits] = ACTIONS(4940), + [anon_sym_DASH_DASH] = ACTIONS(4942), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4940), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4940), + [sym__code_span_start] = ACTIONS(4940), + [sym__emphasis_open_star] = ACTIONS(4940), + [sym__emphasis_open_underscore] = ACTIONS(4940), + [sym__strikeout_open] = ACTIONS(4940), + [sym__latex_span_start] = ACTIONS(4940), + [sym__single_quote_open] = ACTIONS(4940), + [sym__double_quote_open] = ACTIONS(4940), + [sym__superscript_open] = ACTIONS(4940), + [sym__subscript_open] = ACTIONS(4940), + [sym__subscript_close] = ACTIONS(4940), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4940), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4940), + [sym__cite_author_in_text] = ACTIONS(4940), + [sym__cite_suppress_author] = ACTIONS(4940), + [sym__shortcode_open_escaped] = ACTIONS(4940), + [sym__shortcode_open] = ACTIONS(4940), + [sym__unclosed_span] = ACTIONS(4940), + }, + [STATE(914)] = { + [sym__backslash_escape] = ACTIONS(4888), + [sym_entity_reference] = ACTIONS(4888), + [sym_numeric_character_reference] = ACTIONS(4888), + [anon_sym_LT] = ACTIONS(4890), + [anon_sym_GT] = ACTIONS(4888), + [anon_sym_BANG] = ACTIONS(4888), + [anon_sym_DQUOTE] = ACTIONS(4888), + [anon_sym_POUND] = ACTIONS(4888), + [anon_sym_DOLLAR] = ACTIONS(4888), + [anon_sym_PERCENT] = ACTIONS(4888), + [anon_sym_AMP] = ACTIONS(4890), + [anon_sym_SQUOTE] = ACTIONS(4888), + [anon_sym_STAR] = ACTIONS(4888), + [anon_sym_PLUS] = ACTIONS(4888), + [anon_sym_COMMA] = ACTIONS(4888), + [anon_sym_DASH] = ACTIONS(4890), + [anon_sym_DOT] = ACTIONS(4890), + [anon_sym_SLASH] = ACTIONS(4888), + [anon_sym_COLON] = ACTIONS(4888), + [anon_sym_SEMI] = ACTIONS(4888), + [anon_sym_EQ] = ACTIONS(4888), + [anon_sym_QMARK] = ACTIONS(4888), + [anon_sym_LBRACK] = ACTIONS(4890), + [anon_sym_BSLASH] = ACTIONS(4890), + [anon_sym_CARET] = ACTIONS(4890), + [anon_sym__] = ACTIONS(4888), + [anon_sym_BQUOTE] = ACTIONS(4888), + [anon_sym_LBRACE] = ACTIONS(4888), + [anon_sym_PIPE] = ACTIONS(4888), + [anon_sym_TILDE] = ACTIONS(4888), + [anon_sym_LPAREN] = ACTIONS(4888), + [anon_sym_RPAREN] = ACTIONS(4888), + [sym__newline_token] = ACTIONS(4888), + [aux_sym_insert_token1] = ACTIONS(4888), + [aux_sym_delete_token1] = ACTIONS(4888), + [aux_sym_highlight_token1] = ACTIONS(4888), + [aux_sym_edit_comment_token1] = ACTIONS(4888), + [anon_sym_CARET_LBRACK] = ACTIONS(4888), + [anon_sym_LBRACK_CARET] = ACTIONS(4888), + [sym_uri_autolink] = ACTIONS(4888), + [sym_email_autolink] = ACTIONS(4888), + [sym__whitespace_ge_2] = ACTIONS(4888), + [aux_sym__whitespace_token1] = ACTIONS(4890), + [sym__word_no_digit] = ACTIONS(4888), + [sym__digits] = ACTIONS(4888), + [anon_sym_DASH_DASH] = ACTIONS(4890), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4888), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4888), + [sym__code_span_start] = ACTIONS(4888), + [sym__emphasis_open_star] = ACTIONS(4888), + [sym__emphasis_open_underscore] = ACTIONS(4888), + [sym__emphasis_close_underscore] = ACTIONS(4888), + [sym__strikeout_open] = ACTIONS(4888), + [sym__latex_span_start] = ACTIONS(4888), + [sym__single_quote_open] = ACTIONS(4888), + [sym__double_quote_open] = ACTIONS(4888), + [sym__superscript_open] = ACTIONS(4888), + [sym__subscript_open] = ACTIONS(4888), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4888), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4888), + [sym__cite_author_in_text] = ACTIONS(4888), + [sym__cite_suppress_author] = ACTIONS(4888), + [sym__shortcode_open_escaped] = ACTIONS(4888), + [sym__shortcode_open] = ACTIONS(4888), + [sym__unclosed_span] = ACTIONS(4888), + }, + [STATE(915)] = { + [sym__backslash_escape] = ACTIONS(4562), + [sym_entity_reference] = ACTIONS(4562), + [sym_numeric_character_reference] = ACTIONS(4562), + [anon_sym_LT] = ACTIONS(4564), + [anon_sym_GT] = ACTIONS(4562), + [anon_sym_BANG] = ACTIONS(4562), + [anon_sym_DQUOTE] = ACTIONS(4562), + [anon_sym_POUND] = ACTIONS(4562), + [anon_sym_DOLLAR] = ACTIONS(4562), + [anon_sym_PERCENT] = ACTIONS(4562), + [anon_sym_AMP] = ACTIONS(4564), + [anon_sym_SQUOTE] = ACTIONS(4562), + [anon_sym_STAR] = ACTIONS(4562), + [anon_sym_PLUS] = ACTIONS(4562), + [anon_sym_COMMA] = ACTIONS(4562), + [anon_sym_DASH] = ACTIONS(4564), + [anon_sym_DOT] = ACTIONS(4564), + [anon_sym_SLASH] = ACTIONS(4562), + [anon_sym_COLON] = ACTIONS(4562), + [anon_sym_SEMI] = ACTIONS(4562), + [anon_sym_EQ] = ACTIONS(4562), + [anon_sym_QMARK] = ACTIONS(4562), + [anon_sym_LBRACK] = ACTIONS(4564), + [anon_sym_BSLASH] = ACTIONS(4564), + [anon_sym_CARET] = ACTIONS(4564), + [anon_sym__] = ACTIONS(4562), + [anon_sym_BQUOTE] = ACTIONS(4562), + [anon_sym_LBRACE] = ACTIONS(4562), + [anon_sym_PIPE] = ACTIONS(4562), + [anon_sym_TILDE] = ACTIONS(4562), + [anon_sym_LPAREN] = ACTIONS(4562), + [anon_sym_RPAREN] = ACTIONS(4562), + [sym__newline_token] = ACTIONS(4562), + [aux_sym_insert_token1] = ACTIONS(4562), + [aux_sym_delete_token1] = ACTIONS(4562), + [aux_sym_highlight_token1] = ACTIONS(4562), + [aux_sym_edit_comment_token1] = ACTIONS(4562), + [anon_sym_CARET_LBRACK] = ACTIONS(4562), + [anon_sym_LBRACK_CARET] = ACTIONS(4562), + [sym_uri_autolink] = ACTIONS(4562), + [sym_email_autolink] = ACTIONS(4562), + [sym__whitespace_ge_2] = ACTIONS(4562), + [aux_sym__whitespace_token1] = ACTIONS(4564), + [sym__word_no_digit] = ACTIONS(4562), + [sym__digits] = ACTIONS(4562), + [anon_sym_DASH_DASH] = ACTIONS(4564), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4562), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4562), + [sym__code_span_start] = ACTIONS(4562), + [sym__emphasis_open_star] = ACTIONS(4562), + [sym__emphasis_open_underscore] = ACTIONS(4562), + [sym__strikeout_open] = ACTIONS(4562), + [sym__strikeout_close] = ACTIONS(4562), + [sym__latex_span_start] = ACTIONS(4562), + [sym__single_quote_open] = ACTIONS(4562), + [sym__double_quote_open] = ACTIONS(4562), + [sym__superscript_open] = ACTIONS(4562), + [sym__subscript_open] = ACTIONS(4562), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4562), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4562), + [sym__cite_author_in_text] = ACTIONS(4562), + [sym__cite_suppress_author] = ACTIONS(4562), + [sym__shortcode_open_escaped] = ACTIONS(4562), + [sym__shortcode_open] = ACTIONS(4562), + [sym__unclosed_span] = ACTIONS(4562), + }, + [STATE(916)] = { + [sym__backslash_escape] = ACTIONS(4892), + [sym_entity_reference] = ACTIONS(4892), + [sym_numeric_character_reference] = ACTIONS(4892), + [anon_sym_LT] = ACTIONS(4894), + [anon_sym_GT] = ACTIONS(4892), + [anon_sym_BANG] = ACTIONS(4892), + [anon_sym_DQUOTE] = ACTIONS(4892), + [anon_sym_POUND] = ACTIONS(4892), + [anon_sym_DOLLAR] = ACTIONS(4892), + [anon_sym_PERCENT] = ACTIONS(4892), + [anon_sym_AMP] = ACTIONS(4894), + [anon_sym_SQUOTE] = ACTIONS(4892), + [anon_sym_STAR] = ACTIONS(4892), + [anon_sym_PLUS] = ACTIONS(4892), + [anon_sym_COMMA] = ACTIONS(4892), + [anon_sym_DASH] = ACTIONS(4894), + [anon_sym_DOT] = ACTIONS(4894), + [anon_sym_SLASH] = ACTIONS(4892), + [anon_sym_COLON] = ACTIONS(4892), + [anon_sym_SEMI] = ACTIONS(4892), + [anon_sym_EQ] = ACTIONS(4892), + [anon_sym_QMARK] = ACTIONS(4892), + [anon_sym_LBRACK] = ACTIONS(4894), + [anon_sym_BSLASH] = ACTIONS(4894), + [anon_sym_CARET] = ACTIONS(4894), + [anon_sym__] = ACTIONS(4892), + [anon_sym_BQUOTE] = ACTIONS(4892), + [anon_sym_LBRACE] = ACTIONS(4892), + [anon_sym_PIPE] = ACTIONS(4892), + [anon_sym_TILDE] = ACTIONS(4892), + [anon_sym_LPAREN] = ACTIONS(4892), + [anon_sym_RPAREN] = ACTIONS(4892), + [sym__newline_token] = ACTIONS(4892), + [aux_sym_insert_token1] = ACTIONS(4892), + [aux_sym_delete_token1] = ACTIONS(4892), + [aux_sym_highlight_token1] = ACTIONS(4892), + [aux_sym_edit_comment_token1] = ACTIONS(4892), + [anon_sym_CARET_LBRACK] = ACTIONS(4892), + [anon_sym_LBRACK_CARET] = ACTIONS(4892), + [sym_uri_autolink] = ACTIONS(4892), + [sym_email_autolink] = ACTIONS(4892), + [sym__whitespace_ge_2] = ACTIONS(4892), + [aux_sym__whitespace_token1] = ACTIONS(4894), + [sym__word_no_digit] = ACTIONS(4892), + [sym__digits] = ACTIONS(4892), + [anon_sym_DASH_DASH] = ACTIONS(4894), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4892), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4892), + [sym__code_span_start] = ACTIONS(4892), + [sym__emphasis_open_star] = ACTIONS(4892), + [sym__emphasis_open_underscore] = ACTIONS(4892), + [sym__emphasis_close_underscore] = ACTIONS(4892), + [sym__strikeout_open] = ACTIONS(4892), + [sym__latex_span_start] = ACTIONS(4892), + [sym__single_quote_open] = ACTIONS(4892), + [sym__double_quote_open] = ACTIONS(4892), + [sym__superscript_open] = ACTIONS(4892), + [sym__subscript_open] = ACTIONS(4892), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4892), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4892), + [sym__cite_author_in_text] = ACTIONS(4892), + [sym__cite_suppress_author] = ACTIONS(4892), + [sym__shortcode_open_escaped] = ACTIONS(4892), + [sym__shortcode_open] = ACTIONS(4892), + [sym__unclosed_span] = ACTIONS(4892), + }, + [STATE(917)] = { + [sym__backslash_escape] = ACTIONS(4924), + [sym_entity_reference] = ACTIONS(4924), + [sym_numeric_character_reference] = ACTIONS(4924), + [anon_sym_LT] = ACTIONS(4926), + [anon_sym_GT] = ACTIONS(4924), + [anon_sym_BANG] = ACTIONS(4924), + [anon_sym_DQUOTE] = ACTIONS(4924), + [anon_sym_POUND] = ACTIONS(4924), + [anon_sym_DOLLAR] = ACTIONS(4924), + [anon_sym_PERCENT] = ACTIONS(4924), + [anon_sym_AMP] = ACTIONS(4926), + [anon_sym_SQUOTE] = ACTIONS(4924), + [anon_sym_STAR] = ACTIONS(4924), + [anon_sym_PLUS] = ACTIONS(4924), + [anon_sym_COMMA] = ACTIONS(4924), + [anon_sym_DASH] = ACTIONS(4926), + [anon_sym_DOT] = ACTIONS(4926), + [anon_sym_SLASH] = ACTIONS(4924), + [anon_sym_COLON] = ACTIONS(4924), + [anon_sym_SEMI] = ACTIONS(4924), + [anon_sym_EQ] = ACTIONS(4924), + [anon_sym_QMARK] = ACTIONS(4924), + [anon_sym_LBRACK] = ACTIONS(4926), + [anon_sym_BSLASH] = ACTIONS(4926), + [anon_sym_CARET] = ACTIONS(4926), + [anon_sym__] = ACTIONS(4924), + [anon_sym_BQUOTE] = ACTIONS(4924), + [anon_sym_LBRACE] = ACTIONS(4924), + [anon_sym_PIPE] = ACTIONS(4924), + [anon_sym_TILDE] = ACTIONS(4924), + [anon_sym_LPAREN] = ACTIONS(4924), + [anon_sym_RPAREN] = ACTIONS(4924), + [sym__newline_token] = ACTIONS(4924), + [aux_sym_insert_token1] = ACTIONS(4924), + [aux_sym_delete_token1] = ACTIONS(4924), + [aux_sym_highlight_token1] = ACTIONS(4924), + [aux_sym_edit_comment_token1] = ACTIONS(4924), + [anon_sym_CARET_LBRACK] = ACTIONS(4924), + [anon_sym_LBRACK_CARET] = ACTIONS(4924), + [sym_uri_autolink] = ACTIONS(4924), + [sym_email_autolink] = ACTIONS(4924), + [sym__whitespace_ge_2] = ACTIONS(4924), + [aux_sym__whitespace_token1] = ACTIONS(4926), + [sym__word_no_digit] = ACTIONS(4924), + [sym__digits] = ACTIONS(4924), + [anon_sym_DASH_DASH] = ACTIONS(4926), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4924), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4924), + [sym__code_span_start] = ACTIONS(4924), + [sym__emphasis_open_star] = ACTIONS(4924), + [sym__emphasis_open_underscore] = ACTIONS(4924), + [sym__strikeout_open] = ACTIONS(4924), + [sym__strikeout_close] = ACTIONS(4924), + [sym__latex_span_start] = ACTIONS(4924), + [sym__single_quote_open] = ACTIONS(4924), + [sym__double_quote_open] = ACTIONS(4924), + [sym__superscript_open] = ACTIONS(4924), + [sym__subscript_open] = ACTIONS(4924), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4924), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4924), + [sym__cite_author_in_text] = ACTIONS(4924), + [sym__cite_suppress_author] = ACTIONS(4924), + [sym__shortcode_open_escaped] = ACTIONS(4924), + [sym__shortcode_open] = ACTIONS(4924), + [sym__unclosed_span] = ACTIONS(4924), + }, + [STATE(918)] = { + [sym__backslash_escape] = ACTIONS(4928), + [sym_entity_reference] = ACTIONS(4928), + [sym_numeric_character_reference] = ACTIONS(4928), + [anon_sym_LT] = ACTIONS(4930), + [anon_sym_GT] = ACTIONS(4928), + [anon_sym_BANG] = ACTIONS(4928), + [anon_sym_DQUOTE] = ACTIONS(4928), + [anon_sym_POUND] = ACTIONS(4928), + [anon_sym_DOLLAR] = ACTIONS(4928), + [anon_sym_PERCENT] = ACTIONS(4928), + [anon_sym_AMP] = ACTIONS(4930), + [anon_sym_SQUOTE] = ACTIONS(4928), + [anon_sym_STAR] = ACTIONS(4928), + [anon_sym_PLUS] = ACTIONS(4928), + [anon_sym_COMMA] = ACTIONS(4928), + [anon_sym_DASH] = ACTIONS(4930), + [anon_sym_DOT] = ACTIONS(4930), + [anon_sym_SLASH] = ACTIONS(4928), + [anon_sym_COLON] = ACTIONS(4928), + [anon_sym_SEMI] = ACTIONS(4928), + [anon_sym_EQ] = ACTIONS(4928), + [anon_sym_QMARK] = ACTIONS(4928), + [anon_sym_LBRACK] = ACTIONS(4930), + [anon_sym_BSLASH] = ACTIONS(4930), + [anon_sym_CARET] = ACTIONS(4930), + [anon_sym__] = ACTIONS(4928), + [anon_sym_BQUOTE] = ACTIONS(4928), + [anon_sym_LBRACE] = ACTIONS(4928), + [anon_sym_PIPE] = ACTIONS(4928), + [anon_sym_TILDE] = ACTIONS(4928), + [anon_sym_LPAREN] = ACTIONS(4928), + [anon_sym_RPAREN] = ACTIONS(4928), + [sym__newline_token] = ACTIONS(4928), + [aux_sym_insert_token1] = ACTIONS(4928), + [aux_sym_delete_token1] = ACTIONS(4928), + [aux_sym_highlight_token1] = ACTIONS(4928), + [aux_sym_edit_comment_token1] = ACTIONS(4928), + [anon_sym_CARET_LBRACK] = ACTIONS(4928), + [anon_sym_LBRACK_CARET] = ACTIONS(4928), + [sym_uri_autolink] = ACTIONS(4928), + [sym_email_autolink] = ACTIONS(4928), + [sym__whitespace_ge_2] = ACTIONS(4928), + [aux_sym__whitespace_token1] = ACTIONS(4930), + [sym__word_no_digit] = ACTIONS(4928), + [sym__digits] = ACTIONS(4928), + [anon_sym_DASH_DASH] = ACTIONS(4930), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4928), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4928), + [sym__code_span_start] = ACTIONS(4928), + [sym__emphasis_open_star] = ACTIONS(4928), + [sym__emphasis_open_underscore] = ACTIONS(4928), + [sym__strikeout_open] = ACTIONS(4928), + [sym__strikeout_close] = ACTIONS(4928), + [sym__latex_span_start] = ACTIONS(4928), + [sym__single_quote_open] = ACTIONS(4928), + [sym__double_quote_open] = ACTIONS(4928), + [sym__superscript_open] = ACTIONS(4928), + [sym__subscript_open] = ACTIONS(4928), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4928), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4928), + [sym__cite_author_in_text] = ACTIONS(4928), + [sym__cite_suppress_author] = ACTIONS(4928), + [sym__shortcode_open_escaped] = ACTIONS(4928), + [sym__shortcode_open] = ACTIONS(4928), + [sym__unclosed_span] = ACTIONS(4928), + }, + [STATE(919)] = { + [ts_builtin_sym_end] = ACTIONS(5016), + [sym__backslash_escape] = ACTIONS(5016), + [sym_entity_reference] = ACTIONS(5016), + [sym_numeric_character_reference] = ACTIONS(5016), + [anon_sym_LT] = ACTIONS(5018), + [anon_sym_GT] = ACTIONS(5016), + [anon_sym_BANG] = ACTIONS(5016), + [anon_sym_DQUOTE] = ACTIONS(5016), + [anon_sym_POUND] = ACTIONS(5016), + [anon_sym_DOLLAR] = ACTIONS(5016), + [anon_sym_PERCENT] = ACTIONS(5016), + [anon_sym_AMP] = ACTIONS(5018), + [anon_sym_SQUOTE] = ACTIONS(5016), + [anon_sym_STAR] = ACTIONS(5016), + [anon_sym_PLUS] = ACTIONS(5016), + [anon_sym_COMMA] = ACTIONS(5016), + [anon_sym_DASH] = ACTIONS(5018), + [anon_sym_DOT] = ACTIONS(5018), + [anon_sym_SLASH] = ACTIONS(5016), + [anon_sym_COLON] = ACTIONS(5016), + [anon_sym_SEMI] = ACTIONS(5016), + [anon_sym_EQ] = ACTIONS(5016), + [anon_sym_QMARK] = ACTIONS(5016), + [anon_sym_LBRACK] = ACTIONS(5018), + [anon_sym_BSLASH] = ACTIONS(5018), + [anon_sym_CARET] = ACTIONS(5018), + [anon_sym__] = ACTIONS(5016), + [anon_sym_BQUOTE] = ACTIONS(5016), + [anon_sym_LBRACE] = ACTIONS(5016), + [anon_sym_PIPE] = ACTIONS(5016), + [anon_sym_TILDE] = ACTIONS(5016), + [anon_sym_LPAREN] = ACTIONS(5016), + [anon_sym_RPAREN] = ACTIONS(5016), + [sym__newline_token] = ACTIONS(5016), + [aux_sym_insert_token1] = ACTIONS(5016), + [aux_sym_delete_token1] = ACTIONS(5016), + [aux_sym_highlight_token1] = ACTIONS(5016), + [aux_sym_edit_comment_token1] = ACTIONS(5016), + [anon_sym_CARET_LBRACK] = ACTIONS(5016), + [anon_sym_LBRACK_CARET] = ACTIONS(5016), + [sym_uri_autolink] = ACTIONS(5016), + [sym_email_autolink] = ACTIONS(5016), + [sym__whitespace_ge_2] = ACTIONS(5016), + [aux_sym__whitespace_token1] = ACTIONS(5018), + [sym__word_no_digit] = ACTIONS(5016), + [sym__digits] = ACTIONS(5016), + [anon_sym_DASH_DASH] = ACTIONS(5018), + [anon_sym_DASH_DASH_DASH] = ACTIONS(5016), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5016), + [sym__code_span_start] = ACTIONS(5016), + [sym__emphasis_open_star] = ACTIONS(5016), + [sym__emphasis_open_underscore] = ACTIONS(5016), + [sym__strikeout_open] = ACTIONS(5016), + [sym__latex_span_start] = ACTIONS(5016), + [sym__single_quote_open] = ACTIONS(5016), + [sym__double_quote_open] = ACTIONS(5016), + [sym__superscript_open] = ACTIONS(5016), + [sym__subscript_open] = ACTIONS(5016), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5016), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5016), + [sym__cite_author_in_text] = ACTIONS(5016), + [sym__cite_suppress_author] = ACTIONS(5016), + [sym__shortcode_open_escaped] = ACTIONS(5016), + [sym__shortcode_open] = ACTIONS(5016), + [sym__unclosed_span] = ACTIONS(5016), + }, + [STATE(920)] = { + [sym__backslash_escape] = ACTIONS(4648), + [sym_entity_reference] = ACTIONS(4648), + [sym_numeric_character_reference] = ACTIONS(4648), + [anon_sym_LT] = ACTIONS(4650), + [anon_sym_GT] = ACTIONS(4648), + [anon_sym_BANG] = ACTIONS(4648), + [anon_sym_DQUOTE] = ACTIONS(4648), + [anon_sym_POUND] = ACTIONS(4648), + [anon_sym_DOLLAR] = ACTIONS(4648), + [anon_sym_PERCENT] = ACTIONS(4648), + [anon_sym_AMP] = ACTIONS(4650), + [anon_sym_SQUOTE] = ACTIONS(4648), + [anon_sym_STAR] = ACTIONS(4648), + [anon_sym_PLUS] = ACTIONS(4648), + [anon_sym_COMMA] = ACTIONS(4648), + [anon_sym_DASH] = ACTIONS(4650), + [anon_sym_DOT] = ACTIONS(4650), + [anon_sym_SLASH] = ACTIONS(4648), + [anon_sym_COLON] = ACTIONS(4648), + [anon_sym_SEMI] = ACTIONS(4648), + [anon_sym_EQ] = ACTIONS(4648), + [anon_sym_QMARK] = ACTIONS(4648), + [anon_sym_LBRACK] = ACTIONS(4650), + [anon_sym_BSLASH] = ACTIONS(4650), + [anon_sym_RBRACK] = ACTIONS(4648), + [anon_sym_CARET] = ACTIONS(4650), + [anon_sym__] = ACTIONS(4648), + [anon_sym_BQUOTE] = ACTIONS(4648), + [anon_sym_LBRACE] = ACTIONS(4648), + [anon_sym_PIPE] = ACTIONS(4648), + [anon_sym_TILDE] = ACTIONS(4648), + [anon_sym_LPAREN] = ACTIONS(4648), + [anon_sym_RPAREN] = ACTIONS(4648), + [sym__newline_token] = ACTIONS(4648), + [aux_sym_insert_token1] = ACTIONS(4648), + [aux_sym_delete_token1] = ACTIONS(4648), + [aux_sym_highlight_token1] = ACTIONS(4648), + [aux_sym_edit_comment_token1] = ACTIONS(4648), + [anon_sym_CARET_LBRACK] = ACTIONS(4648), + [anon_sym_LBRACK_CARET] = ACTIONS(4648), + [sym_uri_autolink] = ACTIONS(4648), + [sym_email_autolink] = ACTIONS(4648), + [sym__whitespace_ge_2] = ACTIONS(4648), + [aux_sym__whitespace_token1] = ACTIONS(4650), + [sym__word_no_digit] = ACTIONS(4648), + [sym__digits] = ACTIONS(4648), + [anon_sym_DASH_DASH] = ACTIONS(4650), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4648), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4648), + [sym__code_span_start] = ACTIONS(4648), + [sym__emphasis_open_star] = ACTIONS(4648), + [sym__emphasis_open_underscore] = ACTIONS(4648), + [sym__strikeout_open] = ACTIONS(4648), + [sym__latex_span_start] = ACTIONS(4648), + [sym__single_quote_open] = ACTIONS(4648), + [sym__double_quote_open] = ACTIONS(4648), + [sym__superscript_open] = ACTIONS(4648), + [sym__subscript_open] = ACTIONS(4648), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4648), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4648), + [sym__cite_author_in_text] = ACTIONS(4648), + [sym__cite_suppress_author] = ACTIONS(4648), + [sym__shortcode_open_escaped] = ACTIONS(4648), + [sym__shortcode_open] = ACTIONS(4648), + [sym__unclosed_span] = ACTIONS(4648), + }, + [STATE(921)] = { + [ts_builtin_sym_end] = ACTIONS(5020), + [sym__backslash_escape] = ACTIONS(5020), + [sym_entity_reference] = ACTIONS(5020), + [sym_numeric_character_reference] = ACTIONS(5020), + [anon_sym_LT] = ACTIONS(5022), + [anon_sym_GT] = ACTIONS(5020), + [anon_sym_BANG] = ACTIONS(5020), + [anon_sym_DQUOTE] = ACTIONS(5020), + [anon_sym_POUND] = ACTIONS(5020), + [anon_sym_DOLLAR] = ACTIONS(5020), + [anon_sym_PERCENT] = ACTIONS(5020), + [anon_sym_AMP] = ACTIONS(5022), + [anon_sym_SQUOTE] = ACTIONS(5020), + [anon_sym_STAR] = ACTIONS(5020), + [anon_sym_PLUS] = ACTIONS(5020), + [anon_sym_COMMA] = ACTIONS(5020), + [anon_sym_DASH] = ACTIONS(5022), + [anon_sym_DOT] = ACTIONS(5022), + [anon_sym_SLASH] = ACTIONS(5020), + [anon_sym_COLON] = ACTIONS(5020), + [anon_sym_SEMI] = ACTIONS(5020), + [anon_sym_EQ] = ACTIONS(5020), + [anon_sym_QMARK] = ACTIONS(5020), + [anon_sym_LBRACK] = ACTIONS(5022), + [anon_sym_BSLASH] = ACTIONS(5022), + [anon_sym_CARET] = ACTIONS(5022), + [anon_sym__] = ACTIONS(5020), + [anon_sym_BQUOTE] = ACTIONS(5020), + [anon_sym_LBRACE] = ACTIONS(5020), + [anon_sym_PIPE] = ACTIONS(5020), + [anon_sym_TILDE] = ACTIONS(5020), + [anon_sym_LPAREN] = ACTIONS(5020), + [anon_sym_RPAREN] = ACTIONS(5020), + [sym__newline_token] = ACTIONS(5020), + [aux_sym_insert_token1] = ACTIONS(5020), + [aux_sym_delete_token1] = ACTIONS(5020), + [aux_sym_highlight_token1] = ACTIONS(5020), + [aux_sym_edit_comment_token1] = ACTIONS(5020), + [anon_sym_CARET_LBRACK] = ACTIONS(5020), + [anon_sym_LBRACK_CARET] = ACTIONS(5020), + [sym_uri_autolink] = ACTIONS(5020), + [sym_email_autolink] = ACTIONS(5020), + [sym__whitespace_ge_2] = ACTIONS(5020), + [aux_sym__whitespace_token1] = ACTIONS(5022), + [sym__word_no_digit] = ACTIONS(5020), + [sym__digits] = ACTIONS(5020), + [anon_sym_DASH_DASH] = ACTIONS(5022), + [anon_sym_DASH_DASH_DASH] = ACTIONS(5020), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5020), + [sym__code_span_start] = ACTIONS(5020), + [sym__emphasis_open_star] = ACTIONS(5020), + [sym__emphasis_open_underscore] = ACTIONS(5020), + [sym__strikeout_open] = ACTIONS(5020), + [sym__latex_span_start] = ACTIONS(5020), + [sym__single_quote_open] = ACTIONS(5020), + [sym__double_quote_open] = ACTIONS(5020), + [sym__superscript_open] = ACTIONS(5020), + [sym__subscript_open] = ACTIONS(5020), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5020), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5020), + [sym__cite_author_in_text] = ACTIONS(5020), + [sym__cite_suppress_author] = ACTIONS(5020), + [sym__shortcode_open_escaped] = ACTIONS(5020), + [sym__shortcode_open] = ACTIONS(5020), + [sym__unclosed_span] = ACTIONS(5020), + }, + [STATE(922)] = { + [sym__backslash_escape] = ACTIONS(4896), + [sym_entity_reference] = ACTIONS(4896), + [sym_numeric_character_reference] = ACTIONS(4896), + [anon_sym_LT] = ACTIONS(4898), + [anon_sym_GT] = ACTIONS(4896), + [anon_sym_BANG] = ACTIONS(4896), + [anon_sym_DQUOTE] = ACTIONS(4896), + [anon_sym_POUND] = ACTIONS(4896), + [anon_sym_DOLLAR] = ACTIONS(4896), + [anon_sym_PERCENT] = ACTIONS(4896), + [anon_sym_AMP] = ACTIONS(4898), + [anon_sym_SQUOTE] = ACTIONS(4896), + [anon_sym_STAR] = ACTIONS(4896), + [anon_sym_PLUS] = ACTIONS(4896), + [anon_sym_COMMA] = ACTIONS(4896), + [anon_sym_DASH] = ACTIONS(4898), + [anon_sym_DOT] = ACTIONS(4898), + [anon_sym_SLASH] = ACTIONS(4896), + [anon_sym_COLON] = ACTIONS(4896), + [anon_sym_SEMI] = ACTIONS(4896), + [anon_sym_EQ] = ACTIONS(4896), + [anon_sym_QMARK] = ACTIONS(4896), + [anon_sym_LBRACK] = ACTIONS(4898), + [anon_sym_BSLASH] = ACTIONS(4898), + [anon_sym_CARET] = ACTIONS(4898), + [anon_sym__] = ACTIONS(4896), + [anon_sym_BQUOTE] = ACTIONS(4896), + [anon_sym_LBRACE] = ACTIONS(4896), + [anon_sym_PIPE] = ACTIONS(4896), + [anon_sym_TILDE] = ACTIONS(4896), + [anon_sym_LPAREN] = ACTIONS(4896), + [anon_sym_RPAREN] = ACTIONS(4896), + [sym__newline_token] = ACTIONS(4896), + [aux_sym_insert_token1] = ACTIONS(4896), + [aux_sym_delete_token1] = ACTIONS(4896), + [aux_sym_highlight_token1] = ACTIONS(4896), + [aux_sym_edit_comment_token1] = ACTIONS(4896), + [anon_sym_CARET_LBRACK] = ACTIONS(4896), + [anon_sym_LBRACK_CARET] = ACTIONS(4896), + [sym_uri_autolink] = ACTIONS(4896), + [sym_email_autolink] = ACTIONS(4896), + [sym__whitespace_ge_2] = ACTIONS(4896), + [aux_sym__whitespace_token1] = ACTIONS(4898), + [sym__word_no_digit] = ACTIONS(4896), + [sym__digits] = ACTIONS(4896), + [anon_sym_DASH_DASH] = ACTIONS(4898), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4896), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4896), + [sym__code_span_start] = ACTIONS(4896), + [sym__emphasis_open_star] = ACTIONS(4896), + [sym__emphasis_open_underscore] = ACTIONS(4896), + [sym__emphasis_close_underscore] = ACTIONS(4896), + [sym__strikeout_open] = ACTIONS(4896), + [sym__latex_span_start] = ACTIONS(4896), + [sym__single_quote_open] = ACTIONS(4896), + [sym__double_quote_open] = ACTIONS(4896), + [sym__superscript_open] = ACTIONS(4896), + [sym__subscript_open] = ACTIONS(4896), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4896), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4896), + [sym__cite_author_in_text] = ACTIONS(4896), + [sym__cite_suppress_author] = ACTIONS(4896), + [sym__shortcode_open_escaped] = ACTIONS(4896), + [sym__shortcode_open] = ACTIONS(4896), + [sym__unclosed_span] = ACTIONS(4896), + }, + [STATE(923)] = { + [sym__backslash_escape] = ACTIONS(4976), + [sym_entity_reference] = ACTIONS(4976), + [sym_numeric_character_reference] = ACTIONS(4976), + [anon_sym_LT] = ACTIONS(4978), + [anon_sym_GT] = ACTIONS(4976), + [anon_sym_BANG] = ACTIONS(4976), + [anon_sym_DQUOTE] = ACTIONS(4976), + [anon_sym_POUND] = ACTIONS(4976), + [anon_sym_DOLLAR] = ACTIONS(4976), + [anon_sym_PERCENT] = ACTIONS(4976), + [anon_sym_AMP] = ACTIONS(4978), + [anon_sym_SQUOTE] = ACTIONS(4976), + [anon_sym_STAR] = ACTIONS(4976), + [anon_sym_PLUS] = ACTIONS(4976), + [anon_sym_COMMA] = ACTIONS(4976), + [anon_sym_DASH] = ACTIONS(4978), + [anon_sym_DOT] = ACTIONS(4978), + [anon_sym_SLASH] = ACTIONS(4976), + [anon_sym_COLON] = ACTIONS(4976), + [anon_sym_SEMI] = ACTIONS(4976), + [anon_sym_EQ] = ACTIONS(4976), + [anon_sym_QMARK] = ACTIONS(4976), + [anon_sym_LBRACK] = ACTIONS(4978), + [anon_sym_BSLASH] = ACTIONS(4978), + [anon_sym_RBRACK] = ACTIONS(4976), + [anon_sym_CARET] = ACTIONS(4978), + [anon_sym__] = ACTIONS(4976), + [anon_sym_BQUOTE] = ACTIONS(4976), + [anon_sym_LBRACE] = ACTIONS(4976), + [anon_sym_PIPE] = ACTIONS(4976), + [anon_sym_TILDE] = ACTIONS(4976), + [anon_sym_LPAREN] = ACTIONS(4976), + [anon_sym_RPAREN] = ACTIONS(4976), + [sym__newline_token] = ACTIONS(4976), + [aux_sym_insert_token1] = ACTIONS(4976), + [aux_sym_delete_token1] = ACTIONS(4976), + [aux_sym_highlight_token1] = ACTIONS(4976), + [aux_sym_edit_comment_token1] = ACTIONS(4976), + [anon_sym_CARET_LBRACK] = ACTIONS(4976), + [anon_sym_LBRACK_CARET] = ACTIONS(4976), + [sym_uri_autolink] = ACTIONS(4976), + [sym_email_autolink] = ACTIONS(4976), + [sym__whitespace_ge_2] = ACTIONS(4976), + [aux_sym__whitespace_token1] = ACTIONS(4978), + [sym__word_no_digit] = ACTIONS(4976), + [sym__digits] = ACTIONS(4976), + [anon_sym_DASH_DASH] = ACTIONS(4978), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4976), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4976), + [sym__code_span_start] = ACTIONS(4976), + [sym__emphasis_open_star] = ACTIONS(4976), + [sym__emphasis_open_underscore] = ACTIONS(4976), + [sym__strikeout_open] = ACTIONS(4976), + [sym__latex_span_start] = ACTIONS(4976), + [sym__single_quote_open] = ACTIONS(4976), + [sym__double_quote_open] = ACTIONS(4976), + [sym__superscript_open] = ACTIONS(4976), + [sym__subscript_open] = ACTIONS(4976), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4976), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4976), + [sym__cite_author_in_text] = ACTIONS(4976), + [sym__cite_suppress_author] = ACTIONS(4976), + [sym__shortcode_open_escaped] = ACTIONS(4976), + [sym__shortcode_open] = ACTIONS(4976), + [sym__unclosed_span] = ACTIONS(4976), + }, + [STATE(924)] = { + [sym__backslash_escape] = ACTIONS(4980), + [sym_entity_reference] = ACTIONS(4980), + [sym_numeric_character_reference] = ACTIONS(4980), + [anon_sym_LT] = ACTIONS(4982), + [anon_sym_GT] = ACTIONS(4980), + [anon_sym_BANG] = ACTIONS(4980), + [anon_sym_DQUOTE] = ACTIONS(4980), + [anon_sym_POUND] = ACTIONS(4980), + [anon_sym_DOLLAR] = ACTIONS(4980), + [anon_sym_PERCENT] = ACTIONS(4980), + [anon_sym_AMP] = ACTIONS(4982), + [anon_sym_SQUOTE] = ACTIONS(4980), + [anon_sym_STAR] = ACTIONS(4980), + [anon_sym_PLUS] = ACTIONS(4980), + [anon_sym_COMMA] = ACTIONS(4980), + [anon_sym_DASH] = ACTIONS(4982), + [anon_sym_DOT] = ACTIONS(4982), + [anon_sym_SLASH] = ACTIONS(4980), + [anon_sym_COLON] = ACTIONS(4980), + [anon_sym_SEMI] = ACTIONS(4980), + [anon_sym_EQ] = ACTIONS(4980), + [anon_sym_QMARK] = ACTIONS(4980), + [anon_sym_LBRACK] = ACTIONS(4982), + [anon_sym_BSLASH] = ACTIONS(4982), + [anon_sym_RBRACK] = ACTIONS(4980), + [anon_sym_CARET] = ACTIONS(4982), + [anon_sym__] = ACTIONS(4980), + [anon_sym_BQUOTE] = ACTIONS(4980), + [anon_sym_LBRACE] = ACTIONS(4980), + [anon_sym_PIPE] = ACTIONS(4980), + [anon_sym_TILDE] = ACTIONS(4980), + [anon_sym_LPAREN] = ACTIONS(4980), + [anon_sym_RPAREN] = ACTIONS(4980), + [sym__newline_token] = ACTIONS(4980), + [aux_sym_insert_token1] = ACTIONS(4980), + [aux_sym_delete_token1] = ACTIONS(4980), + [aux_sym_highlight_token1] = ACTIONS(4980), + [aux_sym_edit_comment_token1] = ACTIONS(4980), + [anon_sym_CARET_LBRACK] = ACTIONS(4980), + [anon_sym_LBRACK_CARET] = ACTIONS(4980), + [sym_uri_autolink] = ACTIONS(4980), + [sym_email_autolink] = ACTIONS(4980), + [sym__whitespace_ge_2] = ACTIONS(4980), + [aux_sym__whitespace_token1] = ACTIONS(4982), + [sym__word_no_digit] = ACTIONS(4980), + [sym__digits] = ACTIONS(4980), + [anon_sym_DASH_DASH] = ACTIONS(4982), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4980), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4980), + [sym__code_span_start] = ACTIONS(4980), + [sym__emphasis_open_star] = ACTIONS(4980), + [sym__emphasis_open_underscore] = ACTIONS(4980), + [sym__strikeout_open] = ACTIONS(4980), + [sym__latex_span_start] = ACTIONS(4980), + [sym__single_quote_open] = ACTIONS(4980), + [sym__double_quote_open] = ACTIONS(4980), + [sym__superscript_open] = ACTIONS(4980), + [sym__subscript_open] = ACTIONS(4980), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4980), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4980), + [sym__cite_author_in_text] = ACTIONS(4980), + [sym__cite_suppress_author] = ACTIONS(4980), + [sym__shortcode_open_escaped] = ACTIONS(4980), + [sym__shortcode_open] = ACTIONS(4980), + [sym__unclosed_span] = ACTIONS(4980), + }, + [STATE(925)] = { + [sym__backslash_escape] = ACTIONS(4534), + [sym_entity_reference] = ACTIONS(4534), + [sym_numeric_character_reference] = ACTIONS(4534), + [anon_sym_LT] = ACTIONS(4536), + [anon_sym_GT] = ACTIONS(4534), + [anon_sym_BANG] = ACTIONS(4534), + [anon_sym_DQUOTE] = ACTIONS(4534), + [anon_sym_POUND] = ACTIONS(4534), + [anon_sym_DOLLAR] = ACTIONS(4534), + [anon_sym_PERCENT] = ACTIONS(4534), + [anon_sym_AMP] = ACTIONS(4536), + [anon_sym_SQUOTE] = ACTIONS(4534), + [anon_sym_STAR] = ACTIONS(4534), + [anon_sym_PLUS] = ACTIONS(4534), + [anon_sym_COMMA] = ACTIONS(4534), + [anon_sym_DASH] = ACTIONS(4536), + [anon_sym_DOT] = ACTIONS(4536), + [anon_sym_SLASH] = ACTIONS(4534), + [anon_sym_COLON] = ACTIONS(4534), + [anon_sym_SEMI] = ACTIONS(4534), + [anon_sym_EQ] = ACTIONS(4534), + [anon_sym_QMARK] = ACTIONS(4534), + [anon_sym_LBRACK] = ACTIONS(4536), + [anon_sym_BSLASH] = ACTIONS(4536), + [anon_sym_CARET] = ACTIONS(4536), + [anon_sym__] = ACTIONS(4534), + [anon_sym_BQUOTE] = ACTIONS(4534), + [anon_sym_LBRACE] = ACTIONS(4534), + [anon_sym_PIPE] = ACTIONS(4534), + [anon_sym_TILDE] = ACTIONS(4534), + [anon_sym_LPAREN] = ACTIONS(4534), + [anon_sym_RPAREN] = ACTIONS(4534), + [sym__newline_token] = ACTIONS(4534), + [aux_sym_insert_token1] = ACTIONS(4534), + [aux_sym_delete_token1] = ACTIONS(4534), + [aux_sym_highlight_token1] = ACTIONS(4534), + [aux_sym_edit_comment_token1] = ACTIONS(4534), + [anon_sym_CARET_LBRACK] = ACTIONS(4534), + [anon_sym_LBRACK_CARET] = ACTIONS(4534), + [sym_uri_autolink] = ACTIONS(4534), + [sym_email_autolink] = ACTIONS(4534), + [sym__whitespace_ge_2] = ACTIONS(4534), + [aux_sym__whitespace_token1] = ACTIONS(4536), + [sym__word_no_digit] = ACTIONS(4534), + [sym__digits] = ACTIONS(4534), + [anon_sym_DASH_DASH] = ACTIONS(4536), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4534), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4534), + [sym__code_span_start] = ACTIONS(4534), + [sym__emphasis_open_star] = ACTIONS(4534), + [sym__emphasis_open_underscore] = ACTIONS(4534), + [sym__emphasis_close_underscore] = ACTIONS(4534), + [sym__strikeout_open] = ACTIONS(4534), + [sym__latex_span_start] = ACTIONS(4534), + [sym__single_quote_open] = ACTIONS(4534), + [sym__double_quote_open] = ACTIONS(4534), + [sym__superscript_open] = ACTIONS(4534), + [sym__subscript_open] = ACTIONS(4534), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4534), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4534), + [sym__cite_author_in_text] = ACTIONS(4534), + [sym__cite_suppress_author] = ACTIONS(4534), + [sym__shortcode_open_escaped] = ACTIONS(4534), + [sym__shortcode_open] = ACTIONS(4534), + [sym__unclosed_span] = ACTIONS(4534), + }, + [STATE(926)] = { + [sym__backslash_escape] = ACTIONS(5024), + [sym_entity_reference] = ACTIONS(5024), + [sym_numeric_character_reference] = ACTIONS(5024), + [anon_sym_LT] = ACTIONS(5026), + [anon_sym_GT] = ACTIONS(5024), + [anon_sym_BANG] = ACTIONS(5024), + [anon_sym_DQUOTE] = ACTIONS(5024), + [anon_sym_POUND] = ACTIONS(5024), + [anon_sym_DOLLAR] = ACTIONS(5024), + [anon_sym_PERCENT] = ACTIONS(5024), + [anon_sym_AMP] = ACTIONS(5026), + [anon_sym_SQUOTE] = ACTIONS(5024), + [anon_sym_STAR] = ACTIONS(5024), + [anon_sym_PLUS] = ACTIONS(5024), + [anon_sym_COMMA] = ACTIONS(5024), + [anon_sym_DASH] = ACTIONS(5026), + [anon_sym_DOT] = ACTIONS(5026), + [anon_sym_SLASH] = ACTIONS(5024), + [anon_sym_COLON] = ACTIONS(5024), + [anon_sym_SEMI] = ACTIONS(5024), + [anon_sym_EQ] = ACTIONS(5024), + [anon_sym_QMARK] = ACTIONS(5024), + [anon_sym_LBRACK] = ACTIONS(5026), + [anon_sym_BSLASH] = ACTIONS(5026), + [anon_sym_CARET] = ACTIONS(5026), + [anon_sym__] = ACTIONS(5024), + [anon_sym_BQUOTE] = ACTIONS(5024), + [anon_sym_LBRACE] = ACTIONS(5024), + [anon_sym_PIPE] = ACTIONS(5024), + [anon_sym_TILDE] = ACTIONS(5024), + [anon_sym_LPAREN] = ACTIONS(5024), + [anon_sym_RPAREN] = ACTIONS(5024), + [sym__newline_token] = ACTIONS(5024), + [aux_sym_insert_token1] = ACTIONS(5024), + [aux_sym_delete_token1] = ACTIONS(5024), + [aux_sym_highlight_token1] = ACTIONS(5024), + [aux_sym_edit_comment_token1] = ACTIONS(5024), + [anon_sym_CARET_LBRACK] = ACTIONS(5024), + [anon_sym_LBRACK_CARET] = ACTIONS(5024), + [sym_uri_autolink] = ACTIONS(5024), + [sym_email_autolink] = ACTIONS(5024), + [sym__whitespace_ge_2] = ACTIONS(5024), + [aux_sym__whitespace_token1] = ACTIONS(5026), + [sym__word_no_digit] = ACTIONS(5024), + [sym__digits] = ACTIONS(5024), + [anon_sym_DASH_DASH] = ACTIONS(5026), + [anon_sym_DASH_DASH_DASH] = ACTIONS(5024), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5024), + [sym__code_span_start] = ACTIONS(5024), + [sym__emphasis_open_star] = ACTIONS(5024), + [sym__emphasis_open_underscore] = ACTIONS(5024), + [sym__emphasis_close_underscore] = ACTIONS(5024), + [sym__strikeout_open] = ACTIONS(5024), + [sym__latex_span_start] = ACTIONS(5024), + [sym__single_quote_open] = ACTIONS(5024), + [sym__double_quote_open] = ACTIONS(5024), + [sym__superscript_open] = ACTIONS(5024), + [sym__subscript_open] = ACTIONS(5024), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5024), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5024), + [sym__cite_author_in_text] = ACTIONS(5024), + [sym__cite_suppress_author] = ACTIONS(5024), + [sym__shortcode_open_escaped] = ACTIONS(5024), + [sym__shortcode_open] = ACTIONS(5024), + [sym__unclosed_span] = ACTIONS(5024), + }, + [STATE(927)] = { + [sym__backslash_escape] = ACTIONS(4996), + [sym_entity_reference] = ACTIONS(4996), + [sym_numeric_character_reference] = ACTIONS(4996), + [anon_sym_LT] = ACTIONS(4998), + [anon_sym_GT] = ACTIONS(4996), + [anon_sym_BANG] = ACTIONS(4996), + [anon_sym_DQUOTE] = ACTIONS(4996), + [anon_sym_POUND] = ACTIONS(4996), + [anon_sym_DOLLAR] = ACTIONS(4996), + [anon_sym_PERCENT] = ACTIONS(4996), + [anon_sym_AMP] = ACTIONS(4998), + [anon_sym_SQUOTE] = ACTIONS(4996), + [anon_sym_STAR] = ACTIONS(4996), + [anon_sym_PLUS] = ACTIONS(4996), + [anon_sym_COMMA] = ACTIONS(4996), + [anon_sym_DASH] = ACTIONS(4998), + [anon_sym_DOT] = ACTIONS(4998), + [anon_sym_SLASH] = ACTIONS(4996), + [anon_sym_COLON] = ACTIONS(4996), + [anon_sym_SEMI] = ACTIONS(4996), + [anon_sym_EQ] = ACTIONS(4996), + [anon_sym_QMARK] = ACTIONS(4996), + [anon_sym_LBRACK] = ACTIONS(4998), + [anon_sym_BSLASH] = ACTIONS(4998), + [anon_sym_RBRACK] = ACTIONS(4996), + [anon_sym_CARET] = ACTIONS(4998), + [anon_sym__] = ACTIONS(4996), + [anon_sym_BQUOTE] = ACTIONS(4996), + [anon_sym_LBRACE] = ACTIONS(4996), + [anon_sym_PIPE] = ACTIONS(4996), + [anon_sym_TILDE] = ACTIONS(4996), + [anon_sym_LPAREN] = ACTIONS(4996), + [anon_sym_RPAREN] = ACTIONS(4996), + [sym__newline_token] = ACTIONS(4996), + [aux_sym_insert_token1] = ACTIONS(4996), + [aux_sym_delete_token1] = ACTIONS(4996), + [aux_sym_highlight_token1] = ACTIONS(4996), + [aux_sym_edit_comment_token1] = ACTIONS(4996), + [anon_sym_CARET_LBRACK] = ACTIONS(4996), + [anon_sym_LBRACK_CARET] = ACTIONS(4996), + [sym_uri_autolink] = ACTIONS(4996), + [sym_email_autolink] = ACTIONS(4996), + [sym__whitespace_ge_2] = ACTIONS(4996), + [aux_sym__whitespace_token1] = ACTIONS(4998), + [sym__word_no_digit] = ACTIONS(4996), + [sym__digits] = ACTIONS(4996), + [anon_sym_DASH_DASH] = ACTIONS(4998), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4996), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4996), + [sym__code_span_start] = ACTIONS(4996), + [sym__emphasis_open_star] = ACTIONS(4996), + [sym__emphasis_open_underscore] = ACTIONS(4996), + [sym__strikeout_open] = ACTIONS(4996), + [sym__latex_span_start] = ACTIONS(4996), + [sym__single_quote_open] = ACTIONS(4996), + [sym__double_quote_open] = ACTIONS(4996), + [sym__superscript_open] = ACTIONS(4996), + [sym__subscript_open] = ACTIONS(4996), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4996), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4996), + [sym__cite_author_in_text] = ACTIONS(4996), + [sym__cite_suppress_author] = ACTIONS(4996), + [sym__shortcode_open_escaped] = ACTIONS(4996), + [sym__shortcode_open] = ACTIONS(4996), + [sym__unclosed_span] = ACTIONS(4996), + }, + [STATE(928)] = { + [sym__backslash_escape] = ACTIONS(5000), + [sym_entity_reference] = ACTIONS(5000), + [sym_numeric_character_reference] = ACTIONS(5000), + [anon_sym_LT] = ACTIONS(5002), + [anon_sym_GT] = ACTIONS(5000), + [anon_sym_BANG] = ACTIONS(5000), + [anon_sym_DQUOTE] = ACTIONS(5000), + [anon_sym_POUND] = ACTIONS(5000), + [anon_sym_DOLLAR] = ACTIONS(5000), + [anon_sym_PERCENT] = ACTIONS(5000), + [anon_sym_AMP] = ACTIONS(5002), + [anon_sym_SQUOTE] = ACTIONS(5000), + [anon_sym_STAR] = ACTIONS(5000), + [anon_sym_PLUS] = ACTIONS(5000), + [anon_sym_COMMA] = ACTIONS(5000), + [anon_sym_DASH] = ACTIONS(5002), + [anon_sym_DOT] = ACTIONS(5002), + [anon_sym_SLASH] = ACTIONS(5000), + [anon_sym_COLON] = ACTIONS(5000), + [anon_sym_SEMI] = ACTIONS(5000), + [anon_sym_EQ] = ACTIONS(5000), + [anon_sym_QMARK] = ACTIONS(5000), + [anon_sym_LBRACK] = ACTIONS(5002), + [anon_sym_BSLASH] = ACTIONS(5002), + [anon_sym_RBRACK] = ACTIONS(5000), + [anon_sym_CARET] = ACTIONS(5002), + [anon_sym__] = ACTIONS(5000), + [anon_sym_BQUOTE] = ACTIONS(5000), + [anon_sym_LBRACE] = ACTIONS(5000), + [anon_sym_PIPE] = ACTIONS(5000), + [anon_sym_TILDE] = ACTIONS(5000), + [anon_sym_LPAREN] = ACTIONS(5000), + [anon_sym_RPAREN] = ACTIONS(5000), + [sym__newline_token] = ACTIONS(5000), + [aux_sym_insert_token1] = ACTIONS(5000), + [aux_sym_delete_token1] = ACTIONS(5000), + [aux_sym_highlight_token1] = ACTIONS(5000), + [aux_sym_edit_comment_token1] = ACTIONS(5000), + [anon_sym_CARET_LBRACK] = ACTIONS(5000), + [anon_sym_LBRACK_CARET] = ACTIONS(5000), + [sym_uri_autolink] = ACTIONS(5000), + [sym_email_autolink] = ACTIONS(5000), + [sym__whitespace_ge_2] = ACTIONS(5000), + [aux_sym__whitespace_token1] = ACTIONS(5002), + [sym__word_no_digit] = ACTIONS(5000), + [sym__digits] = ACTIONS(5000), + [anon_sym_DASH_DASH] = ACTIONS(5002), + [anon_sym_DASH_DASH_DASH] = ACTIONS(5000), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5000), + [sym__code_span_start] = ACTIONS(5000), + [sym__emphasis_open_star] = ACTIONS(5000), + [sym__emphasis_open_underscore] = ACTIONS(5000), + [sym__strikeout_open] = ACTIONS(5000), + [sym__latex_span_start] = ACTIONS(5000), + [sym__single_quote_open] = ACTIONS(5000), + [sym__double_quote_open] = ACTIONS(5000), + [sym__superscript_open] = ACTIONS(5000), + [sym__subscript_open] = ACTIONS(5000), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5000), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5000), + [sym__cite_author_in_text] = ACTIONS(5000), + [sym__cite_suppress_author] = ACTIONS(5000), + [sym__shortcode_open_escaped] = ACTIONS(5000), + [sym__shortcode_open] = ACTIONS(5000), + [sym__unclosed_span] = ACTIONS(5000), + }, + [STATE(929)] = { + [sym__backslash_escape] = ACTIONS(5004), + [sym_entity_reference] = ACTIONS(5004), + [sym_numeric_character_reference] = ACTIONS(5004), + [anon_sym_LT] = ACTIONS(5006), + [anon_sym_GT] = ACTIONS(5004), + [anon_sym_BANG] = ACTIONS(5004), + [anon_sym_DQUOTE] = ACTIONS(5004), + [anon_sym_POUND] = ACTIONS(5004), + [anon_sym_DOLLAR] = ACTIONS(5004), + [anon_sym_PERCENT] = ACTIONS(5004), + [anon_sym_AMP] = ACTIONS(5006), + [anon_sym_SQUOTE] = ACTIONS(5004), + [anon_sym_STAR] = ACTIONS(5004), + [anon_sym_PLUS] = ACTIONS(5004), + [anon_sym_COMMA] = ACTIONS(5004), + [anon_sym_DASH] = ACTIONS(5006), + [anon_sym_DOT] = ACTIONS(5006), + [anon_sym_SLASH] = ACTIONS(5004), + [anon_sym_COLON] = ACTIONS(5004), + [anon_sym_SEMI] = ACTIONS(5004), + [anon_sym_EQ] = ACTIONS(5004), + [anon_sym_QMARK] = ACTIONS(5004), + [anon_sym_LBRACK] = ACTIONS(5006), + [anon_sym_BSLASH] = ACTIONS(5006), + [anon_sym_RBRACK] = ACTIONS(5004), + [anon_sym_CARET] = ACTIONS(5006), + [anon_sym__] = ACTIONS(5004), + [anon_sym_BQUOTE] = ACTIONS(5004), + [anon_sym_LBRACE] = ACTIONS(5004), + [anon_sym_PIPE] = ACTIONS(5004), + [anon_sym_TILDE] = ACTIONS(5004), + [anon_sym_LPAREN] = ACTIONS(5004), + [anon_sym_RPAREN] = ACTIONS(5004), + [sym__newline_token] = ACTIONS(5004), + [aux_sym_insert_token1] = ACTIONS(5004), + [aux_sym_delete_token1] = ACTIONS(5004), + [aux_sym_highlight_token1] = ACTIONS(5004), + [aux_sym_edit_comment_token1] = ACTIONS(5004), + [anon_sym_CARET_LBRACK] = ACTIONS(5004), + [anon_sym_LBRACK_CARET] = ACTIONS(5004), + [sym_uri_autolink] = ACTIONS(5004), + [sym_email_autolink] = ACTIONS(5004), + [sym__whitespace_ge_2] = ACTIONS(5004), + [aux_sym__whitespace_token1] = ACTIONS(5006), + [sym__word_no_digit] = ACTIONS(5004), + [sym__digits] = ACTIONS(5004), + [anon_sym_DASH_DASH] = ACTIONS(5006), + [anon_sym_DASH_DASH_DASH] = ACTIONS(5004), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5004), + [sym__code_span_start] = ACTIONS(5004), + [sym__emphasis_open_star] = ACTIONS(5004), + [sym__emphasis_open_underscore] = ACTIONS(5004), + [sym__strikeout_open] = ACTIONS(5004), + [sym__latex_span_start] = ACTIONS(5004), + [sym__single_quote_open] = ACTIONS(5004), + [sym__double_quote_open] = ACTIONS(5004), + [sym__superscript_open] = ACTIONS(5004), + [sym__subscript_open] = ACTIONS(5004), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5004), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5004), + [sym__cite_author_in_text] = ACTIONS(5004), + [sym__cite_suppress_author] = ACTIONS(5004), + [sym__shortcode_open_escaped] = ACTIONS(5004), + [sym__shortcode_open] = ACTIONS(5004), + [sym__unclosed_span] = ACTIONS(5004), + }, + [STATE(930)] = { + [sym__backslash_escape] = ACTIONS(5008), + [sym_entity_reference] = ACTIONS(5008), + [sym_numeric_character_reference] = ACTIONS(5008), + [anon_sym_LT] = ACTIONS(5010), + [anon_sym_GT] = ACTIONS(5008), + [anon_sym_BANG] = ACTIONS(5008), + [anon_sym_DQUOTE] = ACTIONS(5008), + [anon_sym_POUND] = ACTIONS(5008), + [anon_sym_DOLLAR] = ACTIONS(5008), + [anon_sym_PERCENT] = ACTIONS(5008), + [anon_sym_AMP] = ACTIONS(5010), + [anon_sym_SQUOTE] = ACTIONS(5008), + [anon_sym_STAR] = ACTIONS(5008), + [anon_sym_PLUS] = ACTIONS(5008), + [anon_sym_COMMA] = ACTIONS(5008), + [anon_sym_DASH] = ACTIONS(5010), + [anon_sym_DOT] = ACTIONS(5010), + [anon_sym_SLASH] = ACTIONS(5008), + [anon_sym_COLON] = ACTIONS(5008), + [anon_sym_SEMI] = ACTIONS(5008), + [anon_sym_EQ] = ACTIONS(5008), + [anon_sym_QMARK] = ACTIONS(5008), + [anon_sym_LBRACK] = ACTIONS(5010), + [anon_sym_BSLASH] = ACTIONS(5010), + [anon_sym_RBRACK] = ACTIONS(5008), + [anon_sym_CARET] = ACTIONS(5010), + [anon_sym__] = ACTIONS(5008), + [anon_sym_BQUOTE] = ACTIONS(5008), + [anon_sym_LBRACE] = ACTIONS(5008), + [anon_sym_PIPE] = ACTIONS(5008), + [anon_sym_TILDE] = ACTIONS(5008), + [anon_sym_LPAREN] = ACTIONS(5008), + [anon_sym_RPAREN] = ACTIONS(5008), + [sym__newline_token] = ACTIONS(5008), + [aux_sym_insert_token1] = ACTIONS(5008), + [aux_sym_delete_token1] = ACTIONS(5008), + [aux_sym_highlight_token1] = ACTIONS(5008), + [aux_sym_edit_comment_token1] = ACTIONS(5008), + [anon_sym_CARET_LBRACK] = ACTIONS(5008), + [anon_sym_LBRACK_CARET] = ACTIONS(5008), + [sym_uri_autolink] = ACTIONS(5008), + [sym_email_autolink] = ACTIONS(5008), + [sym__whitespace_ge_2] = ACTIONS(5008), + [aux_sym__whitespace_token1] = ACTIONS(5010), + [sym__word_no_digit] = ACTIONS(5008), + [sym__digits] = ACTIONS(5008), + [anon_sym_DASH_DASH] = ACTIONS(5010), + [anon_sym_DASH_DASH_DASH] = ACTIONS(5008), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5008), + [sym__code_span_start] = ACTIONS(5008), + [sym__emphasis_open_star] = ACTIONS(5008), + [sym__emphasis_open_underscore] = ACTIONS(5008), + [sym__strikeout_open] = ACTIONS(5008), + [sym__latex_span_start] = ACTIONS(5008), + [sym__single_quote_open] = ACTIONS(5008), + [sym__double_quote_open] = ACTIONS(5008), + [sym__superscript_open] = ACTIONS(5008), + [sym__subscript_open] = ACTIONS(5008), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5008), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5008), + [sym__cite_author_in_text] = ACTIONS(5008), + [sym__cite_suppress_author] = ACTIONS(5008), + [sym__shortcode_open_escaped] = ACTIONS(5008), + [sym__shortcode_open] = ACTIONS(5008), + [sym__unclosed_span] = ACTIONS(5008), + }, + [STATE(931)] = { + [sym__backslash_escape] = ACTIONS(5012), + [sym_entity_reference] = ACTIONS(5012), + [sym_numeric_character_reference] = ACTIONS(5012), + [anon_sym_LT] = ACTIONS(5014), + [anon_sym_GT] = ACTIONS(5012), + [anon_sym_BANG] = ACTIONS(5012), + [anon_sym_DQUOTE] = ACTIONS(5012), + [anon_sym_POUND] = ACTIONS(5012), + [anon_sym_DOLLAR] = ACTIONS(5012), + [anon_sym_PERCENT] = ACTIONS(5012), + [anon_sym_AMP] = ACTIONS(5014), + [anon_sym_SQUOTE] = ACTIONS(5012), + [anon_sym_STAR] = ACTIONS(5012), + [anon_sym_PLUS] = ACTIONS(5012), + [anon_sym_COMMA] = ACTIONS(5012), + [anon_sym_DASH] = ACTIONS(5014), + [anon_sym_DOT] = ACTIONS(5014), + [anon_sym_SLASH] = ACTIONS(5012), + [anon_sym_COLON] = ACTIONS(5012), + [anon_sym_SEMI] = ACTIONS(5012), + [anon_sym_EQ] = ACTIONS(5012), + [anon_sym_QMARK] = ACTIONS(5012), + [anon_sym_LBRACK] = ACTIONS(5014), + [anon_sym_BSLASH] = ACTIONS(5014), + [anon_sym_RBRACK] = ACTIONS(5012), + [anon_sym_CARET] = ACTIONS(5014), + [anon_sym__] = ACTIONS(5012), + [anon_sym_BQUOTE] = ACTIONS(5012), + [anon_sym_LBRACE] = ACTIONS(5012), + [anon_sym_PIPE] = ACTIONS(5012), + [anon_sym_TILDE] = ACTIONS(5012), + [anon_sym_LPAREN] = ACTIONS(5012), + [anon_sym_RPAREN] = ACTIONS(5012), + [sym__newline_token] = ACTIONS(5012), + [aux_sym_insert_token1] = ACTIONS(5012), + [aux_sym_delete_token1] = ACTIONS(5012), + [aux_sym_highlight_token1] = ACTIONS(5012), + [aux_sym_edit_comment_token1] = ACTIONS(5012), + [anon_sym_CARET_LBRACK] = ACTIONS(5012), + [anon_sym_LBRACK_CARET] = ACTIONS(5012), + [sym_uri_autolink] = ACTIONS(5012), + [sym_email_autolink] = ACTIONS(5012), + [sym__whitespace_ge_2] = ACTIONS(5012), + [aux_sym__whitespace_token1] = ACTIONS(5014), + [sym__word_no_digit] = ACTIONS(5012), + [sym__digits] = ACTIONS(5012), + [anon_sym_DASH_DASH] = ACTIONS(5014), + [anon_sym_DASH_DASH_DASH] = ACTIONS(5012), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5012), + [sym__code_span_start] = ACTIONS(5012), + [sym__emphasis_open_star] = ACTIONS(5012), + [sym__emphasis_open_underscore] = ACTIONS(5012), + [sym__strikeout_open] = ACTIONS(5012), + [sym__latex_span_start] = ACTIONS(5012), + [sym__single_quote_open] = ACTIONS(5012), + [sym__double_quote_open] = ACTIONS(5012), + [sym__superscript_open] = ACTIONS(5012), + [sym__subscript_open] = ACTIONS(5012), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5012), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5012), + [sym__cite_author_in_text] = ACTIONS(5012), + [sym__cite_suppress_author] = ACTIONS(5012), + [sym__shortcode_open_escaped] = ACTIONS(5012), + [sym__shortcode_open] = ACTIONS(5012), + [sym__unclosed_span] = ACTIONS(5012), + }, + [STATE(932)] = { + [sym__backslash_escape] = ACTIONS(4948), + [sym_entity_reference] = ACTIONS(4948), + [sym_numeric_character_reference] = ACTIONS(4948), + [anon_sym_LT] = ACTIONS(4950), + [anon_sym_GT] = ACTIONS(4948), + [anon_sym_BANG] = ACTIONS(4948), + [anon_sym_DQUOTE] = ACTIONS(4948), + [anon_sym_POUND] = ACTIONS(4948), + [anon_sym_DOLLAR] = ACTIONS(4948), + [anon_sym_PERCENT] = ACTIONS(4948), + [anon_sym_AMP] = ACTIONS(4950), + [anon_sym_SQUOTE] = ACTIONS(4948), + [anon_sym_STAR] = ACTIONS(4948), + [anon_sym_PLUS] = ACTIONS(4948), + [anon_sym_COMMA] = ACTIONS(4948), + [anon_sym_DASH] = ACTIONS(4950), + [anon_sym_DOT] = ACTIONS(4950), + [anon_sym_SLASH] = ACTIONS(4948), + [anon_sym_COLON] = ACTIONS(4948), + [anon_sym_SEMI] = ACTIONS(4948), + [anon_sym_EQ] = ACTIONS(4948), + [anon_sym_QMARK] = ACTIONS(4948), + [anon_sym_LBRACK] = ACTIONS(4950), + [anon_sym_BSLASH] = ACTIONS(4950), + [anon_sym_RBRACK] = ACTIONS(4948), + [anon_sym_CARET] = ACTIONS(4950), + [anon_sym__] = ACTIONS(4948), + [anon_sym_BQUOTE] = ACTIONS(4948), + [anon_sym_LBRACE] = ACTIONS(4948), + [anon_sym_PIPE] = ACTIONS(4948), + [anon_sym_TILDE] = ACTIONS(4948), + [anon_sym_LPAREN] = ACTIONS(4948), + [anon_sym_RPAREN] = ACTIONS(4948), + [sym__newline_token] = ACTIONS(4948), + [aux_sym_insert_token1] = ACTIONS(4948), + [aux_sym_delete_token1] = ACTIONS(4948), + [aux_sym_highlight_token1] = ACTIONS(4948), + [aux_sym_edit_comment_token1] = ACTIONS(4948), + [anon_sym_CARET_LBRACK] = ACTIONS(4948), + [anon_sym_LBRACK_CARET] = ACTIONS(4948), + [sym_uri_autolink] = ACTIONS(4948), + [sym_email_autolink] = ACTIONS(4948), + [sym__whitespace_ge_2] = ACTIONS(4948), + [aux_sym__whitespace_token1] = ACTIONS(4950), + [sym__word_no_digit] = ACTIONS(4948), + [sym__digits] = ACTIONS(4948), + [anon_sym_DASH_DASH] = ACTIONS(4950), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4948), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4948), + [sym__code_span_start] = ACTIONS(4948), + [sym__emphasis_open_star] = ACTIONS(4948), + [sym__emphasis_open_underscore] = ACTIONS(4948), + [sym__strikeout_open] = ACTIONS(4948), + [sym__latex_span_start] = ACTIONS(4948), + [sym__single_quote_open] = ACTIONS(4948), + [sym__double_quote_open] = ACTIONS(4948), + [sym__superscript_open] = ACTIONS(4948), + [sym__subscript_open] = ACTIONS(4948), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4948), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4948), + [sym__cite_author_in_text] = ACTIONS(4948), + [sym__cite_suppress_author] = ACTIONS(4948), + [sym__shortcode_open_escaped] = ACTIONS(4948), + [sym__shortcode_open] = ACTIONS(4948), + [sym__unclosed_span] = ACTIONS(4948), + }, + [STATE(933)] = { + [sym__backslash_escape] = ACTIONS(5016), + [sym_entity_reference] = ACTIONS(5016), + [sym_numeric_character_reference] = ACTIONS(5016), + [anon_sym_LT] = ACTIONS(5018), + [anon_sym_GT] = ACTIONS(5016), + [anon_sym_BANG] = ACTIONS(5016), + [anon_sym_DQUOTE] = ACTIONS(5016), + [anon_sym_POUND] = ACTIONS(5016), + [anon_sym_DOLLAR] = ACTIONS(5016), + [anon_sym_PERCENT] = ACTIONS(5016), + [anon_sym_AMP] = ACTIONS(5018), + [anon_sym_SQUOTE] = ACTIONS(5016), + [anon_sym_STAR] = ACTIONS(5016), + [anon_sym_PLUS] = ACTIONS(5016), + [anon_sym_COMMA] = ACTIONS(5016), + [anon_sym_DASH] = ACTIONS(5018), + [anon_sym_DOT] = ACTIONS(5018), + [anon_sym_SLASH] = ACTIONS(5016), + [anon_sym_COLON] = ACTIONS(5016), + [anon_sym_SEMI] = ACTIONS(5016), + [anon_sym_EQ] = ACTIONS(5016), + [anon_sym_QMARK] = ACTIONS(5016), + [anon_sym_LBRACK] = ACTIONS(5018), + [anon_sym_BSLASH] = ACTIONS(5018), + [anon_sym_RBRACK] = ACTIONS(5016), + [anon_sym_CARET] = ACTIONS(5018), + [anon_sym__] = ACTIONS(5016), + [anon_sym_BQUOTE] = ACTIONS(5016), + [anon_sym_LBRACE] = ACTIONS(5016), + [anon_sym_PIPE] = ACTIONS(5016), + [anon_sym_TILDE] = ACTIONS(5016), + [anon_sym_LPAREN] = ACTIONS(5016), + [anon_sym_RPAREN] = ACTIONS(5016), + [sym__newline_token] = ACTIONS(5016), + [aux_sym_insert_token1] = ACTIONS(5016), + [aux_sym_delete_token1] = ACTIONS(5016), + [aux_sym_highlight_token1] = ACTIONS(5016), + [aux_sym_edit_comment_token1] = ACTIONS(5016), + [anon_sym_CARET_LBRACK] = ACTIONS(5016), + [anon_sym_LBRACK_CARET] = ACTIONS(5016), + [sym_uri_autolink] = ACTIONS(5016), + [sym_email_autolink] = ACTIONS(5016), + [sym__whitespace_ge_2] = ACTIONS(5016), + [aux_sym__whitespace_token1] = ACTIONS(5018), + [sym__word_no_digit] = ACTIONS(5016), + [sym__digits] = ACTIONS(5016), + [anon_sym_DASH_DASH] = ACTIONS(5018), + [anon_sym_DASH_DASH_DASH] = ACTIONS(5016), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5016), + [sym__code_span_start] = ACTIONS(5016), + [sym__emphasis_open_star] = ACTIONS(5016), + [sym__emphasis_open_underscore] = ACTIONS(5016), + [sym__strikeout_open] = ACTIONS(5016), + [sym__latex_span_start] = ACTIONS(5016), + [sym__single_quote_open] = ACTIONS(5016), + [sym__double_quote_open] = ACTIONS(5016), + [sym__superscript_open] = ACTIONS(5016), + [sym__subscript_open] = ACTIONS(5016), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5016), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5016), + [sym__cite_author_in_text] = ACTIONS(5016), + [sym__cite_suppress_author] = ACTIONS(5016), + [sym__shortcode_open_escaped] = ACTIONS(5016), + [sym__shortcode_open] = ACTIONS(5016), + [sym__unclosed_span] = ACTIONS(5016), + }, + [STATE(934)] = { + [sym__backslash_escape] = ACTIONS(5020), + [sym_entity_reference] = ACTIONS(5020), + [sym_numeric_character_reference] = ACTIONS(5020), + [anon_sym_LT] = ACTIONS(5022), + [anon_sym_GT] = ACTIONS(5020), + [anon_sym_BANG] = ACTIONS(5020), + [anon_sym_DQUOTE] = ACTIONS(5020), + [anon_sym_POUND] = ACTIONS(5020), + [anon_sym_DOLLAR] = ACTIONS(5020), + [anon_sym_PERCENT] = ACTIONS(5020), + [anon_sym_AMP] = ACTIONS(5022), + [anon_sym_SQUOTE] = ACTIONS(5020), + [anon_sym_STAR] = ACTIONS(5020), + [anon_sym_PLUS] = ACTIONS(5020), + [anon_sym_COMMA] = ACTIONS(5020), + [anon_sym_DASH] = ACTIONS(5022), + [anon_sym_DOT] = ACTIONS(5022), + [anon_sym_SLASH] = ACTIONS(5020), + [anon_sym_COLON] = ACTIONS(5020), + [anon_sym_SEMI] = ACTIONS(5020), + [anon_sym_EQ] = ACTIONS(5020), + [anon_sym_QMARK] = ACTIONS(5020), + [anon_sym_LBRACK] = ACTIONS(5022), + [anon_sym_BSLASH] = ACTIONS(5022), + [anon_sym_RBRACK] = ACTIONS(5020), + [anon_sym_CARET] = ACTIONS(5022), + [anon_sym__] = ACTIONS(5020), + [anon_sym_BQUOTE] = ACTIONS(5020), + [anon_sym_LBRACE] = ACTIONS(5020), + [anon_sym_PIPE] = ACTIONS(5020), + [anon_sym_TILDE] = ACTIONS(5020), + [anon_sym_LPAREN] = ACTIONS(5020), + [anon_sym_RPAREN] = ACTIONS(5020), + [sym__newline_token] = ACTIONS(5020), + [aux_sym_insert_token1] = ACTIONS(5020), + [aux_sym_delete_token1] = ACTIONS(5020), + [aux_sym_highlight_token1] = ACTIONS(5020), + [aux_sym_edit_comment_token1] = ACTIONS(5020), + [anon_sym_CARET_LBRACK] = ACTIONS(5020), + [anon_sym_LBRACK_CARET] = ACTIONS(5020), + [sym_uri_autolink] = ACTIONS(5020), + [sym_email_autolink] = ACTIONS(5020), + [sym__whitespace_ge_2] = ACTIONS(5020), + [aux_sym__whitespace_token1] = ACTIONS(5022), + [sym__word_no_digit] = ACTIONS(5020), + [sym__digits] = ACTIONS(5020), + [anon_sym_DASH_DASH] = ACTIONS(5022), + [anon_sym_DASH_DASH_DASH] = ACTIONS(5020), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5020), + [sym__code_span_start] = ACTIONS(5020), + [sym__emphasis_open_star] = ACTIONS(5020), + [sym__emphasis_open_underscore] = ACTIONS(5020), + [sym__strikeout_open] = ACTIONS(5020), + [sym__latex_span_start] = ACTIONS(5020), + [sym__single_quote_open] = ACTIONS(5020), + [sym__double_quote_open] = ACTIONS(5020), + [sym__superscript_open] = ACTIONS(5020), + [sym__subscript_open] = ACTIONS(5020), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5020), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5020), + [sym__cite_author_in_text] = ACTIONS(5020), + [sym__cite_suppress_author] = ACTIONS(5020), + [sym__shortcode_open_escaped] = ACTIONS(5020), + [sym__shortcode_open] = ACTIONS(5020), + [sym__unclosed_span] = ACTIONS(5020), + }, + [STATE(935)] = { + [sym__backslash_escape] = ACTIONS(4546), + [sym_entity_reference] = ACTIONS(4546), + [sym_numeric_character_reference] = ACTIONS(4546), + [anon_sym_LT] = ACTIONS(4548), + [anon_sym_GT] = ACTIONS(4546), + [anon_sym_BANG] = ACTIONS(4546), + [anon_sym_DQUOTE] = ACTIONS(4546), + [anon_sym_POUND] = ACTIONS(4546), + [anon_sym_DOLLAR] = ACTIONS(4546), + [anon_sym_PERCENT] = ACTIONS(4546), + [anon_sym_AMP] = ACTIONS(4548), + [anon_sym_SQUOTE] = ACTIONS(4546), + [anon_sym_STAR] = ACTIONS(4546), + [anon_sym_PLUS] = ACTIONS(4546), + [anon_sym_COMMA] = ACTIONS(4546), + [anon_sym_DASH] = ACTIONS(4548), + [anon_sym_DOT] = ACTIONS(4548), + [anon_sym_SLASH] = ACTIONS(4546), + [anon_sym_COLON] = ACTIONS(4546), + [anon_sym_SEMI] = ACTIONS(4546), + [anon_sym_EQ] = ACTIONS(4546), + [anon_sym_QMARK] = ACTIONS(4546), + [anon_sym_LBRACK] = ACTIONS(4548), + [anon_sym_BSLASH] = ACTIONS(4548), + [anon_sym_CARET] = ACTIONS(4548), + [anon_sym__] = ACTIONS(4546), + [anon_sym_BQUOTE] = ACTIONS(4546), + [anon_sym_LBRACE] = ACTIONS(4546), + [anon_sym_PIPE] = ACTIONS(4546), + [anon_sym_TILDE] = ACTIONS(4546), + [anon_sym_LPAREN] = ACTIONS(4546), + [anon_sym_RPAREN] = ACTIONS(4546), + [sym__newline_token] = ACTIONS(4546), + [aux_sym_insert_token1] = ACTIONS(4546), + [aux_sym_delete_token1] = ACTIONS(4546), + [aux_sym_highlight_token1] = ACTIONS(4546), + [aux_sym_edit_comment_token1] = ACTIONS(4546), + [anon_sym_CARET_LBRACK] = ACTIONS(4546), + [anon_sym_LBRACK_CARET] = ACTIONS(4546), + [sym_uri_autolink] = ACTIONS(4546), + [sym_email_autolink] = ACTIONS(4546), + [sym__whitespace_ge_2] = ACTIONS(4546), + [aux_sym__whitespace_token1] = ACTIONS(4548), + [sym__word_no_digit] = ACTIONS(4546), + [sym__digits] = ACTIONS(4546), + [anon_sym_DASH_DASH] = ACTIONS(4548), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4546), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4546), + [sym__code_span_start] = ACTIONS(4546), + [sym__emphasis_open_star] = ACTIONS(4546), + [sym__emphasis_open_underscore] = ACTIONS(4546), + [sym__emphasis_close_underscore] = ACTIONS(4546), + [sym__strikeout_open] = ACTIONS(4546), + [sym__latex_span_start] = ACTIONS(4546), + [sym__single_quote_open] = ACTIONS(4546), + [sym__double_quote_open] = ACTIONS(4546), + [sym__superscript_open] = ACTIONS(4546), + [sym__subscript_open] = ACTIONS(4546), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4546), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4546), + [sym__cite_author_in_text] = ACTIONS(4546), + [sym__cite_suppress_author] = ACTIONS(4546), + [sym__shortcode_open_escaped] = ACTIONS(4546), + [sym__shortcode_open] = ACTIONS(4546), + [sym__unclosed_span] = ACTIONS(4546), + }, + [STATE(936)] = { + [sym__backslash_escape] = ACTIONS(4936), + [sym_entity_reference] = ACTIONS(4936), + [sym_numeric_character_reference] = ACTIONS(4936), + [anon_sym_LT] = ACTIONS(4938), + [anon_sym_GT] = ACTIONS(4936), + [anon_sym_BANG] = ACTIONS(4936), + [anon_sym_DQUOTE] = ACTIONS(4936), + [anon_sym_POUND] = ACTIONS(4936), + [anon_sym_DOLLAR] = ACTIONS(4936), + [anon_sym_PERCENT] = ACTIONS(4936), + [anon_sym_AMP] = ACTIONS(4938), + [anon_sym_SQUOTE] = ACTIONS(4936), + [anon_sym_STAR] = ACTIONS(4936), + [anon_sym_PLUS] = ACTIONS(4936), + [anon_sym_COMMA] = ACTIONS(4936), + [anon_sym_DASH] = ACTIONS(4938), + [anon_sym_DOT] = ACTIONS(4938), + [anon_sym_SLASH] = ACTIONS(4936), + [anon_sym_COLON] = ACTIONS(4936), + [anon_sym_SEMI] = ACTIONS(4936), + [anon_sym_EQ] = ACTIONS(4936), + [anon_sym_QMARK] = ACTIONS(4936), + [anon_sym_LBRACK] = ACTIONS(4938), + [anon_sym_BSLASH] = ACTIONS(4938), + [anon_sym_RBRACK] = ACTIONS(4936), + [anon_sym_CARET] = ACTIONS(4938), + [anon_sym__] = ACTIONS(4936), + [anon_sym_BQUOTE] = ACTIONS(4936), + [anon_sym_LBRACE] = ACTIONS(4936), + [anon_sym_PIPE] = ACTIONS(4936), + [anon_sym_TILDE] = ACTIONS(4936), + [anon_sym_LPAREN] = ACTIONS(4936), + [anon_sym_RPAREN] = ACTIONS(4936), + [sym__newline_token] = ACTIONS(4936), + [aux_sym_insert_token1] = ACTIONS(4936), + [aux_sym_delete_token1] = ACTIONS(4936), + [aux_sym_highlight_token1] = ACTIONS(4936), + [aux_sym_edit_comment_token1] = ACTIONS(4936), + [anon_sym_CARET_LBRACK] = ACTIONS(4936), + [anon_sym_LBRACK_CARET] = ACTIONS(4936), + [sym_uri_autolink] = ACTIONS(4936), + [sym_email_autolink] = ACTIONS(4936), + [sym__whitespace_ge_2] = ACTIONS(4936), + [aux_sym__whitespace_token1] = ACTIONS(4938), + [sym__word_no_digit] = ACTIONS(4936), + [sym__digits] = ACTIONS(4936), + [anon_sym_DASH_DASH] = ACTIONS(4938), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4936), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4936), + [sym__code_span_start] = ACTIONS(4936), + [sym__emphasis_open_star] = ACTIONS(4936), + [sym__emphasis_open_underscore] = ACTIONS(4936), + [sym__strikeout_open] = ACTIONS(4936), + [sym__latex_span_start] = ACTIONS(4936), + [sym__single_quote_open] = ACTIONS(4936), + [sym__double_quote_open] = ACTIONS(4936), + [sym__superscript_open] = ACTIONS(4936), + [sym__subscript_open] = ACTIONS(4936), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4936), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4936), + [sym__cite_author_in_text] = ACTIONS(4936), + [sym__cite_suppress_author] = ACTIONS(4936), + [sym__shortcode_open_escaped] = ACTIONS(4936), + [sym__shortcode_open] = ACTIONS(4936), + [sym__unclosed_span] = ACTIONS(4936), + }, + [STATE(937)] = { + [sym__backslash_escape] = ACTIONS(5028), + [sym_entity_reference] = ACTIONS(5028), + [sym_numeric_character_reference] = ACTIONS(5028), + [anon_sym_LT] = ACTIONS(5030), + [anon_sym_GT] = ACTIONS(5028), + [anon_sym_BANG] = ACTIONS(5028), + [anon_sym_DQUOTE] = ACTIONS(5028), + [anon_sym_POUND] = ACTIONS(5028), + [anon_sym_DOLLAR] = ACTIONS(5028), + [anon_sym_PERCENT] = ACTIONS(5028), + [anon_sym_AMP] = ACTIONS(5030), + [anon_sym_SQUOTE] = ACTIONS(5028), + [anon_sym_STAR] = ACTIONS(5028), + [anon_sym_PLUS] = ACTIONS(5028), + [anon_sym_COMMA] = ACTIONS(5028), + [anon_sym_DASH] = ACTIONS(5030), + [anon_sym_DOT] = ACTIONS(5030), + [anon_sym_SLASH] = ACTIONS(5028), + [anon_sym_COLON] = ACTIONS(5028), + [anon_sym_SEMI] = ACTIONS(5028), + [anon_sym_EQ] = ACTIONS(5028), + [anon_sym_QMARK] = ACTIONS(5028), + [anon_sym_LBRACK] = ACTIONS(5030), + [anon_sym_BSLASH] = ACTIONS(5030), + [anon_sym_RBRACK] = ACTIONS(5028), + [anon_sym_CARET] = ACTIONS(5030), + [anon_sym__] = ACTIONS(5028), + [anon_sym_BQUOTE] = ACTIONS(5028), + [anon_sym_LBRACE] = ACTIONS(5028), + [anon_sym_PIPE] = ACTIONS(5028), + [anon_sym_TILDE] = ACTIONS(5028), + [anon_sym_LPAREN] = ACTIONS(5028), + [anon_sym_RPAREN] = ACTIONS(5028), + [sym__newline_token] = ACTIONS(5028), + [aux_sym_insert_token1] = ACTIONS(5028), + [aux_sym_delete_token1] = ACTIONS(5028), + [aux_sym_highlight_token1] = ACTIONS(5028), + [aux_sym_edit_comment_token1] = ACTIONS(5028), + [anon_sym_CARET_LBRACK] = ACTIONS(5028), + [anon_sym_LBRACK_CARET] = ACTIONS(5028), + [sym_uri_autolink] = ACTIONS(5028), + [sym_email_autolink] = ACTIONS(5028), + [sym__whitespace_ge_2] = ACTIONS(5028), + [aux_sym__whitespace_token1] = ACTIONS(5030), + [sym__word_no_digit] = ACTIONS(5028), + [sym__digits] = ACTIONS(5028), + [anon_sym_DASH_DASH] = ACTIONS(5030), + [anon_sym_DASH_DASH_DASH] = ACTIONS(5028), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5028), + [sym__code_span_start] = ACTIONS(5028), + [sym__emphasis_open_star] = ACTIONS(5028), + [sym__emphasis_open_underscore] = ACTIONS(5028), + [sym__strikeout_open] = ACTIONS(5028), + [sym__latex_span_start] = ACTIONS(5028), + [sym__single_quote_open] = ACTIONS(5028), + [sym__double_quote_open] = ACTIONS(5028), + [sym__superscript_open] = ACTIONS(5028), + [sym__subscript_open] = ACTIONS(5028), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5028), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5028), + [sym__cite_author_in_text] = ACTIONS(5028), + [sym__cite_suppress_author] = ACTIONS(5028), + [sym__shortcode_open_escaped] = ACTIONS(5028), + [sym__shortcode_open] = ACTIONS(5028), + [sym__unclosed_span] = ACTIONS(5028), + }, + [STATE(938)] = { + [sym__backslash_escape] = ACTIONS(5032), + [sym_entity_reference] = ACTIONS(5032), + [sym_numeric_character_reference] = ACTIONS(5032), + [anon_sym_LT] = ACTIONS(5034), + [anon_sym_GT] = ACTIONS(5032), + [anon_sym_BANG] = ACTIONS(5032), + [anon_sym_DQUOTE] = ACTIONS(5032), + [anon_sym_POUND] = ACTIONS(5032), + [anon_sym_DOLLAR] = ACTIONS(5032), + [anon_sym_PERCENT] = ACTIONS(5032), + [anon_sym_AMP] = ACTIONS(5034), + [anon_sym_SQUOTE] = ACTIONS(5032), + [anon_sym_STAR] = ACTIONS(5032), + [anon_sym_PLUS] = ACTIONS(5032), + [anon_sym_COMMA] = ACTIONS(5032), + [anon_sym_DASH] = ACTIONS(5034), + [anon_sym_DOT] = ACTIONS(5034), + [anon_sym_SLASH] = ACTIONS(5032), + [anon_sym_COLON] = ACTIONS(5032), + [anon_sym_SEMI] = ACTIONS(5032), + [anon_sym_EQ] = ACTIONS(5032), + [anon_sym_QMARK] = ACTIONS(5032), + [anon_sym_LBRACK] = ACTIONS(5034), + [anon_sym_BSLASH] = ACTIONS(5034), + [anon_sym_CARET] = ACTIONS(5034), + [anon_sym__] = ACTIONS(5032), + [anon_sym_BQUOTE] = ACTIONS(5032), + [anon_sym_LBRACE] = ACTIONS(5032), + [anon_sym_PIPE] = ACTIONS(5032), + [anon_sym_TILDE] = ACTIONS(5032), + [anon_sym_LPAREN] = ACTIONS(5032), + [anon_sym_RPAREN] = ACTIONS(5032), + [sym__newline_token] = ACTIONS(5032), + [aux_sym_insert_token1] = ACTIONS(5032), + [aux_sym_delete_token1] = ACTIONS(5032), + [aux_sym_highlight_token1] = ACTIONS(5032), + [aux_sym_edit_comment_token1] = ACTIONS(5032), + [anon_sym_CARET_LBRACK] = ACTIONS(5032), + [anon_sym_LBRACK_CARET] = ACTIONS(5032), + [sym_uri_autolink] = ACTIONS(5032), + [sym_email_autolink] = ACTIONS(5032), + [sym__whitespace_ge_2] = ACTIONS(5032), + [aux_sym__whitespace_token1] = ACTIONS(5034), + [sym__word_no_digit] = ACTIONS(5032), + [sym__digits] = ACTIONS(5032), + [anon_sym_DASH_DASH] = ACTIONS(5034), + [anon_sym_DASH_DASH_DASH] = ACTIONS(5032), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5032), + [sym__code_span_start] = ACTIONS(5032), + [sym__emphasis_open_star] = ACTIONS(5032), + [sym__emphasis_open_underscore] = ACTIONS(5032), + [sym__strikeout_open] = ACTIONS(5032), + [sym__latex_span_start] = ACTIONS(5032), + [sym__single_quote_open] = ACTIONS(5032), + [sym__double_quote_open] = ACTIONS(5032), + [sym__superscript_open] = ACTIONS(5032), + [sym__superscript_close] = ACTIONS(5032), + [sym__subscript_open] = ACTIONS(5032), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5032), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5032), + [sym__cite_author_in_text] = ACTIONS(5032), + [sym__cite_suppress_author] = ACTIONS(5032), + [sym__shortcode_open_escaped] = ACTIONS(5032), + [sym__shortcode_open] = ACTIONS(5032), + [sym__unclosed_span] = ACTIONS(5032), + }, + [STATE(939)] = { + [sym__backslash_escape] = ACTIONS(5036), + [sym_entity_reference] = ACTIONS(5036), + [sym_numeric_character_reference] = ACTIONS(5036), + [anon_sym_LT] = ACTIONS(5038), + [anon_sym_GT] = ACTIONS(5036), + [anon_sym_BANG] = ACTIONS(5036), + [anon_sym_DQUOTE] = ACTIONS(5036), + [anon_sym_POUND] = ACTIONS(5036), + [anon_sym_DOLLAR] = ACTIONS(5036), + [anon_sym_PERCENT] = ACTIONS(5036), + [anon_sym_AMP] = ACTIONS(5038), + [anon_sym_SQUOTE] = ACTIONS(5036), + [anon_sym_STAR] = ACTIONS(5036), + [anon_sym_PLUS] = ACTIONS(5036), + [anon_sym_COMMA] = ACTIONS(5036), + [anon_sym_DASH] = ACTIONS(5038), + [anon_sym_DOT] = ACTIONS(5038), + [anon_sym_SLASH] = ACTIONS(5036), + [anon_sym_COLON] = ACTIONS(5036), + [anon_sym_SEMI] = ACTIONS(5036), + [anon_sym_EQ] = ACTIONS(5036), + [anon_sym_QMARK] = ACTIONS(5036), + [anon_sym_LBRACK] = ACTIONS(5038), + [anon_sym_BSLASH] = ACTIONS(5038), + [anon_sym_RBRACK] = ACTIONS(5036), + [anon_sym_CARET] = ACTIONS(5038), + [anon_sym__] = ACTIONS(5036), + [anon_sym_BQUOTE] = ACTIONS(5036), + [anon_sym_LBRACE] = ACTIONS(5036), + [anon_sym_PIPE] = ACTIONS(5036), + [anon_sym_TILDE] = ACTIONS(5036), + [anon_sym_LPAREN] = ACTIONS(5036), + [anon_sym_RPAREN] = ACTIONS(5036), + [sym__newline_token] = ACTIONS(5036), + [aux_sym_insert_token1] = ACTIONS(5036), + [aux_sym_delete_token1] = ACTIONS(5036), + [aux_sym_highlight_token1] = ACTIONS(5036), + [aux_sym_edit_comment_token1] = ACTIONS(5036), + [anon_sym_CARET_LBRACK] = ACTIONS(5036), + [anon_sym_LBRACK_CARET] = ACTIONS(5036), + [sym_uri_autolink] = ACTIONS(5036), + [sym_email_autolink] = ACTIONS(5036), + [sym__whitespace_ge_2] = ACTIONS(5036), + [aux_sym__whitespace_token1] = ACTIONS(5038), + [sym__word_no_digit] = ACTIONS(5036), + [sym__digits] = ACTIONS(5036), + [anon_sym_DASH_DASH] = ACTIONS(5038), + [anon_sym_DASH_DASH_DASH] = ACTIONS(5036), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5036), + [sym__code_span_start] = ACTIONS(5036), + [sym__emphasis_open_star] = ACTIONS(5036), + [sym__emphasis_open_underscore] = ACTIONS(5036), + [sym__strikeout_open] = ACTIONS(5036), + [sym__latex_span_start] = ACTIONS(5036), + [sym__single_quote_open] = ACTIONS(5036), + [sym__double_quote_open] = ACTIONS(5036), + [sym__superscript_open] = ACTIONS(5036), + [sym__subscript_open] = ACTIONS(5036), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5036), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5036), + [sym__cite_author_in_text] = ACTIONS(5036), + [sym__cite_suppress_author] = ACTIONS(5036), + [sym__shortcode_open_escaped] = ACTIONS(5036), + [sym__shortcode_open] = ACTIONS(5036), + [sym__unclosed_span] = ACTIONS(5036), + }, + [STATE(940)] = { + [sym__backslash_escape] = ACTIONS(4812), + [sym_entity_reference] = ACTIONS(4812), + [sym_numeric_character_reference] = ACTIONS(4812), + [anon_sym_LT] = ACTIONS(4814), + [anon_sym_GT] = ACTIONS(4812), + [anon_sym_BANG] = ACTIONS(4812), + [anon_sym_DQUOTE] = ACTIONS(4812), + [anon_sym_POUND] = ACTIONS(4812), + [anon_sym_DOLLAR] = ACTIONS(4812), + [anon_sym_PERCENT] = ACTIONS(4812), + [anon_sym_AMP] = ACTIONS(4814), + [anon_sym_SQUOTE] = ACTIONS(4812), + [anon_sym_STAR] = ACTIONS(4812), + [anon_sym_PLUS] = ACTIONS(4812), + [anon_sym_COMMA] = ACTIONS(4812), + [anon_sym_DASH] = ACTIONS(4814), + [anon_sym_DOT] = ACTIONS(4814), + [anon_sym_SLASH] = ACTIONS(4812), + [anon_sym_COLON] = ACTIONS(4812), + [anon_sym_SEMI] = ACTIONS(4812), + [anon_sym_EQ] = ACTIONS(4812), + [anon_sym_QMARK] = ACTIONS(4812), + [anon_sym_LBRACK] = ACTIONS(4814), + [anon_sym_BSLASH] = ACTIONS(4814), + [anon_sym_RBRACK] = ACTIONS(4812), + [anon_sym_CARET] = ACTIONS(4814), + [anon_sym__] = ACTIONS(4812), + [anon_sym_BQUOTE] = ACTIONS(4812), + [anon_sym_LBRACE] = ACTIONS(4812), + [anon_sym_PIPE] = ACTIONS(4812), + [anon_sym_TILDE] = ACTIONS(4812), + [anon_sym_LPAREN] = ACTIONS(4812), + [anon_sym_RPAREN] = ACTIONS(4812), + [sym__newline_token] = ACTIONS(4812), + [aux_sym_insert_token1] = ACTIONS(4812), + [aux_sym_delete_token1] = ACTIONS(4812), + [aux_sym_highlight_token1] = ACTIONS(4812), + [aux_sym_edit_comment_token1] = ACTIONS(4812), + [anon_sym_CARET_LBRACK] = ACTIONS(4812), + [anon_sym_LBRACK_CARET] = ACTIONS(4812), + [sym_uri_autolink] = ACTIONS(4812), + [sym_email_autolink] = ACTIONS(4812), + [sym__whitespace_ge_2] = ACTIONS(4812), + [aux_sym__whitespace_token1] = ACTIONS(4814), + [sym__word_no_digit] = ACTIONS(4812), + [sym__digits] = ACTIONS(4812), + [anon_sym_DASH_DASH] = ACTIONS(4814), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4812), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4812), + [sym__code_span_start] = ACTIONS(4812), + [sym__emphasis_open_star] = ACTIONS(4812), + [sym__emphasis_open_underscore] = ACTIONS(4812), + [sym__strikeout_open] = ACTIONS(4812), + [sym__latex_span_start] = ACTIONS(4812), + [sym__single_quote_open] = ACTIONS(4812), + [sym__double_quote_open] = ACTIONS(4812), + [sym__superscript_open] = ACTIONS(4812), + [sym__subscript_open] = ACTIONS(4812), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4812), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4812), + [sym__cite_author_in_text] = ACTIONS(4812), + [sym__cite_suppress_author] = ACTIONS(4812), + [sym__shortcode_open_escaped] = ACTIONS(4812), + [sym__shortcode_open] = ACTIONS(4812), + [sym__unclosed_span] = ACTIONS(4812), + }, + [STATE(941)] = { + [sym__backslash_escape] = ACTIONS(4816), + [sym_entity_reference] = ACTIONS(4816), + [sym_numeric_character_reference] = ACTIONS(4816), + [anon_sym_LT] = ACTIONS(4818), + [anon_sym_GT] = ACTIONS(4816), + [anon_sym_BANG] = ACTIONS(4816), + [anon_sym_DQUOTE] = ACTIONS(4816), + [anon_sym_POUND] = ACTIONS(4816), + [anon_sym_DOLLAR] = ACTIONS(4816), + [anon_sym_PERCENT] = ACTIONS(4816), + [anon_sym_AMP] = ACTIONS(4818), + [anon_sym_SQUOTE] = ACTIONS(4816), + [anon_sym_STAR] = ACTIONS(4816), + [anon_sym_PLUS] = ACTIONS(4816), + [anon_sym_COMMA] = ACTIONS(4816), + [anon_sym_DASH] = ACTIONS(4818), + [anon_sym_DOT] = ACTIONS(4818), + [anon_sym_SLASH] = ACTIONS(4816), + [anon_sym_COLON] = ACTIONS(4816), + [anon_sym_SEMI] = ACTIONS(4816), + [anon_sym_EQ] = ACTIONS(4816), + [anon_sym_QMARK] = ACTIONS(4816), + [anon_sym_LBRACK] = ACTIONS(4818), + [anon_sym_BSLASH] = ACTIONS(4818), + [anon_sym_RBRACK] = ACTIONS(4816), + [anon_sym_CARET] = ACTIONS(4818), + [anon_sym__] = ACTIONS(4816), + [anon_sym_BQUOTE] = ACTIONS(4816), + [anon_sym_LBRACE] = ACTIONS(4816), + [anon_sym_PIPE] = ACTIONS(4816), + [anon_sym_TILDE] = ACTIONS(4816), + [anon_sym_LPAREN] = ACTIONS(4816), + [anon_sym_RPAREN] = ACTIONS(4816), + [sym__newline_token] = ACTIONS(4816), + [aux_sym_insert_token1] = ACTIONS(4816), + [aux_sym_delete_token1] = ACTIONS(4816), + [aux_sym_highlight_token1] = ACTIONS(4816), + [aux_sym_edit_comment_token1] = ACTIONS(4816), + [anon_sym_CARET_LBRACK] = ACTIONS(4816), + [anon_sym_LBRACK_CARET] = ACTIONS(4816), + [sym_uri_autolink] = ACTIONS(4816), + [sym_email_autolink] = ACTIONS(4816), + [sym__whitespace_ge_2] = ACTIONS(4816), + [aux_sym__whitespace_token1] = ACTIONS(4818), + [sym__word_no_digit] = ACTIONS(4816), + [sym__digits] = ACTIONS(4816), + [anon_sym_DASH_DASH] = ACTIONS(4818), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4816), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4816), + [sym__code_span_start] = ACTIONS(4816), + [sym__emphasis_open_star] = ACTIONS(4816), + [sym__emphasis_open_underscore] = ACTIONS(4816), + [sym__strikeout_open] = ACTIONS(4816), + [sym__latex_span_start] = ACTIONS(4816), + [sym__single_quote_open] = ACTIONS(4816), + [sym__double_quote_open] = ACTIONS(4816), + [sym__superscript_open] = ACTIONS(4816), + [sym__subscript_open] = ACTIONS(4816), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4816), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4816), + [sym__cite_author_in_text] = ACTIONS(4816), + [sym__cite_suppress_author] = ACTIONS(4816), + [sym__shortcode_open_escaped] = ACTIONS(4816), + [sym__shortcode_open] = ACTIONS(4816), + [sym__unclosed_span] = ACTIONS(4816), + }, + [STATE(942)] = { + [sym__backslash_escape] = ACTIONS(4840), + [sym_entity_reference] = ACTIONS(4840), + [sym_numeric_character_reference] = ACTIONS(4840), + [anon_sym_LT] = ACTIONS(4842), + [anon_sym_GT] = ACTIONS(4840), + [anon_sym_BANG] = ACTIONS(4840), + [anon_sym_DQUOTE] = ACTIONS(4840), + [anon_sym_POUND] = ACTIONS(4840), + [anon_sym_DOLLAR] = ACTIONS(4840), + [anon_sym_PERCENT] = ACTIONS(4840), + [anon_sym_AMP] = ACTIONS(4842), + [anon_sym_SQUOTE] = ACTIONS(4840), + [anon_sym_STAR] = ACTIONS(4840), + [anon_sym_PLUS] = ACTIONS(4840), + [anon_sym_COMMA] = ACTIONS(4840), + [anon_sym_DASH] = ACTIONS(4842), + [anon_sym_DOT] = ACTIONS(4842), + [anon_sym_SLASH] = ACTIONS(4840), + [anon_sym_COLON] = ACTIONS(4840), + [anon_sym_SEMI] = ACTIONS(4840), + [anon_sym_EQ] = ACTIONS(4840), + [anon_sym_QMARK] = ACTIONS(4840), + [anon_sym_LBRACK] = ACTIONS(4842), + [anon_sym_BSLASH] = ACTIONS(4842), + [anon_sym_RBRACK] = ACTIONS(4840), + [anon_sym_CARET] = ACTIONS(4842), + [anon_sym__] = ACTIONS(4840), + [anon_sym_BQUOTE] = ACTIONS(4840), + [anon_sym_LBRACE] = ACTIONS(4840), + [anon_sym_PIPE] = ACTIONS(4840), + [anon_sym_TILDE] = ACTIONS(4840), + [anon_sym_LPAREN] = ACTIONS(4840), + [anon_sym_RPAREN] = ACTIONS(4840), + [sym__newline_token] = ACTIONS(4840), + [aux_sym_insert_token1] = ACTIONS(4840), + [aux_sym_delete_token1] = ACTIONS(4840), + [aux_sym_highlight_token1] = ACTIONS(4840), + [aux_sym_edit_comment_token1] = ACTIONS(4840), + [anon_sym_CARET_LBRACK] = ACTIONS(4840), + [anon_sym_LBRACK_CARET] = ACTIONS(4840), + [sym_uri_autolink] = ACTIONS(4840), + [sym_email_autolink] = ACTIONS(4840), + [sym__whitespace_ge_2] = ACTIONS(4840), + [aux_sym__whitespace_token1] = ACTIONS(4842), + [sym__word_no_digit] = ACTIONS(4840), + [sym__digits] = ACTIONS(4840), + [anon_sym_DASH_DASH] = ACTIONS(4842), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4840), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4840), + [sym__code_span_start] = ACTIONS(4840), + [sym__emphasis_open_star] = ACTIONS(4840), + [sym__emphasis_open_underscore] = ACTIONS(4840), + [sym__strikeout_open] = ACTIONS(4840), + [sym__latex_span_start] = ACTIONS(4840), + [sym__single_quote_open] = ACTIONS(4840), + [sym__double_quote_open] = ACTIONS(4840), + [sym__superscript_open] = ACTIONS(4840), + [sym__subscript_open] = ACTIONS(4840), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4840), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4840), + [sym__cite_author_in_text] = ACTIONS(4840), + [sym__cite_suppress_author] = ACTIONS(4840), + [sym__shortcode_open_escaped] = ACTIONS(4840), + [sym__shortcode_open] = ACTIONS(4840), + [sym__unclosed_span] = ACTIONS(4840), + }, + [STATE(943)] = { + [sym__backslash_escape] = ACTIONS(5040), + [sym_entity_reference] = ACTIONS(5040), + [sym_numeric_character_reference] = ACTIONS(5040), + [anon_sym_LT] = ACTIONS(5042), + [anon_sym_GT] = ACTIONS(5040), + [anon_sym_BANG] = ACTIONS(5040), + [anon_sym_DQUOTE] = ACTIONS(5040), + [anon_sym_POUND] = ACTIONS(5040), + [anon_sym_DOLLAR] = ACTIONS(5040), + [anon_sym_PERCENT] = ACTIONS(5040), + [anon_sym_AMP] = ACTIONS(5042), + [anon_sym_SQUOTE] = ACTIONS(5040), + [anon_sym_STAR] = ACTIONS(5040), + [anon_sym_PLUS] = ACTIONS(5040), + [anon_sym_COMMA] = ACTIONS(5040), + [anon_sym_DASH] = ACTIONS(5042), + [anon_sym_DOT] = ACTIONS(5042), + [anon_sym_SLASH] = ACTIONS(5040), + [anon_sym_COLON] = ACTIONS(5040), + [anon_sym_SEMI] = ACTIONS(5040), + [anon_sym_EQ] = ACTIONS(5040), + [anon_sym_QMARK] = ACTIONS(5040), + [anon_sym_LBRACK] = ACTIONS(5042), + [anon_sym_BSLASH] = ACTIONS(5042), + [anon_sym_CARET] = ACTIONS(5042), + [anon_sym__] = ACTIONS(5040), + [anon_sym_BQUOTE] = ACTIONS(5040), + [anon_sym_LBRACE] = ACTIONS(5040), + [anon_sym_PIPE] = ACTIONS(5040), + [anon_sym_TILDE] = ACTIONS(5040), + [anon_sym_LPAREN] = ACTIONS(5040), + [anon_sym_RPAREN] = ACTIONS(5040), + [sym__newline_token] = ACTIONS(5040), + [aux_sym_insert_token1] = ACTIONS(5040), + [aux_sym_delete_token1] = ACTIONS(5040), + [aux_sym_highlight_token1] = ACTIONS(5040), + [aux_sym_edit_comment_token1] = ACTIONS(5040), + [anon_sym_CARET_LBRACK] = ACTIONS(5040), + [anon_sym_LBRACK_CARET] = ACTIONS(5040), + [sym_uri_autolink] = ACTIONS(5040), + [sym_email_autolink] = ACTIONS(5040), + [sym__whitespace_ge_2] = ACTIONS(5040), + [aux_sym__whitespace_token1] = ACTIONS(5042), + [sym__word_no_digit] = ACTIONS(5040), + [sym__digits] = ACTIONS(5040), + [anon_sym_DASH_DASH] = ACTIONS(5042), + [anon_sym_DASH_DASH_DASH] = ACTIONS(5040), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5040), + [sym__code_span_start] = ACTIONS(5040), + [sym__emphasis_open_star] = ACTIONS(5040), + [sym__emphasis_open_underscore] = ACTIONS(5040), + [sym__emphasis_close_underscore] = ACTIONS(5040), + [sym__strikeout_open] = ACTIONS(5040), + [sym__latex_span_start] = ACTIONS(5040), + [sym__single_quote_open] = ACTIONS(5040), + [sym__double_quote_open] = ACTIONS(5040), + [sym__superscript_open] = ACTIONS(5040), + [sym__subscript_open] = ACTIONS(5040), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5040), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5040), + [sym__cite_author_in_text] = ACTIONS(5040), + [sym__cite_suppress_author] = ACTIONS(5040), + [sym__shortcode_open_escaped] = ACTIONS(5040), + [sym__shortcode_open] = ACTIONS(5040), + [sym__unclosed_span] = ACTIONS(5040), + }, + [STATE(944)] = { + [sym__backslash_escape] = ACTIONS(4856), + [sym_entity_reference] = ACTIONS(4856), + [sym_numeric_character_reference] = ACTIONS(4856), + [anon_sym_LT] = ACTIONS(4858), + [anon_sym_GT] = ACTIONS(4856), + [anon_sym_BANG] = ACTIONS(4856), + [anon_sym_DQUOTE] = ACTIONS(4856), + [anon_sym_POUND] = ACTIONS(4856), + [anon_sym_DOLLAR] = ACTIONS(4856), + [anon_sym_PERCENT] = ACTIONS(4856), + [anon_sym_AMP] = ACTIONS(4858), + [anon_sym_SQUOTE] = ACTIONS(4856), + [anon_sym_STAR] = ACTIONS(4856), + [anon_sym_PLUS] = ACTIONS(4856), + [anon_sym_COMMA] = ACTIONS(4856), + [anon_sym_DASH] = ACTIONS(4858), + [anon_sym_DOT] = ACTIONS(4858), + [anon_sym_SLASH] = ACTIONS(4856), + [anon_sym_COLON] = ACTIONS(4856), + [anon_sym_SEMI] = ACTIONS(4856), + [anon_sym_EQ] = ACTIONS(4856), + [anon_sym_QMARK] = ACTIONS(4856), + [anon_sym_LBRACK] = ACTIONS(4858), + [anon_sym_BSLASH] = ACTIONS(4858), + [anon_sym_CARET] = ACTIONS(4858), + [anon_sym__] = ACTIONS(4856), + [anon_sym_BQUOTE] = ACTIONS(4856), + [anon_sym_LBRACE] = ACTIONS(4856), + [anon_sym_PIPE] = ACTIONS(4856), + [anon_sym_TILDE] = ACTIONS(4856), + [anon_sym_LPAREN] = ACTIONS(4856), + [anon_sym_RPAREN] = ACTIONS(4856), + [sym__newline_token] = ACTIONS(4856), + [aux_sym_insert_token1] = ACTIONS(4856), + [aux_sym_delete_token1] = ACTIONS(4856), + [aux_sym_highlight_token1] = ACTIONS(4856), + [aux_sym_edit_comment_token1] = ACTIONS(4856), + [anon_sym_CARET_LBRACK] = ACTIONS(4856), + [anon_sym_LBRACK_CARET] = ACTIONS(4856), + [sym_uri_autolink] = ACTIONS(4856), + [sym_email_autolink] = ACTIONS(4856), + [sym__whitespace_ge_2] = ACTIONS(4856), + [aux_sym__whitespace_token1] = ACTIONS(4858), + [sym__word_no_digit] = ACTIONS(4856), + [sym__digits] = ACTIONS(4856), + [anon_sym_DASH_DASH] = ACTIONS(4858), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4856), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4856), + [sym__code_span_start] = ACTIONS(4856), + [sym__emphasis_open_star] = ACTIONS(4856), + [sym__emphasis_open_underscore] = ACTIONS(4856), + [sym__strikeout_open] = ACTIONS(4856), + [sym__latex_span_start] = ACTIONS(4856), + [sym__single_quote_open] = ACTIONS(4856), + [sym__double_quote_open] = ACTIONS(4856), + [sym__superscript_open] = ACTIONS(4856), + [sym__subscript_open] = ACTIONS(4856), + [sym__subscript_close] = ACTIONS(4856), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4856), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4856), + [sym__cite_author_in_text] = ACTIONS(4856), + [sym__cite_suppress_author] = ACTIONS(4856), + [sym__shortcode_open_escaped] = ACTIONS(4856), + [sym__shortcode_open] = ACTIONS(4856), + [sym__unclosed_span] = ACTIONS(4856), + }, + [STATE(945)] = { + [sym__backslash_escape] = ACTIONS(4880), + [sym_entity_reference] = ACTIONS(4880), + [sym_numeric_character_reference] = ACTIONS(4880), + [anon_sym_LT] = ACTIONS(4882), + [anon_sym_GT] = ACTIONS(4880), + [anon_sym_BANG] = ACTIONS(4880), + [anon_sym_DQUOTE] = ACTIONS(4880), + [anon_sym_POUND] = ACTIONS(4880), + [anon_sym_DOLLAR] = ACTIONS(4880), + [anon_sym_PERCENT] = ACTIONS(4880), + [anon_sym_AMP] = ACTIONS(4882), + [anon_sym_SQUOTE] = ACTIONS(4880), + [anon_sym_STAR] = ACTIONS(4880), + [anon_sym_PLUS] = ACTIONS(4880), + [anon_sym_COMMA] = ACTIONS(4880), + [anon_sym_DASH] = ACTIONS(4882), + [anon_sym_DOT] = ACTIONS(4882), + [anon_sym_SLASH] = ACTIONS(4880), + [anon_sym_COLON] = ACTIONS(4880), + [anon_sym_SEMI] = ACTIONS(4880), + [anon_sym_EQ] = ACTIONS(4880), + [anon_sym_QMARK] = ACTIONS(4880), + [anon_sym_LBRACK] = ACTIONS(4882), + [anon_sym_BSLASH] = ACTIONS(4882), + [anon_sym_CARET] = ACTIONS(4882), + [anon_sym__] = ACTIONS(4880), + [anon_sym_BQUOTE] = ACTIONS(4880), + [anon_sym_LBRACE] = ACTIONS(4880), + [anon_sym_PIPE] = ACTIONS(4880), + [anon_sym_TILDE] = ACTIONS(4880), + [anon_sym_LPAREN] = ACTIONS(4880), + [anon_sym_RPAREN] = ACTIONS(4880), + [sym__newline_token] = ACTIONS(4880), + [aux_sym_insert_token1] = ACTIONS(4880), + [aux_sym_insert_token2] = ACTIONS(4880), + [aux_sym_delete_token1] = ACTIONS(4880), + [aux_sym_highlight_token1] = ACTIONS(4880), + [aux_sym_edit_comment_token1] = ACTIONS(4880), + [anon_sym_CARET_LBRACK] = ACTIONS(4880), + [anon_sym_LBRACK_CARET] = ACTIONS(4880), + [sym_uri_autolink] = ACTIONS(4880), + [sym_email_autolink] = ACTIONS(4880), + [sym__whitespace_ge_2] = ACTIONS(4882), + [aux_sym__whitespace_token1] = ACTIONS(4882), + [sym__word_no_digit] = ACTIONS(4880), + [sym__digits] = ACTIONS(4880), + [anon_sym_DASH_DASH] = ACTIONS(4882), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4880), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4880), + [sym__code_span_start] = ACTIONS(4880), + [sym__emphasis_open_star] = ACTIONS(4880), + [sym__emphasis_open_underscore] = ACTIONS(4880), + [sym__strikeout_open] = ACTIONS(4880), + [sym__latex_span_start] = ACTIONS(4880), + [sym__single_quote_open] = ACTIONS(4880), + [sym__double_quote_open] = ACTIONS(4880), + [sym__superscript_open] = ACTIONS(4880), + [sym__subscript_open] = ACTIONS(4880), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4880), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4880), + [sym__cite_author_in_text] = ACTIONS(4880), + [sym__cite_suppress_author] = ACTIONS(4880), + [sym__shortcode_open_escaped] = ACTIONS(4880), + [sym__shortcode_open] = ACTIONS(4880), + [sym__unclosed_span] = ACTIONS(4880), + }, + [STATE(946)] = { + [sym__backslash_escape] = ACTIONS(4932), + [sym_entity_reference] = ACTIONS(4932), + [sym_numeric_character_reference] = ACTIONS(4932), + [anon_sym_LT] = ACTIONS(4934), + [anon_sym_GT] = ACTIONS(4932), + [anon_sym_BANG] = ACTIONS(4932), + [anon_sym_DQUOTE] = ACTIONS(4932), + [anon_sym_POUND] = ACTIONS(4932), + [anon_sym_DOLLAR] = ACTIONS(4932), + [anon_sym_PERCENT] = ACTIONS(4932), + [anon_sym_AMP] = ACTIONS(4934), + [anon_sym_SQUOTE] = ACTIONS(4932), + [anon_sym_STAR] = ACTIONS(4932), + [anon_sym_PLUS] = ACTIONS(4932), + [anon_sym_COMMA] = ACTIONS(4932), + [anon_sym_DASH] = ACTIONS(4934), + [anon_sym_DOT] = ACTIONS(4934), + [anon_sym_SLASH] = ACTIONS(4932), + [anon_sym_COLON] = ACTIONS(4932), + [anon_sym_SEMI] = ACTIONS(4932), + [anon_sym_EQ] = ACTIONS(4932), + [anon_sym_QMARK] = ACTIONS(4932), + [anon_sym_LBRACK] = ACTIONS(4934), + [anon_sym_BSLASH] = ACTIONS(4934), + [anon_sym_CARET] = ACTIONS(4934), + [anon_sym__] = ACTIONS(4932), + [anon_sym_BQUOTE] = ACTIONS(4932), + [anon_sym_LBRACE] = ACTIONS(4932), + [anon_sym_PIPE] = ACTIONS(4932), + [anon_sym_TILDE] = ACTIONS(4932), + [anon_sym_LPAREN] = ACTIONS(4932), + [anon_sym_RPAREN] = ACTIONS(4932), + [sym__newline_token] = ACTIONS(4932), + [aux_sym_insert_token1] = ACTIONS(4932), + [aux_sym_delete_token1] = ACTIONS(4932), + [aux_sym_highlight_token1] = ACTIONS(4932), + [aux_sym_edit_comment_token1] = ACTIONS(4932), + [anon_sym_CARET_LBRACK] = ACTIONS(4932), + [anon_sym_LBRACK_CARET] = ACTIONS(4932), + [sym_uri_autolink] = ACTIONS(4932), + [sym_email_autolink] = ACTIONS(4932), + [sym__whitespace_ge_2] = ACTIONS(4932), + [aux_sym__whitespace_token1] = ACTIONS(4934), + [sym__word_no_digit] = ACTIONS(4932), + [sym__digits] = ACTIONS(4932), + [anon_sym_DASH_DASH] = ACTIONS(4934), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4932), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4932), + [sym__code_span_start] = ACTIONS(4932), + [sym__emphasis_open_star] = ACTIONS(4932), + [sym__emphasis_open_underscore] = ACTIONS(4932), + [sym__emphasis_close_underscore] = ACTIONS(4932), + [sym__strikeout_open] = ACTIONS(4932), + [sym__latex_span_start] = ACTIONS(4932), + [sym__single_quote_open] = ACTIONS(4932), + [sym__double_quote_open] = ACTIONS(4932), + [sym__superscript_open] = ACTIONS(4932), + [sym__subscript_open] = ACTIONS(4932), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4932), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4932), + [sym__cite_author_in_text] = ACTIONS(4932), + [sym__cite_suppress_author] = ACTIONS(4932), + [sym__shortcode_open_escaped] = ACTIONS(4932), + [sym__shortcode_open] = ACTIONS(4932), + [sym__unclosed_span] = ACTIONS(4932), + }, + [STATE(947)] = { + [sym__backslash_escape] = ACTIONS(4904), + [sym_entity_reference] = ACTIONS(4904), + [sym_numeric_character_reference] = ACTIONS(4904), + [anon_sym_LT] = ACTIONS(4906), + [anon_sym_GT] = ACTIONS(4904), + [anon_sym_BANG] = ACTIONS(4904), + [anon_sym_DQUOTE] = ACTIONS(4904), + [anon_sym_POUND] = ACTIONS(4904), + [anon_sym_DOLLAR] = ACTIONS(4904), + [anon_sym_PERCENT] = ACTIONS(4904), + [anon_sym_AMP] = ACTIONS(4906), + [anon_sym_SQUOTE] = ACTIONS(4904), + [anon_sym_STAR] = ACTIONS(4904), + [anon_sym_PLUS] = ACTIONS(4904), + [anon_sym_COMMA] = ACTIONS(4904), + [anon_sym_DASH] = ACTIONS(4906), + [anon_sym_DOT] = ACTIONS(4906), + [anon_sym_SLASH] = ACTIONS(4904), + [anon_sym_COLON] = ACTIONS(4904), + [anon_sym_SEMI] = ACTIONS(4904), + [anon_sym_EQ] = ACTIONS(4904), + [anon_sym_QMARK] = ACTIONS(4904), + [anon_sym_LBRACK] = ACTIONS(4906), + [anon_sym_BSLASH] = ACTIONS(4906), + [anon_sym_CARET] = ACTIONS(4906), + [anon_sym__] = ACTIONS(4904), + [anon_sym_BQUOTE] = ACTIONS(4904), + [anon_sym_LBRACE] = ACTIONS(4904), + [anon_sym_PIPE] = ACTIONS(4904), + [anon_sym_TILDE] = ACTIONS(4904), + [anon_sym_LPAREN] = ACTIONS(4904), + [anon_sym_RPAREN] = ACTIONS(4904), + [sym__newline_token] = ACTIONS(4904), + [aux_sym_insert_token1] = ACTIONS(4904), + [aux_sym_delete_token1] = ACTIONS(4904), + [aux_sym_highlight_token1] = ACTIONS(4904), + [aux_sym_edit_comment_token1] = ACTIONS(4904), + [anon_sym_CARET_LBRACK] = ACTIONS(4904), + [anon_sym_LBRACK_CARET] = ACTIONS(4904), + [sym_uri_autolink] = ACTIONS(4904), + [sym_email_autolink] = ACTIONS(4904), + [sym__whitespace_ge_2] = ACTIONS(4904), + [aux_sym__whitespace_token1] = ACTIONS(4906), + [sym__word_no_digit] = ACTIONS(4904), + [sym__digits] = ACTIONS(4904), + [anon_sym_DASH_DASH] = ACTIONS(4906), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4904), + [sym__code_span_start] = ACTIONS(4904), + [sym__emphasis_open_star] = ACTIONS(4904), + [sym__emphasis_open_underscore] = ACTIONS(4904), + [sym__emphasis_close_underscore] = ACTIONS(4904), + [sym__strikeout_open] = ACTIONS(4904), + [sym__latex_span_start] = ACTIONS(4904), + [sym__single_quote_open] = ACTIONS(4904), + [sym__double_quote_open] = ACTIONS(4904), + [sym__superscript_open] = ACTIONS(4904), + [sym__subscript_open] = ACTIONS(4904), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4904), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4904), + [sym__cite_author_in_text] = ACTIONS(4904), + [sym__cite_suppress_author] = ACTIONS(4904), + [sym__shortcode_open_escaped] = ACTIONS(4904), + [sym__shortcode_open] = ACTIONS(4904), + [sym__unclosed_span] = ACTIONS(4904), + }, + [STATE(948)] = { + [sym__backslash_escape] = ACTIONS(4900), + [sym_entity_reference] = ACTIONS(4900), + [sym_numeric_character_reference] = ACTIONS(4900), + [anon_sym_LT] = ACTIONS(4902), + [anon_sym_GT] = ACTIONS(4900), + [anon_sym_BANG] = ACTIONS(4900), + [anon_sym_DQUOTE] = ACTIONS(4900), + [anon_sym_POUND] = ACTIONS(4900), + [anon_sym_DOLLAR] = ACTIONS(4900), + [anon_sym_PERCENT] = ACTIONS(4900), + [anon_sym_AMP] = ACTIONS(4902), + [anon_sym_SQUOTE] = ACTIONS(4900), + [anon_sym_STAR] = ACTIONS(4900), + [anon_sym_PLUS] = ACTIONS(4900), + [anon_sym_COMMA] = ACTIONS(4900), + [anon_sym_DASH] = ACTIONS(4902), + [anon_sym_DOT] = ACTIONS(4902), + [anon_sym_SLASH] = ACTIONS(4900), + [anon_sym_COLON] = ACTIONS(4900), + [anon_sym_SEMI] = ACTIONS(4900), + [anon_sym_EQ] = ACTIONS(4900), + [anon_sym_QMARK] = ACTIONS(4900), + [anon_sym_LBRACK] = ACTIONS(4902), + [anon_sym_BSLASH] = ACTIONS(4902), + [anon_sym_RBRACK] = ACTIONS(4900), + [anon_sym_CARET] = ACTIONS(4902), + [anon_sym__] = ACTIONS(4900), + [anon_sym_BQUOTE] = ACTIONS(4900), + [anon_sym_LBRACE] = ACTIONS(4900), + [anon_sym_PIPE] = ACTIONS(4900), + [anon_sym_TILDE] = ACTIONS(4900), + [anon_sym_LPAREN] = ACTIONS(4900), + [anon_sym_RPAREN] = ACTIONS(4900), + [sym__newline_token] = ACTIONS(4900), + [aux_sym_insert_token1] = ACTIONS(4900), + [aux_sym_delete_token1] = ACTIONS(4900), + [aux_sym_highlight_token1] = ACTIONS(4900), + [aux_sym_edit_comment_token1] = ACTIONS(4900), + [anon_sym_CARET_LBRACK] = ACTIONS(4900), + [anon_sym_LBRACK_CARET] = ACTIONS(4900), + [sym_uri_autolink] = ACTIONS(4900), + [sym_email_autolink] = ACTIONS(4900), + [sym__whitespace_ge_2] = ACTIONS(4900), + [aux_sym__whitespace_token1] = ACTIONS(4902), + [sym__word_no_digit] = ACTIONS(4900), + [sym__digits] = ACTIONS(4900), + [anon_sym_DASH_DASH] = ACTIONS(4902), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4900), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4900), + [sym__code_span_start] = ACTIONS(4900), + [sym__emphasis_open_star] = ACTIONS(4900), + [sym__emphasis_open_underscore] = ACTIONS(4900), + [sym__strikeout_open] = ACTIONS(4900), + [sym__latex_span_start] = ACTIONS(4900), + [sym__single_quote_open] = ACTIONS(4900), + [sym__double_quote_open] = ACTIONS(4900), + [sym__superscript_open] = ACTIONS(4900), + [sym__subscript_open] = ACTIONS(4900), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4900), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4900), + [sym__cite_author_in_text] = ACTIONS(4900), + [sym__cite_suppress_author] = ACTIONS(4900), + [sym__shortcode_open_escaped] = ACTIONS(4900), + [sym__shortcode_open] = ACTIONS(4900), + [sym__unclosed_span] = ACTIONS(4900), + }, + [STATE(949)] = { + [sym__backslash_escape] = ACTIONS(4648), + [sym_entity_reference] = ACTIONS(4648), + [sym_numeric_character_reference] = ACTIONS(4648), + [anon_sym_LT] = ACTIONS(4650), + [anon_sym_GT] = ACTIONS(4648), + [anon_sym_BANG] = ACTIONS(4648), + [anon_sym_DQUOTE] = ACTIONS(4648), + [anon_sym_POUND] = ACTIONS(4648), + [anon_sym_DOLLAR] = ACTIONS(4648), + [anon_sym_PERCENT] = ACTIONS(4648), + [anon_sym_AMP] = ACTIONS(4650), + [anon_sym_SQUOTE] = ACTIONS(4648), + [anon_sym_STAR] = ACTIONS(4648), + [anon_sym_PLUS] = ACTIONS(4648), + [anon_sym_COMMA] = ACTIONS(4648), + [anon_sym_DASH] = ACTIONS(4650), + [anon_sym_DOT] = ACTIONS(4650), + [anon_sym_SLASH] = ACTIONS(4648), + [anon_sym_COLON] = ACTIONS(4648), + [anon_sym_SEMI] = ACTIONS(4648), + [anon_sym_EQ] = ACTIONS(4648), + [anon_sym_QMARK] = ACTIONS(4648), + [anon_sym_LBRACK] = ACTIONS(4650), + [anon_sym_BSLASH] = ACTIONS(4650), + [anon_sym_CARET] = ACTIONS(4650), + [anon_sym__] = ACTIONS(4648), + [anon_sym_BQUOTE] = ACTIONS(4648), + [anon_sym_LBRACE] = ACTIONS(4648), + [anon_sym_PIPE] = ACTIONS(4648), + [anon_sym_TILDE] = ACTIONS(4648), + [anon_sym_LPAREN] = ACTIONS(4648), + [anon_sym_RPAREN] = ACTIONS(4648), + [sym__newline_token] = ACTIONS(4648), + [aux_sym_insert_token1] = ACTIONS(4648), + [aux_sym_delete_token1] = ACTIONS(4648), + [aux_sym_highlight_token1] = ACTIONS(4648), + [aux_sym_edit_comment_token1] = ACTIONS(4648), + [anon_sym_CARET_LBRACK] = ACTIONS(4648), + [anon_sym_LBRACK_CARET] = ACTIONS(4648), + [sym_uri_autolink] = ACTIONS(4648), + [sym_email_autolink] = ACTIONS(4648), + [sym__whitespace_ge_2] = ACTIONS(4648), + [aux_sym__whitespace_token1] = ACTIONS(4650), + [sym__word_no_digit] = ACTIONS(4648), + [sym__digits] = ACTIONS(4648), + [anon_sym_DASH_DASH] = ACTIONS(4650), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4648), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4648), + [sym__code_span_start] = ACTIONS(4648), + [sym__emphasis_open_star] = ACTIONS(4648), + [sym__emphasis_open_underscore] = ACTIONS(4648), + [sym__strikeout_open] = ACTIONS(4648), + [sym__latex_span_start] = ACTIONS(4648), + [sym__single_quote_open] = ACTIONS(4648), + [sym__single_quote_close] = ACTIONS(4648), + [sym__double_quote_open] = ACTIONS(4648), + [sym__superscript_open] = ACTIONS(4648), + [sym__subscript_open] = ACTIONS(4648), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4648), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4648), + [sym__cite_author_in_text] = ACTIONS(4648), + [sym__cite_suppress_author] = ACTIONS(4648), + [sym__shortcode_open_escaped] = ACTIONS(4648), + [sym__shortcode_open] = ACTIONS(4648), + [sym__unclosed_span] = ACTIONS(4648), + }, + [STATE(950)] = { + [sym__backslash_escape] = ACTIONS(4912), + [sym_entity_reference] = ACTIONS(4912), + [sym_numeric_character_reference] = ACTIONS(4912), + [anon_sym_LT] = ACTIONS(4914), + [anon_sym_GT] = ACTIONS(4912), + [anon_sym_BANG] = ACTIONS(4912), + [anon_sym_DQUOTE] = ACTIONS(4912), + [anon_sym_POUND] = ACTIONS(4912), + [anon_sym_DOLLAR] = ACTIONS(4912), + [anon_sym_PERCENT] = ACTIONS(4912), + [anon_sym_AMP] = ACTIONS(4914), + [anon_sym_SQUOTE] = ACTIONS(4912), + [anon_sym_STAR] = ACTIONS(4912), + [anon_sym_PLUS] = ACTIONS(4912), + [anon_sym_COMMA] = ACTIONS(4912), + [anon_sym_DASH] = ACTIONS(4914), + [anon_sym_DOT] = ACTIONS(4914), + [anon_sym_SLASH] = ACTIONS(4912), + [anon_sym_COLON] = ACTIONS(4912), + [anon_sym_SEMI] = ACTIONS(4912), + [anon_sym_EQ] = ACTIONS(4912), + [anon_sym_QMARK] = ACTIONS(4912), + [anon_sym_LBRACK] = ACTIONS(4914), + [anon_sym_BSLASH] = ACTIONS(4914), + [anon_sym_CARET] = ACTIONS(4914), + [anon_sym__] = ACTIONS(4912), + [anon_sym_BQUOTE] = ACTIONS(4912), + [anon_sym_LBRACE] = ACTIONS(4912), + [anon_sym_PIPE] = ACTIONS(4912), + [anon_sym_TILDE] = ACTIONS(4912), + [anon_sym_LPAREN] = ACTIONS(4912), + [anon_sym_RPAREN] = ACTIONS(4912), + [sym__newline_token] = ACTIONS(4912), + [aux_sym_insert_token1] = ACTIONS(4912), + [aux_sym_insert_token2] = ACTIONS(4912), + [aux_sym_delete_token1] = ACTIONS(4912), + [aux_sym_highlight_token1] = ACTIONS(4912), + [aux_sym_edit_comment_token1] = ACTIONS(4912), + [anon_sym_CARET_LBRACK] = ACTIONS(4912), + [anon_sym_LBRACK_CARET] = ACTIONS(4912), + [sym_uri_autolink] = ACTIONS(4912), + [sym_email_autolink] = ACTIONS(4912), + [sym__whitespace_ge_2] = ACTIONS(4914), + [aux_sym__whitespace_token1] = ACTIONS(4914), + [sym__word_no_digit] = ACTIONS(4912), + [sym__digits] = ACTIONS(4912), + [anon_sym_DASH_DASH] = ACTIONS(4914), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4912), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4912), + [sym__code_span_start] = ACTIONS(4912), + [sym__emphasis_open_star] = ACTIONS(4912), + [sym__emphasis_open_underscore] = ACTIONS(4912), + [sym__strikeout_open] = ACTIONS(4912), + [sym__latex_span_start] = ACTIONS(4912), + [sym__single_quote_open] = ACTIONS(4912), + [sym__double_quote_open] = ACTIONS(4912), + [sym__superscript_open] = ACTIONS(4912), + [sym__subscript_open] = ACTIONS(4912), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4912), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4912), + [sym__cite_author_in_text] = ACTIONS(4912), + [sym__cite_suppress_author] = ACTIONS(4912), + [sym__shortcode_open_escaped] = ACTIONS(4912), + [sym__shortcode_open] = ACTIONS(4912), + [sym__unclosed_span] = ACTIONS(4912), + }, + [STATE(951)] = { + [sym__backslash_escape] = ACTIONS(4916), + [sym_entity_reference] = ACTIONS(4916), + [sym_numeric_character_reference] = ACTIONS(4916), + [anon_sym_LT] = ACTIONS(4918), + [anon_sym_GT] = ACTIONS(4916), + [anon_sym_BANG] = ACTIONS(4916), + [anon_sym_DQUOTE] = ACTIONS(4916), + [anon_sym_POUND] = ACTIONS(4916), + [anon_sym_DOLLAR] = ACTIONS(4916), + [anon_sym_PERCENT] = ACTIONS(4916), + [anon_sym_AMP] = ACTIONS(4918), + [anon_sym_SQUOTE] = ACTIONS(4916), + [anon_sym_STAR] = ACTIONS(4916), + [anon_sym_PLUS] = ACTIONS(4916), + [anon_sym_COMMA] = ACTIONS(4916), + [anon_sym_DASH] = ACTIONS(4918), + [anon_sym_DOT] = ACTIONS(4918), + [anon_sym_SLASH] = ACTIONS(4916), + [anon_sym_COLON] = ACTIONS(4916), + [anon_sym_SEMI] = ACTIONS(4916), + [anon_sym_EQ] = ACTIONS(4916), + [anon_sym_QMARK] = ACTIONS(4916), + [anon_sym_LBRACK] = ACTIONS(4918), + [anon_sym_BSLASH] = ACTIONS(4918), + [anon_sym_CARET] = ACTIONS(4918), + [anon_sym__] = ACTIONS(4916), + [anon_sym_BQUOTE] = ACTIONS(4916), + [anon_sym_LBRACE] = ACTIONS(4916), + [anon_sym_PIPE] = ACTIONS(4916), + [anon_sym_TILDE] = ACTIONS(4916), + [anon_sym_LPAREN] = ACTIONS(4916), + [anon_sym_RPAREN] = ACTIONS(4916), + [sym__newline_token] = ACTIONS(4916), + [aux_sym_insert_token1] = ACTIONS(4916), + [aux_sym_insert_token2] = ACTIONS(4916), + [aux_sym_delete_token1] = ACTIONS(4916), + [aux_sym_highlight_token1] = ACTIONS(4916), + [aux_sym_edit_comment_token1] = ACTIONS(4916), + [anon_sym_CARET_LBRACK] = ACTIONS(4916), + [anon_sym_LBRACK_CARET] = ACTIONS(4916), + [sym_uri_autolink] = ACTIONS(4916), + [sym_email_autolink] = ACTIONS(4916), + [sym__whitespace_ge_2] = ACTIONS(4918), + [aux_sym__whitespace_token1] = ACTIONS(4918), + [sym__word_no_digit] = ACTIONS(4916), + [sym__digits] = ACTIONS(4916), + [anon_sym_DASH_DASH] = ACTIONS(4918), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4916), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4916), + [sym__code_span_start] = ACTIONS(4916), + [sym__emphasis_open_star] = ACTIONS(4916), + [sym__emphasis_open_underscore] = ACTIONS(4916), + [sym__strikeout_open] = ACTIONS(4916), + [sym__latex_span_start] = ACTIONS(4916), + [sym__single_quote_open] = ACTIONS(4916), + [sym__double_quote_open] = ACTIONS(4916), + [sym__superscript_open] = ACTIONS(4916), + [sym__subscript_open] = ACTIONS(4916), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4916), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4916), + [sym__cite_author_in_text] = ACTIONS(4916), + [sym__cite_suppress_author] = ACTIONS(4916), + [sym__shortcode_open_escaped] = ACTIONS(4916), + [sym__shortcode_open] = ACTIONS(4916), + [sym__unclosed_span] = ACTIONS(4916), + }, + [STATE(952)] = { + [sym__backslash_escape] = ACTIONS(4920), + [sym_entity_reference] = ACTIONS(4920), + [sym_numeric_character_reference] = ACTIONS(4920), + [anon_sym_LT] = ACTIONS(4922), + [anon_sym_GT] = ACTIONS(4920), + [anon_sym_BANG] = ACTIONS(4920), + [anon_sym_DQUOTE] = ACTIONS(4920), + [anon_sym_POUND] = ACTIONS(4920), + [anon_sym_DOLLAR] = ACTIONS(4920), + [anon_sym_PERCENT] = ACTIONS(4920), + [anon_sym_AMP] = ACTIONS(4922), + [anon_sym_SQUOTE] = ACTIONS(4920), + [anon_sym_STAR] = ACTIONS(4920), + [anon_sym_PLUS] = ACTIONS(4920), + [anon_sym_COMMA] = ACTIONS(4920), + [anon_sym_DASH] = ACTIONS(4922), + [anon_sym_DOT] = ACTIONS(4922), + [anon_sym_SLASH] = ACTIONS(4920), + [anon_sym_COLON] = ACTIONS(4920), + [anon_sym_SEMI] = ACTIONS(4920), + [anon_sym_EQ] = ACTIONS(4920), + [anon_sym_QMARK] = ACTIONS(4920), + [anon_sym_LBRACK] = ACTIONS(4922), + [anon_sym_BSLASH] = ACTIONS(4922), + [anon_sym_CARET] = ACTIONS(4922), + [anon_sym__] = ACTIONS(4920), + [anon_sym_BQUOTE] = ACTIONS(4920), + [anon_sym_LBRACE] = ACTIONS(4920), + [anon_sym_PIPE] = ACTIONS(4920), + [anon_sym_TILDE] = ACTIONS(4920), + [anon_sym_LPAREN] = ACTIONS(4920), + [anon_sym_RPAREN] = ACTIONS(4920), + [sym__newline_token] = ACTIONS(4920), + [aux_sym_insert_token1] = ACTIONS(4920), + [aux_sym_insert_token2] = ACTIONS(4920), + [aux_sym_delete_token1] = ACTIONS(4920), + [aux_sym_highlight_token1] = ACTIONS(4920), + [aux_sym_edit_comment_token1] = ACTIONS(4920), + [anon_sym_CARET_LBRACK] = ACTIONS(4920), + [anon_sym_LBRACK_CARET] = ACTIONS(4920), + [sym_uri_autolink] = ACTIONS(4920), + [sym_email_autolink] = ACTIONS(4920), + [sym__whitespace_ge_2] = ACTIONS(4922), + [aux_sym__whitespace_token1] = ACTIONS(4922), + [sym__word_no_digit] = ACTIONS(4920), + [sym__digits] = ACTIONS(4920), + [anon_sym_DASH_DASH] = ACTIONS(4922), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4920), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4920), + [sym__code_span_start] = ACTIONS(4920), + [sym__emphasis_open_star] = ACTIONS(4920), + [sym__emphasis_open_underscore] = ACTIONS(4920), + [sym__strikeout_open] = ACTIONS(4920), + [sym__latex_span_start] = ACTIONS(4920), + [sym__single_quote_open] = ACTIONS(4920), + [sym__double_quote_open] = ACTIONS(4920), + [sym__superscript_open] = ACTIONS(4920), + [sym__subscript_open] = ACTIONS(4920), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4920), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4920), + [sym__cite_author_in_text] = ACTIONS(4920), + [sym__cite_suppress_author] = ACTIONS(4920), + [sym__shortcode_open_escaped] = ACTIONS(4920), + [sym__shortcode_open] = ACTIONS(4920), + [sym__unclosed_span] = ACTIONS(4920), + }, + [STATE(953)] = { + [sym__backslash_escape] = ACTIONS(4932), + [sym_entity_reference] = ACTIONS(4932), + [sym_numeric_character_reference] = ACTIONS(4932), + [anon_sym_LT] = ACTIONS(4934), + [anon_sym_GT] = ACTIONS(4932), + [anon_sym_BANG] = ACTIONS(4932), + [anon_sym_DQUOTE] = ACTIONS(4932), + [anon_sym_POUND] = ACTIONS(4932), + [anon_sym_DOLLAR] = ACTIONS(4932), + [anon_sym_PERCENT] = ACTIONS(4932), + [anon_sym_AMP] = ACTIONS(4934), + [anon_sym_SQUOTE] = ACTIONS(4932), + [anon_sym_STAR] = ACTIONS(4932), + [anon_sym_PLUS] = ACTIONS(4932), + [anon_sym_COMMA] = ACTIONS(4932), + [anon_sym_DASH] = ACTIONS(4934), + [anon_sym_DOT] = ACTIONS(4934), + [anon_sym_SLASH] = ACTIONS(4932), + [anon_sym_COLON] = ACTIONS(4932), + [anon_sym_SEMI] = ACTIONS(4932), + [anon_sym_EQ] = ACTIONS(4932), + [anon_sym_QMARK] = ACTIONS(4932), + [anon_sym_LBRACK] = ACTIONS(4934), + [anon_sym_BSLASH] = ACTIONS(4934), + [anon_sym_CARET] = ACTIONS(4934), + [anon_sym__] = ACTIONS(4932), + [anon_sym_BQUOTE] = ACTIONS(4932), + [anon_sym_LBRACE] = ACTIONS(4932), + [anon_sym_PIPE] = ACTIONS(4932), + [anon_sym_TILDE] = ACTIONS(4932), + [anon_sym_LPAREN] = ACTIONS(4932), + [anon_sym_RPAREN] = ACTIONS(4932), + [sym__newline_token] = ACTIONS(4932), + [aux_sym_insert_token1] = ACTIONS(4932), + [aux_sym_insert_token2] = ACTIONS(4932), + [aux_sym_delete_token1] = ACTIONS(4932), + [aux_sym_highlight_token1] = ACTIONS(4932), + [aux_sym_edit_comment_token1] = ACTIONS(4932), + [anon_sym_CARET_LBRACK] = ACTIONS(4932), + [anon_sym_LBRACK_CARET] = ACTIONS(4932), + [sym_uri_autolink] = ACTIONS(4932), + [sym_email_autolink] = ACTIONS(4932), + [sym__whitespace_ge_2] = ACTIONS(4934), + [aux_sym__whitespace_token1] = ACTIONS(4934), + [sym__word_no_digit] = ACTIONS(4932), + [sym__digits] = ACTIONS(4932), + [anon_sym_DASH_DASH] = ACTIONS(4934), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4932), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4932), + [sym__code_span_start] = ACTIONS(4932), + [sym__emphasis_open_star] = ACTIONS(4932), + [sym__emphasis_open_underscore] = ACTIONS(4932), + [sym__strikeout_open] = ACTIONS(4932), + [sym__latex_span_start] = ACTIONS(4932), + [sym__single_quote_open] = ACTIONS(4932), + [sym__double_quote_open] = ACTIONS(4932), + [sym__superscript_open] = ACTIONS(4932), + [sym__subscript_open] = ACTIONS(4932), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4932), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4932), + [sym__cite_author_in_text] = ACTIONS(4932), + [sym__cite_suppress_author] = ACTIONS(4932), + [sym__shortcode_open_escaped] = ACTIONS(4932), + [sym__shortcode_open] = ACTIONS(4932), + [sym__unclosed_span] = ACTIONS(4932), + }, + [STATE(954)] = { + [sym__backslash_escape] = ACTIONS(4944), + [sym_entity_reference] = ACTIONS(4944), + [sym_numeric_character_reference] = ACTIONS(4944), + [anon_sym_LT] = ACTIONS(4946), + [anon_sym_GT] = ACTIONS(4944), + [anon_sym_BANG] = ACTIONS(4944), + [anon_sym_DQUOTE] = ACTIONS(4944), + [anon_sym_POUND] = ACTIONS(4944), + [anon_sym_DOLLAR] = ACTIONS(4944), + [anon_sym_PERCENT] = ACTIONS(4944), + [anon_sym_AMP] = ACTIONS(4946), + [anon_sym_SQUOTE] = ACTIONS(4944), + [anon_sym_STAR] = ACTIONS(4944), + [anon_sym_PLUS] = ACTIONS(4944), + [anon_sym_COMMA] = ACTIONS(4944), + [anon_sym_DASH] = ACTIONS(4946), + [anon_sym_DOT] = ACTIONS(4946), + [anon_sym_SLASH] = ACTIONS(4944), + [anon_sym_COLON] = ACTIONS(4944), + [anon_sym_SEMI] = ACTIONS(4944), + [anon_sym_EQ] = ACTIONS(4944), + [anon_sym_QMARK] = ACTIONS(4944), + [anon_sym_LBRACK] = ACTIONS(4946), + [anon_sym_BSLASH] = ACTIONS(4946), + [anon_sym_RBRACK] = ACTIONS(4944), + [anon_sym_CARET] = ACTIONS(4946), + [anon_sym__] = ACTIONS(4944), + [anon_sym_BQUOTE] = ACTIONS(4944), + [anon_sym_LBRACE] = ACTIONS(4944), + [anon_sym_PIPE] = ACTIONS(4944), + [anon_sym_TILDE] = ACTIONS(4944), + [anon_sym_LPAREN] = ACTIONS(4944), + [anon_sym_RPAREN] = ACTIONS(4944), + [sym__newline_token] = ACTIONS(4944), + [aux_sym_insert_token1] = ACTIONS(4944), + [aux_sym_delete_token1] = ACTIONS(4944), + [aux_sym_highlight_token1] = ACTIONS(4944), + [aux_sym_edit_comment_token1] = ACTIONS(4944), + [anon_sym_CARET_LBRACK] = ACTIONS(4944), + [anon_sym_LBRACK_CARET] = ACTIONS(4944), + [sym_uri_autolink] = ACTIONS(4944), + [sym_email_autolink] = ACTIONS(4944), + [sym__whitespace_ge_2] = ACTIONS(4944), + [aux_sym__whitespace_token1] = ACTIONS(4946), + [sym__word_no_digit] = ACTIONS(4944), + [sym__digits] = ACTIONS(4944), + [anon_sym_DASH_DASH] = ACTIONS(4946), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4944), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4944), + [sym__code_span_start] = ACTIONS(4944), + [sym__emphasis_open_star] = ACTIONS(4944), + [sym__emphasis_open_underscore] = ACTIONS(4944), + [sym__strikeout_open] = ACTIONS(4944), + [sym__latex_span_start] = ACTIONS(4944), + [sym__single_quote_open] = ACTIONS(4944), + [sym__double_quote_open] = ACTIONS(4944), + [sym__superscript_open] = ACTIONS(4944), + [sym__subscript_open] = ACTIONS(4944), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4944), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4944), + [sym__cite_author_in_text] = ACTIONS(4944), + [sym__cite_suppress_author] = ACTIONS(4944), + [sym__shortcode_open_escaped] = ACTIONS(4944), + [sym__shortcode_open] = ACTIONS(4944), + [sym__unclosed_span] = ACTIONS(4944), + }, + [STATE(955)] = { + [sym__backslash_escape] = ACTIONS(4952), + [sym_entity_reference] = ACTIONS(4952), + [sym_numeric_character_reference] = ACTIONS(4952), + [anon_sym_LT] = ACTIONS(4954), + [anon_sym_GT] = ACTIONS(4952), + [anon_sym_BANG] = ACTIONS(4952), + [anon_sym_DQUOTE] = ACTIONS(4952), + [anon_sym_POUND] = ACTIONS(4952), + [anon_sym_DOLLAR] = ACTIONS(4952), + [anon_sym_PERCENT] = ACTIONS(4952), + [anon_sym_AMP] = ACTIONS(4954), + [anon_sym_SQUOTE] = ACTIONS(4952), + [anon_sym_STAR] = ACTIONS(4952), + [anon_sym_PLUS] = ACTIONS(4952), + [anon_sym_COMMA] = ACTIONS(4952), + [anon_sym_DASH] = ACTIONS(4954), + [anon_sym_DOT] = ACTIONS(4954), + [anon_sym_SLASH] = ACTIONS(4952), + [anon_sym_COLON] = ACTIONS(4952), + [anon_sym_SEMI] = ACTIONS(4952), + [anon_sym_EQ] = ACTIONS(4952), + [anon_sym_QMARK] = ACTIONS(4952), + [anon_sym_LBRACK] = ACTIONS(4954), + [anon_sym_BSLASH] = ACTIONS(4954), + [anon_sym_RBRACK] = ACTIONS(4952), + [anon_sym_CARET] = ACTIONS(4954), + [anon_sym__] = ACTIONS(4952), + [anon_sym_BQUOTE] = ACTIONS(4952), + [anon_sym_LBRACE] = ACTIONS(4952), + [anon_sym_PIPE] = ACTIONS(4952), + [anon_sym_TILDE] = ACTIONS(4952), + [anon_sym_LPAREN] = ACTIONS(4952), + [anon_sym_RPAREN] = ACTIONS(4952), + [sym__newline_token] = ACTIONS(4952), + [aux_sym_insert_token1] = ACTIONS(4952), + [aux_sym_delete_token1] = ACTIONS(4952), + [aux_sym_highlight_token1] = ACTIONS(4952), + [aux_sym_edit_comment_token1] = ACTIONS(4952), + [anon_sym_CARET_LBRACK] = ACTIONS(4952), + [anon_sym_LBRACK_CARET] = ACTIONS(4952), + [sym_uri_autolink] = ACTIONS(4952), + [sym_email_autolink] = ACTIONS(4952), + [sym__whitespace_ge_2] = ACTIONS(4952), + [aux_sym__whitespace_token1] = ACTIONS(4954), + [sym__word_no_digit] = ACTIONS(4952), + [sym__digits] = ACTIONS(4952), + [anon_sym_DASH_DASH] = ACTIONS(4954), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4952), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4952), + [sym__code_span_start] = ACTIONS(4952), + [sym__emphasis_open_star] = ACTIONS(4952), + [sym__emphasis_open_underscore] = ACTIONS(4952), + [sym__strikeout_open] = ACTIONS(4952), + [sym__latex_span_start] = ACTIONS(4952), + [sym__single_quote_open] = ACTIONS(4952), + [sym__double_quote_open] = ACTIONS(4952), + [sym__superscript_open] = ACTIONS(4952), + [sym__subscript_open] = ACTIONS(4952), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4952), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4952), + [sym__cite_author_in_text] = ACTIONS(4952), + [sym__cite_suppress_author] = ACTIONS(4952), + [sym__shortcode_open_escaped] = ACTIONS(4952), + [sym__shortcode_open] = ACTIONS(4952), + [sym__unclosed_span] = ACTIONS(4952), + }, + [STATE(956)] = { + [sym__backslash_escape] = ACTIONS(4956), + [sym_entity_reference] = ACTIONS(4956), + [sym_numeric_character_reference] = ACTIONS(4956), + [anon_sym_LT] = ACTIONS(4958), + [anon_sym_GT] = ACTIONS(4956), + [anon_sym_BANG] = ACTIONS(4956), + [anon_sym_DQUOTE] = ACTIONS(4956), + [anon_sym_POUND] = ACTIONS(4956), + [anon_sym_DOLLAR] = ACTIONS(4956), + [anon_sym_PERCENT] = ACTIONS(4956), + [anon_sym_AMP] = ACTIONS(4958), + [anon_sym_SQUOTE] = ACTIONS(4956), + [anon_sym_STAR] = ACTIONS(4956), + [anon_sym_PLUS] = ACTIONS(4956), + [anon_sym_COMMA] = ACTIONS(4956), + [anon_sym_DASH] = ACTIONS(4958), + [anon_sym_DOT] = ACTIONS(4958), + [anon_sym_SLASH] = ACTIONS(4956), + [anon_sym_COLON] = ACTIONS(4956), + [anon_sym_SEMI] = ACTIONS(4956), + [anon_sym_EQ] = ACTIONS(4956), + [anon_sym_QMARK] = ACTIONS(4956), + [anon_sym_LBRACK] = ACTIONS(4958), + [anon_sym_BSLASH] = ACTIONS(4958), + [anon_sym_RBRACK] = ACTIONS(4956), + [anon_sym_CARET] = ACTIONS(4958), + [anon_sym__] = ACTIONS(4956), + [anon_sym_BQUOTE] = ACTIONS(4956), + [anon_sym_LBRACE] = ACTIONS(4956), + [anon_sym_PIPE] = ACTIONS(4956), + [anon_sym_TILDE] = ACTIONS(4956), + [anon_sym_LPAREN] = ACTIONS(4956), + [anon_sym_RPAREN] = ACTIONS(4956), + [sym__newline_token] = ACTIONS(4956), + [aux_sym_insert_token1] = ACTIONS(4956), + [aux_sym_delete_token1] = ACTIONS(4956), + [aux_sym_highlight_token1] = ACTIONS(4956), + [aux_sym_edit_comment_token1] = ACTIONS(4956), + [anon_sym_CARET_LBRACK] = ACTIONS(4956), + [anon_sym_LBRACK_CARET] = ACTIONS(4956), + [sym_uri_autolink] = ACTIONS(4956), + [sym_email_autolink] = ACTIONS(4956), + [sym__whitespace_ge_2] = ACTIONS(4956), + [aux_sym__whitespace_token1] = ACTIONS(4958), + [sym__word_no_digit] = ACTIONS(4956), + [sym__digits] = ACTIONS(4956), + [anon_sym_DASH_DASH] = ACTIONS(4958), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4956), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4956), + [sym__code_span_start] = ACTIONS(4956), + [sym__emphasis_open_star] = ACTIONS(4956), + [sym__emphasis_open_underscore] = ACTIONS(4956), + [sym__strikeout_open] = ACTIONS(4956), + [sym__latex_span_start] = ACTIONS(4956), + [sym__single_quote_open] = ACTIONS(4956), + [sym__double_quote_open] = ACTIONS(4956), + [sym__superscript_open] = ACTIONS(4956), + [sym__subscript_open] = ACTIONS(4956), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4956), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4956), + [sym__cite_author_in_text] = ACTIONS(4956), + [sym__cite_suppress_author] = ACTIONS(4956), + [sym__shortcode_open_escaped] = ACTIONS(4956), + [sym__shortcode_open] = ACTIONS(4956), + [sym__unclosed_span] = ACTIONS(4956), + }, + [STATE(957)] = { + [sym__backslash_escape] = ACTIONS(4960), + [sym_entity_reference] = ACTIONS(4960), + [sym_numeric_character_reference] = ACTIONS(4960), + [anon_sym_LT] = ACTIONS(4962), + [anon_sym_GT] = ACTIONS(4960), + [anon_sym_BANG] = ACTIONS(4960), + [anon_sym_DQUOTE] = ACTIONS(4960), + [anon_sym_POUND] = ACTIONS(4960), + [anon_sym_DOLLAR] = ACTIONS(4960), + [anon_sym_PERCENT] = ACTIONS(4960), + [anon_sym_AMP] = ACTIONS(4962), + [anon_sym_SQUOTE] = ACTIONS(4960), + [anon_sym_STAR] = ACTIONS(4960), + [anon_sym_PLUS] = ACTIONS(4960), + [anon_sym_COMMA] = ACTIONS(4960), + [anon_sym_DASH] = ACTIONS(4962), + [anon_sym_DOT] = ACTIONS(4962), + [anon_sym_SLASH] = ACTIONS(4960), + [anon_sym_COLON] = ACTIONS(4960), + [anon_sym_SEMI] = ACTIONS(4960), + [anon_sym_EQ] = ACTIONS(4960), + [anon_sym_QMARK] = ACTIONS(4960), + [anon_sym_LBRACK] = ACTIONS(4962), + [anon_sym_BSLASH] = ACTIONS(4962), + [anon_sym_RBRACK] = ACTIONS(4960), + [anon_sym_CARET] = ACTIONS(4962), + [anon_sym__] = ACTIONS(4960), + [anon_sym_BQUOTE] = ACTIONS(4960), + [anon_sym_LBRACE] = ACTIONS(4960), + [anon_sym_PIPE] = ACTIONS(4960), + [anon_sym_TILDE] = ACTIONS(4960), + [anon_sym_LPAREN] = ACTIONS(4960), + [anon_sym_RPAREN] = ACTIONS(4960), + [sym__newline_token] = ACTIONS(4960), + [aux_sym_insert_token1] = ACTIONS(4960), + [aux_sym_delete_token1] = ACTIONS(4960), + [aux_sym_highlight_token1] = ACTIONS(4960), + [aux_sym_edit_comment_token1] = ACTIONS(4960), + [anon_sym_CARET_LBRACK] = ACTIONS(4960), + [anon_sym_LBRACK_CARET] = ACTIONS(4960), + [sym_uri_autolink] = ACTIONS(4960), + [sym_email_autolink] = ACTIONS(4960), + [sym__whitespace_ge_2] = ACTIONS(4960), + [aux_sym__whitespace_token1] = ACTIONS(4962), + [sym__word_no_digit] = ACTIONS(4960), + [sym__digits] = ACTIONS(4960), + [anon_sym_DASH_DASH] = ACTIONS(4962), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4960), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4960), + [sym__code_span_start] = ACTIONS(4960), + [sym__emphasis_open_star] = ACTIONS(4960), + [sym__emphasis_open_underscore] = ACTIONS(4960), + [sym__strikeout_open] = ACTIONS(4960), + [sym__latex_span_start] = ACTIONS(4960), + [sym__single_quote_open] = ACTIONS(4960), + [sym__double_quote_open] = ACTIONS(4960), + [sym__superscript_open] = ACTIONS(4960), + [sym__subscript_open] = ACTIONS(4960), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4960), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4960), + [sym__cite_author_in_text] = ACTIONS(4960), + [sym__cite_suppress_author] = ACTIONS(4960), + [sym__shortcode_open_escaped] = ACTIONS(4960), + [sym__shortcode_open] = ACTIONS(4960), + [sym__unclosed_span] = ACTIONS(4960), + }, + [STATE(958)] = { + [sym__backslash_escape] = ACTIONS(4964), + [sym_entity_reference] = ACTIONS(4964), + [sym_numeric_character_reference] = ACTIONS(4964), + [anon_sym_LT] = ACTIONS(4966), + [anon_sym_GT] = ACTIONS(4964), + [anon_sym_BANG] = ACTIONS(4964), + [anon_sym_DQUOTE] = ACTIONS(4964), + [anon_sym_POUND] = ACTIONS(4964), + [anon_sym_DOLLAR] = ACTIONS(4964), + [anon_sym_PERCENT] = ACTIONS(4964), + [anon_sym_AMP] = ACTIONS(4966), + [anon_sym_SQUOTE] = ACTIONS(4964), + [anon_sym_STAR] = ACTIONS(4964), + [anon_sym_PLUS] = ACTIONS(4964), + [anon_sym_COMMA] = ACTIONS(4964), + [anon_sym_DASH] = ACTIONS(4966), + [anon_sym_DOT] = ACTIONS(4966), + [anon_sym_SLASH] = ACTIONS(4964), + [anon_sym_COLON] = ACTIONS(4964), + [anon_sym_SEMI] = ACTIONS(4964), + [anon_sym_EQ] = ACTIONS(4964), + [anon_sym_QMARK] = ACTIONS(4964), + [anon_sym_LBRACK] = ACTIONS(4966), + [anon_sym_BSLASH] = ACTIONS(4966), + [anon_sym_RBRACK] = ACTIONS(4964), + [anon_sym_CARET] = ACTIONS(4966), + [anon_sym__] = ACTIONS(4964), + [anon_sym_BQUOTE] = ACTIONS(4964), + [anon_sym_LBRACE] = ACTIONS(4964), + [anon_sym_PIPE] = ACTIONS(4964), + [anon_sym_TILDE] = ACTIONS(4964), + [anon_sym_LPAREN] = ACTIONS(4964), + [anon_sym_RPAREN] = ACTIONS(4964), + [sym__newline_token] = ACTIONS(4964), + [aux_sym_insert_token1] = ACTIONS(4964), + [aux_sym_delete_token1] = ACTIONS(4964), + [aux_sym_highlight_token1] = ACTIONS(4964), + [aux_sym_edit_comment_token1] = ACTIONS(4964), + [anon_sym_CARET_LBRACK] = ACTIONS(4964), + [anon_sym_LBRACK_CARET] = ACTIONS(4964), + [sym_uri_autolink] = ACTIONS(4964), + [sym_email_autolink] = ACTIONS(4964), + [sym__whitespace_ge_2] = ACTIONS(4964), + [aux_sym__whitespace_token1] = ACTIONS(4966), + [sym__word_no_digit] = ACTIONS(4964), + [sym__digits] = ACTIONS(4964), + [anon_sym_DASH_DASH] = ACTIONS(4966), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4964), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4964), + [sym__code_span_start] = ACTIONS(4964), + [sym__emphasis_open_star] = ACTIONS(4964), + [sym__emphasis_open_underscore] = ACTIONS(4964), + [sym__strikeout_open] = ACTIONS(4964), + [sym__latex_span_start] = ACTIONS(4964), + [sym__single_quote_open] = ACTIONS(4964), + [sym__double_quote_open] = ACTIONS(4964), + [sym__superscript_open] = ACTIONS(4964), + [sym__subscript_open] = ACTIONS(4964), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4964), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4964), + [sym__cite_author_in_text] = ACTIONS(4964), + [sym__cite_suppress_author] = ACTIONS(4964), + [sym__shortcode_open_escaped] = ACTIONS(4964), + [sym__shortcode_open] = ACTIONS(4964), + [sym__unclosed_span] = ACTIONS(4964), + }, + [STATE(959)] = { + [sym__backslash_escape] = ACTIONS(4968), + [sym_entity_reference] = ACTIONS(4968), + [sym_numeric_character_reference] = ACTIONS(4968), + [anon_sym_LT] = ACTIONS(4970), + [anon_sym_GT] = ACTIONS(4968), + [anon_sym_BANG] = ACTIONS(4968), + [anon_sym_DQUOTE] = ACTIONS(4968), + [anon_sym_POUND] = ACTIONS(4968), + [anon_sym_DOLLAR] = ACTIONS(4968), + [anon_sym_PERCENT] = ACTIONS(4968), + [anon_sym_AMP] = ACTIONS(4970), + [anon_sym_SQUOTE] = ACTIONS(4968), + [anon_sym_STAR] = ACTIONS(4968), + [anon_sym_PLUS] = ACTIONS(4968), + [anon_sym_COMMA] = ACTIONS(4968), + [anon_sym_DASH] = ACTIONS(4970), + [anon_sym_DOT] = ACTIONS(4970), + [anon_sym_SLASH] = ACTIONS(4968), + [anon_sym_COLON] = ACTIONS(4968), + [anon_sym_SEMI] = ACTIONS(4968), + [anon_sym_EQ] = ACTIONS(4968), + [anon_sym_QMARK] = ACTIONS(4968), + [anon_sym_LBRACK] = ACTIONS(4970), + [anon_sym_BSLASH] = ACTIONS(4970), + [anon_sym_RBRACK] = ACTIONS(4968), + [anon_sym_CARET] = ACTIONS(4970), + [anon_sym__] = ACTIONS(4968), + [anon_sym_BQUOTE] = ACTIONS(4968), + [anon_sym_LBRACE] = ACTIONS(4968), + [anon_sym_PIPE] = ACTIONS(4968), + [anon_sym_TILDE] = ACTIONS(4968), + [anon_sym_LPAREN] = ACTIONS(4968), + [anon_sym_RPAREN] = ACTIONS(4968), + [sym__newline_token] = ACTIONS(4968), + [aux_sym_insert_token1] = ACTIONS(4968), + [aux_sym_delete_token1] = ACTIONS(4968), + [aux_sym_highlight_token1] = ACTIONS(4968), + [aux_sym_edit_comment_token1] = ACTIONS(4968), + [anon_sym_CARET_LBRACK] = ACTIONS(4968), + [anon_sym_LBRACK_CARET] = ACTIONS(4968), + [sym_uri_autolink] = ACTIONS(4968), + [sym_email_autolink] = ACTIONS(4968), + [sym__whitespace_ge_2] = ACTIONS(4968), + [aux_sym__whitespace_token1] = ACTIONS(4970), + [sym__word_no_digit] = ACTIONS(4968), + [sym__digits] = ACTIONS(4968), + [anon_sym_DASH_DASH] = ACTIONS(4970), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4968), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4968), + [sym__code_span_start] = ACTIONS(4968), + [sym__emphasis_open_star] = ACTIONS(4968), + [sym__emphasis_open_underscore] = ACTIONS(4968), + [sym__strikeout_open] = ACTIONS(4968), + [sym__latex_span_start] = ACTIONS(4968), + [sym__single_quote_open] = ACTIONS(4968), + [sym__double_quote_open] = ACTIONS(4968), + [sym__superscript_open] = ACTIONS(4968), + [sym__subscript_open] = ACTIONS(4968), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4968), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4968), + [sym__cite_author_in_text] = ACTIONS(4968), + [sym__cite_suppress_author] = ACTIONS(4968), + [sym__shortcode_open_escaped] = ACTIONS(4968), + [sym__shortcode_open] = ACTIONS(4968), + [sym__unclosed_span] = ACTIONS(4968), + }, + [STATE(960)] = { + [sym__backslash_escape] = ACTIONS(4972), + [sym_entity_reference] = ACTIONS(4972), + [sym_numeric_character_reference] = ACTIONS(4972), + [anon_sym_LT] = ACTIONS(4974), + [anon_sym_GT] = ACTIONS(4972), + [anon_sym_BANG] = ACTIONS(4972), + [anon_sym_DQUOTE] = ACTIONS(4972), + [anon_sym_POUND] = ACTIONS(4972), + [anon_sym_DOLLAR] = ACTIONS(4972), + [anon_sym_PERCENT] = ACTIONS(4972), + [anon_sym_AMP] = ACTIONS(4974), + [anon_sym_SQUOTE] = ACTIONS(4972), + [anon_sym_STAR] = ACTIONS(4972), + [anon_sym_PLUS] = ACTIONS(4972), + [anon_sym_COMMA] = ACTIONS(4972), + [anon_sym_DASH] = ACTIONS(4974), + [anon_sym_DOT] = ACTIONS(4974), + [anon_sym_SLASH] = ACTIONS(4972), + [anon_sym_COLON] = ACTIONS(4972), + [anon_sym_SEMI] = ACTIONS(4972), + [anon_sym_EQ] = ACTIONS(4972), + [anon_sym_QMARK] = ACTIONS(4972), + [anon_sym_LBRACK] = ACTIONS(4974), + [anon_sym_BSLASH] = ACTIONS(4974), + [anon_sym_RBRACK] = ACTIONS(4972), + [anon_sym_CARET] = ACTIONS(4974), + [anon_sym__] = ACTIONS(4972), + [anon_sym_BQUOTE] = ACTIONS(4972), + [anon_sym_LBRACE] = ACTIONS(4972), + [anon_sym_PIPE] = ACTIONS(4972), + [anon_sym_TILDE] = ACTIONS(4972), + [anon_sym_LPAREN] = ACTIONS(4972), + [anon_sym_RPAREN] = ACTIONS(4972), + [sym__newline_token] = ACTIONS(4972), + [aux_sym_insert_token1] = ACTIONS(4972), + [aux_sym_delete_token1] = ACTIONS(4972), + [aux_sym_highlight_token1] = ACTIONS(4972), + [aux_sym_edit_comment_token1] = ACTIONS(4972), + [anon_sym_CARET_LBRACK] = ACTIONS(4972), + [anon_sym_LBRACK_CARET] = ACTIONS(4972), + [sym_uri_autolink] = ACTIONS(4972), + [sym_email_autolink] = ACTIONS(4972), + [sym__whitespace_ge_2] = ACTIONS(4972), + [aux_sym__whitespace_token1] = ACTIONS(4974), + [sym__word_no_digit] = ACTIONS(4972), + [sym__digits] = ACTIONS(4972), + [anon_sym_DASH_DASH] = ACTIONS(4974), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4972), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4972), + [sym__code_span_start] = ACTIONS(4972), + [sym__emphasis_open_star] = ACTIONS(4972), + [sym__emphasis_open_underscore] = ACTIONS(4972), + [sym__strikeout_open] = ACTIONS(4972), + [sym__latex_span_start] = ACTIONS(4972), + [sym__single_quote_open] = ACTIONS(4972), + [sym__double_quote_open] = ACTIONS(4972), + [sym__superscript_open] = ACTIONS(4972), + [sym__subscript_open] = ACTIONS(4972), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4972), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4972), + [sym__cite_author_in_text] = ACTIONS(4972), + [sym__cite_suppress_author] = ACTIONS(4972), + [sym__shortcode_open_escaped] = ACTIONS(4972), + [sym__shortcode_open] = ACTIONS(4972), + [sym__unclosed_span] = ACTIONS(4972), + }, + [STATE(961)] = { + [sym__backslash_escape] = ACTIONS(4988), + [sym_entity_reference] = ACTIONS(4988), + [sym_numeric_character_reference] = ACTIONS(4988), + [anon_sym_LT] = ACTIONS(4990), + [anon_sym_GT] = ACTIONS(4988), + [anon_sym_BANG] = ACTIONS(4988), + [anon_sym_DQUOTE] = ACTIONS(4988), + [anon_sym_POUND] = ACTIONS(4988), + [anon_sym_DOLLAR] = ACTIONS(4988), + [anon_sym_PERCENT] = ACTIONS(4988), + [anon_sym_AMP] = ACTIONS(4990), + [anon_sym_SQUOTE] = ACTIONS(4988), + [anon_sym_STAR] = ACTIONS(4988), + [anon_sym_PLUS] = ACTIONS(4988), + [anon_sym_COMMA] = ACTIONS(4988), + [anon_sym_DASH] = ACTIONS(4990), + [anon_sym_DOT] = ACTIONS(4990), + [anon_sym_SLASH] = ACTIONS(4988), + [anon_sym_COLON] = ACTIONS(4988), + [anon_sym_SEMI] = ACTIONS(4988), + [anon_sym_EQ] = ACTIONS(4988), + [anon_sym_QMARK] = ACTIONS(4988), + [anon_sym_LBRACK] = ACTIONS(4990), + [anon_sym_BSLASH] = ACTIONS(4990), + [anon_sym_CARET] = ACTIONS(4990), + [anon_sym__] = ACTIONS(4988), + [anon_sym_BQUOTE] = ACTIONS(4988), + [anon_sym_LBRACE] = ACTIONS(4988), + [anon_sym_PIPE] = ACTIONS(4988), + [anon_sym_TILDE] = ACTIONS(4988), + [anon_sym_LPAREN] = ACTIONS(4988), + [anon_sym_RPAREN] = ACTIONS(4988), + [sym__newline_token] = ACTIONS(4988), + [aux_sym_insert_token1] = ACTIONS(4988), + [aux_sym_insert_token2] = ACTIONS(4988), + [aux_sym_delete_token1] = ACTIONS(4988), + [aux_sym_highlight_token1] = ACTIONS(4988), + [aux_sym_edit_comment_token1] = ACTIONS(4988), + [anon_sym_CARET_LBRACK] = ACTIONS(4988), + [anon_sym_LBRACK_CARET] = ACTIONS(4988), + [sym_uri_autolink] = ACTIONS(4988), + [sym_email_autolink] = ACTIONS(4988), + [sym__whitespace_ge_2] = ACTIONS(4990), + [aux_sym__whitespace_token1] = ACTIONS(4990), + [sym__word_no_digit] = ACTIONS(4988), + [sym__digits] = ACTIONS(4988), + [anon_sym_DASH_DASH] = ACTIONS(4990), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4988), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4988), + [sym__code_span_start] = ACTIONS(4988), + [sym__emphasis_open_star] = ACTIONS(4988), + [sym__emphasis_open_underscore] = ACTIONS(4988), + [sym__strikeout_open] = ACTIONS(4988), + [sym__latex_span_start] = ACTIONS(4988), + [sym__single_quote_open] = ACTIONS(4988), + [sym__double_quote_open] = ACTIONS(4988), + [sym__superscript_open] = ACTIONS(4988), + [sym__subscript_open] = ACTIONS(4988), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4988), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4988), + [sym__cite_author_in_text] = ACTIONS(4988), + [sym__cite_suppress_author] = ACTIONS(4988), + [sym__shortcode_open_escaped] = ACTIONS(4988), + [sym__shortcode_open] = ACTIONS(4988), + [sym__unclosed_span] = ACTIONS(4988), + }, + [STATE(962)] = { + [sym__backslash_escape] = ACTIONS(4992), + [sym_entity_reference] = ACTIONS(4992), + [sym_numeric_character_reference] = ACTIONS(4992), + [anon_sym_LT] = ACTIONS(4994), + [anon_sym_GT] = ACTIONS(4992), + [anon_sym_BANG] = ACTIONS(4992), + [anon_sym_DQUOTE] = ACTIONS(4992), + [anon_sym_POUND] = ACTIONS(4992), + [anon_sym_DOLLAR] = ACTIONS(4992), + [anon_sym_PERCENT] = ACTIONS(4992), + [anon_sym_AMP] = ACTIONS(4994), + [anon_sym_SQUOTE] = ACTIONS(4992), + [anon_sym_STAR] = ACTIONS(4992), + [anon_sym_PLUS] = ACTIONS(4992), + [anon_sym_COMMA] = ACTIONS(4992), + [anon_sym_DASH] = ACTIONS(4994), + [anon_sym_DOT] = ACTIONS(4994), + [anon_sym_SLASH] = ACTIONS(4992), + [anon_sym_COLON] = ACTIONS(4992), + [anon_sym_SEMI] = ACTIONS(4992), + [anon_sym_EQ] = ACTIONS(4992), + [anon_sym_QMARK] = ACTIONS(4992), + [anon_sym_LBRACK] = ACTIONS(4994), + [anon_sym_BSLASH] = ACTIONS(4994), + [anon_sym_CARET] = ACTIONS(4994), + [anon_sym__] = ACTIONS(4992), + [anon_sym_BQUOTE] = ACTIONS(4992), + [anon_sym_LBRACE] = ACTIONS(4992), + [anon_sym_PIPE] = ACTIONS(4992), + [anon_sym_TILDE] = ACTIONS(4992), + [anon_sym_LPAREN] = ACTIONS(4992), + [anon_sym_RPAREN] = ACTIONS(4992), + [sym__newline_token] = ACTIONS(4992), + [aux_sym_insert_token1] = ACTIONS(4992), + [aux_sym_insert_token2] = ACTIONS(4992), + [aux_sym_delete_token1] = ACTIONS(4992), + [aux_sym_highlight_token1] = ACTIONS(4992), + [aux_sym_edit_comment_token1] = ACTIONS(4992), + [anon_sym_CARET_LBRACK] = ACTIONS(4992), + [anon_sym_LBRACK_CARET] = ACTIONS(4992), + [sym_uri_autolink] = ACTIONS(4992), + [sym_email_autolink] = ACTIONS(4992), + [sym__whitespace_ge_2] = ACTIONS(4994), + [aux_sym__whitespace_token1] = ACTIONS(4994), + [sym__word_no_digit] = ACTIONS(4992), + [sym__digits] = ACTIONS(4992), + [anon_sym_DASH_DASH] = ACTIONS(4994), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4992), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4992), + [sym__code_span_start] = ACTIONS(4992), + [sym__emphasis_open_star] = ACTIONS(4992), + [sym__emphasis_open_underscore] = ACTIONS(4992), + [sym__strikeout_open] = ACTIONS(4992), + [sym__latex_span_start] = ACTIONS(4992), + [sym__single_quote_open] = ACTIONS(4992), + [sym__double_quote_open] = ACTIONS(4992), + [sym__superscript_open] = ACTIONS(4992), + [sym__subscript_open] = ACTIONS(4992), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4992), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4992), + [sym__cite_author_in_text] = ACTIONS(4992), + [sym__cite_suppress_author] = ACTIONS(4992), + [sym__shortcode_open_escaped] = ACTIONS(4992), + [sym__shortcode_open] = ACTIONS(4992), + [sym__unclosed_span] = ACTIONS(4992), + }, + [STATE(963)] = { + [sym__backslash_escape] = ACTIONS(5024), + [sym_entity_reference] = ACTIONS(5024), + [sym_numeric_character_reference] = ACTIONS(5024), + [anon_sym_LT] = ACTIONS(5026), + [anon_sym_GT] = ACTIONS(5024), + [anon_sym_BANG] = ACTIONS(5024), + [anon_sym_DQUOTE] = ACTIONS(5024), + [anon_sym_POUND] = ACTIONS(5024), + [anon_sym_DOLLAR] = ACTIONS(5024), + [anon_sym_PERCENT] = ACTIONS(5024), + [anon_sym_AMP] = ACTIONS(5026), + [anon_sym_SQUOTE] = ACTIONS(5024), + [anon_sym_STAR] = ACTIONS(5024), + [anon_sym_PLUS] = ACTIONS(5024), + [anon_sym_COMMA] = ACTIONS(5024), + [anon_sym_DASH] = ACTIONS(5026), + [anon_sym_DOT] = ACTIONS(5026), + [anon_sym_SLASH] = ACTIONS(5024), + [anon_sym_COLON] = ACTIONS(5024), + [anon_sym_SEMI] = ACTIONS(5024), + [anon_sym_EQ] = ACTIONS(5024), + [anon_sym_QMARK] = ACTIONS(5024), + [anon_sym_LBRACK] = ACTIONS(5026), + [anon_sym_BSLASH] = ACTIONS(5026), + [anon_sym_RBRACK] = ACTIONS(5024), + [anon_sym_CARET] = ACTIONS(5026), + [anon_sym__] = ACTIONS(5024), + [anon_sym_BQUOTE] = ACTIONS(5024), + [anon_sym_LBRACE] = ACTIONS(5024), + [anon_sym_PIPE] = ACTIONS(5024), + [anon_sym_TILDE] = ACTIONS(5024), + [anon_sym_LPAREN] = ACTIONS(5024), + [anon_sym_RPAREN] = ACTIONS(5024), + [sym__newline_token] = ACTIONS(5024), + [aux_sym_insert_token1] = ACTIONS(5024), + [aux_sym_delete_token1] = ACTIONS(5024), + [aux_sym_highlight_token1] = ACTIONS(5024), + [aux_sym_edit_comment_token1] = ACTIONS(5024), + [anon_sym_CARET_LBRACK] = ACTIONS(5024), + [anon_sym_LBRACK_CARET] = ACTIONS(5024), + [sym_uri_autolink] = ACTIONS(5024), + [sym_email_autolink] = ACTIONS(5024), + [sym__whitespace_ge_2] = ACTIONS(5024), + [aux_sym__whitespace_token1] = ACTIONS(5026), + [sym__word_no_digit] = ACTIONS(5024), + [sym__digits] = ACTIONS(5024), + [anon_sym_DASH_DASH] = ACTIONS(5026), + [anon_sym_DASH_DASH_DASH] = ACTIONS(5024), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5024), + [sym__code_span_start] = ACTIONS(5024), + [sym__emphasis_open_star] = ACTIONS(5024), + [sym__emphasis_open_underscore] = ACTIONS(5024), + [sym__strikeout_open] = ACTIONS(5024), + [sym__latex_span_start] = ACTIONS(5024), + [sym__single_quote_open] = ACTIONS(5024), + [sym__double_quote_open] = ACTIONS(5024), + [sym__superscript_open] = ACTIONS(5024), + [sym__subscript_open] = ACTIONS(5024), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5024), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5024), + [sym__cite_author_in_text] = ACTIONS(5024), + [sym__cite_suppress_author] = ACTIONS(5024), + [sym__shortcode_open_escaped] = ACTIONS(5024), + [sym__shortcode_open] = ACTIONS(5024), + [sym__unclosed_span] = ACTIONS(5024), + }, + [STATE(964)] = { + [sym__backslash_escape] = ACTIONS(5040), + [sym_entity_reference] = ACTIONS(5040), + [sym_numeric_character_reference] = ACTIONS(5040), + [anon_sym_LT] = ACTIONS(5042), + [anon_sym_GT] = ACTIONS(5040), + [anon_sym_BANG] = ACTIONS(5040), + [anon_sym_DQUOTE] = ACTIONS(5040), + [anon_sym_POUND] = ACTIONS(5040), + [anon_sym_DOLLAR] = ACTIONS(5040), + [anon_sym_PERCENT] = ACTIONS(5040), + [anon_sym_AMP] = ACTIONS(5042), + [anon_sym_SQUOTE] = ACTIONS(5040), + [anon_sym_STAR] = ACTIONS(5040), + [anon_sym_PLUS] = ACTIONS(5040), + [anon_sym_COMMA] = ACTIONS(5040), + [anon_sym_DASH] = ACTIONS(5042), + [anon_sym_DOT] = ACTIONS(5042), + [anon_sym_SLASH] = ACTIONS(5040), + [anon_sym_COLON] = ACTIONS(5040), + [anon_sym_SEMI] = ACTIONS(5040), + [anon_sym_EQ] = ACTIONS(5040), + [anon_sym_QMARK] = ACTIONS(5040), + [anon_sym_LBRACK] = ACTIONS(5042), + [anon_sym_BSLASH] = ACTIONS(5042), + [anon_sym_RBRACK] = ACTIONS(5040), + [anon_sym_CARET] = ACTIONS(5042), + [anon_sym__] = ACTIONS(5040), + [anon_sym_BQUOTE] = ACTIONS(5040), + [anon_sym_LBRACE] = ACTIONS(5040), + [anon_sym_PIPE] = ACTIONS(5040), + [anon_sym_TILDE] = ACTIONS(5040), + [anon_sym_LPAREN] = ACTIONS(5040), + [anon_sym_RPAREN] = ACTIONS(5040), + [sym__newline_token] = ACTIONS(5040), + [aux_sym_insert_token1] = ACTIONS(5040), + [aux_sym_delete_token1] = ACTIONS(5040), + [aux_sym_highlight_token1] = ACTIONS(5040), + [aux_sym_edit_comment_token1] = ACTIONS(5040), + [anon_sym_CARET_LBRACK] = ACTIONS(5040), + [anon_sym_LBRACK_CARET] = ACTIONS(5040), + [sym_uri_autolink] = ACTIONS(5040), + [sym_email_autolink] = ACTIONS(5040), + [sym__whitespace_ge_2] = ACTIONS(5040), + [aux_sym__whitespace_token1] = ACTIONS(5042), + [sym__word_no_digit] = ACTIONS(5040), + [sym__digits] = ACTIONS(5040), + [anon_sym_DASH_DASH] = ACTIONS(5042), + [anon_sym_DASH_DASH_DASH] = ACTIONS(5040), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5040), + [sym__code_span_start] = ACTIONS(5040), + [sym__emphasis_open_star] = ACTIONS(5040), + [sym__emphasis_open_underscore] = ACTIONS(5040), + [sym__strikeout_open] = ACTIONS(5040), + [sym__latex_span_start] = ACTIONS(5040), + [sym__single_quote_open] = ACTIONS(5040), + [sym__double_quote_open] = ACTIONS(5040), + [sym__superscript_open] = ACTIONS(5040), + [sym__subscript_open] = ACTIONS(5040), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5040), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5040), + [sym__cite_author_in_text] = ACTIONS(5040), + [sym__cite_suppress_author] = ACTIONS(5040), + [sym__shortcode_open_escaped] = ACTIONS(5040), + [sym__shortcode_open] = ACTIONS(5040), + [sym__unclosed_span] = ACTIONS(5040), + }, + [STATE(965)] = { + [sym__backslash_escape] = ACTIONS(5044), + [sym_entity_reference] = ACTIONS(5044), + [sym_numeric_character_reference] = ACTIONS(5044), + [anon_sym_LT] = ACTIONS(5046), + [anon_sym_GT] = ACTIONS(5044), + [anon_sym_BANG] = ACTIONS(5044), + [anon_sym_DQUOTE] = ACTIONS(5044), + [anon_sym_POUND] = ACTIONS(5044), + [anon_sym_DOLLAR] = ACTIONS(5044), + [anon_sym_PERCENT] = ACTIONS(5044), + [anon_sym_AMP] = ACTIONS(5046), + [anon_sym_SQUOTE] = ACTIONS(5044), + [anon_sym_STAR] = ACTIONS(5044), + [anon_sym_PLUS] = ACTIONS(5044), + [anon_sym_COMMA] = ACTIONS(5044), + [anon_sym_DASH] = ACTIONS(5046), + [anon_sym_DOT] = ACTIONS(5046), + [anon_sym_SLASH] = ACTIONS(5044), + [anon_sym_COLON] = ACTIONS(5044), + [anon_sym_SEMI] = ACTIONS(5044), + [anon_sym_EQ] = ACTIONS(5044), + [anon_sym_QMARK] = ACTIONS(5044), + [anon_sym_LBRACK] = ACTIONS(5046), + [anon_sym_BSLASH] = ACTIONS(5046), + [anon_sym_RBRACK] = ACTIONS(5044), + [anon_sym_CARET] = ACTIONS(5046), + [anon_sym__] = ACTIONS(5044), + [anon_sym_BQUOTE] = ACTIONS(5044), + [anon_sym_LBRACE] = ACTIONS(5044), + [anon_sym_PIPE] = ACTIONS(5044), + [anon_sym_TILDE] = ACTIONS(5044), + [anon_sym_LPAREN] = ACTIONS(5044), + [anon_sym_RPAREN] = ACTIONS(5044), + [sym__newline_token] = ACTIONS(5044), + [aux_sym_insert_token1] = ACTIONS(5044), + [aux_sym_delete_token1] = ACTIONS(5044), + [aux_sym_highlight_token1] = ACTIONS(5044), + [aux_sym_edit_comment_token1] = ACTIONS(5044), + [anon_sym_CARET_LBRACK] = ACTIONS(5044), + [anon_sym_LBRACK_CARET] = ACTIONS(5044), + [sym_uri_autolink] = ACTIONS(5044), + [sym_email_autolink] = ACTIONS(5044), + [sym__whitespace_ge_2] = ACTIONS(5044), + [aux_sym__whitespace_token1] = ACTIONS(5046), + [sym__word_no_digit] = ACTIONS(5044), + [sym__digits] = ACTIONS(5044), + [anon_sym_DASH_DASH] = ACTIONS(5046), + [anon_sym_DASH_DASH_DASH] = ACTIONS(5044), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5044), + [sym__code_span_start] = ACTIONS(5044), + [sym__emphasis_open_star] = ACTIONS(5044), + [sym__emphasis_open_underscore] = ACTIONS(5044), + [sym__strikeout_open] = ACTIONS(5044), + [sym__latex_span_start] = ACTIONS(5044), + [sym__single_quote_open] = ACTIONS(5044), + [sym__double_quote_open] = ACTIONS(5044), + [sym__superscript_open] = ACTIONS(5044), + [sym__subscript_open] = ACTIONS(5044), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5044), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5044), + [sym__cite_author_in_text] = ACTIONS(5044), + [sym__cite_suppress_author] = ACTIONS(5044), + [sym__shortcode_open_escaped] = ACTIONS(5044), + [sym__shortcode_open] = ACTIONS(5044), + [sym__unclosed_span] = ACTIONS(5044), + }, + [STATE(966)] = { + [sym__backslash_escape] = ACTIONS(5048), + [sym_entity_reference] = ACTIONS(5048), + [sym_numeric_character_reference] = ACTIONS(5048), + [anon_sym_LT] = ACTIONS(5050), + [anon_sym_GT] = ACTIONS(5048), + [anon_sym_BANG] = ACTIONS(5048), + [anon_sym_DQUOTE] = ACTIONS(5048), + [anon_sym_POUND] = ACTIONS(5048), + [anon_sym_DOLLAR] = ACTIONS(5048), + [anon_sym_PERCENT] = ACTIONS(5048), + [anon_sym_AMP] = ACTIONS(5050), + [anon_sym_SQUOTE] = ACTIONS(5048), + [anon_sym_STAR] = ACTIONS(5048), + [anon_sym_PLUS] = ACTIONS(5048), + [anon_sym_COMMA] = ACTIONS(5048), + [anon_sym_DASH] = ACTIONS(5050), + [anon_sym_DOT] = ACTIONS(5050), + [anon_sym_SLASH] = ACTIONS(5048), + [anon_sym_COLON] = ACTIONS(5048), + [anon_sym_SEMI] = ACTIONS(5048), + [anon_sym_EQ] = ACTIONS(5048), + [anon_sym_QMARK] = ACTIONS(5048), + [anon_sym_LBRACK] = ACTIONS(5050), + [anon_sym_BSLASH] = ACTIONS(5050), + [anon_sym_RBRACK] = ACTIONS(5048), + [anon_sym_CARET] = ACTIONS(5050), + [anon_sym__] = ACTIONS(5048), + [anon_sym_BQUOTE] = ACTIONS(5048), + [anon_sym_LBRACE] = ACTIONS(5048), + [anon_sym_PIPE] = ACTIONS(5048), + [anon_sym_TILDE] = ACTIONS(5048), + [anon_sym_LPAREN] = ACTIONS(5048), + [anon_sym_RPAREN] = ACTIONS(5048), + [sym__newline_token] = ACTIONS(5048), + [aux_sym_insert_token1] = ACTIONS(5048), + [aux_sym_delete_token1] = ACTIONS(5048), + [aux_sym_highlight_token1] = ACTIONS(5048), + [aux_sym_edit_comment_token1] = ACTIONS(5048), + [anon_sym_CARET_LBRACK] = ACTIONS(5048), + [anon_sym_LBRACK_CARET] = ACTIONS(5048), + [sym_uri_autolink] = ACTIONS(5048), + [sym_email_autolink] = ACTIONS(5048), + [sym__whitespace_ge_2] = ACTIONS(5048), + [aux_sym__whitespace_token1] = ACTIONS(5050), + [sym__word_no_digit] = ACTIONS(5048), + [sym__digits] = ACTIONS(5048), + [anon_sym_DASH_DASH] = ACTIONS(5050), + [anon_sym_DASH_DASH_DASH] = ACTIONS(5048), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5048), + [sym__code_span_start] = ACTIONS(5048), + [sym__emphasis_open_star] = ACTIONS(5048), + [sym__emphasis_open_underscore] = ACTIONS(5048), + [sym__strikeout_open] = ACTIONS(5048), + [sym__latex_span_start] = ACTIONS(5048), + [sym__single_quote_open] = ACTIONS(5048), + [sym__double_quote_open] = ACTIONS(5048), + [sym__superscript_open] = ACTIONS(5048), + [sym__subscript_open] = ACTIONS(5048), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5048), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5048), + [sym__cite_author_in_text] = ACTIONS(5048), + [sym__cite_suppress_author] = ACTIONS(5048), + [sym__shortcode_open_escaped] = ACTIONS(5048), + [sym__shortcode_open] = ACTIONS(5048), + [sym__unclosed_span] = ACTIONS(5048), + }, + [STATE(967)] = { + [sym__backslash_escape] = ACTIONS(5052), + [sym_entity_reference] = ACTIONS(5052), + [sym_numeric_character_reference] = ACTIONS(5052), + [anon_sym_LT] = ACTIONS(5054), + [anon_sym_GT] = ACTIONS(5052), + [anon_sym_BANG] = ACTIONS(5052), + [anon_sym_DQUOTE] = ACTIONS(5052), + [anon_sym_POUND] = ACTIONS(5052), + [anon_sym_DOLLAR] = ACTIONS(5052), + [anon_sym_PERCENT] = ACTIONS(5052), + [anon_sym_AMP] = ACTIONS(5054), + [anon_sym_SQUOTE] = ACTIONS(5052), + [anon_sym_STAR] = ACTIONS(5052), + [anon_sym_PLUS] = ACTIONS(5052), + [anon_sym_COMMA] = ACTIONS(5052), + [anon_sym_DASH] = ACTIONS(5054), + [anon_sym_DOT] = ACTIONS(5054), + [anon_sym_SLASH] = ACTIONS(5052), + [anon_sym_COLON] = ACTIONS(5052), + [anon_sym_SEMI] = ACTIONS(5052), + [anon_sym_EQ] = ACTIONS(5052), + [anon_sym_QMARK] = ACTIONS(5052), + [anon_sym_LBRACK] = ACTIONS(5054), + [anon_sym_BSLASH] = ACTIONS(5054), + [anon_sym_RBRACK] = ACTIONS(5052), + [anon_sym_CARET] = ACTIONS(5054), + [anon_sym__] = ACTIONS(5052), + [anon_sym_BQUOTE] = ACTIONS(5052), + [anon_sym_LBRACE] = ACTIONS(5052), + [anon_sym_PIPE] = ACTIONS(5052), + [anon_sym_TILDE] = ACTIONS(5052), + [anon_sym_LPAREN] = ACTIONS(5052), + [anon_sym_RPAREN] = ACTIONS(5052), + [sym__newline_token] = ACTIONS(5052), + [aux_sym_insert_token1] = ACTIONS(5052), + [aux_sym_delete_token1] = ACTIONS(5052), + [aux_sym_highlight_token1] = ACTIONS(5052), + [aux_sym_edit_comment_token1] = ACTIONS(5052), + [anon_sym_CARET_LBRACK] = ACTIONS(5052), + [anon_sym_LBRACK_CARET] = ACTIONS(5052), + [sym_uri_autolink] = ACTIONS(5052), + [sym_email_autolink] = ACTIONS(5052), + [sym__whitespace_ge_2] = ACTIONS(5052), + [aux_sym__whitespace_token1] = ACTIONS(5054), + [sym__word_no_digit] = ACTIONS(5052), + [sym__digits] = ACTIONS(5052), + [anon_sym_DASH_DASH] = ACTIONS(5054), + [anon_sym_DASH_DASH_DASH] = ACTIONS(5052), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5052), + [sym__code_span_start] = ACTIONS(5052), + [sym__emphasis_open_star] = ACTIONS(5052), + [sym__emphasis_open_underscore] = ACTIONS(5052), + [sym__strikeout_open] = ACTIONS(5052), + [sym__latex_span_start] = ACTIONS(5052), + [sym__single_quote_open] = ACTIONS(5052), + [sym__double_quote_open] = ACTIONS(5052), + [sym__superscript_open] = ACTIONS(5052), + [sym__subscript_open] = ACTIONS(5052), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5052), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5052), + [sym__cite_author_in_text] = ACTIONS(5052), + [sym__cite_suppress_author] = ACTIONS(5052), + [sym__shortcode_open_escaped] = ACTIONS(5052), + [sym__shortcode_open] = ACTIONS(5052), + [sym__unclosed_span] = ACTIONS(5052), + }, + [STATE(968)] = { + [sym__backslash_escape] = ACTIONS(4908), + [sym_entity_reference] = ACTIONS(4908), + [sym_numeric_character_reference] = ACTIONS(4908), + [anon_sym_LT] = ACTIONS(4910), + [anon_sym_GT] = ACTIONS(4908), + [anon_sym_BANG] = ACTIONS(4908), + [anon_sym_DQUOTE] = ACTIONS(4908), + [anon_sym_POUND] = ACTIONS(4908), + [anon_sym_DOLLAR] = ACTIONS(4908), + [anon_sym_PERCENT] = ACTIONS(4908), + [anon_sym_AMP] = ACTIONS(4910), + [anon_sym_SQUOTE] = ACTIONS(4908), + [anon_sym_STAR] = ACTIONS(4908), + [anon_sym_PLUS] = ACTIONS(4908), + [anon_sym_COMMA] = ACTIONS(4908), + [anon_sym_DASH] = ACTIONS(4910), + [anon_sym_DOT] = ACTIONS(4910), + [anon_sym_SLASH] = ACTIONS(4908), + [anon_sym_COLON] = ACTIONS(4908), + [anon_sym_SEMI] = ACTIONS(4908), + [anon_sym_EQ] = ACTIONS(4908), + [anon_sym_QMARK] = ACTIONS(4908), + [anon_sym_LBRACK] = ACTIONS(4910), + [anon_sym_BSLASH] = ACTIONS(4910), + [anon_sym_CARET] = ACTIONS(4910), + [anon_sym__] = ACTIONS(4908), + [anon_sym_BQUOTE] = ACTIONS(4908), + [anon_sym_LBRACE] = ACTIONS(4908), + [anon_sym_PIPE] = ACTIONS(4908), + [anon_sym_TILDE] = ACTIONS(4908), + [anon_sym_LPAREN] = ACTIONS(4908), + [anon_sym_RPAREN] = ACTIONS(4908), + [sym__newline_token] = ACTIONS(4908), + [aux_sym_insert_token1] = ACTIONS(4908), + [aux_sym_delete_token1] = ACTIONS(4908), + [aux_sym_highlight_token1] = ACTIONS(4908), + [aux_sym_edit_comment_token1] = ACTIONS(4908), + [anon_sym_CARET_LBRACK] = ACTIONS(4908), + [anon_sym_LBRACK_CARET] = ACTIONS(4908), + [sym_uri_autolink] = ACTIONS(4908), + [sym_email_autolink] = ACTIONS(4908), + [sym__whitespace_ge_2] = ACTIONS(4908), + [aux_sym__whitespace_token1] = ACTIONS(4910), + [sym__word_no_digit] = ACTIONS(4908), + [sym__digits] = ACTIONS(4908), + [anon_sym_DASH_DASH] = ACTIONS(4910), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4908), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4908), + [sym__code_span_start] = ACTIONS(4908), + [sym__emphasis_open_star] = ACTIONS(4908), + [sym__emphasis_open_underscore] = ACTIONS(4908), + [sym__emphasis_close_underscore] = ACTIONS(4908), + [sym__strikeout_open] = ACTIONS(4908), + [sym__latex_span_start] = ACTIONS(4908), + [sym__single_quote_open] = ACTIONS(4908), + [sym__double_quote_open] = ACTIONS(4908), + [sym__superscript_open] = ACTIONS(4908), + [sym__subscript_open] = ACTIONS(4908), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4908), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4908), + [sym__cite_author_in_text] = ACTIONS(4908), + [sym__cite_suppress_author] = ACTIONS(4908), + [sym__shortcode_open_escaped] = ACTIONS(4908), + [sym__shortcode_open] = ACTIONS(4908), + [sym__unclosed_span] = ACTIONS(4908), + }, + [STATE(969)] = { + [sym__backslash_escape] = ACTIONS(4690), + [sym_entity_reference] = ACTIONS(4690), + [sym_numeric_character_reference] = ACTIONS(4690), + [anon_sym_LT] = ACTIONS(4692), + [anon_sym_GT] = ACTIONS(4690), + [anon_sym_BANG] = ACTIONS(4690), + [anon_sym_DQUOTE] = ACTIONS(4690), + [anon_sym_POUND] = ACTIONS(4690), + [anon_sym_DOLLAR] = ACTIONS(4690), + [anon_sym_PERCENT] = ACTIONS(4690), + [anon_sym_AMP] = ACTIONS(4692), + [anon_sym_SQUOTE] = ACTIONS(4690), + [anon_sym_STAR] = ACTIONS(4690), + [anon_sym_PLUS] = ACTIONS(4690), + [anon_sym_COMMA] = ACTIONS(4690), + [anon_sym_DASH] = ACTIONS(4692), + [anon_sym_DOT] = ACTIONS(4692), + [anon_sym_SLASH] = ACTIONS(4690), + [anon_sym_COLON] = ACTIONS(4690), + [anon_sym_SEMI] = ACTIONS(4690), + [anon_sym_EQ] = ACTIONS(4690), + [anon_sym_QMARK] = ACTIONS(4690), + [anon_sym_LBRACK] = ACTIONS(4692), + [anon_sym_BSLASH] = ACTIONS(4692), + [anon_sym_RBRACK] = ACTIONS(4690), + [anon_sym_CARET] = ACTIONS(4692), + [anon_sym__] = ACTIONS(4690), + [anon_sym_BQUOTE] = ACTIONS(4690), + [anon_sym_LBRACE] = ACTIONS(4690), + [anon_sym_PIPE] = ACTIONS(4690), + [anon_sym_TILDE] = ACTIONS(4690), + [anon_sym_LPAREN] = ACTIONS(4690), + [anon_sym_RPAREN] = ACTIONS(4690), + [sym__newline_token] = ACTIONS(4690), + [aux_sym_insert_token1] = ACTIONS(4690), + [aux_sym_delete_token1] = ACTIONS(4690), + [aux_sym_highlight_token1] = ACTIONS(4690), + [aux_sym_edit_comment_token1] = ACTIONS(4690), + [anon_sym_CARET_LBRACK] = ACTIONS(4690), + [anon_sym_LBRACK_CARET] = ACTIONS(4690), + [sym_uri_autolink] = ACTIONS(4690), + [sym_email_autolink] = ACTIONS(4690), + [sym__whitespace_ge_2] = ACTIONS(4690), + [aux_sym__whitespace_token1] = ACTIONS(4692), + [sym__word_no_digit] = ACTIONS(4690), + [sym__digits] = ACTIONS(4690), + [anon_sym_DASH_DASH] = ACTIONS(4692), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4690), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4690), + [sym__code_span_start] = ACTIONS(4690), + [sym__emphasis_open_star] = ACTIONS(4690), + [sym__emphasis_open_underscore] = ACTIONS(4690), + [sym__strikeout_open] = ACTIONS(4690), + [sym__latex_span_start] = ACTIONS(4690), + [sym__single_quote_open] = ACTIONS(4690), + [sym__double_quote_open] = ACTIONS(4690), + [sym__superscript_open] = ACTIONS(4690), + [sym__subscript_open] = ACTIONS(4690), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4690), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4690), + [sym__cite_author_in_text] = ACTIONS(4690), + [sym__cite_suppress_author] = ACTIONS(4690), + [sym__shortcode_open_escaped] = ACTIONS(4690), + [sym__shortcode_open] = ACTIONS(4690), + [sym__unclosed_span] = ACTIONS(4690), + }, + [STATE(970)] = { + [sym__backslash_escape] = ACTIONS(4550), + [sym_entity_reference] = ACTIONS(4550), + [sym_numeric_character_reference] = ACTIONS(4550), + [anon_sym_LT] = ACTIONS(4552), + [anon_sym_GT] = ACTIONS(4550), + [anon_sym_BANG] = ACTIONS(4550), + [anon_sym_DQUOTE] = ACTIONS(4550), + [anon_sym_POUND] = ACTIONS(4550), + [anon_sym_DOLLAR] = ACTIONS(4550), + [anon_sym_PERCENT] = ACTIONS(4550), + [anon_sym_AMP] = ACTIONS(4552), + [anon_sym_SQUOTE] = ACTIONS(4550), + [anon_sym_STAR] = ACTIONS(4550), + [anon_sym_PLUS] = ACTIONS(4550), + [anon_sym_COMMA] = ACTIONS(4550), + [anon_sym_DASH] = ACTIONS(4552), + [anon_sym_DOT] = ACTIONS(4552), + [anon_sym_SLASH] = ACTIONS(4550), + [anon_sym_COLON] = ACTIONS(4550), + [anon_sym_SEMI] = ACTIONS(4550), + [anon_sym_EQ] = ACTIONS(4550), + [anon_sym_QMARK] = ACTIONS(4550), + [anon_sym_LBRACK] = ACTIONS(4552), + [anon_sym_BSLASH] = ACTIONS(4552), + [anon_sym_CARET] = ACTIONS(4552), + [anon_sym__] = ACTIONS(4550), + [anon_sym_BQUOTE] = ACTIONS(4550), + [anon_sym_LBRACE] = ACTIONS(4550), + [anon_sym_PIPE] = ACTIONS(4550), + [anon_sym_TILDE] = ACTIONS(4550), + [anon_sym_LPAREN] = ACTIONS(4550), + [anon_sym_RPAREN] = ACTIONS(4550), + [sym__newline_token] = ACTIONS(4550), + [aux_sym_insert_token1] = ACTIONS(4550), + [aux_sym_delete_token1] = ACTIONS(4550), + [aux_sym_highlight_token1] = ACTIONS(4550), + [aux_sym_edit_comment_token1] = ACTIONS(4550), + [anon_sym_CARET_LBRACK] = ACTIONS(4550), + [anon_sym_LBRACK_CARET] = ACTIONS(4550), + [sym_uri_autolink] = ACTIONS(4550), + [sym_email_autolink] = ACTIONS(4550), + [sym__whitespace_ge_2] = ACTIONS(4550), + [aux_sym__whitespace_token1] = ACTIONS(4552), + [sym__word_no_digit] = ACTIONS(4550), + [sym__digits] = ACTIONS(4550), + [anon_sym_DASH_DASH] = ACTIONS(4552), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4550), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4550), + [sym__code_span_start] = ACTIONS(4550), + [sym__emphasis_open_star] = ACTIONS(4550), + [sym__emphasis_open_underscore] = ACTIONS(4550), + [sym__emphasis_close_underscore] = ACTIONS(4550), + [sym__strikeout_open] = ACTIONS(4550), + [sym__latex_span_start] = ACTIONS(4550), + [sym__single_quote_open] = ACTIONS(4550), + [sym__double_quote_open] = ACTIONS(4550), + [sym__superscript_open] = ACTIONS(4550), + [sym__subscript_open] = ACTIONS(4550), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4550), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4550), + [sym__cite_author_in_text] = ACTIONS(4550), + [sym__cite_suppress_author] = ACTIONS(4550), + [sym__shortcode_open_escaped] = ACTIONS(4550), + [sym__shortcode_open] = ACTIONS(4550), + [sym__unclosed_span] = ACTIONS(4550), + }, + [STATE(971)] = { + [sym__backslash_escape] = ACTIONS(5056), + [sym_entity_reference] = ACTIONS(5056), + [sym_numeric_character_reference] = ACTIONS(5056), + [anon_sym_LT] = ACTIONS(5058), + [anon_sym_GT] = ACTIONS(5056), + [anon_sym_BANG] = ACTIONS(5056), + [anon_sym_DQUOTE] = ACTIONS(5056), + [anon_sym_POUND] = ACTIONS(5056), + [anon_sym_DOLLAR] = ACTIONS(5056), + [anon_sym_PERCENT] = ACTIONS(5056), + [anon_sym_AMP] = ACTIONS(5058), + [anon_sym_SQUOTE] = ACTIONS(5056), + [anon_sym_STAR] = ACTIONS(5056), + [anon_sym_PLUS] = ACTIONS(5056), + [anon_sym_COMMA] = ACTIONS(5056), + [anon_sym_DASH] = ACTIONS(5058), + [anon_sym_DOT] = ACTIONS(5058), + [anon_sym_SLASH] = ACTIONS(5056), + [anon_sym_COLON] = ACTIONS(5056), + [anon_sym_SEMI] = ACTIONS(5056), + [anon_sym_EQ] = ACTIONS(5056), + [anon_sym_QMARK] = ACTIONS(5056), + [anon_sym_LBRACK] = ACTIONS(5058), + [anon_sym_BSLASH] = ACTIONS(5058), + [anon_sym_RBRACK] = ACTIONS(5056), + [anon_sym_CARET] = ACTIONS(5058), + [anon_sym__] = ACTIONS(5056), + [anon_sym_BQUOTE] = ACTIONS(5056), + [anon_sym_LBRACE] = ACTIONS(5056), + [anon_sym_PIPE] = ACTIONS(5056), + [anon_sym_TILDE] = ACTIONS(5056), + [anon_sym_LPAREN] = ACTIONS(5056), + [anon_sym_RPAREN] = ACTIONS(5056), + [sym__newline_token] = ACTIONS(5056), + [aux_sym_insert_token1] = ACTIONS(5056), + [aux_sym_delete_token1] = ACTIONS(5056), + [aux_sym_highlight_token1] = ACTIONS(5056), + [aux_sym_edit_comment_token1] = ACTIONS(5056), + [anon_sym_CARET_LBRACK] = ACTIONS(5056), + [anon_sym_LBRACK_CARET] = ACTIONS(5056), + [sym_uri_autolink] = ACTIONS(5056), + [sym_email_autolink] = ACTIONS(5056), + [sym__whitespace_ge_2] = ACTIONS(5056), + [aux_sym__whitespace_token1] = ACTIONS(5058), + [sym__word_no_digit] = ACTIONS(5056), + [sym__digits] = ACTIONS(5056), + [anon_sym_DASH_DASH] = ACTIONS(5058), + [anon_sym_DASH_DASH_DASH] = ACTIONS(5056), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5056), + [sym__code_span_start] = ACTIONS(5056), + [sym__emphasis_open_star] = ACTIONS(5056), + [sym__emphasis_open_underscore] = ACTIONS(5056), + [sym__strikeout_open] = ACTIONS(5056), + [sym__latex_span_start] = ACTIONS(5056), + [sym__single_quote_open] = ACTIONS(5056), + [sym__double_quote_open] = ACTIONS(5056), + [sym__superscript_open] = ACTIONS(5056), + [sym__subscript_open] = ACTIONS(5056), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5056), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5056), + [sym__cite_author_in_text] = ACTIONS(5056), + [sym__cite_suppress_author] = ACTIONS(5056), + [sym__shortcode_open_escaped] = ACTIONS(5056), + [sym__shortcode_open] = ACTIONS(5056), + [sym__unclosed_span] = ACTIONS(5056), + }, + [STATE(972)] = { + [sym__backslash_escape] = ACTIONS(4976), + [sym_entity_reference] = ACTIONS(4976), + [sym_numeric_character_reference] = ACTIONS(4976), + [anon_sym_LT] = ACTIONS(4978), + [anon_sym_GT] = ACTIONS(4976), + [anon_sym_BANG] = ACTIONS(4976), + [anon_sym_DQUOTE] = ACTIONS(4976), + [anon_sym_POUND] = ACTIONS(4976), + [anon_sym_DOLLAR] = ACTIONS(4976), + [anon_sym_PERCENT] = ACTIONS(4976), + [anon_sym_AMP] = ACTIONS(4978), + [anon_sym_SQUOTE] = ACTIONS(4976), + [anon_sym_STAR] = ACTIONS(4976), + [anon_sym_PLUS] = ACTIONS(4976), + [anon_sym_COMMA] = ACTIONS(4976), + [anon_sym_DASH] = ACTIONS(4978), + [anon_sym_DOT] = ACTIONS(4978), + [anon_sym_SLASH] = ACTIONS(4976), + [anon_sym_COLON] = ACTIONS(4976), + [anon_sym_SEMI] = ACTIONS(4976), + [anon_sym_EQ] = ACTIONS(4976), + [anon_sym_QMARK] = ACTIONS(4976), + [anon_sym_LBRACK] = ACTIONS(4978), + [anon_sym_BSLASH] = ACTIONS(4978), + [anon_sym_CARET] = ACTIONS(4978), + [anon_sym__] = ACTIONS(4976), + [anon_sym_BQUOTE] = ACTIONS(4976), + [anon_sym_LBRACE] = ACTIONS(4976), + [anon_sym_PIPE] = ACTIONS(4976), + [anon_sym_TILDE] = ACTIONS(4976), + [anon_sym_LPAREN] = ACTIONS(4976), + [anon_sym_RPAREN] = ACTIONS(4976), + [sym__newline_token] = ACTIONS(4976), + [aux_sym_insert_token1] = ACTIONS(4976), + [aux_sym_delete_token1] = ACTIONS(4976), + [aux_sym_highlight_token1] = ACTIONS(4976), + [aux_sym_edit_comment_token1] = ACTIONS(4976), + [anon_sym_CARET_LBRACK] = ACTIONS(4976), + [anon_sym_LBRACK_CARET] = ACTIONS(4976), + [sym_uri_autolink] = ACTIONS(4976), + [sym_email_autolink] = ACTIONS(4976), + [sym__whitespace_ge_2] = ACTIONS(4976), + [aux_sym__whitespace_token1] = ACTIONS(4978), + [sym__word_no_digit] = ACTIONS(4976), + [sym__digits] = ACTIONS(4976), + [anon_sym_DASH_DASH] = ACTIONS(4978), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4976), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4976), + [sym__code_span_start] = ACTIONS(4976), + [sym__emphasis_open_star] = ACTIONS(4976), + [sym__emphasis_open_underscore] = ACTIONS(4976), + [sym__strikeout_open] = ACTIONS(4976), + [sym__latex_span_start] = ACTIONS(4976), + [sym__single_quote_open] = ACTIONS(4976), + [sym__single_quote_close] = ACTIONS(4976), + [sym__double_quote_open] = ACTIONS(4976), + [sym__superscript_open] = ACTIONS(4976), + [sym__subscript_open] = ACTIONS(4976), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4976), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4976), + [sym__cite_author_in_text] = ACTIONS(4976), + [sym__cite_suppress_author] = ACTIONS(4976), + [sym__shortcode_open_escaped] = ACTIONS(4976), + [sym__shortcode_open] = ACTIONS(4976), + [sym__unclosed_span] = ACTIONS(4976), + }, + [STATE(973)] = { + [sym__backslash_escape] = ACTIONS(4980), + [sym_entity_reference] = ACTIONS(4980), + [sym_numeric_character_reference] = ACTIONS(4980), + [anon_sym_LT] = ACTIONS(4982), + [anon_sym_GT] = ACTIONS(4980), + [anon_sym_BANG] = ACTIONS(4980), + [anon_sym_DQUOTE] = ACTIONS(4980), + [anon_sym_POUND] = ACTIONS(4980), + [anon_sym_DOLLAR] = ACTIONS(4980), + [anon_sym_PERCENT] = ACTIONS(4980), + [anon_sym_AMP] = ACTIONS(4982), + [anon_sym_SQUOTE] = ACTIONS(4980), + [anon_sym_STAR] = ACTIONS(4980), + [anon_sym_PLUS] = ACTIONS(4980), + [anon_sym_COMMA] = ACTIONS(4980), + [anon_sym_DASH] = ACTIONS(4982), + [anon_sym_DOT] = ACTIONS(4982), + [anon_sym_SLASH] = ACTIONS(4980), + [anon_sym_COLON] = ACTIONS(4980), + [anon_sym_SEMI] = ACTIONS(4980), + [anon_sym_EQ] = ACTIONS(4980), + [anon_sym_QMARK] = ACTIONS(4980), + [anon_sym_LBRACK] = ACTIONS(4982), + [anon_sym_BSLASH] = ACTIONS(4982), + [anon_sym_CARET] = ACTIONS(4982), + [anon_sym__] = ACTIONS(4980), + [anon_sym_BQUOTE] = ACTIONS(4980), + [anon_sym_LBRACE] = ACTIONS(4980), + [anon_sym_PIPE] = ACTIONS(4980), + [anon_sym_TILDE] = ACTIONS(4980), + [anon_sym_LPAREN] = ACTIONS(4980), + [anon_sym_RPAREN] = ACTIONS(4980), + [sym__newline_token] = ACTIONS(4980), + [aux_sym_insert_token1] = ACTIONS(4980), + [aux_sym_delete_token1] = ACTIONS(4980), + [aux_sym_highlight_token1] = ACTIONS(4980), + [aux_sym_edit_comment_token1] = ACTIONS(4980), + [anon_sym_CARET_LBRACK] = ACTIONS(4980), + [anon_sym_LBRACK_CARET] = ACTIONS(4980), + [sym_uri_autolink] = ACTIONS(4980), + [sym_email_autolink] = ACTIONS(4980), + [sym__whitespace_ge_2] = ACTIONS(4980), + [aux_sym__whitespace_token1] = ACTIONS(4982), + [sym__word_no_digit] = ACTIONS(4980), + [sym__digits] = ACTIONS(4980), + [anon_sym_DASH_DASH] = ACTIONS(4982), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4980), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4980), + [sym__code_span_start] = ACTIONS(4980), + [sym__emphasis_open_star] = ACTIONS(4980), + [sym__emphasis_open_underscore] = ACTIONS(4980), + [sym__strikeout_open] = ACTIONS(4980), + [sym__latex_span_start] = ACTIONS(4980), + [sym__single_quote_open] = ACTIONS(4980), + [sym__single_quote_close] = ACTIONS(4980), + [sym__double_quote_open] = ACTIONS(4980), + [sym__superscript_open] = ACTIONS(4980), + [sym__subscript_open] = ACTIONS(4980), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4980), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4980), + [sym__cite_author_in_text] = ACTIONS(4980), + [sym__cite_suppress_author] = ACTIONS(4980), + [sym__shortcode_open_escaped] = ACTIONS(4980), + [sym__shortcode_open] = ACTIONS(4980), + [sym__unclosed_span] = ACTIONS(4980), + }, + [STATE(974)] = { + [sym__backslash_escape] = ACTIONS(4820), + [sym_entity_reference] = ACTIONS(4820), + [sym_numeric_character_reference] = ACTIONS(4820), + [anon_sym_LT] = ACTIONS(4822), + [anon_sym_GT] = ACTIONS(4820), + [anon_sym_BANG] = ACTIONS(4820), + [anon_sym_DQUOTE] = ACTIONS(4820), + [anon_sym_POUND] = ACTIONS(4820), + [anon_sym_DOLLAR] = ACTIONS(4820), + [anon_sym_PERCENT] = ACTIONS(4820), + [anon_sym_AMP] = ACTIONS(4822), + [anon_sym_SQUOTE] = ACTIONS(4820), + [anon_sym_STAR] = ACTIONS(4820), + [anon_sym_PLUS] = ACTIONS(4820), + [anon_sym_COMMA] = ACTIONS(4820), + [anon_sym_DASH] = ACTIONS(4822), + [anon_sym_DOT] = ACTIONS(4822), + [anon_sym_SLASH] = ACTIONS(4820), + [anon_sym_COLON] = ACTIONS(4820), + [anon_sym_SEMI] = ACTIONS(4820), + [anon_sym_EQ] = ACTIONS(4820), + [anon_sym_QMARK] = ACTIONS(4820), + [anon_sym_LBRACK] = ACTIONS(4822), + [anon_sym_BSLASH] = ACTIONS(4822), + [anon_sym_RBRACK] = ACTIONS(4820), + [anon_sym_CARET] = ACTIONS(4822), + [anon_sym__] = ACTIONS(4820), + [anon_sym_BQUOTE] = ACTIONS(4820), + [anon_sym_LBRACE] = ACTIONS(4820), + [anon_sym_PIPE] = ACTIONS(4820), + [anon_sym_TILDE] = ACTIONS(4820), + [anon_sym_LPAREN] = ACTIONS(4820), + [anon_sym_RPAREN] = ACTIONS(4820), + [sym__newline_token] = ACTIONS(4820), + [aux_sym_insert_token1] = ACTIONS(4820), + [aux_sym_delete_token1] = ACTIONS(4820), + [aux_sym_highlight_token1] = ACTIONS(4820), + [aux_sym_edit_comment_token1] = ACTIONS(4820), + [anon_sym_CARET_LBRACK] = ACTIONS(4820), + [anon_sym_LBRACK_CARET] = ACTIONS(4820), + [sym_uri_autolink] = ACTIONS(4820), + [sym_email_autolink] = ACTIONS(4820), + [sym__whitespace_ge_2] = ACTIONS(4820), + [aux_sym__whitespace_token1] = ACTIONS(4822), + [sym__word_no_digit] = ACTIONS(4820), + [sym__digits] = ACTIONS(4820), + [anon_sym_DASH_DASH] = ACTIONS(4822), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4820), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4820), + [sym__code_span_start] = ACTIONS(4820), + [sym__emphasis_open_star] = ACTIONS(4820), + [sym__emphasis_open_underscore] = ACTIONS(4820), + [sym__strikeout_open] = ACTIONS(4820), + [sym__latex_span_start] = ACTIONS(4820), + [sym__single_quote_open] = ACTIONS(4820), + [sym__double_quote_open] = ACTIONS(4820), + [sym__superscript_open] = ACTIONS(4820), + [sym__subscript_open] = ACTIONS(4820), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4820), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4820), + [sym__cite_author_in_text] = ACTIONS(4820), + [sym__cite_suppress_author] = ACTIONS(4820), + [sym__shortcode_open_escaped] = ACTIONS(4820), + [sym__shortcode_open] = ACTIONS(4820), + [sym__unclosed_span] = ACTIONS(4820), + }, + [STATE(975)] = { + [sym__backslash_escape] = ACTIONS(4824), + [sym_entity_reference] = ACTIONS(4824), + [sym_numeric_character_reference] = ACTIONS(4824), + [anon_sym_LT] = ACTIONS(4826), + [anon_sym_GT] = ACTIONS(4824), + [anon_sym_BANG] = ACTIONS(4824), + [anon_sym_DQUOTE] = ACTIONS(4824), + [anon_sym_POUND] = ACTIONS(4824), + [anon_sym_DOLLAR] = ACTIONS(4824), + [anon_sym_PERCENT] = ACTIONS(4824), + [anon_sym_AMP] = ACTIONS(4826), + [anon_sym_SQUOTE] = ACTIONS(4824), + [anon_sym_STAR] = ACTIONS(4824), + [anon_sym_PLUS] = ACTIONS(4824), + [anon_sym_COMMA] = ACTIONS(4824), + [anon_sym_DASH] = ACTIONS(4826), + [anon_sym_DOT] = ACTIONS(4826), + [anon_sym_SLASH] = ACTIONS(4824), + [anon_sym_COLON] = ACTIONS(4824), + [anon_sym_SEMI] = ACTIONS(4824), + [anon_sym_EQ] = ACTIONS(4824), + [anon_sym_QMARK] = ACTIONS(4824), + [anon_sym_LBRACK] = ACTIONS(4826), + [anon_sym_BSLASH] = ACTIONS(4826), + [anon_sym_CARET] = ACTIONS(4826), + [anon_sym__] = ACTIONS(4824), + [anon_sym_BQUOTE] = ACTIONS(4824), + [anon_sym_LBRACE] = ACTIONS(4824), + [anon_sym_PIPE] = ACTIONS(4824), + [anon_sym_TILDE] = ACTIONS(4824), + [anon_sym_LPAREN] = ACTIONS(4824), + [anon_sym_RPAREN] = ACTIONS(4824), + [sym__newline_token] = ACTIONS(4824), + [aux_sym_insert_token1] = ACTIONS(4824), + [aux_sym_insert_token2] = ACTIONS(4824), + [aux_sym_delete_token1] = ACTIONS(4824), + [aux_sym_highlight_token1] = ACTIONS(4824), + [aux_sym_edit_comment_token1] = ACTIONS(4824), + [anon_sym_CARET_LBRACK] = ACTIONS(4824), + [anon_sym_LBRACK_CARET] = ACTIONS(4824), + [sym_uri_autolink] = ACTIONS(4824), + [sym_email_autolink] = ACTIONS(4824), + [sym__whitespace_ge_2] = ACTIONS(4826), + [aux_sym__whitespace_token1] = ACTIONS(4826), + [sym__word_no_digit] = ACTIONS(4824), + [sym__digits] = ACTIONS(4824), + [anon_sym_DASH_DASH] = ACTIONS(4826), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4824), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4824), + [sym__code_span_start] = ACTIONS(4824), + [sym__emphasis_open_star] = ACTIONS(4824), + [sym__emphasis_open_underscore] = ACTIONS(4824), + [sym__strikeout_open] = ACTIONS(4824), + [sym__latex_span_start] = ACTIONS(4824), + [sym__single_quote_open] = ACTIONS(4824), + [sym__double_quote_open] = ACTIONS(4824), + [sym__superscript_open] = ACTIONS(4824), + [sym__subscript_open] = ACTIONS(4824), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4824), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4824), + [sym__cite_author_in_text] = ACTIONS(4824), + [sym__cite_suppress_author] = ACTIONS(4824), + [sym__shortcode_open_escaped] = ACTIONS(4824), + [sym__shortcode_open] = ACTIONS(4824), + [sym__unclosed_span] = ACTIONS(4824), + }, + [STATE(976)] = { + [sym__backslash_escape] = ACTIONS(4828), + [sym_entity_reference] = ACTIONS(4828), + [sym_numeric_character_reference] = ACTIONS(4828), + [anon_sym_LT] = ACTIONS(4830), + [anon_sym_GT] = ACTIONS(4828), + [anon_sym_BANG] = ACTIONS(4828), + [anon_sym_DQUOTE] = ACTIONS(4828), + [anon_sym_POUND] = ACTIONS(4828), + [anon_sym_DOLLAR] = ACTIONS(4828), + [anon_sym_PERCENT] = ACTIONS(4828), + [anon_sym_AMP] = ACTIONS(4830), + [anon_sym_SQUOTE] = ACTIONS(4828), + [anon_sym_STAR] = ACTIONS(4828), + [anon_sym_PLUS] = ACTIONS(4828), + [anon_sym_COMMA] = ACTIONS(4828), + [anon_sym_DASH] = ACTIONS(4830), + [anon_sym_DOT] = ACTIONS(4830), + [anon_sym_SLASH] = ACTIONS(4828), + [anon_sym_COLON] = ACTIONS(4828), + [anon_sym_SEMI] = ACTIONS(4828), + [anon_sym_EQ] = ACTIONS(4828), + [anon_sym_QMARK] = ACTIONS(4828), + [anon_sym_LBRACK] = ACTIONS(4830), + [anon_sym_BSLASH] = ACTIONS(4830), + [anon_sym_CARET] = ACTIONS(4830), + [anon_sym__] = ACTIONS(4828), + [anon_sym_BQUOTE] = ACTIONS(4828), + [anon_sym_LBRACE] = ACTIONS(4828), + [anon_sym_PIPE] = ACTIONS(4828), + [anon_sym_TILDE] = ACTIONS(4828), + [anon_sym_LPAREN] = ACTIONS(4828), + [anon_sym_RPAREN] = ACTIONS(4828), + [sym__newline_token] = ACTIONS(4828), + [aux_sym_insert_token1] = ACTIONS(4828), + [aux_sym_insert_token2] = ACTIONS(4828), + [aux_sym_delete_token1] = ACTIONS(4828), + [aux_sym_highlight_token1] = ACTIONS(4828), + [aux_sym_edit_comment_token1] = ACTIONS(4828), + [anon_sym_CARET_LBRACK] = ACTIONS(4828), + [anon_sym_LBRACK_CARET] = ACTIONS(4828), + [sym_uri_autolink] = ACTIONS(4828), + [sym_email_autolink] = ACTIONS(4828), + [sym__whitespace_ge_2] = ACTIONS(4830), + [aux_sym__whitespace_token1] = ACTIONS(4830), + [sym__word_no_digit] = ACTIONS(4828), + [sym__digits] = ACTIONS(4828), + [anon_sym_DASH_DASH] = ACTIONS(4830), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4828), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4828), + [sym__code_span_start] = ACTIONS(4828), + [sym__emphasis_open_star] = ACTIONS(4828), + [sym__emphasis_open_underscore] = ACTIONS(4828), + [sym__strikeout_open] = ACTIONS(4828), + [sym__latex_span_start] = ACTIONS(4828), + [sym__single_quote_open] = ACTIONS(4828), + [sym__double_quote_open] = ACTIONS(4828), + [sym__superscript_open] = ACTIONS(4828), + [sym__subscript_open] = ACTIONS(4828), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4828), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4828), + [sym__cite_author_in_text] = ACTIONS(4828), + [sym__cite_suppress_author] = ACTIONS(4828), + [sym__shortcode_open_escaped] = ACTIONS(4828), + [sym__shortcode_open] = ACTIONS(4828), + [sym__unclosed_span] = ACTIONS(4828), + }, + [STATE(977)] = { + [sym__backslash_escape] = ACTIONS(4832), + [sym_entity_reference] = ACTIONS(4832), + [sym_numeric_character_reference] = ACTIONS(4832), + [anon_sym_LT] = ACTIONS(4834), + [anon_sym_GT] = ACTIONS(4832), + [anon_sym_BANG] = ACTIONS(4832), + [anon_sym_DQUOTE] = ACTIONS(4832), + [anon_sym_POUND] = ACTIONS(4832), + [anon_sym_DOLLAR] = ACTIONS(4832), + [anon_sym_PERCENT] = ACTIONS(4832), + [anon_sym_AMP] = ACTIONS(4834), + [anon_sym_SQUOTE] = ACTIONS(4832), + [anon_sym_STAR] = ACTIONS(4832), + [anon_sym_PLUS] = ACTIONS(4832), + [anon_sym_COMMA] = ACTIONS(4832), + [anon_sym_DASH] = ACTIONS(4834), + [anon_sym_DOT] = ACTIONS(4834), + [anon_sym_SLASH] = ACTIONS(4832), + [anon_sym_COLON] = ACTIONS(4832), + [anon_sym_SEMI] = ACTIONS(4832), + [anon_sym_EQ] = ACTIONS(4832), + [anon_sym_QMARK] = ACTIONS(4832), + [anon_sym_LBRACK] = ACTIONS(4834), + [anon_sym_BSLASH] = ACTIONS(4834), + [anon_sym_RBRACK] = ACTIONS(4832), + [anon_sym_CARET] = ACTIONS(4834), + [anon_sym__] = ACTIONS(4832), + [anon_sym_BQUOTE] = ACTIONS(4832), + [anon_sym_LBRACE] = ACTIONS(4832), + [anon_sym_PIPE] = ACTIONS(4832), + [anon_sym_TILDE] = ACTIONS(4832), + [anon_sym_LPAREN] = ACTIONS(4832), + [anon_sym_RPAREN] = ACTIONS(4832), + [sym__newline_token] = ACTIONS(4832), + [aux_sym_insert_token1] = ACTIONS(4832), + [aux_sym_delete_token1] = ACTIONS(4832), + [aux_sym_highlight_token1] = ACTIONS(4832), + [aux_sym_edit_comment_token1] = ACTIONS(4832), + [anon_sym_CARET_LBRACK] = ACTIONS(4832), + [anon_sym_LBRACK_CARET] = ACTIONS(4832), + [sym_uri_autolink] = ACTIONS(4832), + [sym_email_autolink] = ACTIONS(4832), + [sym__whitespace_ge_2] = ACTIONS(4832), + [aux_sym__whitespace_token1] = ACTIONS(4834), + [sym__word_no_digit] = ACTIONS(4832), + [sym__digits] = ACTIONS(4832), + [anon_sym_DASH_DASH] = ACTIONS(4834), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4832), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4832), + [sym__code_span_start] = ACTIONS(4832), + [sym__emphasis_open_star] = ACTIONS(4832), + [sym__emphasis_open_underscore] = ACTIONS(4832), + [sym__strikeout_open] = ACTIONS(4832), + [sym__latex_span_start] = ACTIONS(4832), + [sym__single_quote_open] = ACTIONS(4832), + [sym__double_quote_open] = ACTIONS(4832), + [sym__superscript_open] = ACTIONS(4832), + [sym__subscript_open] = ACTIONS(4832), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4832), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4832), + [sym__cite_author_in_text] = ACTIONS(4832), + [sym__cite_suppress_author] = ACTIONS(4832), + [sym__shortcode_open_escaped] = ACTIONS(4832), + [sym__shortcode_open] = ACTIONS(4832), + [sym__unclosed_span] = ACTIONS(4832), + }, + [STATE(978)] = { + [sym__backslash_escape] = ACTIONS(4836), + [sym_entity_reference] = ACTIONS(4836), + [sym_numeric_character_reference] = ACTIONS(4836), + [anon_sym_LT] = ACTIONS(4838), + [anon_sym_GT] = ACTIONS(4836), + [anon_sym_BANG] = ACTIONS(4836), + [anon_sym_DQUOTE] = ACTIONS(4836), + [anon_sym_POUND] = ACTIONS(4836), + [anon_sym_DOLLAR] = ACTIONS(4836), + [anon_sym_PERCENT] = ACTIONS(4836), + [anon_sym_AMP] = ACTIONS(4838), + [anon_sym_SQUOTE] = ACTIONS(4836), + [anon_sym_STAR] = ACTIONS(4836), + [anon_sym_PLUS] = ACTIONS(4836), + [anon_sym_COMMA] = ACTIONS(4836), + [anon_sym_DASH] = ACTIONS(4838), + [anon_sym_DOT] = ACTIONS(4838), + [anon_sym_SLASH] = ACTIONS(4836), + [anon_sym_COLON] = ACTIONS(4836), + [anon_sym_SEMI] = ACTIONS(4836), + [anon_sym_EQ] = ACTIONS(4836), + [anon_sym_QMARK] = ACTIONS(4836), + [anon_sym_LBRACK] = ACTIONS(4838), + [anon_sym_BSLASH] = ACTIONS(4838), + [anon_sym_RBRACK] = ACTIONS(4836), + [anon_sym_CARET] = ACTIONS(4838), + [anon_sym__] = ACTIONS(4836), + [anon_sym_BQUOTE] = ACTIONS(4836), + [anon_sym_LBRACE] = ACTIONS(4836), + [anon_sym_PIPE] = ACTIONS(4836), + [anon_sym_TILDE] = ACTIONS(4836), + [anon_sym_LPAREN] = ACTIONS(4836), + [anon_sym_RPAREN] = ACTIONS(4836), + [sym__newline_token] = ACTIONS(4836), + [aux_sym_insert_token1] = ACTIONS(4836), + [aux_sym_delete_token1] = ACTIONS(4836), + [aux_sym_highlight_token1] = ACTIONS(4836), + [aux_sym_edit_comment_token1] = ACTIONS(4836), + [anon_sym_CARET_LBRACK] = ACTIONS(4836), + [anon_sym_LBRACK_CARET] = ACTIONS(4836), + [sym_uri_autolink] = ACTIONS(4836), + [sym_email_autolink] = ACTIONS(4836), + [sym__whitespace_ge_2] = ACTIONS(4836), + [aux_sym__whitespace_token1] = ACTIONS(4838), + [sym__word_no_digit] = ACTIONS(4836), + [sym__digits] = ACTIONS(4836), + [anon_sym_DASH_DASH] = ACTIONS(4838), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4836), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4836), + [sym__code_span_start] = ACTIONS(4836), + [sym__emphasis_open_star] = ACTIONS(4836), + [sym__emphasis_open_underscore] = ACTIONS(4836), + [sym__strikeout_open] = ACTIONS(4836), + [sym__latex_span_start] = ACTIONS(4836), + [sym__single_quote_open] = ACTIONS(4836), + [sym__double_quote_open] = ACTIONS(4836), + [sym__superscript_open] = ACTIONS(4836), + [sym__subscript_open] = ACTIONS(4836), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4836), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4836), + [sym__cite_author_in_text] = ACTIONS(4836), + [sym__cite_suppress_author] = ACTIONS(4836), + [sym__shortcode_open_escaped] = ACTIONS(4836), + [sym__shortcode_open] = ACTIONS(4836), + [sym__unclosed_span] = ACTIONS(4836), + }, + [STATE(979)] = { + [sym__backslash_escape] = ACTIONS(4984), + [sym_entity_reference] = ACTIONS(4984), + [sym_numeric_character_reference] = ACTIONS(4984), + [anon_sym_LT] = ACTIONS(4986), + [anon_sym_GT] = ACTIONS(4984), + [anon_sym_BANG] = ACTIONS(4984), + [anon_sym_DQUOTE] = ACTIONS(4984), + [anon_sym_POUND] = ACTIONS(4984), + [anon_sym_DOLLAR] = ACTIONS(4984), + [anon_sym_PERCENT] = ACTIONS(4984), + [anon_sym_AMP] = ACTIONS(4986), + [anon_sym_SQUOTE] = ACTIONS(4984), + [anon_sym_STAR] = ACTIONS(4984), + [anon_sym_PLUS] = ACTIONS(4984), + [anon_sym_COMMA] = ACTIONS(4984), + [anon_sym_DASH] = ACTIONS(4986), + [anon_sym_DOT] = ACTIONS(4986), + [anon_sym_SLASH] = ACTIONS(4984), + [anon_sym_COLON] = ACTIONS(4984), + [anon_sym_SEMI] = ACTIONS(4984), + [anon_sym_EQ] = ACTIONS(4984), + [anon_sym_QMARK] = ACTIONS(4984), + [anon_sym_LBRACK] = ACTIONS(4986), + [anon_sym_BSLASH] = ACTIONS(4986), + [anon_sym_CARET] = ACTIONS(4986), + [anon_sym__] = ACTIONS(4984), + [anon_sym_BQUOTE] = ACTIONS(4984), + [anon_sym_LBRACE] = ACTIONS(4984), + [anon_sym_PIPE] = ACTIONS(4984), + [anon_sym_TILDE] = ACTIONS(4984), + [anon_sym_LPAREN] = ACTIONS(4984), + [anon_sym_RPAREN] = ACTIONS(4984), + [sym__newline_token] = ACTIONS(4984), + [aux_sym_insert_token1] = ACTIONS(4984), + [aux_sym_delete_token1] = ACTIONS(4984), + [aux_sym_highlight_token1] = ACTIONS(4984), + [aux_sym_edit_comment_token1] = ACTIONS(4984), + [anon_sym_CARET_LBRACK] = ACTIONS(4984), + [anon_sym_LBRACK_CARET] = ACTIONS(4984), + [sym_uri_autolink] = ACTIONS(4984), + [sym_email_autolink] = ACTIONS(4984), + [sym__whitespace_ge_2] = ACTIONS(4984), + [aux_sym__whitespace_token1] = ACTIONS(4986), + [sym__word_no_digit] = ACTIONS(4984), + [sym__digits] = ACTIONS(4984), + [anon_sym_DASH_DASH] = ACTIONS(4986), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4984), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4984), + [sym__code_span_start] = ACTIONS(4984), + [sym__emphasis_open_star] = ACTIONS(4984), + [sym__emphasis_open_underscore] = ACTIONS(4984), + [sym__strikeout_open] = ACTIONS(4984), + [sym__latex_span_start] = ACTIONS(4984), + [sym__single_quote_open] = ACTIONS(4984), + [sym__double_quote_open] = ACTIONS(4984), + [sym__superscript_open] = ACTIONS(4984), + [sym__superscript_close] = ACTIONS(4984), + [sym__subscript_open] = ACTIONS(4984), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4984), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4984), + [sym__cite_author_in_text] = ACTIONS(4984), + [sym__cite_suppress_author] = ACTIONS(4984), + [sym__shortcode_open_escaped] = ACTIONS(4984), + [sym__shortcode_open] = ACTIONS(4984), + [sym__unclosed_span] = ACTIONS(4984), + }, + [STATE(980)] = { + [sym__backslash_escape] = ACTIONS(4844), + [sym_entity_reference] = ACTIONS(4844), + [sym_numeric_character_reference] = ACTIONS(4844), + [anon_sym_LT] = ACTIONS(4846), + [anon_sym_GT] = ACTIONS(4844), + [anon_sym_BANG] = ACTIONS(4844), + [anon_sym_DQUOTE] = ACTIONS(4844), + [anon_sym_POUND] = ACTIONS(4844), + [anon_sym_DOLLAR] = ACTIONS(4844), + [anon_sym_PERCENT] = ACTIONS(4844), + [anon_sym_AMP] = ACTIONS(4846), + [anon_sym_SQUOTE] = ACTIONS(4844), + [anon_sym_STAR] = ACTIONS(4844), + [anon_sym_PLUS] = ACTIONS(4844), + [anon_sym_COMMA] = ACTIONS(4844), + [anon_sym_DASH] = ACTIONS(4846), + [anon_sym_DOT] = ACTIONS(4846), + [anon_sym_SLASH] = ACTIONS(4844), + [anon_sym_COLON] = ACTIONS(4844), + [anon_sym_SEMI] = ACTIONS(4844), + [anon_sym_EQ] = ACTIONS(4844), + [anon_sym_QMARK] = ACTIONS(4844), + [anon_sym_LBRACK] = ACTIONS(4846), + [anon_sym_BSLASH] = ACTIONS(4846), + [anon_sym_RBRACK] = ACTIONS(4844), + [anon_sym_CARET] = ACTIONS(4846), + [anon_sym__] = ACTIONS(4844), + [anon_sym_BQUOTE] = ACTIONS(4844), + [anon_sym_LBRACE] = ACTIONS(4844), + [anon_sym_PIPE] = ACTIONS(4844), + [anon_sym_TILDE] = ACTIONS(4844), + [anon_sym_LPAREN] = ACTIONS(4844), + [anon_sym_RPAREN] = ACTIONS(4844), + [sym__newline_token] = ACTIONS(4844), + [aux_sym_insert_token1] = ACTIONS(4844), + [aux_sym_delete_token1] = ACTIONS(4844), + [aux_sym_highlight_token1] = ACTIONS(4844), + [aux_sym_edit_comment_token1] = ACTIONS(4844), + [anon_sym_CARET_LBRACK] = ACTIONS(4844), + [anon_sym_LBRACK_CARET] = ACTIONS(4844), + [sym_uri_autolink] = ACTIONS(4844), + [sym_email_autolink] = ACTIONS(4844), + [sym__whitespace_ge_2] = ACTIONS(4844), + [aux_sym__whitespace_token1] = ACTIONS(4846), + [sym__word_no_digit] = ACTIONS(4844), + [sym__digits] = ACTIONS(4844), + [anon_sym_DASH_DASH] = ACTIONS(4846), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4844), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4844), + [sym__code_span_start] = ACTIONS(4844), + [sym__emphasis_open_star] = ACTIONS(4844), + [sym__emphasis_open_underscore] = ACTIONS(4844), + [sym__strikeout_open] = ACTIONS(4844), + [sym__latex_span_start] = ACTIONS(4844), + [sym__single_quote_open] = ACTIONS(4844), + [sym__double_quote_open] = ACTIONS(4844), + [sym__superscript_open] = ACTIONS(4844), + [sym__subscript_open] = ACTIONS(4844), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4844), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4844), + [sym__cite_author_in_text] = ACTIONS(4844), + [sym__cite_suppress_author] = ACTIONS(4844), + [sym__shortcode_open_escaped] = ACTIONS(4844), + [sym__shortcode_open] = ACTIONS(4844), + [sym__unclosed_span] = ACTIONS(4844), + }, + [STATE(981)] = { + [sym__backslash_escape] = ACTIONS(4848), + [sym_entity_reference] = ACTIONS(4848), + [sym_numeric_character_reference] = ACTIONS(4848), + [anon_sym_LT] = ACTIONS(4850), + [anon_sym_GT] = ACTIONS(4848), + [anon_sym_BANG] = ACTIONS(4848), + [anon_sym_DQUOTE] = ACTIONS(4848), + [anon_sym_POUND] = ACTIONS(4848), + [anon_sym_DOLLAR] = ACTIONS(4848), + [anon_sym_PERCENT] = ACTIONS(4848), + [anon_sym_AMP] = ACTIONS(4850), + [anon_sym_SQUOTE] = ACTIONS(4848), + [anon_sym_STAR] = ACTIONS(4848), + [anon_sym_PLUS] = ACTIONS(4848), + [anon_sym_COMMA] = ACTIONS(4848), + [anon_sym_DASH] = ACTIONS(4850), + [anon_sym_DOT] = ACTIONS(4850), + [anon_sym_SLASH] = ACTIONS(4848), + [anon_sym_COLON] = ACTIONS(4848), + [anon_sym_SEMI] = ACTIONS(4848), + [anon_sym_EQ] = ACTIONS(4848), + [anon_sym_QMARK] = ACTIONS(4848), + [anon_sym_LBRACK] = ACTIONS(4850), + [anon_sym_BSLASH] = ACTIONS(4850), + [anon_sym_CARET] = ACTIONS(4850), + [anon_sym__] = ACTIONS(4848), + [anon_sym_BQUOTE] = ACTIONS(4848), + [anon_sym_LBRACE] = ACTIONS(4848), + [anon_sym_PIPE] = ACTIONS(4848), + [anon_sym_TILDE] = ACTIONS(4848), + [anon_sym_LPAREN] = ACTIONS(4848), + [anon_sym_RPAREN] = ACTIONS(4848), + [sym__newline_token] = ACTIONS(4848), + [aux_sym_insert_token1] = ACTIONS(4848), + [aux_sym_insert_token2] = ACTIONS(4848), + [aux_sym_delete_token1] = ACTIONS(4848), + [aux_sym_highlight_token1] = ACTIONS(4848), + [aux_sym_edit_comment_token1] = ACTIONS(4848), + [anon_sym_CARET_LBRACK] = ACTIONS(4848), + [anon_sym_LBRACK_CARET] = ACTIONS(4848), + [sym_uri_autolink] = ACTIONS(4848), + [sym_email_autolink] = ACTIONS(4848), + [sym__whitespace_ge_2] = ACTIONS(4850), + [aux_sym__whitespace_token1] = ACTIONS(4850), + [sym__word_no_digit] = ACTIONS(4848), + [sym__digits] = ACTIONS(4848), + [anon_sym_DASH_DASH] = ACTIONS(4850), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4848), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4848), + [sym__code_span_start] = ACTIONS(4848), + [sym__emphasis_open_star] = ACTIONS(4848), + [sym__emphasis_open_underscore] = ACTIONS(4848), + [sym__strikeout_open] = ACTIONS(4848), + [sym__latex_span_start] = ACTIONS(4848), + [sym__single_quote_open] = ACTIONS(4848), + [sym__double_quote_open] = ACTIONS(4848), + [sym__superscript_open] = ACTIONS(4848), + [sym__subscript_open] = ACTIONS(4848), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4848), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4848), + [sym__cite_author_in_text] = ACTIONS(4848), + [sym__cite_suppress_author] = ACTIONS(4848), + [sym__shortcode_open_escaped] = ACTIONS(4848), + [sym__shortcode_open] = ACTIONS(4848), + [sym__unclosed_span] = ACTIONS(4848), + }, + [STATE(982)] = { + [sym__backslash_escape] = ACTIONS(4852), + [sym_entity_reference] = ACTIONS(4852), + [sym_numeric_character_reference] = ACTIONS(4852), + [anon_sym_LT] = ACTIONS(4854), + [anon_sym_GT] = ACTIONS(4852), + [anon_sym_BANG] = ACTIONS(4852), + [anon_sym_DQUOTE] = ACTIONS(4852), + [anon_sym_POUND] = ACTIONS(4852), + [anon_sym_DOLLAR] = ACTIONS(4852), + [anon_sym_PERCENT] = ACTIONS(4852), + [anon_sym_AMP] = ACTIONS(4854), + [anon_sym_SQUOTE] = ACTIONS(4852), + [anon_sym_STAR] = ACTIONS(4852), + [anon_sym_PLUS] = ACTIONS(4852), + [anon_sym_COMMA] = ACTIONS(4852), + [anon_sym_DASH] = ACTIONS(4854), + [anon_sym_DOT] = ACTIONS(4854), + [anon_sym_SLASH] = ACTIONS(4852), + [anon_sym_COLON] = ACTIONS(4852), + [anon_sym_SEMI] = ACTIONS(4852), + [anon_sym_EQ] = ACTIONS(4852), + [anon_sym_QMARK] = ACTIONS(4852), + [anon_sym_LBRACK] = ACTIONS(4854), + [anon_sym_BSLASH] = ACTIONS(4854), + [anon_sym_CARET] = ACTIONS(4854), + [anon_sym__] = ACTIONS(4852), + [anon_sym_BQUOTE] = ACTIONS(4852), + [anon_sym_LBRACE] = ACTIONS(4852), + [anon_sym_PIPE] = ACTIONS(4852), + [anon_sym_TILDE] = ACTIONS(4852), + [anon_sym_LPAREN] = ACTIONS(4852), + [anon_sym_RPAREN] = ACTIONS(4852), + [sym__newline_token] = ACTIONS(4852), + [aux_sym_insert_token1] = ACTIONS(4852), + [aux_sym_insert_token2] = ACTIONS(4852), + [aux_sym_delete_token1] = ACTIONS(4852), + [aux_sym_highlight_token1] = ACTIONS(4852), + [aux_sym_edit_comment_token1] = ACTIONS(4852), + [anon_sym_CARET_LBRACK] = ACTIONS(4852), + [anon_sym_LBRACK_CARET] = ACTIONS(4852), + [sym_uri_autolink] = ACTIONS(4852), + [sym_email_autolink] = ACTIONS(4852), + [sym__whitespace_ge_2] = ACTIONS(4854), + [aux_sym__whitespace_token1] = ACTIONS(4854), + [sym__word_no_digit] = ACTIONS(4852), + [sym__digits] = ACTIONS(4852), + [anon_sym_DASH_DASH] = ACTIONS(4854), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4852), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4852), + [sym__code_span_start] = ACTIONS(4852), + [sym__emphasis_open_star] = ACTIONS(4852), + [sym__emphasis_open_underscore] = ACTIONS(4852), + [sym__strikeout_open] = ACTIONS(4852), + [sym__latex_span_start] = ACTIONS(4852), + [sym__single_quote_open] = ACTIONS(4852), + [sym__double_quote_open] = ACTIONS(4852), + [sym__superscript_open] = ACTIONS(4852), + [sym__subscript_open] = ACTIONS(4852), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4852), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4852), + [sym__cite_author_in_text] = ACTIONS(4852), + [sym__cite_suppress_author] = ACTIONS(4852), + [sym__shortcode_open_escaped] = ACTIONS(4852), + [sym__shortcode_open] = ACTIONS(4852), + [sym__unclosed_span] = ACTIONS(4852), + }, + [STATE(983)] = { + [sym__backslash_escape] = ACTIONS(4566), + [sym_entity_reference] = ACTIONS(4566), + [sym_numeric_character_reference] = ACTIONS(4566), + [anon_sym_LT] = ACTIONS(4568), + [anon_sym_GT] = ACTIONS(4566), + [anon_sym_BANG] = ACTIONS(4566), + [anon_sym_DQUOTE] = ACTIONS(4566), + [anon_sym_POUND] = ACTIONS(4566), + [anon_sym_DOLLAR] = ACTIONS(4566), + [anon_sym_PERCENT] = ACTIONS(4566), + [anon_sym_AMP] = ACTIONS(4568), + [anon_sym_SQUOTE] = ACTIONS(4566), + [anon_sym_STAR] = ACTIONS(4566), + [anon_sym_PLUS] = ACTIONS(4566), + [anon_sym_COMMA] = ACTIONS(4566), + [anon_sym_DASH] = ACTIONS(4568), + [anon_sym_DOT] = ACTIONS(4568), + [anon_sym_SLASH] = ACTIONS(4566), + [anon_sym_COLON] = ACTIONS(4566), + [anon_sym_SEMI] = ACTIONS(4566), + [anon_sym_EQ] = ACTIONS(4566), + [anon_sym_QMARK] = ACTIONS(4566), + [anon_sym_LBRACK] = ACTIONS(4568), + [anon_sym_BSLASH] = ACTIONS(4568), + [anon_sym_CARET] = ACTIONS(4568), + [anon_sym__] = ACTIONS(4566), + [anon_sym_BQUOTE] = ACTIONS(4566), + [anon_sym_LBRACE] = ACTIONS(4566), + [anon_sym_PIPE] = ACTIONS(4566), + [anon_sym_TILDE] = ACTIONS(4566), + [anon_sym_LPAREN] = ACTIONS(4566), + [anon_sym_RPAREN] = ACTIONS(4566), + [sym__newline_token] = ACTIONS(4566), + [aux_sym_insert_token1] = ACTIONS(4566), + [aux_sym_insert_token2] = ACTIONS(4566), + [aux_sym_delete_token1] = ACTIONS(4566), + [aux_sym_highlight_token1] = ACTIONS(4566), + [aux_sym_edit_comment_token1] = ACTIONS(4566), + [anon_sym_CARET_LBRACK] = ACTIONS(4566), + [anon_sym_LBRACK_CARET] = ACTIONS(4566), + [sym_uri_autolink] = ACTIONS(4566), + [sym_email_autolink] = ACTIONS(4566), + [sym__whitespace_ge_2] = ACTIONS(4568), + [aux_sym__whitespace_token1] = ACTIONS(4568), + [sym__word_no_digit] = ACTIONS(4566), + [sym__digits] = ACTIONS(4566), + [anon_sym_DASH_DASH] = ACTIONS(4568), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4566), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4566), + [sym__code_span_start] = ACTIONS(4566), + [sym__emphasis_open_star] = ACTIONS(4566), + [sym__emphasis_open_underscore] = ACTIONS(4566), + [sym__strikeout_open] = ACTIONS(4566), + [sym__latex_span_start] = ACTIONS(4566), + [sym__single_quote_open] = ACTIONS(4566), + [sym__double_quote_open] = ACTIONS(4566), + [sym__superscript_open] = ACTIONS(4566), + [sym__subscript_open] = ACTIONS(4566), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4566), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4566), + [sym__cite_author_in_text] = ACTIONS(4566), + [sym__cite_suppress_author] = ACTIONS(4566), + [sym__shortcode_open_escaped] = ACTIONS(4566), + [sym__shortcode_open] = ACTIONS(4566), + [sym__unclosed_span] = ACTIONS(4566), + }, + [STATE(984)] = { + [sym__backslash_escape] = ACTIONS(5044), + [sym_entity_reference] = ACTIONS(5044), + [sym_numeric_character_reference] = ACTIONS(5044), + [anon_sym_LT] = ACTIONS(5046), + [anon_sym_GT] = ACTIONS(5044), + [anon_sym_BANG] = ACTIONS(5044), + [anon_sym_DQUOTE] = ACTIONS(5044), + [anon_sym_POUND] = ACTIONS(5044), + [anon_sym_DOLLAR] = ACTIONS(5044), + [anon_sym_PERCENT] = ACTIONS(5044), + [anon_sym_AMP] = ACTIONS(5046), + [anon_sym_SQUOTE] = ACTIONS(5044), + [anon_sym_STAR] = ACTIONS(5044), + [anon_sym_PLUS] = ACTIONS(5044), + [anon_sym_COMMA] = ACTIONS(5044), + [anon_sym_DASH] = ACTIONS(5046), + [anon_sym_DOT] = ACTIONS(5046), + [anon_sym_SLASH] = ACTIONS(5044), + [anon_sym_COLON] = ACTIONS(5044), + [anon_sym_SEMI] = ACTIONS(5044), + [anon_sym_EQ] = ACTIONS(5044), + [anon_sym_QMARK] = ACTIONS(5044), + [anon_sym_LBRACK] = ACTIONS(5046), + [anon_sym_BSLASH] = ACTIONS(5046), + [anon_sym_CARET] = ACTIONS(5046), + [anon_sym__] = ACTIONS(5044), + [anon_sym_BQUOTE] = ACTIONS(5044), + [anon_sym_LBRACE] = ACTIONS(5044), + [anon_sym_PIPE] = ACTIONS(5044), + [anon_sym_TILDE] = ACTIONS(5044), + [anon_sym_LPAREN] = ACTIONS(5044), + [anon_sym_RPAREN] = ACTIONS(5044), + [sym__newline_token] = ACTIONS(5044), + [aux_sym_insert_token1] = ACTIONS(5044), + [aux_sym_delete_token1] = ACTIONS(5044), + [aux_sym_highlight_token1] = ACTIONS(5044), + [aux_sym_edit_comment_token1] = ACTIONS(5044), + [anon_sym_CARET_LBRACK] = ACTIONS(5044), + [anon_sym_LBRACK_CARET] = ACTIONS(5044), + [sym_uri_autolink] = ACTIONS(5044), + [sym_email_autolink] = ACTIONS(5044), + [sym__whitespace_ge_2] = ACTIONS(5044), + [aux_sym__whitespace_token1] = ACTIONS(5046), + [sym__word_no_digit] = ACTIONS(5044), + [sym__digits] = ACTIONS(5044), + [anon_sym_DASH_DASH] = ACTIONS(5046), + [anon_sym_DASH_DASH_DASH] = ACTIONS(5044), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5044), + [sym__code_span_start] = ACTIONS(5044), + [sym__emphasis_open_star] = ACTIONS(5044), + [sym__emphasis_open_underscore] = ACTIONS(5044), + [sym__emphasis_close_underscore] = ACTIONS(5044), + [sym__strikeout_open] = ACTIONS(5044), + [sym__latex_span_start] = ACTIONS(5044), + [sym__single_quote_open] = ACTIONS(5044), + [sym__double_quote_open] = ACTIONS(5044), + [sym__superscript_open] = ACTIONS(5044), + [sym__subscript_open] = ACTIONS(5044), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5044), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5044), + [sym__cite_author_in_text] = ACTIONS(5044), + [sym__cite_suppress_author] = ACTIONS(5044), + [sym__shortcode_open_escaped] = ACTIONS(5044), + [sym__shortcode_open] = ACTIONS(5044), + [sym__unclosed_span] = ACTIONS(5044), + }, + [STATE(985)] = { + [sym__backslash_escape] = ACTIONS(4572), + [sym_entity_reference] = ACTIONS(4572), + [sym_numeric_character_reference] = ACTIONS(4572), + [anon_sym_LT] = ACTIONS(4574), + [anon_sym_GT] = ACTIONS(4572), + [anon_sym_BANG] = ACTIONS(4572), + [anon_sym_DQUOTE] = ACTIONS(4572), + [anon_sym_POUND] = ACTIONS(4572), + [anon_sym_DOLLAR] = ACTIONS(4572), + [anon_sym_PERCENT] = ACTIONS(4572), + [anon_sym_AMP] = ACTIONS(4574), + [anon_sym_SQUOTE] = ACTIONS(4572), + [anon_sym_STAR] = ACTIONS(4572), + [anon_sym_PLUS] = ACTIONS(4572), + [anon_sym_COMMA] = ACTIONS(4572), + [anon_sym_DASH] = ACTIONS(4574), + [anon_sym_DOT] = ACTIONS(4574), + [anon_sym_SLASH] = ACTIONS(4572), + [anon_sym_COLON] = ACTIONS(4572), + [anon_sym_SEMI] = ACTIONS(4572), + [anon_sym_EQ] = ACTIONS(4572), + [anon_sym_QMARK] = ACTIONS(4572), + [anon_sym_LBRACK] = ACTIONS(4574), + [anon_sym_BSLASH] = ACTIONS(4574), + [anon_sym_RBRACK] = ACTIONS(4572), + [anon_sym_CARET] = ACTIONS(4574), + [anon_sym__] = ACTIONS(4572), + [anon_sym_BQUOTE] = ACTIONS(4572), + [anon_sym_LBRACE] = ACTIONS(4572), + [anon_sym_PIPE] = ACTIONS(4572), + [anon_sym_TILDE] = ACTIONS(4572), + [anon_sym_LPAREN] = ACTIONS(4572), + [anon_sym_RPAREN] = ACTIONS(4572), + [sym__newline_token] = ACTIONS(4572), + [aux_sym_insert_token1] = ACTIONS(4572), + [aux_sym_delete_token1] = ACTIONS(4572), + [aux_sym_highlight_token1] = ACTIONS(4572), + [aux_sym_edit_comment_token1] = ACTIONS(4572), + [anon_sym_CARET_LBRACK] = ACTIONS(4572), + [anon_sym_LBRACK_CARET] = ACTIONS(4572), + [sym_uri_autolink] = ACTIONS(4572), + [sym_email_autolink] = ACTIONS(4572), + [sym__whitespace_ge_2] = ACTIONS(4572), + [aux_sym__whitespace_token1] = ACTIONS(4574), + [sym__word_no_digit] = ACTIONS(4572), + [sym__digits] = ACTIONS(4572), + [anon_sym_DASH_DASH] = ACTIONS(4574), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4572), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4572), + [sym__code_span_start] = ACTIONS(4572), + [sym__emphasis_open_star] = ACTIONS(4572), + [sym__emphasis_open_underscore] = ACTIONS(4572), + [sym__strikeout_open] = ACTIONS(4572), + [sym__latex_span_start] = ACTIONS(4572), + [sym__single_quote_open] = ACTIONS(4572), + [sym__double_quote_open] = ACTIONS(4572), + [sym__superscript_open] = ACTIONS(4572), + [sym__subscript_open] = ACTIONS(4572), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4572), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4572), + [sym__cite_author_in_text] = ACTIONS(4572), + [sym__cite_suppress_author] = ACTIONS(4572), + [sym__shortcode_open_escaped] = ACTIONS(4572), + [sym__shortcode_open] = ACTIONS(4572), + [sym__unclosed_span] = ACTIONS(4572), + }, + [STATE(986)] = { + [sym__backslash_escape] = ACTIONS(4554), + [sym_entity_reference] = ACTIONS(4554), + [sym_numeric_character_reference] = ACTIONS(4554), + [anon_sym_LT] = ACTIONS(4556), + [anon_sym_GT] = ACTIONS(4554), + [anon_sym_BANG] = ACTIONS(4554), + [anon_sym_DQUOTE] = ACTIONS(4554), + [anon_sym_POUND] = ACTIONS(4554), + [anon_sym_DOLLAR] = ACTIONS(4554), + [anon_sym_PERCENT] = ACTIONS(4554), + [anon_sym_AMP] = ACTIONS(4556), + [anon_sym_SQUOTE] = ACTIONS(4554), + [anon_sym_STAR] = ACTIONS(4554), + [anon_sym_PLUS] = ACTIONS(4554), + [anon_sym_COMMA] = ACTIONS(4554), + [anon_sym_DASH] = ACTIONS(4556), + [anon_sym_DOT] = ACTIONS(4556), + [anon_sym_SLASH] = ACTIONS(4554), + [anon_sym_COLON] = ACTIONS(4554), + [anon_sym_SEMI] = ACTIONS(4554), + [anon_sym_EQ] = ACTIONS(4554), + [anon_sym_QMARK] = ACTIONS(4554), + [anon_sym_LBRACK] = ACTIONS(4556), + [anon_sym_BSLASH] = ACTIONS(4556), + [anon_sym_CARET] = ACTIONS(4556), + [anon_sym__] = ACTIONS(4554), + [anon_sym_BQUOTE] = ACTIONS(4554), + [anon_sym_LBRACE] = ACTIONS(4554), + [anon_sym_PIPE] = ACTIONS(4554), + [anon_sym_TILDE] = ACTIONS(4554), + [anon_sym_LPAREN] = ACTIONS(4554), + [anon_sym_RPAREN] = ACTIONS(4554), + [sym__newline_token] = ACTIONS(4554), + [aux_sym_insert_token1] = ACTIONS(4554), + [aux_sym_delete_token1] = ACTIONS(4554), + [aux_sym_highlight_token1] = ACTIONS(4554), + [aux_sym_edit_comment_token1] = ACTIONS(4554), + [anon_sym_CARET_LBRACK] = ACTIONS(4554), + [anon_sym_LBRACK_CARET] = ACTIONS(4554), + [sym_uri_autolink] = ACTIONS(4554), + [sym_email_autolink] = ACTIONS(4554), + [sym__whitespace_ge_2] = ACTIONS(4554), + [aux_sym__whitespace_token1] = ACTIONS(4556), + [sym__word_no_digit] = ACTIONS(4554), + [sym__digits] = ACTIONS(4554), + [anon_sym_DASH_DASH] = ACTIONS(4556), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4554), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4554), + [sym__code_span_start] = ACTIONS(4554), + [sym__emphasis_open_star] = ACTIONS(4554), + [sym__emphasis_open_underscore] = ACTIONS(4554), + [sym__emphasis_close_underscore] = ACTIONS(4554), + [sym__strikeout_open] = ACTIONS(4554), + [sym__latex_span_start] = ACTIONS(4554), + [sym__single_quote_open] = ACTIONS(4554), + [sym__double_quote_open] = ACTIONS(4554), + [sym__superscript_open] = ACTIONS(4554), + [sym__subscript_open] = ACTIONS(4554), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4554), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4554), + [sym__cite_author_in_text] = ACTIONS(4554), + [sym__cite_suppress_author] = ACTIONS(4554), + [sym__shortcode_open_escaped] = ACTIONS(4554), + [sym__shortcode_open] = ACTIONS(4554), + [sym__unclosed_span] = ACTIONS(4554), + }, + [STATE(987)] = { + [sym__backslash_escape] = ACTIONS(4860), + [sym_entity_reference] = ACTIONS(4860), + [sym_numeric_character_reference] = ACTIONS(4860), + [anon_sym_LT] = ACTIONS(4862), + [anon_sym_GT] = ACTIONS(4860), + [anon_sym_BANG] = ACTIONS(4860), + [anon_sym_DQUOTE] = ACTIONS(4860), + [anon_sym_POUND] = ACTIONS(4860), + [anon_sym_DOLLAR] = ACTIONS(4860), + [anon_sym_PERCENT] = ACTIONS(4860), + [anon_sym_AMP] = ACTIONS(4862), + [anon_sym_SQUOTE] = ACTIONS(4860), + [anon_sym_STAR] = ACTIONS(4860), + [anon_sym_PLUS] = ACTIONS(4860), + [anon_sym_COMMA] = ACTIONS(4860), + [anon_sym_DASH] = ACTIONS(4862), + [anon_sym_DOT] = ACTIONS(4862), + [anon_sym_SLASH] = ACTIONS(4860), + [anon_sym_COLON] = ACTIONS(4860), + [anon_sym_SEMI] = ACTIONS(4860), + [anon_sym_EQ] = ACTIONS(4860), + [anon_sym_QMARK] = ACTIONS(4860), + [anon_sym_LBRACK] = ACTIONS(4862), + [anon_sym_BSLASH] = ACTIONS(4862), + [anon_sym_RBRACK] = ACTIONS(4860), + [anon_sym_CARET] = ACTIONS(4862), + [anon_sym__] = ACTIONS(4860), + [anon_sym_BQUOTE] = ACTIONS(4860), + [anon_sym_LBRACE] = ACTIONS(4860), + [anon_sym_PIPE] = ACTIONS(4860), + [anon_sym_TILDE] = ACTIONS(4860), + [anon_sym_LPAREN] = ACTIONS(4860), + [anon_sym_RPAREN] = ACTIONS(4860), + [sym__newline_token] = ACTIONS(4860), + [aux_sym_insert_token1] = ACTIONS(4860), + [aux_sym_delete_token1] = ACTIONS(4860), + [aux_sym_highlight_token1] = ACTIONS(4860), + [aux_sym_edit_comment_token1] = ACTIONS(4860), + [anon_sym_CARET_LBRACK] = ACTIONS(4860), + [anon_sym_LBRACK_CARET] = ACTIONS(4860), + [sym_uri_autolink] = ACTIONS(4860), + [sym_email_autolink] = ACTIONS(4860), + [sym__whitespace_ge_2] = ACTIONS(4860), + [aux_sym__whitespace_token1] = ACTIONS(4862), + [sym__word_no_digit] = ACTIONS(4860), + [sym__digits] = ACTIONS(4860), + [anon_sym_DASH_DASH] = ACTIONS(4862), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4860), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4860), + [sym__code_span_start] = ACTIONS(4860), + [sym__emphasis_open_star] = ACTIONS(4860), + [sym__emphasis_open_underscore] = ACTIONS(4860), + [sym__strikeout_open] = ACTIONS(4860), + [sym__latex_span_start] = ACTIONS(4860), + [sym__single_quote_open] = ACTIONS(4860), + [sym__double_quote_open] = ACTIONS(4860), + [sym__superscript_open] = ACTIONS(4860), + [sym__subscript_open] = ACTIONS(4860), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4860), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4860), + [sym__cite_author_in_text] = ACTIONS(4860), + [sym__cite_suppress_author] = ACTIONS(4860), + [sym__shortcode_open_escaped] = ACTIONS(4860), + [sym__shortcode_open] = ACTIONS(4860), + [sym__unclosed_span] = ACTIONS(4860), + }, + [STATE(988)] = { + [sym__backslash_escape] = ACTIONS(4864), + [sym_entity_reference] = ACTIONS(4864), + [sym_numeric_character_reference] = ACTIONS(4864), + [anon_sym_LT] = ACTIONS(4866), + [anon_sym_GT] = ACTIONS(4864), + [anon_sym_BANG] = ACTIONS(4864), + [anon_sym_DQUOTE] = ACTIONS(4864), + [anon_sym_POUND] = ACTIONS(4864), + [anon_sym_DOLLAR] = ACTIONS(4864), + [anon_sym_PERCENT] = ACTIONS(4864), + [anon_sym_AMP] = ACTIONS(4866), + [anon_sym_SQUOTE] = ACTIONS(4864), + [anon_sym_STAR] = ACTIONS(4864), + [anon_sym_PLUS] = ACTIONS(4864), + [anon_sym_COMMA] = ACTIONS(4864), + [anon_sym_DASH] = ACTIONS(4866), + [anon_sym_DOT] = ACTIONS(4866), + [anon_sym_SLASH] = ACTIONS(4864), + [anon_sym_COLON] = ACTIONS(4864), + [anon_sym_SEMI] = ACTIONS(4864), + [anon_sym_EQ] = ACTIONS(4864), + [anon_sym_QMARK] = ACTIONS(4864), + [anon_sym_LBRACK] = ACTIONS(4866), + [anon_sym_BSLASH] = ACTIONS(4866), + [anon_sym_RBRACK] = ACTIONS(4864), + [anon_sym_CARET] = ACTIONS(4866), + [anon_sym__] = ACTIONS(4864), + [anon_sym_BQUOTE] = ACTIONS(4864), + [anon_sym_LBRACE] = ACTIONS(4864), + [anon_sym_PIPE] = ACTIONS(4864), + [anon_sym_TILDE] = ACTIONS(4864), + [anon_sym_LPAREN] = ACTIONS(4864), + [anon_sym_RPAREN] = ACTIONS(4864), + [sym__newline_token] = ACTIONS(4864), + [aux_sym_insert_token1] = ACTIONS(4864), + [aux_sym_delete_token1] = ACTIONS(4864), + [aux_sym_highlight_token1] = ACTIONS(4864), + [aux_sym_edit_comment_token1] = ACTIONS(4864), + [anon_sym_CARET_LBRACK] = ACTIONS(4864), + [anon_sym_LBRACK_CARET] = ACTIONS(4864), + [sym_uri_autolink] = ACTIONS(4864), + [sym_email_autolink] = ACTIONS(4864), + [sym__whitespace_ge_2] = ACTIONS(4864), + [aux_sym__whitespace_token1] = ACTIONS(4866), + [sym__word_no_digit] = ACTIONS(4864), + [sym__digits] = ACTIONS(4864), + [anon_sym_DASH_DASH] = ACTIONS(4866), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4864), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4864), + [sym__code_span_start] = ACTIONS(4864), + [sym__emphasis_open_star] = ACTIONS(4864), + [sym__emphasis_open_underscore] = ACTIONS(4864), + [sym__strikeout_open] = ACTIONS(4864), + [sym__latex_span_start] = ACTIONS(4864), + [sym__single_quote_open] = ACTIONS(4864), + [sym__double_quote_open] = ACTIONS(4864), + [sym__superscript_open] = ACTIONS(4864), + [sym__subscript_open] = ACTIONS(4864), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4864), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4864), + [sym__cite_author_in_text] = ACTIONS(4864), + [sym__cite_suppress_author] = ACTIONS(4864), + [sym__shortcode_open_escaped] = ACTIONS(4864), + [sym__shortcode_open] = ACTIONS(4864), + [sym__unclosed_span] = ACTIONS(4864), + }, + [STATE(989)] = { + [sym__backslash_escape] = ACTIONS(4868), + [sym_entity_reference] = ACTIONS(4868), + [sym_numeric_character_reference] = ACTIONS(4868), + [anon_sym_LT] = ACTIONS(4870), + [anon_sym_GT] = ACTIONS(4868), + [anon_sym_BANG] = ACTIONS(4868), + [anon_sym_DQUOTE] = ACTIONS(4868), + [anon_sym_POUND] = ACTIONS(4868), + [anon_sym_DOLLAR] = ACTIONS(4868), + [anon_sym_PERCENT] = ACTIONS(4868), + [anon_sym_AMP] = ACTIONS(4870), + [anon_sym_SQUOTE] = ACTIONS(4868), + [anon_sym_STAR] = ACTIONS(4868), + [anon_sym_PLUS] = ACTIONS(4868), + [anon_sym_COMMA] = ACTIONS(4868), + [anon_sym_DASH] = ACTIONS(4870), + [anon_sym_DOT] = ACTIONS(4870), + [anon_sym_SLASH] = ACTIONS(4868), + [anon_sym_COLON] = ACTIONS(4868), + [anon_sym_SEMI] = ACTIONS(4868), + [anon_sym_EQ] = ACTIONS(4868), + [anon_sym_QMARK] = ACTIONS(4868), + [anon_sym_LBRACK] = ACTIONS(4870), + [anon_sym_BSLASH] = ACTIONS(4870), + [anon_sym_RBRACK] = ACTIONS(4868), + [anon_sym_CARET] = ACTIONS(4870), + [anon_sym__] = ACTIONS(4868), + [anon_sym_BQUOTE] = ACTIONS(4868), + [anon_sym_LBRACE] = ACTIONS(4868), + [anon_sym_PIPE] = ACTIONS(4868), + [anon_sym_TILDE] = ACTIONS(4868), + [anon_sym_LPAREN] = ACTIONS(4868), + [anon_sym_RPAREN] = ACTIONS(4868), + [sym__newline_token] = ACTIONS(4868), + [aux_sym_insert_token1] = ACTIONS(4868), + [aux_sym_delete_token1] = ACTIONS(4868), + [aux_sym_highlight_token1] = ACTIONS(4868), + [aux_sym_edit_comment_token1] = ACTIONS(4868), + [anon_sym_CARET_LBRACK] = ACTIONS(4868), + [anon_sym_LBRACK_CARET] = ACTIONS(4868), + [sym_uri_autolink] = ACTIONS(4868), + [sym_email_autolink] = ACTIONS(4868), + [sym__whitespace_ge_2] = ACTIONS(4868), + [aux_sym__whitespace_token1] = ACTIONS(4870), + [sym__word_no_digit] = ACTIONS(4868), + [sym__digits] = ACTIONS(4868), + [anon_sym_DASH_DASH] = ACTIONS(4870), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4868), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4868), + [sym__code_span_start] = ACTIONS(4868), + [sym__emphasis_open_star] = ACTIONS(4868), + [sym__emphasis_open_underscore] = ACTIONS(4868), + [sym__strikeout_open] = ACTIONS(4868), + [sym__latex_span_start] = ACTIONS(4868), + [sym__single_quote_open] = ACTIONS(4868), + [sym__double_quote_open] = ACTIONS(4868), + [sym__superscript_open] = ACTIONS(4868), + [sym__subscript_open] = ACTIONS(4868), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4868), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4868), + [sym__cite_author_in_text] = ACTIONS(4868), + [sym__cite_suppress_author] = ACTIONS(4868), + [sym__shortcode_open_escaped] = ACTIONS(4868), + [sym__shortcode_open] = ACTIONS(4868), + [sym__unclosed_span] = ACTIONS(4868), + }, + [STATE(990)] = { + [sym__backslash_escape] = ACTIONS(4872), + [sym_entity_reference] = ACTIONS(4872), + [sym_numeric_character_reference] = ACTIONS(4872), + [anon_sym_LT] = ACTIONS(4874), + [anon_sym_GT] = ACTIONS(4872), + [anon_sym_BANG] = ACTIONS(4872), + [anon_sym_DQUOTE] = ACTIONS(4872), + [anon_sym_POUND] = ACTIONS(4872), + [anon_sym_DOLLAR] = ACTIONS(4872), + [anon_sym_PERCENT] = ACTIONS(4872), + [anon_sym_AMP] = ACTIONS(4874), + [anon_sym_SQUOTE] = ACTIONS(4872), + [anon_sym_STAR] = ACTIONS(4872), + [anon_sym_PLUS] = ACTIONS(4872), + [anon_sym_COMMA] = ACTIONS(4872), + [anon_sym_DASH] = ACTIONS(4874), + [anon_sym_DOT] = ACTIONS(4874), + [anon_sym_SLASH] = ACTIONS(4872), + [anon_sym_COLON] = ACTIONS(4872), + [anon_sym_SEMI] = ACTIONS(4872), + [anon_sym_EQ] = ACTIONS(4872), + [anon_sym_QMARK] = ACTIONS(4872), + [anon_sym_LBRACK] = ACTIONS(4874), + [anon_sym_BSLASH] = ACTIONS(4874), + [anon_sym_RBRACK] = ACTIONS(4872), + [anon_sym_CARET] = ACTIONS(4874), + [anon_sym__] = ACTIONS(4872), + [anon_sym_BQUOTE] = ACTIONS(4872), + [anon_sym_LBRACE] = ACTIONS(4872), + [anon_sym_PIPE] = ACTIONS(4872), + [anon_sym_TILDE] = ACTIONS(4872), + [anon_sym_LPAREN] = ACTIONS(4872), + [anon_sym_RPAREN] = ACTIONS(4872), + [sym__newline_token] = ACTIONS(4872), + [aux_sym_insert_token1] = ACTIONS(4872), + [aux_sym_delete_token1] = ACTIONS(4872), + [aux_sym_highlight_token1] = ACTIONS(4872), + [aux_sym_edit_comment_token1] = ACTIONS(4872), + [anon_sym_CARET_LBRACK] = ACTIONS(4872), + [anon_sym_LBRACK_CARET] = ACTIONS(4872), + [sym_uri_autolink] = ACTIONS(4872), + [sym_email_autolink] = ACTIONS(4872), + [sym__whitespace_ge_2] = ACTIONS(4872), + [aux_sym__whitespace_token1] = ACTIONS(4874), + [sym__word_no_digit] = ACTIONS(4872), + [sym__digits] = ACTIONS(4872), + [anon_sym_DASH_DASH] = ACTIONS(4874), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4872), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4872), + [sym__code_span_start] = ACTIONS(4872), + [sym__emphasis_open_star] = ACTIONS(4872), + [sym__emphasis_open_underscore] = ACTIONS(4872), + [sym__strikeout_open] = ACTIONS(4872), + [sym__latex_span_start] = ACTIONS(4872), + [sym__single_quote_open] = ACTIONS(4872), + [sym__double_quote_open] = ACTIONS(4872), + [sym__superscript_open] = ACTIONS(4872), + [sym__subscript_open] = ACTIONS(4872), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4872), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4872), + [sym__cite_author_in_text] = ACTIONS(4872), + [sym__cite_suppress_author] = ACTIONS(4872), + [sym__shortcode_open_escaped] = ACTIONS(4872), + [sym__shortcode_open] = ACTIONS(4872), + [sym__unclosed_span] = ACTIONS(4872), + }, + [STATE(991)] = { + [sym__backslash_escape] = ACTIONS(4876), + [sym_entity_reference] = ACTIONS(4876), + [sym_numeric_character_reference] = ACTIONS(4876), + [anon_sym_LT] = ACTIONS(4878), + [anon_sym_GT] = ACTIONS(4876), + [anon_sym_BANG] = ACTIONS(4876), + [anon_sym_DQUOTE] = ACTIONS(4876), + [anon_sym_POUND] = ACTIONS(4876), + [anon_sym_DOLLAR] = ACTIONS(4876), + [anon_sym_PERCENT] = ACTIONS(4876), + [anon_sym_AMP] = ACTIONS(4878), + [anon_sym_SQUOTE] = ACTIONS(4876), + [anon_sym_STAR] = ACTIONS(4876), + [anon_sym_PLUS] = ACTIONS(4876), + [anon_sym_COMMA] = ACTIONS(4876), + [anon_sym_DASH] = ACTIONS(4878), + [anon_sym_DOT] = ACTIONS(4878), + [anon_sym_SLASH] = ACTIONS(4876), + [anon_sym_COLON] = ACTIONS(4876), + [anon_sym_SEMI] = ACTIONS(4876), + [anon_sym_EQ] = ACTIONS(4876), + [anon_sym_QMARK] = ACTIONS(4876), + [anon_sym_LBRACK] = ACTIONS(4878), + [anon_sym_BSLASH] = ACTIONS(4878), + [anon_sym_CARET] = ACTIONS(4878), + [anon_sym__] = ACTIONS(4876), + [anon_sym_BQUOTE] = ACTIONS(4876), + [anon_sym_LBRACE] = ACTIONS(4876), + [anon_sym_PIPE] = ACTIONS(4876), + [anon_sym_TILDE] = ACTIONS(4876), + [anon_sym_LPAREN] = ACTIONS(4876), + [anon_sym_RPAREN] = ACTIONS(4876), + [sym__newline_token] = ACTIONS(4876), + [aux_sym_insert_token1] = ACTIONS(4876), + [aux_sym_insert_token2] = ACTIONS(4876), + [aux_sym_delete_token1] = ACTIONS(4876), + [aux_sym_highlight_token1] = ACTIONS(4876), + [aux_sym_edit_comment_token1] = ACTIONS(4876), + [anon_sym_CARET_LBRACK] = ACTIONS(4876), + [anon_sym_LBRACK_CARET] = ACTIONS(4876), + [sym_uri_autolink] = ACTIONS(4876), + [sym_email_autolink] = ACTIONS(4876), + [sym__whitespace_ge_2] = ACTIONS(4878), + [aux_sym__whitespace_token1] = ACTIONS(4878), + [sym__word_no_digit] = ACTIONS(4876), + [sym__digits] = ACTIONS(4876), + [anon_sym_DASH_DASH] = ACTIONS(4878), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4876), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4876), + [sym__code_span_start] = ACTIONS(4876), + [sym__emphasis_open_star] = ACTIONS(4876), + [sym__emphasis_open_underscore] = ACTIONS(4876), + [sym__strikeout_open] = ACTIONS(4876), + [sym__latex_span_start] = ACTIONS(4876), + [sym__single_quote_open] = ACTIONS(4876), + [sym__double_quote_open] = ACTIONS(4876), + [sym__superscript_open] = ACTIONS(4876), + [sym__subscript_open] = ACTIONS(4876), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4876), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4876), + [sym__cite_author_in_text] = ACTIONS(4876), + [sym__cite_suppress_author] = ACTIONS(4876), + [sym__shortcode_open_escaped] = ACTIONS(4876), + [sym__shortcode_open] = ACTIONS(4876), + [sym__unclosed_span] = ACTIONS(4876), + }, + [STATE(992)] = { + [sym__backslash_escape] = ACTIONS(4588), + [sym_entity_reference] = ACTIONS(4588), + [sym_numeric_character_reference] = ACTIONS(4588), + [anon_sym_LT] = ACTIONS(4590), + [anon_sym_GT] = ACTIONS(4588), + [anon_sym_BANG] = ACTIONS(4588), + [anon_sym_DQUOTE] = ACTIONS(4588), + [anon_sym_POUND] = ACTIONS(4588), + [anon_sym_DOLLAR] = ACTIONS(4588), + [anon_sym_PERCENT] = ACTIONS(4588), + [anon_sym_AMP] = ACTIONS(4590), + [anon_sym_SQUOTE] = ACTIONS(4588), + [anon_sym_STAR] = ACTIONS(4588), + [anon_sym_PLUS] = ACTIONS(4588), + [anon_sym_COMMA] = ACTIONS(4588), + [anon_sym_DASH] = ACTIONS(4590), + [anon_sym_DOT] = ACTIONS(4590), + [anon_sym_SLASH] = ACTIONS(4588), + [anon_sym_COLON] = ACTIONS(4588), + [anon_sym_SEMI] = ACTIONS(4588), + [anon_sym_EQ] = ACTIONS(4588), + [anon_sym_QMARK] = ACTIONS(4588), + [anon_sym_LBRACK] = ACTIONS(4590), + [anon_sym_BSLASH] = ACTIONS(4590), + [anon_sym_CARET] = ACTIONS(4590), + [anon_sym__] = ACTIONS(4588), + [anon_sym_BQUOTE] = ACTIONS(4588), + [anon_sym_LBRACE] = ACTIONS(4588), + [anon_sym_PIPE] = ACTIONS(4588), + [anon_sym_TILDE] = ACTIONS(4588), + [anon_sym_LPAREN] = ACTIONS(4588), + [anon_sym_RPAREN] = ACTIONS(4588), + [sym__newline_token] = ACTIONS(4588), + [aux_sym_insert_token1] = ACTIONS(4588), + [aux_sym_insert_token2] = ACTIONS(4588), + [aux_sym_delete_token1] = ACTIONS(4588), + [aux_sym_highlight_token1] = ACTIONS(4588), + [aux_sym_edit_comment_token1] = ACTIONS(4588), + [anon_sym_CARET_LBRACK] = ACTIONS(4588), + [anon_sym_LBRACK_CARET] = ACTIONS(4588), + [sym_uri_autolink] = ACTIONS(4588), + [sym_email_autolink] = ACTIONS(4588), + [sym__whitespace_ge_2] = ACTIONS(4590), + [aux_sym__whitespace_token1] = ACTIONS(4590), + [sym__word_no_digit] = ACTIONS(4588), + [sym__digits] = ACTIONS(4588), + [anon_sym_DASH_DASH] = ACTIONS(4590), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4588), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4588), + [sym__code_span_start] = ACTIONS(4588), + [sym__emphasis_open_star] = ACTIONS(4588), + [sym__emphasis_open_underscore] = ACTIONS(4588), + [sym__strikeout_open] = ACTIONS(4588), + [sym__latex_span_start] = ACTIONS(4588), + [sym__single_quote_open] = ACTIONS(4588), + [sym__double_quote_open] = ACTIONS(4588), + [sym__superscript_open] = ACTIONS(4588), + [sym__subscript_open] = ACTIONS(4588), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4588), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4588), + [sym__cite_author_in_text] = ACTIONS(4588), + [sym__cite_suppress_author] = ACTIONS(4588), + [sym__shortcode_open_escaped] = ACTIONS(4588), + [sym__shortcode_open] = ACTIONS(4588), + [sym__unclosed_span] = ACTIONS(4588), + }, + [STATE(993)] = { + [sym__backslash_escape] = ACTIONS(4996), + [sym_entity_reference] = ACTIONS(4996), + [sym_numeric_character_reference] = ACTIONS(4996), + [anon_sym_LT] = ACTIONS(4998), + [anon_sym_GT] = ACTIONS(4996), + [anon_sym_BANG] = ACTIONS(4996), + [anon_sym_DQUOTE] = ACTIONS(4996), + [anon_sym_POUND] = ACTIONS(4996), + [anon_sym_DOLLAR] = ACTIONS(4996), + [anon_sym_PERCENT] = ACTIONS(4996), + [anon_sym_AMP] = ACTIONS(4998), + [anon_sym_SQUOTE] = ACTIONS(4996), + [anon_sym_STAR] = ACTIONS(4996), + [anon_sym_PLUS] = ACTIONS(4996), + [anon_sym_COMMA] = ACTIONS(4996), + [anon_sym_DASH] = ACTIONS(4998), + [anon_sym_DOT] = ACTIONS(4998), + [anon_sym_SLASH] = ACTIONS(4996), + [anon_sym_COLON] = ACTIONS(4996), + [anon_sym_SEMI] = ACTIONS(4996), + [anon_sym_EQ] = ACTIONS(4996), + [anon_sym_QMARK] = ACTIONS(4996), + [anon_sym_LBRACK] = ACTIONS(4998), + [anon_sym_BSLASH] = ACTIONS(4998), + [anon_sym_CARET] = ACTIONS(4998), + [anon_sym__] = ACTIONS(4996), + [anon_sym_BQUOTE] = ACTIONS(4996), + [anon_sym_LBRACE] = ACTIONS(4996), + [anon_sym_PIPE] = ACTIONS(4996), + [anon_sym_TILDE] = ACTIONS(4996), + [anon_sym_LPAREN] = ACTIONS(4996), + [anon_sym_RPAREN] = ACTIONS(4996), + [sym__newline_token] = ACTIONS(4996), + [aux_sym_insert_token1] = ACTIONS(4996), + [aux_sym_delete_token1] = ACTIONS(4996), + [aux_sym_highlight_token1] = ACTIONS(4996), + [aux_sym_edit_comment_token1] = ACTIONS(4996), + [anon_sym_CARET_LBRACK] = ACTIONS(4996), + [anon_sym_LBRACK_CARET] = ACTIONS(4996), + [sym_uri_autolink] = ACTIONS(4996), + [sym_email_autolink] = ACTIONS(4996), + [sym__whitespace_ge_2] = ACTIONS(4996), + [aux_sym__whitespace_token1] = ACTIONS(4998), + [sym__word_no_digit] = ACTIONS(4996), + [sym__digits] = ACTIONS(4996), + [anon_sym_DASH_DASH] = ACTIONS(4998), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4996), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4996), + [sym__code_span_start] = ACTIONS(4996), + [sym__emphasis_open_star] = ACTIONS(4996), + [sym__emphasis_open_underscore] = ACTIONS(4996), + [sym__strikeout_open] = ACTIONS(4996), + [sym__latex_span_start] = ACTIONS(4996), + [sym__single_quote_open] = ACTIONS(4996), + [sym__single_quote_close] = ACTIONS(4996), + [sym__double_quote_open] = ACTIONS(4996), + [sym__superscript_open] = ACTIONS(4996), + [sym__subscript_open] = ACTIONS(4996), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4996), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4996), + [sym__cite_author_in_text] = ACTIONS(4996), + [sym__cite_suppress_author] = ACTIONS(4996), + [sym__shortcode_open_escaped] = ACTIONS(4996), + [sym__shortcode_open] = ACTIONS(4996), + [sym__unclosed_span] = ACTIONS(4996), + }, + [STATE(994)] = { + [sym__backslash_escape] = ACTIONS(4540), + [sym_entity_reference] = ACTIONS(4540), + [sym_numeric_character_reference] = ACTIONS(4540), + [anon_sym_LT] = ACTIONS(4542), + [anon_sym_GT] = ACTIONS(4540), + [anon_sym_BANG] = ACTIONS(4540), + [anon_sym_DQUOTE] = ACTIONS(4540), + [anon_sym_POUND] = ACTIONS(4540), + [anon_sym_DOLLAR] = ACTIONS(4540), + [anon_sym_PERCENT] = ACTIONS(4540), + [anon_sym_AMP] = ACTIONS(4542), + [anon_sym_SQUOTE] = ACTIONS(4540), + [anon_sym_STAR] = ACTIONS(4540), + [anon_sym_PLUS] = ACTIONS(4540), + [anon_sym_COMMA] = ACTIONS(4540), + [anon_sym_DASH] = ACTIONS(4542), + [anon_sym_DOT] = ACTIONS(4542), + [anon_sym_SLASH] = ACTIONS(4540), + [anon_sym_COLON] = ACTIONS(4540), + [anon_sym_SEMI] = ACTIONS(4540), + [anon_sym_EQ] = ACTIONS(4540), + [anon_sym_QMARK] = ACTIONS(4540), + [anon_sym_LBRACK] = ACTIONS(4542), + [anon_sym_BSLASH] = ACTIONS(4542), + [anon_sym_RBRACK] = ACTIONS(4540), + [anon_sym_CARET] = ACTIONS(4542), + [anon_sym__] = ACTIONS(4540), + [anon_sym_BQUOTE] = ACTIONS(4540), + [anon_sym_LBRACE] = ACTIONS(4540), + [anon_sym_PIPE] = ACTIONS(4540), + [anon_sym_TILDE] = ACTIONS(4540), + [anon_sym_LPAREN] = ACTIONS(4540), + [anon_sym_RPAREN] = ACTIONS(4540), + [sym__newline_token] = ACTIONS(4540), + [aux_sym_insert_token1] = ACTIONS(4540), + [aux_sym_delete_token1] = ACTIONS(4540), + [aux_sym_highlight_token1] = ACTIONS(4540), + [aux_sym_edit_comment_token1] = ACTIONS(4540), + [anon_sym_CARET_LBRACK] = ACTIONS(4540), + [anon_sym_LBRACK_CARET] = ACTIONS(4540), + [sym_uri_autolink] = ACTIONS(4540), + [sym_email_autolink] = ACTIONS(4540), + [sym__whitespace_ge_2] = ACTIONS(4540), + [aux_sym__whitespace_token1] = ACTIONS(4542), + [sym__word_no_digit] = ACTIONS(4540), + [sym__digits] = ACTIONS(4540), + [anon_sym_DASH_DASH] = ACTIONS(4542), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4540), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4540), + [sym__code_span_start] = ACTIONS(4540), + [sym__emphasis_open_star] = ACTIONS(4540), + [sym__emphasis_open_underscore] = ACTIONS(4540), + [sym__strikeout_open] = ACTIONS(4540), + [sym__latex_span_start] = ACTIONS(4540), + [sym__single_quote_open] = ACTIONS(4540), + [sym__double_quote_open] = ACTIONS(4540), + [sym__superscript_open] = ACTIONS(4540), + [sym__subscript_open] = ACTIONS(4540), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4540), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4540), + [sym__cite_author_in_text] = ACTIONS(4540), + [sym__cite_suppress_author] = ACTIONS(4540), + [sym__shortcode_open_escaped] = ACTIONS(4540), + [sym__shortcode_open] = ACTIONS(4540), + [sym__unclosed_span] = ACTIONS(4540), + }, + [STATE(995)] = { + [sym__backslash_escape] = ACTIONS(5000), + [sym_entity_reference] = ACTIONS(5000), + [sym_numeric_character_reference] = ACTIONS(5000), + [anon_sym_LT] = ACTIONS(5002), + [anon_sym_GT] = ACTIONS(5000), + [anon_sym_BANG] = ACTIONS(5000), + [anon_sym_DQUOTE] = ACTIONS(5000), + [anon_sym_POUND] = ACTIONS(5000), + [anon_sym_DOLLAR] = ACTIONS(5000), + [anon_sym_PERCENT] = ACTIONS(5000), + [anon_sym_AMP] = ACTIONS(5002), + [anon_sym_SQUOTE] = ACTIONS(5000), + [anon_sym_STAR] = ACTIONS(5000), + [anon_sym_PLUS] = ACTIONS(5000), + [anon_sym_COMMA] = ACTIONS(5000), + [anon_sym_DASH] = ACTIONS(5002), + [anon_sym_DOT] = ACTIONS(5002), + [anon_sym_SLASH] = ACTIONS(5000), + [anon_sym_COLON] = ACTIONS(5000), + [anon_sym_SEMI] = ACTIONS(5000), + [anon_sym_EQ] = ACTIONS(5000), + [anon_sym_QMARK] = ACTIONS(5000), + [anon_sym_LBRACK] = ACTIONS(5002), + [anon_sym_BSLASH] = ACTIONS(5002), + [anon_sym_CARET] = ACTIONS(5002), + [anon_sym__] = ACTIONS(5000), + [anon_sym_BQUOTE] = ACTIONS(5000), + [anon_sym_LBRACE] = ACTIONS(5000), + [anon_sym_PIPE] = ACTIONS(5000), + [anon_sym_TILDE] = ACTIONS(5000), + [anon_sym_LPAREN] = ACTIONS(5000), + [anon_sym_RPAREN] = ACTIONS(5000), + [sym__newline_token] = ACTIONS(5000), + [aux_sym_insert_token1] = ACTIONS(5000), + [aux_sym_delete_token1] = ACTIONS(5000), + [aux_sym_highlight_token1] = ACTIONS(5000), + [aux_sym_edit_comment_token1] = ACTIONS(5000), + [anon_sym_CARET_LBRACK] = ACTIONS(5000), + [anon_sym_LBRACK_CARET] = ACTIONS(5000), + [sym_uri_autolink] = ACTIONS(5000), + [sym_email_autolink] = ACTIONS(5000), + [sym__whitespace_ge_2] = ACTIONS(5000), + [aux_sym__whitespace_token1] = ACTIONS(5002), + [sym__word_no_digit] = ACTIONS(5000), + [sym__digits] = ACTIONS(5000), + [anon_sym_DASH_DASH] = ACTIONS(5002), + [anon_sym_DASH_DASH_DASH] = ACTIONS(5000), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5000), + [sym__code_span_start] = ACTIONS(5000), + [sym__emphasis_open_star] = ACTIONS(5000), + [sym__emphasis_open_underscore] = ACTIONS(5000), + [sym__strikeout_open] = ACTIONS(5000), + [sym__latex_span_start] = ACTIONS(5000), + [sym__single_quote_open] = ACTIONS(5000), + [sym__single_quote_close] = ACTIONS(5000), + [sym__double_quote_open] = ACTIONS(5000), + [sym__superscript_open] = ACTIONS(5000), + [sym__subscript_open] = ACTIONS(5000), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5000), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5000), + [sym__cite_author_in_text] = ACTIONS(5000), + [sym__cite_suppress_author] = ACTIONS(5000), + [sym__shortcode_open_escaped] = ACTIONS(5000), + [sym__shortcode_open] = ACTIONS(5000), + [sym__unclosed_span] = ACTIONS(5000), + }, + [STATE(996)] = { + [sym__backslash_escape] = ACTIONS(4884), + [sym_entity_reference] = ACTIONS(4884), + [sym_numeric_character_reference] = ACTIONS(4884), + [anon_sym_LT] = ACTIONS(4886), + [anon_sym_GT] = ACTIONS(4884), + [anon_sym_BANG] = ACTIONS(4884), + [anon_sym_DQUOTE] = ACTIONS(4884), + [anon_sym_POUND] = ACTIONS(4884), + [anon_sym_DOLLAR] = ACTIONS(4884), + [anon_sym_PERCENT] = ACTIONS(4884), + [anon_sym_AMP] = ACTIONS(4886), + [anon_sym_SQUOTE] = ACTIONS(4884), + [anon_sym_STAR] = ACTIONS(4884), + [anon_sym_PLUS] = ACTIONS(4884), + [anon_sym_COMMA] = ACTIONS(4884), + [anon_sym_DASH] = ACTIONS(4886), + [anon_sym_DOT] = ACTIONS(4886), + [anon_sym_SLASH] = ACTIONS(4884), + [anon_sym_COLON] = ACTIONS(4884), + [anon_sym_SEMI] = ACTIONS(4884), + [anon_sym_EQ] = ACTIONS(4884), + [anon_sym_QMARK] = ACTIONS(4884), + [anon_sym_LBRACK] = ACTIONS(4886), + [anon_sym_BSLASH] = ACTIONS(4886), + [anon_sym_RBRACK] = ACTIONS(4884), + [anon_sym_CARET] = ACTIONS(4886), + [anon_sym__] = ACTIONS(4884), + [anon_sym_BQUOTE] = ACTIONS(4884), + [anon_sym_LBRACE] = ACTIONS(4884), + [anon_sym_PIPE] = ACTIONS(4884), + [anon_sym_TILDE] = ACTIONS(4884), + [anon_sym_LPAREN] = ACTIONS(4884), + [anon_sym_RPAREN] = ACTIONS(4884), + [sym__newline_token] = ACTIONS(4884), + [aux_sym_insert_token1] = ACTIONS(4884), + [aux_sym_delete_token1] = ACTIONS(4884), + [aux_sym_highlight_token1] = ACTIONS(4884), + [aux_sym_edit_comment_token1] = ACTIONS(4884), + [anon_sym_CARET_LBRACK] = ACTIONS(4884), + [anon_sym_LBRACK_CARET] = ACTIONS(4884), + [sym_uri_autolink] = ACTIONS(4884), + [sym_email_autolink] = ACTIONS(4884), + [sym__whitespace_ge_2] = ACTIONS(4884), + [aux_sym__whitespace_token1] = ACTIONS(4886), + [sym__word_no_digit] = ACTIONS(4884), + [sym__digits] = ACTIONS(4884), + [anon_sym_DASH_DASH] = ACTIONS(4886), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4884), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4884), + [sym__code_span_start] = ACTIONS(4884), + [sym__emphasis_open_star] = ACTIONS(4884), + [sym__emphasis_open_underscore] = ACTIONS(4884), + [sym__strikeout_open] = ACTIONS(4884), + [sym__latex_span_start] = ACTIONS(4884), + [sym__single_quote_open] = ACTIONS(4884), + [sym__double_quote_open] = ACTIONS(4884), + [sym__superscript_open] = ACTIONS(4884), + [sym__subscript_open] = ACTIONS(4884), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4884), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4884), + [sym__cite_author_in_text] = ACTIONS(4884), + [sym__cite_suppress_author] = ACTIONS(4884), + [sym__shortcode_open_escaped] = ACTIONS(4884), + [sym__shortcode_open] = ACTIONS(4884), + [sym__unclosed_span] = ACTIONS(4884), + }, + [STATE(997)] = { + [sym__backslash_escape] = ACTIONS(4888), + [sym_entity_reference] = ACTIONS(4888), + [sym_numeric_character_reference] = ACTIONS(4888), + [anon_sym_LT] = ACTIONS(4890), + [anon_sym_GT] = ACTIONS(4888), + [anon_sym_BANG] = ACTIONS(4888), + [anon_sym_DQUOTE] = ACTIONS(4888), + [anon_sym_POUND] = ACTIONS(4888), + [anon_sym_DOLLAR] = ACTIONS(4888), + [anon_sym_PERCENT] = ACTIONS(4888), + [anon_sym_AMP] = ACTIONS(4890), + [anon_sym_SQUOTE] = ACTIONS(4888), + [anon_sym_STAR] = ACTIONS(4888), + [anon_sym_PLUS] = ACTIONS(4888), + [anon_sym_COMMA] = ACTIONS(4888), + [anon_sym_DASH] = ACTIONS(4890), + [anon_sym_DOT] = ACTIONS(4890), + [anon_sym_SLASH] = ACTIONS(4888), + [anon_sym_COLON] = ACTIONS(4888), + [anon_sym_SEMI] = ACTIONS(4888), + [anon_sym_EQ] = ACTIONS(4888), + [anon_sym_QMARK] = ACTIONS(4888), + [anon_sym_LBRACK] = ACTIONS(4890), + [anon_sym_BSLASH] = ACTIONS(4890), + [anon_sym_RBRACK] = ACTIONS(4888), + [anon_sym_CARET] = ACTIONS(4890), + [anon_sym__] = ACTIONS(4888), + [anon_sym_BQUOTE] = ACTIONS(4888), + [anon_sym_LBRACE] = ACTIONS(4888), + [anon_sym_PIPE] = ACTIONS(4888), + [anon_sym_TILDE] = ACTIONS(4888), + [anon_sym_LPAREN] = ACTIONS(4888), + [anon_sym_RPAREN] = ACTIONS(4888), + [sym__newline_token] = ACTIONS(4888), + [aux_sym_insert_token1] = ACTIONS(4888), + [aux_sym_delete_token1] = ACTIONS(4888), + [aux_sym_highlight_token1] = ACTIONS(4888), + [aux_sym_edit_comment_token1] = ACTIONS(4888), + [anon_sym_CARET_LBRACK] = ACTIONS(4888), + [anon_sym_LBRACK_CARET] = ACTIONS(4888), + [sym_uri_autolink] = ACTIONS(4888), + [sym_email_autolink] = ACTIONS(4888), + [sym__whitespace_ge_2] = ACTIONS(4888), + [aux_sym__whitespace_token1] = ACTIONS(4890), + [sym__word_no_digit] = ACTIONS(4888), + [sym__digits] = ACTIONS(4888), + [anon_sym_DASH_DASH] = ACTIONS(4890), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4888), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4888), + [sym__code_span_start] = ACTIONS(4888), + [sym__emphasis_open_star] = ACTIONS(4888), + [sym__emphasis_open_underscore] = ACTIONS(4888), + [sym__strikeout_open] = ACTIONS(4888), + [sym__latex_span_start] = ACTIONS(4888), + [sym__single_quote_open] = ACTIONS(4888), + [sym__double_quote_open] = ACTIONS(4888), + [sym__superscript_open] = ACTIONS(4888), + [sym__subscript_open] = ACTIONS(4888), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4888), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4888), + [sym__cite_author_in_text] = ACTIONS(4888), + [sym__cite_suppress_author] = ACTIONS(4888), + [sym__shortcode_open_escaped] = ACTIONS(4888), + [sym__shortcode_open] = ACTIONS(4888), + [sym__unclosed_span] = ACTIONS(4888), + }, + [STATE(998)] = { + [sym__backslash_escape] = ACTIONS(4892), + [sym_entity_reference] = ACTIONS(4892), + [sym_numeric_character_reference] = ACTIONS(4892), + [anon_sym_LT] = ACTIONS(4894), + [anon_sym_GT] = ACTIONS(4892), + [anon_sym_BANG] = ACTIONS(4892), + [anon_sym_DQUOTE] = ACTIONS(4892), + [anon_sym_POUND] = ACTIONS(4892), + [anon_sym_DOLLAR] = ACTIONS(4892), + [anon_sym_PERCENT] = ACTIONS(4892), + [anon_sym_AMP] = ACTIONS(4894), + [anon_sym_SQUOTE] = ACTIONS(4892), + [anon_sym_STAR] = ACTIONS(4892), + [anon_sym_PLUS] = ACTIONS(4892), + [anon_sym_COMMA] = ACTIONS(4892), + [anon_sym_DASH] = ACTIONS(4894), + [anon_sym_DOT] = ACTIONS(4894), + [anon_sym_SLASH] = ACTIONS(4892), + [anon_sym_COLON] = ACTIONS(4892), + [anon_sym_SEMI] = ACTIONS(4892), + [anon_sym_EQ] = ACTIONS(4892), + [anon_sym_QMARK] = ACTIONS(4892), + [anon_sym_LBRACK] = ACTIONS(4894), + [anon_sym_BSLASH] = ACTIONS(4894), + [anon_sym_RBRACK] = ACTIONS(4892), + [anon_sym_CARET] = ACTIONS(4894), + [anon_sym__] = ACTIONS(4892), + [anon_sym_BQUOTE] = ACTIONS(4892), + [anon_sym_LBRACE] = ACTIONS(4892), + [anon_sym_PIPE] = ACTIONS(4892), + [anon_sym_TILDE] = ACTIONS(4892), + [anon_sym_LPAREN] = ACTIONS(4892), + [anon_sym_RPAREN] = ACTIONS(4892), + [sym__newline_token] = ACTIONS(4892), + [aux_sym_insert_token1] = ACTIONS(4892), + [aux_sym_delete_token1] = ACTIONS(4892), + [aux_sym_highlight_token1] = ACTIONS(4892), + [aux_sym_edit_comment_token1] = ACTIONS(4892), + [anon_sym_CARET_LBRACK] = ACTIONS(4892), + [anon_sym_LBRACK_CARET] = ACTIONS(4892), + [sym_uri_autolink] = ACTIONS(4892), + [sym_email_autolink] = ACTIONS(4892), + [sym__whitespace_ge_2] = ACTIONS(4892), + [aux_sym__whitespace_token1] = ACTIONS(4894), + [sym__word_no_digit] = ACTIONS(4892), + [sym__digits] = ACTIONS(4892), + [anon_sym_DASH_DASH] = ACTIONS(4894), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4892), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4892), + [sym__code_span_start] = ACTIONS(4892), + [sym__emphasis_open_star] = ACTIONS(4892), + [sym__emphasis_open_underscore] = ACTIONS(4892), + [sym__strikeout_open] = ACTIONS(4892), + [sym__latex_span_start] = ACTIONS(4892), + [sym__single_quote_open] = ACTIONS(4892), + [sym__double_quote_open] = ACTIONS(4892), + [sym__superscript_open] = ACTIONS(4892), + [sym__subscript_open] = ACTIONS(4892), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4892), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4892), + [sym__cite_author_in_text] = ACTIONS(4892), + [sym__cite_suppress_author] = ACTIONS(4892), + [sym__shortcode_open_escaped] = ACTIONS(4892), + [sym__shortcode_open] = ACTIONS(4892), + [sym__unclosed_span] = ACTIONS(4892), + }, + [STATE(999)] = { + [sym__backslash_escape] = ACTIONS(4896), + [sym_entity_reference] = ACTIONS(4896), + [sym_numeric_character_reference] = ACTIONS(4896), + [anon_sym_LT] = ACTIONS(4898), + [anon_sym_GT] = ACTIONS(4896), + [anon_sym_BANG] = ACTIONS(4896), + [anon_sym_DQUOTE] = ACTIONS(4896), + [anon_sym_POUND] = ACTIONS(4896), + [anon_sym_DOLLAR] = ACTIONS(4896), + [anon_sym_PERCENT] = ACTIONS(4896), + [anon_sym_AMP] = ACTIONS(4898), + [anon_sym_SQUOTE] = ACTIONS(4896), + [anon_sym_STAR] = ACTIONS(4896), + [anon_sym_PLUS] = ACTIONS(4896), + [anon_sym_COMMA] = ACTIONS(4896), + [anon_sym_DASH] = ACTIONS(4898), + [anon_sym_DOT] = ACTIONS(4898), + [anon_sym_SLASH] = ACTIONS(4896), + [anon_sym_COLON] = ACTIONS(4896), + [anon_sym_SEMI] = ACTIONS(4896), + [anon_sym_EQ] = ACTIONS(4896), + [anon_sym_QMARK] = ACTIONS(4896), + [anon_sym_LBRACK] = ACTIONS(4898), + [anon_sym_BSLASH] = ACTIONS(4898), + [anon_sym_CARET] = ACTIONS(4898), + [anon_sym__] = ACTIONS(4896), + [anon_sym_BQUOTE] = ACTIONS(4896), + [anon_sym_LBRACE] = ACTIONS(4896), + [anon_sym_PIPE] = ACTIONS(4896), + [anon_sym_TILDE] = ACTIONS(4896), + [anon_sym_LPAREN] = ACTIONS(4896), + [anon_sym_RPAREN] = ACTIONS(4896), + [sym__newline_token] = ACTIONS(4896), + [aux_sym_insert_token1] = ACTIONS(4896), + [aux_sym_insert_token2] = ACTIONS(4896), + [aux_sym_delete_token1] = ACTIONS(4896), + [aux_sym_highlight_token1] = ACTIONS(4896), + [aux_sym_edit_comment_token1] = ACTIONS(4896), + [anon_sym_CARET_LBRACK] = ACTIONS(4896), + [anon_sym_LBRACK_CARET] = ACTIONS(4896), + [sym_uri_autolink] = ACTIONS(4896), + [sym_email_autolink] = ACTIONS(4896), + [sym__whitespace_ge_2] = ACTIONS(4898), + [aux_sym__whitespace_token1] = ACTIONS(4898), + [sym__word_no_digit] = ACTIONS(4896), + [sym__digits] = ACTIONS(4896), + [anon_sym_DASH_DASH] = ACTIONS(4898), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4896), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4896), + [sym__code_span_start] = ACTIONS(4896), + [sym__emphasis_open_star] = ACTIONS(4896), + [sym__emphasis_open_underscore] = ACTIONS(4896), + [sym__strikeout_open] = ACTIONS(4896), + [sym__latex_span_start] = ACTIONS(4896), + [sym__single_quote_open] = ACTIONS(4896), + [sym__double_quote_open] = ACTIONS(4896), + [sym__superscript_open] = ACTIONS(4896), + [sym__subscript_open] = ACTIONS(4896), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4896), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4896), + [sym__cite_author_in_text] = ACTIONS(4896), + [sym__cite_suppress_author] = ACTIONS(4896), + [sym__shortcode_open_escaped] = ACTIONS(4896), + [sym__shortcode_open] = ACTIONS(4896), + [sym__unclosed_span] = ACTIONS(4896), + }, + [STATE(1000)] = { + [sym__backslash_escape] = ACTIONS(4534), + [sym_entity_reference] = ACTIONS(4534), + [sym_numeric_character_reference] = ACTIONS(4534), + [anon_sym_LT] = ACTIONS(4536), + [anon_sym_GT] = ACTIONS(4534), + [anon_sym_BANG] = ACTIONS(4534), + [anon_sym_DQUOTE] = ACTIONS(4534), + [anon_sym_POUND] = ACTIONS(4534), + [anon_sym_DOLLAR] = ACTIONS(4534), + [anon_sym_PERCENT] = ACTIONS(4534), + [anon_sym_AMP] = ACTIONS(4536), + [anon_sym_SQUOTE] = ACTIONS(4534), + [anon_sym_STAR] = ACTIONS(4534), + [anon_sym_PLUS] = ACTIONS(4534), + [anon_sym_COMMA] = ACTIONS(4534), + [anon_sym_DASH] = ACTIONS(4536), + [anon_sym_DOT] = ACTIONS(4536), + [anon_sym_SLASH] = ACTIONS(4534), + [anon_sym_COLON] = ACTIONS(4534), + [anon_sym_SEMI] = ACTIONS(4534), + [anon_sym_EQ] = ACTIONS(4534), + [anon_sym_QMARK] = ACTIONS(4534), + [anon_sym_LBRACK] = ACTIONS(4536), + [anon_sym_BSLASH] = ACTIONS(4536), + [anon_sym_CARET] = ACTIONS(4536), + [anon_sym__] = ACTIONS(4534), + [anon_sym_BQUOTE] = ACTIONS(4534), + [anon_sym_LBRACE] = ACTIONS(4534), + [anon_sym_PIPE] = ACTIONS(4534), + [anon_sym_TILDE] = ACTIONS(4534), + [anon_sym_LPAREN] = ACTIONS(4534), + [anon_sym_RPAREN] = ACTIONS(4534), + [sym__newline_token] = ACTIONS(4534), + [aux_sym_insert_token1] = ACTIONS(4534), + [aux_sym_insert_token2] = ACTIONS(4534), + [aux_sym_delete_token1] = ACTIONS(4534), + [aux_sym_highlight_token1] = ACTIONS(4534), + [aux_sym_edit_comment_token1] = ACTIONS(4534), + [anon_sym_CARET_LBRACK] = ACTIONS(4534), + [anon_sym_LBRACK_CARET] = ACTIONS(4534), + [sym_uri_autolink] = ACTIONS(4534), + [sym_email_autolink] = ACTIONS(4534), + [sym__whitespace_ge_2] = ACTIONS(4536), + [aux_sym__whitespace_token1] = ACTIONS(4536), + [sym__word_no_digit] = ACTIONS(4534), + [sym__digits] = ACTIONS(4534), + [anon_sym_DASH_DASH] = ACTIONS(4536), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4534), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4534), + [sym__code_span_start] = ACTIONS(4534), + [sym__emphasis_open_star] = ACTIONS(4534), + [sym__emphasis_open_underscore] = ACTIONS(4534), + [sym__strikeout_open] = ACTIONS(4534), + [sym__latex_span_start] = ACTIONS(4534), + [sym__single_quote_open] = ACTIONS(4534), + [sym__double_quote_open] = ACTIONS(4534), + [sym__superscript_open] = ACTIONS(4534), + [sym__subscript_open] = ACTIONS(4534), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4534), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4534), + [sym__cite_author_in_text] = ACTIONS(4534), + [sym__cite_suppress_author] = ACTIONS(4534), + [sym__shortcode_open_escaped] = ACTIONS(4534), + [sym__shortcode_open] = ACTIONS(4534), + [sym__unclosed_span] = ACTIONS(4534), + }, + [STATE(1001)] = { + [sym__backslash_escape] = ACTIONS(5004), + [sym_entity_reference] = ACTIONS(5004), + [sym_numeric_character_reference] = ACTIONS(5004), + [anon_sym_LT] = ACTIONS(5006), + [anon_sym_GT] = ACTIONS(5004), + [anon_sym_BANG] = ACTIONS(5004), + [anon_sym_DQUOTE] = ACTIONS(5004), + [anon_sym_POUND] = ACTIONS(5004), + [anon_sym_DOLLAR] = ACTIONS(5004), + [anon_sym_PERCENT] = ACTIONS(5004), + [anon_sym_AMP] = ACTIONS(5006), + [anon_sym_SQUOTE] = ACTIONS(5004), + [anon_sym_STAR] = ACTIONS(5004), + [anon_sym_PLUS] = ACTIONS(5004), + [anon_sym_COMMA] = ACTIONS(5004), + [anon_sym_DASH] = ACTIONS(5006), + [anon_sym_DOT] = ACTIONS(5006), + [anon_sym_SLASH] = ACTIONS(5004), + [anon_sym_COLON] = ACTIONS(5004), + [anon_sym_SEMI] = ACTIONS(5004), + [anon_sym_EQ] = ACTIONS(5004), + [anon_sym_QMARK] = ACTIONS(5004), + [anon_sym_LBRACK] = ACTIONS(5006), + [anon_sym_BSLASH] = ACTIONS(5006), + [anon_sym_CARET] = ACTIONS(5006), + [anon_sym__] = ACTIONS(5004), + [anon_sym_BQUOTE] = ACTIONS(5004), + [anon_sym_LBRACE] = ACTIONS(5004), + [anon_sym_PIPE] = ACTIONS(5004), + [anon_sym_TILDE] = ACTIONS(5004), + [anon_sym_LPAREN] = ACTIONS(5004), + [anon_sym_RPAREN] = ACTIONS(5004), + [sym__newline_token] = ACTIONS(5004), + [aux_sym_insert_token1] = ACTIONS(5004), + [aux_sym_delete_token1] = ACTIONS(5004), + [aux_sym_highlight_token1] = ACTIONS(5004), + [aux_sym_edit_comment_token1] = ACTIONS(5004), + [anon_sym_CARET_LBRACK] = ACTIONS(5004), + [anon_sym_LBRACK_CARET] = ACTIONS(5004), + [sym_uri_autolink] = ACTIONS(5004), + [sym_email_autolink] = ACTIONS(5004), + [sym__whitespace_ge_2] = ACTIONS(5004), + [aux_sym__whitespace_token1] = ACTIONS(5006), + [sym__word_no_digit] = ACTIONS(5004), + [sym__digits] = ACTIONS(5004), + [anon_sym_DASH_DASH] = ACTIONS(5006), + [anon_sym_DASH_DASH_DASH] = ACTIONS(5004), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5004), + [sym__code_span_start] = ACTIONS(5004), + [sym__emphasis_open_star] = ACTIONS(5004), + [sym__emphasis_open_underscore] = ACTIONS(5004), + [sym__strikeout_open] = ACTIONS(5004), + [sym__latex_span_start] = ACTIONS(5004), + [sym__single_quote_open] = ACTIONS(5004), + [sym__single_quote_close] = ACTIONS(5004), + [sym__double_quote_open] = ACTIONS(5004), + [sym__superscript_open] = ACTIONS(5004), + [sym__subscript_open] = ACTIONS(5004), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5004), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5004), + [sym__cite_author_in_text] = ACTIONS(5004), + [sym__cite_suppress_author] = ACTIONS(5004), + [sym__shortcode_open_escaped] = ACTIONS(5004), + [sym__shortcode_open] = ACTIONS(5004), + [sym__unclosed_span] = ACTIONS(5004), + }, + [STATE(1002)] = { + [sym__backslash_escape] = ACTIONS(4546), + [sym_entity_reference] = ACTIONS(4546), + [sym_numeric_character_reference] = ACTIONS(4546), + [anon_sym_LT] = ACTIONS(4548), + [anon_sym_GT] = ACTIONS(4546), + [anon_sym_BANG] = ACTIONS(4546), + [anon_sym_DQUOTE] = ACTIONS(4546), + [anon_sym_POUND] = ACTIONS(4546), + [anon_sym_DOLLAR] = ACTIONS(4546), + [anon_sym_PERCENT] = ACTIONS(4546), + [anon_sym_AMP] = ACTIONS(4548), + [anon_sym_SQUOTE] = ACTIONS(4546), + [anon_sym_STAR] = ACTIONS(4546), + [anon_sym_PLUS] = ACTIONS(4546), + [anon_sym_COMMA] = ACTIONS(4546), + [anon_sym_DASH] = ACTIONS(4548), + [anon_sym_DOT] = ACTIONS(4548), + [anon_sym_SLASH] = ACTIONS(4546), + [anon_sym_COLON] = ACTIONS(4546), + [anon_sym_SEMI] = ACTIONS(4546), + [anon_sym_EQ] = ACTIONS(4546), + [anon_sym_QMARK] = ACTIONS(4546), + [anon_sym_LBRACK] = ACTIONS(4548), + [anon_sym_BSLASH] = ACTIONS(4548), + [anon_sym_RBRACK] = ACTIONS(4546), + [anon_sym_CARET] = ACTIONS(4548), + [anon_sym__] = ACTIONS(4546), + [anon_sym_BQUOTE] = ACTIONS(4546), + [anon_sym_LBRACE] = ACTIONS(4546), + [anon_sym_PIPE] = ACTIONS(4546), + [anon_sym_TILDE] = ACTIONS(4546), + [anon_sym_LPAREN] = ACTIONS(4546), + [anon_sym_RPAREN] = ACTIONS(4546), + [sym__newline_token] = ACTIONS(4546), + [aux_sym_insert_token1] = ACTIONS(4546), + [aux_sym_delete_token1] = ACTIONS(4546), + [aux_sym_highlight_token1] = ACTIONS(4546), + [aux_sym_edit_comment_token1] = ACTIONS(4546), + [anon_sym_CARET_LBRACK] = ACTIONS(4546), + [anon_sym_LBRACK_CARET] = ACTIONS(4546), + [sym_uri_autolink] = ACTIONS(4546), + [sym_email_autolink] = ACTIONS(4546), + [sym__whitespace_ge_2] = ACTIONS(4546), + [aux_sym__whitespace_token1] = ACTIONS(4548), + [sym__word_no_digit] = ACTIONS(4546), + [sym__digits] = ACTIONS(4546), + [anon_sym_DASH_DASH] = ACTIONS(4548), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4546), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4546), + [sym__code_span_start] = ACTIONS(4546), + [sym__emphasis_open_star] = ACTIONS(4546), + [sym__emphasis_open_underscore] = ACTIONS(4546), + [sym__strikeout_open] = ACTIONS(4546), + [sym__latex_span_start] = ACTIONS(4546), + [sym__single_quote_open] = ACTIONS(4546), + [sym__double_quote_open] = ACTIONS(4546), + [sym__superscript_open] = ACTIONS(4546), + [sym__subscript_open] = ACTIONS(4546), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4546), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4546), + [sym__cite_author_in_text] = ACTIONS(4546), + [sym__cite_suppress_author] = ACTIONS(4546), + [sym__shortcode_open_escaped] = ACTIONS(4546), + [sym__shortcode_open] = ACTIONS(4546), + [sym__unclosed_span] = ACTIONS(4546), + }, + [STATE(1003)] = { + [sym__backslash_escape] = ACTIONS(5008), + [sym_entity_reference] = ACTIONS(5008), + [sym_numeric_character_reference] = ACTIONS(5008), + [anon_sym_LT] = ACTIONS(5010), + [anon_sym_GT] = ACTIONS(5008), + [anon_sym_BANG] = ACTIONS(5008), + [anon_sym_DQUOTE] = ACTIONS(5008), + [anon_sym_POUND] = ACTIONS(5008), + [anon_sym_DOLLAR] = ACTIONS(5008), + [anon_sym_PERCENT] = ACTIONS(5008), + [anon_sym_AMP] = ACTIONS(5010), + [anon_sym_SQUOTE] = ACTIONS(5008), + [anon_sym_STAR] = ACTIONS(5008), + [anon_sym_PLUS] = ACTIONS(5008), + [anon_sym_COMMA] = ACTIONS(5008), + [anon_sym_DASH] = ACTIONS(5010), + [anon_sym_DOT] = ACTIONS(5010), + [anon_sym_SLASH] = ACTIONS(5008), + [anon_sym_COLON] = ACTIONS(5008), + [anon_sym_SEMI] = ACTIONS(5008), + [anon_sym_EQ] = ACTIONS(5008), + [anon_sym_QMARK] = ACTIONS(5008), + [anon_sym_LBRACK] = ACTIONS(5010), + [anon_sym_BSLASH] = ACTIONS(5010), + [anon_sym_CARET] = ACTIONS(5010), + [anon_sym__] = ACTIONS(5008), + [anon_sym_BQUOTE] = ACTIONS(5008), + [anon_sym_LBRACE] = ACTIONS(5008), + [anon_sym_PIPE] = ACTIONS(5008), + [anon_sym_TILDE] = ACTIONS(5008), + [anon_sym_LPAREN] = ACTIONS(5008), + [anon_sym_RPAREN] = ACTIONS(5008), + [sym__newline_token] = ACTIONS(5008), + [aux_sym_insert_token1] = ACTIONS(5008), + [aux_sym_delete_token1] = ACTIONS(5008), + [aux_sym_highlight_token1] = ACTIONS(5008), + [aux_sym_edit_comment_token1] = ACTIONS(5008), + [anon_sym_CARET_LBRACK] = ACTIONS(5008), + [anon_sym_LBRACK_CARET] = ACTIONS(5008), + [sym_uri_autolink] = ACTIONS(5008), + [sym_email_autolink] = ACTIONS(5008), + [sym__whitespace_ge_2] = ACTIONS(5008), + [aux_sym__whitespace_token1] = ACTIONS(5010), + [sym__word_no_digit] = ACTIONS(5008), + [sym__digits] = ACTIONS(5008), + [anon_sym_DASH_DASH] = ACTIONS(5010), + [anon_sym_DASH_DASH_DASH] = ACTIONS(5008), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5008), + [sym__code_span_start] = ACTIONS(5008), + [sym__emphasis_open_star] = ACTIONS(5008), + [sym__emphasis_open_underscore] = ACTIONS(5008), + [sym__strikeout_open] = ACTIONS(5008), + [sym__latex_span_start] = ACTIONS(5008), + [sym__single_quote_open] = ACTIONS(5008), + [sym__single_quote_close] = ACTIONS(5008), + [sym__double_quote_open] = ACTIONS(5008), + [sym__superscript_open] = ACTIONS(5008), + [sym__subscript_open] = ACTIONS(5008), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5008), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5008), + [sym__cite_author_in_text] = ACTIONS(5008), + [sym__cite_suppress_author] = ACTIONS(5008), + [sym__shortcode_open_escaped] = ACTIONS(5008), + [sym__shortcode_open] = ACTIONS(5008), + [sym__unclosed_span] = ACTIONS(5008), + }, + [STATE(1004)] = { + [sym__backslash_escape] = ACTIONS(4904), + [sym_entity_reference] = ACTIONS(4904), + [sym_numeric_character_reference] = ACTIONS(4904), + [anon_sym_LT] = ACTIONS(4906), + [anon_sym_GT] = ACTIONS(4904), + [anon_sym_BANG] = ACTIONS(4904), + [anon_sym_DQUOTE] = ACTIONS(4904), + [anon_sym_POUND] = ACTIONS(4904), + [anon_sym_DOLLAR] = ACTIONS(4904), + [anon_sym_PERCENT] = ACTIONS(4904), + [anon_sym_AMP] = ACTIONS(4906), + [anon_sym_SQUOTE] = ACTIONS(4904), + [anon_sym_STAR] = ACTIONS(4904), + [anon_sym_PLUS] = ACTIONS(4904), + [anon_sym_COMMA] = ACTIONS(4904), + [anon_sym_DASH] = ACTIONS(4906), + [anon_sym_DOT] = ACTIONS(4906), + [anon_sym_SLASH] = ACTIONS(4904), + [anon_sym_COLON] = ACTIONS(4904), + [anon_sym_SEMI] = ACTIONS(4904), + [anon_sym_EQ] = ACTIONS(4904), + [anon_sym_QMARK] = ACTIONS(4904), + [anon_sym_LBRACK] = ACTIONS(4906), + [anon_sym_BSLASH] = ACTIONS(4906), + [anon_sym_RBRACK] = ACTIONS(4904), + [anon_sym_CARET] = ACTIONS(4906), + [anon_sym__] = ACTIONS(4904), + [anon_sym_BQUOTE] = ACTIONS(4904), + [anon_sym_LBRACE] = ACTIONS(4904), + [anon_sym_PIPE] = ACTIONS(4904), + [anon_sym_TILDE] = ACTIONS(4904), + [anon_sym_LPAREN] = ACTIONS(4904), + [anon_sym_RPAREN] = ACTIONS(4904), + [sym__newline_token] = ACTIONS(4904), + [aux_sym_insert_token1] = ACTIONS(4904), + [aux_sym_delete_token1] = ACTIONS(4904), + [aux_sym_highlight_token1] = ACTIONS(4904), + [aux_sym_edit_comment_token1] = ACTIONS(4904), + [anon_sym_CARET_LBRACK] = ACTIONS(4904), + [anon_sym_LBRACK_CARET] = ACTIONS(4904), + [sym_uri_autolink] = ACTIONS(4904), + [sym_email_autolink] = ACTIONS(4904), + [sym__whitespace_ge_2] = ACTIONS(4904), + [aux_sym__whitespace_token1] = ACTIONS(4906), + [sym__word_no_digit] = ACTIONS(4904), + [sym__digits] = ACTIONS(4904), + [anon_sym_DASH_DASH] = ACTIONS(4906), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4904), + [sym__code_span_start] = ACTIONS(4904), + [sym__emphasis_open_star] = ACTIONS(4904), + [sym__emphasis_open_underscore] = ACTIONS(4904), + [sym__strikeout_open] = ACTIONS(4904), + [sym__latex_span_start] = ACTIONS(4904), + [sym__single_quote_open] = ACTIONS(4904), + [sym__double_quote_open] = ACTIONS(4904), + [sym__superscript_open] = ACTIONS(4904), + [sym__subscript_open] = ACTIONS(4904), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4904), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4904), + [sym__cite_author_in_text] = ACTIONS(4904), + [sym__cite_suppress_author] = ACTIONS(4904), + [sym__shortcode_open_escaped] = ACTIONS(4904), + [sym__shortcode_open] = ACTIONS(4904), + [sym__unclosed_span] = ACTIONS(4904), + }, + [STATE(1005)] = { + [sym__backslash_escape] = ACTIONS(4908), + [sym_entity_reference] = ACTIONS(4908), + [sym_numeric_character_reference] = ACTIONS(4908), + [anon_sym_LT] = ACTIONS(4910), + [anon_sym_GT] = ACTIONS(4908), + [anon_sym_BANG] = ACTIONS(4908), + [anon_sym_DQUOTE] = ACTIONS(4908), + [anon_sym_POUND] = ACTIONS(4908), + [anon_sym_DOLLAR] = ACTIONS(4908), + [anon_sym_PERCENT] = ACTIONS(4908), + [anon_sym_AMP] = ACTIONS(4910), + [anon_sym_SQUOTE] = ACTIONS(4908), + [anon_sym_STAR] = ACTIONS(4908), + [anon_sym_PLUS] = ACTIONS(4908), + [anon_sym_COMMA] = ACTIONS(4908), + [anon_sym_DASH] = ACTIONS(4910), + [anon_sym_DOT] = ACTIONS(4910), + [anon_sym_SLASH] = ACTIONS(4908), + [anon_sym_COLON] = ACTIONS(4908), + [anon_sym_SEMI] = ACTIONS(4908), + [anon_sym_EQ] = ACTIONS(4908), + [anon_sym_QMARK] = ACTIONS(4908), + [anon_sym_LBRACK] = ACTIONS(4910), + [anon_sym_BSLASH] = ACTIONS(4910), + [anon_sym_RBRACK] = ACTIONS(4908), + [anon_sym_CARET] = ACTIONS(4910), + [anon_sym__] = ACTIONS(4908), + [anon_sym_BQUOTE] = ACTIONS(4908), + [anon_sym_LBRACE] = ACTIONS(4908), + [anon_sym_PIPE] = ACTIONS(4908), + [anon_sym_TILDE] = ACTIONS(4908), + [anon_sym_LPAREN] = ACTIONS(4908), + [anon_sym_RPAREN] = ACTIONS(4908), + [sym__newline_token] = ACTIONS(4908), + [aux_sym_insert_token1] = ACTIONS(4908), + [aux_sym_delete_token1] = ACTIONS(4908), + [aux_sym_highlight_token1] = ACTIONS(4908), + [aux_sym_edit_comment_token1] = ACTIONS(4908), + [anon_sym_CARET_LBRACK] = ACTIONS(4908), + [anon_sym_LBRACK_CARET] = ACTIONS(4908), + [sym_uri_autolink] = ACTIONS(4908), + [sym_email_autolink] = ACTIONS(4908), + [sym__whitespace_ge_2] = ACTIONS(4908), + [aux_sym__whitespace_token1] = ACTIONS(4910), + [sym__word_no_digit] = ACTIONS(4908), + [sym__digits] = ACTIONS(4908), + [anon_sym_DASH_DASH] = ACTIONS(4910), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4908), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4908), + [sym__code_span_start] = ACTIONS(4908), + [sym__emphasis_open_star] = ACTIONS(4908), + [sym__emphasis_open_underscore] = ACTIONS(4908), + [sym__strikeout_open] = ACTIONS(4908), + [sym__latex_span_start] = ACTIONS(4908), + [sym__single_quote_open] = ACTIONS(4908), + [sym__double_quote_open] = ACTIONS(4908), + [sym__superscript_open] = ACTIONS(4908), + [sym__subscript_open] = ACTIONS(4908), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4908), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4908), + [sym__cite_author_in_text] = ACTIONS(4908), + [sym__cite_suppress_author] = ACTIONS(4908), + [sym__shortcode_open_escaped] = ACTIONS(4908), + [sym__shortcode_open] = ACTIONS(4908), + [sym__unclosed_span] = ACTIONS(4908), + }, + [STATE(1006)] = { + [sym__backslash_escape] = ACTIONS(4550), + [sym_entity_reference] = ACTIONS(4550), + [sym_numeric_character_reference] = ACTIONS(4550), + [anon_sym_LT] = ACTIONS(4552), + [anon_sym_GT] = ACTIONS(4550), + [anon_sym_BANG] = ACTIONS(4550), + [anon_sym_DQUOTE] = ACTIONS(4550), + [anon_sym_POUND] = ACTIONS(4550), + [anon_sym_DOLLAR] = ACTIONS(4550), + [anon_sym_PERCENT] = ACTIONS(4550), + [anon_sym_AMP] = ACTIONS(4552), + [anon_sym_SQUOTE] = ACTIONS(4550), + [anon_sym_STAR] = ACTIONS(4550), + [anon_sym_PLUS] = ACTIONS(4550), + [anon_sym_COMMA] = ACTIONS(4550), + [anon_sym_DASH] = ACTIONS(4552), + [anon_sym_DOT] = ACTIONS(4552), + [anon_sym_SLASH] = ACTIONS(4550), + [anon_sym_COLON] = ACTIONS(4550), + [anon_sym_SEMI] = ACTIONS(4550), + [anon_sym_EQ] = ACTIONS(4550), + [anon_sym_QMARK] = ACTIONS(4550), + [anon_sym_LBRACK] = ACTIONS(4552), + [anon_sym_BSLASH] = ACTIONS(4552), + [anon_sym_CARET] = ACTIONS(4552), + [anon_sym__] = ACTIONS(4550), + [anon_sym_BQUOTE] = ACTIONS(4550), + [anon_sym_LBRACE] = ACTIONS(4550), + [anon_sym_PIPE] = ACTIONS(4550), + [anon_sym_TILDE] = ACTIONS(4550), + [anon_sym_LPAREN] = ACTIONS(4550), + [anon_sym_RPAREN] = ACTIONS(4550), + [sym__newline_token] = ACTIONS(4550), + [aux_sym_insert_token1] = ACTIONS(4550), + [aux_sym_insert_token2] = ACTIONS(4550), + [aux_sym_delete_token1] = ACTIONS(4550), + [aux_sym_highlight_token1] = ACTIONS(4550), + [aux_sym_edit_comment_token1] = ACTIONS(4550), + [anon_sym_CARET_LBRACK] = ACTIONS(4550), + [anon_sym_LBRACK_CARET] = ACTIONS(4550), + [sym_uri_autolink] = ACTIONS(4550), + [sym_email_autolink] = ACTIONS(4550), + [sym__whitespace_ge_2] = ACTIONS(4552), + [aux_sym__whitespace_token1] = ACTIONS(4552), + [sym__word_no_digit] = ACTIONS(4550), + [sym__digits] = ACTIONS(4550), + [anon_sym_DASH_DASH] = ACTIONS(4552), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4550), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4550), + [sym__code_span_start] = ACTIONS(4550), + [sym__emphasis_open_star] = ACTIONS(4550), + [sym__emphasis_open_underscore] = ACTIONS(4550), + [sym__strikeout_open] = ACTIONS(4550), + [sym__latex_span_start] = ACTIONS(4550), + [sym__single_quote_open] = ACTIONS(4550), + [sym__double_quote_open] = ACTIONS(4550), + [sym__superscript_open] = ACTIONS(4550), + [sym__subscript_open] = ACTIONS(4550), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4550), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4550), + [sym__cite_author_in_text] = ACTIONS(4550), + [sym__cite_suppress_author] = ACTIONS(4550), + [sym__shortcode_open_escaped] = ACTIONS(4550), + [sym__shortcode_open] = ACTIONS(4550), + [sym__unclosed_span] = ACTIONS(4550), + }, + [STATE(1007)] = { + [sym__backslash_escape] = ACTIONS(5012), + [sym_entity_reference] = ACTIONS(5012), + [sym_numeric_character_reference] = ACTIONS(5012), + [anon_sym_LT] = ACTIONS(5014), + [anon_sym_GT] = ACTIONS(5012), + [anon_sym_BANG] = ACTIONS(5012), + [anon_sym_DQUOTE] = ACTIONS(5012), + [anon_sym_POUND] = ACTIONS(5012), + [anon_sym_DOLLAR] = ACTIONS(5012), + [anon_sym_PERCENT] = ACTIONS(5012), + [anon_sym_AMP] = ACTIONS(5014), + [anon_sym_SQUOTE] = ACTIONS(5012), + [anon_sym_STAR] = ACTIONS(5012), + [anon_sym_PLUS] = ACTIONS(5012), + [anon_sym_COMMA] = ACTIONS(5012), + [anon_sym_DASH] = ACTIONS(5014), + [anon_sym_DOT] = ACTIONS(5014), + [anon_sym_SLASH] = ACTIONS(5012), + [anon_sym_COLON] = ACTIONS(5012), + [anon_sym_SEMI] = ACTIONS(5012), + [anon_sym_EQ] = ACTIONS(5012), + [anon_sym_QMARK] = ACTIONS(5012), + [anon_sym_LBRACK] = ACTIONS(5014), + [anon_sym_BSLASH] = ACTIONS(5014), + [anon_sym_CARET] = ACTIONS(5014), + [anon_sym__] = ACTIONS(5012), + [anon_sym_BQUOTE] = ACTIONS(5012), + [anon_sym_LBRACE] = ACTIONS(5012), + [anon_sym_PIPE] = ACTIONS(5012), + [anon_sym_TILDE] = ACTIONS(5012), + [anon_sym_LPAREN] = ACTIONS(5012), + [anon_sym_RPAREN] = ACTIONS(5012), + [sym__newline_token] = ACTIONS(5012), + [aux_sym_insert_token1] = ACTIONS(5012), + [aux_sym_delete_token1] = ACTIONS(5012), + [aux_sym_highlight_token1] = ACTIONS(5012), + [aux_sym_edit_comment_token1] = ACTIONS(5012), + [anon_sym_CARET_LBRACK] = ACTIONS(5012), + [anon_sym_LBRACK_CARET] = ACTIONS(5012), + [sym_uri_autolink] = ACTIONS(5012), + [sym_email_autolink] = ACTIONS(5012), + [sym__whitespace_ge_2] = ACTIONS(5012), + [aux_sym__whitespace_token1] = ACTIONS(5014), + [sym__word_no_digit] = ACTIONS(5012), + [sym__digits] = ACTIONS(5012), + [anon_sym_DASH_DASH] = ACTIONS(5014), + [anon_sym_DASH_DASH_DASH] = ACTIONS(5012), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5012), + [sym__code_span_start] = ACTIONS(5012), + [sym__emphasis_open_star] = ACTIONS(5012), + [sym__emphasis_open_underscore] = ACTIONS(5012), + [sym__strikeout_open] = ACTIONS(5012), + [sym__latex_span_start] = ACTIONS(5012), + [sym__single_quote_open] = ACTIONS(5012), + [sym__single_quote_close] = ACTIONS(5012), + [sym__double_quote_open] = ACTIONS(5012), + [sym__superscript_open] = ACTIONS(5012), + [sym__subscript_open] = ACTIONS(5012), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5012), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5012), + [sym__cite_author_in_text] = ACTIONS(5012), + [sym__cite_suppress_author] = ACTIONS(5012), + [sym__shortcode_open_escaped] = ACTIONS(5012), + [sym__shortcode_open] = ACTIONS(5012), + [sym__unclosed_span] = ACTIONS(5012), + }, + [STATE(1008)] = { + [sym__backslash_escape] = ACTIONS(4554), + [sym_entity_reference] = ACTIONS(4554), + [sym_numeric_character_reference] = ACTIONS(4554), + [anon_sym_LT] = ACTIONS(4556), + [anon_sym_GT] = ACTIONS(4554), + [anon_sym_BANG] = ACTIONS(4554), + [anon_sym_DQUOTE] = ACTIONS(4554), + [anon_sym_POUND] = ACTIONS(4554), + [anon_sym_DOLLAR] = ACTIONS(4554), + [anon_sym_PERCENT] = ACTIONS(4554), + [anon_sym_AMP] = ACTIONS(4556), + [anon_sym_SQUOTE] = ACTIONS(4554), + [anon_sym_STAR] = ACTIONS(4554), + [anon_sym_PLUS] = ACTIONS(4554), + [anon_sym_COMMA] = ACTIONS(4554), + [anon_sym_DASH] = ACTIONS(4556), + [anon_sym_DOT] = ACTIONS(4556), + [anon_sym_SLASH] = ACTIONS(4554), + [anon_sym_COLON] = ACTIONS(4554), + [anon_sym_SEMI] = ACTIONS(4554), + [anon_sym_EQ] = ACTIONS(4554), + [anon_sym_QMARK] = ACTIONS(4554), + [anon_sym_LBRACK] = ACTIONS(4556), + [anon_sym_BSLASH] = ACTIONS(4556), + [anon_sym_RBRACK] = ACTIONS(4554), + [anon_sym_CARET] = ACTIONS(4556), + [anon_sym__] = ACTIONS(4554), + [anon_sym_BQUOTE] = ACTIONS(4554), + [anon_sym_LBRACE] = ACTIONS(4554), + [anon_sym_PIPE] = ACTIONS(4554), + [anon_sym_TILDE] = ACTIONS(4554), + [anon_sym_LPAREN] = ACTIONS(4554), + [anon_sym_RPAREN] = ACTIONS(4554), + [sym__newline_token] = ACTIONS(4554), + [aux_sym_insert_token1] = ACTIONS(4554), + [aux_sym_delete_token1] = ACTIONS(4554), + [aux_sym_highlight_token1] = ACTIONS(4554), + [aux_sym_edit_comment_token1] = ACTIONS(4554), + [anon_sym_CARET_LBRACK] = ACTIONS(4554), + [anon_sym_LBRACK_CARET] = ACTIONS(4554), + [sym_uri_autolink] = ACTIONS(4554), + [sym_email_autolink] = ACTIONS(4554), + [sym__whitespace_ge_2] = ACTIONS(4554), + [aux_sym__whitespace_token1] = ACTIONS(4556), + [sym__word_no_digit] = ACTIONS(4554), + [sym__digits] = ACTIONS(4554), + [anon_sym_DASH_DASH] = ACTIONS(4556), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4554), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4554), + [sym__code_span_start] = ACTIONS(4554), + [sym__emphasis_open_star] = ACTIONS(4554), + [sym__emphasis_open_underscore] = ACTIONS(4554), + [sym__strikeout_open] = ACTIONS(4554), + [sym__latex_span_start] = ACTIONS(4554), + [sym__single_quote_open] = ACTIONS(4554), + [sym__double_quote_open] = ACTIONS(4554), + [sym__superscript_open] = ACTIONS(4554), + [sym__subscript_open] = ACTIONS(4554), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4554), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4554), + [sym__cite_author_in_text] = ACTIONS(4554), + [sym__cite_suppress_author] = ACTIONS(4554), + [sym__shortcode_open_escaped] = ACTIONS(4554), + [sym__shortcode_open] = ACTIONS(4554), + [sym__unclosed_span] = ACTIONS(4554), + }, + [STATE(1009)] = { + [sym__backslash_escape] = ACTIONS(4948), + [sym_entity_reference] = ACTIONS(4948), + [sym_numeric_character_reference] = ACTIONS(4948), + [anon_sym_LT] = ACTIONS(4950), + [anon_sym_GT] = ACTIONS(4948), + [anon_sym_BANG] = ACTIONS(4948), + [anon_sym_DQUOTE] = ACTIONS(4948), + [anon_sym_POUND] = ACTIONS(4948), + [anon_sym_DOLLAR] = ACTIONS(4948), + [anon_sym_PERCENT] = ACTIONS(4948), + [anon_sym_AMP] = ACTIONS(4950), + [anon_sym_SQUOTE] = ACTIONS(4948), + [anon_sym_STAR] = ACTIONS(4948), + [anon_sym_PLUS] = ACTIONS(4948), + [anon_sym_COMMA] = ACTIONS(4948), + [anon_sym_DASH] = ACTIONS(4950), + [anon_sym_DOT] = ACTIONS(4950), + [anon_sym_SLASH] = ACTIONS(4948), + [anon_sym_COLON] = ACTIONS(4948), + [anon_sym_SEMI] = ACTIONS(4948), + [anon_sym_EQ] = ACTIONS(4948), + [anon_sym_QMARK] = ACTIONS(4948), + [anon_sym_LBRACK] = ACTIONS(4950), + [anon_sym_BSLASH] = ACTIONS(4950), + [anon_sym_CARET] = ACTIONS(4950), + [anon_sym__] = ACTIONS(4948), + [anon_sym_BQUOTE] = ACTIONS(4948), + [anon_sym_LBRACE] = ACTIONS(4948), + [anon_sym_PIPE] = ACTIONS(4948), + [anon_sym_TILDE] = ACTIONS(4948), + [anon_sym_LPAREN] = ACTIONS(4948), + [anon_sym_RPAREN] = ACTIONS(4948), + [sym__newline_token] = ACTIONS(4948), + [aux_sym_insert_token1] = ACTIONS(4948), + [aux_sym_delete_token1] = ACTIONS(4948), + [aux_sym_highlight_token1] = ACTIONS(4948), + [aux_sym_edit_comment_token1] = ACTIONS(4948), + [anon_sym_CARET_LBRACK] = ACTIONS(4948), + [anon_sym_LBRACK_CARET] = ACTIONS(4948), + [sym_uri_autolink] = ACTIONS(4948), + [sym_email_autolink] = ACTIONS(4948), + [sym__whitespace_ge_2] = ACTIONS(4948), + [aux_sym__whitespace_token1] = ACTIONS(4950), + [sym__word_no_digit] = ACTIONS(4948), + [sym__digits] = ACTIONS(4948), + [anon_sym_DASH_DASH] = ACTIONS(4950), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4948), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4948), + [sym__code_span_start] = ACTIONS(4948), + [sym__emphasis_open_star] = ACTIONS(4948), + [sym__emphasis_open_underscore] = ACTIONS(4948), + [sym__strikeout_open] = ACTIONS(4948), + [sym__latex_span_start] = ACTIONS(4948), + [sym__single_quote_open] = ACTIONS(4948), + [sym__single_quote_close] = ACTIONS(4948), + [sym__double_quote_open] = ACTIONS(4948), + [sym__superscript_open] = ACTIONS(4948), + [sym__subscript_open] = ACTIONS(4948), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4948), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4948), + [sym__cite_author_in_text] = ACTIONS(4948), + [sym__cite_suppress_author] = ACTIONS(4948), + [sym__shortcode_open_escaped] = ACTIONS(4948), + [sym__shortcode_open] = ACTIONS(4948), + [sym__unclosed_span] = ACTIONS(4948), + }, + [STATE(1010)] = { + [sym__backslash_escape] = ACTIONS(4558), + [sym_entity_reference] = ACTIONS(4558), + [sym_numeric_character_reference] = ACTIONS(4558), + [anon_sym_LT] = ACTIONS(4560), + [anon_sym_GT] = ACTIONS(4558), + [anon_sym_BANG] = ACTIONS(4558), + [anon_sym_DQUOTE] = ACTIONS(4558), + [anon_sym_POUND] = ACTIONS(4558), + [anon_sym_DOLLAR] = ACTIONS(4558), + [anon_sym_PERCENT] = ACTIONS(4558), + [anon_sym_AMP] = ACTIONS(4560), + [anon_sym_SQUOTE] = ACTIONS(4558), + [anon_sym_STAR] = ACTIONS(4558), + [anon_sym_PLUS] = ACTIONS(4558), + [anon_sym_COMMA] = ACTIONS(4558), + [anon_sym_DASH] = ACTIONS(4560), + [anon_sym_DOT] = ACTIONS(4560), + [anon_sym_SLASH] = ACTIONS(4558), + [anon_sym_COLON] = ACTIONS(4558), + [anon_sym_SEMI] = ACTIONS(4558), + [anon_sym_EQ] = ACTIONS(4558), + [anon_sym_QMARK] = ACTIONS(4558), + [anon_sym_LBRACK] = ACTIONS(4560), + [anon_sym_BSLASH] = ACTIONS(4560), + [anon_sym_CARET] = ACTIONS(4560), + [anon_sym__] = ACTIONS(4558), + [anon_sym_BQUOTE] = ACTIONS(4558), + [anon_sym_LBRACE] = ACTIONS(4558), + [anon_sym_PIPE] = ACTIONS(4558), + [anon_sym_TILDE] = ACTIONS(4558), + [anon_sym_LPAREN] = ACTIONS(4558), + [anon_sym_RPAREN] = ACTIONS(4558), + [sym__newline_token] = ACTIONS(4558), + [aux_sym_insert_token1] = ACTIONS(4558), + [aux_sym_insert_token2] = ACTIONS(4558), + [aux_sym_delete_token1] = ACTIONS(4558), + [aux_sym_highlight_token1] = ACTIONS(4558), + [aux_sym_edit_comment_token1] = ACTIONS(4558), + [anon_sym_CARET_LBRACK] = ACTIONS(4558), + [anon_sym_LBRACK_CARET] = ACTIONS(4558), + [sym_uri_autolink] = ACTIONS(4558), + [sym_email_autolink] = ACTIONS(4558), + [sym__whitespace_ge_2] = ACTIONS(4560), + [aux_sym__whitespace_token1] = ACTIONS(4560), + [sym__word_no_digit] = ACTIONS(4558), + [sym__digits] = ACTIONS(4558), + [anon_sym_DASH_DASH] = ACTIONS(4560), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4558), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4558), + [sym__code_span_start] = ACTIONS(4558), + [sym__emphasis_open_star] = ACTIONS(4558), + [sym__emphasis_open_underscore] = ACTIONS(4558), + [sym__strikeout_open] = ACTIONS(4558), + [sym__latex_span_start] = ACTIONS(4558), + [sym__single_quote_open] = ACTIONS(4558), + [sym__double_quote_open] = ACTIONS(4558), + [sym__superscript_open] = ACTIONS(4558), + [sym__subscript_open] = ACTIONS(4558), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4558), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4558), + [sym__cite_author_in_text] = ACTIONS(4558), + [sym__cite_suppress_author] = ACTIONS(4558), + [sym__shortcode_open_escaped] = ACTIONS(4558), + [sym__shortcode_open] = ACTIONS(4558), + [sym__unclosed_span] = ACTIONS(4558), + }, + [STATE(1011)] = { + [sym__backslash_escape] = ACTIONS(5016), + [sym_entity_reference] = ACTIONS(5016), + [sym_numeric_character_reference] = ACTIONS(5016), + [anon_sym_LT] = ACTIONS(5018), + [anon_sym_GT] = ACTIONS(5016), + [anon_sym_BANG] = ACTIONS(5016), + [anon_sym_DQUOTE] = ACTIONS(5016), + [anon_sym_POUND] = ACTIONS(5016), + [anon_sym_DOLLAR] = ACTIONS(5016), + [anon_sym_PERCENT] = ACTIONS(5016), + [anon_sym_AMP] = ACTIONS(5018), + [anon_sym_SQUOTE] = ACTIONS(5016), + [anon_sym_STAR] = ACTIONS(5016), + [anon_sym_PLUS] = ACTIONS(5016), + [anon_sym_COMMA] = ACTIONS(5016), + [anon_sym_DASH] = ACTIONS(5018), + [anon_sym_DOT] = ACTIONS(5018), + [anon_sym_SLASH] = ACTIONS(5016), + [anon_sym_COLON] = ACTIONS(5016), + [anon_sym_SEMI] = ACTIONS(5016), + [anon_sym_EQ] = ACTIONS(5016), + [anon_sym_QMARK] = ACTIONS(5016), + [anon_sym_LBRACK] = ACTIONS(5018), + [anon_sym_BSLASH] = ACTIONS(5018), + [anon_sym_CARET] = ACTIONS(5018), + [anon_sym__] = ACTIONS(5016), + [anon_sym_BQUOTE] = ACTIONS(5016), + [anon_sym_LBRACE] = ACTIONS(5016), + [anon_sym_PIPE] = ACTIONS(5016), + [anon_sym_TILDE] = ACTIONS(5016), + [anon_sym_LPAREN] = ACTIONS(5016), + [anon_sym_RPAREN] = ACTIONS(5016), + [sym__newline_token] = ACTIONS(5016), + [aux_sym_insert_token1] = ACTIONS(5016), + [aux_sym_delete_token1] = ACTIONS(5016), + [aux_sym_highlight_token1] = ACTIONS(5016), + [aux_sym_edit_comment_token1] = ACTIONS(5016), + [anon_sym_CARET_LBRACK] = ACTIONS(5016), + [anon_sym_LBRACK_CARET] = ACTIONS(5016), + [sym_uri_autolink] = ACTIONS(5016), + [sym_email_autolink] = ACTIONS(5016), + [sym__whitespace_ge_2] = ACTIONS(5016), + [aux_sym__whitespace_token1] = ACTIONS(5018), + [sym__word_no_digit] = ACTIONS(5016), + [sym__digits] = ACTIONS(5016), + [anon_sym_DASH_DASH] = ACTIONS(5018), + [anon_sym_DASH_DASH_DASH] = ACTIONS(5016), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5016), + [sym__code_span_start] = ACTIONS(5016), + [sym__emphasis_open_star] = ACTIONS(5016), + [sym__emphasis_open_underscore] = ACTIONS(5016), + [sym__strikeout_open] = ACTIONS(5016), + [sym__latex_span_start] = ACTIONS(5016), + [sym__single_quote_open] = ACTIONS(5016), + [sym__single_quote_close] = ACTIONS(5016), + [sym__double_quote_open] = ACTIONS(5016), + [sym__superscript_open] = ACTIONS(5016), + [sym__subscript_open] = ACTIONS(5016), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5016), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5016), + [sym__cite_author_in_text] = ACTIONS(5016), + [sym__cite_suppress_author] = ACTIONS(5016), + [sym__shortcode_open_escaped] = ACTIONS(5016), + [sym__shortcode_open] = ACTIONS(5016), + [sym__unclosed_span] = ACTIONS(5016), + }, + [STATE(1012)] = { + [sym__backslash_escape] = ACTIONS(4562), + [sym_entity_reference] = ACTIONS(4562), + [sym_numeric_character_reference] = ACTIONS(4562), + [anon_sym_LT] = ACTIONS(4564), + [anon_sym_GT] = ACTIONS(4562), + [anon_sym_BANG] = ACTIONS(4562), + [anon_sym_DQUOTE] = ACTIONS(4562), + [anon_sym_POUND] = ACTIONS(4562), + [anon_sym_DOLLAR] = ACTIONS(4562), + [anon_sym_PERCENT] = ACTIONS(4562), + [anon_sym_AMP] = ACTIONS(4564), + [anon_sym_SQUOTE] = ACTIONS(4562), + [anon_sym_STAR] = ACTIONS(4562), + [anon_sym_PLUS] = ACTIONS(4562), + [anon_sym_COMMA] = ACTIONS(4562), + [anon_sym_DASH] = ACTIONS(4564), + [anon_sym_DOT] = ACTIONS(4564), + [anon_sym_SLASH] = ACTIONS(4562), + [anon_sym_COLON] = ACTIONS(4562), + [anon_sym_SEMI] = ACTIONS(4562), + [anon_sym_EQ] = ACTIONS(4562), + [anon_sym_QMARK] = ACTIONS(4562), + [anon_sym_LBRACK] = ACTIONS(4564), + [anon_sym_BSLASH] = ACTIONS(4564), + [anon_sym_RBRACK] = ACTIONS(4562), + [anon_sym_CARET] = ACTIONS(4564), + [anon_sym__] = ACTIONS(4562), + [anon_sym_BQUOTE] = ACTIONS(4562), + [anon_sym_LBRACE] = ACTIONS(4562), + [anon_sym_PIPE] = ACTIONS(4562), + [anon_sym_TILDE] = ACTIONS(4562), + [anon_sym_LPAREN] = ACTIONS(4562), + [anon_sym_RPAREN] = ACTIONS(4562), + [sym__newline_token] = ACTIONS(4562), + [aux_sym_insert_token1] = ACTIONS(4562), + [aux_sym_delete_token1] = ACTIONS(4562), + [aux_sym_highlight_token1] = ACTIONS(4562), + [aux_sym_edit_comment_token1] = ACTIONS(4562), + [anon_sym_CARET_LBRACK] = ACTIONS(4562), + [anon_sym_LBRACK_CARET] = ACTIONS(4562), + [sym_uri_autolink] = ACTIONS(4562), + [sym_email_autolink] = ACTIONS(4562), + [sym__whitespace_ge_2] = ACTIONS(4562), + [aux_sym__whitespace_token1] = ACTIONS(4564), + [sym__word_no_digit] = ACTIONS(4562), + [sym__digits] = ACTIONS(4562), + [anon_sym_DASH_DASH] = ACTIONS(4564), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4562), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4562), + [sym__code_span_start] = ACTIONS(4562), + [sym__emphasis_open_star] = ACTIONS(4562), + [sym__emphasis_open_underscore] = ACTIONS(4562), + [sym__strikeout_open] = ACTIONS(4562), + [sym__latex_span_start] = ACTIONS(4562), + [sym__single_quote_open] = ACTIONS(4562), + [sym__double_quote_open] = ACTIONS(4562), + [sym__superscript_open] = ACTIONS(4562), + [sym__subscript_open] = ACTIONS(4562), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4562), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4562), + [sym__cite_author_in_text] = ACTIONS(4562), + [sym__cite_suppress_author] = ACTIONS(4562), + [sym__shortcode_open_escaped] = ACTIONS(4562), + [sym__shortcode_open] = ACTIONS(4562), + [sym__unclosed_span] = ACTIONS(4562), + }, + [STATE(1013)] = { + [sym__backslash_escape] = ACTIONS(5020), + [sym_entity_reference] = ACTIONS(5020), + [sym_numeric_character_reference] = ACTIONS(5020), + [anon_sym_LT] = ACTIONS(5022), + [anon_sym_GT] = ACTIONS(5020), + [anon_sym_BANG] = ACTIONS(5020), + [anon_sym_DQUOTE] = ACTIONS(5020), + [anon_sym_POUND] = ACTIONS(5020), + [anon_sym_DOLLAR] = ACTIONS(5020), + [anon_sym_PERCENT] = ACTIONS(5020), + [anon_sym_AMP] = ACTIONS(5022), + [anon_sym_SQUOTE] = ACTIONS(5020), + [anon_sym_STAR] = ACTIONS(5020), + [anon_sym_PLUS] = ACTIONS(5020), + [anon_sym_COMMA] = ACTIONS(5020), + [anon_sym_DASH] = ACTIONS(5022), + [anon_sym_DOT] = ACTIONS(5022), + [anon_sym_SLASH] = ACTIONS(5020), + [anon_sym_COLON] = ACTIONS(5020), + [anon_sym_SEMI] = ACTIONS(5020), + [anon_sym_EQ] = ACTIONS(5020), + [anon_sym_QMARK] = ACTIONS(5020), + [anon_sym_LBRACK] = ACTIONS(5022), + [anon_sym_BSLASH] = ACTIONS(5022), + [anon_sym_CARET] = ACTIONS(5022), + [anon_sym__] = ACTIONS(5020), + [anon_sym_BQUOTE] = ACTIONS(5020), + [anon_sym_LBRACE] = ACTIONS(5020), + [anon_sym_PIPE] = ACTIONS(5020), + [anon_sym_TILDE] = ACTIONS(5020), + [anon_sym_LPAREN] = ACTIONS(5020), + [anon_sym_RPAREN] = ACTIONS(5020), + [sym__newline_token] = ACTIONS(5020), + [aux_sym_insert_token1] = ACTIONS(5020), + [aux_sym_delete_token1] = ACTIONS(5020), + [aux_sym_highlight_token1] = ACTIONS(5020), + [aux_sym_edit_comment_token1] = ACTIONS(5020), + [anon_sym_CARET_LBRACK] = ACTIONS(5020), + [anon_sym_LBRACK_CARET] = ACTIONS(5020), + [sym_uri_autolink] = ACTIONS(5020), + [sym_email_autolink] = ACTIONS(5020), + [sym__whitespace_ge_2] = ACTIONS(5020), + [aux_sym__whitespace_token1] = ACTIONS(5022), + [sym__word_no_digit] = ACTIONS(5020), + [sym__digits] = ACTIONS(5020), + [anon_sym_DASH_DASH] = ACTIONS(5022), + [anon_sym_DASH_DASH_DASH] = ACTIONS(5020), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5020), + [sym__code_span_start] = ACTIONS(5020), + [sym__emphasis_open_star] = ACTIONS(5020), + [sym__emphasis_open_underscore] = ACTIONS(5020), + [sym__strikeout_open] = ACTIONS(5020), + [sym__latex_span_start] = ACTIONS(5020), + [sym__single_quote_open] = ACTIONS(5020), + [sym__single_quote_close] = ACTIONS(5020), + [sym__double_quote_open] = ACTIONS(5020), + [sym__superscript_open] = ACTIONS(5020), + [sym__subscript_open] = ACTIONS(5020), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5020), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5020), + [sym__cite_author_in_text] = ACTIONS(5020), + [sym__cite_suppress_author] = ACTIONS(5020), + [sym__shortcode_open_escaped] = ACTIONS(5020), + [sym__shortcode_open] = ACTIONS(5020), + [sym__unclosed_span] = ACTIONS(5020), + }, + [STATE(1014)] = { + [sym__backslash_escape] = ACTIONS(4924), + [sym_entity_reference] = ACTIONS(4924), + [sym_numeric_character_reference] = ACTIONS(4924), + [anon_sym_LT] = ACTIONS(4926), + [anon_sym_GT] = ACTIONS(4924), + [anon_sym_BANG] = ACTIONS(4924), + [anon_sym_DQUOTE] = ACTIONS(4924), + [anon_sym_POUND] = ACTIONS(4924), + [anon_sym_DOLLAR] = ACTIONS(4924), + [anon_sym_PERCENT] = ACTIONS(4924), + [anon_sym_AMP] = ACTIONS(4926), + [anon_sym_SQUOTE] = ACTIONS(4924), + [anon_sym_STAR] = ACTIONS(4924), + [anon_sym_PLUS] = ACTIONS(4924), + [anon_sym_COMMA] = ACTIONS(4924), + [anon_sym_DASH] = ACTIONS(4926), + [anon_sym_DOT] = ACTIONS(4926), + [anon_sym_SLASH] = ACTIONS(4924), + [anon_sym_COLON] = ACTIONS(4924), + [anon_sym_SEMI] = ACTIONS(4924), + [anon_sym_EQ] = ACTIONS(4924), + [anon_sym_QMARK] = ACTIONS(4924), + [anon_sym_LBRACK] = ACTIONS(4926), + [anon_sym_BSLASH] = ACTIONS(4926), + [anon_sym_CARET] = ACTIONS(4926), + [anon_sym__] = ACTIONS(4924), + [anon_sym_BQUOTE] = ACTIONS(4924), + [anon_sym_LBRACE] = ACTIONS(4924), + [anon_sym_PIPE] = ACTIONS(4924), + [anon_sym_TILDE] = ACTIONS(4924), + [anon_sym_LPAREN] = ACTIONS(4924), + [anon_sym_RPAREN] = ACTIONS(4924), + [sym__newline_token] = ACTIONS(4924), + [aux_sym_insert_token1] = ACTIONS(4924), + [aux_sym_insert_token2] = ACTIONS(4924), + [aux_sym_delete_token1] = ACTIONS(4924), + [aux_sym_highlight_token1] = ACTIONS(4924), + [aux_sym_edit_comment_token1] = ACTIONS(4924), + [anon_sym_CARET_LBRACK] = ACTIONS(4924), + [anon_sym_LBRACK_CARET] = ACTIONS(4924), + [sym_uri_autolink] = ACTIONS(4924), + [sym_email_autolink] = ACTIONS(4924), + [sym__whitespace_ge_2] = ACTIONS(4926), + [aux_sym__whitespace_token1] = ACTIONS(4926), + [sym__word_no_digit] = ACTIONS(4924), + [sym__digits] = ACTIONS(4924), + [anon_sym_DASH_DASH] = ACTIONS(4926), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4924), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4924), + [sym__code_span_start] = ACTIONS(4924), + [sym__emphasis_open_star] = ACTIONS(4924), + [sym__emphasis_open_underscore] = ACTIONS(4924), + [sym__strikeout_open] = ACTIONS(4924), + [sym__latex_span_start] = ACTIONS(4924), + [sym__single_quote_open] = ACTIONS(4924), + [sym__double_quote_open] = ACTIONS(4924), + [sym__superscript_open] = ACTIONS(4924), + [sym__subscript_open] = ACTIONS(4924), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4924), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4924), + [sym__cite_author_in_text] = ACTIONS(4924), + [sym__cite_suppress_author] = ACTIONS(4924), + [sym__shortcode_open_escaped] = ACTIONS(4924), + [sym__shortcode_open] = ACTIONS(4924), + [sym__unclosed_span] = ACTIONS(4924), + }, + [STATE(1015)] = { + [sym__backslash_escape] = ACTIONS(4928), + [sym_entity_reference] = ACTIONS(4928), + [sym_numeric_character_reference] = ACTIONS(4928), + [anon_sym_LT] = ACTIONS(4930), + [anon_sym_GT] = ACTIONS(4928), + [anon_sym_BANG] = ACTIONS(4928), + [anon_sym_DQUOTE] = ACTIONS(4928), + [anon_sym_POUND] = ACTIONS(4928), + [anon_sym_DOLLAR] = ACTIONS(4928), + [anon_sym_PERCENT] = ACTIONS(4928), + [anon_sym_AMP] = ACTIONS(4930), + [anon_sym_SQUOTE] = ACTIONS(4928), + [anon_sym_STAR] = ACTIONS(4928), + [anon_sym_PLUS] = ACTIONS(4928), + [anon_sym_COMMA] = ACTIONS(4928), + [anon_sym_DASH] = ACTIONS(4930), + [anon_sym_DOT] = ACTIONS(4930), + [anon_sym_SLASH] = ACTIONS(4928), + [anon_sym_COLON] = ACTIONS(4928), + [anon_sym_SEMI] = ACTIONS(4928), + [anon_sym_EQ] = ACTIONS(4928), + [anon_sym_QMARK] = ACTIONS(4928), + [anon_sym_LBRACK] = ACTIONS(4930), + [anon_sym_BSLASH] = ACTIONS(4930), + [anon_sym_RBRACK] = ACTIONS(4928), + [anon_sym_CARET] = ACTIONS(4930), + [anon_sym__] = ACTIONS(4928), + [anon_sym_BQUOTE] = ACTIONS(4928), + [anon_sym_LBRACE] = ACTIONS(4928), + [anon_sym_PIPE] = ACTIONS(4928), + [anon_sym_TILDE] = ACTIONS(4928), + [anon_sym_LPAREN] = ACTIONS(4928), + [anon_sym_RPAREN] = ACTIONS(4928), + [sym__newline_token] = ACTIONS(4928), + [aux_sym_insert_token1] = ACTIONS(4928), + [aux_sym_delete_token1] = ACTIONS(4928), + [aux_sym_highlight_token1] = ACTIONS(4928), + [aux_sym_edit_comment_token1] = ACTIONS(4928), + [anon_sym_CARET_LBRACK] = ACTIONS(4928), + [anon_sym_LBRACK_CARET] = ACTIONS(4928), + [sym_uri_autolink] = ACTIONS(4928), + [sym_email_autolink] = ACTIONS(4928), + [sym__whitespace_ge_2] = ACTIONS(4928), + [aux_sym__whitespace_token1] = ACTIONS(4930), + [sym__word_no_digit] = ACTIONS(4928), + [sym__digits] = ACTIONS(4928), + [anon_sym_DASH_DASH] = ACTIONS(4930), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4928), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4928), + [sym__code_span_start] = ACTIONS(4928), + [sym__emphasis_open_star] = ACTIONS(4928), + [sym__emphasis_open_underscore] = ACTIONS(4928), + [sym__strikeout_open] = ACTIONS(4928), + [sym__latex_span_start] = ACTIONS(4928), + [sym__single_quote_open] = ACTIONS(4928), + [sym__double_quote_open] = ACTIONS(4928), + [sym__superscript_open] = ACTIONS(4928), + [sym__subscript_open] = ACTIONS(4928), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4928), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4928), + [sym__cite_author_in_text] = ACTIONS(4928), + [sym__cite_suppress_author] = ACTIONS(4928), + [sym__shortcode_open_escaped] = ACTIONS(4928), + [sym__shortcode_open] = ACTIONS(4928), + [sym__unclosed_span] = ACTIONS(4928), + }, + [STATE(1016)] = { + [sym__backslash_escape] = ACTIONS(4940), + [sym_entity_reference] = ACTIONS(4940), + [sym_numeric_character_reference] = ACTIONS(4940), + [anon_sym_LT] = ACTIONS(4942), + [anon_sym_GT] = ACTIONS(4940), + [anon_sym_BANG] = ACTIONS(4940), + [anon_sym_DQUOTE] = ACTIONS(4940), + [anon_sym_POUND] = ACTIONS(4940), + [anon_sym_DOLLAR] = ACTIONS(4940), + [anon_sym_PERCENT] = ACTIONS(4940), + [anon_sym_AMP] = ACTIONS(4942), + [anon_sym_SQUOTE] = ACTIONS(4940), + [anon_sym_STAR] = ACTIONS(4940), + [anon_sym_PLUS] = ACTIONS(4940), + [anon_sym_COMMA] = ACTIONS(4940), + [anon_sym_DASH] = ACTIONS(4942), + [anon_sym_DOT] = ACTIONS(4942), + [anon_sym_SLASH] = ACTIONS(4940), + [anon_sym_COLON] = ACTIONS(4940), + [anon_sym_SEMI] = ACTIONS(4940), + [anon_sym_EQ] = ACTIONS(4940), + [anon_sym_QMARK] = ACTIONS(4940), + [anon_sym_LBRACK] = ACTIONS(4942), + [anon_sym_BSLASH] = ACTIONS(4942), + [anon_sym_RBRACK] = ACTIONS(4940), + [anon_sym_CARET] = ACTIONS(4942), + [anon_sym__] = ACTIONS(4940), + [anon_sym_BQUOTE] = ACTIONS(4940), + [anon_sym_LBRACE] = ACTIONS(4940), + [anon_sym_PIPE] = ACTIONS(4940), + [anon_sym_TILDE] = ACTIONS(4940), + [anon_sym_LPAREN] = ACTIONS(4940), + [anon_sym_RPAREN] = ACTIONS(4940), + [sym__newline_token] = ACTIONS(4940), + [aux_sym_insert_token1] = ACTIONS(4940), + [aux_sym_delete_token1] = ACTIONS(4940), + [aux_sym_highlight_token1] = ACTIONS(4940), + [aux_sym_edit_comment_token1] = ACTIONS(4940), + [anon_sym_CARET_LBRACK] = ACTIONS(4940), + [anon_sym_LBRACK_CARET] = ACTIONS(4940), + [sym_uri_autolink] = ACTIONS(4940), + [sym_email_autolink] = ACTIONS(4940), + [sym__whitespace_ge_2] = ACTIONS(4940), + [aux_sym__whitespace_token1] = ACTIONS(4942), + [sym__word_no_digit] = ACTIONS(4940), + [sym__digits] = ACTIONS(4940), + [anon_sym_DASH_DASH] = ACTIONS(4942), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4940), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4940), + [sym__code_span_start] = ACTIONS(4940), + [sym__emphasis_open_star] = ACTIONS(4940), + [sym__emphasis_open_underscore] = ACTIONS(4940), + [sym__strikeout_open] = ACTIONS(4940), + [sym__latex_span_start] = ACTIONS(4940), + [sym__single_quote_open] = ACTIONS(4940), + [sym__double_quote_open] = ACTIONS(4940), + [sym__superscript_open] = ACTIONS(4940), + [sym__subscript_open] = ACTIONS(4940), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4940), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4940), + [sym__cite_author_in_text] = ACTIONS(4940), + [sym__cite_suppress_author] = ACTIONS(4940), + [sym__shortcode_open_escaped] = ACTIONS(4940), + [sym__shortcode_open] = ACTIONS(4940), + [sym__unclosed_span] = ACTIONS(4940), + }, + [STATE(1017)] = { + [sym__backslash_escape] = ACTIONS(5048), + [sym_entity_reference] = ACTIONS(5048), + [sym_numeric_character_reference] = ACTIONS(5048), + [anon_sym_LT] = ACTIONS(5050), + [anon_sym_GT] = ACTIONS(5048), + [anon_sym_BANG] = ACTIONS(5048), + [anon_sym_DQUOTE] = ACTIONS(5048), + [anon_sym_POUND] = ACTIONS(5048), + [anon_sym_DOLLAR] = ACTIONS(5048), + [anon_sym_PERCENT] = ACTIONS(5048), + [anon_sym_AMP] = ACTIONS(5050), + [anon_sym_SQUOTE] = ACTIONS(5048), + [anon_sym_STAR] = ACTIONS(5048), + [anon_sym_PLUS] = ACTIONS(5048), + [anon_sym_COMMA] = ACTIONS(5048), + [anon_sym_DASH] = ACTIONS(5050), + [anon_sym_DOT] = ACTIONS(5050), + [anon_sym_SLASH] = ACTIONS(5048), + [anon_sym_COLON] = ACTIONS(5048), + [anon_sym_SEMI] = ACTIONS(5048), + [anon_sym_EQ] = ACTIONS(5048), + [anon_sym_QMARK] = ACTIONS(5048), + [anon_sym_LBRACK] = ACTIONS(5050), + [anon_sym_BSLASH] = ACTIONS(5050), + [anon_sym_CARET] = ACTIONS(5050), + [anon_sym__] = ACTIONS(5048), + [anon_sym_BQUOTE] = ACTIONS(5048), + [anon_sym_LBRACE] = ACTIONS(5048), + [anon_sym_PIPE] = ACTIONS(5048), + [anon_sym_TILDE] = ACTIONS(5048), + [anon_sym_LPAREN] = ACTIONS(5048), + [anon_sym_RPAREN] = ACTIONS(5048), + [sym__newline_token] = ACTIONS(5048), + [aux_sym_insert_token1] = ACTIONS(5048), + [aux_sym_delete_token1] = ACTIONS(5048), + [aux_sym_highlight_token1] = ACTIONS(5048), + [aux_sym_edit_comment_token1] = ACTIONS(5048), + [anon_sym_CARET_LBRACK] = ACTIONS(5048), + [anon_sym_LBRACK_CARET] = ACTIONS(5048), + [sym_uri_autolink] = ACTIONS(5048), + [sym_email_autolink] = ACTIONS(5048), + [sym__whitespace_ge_2] = ACTIONS(5048), + [aux_sym__whitespace_token1] = ACTIONS(5050), + [sym__word_no_digit] = ACTIONS(5048), + [sym__digits] = ACTIONS(5048), + [anon_sym_DASH_DASH] = ACTIONS(5050), + [anon_sym_DASH_DASH_DASH] = ACTIONS(5048), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5048), + [sym__code_span_start] = ACTIONS(5048), + [sym__emphasis_open_star] = ACTIONS(5048), + [sym__emphasis_open_underscore] = ACTIONS(5048), + [sym__emphasis_close_underscore] = ACTIONS(5048), + [sym__strikeout_open] = ACTIONS(5048), + [sym__latex_span_start] = ACTIONS(5048), + [sym__single_quote_open] = ACTIONS(5048), + [sym__double_quote_open] = ACTIONS(5048), + [sym__superscript_open] = ACTIONS(5048), + [sym__subscript_open] = ACTIONS(5048), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5048), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5048), + [sym__cite_author_in_text] = ACTIONS(5048), + [sym__cite_suppress_author] = ACTIONS(5048), + [sym__shortcode_open_escaped] = ACTIONS(5048), + [sym__shortcode_open] = ACTIONS(5048), + [sym__unclosed_span] = ACTIONS(5048), + }, + [STATE(1018)] = { + [sym__backslash_escape] = ACTIONS(4936), + [sym_entity_reference] = ACTIONS(4936), + [sym_numeric_character_reference] = ACTIONS(4936), + [anon_sym_LT] = ACTIONS(4938), + [anon_sym_GT] = ACTIONS(4936), + [anon_sym_BANG] = ACTIONS(4936), + [anon_sym_DQUOTE] = ACTIONS(4936), + [anon_sym_POUND] = ACTIONS(4936), + [anon_sym_DOLLAR] = ACTIONS(4936), + [anon_sym_PERCENT] = ACTIONS(4936), + [anon_sym_AMP] = ACTIONS(4938), + [anon_sym_SQUOTE] = ACTIONS(4936), + [anon_sym_STAR] = ACTIONS(4936), + [anon_sym_PLUS] = ACTIONS(4936), + [anon_sym_COMMA] = ACTIONS(4936), + [anon_sym_DASH] = ACTIONS(4938), + [anon_sym_DOT] = ACTIONS(4938), + [anon_sym_SLASH] = ACTIONS(4936), + [anon_sym_COLON] = ACTIONS(4936), + [anon_sym_SEMI] = ACTIONS(4936), + [anon_sym_EQ] = ACTIONS(4936), + [anon_sym_QMARK] = ACTIONS(4936), + [anon_sym_LBRACK] = ACTIONS(4938), + [anon_sym_BSLASH] = ACTIONS(4938), + [anon_sym_CARET] = ACTIONS(4938), + [anon_sym__] = ACTIONS(4936), + [anon_sym_BQUOTE] = ACTIONS(4936), + [anon_sym_LBRACE] = ACTIONS(4936), + [anon_sym_PIPE] = ACTIONS(4936), + [anon_sym_TILDE] = ACTIONS(4936), + [anon_sym_LPAREN] = ACTIONS(4936), + [anon_sym_RPAREN] = ACTIONS(4936), + [sym__newline_token] = ACTIONS(4936), + [aux_sym_insert_token1] = ACTIONS(4936), + [aux_sym_delete_token1] = ACTIONS(4936), + [aux_sym_highlight_token1] = ACTIONS(4936), + [aux_sym_edit_comment_token1] = ACTIONS(4936), + [anon_sym_CARET_LBRACK] = ACTIONS(4936), + [anon_sym_LBRACK_CARET] = ACTIONS(4936), + [sym_uri_autolink] = ACTIONS(4936), + [sym_email_autolink] = ACTIONS(4936), + [sym__whitespace_ge_2] = ACTIONS(4936), + [aux_sym__whitespace_token1] = ACTIONS(4938), + [sym__word_no_digit] = ACTIONS(4936), + [sym__digits] = ACTIONS(4936), + [anon_sym_DASH_DASH] = ACTIONS(4938), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4936), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4936), + [sym__code_span_start] = ACTIONS(4936), + [sym__emphasis_open_star] = ACTIONS(4936), + [sym__emphasis_open_underscore] = ACTIONS(4936), + [sym__strikeout_open] = ACTIONS(4936), + [sym__latex_span_start] = ACTIONS(4936), + [sym__single_quote_open] = ACTIONS(4936), + [sym__single_quote_close] = ACTIONS(4936), + [sym__double_quote_open] = ACTIONS(4936), + [sym__superscript_open] = ACTIONS(4936), + [sym__subscript_open] = ACTIONS(4936), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4936), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4936), + [sym__cite_author_in_text] = ACTIONS(4936), + [sym__cite_suppress_author] = ACTIONS(4936), + [sym__shortcode_open_escaped] = ACTIONS(4936), + [sym__shortcode_open] = ACTIONS(4936), + [sym__unclosed_span] = ACTIONS(4936), + }, + [STATE(1019)] = { + [sym__backslash_escape] = ACTIONS(5028), + [sym_entity_reference] = ACTIONS(5028), + [sym_numeric_character_reference] = ACTIONS(5028), + [anon_sym_LT] = ACTIONS(5030), + [anon_sym_GT] = ACTIONS(5028), + [anon_sym_BANG] = ACTIONS(5028), + [anon_sym_DQUOTE] = ACTIONS(5028), + [anon_sym_POUND] = ACTIONS(5028), + [anon_sym_DOLLAR] = ACTIONS(5028), + [anon_sym_PERCENT] = ACTIONS(5028), + [anon_sym_AMP] = ACTIONS(5030), + [anon_sym_SQUOTE] = ACTIONS(5028), + [anon_sym_STAR] = ACTIONS(5028), + [anon_sym_PLUS] = ACTIONS(5028), + [anon_sym_COMMA] = ACTIONS(5028), + [anon_sym_DASH] = ACTIONS(5030), + [anon_sym_DOT] = ACTIONS(5030), + [anon_sym_SLASH] = ACTIONS(5028), + [anon_sym_COLON] = ACTIONS(5028), + [anon_sym_SEMI] = ACTIONS(5028), + [anon_sym_EQ] = ACTIONS(5028), + [anon_sym_QMARK] = ACTIONS(5028), + [anon_sym_LBRACK] = ACTIONS(5030), + [anon_sym_BSLASH] = ACTIONS(5030), + [anon_sym_CARET] = ACTIONS(5030), + [anon_sym__] = ACTIONS(5028), + [anon_sym_BQUOTE] = ACTIONS(5028), + [anon_sym_LBRACE] = ACTIONS(5028), + [anon_sym_PIPE] = ACTIONS(5028), + [anon_sym_TILDE] = ACTIONS(5028), + [anon_sym_LPAREN] = ACTIONS(5028), + [anon_sym_RPAREN] = ACTIONS(5028), + [sym__newline_token] = ACTIONS(5028), + [aux_sym_insert_token1] = ACTIONS(5028), + [aux_sym_delete_token1] = ACTIONS(5028), + [aux_sym_highlight_token1] = ACTIONS(5028), + [aux_sym_edit_comment_token1] = ACTIONS(5028), + [anon_sym_CARET_LBRACK] = ACTIONS(5028), + [anon_sym_LBRACK_CARET] = ACTIONS(5028), + [sym_uri_autolink] = ACTIONS(5028), + [sym_email_autolink] = ACTIONS(5028), + [sym__whitespace_ge_2] = ACTIONS(5028), + [aux_sym__whitespace_token1] = ACTIONS(5030), + [sym__word_no_digit] = ACTIONS(5028), + [sym__digits] = ACTIONS(5028), + [anon_sym_DASH_DASH] = ACTIONS(5030), + [anon_sym_DASH_DASH_DASH] = ACTIONS(5028), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5028), + [sym__code_span_start] = ACTIONS(5028), + [sym__emphasis_open_star] = ACTIONS(5028), + [sym__emphasis_open_underscore] = ACTIONS(5028), + [sym__strikeout_open] = ACTIONS(5028), + [sym__latex_span_start] = ACTIONS(5028), + [sym__single_quote_open] = ACTIONS(5028), + [sym__single_quote_close] = ACTIONS(5028), + [sym__double_quote_open] = ACTIONS(5028), + [sym__superscript_open] = ACTIONS(5028), + [sym__subscript_open] = ACTIONS(5028), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5028), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5028), + [sym__cite_author_in_text] = ACTIONS(5028), + [sym__cite_suppress_author] = ACTIONS(5028), + [sym__shortcode_open_escaped] = ACTIONS(5028), + [sym__shortcode_open] = ACTIONS(5028), + [sym__unclosed_span] = ACTIONS(5028), + }, + [STATE(1020)] = { + [sym__backslash_escape] = ACTIONS(5032), + [sym_entity_reference] = ACTIONS(5032), + [sym_numeric_character_reference] = ACTIONS(5032), + [anon_sym_LT] = ACTIONS(5034), + [anon_sym_GT] = ACTIONS(5032), + [anon_sym_BANG] = ACTIONS(5032), + [anon_sym_DQUOTE] = ACTIONS(5032), + [anon_sym_POUND] = ACTIONS(5032), + [anon_sym_DOLLAR] = ACTIONS(5032), + [anon_sym_PERCENT] = ACTIONS(5032), + [anon_sym_AMP] = ACTIONS(5034), + [anon_sym_SQUOTE] = ACTIONS(5032), + [anon_sym_STAR] = ACTIONS(5032), + [anon_sym_PLUS] = ACTIONS(5032), + [anon_sym_COMMA] = ACTIONS(5032), + [anon_sym_DASH] = ACTIONS(5034), + [anon_sym_DOT] = ACTIONS(5034), + [anon_sym_SLASH] = ACTIONS(5032), + [anon_sym_COLON] = ACTIONS(5032), + [anon_sym_SEMI] = ACTIONS(5032), + [anon_sym_EQ] = ACTIONS(5032), + [anon_sym_QMARK] = ACTIONS(5032), + [anon_sym_LBRACK] = ACTIONS(5034), + [anon_sym_BSLASH] = ACTIONS(5034), + [anon_sym_CARET] = ACTIONS(5034), + [anon_sym__] = ACTIONS(5032), + [anon_sym_BQUOTE] = ACTIONS(5032), + [anon_sym_LBRACE] = ACTIONS(5032), + [anon_sym_PIPE] = ACTIONS(5032), + [anon_sym_TILDE] = ACTIONS(5032), + [anon_sym_LPAREN] = ACTIONS(5032), + [anon_sym_RPAREN] = ACTIONS(5032), + [sym__newline_token] = ACTIONS(5032), + [aux_sym_insert_token1] = ACTIONS(5032), + [aux_sym_delete_token1] = ACTIONS(5032), + [aux_sym_highlight_token1] = ACTIONS(5032), + [aux_sym_edit_comment_token1] = ACTIONS(5032), + [anon_sym_CARET_LBRACK] = ACTIONS(5032), + [anon_sym_LBRACK_CARET] = ACTIONS(5032), + [sym_uri_autolink] = ACTIONS(5032), + [sym_email_autolink] = ACTIONS(5032), + [sym__whitespace_ge_2] = ACTIONS(5032), + [aux_sym__whitespace_token1] = ACTIONS(5034), + [sym__word_no_digit] = ACTIONS(5032), + [sym__digits] = ACTIONS(5032), + [anon_sym_DASH_DASH] = ACTIONS(5034), + [anon_sym_DASH_DASH_DASH] = ACTIONS(5032), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5032), + [sym__code_span_start] = ACTIONS(5032), + [sym__emphasis_open_star] = ACTIONS(5032), + [sym__emphasis_open_underscore] = ACTIONS(5032), + [sym__strikeout_open] = ACTIONS(5032), + [sym__strikeout_close] = ACTIONS(5032), + [sym__latex_span_start] = ACTIONS(5032), + [sym__single_quote_open] = ACTIONS(5032), + [sym__double_quote_open] = ACTIONS(5032), + [sym__superscript_open] = ACTIONS(5032), + [sym__subscript_open] = ACTIONS(5032), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5032), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5032), + [sym__cite_author_in_text] = ACTIONS(5032), + [sym__cite_suppress_author] = ACTIONS(5032), + [sym__shortcode_open_escaped] = ACTIONS(5032), + [sym__shortcode_open] = ACTIONS(5032), + [sym__unclosed_span] = ACTIONS(5032), + }, + [STATE(1021)] = { + [sym__backslash_escape] = ACTIONS(5036), + [sym_entity_reference] = ACTIONS(5036), + [sym_numeric_character_reference] = ACTIONS(5036), + [anon_sym_LT] = ACTIONS(5038), + [anon_sym_GT] = ACTIONS(5036), + [anon_sym_BANG] = ACTIONS(5036), + [anon_sym_DQUOTE] = ACTIONS(5036), + [anon_sym_POUND] = ACTIONS(5036), + [anon_sym_DOLLAR] = ACTIONS(5036), + [anon_sym_PERCENT] = ACTIONS(5036), + [anon_sym_AMP] = ACTIONS(5038), + [anon_sym_SQUOTE] = ACTIONS(5036), + [anon_sym_STAR] = ACTIONS(5036), + [anon_sym_PLUS] = ACTIONS(5036), + [anon_sym_COMMA] = ACTIONS(5036), + [anon_sym_DASH] = ACTIONS(5038), + [anon_sym_DOT] = ACTIONS(5038), + [anon_sym_SLASH] = ACTIONS(5036), + [anon_sym_COLON] = ACTIONS(5036), + [anon_sym_SEMI] = ACTIONS(5036), + [anon_sym_EQ] = ACTIONS(5036), + [anon_sym_QMARK] = ACTIONS(5036), + [anon_sym_LBRACK] = ACTIONS(5038), + [anon_sym_BSLASH] = ACTIONS(5038), + [anon_sym_CARET] = ACTIONS(5038), + [anon_sym__] = ACTIONS(5036), + [anon_sym_BQUOTE] = ACTIONS(5036), + [anon_sym_LBRACE] = ACTIONS(5036), + [anon_sym_PIPE] = ACTIONS(5036), + [anon_sym_TILDE] = ACTIONS(5036), + [anon_sym_LPAREN] = ACTIONS(5036), + [anon_sym_RPAREN] = ACTIONS(5036), + [sym__newline_token] = ACTIONS(5036), + [aux_sym_insert_token1] = ACTIONS(5036), + [aux_sym_delete_token1] = ACTIONS(5036), + [aux_sym_highlight_token1] = ACTIONS(5036), + [aux_sym_edit_comment_token1] = ACTIONS(5036), + [anon_sym_CARET_LBRACK] = ACTIONS(5036), + [anon_sym_LBRACK_CARET] = ACTIONS(5036), + [sym_uri_autolink] = ACTIONS(5036), + [sym_email_autolink] = ACTIONS(5036), + [sym__whitespace_ge_2] = ACTIONS(5036), + [aux_sym__whitespace_token1] = ACTIONS(5038), + [sym__word_no_digit] = ACTIONS(5036), + [sym__digits] = ACTIONS(5036), + [anon_sym_DASH_DASH] = ACTIONS(5038), + [anon_sym_DASH_DASH_DASH] = ACTIONS(5036), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5036), + [sym__code_span_start] = ACTIONS(5036), + [sym__emphasis_open_star] = ACTIONS(5036), + [sym__emphasis_open_underscore] = ACTIONS(5036), + [sym__strikeout_open] = ACTIONS(5036), + [sym__latex_span_start] = ACTIONS(5036), + [sym__single_quote_open] = ACTIONS(5036), + [sym__single_quote_close] = ACTIONS(5036), + [sym__double_quote_open] = ACTIONS(5036), + [sym__superscript_open] = ACTIONS(5036), + [sym__subscript_open] = ACTIONS(5036), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5036), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5036), + [sym__cite_author_in_text] = ACTIONS(5036), + [sym__cite_suppress_author] = ACTIONS(5036), + [sym__shortcode_open_escaped] = ACTIONS(5036), + [sym__shortcode_open] = ACTIONS(5036), + [sym__unclosed_span] = ACTIONS(5036), + }, + [STATE(1022)] = { + [sym__backslash_escape] = ACTIONS(4648), + [sym_entity_reference] = ACTIONS(4648), + [sym_numeric_character_reference] = ACTIONS(4648), + [anon_sym_LT] = ACTIONS(4650), + [anon_sym_GT] = ACTIONS(4648), + [anon_sym_BANG] = ACTIONS(4648), + [anon_sym_DQUOTE] = ACTIONS(4648), + [anon_sym_POUND] = ACTIONS(4648), + [anon_sym_DOLLAR] = ACTIONS(4648), + [anon_sym_PERCENT] = ACTIONS(4648), + [anon_sym_AMP] = ACTIONS(4650), + [anon_sym_SQUOTE] = ACTIONS(4648), + [anon_sym_STAR] = ACTIONS(4648), + [anon_sym_PLUS] = ACTIONS(4648), + [anon_sym_COMMA] = ACTIONS(4648), + [anon_sym_DASH] = ACTIONS(4650), + [anon_sym_DOT] = ACTIONS(4650), + [anon_sym_SLASH] = ACTIONS(4648), + [anon_sym_COLON] = ACTIONS(4648), + [anon_sym_SEMI] = ACTIONS(4648), + [anon_sym_EQ] = ACTIONS(4648), + [anon_sym_QMARK] = ACTIONS(4648), + [anon_sym_LBRACK] = ACTIONS(4650), + [anon_sym_BSLASH] = ACTIONS(4650), + [anon_sym_CARET] = ACTIONS(4650), + [anon_sym__] = ACTIONS(4648), + [anon_sym_BQUOTE] = ACTIONS(4648), + [anon_sym_LBRACE] = ACTIONS(4648), + [anon_sym_PIPE] = ACTIONS(4648), + [anon_sym_TILDE] = ACTIONS(4648), + [anon_sym_LPAREN] = ACTIONS(4648), + [anon_sym_RPAREN] = ACTIONS(4648), + [sym__newline_token] = ACTIONS(4648), + [aux_sym_insert_token1] = ACTIONS(4648), + [aux_sym_insert_token2] = ACTIONS(4648), + [aux_sym_delete_token1] = ACTIONS(4648), + [aux_sym_highlight_token1] = ACTIONS(4648), + [aux_sym_edit_comment_token1] = ACTIONS(4648), + [anon_sym_CARET_LBRACK] = ACTIONS(4648), + [anon_sym_LBRACK_CARET] = ACTIONS(4648), + [sym_uri_autolink] = ACTIONS(4648), + [sym_email_autolink] = ACTIONS(4648), + [sym__whitespace_ge_2] = ACTIONS(4650), + [aux_sym__whitespace_token1] = ACTIONS(4650), + [sym__word_no_digit] = ACTIONS(4648), + [sym__digits] = ACTIONS(4648), + [anon_sym_DASH_DASH] = ACTIONS(4650), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4648), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4648), + [sym__code_span_start] = ACTIONS(4648), + [sym__emphasis_open_star] = ACTIONS(4648), + [sym__emphasis_open_underscore] = ACTIONS(4648), + [sym__strikeout_open] = ACTIONS(4648), + [sym__latex_span_start] = ACTIONS(4648), + [sym__single_quote_open] = ACTIONS(4648), + [sym__double_quote_open] = ACTIONS(4648), + [sym__superscript_open] = ACTIONS(4648), + [sym__subscript_open] = ACTIONS(4648), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4648), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4648), + [sym__cite_author_in_text] = ACTIONS(4648), + [sym__cite_suppress_author] = ACTIONS(4648), + [sym__shortcode_open_escaped] = ACTIONS(4648), + [sym__shortcode_open] = ACTIONS(4648), + [sym__unclosed_span] = ACTIONS(4648), + }, + [STATE(1023)] = { + [sym__backslash_escape] = ACTIONS(4812), + [sym_entity_reference] = ACTIONS(4812), + [sym_numeric_character_reference] = ACTIONS(4812), + [anon_sym_LT] = ACTIONS(4814), + [anon_sym_GT] = ACTIONS(4812), + [anon_sym_BANG] = ACTIONS(4812), + [anon_sym_DQUOTE] = ACTIONS(4812), + [anon_sym_POUND] = ACTIONS(4812), + [anon_sym_DOLLAR] = ACTIONS(4812), + [anon_sym_PERCENT] = ACTIONS(4812), + [anon_sym_AMP] = ACTIONS(4814), + [anon_sym_SQUOTE] = ACTIONS(4812), + [anon_sym_STAR] = ACTIONS(4812), + [anon_sym_PLUS] = ACTIONS(4812), + [anon_sym_COMMA] = ACTIONS(4812), + [anon_sym_DASH] = ACTIONS(4814), + [anon_sym_DOT] = ACTIONS(4814), + [anon_sym_SLASH] = ACTIONS(4812), + [anon_sym_COLON] = ACTIONS(4812), + [anon_sym_SEMI] = ACTIONS(4812), + [anon_sym_EQ] = ACTIONS(4812), + [anon_sym_QMARK] = ACTIONS(4812), + [anon_sym_LBRACK] = ACTIONS(4814), + [anon_sym_BSLASH] = ACTIONS(4814), + [anon_sym_CARET] = ACTIONS(4814), + [anon_sym__] = ACTIONS(4812), + [anon_sym_BQUOTE] = ACTIONS(4812), + [anon_sym_LBRACE] = ACTIONS(4812), + [anon_sym_PIPE] = ACTIONS(4812), + [anon_sym_TILDE] = ACTIONS(4812), + [anon_sym_LPAREN] = ACTIONS(4812), + [anon_sym_RPAREN] = ACTIONS(4812), + [sym__newline_token] = ACTIONS(4812), + [aux_sym_insert_token1] = ACTIONS(4812), + [aux_sym_delete_token1] = ACTIONS(4812), + [aux_sym_highlight_token1] = ACTIONS(4812), + [aux_sym_edit_comment_token1] = ACTIONS(4812), + [anon_sym_CARET_LBRACK] = ACTIONS(4812), + [anon_sym_LBRACK_CARET] = ACTIONS(4812), + [sym_uri_autolink] = ACTIONS(4812), + [sym_email_autolink] = ACTIONS(4812), + [sym__whitespace_ge_2] = ACTIONS(4812), + [aux_sym__whitespace_token1] = ACTIONS(4814), + [sym__word_no_digit] = ACTIONS(4812), + [sym__digits] = ACTIONS(4812), + [anon_sym_DASH_DASH] = ACTIONS(4814), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4812), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4812), + [sym__code_span_start] = ACTIONS(4812), + [sym__emphasis_open_star] = ACTIONS(4812), + [sym__emphasis_open_underscore] = ACTIONS(4812), + [sym__strikeout_open] = ACTIONS(4812), + [sym__latex_span_start] = ACTIONS(4812), + [sym__single_quote_open] = ACTIONS(4812), + [sym__single_quote_close] = ACTIONS(4812), + [sym__double_quote_open] = ACTIONS(4812), + [sym__superscript_open] = ACTIONS(4812), + [sym__subscript_open] = ACTIONS(4812), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4812), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4812), + [sym__cite_author_in_text] = ACTIONS(4812), + [sym__cite_suppress_author] = ACTIONS(4812), + [sym__shortcode_open_escaped] = ACTIONS(4812), + [sym__shortcode_open] = ACTIONS(4812), + [sym__unclosed_span] = ACTIONS(4812), + }, + [STATE(1024)] = { + [sym__backslash_escape] = ACTIONS(4816), + [sym_entity_reference] = ACTIONS(4816), + [sym_numeric_character_reference] = ACTIONS(4816), + [anon_sym_LT] = ACTIONS(4818), + [anon_sym_GT] = ACTIONS(4816), + [anon_sym_BANG] = ACTIONS(4816), + [anon_sym_DQUOTE] = ACTIONS(4816), + [anon_sym_POUND] = ACTIONS(4816), + [anon_sym_DOLLAR] = ACTIONS(4816), + [anon_sym_PERCENT] = ACTIONS(4816), + [anon_sym_AMP] = ACTIONS(4818), + [anon_sym_SQUOTE] = ACTIONS(4816), + [anon_sym_STAR] = ACTIONS(4816), + [anon_sym_PLUS] = ACTIONS(4816), + [anon_sym_COMMA] = ACTIONS(4816), + [anon_sym_DASH] = ACTIONS(4818), + [anon_sym_DOT] = ACTIONS(4818), + [anon_sym_SLASH] = ACTIONS(4816), + [anon_sym_COLON] = ACTIONS(4816), + [anon_sym_SEMI] = ACTIONS(4816), + [anon_sym_EQ] = ACTIONS(4816), + [anon_sym_QMARK] = ACTIONS(4816), + [anon_sym_LBRACK] = ACTIONS(4818), + [anon_sym_BSLASH] = ACTIONS(4818), + [anon_sym_CARET] = ACTIONS(4818), + [anon_sym__] = ACTIONS(4816), + [anon_sym_BQUOTE] = ACTIONS(4816), + [anon_sym_LBRACE] = ACTIONS(4816), + [anon_sym_PIPE] = ACTIONS(4816), + [anon_sym_TILDE] = ACTIONS(4816), + [anon_sym_LPAREN] = ACTIONS(4816), + [anon_sym_RPAREN] = ACTIONS(4816), + [sym__newline_token] = ACTIONS(4816), + [aux_sym_insert_token1] = ACTIONS(4816), + [aux_sym_delete_token1] = ACTIONS(4816), + [aux_sym_highlight_token1] = ACTIONS(4816), + [aux_sym_edit_comment_token1] = ACTIONS(4816), + [anon_sym_CARET_LBRACK] = ACTIONS(4816), + [anon_sym_LBRACK_CARET] = ACTIONS(4816), + [sym_uri_autolink] = ACTIONS(4816), + [sym_email_autolink] = ACTIONS(4816), + [sym__whitespace_ge_2] = ACTIONS(4816), + [aux_sym__whitespace_token1] = ACTIONS(4818), + [sym__word_no_digit] = ACTIONS(4816), + [sym__digits] = ACTIONS(4816), + [anon_sym_DASH_DASH] = ACTIONS(4818), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4816), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4816), + [sym__code_span_start] = ACTIONS(4816), + [sym__emphasis_open_star] = ACTIONS(4816), + [sym__emphasis_open_underscore] = ACTIONS(4816), + [sym__strikeout_open] = ACTIONS(4816), + [sym__latex_span_start] = ACTIONS(4816), + [sym__single_quote_open] = ACTIONS(4816), + [sym__single_quote_close] = ACTIONS(4816), + [sym__double_quote_open] = ACTIONS(4816), + [sym__superscript_open] = ACTIONS(4816), + [sym__subscript_open] = ACTIONS(4816), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4816), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4816), + [sym__cite_author_in_text] = ACTIONS(4816), + [sym__cite_suppress_author] = ACTIONS(4816), + [sym__shortcode_open_escaped] = ACTIONS(4816), + [sym__shortcode_open] = ACTIONS(4816), + [sym__unclosed_span] = ACTIONS(4816), + }, + [STATE(1025)] = { + [sym__backslash_escape] = ACTIONS(4976), + [sym_entity_reference] = ACTIONS(4976), + [sym_numeric_character_reference] = ACTIONS(4976), + [anon_sym_LT] = ACTIONS(4978), + [anon_sym_GT] = ACTIONS(4976), + [anon_sym_BANG] = ACTIONS(4976), + [anon_sym_DQUOTE] = ACTIONS(4976), + [anon_sym_POUND] = ACTIONS(4976), + [anon_sym_DOLLAR] = ACTIONS(4976), + [anon_sym_PERCENT] = ACTIONS(4976), + [anon_sym_AMP] = ACTIONS(4978), + [anon_sym_SQUOTE] = ACTIONS(4976), + [anon_sym_STAR] = ACTIONS(4976), + [anon_sym_PLUS] = ACTIONS(4976), + [anon_sym_COMMA] = ACTIONS(4976), + [anon_sym_DASH] = ACTIONS(4978), + [anon_sym_DOT] = ACTIONS(4978), + [anon_sym_SLASH] = ACTIONS(4976), + [anon_sym_COLON] = ACTIONS(4976), + [anon_sym_SEMI] = ACTIONS(4976), + [anon_sym_EQ] = ACTIONS(4976), + [anon_sym_QMARK] = ACTIONS(4976), + [anon_sym_LBRACK] = ACTIONS(4978), + [anon_sym_BSLASH] = ACTIONS(4978), + [anon_sym_CARET] = ACTIONS(4978), + [anon_sym__] = ACTIONS(4976), + [anon_sym_BQUOTE] = ACTIONS(4976), + [anon_sym_LBRACE] = ACTIONS(4976), + [anon_sym_PIPE] = ACTIONS(4976), + [anon_sym_TILDE] = ACTIONS(4976), + [anon_sym_LPAREN] = ACTIONS(4976), + [anon_sym_RPAREN] = ACTIONS(4976), + [sym__newline_token] = ACTIONS(4976), + [aux_sym_insert_token1] = ACTIONS(4976), + [aux_sym_insert_token2] = ACTIONS(4976), + [aux_sym_delete_token1] = ACTIONS(4976), + [aux_sym_highlight_token1] = ACTIONS(4976), + [aux_sym_edit_comment_token1] = ACTIONS(4976), + [anon_sym_CARET_LBRACK] = ACTIONS(4976), + [anon_sym_LBRACK_CARET] = ACTIONS(4976), + [sym_uri_autolink] = ACTIONS(4976), + [sym_email_autolink] = ACTIONS(4976), + [sym__whitespace_ge_2] = ACTIONS(4978), + [aux_sym__whitespace_token1] = ACTIONS(4978), + [sym__word_no_digit] = ACTIONS(4976), + [sym__digits] = ACTIONS(4976), + [anon_sym_DASH_DASH] = ACTIONS(4978), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4976), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4976), + [sym__code_span_start] = ACTIONS(4976), + [sym__emphasis_open_star] = ACTIONS(4976), + [sym__emphasis_open_underscore] = ACTIONS(4976), + [sym__strikeout_open] = ACTIONS(4976), + [sym__latex_span_start] = ACTIONS(4976), + [sym__single_quote_open] = ACTIONS(4976), + [sym__double_quote_open] = ACTIONS(4976), + [sym__superscript_open] = ACTIONS(4976), + [sym__subscript_open] = ACTIONS(4976), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4976), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4976), + [sym__cite_author_in_text] = ACTIONS(4976), + [sym__cite_suppress_author] = ACTIONS(4976), + [sym__shortcode_open_escaped] = ACTIONS(4976), + [sym__shortcode_open] = ACTIONS(4976), + [sym__unclosed_span] = ACTIONS(4976), + }, + [STATE(1026)] = { + [sym__backslash_escape] = ACTIONS(4980), + [sym_entity_reference] = ACTIONS(4980), + [sym_numeric_character_reference] = ACTIONS(4980), + [anon_sym_LT] = ACTIONS(4982), + [anon_sym_GT] = ACTIONS(4980), + [anon_sym_BANG] = ACTIONS(4980), + [anon_sym_DQUOTE] = ACTIONS(4980), + [anon_sym_POUND] = ACTIONS(4980), + [anon_sym_DOLLAR] = ACTIONS(4980), + [anon_sym_PERCENT] = ACTIONS(4980), + [anon_sym_AMP] = ACTIONS(4982), + [anon_sym_SQUOTE] = ACTIONS(4980), + [anon_sym_STAR] = ACTIONS(4980), + [anon_sym_PLUS] = ACTIONS(4980), + [anon_sym_COMMA] = ACTIONS(4980), + [anon_sym_DASH] = ACTIONS(4982), + [anon_sym_DOT] = ACTIONS(4982), + [anon_sym_SLASH] = ACTIONS(4980), + [anon_sym_COLON] = ACTIONS(4980), + [anon_sym_SEMI] = ACTIONS(4980), + [anon_sym_EQ] = ACTIONS(4980), + [anon_sym_QMARK] = ACTIONS(4980), + [anon_sym_LBRACK] = ACTIONS(4982), + [anon_sym_BSLASH] = ACTIONS(4982), + [anon_sym_CARET] = ACTIONS(4982), + [anon_sym__] = ACTIONS(4980), + [anon_sym_BQUOTE] = ACTIONS(4980), + [anon_sym_LBRACE] = ACTIONS(4980), + [anon_sym_PIPE] = ACTIONS(4980), + [anon_sym_TILDE] = ACTIONS(4980), + [anon_sym_LPAREN] = ACTIONS(4980), + [anon_sym_RPAREN] = ACTIONS(4980), + [sym__newline_token] = ACTIONS(4980), + [aux_sym_insert_token1] = ACTIONS(4980), + [aux_sym_insert_token2] = ACTIONS(4980), + [aux_sym_delete_token1] = ACTIONS(4980), + [aux_sym_highlight_token1] = ACTIONS(4980), + [aux_sym_edit_comment_token1] = ACTIONS(4980), + [anon_sym_CARET_LBRACK] = ACTIONS(4980), + [anon_sym_LBRACK_CARET] = ACTIONS(4980), + [sym_uri_autolink] = ACTIONS(4980), + [sym_email_autolink] = ACTIONS(4980), + [sym__whitespace_ge_2] = ACTIONS(4982), + [aux_sym__whitespace_token1] = ACTIONS(4982), + [sym__word_no_digit] = ACTIONS(4980), + [sym__digits] = ACTIONS(4980), + [anon_sym_DASH_DASH] = ACTIONS(4982), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4980), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4980), + [sym__code_span_start] = ACTIONS(4980), + [sym__emphasis_open_star] = ACTIONS(4980), + [sym__emphasis_open_underscore] = ACTIONS(4980), + [sym__strikeout_open] = ACTIONS(4980), + [sym__latex_span_start] = ACTIONS(4980), + [sym__single_quote_open] = ACTIONS(4980), + [sym__double_quote_open] = ACTIONS(4980), + [sym__superscript_open] = ACTIONS(4980), + [sym__subscript_open] = ACTIONS(4980), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4980), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4980), + [sym__cite_author_in_text] = ACTIONS(4980), + [sym__cite_suppress_author] = ACTIONS(4980), + [sym__shortcode_open_escaped] = ACTIONS(4980), + [sym__shortcode_open] = ACTIONS(4980), + [sym__unclosed_span] = ACTIONS(4980), + }, + [STATE(1027)] = { + [sym__backslash_escape] = ACTIONS(4840), + [sym_entity_reference] = ACTIONS(4840), + [sym_numeric_character_reference] = ACTIONS(4840), + [anon_sym_LT] = ACTIONS(4842), + [anon_sym_GT] = ACTIONS(4840), + [anon_sym_BANG] = ACTIONS(4840), + [anon_sym_DQUOTE] = ACTIONS(4840), + [anon_sym_POUND] = ACTIONS(4840), + [anon_sym_DOLLAR] = ACTIONS(4840), + [anon_sym_PERCENT] = ACTIONS(4840), + [anon_sym_AMP] = ACTIONS(4842), + [anon_sym_SQUOTE] = ACTIONS(4840), + [anon_sym_STAR] = ACTIONS(4840), + [anon_sym_PLUS] = ACTIONS(4840), + [anon_sym_COMMA] = ACTIONS(4840), + [anon_sym_DASH] = ACTIONS(4842), + [anon_sym_DOT] = ACTIONS(4842), + [anon_sym_SLASH] = ACTIONS(4840), + [anon_sym_COLON] = ACTIONS(4840), + [anon_sym_SEMI] = ACTIONS(4840), + [anon_sym_EQ] = ACTIONS(4840), + [anon_sym_QMARK] = ACTIONS(4840), + [anon_sym_LBRACK] = ACTIONS(4842), + [anon_sym_BSLASH] = ACTIONS(4842), + [anon_sym_CARET] = ACTIONS(4842), + [anon_sym__] = ACTIONS(4840), + [anon_sym_BQUOTE] = ACTIONS(4840), + [anon_sym_LBRACE] = ACTIONS(4840), + [anon_sym_PIPE] = ACTIONS(4840), + [anon_sym_TILDE] = ACTIONS(4840), + [anon_sym_LPAREN] = ACTIONS(4840), + [anon_sym_RPAREN] = ACTIONS(4840), + [sym__newline_token] = ACTIONS(4840), + [aux_sym_insert_token1] = ACTIONS(4840), + [aux_sym_delete_token1] = ACTIONS(4840), + [aux_sym_highlight_token1] = ACTIONS(4840), + [aux_sym_edit_comment_token1] = ACTIONS(4840), + [anon_sym_CARET_LBRACK] = ACTIONS(4840), + [anon_sym_LBRACK_CARET] = ACTIONS(4840), + [sym_uri_autolink] = ACTIONS(4840), + [sym_email_autolink] = ACTIONS(4840), + [sym__whitespace_ge_2] = ACTIONS(4840), + [aux_sym__whitespace_token1] = ACTIONS(4842), + [sym__word_no_digit] = ACTIONS(4840), + [sym__digits] = ACTIONS(4840), + [anon_sym_DASH_DASH] = ACTIONS(4842), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4840), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4840), + [sym__code_span_start] = ACTIONS(4840), + [sym__emphasis_open_star] = ACTIONS(4840), + [sym__emphasis_open_underscore] = ACTIONS(4840), + [sym__strikeout_open] = ACTIONS(4840), + [sym__latex_span_start] = ACTIONS(4840), + [sym__single_quote_open] = ACTIONS(4840), + [sym__single_quote_close] = ACTIONS(4840), + [sym__double_quote_open] = ACTIONS(4840), + [sym__superscript_open] = ACTIONS(4840), + [sym__subscript_open] = ACTIONS(4840), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4840), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4840), + [sym__cite_author_in_text] = ACTIONS(4840), + [sym__cite_suppress_author] = ACTIONS(4840), + [sym__shortcode_open_escaped] = ACTIONS(4840), + [sym__shortcode_open] = ACTIONS(4840), + [sym__unclosed_span] = ACTIONS(4840), + }, + [STATE(1028)] = { + [sym__backslash_escape] = ACTIONS(4558), + [sym_entity_reference] = ACTIONS(4558), + [sym_numeric_character_reference] = ACTIONS(4558), + [anon_sym_LT] = ACTIONS(4560), + [anon_sym_GT] = ACTIONS(4558), + [anon_sym_BANG] = ACTIONS(4558), + [anon_sym_DQUOTE] = ACTIONS(4558), + [anon_sym_POUND] = ACTIONS(4558), + [anon_sym_DOLLAR] = ACTIONS(4558), + [anon_sym_PERCENT] = ACTIONS(4558), + [anon_sym_AMP] = ACTIONS(4560), + [anon_sym_SQUOTE] = ACTIONS(4558), + [anon_sym_STAR] = ACTIONS(4558), + [anon_sym_PLUS] = ACTIONS(4558), + [anon_sym_COMMA] = ACTIONS(4558), + [anon_sym_DASH] = ACTIONS(4560), + [anon_sym_DOT] = ACTIONS(4560), + [anon_sym_SLASH] = ACTIONS(4558), + [anon_sym_COLON] = ACTIONS(4558), + [anon_sym_SEMI] = ACTIONS(4558), + [anon_sym_EQ] = ACTIONS(4558), + [anon_sym_QMARK] = ACTIONS(4558), + [anon_sym_LBRACK] = ACTIONS(4560), + [anon_sym_BSLASH] = ACTIONS(4560), + [anon_sym_CARET] = ACTIONS(4560), + [anon_sym__] = ACTIONS(4558), + [anon_sym_BQUOTE] = ACTIONS(4558), + [anon_sym_LBRACE] = ACTIONS(4558), + [anon_sym_PIPE] = ACTIONS(4558), + [anon_sym_TILDE] = ACTIONS(4558), + [anon_sym_LPAREN] = ACTIONS(4558), + [anon_sym_RPAREN] = ACTIONS(4558), + [sym__newline_token] = ACTIONS(4558), + [aux_sym_insert_token1] = ACTIONS(4558), + [aux_sym_delete_token1] = ACTIONS(4558), + [aux_sym_highlight_token1] = ACTIONS(4558), + [aux_sym_edit_comment_token1] = ACTIONS(4558), + [anon_sym_CARET_LBRACK] = ACTIONS(4558), + [anon_sym_LBRACK_CARET] = ACTIONS(4558), + [sym_uri_autolink] = ACTIONS(4558), + [sym_email_autolink] = ACTIONS(4558), + [sym__whitespace_ge_2] = ACTIONS(4558), + [aux_sym__whitespace_token1] = ACTIONS(4560), + [sym__word_no_digit] = ACTIONS(4558), + [sym__digits] = ACTIONS(4558), + [anon_sym_DASH_DASH] = ACTIONS(4560), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4558), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4558), + [sym__code_span_start] = ACTIONS(4558), + [sym__emphasis_open_star] = ACTIONS(4558), + [sym__emphasis_open_underscore] = ACTIONS(4558), + [sym__emphasis_close_underscore] = ACTIONS(4558), + [sym__strikeout_open] = ACTIONS(4558), + [sym__latex_span_start] = ACTIONS(4558), + [sym__single_quote_open] = ACTIONS(4558), + [sym__double_quote_open] = ACTIONS(4558), + [sym__superscript_open] = ACTIONS(4558), + [sym__subscript_open] = ACTIONS(4558), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4558), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4558), + [sym__cite_author_in_text] = ACTIONS(4558), + [sym__cite_suppress_author] = ACTIONS(4558), + [sym__shortcode_open_escaped] = ACTIONS(4558), + [sym__shortcode_open] = ACTIONS(4558), + [sym__unclosed_span] = ACTIONS(4558), + }, + [STATE(1029)] = { + [sym__backslash_escape] = ACTIONS(4996), + [sym_entity_reference] = ACTIONS(4996), + [sym_numeric_character_reference] = ACTIONS(4996), + [anon_sym_LT] = ACTIONS(4998), + [anon_sym_GT] = ACTIONS(4996), + [anon_sym_BANG] = ACTIONS(4996), + [anon_sym_DQUOTE] = ACTIONS(4996), + [anon_sym_POUND] = ACTIONS(4996), + [anon_sym_DOLLAR] = ACTIONS(4996), + [anon_sym_PERCENT] = ACTIONS(4996), + [anon_sym_AMP] = ACTIONS(4998), + [anon_sym_SQUOTE] = ACTIONS(4996), + [anon_sym_STAR] = ACTIONS(4996), + [anon_sym_PLUS] = ACTIONS(4996), + [anon_sym_COMMA] = ACTIONS(4996), + [anon_sym_DASH] = ACTIONS(4998), + [anon_sym_DOT] = ACTIONS(4998), + [anon_sym_SLASH] = ACTIONS(4996), + [anon_sym_COLON] = ACTIONS(4996), + [anon_sym_SEMI] = ACTIONS(4996), + [anon_sym_EQ] = ACTIONS(4996), + [anon_sym_QMARK] = ACTIONS(4996), + [anon_sym_LBRACK] = ACTIONS(4998), + [anon_sym_BSLASH] = ACTIONS(4998), + [anon_sym_CARET] = ACTIONS(4998), + [anon_sym__] = ACTIONS(4996), + [anon_sym_BQUOTE] = ACTIONS(4996), + [anon_sym_LBRACE] = ACTIONS(4996), + [anon_sym_PIPE] = ACTIONS(4996), + [anon_sym_TILDE] = ACTIONS(4996), + [anon_sym_LPAREN] = ACTIONS(4996), + [anon_sym_RPAREN] = ACTIONS(4996), + [sym__newline_token] = ACTIONS(4996), + [aux_sym_insert_token1] = ACTIONS(4996), + [aux_sym_insert_token2] = ACTIONS(4996), + [aux_sym_delete_token1] = ACTIONS(4996), + [aux_sym_highlight_token1] = ACTIONS(4996), + [aux_sym_edit_comment_token1] = ACTIONS(4996), + [anon_sym_CARET_LBRACK] = ACTIONS(4996), + [anon_sym_LBRACK_CARET] = ACTIONS(4996), + [sym_uri_autolink] = ACTIONS(4996), + [sym_email_autolink] = ACTIONS(4996), + [sym__whitespace_ge_2] = ACTIONS(4998), + [aux_sym__whitespace_token1] = ACTIONS(4998), + [sym__word_no_digit] = ACTIONS(4996), + [sym__digits] = ACTIONS(4996), + [anon_sym_DASH_DASH] = ACTIONS(4998), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4996), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4996), + [sym__code_span_start] = ACTIONS(4996), + [sym__emphasis_open_star] = ACTIONS(4996), + [sym__emphasis_open_underscore] = ACTIONS(4996), + [sym__strikeout_open] = ACTIONS(4996), + [sym__latex_span_start] = ACTIONS(4996), + [sym__single_quote_open] = ACTIONS(4996), + [sym__double_quote_open] = ACTIONS(4996), + [sym__superscript_open] = ACTIONS(4996), + [sym__subscript_open] = ACTIONS(4996), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4996), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4996), + [sym__cite_author_in_text] = ACTIONS(4996), + [sym__cite_suppress_author] = ACTIONS(4996), + [sym__shortcode_open_escaped] = ACTIONS(4996), + [sym__shortcode_open] = ACTIONS(4996), + [sym__unclosed_span] = ACTIONS(4996), + }, + [STATE(1030)] = { + [sym__backslash_escape] = ACTIONS(5000), + [sym_entity_reference] = ACTIONS(5000), + [sym_numeric_character_reference] = ACTIONS(5000), + [anon_sym_LT] = ACTIONS(5002), + [anon_sym_GT] = ACTIONS(5000), + [anon_sym_BANG] = ACTIONS(5000), + [anon_sym_DQUOTE] = ACTIONS(5000), + [anon_sym_POUND] = ACTIONS(5000), + [anon_sym_DOLLAR] = ACTIONS(5000), + [anon_sym_PERCENT] = ACTIONS(5000), + [anon_sym_AMP] = ACTIONS(5002), + [anon_sym_SQUOTE] = ACTIONS(5000), + [anon_sym_STAR] = ACTIONS(5000), + [anon_sym_PLUS] = ACTIONS(5000), + [anon_sym_COMMA] = ACTIONS(5000), + [anon_sym_DASH] = ACTIONS(5002), + [anon_sym_DOT] = ACTIONS(5002), + [anon_sym_SLASH] = ACTIONS(5000), + [anon_sym_COLON] = ACTIONS(5000), + [anon_sym_SEMI] = ACTIONS(5000), + [anon_sym_EQ] = ACTIONS(5000), + [anon_sym_QMARK] = ACTIONS(5000), + [anon_sym_LBRACK] = ACTIONS(5002), + [anon_sym_BSLASH] = ACTIONS(5002), + [anon_sym_CARET] = ACTIONS(5002), + [anon_sym__] = ACTIONS(5000), + [anon_sym_BQUOTE] = ACTIONS(5000), + [anon_sym_LBRACE] = ACTIONS(5000), + [anon_sym_PIPE] = ACTIONS(5000), + [anon_sym_TILDE] = ACTIONS(5000), + [anon_sym_LPAREN] = ACTIONS(5000), + [anon_sym_RPAREN] = ACTIONS(5000), + [sym__newline_token] = ACTIONS(5000), + [aux_sym_insert_token1] = ACTIONS(5000), + [aux_sym_insert_token2] = ACTIONS(5000), + [aux_sym_delete_token1] = ACTIONS(5000), + [aux_sym_highlight_token1] = ACTIONS(5000), + [aux_sym_edit_comment_token1] = ACTIONS(5000), + [anon_sym_CARET_LBRACK] = ACTIONS(5000), + [anon_sym_LBRACK_CARET] = ACTIONS(5000), + [sym_uri_autolink] = ACTIONS(5000), + [sym_email_autolink] = ACTIONS(5000), + [sym__whitespace_ge_2] = ACTIONS(5002), + [aux_sym__whitespace_token1] = ACTIONS(5002), + [sym__word_no_digit] = ACTIONS(5000), + [sym__digits] = ACTIONS(5000), + [anon_sym_DASH_DASH] = ACTIONS(5002), + [anon_sym_DASH_DASH_DASH] = ACTIONS(5000), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5000), + [sym__code_span_start] = ACTIONS(5000), + [sym__emphasis_open_star] = ACTIONS(5000), + [sym__emphasis_open_underscore] = ACTIONS(5000), + [sym__strikeout_open] = ACTIONS(5000), + [sym__latex_span_start] = ACTIONS(5000), + [sym__single_quote_open] = ACTIONS(5000), + [sym__double_quote_open] = ACTIONS(5000), + [sym__superscript_open] = ACTIONS(5000), + [sym__subscript_open] = ACTIONS(5000), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5000), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5000), + [sym__cite_author_in_text] = ACTIONS(5000), + [sym__cite_suppress_author] = ACTIONS(5000), + [sym__shortcode_open_escaped] = ACTIONS(5000), + [sym__shortcode_open] = ACTIONS(5000), + [sym__unclosed_span] = ACTIONS(5000), + }, + [STATE(1031)] = { + [sym__backslash_escape] = ACTIONS(5004), + [sym_entity_reference] = ACTIONS(5004), + [sym_numeric_character_reference] = ACTIONS(5004), + [anon_sym_LT] = ACTIONS(5006), + [anon_sym_GT] = ACTIONS(5004), + [anon_sym_BANG] = ACTIONS(5004), + [anon_sym_DQUOTE] = ACTIONS(5004), + [anon_sym_POUND] = ACTIONS(5004), + [anon_sym_DOLLAR] = ACTIONS(5004), + [anon_sym_PERCENT] = ACTIONS(5004), + [anon_sym_AMP] = ACTIONS(5006), + [anon_sym_SQUOTE] = ACTIONS(5004), + [anon_sym_STAR] = ACTIONS(5004), + [anon_sym_PLUS] = ACTIONS(5004), + [anon_sym_COMMA] = ACTIONS(5004), + [anon_sym_DASH] = ACTIONS(5006), + [anon_sym_DOT] = ACTIONS(5006), + [anon_sym_SLASH] = ACTIONS(5004), + [anon_sym_COLON] = ACTIONS(5004), + [anon_sym_SEMI] = ACTIONS(5004), + [anon_sym_EQ] = ACTIONS(5004), + [anon_sym_QMARK] = ACTIONS(5004), + [anon_sym_LBRACK] = ACTIONS(5006), + [anon_sym_BSLASH] = ACTIONS(5006), + [anon_sym_CARET] = ACTIONS(5006), + [anon_sym__] = ACTIONS(5004), + [anon_sym_BQUOTE] = ACTIONS(5004), + [anon_sym_LBRACE] = ACTIONS(5004), + [anon_sym_PIPE] = ACTIONS(5004), + [anon_sym_TILDE] = ACTIONS(5004), + [anon_sym_LPAREN] = ACTIONS(5004), + [anon_sym_RPAREN] = ACTIONS(5004), + [sym__newline_token] = ACTIONS(5004), + [aux_sym_insert_token1] = ACTIONS(5004), + [aux_sym_insert_token2] = ACTIONS(5004), + [aux_sym_delete_token1] = ACTIONS(5004), + [aux_sym_highlight_token1] = ACTIONS(5004), + [aux_sym_edit_comment_token1] = ACTIONS(5004), + [anon_sym_CARET_LBRACK] = ACTIONS(5004), + [anon_sym_LBRACK_CARET] = ACTIONS(5004), + [sym_uri_autolink] = ACTIONS(5004), + [sym_email_autolink] = ACTIONS(5004), + [sym__whitespace_ge_2] = ACTIONS(5006), + [aux_sym__whitespace_token1] = ACTIONS(5006), + [sym__word_no_digit] = ACTIONS(5004), + [sym__digits] = ACTIONS(5004), + [anon_sym_DASH_DASH] = ACTIONS(5006), + [anon_sym_DASH_DASH_DASH] = ACTIONS(5004), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5004), + [sym__code_span_start] = ACTIONS(5004), + [sym__emphasis_open_star] = ACTIONS(5004), + [sym__emphasis_open_underscore] = ACTIONS(5004), + [sym__strikeout_open] = ACTIONS(5004), + [sym__latex_span_start] = ACTIONS(5004), + [sym__single_quote_open] = ACTIONS(5004), + [sym__double_quote_open] = ACTIONS(5004), + [sym__superscript_open] = ACTIONS(5004), + [sym__subscript_open] = ACTIONS(5004), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5004), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5004), + [sym__cite_author_in_text] = ACTIONS(5004), + [sym__cite_suppress_author] = ACTIONS(5004), + [sym__shortcode_open_escaped] = ACTIONS(5004), + [sym__shortcode_open] = ACTIONS(5004), + [sym__unclosed_span] = ACTIONS(5004), + }, + [STATE(1032)] = { + [sym__backslash_escape] = ACTIONS(5008), + [sym_entity_reference] = ACTIONS(5008), + [sym_numeric_character_reference] = ACTIONS(5008), + [anon_sym_LT] = ACTIONS(5010), + [anon_sym_GT] = ACTIONS(5008), + [anon_sym_BANG] = ACTIONS(5008), + [anon_sym_DQUOTE] = ACTIONS(5008), + [anon_sym_POUND] = ACTIONS(5008), + [anon_sym_DOLLAR] = ACTIONS(5008), + [anon_sym_PERCENT] = ACTIONS(5008), + [anon_sym_AMP] = ACTIONS(5010), + [anon_sym_SQUOTE] = ACTIONS(5008), + [anon_sym_STAR] = ACTIONS(5008), + [anon_sym_PLUS] = ACTIONS(5008), + [anon_sym_COMMA] = ACTIONS(5008), + [anon_sym_DASH] = ACTIONS(5010), + [anon_sym_DOT] = ACTIONS(5010), + [anon_sym_SLASH] = ACTIONS(5008), + [anon_sym_COLON] = ACTIONS(5008), + [anon_sym_SEMI] = ACTIONS(5008), + [anon_sym_EQ] = ACTIONS(5008), + [anon_sym_QMARK] = ACTIONS(5008), + [anon_sym_LBRACK] = ACTIONS(5010), + [anon_sym_BSLASH] = ACTIONS(5010), + [anon_sym_CARET] = ACTIONS(5010), + [anon_sym__] = ACTIONS(5008), + [anon_sym_BQUOTE] = ACTIONS(5008), + [anon_sym_LBRACE] = ACTIONS(5008), + [anon_sym_PIPE] = ACTIONS(5008), + [anon_sym_TILDE] = ACTIONS(5008), + [anon_sym_LPAREN] = ACTIONS(5008), + [anon_sym_RPAREN] = ACTIONS(5008), + [sym__newline_token] = ACTIONS(5008), + [aux_sym_insert_token1] = ACTIONS(5008), + [aux_sym_insert_token2] = ACTIONS(5008), + [aux_sym_delete_token1] = ACTIONS(5008), + [aux_sym_highlight_token1] = ACTIONS(5008), + [aux_sym_edit_comment_token1] = ACTIONS(5008), + [anon_sym_CARET_LBRACK] = ACTIONS(5008), + [anon_sym_LBRACK_CARET] = ACTIONS(5008), + [sym_uri_autolink] = ACTIONS(5008), + [sym_email_autolink] = ACTIONS(5008), + [sym__whitespace_ge_2] = ACTIONS(5010), + [aux_sym__whitespace_token1] = ACTIONS(5010), + [sym__word_no_digit] = ACTIONS(5008), + [sym__digits] = ACTIONS(5008), + [anon_sym_DASH_DASH] = ACTIONS(5010), + [anon_sym_DASH_DASH_DASH] = ACTIONS(5008), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5008), + [sym__code_span_start] = ACTIONS(5008), + [sym__emphasis_open_star] = ACTIONS(5008), + [sym__emphasis_open_underscore] = ACTIONS(5008), + [sym__strikeout_open] = ACTIONS(5008), + [sym__latex_span_start] = ACTIONS(5008), + [sym__single_quote_open] = ACTIONS(5008), + [sym__double_quote_open] = ACTIONS(5008), + [sym__superscript_open] = ACTIONS(5008), + [sym__subscript_open] = ACTIONS(5008), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5008), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5008), + [sym__cite_author_in_text] = ACTIONS(5008), + [sym__cite_suppress_author] = ACTIONS(5008), + [sym__shortcode_open_escaped] = ACTIONS(5008), + [sym__shortcode_open] = ACTIONS(5008), + [sym__unclosed_span] = ACTIONS(5008), + }, + [STATE(1033)] = { + [sym__backslash_escape] = ACTIONS(5012), + [sym_entity_reference] = ACTIONS(5012), + [sym_numeric_character_reference] = ACTIONS(5012), + [anon_sym_LT] = ACTIONS(5014), + [anon_sym_GT] = ACTIONS(5012), + [anon_sym_BANG] = ACTIONS(5012), + [anon_sym_DQUOTE] = ACTIONS(5012), + [anon_sym_POUND] = ACTIONS(5012), + [anon_sym_DOLLAR] = ACTIONS(5012), + [anon_sym_PERCENT] = ACTIONS(5012), + [anon_sym_AMP] = ACTIONS(5014), + [anon_sym_SQUOTE] = ACTIONS(5012), + [anon_sym_STAR] = ACTIONS(5012), + [anon_sym_PLUS] = ACTIONS(5012), + [anon_sym_COMMA] = ACTIONS(5012), + [anon_sym_DASH] = ACTIONS(5014), + [anon_sym_DOT] = ACTIONS(5014), + [anon_sym_SLASH] = ACTIONS(5012), + [anon_sym_COLON] = ACTIONS(5012), + [anon_sym_SEMI] = ACTIONS(5012), + [anon_sym_EQ] = ACTIONS(5012), + [anon_sym_QMARK] = ACTIONS(5012), + [anon_sym_LBRACK] = ACTIONS(5014), + [anon_sym_BSLASH] = ACTIONS(5014), + [anon_sym_CARET] = ACTIONS(5014), + [anon_sym__] = ACTIONS(5012), + [anon_sym_BQUOTE] = ACTIONS(5012), + [anon_sym_LBRACE] = ACTIONS(5012), + [anon_sym_PIPE] = ACTIONS(5012), + [anon_sym_TILDE] = ACTIONS(5012), + [anon_sym_LPAREN] = ACTIONS(5012), + [anon_sym_RPAREN] = ACTIONS(5012), + [sym__newline_token] = ACTIONS(5012), + [aux_sym_insert_token1] = ACTIONS(5012), + [aux_sym_insert_token2] = ACTIONS(5012), + [aux_sym_delete_token1] = ACTIONS(5012), + [aux_sym_highlight_token1] = ACTIONS(5012), + [aux_sym_edit_comment_token1] = ACTIONS(5012), + [anon_sym_CARET_LBRACK] = ACTIONS(5012), + [anon_sym_LBRACK_CARET] = ACTIONS(5012), + [sym_uri_autolink] = ACTIONS(5012), + [sym_email_autolink] = ACTIONS(5012), + [sym__whitespace_ge_2] = ACTIONS(5014), + [aux_sym__whitespace_token1] = ACTIONS(5014), + [sym__word_no_digit] = ACTIONS(5012), + [sym__digits] = ACTIONS(5012), + [anon_sym_DASH_DASH] = ACTIONS(5014), + [anon_sym_DASH_DASH_DASH] = ACTIONS(5012), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5012), + [sym__code_span_start] = ACTIONS(5012), + [sym__emphasis_open_star] = ACTIONS(5012), + [sym__emphasis_open_underscore] = ACTIONS(5012), + [sym__strikeout_open] = ACTIONS(5012), + [sym__latex_span_start] = ACTIONS(5012), + [sym__single_quote_open] = ACTIONS(5012), + [sym__double_quote_open] = ACTIONS(5012), + [sym__superscript_open] = ACTIONS(5012), + [sym__subscript_open] = ACTIONS(5012), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5012), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5012), + [sym__cite_author_in_text] = ACTIONS(5012), + [sym__cite_suppress_author] = ACTIONS(5012), + [sym__shortcode_open_escaped] = ACTIONS(5012), + [sym__shortcode_open] = ACTIONS(5012), + [sym__unclosed_span] = ACTIONS(5012), + }, + [STATE(1034)] = { + [sym__backslash_escape] = ACTIONS(4948), + [sym_entity_reference] = ACTIONS(4948), + [sym_numeric_character_reference] = ACTIONS(4948), + [anon_sym_LT] = ACTIONS(4950), + [anon_sym_GT] = ACTIONS(4948), + [anon_sym_BANG] = ACTIONS(4948), + [anon_sym_DQUOTE] = ACTIONS(4948), + [anon_sym_POUND] = ACTIONS(4948), + [anon_sym_DOLLAR] = ACTIONS(4948), + [anon_sym_PERCENT] = ACTIONS(4948), + [anon_sym_AMP] = ACTIONS(4950), + [anon_sym_SQUOTE] = ACTIONS(4948), + [anon_sym_STAR] = ACTIONS(4948), + [anon_sym_PLUS] = ACTIONS(4948), + [anon_sym_COMMA] = ACTIONS(4948), + [anon_sym_DASH] = ACTIONS(4950), + [anon_sym_DOT] = ACTIONS(4950), + [anon_sym_SLASH] = ACTIONS(4948), + [anon_sym_COLON] = ACTIONS(4948), + [anon_sym_SEMI] = ACTIONS(4948), + [anon_sym_EQ] = ACTIONS(4948), + [anon_sym_QMARK] = ACTIONS(4948), + [anon_sym_LBRACK] = ACTIONS(4950), + [anon_sym_BSLASH] = ACTIONS(4950), + [anon_sym_CARET] = ACTIONS(4950), + [anon_sym__] = ACTIONS(4948), + [anon_sym_BQUOTE] = ACTIONS(4948), + [anon_sym_LBRACE] = ACTIONS(4948), + [anon_sym_PIPE] = ACTIONS(4948), + [anon_sym_TILDE] = ACTIONS(4948), + [anon_sym_LPAREN] = ACTIONS(4948), + [anon_sym_RPAREN] = ACTIONS(4948), + [sym__newline_token] = ACTIONS(4948), + [aux_sym_insert_token1] = ACTIONS(4948), + [aux_sym_insert_token2] = ACTIONS(4948), + [aux_sym_delete_token1] = ACTIONS(4948), + [aux_sym_highlight_token1] = ACTIONS(4948), + [aux_sym_edit_comment_token1] = ACTIONS(4948), + [anon_sym_CARET_LBRACK] = ACTIONS(4948), + [anon_sym_LBRACK_CARET] = ACTIONS(4948), + [sym_uri_autolink] = ACTIONS(4948), + [sym_email_autolink] = ACTIONS(4948), + [sym__whitespace_ge_2] = ACTIONS(4950), + [aux_sym__whitespace_token1] = ACTIONS(4950), + [sym__word_no_digit] = ACTIONS(4948), + [sym__digits] = ACTIONS(4948), + [anon_sym_DASH_DASH] = ACTIONS(4950), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4948), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4948), + [sym__code_span_start] = ACTIONS(4948), + [sym__emphasis_open_star] = ACTIONS(4948), + [sym__emphasis_open_underscore] = ACTIONS(4948), + [sym__strikeout_open] = ACTIONS(4948), + [sym__latex_span_start] = ACTIONS(4948), + [sym__single_quote_open] = ACTIONS(4948), + [sym__double_quote_open] = ACTIONS(4948), + [sym__superscript_open] = ACTIONS(4948), + [sym__subscript_open] = ACTIONS(4948), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4948), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4948), + [sym__cite_author_in_text] = ACTIONS(4948), + [sym__cite_suppress_author] = ACTIONS(4948), + [sym__shortcode_open_escaped] = ACTIONS(4948), + [sym__shortcode_open] = ACTIONS(4948), + [sym__unclosed_span] = ACTIONS(4948), + }, + [STATE(1035)] = { + [sym__backslash_escape] = ACTIONS(5016), + [sym_entity_reference] = ACTIONS(5016), + [sym_numeric_character_reference] = ACTIONS(5016), + [anon_sym_LT] = ACTIONS(5018), + [anon_sym_GT] = ACTIONS(5016), + [anon_sym_BANG] = ACTIONS(5016), + [anon_sym_DQUOTE] = ACTIONS(5016), + [anon_sym_POUND] = ACTIONS(5016), + [anon_sym_DOLLAR] = ACTIONS(5016), + [anon_sym_PERCENT] = ACTIONS(5016), + [anon_sym_AMP] = ACTIONS(5018), + [anon_sym_SQUOTE] = ACTIONS(5016), + [anon_sym_STAR] = ACTIONS(5016), + [anon_sym_PLUS] = ACTIONS(5016), + [anon_sym_COMMA] = ACTIONS(5016), + [anon_sym_DASH] = ACTIONS(5018), + [anon_sym_DOT] = ACTIONS(5018), + [anon_sym_SLASH] = ACTIONS(5016), + [anon_sym_COLON] = ACTIONS(5016), + [anon_sym_SEMI] = ACTIONS(5016), + [anon_sym_EQ] = ACTIONS(5016), + [anon_sym_QMARK] = ACTIONS(5016), + [anon_sym_LBRACK] = ACTIONS(5018), + [anon_sym_BSLASH] = ACTIONS(5018), + [anon_sym_CARET] = ACTIONS(5018), + [anon_sym__] = ACTIONS(5016), + [anon_sym_BQUOTE] = ACTIONS(5016), + [anon_sym_LBRACE] = ACTIONS(5016), + [anon_sym_PIPE] = ACTIONS(5016), + [anon_sym_TILDE] = ACTIONS(5016), + [anon_sym_LPAREN] = ACTIONS(5016), + [anon_sym_RPAREN] = ACTIONS(5016), + [sym__newline_token] = ACTIONS(5016), + [aux_sym_insert_token1] = ACTIONS(5016), + [aux_sym_insert_token2] = ACTIONS(5016), + [aux_sym_delete_token1] = ACTIONS(5016), + [aux_sym_highlight_token1] = ACTIONS(5016), + [aux_sym_edit_comment_token1] = ACTIONS(5016), + [anon_sym_CARET_LBRACK] = ACTIONS(5016), + [anon_sym_LBRACK_CARET] = ACTIONS(5016), + [sym_uri_autolink] = ACTIONS(5016), + [sym_email_autolink] = ACTIONS(5016), + [sym__whitespace_ge_2] = ACTIONS(5018), + [aux_sym__whitespace_token1] = ACTIONS(5018), + [sym__word_no_digit] = ACTIONS(5016), + [sym__digits] = ACTIONS(5016), + [anon_sym_DASH_DASH] = ACTIONS(5018), + [anon_sym_DASH_DASH_DASH] = ACTIONS(5016), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5016), + [sym__code_span_start] = ACTIONS(5016), + [sym__emphasis_open_star] = ACTIONS(5016), + [sym__emphasis_open_underscore] = ACTIONS(5016), + [sym__strikeout_open] = ACTIONS(5016), + [sym__latex_span_start] = ACTIONS(5016), + [sym__single_quote_open] = ACTIONS(5016), + [sym__double_quote_open] = ACTIONS(5016), + [sym__superscript_open] = ACTIONS(5016), + [sym__subscript_open] = ACTIONS(5016), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5016), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5016), + [sym__cite_author_in_text] = ACTIONS(5016), + [sym__cite_suppress_author] = ACTIONS(5016), + [sym__shortcode_open_escaped] = ACTIONS(5016), + [sym__shortcode_open] = ACTIONS(5016), + [sym__unclosed_span] = ACTIONS(5016), + }, + [STATE(1036)] = { + [sym__backslash_escape] = ACTIONS(5020), + [sym_entity_reference] = ACTIONS(5020), + [sym_numeric_character_reference] = ACTIONS(5020), + [anon_sym_LT] = ACTIONS(5022), + [anon_sym_GT] = ACTIONS(5020), + [anon_sym_BANG] = ACTIONS(5020), + [anon_sym_DQUOTE] = ACTIONS(5020), + [anon_sym_POUND] = ACTIONS(5020), + [anon_sym_DOLLAR] = ACTIONS(5020), + [anon_sym_PERCENT] = ACTIONS(5020), + [anon_sym_AMP] = ACTIONS(5022), + [anon_sym_SQUOTE] = ACTIONS(5020), + [anon_sym_STAR] = ACTIONS(5020), + [anon_sym_PLUS] = ACTIONS(5020), + [anon_sym_COMMA] = ACTIONS(5020), + [anon_sym_DASH] = ACTIONS(5022), + [anon_sym_DOT] = ACTIONS(5022), + [anon_sym_SLASH] = ACTIONS(5020), + [anon_sym_COLON] = ACTIONS(5020), + [anon_sym_SEMI] = ACTIONS(5020), + [anon_sym_EQ] = ACTIONS(5020), + [anon_sym_QMARK] = ACTIONS(5020), + [anon_sym_LBRACK] = ACTIONS(5022), + [anon_sym_BSLASH] = ACTIONS(5022), + [anon_sym_CARET] = ACTIONS(5022), + [anon_sym__] = ACTIONS(5020), + [anon_sym_BQUOTE] = ACTIONS(5020), + [anon_sym_LBRACE] = ACTIONS(5020), + [anon_sym_PIPE] = ACTIONS(5020), + [anon_sym_TILDE] = ACTIONS(5020), + [anon_sym_LPAREN] = ACTIONS(5020), + [anon_sym_RPAREN] = ACTIONS(5020), + [sym__newline_token] = ACTIONS(5020), + [aux_sym_insert_token1] = ACTIONS(5020), + [aux_sym_insert_token2] = ACTIONS(5020), + [aux_sym_delete_token1] = ACTIONS(5020), + [aux_sym_highlight_token1] = ACTIONS(5020), + [aux_sym_edit_comment_token1] = ACTIONS(5020), + [anon_sym_CARET_LBRACK] = ACTIONS(5020), + [anon_sym_LBRACK_CARET] = ACTIONS(5020), + [sym_uri_autolink] = ACTIONS(5020), + [sym_email_autolink] = ACTIONS(5020), + [sym__whitespace_ge_2] = ACTIONS(5022), + [aux_sym__whitespace_token1] = ACTIONS(5022), + [sym__word_no_digit] = ACTIONS(5020), + [sym__digits] = ACTIONS(5020), + [anon_sym_DASH_DASH] = ACTIONS(5022), + [anon_sym_DASH_DASH_DASH] = ACTIONS(5020), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5020), + [sym__code_span_start] = ACTIONS(5020), + [sym__emphasis_open_star] = ACTIONS(5020), + [sym__emphasis_open_underscore] = ACTIONS(5020), + [sym__strikeout_open] = ACTIONS(5020), + [sym__latex_span_start] = ACTIONS(5020), + [sym__single_quote_open] = ACTIONS(5020), + [sym__double_quote_open] = ACTIONS(5020), + [sym__superscript_open] = ACTIONS(5020), + [sym__subscript_open] = ACTIONS(5020), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5020), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5020), + [sym__cite_author_in_text] = ACTIONS(5020), + [sym__cite_suppress_author] = ACTIONS(5020), + [sym__shortcode_open_escaped] = ACTIONS(5020), + [sym__shortcode_open] = ACTIONS(5020), + [sym__unclosed_span] = ACTIONS(5020), + }, + [STATE(1037)] = { + [sym__backslash_escape] = ACTIONS(4856), + [sym_entity_reference] = ACTIONS(4856), + [sym_numeric_character_reference] = ACTIONS(4856), + [anon_sym_LT] = ACTIONS(4858), + [anon_sym_GT] = ACTIONS(4856), + [anon_sym_BANG] = ACTIONS(4856), + [anon_sym_DQUOTE] = ACTIONS(4856), + [anon_sym_POUND] = ACTIONS(4856), + [anon_sym_DOLLAR] = ACTIONS(4856), + [anon_sym_PERCENT] = ACTIONS(4856), + [anon_sym_AMP] = ACTIONS(4858), + [anon_sym_SQUOTE] = ACTIONS(4856), + [anon_sym_STAR] = ACTIONS(4856), + [anon_sym_PLUS] = ACTIONS(4856), + [anon_sym_COMMA] = ACTIONS(4856), + [anon_sym_DASH] = ACTIONS(4858), + [anon_sym_DOT] = ACTIONS(4858), + [anon_sym_SLASH] = ACTIONS(4856), + [anon_sym_COLON] = ACTIONS(4856), + [anon_sym_SEMI] = ACTIONS(4856), + [anon_sym_EQ] = ACTIONS(4856), + [anon_sym_QMARK] = ACTIONS(4856), + [anon_sym_LBRACK] = ACTIONS(4858), + [anon_sym_BSLASH] = ACTIONS(4858), + [anon_sym_CARET] = ACTIONS(4858), + [anon_sym__] = ACTIONS(4856), + [anon_sym_BQUOTE] = ACTIONS(4856), + [anon_sym_LBRACE] = ACTIONS(4856), + [anon_sym_PIPE] = ACTIONS(4856), + [anon_sym_TILDE] = ACTIONS(4856), + [anon_sym_LPAREN] = ACTIONS(4856), + [anon_sym_RPAREN] = ACTIONS(4856), + [sym__newline_token] = ACTIONS(4856), + [aux_sym_insert_token1] = ACTIONS(4856), + [aux_sym_delete_token1] = ACTIONS(4856), + [aux_sym_highlight_token1] = ACTIONS(4856), + [aux_sym_edit_comment_token1] = ACTIONS(4856), + [anon_sym_CARET_LBRACK] = ACTIONS(4856), + [anon_sym_LBRACK_CARET] = ACTIONS(4856), + [sym_uri_autolink] = ACTIONS(4856), + [sym_email_autolink] = ACTIONS(4856), + [sym__whitespace_ge_2] = ACTIONS(4856), + [aux_sym__whitespace_token1] = ACTIONS(4858), + [sym__word_no_digit] = ACTIONS(4856), + [sym__digits] = ACTIONS(4856), + [anon_sym_DASH_DASH] = ACTIONS(4858), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4856), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4856), + [sym__code_span_start] = ACTIONS(4856), + [sym__emphasis_open_star] = ACTIONS(4856), + [sym__emphasis_open_underscore] = ACTIONS(4856), + [sym__strikeout_open] = ACTIONS(4856), + [sym__strikeout_close] = ACTIONS(4856), + [sym__latex_span_start] = ACTIONS(4856), + [sym__single_quote_open] = ACTIONS(4856), + [sym__double_quote_open] = ACTIONS(4856), + [sym__superscript_open] = ACTIONS(4856), + [sym__subscript_open] = ACTIONS(4856), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4856), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4856), + [sym__cite_author_in_text] = ACTIONS(4856), + [sym__cite_suppress_author] = ACTIONS(4856), + [sym__shortcode_open_escaped] = ACTIONS(4856), + [sym__shortcode_open] = ACTIONS(4856), + [sym__unclosed_span] = ACTIONS(4856), + }, + [STATE(1038)] = { + [sym__backslash_escape] = ACTIONS(4936), + [sym_entity_reference] = ACTIONS(4936), + [sym_numeric_character_reference] = ACTIONS(4936), + [anon_sym_LT] = ACTIONS(4938), + [anon_sym_GT] = ACTIONS(4936), + [anon_sym_BANG] = ACTIONS(4936), + [anon_sym_DQUOTE] = ACTIONS(4936), + [anon_sym_POUND] = ACTIONS(4936), + [anon_sym_DOLLAR] = ACTIONS(4936), + [anon_sym_PERCENT] = ACTIONS(4936), + [anon_sym_AMP] = ACTIONS(4938), + [anon_sym_SQUOTE] = ACTIONS(4936), + [anon_sym_STAR] = ACTIONS(4936), + [anon_sym_PLUS] = ACTIONS(4936), + [anon_sym_COMMA] = ACTIONS(4936), + [anon_sym_DASH] = ACTIONS(4938), + [anon_sym_DOT] = ACTIONS(4938), + [anon_sym_SLASH] = ACTIONS(4936), + [anon_sym_COLON] = ACTIONS(4936), + [anon_sym_SEMI] = ACTIONS(4936), + [anon_sym_EQ] = ACTIONS(4936), + [anon_sym_QMARK] = ACTIONS(4936), + [anon_sym_LBRACK] = ACTIONS(4938), + [anon_sym_BSLASH] = ACTIONS(4938), + [anon_sym_CARET] = ACTIONS(4938), + [anon_sym__] = ACTIONS(4936), + [anon_sym_BQUOTE] = ACTIONS(4936), + [anon_sym_LBRACE] = ACTIONS(4936), + [anon_sym_PIPE] = ACTIONS(4936), + [anon_sym_TILDE] = ACTIONS(4936), + [anon_sym_LPAREN] = ACTIONS(4936), + [anon_sym_RPAREN] = ACTIONS(4936), + [sym__newline_token] = ACTIONS(4936), + [aux_sym_insert_token1] = ACTIONS(4936), + [aux_sym_insert_token2] = ACTIONS(4936), + [aux_sym_delete_token1] = ACTIONS(4936), + [aux_sym_highlight_token1] = ACTIONS(4936), + [aux_sym_edit_comment_token1] = ACTIONS(4936), + [anon_sym_CARET_LBRACK] = ACTIONS(4936), + [anon_sym_LBRACK_CARET] = ACTIONS(4936), + [sym_uri_autolink] = ACTIONS(4936), + [sym_email_autolink] = ACTIONS(4936), + [sym__whitespace_ge_2] = ACTIONS(4938), + [aux_sym__whitespace_token1] = ACTIONS(4938), + [sym__word_no_digit] = ACTIONS(4936), + [sym__digits] = ACTIONS(4936), + [anon_sym_DASH_DASH] = ACTIONS(4938), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4936), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4936), + [sym__code_span_start] = ACTIONS(4936), + [sym__emphasis_open_star] = ACTIONS(4936), + [sym__emphasis_open_underscore] = ACTIONS(4936), + [sym__strikeout_open] = ACTIONS(4936), + [sym__latex_span_start] = ACTIONS(4936), + [sym__single_quote_open] = ACTIONS(4936), + [sym__double_quote_open] = ACTIONS(4936), + [sym__superscript_open] = ACTIONS(4936), + [sym__subscript_open] = ACTIONS(4936), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4936), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4936), + [sym__cite_author_in_text] = ACTIONS(4936), + [sym__cite_suppress_author] = ACTIONS(4936), + [sym__shortcode_open_escaped] = ACTIONS(4936), + [sym__shortcode_open] = ACTIONS(4936), + [sym__unclosed_span] = ACTIONS(4936), + }, + [STATE(1039)] = { + [sym__backslash_escape] = ACTIONS(5028), + [sym_entity_reference] = ACTIONS(5028), + [sym_numeric_character_reference] = ACTIONS(5028), + [anon_sym_LT] = ACTIONS(5030), + [anon_sym_GT] = ACTIONS(5028), + [anon_sym_BANG] = ACTIONS(5028), + [anon_sym_DQUOTE] = ACTIONS(5028), + [anon_sym_POUND] = ACTIONS(5028), + [anon_sym_DOLLAR] = ACTIONS(5028), + [anon_sym_PERCENT] = ACTIONS(5028), + [anon_sym_AMP] = ACTIONS(5030), + [anon_sym_SQUOTE] = ACTIONS(5028), + [anon_sym_STAR] = ACTIONS(5028), + [anon_sym_PLUS] = ACTIONS(5028), + [anon_sym_COMMA] = ACTIONS(5028), + [anon_sym_DASH] = ACTIONS(5030), + [anon_sym_DOT] = ACTIONS(5030), + [anon_sym_SLASH] = ACTIONS(5028), + [anon_sym_COLON] = ACTIONS(5028), + [anon_sym_SEMI] = ACTIONS(5028), + [anon_sym_EQ] = ACTIONS(5028), + [anon_sym_QMARK] = ACTIONS(5028), + [anon_sym_LBRACK] = ACTIONS(5030), + [anon_sym_BSLASH] = ACTIONS(5030), + [anon_sym_CARET] = ACTIONS(5030), + [anon_sym__] = ACTIONS(5028), + [anon_sym_BQUOTE] = ACTIONS(5028), + [anon_sym_LBRACE] = ACTIONS(5028), + [anon_sym_PIPE] = ACTIONS(5028), + [anon_sym_TILDE] = ACTIONS(5028), + [anon_sym_LPAREN] = ACTIONS(5028), + [anon_sym_RPAREN] = ACTIONS(5028), + [sym__newline_token] = ACTIONS(5028), + [aux_sym_insert_token1] = ACTIONS(5028), + [aux_sym_insert_token2] = ACTIONS(5028), + [aux_sym_delete_token1] = ACTIONS(5028), + [aux_sym_highlight_token1] = ACTIONS(5028), + [aux_sym_edit_comment_token1] = ACTIONS(5028), + [anon_sym_CARET_LBRACK] = ACTIONS(5028), + [anon_sym_LBRACK_CARET] = ACTIONS(5028), + [sym_uri_autolink] = ACTIONS(5028), + [sym_email_autolink] = ACTIONS(5028), + [sym__whitespace_ge_2] = ACTIONS(5030), + [aux_sym__whitespace_token1] = ACTIONS(5030), + [sym__word_no_digit] = ACTIONS(5028), + [sym__digits] = ACTIONS(5028), + [anon_sym_DASH_DASH] = ACTIONS(5030), + [anon_sym_DASH_DASH_DASH] = ACTIONS(5028), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5028), + [sym__code_span_start] = ACTIONS(5028), + [sym__emphasis_open_star] = ACTIONS(5028), + [sym__emphasis_open_underscore] = ACTIONS(5028), + [sym__strikeout_open] = ACTIONS(5028), + [sym__latex_span_start] = ACTIONS(5028), + [sym__single_quote_open] = ACTIONS(5028), + [sym__double_quote_open] = ACTIONS(5028), + [sym__superscript_open] = ACTIONS(5028), + [sym__subscript_open] = ACTIONS(5028), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5028), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5028), + [sym__cite_author_in_text] = ACTIONS(5028), + [sym__cite_suppress_author] = ACTIONS(5028), + [sym__shortcode_open_escaped] = ACTIONS(5028), + [sym__shortcode_open] = ACTIONS(5028), + [sym__unclosed_span] = ACTIONS(5028), + }, + [STATE(1040)] = { + [sym__backslash_escape] = ACTIONS(5032), + [sym_entity_reference] = ACTIONS(5032), + [sym_numeric_character_reference] = ACTIONS(5032), + [anon_sym_LT] = ACTIONS(5034), + [anon_sym_GT] = ACTIONS(5032), + [anon_sym_BANG] = ACTIONS(5032), + [anon_sym_DQUOTE] = ACTIONS(5032), + [anon_sym_POUND] = ACTIONS(5032), + [anon_sym_DOLLAR] = ACTIONS(5032), + [anon_sym_PERCENT] = ACTIONS(5032), + [anon_sym_AMP] = ACTIONS(5034), + [anon_sym_SQUOTE] = ACTIONS(5032), + [anon_sym_STAR] = ACTIONS(5032), + [anon_sym_PLUS] = ACTIONS(5032), + [anon_sym_COMMA] = ACTIONS(5032), + [anon_sym_DASH] = ACTIONS(5034), + [anon_sym_DOT] = ACTIONS(5034), + [anon_sym_SLASH] = ACTIONS(5032), + [anon_sym_COLON] = ACTIONS(5032), + [anon_sym_SEMI] = ACTIONS(5032), + [anon_sym_EQ] = ACTIONS(5032), + [anon_sym_QMARK] = ACTIONS(5032), + [anon_sym_LBRACK] = ACTIONS(5034), + [anon_sym_BSLASH] = ACTIONS(5034), + [anon_sym_CARET] = ACTIONS(5034), + [anon_sym__] = ACTIONS(5032), + [anon_sym_BQUOTE] = ACTIONS(5032), + [anon_sym_LBRACE] = ACTIONS(5032), + [anon_sym_PIPE] = ACTIONS(5032), + [anon_sym_TILDE] = ACTIONS(5032), + [anon_sym_LPAREN] = ACTIONS(5032), + [anon_sym_RPAREN] = ACTIONS(5032), + [sym__newline_token] = ACTIONS(5032), + [aux_sym_insert_token1] = ACTIONS(5032), + [aux_sym_delete_token1] = ACTIONS(5032), + [aux_sym_highlight_token1] = ACTIONS(5032), + [aux_sym_edit_comment_token1] = ACTIONS(5032), + [anon_sym_CARET_LBRACK] = ACTIONS(5032), + [anon_sym_LBRACK_CARET] = ACTIONS(5032), + [sym_uri_autolink] = ACTIONS(5032), + [sym_email_autolink] = ACTIONS(5032), + [sym__whitespace_ge_2] = ACTIONS(5032), + [aux_sym__whitespace_token1] = ACTIONS(5034), + [sym__word_no_digit] = ACTIONS(5032), + [sym__digits] = ACTIONS(5032), + [anon_sym_DASH_DASH] = ACTIONS(5034), + [anon_sym_DASH_DASH_DASH] = ACTIONS(5032), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5032), + [sym__code_span_start] = ACTIONS(5032), + [sym__emphasis_open_star] = ACTIONS(5032), + [sym__emphasis_open_underscore] = ACTIONS(5032), + [sym__strikeout_open] = ACTIONS(5032), + [sym__latex_span_start] = ACTIONS(5032), + [sym__single_quote_open] = ACTIONS(5032), + [sym__double_quote_open] = ACTIONS(5032), + [sym__superscript_open] = ACTIONS(5032), + [sym__subscript_open] = ACTIONS(5032), + [sym__subscript_close] = ACTIONS(5032), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5032), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5032), + [sym__cite_author_in_text] = ACTIONS(5032), + [sym__cite_suppress_author] = ACTIONS(5032), + [sym__shortcode_open_escaped] = ACTIONS(5032), + [sym__shortcode_open] = ACTIONS(5032), + [sym__unclosed_span] = ACTIONS(5032), + }, + [STATE(1041)] = { + [sym__backslash_escape] = ACTIONS(5036), + [sym_entity_reference] = ACTIONS(5036), + [sym_numeric_character_reference] = ACTIONS(5036), + [anon_sym_LT] = ACTIONS(5038), + [anon_sym_GT] = ACTIONS(5036), + [anon_sym_BANG] = ACTIONS(5036), + [anon_sym_DQUOTE] = ACTIONS(5036), + [anon_sym_POUND] = ACTIONS(5036), + [anon_sym_DOLLAR] = ACTIONS(5036), + [anon_sym_PERCENT] = ACTIONS(5036), + [anon_sym_AMP] = ACTIONS(5038), + [anon_sym_SQUOTE] = ACTIONS(5036), + [anon_sym_STAR] = ACTIONS(5036), + [anon_sym_PLUS] = ACTIONS(5036), + [anon_sym_COMMA] = ACTIONS(5036), + [anon_sym_DASH] = ACTIONS(5038), + [anon_sym_DOT] = ACTIONS(5038), + [anon_sym_SLASH] = ACTIONS(5036), + [anon_sym_COLON] = ACTIONS(5036), + [anon_sym_SEMI] = ACTIONS(5036), + [anon_sym_EQ] = ACTIONS(5036), + [anon_sym_QMARK] = ACTIONS(5036), + [anon_sym_LBRACK] = ACTIONS(5038), + [anon_sym_BSLASH] = ACTIONS(5038), + [anon_sym_CARET] = ACTIONS(5038), + [anon_sym__] = ACTIONS(5036), + [anon_sym_BQUOTE] = ACTIONS(5036), + [anon_sym_LBRACE] = ACTIONS(5036), + [anon_sym_PIPE] = ACTIONS(5036), + [anon_sym_TILDE] = ACTIONS(5036), + [anon_sym_LPAREN] = ACTIONS(5036), + [anon_sym_RPAREN] = ACTIONS(5036), + [sym__newline_token] = ACTIONS(5036), + [aux_sym_insert_token1] = ACTIONS(5036), + [aux_sym_insert_token2] = ACTIONS(5036), + [aux_sym_delete_token1] = ACTIONS(5036), + [aux_sym_highlight_token1] = ACTIONS(5036), + [aux_sym_edit_comment_token1] = ACTIONS(5036), + [anon_sym_CARET_LBRACK] = ACTIONS(5036), + [anon_sym_LBRACK_CARET] = ACTIONS(5036), + [sym_uri_autolink] = ACTIONS(5036), + [sym_email_autolink] = ACTIONS(5036), + [sym__whitespace_ge_2] = ACTIONS(5038), + [aux_sym__whitespace_token1] = ACTIONS(5038), + [sym__word_no_digit] = ACTIONS(5036), + [sym__digits] = ACTIONS(5036), + [anon_sym_DASH_DASH] = ACTIONS(5038), + [anon_sym_DASH_DASH_DASH] = ACTIONS(5036), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5036), + [sym__code_span_start] = ACTIONS(5036), + [sym__emphasis_open_star] = ACTIONS(5036), + [sym__emphasis_open_underscore] = ACTIONS(5036), + [sym__strikeout_open] = ACTIONS(5036), + [sym__latex_span_start] = ACTIONS(5036), + [sym__single_quote_open] = ACTIONS(5036), + [sym__double_quote_open] = ACTIONS(5036), + [sym__superscript_open] = ACTIONS(5036), + [sym__subscript_open] = ACTIONS(5036), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5036), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5036), + [sym__cite_author_in_text] = ACTIONS(5036), + [sym__cite_suppress_author] = ACTIONS(5036), + [sym__shortcode_open_escaped] = ACTIONS(5036), + [sym__shortcode_open] = ACTIONS(5036), + [sym__unclosed_span] = ACTIONS(5036), + }, + [STATE(1042)] = { + [sym__backslash_escape] = ACTIONS(4812), + [sym_entity_reference] = ACTIONS(4812), + [sym_numeric_character_reference] = ACTIONS(4812), + [anon_sym_LT] = ACTIONS(4814), + [anon_sym_GT] = ACTIONS(4812), + [anon_sym_BANG] = ACTIONS(4812), + [anon_sym_DQUOTE] = ACTIONS(4812), + [anon_sym_POUND] = ACTIONS(4812), + [anon_sym_DOLLAR] = ACTIONS(4812), + [anon_sym_PERCENT] = ACTIONS(4812), + [anon_sym_AMP] = ACTIONS(4814), + [anon_sym_SQUOTE] = ACTIONS(4812), + [anon_sym_STAR] = ACTIONS(4812), + [anon_sym_PLUS] = ACTIONS(4812), + [anon_sym_COMMA] = ACTIONS(4812), + [anon_sym_DASH] = ACTIONS(4814), + [anon_sym_DOT] = ACTIONS(4814), + [anon_sym_SLASH] = ACTIONS(4812), + [anon_sym_COLON] = ACTIONS(4812), + [anon_sym_SEMI] = ACTIONS(4812), + [anon_sym_EQ] = ACTIONS(4812), + [anon_sym_QMARK] = ACTIONS(4812), + [anon_sym_LBRACK] = ACTIONS(4814), + [anon_sym_BSLASH] = ACTIONS(4814), + [anon_sym_CARET] = ACTIONS(4814), + [anon_sym__] = ACTIONS(4812), + [anon_sym_BQUOTE] = ACTIONS(4812), + [anon_sym_LBRACE] = ACTIONS(4812), + [anon_sym_PIPE] = ACTIONS(4812), + [anon_sym_TILDE] = ACTIONS(4812), + [anon_sym_LPAREN] = ACTIONS(4812), + [anon_sym_RPAREN] = ACTIONS(4812), + [sym__newline_token] = ACTIONS(4812), + [aux_sym_insert_token1] = ACTIONS(4812), + [aux_sym_insert_token2] = ACTIONS(4812), + [aux_sym_delete_token1] = ACTIONS(4812), + [aux_sym_highlight_token1] = ACTIONS(4812), + [aux_sym_edit_comment_token1] = ACTIONS(4812), + [anon_sym_CARET_LBRACK] = ACTIONS(4812), + [anon_sym_LBRACK_CARET] = ACTIONS(4812), + [sym_uri_autolink] = ACTIONS(4812), + [sym_email_autolink] = ACTIONS(4812), + [sym__whitespace_ge_2] = ACTIONS(4814), + [aux_sym__whitespace_token1] = ACTIONS(4814), + [sym__word_no_digit] = ACTIONS(4812), + [sym__digits] = ACTIONS(4812), + [anon_sym_DASH_DASH] = ACTIONS(4814), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4812), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4812), + [sym__code_span_start] = ACTIONS(4812), + [sym__emphasis_open_star] = ACTIONS(4812), + [sym__emphasis_open_underscore] = ACTIONS(4812), + [sym__strikeout_open] = ACTIONS(4812), + [sym__latex_span_start] = ACTIONS(4812), + [sym__single_quote_open] = ACTIONS(4812), + [sym__double_quote_open] = ACTIONS(4812), + [sym__superscript_open] = ACTIONS(4812), + [sym__subscript_open] = ACTIONS(4812), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4812), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4812), + [sym__cite_author_in_text] = ACTIONS(4812), + [sym__cite_suppress_author] = ACTIONS(4812), + [sym__shortcode_open_escaped] = ACTIONS(4812), + [sym__shortcode_open] = ACTIONS(4812), + [sym__unclosed_span] = ACTIONS(4812), + }, + [STATE(1043)] = { + [sym__backslash_escape] = ACTIONS(4816), + [sym_entity_reference] = ACTIONS(4816), + [sym_numeric_character_reference] = ACTIONS(4816), + [anon_sym_LT] = ACTIONS(4818), + [anon_sym_GT] = ACTIONS(4816), + [anon_sym_BANG] = ACTIONS(4816), + [anon_sym_DQUOTE] = ACTIONS(4816), + [anon_sym_POUND] = ACTIONS(4816), + [anon_sym_DOLLAR] = ACTIONS(4816), + [anon_sym_PERCENT] = ACTIONS(4816), + [anon_sym_AMP] = ACTIONS(4818), + [anon_sym_SQUOTE] = ACTIONS(4816), + [anon_sym_STAR] = ACTIONS(4816), + [anon_sym_PLUS] = ACTIONS(4816), + [anon_sym_COMMA] = ACTIONS(4816), + [anon_sym_DASH] = ACTIONS(4818), + [anon_sym_DOT] = ACTIONS(4818), + [anon_sym_SLASH] = ACTIONS(4816), + [anon_sym_COLON] = ACTIONS(4816), + [anon_sym_SEMI] = ACTIONS(4816), + [anon_sym_EQ] = ACTIONS(4816), + [anon_sym_QMARK] = ACTIONS(4816), + [anon_sym_LBRACK] = ACTIONS(4818), + [anon_sym_BSLASH] = ACTIONS(4818), + [anon_sym_CARET] = ACTIONS(4818), + [anon_sym__] = ACTIONS(4816), + [anon_sym_BQUOTE] = ACTIONS(4816), + [anon_sym_LBRACE] = ACTIONS(4816), + [anon_sym_PIPE] = ACTIONS(4816), + [anon_sym_TILDE] = ACTIONS(4816), + [anon_sym_LPAREN] = ACTIONS(4816), + [anon_sym_RPAREN] = ACTIONS(4816), + [sym__newline_token] = ACTIONS(4816), + [aux_sym_insert_token1] = ACTIONS(4816), + [aux_sym_insert_token2] = ACTIONS(4816), + [aux_sym_delete_token1] = ACTIONS(4816), + [aux_sym_highlight_token1] = ACTIONS(4816), + [aux_sym_edit_comment_token1] = ACTIONS(4816), + [anon_sym_CARET_LBRACK] = ACTIONS(4816), + [anon_sym_LBRACK_CARET] = ACTIONS(4816), + [sym_uri_autolink] = ACTIONS(4816), + [sym_email_autolink] = ACTIONS(4816), + [sym__whitespace_ge_2] = ACTIONS(4818), + [aux_sym__whitespace_token1] = ACTIONS(4818), + [sym__word_no_digit] = ACTIONS(4816), + [sym__digits] = ACTIONS(4816), + [anon_sym_DASH_DASH] = ACTIONS(4818), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4816), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4816), + [sym__code_span_start] = ACTIONS(4816), + [sym__emphasis_open_star] = ACTIONS(4816), + [sym__emphasis_open_underscore] = ACTIONS(4816), + [sym__strikeout_open] = ACTIONS(4816), + [sym__latex_span_start] = ACTIONS(4816), + [sym__single_quote_open] = ACTIONS(4816), + [sym__double_quote_open] = ACTIONS(4816), + [sym__superscript_open] = ACTIONS(4816), + [sym__subscript_open] = ACTIONS(4816), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4816), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4816), + [sym__cite_author_in_text] = ACTIONS(4816), + [sym__cite_suppress_author] = ACTIONS(4816), + [sym__shortcode_open_escaped] = ACTIONS(4816), + [sym__shortcode_open] = ACTIONS(4816), + [sym__unclosed_span] = ACTIONS(4816), + }, + [STATE(1044)] = { + [sym__backslash_escape] = ACTIONS(4840), + [sym_entity_reference] = ACTIONS(4840), + [sym_numeric_character_reference] = ACTIONS(4840), + [anon_sym_LT] = ACTIONS(4842), + [anon_sym_GT] = ACTIONS(4840), + [anon_sym_BANG] = ACTIONS(4840), + [anon_sym_DQUOTE] = ACTIONS(4840), + [anon_sym_POUND] = ACTIONS(4840), + [anon_sym_DOLLAR] = ACTIONS(4840), + [anon_sym_PERCENT] = ACTIONS(4840), + [anon_sym_AMP] = ACTIONS(4842), + [anon_sym_SQUOTE] = ACTIONS(4840), + [anon_sym_STAR] = ACTIONS(4840), + [anon_sym_PLUS] = ACTIONS(4840), + [anon_sym_COMMA] = ACTIONS(4840), + [anon_sym_DASH] = ACTIONS(4842), + [anon_sym_DOT] = ACTIONS(4842), + [anon_sym_SLASH] = ACTIONS(4840), + [anon_sym_COLON] = ACTIONS(4840), + [anon_sym_SEMI] = ACTIONS(4840), + [anon_sym_EQ] = ACTIONS(4840), + [anon_sym_QMARK] = ACTIONS(4840), + [anon_sym_LBRACK] = ACTIONS(4842), + [anon_sym_BSLASH] = ACTIONS(4842), + [anon_sym_CARET] = ACTIONS(4842), + [anon_sym__] = ACTIONS(4840), + [anon_sym_BQUOTE] = ACTIONS(4840), + [anon_sym_LBRACE] = ACTIONS(4840), + [anon_sym_PIPE] = ACTIONS(4840), + [anon_sym_TILDE] = ACTIONS(4840), + [anon_sym_LPAREN] = ACTIONS(4840), + [anon_sym_RPAREN] = ACTIONS(4840), + [sym__newline_token] = ACTIONS(4840), + [aux_sym_insert_token1] = ACTIONS(4840), + [aux_sym_insert_token2] = ACTIONS(4840), + [aux_sym_delete_token1] = ACTIONS(4840), + [aux_sym_highlight_token1] = ACTIONS(4840), + [aux_sym_edit_comment_token1] = ACTIONS(4840), + [anon_sym_CARET_LBRACK] = ACTIONS(4840), + [anon_sym_LBRACK_CARET] = ACTIONS(4840), + [sym_uri_autolink] = ACTIONS(4840), + [sym_email_autolink] = ACTIONS(4840), + [sym__whitespace_ge_2] = ACTIONS(4842), + [aux_sym__whitespace_token1] = ACTIONS(4842), + [sym__word_no_digit] = ACTIONS(4840), + [sym__digits] = ACTIONS(4840), + [anon_sym_DASH_DASH] = ACTIONS(4842), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4840), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4840), + [sym__code_span_start] = ACTIONS(4840), + [sym__emphasis_open_star] = ACTIONS(4840), + [sym__emphasis_open_underscore] = ACTIONS(4840), + [sym__strikeout_open] = ACTIONS(4840), + [sym__latex_span_start] = ACTIONS(4840), + [sym__single_quote_open] = ACTIONS(4840), + [sym__double_quote_open] = ACTIONS(4840), + [sym__superscript_open] = ACTIONS(4840), + [sym__subscript_open] = ACTIONS(4840), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4840), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4840), + [sym__cite_author_in_text] = ACTIONS(4840), + [sym__cite_suppress_author] = ACTIONS(4840), + [sym__shortcode_open_escaped] = ACTIONS(4840), + [sym__shortcode_open] = ACTIONS(4840), + [sym__unclosed_span] = ACTIONS(4840), + }, + [STATE(1045)] = { + [sym__backslash_escape] = ACTIONS(4880), + [sym_entity_reference] = ACTIONS(4880), + [sym_numeric_character_reference] = ACTIONS(4880), + [anon_sym_LT] = ACTIONS(4882), + [anon_sym_GT] = ACTIONS(4880), + [anon_sym_BANG] = ACTIONS(4880), + [anon_sym_DQUOTE] = ACTIONS(4880), + [anon_sym_POUND] = ACTIONS(4880), + [anon_sym_DOLLAR] = ACTIONS(4880), + [anon_sym_PERCENT] = ACTIONS(4880), + [anon_sym_AMP] = ACTIONS(4882), + [anon_sym_SQUOTE] = ACTIONS(4880), + [anon_sym_STAR] = ACTIONS(4880), + [anon_sym_PLUS] = ACTIONS(4880), + [anon_sym_COMMA] = ACTIONS(4880), + [anon_sym_DASH] = ACTIONS(4882), + [anon_sym_DOT] = ACTIONS(4882), + [anon_sym_SLASH] = ACTIONS(4880), + [anon_sym_COLON] = ACTIONS(4880), + [anon_sym_SEMI] = ACTIONS(4880), + [anon_sym_EQ] = ACTIONS(4880), + [anon_sym_QMARK] = ACTIONS(4880), + [anon_sym_LBRACK] = ACTIONS(4882), + [anon_sym_BSLASH] = ACTIONS(4882), + [anon_sym_CARET] = ACTIONS(4882), + [anon_sym__] = ACTIONS(4880), + [anon_sym_BQUOTE] = ACTIONS(4880), + [anon_sym_LBRACE] = ACTIONS(4880), + [anon_sym_PIPE] = ACTIONS(4880), + [anon_sym_TILDE] = ACTIONS(4880), + [anon_sym_LPAREN] = ACTIONS(4880), + [anon_sym_RPAREN] = ACTIONS(4880), + [sym__newline_token] = ACTIONS(4880), + [aux_sym_insert_token1] = ACTIONS(4880), + [aux_sym_delete_token1] = ACTIONS(4880), + [aux_sym_highlight_token1] = ACTIONS(4880), + [aux_sym_edit_comment_token1] = ACTIONS(4880), + [anon_sym_CARET_LBRACK] = ACTIONS(4880), + [anon_sym_LBRACK_CARET] = ACTIONS(4880), + [sym_uri_autolink] = ACTIONS(4880), + [sym_email_autolink] = ACTIONS(4880), + [sym__whitespace_ge_2] = ACTIONS(4880), + [aux_sym__whitespace_token1] = ACTIONS(4882), + [sym__word_no_digit] = ACTIONS(4880), + [sym__digits] = ACTIONS(4880), + [anon_sym_DASH_DASH] = ACTIONS(4882), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4880), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4880), + [sym__code_span_start] = ACTIONS(4880), + [sym__emphasis_open_star] = ACTIONS(4880), + [sym__emphasis_open_underscore] = ACTIONS(4880), + [sym__strikeout_open] = ACTIONS(4880), + [sym__latex_span_start] = ACTIONS(4880), + [sym__single_quote_open] = ACTIONS(4880), + [sym__single_quote_close] = ACTIONS(4880), + [sym__double_quote_open] = ACTIONS(4880), + [sym__superscript_open] = ACTIONS(4880), + [sym__subscript_open] = ACTIONS(4880), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4880), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4880), + [sym__cite_author_in_text] = ACTIONS(4880), + [sym__cite_suppress_author] = ACTIONS(4880), + [sym__shortcode_open_escaped] = ACTIONS(4880), + [sym__shortcode_open] = ACTIONS(4880), + [sym__unclosed_span] = ACTIONS(4880), + }, + [STATE(1046)] = { + [sym__backslash_escape] = ACTIONS(4880), + [sym_entity_reference] = ACTIONS(4880), + [sym_numeric_character_reference] = ACTIONS(4880), + [anon_sym_LT] = ACTIONS(4882), + [anon_sym_GT] = ACTIONS(4880), + [anon_sym_BANG] = ACTIONS(4880), + [anon_sym_DQUOTE] = ACTIONS(4880), + [anon_sym_POUND] = ACTIONS(4880), + [anon_sym_DOLLAR] = ACTIONS(4880), + [anon_sym_PERCENT] = ACTIONS(4880), + [anon_sym_AMP] = ACTIONS(4882), + [anon_sym_SQUOTE] = ACTIONS(4880), + [anon_sym_STAR] = ACTIONS(4880), + [anon_sym_PLUS] = ACTIONS(4880), + [anon_sym_COMMA] = ACTIONS(4880), + [anon_sym_DASH] = ACTIONS(4882), + [anon_sym_DOT] = ACTIONS(4882), + [anon_sym_SLASH] = ACTIONS(4880), + [anon_sym_COLON] = ACTIONS(4880), + [anon_sym_SEMI] = ACTIONS(4880), + [anon_sym_EQ] = ACTIONS(4880), + [anon_sym_QMARK] = ACTIONS(4880), + [anon_sym_LBRACK] = ACTIONS(4882), + [anon_sym_BSLASH] = ACTIONS(4882), + [anon_sym_RBRACK] = ACTIONS(4880), + [anon_sym_CARET] = ACTIONS(4882), + [anon_sym__] = ACTIONS(4880), + [anon_sym_BQUOTE] = ACTIONS(4880), + [anon_sym_LBRACE] = ACTIONS(4880), + [anon_sym_PIPE] = ACTIONS(4880), + [anon_sym_TILDE] = ACTIONS(4880), + [anon_sym_LPAREN] = ACTIONS(4880), + [anon_sym_RPAREN] = ACTIONS(4880), + [sym__newline_token] = ACTIONS(4880), + [aux_sym_insert_token1] = ACTIONS(4880), + [aux_sym_delete_token1] = ACTIONS(4880), + [aux_sym_highlight_token1] = ACTIONS(4880), + [aux_sym_edit_comment_token1] = ACTIONS(4880), + [anon_sym_CARET_LBRACK] = ACTIONS(4880), + [anon_sym_LBRACK_CARET] = ACTIONS(4880), + [sym_uri_autolink] = ACTIONS(4880), + [sym_email_autolink] = ACTIONS(4880), + [sym__whitespace_ge_2] = ACTIONS(4880), + [aux_sym__whitespace_token1] = ACTIONS(4882), + [sym__word_no_digit] = ACTIONS(4880), + [sym__digits] = ACTIONS(4880), + [anon_sym_DASH_DASH] = ACTIONS(4882), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4880), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4880), + [sym__code_span_start] = ACTIONS(4880), + [sym__emphasis_open_star] = ACTIONS(4880), + [sym__emphasis_open_underscore] = ACTIONS(4880), + [sym__strikeout_open] = ACTIONS(4880), + [sym__latex_span_start] = ACTIONS(4880), + [sym__single_quote_open] = ACTIONS(4880), + [sym__double_quote_open] = ACTIONS(4880), + [sym__superscript_open] = ACTIONS(4880), + [sym__subscript_open] = ACTIONS(4880), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4880), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4880), + [sym__cite_author_in_text] = ACTIONS(4880), + [sym__cite_suppress_author] = ACTIONS(4880), + [sym__shortcode_open_escaped] = ACTIONS(4880), + [sym__shortcode_open] = ACTIONS(4880), + [sym__unclosed_span] = ACTIONS(4880), + }, + [STATE(1047)] = { + [sym__backslash_escape] = ACTIONS(4596), + [sym_entity_reference] = ACTIONS(4596), + [sym_numeric_character_reference] = ACTIONS(4596), + [anon_sym_LT] = ACTIONS(4598), + [anon_sym_GT] = ACTIONS(4596), + [anon_sym_BANG] = ACTIONS(4596), + [anon_sym_DQUOTE] = ACTIONS(4596), + [anon_sym_POUND] = ACTIONS(4596), + [anon_sym_DOLLAR] = ACTIONS(4596), + [anon_sym_PERCENT] = ACTIONS(4596), + [anon_sym_AMP] = ACTIONS(4598), + [anon_sym_SQUOTE] = ACTIONS(4596), + [anon_sym_STAR] = ACTIONS(4596), + [anon_sym_PLUS] = ACTIONS(4596), + [anon_sym_COMMA] = ACTIONS(4596), + [anon_sym_DASH] = ACTIONS(4598), + [anon_sym_DOT] = ACTIONS(4598), + [anon_sym_SLASH] = ACTIONS(4596), + [anon_sym_COLON] = ACTIONS(4596), + [anon_sym_SEMI] = ACTIONS(4596), + [anon_sym_EQ] = ACTIONS(4596), + [anon_sym_QMARK] = ACTIONS(4596), + [anon_sym_LBRACK] = ACTIONS(4598), + [anon_sym_BSLASH] = ACTIONS(4598), + [anon_sym_RBRACK] = ACTIONS(4596), + [anon_sym_CARET] = ACTIONS(4598), + [anon_sym__] = ACTIONS(4596), + [anon_sym_BQUOTE] = ACTIONS(4596), + [anon_sym_LBRACE] = ACTIONS(4596), + [anon_sym_PIPE] = ACTIONS(4596), + [anon_sym_TILDE] = ACTIONS(4596), + [anon_sym_LPAREN] = ACTIONS(4596), + [anon_sym_RPAREN] = ACTIONS(4596), + [sym__newline_token] = ACTIONS(4596), + [aux_sym_insert_token1] = ACTIONS(4596), + [aux_sym_delete_token1] = ACTIONS(4596), + [aux_sym_highlight_token1] = ACTIONS(4596), + [aux_sym_edit_comment_token1] = ACTIONS(4596), + [anon_sym_CARET_LBRACK] = ACTIONS(4596), + [anon_sym_LBRACK_CARET] = ACTIONS(4596), + [sym_uri_autolink] = ACTIONS(4596), + [sym_email_autolink] = ACTIONS(4596), + [sym__whitespace_ge_2] = ACTIONS(4596), + [aux_sym__whitespace_token1] = ACTIONS(4598), + [sym__word_no_digit] = ACTIONS(4596), + [sym__digits] = ACTIONS(4596), + [anon_sym_DASH_DASH] = ACTIONS(4598), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4596), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4596), + [sym__code_span_start] = ACTIONS(4596), + [sym__emphasis_open_star] = ACTIONS(4596), + [sym__emphasis_open_underscore] = ACTIONS(4596), + [sym__strikeout_open] = ACTIONS(4596), + [sym__latex_span_start] = ACTIONS(4596), + [sym__single_quote_open] = ACTIONS(4596), + [sym__double_quote_open] = ACTIONS(4596), + [sym__superscript_open] = ACTIONS(4596), + [sym__subscript_open] = ACTIONS(4596), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4596), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4596), + [sym__cite_author_in_text] = ACTIONS(4596), + [sym__cite_suppress_author] = ACTIONS(4596), + [sym__shortcode_open_escaped] = ACTIONS(4596), + [sym__shortcode_open] = ACTIONS(4596), + [sym__unclosed_span] = ACTIONS(4596), + }, + [STATE(1048)] = { + [sym__backslash_escape] = ACTIONS(4596), + [sym_entity_reference] = ACTIONS(4596), + [sym_numeric_character_reference] = ACTIONS(4596), + [anon_sym_LT] = ACTIONS(4598), + [anon_sym_GT] = ACTIONS(4596), + [anon_sym_BANG] = ACTIONS(4596), + [anon_sym_DQUOTE] = ACTIONS(4596), + [anon_sym_POUND] = ACTIONS(4596), + [anon_sym_DOLLAR] = ACTIONS(4596), + [anon_sym_PERCENT] = ACTIONS(4596), + [anon_sym_AMP] = ACTIONS(4598), + [anon_sym_SQUOTE] = ACTIONS(4596), + [anon_sym_STAR] = ACTIONS(4596), + [anon_sym_PLUS] = ACTIONS(4596), + [anon_sym_COMMA] = ACTIONS(4596), + [anon_sym_DASH] = ACTIONS(4598), + [anon_sym_DOT] = ACTIONS(4598), + [anon_sym_SLASH] = ACTIONS(4596), + [anon_sym_COLON] = ACTIONS(4596), + [anon_sym_SEMI] = ACTIONS(4596), + [anon_sym_EQ] = ACTIONS(4596), + [anon_sym_QMARK] = ACTIONS(4596), + [anon_sym_LBRACK] = ACTIONS(4598), + [anon_sym_BSLASH] = ACTIONS(4598), + [anon_sym_CARET] = ACTIONS(4598), + [anon_sym__] = ACTIONS(4596), + [anon_sym_BQUOTE] = ACTIONS(4596), + [anon_sym_LBRACE] = ACTIONS(4596), + [anon_sym_PIPE] = ACTIONS(4596), + [anon_sym_TILDE] = ACTIONS(4596), + [anon_sym_LPAREN] = ACTIONS(4596), + [anon_sym_RPAREN] = ACTIONS(4596), + [sym__newline_token] = ACTIONS(4596), + [aux_sym_insert_token1] = ACTIONS(4596), + [aux_sym_delete_token1] = ACTIONS(4596), + [aux_sym_highlight_token1] = ACTIONS(4596), + [aux_sym_edit_comment_token1] = ACTIONS(4596), + [anon_sym_CARET_LBRACK] = ACTIONS(4596), + [anon_sym_LBRACK_CARET] = ACTIONS(4596), + [sym_uri_autolink] = ACTIONS(4596), + [sym_email_autolink] = ACTIONS(4596), + [sym__whitespace_ge_2] = ACTIONS(4596), + [aux_sym__whitespace_token1] = ACTIONS(4598), + [sym__word_no_digit] = ACTIONS(4596), + [sym__digits] = ACTIONS(4596), + [anon_sym_DASH_DASH] = ACTIONS(4598), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4596), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4596), + [sym__code_span_start] = ACTIONS(4596), + [sym__emphasis_open_star] = ACTIONS(4596), + [sym__emphasis_open_underscore] = ACTIONS(4596), + [sym__strikeout_open] = ACTIONS(4596), + [sym__latex_span_start] = ACTIONS(4596), + [sym__single_quote_open] = ACTIONS(4596), + [sym__single_quote_close] = ACTIONS(4596), + [sym__double_quote_open] = ACTIONS(4596), + [sym__superscript_open] = ACTIONS(4596), + [sym__subscript_open] = ACTIONS(4596), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4596), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4596), + [sym__cite_author_in_text] = ACTIONS(4596), + [sym__cite_suppress_author] = ACTIONS(4596), + [sym__shortcode_open_escaped] = ACTIONS(4596), + [sym__shortcode_open] = ACTIONS(4596), + [sym__unclosed_span] = ACTIONS(4596), + }, + [STATE(1049)] = { + [sym__backslash_escape] = ACTIONS(4900), + [sym_entity_reference] = ACTIONS(4900), + [sym_numeric_character_reference] = ACTIONS(4900), + [anon_sym_LT] = ACTIONS(4902), + [anon_sym_GT] = ACTIONS(4900), + [anon_sym_BANG] = ACTIONS(4900), + [anon_sym_DQUOTE] = ACTIONS(4900), + [anon_sym_POUND] = ACTIONS(4900), + [anon_sym_DOLLAR] = ACTIONS(4900), + [anon_sym_PERCENT] = ACTIONS(4900), + [anon_sym_AMP] = ACTIONS(4902), + [anon_sym_SQUOTE] = ACTIONS(4900), + [anon_sym_STAR] = ACTIONS(4900), + [anon_sym_PLUS] = ACTIONS(4900), + [anon_sym_COMMA] = ACTIONS(4900), + [anon_sym_DASH] = ACTIONS(4902), + [anon_sym_DOT] = ACTIONS(4902), + [anon_sym_SLASH] = ACTIONS(4900), + [anon_sym_COLON] = ACTIONS(4900), + [anon_sym_SEMI] = ACTIONS(4900), + [anon_sym_EQ] = ACTIONS(4900), + [anon_sym_QMARK] = ACTIONS(4900), + [anon_sym_LBRACK] = ACTIONS(4902), + [anon_sym_BSLASH] = ACTIONS(4902), + [anon_sym_CARET] = ACTIONS(4902), + [anon_sym__] = ACTIONS(4900), + [anon_sym_BQUOTE] = ACTIONS(4900), + [anon_sym_LBRACE] = ACTIONS(4900), + [anon_sym_PIPE] = ACTIONS(4900), + [anon_sym_TILDE] = ACTIONS(4900), + [anon_sym_LPAREN] = ACTIONS(4900), + [anon_sym_RPAREN] = ACTIONS(4900), + [sym__newline_token] = ACTIONS(4900), + [aux_sym_insert_token1] = ACTIONS(4900), + [aux_sym_insert_token2] = ACTIONS(4900), + [aux_sym_delete_token1] = ACTIONS(4900), + [aux_sym_highlight_token1] = ACTIONS(4900), + [aux_sym_edit_comment_token1] = ACTIONS(4900), + [anon_sym_CARET_LBRACK] = ACTIONS(4900), + [anon_sym_LBRACK_CARET] = ACTIONS(4900), + [sym_uri_autolink] = ACTIONS(4900), + [sym_email_autolink] = ACTIONS(4900), + [sym__whitespace_ge_2] = ACTIONS(4902), + [aux_sym__whitespace_token1] = ACTIONS(4902), + [sym__word_no_digit] = ACTIONS(4900), + [sym__digits] = ACTIONS(4900), + [anon_sym_DASH_DASH] = ACTIONS(4902), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4900), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4900), + [sym__code_span_start] = ACTIONS(4900), + [sym__emphasis_open_star] = ACTIONS(4900), + [sym__emphasis_open_underscore] = ACTIONS(4900), + [sym__strikeout_open] = ACTIONS(4900), + [sym__latex_span_start] = ACTIONS(4900), + [sym__single_quote_open] = ACTIONS(4900), + [sym__double_quote_open] = ACTIONS(4900), + [sym__superscript_open] = ACTIONS(4900), + [sym__subscript_open] = ACTIONS(4900), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4900), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4900), + [sym__cite_author_in_text] = ACTIONS(4900), + [sym__cite_suppress_author] = ACTIONS(4900), + [sym__shortcode_open_escaped] = ACTIONS(4900), + [sym__shortcode_open] = ACTIONS(4900), + [sym__unclosed_span] = ACTIONS(4900), + }, + [STATE(1050)] = { + [sym__backslash_escape] = ACTIONS(5052), + [sym_entity_reference] = ACTIONS(5052), + [sym_numeric_character_reference] = ACTIONS(5052), + [anon_sym_LT] = ACTIONS(5054), + [anon_sym_GT] = ACTIONS(5052), + [anon_sym_BANG] = ACTIONS(5052), + [anon_sym_DQUOTE] = ACTIONS(5052), + [anon_sym_POUND] = ACTIONS(5052), + [anon_sym_DOLLAR] = ACTIONS(5052), + [anon_sym_PERCENT] = ACTIONS(5052), + [anon_sym_AMP] = ACTIONS(5054), + [anon_sym_SQUOTE] = ACTIONS(5052), + [anon_sym_STAR] = ACTIONS(5052), + [anon_sym_PLUS] = ACTIONS(5052), + [anon_sym_COMMA] = ACTIONS(5052), + [anon_sym_DASH] = ACTIONS(5054), + [anon_sym_DOT] = ACTIONS(5054), + [anon_sym_SLASH] = ACTIONS(5052), + [anon_sym_COLON] = ACTIONS(5052), + [anon_sym_SEMI] = ACTIONS(5052), + [anon_sym_EQ] = ACTIONS(5052), + [anon_sym_QMARK] = ACTIONS(5052), + [anon_sym_LBRACK] = ACTIONS(5054), + [anon_sym_BSLASH] = ACTIONS(5054), + [anon_sym_CARET] = ACTIONS(5054), + [anon_sym__] = ACTIONS(5052), + [anon_sym_BQUOTE] = ACTIONS(5052), + [anon_sym_LBRACE] = ACTIONS(5052), + [anon_sym_PIPE] = ACTIONS(5052), + [anon_sym_TILDE] = ACTIONS(5052), + [anon_sym_LPAREN] = ACTIONS(5052), + [anon_sym_RPAREN] = ACTIONS(5052), + [sym__newline_token] = ACTIONS(5052), + [aux_sym_insert_token1] = ACTIONS(5052), + [aux_sym_delete_token1] = ACTIONS(5052), + [aux_sym_highlight_token1] = ACTIONS(5052), + [aux_sym_edit_comment_token1] = ACTIONS(5052), + [anon_sym_CARET_LBRACK] = ACTIONS(5052), + [anon_sym_LBRACK_CARET] = ACTIONS(5052), + [sym_uri_autolink] = ACTIONS(5052), + [sym_email_autolink] = ACTIONS(5052), + [sym__whitespace_ge_2] = ACTIONS(5052), + [aux_sym__whitespace_token1] = ACTIONS(5054), + [sym__word_no_digit] = ACTIONS(5052), + [sym__digits] = ACTIONS(5052), + [anon_sym_DASH_DASH] = ACTIONS(5054), + [anon_sym_DASH_DASH_DASH] = ACTIONS(5052), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5052), + [sym__code_span_start] = ACTIONS(5052), + [sym__emphasis_open_star] = ACTIONS(5052), + [sym__emphasis_open_underscore] = ACTIONS(5052), + [sym__emphasis_close_underscore] = ACTIONS(5052), + [sym__strikeout_open] = ACTIONS(5052), + [sym__latex_span_start] = ACTIONS(5052), + [sym__single_quote_open] = ACTIONS(5052), + [sym__double_quote_open] = ACTIONS(5052), + [sym__superscript_open] = ACTIONS(5052), + [sym__subscript_open] = ACTIONS(5052), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5052), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5052), + [sym__cite_author_in_text] = ACTIONS(5052), + [sym__cite_suppress_author] = ACTIONS(5052), + [sym__shortcode_open_escaped] = ACTIONS(5052), + [sym__shortcode_open] = ACTIONS(5052), + [sym__unclosed_span] = ACTIONS(5052), + }, + [STATE(1051)] = { + [sym__backslash_escape] = ACTIONS(4912), + [sym_entity_reference] = ACTIONS(4912), + [sym_numeric_character_reference] = ACTIONS(4912), + [anon_sym_LT] = ACTIONS(4914), + [anon_sym_GT] = ACTIONS(4912), + [anon_sym_BANG] = ACTIONS(4912), + [anon_sym_DQUOTE] = ACTIONS(4912), + [anon_sym_POUND] = ACTIONS(4912), + [anon_sym_DOLLAR] = ACTIONS(4912), + [anon_sym_PERCENT] = ACTIONS(4912), + [anon_sym_AMP] = ACTIONS(4914), + [anon_sym_SQUOTE] = ACTIONS(4912), + [anon_sym_STAR] = ACTIONS(4912), + [anon_sym_PLUS] = ACTIONS(4912), + [anon_sym_COMMA] = ACTIONS(4912), + [anon_sym_DASH] = ACTIONS(4914), + [anon_sym_DOT] = ACTIONS(4914), + [anon_sym_SLASH] = ACTIONS(4912), + [anon_sym_COLON] = ACTIONS(4912), + [anon_sym_SEMI] = ACTIONS(4912), + [anon_sym_EQ] = ACTIONS(4912), + [anon_sym_QMARK] = ACTIONS(4912), + [anon_sym_LBRACK] = ACTIONS(4914), + [anon_sym_BSLASH] = ACTIONS(4914), + [anon_sym_RBRACK] = ACTIONS(4912), + [anon_sym_CARET] = ACTIONS(4914), + [anon_sym__] = ACTIONS(4912), + [anon_sym_BQUOTE] = ACTIONS(4912), + [anon_sym_LBRACE] = ACTIONS(4912), + [anon_sym_PIPE] = ACTIONS(4912), + [anon_sym_TILDE] = ACTIONS(4912), + [anon_sym_LPAREN] = ACTIONS(4912), + [anon_sym_RPAREN] = ACTIONS(4912), + [sym__newline_token] = ACTIONS(4912), + [aux_sym_insert_token1] = ACTIONS(4912), + [aux_sym_delete_token1] = ACTIONS(4912), + [aux_sym_highlight_token1] = ACTIONS(4912), + [aux_sym_edit_comment_token1] = ACTIONS(4912), + [anon_sym_CARET_LBRACK] = ACTIONS(4912), + [anon_sym_LBRACK_CARET] = ACTIONS(4912), + [sym_uri_autolink] = ACTIONS(4912), + [sym_email_autolink] = ACTIONS(4912), + [sym__whitespace_ge_2] = ACTIONS(4912), + [aux_sym__whitespace_token1] = ACTIONS(4914), + [sym__word_no_digit] = ACTIONS(4912), + [sym__digits] = ACTIONS(4912), + [anon_sym_DASH_DASH] = ACTIONS(4914), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4912), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4912), + [sym__code_span_start] = ACTIONS(4912), + [sym__emphasis_open_star] = ACTIONS(4912), + [sym__emphasis_open_underscore] = ACTIONS(4912), + [sym__strikeout_open] = ACTIONS(4912), + [sym__latex_span_start] = ACTIONS(4912), + [sym__single_quote_open] = ACTIONS(4912), + [sym__double_quote_open] = ACTIONS(4912), + [sym__superscript_open] = ACTIONS(4912), + [sym__subscript_open] = ACTIONS(4912), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4912), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4912), + [sym__cite_author_in_text] = ACTIONS(4912), + [sym__cite_suppress_author] = ACTIONS(4912), + [sym__shortcode_open_escaped] = ACTIONS(4912), + [sym__shortcode_open] = ACTIONS(4912), + [sym__unclosed_span] = ACTIONS(4912), + }, + [STATE(1052)] = { + [sym__backslash_escape] = ACTIONS(4916), + [sym_entity_reference] = ACTIONS(4916), + [sym_numeric_character_reference] = ACTIONS(4916), + [anon_sym_LT] = ACTIONS(4918), + [anon_sym_GT] = ACTIONS(4916), + [anon_sym_BANG] = ACTIONS(4916), + [anon_sym_DQUOTE] = ACTIONS(4916), + [anon_sym_POUND] = ACTIONS(4916), + [anon_sym_DOLLAR] = ACTIONS(4916), + [anon_sym_PERCENT] = ACTIONS(4916), + [anon_sym_AMP] = ACTIONS(4918), + [anon_sym_SQUOTE] = ACTIONS(4916), + [anon_sym_STAR] = ACTIONS(4916), + [anon_sym_PLUS] = ACTIONS(4916), + [anon_sym_COMMA] = ACTIONS(4916), + [anon_sym_DASH] = ACTIONS(4918), + [anon_sym_DOT] = ACTIONS(4918), + [anon_sym_SLASH] = ACTIONS(4916), + [anon_sym_COLON] = ACTIONS(4916), + [anon_sym_SEMI] = ACTIONS(4916), + [anon_sym_EQ] = ACTIONS(4916), + [anon_sym_QMARK] = ACTIONS(4916), + [anon_sym_LBRACK] = ACTIONS(4918), + [anon_sym_BSLASH] = ACTIONS(4918), + [anon_sym_RBRACK] = ACTIONS(4916), + [anon_sym_CARET] = ACTIONS(4918), + [anon_sym__] = ACTIONS(4916), + [anon_sym_BQUOTE] = ACTIONS(4916), + [anon_sym_LBRACE] = ACTIONS(4916), + [anon_sym_PIPE] = ACTIONS(4916), + [anon_sym_TILDE] = ACTIONS(4916), + [anon_sym_LPAREN] = ACTIONS(4916), + [anon_sym_RPAREN] = ACTIONS(4916), + [sym__newline_token] = ACTIONS(4916), + [aux_sym_insert_token1] = ACTIONS(4916), + [aux_sym_delete_token1] = ACTIONS(4916), + [aux_sym_highlight_token1] = ACTIONS(4916), + [aux_sym_edit_comment_token1] = ACTIONS(4916), + [anon_sym_CARET_LBRACK] = ACTIONS(4916), + [anon_sym_LBRACK_CARET] = ACTIONS(4916), + [sym_uri_autolink] = ACTIONS(4916), + [sym_email_autolink] = ACTIONS(4916), + [sym__whitespace_ge_2] = ACTIONS(4916), + [aux_sym__whitespace_token1] = ACTIONS(4918), + [sym__word_no_digit] = ACTIONS(4916), + [sym__digits] = ACTIONS(4916), + [anon_sym_DASH_DASH] = ACTIONS(4918), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4916), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4916), + [sym__code_span_start] = ACTIONS(4916), + [sym__emphasis_open_star] = ACTIONS(4916), + [sym__emphasis_open_underscore] = ACTIONS(4916), + [sym__strikeout_open] = ACTIONS(4916), + [sym__latex_span_start] = ACTIONS(4916), + [sym__single_quote_open] = ACTIONS(4916), + [sym__double_quote_open] = ACTIONS(4916), + [sym__superscript_open] = ACTIONS(4916), + [sym__subscript_open] = ACTIONS(4916), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4916), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4916), + [sym__cite_author_in_text] = ACTIONS(4916), + [sym__cite_suppress_author] = ACTIONS(4916), + [sym__shortcode_open_escaped] = ACTIONS(4916), + [sym__shortcode_open] = ACTIONS(4916), + [sym__unclosed_span] = ACTIONS(4916), + }, + [STATE(1053)] = { + [sym__backslash_escape] = ACTIONS(4920), + [sym_entity_reference] = ACTIONS(4920), + [sym_numeric_character_reference] = ACTIONS(4920), + [anon_sym_LT] = ACTIONS(4922), + [anon_sym_GT] = ACTIONS(4920), + [anon_sym_BANG] = ACTIONS(4920), + [anon_sym_DQUOTE] = ACTIONS(4920), + [anon_sym_POUND] = ACTIONS(4920), + [anon_sym_DOLLAR] = ACTIONS(4920), + [anon_sym_PERCENT] = ACTIONS(4920), + [anon_sym_AMP] = ACTIONS(4922), + [anon_sym_SQUOTE] = ACTIONS(4920), + [anon_sym_STAR] = ACTIONS(4920), + [anon_sym_PLUS] = ACTIONS(4920), + [anon_sym_COMMA] = ACTIONS(4920), + [anon_sym_DASH] = ACTIONS(4922), + [anon_sym_DOT] = ACTIONS(4922), + [anon_sym_SLASH] = ACTIONS(4920), + [anon_sym_COLON] = ACTIONS(4920), + [anon_sym_SEMI] = ACTIONS(4920), + [anon_sym_EQ] = ACTIONS(4920), + [anon_sym_QMARK] = ACTIONS(4920), + [anon_sym_LBRACK] = ACTIONS(4922), + [anon_sym_BSLASH] = ACTIONS(4922), + [anon_sym_RBRACK] = ACTIONS(4920), + [anon_sym_CARET] = ACTIONS(4922), + [anon_sym__] = ACTIONS(4920), + [anon_sym_BQUOTE] = ACTIONS(4920), + [anon_sym_LBRACE] = ACTIONS(4920), + [anon_sym_PIPE] = ACTIONS(4920), + [anon_sym_TILDE] = ACTIONS(4920), + [anon_sym_LPAREN] = ACTIONS(4920), + [anon_sym_RPAREN] = ACTIONS(4920), + [sym__newline_token] = ACTIONS(4920), + [aux_sym_insert_token1] = ACTIONS(4920), + [aux_sym_delete_token1] = ACTIONS(4920), + [aux_sym_highlight_token1] = ACTIONS(4920), + [aux_sym_edit_comment_token1] = ACTIONS(4920), + [anon_sym_CARET_LBRACK] = ACTIONS(4920), + [anon_sym_LBRACK_CARET] = ACTIONS(4920), + [sym_uri_autolink] = ACTIONS(4920), + [sym_email_autolink] = ACTIONS(4920), + [sym__whitespace_ge_2] = ACTIONS(4920), + [aux_sym__whitespace_token1] = ACTIONS(4922), + [sym__word_no_digit] = ACTIONS(4920), + [sym__digits] = ACTIONS(4920), + [anon_sym_DASH_DASH] = ACTIONS(4922), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4920), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4920), + [sym__code_span_start] = ACTIONS(4920), + [sym__emphasis_open_star] = ACTIONS(4920), + [sym__emphasis_open_underscore] = ACTIONS(4920), + [sym__strikeout_open] = ACTIONS(4920), + [sym__latex_span_start] = ACTIONS(4920), + [sym__single_quote_open] = ACTIONS(4920), + [sym__double_quote_open] = ACTIONS(4920), + [sym__superscript_open] = ACTIONS(4920), + [sym__subscript_open] = ACTIONS(4920), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4920), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4920), + [sym__cite_author_in_text] = ACTIONS(4920), + [sym__cite_suppress_author] = ACTIONS(4920), + [sym__shortcode_open_escaped] = ACTIONS(4920), + [sym__shortcode_open] = ACTIONS(4920), + [sym__unclosed_span] = ACTIONS(4920), + }, + [STATE(1054)] = { + [sym__backslash_escape] = ACTIONS(4932), + [sym_entity_reference] = ACTIONS(4932), + [sym_numeric_character_reference] = ACTIONS(4932), + [anon_sym_LT] = ACTIONS(4934), + [anon_sym_GT] = ACTIONS(4932), + [anon_sym_BANG] = ACTIONS(4932), + [anon_sym_DQUOTE] = ACTIONS(4932), + [anon_sym_POUND] = ACTIONS(4932), + [anon_sym_DOLLAR] = ACTIONS(4932), + [anon_sym_PERCENT] = ACTIONS(4932), + [anon_sym_AMP] = ACTIONS(4934), + [anon_sym_SQUOTE] = ACTIONS(4932), + [anon_sym_STAR] = ACTIONS(4932), + [anon_sym_PLUS] = ACTIONS(4932), + [anon_sym_COMMA] = ACTIONS(4932), + [anon_sym_DASH] = ACTIONS(4934), + [anon_sym_DOT] = ACTIONS(4934), + [anon_sym_SLASH] = ACTIONS(4932), + [anon_sym_COLON] = ACTIONS(4932), + [anon_sym_SEMI] = ACTIONS(4932), + [anon_sym_EQ] = ACTIONS(4932), + [anon_sym_QMARK] = ACTIONS(4932), + [anon_sym_LBRACK] = ACTIONS(4934), + [anon_sym_BSLASH] = ACTIONS(4934), + [anon_sym_RBRACK] = ACTIONS(4932), + [anon_sym_CARET] = ACTIONS(4934), + [anon_sym__] = ACTIONS(4932), + [anon_sym_BQUOTE] = ACTIONS(4932), + [anon_sym_LBRACE] = ACTIONS(4932), + [anon_sym_PIPE] = ACTIONS(4932), + [anon_sym_TILDE] = ACTIONS(4932), + [anon_sym_LPAREN] = ACTIONS(4932), + [anon_sym_RPAREN] = ACTIONS(4932), + [sym__newline_token] = ACTIONS(4932), + [aux_sym_insert_token1] = ACTIONS(4932), + [aux_sym_delete_token1] = ACTIONS(4932), + [aux_sym_highlight_token1] = ACTIONS(4932), + [aux_sym_edit_comment_token1] = ACTIONS(4932), + [anon_sym_CARET_LBRACK] = ACTIONS(4932), + [anon_sym_LBRACK_CARET] = ACTIONS(4932), + [sym_uri_autolink] = ACTIONS(4932), + [sym_email_autolink] = ACTIONS(4932), + [sym__whitespace_ge_2] = ACTIONS(4932), + [aux_sym__whitespace_token1] = ACTIONS(4934), + [sym__word_no_digit] = ACTIONS(4932), + [sym__digits] = ACTIONS(4932), + [anon_sym_DASH_DASH] = ACTIONS(4934), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4932), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4932), + [sym__code_span_start] = ACTIONS(4932), + [sym__emphasis_open_star] = ACTIONS(4932), + [sym__emphasis_open_underscore] = ACTIONS(4932), + [sym__strikeout_open] = ACTIONS(4932), + [sym__latex_span_start] = ACTIONS(4932), + [sym__single_quote_open] = ACTIONS(4932), + [sym__double_quote_open] = ACTIONS(4932), + [sym__superscript_open] = ACTIONS(4932), + [sym__subscript_open] = ACTIONS(4932), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4932), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4932), + [sym__cite_author_in_text] = ACTIONS(4932), + [sym__cite_suppress_author] = ACTIONS(4932), + [sym__shortcode_open_escaped] = ACTIONS(4932), + [sym__shortcode_open] = ACTIONS(4932), + [sym__unclosed_span] = ACTIONS(4932), + }, + [STATE(1055)] = { + [sym__backslash_escape] = ACTIONS(4944), + [sym_entity_reference] = ACTIONS(4944), + [sym_numeric_character_reference] = ACTIONS(4944), + [anon_sym_LT] = ACTIONS(4946), + [anon_sym_GT] = ACTIONS(4944), + [anon_sym_BANG] = ACTIONS(4944), + [anon_sym_DQUOTE] = ACTIONS(4944), + [anon_sym_POUND] = ACTIONS(4944), + [anon_sym_DOLLAR] = ACTIONS(4944), + [anon_sym_PERCENT] = ACTIONS(4944), + [anon_sym_AMP] = ACTIONS(4946), + [anon_sym_SQUOTE] = ACTIONS(4944), + [anon_sym_STAR] = ACTIONS(4944), + [anon_sym_PLUS] = ACTIONS(4944), + [anon_sym_COMMA] = ACTIONS(4944), + [anon_sym_DASH] = ACTIONS(4946), + [anon_sym_DOT] = ACTIONS(4946), + [anon_sym_SLASH] = ACTIONS(4944), + [anon_sym_COLON] = ACTIONS(4944), + [anon_sym_SEMI] = ACTIONS(4944), + [anon_sym_EQ] = ACTIONS(4944), + [anon_sym_QMARK] = ACTIONS(4944), + [anon_sym_LBRACK] = ACTIONS(4946), + [anon_sym_BSLASH] = ACTIONS(4946), + [anon_sym_CARET] = ACTIONS(4946), + [anon_sym__] = ACTIONS(4944), + [anon_sym_BQUOTE] = ACTIONS(4944), + [anon_sym_LBRACE] = ACTIONS(4944), + [anon_sym_PIPE] = ACTIONS(4944), + [anon_sym_TILDE] = ACTIONS(4944), + [anon_sym_LPAREN] = ACTIONS(4944), + [anon_sym_RPAREN] = ACTIONS(4944), + [sym__newline_token] = ACTIONS(4944), + [aux_sym_insert_token1] = ACTIONS(4944), + [aux_sym_insert_token2] = ACTIONS(4944), + [aux_sym_delete_token1] = ACTIONS(4944), + [aux_sym_highlight_token1] = ACTIONS(4944), + [aux_sym_edit_comment_token1] = ACTIONS(4944), + [anon_sym_CARET_LBRACK] = ACTIONS(4944), + [anon_sym_LBRACK_CARET] = ACTIONS(4944), + [sym_uri_autolink] = ACTIONS(4944), + [sym_email_autolink] = ACTIONS(4944), + [sym__whitespace_ge_2] = ACTIONS(4946), + [aux_sym__whitespace_token1] = ACTIONS(4946), + [sym__word_no_digit] = ACTIONS(4944), + [sym__digits] = ACTIONS(4944), + [anon_sym_DASH_DASH] = ACTIONS(4946), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4944), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4944), + [sym__code_span_start] = ACTIONS(4944), + [sym__emphasis_open_star] = ACTIONS(4944), + [sym__emphasis_open_underscore] = ACTIONS(4944), + [sym__strikeout_open] = ACTIONS(4944), + [sym__latex_span_start] = ACTIONS(4944), + [sym__single_quote_open] = ACTIONS(4944), + [sym__double_quote_open] = ACTIONS(4944), + [sym__superscript_open] = ACTIONS(4944), + [sym__subscript_open] = ACTIONS(4944), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4944), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4944), + [sym__cite_author_in_text] = ACTIONS(4944), + [sym__cite_suppress_author] = ACTIONS(4944), + [sym__shortcode_open_escaped] = ACTIONS(4944), + [sym__shortcode_open] = ACTIONS(4944), + [sym__unclosed_span] = ACTIONS(4944), + }, + [STATE(1056)] = { + [sym__backslash_escape] = ACTIONS(4952), + [sym_entity_reference] = ACTIONS(4952), + [sym_numeric_character_reference] = ACTIONS(4952), + [anon_sym_LT] = ACTIONS(4954), + [anon_sym_GT] = ACTIONS(4952), + [anon_sym_BANG] = ACTIONS(4952), + [anon_sym_DQUOTE] = ACTIONS(4952), + [anon_sym_POUND] = ACTIONS(4952), + [anon_sym_DOLLAR] = ACTIONS(4952), + [anon_sym_PERCENT] = ACTIONS(4952), + [anon_sym_AMP] = ACTIONS(4954), + [anon_sym_SQUOTE] = ACTIONS(4952), + [anon_sym_STAR] = ACTIONS(4952), + [anon_sym_PLUS] = ACTIONS(4952), + [anon_sym_COMMA] = ACTIONS(4952), + [anon_sym_DASH] = ACTIONS(4954), + [anon_sym_DOT] = ACTIONS(4954), + [anon_sym_SLASH] = ACTIONS(4952), + [anon_sym_COLON] = ACTIONS(4952), + [anon_sym_SEMI] = ACTIONS(4952), + [anon_sym_EQ] = ACTIONS(4952), + [anon_sym_QMARK] = ACTIONS(4952), + [anon_sym_LBRACK] = ACTIONS(4954), + [anon_sym_BSLASH] = ACTIONS(4954), + [anon_sym_CARET] = ACTIONS(4954), + [anon_sym__] = ACTIONS(4952), + [anon_sym_BQUOTE] = ACTIONS(4952), + [anon_sym_LBRACE] = ACTIONS(4952), + [anon_sym_PIPE] = ACTIONS(4952), + [anon_sym_TILDE] = ACTIONS(4952), + [anon_sym_LPAREN] = ACTIONS(4952), + [anon_sym_RPAREN] = ACTIONS(4952), + [sym__newline_token] = ACTIONS(4952), + [aux_sym_insert_token1] = ACTIONS(4952), + [aux_sym_insert_token2] = ACTIONS(4952), + [aux_sym_delete_token1] = ACTIONS(4952), + [aux_sym_highlight_token1] = ACTIONS(4952), + [aux_sym_edit_comment_token1] = ACTIONS(4952), + [anon_sym_CARET_LBRACK] = ACTIONS(4952), + [anon_sym_LBRACK_CARET] = ACTIONS(4952), + [sym_uri_autolink] = ACTIONS(4952), + [sym_email_autolink] = ACTIONS(4952), + [sym__whitespace_ge_2] = ACTIONS(4954), + [aux_sym__whitespace_token1] = ACTIONS(4954), + [sym__word_no_digit] = ACTIONS(4952), + [sym__digits] = ACTIONS(4952), + [anon_sym_DASH_DASH] = ACTIONS(4954), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4952), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4952), + [sym__code_span_start] = ACTIONS(4952), + [sym__emphasis_open_star] = ACTIONS(4952), + [sym__emphasis_open_underscore] = ACTIONS(4952), + [sym__strikeout_open] = ACTIONS(4952), + [sym__latex_span_start] = ACTIONS(4952), + [sym__single_quote_open] = ACTIONS(4952), + [sym__double_quote_open] = ACTIONS(4952), + [sym__superscript_open] = ACTIONS(4952), + [sym__subscript_open] = ACTIONS(4952), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4952), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4952), + [sym__cite_author_in_text] = ACTIONS(4952), + [sym__cite_suppress_author] = ACTIONS(4952), + [sym__shortcode_open_escaped] = ACTIONS(4952), + [sym__shortcode_open] = ACTIONS(4952), + [sym__unclosed_span] = ACTIONS(4952), + }, + [STATE(1057)] = { + [sym__backslash_escape] = ACTIONS(4956), + [sym_entity_reference] = ACTIONS(4956), + [sym_numeric_character_reference] = ACTIONS(4956), + [anon_sym_LT] = ACTIONS(4958), + [anon_sym_GT] = ACTIONS(4956), + [anon_sym_BANG] = ACTIONS(4956), + [anon_sym_DQUOTE] = ACTIONS(4956), + [anon_sym_POUND] = ACTIONS(4956), + [anon_sym_DOLLAR] = ACTIONS(4956), + [anon_sym_PERCENT] = ACTIONS(4956), + [anon_sym_AMP] = ACTIONS(4958), + [anon_sym_SQUOTE] = ACTIONS(4956), + [anon_sym_STAR] = ACTIONS(4956), + [anon_sym_PLUS] = ACTIONS(4956), + [anon_sym_COMMA] = ACTIONS(4956), + [anon_sym_DASH] = ACTIONS(4958), + [anon_sym_DOT] = ACTIONS(4958), + [anon_sym_SLASH] = ACTIONS(4956), + [anon_sym_COLON] = ACTIONS(4956), + [anon_sym_SEMI] = ACTIONS(4956), + [anon_sym_EQ] = ACTIONS(4956), + [anon_sym_QMARK] = ACTIONS(4956), + [anon_sym_LBRACK] = ACTIONS(4958), + [anon_sym_BSLASH] = ACTIONS(4958), + [anon_sym_CARET] = ACTIONS(4958), + [anon_sym__] = ACTIONS(4956), + [anon_sym_BQUOTE] = ACTIONS(4956), + [anon_sym_LBRACE] = ACTIONS(4956), + [anon_sym_PIPE] = ACTIONS(4956), + [anon_sym_TILDE] = ACTIONS(4956), + [anon_sym_LPAREN] = ACTIONS(4956), + [anon_sym_RPAREN] = ACTIONS(4956), + [sym__newline_token] = ACTIONS(4956), + [aux_sym_insert_token1] = ACTIONS(4956), + [aux_sym_insert_token2] = ACTIONS(4956), + [aux_sym_delete_token1] = ACTIONS(4956), + [aux_sym_highlight_token1] = ACTIONS(4956), + [aux_sym_edit_comment_token1] = ACTIONS(4956), + [anon_sym_CARET_LBRACK] = ACTIONS(4956), + [anon_sym_LBRACK_CARET] = ACTIONS(4956), + [sym_uri_autolink] = ACTIONS(4956), + [sym_email_autolink] = ACTIONS(4956), + [sym__whitespace_ge_2] = ACTIONS(4958), + [aux_sym__whitespace_token1] = ACTIONS(4958), + [sym__word_no_digit] = ACTIONS(4956), + [sym__digits] = ACTIONS(4956), + [anon_sym_DASH_DASH] = ACTIONS(4958), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4956), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4956), + [sym__code_span_start] = ACTIONS(4956), + [sym__emphasis_open_star] = ACTIONS(4956), + [sym__emphasis_open_underscore] = ACTIONS(4956), + [sym__strikeout_open] = ACTIONS(4956), + [sym__latex_span_start] = ACTIONS(4956), + [sym__single_quote_open] = ACTIONS(4956), + [sym__double_quote_open] = ACTIONS(4956), + [sym__superscript_open] = ACTIONS(4956), + [sym__subscript_open] = ACTIONS(4956), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4956), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4956), + [sym__cite_author_in_text] = ACTIONS(4956), + [sym__cite_suppress_author] = ACTIONS(4956), + [sym__shortcode_open_escaped] = ACTIONS(4956), + [sym__shortcode_open] = ACTIONS(4956), + [sym__unclosed_span] = ACTIONS(4956), + }, + [STATE(1058)] = { + [sym__backslash_escape] = ACTIONS(4960), + [sym_entity_reference] = ACTIONS(4960), + [sym_numeric_character_reference] = ACTIONS(4960), + [anon_sym_LT] = ACTIONS(4962), + [anon_sym_GT] = ACTIONS(4960), + [anon_sym_BANG] = ACTIONS(4960), + [anon_sym_DQUOTE] = ACTIONS(4960), + [anon_sym_POUND] = ACTIONS(4960), + [anon_sym_DOLLAR] = ACTIONS(4960), + [anon_sym_PERCENT] = ACTIONS(4960), + [anon_sym_AMP] = ACTIONS(4962), + [anon_sym_SQUOTE] = ACTIONS(4960), + [anon_sym_STAR] = ACTIONS(4960), + [anon_sym_PLUS] = ACTIONS(4960), + [anon_sym_COMMA] = ACTIONS(4960), + [anon_sym_DASH] = ACTIONS(4962), + [anon_sym_DOT] = ACTIONS(4962), + [anon_sym_SLASH] = ACTIONS(4960), + [anon_sym_COLON] = ACTIONS(4960), + [anon_sym_SEMI] = ACTIONS(4960), + [anon_sym_EQ] = ACTIONS(4960), + [anon_sym_QMARK] = ACTIONS(4960), + [anon_sym_LBRACK] = ACTIONS(4962), + [anon_sym_BSLASH] = ACTIONS(4962), + [anon_sym_CARET] = ACTIONS(4962), + [anon_sym__] = ACTIONS(4960), + [anon_sym_BQUOTE] = ACTIONS(4960), + [anon_sym_LBRACE] = ACTIONS(4960), + [anon_sym_PIPE] = ACTIONS(4960), + [anon_sym_TILDE] = ACTIONS(4960), + [anon_sym_LPAREN] = ACTIONS(4960), + [anon_sym_RPAREN] = ACTIONS(4960), + [sym__newline_token] = ACTIONS(4960), + [aux_sym_insert_token1] = ACTIONS(4960), + [aux_sym_insert_token2] = ACTIONS(4960), + [aux_sym_delete_token1] = ACTIONS(4960), + [aux_sym_highlight_token1] = ACTIONS(4960), + [aux_sym_edit_comment_token1] = ACTIONS(4960), + [anon_sym_CARET_LBRACK] = ACTIONS(4960), + [anon_sym_LBRACK_CARET] = ACTIONS(4960), + [sym_uri_autolink] = ACTIONS(4960), + [sym_email_autolink] = ACTIONS(4960), + [sym__whitespace_ge_2] = ACTIONS(4962), + [aux_sym__whitespace_token1] = ACTIONS(4962), + [sym__word_no_digit] = ACTIONS(4960), + [sym__digits] = ACTIONS(4960), + [anon_sym_DASH_DASH] = ACTIONS(4962), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4960), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4960), + [sym__code_span_start] = ACTIONS(4960), + [sym__emphasis_open_star] = ACTIONS(4960), + [sym__emphasis_open_underscore] = ACTIONS(4960), + [sym__strikeout_open] = ACTIONS(4960), + [sym__latex_span_start] = ACTIONS(4960), + [sym__single_quote_open] = ACTIONS(4960), + [sym__double_quote_open] = ACTIONS(4960), + [sym__superscript_open] = ACTIONS(4960), + [sym__subscript_open] = ACTIONS(4960), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4960), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4960), + [sym__cite_author_in_text] = ACTIONS(4960), + [sym__cite_suppress_author] = ACTIONS(4960), + [sym__shortcode_open_escaped] = ACTIONS(4960), + [sym__shortcode_open] = ACTIONS(4960), + [sym__unclosed_span] = ACTIONS(4960), + }, + [STATE(1059)] = { + [sym__backslash_escape] = ACTIONS(4964), + [sym_entity_reference] = ACTIONS(4964), + [sym_numeric_character_reference] = ACTIONS(4964), + [anon_sym_LT] = ACTIONS(4966), + [anon_sym_GT] = ACTIONS(4964), + [anon_sym_BANG] = ACTIONS(4964), + [anon_sym_DQUOTE] = ACTIONS(4964), + [anon_sym_POUND] = ACTIONS(4964), + [anon_sym_DOLLAR] = ACTIONS(4964), + [anon_sym_PERCENT] = ACTIONS(4964), + [anon_sym_AMP] = ACTIONS(4966), + [anon_sym_SQUOTE] = ACTIONS(4964), + [anon_sym_STAR] = ACTIONS(4964), + [anon_sym_PLUS] = ACTIONS(4964), + [anon_sym_COMMA] = ACTIONS(4964), + [anon_sym_DASH] = ACTIONS(4966), + [anon_sym_DOT] = ACTIONS(4966), + [anon_sym_SLASH] = ACTIONS(4964), + [anon_sym_COLON] = ACTIONS(4964), + [anon_sym_SEMI] = ACTIONS(4964), + [anon_sym_EQ] = ACTIONS(4964), + [anon_sym_QMARK] = ACTIONS(4964), + [anon_sym_LBRACK] = ACTIONS(4966), + [anon_sym_BSLASH] = ACTIONS(4966), + [anon_sym_CARET] = ACTIONS(4966), + [anon_sym__] = ACTIONS(4964), + [anon_sym_BQUOTE] = ACTIONS(4964), + [anon_sym_LBRACE] = ACTIONS(4964), + [anon_sym_PIPE] = ACTIONS(4964), + [anon_sym_TILDE] = ACTIONS(4964), + [anon_sym_LPAREN] = ACTIONS(4964), + [anon_sym_RPAREN] = ACTIONS(4964), + [sym__newline_token] = ACTIONS(4964), + [aux_sym_insert_token1] = ACTIONS(4964), + [aux_sym_insert_token2] = ACTIONS(4964), + [aux_sym_delete_token1] = ACTIONS(4964), + [aux_sym_highlight_token1] = ACTIONS(4964), + [aux_sym_edit_comment_token1] = ACTIONS(4964), + [anon_sym_CARET_LBRACK] = ACTIONS(4964), + [anon_sym_LBRACK_CARET] = ACTIONS(4964), + [sym_uri_autolink] = ACTIONS(4964), + [sym_email_autolink] = ACTIONS(4964), + [sym__whitespace_ge_2] = ACTIONS(4966), + [aux_sym__whitespace_token1] = ACTIONS(4966), + [sym__word_no_digit] = ACTIONS(4964), + [sym__digits] = ACTIONS(4964), + [anon_sym_DASH_DASH] = ACTIONS(4966), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4964), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4964), + [sym__code_span_start] = ACTIONS(4964), + [sym__emphasis_open_star] = ACTIONS(4964), + [sym__emphasis_open_underscore] = ACTIONS(4964), + [sym__strikeout_open] = ACTIONS(4964), + [sym__latex_span_start] = ACTIONS(4964), + [sym__single_quote_open] = ACTIONS(4964), + [sym__double_quote_open] = ACTIONS(4964), + [sym__superscript_open] = ACTIONS(4964), + [sym__subscript_open] = ACTIONS(4964), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4964), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4964), + [sym__cite_author_in_text] = ACTIONS(4964), + [sym__cite_suppress_author] = ACTIONS(4964), + [sym__shortcode_open_escaped] = ACTIONS(4964), + [sym__shortcode_open] = ACTIONS(4964), + [sym__unclosed_span] = ACTIONS(4964), + }, + [STATE(1060)] = { + [sym__backslash_escape] = ACTIONS(4968), + [sym_entity_reference] = ACTIONS(4968), + [sym_numeric_character_reference] = ACTIONS(4968), + [anon_sym_LT] = ACTIONS(4970), + [anon_sym_GT] = ACTIONS(4968), + [anon_sym_BANG] = ACTIONS(4968), + [anon_sym_DQUOTE] = ACTIONS(4968), + [anon_sym_POUND] = ACTIONS(4968), + [anon_sym_DOLLAR] = ACTIONS(4968), + [anon_sym_PERCENT] = ACTIONS(4968), + [anon_sym_AMP] = ACTIONS(4970), + [anon_sym_SQUOTE] = ACTIONS(4968), + [anon_sym_STAR] = ACTIONS(4968), + [anon_sym_PLUS] = ACTIONS(4968), + [anon_sym_COMMA] = ACTIONS(4968), + [anon_sym_DASH] = ACTIONS(4970), + [anon_sym_DOT] = ACTIONS(4970), + [anon_sym_SLASH] = ACTIONS(4968), + [anon_sym_COLON] = ACTIONS(4968), + [anon_sym_SEMI] = ACTIONS(4968), + [anon_sym_EQ] = ACTIONS(4968), + [anon_sym_QMARK] = ACTIONS(4968), + [anon_sym_LBRACK] = ACTIONS(4970), + [anon_sym_BSLASH] = ACTIONS(4970), + [anon_sym_CARET] = ACTIONS(4970), + [anon_sym__] = ACTIONS(4968), + [anon_sym_BQUOTE] = ACTIONS(4968), + [anon_sym_LBRACE] = ACTIONS(4968), + [anon_sym_PIPE] = ACTIONS(4968), + [anon_sym_TILDE] = ACTIONS(4968), + [anon_sym_LPAREN] = ACTIONS(4968), + [anon_sym_RPAREN] = ACTIONS(4968), + [sym__newline_token] = ACTIONS(4968), + [aux_sym_insert_token1] = ACTIONS(4968), + [aux_sym_insert_token2] = ACTIONS(4968), + [aux_sym_delete_token1] = ACTIONS(4968), + [aux_sym_highlight_token1] = ACTIONS(4968), + [aux_sym_edit_comment_token1] = ACTIONS(4968), + [anon_sym_CARET_LBRACK] = ACTIONS(4968), + [anon_sym_LBRACK_CARET] = ACTIONS(4968), + [sym_uri_autolink] = ACTIONS(4968), + [sym_email_autolink] = ACTIONS(4968), + [sym__whitespace_ge_2] = ACTIONS(4970), + [aux_sym__whitespace_token1] = ACTIONS(4970), + [sym__word_no_digit] = ACTIONS(4968), + [sym__digits] = ACTIONS(4968), + [anon_sym_DASH_DASH] = ACTIONS(4970), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4968), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4968), + [sym__code_span_start] = ACTIONS(4968), + [sym__emphasis_open_star] = ACTIONS(4968), + [sym__emphasis_open_underscore] = ACTIONS(4968), + [sym__strikeout_open] = ACTIONS(4968), + [sym__latex_span_start] = ACTIONS(4968), + [sym__single_quote_open] = ACTIONS(4968), + [sym__double_quote_open] = ACTIONS(4968), + [sym__superscript_open] = ACTIONS(4968), + [sym__subscript_open] = ACTIONS(4968), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4968), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4968), + [sym__cite_author_in_text] = ACTIONS(4968), + [sym__cite_suppress_author] = ACTIONS(4968), + [sym__shortcode_open_escaped] = ACTIONS(4968), + [sym__shortcode_open] = ACTIONS(4968), + [sym__unclosed_span] = ACTIONS(4968), + }, + [STATE(1061)] = { + [sym__backslash_escape] = ACTIONS(4972), + [sym_entity_reference] = ACTIONS(4972), + [sym_numeric_character_reference] = ACTIONS(4972), + [anon_sym_LT] = ACTIONS(4974), + [anon_sym_GT] = ACTIONS(4972), + [anon_sym_BANG] = ACTIONS(4972), + [anon_sym_DQUOTE] = ACTIONS(4972), + [anon_sym_POUND] = ACTIONS(4972), + [anon_sym_DOLLAR] = ACTIONS(4972), + [anon_sym_PERCENT] = ACTIONS(4972), + [anon_sym_AMP] = ACTIONS(4974), + [anon_sym_SQUOTE] = ACTIONS(4972), + [anon_sym_STAR] = ACTIONS(4972), + [anon_sym_PLUS] = ACTIONS(4972), + [anon_sym_COMMA] = ACTIONS(4972), + [anon_sym_DASH] = ACTIONS(4974), + [anon_sym_DOT] = ACTIONS(4974), + [anon_sym_SLASH] = ACTIONS(4972), + [anon_sym_COLON] = ACTIONS(4972), + [anon_sym_SEMI] = ACTIONS(4972), + [anon_sym_EQ] = ACTIONS(4972), + [anon_sym_QMARK] = ACTIONS(4972), + [anon_sym_LBRACK] = ACTIONS(4974), + [anon_sym_BSLASH] = ACTIONS(4974), + [anon_sym_CARET] = ACTIONS(4974), + [anon_sym__] = ACTIONS(4972), + [anon_sym_BQUOTE] = ACTIONS(4972), + [anon_sym_LBRACE] = ACTIONS(4972), + [anon_sym_PIPE] = ACTIONS(4972), + [anon_sym_TILDE] = ACTIONS(4972), + [anon_sym_LPAREN] = ACTIONS(4972), + [anon_sym_RPAREN] = ACTIONS(4972), + [sym__newline_token] = ACTIONS(4972), + [aux_sym_insert_token1] = ACTIONS(4972), + [aux_sym_insert_token2] = ACTIONS(4972), + [aux_sym_delete_token1] = ACTIONS(4972), + [aux_sym_highlight_token1] = ACTIONS(4972), + [aux_sym_edit_comment_token1] = ACTIONS(4972), + [anon_sym_CARET_LBRACK] = ACTIONS(4972), + [anon_sym_LBRACK_CARET] = ACTIONS(4972), + [sym_uri_autolink] = ACTIONS(4972), + [sym_email_autolink] = ACTIONS(4972), + [sym__whitespace_ge_2] = ACTIONS(4974), + [aux_sym__whitespace_token1] = ACTIONS(4974), + [sym__word_no_digit] = ACTIONS(4972), + [sym__digits] = ACTIONS(4972), + [anon_sym_DASH_DASH] = ACTIONS(4974), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4972), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4972), + [sym__code_span_start] = ACTIONS(4972), + [sym__emphasis_open_star] = ACTIONS(4972), + [sym__emphasis_open_underscore] = ACTIONS(4972), + [sym__strikeout_open] = ACTIONS(4972), + [sym__latex_span_start] = ACTIONS(4972), + [sym__single_quote_open] = ACTIONS(4972), + [sym__double_quote_open] = ACTIONS(4972), + [sym__superscript_open] = ACTIONS(4972), + [sym__subscript_open] = ACTIONS(4972), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4972), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4972), + [sym__cite_author_in_text] = ACTIONS(4972), + [sym__cite_suppress_author] = ACTIONS(4972), + [sym__shortcode_open_escaped] = ACTIONS(4972), + [sym__shortcode_open] = ACTIONS(4972), + [sym__unclosed_span] = ACTIONS(4972), + }, + [STATE(1062)] = { + [sym__backslash_escape] = ACTIONS(4988), + [sym_entity_reference] = ACTIONS(4988), + [sym_numeric_character_reference] = ACTIONS(4988), + [anon_sym_LT] = ACTIONS(4990), + [anon_sym_GT] = ACTIONS(4988), + [anon_sym_BANG] = ACTIONS(4988), + [anon_sym_DQUOTE] = ACTIONS(4988), + [anon_sym_POUND] = ACTIONS(4988), + [anon_sym_DOLLAR] = ACTIONS(4988), + [anon_sym_PERCENT] = ACTIONS(4988), + [anon_sym_AMP] = ACTIONS(4990), + [anon_sym_SQUOTE] = ACTIONS(4988), + [anon_sym_STAR] = ACTIONS(4988), + [anon_sym_PLUS] = ACTIONS(4988), + [anon_sym_COMMA] = ACTIONS(4988), + [anon_sym_DASH] = ACTIONS(4990), + [anon_sym_DOT] = ACTIONS(4990), + [anon_sym_SLASH] = ACTIONS(4988), + [anon_sym_COLON] = ACTIONS(4988), + [anon_sym_SEMI] = ACTIONS(4988), + [anon_sym_EQ] = ACTIONS(4988), + [anon_sym_QMARK] = ACTIONS(4988), + [anon_sym_LBRACK] = ACTIONS(4990), + [anon_sym_BSLASH] = ACTIONS(4990), + [anon_sym_RBRACK] = ACTIONS(4988), + [anon_sym_CARET] = ACTIONS(4990), + [anon_sym__] = ACTIONS(4988), + [anon_sym_BQUOTE] = ACTIONS(4988), + [anon_sym_LBRACE] = ACTIONS(4988), + [anon_sym_PIPE] = ACTIONS(4988), + [anon_sym_TILDE] = ACTIONS(4988), + [anon_sym_LPAREN] = ACTIONS(4988), + [anon_sym_RPAREN] = ACTIONS(4988), + [sym__newline_token] = ACTIONS(4988), + [aux_sym_insert_token1] = ACTIONS(4988), + [aux_sym_delete_token1] = ACTIONS(4988), + [aux_sym_highlight_token1] = ACTIONS(4988), + [aux_sym_edit_comment_token1] = ACTIONS(4988), + [anon_sym_CARET_LBRACK] = ACTIONS(4988), + [anon_sym_LBRACK_CARET] = ACTIONS(4988), + [sym_uri_autolink] = ACTIONS(4988), + [sym_email_autolink] = ACTIONS(4988), + [sym__whitespace_ge_2] = ACTIONS(4988), + [aux_sym__whitespace_token1] = ACTIONS(4990), + [sym__word_no_digit] = ACTIONS(4988), + [sym__digits] = ACTIONS(4988), + [anon_sym_DASH_DASH] = ACTIONS(4990), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4988), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4988), + [sym__code_span_start] = ACTIONS(4988), + [sym__emphasis_open_star] = ACTIONS(4988), + [sym__emphasis_open_underscore] = ACTIONS(4988), + [sym__strikeout_open] = ACTIONS(4988), + [sym__latex_span_start] = ACTIONS(4988), + [sym__single_quote_open] = ACTIONS(4988), + [sym__double_quote_open] = ACTIONS(4988), + [sym__superscript_open] = ACTIONS(4988), + [sym__subscript_open] = ACTIONS(4988), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4988), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4988), + [sym__cite_author_in_text] = ACTIONS(4988), + [sym__cite_suppress_author] = ACTIONS(4988), + [sym__shortcode_open_escaped] = ACTIONS(4988), + [sym__shortcode_open] = ACTIONS(4988), + [sym__unclosed_span] = ACTIONS(4988), + }, + [STATE(1063)] = { + [sym__backslash_escape] = ACTIONS(4992), + [sym_entity_reference] = ACTIONS(4992), + [sym_numeric_character_reference] = ACTIONS(4992), + [anon_sym_LT] = ACTIONS(4994), + [anon_sym_GT] = ACTIONS(4992), + [anon_sym_BANG] = ACTIONS(4992), + [anon_sym_DQUOTE] = ACTIONS(4992), + [anon_sym_POUND] = ACTIONS(4992), + [anon_sym_DOLLAR] = ACTIONS(4992), + [anon_sym_PERCENT] = ACTIONS(4992), + [anon_sym_AMP] = ACTIONS(4994), + [anon_sym_SQUOTE] = ACTIONS(4992), + [anon_sym_STAR] = ACTIONS(4992), + [anon_sym_PLUS] = ACTIONS(4992), + [anon_sym_COMMA] = ACTIONS(4992), + [anon_sym_DASH] = ACTIONS(4994), + [anon_sym_DOT] = ACTIONS(4994), + [anon_sym_SLASH] = ACTIONS(4992), + [anon_sym_COLON] = ACTIONS(4992), + [anon_sym_SEMI] = ACTIONS(4992), + [anon_sym_EQ] = ACTIONS(4992), + [anon_sym_QMARK] = ACTIONS(4992), + [anon_sym_LBRACK] = ACTIONS(4994), + [anon_sym_BSLASH] = ACTIONS(4994), + [anon_sym_RBRACK] = ACTIONS(4992), + [anon_sym_CARET] = ACTIONS(4994), + [anon_sym__] = ACTIONS(4992), + [anon_sym_BQUOTE] = ACTIONS(4992), + [anon_sym_LBRACE] = ACTIONS(4992), + [anon_sym_PIPE] = ACTIONS(4992), + [anon_sym_TILDE] = ACTIONS(4992), + [anon_sym_LPAREN] = ACTIONS(4992), + [anon_sym_RPAREN] = ACTIONS(4992), + [sym__newline_token] = ACTIONS(4992), + [aux_sym_insert_token1] = ACTIONS(4992), + [aux_sym_delete_token1] = ACTIONS(4992), + [aux_sym_highlight_token1] = ACTIONS(4992), + [aux_sym_edit_comment_token1] = ACTIONS(4992), + [anon_sym_CARET_LBRACK] = ACTIONS(4992), + [anon_sym_LBRACK_CARET] = ACTIONS(4992), + [sym_uri_autolink] = ACTIONS(4992), + [sym_email_autolink] = ACTIONS(4992), + [sym__whitespace_ge_2] = ACTIONS(4992), + [aux_sym__whitespace_token1] = ACTIONS(4994), + [sym__word_no_digit] = ACTIONS(4992), + [sym__digits] = ACTIONS(4992), + [anon_sym_DASH_DASH] = ACTIONS(4994), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4992), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4992), + [sym__code_span_start] = ACTIONS(4992), + [sym__emphasis_open_star] = ACTIONS(4992), + [sym__emphasis_open_underscore] = ACTIONS(4992), + [sym__strikeout_open] = ACTIONS(4992), + [sym__latex_span_start] = ACTIONS(4992), + [sym__single_quote_open] = ACTIONS(4992), + [sym__double_quote_open] = ACTIONS(4992), + [sym__superscript_open] = ACTIONS(4992), + [sym__subscript_open] = ACTIONS(4992), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4992), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4992), + [sym__cite_author_in_text] = ACTIONS(4992), + [sym__cite_suppress_author] = ACTIONS(4992), + [sym__shortcode_open_escaped] = ACTIONS(4992), + [sym__shortcode_open] = ACTIONS(4992), + [sym__unclosed_span] = ACTIONS(4992), + }, + [STATE(1064)] = { + [sym__backslash_escape] = ACTIONS(5024), + [sym_entity_reference] = ACTIONS(5024), + [sym_numeric_character_reference] = ACTIONS(5024), + [anon_sym_LT] = ACTIONS(5026), + [anon_sym_GT] = ACTIONS(5024), + [anon_sym_BANG] = ACTIONS(5024), + [anon_sym_DQUOTE] = ACTIONS(5024), + [anon_sym_POUND] = ACTIONS(5024), + [anon_sym_DOLLAR] = ACTIONS(5024), + [anon_sym_PERCENT] = ACTIONS(5024), + [anon_sym_AMP] = ACTIONS(5026), + [anon_sym_SQUOTE] = ACTIONS(5024), + [anon_sym_STAR] = ACTIONS(5024), + [anon_sym_PLUS] = ACTIONS(5024), + [anon_sym_COMMA] = ACTIONS(5024), + [anon_sym_DASH] = ACTIONS(5026), + [anon_sym_DOT] = ACTIONS(5026), + [anon_sym_SLASH] = ACTIONS(5024), + [anon_sym_COLON] = ACTIONS(5024), + [anon_sym_SEMI] = ACTIONS(5024), + [anon_sym_EQ] = ACTIONS(5024), + [anon_sym_QMARK] = ACTIONS(5024), + [anon_sym_LBRACK] = ACTIONS(5026), + [anon_sym_BSLASH] = ACTIONS(5026), + [anon_sym_CARET] = ACTIONS(5026), + [anon_sym__] = ACTIONS(5024), + [anon_sym_BQUOTE] = ACTIONS(5024), + [anon_sym_LBRACE] = ACTIONS(5024), + [anon_sym_PIPE] = ACTIONS(5024), + [anon_sym_TILDE] = ACTIONS(5024), + [anon_sym_LPAREN] = ACTIONS(5024), + [anon_sym_RPAREN] = ACTIONS(5024), + [sym__newline_token] = ACTIONS(5024), + [aux_sym_insert_token1] = ACTIONS(5024), + [aux_sym_insert_token2] = ACTIONS(5024), + [aux_sym_delete_token1] = ACTIONS(5024), + [aux_sym_highlight_token1] = ACTIONS(5024), + [aux_sym_edit_comment_token1] = ACTIONS(5024), + [anon_sym_CARET_LBRACK] = ACTIONS(5024), + [anon_sym_LBRACK_CARET] = ACTIONS(5024), + [sym_uri_autolink] = ACTIONS(5024), + [sym_email_autolink] = ACTIONS(5024), + [sym__whitespace_ge_2] = ACTIONS(5026), + [aux_sym__whitespace_token1] = ACTIONS(5026), + [sym__word_no_digit] = ACTIONS(5024), + [sym__digits] = ACTIONS(5024), + [anon_sym_DASH_DASH] = ACTIONS(5026), + [anon_sym_DASH_DASH_DASH] = ACTIONS(5024), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5024), + [sym__code_span_start] = ACTIONS(5024), + [sym__emphasis_open_star] = ACTIONS(5024), + [sym__emphasis_open_underscore] = ACTIONS(5024), + [sym__strikeout_open] = ACTIONS(5024), + [sym__latex_span_start] = ACTIONS(5024), + [sym__single_quote_open] = ACTIONS(5024), + [sym__double_quote_open] = ACTIONS(5024), + [sym__superscript_open] = ACTIONS(5024), + [sym__subscript_open] = ACTIONS(5024), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5024), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5024), + [sym__cite_author_in_text] = ACTIONS(5024), + [sym__cite_suppress_author] = ACTIONS(5024), + [sym__shortcode_open_escaped] = ACTIONS(5024), + [sym__shortcode_open] = ACTIONS(5024), + [sym__unclosed_span] = ACTIONS(5024), + }, + [STATE(1065)] = { + [sym__backslash_escape] = ACTIONS(5040), + [sym_entity_reference] = ACTIONS(5040), + [sym_numeric_character_reference] = ACTIONS(5040), + [anon_sym_LT] = ACTIONS(5042), + [anon_sym_GT] = ACTIONS(5040), + [anon_sym_BANG] = ACTIONS(5040), + [anon_sym_DQUOTE] = ACTIONS(5040), + [anon_sym_POUND] = ACTIONS(5040), + [anon_sym_DOLLAR] = ACTIONS(5040), + [anon_sym_PERCENT] = ACTIONS(5040), + [anon_sym_AMP] = ACTIONS(5042), + [anon_sym_SQUOTE] = ACTIONS(5040), + [anon_sym_STAR] = ACTIONS(5040), + [anon_sym_PLUS] = ACTIONS(5040), + [anon_sym_COMMA] = ACTIONS(5040), + [anon_sym_DASH] = ACTIONS(5042), + [anon_sym_DOT] = ACTIONS(5042), + [anon_sym_SLASH] = ACTIONS(5040), + [anon_sym_COLON] = ACTIONS(5040), + [anon_sym_SEMI] = ACTIONS(5040), + [anon_sym_EQ] = ACTIONS(5040), + [anon_sym_QMARK] = ACTIONS(5040), + [anon_sym_LBRACK] = ACTIONS(5042), + [anon_sym_BSLASH] = ACTIONS(5042), + [anon_sym_CARET] = ACTIONS(5042), + [anon_sym__] = ACTIONS(5040), + [anon_sym_BQUOTE] = ACTIONS(5040), + [anon_sym_LBRACE] = ACTIONS(5040), + [anon_sym_PIPE] = ACTIONS(5040), + [anon_sym_TILDE] = ACTIONS(5040), + [anon_sym_LPAREN] = ACTIONS(5040), + [anon_sym_RPAREN] = ACTIONS(5040), + [sym__newline_token] = ACTIONS(5040), + [aux_sym_insert_token1] = ACTIONS(5040), + [aux_sym_insert_token2] = ACTIONS(5040), + [aux_sym_delete_token1] = ACTIONS(5040), + [aux_sym_highlight_token1] = ACTIONS(5040), + [aux_sym_edit_comment_token1] = ACTIONS(5040), + [anon_sym_CARET_LBRACK] = ACTIONS(5040), + [anon_sym_LBRACK_CARET] = ACTIONS(5040), + [sym_uri_autolink] = ACTIONS(5040), + [sym_email_autolink] = ACTIONS(5040), + [sym__whitespace_ge_2] = ACTIONS(5042), + [aux_sym__whitespace_token1] = ACTIONS(5042), + [sym__word_no_digit] = ACTIONS(5040), + [sym__digits] = ACTIONS(5040), + [anon_sym_DASH_DASH] = ACTIONS(5042), + [anon_sym_DASH_DASH_DASH] = ACTIONS(5040), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5040), + [sym__code_span_start] = ACTIONS(5040), + [sym__emphasis_open_star] = ACTIONS(5040), + [sym__emphasis_open_underscore] = ACTIONS(5040), + [sym__strikeout_open] = ACTIONS(5040), + [sym__latex_span_start] = ACTIONS(5040), + [sym__single_quote_open] = ACTIONS(5040), + [sym__double_quote_open] = ACTIONS(5040), + [sym__superscript_open] = ACTIONS(5040), + [sym__subscript_open] = ACTIONS(5040), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5040), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5040), + [sym__cite_author_in_text] = ACTIONS(5040), + [sym__cite_suppress_author] = ACTIONS(5040), + [sym__shortcode_open_escaped] = ACTIONS(5040), + [sym__shortcode_open] = ACTIONS(5040), + [sym__unclosed_span] = ACTIONS(5040), + }, + [STATE(1066)] = { + [sym__backslash_escape] = ACTIONS(5044), + [sym_entity_reference] = ACTIONS(5044), + [sym_numeric_character_reference] = ACTIONS(5044), + [anon_sym_LT] = ACTIONS(5046), + [anon_sym_GT] = ACTIONS(5044), + [anon_sym_BANG] = ACTIONS(5044), + [anon_sym_DQUOTE] = ACTIONS(5044), + [anon_sym_POUND] = ACTIONS(5044), + [anon_sym_DOLLAR] = ACTIONS(5044), + [anon_sym_PERCENT] = ACTIONS(5044), + [anon_sym_AMP] = ACTIONS(5046), + [anon_sym_SQUOTE] = ACTIONS(5044), + [anon_sym_STAR] = ACTIONS(5044), + [anon_sym_PLUS] = ACTIONS(5044), + [anon_sym_COMMA] = ACTIONS(5044), + [anon_sym_DASH] = ACTIONS(5046), + [anon_sym_DOT] = ACTIONS(5046), + [anon_sym_SLASH] = ACTIONS(5044), + [anon_sym_COLON] = ACTIONS(5044), + [anon_sym_SEMI] = ACTIONS(5044), + [anon_sym_EQ] = ACTIONS(5044), + [anon_sym_QMARK] = ACTIONS(5044), + [anon_sym_LBRACK] = ACTIONS(5046), + [anon_sym_BSLASH] = ACTIONS(5046), + [anon_sym_CARET] = ACTIONS(5046), + [anon_sym__] = ACTIONS(5044), + [anon_sym_BQUOTE] = ACTIONS(5044), + [anon_sym_LBRACE] = ACTIONS(5044), + [anon_sym_PIPE] = ACTIONS(5044), + [anon_sym_TILDE] = ACTIONS(5044), + [anon_sym_LPAREN] = ACTIONS(5044), + [anon_sym_RPAREN] = ACTIONS(5044), + [sym__newline_token] = ACTIONS(5044), + [aux_sym_insert_token1] = ACTIONS(5044), + [aux_sym_insert_token2] = ACTIONS(5044), + [aux_sym_delete_token1] = ACTIONS(5044), + [aux_sym_highlight_token1] = ACTIONS(5044), + [aux_sym_edit_comment_token1] = ACTIONS(5044), + [anon_sym_CARET_LBRACK] = ACTIONS(5044), + [anon_sym_LBRACK_CARET] = ACTIONS(5044), + [sym_uri_autolink] = ACTIONS(5044), + [sym_email_autolink] = ACTIONS(5044), + [sym__whitespace_ge_2] = ACTIONS(5046), + [aux_sym__whitespace_token1] = ACTIONS(5046), + [sym__word_no_digit] = ACTIONS(5044), + [sym__digits] = ACTIONS(5044), + [anon_sym_DASH_DASH] = ACTIONS(5046), + [anon_sym_DASH_DASH_DASH] = ACTIONS(5044), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5044), + [sym__code_span_start] = ACTIONS(5044), + [sym__emphasis_open_star] = ACTIONS(5044), + [sym__emphasis_open_underscore] = ACTIONS(5044), + [sym__strikeout_open] = ACTIONS(5044), + [sym__latex_span_start] = ACTIONS(5044), + [sym__single_quote_open] = ACTIONS(5044), + [sym__double_quote_open] = ACTIONS(5044), + [sym__superscript_open] = ACTIONS(5044), + [sym__subscript_open] = ACTIONS(5044), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5044), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5044), + [sym__cite_author_in_text] = ACTIONS(5044), + [sym__cite_suppress_author] = ACTIONS(5044), + [sym__shortcode_open_escaped] = ACTIONS(5044), + [sym__shortcode_open] = ACTIONS(5044), + [sym__unclosed_span] = ACTIONS(5044), + }, + [STATE(1067)] = { + [sym__backslash_escape] = ACTIONS(5048), + [sym_entity_reference] = ACTIONS(5048), + [sym_numeric_character_reference] = ACTIONS(5048), + [anon_sym_LT] = ACTIONS(5050), + [anon_sym_GT] = ACTIONS(5048), + [anon_sym_BANG] = ACTIONS(5048), + [anon_sym_DQUOTE] = ACTIONS(5048), + [anon_sym_POUND] = ACTIONS(5048), + [anon_sym_DOLLAR] = ACTIONS(5048), + [anon_sym_PERCENT] = ACTIONS(5048), + [anon_sym_AMP] = ACTIONS(5050), + [anon_sym_SQUOTE] = ACTIONS(5048), + [anon_sym_STAR] = ACTIONS(5048), + [anon_sym_PLUS] = ACTIONS(5048), + [anon_sym_COMMA] = ACTIONS(5048), + [anon_sym_DASH] = ACTIONS(5050), + [anon_sym_DOT] = ACTIONS(5050), + [anon_sym_SLASH] = ACTIONS(5048), + [anon_sym_COLON] = ACTIONS(5048), + [anon_sym_SEMI] = ACTIONS(5048), + [anon_sym_EQ] = ACTIONS(5048), + [anon_sym_QMARK] = ACTIONS(5048), + [anon_sym_LBRACK] = ACTIONS(5050), + [anon_sym_BSLASH] = ACTIONS(5050), + [anon_sym_CARET] = ACTIONS(5050), + [anon_sym__] = ACTIONS(5048), + [anon_sym_BQUOTE] = ACTIONS(5048), + [anon_sym_LBRACE] = ACTIONS(5048), + [anon_sym_PIPE] = ACTIONS(5048), + [anon_sym_TILDE] = ACTIONS(5048), + [anon_sym_LPAREN] = ACTIONS(5048), + [anon_sym_RPAREN] = ACTIONS(5048), + [sym__newline_token] = ACTIONS(5048), + [aux_sym_insert_token1] = ACTIONS(5048), + [aux_sym_insert_token2] = ACTIONS(5048), + [aux_sym_delete_token1] = ACTIONS(5048), + [aux_sym_highlight_token1] = ACTIONS(5048), + [aux_sym_edit_comment_token1] = ACTIONS(5048), + [anon_sym_CARET_LBRACK] = ACTIONS(5048), + [anon_sym_LBRACK_CARET] = ACTIONS(5048), + [sym_uri_autolink] = ACTIONS(5048), + [sym_email_autolink] = ACTIONS(5048), + [sym__whitespace_ge_2] = ACTIONS(5050), + [aux_sym__whitespace_token1] = ACTIONS(5050), + [sym__word_no_digit] = ACTIONS(5048), + [sym__digits] = ACTIONS(5048), + [anon_sym_DASH_DASH] = ACTIONS(5050), + [anon_sym_DASH_DASH_DASH] = ACTIONS(5048), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5048), + [sym__code_span_start] = ACTIONS(5048), + [sym__emphasis_open_star] = ACTIONS(5048), + [sym__emphasis_open_underscore] = ACTIONS(5048), + [sym__strikeout_open] = ACTIONS(5048), + [sym__latex_span_start] = ACTIONS(5048), + [sym__single_quote_open] = ACTIONS(5048), + [sym__double_quote_open] = ACTIONS(5048), + [sym__superscript_open] = ACTIONS(5048), + [sym__subscript_open] = ACTIONS(5048), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5048), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5048), + [sym__cite_author_in_text] = ACTIONS(5048), + [sym__cite_suppress_author] = ACTIONS(5048), + [sym__shortcode_open_escaped] = ACTIONS(5048), + [sym__shortcode_open] = ACTIONS(5048), + [sym__unclosed_span] = ACTIONS(5048), + }, + [STATE(1068)] = { + [sym__backslash_escape] = ACTIONS(5052), + [sym_entity_reference] = ACTIONS(5052), + [sym_numeric_character_reference] = ACTIONS(5052), + [anon_sym_LT] = ACTIONS(5054), + [anon_sym_GT] = ACTIONS(5052), + [anon_sym_BANG] = ACTIONS(5052), + [anon_sym_DQUOTE] = ACTIONS(5052), + [anon_sym_POUND] = ACTIONS(5052), + [anon_sym_DOLLAR] = ACTIONS(5052), + [anon_sym_PERCENT] = ACTIONS(5052), + [anon_sym_AMP] = ACTIONS(5054), + [anon_sym_SQUOTE] = ACTIONS(5052), + [anon_sym_STAR] = ACTIONS(5052), + [anon_sym_PLUS] = ACTIONS(5052), + [anon_sym_COMMA] = ACTIONS(5052), + [anon_sym_DASH] = ACTIONS(5054), + [anon_sym_DOT] = ACTIONS(5054), + [anon_sym_SLASH] = ACTIONS(5052), + [anon_sym_COLON] = ACTIONS(5052), + [anon_sym_SEMI] = ACTIONS(5052), + [anon_sym_EQ] = ACTIONS(5052), + [anon_sym_QMARK] = ACTIONS(5052), + [anon_sym_LBRACK] = ACTIONS(5054), + [anon_sym_BSLASH] = ACTIONS(5054), + [anon_sym_CARET] = ACTIONS(5054), + [anon_sym__] = ACTIONS(5052), + [anon_sym_BQUOTE] = ACTIONS(5052), + [anon_sym_LBRACE] = ACTIONS(5052), + [anon_sym_PIPE] = ACTIONS(5052), + [anon_sym_TILDE] = ACTIONS(5052), + [anon_sym_LPAREN] = ACTIONS(5052), + [anon_sym_RPAREN] = ACTIONS(5052), + [sym__newline_token] = ACTIONS(5052), + [aux_sym_insert_token1] = ACTIONS(5052), + [aux_sym_insert_token2] = ACTIONS(5052), + [aux_sym_delete_token1] = ACTIONS(5052), + [aux_sym_highlight_token1] = ACTIONS(5052), + [aux_sym_edit_comment_token1] = ACTIONS(5052), + [anon_sym_CARET_LBRACK] = ACTIONS(5052), + [anon_sym_LBRACK_CARET] = ACTIONS(5052), + [sym_uri_autolink] = ACTIONS(5052), + [sym_email_autolink] = ACTIONS(5052), + [sym__whitespace_ge_2] = ACTIONS(5054), + [aux_sym__whitespace_token1] = ACTIONS(5054), + [sym__word_no_digit] = ACTIONS(5052), + [sym__digits] = ACTIONS(5052), + [anon_sym_DASH_DASH] = ACTIONS(5054), + [anon_sym_DASH_DASH_DASH] = ACTIONS(5052), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5052), + [sym__code_span_start] = ACTIONS(5052), + [sym__emphasis_open_star] = ACTIONS(5052), + [sym__emphasis_open_underscore] = ACTIONS(5052), + [sym__strikeout_open] = ACTIONS(5052), + [sym__latex_span_start] = ACTIONS(5052), + [sym__single_quote_open] = ACTIONS(5052), + [sym__double_quote_open] = ACTIONS(5052), + [sym__superscript_open] = ACTIONS(5052), + [sym__subscript_open] = ACTIONS(5052), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5052), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5052), + [sym__cite_author_in_text] = ACTIONS(5052), + [sym__cite_suppress_author] = ACTIONS(5052), + [sym__shortcode_open_escaped] = ACTIONS(5052), + [sym__shortcode_open] = ACTIONS(5052), + [sym__unclosed_span] = ACTIONS(5052), + }, + [STATE(1069)] = { + [sym__backslash_escape] = ACTIONS(4900), + [sym_entity_reference] = ACTIONS(4900), + [sym_numeric_character_reference] = ACTIONS(4900), + [anon_sym_LT] = ACTIONS(4902), + [anon_sym_GT] = ACTIONS(4900), + [anon_sym_BANG] = ACTIONS(4900), + [anon_sym_DQUOTE] = ACTIONS(4900), + [anon_sym_POUND] = ACTIONS(4900), + [anon_sym_DOLLAR] = ACTIONS(4900), + [anon_sym_PERCENT] = ACTIONS(4900), + [anon_sym_AMP] = ACTIONS(4902), + [anon_sym_SQUOTE] = ACTIONS(4900), + [anon_sym_STAR] = ACTIONS(4900), + [anon_sym_PLUS] = ACTIONS(4900), + [anon_sym_COMMA] = ACTIONS(4900), + [anon_sym_DASH] = ACTIONS(4902), + [anon_sym_DOT] = ACTIONS(4902), + [anon_sym_SLASH] = ACTIONS(4900), + [anon_sym_COLON] = ACTIONS(4900), + [anon_sym_SEMI] = ACTIONS(4900), + [anon_sym_EQ] = ACTIONS(4900), + [anon_sym_QMARK] = ACTIONS(4900), + [anon_sym_LBRACK] = ACTIONS(4902), + [anon_sym_BSLASH] = ACTIONS(4902), + [anon_sym_CARET] = ACTIONS(4902), + [anon_sym__] = ACTIONS(4900), + [anon_sym_BQUOTE] = ACTIONS(4900), + [anon_sym_LBRACE] = ACTIONS(4900), + [anon_sym_PIPE] = ACTIONS(4900), + [anon_sym_TILDE] = ACTIONS(4900), + [anon_sym_LPAREN] = ACTIONS(4900), + [anon_sym_RPAREN] = ACTIONS(4900), + [sym__newline_token] = ACTIONS(4900), + [aux_sym_insert_token1] = ACTIONS(4900), + [aux_sym_delete_token1] = ACTIONS(4900), + [aux_sym_highlight_token1] = ACTIONS(4900), + [aux_sym_edit_comment_token1] = ACTIONS(4900), + [anon_sym_CARET_LBRACK] = ACTIONS(4900), + [anon_sym_LBRACK_CARET] = ACTIONS(4900), + [sym_uri_autolink] = ACTIONS(4900), + [sym_email_autolink] = ACTIONS(4900), + [sym__whitespace_ge_2] = ACTIONS(4900), + [aux_sym__whitespace_token1] = ACTIONS(4902), + [sym__word_no_digit] = ACTIONS(4900), + [sym__digits] = ACTIONS(4900), + [anon_sym_DASH_DASH] = ACTIONS(4902), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4900), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4900), + [sym__code_span_start] = ACTIONS(4900), + [sym__emphasis_open_star] = ACTIONS(4900), + [sym__emphasis_open_underscore] = ACTIONS(4900), + [sym__strikeout_open] = ACTIONS(4900), + [sym__latex_span_start] = ACTIONS(4900), + [sym__single_quote_open] = ACTIONS(4900), + [sym__single_quote_close] = ACTIONS(4900), + [sym__double_quote_open] = ACTIONS(4900), + [sym__superscript_open] = ACTIONS(4900), + [sym__subscript_open] = ACTIONS(4900), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4900), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4900), + [sym__cite_author_in_text] = ACTIONS(4900), + [sym__cite_suppress_author] = ACTIONS(4900), + [sym__shortcode_open_escaped] = ACTIONS(4900), + [sym__shortcode_open] = ACTIONS(4900), + [sym__unclosed_span] = ACTIONS(4900), + }, + [STATE(1070)] = { + [sym__backslash_escape] = ACTIONS(4690), + [sym_entity_reference] = ACTIONS(4690), + [sym_numeric_character_reference] = ACTIONS(4690), + [anon_sym_LT] = ACTIONS(4692), + [anon_sym_GT] = ACTIONS(4690), + [anon_sym_BANG] = ACTIONS(4690), + [anon_sym_DQUOTE] = ACTIONS(4690), + [anon_sym_POUND] = ACTIONS(4690), + [anon_sym_DOLLAR] = ACTIONS(4690), + [anon_sym_PERCENT] = ACTIONS(4690), + [anon_sym_AMP] = ACTIONS(4692), + [anon_sym_SQUOTE] = ACTIONS(4690), + [anon_sym_STAR] = ACTIONS(4690), + [anon_sym_PLUS] = ACTIONS(4690), + [anon_sym_COMMA] = ACTIONS(4690), + [anon_sym_DASH] = ACTIONS(4692), + [anon_sym_DOT] = ACTIONS(4692), + [anon_sym_SLASH] = ACTIONS(4690), + [anon_sym_COLON] = ACTIONS(4690), + [anon_sym_SEMI] = ACTIONS(4690), + [anon_sym_EQ] = ACTIONS(4690), + [anon_sym_QMARK] = ACTIONS(4690), + [anon_sym_LBRACK] = ACTIONS(4692), + [anon_sym_BSLASH] = ACTIONS(4692), + [anon_sym_CARET] = ACTIONS(4692), + [anon_sym__] = ACTIONS(4690), + [anon_sym_BQUOTE] = ACTIONS(4690), + [anon_sym_LBRACE] = ACTIONS(4690), + [anon_sym_PIPE] = ACTIONS(4690), + [anon_sym_TILDE] = ACTIONS(4690), + [anon_sym_LPAREN] = ACTIONS(4690), + [anon_sym_RPAREN] = ACTIONS(4690), + [sym__newline_token] = ACTIONS(4690), + [aux_sym_insert_token1] = ACTIONS(4690), + [aux_sym_insert_token2] = ACTIONS(4690), + [aux_sym_delete_token1] = ACTIONS(4690), + [aux_sym_highlight_token1] = ACTIONS(4690), + [aux_sym_edit_comment_token1] = ACTIONS(4690), + [anon_sym_CARET_LBRACK] = ACTIONS(4690), + [anon_sym_LBRACK_CARET] = ACTIONS(4690), + [sym_uri_autolink] = ACTIONS(4690), + [sym_email_autolink] = ACTIONS(4690), + [sym__whitespace_ge_2] = ACTIONS(4692), + [aux_sym__whitespace_token1] = ACTIONS(4692), + [sym__word_no_digit] = ACTIONS(4690), + [sym__digits] = ACTIONS(4690), + [anon_sym_DASH_DASH] = ACTIONS(4692), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4690), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4690), + [sym__code_span_start] = ACTIONS(4690), + [sym__emphasis_open_star] = ACTIONS(4690), + [sym__emphasis_open_underscore] = ACTIONS(4690), + [sym__strikeout_open] = ACTIONS(4690), + [sym__latex_span_start] = ACTIONS(4690), + [sym__single_quote_open] = ACTIONS(4690), + [sym__double_quote_open] = ACTIONS(4690), + [sym__superscript_open] = ACTIONS(4690), + [sym__subscript_open] = ACTIONS(4690), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4690), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4690), + [sym__cite_author_in_text] = ACTIONS(4690), + [sym__cite_suppress_author] = ACTIONS(4690), + [sym__shortcode_open_escaped] = ACTIONS(4690), + [sym__shortcode_open] = ACTIONS(4690), + [sym__unclosed_span] = ACTIONS(4690), + }, + [STATE(1071)] = { + [sym__backslash_escape] = ACTIONS(4562), + [sym_entity_reference] = ACTIONS(4562), + [sym_numeric_character_reference] = ACTIONS(4562), + [anon_sym_LT] = ACTIONS(4564), + [anon_sym_GT] = ACTIONS(4562), + [anon_sym_BANG] = ACTIONS(4562), + [anon_sym_DQUOTE] = ACTIONS(4562), + [anon_sym_POUND] = ACTIONS(4562), + [anon_sym_DOLLAR] = ACTIONS(4562), + [anon_sym_PERCENT] = ACTIONS(4562), + [anon_sym_AMP] = ACTIONS(4564), + [anon_sym_SQUOTE] = ACTIONS(4562), + [anon_sym_STAR] = ACTIONS(4562), + [anon_sym_PLUS] = ACTIONS(4562), + [anon_sym_COMMA] = ACTIONS(4562), + [anon_sym_DASH] = ACTIONS(4564), + [anon_sym_DOT] = ACTIONS(4564), + [anon_sym_SLASH] = ACTIONS(4562), + [anon_sym_COLON] = ACTIONS(4562), + [anon_sym_SEMI] = ACTIONS(4562), + [anon_sym_EQ] = ACTIONS(4562), + [anon_sym_QMARK] = ACTIONS(4562), + [anon_sym_LBRACK] = ACTIONS(4564), + [anon_sym_BSLASH] = ACTIONS(4564), + [anon_sym_CARET] = ACTIONS(4564), + [anon_sym__] = ACTIONS(4562), + [anon_sym_BQUOTE] = ACTIONS(4562), + [anon_sym_LBRACE] = ACTIONS(4562), + [anon_sym_PIPE] = ACTIONS(4562), + [anon_sym_TILDE] = ACTIONS(4562), + [anon_sym_LPAREN] = ACTIONS(4562), + [anon_sym_RPAREN] = ACTIONS(4562), + [sym__newline_token] = ACTIONS(4562), + [aux_sym_insert_token1] = ACTIONS(4562), + [aux_sym_delete_token1] = ACTIONS(4562), + [aux_sym_highlight_token1] = ACTIONS(4562), + [aux_sym_edit_comment_token1] = ACTIONS(4562), + [anon_sym_CARET_LBRACK] = ACTIONS(4562), + [anon_sym_LBRACK_CARET] = ACTIONS(4562), + [sym_uri_autolink] = ACTIONS(4562), + [sym_email_autolink] = ACTIONS(4562), + [sym__whitespace_ge_2] = ACTIONS(4562), + [aux_sym__whitespace_token1] = ACTIONS(4564), + [sym__word_no_digit] = ACTIONS(4562), + [sym__digits] = ACTIONS(4562), + [anon_sym_DASH_DASH] = ACTIONS(4564), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4562), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4562), + [sym__code_span_start] = ACTIONS(4562), + [sym__emphasis_open_star] = ACTIONS(4562), + [sym__emphasis_open_underscore] = ACTIONS(4562), + [sym__emphasis_close_underscore] = ACTIONS(4562), + [sym__strikeout_open] = ACTIONS(4562), + [sym__latex_span_start] = ACTIONS(4562), + [sym__single_quote_open] = ACTIONS(4562), + [sym__double_quote_open] = ACTIONS(4562), + [sym__superscript_open] = ACTIONS(4562), + [sym__subscript_open] = ACTIONS(4562), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4562), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4562), + [sym__cite_author_in_text] = ACTIONS(4562), + [sym__cite_suppress_author] = ACTIONS(4562), + [sym__shortcode_open_escaped] = ACTIONS(4562), + [sym__shortcode_open] = ACTIONS(4562), + [sym__unclosed_span] = ACTIONS(4562), + }, + [STATE(1072)] = { + [sym__backslash_escape] = ACTIONS(5056), + [sym_entity_reference] = ACTIONS(5056), + [sym_numeric_character_reference] = ACTIONS(5056), + [anon_sym_LT] = ACTIONS(5058), + [anon_sym_GT] = ACTIONS(5056), + [anon_sym_BANG] = ACTIONS(5056), + [anon_sym_DQUOTE] = ACTIONS(5056), + [anon_sym_POUND] = ACTIONS(5056), + [anon_sym_DOLLAR] = ACTIONS(5056), + [anon_sym_PERCENT] = ACTIONS(5056), + [anon_sym_AMP] = ACTIONS(5058), + [anon_sym_SQUOTE] = ACTIONS(5056), + [anon_sym_STAR] = ACTIONS(5056), + [anon_sym_PLUS] = ACTIONS(5056), + [anon_sym_COMMA] = ACTIONS(5056), + [anon_sym_DASH] = ACTIONS(5058), + [anon_sym_DOT] = ACTIONS(5058), + [anon_sym_SLASH] = ACTIONS(5056), + [anon_sym_COLON] = ACTIONS(5056), + [anon_sym_SEMI] = ACTIONS(5056), + [anon_sym_EQ] = ACTIONS(5056), + [anon_sym_QMARK] = ACTIONS(5056), + [anon_sym_LBRACK] = ACTIONS(5058), + [anon_sym_BSLASH] = ACTIONS(5058), + [anon_sym_CARET] = ACTIONS(5058), + [anon_sym__] = ACTIONS(5056), + [anon_sym_BQUOTE] = ACTIONS(5056), + [anon_sym_LBRACE] = ACTIONS(5056), + [anon_sym_PIPE] = ACTIONS(5056), + [anon_sym_TILDE] = ACTIONS(5056), + [anon_sym_LPAREN] = ACTIONS(5056), + [anon_sym_RPAREN] = ACTIONS(5056), + [sym__newline_token] = ACTIONS(5056), + [aux_sym_insert_token1] = ACTIONS(5056), + [aux_sym_insert_token2] = ACTIONS(5056), + [aux_sym_delete_token1] = ACTIONS(5056), + [aux_sym_highlight_token1] = ACTIONS(5056), + [aux_sym_edit_comment_token1] = ACTIONS(5056), + [anon_sym_CARET_LBRACK] = ACTIONS(5056), + [anon_sym_LBRACK_CARET] = ACTIONS(5056), + [sym_uri_autolink] = ACTIONS(5056), + [sym_email_autolink] = ACTIONS(5056), + [sym__whitespace_ge_2] = ACTIONS(5058), + [aux_sym__whitespace_token1] = ACTIONS(5058), + [sym__word_no_digit] = ACTIONS(5056), + [sym__digits] = ACTIONS(5056), + [anon_sym_DASH_DASH] = ACTIONS(5058), + [anon_sym_DASH_DASH_DASH] = ACTIONS(5056), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5056), + [sym__code_span_start] = ACTIONS(5056), + [sym__emphasis_open_star] = ACTIONS(5056), + [sym__emphasis_open_underscore] = ACTIONS(5056), + [sym__strikeout_open] = ACTIONS(5056), + [sym__latex_span_start] = ACTIONS(5056), + [sym__single_quote_open] = ACTIONS(5056), + [sym__double_quote_open] = ACTIONS(5056), + [sym__superscript_open] = ACTIONS(5056), + [sym__subscript_open] = ACTIONS(5056), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5056), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5056), + [sym__cite_author_in_text] = ACTIONS(5056), + [sym__cite_suppress_author] = ACTIONS(5056), + [sym__shortcode_open_escaped] = ACTIONS(5056), + [sym__shortcode_open] = ACTIONS(5056), + [sym__unclosed_span] = ACTIONS(5056), + }, + [STATE(1073)] = { + [sym__backslash_escape] = ACTIONS(4912), + [sym_entity_reference] = ACTIONS(4912), + [sym_numeric_character_reference] = ACTIONS(4912), + [anon_sym_LT] = ACTIONS(4914), + [anon_sym_GT] = ACTIONS(4912), + [anon_sym_BANG] = ACTIONS(4912), + [anon_sym_DQUOTE] = ACTIONS(4912), + [anon_sym_POUND] = ACTIONS(4912), + [anon_sym_DOLLAR] = ACTIONS(4912), + [anon_sym_PERCENT] = ACTIONS(4912), + [anon_sym_AMP] = ACTIONS(4914), + [anon_sym_SQUOTE] = ACTIONS(4912), + [anon_sym_STAR] = ACTIONS(4912), + [anon_sym_PLUS] = ACTIONS(4912), + [anon_sym_COMMA] = ACTIONS(4912), + [anon_sym_DASH] = ACTIONS(4914), + [anon_sym_DOT] = ACTIONS(4914), + [anon_sym_SLASH] = ACTIONS(4912), + [anon_sym_COLON] = ACTIONS(4912), + [anon_sym_SEMI] = ACTIONS(4912), + [anon_sym_EQ] = ACTIONS(4912), + [anon_sym_QMARK] = ACTIONS(4912), + [anon_sym_LBRACK] = ACTIONS(4914), + [anon_sym_BSLASH] = ACTIONS(4914), + [anon_sym_CARET] = ACTIONS(4914), + [anon_sym__] = ACTIONS(4912), + [anon_sym_BQUOTE] = ACTIONS(4912), + [anon_sym_LBRACE] = ACTIONS(4912), + [anon_sym_PIPE] = ACTIONS(4912), + [anon_sym_TILDE] = ACTIONS(4912), + [anon_sym_LPAREN] = ACTIONS(4912), + [anon_sym_RPAREN] = ACTIONS(4912), + [sym__newline_token] = ACTIONS(4912), + [aux_sym_insert_token1] = ACTIONS(4912), + [aux_sym_delete_token1] = ACTIONS(4912), + [aux_sym_highlight_token1] = ACTIONS(4912), + [aux_sym_edit_comment_token1] = ACTIONS(4912), + [anon_sym_CARET_LBRACK] = ACTIONS(4912), + [anon_sym_LBRACK_CARET] = ACTIONS(4912), + [sym_uri_autolink] = ACTIONS(4912), + [sym_email_autolink] = ACTIONS(4912), + [sym__whitespace_ge_2] = ACTIONS(4912), + [aux_sym__whitespace_token1] = ACTIONS(4914), + [sym__word_no_digit] = ACTIONS(4912), + [sym__digits] = ACTIONS(4912), + [anon_sym_DASH_DASH] = ACTIONS(4914), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4912), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4912), + [sym__code_span_start] = ACTIONS(4912), + [sym__emphasis_open_star] = ACTIONS(4912), + [sym__emphasis_open_underscore] = ACTIONS(4912), + [sym__strikeout_open] = ACTIONS(4912), + [sym__latex_span_start] = ACTIONS(4912), + [sym__single_quote_open] = ACTIONS(4912), + [sym__single_quote_close] = ACTIONS(4912), + [sym__double_quote_open] = ACTIONS(4912), + [sym__superscript_open] = ACTIONS(4912), + [sym__subscript_open] = ACTIONS(4912), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4912), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4912), + [sym__cite_author_in_text] = ACTIONS(4912), + [sym__cite_suppress_author] = ACTIONS(4912), + [sym__shortcode_open_escaped] = ACTIONS(4912), + [sym__shortcode_open] = ACTIONS(4912), + [sym__unclosed_span] = ACTIONS(4912), + }, + [STATE(1074)] = { + [sym__backslash_escape] = ACTIONS(4916), + [sym_entity_reference] = ACTIONS(4916), + [sym_numeric_character_reference] = ACTIONS(4916), + [anon_sym_LT] = ACTIONS(4918), + [anon_sym_GT] = ACTIONS(4916), + [anon_sym_BANG] = ACTIONS(4916), + [anon_sym_DQUOTE] = ACTIONS(4916), + [anon_sym_POUND] = ACTIONS(4916), + [anon_sym_DOLLAR] = ACTIONS(4916), + [anon_sym_PERCENT] = ACTIONS(4916), + [anon_sym_AMP] = ACTIONS(4918), + [anon_sym_SQUOTE] = ACTIONS(4916), + [anon_sym_STAR] = ACTIONS(4916), + [anon_sym_PLUS] = ACTIONS(4916), + [anon_sym_COMMA] = ACTIONS(4916), + [anon_sym_DASH] = ACTIONS(4918), + [anon_sym_DOT] = ACTIONS(4918), + [anon_sym_SLASH] = ACTIONS(4916), + [anon_sym_COLON] = ACTIONS(4916), + [anon_sym_SEMI] = ACTIONS(4916), + [anon_sym_EQ] = ACTIONS(4916), + [anon_sym_QMARK] = ACTIONS(4916), + [anon_sym_LBRACK] = ACTIONS(4918), + [anon_sym_BSLASH] = ACTIONS(4918), + [anon_sym_CARET] = ACTIONS(4918), + [anon_sym__] = ACTIONS(4916), + [anon_sym_BQUOTE] = ACTIONS(4916), + [anon_sym_LBRACE] = ACTIONS(4916), + [anon_sym_PIPE] = ACTIONS(4916), + [anon_sym_TILDE] = ACTIONS(4916), + [anon_sym_LPAREN] = ACTIONS(4916), + [anon_sym_RPAREN] = ACTIONS(4916), + [sym__newline_token] = ACTIONS(4916), + [aux_sym_insert_token1] = ACTIONS(4916), + [aux_sym_delete_token1] = ACTIONS(4916), + [aux_sym_highlight_token1] = ACTIONS(4916), + [aux_sym_edit_comment_token1] = ACTIONS(4916), + [anon_sym_CARET_LBRACK] = ACTIONS(4916), + [anon_sym_LBRACK_CARET] = ACTIONS(4916), + [sym_uri_autolink] = ACTIONS(4916), + [sym_email_autolink] = ACTIONS(4916), + [sym__whitespace_ge_2] = ACTIONS(4916), + [aux_sym__whitespace_token1] = ACTIONS(4918), + [sym__word_no_digit] = ACTIONS(4916), + [sym__digits] = ACTIONS(4916), + [anon_sym_DASH_DASH] = ACTIONS(4918), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4916), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4916), + [sym__code_span_start] = ACTIONS(4916), + [sym__emphasis_open_star] = ACTIONS(4916), + [sym__emphasis_open_underscore] = ACTIONS(4916), + [sym__strikeout_open] = ACTIONS(4916), + [sym__latex_span_start] = ACTIONS(4916), + [sym__single_quote_open] = ACTIONS(4916), + [sym__single_quote_close] = ACTIONS(4916), + [sym__double_quote_open] = ACTIONS(4916), + [sym__superscript_open] = ACTIONS(4916), + [sym__subscript_open] = ACTIONS(4916), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4916), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4916), + [sym__cite_author_in_text] = ACTIONS(4916), + [sym__cite_suppress_author] = ACTIONS(4916), + [sym__shortcode_open_escaped] = ACTIONS(4916), + [sym__shortcode_open] = ACTIONS(4916), + [sym__unclosed_span] = ACTIONS(4916), + }, + [STATE(1075)] = { + [sym__backslash_escape] = ACTIONS(4820), + [sym_entity_reference] = ACTIONS(4820), + [sym_numeric_character_reference] = ACTIONS(4820), + [anon_sym_LT] = ACTIONS(4822), + [anon_sym_GT] = ACTIONS(4820), + [anon_sym_BANG] = ACTIONS(4820), + [anon_sym_DQUOTE] = ACTIONS(4820), + [anon_sym_POUND] = ACTIONS(4820), + [anon_sym_DOLLAR] = ACTIONS(4820), + [anon_sym_PERCENT] = ACTIONS(4820), + [anon_sym_AMP] = ACTIONS(4822), + [anon_sym_SQUOTE] = ACTIONS(4820), + [anon_sym_STAR] = ACTIONS(4820), + [anon_sym_PLUS] = ACTIONS(4820), + [anon_sym_COMMA] = ACTIONS(4820), + [anon_sym_DASH] = ACTIONS(4822), + [anon_sym_DOT] = ACTIONS(4822), + [anon_sym_SLASH] = ACTIONS(4820), + [anon_sym_COLON] = ACTIONS(4820), + [anon_sym_SEMI] = ACTIONS(4820), + [anon_sym_EQ] = ACTIONS(4820), + [anon_sym_QMARK] = ACTIONS(4820), + [anon_sym_LBRACK] = ACTIONS(4822), + [anon_sym_BSLASH] = ACTIONS(4822), + [anon_sym_CARET] = ACTIONS(4822), + [anon_sym__] = ACTIONS(4820), + [anon_sym_BQUOTE] = ACTIONS(4820), + [anon_sym_LBRACE] = ACTIONS(4820), + [anon_sym_PIPE] = ACTIONS(4820), + [anon_sym_TILDE] = ACTIONS(4820), + [anon_sym_LPAREN] = ACTIONS(4820), + [anon_sym_RPAREN] = ACTIONS(4820), + [sym__newline_token] = ACTIONS(4820), + [aux_sym_insert_token1] = ACTIONS(4820), + [aux_sym_insert_token2] = ACTIONS(4820), + [aux_sym_delete_token1] = ACTIONS(4820), + [aux_sym_highlight_token1] = ACTIONS(4820), + [aux_sym_edit_comment_token1] = ACTIONS(4820), + [anon_sym_CARET_LBRACK] = ACTIONS(4820), + [anon_sym_LBRACK_CARET] = ACTIONS(4820), + [sym_uri_autolink] = ACTIONS(4820), + [sym_email_autolink] = ACTIONS(4820), + [sym__whitespace_ge_2] = ACTIONS(4822), + [aux_sym__whitespace_token1] = ACTIONS(4822), + [sym__word_no_digit] = ACTIONS(4820), + [sym__digits] = ACTIONS(4820), + [anon_sym_DASH_DASH] = ACTIONS(4822), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4820), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4820), + [sym__code_span_start] = ACTIONS(4820), + [sym__emphasis_open_star] = ACTIONS(4820), + [sym__emphasis_open_underscore] = ACTIONS(4820), + [sym__strikeout_open] = ACTIONS(4820), + [sym__latex_span_start] = ACTIONS(4820), + [sym__single_quote_open] = ACTIONS(4820), + [sym__double_quote_open] = ACTIONS(4820), + [sym__superscript_open] = ACTIONS(4820), + [sym__subscript_open] = ACTIONS(4820), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4820), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4820), + [sym__cite_author_in_text] = ACTIONS(4820), + [sym__cite_suppress_author] = ACTIONS(4820), + [sym__shortcode_open_escaped] = ACTIONS(4820), + [sym__shortcode_open] = ACTIONS(4820), + [sym__unclosed_span] = ACTIONS(4820), + }, + [STATE(1076)] = { + [sym__backslash_escape] = ACTIONS(4824), + [sym_entity_reference] = ACTIONS(4824), + [sym_numeric_character_reference] = ACTIONS(4824), + [anon_sym_LT] = ACTIONS(4826), + [anon_sym_GT] = ACTIONS(4824), + [anon_sym_BANG] = ACTIONS(4824), + [anon_sym_DQUOTE] = ACTIONS(4824), + [anon_sym_POUND] = ACTIONS(4824), + [anon_sym_DOLLAR] = ACTIONS(4824), + [anon_sym_PERCENT] = ACTIONS(4824), + [anon_sym_AMP] = ACTIONS(4826), + [anon_sym_SQUOTE] = ACTIONS(4824), + [anon_sym_STAR] = ACTIONS(4824), + [anon_sym_PLUS] = ACTIONS(4824), + [anon_sym_COMMA] = ACTIONS(4824), + [anon_sym_DASH] = ACTIONS(4826), + [anon_sym_DOT] = ACTIONS(4826), + [anon_sym_SLASH] = ACTIONS(4824), + [anon_sym_COLON] = ACTIONS(4824), + [anon_sym_SEMI] = ACTIONS(4824), + [anon_sym_EQ] = ACTIONS(4824), + [anon_sym_QMARK] = ACTIONS(4824), + [anon_sym_LBRACK] = ACTIONS(4826), + [anon_sym_BSLASH] = ACTIONS(4826), + [anon_sym_RBRACK] = ACTIONS(4824), + [anon_sym_CARET] = ACTIONS(4826), + [anon_sym__] = ACTIONS(4824), + [anon_sym_BQUOTE] = ACTIONS(4824), + [anon_sym_LBRACE] = ACTIONS(4824), + [anon_sym_PIPE] = ACTIONS(4824), + [anon_sym_TILDE] = ACTIONS(4824), + [anon_sym_LPAREN] = ACTIONS(4824), + [anon_sym_RPAREN] = ACTIONS(4824), + [sym__newline_token] = ACTIONS(4824), + [aux_sym_insert_token1] = ACTIONS(4824), + [aux_sym_delete_token1] = ACTIONS(4824), + [aux_sym_highlight_token1] = ACTIONS(4824), + [aux_sym_edit_comment_token1] = ACTIONS(4824), + [anon_sym_CARET_LBRACK] = ACTIONS(4824), + [anon_sym_LBRACK_CARET] = ACTIONS(4824), + [sym_uri_autolink] = ACTIONS(4824), + [sym_email_autolink] = ACTIONS(4824), + [sym__whitespace_ge_2] = ACTIONS(4824), + [aux_sym__whitespace_token1] = ACTIONS(4826), + [sym__word_no_digit] = ACTIONS(4824), + [sym__digits] = ACTIONS(4824), + [anon_sym_DASH_DASH] = ACTIONS(4826), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4824), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4824), + [sym__code_span_start] = ACTIONS(4824), + [sym__emphasis_open_star] = ACTIONS(4824), + [sym__emphasis_open_underscore] = ACTIONS(4824), + [sym__strikeout_open] = ACTIONS(4824), + [sym__latex_span_start] = ACTIONS(4824), + [sym__single_quote_open] = ACTIONS(4824), + [sym__double_quote_open] = ACTIONS(4824), + [sym__superscript_open] = ACTIONS(4824), + [sym__subscript_open] = ACTIONS(4824), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4824), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4824), + [sym__cite_author_in_text] = ACTIONS(4824), + [sym__cite_suppress_author] = ACTIONS(4824), + [sym__shortcode_open_escaped] = ACTIONS(4824), + [sym__shortcode_open] = ACTIONS(4824), + [sym__unclosed_span] = ACTIONS(4824), + }, + [STATE(1077)] = { + [sym__backslash_escape] = ACTIONS(4828), + [sym_entity_reference] = ACTIONS(4828), + [sym_numeric_character_reference] = ACTIONS(4828), + [anon_sym_LT] = ACTIONS(4830), + [anon_sym_GT] = ACTIONS(4828), + [anon_sym_BANG] = ACTIONS(4828), + [anon_sym_DQUOTE] = ACTIONS(4828), + [anon_sym_POUND] = ACTIONS(4828), + [anon_sym_DOLLAR] = ACTIONS(4828), + [anon_sym_PERCENT] = ACTIONS(4828), + [anon_sym_AMP] = ACTIONS(4830), + [anon_sym_SQUOTE] = ACTIONS(4828), + [anon_sym_STAR] = ACTIONS(4828), + [anon_sym_PLUS] = ACTIONS(4828), + [anon_sym_COMMA] = ACTIONS(4828), + [anon_sym_DASH] = ACTIONS(4830), + [anon_sym_DOT] = ACTIONS(4830), + [anon_sym_SLASH] = ACTIONS(4828), + [anon_sym_COLON] = ACTIONS(4828), + [anon_sym_SEMI] = ACTIONS(4828), + [anon_sym_EQ] = ACTIONS(4828), + [anon_sym_QMARK] = ACTIONS(4828), + [anon_sym_LBRACK] = ACTIONS(4830), + [anon_sym_BSLASH] = ACTIONS(4830), + [anon_sym_RBRACK] = ACTIONS(4828), + [anon_sym_CARET] = ACTIONS(4830), + [anon_sym__] = ACTIONS(4828), + [anon_sym_BQUOTE] = ACTIONS(4828), + [anon_sym_LBRACE] = ACTIONS(4828), + [anon_sym_PIPE] = ACTIONS(4828), + [anon_sym_TILDE] = ACTIONS(4828), + [anon_sym_LPAREN] = ACTIONS(4828), + [anon_sym_RPAREN] = ACTIONS(4828), + [sym__newline_token] = ACTIONS(4828), + [aux_sym_insert_token1] = ACTIONS(4828), + [aux_sym_delete_token1] = ACTIONS(4828), + [aux_sym_highlight_token1] = ACTIONS(4828), + [aux_sym_edit_comment_token1] = ACTIONS(4828), + [anon_sym_CARET_LBRACK] = ACTIONS(4828), + [anon_sym_LBRACK_CARET] = ACTIONS(4828), + [sym_uri_autolink] = ACTIONS(4828), + [sym_email_autolink] = ACTIONS(4828), + [sym__whitespace_ge_2] = ACTIONS(4828), + [aux_sym__whitespace_token1] = ACTIONS(4830), + [sym__word_no_digit] = ACTIONS(4828), + [sym__digits] = ACTIONS(4828), + [anon_sym_DASH_DASH] = ACTIONS(4830), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4828), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4828), + [sym__code_span_start] = ACTIONS(4828), + [sym__emphasis_open_star] = ACTIONS(4828), + [sym__emphasis_open_underscore] = ACTIONS(4828), + [sym__strikeout_open] = ACTIONS(4828), + [sym__latex_span_start] = ACTIONS(4828), + [sym__single_quote_open] = ACTIONS(4828), + [sym__double_quote_open] = ACTIONS(4828), + [sym__superscript_open] = ACTIONS(4828), + [sym__subscript_open] = ACTIONS(4828), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4828), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4828), + [sym__cite_author_in_text] = ACTIONS(4828), + [sym__cite_suppress_author] = ACTIONS(4828), + [sym__shortcode_open_escaped] = ACTIONS(4828), + [sym__shortcode_open] = ACTIONS(4828), + [sym__unclosed_span] = ACTIONS(4828), + }, + [STATE(1078)] = { + [sym__backslash_escape] = ACTIONS(4832), + [sym_entity_reference] = ACTIONS(4832), + [sym_numeric_character_reference] = ACTIONS(4832), + [anon_sym_LT] = ACTIONS(4834), + [anon_sym_GT] = ACTIONS(4832), + [anon_sym_BANG] = ACTIONS(4832), + [anon_sym_DQUOTE] = ACTIONS(4832), + [anon_sym_POUND] = ACTIONS(4832), + [anon_sym_DOLLAR] = ACTIONS(4832), + [anon_sym_PERCENT] = ACTIONS(4832), + [anon_sym_AMP] = ACTIONS(4834), + [anon_sym_SQUOTE] = ACTIONS(4832), + [anon_sym_STAR] = ACTIONS(4832), + [anon_sym_PLUS] = ACTIONS(4832), + [anon_sym_COMMA] = ACTIONS(4832), + [anon_sym_DASH] = ACTIONS(4834), + [anon_sym_DOT] = ACTIONS(4834), + [anon_sym_SLASH] = ACTIONS(4832), + [anon_sym_COLON] = ACTIONS(4832), + [anon_sym_SEMI] = ACTIONS(4832), + [anon_sym_EQ] = ACTIONS(4832), + [anon_sym_QMARK] = ACTIONS(4832), + [anon_sym_LBRACK] = ACTIONS(4834), + [anon_sym_BSLASH] = ACTIONS(4834), + [anon_sym_CARET] = ACTIONS(4834), + [anon_sym__] = ACTIONS(4832), + [anon_sym_BQUOTE] = ACTIONS(4832), + [anon_sym_LBRACE] = ACTIONS(4832), + [anon_sym_PIPE] = ACTIONS(4832), + [anon_sym_TILDE] = ACTIONS(4832), + [anon_sym_LPAREN] = ACTIONS(4832), + [anon_sym_RPAREN] = ACTIONS(4832), + [sym__newline_token] = ACTIONS(4832), + [aux_sym_insert_token1] = ACTIONS(4832), + [aux_sym_insert_token2] = ACTIONS(4832), + [aux_sym_delete_token1] = ACTIONS(4832), + [aux_sym_highlight_token1] = ACTIONS(4832), + [aux_sym_edit_comment_token1] = ACTIONS(4832), + [anon_sym_CARET_LBRACK] = ACTIONS(4832), + [anon_sym_LBRACK_CARET] = ACTIONS(4832), + [sym_uri_autolink] = ACTIONS(4832), + [sym_email_autolink] = ACTIONS(4832), + [sym__whitespace_ge_2] = ACTIONS(4834), + [aux_sym__whitespace_token1] = ACTIONS(4834), + [sym__word_no_digit] = ACTIONS(4832), + [sym__digits] = ACTIONS(4832), + [anon_sym_DASH_DASH] = ACTIONS(4834), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4832), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4832), + [sym__code_span_start] = ACTIONS(4832), + [sym__emphasis_open_star] = ACTIONS(4832), + [sym__emphasis_open_underscore] = ACTIONS(4832), + [sym__strikeout_open] = ACTIONS(4832), + [sym__latex_span_start] = ACTIONS(4832), + [sym__single_quote_open] = ACTIONS(4832), + [sym__double_quote_open] = ACTIONS(4832), + [sym__superscript_open] = ACTIONS(4832), + [sym__subscript_open] = ACTIONS(4832), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4832), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4832), + [sym__cite_author_in_text] = ACTIONS(4832), + [sym__cite_suppress_author] = ACTIONS(4832), + [sym__shortcode_open_escaped] = ACTIONS(4832), + [sym__shortcode_open] = ACTIONS(4832), + [sym__unclosed_span] = ACTIONS(4832), + }, + [STATE(1079)] = { + [sym__backslash_escape] = ACTIONS(4836), + [sym_entity_reference] = ACTIONS(4836), + [sym_numeric_character_reference] = ACTIONS(4836), + [anon_sym_LT] = ACTIONS(4838), + [anon_sym_GT] = ACTIONS(4836), + [anon_sym_BANG] = ACTIONS(4836), + [anon_sym_DQUOTE] = ACTIONS(4836), + [anon_sym_POUND] = ACTIONS(4836), + [anon_sym_DOLLAR] = ACTIONS(4836), + [anon_sym_PERCENT] = ACTIONS(4836), + [anon_sym_AMP] = ACTIONS(4838), + [anon_sym_SQUOTE] = ACTIONS(4836), + [anon_sym_STAR] = ACTIONS(4836), + [anon_sym_PLUS] = ACTIONS(4836), + [anon_sym_COMMA] = ACTIONS(4836), + [anon_sym_DASH] = ACTIONS(4838), + [anon_sym_DOT] = ACTIONS(4838), + [anon_sym_SLASH] = ACTIONS(4836), + [anon_sym_COLON] = ACTIONS(4836), + [anon_sym_SEMI] = ACTIONS(4836), + [anon_sym_EQ] = ACTIONS(4836), + [anon_sym_QMARK] = ACTIONS(4836), + [anon_sym_LBRACK] = ACTIONS(4838), + [anon_sym_BSLASH] = ACTIONS(4838), + [anon_sym_CARET] = ACTIONS(4838), + [anon_sym__] = ACTIONS(4836), + [anon_sym_BQUOTE] = ACTIONS(4836), + [anon_sym_LBRACE] = ACTIONS(4836), + [anon_sym_PIPE] = ACTIONS(4836), + [anon_sym_TILDE] = ACTIONS(4836), + [anon_sym_LPAREN] = ACTIONS(4836), + [anon_sym_RPAREN] = ACTIONS(4836), + [sym__newline_token] = ACTIONS(4836), + [aux_sym_insert_token1] = ACTIONS(4836), + [aux_sym_insert_token2] = ACTIONS(4836), + [aux_sym_delete_token1] = ACTIONS(4836), + [aux_sym_highlight_token1] = ACTIONS(4836), + [aux_sym_edit_comment_token1] = ACTIONS(4836), + [anon_sym_CARET_LBRACK] = ACTIONS(4836), + [anon_sym_LBRACK_CARET] = ACTIONS(4836), + [sym_uri_autolink] = ACTIONS(4836), + [sym_email_autolink] = ACTIONS(4836), + [sym__whitespace_ge_2] = ACTIONS(4838), + [aux_sym__whitespace_token1] = ACTIONS(4838), + [sym__word_no_digit] = ACTIONS(4836), + [sym__digits] = ACTIONS(4836), + [anon_sym_DASH_DASH] = ACTIONS(4838), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4836), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4836), + [sym__code_span_start] = ACTIONS(4836), + [sym__emphasis_open_star] = ACTIONS(4836), + [sym__emphasis_open_underscore] = ACTIONS(4836), + [sym__strikeout_open] = ACTIONS(4836), + [sym__latex_span_start] = ACTIONS(4836), + [sym__single_quote_open] = ACTIONS(4836), + [sym__double_quote_open] = ACTIONS(4836), + [sym__superscript_open] = ACTIONS(4836), + [sym__subscript_open] = ACTIONS(4836), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4836), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4836), + [sym__cite_author_in_text] = ACTIONS(4836), + [sym__cite_suppress_author] = ACTIONS(4836), + [sym__shortcode_open_escaped] = ACTIONS(4836), + [sym__shortcode_open] = ACTIONS(4836), + [sym__unclosed_span] = ACTIONS(4836), + }, + [STATE(1080)] = { + [sym__backslash_escape] = ACTIONS(4920), + [sym_entity_reference] = ACTIONS(4920), + [sym_numeric_character_reference] = ACTIONS(4920), + [anon_sym_LT] = ACTIONS(4922), + [anon_sym_GT] = ACTIONS(4920), + [anon_sym_BANG] = ACTIONS(4920), + [anon_sym_DQUOTE] = ACTIONS(4920), + [anon_sym_POUND] = ACTIONS(4920), + [anon_sym_DOLLAR] = ACTIONS(4920), + [anon_sym_PERCENT] = ACTIONS(4920), + [anon_sym_AMP] = ACTIONS(4922), + [anon_sym_SQUOTE] = ACTIONS(4920), + [anon_sym_STAR] = ACTIONS(4920), + [anon_sym_PLUS] = ACTIONS(4920), + [anon_sym_COMMA] = ACTIONS(4920), + [anon_sym_DASH] = ACTIONS(4922), + [anon_sym_DOT] = ACTIONS(4922), + [anon_sym_SLASH] = ACTIONS(4920), + [anon_sym_COLON] = ACTIONS(4920), + [anon_sym_SEMI] = ACTIONS(4920), + [anon_sym_EQ] = ACTIONS(4920), + [anon_sym_QMARK] = ACTIONS(4920), + [anon_sym_LBRACK] = ACTIONS(4922), + [anon_sym_BSLASH] = ACTIONS(4922), + [anon_sym_CARET] = ACTIONS(4922), + [anon_sym__] = ACTIONS(4920), + [anon_sym_BQUOTE] = ACTIONS(4920), + [anon_sym_LBRACE] = ACTIONS(4920), + [anon_sym_PIPE] = ACTIONS(4920), + [anon_sym_TILDE] = ACTIONS(4920), + [anon_sym_LPAREN] = ACTIONS(4920), + [anon_sym_RPAREN] = ACTIONS(4920), + [sym__newline_token] = ACTIONS(4920), + [aux_sym_insert_token1] = ACTIONS(4920), + [aux_sym_delete_token1] = ACTIONS(4920), + [aux_sym_highlight_token1] = ACTIONS(4920), + [aux_sym_edit_comment_token1] = ACTIONS(4920), + [anon_sym_CARET_LBRACK] = ACTIONS(4920), + [anon_sym_LBRACK_CARET] = ACTIONS(4920), + [sym_uri_autolink] = ACTIONS(4920), + [sym_email_autolink] = ACTIONS(4920), + [sym__whitespace_ge_2] = ACTIONS(4920), + [aux_sym__whitespace_token1] = ACTIONS(4922), + [sym__word_no_digit] = ACTIONS(4920), + [sym__digits] = ACTIONS(4920), + [anon_sym_DASH_DASH] = ACTIONS(4922), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4920), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4920), + [sym__code_span_start] = ACTIONS(4920), + [sym__emphasis_open_star] = ACTIONS(4920), + [sym__emphasis_open_underscore] = ACTIONS(4920), + [sym__strikeout_open] = ACTIONS(4920), + [sym__latex_span_start] = ACTIONS(4920), + [sym__single_quote_open] = ACTIONS(4920), + [sym__single_quote_close] = ACTIONS(4920), + [sym__double_quote_open] = ACTIONS(4920), + [sym__superscript_open] = ACTIONS(4920), + [sym__subscript_open] = ACTIONS(4920), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4920), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4920), + [sym__cite_author_in_text] = ACTIONS(4920), + [sym__cite_suppress_author] = ACTIONS(4920), + [sym__shortcode_open_escaped] = ACTIONS(4920), + [sym__shortcode_open] = ACTIONS(4920), + [sym__unclosed_span] = ACTIONS(4920), + }, + [STATE(1081)] = { + [sym__backslash_escape] = ACTIONS(4844), + [sym_entity_reference] = ACTIONS(4844), + [sym_numeric_character_reference] = ACTIONS(4844), + [anon_sym_LT] = ACTIONS(4846), + [anon_sym_GT] = ACTIONS(4844), + [anon_sym_BANG] = ACTIONS(4844), + [anon_sym_DQUOTE] = ACTIONS(4844), + [anon_sym_POUND] = ACTIONS(4844), + [anon_sym_DOLLAR] = ACTIONS(4844), + [anon_sym_PERCENT] = ACTIONS(4844), + [anon_sym_AMP] = ACTIONS(4846), + [anon_sym_SQUOTE] = ACTIONS(4844), + [anon_sym_STAR] = ACTIONS(4844), + [anon_sym_PLUS] = ACTIONS(4844), + [anon_sym_COMMA] = ACTIONS(4844), + [anon_sym_DASH] = ACTIONS(4846), + [anon_sym_DOT] = ACTIONS(4846), + [anon_sym_SLASH] = ACTIONS(4844), + [anon_sym_COLON] = ACTIONS(4844), + [anon_sym_SEMI] = ACTIONS(4844), + [anon_sym_EQ] = ACTIONS(4844), + [anon_sym_QMARK] = ACTIONS(4844), + [anon_sym_LBRACK] = ACTIONS(4846), + [anon_sym_BSLASH] = ACTIONS(4846), + [anon_sym_CARET] = ACTIONS(4846), + [anon_sym__] = ACTIONS(4844), + [anon_sym_BQUOTE] = ACTIONS(4844), + [anon_sym_LBRACE] = ACTIONS(4844), + [anon_sym_PIPE] = ACTIONS(4844), + [anon_sym_TILDE] = ACTIONS(4844), + [anon_sym_LPAREN] = ACTIONS(4844), + [anon_sym_RPAREN] = ACTIONS(4844), + [sym__newline_token] = ACTIONS(4844), + [aux_sym_insert_token1] = ACTIONS(4844), + [aux_sym_insert_token2] = ACTIONS(4844), + [aux_sym_delete_token1] = ACTIONS(4844), + [aux_sym_highlight_token1] = ACTIONS(4844), + [aux_sym_edit_comment_token1] = ACTIONS(4844), + [anon_sym_CARET_LBRACK] = ACTIONS(4844), + [anon_sym_LBRACK_CARET] = ACTIONS(4844), + [sym_uri_autolink] = ACTIONS(4844), + [sym_email_autolink] = ACTIONS(4844), + [sym__whitespace_ge_2] = ACTIONS(4846), + [aux_sym__whitespace_token1] = ACTIONS(4846), + [sym__word_no_digit] = ACTIONS(4844), + [sym__digits] = ACTIONS(4844), + [anon_sym_DASH_DASH] = ACTIONS(4846), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4844), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4844), + [sym__code_span_start] = ACTIONS(4844), + [sym__emphasis_open_star] = ACTIONS(4844), + [sym__emphasis_open_underscore] = ACTIONS(4844), + [sym__strikeout_open] = ACTIONS(4844), + [sym__latex_span_start] = ACTIONS(4844), + [sym__single_quote_open] = ACTIONS(4844), + [sym__double_quote_open] = ACTIONS(4844), + [sym__superscript_open] = ACTIONS(4844), + [sym__subscript_open] = ACTIONS(4844), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4844), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4844), + [sym__cite_author_in_text] = ACTIONS(4844), + [sym__cite_suppress_author] = ACTIONS(4844), + [sym__shortcode_open_escaped] = ACTIONS(4844), + [sym__shortcode_open] = ACTIONS(4844), + [sym__unclosed_span] = ACTIONS(4844), + }, + [STATE(1082)] = { + [sym__backslash_escape] = ACTIONS(4848), + [sym_entity_reference] = ACTIONS(4848), + [sym_numeric_character_reference] = ACTIONS(4848), + [anon_sym_LT] = ACTIONS(4850), + [anon_sym_GT] = ACTIONS(4848), + [anon_sym_BANG] = ACTIONS(4848), + [anon_sym_DQUOTE] = ACTIONS(4848), + [anon_sym_POUND] = ACTIONS(4848), + [anon_sym_DOLLAR] = ACTIONS(4848), + [anon_sym_PERCENT] = ACTIONS(4848), + [anon_sym_AMP] = ACTIONS(4850), + [anon_sym_SQUOTE] = ACTIONS(4848), + [anon_sym_STAR] = ACTIONS(4848), + [anon_sym_PLUS] = ACTIONS(4848), + [anon_sym_COMMA] = ACTIONS(4848), + [anon_sym_DASH] = ACTIONS(4850), + [anon_sym_DOT] = ACTIONS(4850), + [anon_sym_SLASH] = ACTIONS(4848), + [anon_sym_COLON] = ACTIONS(4848), + [anon_sym_SEMI] = ACTIONS(4848), + [anon_sym_EQ] = ACTIONS(4848), + [anon_sym_QMARK] = ACTIONS(4848), + [anon_sym_LBRACK] = ACTIONS(4850), + [anon_sym_BSLASH] = ACTIONS(4850), + [anon_sym_RBRACK] = ACTIONS(4848), + [anon_sym_CARET] = ACTIONS(4850), + [anon_sym__] = ACTIONS(4848), + [anon_sym_BQUOTE] = ACTIONS(4848), + [anon_sym_LBRACE] = ACTIONS(4848), + [anon_sym_PIPE] = ACTIONS(4848), + [anon_sym_TILDE] = ACTIONS(4848), + [anon_sym_LPAREN] = ACTIONS(4848), + [anon_sym_RPAREN] = ACTIONS(4848), + [sym__newline_token] = ACTIONS(4848), + [aux_sym_insert_token1] = ACTIONS(4848), + [aux_sym_delete_token1] = ACTIONS(4848), + [aux_sym_highlight_token1] = ACTIONS(4848), + [aux_sym_edit_comment_token1] = ACTIONS(4848), + [anon_sym_CARET_LBRACK] = ACTIONS(4848), + [anon_sym_LBRACK_CARET] = ACTIONS(4848), + [sym_uri_autolink] = ACTIONS(4848), + [sym_email_autolink] = ACTIONS(4848), + [sym__whitespace_ge_2] = ACTIONS(4848), + [aux_sym__whitespace_token1] = ACTIONS(4850), + [sym__word_no_digit] = ACTIONS(4848), + [sym__digits] = ACTIONS(4848), + [anon_sym_DASH_DASH] = ACTIONS(4850), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4848), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4848), + [sym__code_span_start] = ACTIONS(4848), + [sym__emphasis_open_star] = ACTIONS(4848), + [sym__emphasis_open_underscore] = ACTIONS(4848), + [sym__strikeout_open] = ACTIONS(4848), + [sym__latex_span_start] = ACTIONS(4848), + [sym__single_quote_open] = ACTIONS(4848), + [sym__double_quote_open] = ACTIONS(4848), + [sym__superscript_open] = ACTIONS(4848), + [sym__subscript_open] = ACTIONS(4848), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4848), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4848), + [sym__cite_author_in_text] = ACTIONS(4848), + [sym__cite_suppress_author] = ACTIONS(4848), + [sym__shortcode_open_escaped] = ACTIONS(4848), + [sym__shortcode_open] = ACTIONS(4848), + [sym__unclosed_span] = ACTIONS(4848), + }, + [STATE(1083)] = { + [sym__backslash_escape] = ACTIONS(4852), + [sym_entity_reference] = ACTIONS(4852), + [sym_numeric_character_reference] = ACTIONS(4852), + [anon_sym_LT] = ACTIONS(4854), + [anon_sym_GT] = ACTIONS(4852), + [anon_sym_BANG] = ACTIONS(4852), + [anon_sym_DQUOTE] = ACTIONS(4852), + [anon_sym_POUND] = ACTIONS(4852), + [anon_sym_DOLLAR] = ACTIONS(4852), + [anon_sym_PERCENT] = ACTIONS(4852), + [anon_sym_AMP] = ACTIONS(4854), + [anon_sym_SQUOTE] = ACTIONS(4852), + [anon_sym_STAR] = ACTIONS(4852), + [anon_sym_PLUS] = ACTIONS(4852), + [anon_sym_COMMA] = ACTIONS(4852), + [anon_sym_DASH] = ACTIONS(4854), + [anon_sym_DOT] = ACTIONS(4854), + [anon_sym_SLASH] = ACTIONS(4852), + [anon_sym_COLON] = ACTIONS(4852), + [anon_sym_SEMI] = ACTIONS(4852), + [anon_sym_EQ] = ACTIONS(4852), + [anon_sym_QMARK] = ACTIONS(4852), + [anon_sym_LBRACK] = ACTIONS(4854), + [anon_sym_BSLASH] = ACTIONS(4854), + [anon_sym_RBRACK] = ACTIONS(4852), + [anon_sym_CARET] = ACTIONS(4854), + [anon_sym__] = ACTIONS(4852), + [anon_sym_BQUOTE] = ACTIONS(4852), + [anon_sym_LBRACE] = ACTIONS(4852), + [anon_sym_PIPE] = ACTIONS(4852), + [anon_sym_TILDE] = ACTIONS(4852), + [anon_sym_LPAREN] = ACTIONS(4852), + [anon_sym_RPAREN] = ACTIONS(4852), + [sym__newline_token] = ACTIONS(4852), + [aux_sym_insert_token1] = ACTIONS(4852), + [aux_sym_delete_token1] = ACTIONS(4852), + [aux_sym_highlight_token1] = ACTIONS(4852), + [aux_sym_edit_comment_token1] = ACTIONS(4852), + [anon_sym_CARET_LBRACK] = ACTIONS(4852), + [anon_sym_LBRACK_CARET] = ACTIONS(4852), + [sym_uri_autolink] = ACTIONS(4852), + [sym_email_autolink] = ACTIONS(4852), + [sym__whitespace_ge_2] = ACTIONS(4852), + [aux_sym__whitespace_token1] = ACTIONS(4854), + [sym__word_no_digit] = ACTIONS(4852), + [sym__digits] = ACTIONS(4852), + [anon_sym_DASH_DASH] = ACTIONS(4854), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4852), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4852), + [sym__code_span_start] = ACTIONS(4852), + [sym__emphasis_open_star] = ACTIONS(4852), + [sym__emphasis_open_underscore] = ACTIONS(4852), + [sym__strikeout_open] = ACTIONS(4852), + [sym__latex_span_start] = ACTIONS(4852), + [sym__single_quote_open] = ACTIONS(4852), + [sym__double_quote_open] = ACTIONS(4852), + [sym__superscript_open] = ACTIONS(4852), + [sym__subscript_open] = ACTIONS(4852), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4852), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4852), + [sym__cite_author_in_text] = ACTIONS(4852), + [sym__cite_suppress_author] = ACTIONS(4852), + [sym__shortcode_open_escaped] = ACTIONS(4852), + [sym__shortcode_open] = ACTIONS(4852), + [sym__unclosed_span] = ACTIONS(4852), + }, + [STATE(1084)] = { + [sym__backslash_escape] = ACTIONS(4566), + [sym_entity_reference] = ACTIONS(4566), + [sym_numeric_character_reference] = ACTIONS(4566), + [anon_sym_LT] = ACTIONS(4568), + [anon_sym_GT] = ACTIONS(4566), + [anon_sym_BANG] = ACTIONS(4566), + [anon_sym_DQUOTE] = ACTIONS(4566), + [anon_sym_POUND] = ACTIONS(4566), + [anon_sym_DOLLAR] = ACTIONS(4566), + [anon_sym_PERCENT] = ACTIONS(4566), + [anon_sym_AMP] = ACTIONS(4568), + [anon_sym_SQUOTE] = ACTIONS(4566), + [anon_sym_STAR] = ACTIONS(4566), + [anon_sym_PLUS] = ACTIONS(4566), + [anon_sym_COMMA] = ACTIONS(4566), + [anon_sym_DASH] = ACTIONS(4568), + [anon_sym_DOT] = ACTIONS(4568), + [anon_sym_SLASH] = ACTIONS(4566), + [anon_sym_COLON] = ACTIONS(4566), + [anon_sym_SEMI] = ACTIONS(4566), + [anon_sym_EQ] = ACTIONS(4566), + [anon_sym_QMARK] = ACTIONS(4566), + [anon_sym_LBRACK] = ACTIONS(4568), + [anon_sym_BSLASH] = ACTIONS(4568), + [anon_sym_RBRACK] = ACTIONS(4566), + [anon_sym_CARET] = ACTIONS(4568), + [anon_sym__] = ACTIONS(4566), + [anon_sym_BQUOTE] = ACTIONS(4566), + [anon_sym_LBRACE] = ACTIONS(4566), + [anon_sym_PIPE] = ACTIONS(4566), + [anon_sym_TILDE] = ACTIONS(4566), + [anon_sym_LPAREN] = ACTIONS(4566), + [anon_sym_RPAREN] = ACTIONS(4566), + [sym__newline_token] = ACTIONS(4566), + [aux_sym_insert_token1] = ACTIONS(4566), + [aux_sym_delete_token1] = ACTIONS(4566), + [aux_sym_highlight_token1] = ACTIONS(4566), + [aux_sym_edit_comment_token1] = ACTIONS(4566), + [anon_sym_CARET_LBRACK] = ACTIONS(4566), + [anon_sym_LBRACK_CARET] = ACTIONS(4566), + [sym_uri_autolink] = ACTIONS(4566), + [sym_email_autolink] = ACTIONS(4566), + [sym__whitespace_ge_2] = ACTIONS(4566), + [aux_sym__whitespace_token1] = ACTIONS(4568), + [sym__word_no_digit] = ACTIONS(4566), + [sym__digits] = ACTIONS(4566), + [anon_sym_DASH_DASH] = ACTIONS(4568), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4566), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4566), + [sym__code_span_start] = ACTIONS(4566), + [sym__emphasis_open_star] = ACTIONS(4566), + [sym__emphasis_open_underscore] = ACTIONS(4566), + [sym__strikeout_open] = ACTIONS(4566), + [sym__latex_span_start] = ACTIONS(4566), + [sym__single_quote_open] = ACTIONS(4566), + [sym__double_quote_open] = ACTIONS(4566), + [sym__superscript_open] = ACTIONS(4566), + [sym__subscript_open] = ACTIONS(4566), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4566), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4566), + [sym__cite_author_in_text] = ACTIONS(4566), + [sym__cite_suppress_author] = ACTIONS(4566), + [sym__shortcode_open_escaped] = ACTIONS(4566), + [sym__shortcode_open] = ACTIONS(4566), + [sym__unclosed_span] = ACTIONS(4566), + }, + [STATE(1085)] = { + [sym__backslash_escape] = ACTIONS(4932), + [sym_entity_reference] = ACTIONS(4932), + [sym_numeric_character_reference] = ACTIONS(4932), + [anon_sym_LT] = ACTIONS(4934), + [anon_sym_GT] = ACTIONS(4932), + [anon_sym_BANG] = ACTIONS(4932), + [anon_sym_DQUOTE] = ACTIONS(4932), + [anon_sym_POUND] = ACTIONS(4932), + [anon_sym_DOLLAR] = ACTIONS(4932), + [anon_sym_PERCENT] = ACTIONS(4932), + [anon_sym_AMP] = ACTIONS(4934), + [anon_sym_SQUOTE] = ACTIONS(4932), + [anon_sym_STAR] = ACTIONS(4932), + [anon_sym_PLUS] = ACTIONS(4932), + [anon_sym_COMMA] = ACTIONS(4932), + [anon_sym_DASH] = ACTIONS(4934), + [anon_sym_DOT] = ACTIONS(4934), + [anon_sym_SLASH] = ACTIONS(4932), + [anon_sym_COLON] = ACTIONS(4932), + [anon_sym_SEMI] = ACTIONS(4932), + [anon_sym_EQ] = ACTIONS(4932), + [anon_sym_QMARK] = ACTIONS(4932), + [anon_sym_LBRACK] = ACTIONS(4934), + [anon_sym_BSLASH] = ACTIONS(4934), + [anon_sym_CARET] = ACTIONS(4934), + [anon_sym__] = ACTIONS(4932), + [anon_sym_BQUOTE] = ACTIONS(4932), + [anon_sym_LBRACE] = ACTIONS(4932), + [anon_sym_PIPE] = ACTIONS(4932), + [anon_sym_TILDE] = ACTIONS(4932), + [anon_sym_LPAREN] = ACTIONS(4932), + [anon_sym_RPAREN] = ACTIONS(4932), + [sym__newline_token] = ACTIONS(4932), + [aux_sym_insert_token1] = ACTIONS(4932), + [aux_sym_delete_token1] = ACTIONS(4932), + [aux_sym_highlight_token1] = ACTIONS(4932), + [aux_sym_edit_comment_token1] = ACTIONS(4932), + [anon_sym_CARET_LBRACK] = ACTIONS(4932), + [anon_sym_LBRACK_CARET] = ACTIONS(4932), + [sym_uri_autolink] = ACTIONS(4932), + [sym_email_autolink] = ACTIONS(4932), + [sym__whitespace_ge_2] = ACTIONS(4932), + [aux_sym__whitespace_token1] = ACTIONS(4934), + [sym__word_no_digit] = ACTIONS(4932), + [sym__digits] = ACTIONS(4932), + [anon_sym_DASH_DASH] = ACTIONS(4934), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4932), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4932), + [sym__code_span_start] = ACTIONS(4932), + [sym__emphasis_open_star] = ACTIONS(4932), + [sym__emphasis_open_underscore] = ACTIONS(4932), + [sym__strikeout_open] = ACTIONS(4932), + [sym__latex_span_start] = ACTIONS(4932), + [sym__single_quote_open] = ACTIONS(4932), + [sym__single_quote_close] = ACTIONS(4932), + [sym__double_quote_open] = ACTIONS(4932), + [sym__superscript_open] = ACTIONS(4932), + [sym__subscript_open] = ACTIONS(4932), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4932), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4932), + [sym__cite_author_in_text] = ACTIONS(4932), + [sym__cite_suppress_author] = ACTIONS(4932), + [sym__shortcode_open_escaped] = ACTIONS(4932), + [sym__shortcode_open] = ACTIONS(4932), + [sym__unclosed_span] = ACTIONS(4932), + }, + [STATE(1086)] = { + [sym__backslash_escape] = ACTIONS(4572), + [sym_entity_reference] = ACTIONS(4572), + [sym_numeric_character_reference] = ACTIONS(4572), + [anon_sym_LT] = ACTIONS(4574), + [anon_sym_GT] = ACTIONS(4572), + [anon_sym_BANG] = ACTIONS(4572), + [anon_sym_DQUOTE] = ACTIONS(4572), + [anon_sym_POUND] = ACTIONS(4572), + [anon_sym_DOLLAR] = ACTIONS(4572), + [anon_sym_PERCENT] = ACTIONS(4572), + [anon_sym_AMP] = ACTIONS(4574), + [anon_sym_SQUOTE] = ACTIONS(4572), + [anon_sym_STAR] = ACTIONS(4572), + [anon_sym_PLUS] = ACTIONS(4572), + [anon_sym_COMMA] = ACTIONS(4572), + [anon_sym_DASH] = ACTIONS(4574), + [anon_sym_DOT] = ACTIONS(4574), + [anon_sym_SLASH] = ACTIONS(4572), + [anon_sym_COLON] = ACTIONS(4572), + [anon_sym_SEMI] = ACTIONS(4572), + [anon_sym_EQ] = ACTIONS(4572), + [anon_sym_QMARK] = ACTIONS(4572), + [anon_sym_LBRACK] = ACTIONS(4574), + [anon_sym_BSLASH] = ACTIONS(4574), + [anon_sym_CARET] = ACTIONS(4574), + [anon_sym__] = ACTIONS(4572), + [anon_sym_BQUOTE] = ACTIONS(4572), + [anon_sym_LBRACE] = ACTIONS(4572), + [anon_sym_PIPE] = ACTIONS(4572), + [anon_sym_TILDE] = ACTIONS(4572), + [anon_sym_LPAREN] = ACTIONS(4572), + [anon_sym_RPAREN] = ACTIONS(4572), + [sym__newline_token] = ACTIONS(4572), + [aux_sym_insert_token1] = ACTIONS(4572), + [aux_sym_insert_token2] = ACTIONS(4572), + [aux_sym_delete_token1] = ACTIONS(4572), + [aux_sym_highlight_token1] = ACTIONS(4572), + [aux_sym_edit_comment_token1] = ACTIONS(4572), + [anon_sym_CARET_LBRACK] = ACTIONS(4572), + [anon_sym_LBRACK_CARET] = ACTIONS(4572), + [sym_uri_autolink] = ACTIONS(4572), + [sym_email_autolink] = ACTIONS(4572), + [sym__whitespace_ge_2] = ACTIONS(4574), + [aux_sym__whitespace_token1] = ACTIONS(4574), + [sym__word_no_digit] = ACTIONS(4572), + [sym__digits] = ACTIONS(4572), + [anon_sym_DASH_DASH] = ACTIONS(4574), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4572), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4572), + [sym__code_span_start] = ACTIONS(4572), + [sym__emphasis_open_star] = ACTIONS(4572), + [sym__emphasis_open_underscore] = ACTIONS(4572), + [sym__strikeout_open] = ACTIONS(4572), + [sym__latex_span_start] = ACTIONS(4572), + [sym__single_quote_open] = ACTIONS(4572), + [sym__double_quote_open] = ACTIONS(4572), + [sym__superscript_open] = ACTIONS(4572), + [sym__subscript_open] = ACTIONS(4572), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4572), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4572), + [sym__cite_author_in_text] = ACTIONS(4572), + [sym__cite_suppress_author] = ACTIONS(4572), + [sym__shortcode_open_escaped] = ACTIONS(4572), + [sym__shortcode_open] = ACTIONS(4572), + [sym__unclosed_span] = ACTIONS(4572), + }, + [STATE(1087)] = { + [sym__backslash_escape] = ACTIONS(4944), + [sym_entity_reference] = ACTIONS(4944), + [sym_numeric_character_reference] = ACTIONS(4944), + [anon_sym_LT] = ACTIONS(4946), + [anon_sym_GT] = ACTIONS(4944), + [anon_sym_BANG] = ACTIONS(4944), + [anon_sym_DQUOTE] = ACTIONS(4944), + [anon_sym_POUND] = ACTIONS(4944), + [anon_sym_DOLLAR] = ACTIONS(4944), + [anon_sym_PERCENT] = ACTIONS(4944), + [anon_sym_AMP] = ACTIONS(4946), + [anon_sym_SQUOTE] = ACTIONS(4944), + [anon_sym_STAR] = ACTIONS(4944), + [anon_sym_PLUS] = ACTIONS(4944), + [anon_sym_COMMA] = ACTIONS(4944), + [anon_sym_DASH] = ACTIONS(4946), + [anon_sym_DOT] = ACTIONS(4946), + [anon_sym_SLASH] = ACTIONS(4944), + [anon_sym_COLON] = ACTIONS(4944), + [anon_sym_SEMI] = ACTIONS(4944), + [anon_sym_EQ] = ACTIONS(4944), + [anon_sym_QMARK] = ACTIONS(4944), + [anon_sym_LBRACK] = ACTIONS(4946), + [anon_sym_BSLASH] = ACTIONS(4946), + [anon_sym_CARET] = ACTIONS(4946), + [anon_sym__] = ACTIONS(4944), + [anon_sym_BQUOTE] = ACTIONS(4944), + [anon_sym_LBRACE] = ACTIONS(4944), + [anon_sym_PIPE] = ACTIONS(4944), + [anon_sym_TILDE] = ACTIONS(4944), + [anon_sym_LPAREN] = ACTIONS(4944), + [anon_sym_RPAREN] = ACTIONS(4944), + [sym__newline_token] = ACTIONS(4944), + [aux_sym_insert_token1] = ACTIONS(4944), + [aux_sym_delete_token1] = ACTIONS(4944), + [aux_sym_highlight_token1] = ACTIONS(4944), + [aux_sym_edit_comment_token1] = ACTIONS(4944), + [anon_sym_CARET_LBRACK] = ACTIONS(4944), + [anon_sym_LBRACK_CARET] = ACTIONS(4944), + [sym_uri_autolink] = ACTIONS(4944), + [sym_email_autolink] = ACTIONS(4944), + [sym__whitespace_ge_2] = ACTIONS(4944), + [aux_sym__whitespace_token1] = ACTIONS(4946), + [sym__word_no_digit] = ACTIONS(4944), + [sym__digits] = ACTIONS(4944), + [anon_sym_DASH_DASH] = ACTIONS(4946), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4944), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4944), + [sym__code_span_start] = ACTIONS(4944), + [sym__emphasis_open_star] = ACTIONS(4944), + [sym__emphasis_open_underscore] = ACTIONS(4944), + [sym__strikeout_open] = ACTIONS(4944), + [sym__latex_span_start] = ACTIONS(4944), + [sym__single_quote_open] = ACTIONS(4944), + [sym__single_quote_close] = ACTIONS(4944), + [sym__double_quote_open] = ACTIONS(4944), + [sym__superscript_open] = ACTIONS(4944), + [sym__subscript_open] = ACTIONS(4944), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4944), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4944), + [sym__cite_author_in_text] = ACTIONS(4944), + [sym__cite_suppress_author] = ACTIONS(4944), + [sym__shortcode_open_escaped] = ACTIONS(4944), + [sym__shortcode_open] = ACTIONS(4944), + [sym__unclosed_span] = ACTIONS(4944), + }, + [STATE(1088)] = { + [sym__backslash_escape] = ACTIONS(4860), + [sym_entity_reference] = ACTIONS(4860), + [sym_numeric_character_reference] = ACTIONS(4860), + [anon_sym_LT] = ACTIONS(4862), + [anon_sym_GT] = ACTIONS(4860), + [anon_sym_BANG] = ACTIONS(4860), + [anon_sym_DQUOTE] = ACTIONS(4860), + [anon_sym_POUND] = ACTIONS(4860), + [anon_sym_DOLLAR] = ACTIONS(4860), + [anon_sym_PERCENT] = ACTIONS(4860), + [anon_sym_AMP] = ACTIONS(4862), + [anon_sym_SQUOTE] = ACTIONS(4860), + [anon_sym_STAR] = ACTIONS(4860), + [anon_sym_PLUS] = ACTIONS(4860), + [anon_sym_COMMA] = ACTIONS(4860), + [anon_sym_DASH] = ACTIONS(4862), + [anon_sym_DOT] = ACTIONS(4862), + [anon_sym_SLASH] = ACTIONS(4860), + [anon_sym_COLON] = ACTIONS(4860), + [anon_sym_SEMI] = ACTIONS(4860), + [anon_sym_EQ] = ACTIONS(4860), + [anon_sym_QMARK] = ACTIONS(4860), + [anon_sym_LBRACK] = ACTIONS(4862), + [anon_sym_BSLASH] = ACTIONS(4862), + [anon_sym_CARET] = ACTIONS(4862), + [anon_sym__] = ACTIONS(4860), + [anon_sym_BQUOTE] = ACTIONS(4860), + [anon_sym_LBRACE] = ACTIONS(4860), + [anon_sym_PIPE] = ACTIONS(4860), + [anon_sym_TILDE] = ACTIONS(4860), + [anon_sym_LPAREN] = ACTIONS(4860), + [anon_sym_RPAREN] = ACTIONS(4860), + [sym__newline_token] = ACTIONS(4860), + [aux_sym_insert_token1] = ACTIONS(4860), + [aux_sym_insert_token2] = ACTIONS(4860), + [aux_sym_delete_token1] = ACTIONS(4860), + [aux_sym_highlight_token1] = ACTIONS(4860), + [aux_sym_edit_comment_token1] = ACTIONS(4860), + [anon_sym_CARET_LBRACK] = ACTIONS(4860), + [anon_sym_LBRACK_CARET] = ACTIONS(4860), + [sym_uri_autolink] = ACTIONS(4860), + [sym_email_autolink] = ACTIONS(4860), + [sym__whitespace_ge_2] = ACTIONS(4862), + [aux_sym__whitespace_token1] = ACTIONS(4862), + [sym__word_no_digit] = ACTIONS(4860), + [sym__digits] = ACTIONS(4860), + [anon_sym_DASH_DASH] = ACTIONS(4862), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4860), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4860), + [sym__code_span_start] = ACTIONS(4860), + [sym__emphasis_open_star] = ACTIONS(4860), + [sym__emphasis_open_underscore] = ACTIONS(4860), + [sym__strikeout_open] = ACTIONS(4860), + [sym__latex_span_start] = ACTIONS(4860), + [sym__single_quote_open] = ACTIONS(4860), + [sym__double_quote_open] = ACTIONS(4860), + [sym__superscript_open] = ACTIONS(4860), + [sym__subscript_open] = ACTIONS(4860), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4860), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4860), + [sym__cite_author_in_text] = ACTIONS(4860), + [sym__cite_suppress_author] = ACTIONS(4860), + [sym__shortcode_open_escaped] = ACTIONS(4860), + [sym__shortcode_open] = ACTIONS(4860), + [sym__unclosed_span] = ACTIONS(4860), + }, + [STATE(1089)] = { + [sym__backslash_escape] = ACTIONS(4864), + [sym_entity_reference] = ACTIONS(4864), + [sym_numeric_character_reference] = ACTIONS(4864), + [anon_sym_LT] = ACTIONS(4866), + [anon_sym_GT] = ACTIONS(4864), + [anon_sym_BANG] = ACTIONS(4864), + [anon_sym_DQUOTE] = ACTIONS(4864), + [anon_sym_POUND] = ACTIONS(4864), + [anon_sym_DOLLAR] = ACTIONS(4864), + [anon_sym_PERCENT] = ACTIONS(4864), + [anon_sym_AMP] = ACTIONS(4866), + [anon_sym_SQUOTE] = ACTIONS(4864), + [anon_sym_STAR] = ACTIONS(4864), + [anon_sym_PLUS] = ACTIONS(4864), + [anon_sym_COMMA] = ACTIONS(4864), + [anon_sym_DASH] = ACTIONS(4866), + [anon_sym_DOT] = ACTIONS(4866), + [anon_sym_SLASH] = ACTIONS(4864), + [anon_sym_COLON] = ACTIONS(4864), + [anon_sym_SEMI] = ACTIONS(4864), + [anon_sym_EQ] = ACTIONS(4864), + [anon_sym_QMARK] = ACTIONS(4864), + [anon_sym_LBRACK] = ACTIONS(4866), + [anon_sym_BSLASH] = ACTIONS(4866), + [anon_sym_CARET] = ACTIONS(4866), + [anon_sym__] = ACTIONS(4864), + [anon_sym_BQUOTE] = ACTIONS(4864), + [anon_sym_LBRACE] = ACTIONS(4864), + [anon_sym_PIPE] = ACTIONS(4864), + [anon_sym_TILDE] = ACTIONS(4864), + [anon_sym_LPAREN] = ACTIONS(4864), + [anon_sym_RPAREN] = ACTIONS(4864), + [sym__newline_token] = ACTIONS(4864), + [aux_sym_insert_token1] = ACTIONS(4864), + [aux_sym_insert_token2] = ACTIONS(4864), + [aux_sym_delete_token1] = ACTIONS(4864), + [aux_sym_highlight_token1] = ACTIONS(4864), + [aux_sym_edit_comment_token1] = ACTIONS(4864), + [anon_sym_CARET_LBRACK] = ACTIONS(4864), + [anon_sym_LBRACK_CARET] = ACTIONS(4864), + [sym_uri_autolink] = ACTIONS(4864), + [sym_email_autolink] = ACTIONS(4864), + [sym__whitespace_ge_2] = ACTIONS(4866), + [aux_sym__whitespace_token1] = ACTIONS(4866), + [sym__word_no_digit] = ACTIONS(4864), + [sym__digits] = ACTIONS(4864), + [anon_sym_DASH_DASH] = ACTIONS(4866), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4864), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4864), + [sym__code_span_start] = ACTIONS(4864), + [sym__emphasis_open_star] = ACTIONS(4864), + [sym__emphasis_open_underscore] = ACTIONS(4864), + [sym__strikeout_open] = ACTIONS(4864), + [sym__latex_span_start] = ACTIONS(4864), + [sym__single_quote_open] = ACTIONS(4864), + [sym__double_quote_open] = ACTIONS(4864), + [sym__superscript_open] = ACTIONS(4864), + [sym__subscript_open] = ACTIONS(4864), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4864), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4864), + [sym__cite_author_in_text] = ACTIONS(4864), + [sym__cite_suppress_author] = ACTIONS(4864), + [sym__shortcode_open_escaped] = ACTIONS(4864), + [sym__shortcode_open] = ACTIONS(4864), + [sym__unclosed_span] = ACTIONS(4864), + }, + [STATE(1090)] = { + [sym__backslash_escape] = ACTIONS(4868), + [sym_entity_reference] = ACTIONS(4868), + [sym_numeric_character_reference] = ACTIONS(4868), + [anon_sym_LT] = ACTIONS(4870), + [anon_sym_GT] = ACTIONS(4868), + [anon_sym_BANG] = ACTIONS(4868), + [anon_sym_DQUOTE] = ACTIONS(4868), + [anon_sym_POUND] = ACTIONS(4868), + [anon_sym_DOLLAR] = ACTIONS(4868), + [anon_sym_PERCENT] = ACTIONS(4868), + [anon_sym_AMP] = ACTIONS(4870), + [anon_sym_SQUOTE] = ACTIONS(4868), + [anon_sym_STAR] = ACTIONS(4868), + [anon_sym_PLUS] = ACTIONS(4868), + [anon_sym_COMMA] = ACTIONS(4868), + [anon_sym_DASH] = ACTIONS(4870), + [anon_sym_DOT] = ACTIONS(4870), + [anon_sym_SLASH] = ACTIONS(4868), + [anon_sym_COLON] = ACTIONS(4868), + [anon_sym_SEMI] = ACTIONS(4868), + [anon_sym_EQ] = ACTIONS(4868), + [anon_sym_QMARK] = ACTIONS(4868), + [anon_sym_LBRACK] = ACTIONS(4870), + [anon_sym_BSLASH] = ACTIONS(4870), + [anon_sym_CARET] = ACTIONS(4870), + [anon_sym__] = ACTIONS(4868), + [anon_sym_BQUOTE] = ACTIONS(4868), + [anon_sym_LBRACE] = ACTIONS(4868), + [anon_sym_PIPE] = ACTIONS(4868), + [anon_sym_TILDE] = ACTIONS(4868), + [anon_sym_LPAREN] = ACTIONS(4868), + [anon_sym_RPAREN] = ACTIONS(4868), + [sym__newline_token] = ACTIONS(4868), + [aux_sym_insert_token1] = ACTIONS(4868), + [aux_sym_insert_token2] = ACTIONS(4868), + [aux_sym_delete_token1] = ACTIONS(4868), + [aux_sym_highlight_token1] = ACTIONS(4868), + [aux_sym_edit_comment_token1] = ACTIONS(4868), + [anon_sym_CARET_LBRACK] = ACTIONS(4868), + [anon_sym_LBRACK_CARET] = ACTIONS(4868), + [sym_uri_autolink] = ACTIONS(4868), + [sym_email_autolink] = ACTIONS(4868), + [sym__whitespace_ge_2] = ACTIONS(4870), + [aux_sym__whitespace_token1] = ACTIONS(4870), + [sym__word_no_digit] = ACTIONS(4868), + [sym__digits] = ACTIONS(4868), + [anon_sym_DASH_DASH] = ACTIONS(4870), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4868), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4868), + [sym__code_span_start] = ACTIONS(4868), + [sym__emphasis_open_star] = ACTIONS(4868), + [sym__emphasis_open_underscore] = ACTIONS(4868), + [sym__strikeout_open] = ACTIONS(4868), + [sym__latex_span_start] = ACTIONS(4868), + [sym__single_quote_open] = ACTIONS(4868), + [sym__double_quote_open] = ACTIONS(4868), + [sym__superscript_open] = ACTIONS(4868), + [sym__subscript_open] = ACTIONS(4868), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4868), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4868), + [sym__cite_author_in_text] = ACTIONS(4868), + [sym__cite_suppress_author] = ACTIONS(4868), + [sym__shortcode_open_escaped] = ACTIONS(4868), + [sym__shortcode_open] = ACTIONS(4868), + [sym__unclosed_span] = ACTIONS(4868), + }, + [STATE(1091)] = { + [sym__backslash_escape] = ACTIONS(4944), + [sym_entity_reference] = ACTIONS(4944), + [sym_numeric_character_reference] = ACTIONS(4944), + [anon_sym_LT] = ACTIONS(4946), + [anon_sym_GT] = ACTIONS(4944), + [anon_sym_BANG] = ACTIONS(4944), + [anon_sym_DQUOTE] = ACTIONS(4944), + [anon_sym_POUND] = ACTIONS(4944), + [anon_sym_DOLLAR] = ACTIONS(4944), + [anon_sym_PERCENT] = ACTIONS(4944), + [anon_sym_AMP] = ACTIONS(4946), + [anon_sym_SQUOTE] = ACTIONS(4944), + [anon_sym_STAR] = ACTIONS(4944), + [anon_sym_PLUS] = ACTIONS(4944), + [anon_sym_COMMA] = ACTIONS(4944), + [anon_sym_DASH] = ACTIONS(4946), + [anon_sym_DOT] = ACTIONS(4946), + [anon_sym_SLASH] = ACTIONS(4944), + [anon_sym_COLON] = ACTIONS(4944), + [anon_sym_SEMI] = ACTIONS(4944), + [anon_sym_EQ] = ACTIONS(4944), + [anon_sym_QMARK] = ACTIONS(4944), + [anon_sym_LBRACK] = ACTIONS(4946), + [anon_sym_BSLASH] = ACTIONS(4946), + [anon_sym_CARET] = ACTIONS(4946), + [anon_sym__] = ACTIONS(4944), + [anon_sym_BQUOTE] = ACTIONS(4944), + [anon_sym_LBRACE] = ACTIONS(4944), + [anon_sym_PIPE] = ACTIONS(4944), + [anon_sym_TILDE] = ACTIONS(4944), + [anon_sym_LPAREN] = ACTIONS(4944), + [anon_sym_RPAREN] = ACTIONS(4944), + [sym__newline_token] = ACTIONS(4944), + [aux_sym_insert_token1] = ACTIONS(4944), + [aux_sym_delete_token1] = ACTIONS(4944), + [aux_sym_highlight_token1] = ACTIONS(4944), + [aux_sym_edit_comment_token1] = ACTIONS(4944), + [anon_sym_CARET_LBRACK] = ACTIONS(4944), + [anon_sym_LBRACK_CARET] = ACTIONS(4944), + [sym_uri_autolink] = ACTIONS(4944), + [sym_email_autolink] = ACTIONS(4944), + [sym__whitespace_ge_2] = ACTIONS(4944), + [aux_sym__whitespace_token1] = ACTIONS(4946), + [sym__word_no_digit] = ACTIONS(4944), + [sym__digits] = ACTIONS(4944), + [anon_sym_DASH_DASH] = ACTIONS(4946), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4944), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4944), + [sym__code_span_start] = ACTIONS(4944), + [sym__emphasis_open_star] = ACTIONS(4944), + [sym__emphasis_open_underscore] = ACTIONS(4944), + [sym__emphasis_close_underscore] = ACTIONS(4944), + [sym__strikeout_open] = ACTIONS(4944), + [sym__latex_span_start] = ACTIONS(4944), + [sym__single_quote_open] = ACTIONS(4944), + [sym__double_quote_open] = ACTIONS(4944), + [sym__superscript_open] = ACTIONS(4944), + [sym__subscript_open] = ACTIONS(4944), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4944), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4944), + [sym__cite_author_in_text] = ACTIONS(4944), + [sym__cite_suppress_author] = ACTIONS(4944), + [sym__shortcode_open_escaped] = ACTIONS(4944), + [sym__shortcode_open] = ACTIONS(4944), + [sym__unclosed_span] = ACTIONS(4944), + }, + [STATE(1092)] = { + [sym__backslash_escape] = ACTIONS(4876), + [sym_entity_reference] = ACTIONS(4876), + [sym_numeric_character_reference] = ACTIONS(4876), + [anon_sym_LT] = ACTIONS(4878), + [anon_sym_GT] = ACTIONS(4876), + [anon_sym_BANG] = ACTIONS(4876), + [anon_sym_DQUOTE] = ACTIONS(4876), + [anon_sym_POUND] = ACTIONS(4876), + [anon_sym_DOLLAR] = ACTIONS(4876), + [anon_sym_PERCENT] = ACTIONS(4876), + [anon_sym_AMP] = ACTIONS(4878), + [anon_sym_SQUOTE] = ACTIONS(4876), + [anon_sym_STAR] = ACTIONS(4876), + [anon_sym_PLUS] = ACTIONS(4876), + [anon_sym_COMMA] = ACTIONS(4876), + [anon_sym_DASH] = ACTIONS(4878), + [anon_sym_DOT] = ACTIONS(4878), + [anon_sym_SLASH] = ACTIONS(4876), + [anon_sym_COLON] = ACTIONS(4876), + [anon_sym_SEMI] = ACTIONS(4876), + [anon_sym_EQ] = ACTIONS(4876), + [anon_sym_QMARK] = ACTIONS(4876), + [anon_sym_LBRACK] = ACTIONS(4878), + [anon_sym_BSLASH] = ACTIONS(4878), + [anon_sym_RBRACK] = ACTIONS(4876), + [anon_sym_CARET] = ACTIONS(4878), + [anon_sym__] = ACTIONS(4876), + [anon_sym_BQUOTE] = ACTIONS(4876), + [anon_sym_LBRACE] = ACTIONS(4876), + [anon_sym_PIPE] = ACTIONS(4876), + [anon_sym_TILDE] = ACTIONS(4876), + [anon_sym_LPAREN] = ACTIONS(4876), + [anon_sym_RPAREN] = ACTIONS(4876), + [sym__newline_token] = ACTIONS(4876), + [aux_sym_insert_token1] = ACTIONS(4876), + [aux_sym_delete_token1] = ACTIONS(4876), + [aux_sym_highlight_token1] = ACTIONS(4876), + [aux_sym_edit_comment_token1] = ACTIONS(4876), + [anon_sym_CARET_LBRACK] = ACTIONS(4876), + [anon_sym_LBRACK_CARET] = ACTIONS(4876), + [sym_uri_autolink] = ACTIONS(4876), + [sym_email_autolink] = ACTIONS(4876), + [sym__whitespace_ge_2] = ACTIONS(4876), + [aux_sym__whitespace_token1] = ACTIONS(4878), + [sym__word_no_digit] = ACTIONS(4876), + [sym__digits] = ACTIONS(4876), + [anon_sym_DASH_DASH] = ACTIONS(4878), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4876), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4876), + [sym__code_span_start] = ACTIONS(4876), + [sym__emphasis_open_star] = ACTIONS(4876), + [sym__emphasis_open_underscore] = ACTIONS(4876), + [sym__strikeout_open] = ACTIONS(4876), + [sym__latex_span_start] = ACTIONS(4876), + [sym__single_quote_open] = ACTIONS(4876), + [sym__double_quote_open] = ACTIONS(4876), + [sym__superscript_open] = ACTIONS(4876), + [sym__subscript_open] = ACTIONS(4876), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4876), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4876), + [sym__cite_author_in_text] = ACTIONS(4876), + [sym__cite_suppress_author] = ACTIONS(4876), + [sym__shortcode_open_escaped] = ACTIONS(4876), + [sym__shortcode_open] = ACTIONS(4876), + [sym__unclosed_span] = ACTIONS(4876), + }, + [STATE(1093)] = { + [sym__backslash_escape] = ACTIONS(4588), + [sym_entity_reference] = ACTIONS(4588), + [sym_numeric_character_reference] = ACTIONS(4588), + [anon_sym_LT] = ACTIONS(4590), + [anon_sym_GT] = ACTIONS(4588), + [anon_sym_BANG] = ACTIONS(4588), + [anon_sym_DQUOTE] = ACTIONS(4588), + [anon_sym_POUND] = ACTIONS(4588), + [anon_sym_DOLLAR] = ACTIONS(4588), + [anon_sym_PERCENT] = ACTIONS(4588), + [anon_sym_AMP] = ACTIONS(4590), + [anon_sym_SQUOTE] = ACTIONS(4588), + [anon_sym_STAR] = ACTIONS(4588), + [anon_sym_PLUS] = ACTIONS(4588), + [anon_sym_COMMA] = ACTIONS(4588), + [anon_sym_DASH] = ACTIONS(4590), + [anon_sym_DOT] = ACTIONS(4590), + [anon_sym_SLASH] = ACTIONS(4588), + [anon_sym_COLON] = ACTIONS(4588), + [anon_sym_SEMI] = ACTIONS(4588), + [anon_sym_EQ] = ACTIONS(4588), + [anon_sym_QMARK] = ACTIONS(4588), + [anon_sym_LBRACK] = ACTIONS(4590), + [anon_sym_BSLASH] = ACTIONS(4590), + [anon_sym_RBRACK] = ACTIONS(4588), + [anon_sym_CARET] = ACTIONS(4590), + [anon_sym__] = ACTIONS(4588), + [anon_sym_BQUOTE] = ACTIONS(4588), + [anon_sym_LBRACE] = ACTIONS(4588), + [anon_sym_PIPE] = ACTIONS(4588), + [anon_sym_TILDE] = ACTIONS(4588), + [anon_sym_LPAREN] = ACTIONS(4588), + [anon_sym_RPAREN] = ACTIONS(4588), + [sym__newline_token] = ACTIONS(4588), + [aux_sym_insert_token1] = ACTIONS(4588), + [aux_sym_delete_token1] = ACTIONS(4588), + [aux_sym_highlight_token1] = ACTIONS(4588), + [aux_sym_edit_comment_token1] = ACTIONS(4588), + [anon_sym_CARET_LBRACK] = ACTIONS(4588), + [anon_sym_LBRACK_CARET] = ACTIONS(4588), + [sym_uri_autolink] = ACTIONS(4588), + [sym_email_autolink] = ACTIONS(4588), + [sym__whitespace_ge_2] = ACTIONS(4588), + [aux_sym__whitespace_token1] = ACTIONS(4590), + [sym__word_no_digit] = ACTIONS(4588), + [sym__digits] = ACTIONS(4588), + [anon_sym_DASH_DASH] = ACTIONS(4590), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4588), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4588), + [sym__code_span_start] = ACTIONS(4588), + [sym__emphasis_open_star] = ACTIONS(4588), + [sym__emphasis_open_underscore] = ACTIONS(4588), + [sym__strikeout_open] = ACTIONS(4588), + [sym__latex_span_start] = ACTIONS(4588), + [sym__single_quote_open] = ACTIONS(4588), + [sym__double_quote_open] = ACTIONS(4588), + [sym__superscript_open] = ACTIONS(4588), + [sym__subscript_open] = ACTIONS(4588), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4588), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4588), + [sym__cite_author_in_text] = ACTIONS(4588), + [sym__cite_suppress_author] = ACTIONS(4588), + [sym__shortcode_open_escaped] = ACTIONS(4588), + [sym__shortcode_open] = ACTIONS(4588), + [sym__unclosed_span] = ACTIONS(4588), + }, + [STATE(1094)] = { + [ts_builtin_sym_end] = ACTIONS(4984), + [sym__backslash_escape] = ACTIONS(4984), + [sym_entity_reference] = ACTIONS(4984), + [sym_numeric_character_reference] = ACTIONS(4984), + [anon_sym_LT] = ACTIONS(4986), + [anon_sym_GT] = ACTIONS(4984), + [anon_sym_BANG] = ACTIONS(4984), + [anon_sym_DQUOTE] = ACTIONS(4984), + [anon_sym_POUND] = ACTIONS(4984), + [anon_sym_DOLLAR] = ACTIONS(4984), + [anon_sym_PERCENT] = ACTIONS(4984), + [anon_sym_AMP] = ACTIONS(4986), + [anon_sym_SQUOTE] = ACTIONS(4984), + [anon_sym_STAR] = ACTIONS(4984), + [anon_sym_PLUS] = ACTIONS(4984), + [anon_sym_COMMA] = ACTIONS(4984), + [anon_sym_DASH] = ACTIONS(4986), + [anon_sym_DOT] = ACTIONS(4986), + [anon_sym_SLASH] = ACTIONS(4984), + [anon_sym_COLON] = ACTIONS(4984), + [anon_sym_SEMI] = ACTIONS(4984), + [anon_sym_EQ] = ACTIONS(4984), + [anon_sym_QMARK] = ACTIONS(4984), + [anon_sym_LBRACK] = ACTIONS(4986), + [anon_sym_BSLASH] = ACTIONS(4986), + [anon_sym_CARET] = ACTIONS(4986), + [anon_sym__] = ACTIONS(4984), + [anon_sym_BQUOTE] = ACTIONS(4984), + [anon_sym_LBRACE] = ACTIONS(4984), + [anon_sym_PIPE] = ACTIONS(4984), + [anon_sym_TILDE] = ACTIONS(4984), + [anon_sym_LPAREN] = ACTIONS(4984), + [anon_sym_RPAREN] = ACTIONS(4984), + [sym__newline_token] = ACTIONS(4984), + [aux_sym_insert_token1] = ACTIONS(4984), + [aux_sym_delete_token1] = ACTIONS(4984), + [aux_sym_highlight_token1] = ACTIONS(4984), + [aux_sym_edit_comment_token1] = ACTIONS(4984), + [anon_sym_CARET_LBRACK] = ACTIONS(4984), + [anon_sym_LBRACK_CARET] = ACTIONS(4984), + [sym_uri_autolink] = ACTIONS(4984), + [sym_email_autolink] = ACTIONS(4984), + [sym__whitespace_ge_2] = ACTIONS(4984), + [aux_sym__whitespace_token1] = ACTIONS(4986), + [sym__word_no_digit] = ACTIONS(4984), + [sym__digits] = ACTIONS(4984), + [anon_sym_DASH_DASH] = ACTIONS(4986), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4984), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4984), + [sym__code_span_start] = ACTIONS(4984), + [sym__emphasis_open_star] = ACTIONS(4984), + [sym__emphasis_open_underscore] = ACTIONS(4984), + [sym__strikeout_open] = ACTIONS(4984), + [sym__latex_span_start] = ACTIONS(4984), + [sym__single_quote_open] = ACTIONS(4984), + [sym__double_quote_open] = ACTIONS(4984), + [sym__superscript_open] = ACTIONS(4984), + [sym__subscript_open] = ACTIONS(4984), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4984), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4984), + [sym__cite_author_in_text] = ACTIONS(4984), + [sym__cite_suppress_author] = ACTIONS(4984), + [sym__shortcode_open_escaped] = ACTIONS(4984), + [sym__shortcode_open] = ACTIONS(4984), + [sym__unclosed_span] = ACTIONS(4984), + }, + [STATE(1095)] = { + [sym__backslash_escape] = ACTIONS(4540), + [sym_entity_reference] = ACTIONS(4540), + [sym_numeric_character_reference] = ACTIONS(4540), + [anon_sym_LT] = ACTIONS(4542), + [anon_sym_GT] = ACTIONS(4540), + [anon_sym_BANG] = ACTIONS(4540), + [anon_sym_DQUOTE] = ACTIONS(4540), + [anon_sym_POUND] = ACTIONS(4540), + [anon_sym_DOLLAR] = ACTIONS(4540), + [anon_sym_PERCENT] = ACTIONS(4540), + [anon_sym_AMP] = ACTIONS(4542), + [anon_sym_SQUOTE] = ACTIONS(4540), + [anon_sym_STAR] = ACTIONS(4540), + [anon_sym_PLUS] = ACTIONS(4540), + [anon_sym_COMMA] = ACTIONS(4540), + [anon_sym_DASH] = ACTIONS(4542), + [anon_sym_DOT] = ACTIONS(4542), + [anon_sym_SLASH] = ACTIONS(4540), + [anon_sym_COLON] = ACTIONS(4540), + [anon_sym_SEMI] = ACTIONS(4540), + [anon_sym_EQ] = ACTIONS(4540), + [anon_sym_QMARK] = ACTIONS(4540), + [anon_sym_LBRACK] = ACTIONS(4542), + [anon_sym_BSLASH] = ACTIONS(4542), + [anon_sym_CARET] = ACTIONS(4542), + [anon_sym__] = ACTIONS(4540), + [anon_sym_BQUOTE] = ACTIONS(4540), + [anon_sym_LBRACE] = ACTIONS(4540), + [anon_sym_PIPE] = ACTIONS(4540), + [anon_sym_TILDE] = ACTIONS(4540), + [anon_sym_LPAREN] = ACTIONS(4540), + [anon_sym_RPAREN] = ACTIONS(4540), + [sym__newline_token] = ACTIONS(4540), + [aux_sym_insert_token1] = ACTIONS(4540), + [aux_sym_insert_token2] = ACTIONS(4540), + [aux_sym_delete_token1] = ACTIONS(4540), + [aux_sym_highlight_token1] = ACTIONS(4540), + [aux_sym_edit_comment_token1] = ACTIONS(4540), + [anon_sym_CARET_LBRACK] = ACTIONS(4540), + [anon_sym_LBRACK_CARET] = ACTIONS(4540), + [sym_uri_autolink] = ACTIONS(4540), + [sym_email_autolink] = ACTIONS(4540), + [sym__whitespace_ge_2] = ACTIONS(4542), + [aux_sym__whitespace_token1] = ACTIONS(4542), + [sym__word_no_digit] = ACTIONS(4540), + [sym__digits] = ACTIONS(4540), + [anon_sym_DASH_DASH] = ACTIONS(4542), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4540), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4540), + [sym__code_span_start] = ACTIONS(4540), + [sym__emphasis_open_star] = ACTIONS(4540), + [sym__emphasis_open_underscore] = ACTIONS(4540), + [sym__strikeout_open] = ACTIONS(4540), + [sym__latex_span_start] = ACTIONS(4540), + [sym__single_quote_open] = ACTIONS(4540), + [sym__double_quote_open] = ACTIONS(4540), + [sym__superscript_open] = ACTIONS(4540), + [sym__subscript_open] = ACTIONS(4540), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4540), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4540), + [sym__cite_author_in_text] = ACTIONS(4540), + [sym__cite_suppress_author] = ACTIONS(4540), + [sym__shortcode_open_escaped] = ACTIONS(4540), + [sym__shortcode_open] = ACTIONS(4540), + [sym__unclosed_span] = ACTIONS(4540), + }, + [STATE(1096)] = { + [sym__backslash_escape] = ACTIONS(4952), + [sym_entity_reference] = ACTIONS(4952), + [sym_numeric_character_reference] = ACTIONS(4952), + [anon_sym_LT] = ACTIONS(4954), + [anon_sym_GT] = ACTIONS(4952), + [anon_sym_BANG] = ACTIONS(4952), + [anon_sym_DQUOTE] = ACTIONS(4952), + [anon_sym_POUND] = ACTIONS(4952), + [anon_sym_DOLLAR] = ACTIONS(4952), + [anon_sym_PERCENT] = ACTIONS(4952), + [anon_sym_AMP] = ACTIONS(4954), + [anon_sym_SQUOTE] = ACTIONS(4952), + [anon_sym_STAR] = ACTIONS(4952), + [anon_sym_PLUS] = ACTIONS(4952), + [anon_sym_COMMA] = ACTIONS(4952), + [anon_sym_DASH] = ACTIONS(4954), + [anon_sym_DOT] = ACTIONS(4954), + [anon_sym_SLASH] = ACTIONS(4952), + [anon_sym_COLON] = ACTIONS(4952), + [anon_sym_SEMI] = ACTIONS(4952), + [anon_sym_EQ] = ACTIONS(4952), + [anon_sym_QMARK] = ACTIONS(4952), + [anon_sym_LBRACK] = ACTIONS(4954), + [anon_sym_BSLASH] = ACTIONS(4954), + [anon_sym_CARET] = ACTIONS(4954), + [anon_sym__] = ACTIONS(4952), + [anon_sym_BQUOTE] = ACTIONS(4952), + [anon_sym_LBRACE] = ACTIONS(4952), + [anon_sym_PIPE] = ACTIONS(4952), + [anon_sym_TILDE] = ACTIONS(4952), + [anon_sym_LPAREN] = ACTIONS(4952), + [anon_sym_RPAREN] = ACTIONS(4952), + [sym__newline_token] = ACTIONS(4952), + [aux_sym_insert_token1] = ACTIONS(4952), + [aux_sym_delete_token1] = ACTIONS(4952), + [aux_sym_highlight_token1] = ACTIONS(4952), + [aux_sym_edit_comment_token1] = ACTIONS(4952), + [anon_sym_CARET_LBRACK] = ACTIONS(4952), + [anon_sym_LBRACK_CARET] = ACTIONS(4952), + [sym_uri_autolink] = ACTIONS(4952), + [sym_email_autolink] = ACTIONS(4952), + [sym__whitespace_ge_2] = ACTIONS(4952), + [aux_sym__whitespace_token1] = ACTIONS(4954), + [sym__word_no_digit] = ACTIONS(4952), + [sym__digits] = ACTIONS(4952), + [anon_sym_DASH_DASH] = ACTIONS(4954), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4952), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4952), + [sym__code_span_start] = ACTIONS(4952), + [sym__emphasis_open_star] = ACTIONS(4952), + [sym__emphasis_open_underscore] = ACTIONS(4952), + [sym__strikeout_open] = ACTIONS(4952), + [sym__latex_span_start] = ACTIONS(4952), + [sym__single_quote_open] = ACTIONS(4952), + [sym__single_quote_close] = ACTIONS(4952), + [sym__double_quote_open] = ACTIONS(4952), + [sym__superscript_open] = ACTIONS(4952), + [sym__subscript_open] = ACTIONS(4952), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4952), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4952), + [sym__cite_author_in_text] = ACTIONS(4952), + [sym__cite_suppress_author] = ACTIONS(4952), + [sym__shortcode_open_escaped] = ACTIONS(4952), + [sym__shortcode_open] = ACTIONS(4952), + [sym__unclosed_span] = ACTIONS(4952), + }, + [STATE(1097)] = { + [sym__backslash_escape] = ACTIONS(4884), + [sym_entity_reference] = ACTIONS(4884), + [sym_numeric_character_reference] = ACTIONS(4884), + [anon_sym_LT] = ACTIONS(4886), + [anon_sym_GT] = ACTIONS(4884), + [anon_sym_BANG] = ACTIONS(4884), + [anon_sym_DQUOTE] = ACTIONS(4884), + [anon_sym_POUND] = ACTIONS(4884), + [anon_sym_DOLLAR] = ACTIONS(4884), + [anon_sym_PERCENT] = ACTIONS(4884), + [anon_sym_AMP] = ACTIONS(4886), + [anon_sym_SQUOTE] = ACTIONS(4884), + [anon_sym_STAR] = ACTIONS(4884), + [anon_sym_PLUS] = ACTIONS(4884), + [anon_sym_COMMA] = ACTIONS(4884), + [anon_sym_DASH] = ACTIONS(4886), + [anon_sym_DOT] = ACTIONS(4886), + [anon_sym_SLASH] = ACTIONS(4884), + [anon_sym_COLON] = ACTIONS(4884), + [anon_sym_SEMI] = ACTIONS(4884), + [anon_sym_EQ] = ACTIONS(4884), + [anon_sym_QMARK] = ACTIONS(4884), + [anon_sym_LBRACK] = ACTIONS(4886), + [anon_sym_BSLASH] = ACTIONS(4886), + [anon_sym_CARET] = ACTIONS(4886), + [anon_sym__] = ACTIONS(4884), + [anon_sym_BQUOTE] = ACTIONS(4884), + [anon_sym_LBRACE] = ACTIONS(4884), + [anon_sym_PIPE] = ACTIONS(4884), + [anon_sym_TILDE] = ACTIONS(4884), + [anon_sym_LPAREN] = ACTIONS(4884), + [anon_sym_RPAREN] = ACTIONS(4884), + [sym__newline_token] = ACTIONS(4884), + [aux_sym_insert_token1] = ACTIONS(4884), + [aux_sym_insert_token2] = ACTIONS(4884), + [aux_sym_delete_token1] = ACTIONS(4884), + [aux_sym_highlight_token1] = ACTIONS(4884), + [aux_sym_edit_comment_token1] = ACTIONS(4884), + [anon_sym_CARET_LBRACK] = ACTIONS(4884), + [anon_sym_LBRACK_CARET] = ACTIONS(4884), + [sym_uri_autolink] = ACTIONS(4884), + [sym_email_autolink] = ACTIONS(4884), + [sym__whitespace_ge_2] = ACTIONS(4886), + [aux_sym__whitespace_token1] = ACTIONS(4886), + [sym__word_no_digit] = ACTIONS(4884), + [sym__digits] = ACTIONS(4884), + [anon_sym_DASH_DASH] = ACTIONS(4886), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4884), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4884), + [sym__code_span_start] = ACTIONS(4884), + [sym__emphasis_open_star] = ACTIONS(4884), + [sym__emphasis_open_underscore] = ACTIONS(4884), + [sym__strikeout_open] = ACTIONS(4884), + [sym__latex_span_start] = ACTIONS(4884), + [sym__single_quote_open] = ACTIONS(4884), + [sym__double_quote_open] = ACTIONS(4884), + [sym__superscript_open] = ACTIONS(4884), + [sym__subscript_open] = ACTIONS(4884), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4884), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4884), + [sym__cite_author_in_text] = ACTIONS(4884), + [sym__cite_suppress_author] = ACTIONS(4884), + [sym__shortcode_open_escaped] = ACTIONS(4884), + [sym__shortcode_open] = ACTIONS(4884), + [sym__unclosed_span] = ACTIONS(4884), + }, + [STATE(1098)] = { + [sym__backslash_escape] = ACTIONS(4888), + [sym_entity_reference] = ACTIONS(4888), + [sym_numeric_character_reference] = ACTIONS(4888), + [anon_sym_LT] = ACTIONS(4890), + [anon_sym_GT] = ACTIONS(4888), + [anon_sym_BANG] = ACTIONS(4888), + [anon_sym_DQUOTE] = ACTIONS(4888), + [anon_sym_POUND] = ACTIONS(4888), + [anon_sym_DOLLAR] = ACTIONS(4888), + [anon_sym_PERCENT] = ACTIONS(4888), + [anon_sym_AMP] = ACTIONS(4890), + [anon_sym_SQUOTE] = ACTIONS(4888), + [anon_sym_STAR] = ACTIONS(4888), + [anon_sym_PLUS] = ACTIONS(4888), + [anon_sym_COMMA] = ACTIONS(4888), + [anon_sym_DASH] = ACTIONS(4890), + [anon_sym_DOT] = ACTIONS(4890), + [anon_sym_SLASH] = ACTIONS(4888), + [anon_sym_COLON] = ACTIONS(4888), + [anon_sym_SEMI] = ACTIONS(4888), + [anon_sym_EQ] = ACTIONS(4888), + [anon_sym_QMARK] = ACTIONS(4888), + [anon_sym_LBRACK] = ACTIONS(4890), + [anon_sym_BSLASH] = ACTIONS(4890), + [anon_sym_CARET] = ACTIONS(4890), + [anon_sym__] = ACTIONS(4888), + [anon_sym_BQUOTE] = ACTIONS(4888), + [anon_sym_LBRACE] = ACTIONS(4888), + [anon_sym_PIPE] = ACTIONS(4888), + [anon_sym_TILDE] = ACTIONS(4888), + [anon_sym_LPAREN] = ACTIONS(4888), + [anon_sym_RPAREN] = ACTIONS(4888), + [sym__newline_token] = ACTIONS(4888), + [aux_sym_insert_token1] = ACTIONS(4888), + [aux_sym_insert_token2] = ACTIONS(4888), + [aux_sym_delete_token1] = ACTIONS(4888), + [aux_sym_highlight_token1] = ACTIONS(4888), + [aux_sym_edit_comment_token1] = ACTIONS(4888), + [anon_sym_CARET_LBRACK] = ACTIONS(4888), + [anon_sym_LBRACK_CARET] = ACTIONS(4888), + [sym_uri_autolink] = ACTIONS(4888), + [sym_email_autolink] = ACTIONS(4888), + [sym__whitespace_ge_2] = ACTIONS(4890), + [aux_sym__whitespace_token1] = ACTIONS(4890), + [sym__word_no_digit] = ACTIONS(4888), + [sym__digits] = ACTIONS(4888), + [anon_sym_DASH_DASH] = ACTIONS(4890), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4888), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4888), + [sym__code_span_start] = ACTIONS(4888), + [sym__emphasis_open_star] = ACTIONS(4888), + [sym__emphasis_open_underscore] = ACTIONS(4888), + [sym__strikeout_open] = ACTIONS(4888), + [sym__latex_span_start] = ACTIONS(4888), + [sym__single_quote_open] = ACTIONS(4888), + [sym__double_quote_open] = ACTIONS(4888), + [sym__superscript_open] = ACTIONS(4888), + [sym__subscript_open] = ACTIONS(4888), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4888), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4888), + [sym__cite_author_in_text] = ACTIONS(4888), + [sym__cite_suppress_author] = ACTIONS(4888), + [sym__shortcode_open_escaped] = ACTIONS(4888), + [sym__shortcode_open] = ACTIONS(4888), + [sym__unclosed_span] = ACTIONS(4888), + }, + [STATE(1099)] = { + [sym__backslash_escape] = ACTIONS(4892), + [sym_entity_reference] = ACTIONS(4892), + [sym_numeric_character_reference] = ACTIONS(4892), + [anon_sym_LT] = ACTIONS(4894), + [anon_sym_GT] = ACTIONS(4892), + [anon_sym_BANG] = ACTIONS(4892), + [anon_sym_DQUOTE] = ACTIONS(4892), + [anon_sym_POUND] = ACTIONS(4892), + [anon_sym_DOLLAR] = ACTIONS(4892), + [anon_sym_PERCENT] = ACTIONS(4892), + [anon_sym_AMP] = ACTIONS(4894), + [anon_sym_SQUOTE] = ACTIONS(4892), + [anon_sym_STAR] = ACTIONS(4892), + [anon_sym_PLUS] = ACTIONS(4892), + [anon_sym_COMMA] = ACTIONS(4892), + [anon_sym_DASH] = ACTIONS(4894), + [anon_sym_DOT] = ACTIONS(4894), + [anon_sym_SLASH] = ACTIONS(4892), + [anon_sym_COLON] = ACTIONS(4892), + [anon_sym_SEMI] = ACTIONS(4892), + [anon_sym_EQ] = ACTIONS(4892), + [anon_sym_QMARK] = ACTIONS(4892), + [anon_sym_LBRACK] = ACTIONS(4894), + [anon_sym_BSLASH] = ACTIONS(4894), + [anon_sym_CARET] = ACTIONS(4894), + [anon_sym__] = ACTIONS(4892), + [anon_sym_BQUOTE] = ACTIONS(4892), + [anon_sym_LBRACE] = ACTIONS(4892), + [anon_sym_PIPE] = ACTIONS(4892), + [anon_sym_TILDE] = ACTIONS(4892), + [anon_sym_LPAREN] = ACTIONS(4892), + [anon_sym_RPAREN] = ACTIONS(4892), + [sym__newline_token] = ACTIONS(4892), + [aux_sym_insert_token1] = ACTIONS(4892), + [aux_sym_insert_token2] = ACTIONS(4892), + [aux_sym_delete_token1] = ACTIONS(4892), + [aux_sym_highlight_token1] = ACTIONS(4892), + [aux_sym_edit_comment_token1] = ACTIONS(4892), + [anon_sym_CARET_LBRACK] = ACTIONS(4892), + [anon_sym_LBRACK_CARET] = ACTIONS(4892), + [sym_uri_autolink] = ACTIONS(4892), + [sym_email_autolink] = ACTIONS(4892), + [sym__whitespace_ge_2] = ACTIONS(4894), + [aux_sym__whitespace_token1] = ACTIONS(4894), + [sym__word_no_digit] = ACTIONS(4892), + [sym__digits] = ACTIONS(4892), + [anon_sym_DASH_DASH] = ACTIONS(4894), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4892), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4892), + [sym__code_span_start] = ACTIONS(4892), + [sym__emphasis_open_star] = ACTIONS(4892), + [sym__emphasis_open_underscore] = ACTIONS(4892), + [sym__strikeout_open] = ACTIONS(4892), + [sym__latex_span_start] = ACTIONS(4892), + [sym__single_quote_open] = ACTIONS(4892), + [sym__double_quote_open] = ACTIONS(4892), + [sym__superscript_open] = ACTIONS(4892), + [sym__subscript_open] = ACTIONS(4892), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4892), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4892), + [sym__cite_author_in_text] = ACTIONS(4892), + [sym__cite_suppress_author] = ACTIONS(4892), + [sym__shortcode_open_escaped] = ACTIONS(4892), + [sym__shortcode_open] = ACTIONS(4892), + [sym__unclosed_span] = ACTIONS(4892), + }, + [STATE(1100)] = { + [sym__backslash_escape] = ACTIONS(4896), + [sym_entity_reference] = ACTIONS(4896), + [sym_numeric_character_reference] = ACTIONS(4896), + [anon_sym_LT] = ACTIONS(4898), + [anon_sym_GT] = ACTIONS(4896), + [anon_sym_BANG] = ACTIONS(4896), + [anon_sym_DQUOTE] = ACTIONS(4896), + [anon_sym_POUND] = ACTIONS(4896), + [anon_sym_DOLLAR] = ACTIONS(4896), + [anon_sym_PERCENT] = ACTIONS(4896), + [anon_sym_AMP] = ACTIONS(4898), + [anon_sym_SQUOTE] = ACTIONS(4896), + [anon_sym_STAR] = ACTIONS(4896), + [anon_sym_PLUS] = ACTIONS(4896), + [anon_sym_COMMA] = ACTIONS(4896), + [anon_sym_DASH] = ACTIONS(4898), + [anon_sym_DOT] = ACTIONS(4898), + [anon_sym_SLASH] = ACTIONS(4896), + [anon_sym_COLON] = ACTIONS(4896), + [anon_sym_SEMI] = ACTIONS(4896), + [anon_sym_EQ] = ACTIONS(4896), + [anon_sym_QMARK] = ACTIONS(4896), + [anon_sym_LBRACK] = ACTIONS(4898), + [anon_sym_BSLASH] = ACTIONS(4898), + [anon_sym_RBRACK] = ACTIONS(4896), + [anon_sym_CARET] = ACTIONS(4898), + [anon_sym__] = ACTIONS(4896), + [anon_sym_BQUOTE] = ACTIONS(4896), + [anon_sym_LBRACE] = ACTIONS(4896), + [anon_sym_PIPE] = ACTIONS(4896), + [anon_sym_TILDE] = ACTIONS(4896), + [anon_sym_LPAREN] = ACTIONS(4896), + [anon_sym_RPAREN] = ACTIONS(4896), + [sym__newline_token] = ACTIONS(4896), + [aux_sym_insert_token1] = ACTIONS(4896), + [aux_sym_delete_token1] = ACTIONS(4896), + [aux_sym_highlight_token1] = ACTIONS(4896), + [aux_sym_edit_comment_token1] = ACTIONS(4896), + [anon_sym_CARET_LBRACK] = ACTIONS(4896), + [anon_sym_LBRACK_CARET] = ACTIONS(4896), + [sym_uri_autolink] = ACTIONS(4896), + [sym_email_autolink] = ACTIONS(4896), + [sym__whitespace_ge_2] = ACTIONS(4896), + [aux_sym__whitespace_token1] = ACTIONS(4898), + [sym__word_no_digit] = ACTIONS(4896), + [sym__digits] = ACTIONS(4896), + [anon_sym_DASH_DASH] = ACTIONS(4898), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4896), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4896), + [sym__code_span_start] = ACTIONS(4896), + [sym__emphasis_open_star] = ACTIONS(4896), + [sym__emphasis_open_underscore] = ACTIONS(4896), + [sym__strikeout_open] = ACTIONS(4896), + [sym__latex_span_start] = ACTIONS(4896), + [sym__single_quote_open] = ACTIONS(4896), + [sym__double_quote_open] = ACTIONS(4896), + [sym__superscript_open] = ACTIONS(4896), + [sym__subscript_open] = ACTIONS(4896), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4896), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4896), + [sym__cite_author_in_text] = ACTIONS(4896), + [sym__cite_suppress_author] = ACTIONS(4896), + [sym__shortcode_open_escaped] = ACTIONS(4896), + [sym__shortcode_open] = ACTIONS(4896), + [sym__unclosed_span] = ACTIONS(4896), + }, + [STATE(1101)] = { + [sym__backslash_escape] = ACTIONS(4534), + [sym_entity_reference] = ACTIONS(4534), + [sym_numeric_character_reference] = ACTIONS(4534), + [anon_sym_LT] = ACTIONS(4536), + [anon_sym_GT] = ACTIONS(4534), + [anon_sym_BANG] = ACTIONS(4534), + [anon_sym_DQUOTE] = ACTIONS(4534), + [anon_sym_POUND] = ACTIONS(4534), + [anon_sym_DOLLAR] = ACTIONS(4534), + [anon_sym_PERCENT] = ACTIONS(4534), + [anon_sym_AMP] = ACTIONS(4536), + [anon_sym_SQUOTE] = ACTIONS(4534), + [anon_sym_STAR] = ACTIONS(4534), + [anon_sym_PLUS] = ACTIONS(4534), + [anon_sym_COMMA] = ACTIONS(4534), + [anon_sym_DASH] = ACTIONS(4536), + [anon_sym_DOT] = ACTIONS(4536), + [anon_sym_SLASH] = ACTIONS(4534), + [anon_sym_COLON] = ACTIONS(4534), + [anon_sym_SEMI] = ACTIONS(4534), + [anon_sym_EQ] = ACTIONS(4534), + [anon_sym_QMARK] = ACTIONS(4534), + [anon_sym_LBRACK] = ACTIONS(4536), + [anon_sym_BSLASH] = ACTIONS(4536), + [anon_sym_RBRACK] = ACTIONS(4534), + [anon_sym_CARET] = ACTIONS(4536), + [anon_sym__] = ACTIONS(4534), + [anon_sym_BQUOTE] = ACTIONS(4534), + [anon_sym_LBRACE] = ACTIONS(4534), + [anon_sym_PIPE] = ACTIONS(4534), + [anon_sym_TILDE] = ACTIONS(4534), + [anon_sym_LPAREN] = ACTIONS(4534), + [anon_sym_RPAREN] = ACTIONS(4534), + [sym__newline_token] = ACTIONS(4534), + [aux_sym_insert_token1] = ACTIONS(4534), + [aux_sym_delete_token1] = ACTIONS(4534), + [aux_sym_highlight_token1] = ACTIONS(4534), + [aux_sym_edit_comment_token1] = ACTIONS(4534), + [anon_sym_CARET_LBRACK] = ACTIONS(4534), + [anon_sym_LBRACK_CARET] = ACTIONS(4534), + [sym_uri_autolink] = ACTIONS(4534), + [sym_email_autolink] = ACTIONS(4534), + [sym__whitespace_ge_2] = ACTIONS(4534), + [aux_sym__whitespace_token1] = ACTIONS(4536), + [sym__word_no_digit] = ACTIONS(4534), + [sym__digits] = ACTIONS(4534), + [anon_sym_DASH_DASH] = ACTIONS(4536), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4534), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4534), + [sym__code_span_start] = ACTIONS(4534), + [sym__emphasis_open_star] = ACTIONS(4534), + [sym__emphasis_open_underscore] = ACTIONS(4534), + [sym__strikeout_open] = ACTIONS(4534), + [sym__latex_span_start] = ACTIONS(4534), + [sym__single_quote_open] = ACTIONS(4534), + [sym__double_quote_open] = ACTIONS(4534), + [sym__superscript_open] = ACTIONS(4534), + [sym__subscript_open] = ACTIONS(4534), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4534), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4534), + [sym__cite_author_in_text] = ACTIONS(4534), + [sym__cite_suppress_author] = ACTIONS(4534), + [sym__shortcode_open_escaped] = ACTIONS(4534), + [sym__shortcode_open] = ACTIONS(4534), + [sym__unclosed_span] = ACTIONS(4534), + }, + [STATE(1102)] = { + [sym__backslash_escape] = ACTIONS(4956), + [sym_entity_reference] = ACTIONS(4956), + [sym_numeric_character_reference] = ACTIONS(4956), + [anon_sym_LT] = ACTIONS(4958), + [anon_sym_GT] = ACTIONS(4956), + [anon_sym_BANG] = ACTIONS(4956), + [anon_sym_DQUOTE] = ACTIONS(4956), + [anon_sym_POUND] = ACTIONS(4956), + [anon_sym_DOLLAR] = ACTIONS(4956), + [anon_sym_PERCENT] = ACTIONS(4956), + [anon_sym_AMP] = ACTIONS(4958), + [anon_sym_SQUOTE] = ACTIONS(4956), + [anon_sym_STAR] = ACTIONS(4956), + [anon_sym_PLUS] = ACTIONS(4956), + [anon_sym_COMMA] = ACTIONS(4956), + [anon_sym_DASH] = ACTIONS(4958), + [anon_sym_DOT] = ACTIONS(4958), + [anon_sym_SLASH] = ACTIONS(4956), + [anon_sym_COLON] = ACTIONS(4956), + [anon_sym_SEMI] = ACTIONS(4956), + [anon_sym_EQ] = ACTIONS(4956), + [anon_sym_QMARK] = ACTIONS(4956), + [anon_sym_LBRACK] = ACTIONS(4958), + [anon_sym_BSLASH] = ACTIONS(4958), + [anon_sym_CARET] = ACTIONS(4958), + [anon_sym__] = ACTIONS(4956), + [anon_sym_BQUOTE] = ACTIONS(4956), + [anon_sym_LBRACE] = ACTIONS(4956), + [anon_sym_PIPE] = ACTIONS(4956), + [anon_sym_TILDE] = ACTIONS(4956), + [anon_sym_LPAREN] = ACTIONS(4956), + [anon_sym_RPAREN] = ACTIONS(4956), + [sym__newline_token] = ACTIONS(4956), + [aux_sym_insert_token1] = ACTIONS(4956), + [aux_sym_delete_token1] = ACTIONS(4956), + [aux_sym_highlight_token1] = ACTIONS(4956), + [aux_sym_edit_comment_token1] = ACTIONS(4956), + [anon_sym_CARET_LBRACK] = ACTIONS(4956), + [anon_sym_LBRACK_CARET] = ACTIONS(4956), + [sym_uri_autolink] = ACTIONS(4956), + [sym_email_autolink] = ACTIONS(4956), + [sym__whitespace_ge_2] = ACTIONS(4956), + [aux_sym__whitespace_token1] = ACTIONS(4958), + [sym__word_no_digit] = ACTIONS(4956), + [sym__digits] = ACTIONS(4956), + [anon_sym_DASH_DASH] = ACTIONS(4958), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4956), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4956), + [sym__code_span_start] = ACTIONS(4956), + [sym__emphasis_open_star] = ACTIONS(4956), + [sym__emphasis_open_underscore] = ACTIONS(4956), + [sym__strikeout_open] = ACTIONS(4956), + [sym__latex_span_start] = ACTIONS(4956), + [sym__single_quote_open] = ACTIONS(4956), + [sym__single_quote_close] = ACTIONS(4956), + [sym__double_quote_open] = ACTIONS(4956), + [sym__superscript_open] = ACTIONS(4956), + [sym__subscript_open] = ACTIONS(4956), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4956), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4956), + [sym__cite_author_in_text] = ACTIONS(4956), + [sym__cite_suppress_author] = ACTIONS(4956), + [sym__shortcode_open_escaped] = ACTIONS(4956), + [sym__shortcode_open] = ACTIONS(4956), + [sym__unclosed_span] = ACTIONS(4956), + }, + [STATE(1103)] = { + [sym__backslash_escape] = ACTIONS(4546), + [sym_entity_reference] = ACTIONS(4546), + [sym_numeric_character_reference] = ACTIONS(4546), + [anon_sym_LT] = ACTIONS(4548), + [anon_sym_GT] = ACTIONS(4546), + [anon_sym_BANG] = ACTIONS(4546), + [anon_sym_DQUOTE] = ACTIONS(4546), + [anon_sym_POUND] = ACTIONS(4546), + [anon_sym_DOLLAR] = ACTIONS(4546), + [anon_sym_PERCENT] = ACTIONS(4546), + [anon_sym_AMP] = ACTIONS(4548), + [anon_sym_SQUOTE] = ACTIONS(4546), + [anon_sym_STAR] = ACTIONS(4546), + [anon_sym_PLUS] = ACTIONS(4546), + [anon_sym_COMMA] = ACTIONS(4546), + [anon_sym_DASH] = ACTIONS(4548), + [anon_sym_DOT] = ACTIONS(4548), + [anon_sym_SLASH] = ACTIONS(4546), + [anon_sym_COLON] = ACTIONS(4546), + [anon_sym_SEMI] = ACTIONS(4546), + [anon_sym_EQ] = ACTIONS(4546), + [anon_sym_QMARK] = ACTIONS(4546), + [anon_sym_LBRACK] = ACTIONS(4548), + [anon_sym_BSLASH] = ACTIONS(4548), + [anon_sym_CARET] = ACTIONS(4548), + [anon_sym__] = ACTIONS(4546), + [anon_sym_BQUOTE] = ACTIONS(4546), + [anon_sym_LBRACE] = ACTIONS(4546), + [anon_sym_PIPE] = ACTIONS(4546), + [anon_sym_TILDE] = ACTIONS(4546), + [anon_sym_LPAREN] = ACTIONS(4546), + [anon_sym_RPAREN] = ACTIONS(4546), + [sym__newline_token] = ACTIONS(4546), + [aux_sym_insert_token1] = ACTIONS(4546), + [aux_sym_insert_token2] = ACTIONS(4546), + [aux_sym_delete_token1] = ACTIONS(4546), + [aux_sym_highlight_token1] = ACTIONS(4546), + [aux_sym_edit_comment_token1] = ACTIONS(4546), + [anon_sym_CARET_LBRACK] = ACTIONS(4546), + [anon_sym_LBRACK_CARET] = ACTIONS(4546), + [sym_uri_autolink] = ACTIONS(4546), + [sym_email_autolink] = ACTIONS(4546), + [sym__whitespace_ge_2] = ACTIONS(4548), + [aux_sym__whitespace_token1] = ACTIONS(4548), + [sym__word_no_digit] = ACTIONS(4546), + [sym__digits] = ACTIONS(4546), + [anon_sym_DASH_DASH] = ACTIONS(4548), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4546), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4546), + [sym__code_span_start] = ACTIONS(4546), + [sym__emphasis_open_star] = ACTIONS(4546), + [sym__emphasis_open_underscore] = ACTIONS(4546), + [sym__strikeout_open] = ACTIONS(4546), + [sym__latex_span_start] = ACTIONS(4546), + [sym__single_quote_open] = ACTIONS(4546), + [sym__double_quote_open] = ACTIONS(4546), + [sym__superscript_open] = ACTIONS(4546), + [sym__subscript_open] = ACTIONS(4546), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4546), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4546), + [sym__cite_author_in_text] = ACTIONS(4546), + [sym__cite_suppress_author] = ACTIONS(4546), + [sym__shortcode_open_escaped] = ACTIONS(4546), + [sym__shortcode_open] = ACTIONS(4546), + [sym__unclosed_span] = ACTIONS(4546), + }, + [STATE(1104)] = { + [sym__backslash_escape] = ACTIONS(4960), + [sym_entity_reference] = ACTIONS(4960), + [sym_numeric_character_reference] = ACTIONS(4960), + [anon_sym_LT] = ACTIONS(4962), + [anon_sym_GT] = ACTIONS(4960), + [anon_sym_BANG] = ACTIONS(4960), + [anon_sym_DQUOTE] = ACTIONS(4960), + [anon_sym_POUND] = ACTIONS(4960), + [anon_sym_DOLLAR] = ACTIONS(4960), + [anon_sym_PERCENT] = ACTIONS(4960), + [anon_sym_AMP] = ACTIONS(4962), + [anon_sym_SQUOTE] = ACTIONS(4960), + [anon_sym_STAR] = ACTIONS(4960), + [anon_sym_PLUS] = ACTIONS(4960), + [anon_sym_COMMA] = ACTIONS(4960), + [anon_sym_DASH] = ACTIONS(4962), + [anon_sym_DOT] = ACTIONS(4962), + [anon_sym_SLASH] = ACTIONS(4960), + [anon_sym_COLON] = ACTIONS(4960), + [anon_sym_SEMI] = ACTIONS(4960), + [anon_sym_EQ] = ACTIONS(4960), + [anon_sym_QMARK] = ACTIONS(4960), + [anon_sym_LBRACK] = ACTIONS(4962), + [anon_sym_BSLASH] = ACTIONS(4962), + [anon_sym_CARET] = ACTIONS(4962), + [anon_sym__] = ACTIONS(4960), + [anon_sym_BQUOTE] = ACTIONS(4960), + [anon_sym_LBRACE] = ACTIONS(4960), + [anon_sym_PIPE] = ACTIONS(4960), + [anon_sym_TILDE] = ACTIONS(4960), + [anon_sym_LPAREN] = ACTIONS(4960), + [anon_sym_RPAREN] = ACTIONS(4960), + [sym__newline_token] = ACTIONS(4960), + [aux_sym_insert_token1] = ACTIONS(4960), + [aux_sym_delete_token1] = ACTIONS(4960), + [aux_sym_highlight_token1] = ACTIONS(4960), + [aux_sym_edit_comment_token1] = ACTIONS(4960), + [anon_sym_CARET_LBRACK] = ACTIONS(4960), + [anon_sym_LBRACK_CARET] = ACTIONS(4960), + [sym_uri_autolink] = ACTIONS(4960), + [sym_email_autolink] = ACTIONS(4960), + [sym__whitespace_ge_2] = ACTIONS(4960), + [aux_sym__whitespace_token1] = ACTIONS(4962), + [sym__word_no_digit] = ACTIONS(4960), + [sym__digits] = ACTIONS(4960), + [anon_sym_DASH_DASH] = ACTIONS(4962), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4960), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4960), + [sym__code_span_start] = ACTIONS(4960), + [sym__emphasis_open_star] = ACTIONS(4960), + [sym__emphasis_open_underscore] = ACTIONS(4960), + [sym__strikeout_open] = ACTIONS(4960), + [sym__latex_span_start] = ACTIONS(4960), + [sym__single_quote_open] = ACTIONS(4960), + [sym__single_quote_close] = ACTIONS(4960), + [sym__double_quote_open] = ACTIONS(4960), + [sym__superscript_open] = ACTIONS(4960), + [sym__subscript_open] = ACTIONS(4960), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4960), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4960), + [sym__cite_author_in_text] = ACTIONS(4960), + [sym__cite_suppress_author] = ACTIONS(4960), + [sym__shortcode_open_escaped] = ACTIONS(4960), + [sym__shortcode_open] = ACTIONS(4960), + [sym__unclosed_span] = ACTIONS(4960), + }, + [STATE(1105)] = { + [sym__backslash_escape] = ACTIONS(4904), + [sym_entity_reference] = ACTIONS(4904), + [sym_numeric_character_reference] = ACTIONS(4904), + [anon_sym_LT] = ACTIONS(4906), + [anon_sym_GT] = ACTIONS(4904), + [anon_sym_BANG] = ACTIONS(4904), + [anon_sym_DQUOTE] = ACTIONS(4904), + [anon_sym_POUND] = ACTIONS(4904), + [anon_sym_DOLLAR] = ACTIONS(4904), + [anon_sym_PERCENT] = ACTIONS(4904), + [anon_sym_AMP] = ACTIONS(4906), + [anon_sym_SQUOTE] = ACTIONS(4904), + [anon_sym_STAR] = ACTIONS(4904), + [anon_sym_PLUS] = ACTIONS(4904), + [anon_sym_COMMA] = ACTIONS(4904), + [anon_sym_DASH] = ACTIONS(4906), + [anon_sym_DOT] = ACTIONS(4906), + [anon_sym_SLASH] = ACTIONS(4904), + [anon_sym_COLON] = ACTIONS(4904), + [anon_sym_SEMI] = ACTIONS(4904), + [anon_sym_EQ] = ACTIONS(4904), + [anon_sym_QMARK] = ACTIONS(4904), + [anon_sym_LBRACK] = ACTIONS(4906), + [anon_sym_BSLASH] = ACTIONS(4906), + [anon_sym_CARET] = ACTIONS(4906), + [anon_sym__] = ACTIONS(4904), + [anon_sym_BQUOTE] = ACTIONS(4904), + [anon_sym_LBRACE] = ACTIONS(4904), + [anon_sym_PIPE] = ACTIONS(4904), + [anon_sym_TILDE] = ACTIONS(4904), + [anon_sym_LPAREN] = ACTIONS(4904), + [anon_sym_RPAREN] = ACTIONS(4904), + [sym__newline_token] = ACTIONS(4904), + [aux_sym_insert_token1] = ACTIONS(4904), + [aux_sym_insert_token2] = ACTIONS(4904), + [aux_sym_delete_token1] = ACTIONS(4904), + [aux_sym_highlight_token1] = ACTIONS(4904), + [aux_sym_edit_comment_token1] = ACTIONS(4904), + [anon_sym_CARET_LBRACK] = ACTIONS(4904), + [anon_sym_LBRACK_CARET] = ACTIONS(4904), + [sym_uri_autolink] = ACTIONS(4904), + [sym_email_autolink] = ACTIONS(4904), + [sym__whitespace_ge_2] = ACTIONS(4906), + [aux_sym__whitespace_token1] = ACTIONS(4906), + [sym__word_no_digit] = ACTIONS(4904), + [sym__digits] = ACTIONS(4904), + [anon_sym_DASH_DASH] = ACTIONS(4906), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4904), + [sym__code_span_start] = ACTIONS(4904), + [sym__emphasis_open_star] = ACTIONS(4904), + [sym__emphasis_open_underscore] = ACTIONS(4904), + [sym__strikeout_open] = ACTIONS(4904), + [sym__latex_span_start] = ACTIONS(4904), + [sym__single_quote_open] = ACTIONS(4904), + [sym__double_quote_open] = ACTIONS(4904), + [sym__superscript_open] = ACTIONS(4904), + [sym__subscript_open] = ACTIONS(4904), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4904), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4904), + [sym__cite_author_in_text] = ACTIONS(4904), + [sym__cite_suppress_author] = ACTIONS(4904), + [sym__shortcode_open_escaped] = ACTIONS(4904), + [sym__shortcode_open] = ACTIONS(4904), + [sym__unclosed_span] = ACTIONS(4904), + }, + [STATE(1106)] = { + [sym__backslash_escape] = ACTIONS(4908), + [sym_entity_reference] = ACTIONS(4908), + [sym_numeric_character_reference] = ACTIONS(4908), + [anon_sym_LT] = ACTIONS(4910), + [anon_sym_GT] = ACTIONS(4908), + [anon_sym_BANG] = ACTIONS(4908), + [anon_sym_DQUOTE] = ACTIONS(4908), + [anon_sym_POUND] = ACTIONS(4908), + [anon_sym_DOLLAR] = ACTIONS(4908), + [anon_sym_PERCENT] = ACTIONS(4908), + [anon_sym_AMP] = ACTIONS(4910), + [anon_sym_SQUOTE] = ACTIONS(4908), + [anon_sym_STAR] = ACTIONS(4908), + [anon_sym_PLUS] = ACTIONS(4908), + [anon_sym_COMMA] = ACTIONS(4908), + [anon_sym_DASH] = ACTIONS(4910), + [anon_sym_DOT] = ACTIONS(4910), + [anon_sym_SLASH] = ACTIONS(4908), + [anon_sym_COLON] = ACTIONS(4908), + [anon_sym_SEMI] = ACTIONS(4908), + [anon_sym_EQ] = ACTIONS(4908), + [anon_sym_QMARK] = ACTIONS(4908), + [anon_sym_LBRACK] = ACTIONS(4910), + [anon_sym_BSLASH] = ACTIONS(4910), + [anon_sym_CARET] = ACTIONS(4910), + [anon_sym__] = ACTIONS(4908), + [anon_sym_BQUOTE] = ACTIONS(4908), + [anon_sym_LBRACE] = ACTIONS(4908), + [anon_sym_PIPE] = ACTIONS(4908), + [anon_sym_TILDE] = ACTIONS(4908), + [anon_sym_LPAREN] = ACTIONS(4908), + [anon_sym_RPAREN] = ACTIONS(4908), + [sym__newline_token] = ACTIONS(4908), + [aux_sym_insert_token1] = ACTIONS(4908), + [aux_sym_insert_token2] = ACTIONS(4908), + [aux_sym_delete_token1] = ACTIONS(4908), + [aux_sym_highlight_token1] = ACTIONS(4908), + [aux_sym_edit_comment_token1] = ACTIONS(4908), + [anon_sym_CARET_LBRACK] = ACTIONS(4908), + [anon_sym_LBRACK_CARET] = ACTIONS(4908), + [sym_uri_autolink] = ACTIONS(4908), + [sym_email_autolink] = ACTIONS(4908), + [sym__whitespace_ge_2] = ACTIONS(4910), + [aux_sym__whitespace_token1] = ACTIONS(4910), + [sym__word_no_digit] = ACTIONS(4908), + [sym__digits] = ACTIONS(4908), + [anon_sym_DASH_DASH] = ACTIONS(4910), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4908), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4908), + [sym__code_span_start] = ACTIONS(4908), + [sym__emphasis_open_star] = ACTIONS(4908), + [sym__emphasis_open_underscore] = ACTIONS(4908), + [sym__strikeout_open] = ACTIONS(4908), + [sym__latex_span_start] = ACTIONS(4908), + [sym__single_quote_open] = ACTIONS(4908), + [sym__double_quote_open] = ACTIONS(4908), + [sym__superscript_open] = ACTIONS(4908), + [sym__subscript_open] = ACTIONS(4908), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4908), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4908), + [sym__cite_author_in_text] = ACTIONS(4908), + [sym__cite_suppress_author] = ACTIONS(4908), + [sym__shortcode_open_escaped] = ACTIONS(4908), + [sym__shortcode_open] = ACTIONS(4908), + [sym__unclosed_span] = ACTIONS(4908), + }, + [STATE(1107)] = { + [sym__backslash_escape] = ACTIONS(4550), + [sym_entity_reference] = ACTIONS(4550), + [sym_numeric_character_reference] = ACTIONS(4550), + [anon_sym_LT] = ACTIONS(4552), + [anon_sym_GT] = ACTIONS(4550), + [anon_sym_BANG] = ACTIONS(4550), + [anon_sym_DQUOTE] = ACTIONS(4550), + [anon_sym_POUND] = ACTIONS(4550), + [anon_sym_DOLLAR] = ACTIONS(4550), + [anon_sym_PERCENT] = ACTIONS(4550), + [anon_sym_AMP] = ACTIONS(4552), + [anon_sym_SQUOTE] = ACTIONS(4550), + [anon_sym_STAR] = ACTIONS(4550), + [anon_sym_PLUS] = ACTIONS(4550), + [anon_sym_COMMA] = ACTIONS(4550), + [anon_sym_DASH] = ACTIONS(4552), + [anon_sym_DOT] = ACTIONS(4552), + [anon_sym_SLASH] = ACTIONS(4550), + [anon_sym_COLON] = ACTIONS(4550), + [anon_sym_SEMI] = ACTIONS(4550), + [anon_sym_EQ] = ACTIONS(4550), + [anon_sym_QMARK] = ACTIONS(4550), + [anon_sym_LBRACK] = ACTIONS(4552), + [anon_sym_BSLASH] = ACTIONS(4552), + [anon_sym_RBRACK] = ACTIONS(4550), + [anon_sym_CARET] = ACTIONS(4552), + [anon_sym__] = ACTIONS(4550), + [anon_sym_BQUOTE] = ACTIONS(4550), + [anon_sym_LBRACE] = ACTIONS(4550), + [anon_sym_PIPE] = ACTIONS(4550), + [anon_sym_TILDE] = ACTIONS(4550), + [anon_sym_LPAREN] = ACTIONS(4550), + [anon_sym_RPAREN] = ACTIONS(4550), + [sym__newline_token] = ACTIONS(4550), + [aux_sym_insert_token1] = ACTIONS(4550), + [aux_sym_delete_token1] = ACTIONS(4550), + [aux_sym_highlight_token1] = ACTIONS(4550), + [aux_sym_edit_comment_token1] = ACTIONS(4550), + [anon_sym_CARET_LBRACK] = ACTIONS(4550), + [anon_sym_LBRACK_CARET] = ACTIONS(4550), + [sym_uri_autolink] = ACTIONS(4550), + [sym_email_autolink] = ACTIONS(4550), + [sym__whitespace_ge_2] = ACTIONS(4550), + [aux_sym__whitespace_token1] = ACTIONS(4552), + [sym__word_no_digit] = ACTIONS(4550), + [sym__digits] = ACTIONS(4550), + [anon_sym_DASH_DASH] = ACTIONS(4552), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4550), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4550), + [sym__code_span_start] = ACTIONS(4550), + [sym__emphasis_open_star] = ACTIONS(4550), + [sym__emphasis_open_underscore] = ACTIONS(4550), + [sym__strikeout_open] = ACTIONS(4550), + [sym__latex_span_start] = ACTIONS(4550), + [sym__single_quote_open] = ACTIONS(4550), + [sym__double_quote_open] = ACTIONS(4550), + [sym__superscript_open] = ACTIONS(4550), + [sym__subscript_open] = ACTIONS(4550), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4550), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4550), + [sym__cite_author_in_text] = ACTIONS(4550), + [sym__cite_suppress_author] = ACTIONS(4550), + [sym__shortcode_open_escaped] = ACTIONS(4550), + [sym__shortcode_open] = ACTIONS(4550), + [sym__unclosed_span] = ACTIONS(4550), + }, + [STATE(1108)] = { + [sym__backslash_escape] = ACTIONS(4964), + [sym_entity_reference] = ACTIONS(4964), + [sym_numeric_character_reference] = ACTIONS(4964), + [anon_sym_LT] = ACTIONS(4966), + [anon_sym_GT] = ACTIONS(4964), + [anon_sym_BANG] = ACTIONS(4964), + [anon_sym_DQUOTE] = ACTIONS(4964), + [anon_sym_POUND] = ACTIONS(4964), + [anon_sym_DOLLAR] = ACTIONS(4964), + [anon_sym_PERCENT] = ACTIONS(4964), + [anon_sym_AMP] = ACTIONS(4966), + [anon_sym_SQUOTE] = ACTIONS(4964), + [anon_sym_STAR] = ACTIONS(4964), + [anon_sym_PLUS] = ACTIONS(4964), + [anon_sym_COMMA] = ACTIONS(4964), + [anon_sym_DASH] = ACTIONS(4966), + [anon_sym_DOT] = ACTIONS(4966), + [anon_sym_SLASH] = ACTIONS(4964), + [anon_sym_COLON] = ACTIONS(4964), + [anon_sym_SEMI] = ACTIONS(4964), + [anon_sym_EQ] = ACTIONS(4964), + [anon_sym_QMARK] = ACTIONS(4964), + [anon_sym_LBRACK] = ACTIONS(4966), + [anon_sym_BSLASH] = ACTIONS(4966), + [anon_sym_CARET] = ACTIONS(4966), + [anon_sym__] = ACTIONS(4964), + [anon_sym_BQUOTE] = ACTIONS(4964), + [anon_sym_LBRACE] = ACTIONS(4964), + [anon_sym_PIPE] = ACTIONS(4964), + [anon_sym_TILDE] = ACTIONS(4964), + [anon_sym_LPAREN] = ACTIONS(4964), + [anon_sym_RPAREN] = ACTIONS(4964), + [sym__newline_token] = ACTIONS(4964), + [aux_sym_insert_token1] = ACTIONS(4964), + [aux_sym_delete_token1] = ACTIONS(4964), + [aux_sym_highlight_token1] = ACTIONS(4964), + [aux_sym_edit_comment_token1] = ACTIONS(4964), + [anon_sym_CARET_LBRACK] = ACTIONS(4964), + [anon_sym_LBRACK_CARET] = ACTIONS(4964), + [sym_uri_autolink] = ACTIONS(4964), + [sym_email_autolink] = ACTIONS(4964), + [sym__whitespace_ge_2] = ACTIONS(4964), + [aux_sym__whitespace_token1] = ACTIONS(4966), + [sym__word_no_digit] = ACTIONS(4964), + [sym__digits] = ACTIONS(4964), + [anon_sym_DASH_DASH] = ACTIONS(4966), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4964), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4964), + [sym__code_span_start] = ACTIONS(4964), + [sym__emphasis_open_star] = ACTIONS(4964), + [sym__emphasis_open_underscore] = ACTIONS(4964), + [sym__strikeout_open] = ACTIONS(4964), + [sym__latex_span_start] = ACTIONS(4964), + [sym__single_quote_open] = ACTIONS(4964), + [sym__single_quote_close] = ACTIONS(4964), + [sym__double_quote_open] = ACTIONS(4964), + [sym__superscript_open] = ACTIONS(4964), + [sym__subscript_open] = ACTIONS(4964), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4964), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4964), + [sym__cite_author_in_text] = ACTIONS(4964), + [sym__cite_suppress_author] = ACTIONS(4964), + [sym__shortcode_open_escaped] = ACTIONS(4964), + [sym__shortcode_open] = ACTIONS(4964), + [sym__unclosed_span] = ACTIONS(4964), + }, + [STATE(1109)] = { + [sym__backslash_escape] = ACTIONS(4554), + [sym_entity_reference] = ACTIONS(4554), + [sym_numeric_character_reference] = ACTIONS(4554), + [anon_sym_LT] = ACTIONS(4556), + [anon_sym_GT] = ACTIONS(4554), + [anon_sym_BANG] = ACTIONS(4554), + [anon_sym_DQUOTE] = ACTIONS(4554), + [anon_sym_POUND] = ACTIONS(4554), + [anon_sym_DOLLAR] = ACTIONS(4554), + [anon_sym_PERCENT] = ACTIONS(4554), + [anon_sym_AMP] = ACTIONS(4556), + [anon_sym_SQUOTE] = ACTIONS(4554), + [anon_sym_STAR] = ACTIONS(4554), + [anon_sym_PLUS] = ACTIONS(4554), + [anon_sym_COMMA] = ACTIONS(4554), + [anon_sym_DASH] = ACTIONS(4556), + [anon_sym_DOT] = ACTIONS(4556), + [anon_sym_SLASH] = ACTIONS(4554), + [anon_sym_COLON] = ACTIONS(4554), + [anon_sym_SEMI] = ACTIONS(4554), + [anon_sym_EQ] = ACTIONS(4554), + [anon_sym_QMARK] = ACTIONS(4554), + [anon_sym_LBRACK] = ACTIONS(4556), + [anon_sym_BSLASH] = ACTIONS(4556), + [anon_sym_CARET] = ACTIONS(4556), + [anon_sym__] = ACTIONS(4554), + [anon_sym_BQUOTE] = ACTIONS(4554), + [anon_sym_LBRACE] = ACTIONS(4554), + [anon_sym_PIPE] = ACTIONS(4554), + [anon_sym_TILDE] = ACTIONS(4554), + [anon_sym_LPAREN] = ACTIONS(4554), + [anon_sym_RPAREN] = ACTIONS(4554), + [sym__newline_token] = ACTIONS(4554), + [aux_sym_insert_token1] = ACTIONS(4554), + [aux_sym_insert_token2] = ACTIONS(4554), + [aux_sym_delete_token1] = ACTIONS(4554), + [aux_sym_highlight_token1] = ACTIONS(4554), + [aux_sym_edit_comment_token1] = ACTIONS(4554), + [anon_sym_CARET_LBRACK] = ACTIONS(4554), + [anon_sym_LBRACK_CARET] = ACTIONS(4554), + [sym_uri_autolink] = ACTIONS(4554), + [sym_email_autolink] = ACTIONS(4554), + [sym__whitespace_ge_2] = ACTIONS(4556), + [aux_sym__whitespace_token1] = ACTIONS(4556), + [sym__word_no_digit] = ACTIONS(4554), + [sym__digits] = ACTIONS(4554), + [anon_sym_DASH_DASH] = ACTIONS(4556), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4554), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4554), + [sym__code_span_start] = ACTIONS(4554), + [sym__emphasis_open_star] = ACTIONS(4554), + [sym__emphasis_open_underscore] = ACTIONS(4554), + [sym__strikeout_open] = ACTIONS(4554), + [sym__latex_span_start] = ACTIONS(4554), + [sym__single_quote_open] = ACTIONS(4554), + [sym__double_quote_open] = ACTIONS(4554), + [sym__superscript_open] = ACTIONS(4554), + [sym__subscript_open] = ACTIONS(4554), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4554), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4554), + [sym__cite_author_in_text] = ACTIONS(4554), + [sym__cite_suppress_author] = ACTIONS(4554), + [sym__shortcode_open_escaped] = ACTIONS(4554), + [sym__shortcode_open] = ACTIONS(4554), + [sym__unclosed_span] = ACTIONS(4554), + }, + [STATE(1110)] = { + [sym__backslash_escape] = ACTIONS(4968), + [sym_entity_reference] = ACTIONS(4968), + [sym_numeric_character_reference] = ACTIONS(4968), + [anon_sym_LT] = ACTIONS(4970), + [anon_sym_GT] = ACTIONS(4968), + [anon_sym_BANG] = ACTIONS(4968), + [anon_sym_DQUOTE] = ACTIONS(4968), + [anon_sym_POUND] = ACTIONS(4968), + [anon_sym_DOLLAR] = ACTIONS(4968), + [anon_sym_PERCENT] = ACTIONS(4968), + [anon_sym_AMP] = ACTIONS(4970), + [anon_sym_SQUOTE] = ACTIONS(4968), + [anon_sym_STAR] = ACTIONS(4968), + [anon_sym_PLUS] = ACTIONS(4968), + [anon_sym_COMMA] = ACTIONS(4968), + [anon_sym_DASH] = ACTIONS(4970), + [anon_sym_DOT] = ACTIONS(4970), + [anon_sym_SLASH] = ACTIONS(4968), + [anon_sym_COLON] = ACTIONS(4968), + [anon_sym_SEMI] = ACTIONS(4968), + [anon_sym_EQ] = ACTIONS(4968), + [anon_sym_QMARK] = ACTIONS(4968), + [anon_sym_LBRACK] = ACTIONS(4970), + [anon_sym_BSLASH] = ACTIONS(4970), + [anon_sym_CARET] = ACTIONS(4970), + [anon_sym__] = ACTIONS(4968), + [anon_sym_BQUOTE] = ACTIONS(4968), + [anon_sym_LBRACE] = ACTIONS(4968), + [anon_sym_PIPE] = ACTIONS(4968), + [anon_sym_TILDE] = ACTIONS(4968), + [anon_sym_LPAREN] = ACTIONS(4968), + [anon_sym_RPAREN] = ACTIONS(4968), + [sym__newline_token] = ACTIONS(4968), + [aux_sym_insert_token1] = ACTIONS(4968), + [aux_sym_delete_token1] = ACTIONS(4968), + [aux_sym_highlight_token1] = ACTIONS(4968), + [aux_sym_edit_comment_token1] = ACTIONS(4968), + [anon_sym_CARET_LBRACK] = ACTIONS(4968), + [anon_sym_LBRACK_CARET] = ACTIONS(4968), + [sym_uri_autolink] = ACTIONS(4968), + [sym_email_autolink] = ACTIONS(4968), + [sym__whitespace_ge_2] = ACTIONS(4968), + [aux_sym__whitespace_token1] = ACTIONS(4970), + [sym__word_no_digit] = ACTIONS(4968), + [sym__digits] = ACTIONS(4968), + [anon_sym_DASH_DASH] = ACTIONS(4970), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4968), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4968), + [sym__code_span_start] = ACTIONS(4968), + [sym__emphasis_open_star] = ACTIONS(4968), + [sym__emphasis_open_underscore] = ACTIONS(4968), + [sym__strikeout_open] = ACTIONS(4968), + [sym__latex_span_start] = ACTIONS(4968), + [sym__single_quote_open] = ACTIONS(4968), + [sym__single_quote_close] = ACTIONS(4968), + [sym__double_quote_open] = ACTIONS(4968), + [sym__superscript_open] = ACTIONS(4968), + [sym__subscript_open] = ACTIONS(4968), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4968), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4968), + [sym__cite_author_in_text] = ACTIONS(4968), + [sym__cite_suppress_author] = ACTIONS(4968), + [sym__shortcode_open_escaped] = ACTIONS(4968), + [sym__shortcode_open] = ACTIONS(4968), + [sym__unclosed_span] = ACTIONS(4968), + }, + [STATE(1111)] = { + [sym__backslash_escape] = ACTIONS(4558), + [sym_entity_reference] = ACTIONS(4558), + [sym_numeric_character_reference] = ACTIONS(4558), + [anon_sym_LT] = ACTIONS(4560), + [anon_sym_GT] = ACTIONS(4558), + [anon_sym_BANG] = ACTIONS(4558), + [anon_sym_DQUOTE] = ACTIONS(4558), + [anon_sym_POUND] = ACTIONS(4558), + [anon_sym_DOLLAR] = ACTIONS(4558), + [anon_sym_PERCENT] = ACTIONS(4558), + [anon_sym_AMP] = ACTIONS(4560), + [anon_sym_SQUOTE] = ACTIONS(4558), + [anon_sym_STAR] = ACTIONS(4558), + [anon_sym_PLUS] = ACTIONS(4558), + [anon_sym_COMMA] = ACTIONS(4558), + [anon_sym_DASH] = ACTIONS(4560), + [anon_sym_DOT] = ACTIONS(4560), + [anon_sym_SLASH] = ACTIONS(4558), + [anon_sym_COLON] = ACTIONS(4558), + [anon_sym_SEMI] = ACTIONS(4558), + [anon_sym_EQ] = ACTIONS(4558), + [anon_sym_QMARK] = ACTIONS(4558), + [anon_sym_LBRACK] = ACTIONS(4560), + [anon_sym_BSLASH] = ACTIONS(4560), + [anon_sym_RBRACK] = ACTIONS(4558), + [anon_sym_CARET] = ACTIONS(4560), + [anon_sym__] = ACTIONS(4558), + [anon_sym_BQUOTE] = ACTIONS(4558), + [anon_sym_LBRACE] = ACTIONS(4558), + [anon_sym_PIPE] = ACTIONS(4558), + [anon_sym_TILDE] = ACTIONS(4558), + [anon_sym_LPAREN] = ACTIONS(4558), + [anon_sym_RPAREN] = ACTIONS(4558), + [sym__newline_token] = ACTIONS(4558), + [aux_sym_insert_token1] = ACTIONS(4558), + [aux_sym_delete_token1] = ACTIONS(4558), + [aux_sym_highlight_token1] = ACTIONS(4558), + [aux_sym_edit_comment_token1] = ACTIONS(4558), + [anon_sym_CARET_LBRACK] = ACTIONS(4558), + [anon_sym_LBRACK_CARET] = ACTIONS(4558), + [sym_uri_autolink] = ACTIONS(4558), + [sym_email_autolink] = ACTIONS(4558), + [sym__whitespace_ge_2] = ACTIONS(4558), + [aux_sym__whitespace_token1] = ACTIONS(4560), + [sym__word_no_digit] = ACTIONS(4558), + [sym__digits] = ACTIONS(4558), + [anon_sym_DASH_DASH] = ACTIONS(4560), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4558), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4558), + [sym__code_span_start] = ACTIONS(4558), + [sym__emphasis_open_star] = ACTIONS(4558), + [sym__emphasis_open_underscore] = ACTIONS(4558), + [sym__strikeout_open] = ACTIONS(4558), + [sym__latex_span_start] = ACTIONS(4558), + [sym__single_quote_open] = ACTIONS(4558), + [sym__double_quote_open] = ACTIONS(4558), + [sym__superscript_open] = ACTIONS(4558), + [sym__subscript_open] = ACTIONS(4558), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4558), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4558), + [sym__cite_author_in_text] = ACTIONS(4558), + [sym__cite_suppress_author] = ACTIONS(4558), + [sym__shortcode_open_escaped] = ACTIONS(4558), + [sym__shortcode_open] = ACTIONS(4558), + [sym__unclosed_span] = ACTIONS(4558), + }, + [STATE(1112)] = { + [sym__backslash_escape] = ACTIONS(4972), + [sym_entity_reference] = ACTIONS(4972), + [sym_numeric_character_reference] = ACTIONS(4972), + [anon_sym_LT] = ACTIONS(4974), + [anon_sym_GT] = ACTIONS(4972), + [anon_sym_BANG] = ACTIONS(4972), + [anon_sym_DQUOTE] = ACTIONS(4972), + [anon_sym_POUND] = ACTIONS(4972), + [anon_sym_DOLLAR] = ACTIONS(4972), + [anon_sym_PERCENT] = ACTIONS(4972), + [anon_sym_AMP] = ACTIONS(4974), + [anon_sym_SQUOTE] = ACTIONS(4972), + [anon_sym_STAR] = ACTIONS(4972), + [anon_sym_PLUS] = ACTIONS(4972), + [anon_sym_COMMA] = ACTIONS(4972), + [anon_sym_DASH] = ACTIONS(4974), + [anon_sym_DOT] = ACTIONS(4974), + [anon_sym_SLASH] = ACTIONS(4972), + [anon_sym_COLON] = ACTIONS(4972), + [anon_sym_SEMI] = ACTIONS(4972), + [anon_sym_EQ] = ACTIONS(4972), + [anon_sym_QMARK] = ACTIONS(4972), + [anon_sym_LBRACK] = ACTIONS(4974), + [anon_sym_BSLASH] = ACTIONS(4974), + [anon_sym_CARET] = ACTIONS(4974), + [anon_sym__] = ACTIONS(4972), + [anon_sym_BQUOTE] = ACTIONS(4972), + [anon_sym_LBRACE] = ACTIONS(4972), + [anon_sym_PIPE] = ACTIONS(4972), + [anon_sym_TILDE] = ACTIONS(4972), + [anon_sym_LPAREN] = ACTIONS(4972), + [anon_sym_RPAREN] = ACTIONS(4972), + [sym__newline_token] = ACTIONS(4972), + [aux_sym_insert_token1] = ACTIONS(4972), + [aux_sym_delete_token1] = ACTIONS(4972), + [aux_sym_highlight_token1] = ACTIONS(4972), + [aux_sym_edit_comment_token1] = ACTIONS(4972), + [anon_sym_CARET_LBRACK] = ACTIONS(4972), + [anon_sym_LBRACK_CARET] = ACTIONS(4972), + [sym_uri_autolink] = ACTIONS(4972), + [sym_email_autolink] = ACTIONS(4972), + [sym__whitespace_ge_2] = ACTIONS(4972), + [aux_sym__whitespace_token1] = ACTIONS(4974), + [sym__word_no_digit] = ACTIONS(4972), + [sym__digits] = ACTIONS(4972), + [anon_sym_DASH_DASH] = ACTIONS(4974), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4972), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4972), + [sym__code_span_start] = ACTIONS(4972), + [sym__emphasis_open_star] = ACTIONS(4972), + [sym__emphasis_open_underscore] = ACTIONS(4972), + [sym__strikeout_open] = ACTIONS(4972), + [sym__latex_span_start] = ACTIONS(4972), + [sym__single_quote_open] = ACTIONS(4972), + [sym__single_quote_close] = ACTIONS(4972), + [sym__double_quote_open] = ACTIONS(4972), + [sym__superscript_open] = ACTIONS(4972), + [sym__subscript_open] = ACTIONS(4972), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4972), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4972), + [sym__cite_author_in_text] = ACTIONS(4972), + [sym__cite_suppress_author] = ACTIONS(4972), + [sym__shortcode_open_escaped] = ACTIONS(4972), + [sym__shortcode_open] = ACTIONS(4972), + [sym__unclosed_span] = ACTIONS(4972), + }, + [STATE(1113)] = { + [sym__backslash_escape] = ACTIONS(4562), + [sym_entity_reference] = ACTIONS(4562), + [sym_numeric_character_reference] = ACTIONS(4562), + [anon_sym_LT] = ACTIONS(4564), + [anon_sym_GT] = ACTIONS(4562), + [anon_sym_BANG] = ACTIONS(4562), + [anon_sym_DQUOTE] = ACTIONS(4562), + [anon_sym_POUND] = ACTIONS(4562), + [anon_sym_DOLLAR] = ACTIONS(4562), + [anon_sym_PERCENT] = ACTIONS(4562), + [anon_sym_AMP] = ACTIONS(4564), + [anon_sym_SQUOTE] = ACTIONS(4562), + [anon_sym_STAR] = ACTIONS(4562), + [anon_sym_PLUS] = ACTIONS(4562), + [anon_sym_COMMA] = ACTIONS(4562), + [anon_sym_DASH] = ACTIONS(4564), + [anon_sym_DOT] = ACTIONS(4564), + [anon_sym_SLASH] = ACTIONS(4562), + [anon_sym_COLON] = ACTIONS(4562), + [anon_sym_SEMI] = ACTIONS(4562), + [anon_sym_EQ] = ACTIONS(4562), + [anon_sym_QMARK] = ACTIONS(4562), + [anon_sym_LBRACK] = ACTIONS(4564), + [anon_sym_BSLASH] = ACTIONS(4564), + [anon_sym_CARET] = ACTIONS(4564), + [anon_sym__] = ACTIONS(4562), + [anon_sym_BQUOTE] = ACTIONS(4562), + [anon_sym_LBRACE] = ACTIONS(4562), + [anon_sym_PIPE] = ACTIONS(4562), + [anon_sym_TILDE] = ACTIONS(4562), + [anon_sym_LPAREN] = ACTIONS(4562), + [anon_sym_RPAREN] = ACTIONS(4562), + [sym__newline_token] = ACTIONS(4562), + [aux_sym_insert_token1] = ACTIONS(4562), + [aux_sym_insert_token2] = ACTIONS(4562), + [aux_sym_delete_token1] = ACTIONS(4562), + [aux_sym_highlight_token1] = ACTIONS(4562), + [aux_sym_edit_comment_token1] = ACTIONS(4562), + [anon_sym_CARET_LBRACK] = ACTIONS(4562), + [anon_sym_LBRACK_CARET] = ACTIONS(4562), + [sym_uri_autolink] = ACTIONS(4562), + [sym_email_autolink] = ACTIONS(4562), + [sym__whitespace_ge_2] = ACTIONS(4564), + [aux_sym__whitespace_token1] = ACTIONS(4564), + [sym__word_no_digit] = ACTIONS(4562), + [sym__digits] = ACTIONS(4562), + [anon_sym_DASH_DASH] = ACTIONS(4564), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4562), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4562), + [sym__code_span_start] = ACTIONS(4562), + [sym__emphasis_open_star] = ACTIONS(4562), + [sym__emphasis_open_underscore] = ACTIONS(4562), + [sym__strikeout_open] = ACTIONS(4562), + [sym__latex_span_start] = ACTIONS(4562), + [sym__single_quote_open] = ACTIONS(4562), + [sym__double_quote_open] = ACTIONS(4562), + [sym__superscript_open] = ACTIONS(4562), + [sym__subscript_open] = ACTIONS(4562), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4562), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4562), + [sym__cite_author_in_text] = ACTIONS(4562), + [sym__cite_suppress_author] = ACTIONS(4562), + [sym__shortcode_open_escaped] = ACTIONS(4562), + [sym__shortcode_open] = ACTIONS(4562), + [sym__unclosed_span] = ACTIONS(4562), + }, + [STATE(1114)] = { + [sym__backslash_escape] = ACTIONS(4988), + [sym_entity_reference] = ACTIONS(4988), + [sym_numeric_character_reference] = ACTIONS(4988), + [anon_sym_LT] = ACTIONS(4990), + [anon_sym_GT] = ACTIONS(4988), + [anon_sym_BANG] = ACTIONS(4988), + [anon_sym_DQUOTE] = ACTIONS(4988), + [anon_sym_POUND] = ACTIONS(4988), + [anon_sym_DOLLAR] = ACTIONS(4988), + [anon_sym_PERCENT] = ACTIONS(4988), + [anon_sym_AMP] = ACTIONS(4990), + [anon_sym_SQUOTE] = ACTIONS(4988), + [anon_sym_STAR] = ACTIONS(4988), + [anon_sym_PLUS] = ACTIONS(4988), + [anon_sym_COMMA] = ACTIONS(4988), + [anon_sym_DASH] = ACTIONS(4990), + [anon_sym_DOT] = ACTIONS(4990), + [anon_sym_SLASH] = ACTIONS(4988), + [anon_sym_COLON] = ACTIONS(4988), + [anon_sym_SEMI] = ACTIONS(4988), + [anon_sym_EQ] = ACTIONS(4988), + [anon_sym_QMARK] = ACTIONS(4988), + [anon_sym_LBRACK] = ACTIONS(4990), + [anon_sym_BSLASH] = ACTIONS(4990), + [anon_sym_CARET] = ACTIONS(4990), + [anon_sym__] = ACTIONS(4988), + [anon_sym_BQUOTE] = ACTIONS(4988), + [anon_sym_LBRACE] = ACTIONS(4988), + [anon_sym_PIPE] = ACTIONS(4988), + [anon_sym_TILDE] = ACTIONS(4988), + [anon_sym_LPAREN] = ACTIONS(4988), + [anon_sym_RPAREN] = ACTIONS(4988), + [sym__newline_token] = ACTIONS(4988), + [aux_sym_insert_token1] = ACTIONS(4988), + [aux_sym_delete_token1] = ACTIONS(4988), + [aux_sym_highlight_token1] = ACTIONS(4988), + [aux_sym_edit_comment_token1] = ACTIONS(4988), + [anon_sym_CARET_LBRACK] = ACTIONS(4988), + [anon_sym_LBRACK_CARET] = ACTIONS(4988), + [sym_uri_autolink] = ACTIONS(4988), + [sym_email_autolink] = ACTIONS(4988), + [sym__whitespace_ge_2] = ACTIONS(4988), + [aux_sym__whitespace_token1] = ACTIONS(4990), + [sym__word_no_digit] = ACTIONS(4988), + [sym__digits] = ACTIONS(4988), + [anon_sym_DASH_DASH] = ACTIONS(4990), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4988), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4988), + [sym__code_span_start] = ACTIONS(4988), + [sym__emphasis_open_star] = ACTIONS(4988), + [sym__emphasis_open_underscore] = ACTIONS(4988), + [sym__strikeout_open] = ACTIONS(4988), + [sym__latex_span_start] = ACTIONS(4988), + [sym__single_quote_open] = ACTIONS(4988), + [sym__single_quote_close] = ACTIONS(4988), + [sym__double_quote_open] = ACTIONS(4988), + [sym__superscript_open] = ACTIONS(4988), + [sym__subscript_open] = ACTIONS(4988), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4988), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4988), + [sym__cite_author_in_text] = ACTIONS(4988), + [sym__cite_suppress_author] = ACTIONS(4988), + [sym__shortcode_open_escaped] = ACTIONS(4988), + [sym__shortcode_open] = ACTIONS(4988), + [sym__unclosed_span] = ACTIONS(4988), + }, + [STATE(1115)] = { + [sym__backslash_escape] = ACTIONS(4924), + [sym_entity_reference] = ACTIONS(4924), + [sym_numeric_character_reference] = ACTIONS(4924), + [anon_sym_LT] = ACTIONS(4926), + [anon_sym_GT] = ACTIONS(4924), + [anon_sym_BANG] = ACTIONS(4924), + [anon_sym_DQUOTE] = ACTIONS(4924), + [anon_sym_POUND] = ACTIONS(4924), + [anon_sym_DOLLAR] = ACTIONS(4924), + [anon_sym_PERCENT] = ACTIONS(4924), + [anon_sym_AMP] = ACTIONS(4926), + [anon_sym_SQUOTE] = ACTIONS(4924), + [anon_sym_STAR] = ACTIONS(4924), + [anon_sym_PLUS] = ACTIONS(4924), + [anon_sym_COMMA] = ACTIONS(4924), + [anon_sym_DASH] = ACTIONS(4926), + [anon_sym_DOT] = ACTIONS(4926), + [anon_sym_SLASH] = ACTIONS(4924), + [anon_sym_COLON] = ACTIONS(4924), + [anon_sym_SEMI] = ACTIONS(4924), + [anon_sym_EQ] = ACTIONS(4924), + [anon_sym_QMARK] = ACTIONS(4924), + [anon_sym_LBRACK] = ACTIONS(4926), + [anon_sym_BSLASH] = ACTIONS(4926), + [anon_sym_RBRACK] = ACTIONS(4924), + [anon_sym_CARET] = ACTIONS(4926), + [anon_sym__] = ACTIONS(4924), + [anon_sym_BQUOTE] = ACTIONS(4924), + [anon_sym_LBRACE] = ACTIONS(4924), + [anon_sym_PIPE] = ACTIONS(4924), + [anon_sym_TILDE] = ACTIONS(4924), + [anon_sym_LPAREN] = ACTIONS(4924), + [anon_sym_RPAREN] = ACTIONS(4924), + [sym__newline_token] = ACTIONS(4924), + [aux_sym_insert_token1] = ACTIONS(4924), + [aux_sym_delete_token1] = ACTIONS(4924), + [aux_sym_highlight_token1] = ACTIONS(4924), + [aux_sym_edit_comment_token1] = ACTIONS(4924), + [anon_sym_CARET_LBRACK] = ACTIONS(4924), + [anon_sym_LBRACK_CARET] = ACTIONS(4924), + [sym_uri_autolink] = ACTIONS(4924), + [sym_email_autolink] = ACTIONS(4924), + [sym__whitespace_ge_2] = ACTIONS(4924), + [aux_sym__whitespace_token1] = ACTIONS(4926), + [sym__word_no_digit] = ACTIONS(4924), + [sym__digits] = ACTIONS(4924), + [anon_sym_DASH_DASH] = ACTIONS(4926), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4924), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4924), + [sym__code_span_start] = ACTIONS(4924), + [sym__emphasis_open_star] = ACTIONS(4924), + [sym__emphasis_open_underscore] = ACTIONS(4924), + [sym__strikeout_open] = ACTIONS(4924), + [sym__latex_span_start] = ACTIONS(4924), + [sym__single_quote_open] = ACTIONS(4924), + [sym__double_quote_open] = ACTIONS(4924), + [sym__superscript_open] = ACTIONS(4924), + [sym__subscript_open] = ACTIONS(4924), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4924), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4924), + [sym__cite_author_in_text] = ACTIONS(4924), + [sym__cite_suppress_author] = ACTIONS(4924), + [sym__shortcode_open_escaped] = ACTIONS(4924), + [sym__shortcode_open] = ACTIONS(4924), + [sym__unclosed_span] = ACTIONS(4924), + }, + [STATE(1116)] = { + [sym__backslash_escape] = ACTIONS(4928), + [sym_entity_reference] = ACTIONS(4928), + [sym_numeric_character_reference] = ACTIONS(4928), + [anon_sym_LT] = ACTIONS(4930), + [anon_sym_GT] = ACTIONS(4928), + [anon_sym_BANG] = ACTIONS(4928), + [anon_sym_DQUOTE] = ACTIONS(4928), + [anon_sym_POUND] = ACTIONS(4928), + [anon_sym_DOLLAR] = ACTIONS(4928), + [anon_sym_PERCENT] = ACTIONS(4928), + [anon_sym_AMP] = ACTIONS(4930), + [anon_sym_SQUOTE] = ACTIONS(4928), + [anon_sym_STAR] = ACTIONS(4928), + [anon_sym_PLUS] = ACTIONS(4928), + [anon_sym_COMMA] = ACTIONS(4928), + [anon_sym_DASH] = ACTIONS(4930), + [anon_sym_DOT] = ACTIONS(4930), + [anon_sym_SLASH] = ACTIONS(4928), + [anon_sym_COLON] = ACTIONS(4928), + [anon_sym_SEMI] = ACTIONS(4928), + [anon_sym_EQ] = ACTIONS(4928), + [anon_sym_QMARK] = ACTIONS(4928), + [anon_sym_LBRACK] = ACTIONS(4930), + [anon_sym_BSLASH] = ACTIONS(4930), + [anon_sym_CARET] = ACTIONS(4930), + [anon_sym__] = ACTIONS(4928), + [anon_sym_BQUOTE] = ACTIONS(4928), + [anon_sym_LBRACE] = ACTIONS(4928), + [anon_sym_PIPE] = ACTIONS(4928), + [anon_sym_TILDE] = ACTIONS(4928), + [anon_sym_LPAREN] = ACTIONS(4928), + [anon_sym_RPAREN] = ACTIONS(4928), + [sym__newline_token] = ACTIONS(4928), + [aux_sym_insert_token1] = ACTIONS(4928), + [aux_sym_insert_token2] = ACTIONS(4928), + [aux_sym_delete_token1] = ACTIONS(4928), + [aux_sym_highlight_token1] = ACTIONS(4928), + [aux_sym_edit_comment_token1] = ACTIONS(4928), + [anon_sym_CARET_LBRACK] = ACTIONS(4928), + [anon_sym_LBRACK_CARET] = ACTIONS(4928), + [sym_uri_autolink] = ACTIONS(4928), + [sym_email_autolink] = ACTIONS(4928), + [sym__whitespace_ge_2] = ACTIONS(4930), + [aux_sym__whitespace_token1] = ACTIONS(4930), + [sym__word_no_digit] = ACTIONS(4928), + [sym__digits] = ACTIONS(4928), + [anon_sym_DASH_DASH] = ACTIONS(4930), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4928), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4928), + [sym__code_span_start] = ACTIONS(4928), + [sym__emphasis_open_star] = ACTIONS(4928), + [sym__emphasis_open_underscore] = ACTIONS(4928), + [sym__strikeout_open] = ACTIONS(4928), + [sym__latex_span_start] = ACTIONS(4928), + [sym__single_quote_open] = ACTIONS(4928), + [sym__double_quote_open] = ACTIONS(4928), + [sym__superscript_open] = ACTIONS(4928), + [sym__subscript_open] = ACTIONS(4928), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4928), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4928), + [sym__cite_author_in_text] = ACTIONS(4928), + [sym__cite_suppress_author] = ACTIONS(4928), + [sym__shortcode_open_escaped] = ACTIONS(4928), + [sym__shortcode_open] = ACTIONS(4928), + [sym__unclosed_span] = ACTIONS(4928), + }, + [STATE(1117)] = { + [sym__backslash_escape] = ACTIONS(4940), + [sym_entity_reference] = ACTIONS(4940), + [sym_numeric_character_reference] = ACTIONS(4940), + [anon_sym_LT] = ACTIONS(4942), + [anon_sym_GT] = ACTIONS(4940), + [anon_sym_BANG] = ACTIONS(4940), + [anon_sym_DQUOTE] = ACTIONS(4940), + [anon_sym_POUND] = ACTIONS(4940), + [anon_sym_DOLLAR] = ACTIONS(4940), + [anon_sym_PERCENT] = ACTIONS(4940), + [anon_sym_AMP] = ACTIONS(4942), + [anon_sym_SQUOTE] = ACTIONS(4940), + [anon_sym_STAR] = ACTIONS(4940), + [anon_sym_PLUS] = ACTIONS(4940), + [anon_sym_COMMA] = ACTIONS(4940), + [anon_sym_DASH] = ACTIONS(4942), + [anon_sym_DOT] = ACTIONS(4942), + [anon_sym_SLASH] = ACTIONS(4940), + [anon_sym_COLON] = ACTIONS(4940), + [anon_sym_SEMI] = ACTIONS(4940), + [anon_sym_EQ] = ACTIONS(4940), + [anon_sym_QMARK] = ACTIONS(4940), + [anon_sym_LBRACK] = ACTIONS(4942), + [anon_sym_BSLASH] = ACTIONS(4942), + [anon_sym_CARET] = ACTIONS(4942), + [anon_sym__] = ACTIONS(4940), + [anon_sym_BQUOTE] = ACTIONS(4940), + [anon_sym_LBRACE] = ACTIONS(4940), + [anon_sym_PIPE] = ACTIONS(4940), + [anon_sym_TILDE] = ACTIONS(4940), + [anon_sym_LPAREN] = ACTIONS(4940), + [anon_sym_RPAREN] = ACTIONS(4940), + [sym__newline_token] = ACTIONS(4940), + [aux_sym_insert_token1] = ACTIONS(4940), + [aux_sym_insert_token2] = ACTIONS(4940), + [aux_sym_delete_token1] = ACTIONS(4940), + [aux_sym_highlight_token1] = ACTIONS(4940), + [aux_sym_edit_comment_token1] = ACTIONS(4940), + [anon_sym_CARET_LBRACK] = ACTIONS(4940), + [anon_sym_LBRACK_CARET] = ACTIONS(4940), + [sym_uri_autolink] = ACTIONS(4940), + [sym_email_autolink] = ACTIONS(4940), + [sym__whitespace_ge_2] = ACTIONS(4942), + [aux_sym__whitespace_token1] = ACTIONS(4942), + [sym__word_no_digit] = ACTIONS(4940), + [sym__digits] = ACTIONS(4940), + [anon_sym_DASH_DASH] = ACTIONS(4942), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4940), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4940), + [sym__code_span_start] = ACTIONS(4940), + [sym__emphasis_open_star] = ACTIONS(4940), + [sym__emphasis_open_underscore] = ACTIONS(4940), + [sym__strikeout_open] = ACTIONS(4940), + [sym__latex_span_start] = ACTIONS(4940), + [sym__single_quote_open] = ACTIONS(4940), + [sym__double_quote_open] = ACTIONS(4940), + [sym__superscript_open] = ACTIONS(4940), + [sym__subscript_open] = ACTIONS(4940), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4940), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4940), + [sym__cite_author_in_text] = ACTIONS(4940), + [sym__cite_suppress_author] = ACTIONS(4940), + [sym__shortcode_open_escaped] = ACTIONS(4940), + [sym__shortcode_open] = ACTIONS(4940), + [sym__unclosed_span] = ACTIONS(4940), + }, + [STATE(1118)] = { + [sym__backslash_escape] = ACTIONS(4992), + [sym_entity_reference] = ACTIONS(4992), + [sym_numeric_character_reference] = ACTIONS(4992), + [anon_sym_LT] = ACTIONS(4994), + [anon_sym_GT] = ACTIONS(4992), + [anon_sym_BANG] = ACTIONS(4992), + [anon_sym_DQUOTE] = ACTIONS(4992), + [anon_sym_POUND] = ACTIONS(4992), + [anon_sym_DOLLAR] = ACTIONS(4992), + [anon_sym_PERCENT] = ACTIONS(4992), + [anon_sym_AMP] = ACTIONS(4994), + [anon_sym_SQUOTE] = ACTIONS(4992), + [anon_sym_STAR] = ACTIONS(4992), + [anon_sym_PLUS] = ACTIONS(4992), + [anon_sym_COMMA] = ACTIONS(4992), + [anon_sym_DASH] = ACTIONS(4994), + [anon_sym_DOT] = ACTIONS(4994), + [anon_sym_SLASH] = ACTIONS(4992), + [anon_sym_COLON] = ACTIONS(4992), + [anon_sym_SEMI] = ACTIONS(4992), + [anon_sym_EQ] = ACTIONS(4992), + [anon_sym_QMARK] = ACTIONS(4992), + [anon_sym_LBRACK] = ACTIONS(4994), + [anon_sym_BSLASH] = ACTIONS(4994), + [anon_sym_CARET] = ACTIONS(4994), + [anon_sym__] = ACTIONS(4992), + [anon_sym_BQUOTE] = ACTIONS(4992), + [anon_sym_LBRACE] = ACTIONS(4992), + [anon_sym_PIPE] = ACTIONS(4992), + [anon_sym_TILDE] = ACTIONS(4992), + [anon_sym_LPAREN] = ACTIONS(4992), + [anon_sym_RPAREN] = ACTIONS(4992), + [sym__newline_token] = ACTIONS(4992), + [aux_sym_insert_token1] = ACTIONS(4992), + [aux_sym_delete_token1] = ACTIONS(4992), + [aux_sym_highlight_token1] = ACTIONS(4992), + [aux_sym_edit_comment_token1] = ACTIONS(4992), + [anon_sym_CARET_LBRACK] = ACTIONS(4992), + [anon_sym_LBRACK_CARET] = ACTIONS(4992), + [sym_uri_autolink] = ACTIONS(4992), + [sym_email_autolink] = ACTIONS(4992), + [sym__whitespace_ge_2] = ACTIONS(4992), + [aux_sym__whitespace_token1] = ACTIONS(4994), + [sym__word_no_digit] = ACTIONS(4992), + [sym__digits] = ACTIONS(4992), + [anon_sym_DASH_DASH] = ACTIONS(4994), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4992), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4992), + [sym__code_span_start] = ACTIONS(4992), + [sym__emphasis_open_star] = ACTIONS(4992), + [sym__emphasis_open_underscore] = ACTIONS(4992), + [sym__strikeout_open] = ACTIONS(4992), + [sym__latex_span_start] = ACTIONS(4992), + [sym__single_quote_open] = ACTIONS(4992), + [sym__single_quote_close] = ACTIONS(4992), + [sym__double_quote_open] = ACTIONS(4992), + [sym__superscript_open] = ACTIONS(4992), + [sym__subscript_open] = ACTIONS(4992), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4992), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4992), + [sym__cite_author_in_text] = ACTIONS(4992), + [sym__cite_suppress_author] = ACTIONS(4992), + [sym__shortcode_open_escaped] = ACTIONS(4992), + [sym__shortcode_open] = ACTIONS(4992), + [sym__unclosed_span] = ACTIONS(4992), + }, + [STATE(1119)] = { + [sym__backslash_escape] = ACTIONS(5024), + [sym_entity_reference] = ACTIONS(5024), + [sym_numeric_character_reference] = ACTIONS(5024), + [anon_sym_LT] = ACTIONS(5026), + [anon_sym_GT] = ACTIONS(5024), + [anon_sym_BANG] = ACTIONS(5024), + [anon_sym_DQUOTE] = ACTIONS(5024), + [anon_sym_POUND] = ACTIONS(5024), + [anon_sym_DOLLAR] = ACTIONS(5024), + [anon_sym_PERCENT] = ACTIONS(5024), + [anon_sym_AMP] = ACTIONS(5026), + [anon_sym_SQUOTE] = ACTIONS(5024), + [anon_sym_STAR] = ACTIONS(5024), + [anon_sym_PLUS] = ACTIONS(5024), + [anon_sym_COMMA] = ACTIONS(5024), + [anon_sym_DASH] = ACTIONS(5026), + [anon_sym_DOT] = ACTIONS(5026), + [anon_sym_SLASH] = ACTIONS(5024), + [anon_sym_COLON] = ACTIONS(5024), + [anon_sym_SEMI] = ACTIONS(5024), + [anon_sym_EQ] = ACTIONS(5024), + [anon_sym_QMARK] = ACTIONS(5024), + [anon_sym_LBRACK] = ACTIONS(5026), + [anon_sym_BSLASH] = ACTIONS(5026), + [anon_sym_CARET] = ACTIONS(5026), + [anon_sym__] = ACTIONS(5024), + [anon_sym_BQUOTE] = ACTIONS(5024), + [anon_sym_LBRACE] = ACTIONS(5024), + [anon_sym_PIPE] = ACTIONS(5024), + [anon_sym_TILDE] = ACTIONS(5024), + [anon_sym_LPAREN] = ACTIONS(5024), + [anon_sym_RPAREN] = ACTIONS(5024), + [sym__newline_token] = ACTIONS(5024), + [aux_sym_insert_token1] = ACTIONS(5024), + [aux_sym_delete_token1] = ACTIONS(5024), + [aux_sym_highlight_token1] = ACTIONS(5024), + [aux_sym_edit_comment_token1] = ACTIONS(5024), + [anon_sym_CARET_LBRACK] = ACTIONS(5024), + [anon_sym_LBRACK_CARET] = ACTIONS(5024), + [sym_uri_autolink] = ACTIONS(5024), + [sym_email_autolink] = ACTIONS(5024), + [sym__whitespace_ge_2] = ACTIONS(5024), + [aux_sym__whitespace_token1] = ACTIONS(5026), + [sym__word_no_digit] = ACTIONS(5024), + [sym__digits] = ACTIONS(5024), + [anon_sym_DASH_DASH] = ACTIONS(5026), + [anon_sym_DASH_DASH_DASH] = ACTIONS(5024), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5024), + [sym__code_span_start] = ACTIONS(5024), + [sym__emphasis_open_star] = ACTIONS(5024), + [sym__emphasis_open_underscore] = ACTIONS(5024), + [sym__strikeout_open] = ACTIONS(5024), + [sym__latex_span_start] = ACTIONS(5024), + [sym__single_quote_open] = ACTIONS(5024), + [sym__single_quote_close] = ACTIONS(5024), + [sym__double_quote_open] = ACTIONS(5024), + [sym__superscript_open] = ACTIONS(5024), + [sym__subscript_open] = ACTIONS(5024), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5024), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5024), + [sym__cite_author_in_text] = ACTIONS(5024), + [sym__cite_suppress_author] = ACTIONS(5024), + [sym__shortcode_open_escaped] = ACTIONS(5024), + [sym__shortcode_open] = ACTIONS(5024), + [sym__unclosed_span] = ACTIONS(5024), + }, + [STATE(1120)] = { + [sym__backslash_escape] = ACTIONS(5032), + [sym_entity_reference] = ACTIONS(5032), + [sym_numeric_character_reference] = ACTIONS(5032), + [anon_sym_LT] = ACTIONS(5034), + [anon_sym_GT] = ACTIONS(5032), + [anon_sym_BANG] = ACTIONS(5032), + [anon_sym_DQUOTE] = ACTIONS(5032), + [anon_sym_POUND] = ACTIONS(5032), + [anon_sym_DOLLAR] = ACTIONS(5032), + [anon_sym_PERCENT] = ACTIONS(5032), + [anon_sym_AMP] = ACTIONS(5034), + [anon_sym_SQUOTE] = ACTIONS(5032), + [anon_sym_STAR] = ACTIONS(5032), + [anon_sym_PLUS] = ACTIONS(5032), + [anon_sym_COMMA] = ACTIONS(5032), + [anon_sym_DASH] = ACTIONS(5034), + [anon_sym_DOT] = ACTIONS(5034), + [anon_sym_SLASH] = ACTIONS(5032), + [anon_sym_COLON] = ACTIONS(5032), + [anon_sym_SEMI] = ACTIONS(5032), + [anon_sym_EQ] = ACTIONS(5032), + [anon_sym_QMARK] = ACTIONS(5032), + [anon_sym_LBRACK] = ACTIONS(5034), + [anon_sym_BSLASH] = ACTIONS(5034), + [anon_sym_RBRACK] = ACTIONS(5032), + [anon_sym_CARET] = ACTIONS(5034), + [anon_sym__] = ACTIONS(5032), + [anon_sym_BQUOTE] = ACTIONS(5032), + [anon_sym_LBRACE] = ACTIONS(5032), + [anon_sym_PIPE] = ACTIONS(5032), + [anon_sym_TILDE] = ACTIONS(5032), + [anon_sym_LPAREN] = ACTIONS(5032), + [anon_sym_RPAREN] = ACTIONS(5032), + [sym__newline_token] = ACTIONS(5032), + [aux_sym_insert_token1] = ACTIONS(5032), + [aux_sym_delete_token1] = ACTIONS(5032), + [aux_sym_highlight_token1] = ACTIONS(5032), + [aux_sym_edit_comment_token1] = ACTIONS(5032), + [anon_sym_CARET_LBRACK] = ACTIONS(5032), + [anon_sym_LBRACK_CARET] = ACTIONS(5032), + [sym_uri_autolink] = ACTIONS(5032), + [sym_email_autolink] = ACTIONS(5032), + [sym__whitespace_ge_2] = ACTIONS(5032), + [aux_sym__whitespace_token1] = ACTIONS(5034), + [sym__word_no_digit] = ACTIONS(5032), + [sym__digits] = ACTIONS(5032), + [anon_sym_DASH_DASH] = ACTIONS(5034), + [anon_sym_DASH_DASH_DASH] = ACTIONS(5032), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5032), + [sym__code_span_start] = ACTIONS(5032), + [sym__emphasis_open_star] = ACTIONS(5032), + [sym__emphasis_open_underscore] = ACTIONS(5032), + [sym__strikeout_open] = ACTIONS(5032), + [sym__latex_span_start] = ACTIONS(5032), + [sym__single_quote_open] = ACTIONS(5032), + [sym__double_quote_open] = ACTIONS(5032), + [sym__superscript_open] = ACTIONS(5032), + [sym__subscript_open] = ACTIONS(5032), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5032), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5032), + [sym__cite_author_in_text] = ACTIONS(5032), + [sym__cite_suppress_author] = ACTIONS(5032), + [sym__shortcode_open_escaped] = ACTIONS(5032), + [sym__shortcode_open] = ACTIONS(5032), + [sym__unclosed_span] = ACTIONS(5032), + }, + [STATE(1121)] = { + [sym__backslash_escape] = ACTIONS(4856), + [sym_entity_reference] = ACTIONS(4856), + [sym_numeric_character_reference] = ACTIONS(4856), + [anon_sym_LT] = ACTIONS(4858), + [anon_sym_GT] = ACTIONS(4856), + [anon_sym_BANG] = ACTIONS(4856), + [anon_sym_DQUOTE] = ACTIONS(4856), + [anon_sym_POUND] = ACTIONS(4856), + [anon_sym_DOLLAR] = ACTIONS(4856), + [anon_sym_PERCENT] = ACTIONS(4856), + [anon_sym_AMP] = ACTIONS(4858), + [anon_sym_SQUOTE] = ACTIONS(4856), + [anon_sym_STAR] = ACTIONS(4856), + [anon_sym_PLUS] = ACTIONS(4856), + [anon_sym_COMMA] = ACTIONS(4856), + [anon_sym_DASH] = ACTIONS(4858), + [anon_sym_DOT] = ACTIONS(4858), + [anon_sym_SLASH] = ACTIONS(4856), + [anon_sym_COLON] = ACTIONS(4856), + [anon_sym_SEMI] = ACTIONS(4856), + [anon_sym_EQ] = ACTIONS(4856), + [anon_sym_QMARK] = ACTIONS(4856), + [anon_sym_LBRACK] = ACTIONS(4858), + [anon_sym_BSLASH] = ACTIONS(4858), + [anon_sym_RBRACK] = ACTIONS(4856), + [anon_sym_CARET] = ACTIONS(4858), + [anon_sym__] = ACTIONS(4856), + [anon_sym_BQUOTE] = ACTIONS(4856), + [anon_sym_LBRACE] = ACTIONS(4856), + [anon_sym_PIPE] = ACTIONS(4856), + [anon_sym_TILDE] = ACTIONS(4856), + [anon_sym_LPAREN] = ACTIONS(4856), + [anon_sym_RPAREN] = ACTIONS(4856), + [sym__newline_token] = ACTIONS(4856), + [aux_sym_insert_token1] = ACTIONS(4856), + [aux_sym_delete_token1] = ACTIONS(4856), + [aux_sym_highlight_token1] = ACTIONS(4856), + [aux_sym_edit_comment_token1] = ACTIONS(4856), + [anon_sym_CARET_LBRACK] = ACTIONS(4856), + [anon_sym_LBRACK_CARET] = ACTIONS(4856), + [sym_uri_autolink] = ACTIONS(4856), + [sym_email_autolink] = ACTIONS(4856), + [sym__whitespace_ge_2] = ACTIONS(4856), + [aux_sym__whitespace_token1] = ACTIONS(4858), + [sym__word_no_digit] = ACTIONS(4856), + [sym__digits] = ACTIONS(4856), + [anon_sym_DASH_DASH] = ACTIONS(4858), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4856), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4856), + [sym__code_span_start] = ACTIONS(4856), + [sym__emphasis_open_star] = ACTIONS(4856), + [sym__emphasis_open_underscore] = ACTIONS(4856), + [sym__strikeout_open] = ACTIONS(4856), + [sym__latex_span_start] = ACTIONS(4856), + [sym__single_quote_open] = ACTIONS(4856), + [sym__double_quote_open] = ACTIONS(4856), + [sym__superscript_open] = ACTIONS(4856), + [sym__subscript_open] = ACTIONS(4856), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4856), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4856), + [sym__cite_author_in_text] = ACTIONS(4856), + [sym__cite_suppress_author] = ACTIONS(4856), + [sym__shortcode_open_escaped] = ACTIONS(4856), + [sym__shortcode_open] = ACTIONS(4856), + [sym__unclosed_span] = ACTIONS(4856), + }, + [STATE(1122)] = { + [sym__backslash_escape] = ACTIONS(5040), + [sym_entity_reference] = ACTIONS(5040), + [sym_numeric_character_reference] = ACTIONS(5040), + [anon_sym_LT] = ACTIONS(5042), + [anon_sym_GT] = ACTIONS(5040), + [anon_sym_BANG] = ACTIONS(5040), + [anon_sym_DQUOTE] = ACTIONS(5040), + [anon_sym_POUND] = ACTIONS(5040), + [anon_sym_DOLLAR] = ACTIONS(5040), + [anon_sym_PERCENT] = ACTIONS(5040), + [anon_sym_AMP] = ACTIONS(5042), + [anon_sym_SQUOTE] = ACTIONS(5040), + [anon_sym_STAR] = ACTIONS(5040), + [anon_sym_PLUS] = ACTIONS(5040), + [anon_sym_COMMA] = ACTIONS(5040), + [anon_sym_DASH] = ACTIONS(5042), + [anon_sym_DOT] = ACTIONS(5042), + [anon_sym_SLASH] = ACTIONS(5040), + [anon_sym_COLON] = ACTIONS(5040), + [anon_sym_SEMI] = ACTIONS(5040), + [anon_sym_EQ] = ACTIONS(5040), + [anon_sym_QMARK] = ACTIONS(5040), + [anon_sym_LBRACK] = ACTIONS(5042), + [anon_sym_BSLASH] = ACTIONS(5042), + [anon_sym_CARET] = ACTIONS(5042), + [anon_sym__] = ACTIONS(5040), + [anon_sym_BQUOTE] = ACTIONS(5040), + [anon_sym_LBRACE] = ACTIONS(5040), + [anon_sym_PIPE] = ACTIONS(5040), + [anon_sym_TILDE] = ACTIONS(5040), + [anon_sym_LPAREN] = ACTIONS(5040), + [anon_sym_RPAREN] = ACTIONS(5040), + [sym__newline_token] = ACTIONS(5040), + [aux_sym_insert_token1] = ACTIONS(5040), + [aux_sym_delete_token1] = ACTIONS(5040), + [aux_sym_highlight_token1] = ACTIONS(5040), + [aux_sym_edit_comment_token1] = ACTIONS(5040), + [anon_sym_CARET_LBRACK] = ACTIONS(5040), + [anon_sym_LBRACK_CARET] = ACTIONS(5040), + [sym_uri_autolink] = ACTIONS(5040), + [sym_email_autolink] = ACTIONS(5040), + [sym__whitespace_ge_2] = ACTIONS(5040), + [aux_sym__whitespace_token1] = ACTIONS(5042), + [sym__word_no_digit] = ACTIONS(5040), + [sym__digits] = ACTIONS(5040), + [anon_sym_DASH_DASH] = ACTIONS(5042), + [anon_sym_DASH_DASH_DASH] = ACTIONS(5040), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5040), + [sym__code_span_start] = ACTIONS(5040), + [sym__emphasis_open_star] = ACTIONS(5040), + [sym__emphasis_open_underscore] = ACTIONS(5040), + [sym__strikeout_open] = ACTIONS(5040), + [sym__latex_span_start] = ACTIONS(5040), + [sym__single_quote_open] = ACTIONS(5040), + [sym__single_quote_close] = ACTIONS(5040), + [sym__double_quote_open] = ACTIONS(5040), + [sym__superscript_open] = ACTIONS(5040), + [sym__subscript_open] = ACTIONS(5040), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5040), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5040), + [sym__cite_author_in_text] = ACTIONS(5040), + [sym__cite_suppress_author] = ACTIONS(5040), + [sym__shortcode_open_escaped] = ACTIONS(5040), + [sym__shortcode_open] = ACTIONS(5040), + [sym__unclosed_span] = ACTIONS(5040), + }, + [STATE(1123)] = { + [sym__backslash_escape] = ACTIONS(5044), + [sym_entity_reference] = ACTIONS(5044), + [sym_numeric_character_reference] = ACTIONS(5044), + [anon_sym_LT] = ACTIONS(5046), + [anon_sym_GT] = ACTIONS(5044), + [anon_sym_BANG] = ACTIONS(5044), + [anon_sym_DQUOTE] = ACTIONS(5044), + [anon_sym_POUND] = ACTIONS(5044), + [anon_sym_DOLLAR] = ACTIONS(5044), + [anon_sym_PERCENT] = ACTIONS(5044), + [anon_sym_AMP] = ACTIONS(5046), + [anon_sym_SQUOTE] = ACTIONS(5044), + [anon_sym_STAR] = ACTIONS(5044), + [anon_sym_PLUS] = ACTIONS(5044), + [anon_sym_COMMA] = ACTIONS(5044), + [anon_sym_DASH] = ACTIONS(5046), + [anon_sym_DOT] = ACTIONS(5046), + [anon_sym_SLASH] = ACTIONS(5044), + [anon_sym_COLON] = ACTIONS(5044), + [anon_sym_SEMI] = ACTIONS(5044), + [anon_sym_EQ] = ACTIONS(5044), + [anon_sym_QMARK] = ACTIONS(5044), + [anon_sym_LBRACK] = ACTIONS(5046), + [anon_sym_BSLASH] = ACTIONS(5046), + [anon_sym_CARET] = ACTIONS(5046), + [anon_sym__] = ACTIONS(5044), + [anon_sym_BQUOTE] = ACTIONS(5044), + [anon_sym_LBRACE] = ACTIONS(5044), + [anon_sym_PIPE] = ACTIONS(5044), + [anon_sym_TILDE] = ACTIONS(5044), + [anon_sym_LPAREN] = ACTIONS(5044), + [anon_sym_RPAREN] = ACTIONS(5044), + [sym__newline_token] = ACTIONS(5044), + [aux_sym_insert_token1] = ACTIONS(5044), + [aux_sym_delete_token1] = ACTIONS(5044), + [aux_sym_highlight_token1] = ACTIONS(5044), + [aux_sym_edit_comment_token1] = ACTIONS(5044), + [anon_sym_CARET_LBRACK] = ACTIONS(5044), + [anon_sym_LBRACK_CARET] = ACTIONS(5044), + [sym_uri_autolink] = ACTIONS(5044), + [sym_email_autolink] = ACTIONS(5044), + [sym__whitespace_ge_2] = ACTIONS(5044), + [aux_sym__whitespace_token1] = ACTIONS(5046), + [sym__word_no_digit] = ACTIONS(5044), + [sym__digits] = ACTIONS(5044), + [anon_sym_DASH_DASH] = ACTIONS(5046), + [anon_sym_DASH_DASH_DASH] = ACTIONS(5044), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5044), + [sym__code_span_start] = ACTIONS(5044), + [sym__emphasis_open_star] = ACTIONS(5044), + [sym__emphasis_open_underscore] = ACTIONS(5044), + [sym__strikeout_open] = ACTIONS(5044), + [sym__latex_span_start] = ACTIONS(5044), + [sym__single_quote_open] = ACTIONS(5044), + [sym__single_quote_close] = ACTIONS(5044), + [sym__double_quote_open] = ACTIONS(5044), + [sym__superscript_open] = ACTIONS(5044), + [sym__subscript_open] = ACTIONS(5044), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5044), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5044), + [sym__cite_author_in_text] = ACTIONS(5044), + [sym__cite_suppress_author] = ACTIONS(5044), + [sym__shortcode_open_escaped] = ACTIONS(5044), + [sym__shortcode_open] = ACTIONS(5044), + [sym__unclosed_span] = ACTIONS(5044), + }, + [STATE(1124)] = { + [sym__backslash_escape] = ACTIONS(5032), + [sym_entity_reference] = ACTIONS(5032), + [sym_numeric_character_reference] = ACTIONS(5032), + [anon_sym_LT] = ACTIONS(5034), + [anon_sym_GT] = ACTIONS(5032), + [anon_sym_BANG] = ACTIONS(5032), + [anon_sym_DQUOTE] = ACTIONS(5032), + [anon_sym_POUND] = ACTIONS(5032), + [anon_sym_DOLLAR] = ACTIONS(5032), + [anon_sym_PERCENT] = ACTIONS(5032), + [anon_sym_AMP] = ACTIONS(5034), + [anon_sym_SQUOTE] = ACTIONS(5032), + [anon_sym_STAR] = ACTIONS(5032), + [anon_sym_PLUS] = ACTIONS(5032), + [anon_sym_COMMA] = ACTIONS(5032), + [anon_sym_DASH] = ACTIONS(5034), + [anon_sym_DOT] = ACTIONS(5034), + [anon_sym_SLASH] = ACTIONS(5032), + [anon_sym_COLON] = ACTIONS(5032), + [anon_sym_SEMI] = ACTIONS(5032), + [anon_sym_EQ] = ACTIONS(5032), + [anon_sym_QMARK] = ACTIONS(5032), + [anon_sym_LBRACK] = ACTIONS(5034), + [anon_sym_BSLASH] = ACTIONS(5034), + [anon_sym_CARET] = ACTIONS(5034), + [anon_sym__] = ACTIONS(5032), + [anon_sym_BQUOTE] = ACTIONS(5032), + [anon_sym_LBRACE] = ACTIONS(5032), + [anon_sym_PIPE] = ACTIONS(5032), + [anon_sym_TILDE] = ACTIONS(5032), + [anon_sym_LPAREN] = ACTIONS(5032), + [anon_sym_RPAREN] = ACTIONS(5032), + [sym__newline_token] = ACTIONS(5032), + [aux_sym_insert_token1] = ACTIONS(5032), + [aux_sym_insert_token2] = ACTIONS(5032), + [aux_sym_delete_token1] = ACTIONS(5032), + [aux_sym_highlight_token1] = ACTIONS(5032), + [aux_sym_edit_comment_token1] = ACTIONS(5032), + [anon_sym_CARET_LBRACK] = ACTIONS(5032), + [anon_sym_LBRACK_CARET] = ACTIONS(5032), + [sym_uri_autolink] = ACTIONS(5032), + [sym_email_autolink] = ACTIONS(5032), + [sym__whitespace_ge_2] = ACTIONS(5034), + [aux_sym__whitespace_token1] = ACTIONS(5034), + [sym__word_no_digit] = ACTIONS(5032), + [sym__digits] = ACTIONS(5032), + [anon_sym_DASH_DASH] = ACTIONS(5034), + [anon_sym_DASH_DASH_DASH] = ACTIONS(5032), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5032), + [sym__code_span_start] = ACTIONS(5032), + [sym__emphasis_open_star] = ACTIONS(5032), + [sym__emphasis_open_underscore] = ACTIONS(5032), + [sym__strikeout_open] = ACTIONS(5032), + [sym__latex_span_start] = ACTIONS(5032), + [sym__single_quote_open] = ACTIONS(5032), + [sym__double_quote_open] = ACTIONS(5032), + [sym__superscript_open] = ACTIONS(5032), + [sym__subscript_open] = ACTIONS(5032), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5032), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5032), + [sym__cite_author_in_text] = ACTIONS(5032), + [sym__cite_suppress_author] = ACTIONS(5032), + [sym__shortcode_open_escaped] = ACTIONS(5032), + [sym__shortcode_open] = ACTIONS(5032), + [sym__unclosed_span] = ACTIONS(5032), + }, + [STATE(1125)] = { + [sym__backslash_escape] = ACTIONS(4856), + [sym_entity_reference] = ACTIONS(4856), + [sym_numeric_character_reference] = ACTIONS(4856), + [anon_sym_LT] = ACTIONS(4858), + [anon_sym_GT] = ACTIONS(4856), + [anon_sym_BANG] = ACTIONS(4856), + [anon_sym_DQUOTE] = ACTIONS(4856), + [anon_sym_POUND] = ACTIONS(4856), + [anon_sym_DOLLAR] = ACTIONS(4856), + [anon_sym_PERCENT] = ACTIONS(4856), + [anon_sym_AMP] = ACTIONS(4858), + [anon_sym_SQUOTE] = ACTIONS(4856), + [anon_sym_STAR] = ACTIONS(4856), + [anon_sym_PLUS] = ACTIONS(4856), + [anon_sym_COMMA] = ACTIONS(4856), + [anon_sym_DASH] = ACTIONS(4858), + [anon_sym_DOT] = ACTIONS(4858), + [anon_sym_SLASH] = ACTIONS(4856), + [anon_sym_COLON] = ACTIONS(4856), + [anon_sym_SEMI] = ACTIONS(4856), + [anon_sym_EQ] = ACTIONS(4856), + [anon_sym_QMARK] = ACTIONS(4856), + [anon_sym_LBRACK] = ACTIONS(4858), + [anon_sym_BSLASH] = ACTIONS(4858), + [anon_sym_CARET] = ACTIONS(4858), + [anon_sym__] = ACTIONS(4856), + [anon_sym_BQUOTE] = ACTIONS(4856), + [anon_sym_LBRACE] = ACTIONS(4856), + [anon_sym_PIPE] = ACTIONS(4856), + [anon_sym_TILDE] = ACTIONS(4856), + [anon_sym_LPAREN] = ACTIONS(4856), + [anon_sym_RPAREN] = ACTIONS(4856), + [sym__newline_token] = ACTIONS(4856), + [aux_sym_insert_token1] = ACTIONS(4856), + [aux_sym_insert_token2] = ACTIONS(4856), + [aux_sym_delete_token1] = ACTIONS(4856), + [aux_sym_highlight_token1] = ACTIONS(4856), + [aux_sym_edit_comment_token1] = ACTIONS(4856), + [anon_sym_CARET_LBRACK] = ACTIONS(4856), + [anon_sym_LBRACK_CARET] = ACTIONS(4856), + [sym_uri_autolink] = ACTIONS(4856), + [sym_email_autolink] = ACTIONS(4856), + [sym__whitespace_ge_2] = ACTIONS(4858), + [aux_sym__whitespace_token1] = ACTIONS(4858), + [sym__word_no_digit] = ACTIONS(4856), + [sym__digits] = ACTIONS(4856), + [anon_sym_DASH_DASH] = ACTIONS(4858), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4856), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4856), + [sym__code_span_start] = ACTIONS(4856), + [sym__emphasis_open_star] = ACTIONS(4856), + [sym__emphasis_open_underscore] = ACTIONS(4856), + [sym__strikeout_open] = ACTIONS(4856), + [sym__latex_span_start] = ACTIONS(4856), + [sym__single_quote_open] = ACTIONS(4856), + [sym__double_quote_open] = ACTIONS(4856), + [sym__superscript_open] = ACTIONS(4856), + [sym__subscript_open] = ACTIONS(4856), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4856), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4856), + [sym__cite_author_in_text] = ACTIONS(4856), + [sym__cite_suppress_author] = ACTIONS(4856), + [sym__shortcode_open_escaped] = ACTIONS(4856), + [sym__shortcode_open] = ACTIONS(4856), + [sym__unclosed_span] = ACTIONS(4856), + }, + [STATE(1126)] = { + [sym__backslash_escape] = ACTIONS(5048), + [sym_entity_reference] = ACTIONS(5048), + [sym_numeric_character_reference] = ACTIONS(5048), + [anon_sym_LT] = ACTIONS(5050), + [anon_sym_GT] = ACTIONS(5048), + [anon_sym_BANG] = ACTIONS(5048), + [anon_sym_DQUOTE] = ACTIONS(5048), + [anon_sym_POUND] = ACTIONS(5048), + [anon_sym_DOLLAR] = ACTIONS(5048), + [anon_sym_PERCENT] = ACTIONS(5048), + [anon_sym_AMP] = ACTIONS(5050), + [anon_sym_SQUOTE] = ACTIONS(5048), + [anon_sym_STAR] = ACTIONS(5048), + [anon_sym_PLUS] = ACTIONS(5048), + [anon_sym_COMMA] = ACTIONS(5048), + [anon_sym_DASH] = ACTIONS(5050), + [anon_sym_DOT] = ACTIONS(5050), + [anon_sym_SLASH] = ACTIONS(5048), + [anon_sym_COLON] = ACTIONS(5048), + [anon_sym_SEMI] = ACTIONS(5048), + [anon_sym_EQ] = ACTIONS(5048), + [anon_sym_QMARK] = ACTIONS(5048), + [anon_sym_LBRACK] = ACTIONS(5050), + [anon_sym_BSLASH] = ACTIONS(5050), + [anon_sym_CARET] = ACTIONS(5050), + [anon_sym__] = ACTIONS(5048), + [anon_sym_BQUOTE] = ACTIONS(5048), + [anon_sym_LBRACE] = ACTIONS(5048), + [anon_sym_PIPE] = ACTIONS(5048), + [anon_sym_TILDE] = ACTIONS(5048), + [anon_sym_LPAREN] = ACTIONS(5048), + [anon_sym_RPAREN] = ACTIONS(5048), + [sym__newline_token] = ACTIONS(5048), + [aux_sym_insert_token1] = ACTIONS(5048), + [aux_sym_delete_token1] = ACTIONS(5048), + [aux_sym_highlight_token1] = ACTIONS(5048), + [aux_sym_edit_comment_token1] = ACTIONS(5048), + [anon_sym_CARET_LBRACK] = ACTIONS(5048), + [anon_sym_LBRACK_CARET] = ACTIONS(5048), + [sym_uri_autolink] = ACTIONS(5048), + [sym_email_autolink] = ACTIONS(5048), + [sym__whitespace_ge_2] = ACTIONS(5048), + [aux_sym__whitespace_token1] = ACTIONS(5050), + [sym__word_no_digit] = ACTIONS(5048), + [sym__digits] = ACTIONS(5048), + [anon_sym_DASH_DASH] = ACTIONS(5050), + [anon_sym_DASH_DASH_DASH] = ACTIONS(5048), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5048), + [sym__code_span_start] = ACTIONS(5048), + [sym__emphasis_open_star] = ACTIONS(5048), + [sym__emphasis_open_underscore] = ACTIONS(5048), + [sym__strikeout_open] = ACTIONS(5048), + [sym__latex_span_start] = ACTIONS(5048), + [sym__single_quote_open] = ACTIONS(5048), + [sym__single_quote_close] = ACTIONS(5048), + [sym__double_quote_open] = ACTIONS(5048), + [sym__superscript_open] = ACTIONS(5048), + [sym__subscript_open] = ACTIONS(5048), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5048), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5048), + [sym__cite_author_in_text] = ACTIONS(5048), + [sym__cite_suppress_author] = ACTIONS(5048), + [sym__shortcode_open_escaped] = ACTIONS(5048), + [sym__shortcode_open] = ACTIONS(5048), + [sym__unclosed_span] = ACTIONS(5048), + }, + [STATE(1127)] = { + [ts_builtin_sym_end] = ACTIONS(4812), + [sym__backslash_escape] = ACTIONS(4812), + [sym_entity_reference] = ACTIONS(4812), + [sym_numeric_character_reference] = ACTIONS(4812), + [anon_sym_LT] = ACTIONS(4814), + [anon_sym_GT] = ACTIONS(4812), + [anon_sym_BANG] = ACTIONS(4812), + [anon_sym_DQUOTE] = ACTIONS(4812), + [anon_sym_POUND] = ACTIONS(4812), + [anon_sym_DOLLAR] = ACTIONS(4812), + [anon_sym_PERCENT] = ACTIONS(4812), + [anon_sym_AMP] = ACTIONS(4814), + [anon_sym_SQUOTE] = ACTIONS(4812), + [anon_sym_STAR] = ACTIONS(4812), + [anon_sym_PLUS] = ACTIONS(4812), + [anon_sym_COMMA] = ACTIONS(4812), + [anon_sym_DASH] = ACTIONS(4814), + [anon_sym_DOT] = ACTIONS(4814), + [anon_sym_SLASH] = ACTIONS(4812), + [anon_sym_COLON] = ACTIONS(4812), + [anon_sym_SEMI] = ACTIONS(4812), + [anon_sym_EQ] = ACTIONS(4812), + [anon_sym_QMARK] = ACTIONS(4812), + [anon_sym_LBRACK] = ACTIONS(4814), + [anon_sym_BSLASH] = ACTIONS(4814), + [anon_sym_CARET] = ACTIONS(4814), + [anon_sym__] = ACTIONS(4812), + [anon_sym_BQUOTE] = ACTIONS(4812), + [anon_sym_LBRACE] = ACTIONS(4812), + [anon_sym_PIPE] = ACTIONS(4812), + [anon_sym_TILDE] = ACTIONS(4812), + [anon_sym_LPAREN] = ACTIONS(4812), + [anon_sym_RPAREN] = ACTIONS(4812), + [sym__newline_token] = ACTIONS(4812), + [aux_sym_insert_token1] = ACTIONS(4812), + [aux_sym_delete_token1] = ACTIONS(4812), + [aux_sym_highlight_token1] = ACTIONS(4812), + [aux_sym_edit_comment_token1] = ACTIONS(4812), + [anon_sym_CARET_LBRACK] = ACTIONS(4812), + [anon_sym_LBRACK_CARET] = ACTIONS(4812), + [sym_uri_autolink] = ACTIONS(4812), + [sym_email_autolink] = ACTIONS(4812), + [sym__whitespace_ge_2] = ACTIONS(4812), + [aux_sym__whitespace_token1] = ACTIONS(4814), + [sym__word_no_digit] = ACTIONS(4812), + [sym__digits] = ACTIONS(4812), + [anon_sym_DASH_DASH] = ACTIONS(4814), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4812), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4812), + [sym__code_span_start] = ACTIONS(4812), + [sym__emphasis_open_star] = ACTIONS(4812), + [sym__emphasis_open_underscore] = ACTIONS(4812), + [sym__strikeout_open] = ACTIONS(4812), + [sym__latex_span_start] = ACTIONS(4812), + [sym__single_quote_open] = ACTIONS(4812), + [sym__double_quote_open] = ACTIONS(4812), + [sym__superscript_open] = ACTIONS(4812), + [sym__subscript_open] = ACTIONS(4812), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4812), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4812), + [sym__cite_author_in_text] = ACTIONS(4812), + [sym__cite_suppress_author] = ACTIONS(4812), + [sym__shortcode_open_escaped] = ACTIONS(4812), + [sym__shortcode_open] = ACTIONS(4812), + [sym__unclosed_span] = ACTIONS(4812), + }, + [STATE(1128)] = { + [sym__backslash_escape] = ACTIONS(5052), + [sym_entity_reference] = ACTIONS(5052), + [sym_numeric_character_reference] = ACTIONS(5052), + [anon_sym_LT] = ACTIONS(5054), + [anon_sym_GT] = ACTIONS(5052), + [anon_sym_BANG] = ACTIONS(5052), + [anon_sym_DQUOTE] = ACTIONS(5052), + [anon_sym_POUND] = ACTIONS(5052), + [anon_sym_DOLLAR] = ACTIONS(5052), + [anon_sym_PERCENT] = ACTIONS(5052), + [anon_sym_AMP] = ACTIONS(5054), + [anon_sym_SQUOTE] = ACTIONS(5052), + [anon_sym_STAR] = ACTIONS(5052), + [anon_sym_PLUS] = ACTIONS(5052), + [anon_sym_COMMA] = ACTIONS(5052), + [anon_sym_DASH] = ACTIONS(5054), + [anon_sym_DOT] = ACTIONS(5054), + [anon_sym_SLASH] = ACTIONS(5052), + [anon_sym_COLON] = ACTIONS(5052), + [anon_sym_SEMI] = ACTIONS(5052), + [anon_sym_EQ] = ACTIONS(5052), + [anon_sym_QMARK] = ACTIONS(5052), + [anon_sym_LBRACK] = ACTIONS(5054), + [anon_sym_BSLASH] = ACTIONS(5054), + [anon_sym_CARET] = ACTIONS(5054), + [anon_sym__] = ACTIONS(5052), + [anon_sym_BQUOTE] = ACTIONS(5052), + [anon_sym_LBRACE] = ACTIONS(5052), + [anon_sym_PIPE] = ACTIONS(5052), + [anon_sym_TILDE] = ACTIONS(5052), + [anon_sym_LPAREN] = ACTIONS(5052), + [anon_sym_RPAREN] = ACTIONS(5052), + [sym__newline_token] = ACTIONS(5052), + [aux_sym_insert_token1] = ACTIONS(5052), + [aux_sym_delete_token1] = ACTIONS(5052), + [aux_sym_highlight_token1] = ACTIONS(5052), + [aux_sym_edit_comment_token1] = ACTIONS(5052), + [anon_sym_CARET_LBRACK] = ACTIONS(5052), + [anon_sym_LBRACK_CARET] = ACTIONS(5052), + [sym_uri_autolink] = ACTIONS(5052), + [sym_email_autolink] = ACTIONS(5052), + [sym__whitespace_ge_2] = ACTIONS(5052), + [aux_sym__whitespace_token1] = ACTIONS(5054), + [sym__word_no_digit] = ACTIONS(5052), + [sym__digits] = ACTIONS(5052), + [anon_sym_DASH_DASH] = ACTIONS(5054), + [anon_sym_DASH_DASH_DASH] = ACTIONS(5052), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5052), + [sym__code_span_start] = ACTIONS(5052), + [sym__emphasis_open_star] = ACTIONS(5052), + [sym__emphasis_open_underscore] = ACTIONS(5052), + [sym__strikeout_open] = ACTIONS(5052), + [sym__latex_span_start] = ACTIONS(5052), + [sym__single_quote_open] = ACTIONS(5052), + [sym__single_quote_close] = ACTIONS(5052), + [sym__double_quote_open] = ACTIONS(5052), + [sym__superscript_open] = ACTIONS(5052), + [sym__subscript_open] = ACTIONS(5052), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5052), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5052), + [sym__cite_author_in_text] = ACTIONS(5052), + [sym__cite_suppress_author] = ACTIONS(5052), + [sym__shortcode_open_escaped] = ACTIONS(5052), + [sym__shortcode_open] = ACTIONS(5052), + [sym__unclosed_span] = ACTIONS(5052), + }, + [STATE(1129)] = { + [ts_builtin_sym_end] = ACTIONS(4816), + [sym__backslash_escape] = ACTIONS(4816), + [sym_entity_reference] = ACTIONS(4816), + [sym_numeric_character_reference] = ACTIONS(4816), + [anon_sym_LT] = ACTIONS(4818), + [anon_sym_GT] = ACTIONS(4816), + [anon_sym_BANG] = ACTIONS(4816), + [anon_sym_DQUOTE] = ACTIONS(4816), + [anon_sym_POUND] = ACTIONS(4816), + [anon_sym_DOLLAR] = ACTIONS(4816), + [anon_sym_PERCENT] = ACTIONS(4816), + [anon_sym_AMP] = ACTIONS(4818), + [anon_sym_SQUOTE] = ACTIONS(4816), + [anon_sym_STAR] = ACTIONS(4816), + [anon_sym_PLUS] = ACTIONS(4816), + [anon_sym_COMMA] = ACTIONS(4816), + [anon_sym_DASH] = ACTIONS(4818), + [anon_sym_DOT] = ACTIONS(4818), + [anon_sym_SLASH] = ACTIONS(4816), + [anon_sym_COLON] = ACTIONS(4816), + [anon_sym_SEMI] = ACTIONS(4816), + [anon_sym_EQ] = ACTIONS(4816), + [anon_sym_QMARK] = ACTIONS(4816), + [anon_sym_LBRACK] = ACTIONS(4818), + [anon_sym_BSLASH] = ACTIONS(4818), + [anon_sym_CARET] = ACTIONS(4818), + [anon_sym__] = ACTIONS(4816), + [anon_sym_BQUOTE] = ACTIONS(4816), + [anon_sym_LBRACE] = ACTIONS(4816), + [anon_sym_PIPE] = ACTIONS(4816), + [anon_sym_TILDE] = ACTIONS(4816), + [anon_sym_LPAREN] = ACTIONS(4816), + [anon_sym_RPAREN] = ACTIONS(4816), + [sym__newline_token] = ACTIONS(4816), + [aux_sym_insert_token1] = ACTIONS(4816), + [aux_sym_delete_token1] = ACTIONS(4816), + [aux_sym_highlight_token1] = ACTIONS(4816), + [aux_sym_edit_comment_token1] = ACTIONS(4816), + [anon_sym_CARET_LBRACK] = ACTIONS(4816), + [anon_sym_LBRACK_CARET] = ACTIONS(4816), + [sym_uri_autolink] = ACTIONS(4816), + [sym_email_autolink] = ACTIONS(4816), + [sym__whitespace_ge_2] = ACTIONS(4816), + [aux_sym__whitespace_token1] = ACTIONS(4818), + [sym__word_no_digit] = ACTIONS(4816), + [sym__digits] = ACTIONS(4816), + [anon_sym_DASH_DASH] = ACTIONS(4818), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4816), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4816), + [sym__code_span_start] = ACTIONS(4816), + [sym__emphasis_open_star] = ACTIONS(4816), + [sym__emphasis_open_underscore] = ACTIONS(4816), + [sym__strikeout_open] = ACTIONS(4816), + [sym__latex_span_start] = ACTIONS(4816), + [sym__single_quote_open] = ACTIONS(4816), + [sym__double_quote_open] = ACTIONS(4816), + [sym__superscript_open] = ACTIONS(4816), + [sym__subscript_open] = ACTIONS(4816), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4816), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4816), + [sym__cite_author_in_text] = ACTIONS(4816), + [sym__cite_suppress_author] = ACTIONS(4816), + [sym__shortcode_open_escaped] = ACTIONS(4816), + [sym__shortcode_open] = ACTIONS(4816), + [sym__unclosed_span] = ACTIONS(4816), + }, + [STATE(1130)] = { + [ts_builtin_sym_end] = ACTIONS(4940), + [sym__backslash_escape] = ACTIONS(4940), + [sym_entity_reference] = ACTIONS(4940), + [sym_numeric_character_reference] = ACTIONS(4940), + [anon_sym_LT] = ACTIONS(4942), + [anon_sym_GT] = ACTIONS(4940), + [anon_sym_BANG] = ACTIONS(4940), + [anon_sym_DQUOTE] = ACTIONS(4940), + [anon_sym_POUND] = ACTIONS(4940), + [anon_sym_DOLLAR] = ACTIONS(4940), + [anon_sym_PERCENT] = ACTIONS(4940), + [anon_sym_AMP] = ACTIONS(4942), + [anon_sym_SQUOTE] = ACTIONS(4940), + [anon_sym_STAR] = ACTIONS(4940), + [anon_sym_PLUS] = ACTIONS(4940), + [anon_sym_COMMA] = ACTIONS(4940), + [anon_sym_DASH] = ACTIONS(4942), + [anon_sym_DOT] = ACTIONS(4942), + [anon_sym_SLASH] = ACTIONS(4940), + [anon_sym_COLON] = ACTIONS(4940), + [anon_sym_SEMI] = ACTIONS(4940), + [anon_sym_EQ] = ACTIONS(4940), + [anon_sym_QMARK] = ACTIONS(4940), + [anon_sym_LBRACK] = ACTIONS(4942), + [anon_sym_BSLASH] = ACTIONS(4942), + [anon_sym_CARET] = ACTIONS(4942), + [anon_sym__] = ACTIONS(4940), + [anon_sym_BQUOTE] = ACTIONS(4940), + [anon_sym_LBRACE] = ACTIONS(4940), + [anon_sym_PIPE] = ACTIONS(4940), + [anon_sym_TILDE] = ACTIONS(4940), + [anon_sym_LPAREN] = ACTIONS(4940), + [anon_sym_RPAREN] = ACTIONS(4940), + [sym__newline_token] = ACTIONS(4940), + [aux_sym_insert_token1] = ACTIONS(4940), + [aux_sym_delete_token1] = ACTIONS(4940), + [aux_sym_highlight_token1] = ACTIONS(4940), + [aux_sym_edit_comment_token1] = ACTIONS(4940), + [anon_sym_CARET_LBRACK] = ACTIONS(4940), + [anon_sym_LBRACK_CARET] = ACTIONS(4940), + [sym_uri_autolink] = ACTIONS(4940), + [sym_email_autolink] = ACTIONS(4940), + [sym__whitespace_ge_2] = ACTIONS(4940), + [aux_sym__whitespace_token1] = ACTIONS(4942), + [sym__word_no_digit] = ACTIONS(4940), + [sym__digits] = ACTIONS(4940), + [anon_sym_DASH_DASH] = ACTIONS(4942), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4940), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4940), + [sym__code_span_start] = ACTIONS(4940), + [sym__emphasis_open_star] = ACTIONS(4940), + [sym__emphasis_open_underscore] = ACTIONS(4940), + [sym__strikeout_open] = ACTIONS(4940), + [sym__latex_span_start] = ACTIONS(4940), + [sym__single_quote_open] = ACTIONS(4940), + [sym__double_quote_open] = ACTIONS(4940), + [sym__superscript_open] = ACTIONS(4940), + [sym__subscript_open] = ACTIONS(4940), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4940), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4940), + [sym__cite_author_in_text] = ACTIONS(4940), + [sym__cite_suppress_author] = ACTIONS(4940), + [sym__shortcode_open_escaped] = ACTIONS(4940), + [sym__shortcode_open] = ACTIONS(4940), + [sym__unclosed_span] = ACTIONS(4940), + }, + [STATE(1131)] = { + [ts_builtin_sym_end] = ACTIONS(5060), + [sym__backslash_escape] = ACTIONS(5060), + [sym_entity_reference] = ACTIONS(5060), + [sym_numeric_character_reference] = ACTIONS(5060), + [anon_sym_LT] = ACTIONS(5062), + [anon_sym_GT] = ACTIONS(5060), + [anon_sym_BANG] = ACTIONS(5060), + [anon_sym_DQUOTE] = ACTIONS(5060), + [anon_sym_POUND] = ACTIONS(5060), + [anon_sym_DOLLAR] = ACTIONS(5060), + [anon_sym_PERCENT] = ACTIONS(5060), + [anon_sym_AMP] = ACTIONS(5062), + [anon_sym_SQUOTE] = ACTIONS(5060), + [anon_sym_STAR] = ACTIONS(5060), + [anon_sym_PLUS] = ACTIONS(5060), + [anon_sym_COMMA] = ACTIONS(5060), + [anon_sym_DASH] = ACTIONS(5062), + [anon_sym_DOT] = ACTIONS(5062), + [anon_sym_SLASH] = ACTIONS(5060), + [anon_sym_COLON] = ACTIONS(5060), + [anon_sym_SEMI] = ACTIONS(5060), + [anon_sym_EQ] = ACTIONS(5060), + [anon_sym_QMARK] = ACTIONS(5060), + [anon_sym_LBRACK] = ACTIONS(5062), + [anon_sym_BSLASH] = ACTIONS(5062), + [anon_sym_CARET] = ACTIONS(5062), + [anon_sym__] = ACTIONS(5060), + [anon_sym_BQUOTE] = ACTIONS(5060), + [anon_sym_LBRACE] = ACTIONS(5060), + [anon_sym_PIPE] = ACTIONS(5060), + [anon_sym_TILDE] = ACTIONS(5060), + [anon_sym_LPAREN] = ACTIONS(5060), + [anon_sym_RPAREN] = ACTIONS(5060), + [sym__newline_token] = ACTIONS(5060), + [aux_sym_insert_token1] = ACTIONS(5060), + [aux_sym_delete_token1] = ACTIONS(5060), + [aux_sym_highlight_token1] = ACTIONS(5060), + [aux_sym_edit_comment_token1] = ACTIONS(5060), + [anon_sym_CARET_LBRACK] = ACTIONS(5060), + [anon_sym_LBRACK_CARET] = ACTIONS(5060), + [sym_uri_autolink] = ACTIONS(5060), + [sym_email_autolink] = ACTIONS(5060), + [sym__whitespace_ge_2] = ACTIONS(5060), + [aux_sym__whitespace_token1] = ACTIONS(5062), + [sym__word_no_digit] = ACTIONS(5060), + [sym__digits] = ACTIONS(5060), + [anon_sym_DASH_DASH] = ACTIONS(5062), + [anon_sym_DASH_DASH_DASH] = ACTIONS(5060), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5060), + [sym__code_span_start] = ACTIONS(5060), + [sym__emphasis_open_star] = ACTIONS(5060), + [sym__emphasis_open_underscore] = ACTIONS(5060), + [sym__strikeout_open] = ACTIONS(5060), + [sym__latex_span_start] = ACTIONS(5060), + [sym__single_quote_open] = ACTIONS(5060), + [sym__double_quote_open] = ACTIONS(5060), + [sym__superscript_open] = ACTIONS(5060), + [sym__subscript_open] = ACTIONS(5060), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5060), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5060), + [sym__cite_author_in_text] = ACTIONS(5060), + [sym__cite_suppress_author] = ACTIONS(5060), + [sym__shortcode_open_escaped] = ACTIONS(5060), + [sym__shortcode_open] = ACTIONS(5060), + [sym__unclosed_span] = ACTIONS(5060), + }, + [STATE(1132)] = { + [ts_builtin_sym_end] = ACTIONS(4840), + [sym__backslash_escape] = ACTIONS(4840), + [sym_entity_reference] = ACTIONS(4840), + [sym_numeric_character_reference] = ACTIONS(4840), + [anon_sym_LT] = ACTIONS(4842), + [anon_sym_GT] = ACTIONS(4840), + [anon_sym_BANG] = ACTIONS(4840), + [anon_sym_DQUOTE] = ACTIONS(4840), + [anon_sym_POUND] = ACTIONS(4840), + [anon_sym_DOLLAR] = ACTIONS(4840), + [anon_sym_PERCENT] = ACTIONS(4840), + [anon_sym_AMP] = ACTIONS(4842), + [anon_sym_SQUOTE] = ACTIONS(4840), + [anon_sym_STAR] = ACTIONS(4840), + [anon_sym_PLUS] = ACTIONS(4840), + [anon_sym_COMMA] = ACTIONS(4840), + [anon_sym_DASH] = ACTIONS(4842), + [anon_sym_DOT] = ACTIONS(4842), + [anon_sym_SLASH] = ACTIONS(4840), + [anon_sym_COLON] = ACTIONS(4840), + [anon_sym_SEMI] = ACTIONS(4840), + [anon_sym_EQ] = ACTIONS(4840), + [anon_sym_QMARK] = ACTIONS(4840), + [anon_sym_LBRACK] = ACTIONS(4842), + [anon_sym_BSLASH] = ACTIONS(4842), + [anon_sym_CARET] = ACTIONS(4842), + [anon_sym__] = ACTIONS(4840), + [anon_sym_BQUOTE] = ACTIONS(4840), + [anon_sym_LBRACE] = ACTIONS(4840), + [anon_sym_PIPE] = ACTIONS(4840), + [anon_sym_TILDE] = ACTIONS(4840), + [anon_sym_LPAREN] = ACTIONS(4840), + [anon_sym_RPAREN] = ACTIONS(4840), + [sym__newline_token] = ACTIONS(4840), + [aux_sym_insert_token1] = ACTIONS(4840), + [aux_sym_delete_token1] = ACTIONS(4840), + [aux_sym_highlight_token1] = ACTIONS(4840), + [aux_sym_edit_comment_token1] = ACTIONS(4840), + [anon_sym_CARET_LBRACK] = ACTIONS(4840), + [anon_sym_LBRACK_CARET] = ACTIONS(4840), + [sym_uri_autolink] = ACTIONS(4840), + [sym_email_autolink] = ACTIONS(4840), + [sym__whitespace_ge_2] = ACTIONS(4840), + [aux_sym__whitespace_token1] = ACTIONS(4842), + [sym__word_no_digit] = ACTIONS(4840), + [sym__digits] = ACTIONS(4840), + [anon_sym_DASH_DASH] = ACTIONS(4842), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4840), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4840), + [sym__code_span_start] = ACTIONS(4840), + [sym__emphasis_open_star] = ACTIONS(4840), + [sym__emphasis_open_underscore] = ACTIONS(4840), + [sym__strikeout_open] = ACTIONS(4840), + [sym__latex_span_start] = ACTIONS(4840), + [sym__single_quote_open] = ACTIONS(4840), + [sym__double_quote_open] = ACTIONS(4840), + [sym__superscript_open] = ACTIONS(4840), + [sym__subscript_open] = ACTIONS(4840), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4840), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4840), + [sym__cite_author_in_text] = ACTIONS(4840), + [sym__cite_suppress_author] = ACTIONS(4840), + [sym__shortcode_open_escaped] = ACTIONS(4840), + [sym__shortcode_open] = ACTIONS(4840), + [sym__unclosed_span] = ACTIONS(4840), + }, + [STATE(1133)] = { + [sym__backslash_escape] = ACTIONS(4690), + [sym_entity_reference] = ACTIONS(4690), + [sym_numeric_character_reference] = ACTIONS(4690), + [anon_sym_LT] = ACTIONS(4692), + [anon_sym_GT] = ACTIONS(4690), + [anon_sym_BANG] = ACTIONS(4690), + [anon_sym_DQUOTE] = ACTIONS(4690), + [anon_sym_POUND] = ACTIONS(4690), + [anon_sym_DOLLAR] = ACTIONS(4690), + [anon_sym_PERCENT] = ACTIONS(4690), + [anon_sym_AMP] = ACTIONS(4692), + [anon_sym_SQUOTE] = ACTIONS(4690), + [anon_sym_STAR] = ACTIONS(4690), + [anon_sym_PLUS] = ACTIONS(4690), + [anon_sym_COMMA] = ACTIONS(4690), + [anon_sym_DASH] = ACTIONS(4692), + [anon_sym_DOT] = ACTIONS(4692), + [anon_sym_SLASH] = ACTIONS(4690), + [anon_sym_COLON] = ACTIONS(4690), + [anon_sym_SEMI] = ACTIONS(4690), + [anon_sym_EQ] = ACTIONS(4690), + [anon_sym_QMARK] = ACTIONS(4690), + [anon_sym_LBRACK] = ACTIONS(4692), + [anon_sym_BSLASH] = ACTIONS(4692), + [anon_sym_CARET] = ACTIONS(4692), + [anon_sym__] = ACTIONS(4690), + [anon_sym_BQUOTE] = ACTIONS(4690), + [anon_sym_LBRACE] = ACTIONS(4690), + [anon_sym_PIPE] = ACTIONS(4690), + [anon_sym_TILDE] = ACTIONS(4690), + [anon_sym_LPAREN] = ACTIONS(4690), + [anon_sym_RPAREN] = ACTIONS(4690), + [sym__newline_token] = ACTIONS(4690), + [aux_sym_insert_token1] = ACTIONS(4690), + [aux_sym_delete_token1] = ACTIONS(4690), + [aux_sym_highlight_token1] = ACTIONS(4690), + [aux_sym_edit_comment_token1] = ACTIONS(4690), + [anon_sym_CARET_LBRACK] = ACTIONS(4690), + [anon_sym_LBRACK_CARET] = ACTIONS(4690), + [sym_uri_autolink] = ACTIONS(4690), + [sym_email_autolink] = ACTIONS(4690), + [sym__whitespace_ge_2] = ACTIONS(4690), + [aux_sym__whitespace_token1] = ACTIONS(4692), + [sym__word_no_digit] = ACTIONS(4690), + [sym__digits] = ACTIONS(4690), + [anon_sym_DASH_DASH] = ACTIONS(4692), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4690), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4690), + [sym__code_span_start] = ACTIONS(4690), + [sym__emphasis_open_star] = ACTIONS(4690), + [sym__emphasis_open_underscore] = ACTIONS(4690), + [sym__strikeout_open] = ACTIONS(4690), + [sym__latex_span_start] = ACTIONS(4690), + [sym__single_quote_open] = ACTIONS(4690), + [sym__single_quote_close] = ACTIONS(4690), + [sym__double_quote_open] = ACTIONS(4690), + [sym__superscript_open] = ACTIONS(4690), + [sym__subscript_open] = ACTIONS(4690), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4690), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4690), + [sym__cite_author_in_text] = ACTIONS(4690), + [sym__cite_suppress_author] = ACTIONS(4690), + [sym__shortcode_open_escaped] = ACTIONS(4690), + [sym__shortcode_open] = ACTIONS(4690), + [sym__unclosed_span] = ACTIONS(4690), + }, + [STATE(1134)] = { + [sym__backslash_escape] = ACTIONS(4924), + [sym_entity_reference] = ACTIONS(4924), + [sym_numeric_character_reference] = ACTIONS(4924), + [anon_sym_LT] = ACTIONS(4926), + [anon_sym_GT] = ACTIONS(4924), + [anon_sym_BANG] = ACTIONS(4924), + [anon_sym_DQUOTE] = ACTIONS(4924), + [anon_sym_POUND] = ACTIONS(4924), + [anon_sym_DOLLAR] = ACTIONS(4924), + [anon_sym_PERCENT] = ACTIONS(4924), + [anon_sym_AMP] = ACTIONS(4926), + [anon_sym_SQUOTE] = ACTIONS(4924), + [anon_sym_STAR] = ACTIONS(4924), + [anon_sym_PLUS] = ACTIONS(4924), + [anon_sym_COMMA] = ACTIONS(4924), + [anon_sym_DASH] = ACTIONS(4926), + [anon_sym_DOT] = ACTIONS(4926), + [anon_sym_SLASH] = ACTIONS(4924), + [anon_sym_COLON] = ACTIONS(4924), + [anon_sym_SEMI] = ACTIONS(4924), + [anon_sym_EQ] = ACTIONS(4924), + [anon_sym_QMARK] = ACTIONS(4924), + [anon_sym_LBRACK] = ACTIONS(4926), + [anon_sym_BSLASH] = ACTIONS(4926), + [anon_sym_CARET] = ACTIONS(4926), + [anon_sym__] = ACTIONS(4924), + [anon_sym_BQUOTE] = ACTIONS(4924), + [anon_sym_LBRACE] = ACTIONS(4924), + [anon_sym_PIPE] = ACTIONS(4924), + [anon_sym_TILDE] = ACTIONS(4924), + [anon_sym_LPAREN] = ACTIONS(4924), + [anon_sym_RPAREN] = ACTIONS(4924), + [sym__newline_token] = ACTIONS(4924), + [aux_sym_insert_token1] = ACTIONS(4924), + [aux_sym_delete_token1] = ACTIONS(4924), + [aux_sym_highlight_token1] = ACTIONS(4924), + [aux_sym_edit_comment_token1] = ACTIONS(4924), + [anon_sym_CARET_LBRACK] = ACTIONS(4924), + [anon_sym_LBRACK_CARET] = ACTIONS(4924), + [sym_uri_autolink] = ACTIONS(4924), + [sym_email_autolink] = ACTIONS(4924), + [sym__whitespace_ge_2] = ACTIONS(4924), + [aux_sym__whitespace_token1] = ACTIONS(4926), + [sym__word_no_digit] = ACTIONS(4924), + [sym__digits] = ACTIONS(4924), + [anon_sym_DASH_DASH] = ACTIONS(4926), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4924), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4924), + [sym__code_span_start] = ACTIONS(4924), + [sym__emphasis_open_star] = ACTIONS(4924), + [sym__emphasis_open_underscore] = ACTIONS(4924), + [sym__emphasis_close_underscore] = ACTIONS(4924), + [sym__strikeout_open] = ACTIONS(4924), + [sym__latex_span_start] = ACTIONS(4924), + [sym__single_quote_open] = ACTIONS(4924), + [sym__double_quote_open] = ACTIONS(4924), + [sym__superscript_open] = ACTIONS(4924), + [sym__subscript_open] = ACTIONS(4924), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4924), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4924), + [sym__cite_author_in_text] = ACTIONS(4924), + [sym__cite_suppress_author] = ACTIONS(4924), + [sym__shortcode_open_escaped] = ACTIONS(4924), + [sym__shortcode_open] = ACTIONS(4924), + [sym__unclosed_span] = ACTIONS(4924), + }, + [STATE(1135)] = { + [sym__backslash_escape] = ACTIONS(5056), + [sym_entity_reference] = ACTIONS(5056), + [sym_numeric_character_reference] = ACTIONS(5056), + [anon_sym_LT] = ACTIONS(5058), + [anon_sym_GT] = ACTIONS(5056), + [anon_sym_BANG] = ACTIONS(5056), + [anon_sym_DQUOTE] = ACTIONS(5056), + [anon_sym_POUND] = ACTIONS(5056), + [anon_sym_DOLLAR] = ACTIONS(5056), + [anon_sym_PERCENT] = ACTIONS(5056), + [anon_sym_AMP] = ACTIONS(5058), + [anon_sym_SQUOTE] = ACTIONS(5056), + [anon_sym_STAR] = ACTIONS(5056), + [anon_sym_PLUS] = ACTIONS(5056), + [anon_sym_COMMA] = ACTIONS(5056), + [anon_sym_DASH] = ACTIONS(5058), + [anon_sym_DOT] = ACTIONS(5058), + [anon_sym_SLASH] = ACTIONS(5056), + [anon_sym_COLON] = ACTIONS(5056), + [anon_sym_SEMI] = ACTIONS(5056), + [anon_sym_EQ] = ACTIONS(5056), + [anon_sym_QMARK] = ACTIONS(5056), + [anon_sym_LBRACK] = ACTIONS(5058), + [anon_sym_BSLASH] = ACTIONS(5058), + [anon_sym_CARET] = ACTIONS(5058), + [anon_sym__] = ACTIONS(5056), + [anon_sym_BQUOTE] = ACTIONS(5056), + [anon_sym_LBRACE] = ACTIONS(5056), + [anon_sym_PIPE] = ACTIONS(5056), + [anon_sym_TILDE] = ACTIONS(5056), + [anon_sym_LPAREN] = ACTIONS(5056), + [anon_sym_RPAREN] = ACTIONS(5056), + [sym__newline_token] = ACTIONS(5056), + [aux_sym_insert_token1] = ACTIONS(5056), + [aux_sym_delete_token1] = ACTIONS(5056), + [aux_sym_highlight_token1] = ACTIONS(5056), + [aux_sym_edit_comment_token1] = ACTIONS(5056), + [anon_sym_CARET_LBRACK] = ACTIONS(5056), + [anon_sym_LBRACK_CARET] = ACTIONS(5056), + [sym_uri_autolink] = ACTIONS(5056), + [sym_email_autolink] = ACTIONS(5056), + [sym__whitespace_ge_2] = ACTIONS(5056), + [aux_sym__whitespace_token1] = ACTIONS(5058), + [sym__word_no_digit] = ACTIONS(5056), + [sym__digits] = ACTIONS(5056), + [anon_sym_DASH_DASH] = ACTIONS(5058), + [anon_sym_DASH_DASH_DASH] = ACTIONS(5056), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5056), + [sym__code_span_start] = ACTIONS(5056), + [sym__emphasis_open_star] = ACTIONS(5056), + [sym__emphasis_open_underscore] = ACTIONS(5056), + [sym__strikeout_open] = ACTIONS(5056), + [sym__latex_span_start] = ACTIONS(5056), + [sym__single_quote_open] = ACTIONS(5056), + [sym__single_quote_close] = ACTIONS(5056), + [sym__double_quote_open] = ACTIONS(5056), + [sym__superscript_open] = ACTIONS(5056), + [sym__subscript_open] = ACTIONS(5056), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5056), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5056), + [sym__cite_author_in_text] = ACTIONS(5056), + [sym__cite_suppress_author] = ACTIONS(5056), + [sym__shortcode_open_escaped] = ACTIONS(5056), + [sym__shortcode_open] = ACTIONS(5056), + [sym__unclosed_span] = ACTIONS(5056), + }, + [STATE(1136)] = { + [sym__backslash_escape] = ACTIONS(4928), + [sym_entity_reference] = ACTIONS(4928), + [sym_numeric_character_reference] = ACTIONS(4928), + [anon_sym_LT] = ACTIONS(4930), + [anon_sym_GT] = ACTIONS(4928), + [anon_sym_BANG] = ACTIONS(4928), + [anon_sym_DQUOTE] = ACTIONS(4928), + [anon_sym_POUND] = ACTIONS(4928), + [anon_sym_DOLLAR] = ACTIONS(4928), + [anon_sym_PERCENT] = ACTIONS(4928), + [anon_sym_AMP] = ACTIONS(4930), + [anon_sym_SQUOTE] = ACTIONS(4928), + [anon_sym_STAR] = ACTIONS(4928), + [anon_sym_PLUS] = ACTIONS(4928), + [anon_sym_COMMA] = ACTIONS(4928), + [anon_sym_DASH] = ACTIONS(4930), + [anon_sym_DOT] = ACTIONS(4930), + [anon_sym_SLASH] = ACTIONS(4928), + [anon_sym_COLON] = ACTIONS(4928), + [anon_sym_SEMI] = ACTIONS(4928), + [anon_sym_EQ] = ACTIONS(4928), + [anon_sym_QMARK] = ACTIONS(4928), + [anon_sym_LBRACK] = ACTIONS(4930), + [anon_sym_BSLASH] = ACTIONS(4930), + [anon_sym_CARET] = ACTIONS(4930), + [anon_sym__] = ACTIONS(4928), + [anon_sym_BQUOTE] = ACTIONS(4928), + [anon_sym_LBRACE] = ACTIONS(4928), + [anon_sym_PIPE] = ACTIONS(4928), + [anon_sym_TILDE] = ACTIONS(4928), + [anon_sym_LPAREN] = ACTIONS(4928), + [anon_sym_RPAREN] = ACTIONS(4928), + [sym__newline_token] = ACTIONS(4928), + [aux_sym_insert_token1] = ACTIONS(4928), + [aux_sym_delete_token1] = ACTIONS(4928), + [aux_sym_highlight_token1] = ACTIONS(4928), + [aux_sym_edit_comment_token1] = ACTIONS(4928), + [anon_sym_CARET_LBRACK] = ACTIONS(4928), + [anon_sym_LBRACK_CARET] = ACTIONS(4928), + [sym_uri_autolink] = ACTIONS(4928), + [sym_email_autolink] = ACTIONS(4928), + [sym__whitespace_ge_2] = ACTIONS(4928), + [aux_sym__whitespace_token1] = ACTIONS(4930), + [sym__word_no_digit] = ACTIONS(4928), + [sym__digits] = ACTIONS(4928), + [anon_sym_DASH_DASH] = ACTIONS(4930), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4928), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4928), + [sym__code_span_start] = ACTIONS(4928), + [sym__emphasis_open_star] = ACTIONS(4928), + [sym__emphasis_open_underscore] = ACTIONS(4928), + [sym__emphasis_close_underscore] = ACTIONS(4928), + [sym__strikeout_open] = ACTIONS(4928), + [sym__latex_span_start] = ACTIONS(4928), + [sym__single_quote_open] = ACTIONS(4928), + [sym__double_quote_open] = ACTIONS(4928), + [sym__superscript_open] = ACTIONS(4928), + [sym__subscript_open] = ACTIONS(4928), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4928), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4928), + [sym__cite_author_in_text] = ACTIONS(4928), + [sym__cite_suppress_author] = ACTIONS(4928), + [sym__shortcode_open_escaped] = ACTIONS(4928), + [sym__shortcode_open] = ACTIONS(4928), + [sym__unclosed_span] = ACTIONS(4928), + }, + [STATE(1137)] = { + [ts_builtin_sym_end] = ACTIONS(4856), + [sym__backslash_escape] = ACTIONS(4856), + [sym_entity_reference] = ACTIONS(4856), + [sym_numeric_character_reference] = ACTIONS(4856), + [anon_sym_LT] = ACTIONS(4858), + [anon_sym_GT] = ACTIONS(4856), + [anon_sym_BANG] = ACTIONS(4856), + [anon_sym_DQUOTE] = ACTIONS(4856), + [anon_sym_POUND] = ACTIONS(4856), + [anon_sym_DOLLAR] = ACTIONS(4856), + [anon_sym_PERCENT] = ACTIONS(4856), + [anon_sym_AMP] = ACTIONS(4858), + [anon_sym_SQUOTE] = ACTIONS(4856), + [anon_sym_STAR] = ACTIONS(4856), + [anon_sym_PLUS] = ACTIONS(4856), + [anon_sym_COMMA] = ACTIONS(4856), + [anon_sym_DASH] = ACTIONS(4858), + [anon_sym_DOT] = ACTIONS(4858), + [anon_sym_SLASH] = ACTIONS(4856), + [anon_sym_COLON] = ACTIONS(4856), + [anon_sym_SEMI] = ACTIONS(4856), + [anon_sym_EQ] = ACTIONS(4856), + [anon_sym_QMARK] = ACTIONS(4856), + [anon_sym_LBRACK] = ACTIONS(4858), + [anon_sym_BSLASH] = ACTIONS(4858), + [anon_sym_CARET] = ACTIONS(4858), + [anon_sym__] = ACTIONS(4856), + [anon_sym_BQUOTE] = ACTIONS(4856), + [anon_sym_LBRACE] = ACTIONS(4856), + [anon_sym_PIPE] = ACTIONS(4856), + [anon_sym_TILDE] = ACTIONS(4856), + [anon_sym_LPAREN] = ACTIONS(4856), + [anon_sym_RPAREN] = ACTIONS(4856), + [sym__newline_token] = ACTIONS(4856), + [aux_sym_insert_token1] = ACTIONS(4856), + [aux_sym_delete_token1] = ACTIONS(4856), + [aux_sym_highlight_token1] = ACTIONS(4856), + [aux_sym_edit_comment_token1] = ACTIONS(4856), + [anon_sym_CARET_LBRACK] = ACTIONS(4856), + [anon_sym_LBRACK_CARET] = ACTIONS(4856), + [sym_uri_autolink] = ACTIONS(4856), + [sym_email_autolink] = ACTIONS(4856), + [sym__whitespace_ge_2] = ACTIONS(4856), + [aux_sym__whitespace_token1] = ACTIONS(4858), + [sym__word_no_digit] = ACTIONS(4856), + [sym__digits] = ACTIONS(4856), + [anon_sym_DASH_DASH] = ACTIONS(4858), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4856), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4856), + [sym__code_span_start] = ACTIONS(4856), + [sym__emphasis_open_star] = ACTIONS(4856), + [sym__emphasis_open_underscore] = ACTIONS(4856), + [sym__strikeout_open] = ACTIONS(4856), + [sym__latex_span_start] = ACTIONS(4856), + [sym__single_quote_open] = ACTIONS(4856), + [sym__double_quote_open] = ACTIONS(4856), + [sym__superscript_open] = ACTIONS(4856), + [sym__subscript_open] = ACTIONS(4856), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4856), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4856), + [sym__cite_author_in_text] = ACTIONS(4856), + [sym__cite_suppress_author] = ACTIONS(4856), + [sym__shortcode_open_escaped] = ACTIONS(4856), + [sym__shortcode_open] = ACTIONS(4856), + [sym__unclosed_span] = ACTIONS(4856), + }, + [STATE(1138)] = { + [sym__backslash_escape] = ACTIONS(5064), + [sym_entity_reference] = ACTIONS(5064), + [sym_numeric_character_reference] = ACTIONS(5064), + [anon_sym_LT] = ACTIONS(5066), + [anon_sym_GT] = ACTIONS(5064), + [anon_sym_BANG] = ACTIONS(5064), + [anon_sym_DQUOTE] = ACTIONS(5064), + [anon_sym_POUND] = ACTIONS(5064), + [anon_sym_DOLLAR] = ACTIONS(5064), + [anon_sym_PERCENT] = ACTIONS(5064), + [anon_sym_AMP] = ACTIONS(5066), + [anon_sym_SQUOTE] = ACTIONS(5064), + [anon_sym_STAR] = ACTIONS(5064), + [anon_sym_PLUS] = ACTIONS(5064), + [anon_sym_COMMA] = ACTIONS(5064), + [anon_sym_DASH] = ACTIONS(5066), + [anon_sym_DOT] = ACTIONS(5066), + [anon_sym_SLASH] = ACTIONS(5064), + [anon_sym_COLON] = ACTIONS(5064), + [anon_sym_SEMI] = ACTIONS(5064), + [anon_sym_EQ] = ACTIONS(5064), + [anon_sym_QMARK] = ACTIONS(5064), + [anon_sym_LBRACK] = ACTIONS(5066), + [anon_sym_BSLASH] = ACTIONS(5066), + [anon_sym_CARET] = ACTIONS(5066), + [anon_sym__] = ACTIONS(5064), + [anon_sym_BQUOTE] = ACTIONS(5064), + [anon_sym_LBRACE] = ACTIONS(5064), + [anon_sym_PIPE] = ACTIONS(5064), + [anon_sym_TILDE] = ACTIONS(5064), + [anon_sym_LPAREN] = ACTIONS(5064), + [anon_sym_RPAREN] = ACTIONS(5064), + [sym__newline_token] = ACTIONS(5064), + [aux_sym_insert_token1] = ACTIONS(5064), + [aux_sym_delete_token1] = ACTIONS(5064), + [aux_sym_highlight_token1] = ACTIONS(5064), + [aux_sym_edit_comment_token1] = ACTIONS(5064), + [anon_sym_CARET_LBRACK] = ACTIONS(5064), + [anon_sym_LBRACK_CARET] = ACTIONS(5064), + [sym_uri_autolink] = ACTIONS(5064), + [sym_email_autolink] = ACTIONS(5064), + [sym__whitespace_ge_2] = ACTIONS(5064), + [aux_sym__whitespace_token1] = ACTIONS(5066), + [sym__word_no_digit] = ACTIONS(5064), + [sym__digits] = ACTIONS(5064), + [anon_sym_DASH_DASH] = ACTIONS(5066), + [anon_sym_DASH_DASH_DASH] = ACTIONS(5064), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5064), + [sym__code_span_start] = ACTIONS(5064), + [sym__emphasis_open_star] = ACTIONS(5064), + [sym__emphasis_open_underscore] = ACTIONS(5064), + [sym__emphasis_close_star] = ACTIONS(5068), + [sym__strikeout_open] = ACTIONS(5064), + [sym__latex_span_start] = ACTIONS(5064), + [sym__single_quote_open] = ACTIONS(5064), + [sym__double_quote_open] = ACTIONS(5064), + [sym__superscript_open] = ACTIONS(5064), + [sym__subscript_open] = ACTIONS(5064), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5064), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5064), + [sym__cite_author_in_text] = ACTIONS(5064), + [sym__cite_suppress_author] = ACTIONS(5064), + [sym__shortcode_open_escaped] = ACTIONS(5064), + [sym__shortcode_open] = ACTIONS(5064), + [sym__unclosed_span] = ACTIONS(5064), + }, + [STATE(1139)] = { + [ts_builtin_sym_end] = ACTIONS(4880), + [sym__backslash_escape] = ACTIONS(4880), + [sym_entity_reference] = ACTIONS(4880), + [sym_numeric_character_reference] = ACTIONS(4880), + [anon_sym_LT] = ACTIONS(4882), + [anon_sym_GT] = ACTIONS(4880), + [anon_sym_BANG] = ACTIONS(4880), + [anon_sym_DQUOTE] = ACTIONS(4880), + [anon_sym_POUND] = ACTIONS(4880), + [anon_sym_DOLLAR] = ACTIONS(4880), + [anon_sym_PERCENT] = ACTIONS(4880), + [anon_sym_AMP] = ACTIONS(4882), + [anon_sym_SQUOTE] = ACTIONS(4880), + [anon_sym_STAR] = ACTIONS(4880), + [anon_sym_PLUS] = ACTIONS(4880), + [anon_sym_COMMA] = ACTIONS(4880), + [anon_sym_DASH] = ACTIONS(4882), + [anon_sym_DOT] = ACTIONS(4882), + [anon_sym_SLASH] = ACTIONS(4880), + [anon_sym_COLON] = ACTIONS(4880), + [anon_sym_SEMI] = ACTIONS(4880), + [anon_sym_EQ] = ACTIONS(4880), + [anon_sym_QMARK] = ACTIONS(4880), + [anon_sym_LBRACK] = ACTIONS(4882), + [anon_sym_BSLASH] = ACTIONS(4882), + [anon_sym_CARET] = ACTIONS(4882), + [anon_sym__] = ACTIONS(4880), + [anon_sym_BQUOTE] = ACTIONS(4880), + [anon_sym_LBRACE] = ACTIONS(4880), + [anon_sym_PIPE] = ACTIONS(4880), + [anon_sym_TILDE] = ACTIONS(4880), + [anon_sym_LPAREN] = ACTIONS(4880), + [anon_sym_RPAREN] = ACTIONS(4880), + [sym__newline_token] = ACTIONS(4880), + [aux_sym_insert_token1] = ACTIONS(4880), + [aux_sym_delete_token1] = ACTIONS(4880), + [aux_sym_highlight_token1] = ACTIONS(4880), + [aux_sym_edit_comment_token1] = ACTIONS(4880), + [anon_sym_CARET_LBRACK] = ACTIONS(4880), + [anon_sym_LBRACK_CARET] = ACTIONS(4880), + [sym_uri_autolink] = ACTIONS(4880), + [sym_email_autolink] = ACTIONS(4880), + [sym__whitespace_ge_2] = ACTIONS(4880), + [aux_sym__whitespace_token1] = ACTIONS(4882), + [sym__word_no_digit] = ACTIONS(4880), + [sym__digits] = ACTIONS(4880), + [anon_sym_DASH_DASH] = ACTIONS(4882), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4880), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4880), + [sym__code_span_start] = ACTIONS(4880), + [sym__emphasis_open_star] = ACTIONS(4880), + [sym__emphasis_open_underscore] = ACTIONS(4880), + [sym__strikeout_open] = ACTIONS(4880), + [sym__latex_span_start] = ACTIONS(4880), + [sym__single_quote_open] = ACTIONS(4880), + [sym__double_quote_open] = ACTIONS(4880), + [sym__superscript_open] = ACTIONS(4880), + [sym__subscript_open] = ACTIONS(4880), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4880), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4880), + [sym__cite_author_in_text] = ACTIONS(4880), + [sym__cite_suppress_author] = ACTIONS(4880), + [sym__shortcode_open_escaped] = ACTIONS(4880), + [sym__shortcode_open] = ACTIONS(4880), + [sym__unclosed_span] = ACTIONS(4880), + }, + [STATE(1140)] = { + [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__] = ACTIONS(5071), + [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(5075), + [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), + }, + [STATE(1141)] = { + [ts_builtin_sym_end] = ACTIONS(4596), + [sym__backslash_escape] = ACTIONS(4596), + [sym_entity_reference] = ACTIONS(4596), + [sym_numeric_character_reference] = ACTIONS(4596), + [anon_sym_LT] = ACTIONS(4598), + [anon_sym_GT] = ACTIONS(4596), + [anon_sym_BANG] = ACTIONS(4596), + [anon_sym_DQUOTE] = ACTIONS(4596), + [anon_sym_POUND] = ACTIONS(4596), + [anon_sym_DOLLAR] = ACTIONS(4596), + [anon_sym_PERCENT] = ACTIONS(4596), + [anon_sym_AMP] = ACTIONS(4598), + [anon_sym_SQUOTE] = ACTIONS(4596), + [anon_sym_STAR] = ACTIONS(4596), + [anon_sym_PLUS] = ACTIONS(4596), + [anon_sym_COMMA] = ACTIONS(4596), + [anon_sym_DASH] = ACTIONS(4598), + [anon_sym_DOT] = ACTIONS(4598), + [anon_sym_SLASH] = ACTIONS(4596), + [anon_sym_COLON] = ACTIONS(4596), + [anon_sym_SEMI] = ACTIONS(4596), + [anon_sym_EQ] = ACTIONS(4596), + [anon_sym_QMARK] = ACTIONS(4596), + [anon_sym_LBRACK] = ACTIONS(4598), + [anon_sym_BSLASH] = ACTIONS(4598), + [anon_sym_CARET] = ACTIONS(4598), + [anon_sym__] = ACTIONS(4596), + [anon_sym_BQUOTE] = ACTIONS(4596), + [anon_sym_LBRACE] = ACTIONS(4596), + [anon_sym_PIPE] = ACTIONS(4596), + [anon_sym_TILDE] = ACTIONS(4596), + [anon_sym_LPAREN] = ACTIONS(4596), + [anon_sym_RPAREN] = ACTIONS(4596), + [sym__newline_token] = ACTIONS(4596), + [aux_sym_insert_token1] = ACTIONS(4596), + [aux_sym_delete_token1] = ACTIONS(4596), + [aux_sym_highlight_token1] = ACTIONS(4596), + [aux_sym_edit_comment_token1] = ACTIONS(4596), + [anon_sym_CARET_LBRACK] = ACTIONS(4596), + [anon_sym_LBRACK_CARET] = ACTIONS(4596), + [sym_uri_autolink] = ACTIONS(4596), + [sym_email_autolink] = ACTIONS(4596), + [sym__whitespace_ge_2] = ACTIONS(4596), + [aux_sym__whitespace_token1] = ACTIONS(4598), + [sym__word_no_digit] = ACTIONS(4596), + [sym__digits] = ACTIONS(4596), + [anon_sym_DASH_DASH] = ACTIONS(4598), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4596), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4596), + [sym__code_span_start] = ACTIONS(4596), + [sym__emphasis_open_star] = ACTIONS(4596), + [sym__emphasis_open_underscore] = ACTIONS(4596), + [sym__strikeout_open] = ACTIONS(4596), + [sym__latex_span_start] = ACTIONS(4596), + [sym__single_quote_open] = ACTIONS(4596), + [sym__double_quote_open] = ACTIONS(4596), + [sym__superscript_open] = ACTIONS(4596), + [sym__subscript_open] = ACTIONS(4596), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4596), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4596), + [sym__cite_author_in_text] = ACTIONS(4596), + [sym__cite_suppress_author] = ACTIONS(4596), + [sym__shortcode_open_escaped] = ACTIONS(4596), + [sym__shortcode_open] = ACTIONS(4596), + [sym__unclosed_span] = ACTIONS(4596), + }, + [STATE(1142)] = { + [sym__backslash_escape] = ACTIONS(5064), + [sym_entity_reference] = ACTIONS(5064), + [sym_numeric_character_reference] = ACTIONS(5064), + [anon_sym_LT] = ACTIONS(5066), + [anon_sym_GT] = ACTIONS(5064), + [anon_sym_BANG] = ACTIONS(5064), + [anon_sym_DQUOTE] = ACTIONS(5064), + [anon_sym_POUND] = ACTIONS(5064), + [anon_sym_DOLLAR] = ACTIONS(5064), + [anon_sym_PERCENT] = ACTIONS(5064), + [anon_sym_AMP] = ACTIONS(5066), + [anon_sym_SQUOTE] = ACTIONS(5064), + [anon_sym_STAR] = ACTIONS(5064), + [anon_sym_PLUS] = ACTIONS(5064), + [anon_sym_COMMA] = ACTIONS(5064), + [anon_sym_DASH] = ACTIONS(5066), + [anon_sym_DOT] = ACTIONS(5066), + [anon_sym_SLASH] = ACTIONS(5064), + [anon_sym_COLON] = ACTIONS(5064), + [anon_sym_SEMI] = ACTIONS(5064), + [anon_sym_EQ] = ACTIONS(5064), + [anon_sym_QMARK] = ACTIONS(5064), + [anon_sym_LBRACK] = ACTIONS(5066), + [anon_sym_BSLASH] = ACTIONS(5066), + [anon_sym_CARET] = ACTIONS(5066), + [anon_sym__] = ACTIONS(5064), + [anon_sym_BQUOTE] = ACTIONS(5064), + [anon_sym_LBRACE] = ACTIONS(5064), + [anon_sym_PIPE] = ACTIONS(5064), + [anon_sym_TILDE] = ACTIONS(5064), + [anon_sym_LPAREN] = ACTIONS(5064), + [anon_sym_RPAREN] = ACTIONS(5064), + [sym__newline_token] = ACTIONS(5064), + [aux_sym_insert_token1] = ACTIONS(5064), + [aux_sym_delete_token1] = ACTIONS(5064), + [aux_sym_highlight_token1] = ACTIONS(5064), + [aux_sym_edit_comment_token1] = ACTIONS(5064), + [anon_sym_CARET_LBRACK] = ACTIONS(5064), + [anon_sym_LBRACK_CARET] = ACTIONS(5064), + [sym_uri_autolink] = ACTIONS(5064), + [sym_email_autolink] = ACTIONS(5064), + [sym__whitespace_ge_2] = ACTIONS(5064), + [aux_sym__whitespace_token1] = ACTIONS(5066), + [sym__word_no_digit] = ACTIONS(5064), + [sym__digits] = ACTIONS(5064), + [anon_sym_DASH_DASH] = ACTIONS(5066), + [anon_sym_DASH_DASH_DASH] = ACTIONS(5064), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5064), + [sym__code_span_start] = ACTIONS(5064), + [sym__emphasis_open_star] = ACTIONS(5064), + [sym__emphasis_open_underscore] = ACTIONS(5064), + [sym__emphasis_close_star] = ACTIONS(5078), + [sym__strikeout_open] = ACTIONS(5064), + [sym__latex_span_start] = ACTIONS(5064), + [sym__single_quote_open] = ACTIONS(5064), + [sym__double_quote_open] = ACTIONS(5064), + [sym__superscript_open] = ACTIONS(5064), + [sym__subscript_open] = ACTIONS(5064), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5064), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5064), + [sym__cite_author_in_text] = ACTIONS(5064), + [sym__cite_suppress_author] = ACTIONS(5064), + [sym__shortcode_open_escaped] = ACTIONS(5064), + [sym__shortcode_open] = ACTIONS(5064), + [sym__unclosed_span] = ACTIONS(5064), + }, + [STATE(1143)] = { + [ts_builtin_sym_end] = ACTIONS(5012), + [sym__backslash_escape] = ACTIONS(5012), + [sym_entity_reference] = ACTIONS(5012), + [sym_numeric_character_reference] = ACTIONS(5012), + [anon_sym_LT] = ACTIONS(5014), + [anon_sym_GT] = ACTIONS(5012), + [anon_sym_BANG] = ACTIONS(5012), + [anon_sym_DQUOTE] = ACTIONS(5012), + [anon_sym_POUND] = ACTIONS(5012), + [anon_sym_DOLLAR] = ACTIONS(5012), + [anon_sym_PERCENT] = ACTIONS(5012), + [anon_sym_AMP] = ACTIONS(5014), + [anon_sym_SQUOTE] = ACTIONS(5012), + [anon_sym_STAR] = ACTIONS(5012), + [anon_sym_PLUS] = ACTIONS(5012), + [anon_sym_COMMA] = ACTIONS(5012), + [anon_sym_DASH] = ACTIONS(5014), + [anon_sym_DOT] = ACTIONS(5014), + [anon_sym_SLASH] = ACTIONS(5012), + [anon_sym_COLON] = ACTIONS(5012), + [anon_sym_SEMI] = ACTIONS(5012), + [anon_sym_EQ] = ACTIONS(5012), + [anon_sym_QMARK] = ACTIONS(5012), + [anon_sym_LBRACK] = ACTIONS(5014), + [anon_sym_BSLASH] = ACTIONS(5014), + [anon_sym_CARET] = ACTIONS(5014), + [anon_sym__] = ACTIONS(5012), + [anon_sym_BQUOTE] = ACTIONS(5012), + [anon_sym_LBRACE] = ACTIONS(5012), + [anon_sym_PIPE] = ACTIONS(5012), + [anon_sym_TILDE] = ACTIONS(5012), + [anon_sym_LPAREN] = ACTIONS(5012), + [anon_sym_RPAREN] = ACTIONS(5012), + [sym__newline_token] = ACTIONS(5012), + [aux_sym_insert_token1] = ACTIONS(5012), + [aux_sym_delete_token1] = ACTIONS(5012), + [aux_sym_highlight_token1] = ACTIONS(5012), + [aux_sym_edit_comment_token1] = ACTIONS(5012), + [anon_sym_CARET_LBRACK] = ACTIONS(5012), + [anon_sym_LBRACK_CARET] = ACTIONS(5012), + [sym_uri_autolink] = ACTIONS(5012), + [sym_email_autolink] = ACTIONS(5012), + [sym__whitespace_ge_2] = ACTIONS(5012), + [aux_sym__whitespace_token1] = ACTIONS(5014), + [sym__word_no_digit] = ACTIONS(5012), + [sym__digits] = ACTIONS(5012), + [anon_sym_DASH_DASH] = ACTIONS(5014), + [anon_sym_DASH_DASH_DASH] = ACTIONS(5012), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5012), + [sym__code_span_start] = ACTIONS(5012), + [sym__emphasis_open_star] = ACTIONS(5012), + [sym__emphasis_open_underscore] = ACTIONS(5012), + [sym__strikeout_open] = ACTIONS(5012), + [sym__latex_span_start] = ACTIONS(5012), + [sym__single_quote_open] = ACTIONS(5012), + [sym__double_quote_open] = ACTIONS(5012), + [sym__superscript_open] = ACTIONS(5012), + [sym__subscript_open] = ACTIONS(5012), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5012), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5012), + [sym__cite_author_in_text] = ACTIONS(5012), + [sym__cite_suppress_author] = ACTIONS(5012), + [sym__shortcode_open_escaped] = ACTIONS(5012), + [sym__shortcode_open] = ACTIONS(5012), + [sym__unclosed_span] = ACTIONS(5012), + }, + [STATE(1144)] = { + [ts_builtin_sym_end] = ACTIONS(4900), + [sym__backslash_escape] = ACTIONS(4900), + [sym_entity_reference] = ACTIONS(4900), + [sym_numeric_character_reference] = ACTIONS(4900), + [anon_sym_LT] = ACTIONS(4902), + [anon_sym_GT] = ACTIONS(4900), + [anon_sym_BANG] = ACTIONS(4900), + [anon_sym_DQUOTE] = ACTIONS(4900), + [anon_sym_POUND] = ACTIONS(4900), + [anon_sym_DOLLAR] = ACTIONS(4900), + [anon_sym_PERCENT] = ACTIONS(4900), + [anon_sym_AMP] = ACTIONS(4902), + [anon_sym_SQUOTE] = ACTIONS(4900), + [anon_sym_STAR] = ACTIONS(4900), + [anon_sym_PLUS] = ACTIONS(4900), + [anon_sym_COMMA] = ACTIONS(4900), + [anon_sym_DASH] = ACTIONS(4902), + [anon_sym_DOT] = ACTIONS(4902), + [anon_sym_SLASH] = ACTIONS(4900), + [anon_sym_COLON] = ACTIONS(4900), + [anon_sym_SEMI] = ACTIONS(4900), + [anon_sym_EQ] = ACTIONS(4900), + [anon_sym_QMARK] = ACTIONS(4900), + [anon_sym_LBRACK] = ACTIONS(4902), + [anon_sym_BSLASH] = ACTIONS(4902), + [anon_sym_CARET] = ACTIONS(4902), + [anon_sym__] = ACTIONS(4900), + [anon_sym_BQUOTE] = ACTIONS(4900), + [anon_sym_LBRACE] = ACTIONS(4900), + [anon_sym_PIPE] = ACTIONS(4900), + [anon_sym_TILDE] = ACTIONS(4900), + [anon_sym_LPAREN] = ACTIONS(4900), + [anon_sym_RPAREN] = ACTIONS(4900), + [sym__newline_token] = ACTIONS(4900), + [aux_sym_insert_token1] = ACTIONS(4900), + [aux_sym_delete_token1] = ACTIONS(4900), + [aux_sym_highlight_token1] = ACTIONS(4900), + [aux_sym_edit_comment_token1] = ACTIONS(4900), + [anon_sym_CARET_LBRACK] = ACTIONS(4900), + [anon_sym_LBRACK_CARET] = ACTIONS(4900), + [sym_uri_autolink] = ACTIONS(4900), + [sym_email_autolink] = ACTIONS(4900), + [sym__whitespace_ge_2] = ACTIONS(4900), + [aux_sym__whitespace_token1] = ACTIONS(4902), + [sym__word_no_digit] = ACTIONS(4900), + [sym__digits] = ACTIONS(4900), + [anon_sym_DASH_DASH] = ACTIONS(4902), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4900), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4900), + [sym__code_span_start] = ACTIONS(4900), + [sym__emphasis_open_star] = ACTIONS(4900), + [sym__emphasis_open_underscore] = ACTIONS(4900), + [sym__strikeout_open] = ACTIONS(4900), + [sym__latex_span_start] = ACTIONS(4900), + [sym__single_quote_open] = ACTIONS(4900), + [sym__double_quote_open] = ACTIONS(4900), + [sym__superscript_open] = ACTIONS(4900), + [sym__subscript_open] = ACTIONS(4900), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4900), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4900), + [sym__cite_author_in_text] = ACTIONS(4900), + [sym__cite_suppress_author] = ACTIONS(4900), + [sym__shortcode_open_escaped] = ACTIONS(4900), + [sym__shortcode_open] = ACTIONS(4900), + [sym__unclosed_span] = ACTIONS(4900), + }, + [STATE(1145)] = { + [sym__backslash_escape] = ACTIONS(4820), + [sym_entity_reference] = ACTIONS(4820), + [sym_numeric_character_reference] = ACTIONS(4820), + [anon_sym_LT] = ACTIONS(4822), + [anon_sym_GT] = ACTIONS(4820), + [anon_sym_BANG] = ACTIONS(4820), + [anon_sym_DQUOTE] = ACTIONS(4820), + [anon_sym_POUND] = ACTIONS(4820), + [anon_sym_DOLLAR] = ACTIONS(4820), + [anon_sym_PERCENT] = ACTIONS(4820), + [anon_sym_AMP] = ACTIONS(4822), + [anon_sym_SQUOTE] = ACTIONS(4820), + [anon_sym_STAR] = ACTIONS(4820), + [anon_sym_PLUS] = ACTIONS(4820), + [anon_sym_COMMA] = ACTIONS(4820), + [anon_sym_DASH] = ACTIONS(4822), + [anon_sym_DOT] = ACTIONS(4822), + [anon_sym_SLASH] = ACTIONS(4820), + [anon_sym_COLON] = ACTIONS(4820), + [anon_sym_SEMI] = ACTIONS(4820), + [anon_sym_EQ] = ACTIONS(4820), + [anon_sym_QMARK] = ACTIONS(4820), + [anon_sym_LBRACK] = ACTIONS(4822), + [anon_sym_BSLASH] = ACTIONS(4822), + [anon_sym_CARET] = ACTIONS(4822), + [anon_sym__] = ACTIONS(4820), + [anon_sym_BQUOTE] = ACTIONS(4820), + [anon_sym_LBRACE] = ACTIONS(4820), + [anon_sym_PIPE] = ACTIONS(4820), + [anon_sym_TILDE] = ACTIONS(4820), + [anon_sym_LPAREN] = ACTIONS(4820), + [anon_sym_RPAREN] = ACTIONS(4820), + [sym__newline_token] = ACTIONS(4820), + [aux_sym_insert_token1] = ACTIONS(4820), + [aux_sym_delete_token1] = ACTIONS(4820), + [aux_sym_highlight_token1] = ACTIONS(4820), + [aux_sym_edit_comment_token1] = ACTIONS(4820), + [anon_sym_CARET_LBRACK] = ACTIONS(4820), + [anon_sym_LBRACK_CARET] = ACTIONS(4820), + [sym_uri_autolink] = ACTIONS(4820), + [sym_email_autolink] = ACTIONS(4820), + [sym__whitespace_ge_2] = ACTIONS(4820), + [aux_sym__whitespace_token1] = ACTIONS(4822), + [sym__word_no_digit] = ACTIONS(4820), + [sym__digits] = ACTIONS(4820), + [anon_sym_DASH_DASH] = ACTIONS(4822), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4820), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4820), + [sym__code_span_start] = ACTIONS(4820), + [sym__emphasis_open_star] = ACTIONS(4820), + [sym__emphasis_open_underscore] = ACTIONS(4820), + [sym__strikeout_open] = ACTIONS(4820), + [sym__latex_span_start] = ACTIONS(4820), + [sym__single_quote_open] = ACTIONS(4820), + [sym__single_quote_close] = ACTIONS(4820), + [sym__double_quote_open] = ACTIONS(4820), + [sym__superscript_open] = ACTIONS(4820), + [sym__subscript_open] = ACTIONS(4820), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4820), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4820), + [sym__cite_author_in_text] = ACTIONS(4820), + [sym__cite_suppress_author] = ACTIONS(4820), + [sym__shortcode_open_escaped] = ACTIONS(4820), + [sym__shortcode_open] = ACTIONS(4820), + [sym__unclosed_span] = ACTIONS(4820), + }, + [STATE(1146)] = { + [sym__backslash_escape] = ACTIONS(4824), + [sym_entity_reference] = ACTIONS(4824), + [sym_numeric_character_reference] = ACTIONS(4824), + [anon_sym_LT] = ACTIONS(4826), + [anon_sym_GT] = ACTIONS(4824), + [anon_sym_BANG] = ACTIONS(4824), + [anon_sym_DQUOTE] = ACTIONS(4824), + [anon_sym_POUND] = ACTIONS(4824), + [anon_sym_DOLLAR] = ACTIONS(4824), + [anon_sym_PERCENT] = ACTIONS(4824), + [anon_sym_AMP] = ACTIONS(4826), + [anon_sym_SQUOTE] = ACTIONS(4824), + [anon_sym_STAR] = ACTIONS(4824), + [anon_sym_PLUS] = ACTIONS(4824), + [anon_sym_COMMA] = ACTIONS(4824), + [anon_sym_DASH] = ACTIONS(4826), + [anon_sym_DOT] = ACTIONS(4826), + [anon_sym_SLASH] = ACTIONS(4824), + [anon_sym_COLON] = ACTIONS(4824), + [anon_sym_SEMI] = ACTIONS(4824), + [anon_sym_EQ] = ACTIONS(4824), + [anon_sym_QMARK] = ACTIONS(4824), + [anon_sym_LBRACK] = ACTIONS(4826), + [anon_sym_BSLASH] = ACTIONS(4826), + [anon_sym_CARET] = ACTIONS(4826), + [anon_sym__] = ACTIONS(4824), + [anon_sym_BQUOTE] = ACTIONS(4824), + [anon_sym_LBRACE] = ACTIONS(4824), + [anon_sym_PIPE] = ACTIONS(4824), + [anon_sym_TILDE] = ACTIONS(4824), + [anon_sym_LPAREN] = ACTIONS(4824), + [anon_sym_RPAREN] = ACTIONS(4824), + [sym__newline_token] = ACTIONS(4824), + [aux_sym_insert_token1] = ACTIONS(4824), + [aux_sym_delete_token1] = ACTIONS(4824), + [aux_sym_highlight_token1] = ACTIONS(4824), + [aux_sym_edit_comment_token1] = ACTIONS(4824), + [anon_sym_CARET_LBRACK] = ACTIONS(4824), + [anon_sym_LBRACK_CARET] = ACTIONS(4824), + [sym_uri_autolink] = ACTIONS(4824), + [sym_email_autolink] = ACTIONS(4824), + [sym__whitespace_ge_2] = ACTIONS(4824), + [aux_sym__whitespace_token1] = ACTIONS(4826), + [sym__word_no_digit] = ACTIONS(4824), + [sym__digits] = ACTIONS(4824), + [anon_sym_DASH_DASH] = ACTIONS(4826), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4824), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4824), + [sym__code_span_start] = ACTIONS(4824), + [sym__emphasis_open_star] = ACTIONS(4824), + [sym__emphasis_open_underscore] = ACTIONS(4824), + [sym__strikeout_open] = ACTIONS(4824), + [sym__latex_span_start] = ACTIONS(4824), + [sym__single_quote_open] = ACTIONS(4824), + [sym__single_quote_close] = ACTIONS(4824), + [sym__double_quote_open] = ACTIONS(4824), + [sym__superscript_open] = ACTIONS(4824), + [sym__subscript_open] = ACTIONS(4824), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4824), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4824), + [sym__cite_author_in_text] = ACTIONS(4824), + [sym__cite_suppress_author] = ACTIONS(4824), + [sym__shortcode_open_escaped] = ACTIONS(4824), + [sym__shortcode_open] = ACTIONS(4824), + [sym__unclosed_span] = ACTIONS(4824), + }, + [STATE(1147)] = { + [sym__backslash_escape] = ACTIONS(5064), + [sym_entity_reference] = ACTIONS(5064), + [sym_numeric_character_reference] = ACTIONS(5064), + [anon_sym_LT] = ACTIONS(5066), + [anon_sym_GT] = ACTIONS(5064), + [anon_sym_BANG] = ACTIONS(5064), + [anon_sym_DQUOTE] = ACTIONS(5064), + [anon_sym_POUND] = ACTIONS(5064), + [anon_sym_DOLLAR] = ACTIONS(5064), + [anon_sym_PERCENT] = ACTIONS(5064), + [anon_sym_AMP] = ACTIONS(5066), + [anon_sym_SQUOTE] = ACTIONS(5064), + [anon_sym_STAR] = ACTIONS(5064), + [anon_sym_PLUS] = ACTIONS(5064), + [anon_sym_COMMA] = ACTIONS(5064), + [anon_sym_DASH] = ACTIONS(5066), + [anon_sym_DOT] = ACTIONS(5066), + [anon_sym_SLASH] = ACTIONS(5064), + [anon_sym_COLON] = ACTIONS(5064), + [anon_sym_SEMI] = ACTIONS(5064), + [anon_sym_EQ] = ACTIONS(5064), + [anon_sym_QMARK] = ACTIONS(5064), + [anon_sym_LBRACK] = ACTIONS(5066), + [anon_sym_BSLASH] = ACTIONS(5066), + [anon_sym_CARET] = ACTIONS(5066), + [anon_sym__] = ACTIONS(5064), + [anon_sym_BQUOTE] = ACTIONS(5064), + [anon_sym_LBRACE] = ACTIONS(5064), + [anon_sym_PIPE] = ACTIONS(5064), + [anon_sym_TILDE] = ACTIONS(5064), + [anon_sym_LPAREN] = ACTIONS(5064), + [anon_sym_RPAREN] = ACTIONS(5064), + [sym__newline_token] = ACTIONS(5064), + [aux_sym_insert_token1] = ACTIONS(5064), + [aux_sym_delete_token1] = ACTIONS(5064), + [aux_sym_highlight_token1] = ACTIONS(5064), + [aux_sym_edit_comment_token1] = ACTIONS(5064), + [anon_sym_CARET_LBRACK] = ACTIONS(5064), + [anon_sym_LBRACK_CARET] = ACTIONS(5064), + [sym_uri_autolink] = ACTIONS(5064), + [sym_email_autolink] = ACTIONS(5064), + [sym__whitespace_ge_2] = ACTIONS(5064), + [aux_sym__whitespace_token1] = ACTIONS(5066), + [sym__word_no_digit] = ACTIONS(5064), + [sym__digits] = ACTIONS(5064), + [anon_sym_DASH_DASH] = ACTIONS(5066), + [anon_sym_DASH_DASH_DASH] = ACTIONS(5064), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5064), + [sym__code_span_start] = ACTIONS(5064), + [sym__emphasis_open_star] = ACTIONS(5064), + [sym__emphasis_open_underscore] = ACTIONS(5064), + [sym__emphasis_close_star] = ACTIONS(5064), + [sym__strikeout_open] = ACTIONS(5064), + [sym__latex_span_start] = ACTIONS(5064), + [sym__single_quote_open] = ACTIONS(5064), + [sym__double_quote_open] = ACTIONS(5064), + [sym__superscript_open] = ACTIONS(5064), + [sym__subscript_open] = ACTIONS(5064), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5064), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5064), + [sym__cite_author_in_text] = ACTIONS(5064), + [sym__cite_suppress_author] = ACTIONS(5064), + [sym__shortcode_open_escaped] = ACTIONS(5064), + [sym__shortcode_open] = ACTIONS(5064), + [sym__unclosed_span] = ACTIONS(5064), + }, + [STATE(1148)] = { + [ts_builtin_sym_end] = ACTIONS(4912), + [sym__backslash_escape] = ACTIONS(4912), + [sym_entity_reference] = ACTIONS(4912), + [sym_numeric_character_reference] = ACTIONS(4912), + [anon_sym_LT] = ACTIONS(4914), + [anon_sym_GT] = ACTIONS(4912), + [anon_sym_BANG] = ACTIONS(4912), + [anon_sym_DQUOTE] = ACTIONS(4912), + [anon_sym_POUND] = ACTIONS(4912), + [anon_sym_DOLLAR] = ACTIONS(4912), + [anon_sym_PERCENT] = ACTIONS(4912), + [anon_sym_AMP] = ACTIONS(4914), + [anon_sym_SQUOTE] = ACTIONS(4912), + [anon_sym_STAR] = ACTIONS(4912), + [anon_sym_PLUS] = ACTIONS(4912), + [anon_sym_COMMA] = ACTIONS(4912), + [anon_sym_DASH] = ACTIONS(4914), + [anon_sym_DOT] = ACTIONS(4914), + [anon_sym_SLASH] = ACTIONS(4912), + [anon_sym_COLON] = ACTIONS(4912), + [anon_sym_SEMI] = ACTIONS(4912), + [anon_sym_EQ] = ACTIONS(4912), + [anon_sym_QMARK] = ACTIONS(4912), + [anon_sym_LBRACK] = ACTIONS(4914), + [anon_sym_BSLASH] = ACTIONS(4914), + [anon_sym_CARET] = ACTIONS(4914), + [anon_sym__] = ACTIONS(4912), + [anon_sym_BQUOTE] = ACTIONS(4912), + [anon_sym_LBRACE] = ACTIONS(4912), + [anon_sym_PIPE] = ACTIONS(4912), + [anon_sym_TILDE] = ACTIONS(4912), + [anon_sym_LPAREN] = ACTIONS(4912), + [anon_sym_RPAREN] = ACTIONS(4912), + [sym__newline_token] = ACTIONS(4912), + [aux_sym_insert_token1] = ACTIONS(4912), + [aux_sym_delete_token1] = ACTIONS(4912), + [aux_sym_highlight_token1] = ACTIONS(4912), + [aux_sym_edit_comment_token1] = ACTIONS(4912), + [anon_sym_CARET_LBRACK] = ACTIONS(4912), + [anon_sym_LBRACK_CARET] = ACTIONS(4912), + [sym_uri_autolink] = ACTIONS(4912), + [sym_email_autolink] = ACTIONS(4912), + [sym__whitespace_ge_2] = ACTIONS(4912), + [aux_sym__whitespace_token1] = ACTIONS(4914), + [sym__word_no_digit] = ACTIONS(4912), + [sym__digits] = ACTIONS(4912), + [anon_sym_DASH_DASH] = ACTIONS(4914), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4912), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4912), + [sym__code_span_start] = ACTIONS(4912), + [sym__emphasis_open_star] = ACTIONS(4912), + [sym__emphasis_open_underscore] = ACTIONS(4912), + [sym__strikeout_open] = ACTIONS(4912), + [sym__latex_span_start] = ACTIONS(4912), + [sym__single_quote_open] = ACTIONS(4912), + [sym__double_quote_open] = ACTIONS(4912), + [sym__superscript_open] = ACTIONS(4912), + [sym__subscript_open] = ACTIONS(4912), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4912), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4912), + [sym__cite_author_in_text] = ACTIONS(4912), + [sym__cite_suppress_author] = ACTIONS(4912), + [sym__shortcode_open_escaped] = ACTIONS(4912), + [sym__shortcode_open] = ACTIONS(4912), + [sym__unclosed_span] = ACTIONS(4912), + }, + [STATE(1149)] = { + [sym__backslash_escape] = ACTIONS(4828), + [sym_entity_reference] = ACTIONS(4828), + [sym_numeric_character_reference] = ACTIONS(4828), + [anon_sym_LT] = ACTIONS(4830), + [anon_sym_GT] = ACTIONS(4828), + [anon_sym_BANG] = ACTIONS(4828), + [anon_sym_DQUOTE] = ACTIONS(4828), + [anon_sym_POUND] = ACTIONS(4828), + [anon_sym_DOLLAR] = ACTIONS(4828), + [anon_sym_PERCENT] = ACTIONS(4828), + [anon_sym_AMP] = ACTIONS(4830), + [anon_sym_SQUOTE] = ACTIONS(4828), + [anon_sym_STAR] = ACTIONS(4828), + [anon_sym_PLUS] = ACTIONS(4828), + [anon_sym_COMMA] = ACTIONS(4828), + [anon_sym_DASH] = ACTIONS(4830), + [anon_sym_DOT] = ACTIONS(4830), + [anon_sym_SLASH] = ACTIONS(4828), + [anon_sym_COLON] = ACTIONS(4828), + [anon_sym_SEMI] = ACTIONS(4828), + [anon_sym_EQ] = ACTIONS(4828), + [anon_sym_QMARK] = ACTIONS(4828), + [anon_sym_LBRACK] = ACTIONS(4830), + [anon_sym_BSLASH] = ACTIONS(4830), + [anon_sym_CARET] = ACTIONS(4830), + [anon_sym__] = ACTIONS(4828), + [anon_sym_BQUOTE] = ACTIONS(4828), + [anon_sym_LBRACE] = ACTIONS(4828), + [anon_sym_PIPE] = ACTIONS(4828), + [anon_sym_TILDE] = ACTIONS(4828), + [anon_sym_LPAREN] = ACTIONS(4828), + [anon_sym_RPAREN] = ACTIONS(4828), + [sym__newline_token] = ACTIONS(4828), + [aux_sym_insert_token1] = ACTIONS(4828), + [aux_sym_delete_token1] = ACTIONS(4828), + [aux_sym_highlight_token1] = ACTIONS(4828), + [aux_sym_edit_comment_token1] = ACTIONS(4828), + [anon_sym_CARET_LBRACK] = ACTIONS(4828), + [anon_sym_LBRACK_CARET] = ACTIONS(4828), + [sym_uri_autolink] = ACTIONS(4828), + [sym_email_autolink] = ACTIONS(4828), + [sym__whitespace_ge_2] = ACTIONS(4828), + [aux_sym__whitespace_token1] = ACTIONS(4830), + [sym__word_no_digit] = ACTIONS(4828), + [sym__digits] = ACTIONS(4828), + [anon_sym_DASH_DASH] = ACTIONS(4830), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4828), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4828), + [sym__code_span_start] = ACTIONS(4828), + [sym__emphasis_open_star] = ACTIONS(4828), + [sym__emphasis_open_underscore] = ACTIONS(4828), + [sym__strikeout_open] = ACTIONS(4828), + [sym__latex_span_start] = ACTIONS(4828), + [sym__single_quote_open] = ACTIONS(4828), + [sym__single_quote_close] = ACTIONS(4828), + [sym__double_quote_open] = ACTIONS(4828), + [sym__superscript_open] = ACTIONS(4828), + [sym__subscript_open] = ACTIONS(4828), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4828), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4828), + [sym__cite_author_in_text] = ACTIONS(4828), + [sym__cite_suppress_author] = ACTIONS(4828), + [sym__shortcode_open_escaped] = ACTIONS(4828), + [sym__shortcode_open] = ACTIONS(4828), + [sym__unclosed_span] = ACTIONS(4828), + }, + [STATE(1150)] = { + [ts_builtin_sym_end] = ACTIONS(4916), + [sym__backslash_escape] = ACTIONS(4916), + [sym_entity_reference] = ACTIONS(4916), + [sym_numeric_character_reference] = ACTIONS(4916), + [anon_sym_LT] = ACTIONS(4918), + [anon_sym_GT] = ACTIONS(4916), + [anon_sym_BANG] = ACTIONS(4916), + [anon_sym_DQUOTE] = ACTIONS(4916), + [anon_sym_POUND] = ACTIONS(4916), + [anon_sym_DOLLAR] = ACTIONS(4916), + [anon_sym_PERCENT] = ACTIONS(4916), + [anon_sym_AMP] = ACTIONS(4918), + [anon_sym_SQUOTE] = ACTIONS(4916), + [anon_sym_STAR] = ACTIONS(4916), + [anon_sym_PLUS] = ACTIONS(4916), + [anon_sym_COMMA] = ACTIONS(4916), + [anon_sym_DASH] = ACTIONS(4918), + [anon_sym_DOT] = ACTIONS(4918), + [anon_sym_SLASH] = ACTIONS(4916), + [anon_sym_COLON] = ACTIONS(4916), + [anon_sym_SEMI] = ACTIONS(4916), + [anon_sym_EQ] = ACTIONS(4916), + [anon_sym_QMARK] = ACTIONS(4916), + [anon_sym_LBRACK] = ACTIONS(4918), + [anon_sym_BSLASH] = ACTIONS(4918), + [anon_sym_CARET] = ACTIONS(4918), + [anon_sym__] = ACTIONS(4916), + [anon_sym_BQUOTE] = ACTIONS(4916), + [anon_sym_LBRACE] = ACTIONS(4916), + [anon_sym_PIPE] = ACTIONS(4916), + [anon_sym_TILDE] = ACTIONS(4916), + [anon_sym_LPAREN] = ACTIONS(4916), + [anon_sym_RPAREN] = ACTIONS(4916), + [sym__newline_token] = ACTIONS(4916), + [aux_sym_insert_token1] = ACTIONS(4916), + [aux_sym_delete_token1] = ACTIONS(4916), + [aux_sym_highlight_token1] = ACTIONS(4916), + [aux_sym_edit_comment_token1] = ACTIONS(4916), + [anon_sym_CARET_LBRACK] = ACTIONS(4916), + [anon_sym_LBRACK_CARET] = ACTIONS(4916), + [sym_uri_autolink] = ACTIONS(4916), + [sym_email_autolink] = ACTIONS(4916), + [sym__whitespace_ge_2] = ACTIONS(4916), + [aux_sym__whitespace_token1] = ACTIONS(4918), + [sym__word_no_digit] = ACTIONS(4916), + [sym__digits] = ACTIONS(4916), + [anon_sym_DASH_DASH] = ACTIONS(4918), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4916), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4916), + [sym__code_span_start] = ACTIONS(4916), + [sym__emphasis_open_star] = ACTIONS(4916), + [sym__emphasis_open_underscore] = ACTIONS(4916), + [sym__strikeout_open] = ACTIONS(4916), + [sym__latex_span_start] = ACTIONS(4916), + [sym__single_quote_open] = ACTIONS(4916), + [sym__double_quote_open] = ACTIONS(4916), + [sym__superscript_open] = ACTIONS(4916), + [sym__subscript_open] = ACTIONS(4916), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4916), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4916), + [sym__cite_author_in_text] = ACTIONS(4916), + [sym__cite_suppress_author] = ACTIONS(4916), + [sym__shortcode_open_escaped] = ACTIONS(4916), + [sym__shortcode_open] = ACTIONS(4916), + [sym__unclosed_span] = ACTIONS(4916), + }, + [STATE(1151)] = { + [sym__backslash_escape] = ACTIONS(4832), + [sym_entity_reference] = ACTIONS(4832), + [sym_numeric_character_reference] = ACTIONS(4832), + [anon_sym_LT] = ACTIONS(4834), + [anon_sym_GT] = ACTIONS(4832), + [anon_sym_BANG] = ACTIONS(4832), + [anon_sym_DQUOTE] = ACTIONS(4832), + [anon_sym_POUND] = ACTIONS(4832), + [anon_sym_DOLLAR] = ACTIONS(4832), + [anon_sym_PERCENT] = ACTIONS(4832), + [anon_sym_AMP] = ACTIONS(4834), + [anon_sym_SQUOTE] = ACTIONS(4832), + [anon_sym_STAR] = ACTIONS(4832), + [anon_sym_PLUS] = ACTIONS(4832), + [anon_sym_COMMA] = ACTIONS(4832), + [anon_sym_DASH] = ACTIONS(4834), + [anon_sym_DOT] = ACTIONS(4834), + [anon_sym_SLASH] = ACTIONS(4832), + [anon_sym_COLON] = ACTIONS(4832), + [anon_sym_SEMI] = ACTIONS(4832), + [anon_sym_EQ] = ACTIONS(4832), + [anon_sym_QMARK] = ACTIONS(4832), + [anon_sym_LBRACK] = ACTIONS(4834), + [anon_sym_BSLASH] = ACTIONS(4834), + [anon_sym_CARET] = ACTIONS(4834), + [anon_sym__] = ACTIONS(4832), + [anon_sym_BQUOTE] = ACTIONS(4832), + [anon_sym_LBRACE] = ACTIONS(4832), + [anon_sym_PIPE] = ACTIONS(4832), + [anon_sym_TILDE] = ACTIONS(4832), + [anon_sym_LPAREN] = ACTIONS(4832), + [anon_sym_RPAREN] = ACTIONS(4832), + [sym__newline_token] = ACTIONS(4832), + [aux_sym_insert_token1] = ACTIONS(4832), + [aux_sym_delete_token1] = ACTIONS(4832), + [aux_sym_highlight_token1] = ACTIONS(4832), + [aux_sym_edit_comment_token1] = ACTIONS(4832), + [anon_sym_CARET_LBRACK] = ACTIONS(4832), + [anon_sym_LBRACK_CARET] = ACTIONS(4832), + [sym_uri_autolink] = ACTIONS(4832), + [sym_email_autolink] = ACTIONS(4832), + [sym__whitespace_ge_2] = ACTIONS(4832), + [aux_sym__whitespace_token1] = ACTIONS(4834), + [sym__word_no_digit] = ACTIONS(4832), + [sym__digits] = ACTIONS(4832), + [anon_sym_DASH_DASH] = ACTIONS(4834), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4832), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4832), + [sym__code_span_start] = ACTIONS(4832), + [sym__emphasis_open_star] = ACTIONS(4832), + [sym__emphasis_open_underscore] = ACTIONS(4832), + [sym__strikeout_open] = ACTIONS(4832), + [sym__latex_span_start] = ACTIONS(4832), + [sym__single_quote_open] = ACTIONS(4832), + [sym__single_quote_close] = ACTIONS(4832), + [sym__double_quote_open] = ACTIONS(4832), + [sym__superscript_open] = ACTIONS(4832), + [sym__subscript_open] = ACTIONS(4832), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4832), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4832), + [sym__cite_author_in_text] = ACTIONS(4832), + [sym__cite_suppress_author] = ACTIONS(4832), + [sym__shortcode_open_escaped] = ACTIONS(4832), + [sym__shortcode_open] = ACTIONS(4832), + [sym__unclosed_span] = ACTIONS(4832), + }, + [STATE(1152)] = { + [ts_builtin_sym_end] = ACTIONS(4920), + [sym__backslash_escape] = ACTIONS(4920), + [sym_entity_reference] = ACTIONS(4920), + [sym_numeric_character_reference] = ACTIONS(4920), + [anon_sym_LT] = ACTIONS(4922), + [anon_sym_GT] = ACTIONS(4920), + [anon_sym_BANG] = ACTIONS(4920), + [anon_sym_DQUOTE] = ACTIONS(4920), + [anon_sym_POUND] = ACTIONS(4920), + [anon_sym_DOLLAR] = ACTIONS(4920), + [anon_sym_PERCENT] = ACTIONS(4920), + [anon_sym_AMP] = ACTIONS(4922), + [anon_sym_SQUOTE] = ACTIONS(4920), + [anon_sym_STAR] = ACTIONS(4920), + [anon_sym_PLUS] = ACTIONS(4920), + [anon_sym_COMMA] = ACTIONS(4920), + [anon_sym_DASH] = ACTIONS(4922), + [anon_sym_DOT] = ACTIONS(4922), + [anon_sym_SLASH] = ACTIONS(4920), + [anon_sym_COLON] = ACTIONS(4920), + [anon_sym_SEMI] = ACTIONS(4920), + [anon_sym_EQ] = ACTIONS(4920), + [anon_sym_QMARK] = ACTIONS(4920), + [anon_sym_LBRACK] = ACTIONS(4922), + [anon_sym_BSLASH] = ACTIONS(4922), + [anon_sym_CARET] = ACTIONS(4922), + [anon_sym__] = ACTIONS(4920), + [anon_sym_BQUOTE] = ACTIONS(4920), + [anon_sym_LBRACE] = ACTIONS(4920), + [anon_sym_PIPE] = ACTIONS(4920), + [anon_sym_TILDE] = ACTIONS(4920), + [anon_sym_LPAREN] = ACTIONS(4920), + [anon_sym_RPAREN] = ACTIONS(4920), + [sym__newline_token] = ACTIONS(4920), + [aux_sym_insert_token1] = ACTIONS(4920), + [aux_sym_delete_token1] = ACTIONS(4920), + [aux_sym_highlight_token1] = ACTIONS(4920), + [aux_sym_edit_comment_token1] = ACTIONS(4920), + [anon_sym_CARET_LBRACK] = ACTIONS(4920), + [anon_sym_LBRACK_CARET] = ACTIONS(4920), + [sym_uri_autolink] = ACTIONS(4920), + [sym_email_autolink] = ACTIONS(4920), + [sym__whitespace_ge_2] = ACTIONS(4920), + [aux_sym__whitespace_token1] = ACTIONS(4922), + [sym__word_no_digit] = ACTIONS(4920), + [sym__digits] = ACTIONS(4920), + [anon_sym_DASH_DASH] = ACTIONS(4922), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4920), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4920), + [sym__code_span_start] = ACTIONS(4920), + [sym__emphasis_open_star] = ACTIONS(4920), + [sym__emphasis_open_underscore] = ACTIONS(4920), + [sym__strikeout_open] = ACTIONS(4920), + [sym__latex_span_start] = ACTIONS(4920), + [sym__single_quote_open] = ACTIONS(4920), + [sym__double_quote_open] = ACTIONS(4920), + [sym__superscript_open] = ACTIONS(4920), + [sym__subscript_open] = ACTIONS(4920), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4920), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4920), + [sym__cite_author_in_text] = ACTIONS(4920), + [sym__cite_suppress_author] = ACTIONS(4920), + [sym__shortcode_open_escaped] = ACTIONS(4920), + [sym__shortcode_open] = ACTIONS(4920), + [sym__unclosed_span] = ACTIONS(4920), + }, + [STATE(1153)] = { + [sym__backslash_escape] = ACTIONS(4836), + [sym_entity_reference] = ACTIONS(4836), + [sym_numeric_character_reference] = ACTIONS(4836), + [anon_sym_LT] = ACTIONS(4838), + [anon_sym_GT] = ACTIONS(4836), + [anon_sym_BANG] = ACTIONS(4836), + [anon_sym_DQUOTE] = ACTIONS(4836), + [anon_sym_POUND] = ACTIONS(4836), + [anon_sym_DOLLAR] = ACTIONS(4836), + [anon_sym_PERCENT] = ACTIONS(4836), + [anon_sym_AMP] = ACTIONS(4838), + [anon_sym_SQUOTE] = ACTIONS(4836), + [anon_sym_STAR] = ACTIONS(4836), + [anon_sym_PLUS] = ACTIONS(4836), + [anon_sym_COMMA] = ACTIONS(4836), + [anon_sym_DASH] = ACTIONS(4838), + [anon_sym_DOT] = ACTIONS(4838), + [anon_sym_SLASH] = ACTIONS(4836), + [anon_sym_COLON] = ACTIONS(4836), + [anon_sym_SEMI] = ACTIONS(4836), + [anon_sym_EQ] = ACTIONS(4836), + [anon_sym_QMARK] = ACTIONS(4836), + [anon_sym_LBRACK] = ACTIONS(4838), + [anon_sym_BSLASH] = ACTIONS(4838), + [anon_sym_CARET] = ACTIONS(4838), + [anon_sym__] = ACTIONS(4836), + [anon_sym_BQUOTE] = ACTIONS(4836), + [anon_sym_LBRACE] = ACTIONS(4836), + [anon_sym_PIPE] = ACTIONS(4836), + [anon_sym_TILDE] = ACTIONS(4836), + [anon_sym_LPAREN] = ACTIONS(4836), + [anon_sym_RPAREN] = ACTIONS(4836), + [sym__newline_token] = ACTIONS(4836), + [aux_sym_insert_token1] = ACTIONS(4836), + [aux_sym_delete_token1] = ACTIONS(4836), + [aux_sym_highlight_token1] = ACTIONS(4836), + [aux_sym_edit_comment_token1] = ACTIONS(4836), + [anon_sym_CARET_LBRACK] = ACTIONS(4836), + [anon_sym_LBRACK_CARET] = ACTIONS(4836), + [sym_uri_autolink] = ACTIONS(4836), + [sym_email_autolink] = ACTIONS(4836), + [sym__whitespace_ge_2] = ACTIONS(4836), + [aux_sym__whitespace_token1] = ACTIONS(4838), + [sym__word_no_digit] = ACTIONS(4836), + [sym__digits] = ACTIONS(4836), + [anon_sym_DASH_DASH] = ACTIONS(4838), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4836), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4836), + [sym__code_span_start] = ACTIONS(4836), + [sym__emphasis_open_star] = ACTIONS(4836), + [sym__emphasis_open_underscore] = ACTIONS(4836), + [sym__strikeout_open] = ACTIONS(4836), + [sym__latex_span_start] = ACTIONS(4836), + [sym__single_quote_open] = ACTIONS(4836), + [sym__single_quote_close] = ACTIONS(4836), + [sym__double_quote_open] = ACTIONS(4836), + [sym__superscript_open] = ACTIONS(4836), + [sym__subscript_open] = ACTIONS(4836), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4836), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4836), + [sym__cite_author_in_text] = ACTIONS(4836), + [sym__cite_suppress_author] = ACTIONS(4836), + [sym__shortcode_open_escaped] = ACTIONS(4836), + [sym__shortcode_open] = ACTIONS(4836), + [sym__unclosed_span] = ACTIONS(4836), + }, + [STATE(1154)] = { + [ts_builtin_sym_end] = ACTIONS(4932), + [sym__backslash_escape] = ACTIONS(4932), + [sym_entity_reference] = ACTIONS(4932), + [sym_numeric_character_reference] = ACTIONS(4932), + [anon_sym_LT] = ACTIONS(4934), + [anon_sym_GT] = ACTIONS(4932), + [anon_sym_BANG] = ACTIONS(4932), + [anon_sym_DQUOTE] = ACTIONS(4932), + [anon_sym_POUND] = ACTIONS(4932), + [anon_sym_DOLLAR] = ACTIONS(4932), + [anon_sym_PERCENT] = ACTIONS(4932), + [anon_sym_AMP] = ACTIONS(4934), + [anon_sym_SQUOTE] = ACTIONS(4932), + [anon_sym_STAR] = ACTIONS(4932), + [anon_sym_PLUS] = ACTIONS(4932), + [anon_sym_COMMA] = ACTIONS(4932), + [anon_sym_DASH] = ACTIONS(4934), + [anon_sym_DOT] = ACTIONS(4934), + [anon_sym_SLASH] = ACTIONS(4932), + [anon_sym_COLON] = ACTIONS(4932), + [anon_sym_SEMI] = ACTIONS(4932), + [anon_sym_EQ] = ACTIONS(4932), + [anon_sym_QMARK] = ACTIONS(4932), + [anon_sym_LBRACK] = ACTIONS(4934), + [anon_sym_BSLASH] = ACTIONS(4934), + [anon_sym_CARET] = ACTIONS(4934), + [anon_sym__] = ACTIONS(4932), + [anon_sym_BQUOTE] = ACTIONS(4932), + [anon_sym_LBRACE] = ACTIONS(4932), + [anon_sym_PIPE] = ACTIONS(4932), + [anon_sym_TILDE] = ACTIONS(4932), + [anon_sym_LPAREN] = ACTIONS(4932), + [anon_sym_RPAREN] = ACTIONS(4932), + [sym__newline_token] = ACTIONS(4932), + [aux_sym_insert_token1] = ACTIONS(4932), + [aux_sym_delete_token1] = ACTIONS(4932), + [aux_sym_highlight_token1] = ACTIONS(4932), + [aux_sym_edit_comment_token1] = ACTIONS(4932), + [anon_sym_CARET_LBRACK] = ACTIONS(4932), + [anon_sym_LBRACK_CARET] = ACTIONS(4932), + [sym_uri_autolink] = ACTIONS(4932), + [sym_email_autolink] = ACTIONS(4932), + [sym__whitespace_ge_2] = ACTIONS(4932), + [aux_sym__whitespace_token1] = ACTIONS(4934), + [sym__word_no_digit] = ACTIONS(4932), + [sym__digits] = ACTIONS(4932), + [anon_sym_DASH_DASH] = ACTIONS(4934), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4932), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4932), + [sym__code_span_start] = ACTIONS(4932), + [sym__emphasis_open_star] = ACTIONS(4932), + [sym__emphasis_open_underscore] = ACTIONS(4932), + [sym__strikeout_open] = ACTIONS(4932), + [sym__latex_span_start] = ACTIONS(4932), + [sym__single_quote_open] = ACTIONS(4932), + [sym__double_quote_open] = ACTIONS(4932), + [sym__superscript_open] = ACTIONS(4932), + [sym__subscript_open] = ACTIONS(4932), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4932), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4932), + [sym__cite_author_in_text] = ACTIONS(4932), + [sym__cite_suppress_author] = ACTIONS(4932), + [sym__shortcode_open_escaped] = ACTIONS(4932), + [sym__shortcode_open] = ACTIONS(4932), + [sym__unclosed_span] = ACTIONS(4932), + }, + [STATE(1155)] = { + [sym__backslash_escape] = ACTIONS(4690), + [sym_entity_reference] = ACTIONS(4690), + [sym_numeric_character_reference] = ACTIONS(4690), + [anon_sym_LT] = ACTIONS(4692), + [anon_sym_GT] = ACTIONS(4690), + [anon_sym_BANG] = ACTIONS(4690), + [anon_sym_DQUOTE] = ACTIONS(4690), + [anon_sym_POUND] = ACTIONS(4690), + [anon_sym_DOLLAR] = ACTIONS(4690), + [anon_sym_PERCENT] = ACTIONS(4690), + [anon_sym_AMP] = ACTIONS(4692), + [anon_sym_SQUOTE] = ACTIONS(4690), + [anon_sym_STAR] = ACTIONS(4690), + [anon_sym_PLUS] = ACTIONS(4690), + [anon_sym_COMMA] = ACTIONS(4690), + [anon_sym_DASH] = ACTIONS(4692), + [anon_sym_DOT] = ACTIONS(4692), + [anon_sym_SLASH] = ACTIONS(4690), + [anon_sym_COLON] = ACTIONS(4690), + [anon_sym_SEMI] = ACTIONS(4690), + [anon_sym_EQ] = ACTIONS(4690), + [anon_sym_QMARK] = ACTIONS(4690), + [anon_sym_LBRACK] = ACTIONS(4692), + [anon_sym_BSLASH] = ACTIONS(4692), + [anon_sym_CARET] = ACTIONS(4692), + [anon_sym__] = ACTIONS(4690), + [anon_sym_BQUOTE] = ACTIONS(4690), + [anon_sym_LBRACE] = ACTIONS(4690), + [anon_sym_PIPE] = ACTIONS(4690), + [anon_sym_TILDE] = ACTIONS(4690), + [anon_sym_LPAREN] = ACTIONS(4690), + [anon_sym_RPAREN] = ACTIONS(4690), + [sym__newline_token] = ACTIONS(4690), + [aux_sym_insert_token1] = ACTIONS(4690), + [aux_sym_delete_token1] = ACTIONS(4690), + [aux_sym_highlight_token1] = ACTIONS(4690), + [aux_sym_edit_comment_token1] = ACTIONS(4690), + [anon_sym_CARET_LBRACK] = ACTIONS(4690), + [anon_sym_LBRACK_CARET] = ACTIONS(4690), + [sym_uri_autolink] = ACTIONS(4690), + [sym_email_autolink] = ACTIONS(4690), + [sym__whitespace_ge_2] = ACTIONS(4690), + [aux_sym__whitespace_token1] = ACTIONS(4692), + [sym__word_no_digit] = ACTIONS(4690), + [sym__digits] = ACTIONS(4690), + [anon_sym_DASH_DASH] = ACTIONS(4692), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4690), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4690), + [sym__code_span_start] = ACTIONS(4690), + [sym__emphasis_open_star] = ACTIONS(4690), + [sym__emphasis_open_underscore] = ACTIONS(4690), + [sym__emphasis_close_underscore] = ACTIONS(4690), + [sym__strikeout_open] = ACTIONS(4690), + [sym__latex_span_start] = ACTIONS(4690), + [sym__single_quote_open] = ACTIONS(4690), + [sym__double_quote_open] = ACTIONS(4690), + [sym__superscript_open] = ACTIONS(4690), + [sym__subscript_open] = ACTIONS(4690), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4690), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4690), + [sym__cite_author_in_text] = ACTIONS(4690), + [sym__cite_suppress_author] = ACTIONS(4690), + [sym__shortcode_open_escaped] = ACTIONS(4690), + [sym__shortcode_open] = ACTIONS(4690), + [sym__unclosed_span] = ACTIONS(4690), + }, + [STATE(1156)] = { + [sym__backslash_escape] = ACTIONS(4844), + [sym_entity_reference] = ACTIONS(4844), + [sym_numeric_character_reference] = ACTIONS(4844), + [anon_sym_LT] = ACTIONS(4846), + [anon_sym_GT] = ACTIONS(4844), + [anon_sym_BANG] = ACTIONS(4844), + [anon_sym_DQUOTE] = ACTIONS(4844), + [anon_sym_POUND] = ACTIONS(4844), + [anon_sym_DOLLAR] = ACTIONS(4844), + [anon_sym_PERCENT] = ACTIONS(4844), + [anon_sym_AMP] = ACTIONS(4846), + [anon_sym_SQUOTE] = ACTIONS(4844), + [anon_sym_STAR] = ACTIONS(4844), + [anon_sym_PLUS] = ACTIONS(4844), + [anon_sym_COMMA] = ACTIONS(4844), + [anon_sym_DASH] = ACTIONS(4846), + [anon_sym_DOT] = ACTIONS(4846), + [anon_sym_SLASH] = ACTIONS(4844), + [anon_sym_COLON] = ACTIONS(4844), + [anon_sym_SEMI] = ACTIONS(4844), + [anon_sym_EQ] = ACTIONS(4844), + [anon_sym_QMARK] = ACTIONS(4844), + [anon_sym_LBRACK] = ACTIONS(4846), + [anon_sym_BSLASH] = ACTIONS(4846), + [anon_sym_CARET] = ACTIONS(4846), + [anon_sym__] = ACTIONS(4844), + [anon_sym_BQUOTE] = ACTIONS(4844), + [anon_sym_LBRACE] = ACTIONS(4844), + [anon_sym_PIPE] = ACTIONS(4844), + [anon_sym_TILDE] = ACTIONS(4844), + [anon_sym_LPAREN] = ACTIONS(4844), + [anon_sym_RPAREN] = ACTIONS(4844), + [sym__newline_token] = ACTIONS(4844), + [aux_sym_insert_token1] = ACTIONS(4844), + [aux_sym_delete_token1] = ACTIONS(4844), + [aux_sym_highlight_token1] = ACTIONS(4844), + [aux_sym_edit_comment_token1] = ACTIONS(4844), + [anon_sym_CARET_LBRACK] = ACTIONS(4844), + [anon_sym_LBRACK_CARET] = ACTIONS(4844), + [sym_uri_autolink] = ACTIONS(4844), + [sym_email_autolink] = ACTIONS(4844), + [sym__whitespace_ge_2] = ACTIONS(4844), + [aux_sym__whitespace_token1] = ACTIONS(4846), + [sym__word_no_digit] = ACTIONS(4844), + [sym__digits] = ACTIONS(4844), + [anon_sym_DASH_DASH] = ACTIONS(4846), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4844), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4844), + [sym__code_span_start] = ACTIONS(4844), + [sym__emphasis_open_star] = ACTIONS(4844), + [sym__emphasis_open_underscore] = ACTIONS(4844), + [sym__strikeout_open] = ACTIONS(4844), + [sym__latex_span_start] = ACTIONS(4844), + [sym__single_quote_open] = ACTIONS(4844), + [sym__single_quote_close] = ACTIONS(4844), + [sym__double_quote_open] = ACTIONS(4844), + [sym__superscript_open] = ACTIONS(4844), + [sym__subscript_open] = ACTIONS(4844), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4844), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4844), + [sym__cite_author_in_text] = ACTIONS(4844), + [sym__cite_suppress_author] = ACTIONS(4844), + [sym__shortcode_open_escaped] = ACTIONS(4844), + [sym__shortcode_open] = ACTIONS(4844), + [sym__unclosed_span] = ACTIONS(4844), + }, + [STATE(1157)] = { + [ts_builtin_sym_end] = ACTIONS(4944), + [sym__backslash_escape] = ACTIONS(4944), + [sym_entity_reference] = ACTIONS(4944), + [sym_numeric_character_reference] = ACTIONS(4944), + [anon_sym_LT] = ACTIONS(4946), + [anon_sym_GT] = ACTIONS(4944), + [anon_sym_BANG] = ACTIONS(4944), + [anon_sym_DQUOTE] = ACTIONS(4944), + [anon_sym_POUND] = ACTIONS(4944), + [anon_sym_DOLLAR] = ACTIONS(4944), + [anon_sym_PERCENT] = ACTIONS(4944), + [anon_sym_AMP] = ACTIONS(4946), + [anon_sym_SQUOTE] = ACTIONS(4944), + [anon_sym_STAR] = ACTIONS(4944), + [anon_sym_PLUS] = ACTIONS(4944), + [anon_sym_COMMA] = ACTIONS(4944), + [anon_sym_DASH] = ACTIONS(4946), + [anon_sym_DOT] = ACTIONS(4946), + [anon_sym_SLASH] = ACTIONS(4944), + [anon_sym_COLON] = ACTIONS(4944), + [anon_sym_SEMI] = ACTIONS(4944), + [anon_sym_EQ] = ACTIONS(4944), + [anon_sym_QMARK] = ACTIONS(4944), + [anon_sym_LBRACK] = ACTIONS(4946), + [anon_sym_BSLASH] = ACTIONS(4946), + [anon_sym_CARET] = ACTIONS(4946), + [anon_sym__] = ACTIONS(4944), + [anon_sym_BQUOTE] = ACTIONS(4944), + [anon_sym_LBRACE] = ACTIONS(4944), + [anon_sym_PIPE] = ACTIONS(4944), + [anon_sym_TILDE] = ACTIONS(4944), + [anon_sym_LPAREN] = ACTIONS(4944), + [anon_sym_RPAREN] = ACTIONS(4944), + [sym__newline_token] = ACTIONS(4944), + [aux_sym_insert_token1] = ACTIONS(4944), + [aux_sym_delete_token1] = ACTIONS(4944), + [aux_sym_highlight_token1] = ACTIONS(4944), + [aux_sym_edit_comment_token1] = ACTIONS(4944), + [anon_sym_CARET_LBRACK] = ACTIONS(4944), + [anon_sym_LBRACK_CARET] = ACTIONS(4944), + [sym_uri_autolink] = ACTIONS(4944), + [sym_email_autolink] = ACTIONS(4944), + [sym__whitespace_ge_2] = ACTIONS(4944), + [aux_sym__whitespace_token1] = ACTIONS(4946), + [sym__word_no_digit] = ACTIONS(4944), + [sym__digits] = ACTIONS(4944), + [anon_sym_DASH_DASH] = ACTIONS(4946), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4944), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4944), + [sym__code_span_start] = ACTIONS(4944), + [sym__emphasis_open_star] = ACTIONS(4944), + [sym__emphasis_open_underscore] = ACTIONS(4944), + [sym__strikeout_open] = ACTIONS(4944), + [sym__latex_span_start] = ACTIONS(4944), + [sym__single_quote_open] = ACTIONS(4944), + [sym__double_quote_open] = ACTIONS(4944), + [sym__superscript_open] = ACTIONS(4944), + [sym__subscript_open] = ACTIONS(4944), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4944), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4944), + [sym__cite_author_in_text] = ACTIONS(4944), + [sym__cite_suppress_author] = ACTIONS(4944), + [sym__shortcode_open_escaped] = ACTIONS(4944), + [sym__shortcode_open] = ACTIONS(4944), + [sym__unclosed_span] = ACTIONS(4944), + }, + [STATE(1158)] = { + [sym__backslash_escape] = ACTIONS(4848), + [sym_entity_reference] = ACTIONS(4848), + [sym_numeric_character_reference] = ACTIONS(4848), + [anon_sym_LT] = ACTIONS(4850), + [anon_sym_GT] = ACTIONS(4848), + [anon_sym_BANG] = ACTIONS(4848), + [anon_sym_DQUOTE] = ACTIONS(4848), + [anon_sym_POUND] = ACTIONS(4848), + [anon_sym_DOLLAR] = ACTIONS(4848), + [anon_sym_PERCENT] = ACTIONS(4848), + [anon_sym_AMP] = ACTIONS(4850), + [anon_sym_SQUOTE] = ACTIONS(4848), + [anon_sym_STAR] = ACTIONS(4848), + [anon_sym_PLUS] = ACTIONS(4848), + [anon_sym_COMMA] = ACTIONS(4848), + [anon_sym_DASH] = ACTIONS(4850), + [anon_sym_DOT] = ACTIONS(4850), + [anon_sym_SLASH] = ACTIONS(4848), + [anon_sym_COLON] = ACTIONS(4848), + [anon_sym_SEMI] = ACTIONS(4848), + [anon_sym_EQ] = ACTIONS(4848), + [anon_sym_QMARK] = ACTIONS(4848), + [anon_sym_LBRACK] = ACTIONS(4850), + [anon_sym_BSLASH] = ACTIONS(4850), + [anon_sym_CARET] = ACTIONS(4850), + [anon_sym__] = ACTIONS(4848), + [anon_sym_BQUOTE] = ACTIONS(4848), + [anon_sym_LBRACE] = ACTIONS(4848), + [anon_sym_PIPE] = ACTIONS(4848), + [anon_sym_TILDE] = ACTIONS(4848), + [anon_sym_LPAREN] = ACTIONS(4848), + [anon_sym_RPAREN] = ACTIONS(4848), + [sym__newline_token] = ACTIONS(4848), + [aux_sym_insert_token1] = ACTIONS(4848), + [aux_sym_delete_token1] = ACTIONS(4848), + [aux_sym_highlight_token1] = ACTIONS(4848), + [aux_sym_edit_comment_token1] = ACTIONS(4848), + [anon_sym_CARET_LBRACK] = ACTIONS(4848), + [anon_sym_LBRACK_CARET] = ACTIONS(4848), + [sym_uri_autolink] = ACTIONS(4848), + [sym_email_autolink] = ACTIONS(4848), + [sym__whitespace_ge_2] = ACTIONS(4848), + [aux_sym__whitespace_token1] = ACTIONS(4850), + [sym__word_no_digit] = ACTIONS(4848), + [sym__digits] = ACTIONS(4848), + [anon_sym_DASH_DASH] = ACTIONS(4850), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4848), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4848), + [sym__code_span_start] = ACTIONS(4848), + [sym__emphasis_open_star] = ACTIONS(4848), + [sym__emphasis_open_underscore] = ACTIONS(4848), + [sym__strikeout_open] = ACTIONS(4848), + [sym__latex_span_start] = ACTIONS(4848), + [sym__single_quote_open] = ACTIONS(4848), + [sym__single_quote_close] = ACTIONS(4848), + [sym__double_quote_open] = ACTIONS(4848), + [sym__superscript_open] = ACTIONS(4848), + [sym__subscript_open] = ACTIONS(4848), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4848), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4848), + [sym__cite_author_in_text] = ACTIONS(4848), + [sym__cite_suppress_author] = ACTIONS(4848), + [sym__shortcode_open_escaped] = ACTIONS(4848), + [sym__shortcode_open] = ACTIONS(4848), + [sym__unclosed_span] = ACTIONS(4848), + }, + [STATE(1159)] = { + [sym__backslash_escape] = ACTIONS(4852), + [sym_entity_reference] = ACTIONS(4852), + [sym_numeric_character_reference] = ACTIONS(4852), + [anon_sym_LT] = ACTIONS(4854), + [anon_sym_GT] = ACTIONS(4852), + [anon_sym_BANG] = ACTIONS(4852), + [anon_sym_DQUOTE] = ACTIONS(4852), + [anon_sym_POUND] = ACTIONS(4852), + [anon_sym_DOLLAR] = ACTIONS(4852), + [anon_sym_PERCENT] = ACTIONS(4852), + [anon_sym_AMP] = ACTIONS(4854), + [anon_sym_SQUOTE] = ACTIONS(4852), + [anon_sym_STAR] = ACTIONS(4852), + [anon_sym_PLUS] = ACTIONS(4852), + [anon_sym_COMMA] = ACTIONS(4852), + [anon_sym_DASH] = ACTIONS(4854), + [anon_sym_DOT] = ACTIONS(4854), + [anon_sym_SLASH] = ACTIONS(4852), + [anon_sym_COLON] = ACTIONS(4852), + [anon_sym_SEMI] = ACTIONS(4852), + [anon_sym_EQ] = ACTIONS(4852), + [anon_sym_QMARK] = ACTIONS(4852), + [anon_sym_LBRACK] = ACTIONS(4854), + [anon_sym_BSLASH] = ACTIONS(4854), + [anon_sym_CARET] = ACTIONS(4854), + [anon_sym__] = ACTIONS(4852), + [anon_sym_BQUOTE] = ACTIONS(4852), + [anon_sym_LBRACE] = ACTIONS(4852), + [anon_sym_PIPE] = ACTIONS(4852), + [anon_sym_TILDE] = ACTIONS(4852), + [anon_sym_LPAREN] = ACTIONS(4852), + [anon_sym_RPAREN] = ACTIONS(4852), + [sym__newline_token] = ACTIONS(4852), + [aux_sym_insert_token1] = ACTIONS(4852), + [aux_sym_delete_token1] = ACTIONS(4852), + [aux_sym_highlight_token1] = ACTIONS(4852), + [aux_sym_edit_comment_token1] = ACTIONS(4852), + [anon_sym_CARET_LBRACK] = ACTIONS(4852), + [anon_sym_LBRACK_CARET] = ACTIONS(4852), + [sym_uri_autolink] = ACTIONS(4852), + [sym_email_autolink] = ACTIONS(4852), + [sym__whitespace_ge_2] = ACTIONS(4852), + [aux_sym__whitespace_token1] = ACTIONS(4854), + [sym__word_no_digit] = ACTIONS(4852), + [sym__digits] = ACTIONS(4852), + [anon_sym_DASH_DASH] = ACTIONS(4854), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4852), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4852), + [sym__code_span_start] = ACTIONS(4852), + [sym__emphasis_open_star] = ACTIONS(4852), + [sym__emphasis_open_underscore] = ACTIONS(4852), + [sym__strikeout_open] = ACTIONS(4852), + [sym__latex_span_start] = ACTIONS(4852), + [sym__single_quote_open] = ACTIONS(4852), + [sym__single_quote_close] = ACTIONS(4852), + [sym__double_quote_open] = ACTIONS(4852), + [sym__superscript_open] = ACTIONS(4852), + [sym__subscript_open] = ACTIONS(4852), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4852), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4852), + [sym__cite_author_in_text] = ACTIONS(4852), + [sym__cite_suppress_author] = ACTIONS(4852), + [sym__shortcode_open_escaped] = ACTIONS(4852), + [sym__shortcode_open] = ACTIONS(4852), + [sym__unclosed_span] = ACTIONS(4852), + }, + [STATE(1160)] = { + [ts_builtin_sym_end] = ACTIONS(4648), + [sym__backslash_escape] = ACTIONS(4648), + [sym_entity_reference] = ACTIONS(4648), + [sym_numeric_character_reference] = ACTIONS(4648), + [anon_sym_LT] = ACTIONS(4650), + [anon_sym_GT] = ACTIONS(4648), + [anon_sym_BANG] = ACTIONS(4648), + [anon_sym_DQUOTE] = ACTIONS(4648), + [anon_sym_POUND] = ACTIONS(4648), + [anon_sym_DOLLAR] = ACTIONS(4648), + [anon_sym_PERCENT] = ACTIONS(4648), + [anon_sym_AMP] = ACTIONS(4650), + [anon_sym_SQUOTE] = ACTIONS(4648), + [anon_sym_STAR] = ACTIONS(4648), + [anon_sym_PLUS] = ACTIONS(4648), + [anon_sym_COMMA] = ACTIONS(4648), + [anon_sym_DASH] = ACTIONS(4650), + [anon_sym_DOT] = ACTIONS(4650), + [anon_sym_SLASH] = ACTIONS(4648), + [anon_sym_COLON] = ACTIONS(4648), + [anon_sym_SEMI] = ACTIONS(4648), + [anon_sym_EQ] = ACTIONS(4648), + [anon_sym_QMARK] = ACTIONS(4648), + [anon_sym_LBRACK] = ACTIONS(4650), + [anon_sym_BSLASH] = ACTIONS(4650), + [anon_sym_CARET] = ACTIONS(4650), + [anon_sym__] = ACTIONS(4648), + [anon_sym_BQUOTE] = ACTIONS(4648), + [anon_sym_LBRACE] = ACTIONS(4648), + [anon_sym_PIPE] = ACTIONS(4648), + [anon_sym_TILDE] = ACTIONS(4648), + [anon_sym_LPAREN] = ACTIONS(4648), + [anon_sym_RPAREN] = ACTIONS(4648), + [sym__newline_token] = ACTIONS(4648), + [aux_sym_insert_token1] = ACTIONS(4648), + [aux_sym_delete_token1] = ACTIONS(4648), + [aux_sym_highlight_token1] = ACTIONS(4648), + [aux_sym_edit_comment_token1] = ACTIONS(4648), + [anon_sym_CARET_LBRACK] = ACTIONS(4648), + [anon_sym_LBRACK_CARET] = ACTIONS(4648), + [sym_uri_autolink] = ACTIONS(4648), + [sym_email_autolink] = ACTIONS(4648), + [sym__whitespace_ge_2] = ACTIONS(4648), + [aux_sym__whitespace_token1] = ACTIONS(4650), + [sym__word_no_digit] = ACTIONS(4648), + [sym__digits] = ACTIONS(4648), + [anon_sym_DASH_DASH] = ACTIONS(4650), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4648), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4648), + [sym__code_span_start] = ACTIONS(4648), + [sym__emphasis_open_star] = ACTIONS(4648), + [sym__emphasis_open_underscore] = ACTIONS(4648), + [sym__strikeout_open] = ACTIONS(4648), + [sym__latex_span_start] = ACTIONS(4648), + [sym__single_quote_open] = ACTIONS(4648), + [sym__double_quote_open] = ACTIONS(4648), + [sym__superscript_open] = ACTIONS(4648), + [sym__subscript_open] = ACTIONS(4648), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4648), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4648), + [sym__cite_author_in_text] = ACTIONS(4648), + [sym__cite_suppress_author] = ACTIONS(4648), + [sym__shortcode_open_escaped] = ACTIONS(4648), + [sym__shortcode_open] = ACTIONS(4648), + [sym__unclosed_span] = ACTIONS(4648), + }, + [STATE(1161)] = { + [ts_builtin_sym_end] = ACTIONS(4952), + [sym__backslash_escape] = ACTIONS(4952), + [sym_entity_reference] = ACTIONS(4952), + [sym_numeric_character_reference] = ACTIONS(4952), + [anon_sym_LT] = ACTIONS(4954), + [anon_sym_GT] = ACTIONS(4952), + [anon_sym_BANG] = ACTIONS(4952), + [anon_sym_DQUOTE] = ACTIONS(4952), + [anon_sym_POUND] = ACTIONS(4952), + [anon_sym_DOLLAR] = ACTIONS(4952), + [anon_sym_PERCENT] = ACTIONS(4952), + [anon_sym_AMP] = ACTIONS(4954), + [anon_sym_SQUOTE] = ACTIONS(4952), + [anon_sym_STAR] = ACTIONS(4952), + [anon_sym_PLUS] = ACTIONS(4952), + [anon_sym_COMMA] = ACTIONS(4952), + [anon_sym_DASH] = ACTIONS(4954), + [anon_sym_DOT] = ACTIONS(4954), + [anon_sym_SLASH] = ACTIONS(4952), + [anon_sym_COLON] = ACTIONS(4952), + [anon_sym_SEMI] = ACTIONS(4952), + [anon_sym_EQ] = ACTIONS(4952), + [anon_sym_QMARK] = ACTIONS(4952), + [anon_sym_LBRACK] = ACTIONS(4954), + [anon_sym_BSLASH] = ACTIONS(4954), + [anon_sym_CARET] = ACTIONS(4954), + [anon_sym__] = ACTIONS(4952), + [anon_sym_BQUOTE] = ACTIONS(4952), + [anon_sym_LBRACE] = ACTIONS(4952), + [anon_sym_PIPE] = ACTIONS(4952), + [anon_sym_TILDE] = ACTIONS(4952), + [anon_sym_LPAREN] = ACTIONS(4952), + [anon_sym_RPAREN] = ACTIONS(4952), + [sym__newline_token] = ACTIONS(4952), + [aux_sym_insert_token1] = ACTIONS(4952), + [aux_sym_delete_token1] = ACTIONS(4952), + [aux_sym_highlight_token1] = ACTIONS(4952), + [aux_sym_edit_comment_token1] = ACTIONS(4952), + [anon_sym_CARET_LBRACK] = ACTIONS(4952), + [anon_sym_LBRACK_CARET] = ACTIONS(4952), + [sym_uri_autolink] = ACTIONS(4952), + [sym_email_autolink] = ACTIONS(4952), + [sym__whitespace_ge_2] = ACTIONS(4952), + [aux_sym__whitespace_token1] = ACTIONS(4954), + [sym__word_no_digit] = ACTIONS(4952), + [sym__digits] = ACTIONS(4952), + [anon_sym_DASH_DASH] = ACTIONS(4954), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4952), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4952), + [sym__code_span_start] = ACTIONS(4952), + [sym__emphasis_open_star] = ACTIONS(4952), + [sym__emphasis_open_underscore] = ACTIONS(4952), + [sym__strikeout_open] = ACTIONS(4952), + [sym__latex_span_start] = ACTIONS(4952), + [sym__single_quote_open] = ACTIONS(4952), + [sym__double_quote_open] = ACTIONS(4952), + [sym__superscript_open] = ACTIONS(4952), + [sym__subscript_open] = ACTIONS(4952), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4952), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4952), + [sym__cite_author_in_text] = ACTIONS(4952), + [sym__cite_suppress_author] = ACTIONS(4952), + [sym__shortcode_open_escaped] = ACTIONS(4952), + [sym__shortcode_open] = ACTIONS(4952), + [sym__unclosed_span] = ACTIONS(4952), + }, + [STATE(1162)] = { + [ts_builtin_sym_end] = ACTIONS(4956), + [sym__backslash_escape] = ACTIONS(4956), + [sym_entity_reference] = ACTIONS(4956), + [sym_numeric_character_reference] = ACTIONS(4956), + [anon_sym_LT] = ACTIONS(4958), + [anon_sym_GT] = ACTIONS(4956), + [anon_sym_BANG] = ACTIONS(4956), + [anon_sym_DQUOTE] = ACTIONS(4956), + [anon_sym_POUND] = ACTIONS(4956), + [anon_sym_DOLLAR] = ACTIONS(4956), + [anon_sym_PERCENT] = ACTIONS(4956), + [anon_sym_AMP] = ACTIONS(4958), + [anon_sym_SQUOTE] = ACTIONS(4956), + [anon_sym_STAR] = ACTIONS(4956), + [anon_sym_PLUS] = ACTIONS(4956), + [anon_sym_COMMA] = ACTIONS(4956), + [anon_sym_DASH] = ACTIONS(4958), + [anon_sym_DOT] = ACTIONS(4958), + [anon_sym_SLASH] = ACTIONS(4956), + [anon_sym_COLON] = ACTIONS(4956), + [anon_sym_SEMI] = ACTIONS(4956), + [anon_sym_EQ] = ACTIONS(4956), + [anon_sym_QMARK] = ACTIONS(4956), + [anon_sym_LBRACK] = ACTIONS(4958), + [anon_sym_BSLASH] = ACTIONS(4958), + [anon_sym_CARET] = ACTIONS(4958), + [anon_sym__] = ACTIONS(4956), + [anon_sym_BQUOTE] = ACTIONS(4956), + [anon_sym_LBRACE] = ACTIONS(4956), + [anon_sym_PIPE] = ACTIONS(4956), + [anon_sym_TILDE] = ACTIONS(4956), + [anon_sym_LPAREN] = ACTIONS(4956), + [anon_sym_RPAREN] = ACTIONS(4956), + [sym__newline_token] = ACTIONS(4956), + [aux_sym_insert_token1] = ACTIONS(4956), + [aux_sym_delete_token1] = ACTIONS(4956), + [aux_sym_highlight_token1] = ACTIONS(4956), + [aux_sym_edit_comment_token1] = ACTIONS(4956), + [anon_sym_CARET_LBRACK] = ACTIONS(4956), + [anon_sym_LBRACK_CARET] = ACTIONS(4956), + [sym_uri_autolink] = ACTIONS(4956), + [sym_email_autolink] = ACTIONS(4956), + [sym__whitespace_ge_2] = ACTIONS(4956), + [aux_sym__whitespace_token1] = ACTIONS(4958), + [sym__word_no_digit] = ACTIONS(4956), + [sym__digits] = ACTIONS(4956), + [anon_sym_DASH_DASH] = ACTIONS(4958), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4956), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4956), + [sym__code_span_start] = ACTIONS(4956), + [sym__emphasis_open_star] = ACTIONS(4956), + [sym__emphasis_open_underscore] = ACTIONS(4956), + [sym__strikeout_open] = ACTIONS(4956), + [sym__latex_span_start] = ACTIONS(4956), + [sym__single_quote_open] = ACTIONS(4956), + [sym__double_quote_open] = ACTIONS(4956), + [sym__superscript_open] = ACTIONS(4956), + [sym__subscript_open] = ACTIONS(4956), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4956), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4956), + [sym__cite_author_in_text] = ACTIONS(4956), + [sym__cite_suppress_author] = ACTIONS(4956), + [sym__shortcode_open_escaped] = ACTIONS(4956), + [sym__shortcode_open] = ACTIONS(4956), + [sym__unclosed_span] = ACTIONS(4956), + }, + [STATE(1163)] = { + [ts_builtin_sym_end] = ACTIONS(4960), + [sym__backslash_escape] = ACTIONS(4960), + [sym_entity_reference] = ACTIONS(4960), + [sym_numeric_character_reference] = ACTIONS(4960), + [anon_sym_LT] = ACTIONS(4962), + [anon_sym_GT] = ACTIONS(4960), + [anon_sym_BANG] = ACTIONS(4960), + [anon_sym_DQUOTE] = ACTIONS(4960), + [anon_sym_POUND] = ACTIONS(4960), + [anon_sym_DOLLAR] = ACTIONS(4960), + [anon_sym_PERCENT] = ACTIONS(4960), + [anon_sym_AMP] = ACTIONS(4962), + [anon_sym_SQUOTE] = ACTIONS(4960), + [anon_sym_STAR] = ACTIONS(4960), + [anon_sym_PLUS] = ACTIONS(4960), + [anon_sym_COMMA] = ACTIONS(4960), + [anon_sym_DASH] = ACTIONS(4962), + [anon_sym_DOT] = ACTIONS(4962), + [anon_sym_SLASH] = ACTIONS(4960), + [anon_sym_COLON] = ACTIONS(4960), + [anon_sym_SEMI] = ACTIONS(4960), + [anon_sym_EQ] = ACTIONS(4960), + [anon_sym_QMARK] = ACTIONS(4960), + [anon_sym_LBRACK] = ACTIONS(4962), + [anon_sym_BSLASH] = ACTIONS(4962), + [anon_sym_CARET] = ACTIONS(4962), + [anon_sym__] = ACTIONS(4960), + [anon_sym_BQUOTE] = ACTIONS(4960), + [anon_sym_LBRACE] = ACTIONS(4960), + [anon_sym_PIPE] = ACTIONS(4960), + [anon_sym_TILDE] = ACTIONS(4960), + [anon_sym_LPAREN] = ACTIONS(4960), + [anon_sym_RPAREN] = ACTIONS(4960), + [sym__newline_token] = ACTIONS(4960), + [aux_sym_insert_token1] = ACTIONS(4960), + [aux_sym_delete_token1] = ACTIONS(4960), + [aux_sym_highlight_token1] = ACTIONS(4960), + [aux_sym_edit_comment_token1] = ACTIONS(4960), + [anon_sym_CARET_LBRACK] = ACTIONS(4960), + [anon_sym_LBRACK_CARET] = ACTIONS(4960), + [sym_uri_autolink] = ACTIONS(4960), + [sym_email_autolink] = ACTIONS(4960), + [sym__whitespace_ge_2] = ACTIONS(4960), + [aux_sym__whitespace_token1] = ACTIONS(4962), + [sym__word_no_digit] = ACTIONS(4960), + [sym__digits] = ACTIONS(4960), + [anon_sym_DASH_DASH] = ACTIONS(4962), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4960), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4960), + [sym__code_span_start] = ACTIONS(4960), + [sym__emphasis_open_star] = ACTIONS(4960), + [sym__emphasis_open_underscore] = ACTIONS(4960), + [sym__strikeout_open] = ACTIONS(4960), + [sym__latex_span_start] = ACTIONS(4960), + [sym__single_quote_open] = ACTIONS(4960), + [sym__double_quote_open] = ACTIONS(4960), + [sym__superscript_open] = ACTIONS(4960), + [sym__subscript_open] = ACTIONS(4960), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4960), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4960), + [sym__cite_author_in_text] = ACTIONS(4960), + [sym__cite_suppress_author] = ACTIONS(4960), + [sym__shortcode_open_escaped] = ACTIONS(4960), + [sym__shortcode_open] = ACTIONS(4960), + [sym__unclosed_span] = ACTIONS(4960), + }, + [STATE(1164)] = { + [ts_builtin_sym_end] = ACTIONS(4964), + [sym__backslash_escape] = ACTIONS(4964), + [sym_entity_reference] = ACTIONS(4964), + [sym_numeric_character_reference] = ACTIONS(4964), + [anon_sym_LT] = ACTIONS(4966), + [anon_sym_GT] = ACTIONS(4964), + [anon_sym_BANG] = ACTIONS(4964), + [anon_sym_DQUOTE] = ACTIONS(4964), + [anon_sym_POUND] = ACTIONS(4964), + [anon_sym_DOLLAR] = ACTIONS(4964), + [anon_sym_PERCENT] = ACTIONS(4964), + [anon_sym_AMP] = ACTIONS(4966), + [anon_sym_SQUOTE] = ACTIONS(4964), + [anon_sym_STAR] = ACTIONS(4964), + [anon_sym_PLUS] = ACTIONS(4964), + [anon_sym_COMMA] = ACTIONS(4964), + [anon_sym_DASH] = ACTIONS(4966), + [anon_sym_DOT] = ACTIONS(4966), + [anon_sym_SLASH] = ACTIONS(4964), + [anon_sym_COLON] = ACTIONS(4964), + [anon_sym_SEMI] = ACTIONS(4964), + [anon_sym_EQ] = ACTIONS(4964), + [anon_sym_QMARK] = ACTIONS(4964), + [anon_sym_LBRACK] = ACTIONS(4966), + [anon_sym_BSLASH] = ACTIONS(4966), + [anon_sym_CARET] = ACTIONS(4966), + [anon_sym__] = ACTIONS(4964), + [anon_sym_BQUOTE] = ACTIONS(4964), + [anon_sym_LBRACE] = ACTIONS(4964), + [anon_sym_PIPE] = ACTIONS(4964), + [anon_sym_TILDE] = ACTIONS(4964), + [anon_sym_LPAREN] = ACTIONS(4964), + [anon_sym_RPAREN] = ACTIONS(4964), + [sym__newline_token] = ACTIONS(4964), + [aux_sym_insert_token1] = ACTIONS(4964), + [aux_sym_delete_token1] = ACTIONS(4964), + [aux_sym_highlight_token1] = ACTIONS(4964), + [aux_sym_edit_comment_token1] = ACTIONS(4964), + [anon_sym_CARET_LBRACK] = ACTIONS(4964), + [anon_sym_LBRACK_CARET] = ACTIONS(4964), + [sym_uri_autolink] = ACTIONS(4964), + [sym_email_autolink] = ACTIONS(4964), + [sym__whitespace_ge_2] = ACTIONS(4964), + [aux_sym__whitespace_token1] = ACTIONS(4966), + [sym__word_no_digit] = ACTIONS(4964), + [sym__digits] = ACTIONS(4964), + [anon_sym_DASH_DASH] = ACTIONS(4966), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4964), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4964), + [sym__code_span_start] = ACTIONS(4964), + [sym__emphasis_open_star] = ACTIONS(4964), + [sym__emphasis_open_underscore] = ACTIONS(4964), + [sym__strikeout_open] = ACTIONS(4964), + [sym__latex_span_start] = ACTIONS(4964), + [sym__single_quote_open] = ACTIONS(4964), + [sym__double_quote_open] = ACTIONS(4964), + [sym__superscript_open] = ACTIONS(4964), + [sym__subscript_open] = ACTIONS(4964), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4964), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4964), + [sym__cite_author_in_text] = ACTIONS(4964), + [sym__cite_suppress_author] = ACTIONS(4964), + [sym__shortcode_open_escaped] = ACTIONS(4964), + [sym__shortcode_open] = ACTIONS(4964), + [sym__unclosed_span] = ACTIONS(4964), + }, + [STATE(1165)] = { + [sym__backslash_escape] = ACTIONS(4566), + [sym_entity_reference] = ACTIONS(4566), + [sym_numeric_character_reference] = ACTIONS(4566), + [anon_sym_LT] = ACTIONS(4568), + [anon_sym_GT] = ACTIONS(4566), + [anon_sym_BANG] = ACTIONS(4566), + [anon_sym_DQUOTE] = ACTIONS(4566), + [anon_sym_POUND] = ACTIONS(4566), + [anon_sym_DOLLAR] = ACTIONS(4566), + [anon_sym_PERCENT] = ACTIONS(4566), + [anon_sym_AMP] = ACTIONS(4568), + [anon_sym_SQUOTE] = ACTIONS(4566), + [anon_sym_STAR] = ACTIONS(4566), + [anon_sym_PLUS] = ACTIONS(4566), + [anon_sym_COMMA] = ACTIONS(4566), + [anon_sym_DASH] = ACTIONS(4568), + [anon_sym_DOT] = ACTIONS(4568), + [anon_sym_SLASH] = ACTIONS(4566), + [anon_sym_COLON] = ACTIONS(4566), + [anon_sym_SEMI] = ACTIONS(4566), + [anon_sym_EQ] = ACTIONS(4566), + [anon_sym_QMARK] = ACTIONS(4566), + [anon_sym_LBRACK] = ACTIONS(4568), + [anon_sym_BSLASH] = ACTIONS(4568), + [anon_sym_CARET] = ACTIONS(4568), + [anon_sym__] = ACTIONS(4566), + [anon_sym_BQUOTE] = ACTIONS(4566), + [anon_sym_LBRACE] = ACTIONS(4566), + [anon_sym_PIPE] = ACTIONS(4566), + [anon_sym_TILDE] = ACTIONS(4566), + [anon_sym_LPAREN] = ACTIONS(4566), + [anon_sym_RPAREN] = ACTIONS(4566), + [sym__newline_token] = ACTIONS(4566), + [aux_sym_insert_token1] = ACTIONS(4566), + [aux_sym_delete_token1] = ACTIONS(4566), + [aux_sym_highlight_token1] = ACTIONS(4566), + [aux_sym_edit_comment_token1] = ACTIONS(4566), + [anon_sym_CARET_LBRACK] = ACTIONS(4566), + [anon_sym_LBRACK_CARET] = ACTIONS(4566), + [sym_uri_autolink] = ACTIONS(4566), + [sym_email_autolink] = ACTIONS(4566), + [sym__whitespace_ge_2] = ACTIONS(4566), + [aux_sym__whitespace_token1] = ACTIONS(4568), + [sym__word_no_digit] = ACTIONS(4566), + [sym__digits] = ACTIONS(4566), + [anon_sym_DASH_DASH] = ACTIONS(4568), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4566), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4566), + [sym__code_span_start] = ACTIONS(4566), + [sym__emphasis_open_star] = ACTIONS(4566), + [sym__emphasis_open_underscore] = ACTIONS(4566), + [sym__strikeout_open] = ACTIONS(4566), + [sym__latex_span_start] = ACTIONS(4566), + [sym__single_quote_open] = ACTIONS(4566), + [sym__single_quote_close] = ACTIONS(4566), + [sym__double_quote_open] = ACTIONS(4566), + [sym__superscript_open] = ACTIONS(4566), + [sym__subscript_open] = ACTIONS(4566), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4566), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4566), + [sym__cite_author_in_text] = ACTIONS(4566), + [sym__cite_suppress_author] = ACTIONS(4566), + [sym__shortcode_open_escaped] = ACTIONS(4566), + [sym__shortcode_open] = ACTIONS(4566), + [sym__unclosed_span] = ACTIONS(4566), + }, + [STATE(1166)] = { + [ts_builtin_sym_end] = ACTIONS(4968), + [sym__backslash_escape] = ACTIONS(4968), + [sym_entity_reference] = ACTIONS(4968), + [sym_numeric_character_reference] = ACTIONS(4968), + [anon_sym_LT] = ACTIONS(4970), + [anon_sym_GT] = ACTIONS(4968), + [anon_sym_BANG] = ACTIONS(4968), + [anon_sym_DQUOTE] = ACTIONS(4968), + [anon_sym_POUND] = ACTIONS(4968), + [anon_sym_DOLLAR] = ACTIONS(4968), + [anon_sym_PERCENT] = ACTIONS(4968), + [anon_sym_AMP] = ACTIONS(4970), + [anon_sym_SQUOTE] = ACTIONS(4968), + [anon_sym_STAR] = ACTIONS(4968), + [anon_sym_PLUS] = ACTIONS(4968), + [anon_sym_COMMA] = ACTIONS(4968), + [anon_sym_DASH] = ACTIONS(4970), + [anon_sym_DOT] = ACTIONS(4970), + [anon_sym_SLASH] = ACTIONS(4968), + [anon_sym_COLON] = ACTIONS(4968), + [anon_sym_SEMI] = ACTIONS(4968), + [anon_sym_EQ] = ACTIONS(4968), + [anon_sym_QMARK] = ACTIONS(4968), + [anon_sym_LBRACK] = ACTIONS(4970), + [anon_sym_BSLASH] = ACTIONS(4970), + [anon_sym_CARET] = ACTIONS(4970), + [anon_sym__] = ACTIONS(4968), + [anon_sym_BQUOTE] = ACTIONS(4968), + [anon_sym_LBRACE] = ACTIONS(4968), + [anon_sym_PIPE] = ACTIONS(4968), + [anon_sym_TILDE] = ACTIONS(4968), + [anon_sym_LPAREN] = ACTIONS(4968), + [anon_sym_RPAREN] = ACTIONS(4968), + [sym__newline_token] = ACTIONS(4968), + [aux_sym_insert_token1] = ACTIONS(4968), + [aux_sym_delete_token1] = ACTIONS(4968), + [aux_sym_highlight_token1] = ACTIONS(4968), + [aux_sym_edit_comment_token1] = ACTIONS(4968), + [anon_sym_CARET_LBRACK] = ACTIONS(4968), + [anon_sym_LBRACK_CARET] = ACTIONS(4968), + [sym_uri_autolink] = ACTIONS(4968), + [sym_email_autolink] = ACTIONS(4968), + [sym__whitespace_ge_2] = ACTIONS(4968), + [aux_sym__whitespace_token1] = ACTIONS(4970), + [sym__word_no_digit] = ACTIONS(4968), + [sym__digits] = ACTIONS(4968), + [anon_sym_DASH_DASH] = ACTIONS(4970), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4968), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4968), + [sym__code_span_start] = ACTIONS(4968), + [sym__emphasis_open_star] = ACTIONS(4968), + [sym__emphasis_open_underscore] = ACTIONS(4968), + [sym__strikeout_open] = ACTIONS(4968), + [sym__latex_span_start] = ACTIONS(4968), + [sym__single_quote_open] = ACTIONS(4968), + [sym__double_quote_open] = ACTIONS(4968), + [sym__superscript_open] = ACTIONS(4968), + [sym__subscript_open] = ACTIONS(4968), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4968), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4968), + [sym__cite_author_in_text] = ACTIONS(4968), + [sym__cite_suppress_author] = ACTIONS(4968), + [sym__shortcode_open_escaped] = ACTIONS(4968), + [sym__shortcode_open] = ACTIONS(4968), + [sym__unclosed_span] = ACTIONS(4968), + }, + [STATE(1167)] = { + [ts_builtin_sym_end] = ACTIONS(4972), + [sym__backslash_escape] = ACTIONS(4972), + [sym_entity_reference] = ACTIONS(4972), + [sym_numeric_character_reference] = ACTIONS(4972), + [anon_sym_LT] = ACTIONS(4974), + [anon_sym_GT] = ACTIONS(4972), + [anon_sym_BANG] = ACTIONS(4972), + [anon_sym_DQUOTE] = ACTIONS(4972), + [anon_sym_POUND] = ACTIONS(4972), + [anon_sym_DOLLAR] = ACTIONS(4972), + [anon_sym_PERCENT] = ACTIONS(4972), + [anon_sym_AMP] = ACTIONS(4974), + [anon_sym_SQUOTE] = ACTIONS(4972), + [anon_sym_STAR] = ACTIONS(4972), + [anon_sym_PLUS] = ACTIONS(4972), + [anon_sym_COMMA] = ACTIONS(4972), + [anon_sym_DASH] = ACTIONS(4974), + [anon_sym_DOT] = ACTIONS(4974), + [anon_sym_SLASH] = ACTIONS(4972), + [anon_sym_COLON] = ACTIONS(4972), + [anon_sym_SEMI] = ACTIONS(4972), + [anon_sym_EQ] = ACTIONS(4972), + [anon_sym_QMARK] = ACTIONS(4972), + [anon_sym_LBRACK] = ACTIONS(4974), + [anon_sym_BSLASH] = ACTIONS(4974), + [anon_sym_CARET] = ACTIONS(4974), + [anon_sym__] = ACTIONS(4972), + [anon_sym_BQUOTE] = ACTIONS(4972), + [anon_sym_LBRACE] = ACTIONS(4972), + [anon_sym_PIPE] = ACTIONS(4972), + [anon_sym_TILDE] = ACTIONS(4972), + [anon_sym_LPAREN] = ACTIONS(4972), + [anon_sym_RPAREN] = ACTIONS(4972), + [sym__newline_token] = ACTIONS(4972), + [aux_sym_insert_token1] = ACTIONS(4972), + [aux_sym_delete_token1] = ACTIONS(4972), + [aux_sym_highlight_token1] = ACTIONS(4972), + [aux_sym_edit_comment_token1] = ACTIONS(4972), + [anon_sym_CARET_LBRACK] = ACTIONS(4972), + [anon_sym_LBRACK_CARET] = ACTIONS(4972), + [sym_uri_autolink] = ACTIONS(4972), + [sym_email_autolink] = ACTIONS(4972), + [sym__whitespace_ge_2] = ACTIONS(4972), + [aux_sym__whitespace_token1] = ACTIONS(4974), + [sym__word_no_digit] = ACTIONS(4972), + [sym__digits] = ACTIONS(4972), + [anon_sym_DASH_DASH] = ACTIONS(4974), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4972), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4972), + [sym__code_span_start] = ACTIONS(4972), + [sym__emphasis_open_star] = ACTIONS(4972), + [sym__emphasis_open_underscore] = ACTIONS(4972), + [sym__strikeout_open] = ACTIONS(4972), + [sym__latex_span_start] = ACTIONS(4972), + [sym__single_quote_open] = ACTIONS(4972), + [sym__double_quote_open] = ACTIONS(4972), + [sym__superscript_open] = ACTIONS(4972), + [sym__subscript_open] = ACTIONS(4972), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4972), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4972), + [sym__cite_author_in_text] = ACTIONS(4972), + [sym__cite_suppress_author] = ACTIONS(4972), + [sym__shortcode_open_escaped] = ACTIONS(4972), + [sym__shortcode_open] = ACTIONS(4972), + [sym__unclosed_span] = ACTIONS(4972), + }, + [STATE(1168)] = { + [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__] = ACTIONS(5071), + [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), + }, + [STATE(1169)] = { + [sym__backslash_escape] = ACTIONS(4940), + [sym_entity_reference] = ACTIONS(4940), + [sym_numeric_character_reference] = ACTIONS(4940), + [anon_sym_LT] = ACTIONS(4942), + [anon_sym_GT] = ACTIONS(4940), + [anon_sym_BANG] = ACTIONS(4940), + [anon_sym_DQUOTE] = ACTIONS(4940), + [anon_sym_POUND] = ACTIONS(4940), + [anon_sym_DOLLAR] = ACTIONS(4940), + [anon_sym_PERCENT] = ACTIONS(4940), + [anon_sym_AMP] = ACTIONS(4942), + [anon_sym_SQUOTE] = ACTIONS(4940), + [anon_sym_STAR] = ACTIONS(4940), + [anon_sym_PLUS] = ACTIONS(4940), + [anon_sym_COMMA] = ACTIONS(4940), + [anon_sym_DASH] = ACTIONS(4942), + [anon_sym_DOT] = ACTIONS(4942), + [anon_sym_SLASH] = ACTIONS(4940), + [anon_sym_COLON] = ACTIONS(4940), + [anon_sym_SEMI] = ACTIONS(4940), + [anon_sym_EQ] = ACTIONS(4940), + [anon_sym_QMARK] = ACTIONS(4940), + [anon_sym_LBRACK] = ACTIONS(4942), + [anon_sym_BSLASH] = ACTIONS(4942), + [anon_sym_CARET] = ACTIONS(4942), + [anon_sym__] = ACTIONS(4940), + [anon_sym_BQUOTE] = ACTIONS(4940), + [anon_sym_LBRACE] = ACTIONS(4940), + [anon_sym_PIPE] = ACTIONS(4940), + [anon_sym_TILDE] = ACTIONS(4940), + [anon_sym_LPAREN] = ACTIONS(4940), + [anon_sym_RPAREN] = ACTIONS(4940), + [sym__newline_token] = ACTIONS(4940), + [aux_sym_insert_token1] = ACTIONS(4940), + [aux_sym_delete_token1] = ACTIONS(4940), + [aux_sym_highlight_token1] = ACTIONS(4940), + [aux_sym_edit_comment_token1] = ACTIONS(4940), + [anon_sym_CARET_LBRACK] = ACTIONS(4940), + [anon_sym_LBRACK_CARET] = ACTIONS(4940), + [sym_uri_autolink] = ACTIONS(4940), + [sym_email_autolink] = ACTIONS(4940), + [sym__whitespace_ge_2] = ACTIONS(4940), + [aux_sym__whitespace_token1] = ACTIONS(4942), + [sym__word_no_digit] = ACTIONS(4940), + [sym__digits] = ACTIONS(4940), + [anon_sym_DASH_DASH] = ACTIONS(4942), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4940), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4940), + [sym__code_span_start] = ACTIONS(4940), + [sym__emphasis_open_star] = ACTIONS(4940), + [sym__emphasis_open_underscore] = ACTIONS(4940), + [sym__strikeout_open] = ACTIONS(4940), + [sym__strikeout_close] = ACTIONS(4940), + [sym__latex_span_start] = ACTIONS(4940), + [sym__single_quote_open] = ACTIONS(4940), + [sym__double_quote_open] = ACTIONS(4940), + [sym__superscript_open] = ACTIONS(4940), + [sym__subscript_open] = ACTIONS(4940), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4940), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4940), + [sym__cite_author_in_text] = ACTIONS(4940), + [sym__cite_suppress_author] = ACTIONS(4940), + [sym__shortcode_open_escaped] = ACTIONS(4940), + [sym__shortcode_open] = ACTIONS(4940), + [sym__unclosed_span] = ACTIONS(4940), + }, + [STATE(1170)] = { + [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__] = ACTIONS(5071), + [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(5081), + [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), + }, + [STATE(1171)] = { + [sym__backslash_escape] = ACTIONS(4572), + [sym_entity_reference] = ACTIONS(4572), + [sym_numeric_character_reference] = ACTIONS(4572), + [anon_sym_LT] = ACTIONS(4574), + [anon_sym_GT] = ACTIONS(4572), + [anon_sym_BANG] = ACTIONS(4572), + [anon_sym_DQUOTE] = ACTIONS(4572), + [anon_sym_POUND] = ACTIONS(4572), + [anon_sym_DOLLAR] = ACTIONS(4572), + [anon_sym_PERCENT] = ACTIONS(4572), + [anon_sym_AMP] = ACTIONS(4574), + [anon_sym_SQUOTE] = ACTIONS(4572), + [anon_sym_STAR] = ACTIONS(4572), + [anon_sym_PLUS] = ACTIONS(4572), + [anon_sym_COMMA] = ACTIONS(4572), + [anon_sym_DASH] = ACTIONS(4574), + [anon_sym_DOT] = ACTIONS(4574), + [anon_sym_SLASH] = ACTIONS(4572), + [anon_sym_COLON] = ACTIONS(4572), + [anon_sym_SEMI] = ACTIONS(4572), + [anon_sym_EQ] = ACTIONS(4572), + [anon_sym_QMARK] = ACTIONS(4572), + [anon_sym_LBRACK] = ACTIONS(4574), + [anon_sym_BSLASH] = ACTIONS(4574), + [anon_sym_CARET] = ACTIONS(4574), + [anon_sym__] = ACTIONS(4572), + [anon_sym_BQUOTE] = ACTIONS(4572), + [anon_sym_LBRACE] = ACTIONS(4572), + [anon_sym_PIPE] = ACTIONS(4572), + [anon_sym_TILDE] = ACTIONS(4572), + [anon_sym_LPAREN] = ACTIONS(4572), + [anon_sym_RPAREN] = ACTIONS(4572), + [sym__newline_token] = ACTIONS(4572), + [aux_sym_insert_token1] = ACTIONS(4572), + [aux_sym_delete_token1] = ACTIONS(4572), + [aux_sym_highlight_token1] = ACTIONS(4572), + [aux_sym_edit_comment_token1] = ACTIONS(4572), + [anon_sym_CARET_LBRACK] = ACTIONS(4572), + [anon_sym_LBRACK_CARET] = ACTIONS(4572), + [sym_uri_autolink] = ACTIONS(4572), + [sym_email_autolink] = ACTIONS(4572), + [sym__whitespace_ge_2] = ACTIONS(4572), + [aux_sym__whitespace_token1] = ACTIONS(4574), + [sym__word_no_digit] = ACTIONS(4572), + [sym__digits] = ACTIONS(4572), + [anon_sym_DASH_DASH] = ACTIONS(4574), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4572), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4572), + [sym__code_span_start] = ACTIONS(4572), + [sym__emphasis_open_star] = ACTIONS(4572), + [sym__emphasis_open_underscore] = ACTIONS(4572), + [sym__strikeout_open] = ACTIONS(4572), + [sym__latex_span_start] = ACTIONS(4572), + [sym__single_quote_open] = ACTIONS(4572), + [sym__single_quote_close] = ACTIONS(4572), + [sym__double_quote_open] = ACTIONS(4572), + [sym__superscript_open] = ACTIONS(4572), + [sym__subscript_open] = ACTIONS(4572), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4572), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4572), + [sym__cite_author_in_text] = ACTIONS(4572), + [sym__cite_suppress_author] = ACTIONS(4572), + [sym__shortcode_open_escaped] = ACTIONS(4572), + [sym__shortcode_open] = ACTIONS(4572), + [sym__unclosed_span] = ACTIONS(4572), + }, + [STATE(1172)] = { + [sym__backslash_escape] = ACTIONS(5064), + [sym_entity_reference] = ACTIONS(5064), + [sym_numeric_character_reference] = ACTIONS(5064), + [anon_sym_LT] = ACTIONS(5066), + [anon_sym_GT] = ACTIONS(5064), + [anon_sym_BANG] = ACTIONS(5064), + [anon_sym_DQUOTE] = ACTIONS(5064), + [anon_sym_POUND] = ACTIONS(5064), + [anon_sym_DOLLAR] = ACTIONS(5064), + [anon_sym_PERCENT] = ACTIONS(5064), + [anon_sym_AMP] = ACTIONS(5066), + [anon_sym_SQUOTE] = ACTIONS(5064), + [anon_sym_STAR] = ACTIONS(5064), + [anon_sym_PLUS] = ACTIONS(5064), + [anon_sym_COMMA] = ACTIONS(5064), + [anon_sym_DASH] = ACTIONS(5066), + [anon_sym_DOT] = ACTIONS(5066), + [anon_sym_SLASH] = ACTIONS(5064), + [anon_sym_COLON] = ACTIONS(5064), + [anon_sym_SEMI] = ACTIONS(5064), + [anon_sym_EQ] = ACTIONS(5064), + [anon_sym_QMARK] = ACTIONS(5064), + [anon_sym_LBRACK] = ACTIONS(5066), + [anon_sym_BSLASH] = ACTIONS(5066), + [anon_sym_CARET] = ACTIONS(5066), + [anon_sym__] = ACTIONS(5064), + [anon_sym_BQUOTE] = ACTIONS(5064), + [anon_sym_LBRACE] = ACTIONS(5064), + [anon_sym_PIPE] = ACTIONS(5064), + [anon_sym_TILDE] = ACTIONS(5064), + [anon_sym_LPAREN] = ACTIONS(5064), + [anon_sym_RPAREN] = ACTIONS(5064), + [sym__newline_token] = ACTIONS(5064), + [aux_sym_insert_token1] = ACTIONS(5064), + [aux_sym_delete_token1] = ACTIONS(5064), + [aux_sym_highlight_token1] = ACTIONS(5064), + [aux_sym_edit_comment_token1] = ACTIONS(5064), + [anon_sym_CARET_LBRACK] = ACTIONS(5064), + [anon_sym_LBRACK_CARET] = ACTIONS(5064), + [sym_uri_autolink] = ACTIONS(5064), + [sym_email_autolink] = ACTIONS(5064), + [sym__whitespace_ge_2] = ACTIONS(5064), + [aux_sym__whitespace_token1] = ACTIONS(5066), + [sym__word_no_digit] = ACTIONS(5064), + [sym__digits] = ACTIONS(5064), + [anon_sym_DASH_DASH] = ACTIONS(5066), + [anon_sym_DASH_DASH_DASH] = ACTIONS(5064), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5064), + [sym__code_span_start] = ACTIONS(5064), + [sym__emphasis_open_star] = ACTIONS(5064), + [sym__emphasis_open_underscore] = ACTIONS(5064), + [sym__emphasis_close_star] = ACTIONS(5084), + [sym__strikeout_open] = ACTIONS(5064), + [sym__latex_span_start] = ACTIONS(5064), + [sym__single_quote_open] = ACTIONS(5064), + [sym__double_quote_open] = ACTIONS(5064), + [sym__superscript_open] = ACTIONS(5064), + [sym__subscript_open] = ACTIONS(5064), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5064), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5064), + [sym__cite_author_in_text] = ACTIONS(5064), + [sym__cite_suppress_author] = ACTIONS(5064), + [sym__shortcode_open_escaped] = ACTIONS(5064), + [sym__shortcode_open] = ACTIONS(5064), + [sym__unclosed_span] = ACTIONS(5064), + }, + [STATE(1173)] = { + [sym__backslash_escape] = ACTIONS(4952), + [sym_entity_reference] = ACTIONS(4952), + [sym_numeric_character_reference] = ACTIONS(4952), + [anon_sym_LT] = ACTIONS(4954), + [anon_sym_GT] = ACTIONS(4952), + [anon_sym_BANG] = ACTIONS(4952), + [anon_sym_DQUOTE] = ACTIONS(4952), + [anon_sym_POUND] = ACTIONS(4952), + [anon_sym_DOLLAR] = ACTIONS(4952), + [anon_sym_PERCENT] = ACTIONS(4952), + [anon_sym_AMP] = ACTIONS(4954), + [anon_sym_SQUOTE] = ACTIONS(4952), + [anon_sym_STAR] = ACTIONS(4952), + [anon_sym_PLUS] = ACTIONS(4952), + [anon_sym_COMMA] = ACTIONS(4952), + [anon_sym_DASH] = ACTIONS(4954), + [anon_sym_DOT] = ACTIONS(4954), + [anon_sym_SLASH] = ACTIONS(4952), + [anon_sym_COLON] = ACTIONS(4952), + [anon_sym_SEMI] = ACTIONS(4952), + [anon_sym_EQ] = ACTIONS(4952), + [anon_sym_QMARK] = ACTIONS(4952), + [anon_sym_LBRACK] = ACTIONS(4954), + [anon_sym_BSLASH] = ACTIONS(4954), + [anon_sym_CARET] = ACTIONS(4954), + [anon_sym__] = ACTIONS(4952), + [anon_sym_BQUOTE] = ACTIONS(4952), + [anon_sym_LBRACE] = ACTIONS(4952), + [anon_sym_PIPE] = ACTIONS(4952), + [anon_sym_TILDE] = ACTIONS(4952), + [anon_sym_LPAREN] = ACTIONS(4952), + [anon_sym_RPAREN] = ACTIONS(4952), + [sym__newline_token] = ACTIONS(4952), + [aux_sym_insert_token1] = ACTIONS(4952), + [aux_sym_delete_token1] = ACTIONS(4952), + [aux_sym_highlight_token1] = ACTIONS(4952), + [aux_sym_edit_comment_token1] = ACTIONS(4952), + [anon_sym_CARET_LBRACK] = ACTIONS(4952), + [anon_sym_LBRACK_CARET] = ACTIONS(4952), + [sym_uri_autolink] = ACTIONS(4952), + [sym_email_autolink] = ACTIONS(4952), + [sym__whitespace_ge_2] = ACTIONS(4952), + [aux_sym__whitespace_token1] = ACTIONS(4954), + [sym__word_no_digit] = ACTIONS(4952), + [sym__digits] = ACTIONS(4952), + [anon_sym_DASH_DASH] = ACTIONS(4954), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4952), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4952), + [sym__code_span_start] = ACTIONS(4952), + [sym__emphasis_open_star] = ACTIONS(4952), + [sym__emphasis_open_underscore] = ACTIONS(4952), + [sym__emphasis_close_underscore] = ACTIONS(4952), + [sym__strikeout_open] = ACTIONS(4952), + [sym__latex_span_start] = ACTIONS(4952), + [sym__single_quote_open] = ACTIONS(4952), + [sym__double_quote_open] = ACTIONS(4952), + [sym__superscript_open] = ACTIONS(4952), + [sym__subscript_open] = ACTIONS(4952), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4952), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4952), + [sym__cite_author_in_text] = ACTIONS(4952), + [sym__cite_suppress_author] = ACTIONS(4952), + [sym__shortcode_open_escaped] = ACTIONS(4952), + [sym__shortcode_open] = ACTIONS(4952), + [sym__unclosed_span] = ACTIONS(4952), + }, + [STATE(1174)] = { + [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__] = ACTIONS(5071), + [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(5087), + [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), + }, + [STATE(1175)] = { + [sym__backslash_escape] = ACTIONS(4860), + [sym_entity_reference] = ACTIONS(4860), + [sym_numeric_character_reference] = ACTIONS(4860), + [anon_sym_LT] = ACTIONS(4862), + [anon_sym_GT] = ACTIONS(4860), + [anon_sym_BANG] = ACTIONS(4860), + [anon_sym_DQUOTE] = ACTIONS(4860), + [anon_sym_POUND] = ACTIONS(4860), + [anon_sym_DOLLAR] = ACTIONS(4860), + [anon_sym_PERCENT] = ACTIONS(4860), + [anon_sym_AMP] = ACTIONS(4862), + [anon_sym_SQUOTE] = ACTIONS(4860), + [anon_sym_STAR] = ACTIONS(4860), + [anon_sym_PLUS] = ACTIONS(4860), + [anon_sym_COMMA] = ACTIONS(4860), + [anon_sym_DASH] = ACTIONS(4862), + [anon_sym_DOT] = ACTIONS(4862), + [anon_sym_SLASH] = ACTIONS(4860), + [anon_sym_COLON] = ACTIONS(4860), + [anon_sym_SEMI] = ACTIONS(4860), + [anon_sym_EQ] = ACTIONS(4860), + [anon_sym_QMARK] = ACTIONS(4860), + [anon_sym_LBRACK] = ACTIONS(4862), + [anon_sym_BSLASH] = ACTIONS(4862), + [anon_sym_CARET] = ACTIONS(4862), + [anon_sym__] = ACTIONS(4860), + [anon_sym_BQUOTE] = ACTIONS(4860), + [anon_sym_LBRACE] = ACTIONS(4860), + [anon_sym_PIPE] = ACTIONS(4860), + [anon_sym_TILDE] = ACTIONS(4860), + [anon_sym_LPAREN] = ACTIONS(4860), + [anon_sym_RPAREN] = ACTIONS(4860), + [sym__newline_token] = ACTIONS(4860), + [aux_sym_insert_token1] = ACTIONS(4860), + [aux_sym_delete_token1] = ACTIONS(4860), + [aux_sym_highlight_token1] = ACTIONS(4860), + [aux_sym_edit_comment_token1] = ACTIONS(4860), + [anon_sym_CARET_LBRACK] = ACTIONS(4860), + [anon_sym_LBRACK_CARET] = ACTIONS(4860), + [sym_uri_autolink] = ACTIONS(4860), + [sym_email_autolink] = ACTIONS(4860), + [sym__whitespace_ge_2] = ACTIONS(4860), + [aux_sym__whitespace_token1] = ACTIONS(4862), + [sym__word_no_digit] = ACTIONS(4860), + [sym__digits] = ACTIONS(4860), + [anon_sym_DASH_DASH] = ACTIONS(4862), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4860), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4860), + [sym__code_span_start] = ACTIONS(4860), + [sym__emphasis_open_star] = ACTIONS(4860), + [sym__emphasis_open_underscore] = ACTIONS(4860), + [sym__strikeout_open] = ACTIONS(4860), + [sym__latex_span_start] = ACTIONS(4860), + [sym__single_quote_open] = ACTIONS(4860), + [sym__single_quote_close] = ACTIONS(4860), + [sym__double_quote_open] = ACTIONS(4860), + [sym__superscript_open] = ACTIONS(4860), + [sym__subscript_open] = ACTIONS(4860), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4860), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4860), + [sym__cite_author_in_text] = ACTIONS(4860), + [sym__cite_suppress_author] = ACTIONS(4860), + [sym__shortcode_open_escaped] = ACTIONS(4860), + [sym__shortcode_open] = ACTIONS(4860), + [sym__unclosed_span] = ACTIONS(4860), + }, + [STATE(1176)] = { + [sym__backslash_escape] = ACTIONS(4864), + [sym_entity_reference] = ACTIONS(4864), + [sym_numeric_character_reference] = ACTIONS(4864), + [anon_sym_LT] = ACTIONS(4866), + [anon_sym_GT] = ACTIONS(4864), + [anon_sym_BANG] = ACTIONS(4864), + [anon_sym_DQUOTE] = ACTIONS(4864), + [anon_sym_POUND] = ACTIONS(4864), + [anon_sym_DOLLAR] = ACTIONS(4864), + [anon_sym_PERCENT] = ACTIONS(4864), + [anon_sym_AMP] = ACTIONS(4866), + [anon_sym_SQUOTE] = ACTIONS(4864), + [anon_sym_STAR] = ACTIONS(4864), + [anon_sym_PLUS] = ACTIONS(4864), + [anon_sym_COMMA] = ACTIONS(4864), + [anon_sym_DASH] = ACTIONS(4866), + [anon_sym_DOT] = ACTIONS(4866), + [anon_sym_SLASH] = ACTIONS(4864), + [anon_sym_COLON] = ACTIONS(4864), + [anon_sym_SEMI] = ACTIONS(4864), + [anon_sym_EQ] = ACTIONS(4864), + [anon_sym_QMARK] = ACTIONS(4864), + [anon_sym_LBRACK] = ACTIONS(4866), + [anon_sym_BSLASH] = ACTIONS(4866), + [anon_sym_CARET] = ACTIONS(4866), + [anon_sym__] = ACTIONS(4864), + [anon_sym_BQUOTE] = ACTIONS(4864), + [anon_sym_LBRACE] = ACTIONS(4864), + [anon_sym_PIPE] = ACTIONS(4864), + [anon_sym_TILDE] = ACTIONS(4864), + [anon_sym_LPAREN] = ACTIONS(4864), + [anon_sym_RPAREN] = ACTIONS(4864), + [sym__newline_token] = ACTIONS(4864), + [aux_sym_insert_token1] = ACTIONS(4864), + [aux_sym_delete_token1] = ACTIONS(4864), + [aux_sym_highlight_token1] = ACTIONS(4864), + [aux_sym_edit_comment_token1] = ACTIONS(4864), + [anon_sym_CARET_LBRACK] = ACTIONS(4864), + [anon_sym_LBRACK_CARET] = ACTIONS(4864), + [sym_uri_autolink] = ACTIONS(4864), + [sym_email_autolink] = ACTIONS(4864), + [sym__whitespace_ge_2] = ACTIONS(4864), + [aux_sym__whitespace_token1] = ACTIONS(4866), + [sym__word_no_digit] = ACTIONS(4864), + [sym__digits] = ACTIONS(4864), + [anon_sym_DASH_DASH] = ACTIONS(4866), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4864), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4864), + [sym__code_span_start] = ACTIONS(4864), + [sym__emphasis_open_star] = ACTIONS(4864), + [sym__emphasis_open_underscore] = ACTIONS(4864), + [sym__strikeout_open] = ACTIONS(4864), + [sym__latex_span_start] = ACTIONS(4864), + [sym__single_quote_open] = ACTIONS(4864), + [sym__single_quote_close] = ACTIONS(4864), + [sym__double_quote_open] = ACTIONS(4864), + [sym__superscript_open] = ACTIONS(4864), + [sym__subscript_open] = ACTIONS(4864), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4864), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4864), + [sym__cite_author_in_text] = ACTIONS(4864), + [sym__cite_suppress_author] = ACTIONS(4864), + [sym__shortcode_open_escaped] = ACTIONS(4864), + [sym__shortcode_open] = ACTIONS(4864), + [sym__unclosed_span] = ACTIONS(4864), + }, + [STATE(1177)] = { + [sym__backslash_escape] = ACTIONS(4868), + [sym_entity_reference] = ACTIONS(4868), + [sym_numeric_character_reference] = ACTIONS(4868), + [anon_sym_LT] = ACTIONS(4870), + [anon_sym_GT] = ACTIONS(4868), + [anon_sym_BANG] = ACTIONS(4868), + [anon_sym_DQUOTE] = ACTIONS(4868), + [anon_sym_POUND] = ACTIONS(4868), + [anon_sym_DOLLAR] = ACTIONS(4868), + [anon_sym_PERCENT] = ACTIONS(4868), + [anon_sym_AMP] = ACTIONS(4870), + [anon_sym_SQUOTE] = ACTIONS(4868), + [anon_sym_STAR] = ACTIONS(4868), + [anon_sym_PLUS] = ACTIONS(4868), + [anon_sym_COMMA] = ACTIONS(4868), + [anon_sym_DASH] = ACTIONS(4870), + [anon_sym_DOT] = ACTIONS(4870), + [anon_sym_SLASH] = ACTIONS(4868), + [anon_sym_COLON] = ACTIONS(4868), + [anon_sym_SEMI] = ACTIONS(4868), + [anon_sym_EQ] = ACTIONS(4868), + [anon_sym_QMARK] = ACTIONS(4868), + [anon_sym_LBRACK] = ACTIONS(4870), + [anon_sym_BSLASH] = ACTIONS(4870), + [anon_sym_CARET] = ACTIONS(4870), + [anon_sym__] = ACTIONS(4868), + [anon_sym_BQUOTE] = ACTIONS(4868), + [anon_sym_LBRACE] = ACTIONS(4868), + [anon_sym_PIPE] = ACTIONS(4868), + [anon_sym_TILDE] = ACTIONS(4868), + [anon_sym_LPAREN] = ACTIONS(4868), + [anon_sym_RPAREN] = ACTIONS(4868), + [sym__newline_token] = ACTIONS(4868), + [aux_sym_insert_token1] = ACTIONS(4868), + [aux_sym_delete_token1] = ACTIONS(4868), + [aux_sym_highlight_token1] = ACTIONS(4868), + [aux_sym_edit_comment_token1] = ACTIONS(4868), + [anon_sym_CARET_LBRACK] = ACTIONS(4868), + [anon_sym_LBRACK_CARET] = ACTIONS(4868), + [sym_uri_autolink] = ACTIONS(4868), + [sym_email_autolink] = ACTIONS(4868), + [sym__whitespace_ge_2] = ACTIONS(4868), + [aux_sym__whitespace_token1] = ACTIONS(4870), + [sym__word_no_digit] = ACTIONS(4868), + [sym__digits] = ACTIONS(4868), + [anon_sym_DASH_DASH] = ACTIONS(4870), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4868), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4868), + [sym__code_span_start] = ACTIONS(4868), + [sym__emphasis_open_star] = ACTIONS(4868), + [sym__emphasis_open_underscore] = ACTIONS(4868), + [sym__strikeout_open] = ACTIONS(4868), + [sym__latex_span_start] = ACTIONS(4868), + [sym__single_quote_open] = ACTIONS(4868), + [sym__single_quote_close] = ACTIONS(4868), + [sym__double_quote_open] = ACTIONS(4868), + [sym__superscript_open] = ACTIONS(4868), + [sym__subscript_open] = ACTIONS(4868), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4868), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4868), + [sym__cite_author_in_text] = ACTIONS(4868), + [sym__cite_suppress_author] = ACTIONS(4868), + [sym__shortcode_open_escaped] = ACTIONS(4868), + [sym__shortcode_open] = ACTIONS(4868), + [sym__unclosed_span] = ACTIONS(4868), + }, + [STATE(1178)] = { + [sym__backslash_escape] = ACTIONS(4872), + [sym_entity_reference] = ACTIONS(4872), + [sym_numeric_character_reference] = ACTIONS(4872), + [anon_sym_LT] = ACTIONS(4874), + [anon_sym_GT] = ACTIONS(4872), + [anon_sym_BANG] = ACTIONS(4872), + [anon_sym_DQUOTE] = ACTIONS(4872), + [anon_sym_POUND] = ACTIONS(4872), + [anon_sym_DOLLAR] = ACTIONS(4872), + [anon_sym_PERCENT] = ACTIONS(4872), + [anon_sym_AMP] = ACTIONS(4874), + [anon_sym_SQUOTE] = ACTIONS(4872), + [anon_sym_STAR] = ACTIONS(4872), + [anon_sym_PLUS] = ACTIONS(4872), + [anon_sym_COMMA] = ACTIONS(4872), + [anon_sym_DASH] = ACTIONS(4874), + [anon_sym_DOT] = ACTIONS(4874), + [anon_sym_SLASH] = ACTIONS(4872), + [anon_sym_COLON] = ACTIONS(4872), + [anon_sym_SEMI] = ACTIONS(4872), + [anon_sym_EQ] = ACTIONS(4872), + [anon_sym_QMARK] = ACTIONS(4872), + [anon_sym_LBRACK] = ACTIONS(4874), + [anon_sym_BSLASH] = ACTIONS(4874), + [anon_sym_CARET] = ACTIONS(4874), + [anon_sym__] = ACTIONS(4872), + [anon_sym_BQUOTE] = ACTIONS(4872), + [anon_sym_LBRACE] = ACTIONS(4872), + [anon_sym_PIPE] = ACTIONS(4872), + [anon_sym_TILDE] = ACTIONS(4872), + [anon_sym_LPAREN] = ACTIONS(4872), + [anon_sym_RPAREN] = ACTIONS(4872), + [sym__newline_token] = ACTIONS(4872), + [aux_sym_insert_token1] = ACTIONS(4872), + [aux_sym_delete_token1] = ACTIONS(4872), + [aux_sym_highlight_token1] = ACTIONS(4872), + [aux_sym_edit_comment_token1] = ACTIONS(4872), + [anon_sym_CARET_LBRACK] = ACTIONS(4872), + [anon_sym_LBRACK_CARET] = ACTIONS(4872), + [sym_uri_autolink] = ACTIONS(4872), + [sym_email_autolink] = ACTIONS(4872), + [sym__whitespace_ge_2] = ACTIONS(4872), + [aux_sym__whitespace_token1] = ACTIONS(4874), + [sym__word_no_digit] = ACTIONS(4872), + [sym__digits] = ACTIONS(4872), + [anon_sym_DASH_DASH] = ACTIONS(4874), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4872), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4872), + [sym__code_span_start] = ACTIONS(4872), + [sym__emphasis_open_star] = ACTIONS(4872), + [sym__emphasis_open_underscore] = ACTIONS(4872), + [sym__strikeout_open] = ACTIONS(4872), + [sym__latex_span_start] = ACTIONS(4872), + [sym__single_quote_open] = ACTIONS(4872), + [sym__single_quote_close] = ACTIONS(4872), + [sym__double_quote_open] = ACTIONS(4872), + [sym__superscript_open] = ACTIONS(4872), + [sym__subscript_open] = ACTIONS(4872), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4872), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4872), + [sym__cite_author_in_text] = ACTIONS(4872), + [sym__cite_suppress_author] = ACTIONS(4872), + [sym__shortcode_open_escaped] = ACTIONS(4872), + [sym__shortcode_open] = ACTIONS(4872), + [sym__unclosed_span] = ACTIONS(4872), + }, + [STATE(1179)] = { + [sym__backslash_escape] = ACTIONS(4876), + [sym_entity_reference] = ACTIONS(4876), + [sym_numeric_character_reference] = ACTIONS(4876), + [anon_sym_LT] = ACTIONS(4878), + [anon_sym_GT] = ACTIONS(4876), + [anon_sym_BANG] = ACTIONS(4876), + [anon_sym_DQUOTE] = ACTIONS(4876), + [anon_sym_POUND] = ACTIONS(4876), + [anon_sym_DOLLAR] = ACTIONS(4876), + [anon_sym_PERCENT] = ACTIONS(4876), + [anon_sym_AMP] = ACTIONS(4878), + [anon_sym_SQUOTE] = ACTIONS(4876), + [anon_sym_STAR] = ACTIONS(4876), + [anon_sym_PLUS] = ACTIONS(4876), + [anon_sym_COMMA] = ACTIONS(4876), + [anon_sym_DASH] = ACTIONS(4878), + [anon_sym_DOT] = ACTIONS(4878), + [anon_sym_SLASH] = ACTIONS(4876), + [anon_sym_COLON] = ACTIONS(4876), + [anon_sym_SEMI] = ACTIONS(4876), + [anon_sym_EQ] = ACTIONS(4876), + [anon_sym_QMARK] = ACTIONS(4876), + [anon_sym_LBRACK] = ACTIONS(4878), + [anon_sym_BSLASH] = ACTIONS(4878), + [anon_sym_CARET] = ACTIONS(4878), + [anon_sym__] = ACTIONS(4876), + [anon_sym_BQUOTE] = ACTIONS(4876), + [anon_sym_LBRACE] = ACTIONS(4876), + [anon_sym_PIPE] = ACTIONS(4876), + [anon_sym_TILDE] = ACTIONS(4876), + [anon_sym_LPAREN] = ACTIONS(4876), + [anon_sym_RPAREN] = ACTIONS(4876), + [sym__newline_token] = ACTIONS(4876), + [aux_sym_insert_token1] = ACTIONS(4876), + [aux_sym_delete_token1] = ACTIONS(4876), + [aux_sym_highlight_token1] = ACTIONS(4876), + [aux_sym_edit_comment_token1] = ACTIONS(4876), + [anon_sym_CARET_LBRACK] = ACTIONS(4876), + [anon_sym_LBRACK_CARET] = ACTIONS(4876), + [sym_uri_autolink] = ACTIONS(4876), + [sym_email_autolink] = ACTIONS(4876), + [sym__whitespace_ge_2] = ACTIONS(4876), + [aux_sym__whitespace_token1] = ACTIONS(4878), + [sym__word_no_digit] = ACTIONS(4876), + [sym__digits] = ACTIONS(4876), + [anon_sym_DASH_DASH] = ACTIONS(4878), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4876), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4876), + [sym__code_span_start] = ACTIONS(4876), + [sym__emphasis_open_star] = ACTIONS(4876), + [sym__emphasis_open_underscore] = ACTIONS(4876), + [sym__strikeout_open] = ACTIONS(4876), + [sym__latex_span_start] = ACTIONS(4876), + [sym__single_quote_open] = ACTIONS(4876), + [sym__single_quote_close] = ACTIONS(4876), + [sym__double_quote_open] = ACTIONS(4876), + [sym__superscript_open] = ACTIONS(4876), + [sym__subscript_open] = ACTIONS(4876), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4876), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4876), + [sym__cite_author_in_text] = ACTIONS(4876), + [sym__cite_suppress_author] = ACTIONS(4876), + [sym__shortcode_open_escaped] = ACTIONS(4876), + [sym__shortcode_open] = ACTIONS(4876), + [sym__unclosed_span] = ACTIONS(4876), + }, + [STATE(1180)] = { + [sym__backslash_escape] = ACTIONS(4588), + [sym_entity_reference] = ACTIONS(4588), + [sym_numeric_character_reference] = ACTIONS(4588), + [anon_sym_LT] = ACTIONS(4590), + [anon_sym_GT] = ACTIONS(4588), + [anon_sym_BANG] = ACTIONS(4588), + [anon_sym_DQUOTE] = ACTIONS(4588), + [anon_sym_POUND] = ACTIONS(4588), + [anon_sym_DOLLAR] = ACTIONS(4588), + [anon_sym_PERCENT] = ACTIONS(4588), + [anon_sym_AMP] = ACTIONS(4590), + [anon_sym_SQUOTE] = ACTIONS(4588), + [anon_sym_STAR] = ACTIONS(4588), + [anon_sym_PLUS] = ACTIONS(4588), + [anon_sym_COMMA] = ACTIONS(4588), + [anon_sym_DASH] = ACTIONS(4590), + [anon_sym_DOT] = ACTIONS(4590), + [anon_sym_SLASH] = ACTIONS(4588), + [anon_sym_COLON] = ACTIONS(4588), + [anon_sym_SEMI] = ACTIONS(4588), + [anon_sym_EQ] = ACTIONS(4588), + [anon_sym_QMARK] = ACTIONS(4588), + [anon_sym_LBRACK] = ACTIONS(4590), + [anon_sym_BSLASH] = ACTIONS(4590), + [anon_sym_CARET] = ACTIONS(4590), + [anon_sym__] = ACTIONS(4588), + [anon_sym_BQUOTE] = ACTIONS(4588), + [anon_sym_LBRACE] = ACTIONS(4588), + [anon_sym_PIPE] = ACTIONS(4588), + [anon_sym_TILDE] = ACTIONS(4588), + [anon_sym_LPAREN] = ACTIONS(4588), + [anon_sym_RPAREN] = ACTIONS(4588), + [sym__newline_token] = ACTIONS(4588), + [aux_sym_insert_token1] = ACTIONS(4588), + [aux_sym_delete_token1] = ACTIONS(4588), + [aux_sym_highlight_token1] = ACTIONS(4588), + [aux_sym_edit_comment_token1] = ACTIONS(4588), + [anon_sym_CARET_LBRACK] = ACTIONS(4588), + [anon_sym_LBRACK_CARET] = ACTIONS(4588), + [sym_uri_autolink] = ACTIONS(4588), + [sym_email_autolink] = ACTIONS(4588), + [sym__whitespace_ge_2] = ACTIONS(4588), + [aux_sym__whitespace_token1] = ACTIONS(4590), + [sym__word_no_digit] = ACTIONS(4588), + [sym__digits] = ACTIONS(4588), + [anon_sym_DASH_DASH] = ACTIONS(4590), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4588), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4588), + [sym__code_span_start] = ACTIONS(4588), + [sym__emphasis_open_star] = ACTIONS(4588), + [sym__emphasis_open_underscore] = ACTIONS(4588), + [sym__strikeout_open] = ACTIONS(4588), + [sym__latex_span_start] = ACTIONS(4588), + [sym__single_quote_open] = ACTIONS(4588), + [sym__single_quote_close] = ACTIONS(4588), + [sym__double_quote_open] = ACTIONS(4588), + [sym__superscript_open] = ACTIONS(4588), + [sym__subscript_open] = ACTIONS(4588), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4588), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4588), + [sym__cite_author_in_text] = ACTIONS(4588), + [sym__cite_suppress_author] = ACTIONS(4588), + [sym__shortcode_open_escaped] = ACTIONS(4588), + [sym__shortcode_open] = ACTIONS(4588), + [sym__unclosed_span] = ACTIONS(4588), + }, + [STATE(1181)] = { + [ts_builtin_sym_end] = ACTIONS(4988), + [sym__backslash_escape] = ACTIONS(4988), + [sym_entity_reference] = ACTIONS(4988), + [sym_numeric_character_reference] = ACTIONS(4988), + [anon_sym_LT] = ACTIONS(4990), + [anon_sym_GT] = ACTIONS(4988), + [anon_sym_BANG] = ACTIONS(4988), + [anon_sym_DQUOTE] = ACTIONS(4988), + [anon_sym_POUND] = ACTIONS(4988), + [anon_sym_DOLLAR] = ACTIONS(4988), + [anon_sym_PERCENT] = ACTIONS(4988), + [anon_sym_AMP] = ACTIONS(4990), + [anon_sym_SQUOTE] = ACTIONS(4988), + [anon_sym_STAR] = ACTIONS(4988), + [anon_sym_PLUS] = ACTIONS(4988), + [anon_sym_COMMA] = ACTIONS(4988), + [anon_sym_DASH] = ACTIONS(4990), + [anon_sym_DOT] = ACTIONS(4990), + [anon_sym_SLASH] = ACTIONS(4988), + [anon_sym_COLON] = ACTIONS(4988), + [anon_sym_SEMI] = ACTIONS(4988), + [anon_sym_EQ] = ACTIONS(4988), + [anon_sym_QMARK] = ACTIONS(4988), + [anon_sym_LBRACK] = ACTIONS(4990), + [anon_sym_BSLASH] = ACTIONS(4990), + [anon_sym_CARET] = ACTIONS(4990), + [anon_sym__] = ACTIONS(4988), + [anon_sym_BQUOTE] = ACTIONS(4988), + [anon_sym_LBRACE] = ACTIONS(4988), + [anon_sym_PIPE] = ACTIONS(4988), + [anon_sym_TILDE] = ACTIONS(4988), + [anon_sym_LPAREN] = ACTIONS(4988), + [anon_sym_RPAREN] = ACTIONS(4988), + [sym__newline_token] = ACTIONS(4988), + [aux_sym_insert_token1] = ACTIONS(4988), + [aux_sym_delete_token1] = ACTIONS(4988), + [aux_sym_highlight_token1] = ACTIONS(4988), + [aux_sym_edit_comment_token1] = ACTIONS(4988), + [anon_sym_CARET_LBRACK] = ACTIONS(4988), + [anon_sym_LBRACK_CARET] = ACTIONS(4988), + [sym_uri_autolink] = ACTIONS(4988), + [sym_email_autolink] = ACTIONS(4988), + [sym__whitespace_ge_2] = ACTIONS(4988), + [aux_sym__whitespace_token1] = ACTIONS(4990), + [sym__word_no_digit] = ACTIONS(4988), + [sym__digits] = ACTIONS(4988), + [anon_sym_DASH_DASH] = ACTIONS(4990), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4988), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4988), + [sym__code_span_start] = ACTIONS(4988), + [sym__emphasis_open_star] = ACTIONS(4988), + [sym__emphasis_open_underscore] = ACTIONS(4988), + [sym__strikeout_open] = ACTIONS(4988), + [sym__latex_span_start] = ACTIONS(4988), + [sym__single_quote_open] = ACTIONS(4988), + [sym__double_quote_open] = ACTIONS(4988), + [sym__superscript_open] = ACTIONS(4988), + [sym__subscript_open] = ACTIONS(4988), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4988), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4988), + [sym__cite_author_in_text] = ACTIONS(4988), + [sym__cite_suppress_author] = ACTIONS(4988), + [sym__shortcode_open_escaped] = ACTIONS(4988), + [sym__shortcode_open] = ACTIONS(4988), + [sym__unclosed_span] = ACTIONS(4988), + }, + [STATE(1182)] = { + [ts_builtin_sym_end] = ACTIONS(4992), + [sym__backslash_escape] = ACTIONS(4992), + [sym_entity_reference] = ACTIONS(4992), + [sym_numeric_character_reference] = ACTIONS(4992), + [anon_sym_LT] = ACTIONS(4994), + [anon_sym_GT] = ACTIONS(4992), + [anon_sym_BANG] = ACTIONS(4992), + [anon_sym_DQUOTE] = ACTIONS(4992), + [anon_sym_POUND] = ACTIONS(4992), + [anon_sym_DOLLAR] = ACTIONS(4992), + [anon_sym_PERCENT] = ACTIONS(4992), + [anon_sym_AMP] = ACTIONS(4994), + [anon_sym_SQUOTE] = ACTIONS(4992), + [anon_sym_STAR] = ACTIONS(4992), + [anon_sym_PLUS] = ACTIONS(4992), + [anon_sym_COMMA] = ACTIONS(4992), + [anon_sym_DASH] = ACTIONS(4994), + [anon_sym_DOT] = ACTIONS(4994), + [anon_sym_SLASH] = ACTIONS(4992), + [anon_sym_COLON] = ACTIONS(4992), + [anon_sym_SEMI] = ACTIONS(4992), + [anon_sym_EQ] = ACTIONS(4992), + [anon_sym_QMARK] = ACTIONS(4992), + [anon_sym_LBRACK] = ACTIONS(4994), + [anon_sym_BSLASH] = ACTIONS(4994), + [anon_sym_CARET] = ACTIONS(4994), + [anon_sym__] = ACTIONS(4992), + [anon_sym_BQUOTE] = ACTIONS(4992), + [anon_sym_LBRACE] = ACTIONS(4992), + [anon_sym_PIPE] = ACTIONS(4992), + [anon_sym_TILDE] = ACTIONS(4992), + [anon_sym_LPAREN] = ACTIONS(4992), + [anon_sym_RPAREN] = ACTIONS(4992), + [sym__newline_token] = ACTIONS(4992), + [aux_sym_insert_token1] = ACTIONS(4992), + [aux_sym_delete_token1] = ACTIONS(4992), + [aux_sym_highlight_token1] = ACTIONS(4992), + [aux_sym_edit_comment_token1] = ACTIONS(4992), + [anon_sym_CARET_LBRACK] = ACTIONS(4992), + [anon_sym_LBRACK_CARET] = ACTIONS(4992), + [sym_uri_autolink] = ACTIONS(4992), + [sym_email_autolink] = ACTIONS(4992), + [sym__whitespace_ge_2] = ACTIONS(4992), + [aux_sym__whitespace_token1] = ACTIONS(4994), + [sym__word_no_digit] = ACTIONS(4992), + [sym__digits] = ACTIONS(4992), + [anon_sym_DASH_DASH] = ACTIONS(4994), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4992), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4992), + [sym__code_span_start] = ACTIONS(4992), + [sym__emphasis_open_star] = ACTIONS(4992), + [sym__emphasis_open_underscore] = ACTIONS(4992), + [sym__strikeout_open] = ACTIONS(4992), + [sym__latex_span_start] = ACTIONS(4992), + [sym__single_quote_open] = ACTIONS(4992), + [sym__double_quote_open] = ACTIONS(4992), + [sym__superscript_open] = ACTIONS(4992), + [sym__subscript_open] = ACTIONS(4992), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4992), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4992), + [sym__cite_author_in_text] = ACTIONS(4992), + [sym__cite_suppress_author] = ACTIONS(4992), + [sym__shortcode_open_escaped] = ACTIONS(4992), + [sym__shortcode_open] = ACTIONS(4992), + [sym__unclosed_span] = ACTIONS(4992), + }, + [STATE(1183)] = { + [sym__backslash_escape] = ACTIONS(5056), + [sym_entity_reference] = ACTIONS(5056), + [sym_numeric_character_reference] = ACTIONS(5056), + [anon_sym_LT] = ACTIONS(5058), + [anon_sym_GT] = ACTIONS(5056), + [anon_sym_BANG] = ACTIONS(5056), + [anon_sym_DQUOTE] = ACTIONS(5056), + [anon_sym_POUND] = ACTIONS(5056), + [anon_sym_DOLLAR] = ACTIONS(5056), + [anon_sym_PERCENT] = ACTIONS(5056), + [anon_sym_AMP] = ACTIONS(5058), + [anon_sym_SQUOTE] = ACTIONS(5056), + [anon_sym_STAR] = ACTIONS(5056), + [anon_sym_PLUS] = ACTIONS(5056), + [anon_sym_COMMA] = ACTIONS(5056), + [anon_sym_DASH] = ACTIONS(5058), + [anon_sym_DOT] = ACTIONS(5058), + [anon_sym_SLASH] = ACTIONS(5056), + [anon_sym_COLON] = ACTIONS(5056), + [anon_sym_SEMI] = ACTIONS(5056), + [anon_sym_EQ] = ACTIONS(5056), + [anon_sym_QMARK] = ACTIONS(5056), + [anon_sym_LBRACK] = ACTIONS(5058), + [anon_sym_BSLASH] = ACTIONS(5058), + [anon_sym_CARET] = ACTIONS(5058), + [anon_sym__] = ACTIONS(5056), + [anon_sym_BQUOTE] = ACTIONS(5056), + [anon_sym_LBRACE] = ACTIONS(5056), + [anon_sym_PIPE] = ACTIONS(5056), + [anon_sym_TILDE] = ACTIONS(5056), + [anon_sym_LPAREN] = ACTIONS(5056), + [anon_sym_RPAREN] = ACTIONS(5056), + [sym__newline_token] = ACTIONS(5056), + [aux_sym_insert_token1] = ACTIONS(5056), + [aux_sym_delete_token1] = ACTIONS(5056), + [aux_sym_highlight_token1] = ACTIONS(5056), + [aux_sym_edit_comment_token1] = ACTIONS(5056), + [anon_sym_CARET_LBRACK] = ACTIONS(5056), + [anon_sym_LBRACK_CARET] = ACTIONS(5056), + [sym_uri_autolink] = ACTIONS(5056), + [sym_email_autolink] = ACTIONS(5056), + [sym__whitespace_ge_2] = ACTIONS(5056), + [aux_sym__whitespace_token1] = ACTIONS(5058), + [sym__word_no_digit] = ACTIONS(5056), + [sym__digits] = ACTIONS(5056), + [anon_sym_DASH_DASH] = ACTIONS(5058), + [anon_sym_DASH_DASH_DASH] = ACTIONS(5056), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5056), + [sym__code_span_start] = ACTIONS(5056), + [sym__emphasis_open_star] = ACTIONS(5056), + [sym__emphasis_open_underscore] = ACTIONS(5056), + [sym__emphasis_close_underscore] = ACTIONS(5056), + [sym__strikeout_open] = ACTIONS(5056), + [sym__latex_span_start] = ACTIONS(5056), + [sym__single_quote_open] = ACTIONS(5056), + [sym__double_quote_open] = ACTIONS(5056), + [sym__superscript_open] = ACTIONS(5056), + [sym__subscript_open] = ACTIONS(5056), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5056), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5056), + [sym__cite_author_in_text] = ACTIONS(5056), + [sym__cite_suppress_author] = ACTIONS(5056), + [sym__shortcode_open_escaped] = ACTIONS(5056), + [sym__shortcode_open] = ACTIONS(5056), + [sym__unclosed_span] = ACTIONS(5056), + }, + [STATE(1184)] = { + [ts_builtin_sym_end] = ACTIONS(5024), + [sym__backslash_escape] = ACTIONS(5024), + [sym_entity_reference] = ACTIONS(5024), + [sym_numeric_character_reference] = ACTIONS(5024), + [anon_sym_LT] = ACTIONS(5026), + [anon_sym_GT] = ACTIONS(5024), + [anon_sym_BANG] = ACTIONS(5024), + [anon_sym_DQUOTE] = ACTIONS(5024), + [anon_sym_POUND] = ACTIONS(5024), + [anon_sym_DOLLAR] = ACTIONS(5024), + [anon_sym_PERCENT] = ACTIONS(5024), + [anon_sym_AMP] = ACTIONS(5026), + [anon_sym_SQUOTE] = ACTIONS(5024), + [anon_sym_STAR] = ACTIONS(5024), + [anon_sym_PLUS] = ACTIONS(5024), + [anon_sym_COMMA] = ACTIONS(5024), + [anon_sym_DASH] = ACTIONS(5026), + [anon_sym_DOT] = ACTIONS(5026), + [anon_sym_SLASH] = ACTIONS(5024), + [anon_sym_COLON] = ACTIONS(5024), + [anon_sym_SEMI] = ACTIONS(5024), + [anon_sym_EQ] = ACTIONS(5024), + [anon_sym_QMARK] = ACTIONS(5024), + [anon_sym_LBRACK] = ACTIONS(5026), + [anon_sym_BSLASH] = ACTIONS(5026), + [anon_sym_CARET] = ACTIONS(5026), + [anon_sym__] = ACTIONS(5024), + [anon_sym_BQUOTE] = ACTIONS(5024), + [anon_sym_LBRACE] = ACTIONS(5024), + [anon_sym_PIPE] = ACTIONS(5024), + [anon_sym_TILDE] = ACTIONS(5024), + [anon_sym_LPAREN] = ACTIONS(5024), + [anon_sym_RPAREN] = ACTIONS(5024), + [sym__newline_token] = ACTIONS(5024), + [aux_sym_insert_token1] = ACTIONS(5024), + [aux_sym_delete_token1] = ACTIONS(5024), + [aux_sym_highlight_token1] = ACTIONS(5024), + [aux_sym_edit_comment_token1] = ACTIONS(5024), + [anon_sym_CARET_LBRACK] = ACTIONS(5024), + [anon_sym_LBRACK_CARET] = ACTIONS(5024), + [sym_uri_autolink] = ACTIONS(5024), + [sym_email_autolink] = ACTIONS(5024), + [sym__whitespace_ge_2] = ACTIONS(5024), + [aux_sym__whitespace_token1] = ACTIONS(5026), + [sym__word_no_digit] = ACTIONS(5024), + [sym__digits] = ACTIONS(5024), + [anon_sym_DASH_DASH] = ACTIONS(5026), + [anon_sym_DASH_DASH_DASH] = ACTIONS(5024), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5024), + [sym__code_span_start] = ACTIONS(5024), + [sym__emphasis_open_star] = ACTIONS(5024), + [sym__emphasis_open_underscore] = ACTIONS(5024), + [sym__strikeout_open] = ACTIONS(5024), + [sym__latex_span_start] = ACTIONS(5024), + [sym__single_quote_open] = ACTIONS(5024), + [sym__double_quote_open] = ACTIONS(5024), + [sym__superscript_open] = ACTIONS(5024), + [sym__subscript_open] = ACTIONS(5024), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5024), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5024), + [sym__cite_author_in_text] = ACTIONS(5024), + [sym__cite_suppress_author] = ACTIONS(5024), + [sym__shortcode_open_escaped] = ACTIONS(5024), + [sym__shortcode_open] = ACTIONS(5024), + [sym__unclosed_span] = ACTIONS(5024), + }, + [STATE(1185)] = { + [ts_builtin_sym_end] = ACTIONS(5040), + [sym__backslash_escape] = ACTIONS(5040), + [sym_entity_reference] = ACTIONS(5040), + [sym_numeric_character_reference] = ACTIONS(5040), + [anon_sym_LT] = ACTIONS(5042), + [anon_sym_GT] = ACTIONS(5040), + [anon_sym_BANG] = ACTIONS(5040), + [anon_sym_DQUOTE] = ACTIONS(5040), + [anon_sym_POUND] = ACTIONS(5040), + [anon_sym_DOLLAR] = ACTIONS(5040), + [anon_sym_PERCENT] = ACTIONS(5040), + [anon_sym_AMP] = ACTIONS(5042), + [anon_sym_SQUOTE] = ACTIONS(5040), + [anon_sym_STAR] = ACTIONS(5040), + [anon_sym_PLUS] = ACTIONS(5040), + [anon_sym_COMMA] = ACTIONS(5040), + [anon_sym_DASH] = ACTIONS(5042), + [anon_sym_DOT] = ACTIONS(5042), + [anon_sym_SLASH] = ACTIONS(5040), + [anon_sym_COLON] = ACTIONS(5040), + [anon_sym_SEMI] = ACTIONS(5040), + [anon_sym_EQ] = ACTIONS(5040), + [anon_sym_QMARK] = ACTIONS(5040), + [anon_sym_LBRACK] = ACTIONS(5042), + [anon_sym_BSLASH] = ACTIONS(5042), + [anon_sym_CARET] = ACTIONS(5042), + [anon_sym__] = ACTIONS(5040), + [anon_sym_BQUOTE] = ACTIONS(5040), + [anon_sym_LBRACE] = ACTIONS(5040), + [anon_sym_PIPE] = ACTIONS(5040), + [anon_sym_TILDE] = ACTIONS(5040), + [anon_sym_LPAREN] = ACTIONS(5040), + [anon_sym_RPAREN] = ACTIONS(5040), + [sym__newline_token] = ACTIONS(5040), + [aux_sym_insert_token1] = ACTIONS(5040), + [aux_sym_delete_token1] = ACTIONS(5040), + [aux_sym_highlight_token1] = ACTIONS(5040), + [aux_sym_edit_comment_token1] = ACTIONS(5040), + [anon_sym_CARET_LBRACK] = ACTIONS(5040), + [anon_sym_LBRACK_CARET] = ACTIONS(5040), + [sym_uri_autolink] = ACTIONS(5040), + [sym_email_autolink] = ACTIONS(5040), + [sym__whitespace_ge_2] = ACTIONS(5040), + [aux_sym__whitespace_token1] = ACTIONS(5042), + [sym__word_no_digit] = ACTIONS(5040), + [sym__digits] = ACTIONS(5040), + [anon_sym_DASH_DASH] = ACTIONS(5042), + [anon_sym_DASH_DASH_DASH] = ACTIONS(5040), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5040), + [sym__code_span_start] = ACTIONS(5040), + [sym__emphasis_open_star] = ACTIONS(5040), + [sym__emphasis_open_underscore] = ACTIONS(5040), + [sym__strikeout_open] = ACTIONS(5040), + [sym__latex_span_start] = ACTIONS(5040), + [sym__single_quote_open] = ACTIONS(5040), + [sym__double_quote_open] = ACTIONS(5040), + [sym__superscript_open] = ACTIONS(5040), + [sym__subscript_open] = ACTIONS(5040), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5040), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5040), + [sym__cite_author_in_text] = ACTIONS(5040), + [sym__cite_suppress_author] = ACTIONS(5040), + [sym__shortcode_open_escaped] = ACTIONS(5040), + [sym__shortcode_open] = ACTIONS(5040), + [sym__unclosed_span] = ACTIONS(5040), + }, + [STATE(1186)] = { + [ts_builtin_sym_end] = ACTIONS(5044), + [sym__backslash_escape] = ACTIONS(5044), + [sym_entity_reference] = ACTIONS(5044), + [sym_numeric_character_reference] = ACTIONS(5044), + [anon_sym_LT] = ACTIONS(5046), + [anon_sym_GT] = ACTIONS(5044), + [anon_sym_BANG] = ACTIONS(5044), + [anon_sym_DQUOTE] = ACTIONS(5044), + [anon_sym_POUND] = ACTIONS(5044), + [anon_sym_DOLLAR] = ACTIONS(5044), + [anon_sym_PERCENT] = ACTIONS(5044), + [anon_sym_AMP] = ACTIONS(5046), + [anon_sym_SQUOTE] = ACTIONS(5044), + [anon_sym_STAR] = ACTIONS(5044), + [anon_sym_PLUS] = ACTIONS(5044), + [anon_sym_COMMA] = ACTIONS(5044), + [anon_sym_DASH] = ACTIONS(5046), + [anon_sym_DOT] = ACTIONS(5046), + [anon_sym_SLASH] = ACTIONS(5044), + [anon_sym_COLON] = ACTIONS(5044), + [anon_sym_SEMI] = ACTIONS(5044), + [anon_sym_EQ] = ACTIONS(5044), + [anon_sym_QMARK] = ACTIONS(5044), + [anon_sym_LBRACK] = ACTIONS(5046), + [anon_sym_BSLASH] = ACTIONS(5046), + [anon_sym_CARET] = ACTIONS(5046), + [anon_sym__] = ACTIONS(5044), + [anon_sym_BQUOTE] = ACTIONS(5044), + [anon_sym_LBRACE] = ACTIONS(5044), + [anon_sym_PIPE] = ACTIONS(5044), + [anon_sym_TILDE] = ACTIONS(5044), + [anon_sym_LPAREN] = ACTIONS(5044), + [anon_sym_RPAREN] = ACTIONS(5044), + [sym__newline_token] = ACTIONS(5044), + [aux_sym_insert_token1] = ACTIONS(5044), + [aux_sym_delete_token1] = ACTIONS(5044), + [aux_sym_highlight_token1] = ACTIONS(5044), + [aux_sym_edit_comment_token1] = ACTIONS(5044), + [anon_sym_CARET_LBRACK] = ACTIONS(5044), + [anon_sym_LBRACK_CARET] = ACTIONS(5044), + [sym_uri_autolink] = ACTIONS(5044), + [sym_email_autolink] = ACTIONS(5044), + [sym__whitespace_ge_2] = ACTIONS(5044), + [aux_sym__whitespace_token1] = ACTIONS(5046), + [sym__word_no_digit] = ACTIONS(5044), + [sym__digits] = ACTIONS(5044), + [anon_sym_DASH_DASH] = ACTIONS(5046), + [anon_sym_DASH_DASH_DASH] = ACTIONS(5044), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5044), + [sym__code_span_start] = ACTIONS(5044), + [sym__emphasis_open_star] = ACTIONS(5044), + [sym__emphasis_open_underscore] = ACTIONS(5044), + [sym__strikeout_open] = ACTIONS(5044), + [sym__latex_span_start] = ACTIONS(5044), + [sym__single_quote_open] = ACTIONS(5044), + [sym__double_quote_open] = ACTIONS(5044), + [sym__superscript_open] = ACTIONS(5044), + [sym__subscript_open] = ACTIONS(5044), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5044), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5044), + [sym__cite_author_in_text] = ACTIONS(5044), + [sym__cite_suppress_author] = ACTIONS(5044), + [sym__shortcode_open_escaped] = ACTIONS(5044), + [sym__shortcode_open] = ACTIONS(5044), + [sym__unclosed_span] = ACTIONS(5044), + }, + [STATE(1187)] = { + [ts_builtin_sym_end] = ACTIONS(5048), + [sym__backslash_escape] = ACTIONS(5048), + [sym_entity_reference] = ACTIONS(5048), + [sym_numeric_character_reference] = ACTIONS(5048), + [anon_sym_LT] = ACTIONS(5050), + [anon_sym_GT] = ACTIONS(5048), + [anon_sym_BANG] = ACTIONS(5048), + [anon_sym_DQUOTE] = ACTIONS(5048), + [anon_sym_POUND] = ACTIONS(5048), + [anon_sym_DOLLAR] = ACTIONS(5048), + [anon_sym_PERCENT] = ACTIONS(5048), + [anon_sym_AMP] = ACTIONS(5050), + [anon_sym_SQUOTE] = ACTIONS(5048), + [anon_sym_STAR] = ACTIONS(5048), + [anon_sym_PLUS] = ACTIONS(5048), + [anon_sym_COMMA] = ACTIONS(5048), + [anon_sym_DASH] = ACTIONS(5050), + [anon_sym_DOT] = ACTIONS(5050), + [anon_sym_SLASH] = ACTIONS(5048), + [anon_sym_COLON] = ACTIONS(5048), + [anon_sym_SEMI] = ACTIONS(5048), + [anon_sym_EQ] = ACTIONS(5048), + [anon_sym_QMARK] = ACTIONS(5048), + [anon_sym_LBRACK] = ACTIONS(5050), + [anon_sym_BSLASH] = ACTIONS(5050), + [anon_sym_CARET] = ACTIONS(5050), + [anon_sym__] = ACTIONS(5048), + [anon_sym_BQUOTE] = ACTIONS(5048), + [anon_sym_LBRACE] = ACTIONS(5048), + [anon_sym_PIPE] = ACTIONS(5048), + [anon_sym_TILDE] = ACTIONS(5048), + [anon_sym_LPAREN] = ACTIONS(5048), + [anon_sym_RPAREN] = ACTIONS(5048), + [sym__newline_token] = ACTIONS(5048), + [aux_sym_insert_token1] = ACTIONS(5048), + [aux_sym_delete_token1] = ACTIONS(5048), + [aux_sym_highlight_token1] = ACTIONS(5048), + [aux_sym_edit_comment_token1] = ACTIONS(5048), + [anon_sym_CARET_LBRACK] = ACTIONS(5048), + [anon_sym_LBRACK_CARET] = ACTIONS(5048), + [sym_uri_autolink] = ACTIONS(5048), + [sym_email_autolink] = ACTIONS(5048), + [sym__whitespace_ge_2] = ACTIONS(5048), + [aux_sym__whitespace_token1] = ACTIONS(5050), + [sym__word_no_digit] = ACTIONS(5048), + [sym__digits] = ACTIONS(5048), + [anon_sym_DASH_DASH] = ACTIONS(5050), + [anon_sym_DASH_DASH_DASH] = ACTIONS(5048), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5048), + [sym__code_span_start] = ACTIONS(5048), + [sym__emphasis_open_star] = ACTIONS(5048), + [sym__emphasis_open_underscore] = ACTIONS(5048), + [sym__strikeout_open] = ACTIONS(5048), + [sym__latex_span_start] = ACTIONS(5048), + [sym__single_quote_open] = ACTIONS(5048), + [sym__double_quote_open] = ACTIONS(5048), + [sym__superscript_open] = ACTIONS(5048), + [sym__subscript_open] = ACTIONS(5048), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5048), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5048), + [sym__cite_author_in_text] = ACTIONS(5048), + [sym__cite_suppress_author] = ACTIONS(5048), + [sym__shortcode_open_escaped] = ACTIONS(5048), + [sym__shortcode_open] = ACTIONS(5048), + [sym__unclosed_span] = ACTIONS(5048), + }, + [STATE(1188)] = { + [ts_builtin_sym_end] = ACTIONS(5052), + [sym__backslash_escape] = ACTIONS(5052), + [sym_entity_reference] = ACTIONS(5052), + [sym_numeric_character_reference] = ACTIONS(5052), + [anon_sym_LT] = ACTIONS(5054), + [anon_sym_GT] = ACTIONS(5052), + [anon_sym_BANG] = ACTIONS(5052), + [anon_sym_DQUOTE] = ACTIONS(5052), + [anon_sym_POUND] = ACTIONS(5052), + [anon_sym_DOLLAR] = ACTIONS(5052), + [anon_sym_PERCENT] = ACTIONS(5052), + [anon_sym_AMP] = ACTIONS(5054), + [anon_sym_SQUOTE] = ACTIONS(5052), + [anon_sym_STAR] = ACTIONS(5052), + [anon_sym_PLUS] = ACTIONS(5052), + [anon_sym_COMMA] = ACTIONS(5052), + [anon_sym_DASH] = ACTIONS(5054), + [anon_sym_DOT] = ACTIONS(5054), + [anon_sym_SLASH] = ACTIONS(5052), + [anon_sym_COLON] = ACTIONS(5052), + [anon_sym_SEMI] = ACTIONS(5052), + [anon_sym_EQ] = ACTIONS(5052), + [anon_sym_QMARK] = ACTIONS(5052), + [anon_sym_LBRACK] = ACTIONS(5054), + [anon_sym_BSLASH] = ACTIONS(5054), + [anon_sym_CARET] = ACTIONS(5054), + [anon_sym__] = ACTIONS(5052), + [anon_sym_BQUOTE] = ACTIONS(5052), + [anon_sym_LBRACE] = ACTIONS(5052), + [anon_sym_PIPE] = ACTIONS(5052), + [anon_sym_TILDE] = ACTIONS(5052), + [anon_sym_LPAREN] = ACTIONS(5052), + [anon_sym_RPAREN] = ACTIONS(5052), + [sym__newline_token] = ACTIONS(5052), + [aux_sym_insert_token1] = ACTIONS(5052), + [aux_sym_delete_token1] = ACTIONS(5052), + [aux_sym_highlight_token1] = ACTIONS(5052), + [aux_sym_edit_comment_token1] = ACTIONS(5052), + [anon_sym_CARET_LBRACK] = ACTIONS(5052), + [anon_sym_LBRACK_CARET] = ACTIONS(5052), + [sym_uri_autolink] = ACTIONS(5052), + [sym_email_autolink] = ACTIONS(5052), + [sym__whitespace_ge_2] = ACTIONS(5052), + [aux_sym__whitespace_token1] = ACTIONS(5054), + [sym__word_no_digit] = ACTIONS(5052), + [sym__digits] = ACTIONS(5052), + [anon_sym_DASH_DASH] = ACTIONS(5054), + [anon_sym_DASH_DASH_DASH] = ACTIONS(5052), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5052), + [sym__code_span_start] = ACTIONS(5052), + [sym__emphasis_open_star] = ACTIONS(5052), + [sym__emphasis_open_underscore] = ACTIONS(5052), + [sym__strikeout_open] = ACTIONS(5052), + [sym__latex_span_start] = ACTIONS(5052), + [sym__single_quote_open] = ACTIONS(5052), + [sym__double_quote_open] = ACTIONS(5052), + [sym__superscript_open] = ACTIONS(5052), + [sym__subscript_open] = ACTIONS(5052), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5052), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5052), + [sym__cite_author_in_text] = ACTIONS(5052), + [sym__cite_suppress_author] = ACTIONS(5052), + [sym__shortcode_open_escaped] = ACTIONS(5052), + [sym__shortcode_open] = ACTIONS(5052), + [sym__unclosed_span] = ACTIONS(5052), + }, + [STATE(1189)] = { + [sym__backslash_escape] = ACTIONS(4540), + [sym_entity_reference] = ACTIONS(4540), + [sym_numeric_character_reference] = ACTIONS(4540), + [anon_sym_LT] = ACTIONS(4542), + [anon_sym_GT] = ACTIONS(4540), + [anon_sym_BANG] = ACTIONS(4540), + [anon_sym_DQUOTE] = ACTIONS(4540), + [anon_sym_POUND] = ACTIONS(4540), + [anon_sym_DOLLAR] = ACTIONS(4540), + [anon_sym_PERCENT] = ACTIONS(4540), + [anon_sym_AMP] = ACTIONS(4542), + [anon_sym_SQUOTE] = ACTIONS(4540), + [anon_sym_STAR] = ACTIONS(4540), + [anon_sym_PLUS] = ACTIONS(4540), + [anon_sym_COMMA] = ACTIONS(4540), + [anon_sym_DASH] = ACTIONS(4542), + [anon_sym_DOT] = ACTIONS(4542), + [anon_sym_SLASH] = ACTIONS(4540), + [anon_sym_COLON] = ACTIONS(4540), + [anon_sym_SEMI] = ACTIONS(4540), + [anon_sym_EQ] = ACTIONS(4540), + [anon_sym_QMARK] = ACTIONS(4540), + [anon_sym_LBRACK] = ACTIONS(4542), + [anon_sym_BSLASH] = ACTIONS(4542), + [anon_sym_CARET] = ACTIONS(4542), + [anon_sym__] = ACTIONS(4540), + [anon_sym_BQUOTE] = ACTIONS(4540), + [anon_sym_LBRACE] = ACTIONS(4540), + [anon_sym_PIPE] = ACTIONS(4540), + [anon_sym_TILDE] = ACTIONS(4540), + [anon_sym_LPAREN] = ACTIONS(4540), + [anon_sym_RPAREN] = ACTIONS(4540), + [sym__newline_token] = ACTIONS(4540), + [aux_sym_insert_token1] = ACTIONS(4540), + [aux_sym_delete_token1] = ACTIONS(4540), + [aux_sym_highlight_token1] = ACTIONS(4540), + [aux_sym_edit_comment_token1] = ACTIONS(4540), + [anon_sym_CARET_LBRACK] = ACTIONS(4540), + [anon_sym_LBRACK_CARET] = ACTIONS(4540), + [sym_uri_autolink] = ACTIONS(4540), + [sym_email_autolink] = ACTIONS(4540), + [sym__whitespace_ge_2] = ACTIONS(4540), + [aux_sym__whitespace_token1] = ACTIONS(4542), + [sym__word_no_digit] = ACTIONS(4540), + [sym__digits] = ACTIONS(4540), + [anon_sym_DASH_DASH] = ACTIONS(4542), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4540), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4540), + [sym__code_span_start] = ACTIONS(4540), + [sym__emphasis_open_star] = ACTIONS(4540), + [sym__emphasis_open_underscore] = ACTIONS(4540), + [sym__strikeout_open] = ACTIONS(4540), + [sym__latex_span_start] = ACTIONS(4540), + [sym__single_quote_open] = ACTIONS(4540), + [sym__single_quote_close] = ACTIONS(4540), + [sym__double_quote_open] = ACTIONS(4540), + [sym__superscript_open] = ACTIONS(4540), + [sym__subscript_open] = ACTIONS(4540), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4540), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4540), + [sym__cite_author_in_text] = ACTIONS(4540), + [sym__cite_suppress_author] = ACTIONS(4540), + [sym__shortcode_open_escaped] = ACTIONS(4540), + [sym__shortcode_open] = ACTIONS(4540), + [sym__unclosed_span] = ACTIONS(4540), + }, + [STATE(1190)] = { + [sym__backslash_escape] = ACTIONS(4956), + [sym_entity_reference] = ACTIONS(4956), + [sym_numeric_character_reference] = ACTIONS(4956), + [anon_sym_LT] = ACTIONS(4958), + [anon_sym_GT] = ACTIONS(4956), + [anon_sym_BANG] = ACTIONS(4956), + [anon_sym_DQUOTE] = ACTIONS(4956), + [anon_sym_POUND] = ACTIONS(4956), + [anon_sym_DOLLAR] = ACTIONS(4956), + [anon_sym_PERCENT] = ACTIONS(4956), + [anon_sym_AMP] = ACTIONS(4958), + [anon_sym_SQUOTE] = ACTIONS(4956), + [anon_sym_STAR] = ACTIONS(4956), + [anon_sym_PLUS] = ACTIONS(4956), + [anon_sym_COMMA] = ACTIONS(4956), + [anon_sym_DASH] = ACTIONS(4958), + [anon_sym_DOT] = ACTIONS(4958), + [anon_sym_SLASH] = ACTIONS(4956), + [anon_sym_COLON] = ACTIONS(4956), + [anon_sym_SEMI] = ACTIONS(4956), + [anon_sym_EQ] = ACTIONS(4956), + [anon_sym_QMARK] = ACTIONS(4956), + [anon_sym_LBRACK] = ACTIONS(4958), + [anon_sym_BSLASH] = ACTIONS(4958), + [anon_sym_CARET] = ACTIONS(4958), + [anon_sym__] = ACTIONS(4956), + [anon_sym_BQUOTE] = ACTIONS(4956), + [anon_sym_LBRACE] = ACTIONS(4956), + [anon_sym_PIPE] = ACTIONS(4956), + [anon_sym_TILDE] = ACTIONS(4956), + [anon_sym_LPAREN] = ACTIONS(4956), + [anon_sym_RPAREN] = ACTIONS(4956), + [sym__newline_token] = ACTIONS(4956), + [aux_sym_insert_token1] = ACTIONS(4956), + [aux_sym_delete_token1] = ACTIONS(4956), + [aux_sym_highlight_token1] = ACTIONS(4956), + [aux_sym_edit_comment_token1] = ACTIONS(4956), + [anon_sym_CARET_LBRACK] = ACTIONS(4956), + [anon_sym_LBRACK_CARET] = ACTIONS(4956), + [sym_uri_autolink] = ACTIONS(4956), + [sym_email_autolink] = ACTIONS(4956), + [sym__whitespace_ge_2] = ACTIONS(4956), + [aux_sym__whitespace_token1] = ACTIONS(4958), + [sym__word_no_digit] = ACTIONS(4956), + [sym__digits] = ACTIONS(4956), + [anon_sym_DASH_DASH] = ACTIONS(4958), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4956), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4956), + [sym__code_span_start] = ACTIONS(4956), + [sym__emphasis_open_star] = ACTIONS(4956), + [sym__emphasis_open_underscore] = ACTIONS(4956), + [sym__emphasis_close_underscore] = ACTIONS(4956), + [sym__strikeout_open] = ACTIONS(4956), + [sym__latex_span_start] = ACTIONS(4956), + [sym__single_quote_open] = ACTIONS(4956), + [sym__double_quote_open] = ACTIONS(4956), + [sym__superscript_open] = ACTIONS(4956), + [sym__subscript_open] = ACTIONS(4956), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4956), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4956), + [sym__cite_author_in_text] = ACTIONS(4956), + [sym__cite_suppress_author] = ACTIONS(4956), + [sym__shortcode_open_escaped] = ACTIONS(4956), + [sym__shortcode_open] = ACTIONS(4956), + [sym__unclosed_span] = ACTIONS(4956), + }, + [STATE(1191)] = { + [sym__backslash_escape] = ACTIONS(4884), + [sym_entity_reference] = ACTIONS(4884), + [sym_numeric_character_reference] = ACTIONS(4884), + [anon_sym_LT] = ACTIONS(4886), + [anon_sym_GT] = ACTIONS(4884), + [anon_sym_BANG] = ACTIONS(4884), + [anon_sym_DQUOTE] = ACTIONS(4884), + [anon_sym_POUND] = ACTIONS(4884), + [anon_sym_DOLLAR] = ACTIONS(4884), + [anon_sym_PERCENT] = ACTIONS(4884), + [anon_sym_AMP] = ACTIONS(4886), + [anon_sym_SQUOTE] = ACTIONS(4884), + [anon_sym_STAR] = ACTIONS(4884), + [anon_sym_PLUS] = ACTIONS(4884), + [anon_sym_COMMA] = ACTIONS(4884), + [anon_sym_DASH] = ACTIONS(4886), + [anon_sym_DOT] = ACTIONS(4886), + [anon_sym_SLASH] = ACTIONS(4884), + [anon_sym_COLON] = ACTIONS(4884), + [anon_sym_SEMI] = ACTIONS(4884), + [anon_sym_EQ] = ACTIONS(4884), + [anon_sym_QMARK] = ACTIONS(4884), + [anon_sym_LBRACK] = ACTIONS(4886), + [anon_sym_BSLASH] = ACTIONS(4886), + [anon_sym_CARET] = ACTIONS(4886), + [anon_sym__] = ACTIONS(4884), + [anon_sym_BQUOTE] = ACTIONS(4884), + [anon_sym_LBRACE] = ACTIONS(4884), + [anon_sym_PIPE] = ACTIONS(4884), + [anon_sym_TILDE] = ACTIONS(4884), + [anon_sym_LPAREN] = ACTIONS(4884), + [anon_sym_RPAREN] = ACTIONS(4884), + [sym__newline_token] = ACTIONS(4884), + [aux_sym_insert_token1] = ACTIONS(4884), + [aux_sym_delete_token1] = ACTIONS(4884), + [aux_sym_highlight_token1] = ACTIONS(4884), + [aux_sym_edit_comment_token1] = ACTIONS(4884), + [anon_sym_CARET_LBRACK] = ACTIONS(4884), + [anon_sym_LBRACK_CARET] = ACTIONS(4884), + [sym_uri_autolink] = ACTIONS(4884), + [sym_email_autolink] = ACTIONS(4884), + [sym__whitespace_ge_2] = ACTIONS(4884), + [aux_sym__whitespace_token1] = ACTIONS(4886), + [sym__word_no_digit] = ACTIONS(4884), + [sym__digits] = ACTIONS(4884), + [anon_sym_DASH_DASH] = ACTIONS(4886), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4884), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4884), + [sym__code_span_start] = ACTIONS(4884), + [sym__emphasis_open_star] = ACTIONS(4884), + [sym__emphasis_open_underscore] = ACTIONS(4884), + [sym__strikeout_open] = ACTIONS(4884), + [sym__latex_span_start] = ACTIONS(4884), + [sym__single_quote_open] = ACTIONS(4884), + [sym__single_quote_close] = ACTIONS(4884), + [sym__double_quote_open] = ACTIONS(4884), + [sym__superscript_open] = ACTIONS(4884), + [sym__subscript_open] = ACTIONS(4884), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4884), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4884), + [sym__cite_author_in_text] = ACTIONS(4884), + [sym__cite_suppress_author] = ACTIONS(4884), + [sym__shortcode_open_escaped] = ACTIONS(4884), + [sym__shortcode_open] = ACTIONS(4884), + [sym__unclosed_span] = ACTIONS(4884), + }, + [STATE(1192)] = { + [sym__backslash_escape] = ACTIONS(4888), + [sym_entity_reference] = ACTIONS(4888), + [sym_numeric_character_reference] = ACTIONS(4888), + [anon_sym_LT] = ACTIONS(4890), + [anon_sym_GT] = ACTIONS(4888), + [anon_sym_BANG] = ACTIONS(4888), + [anon_sym_DQUOTE] = ACTIONS(4888), + [anon_sym_POUND] = ACTIONS(4888), + [anon_sym_DOLLAR] = ACTIONS(4888), + [anon_sym_PERCENT] = ACTIONS(4888), + [anon_sym_AMP] = ACTIONS(4890), + [anon_sym_SQUOTE] = ACTIONS(4888), + [anon_sym_STAR] = ACTIONS(4888), + [anon_sym_PLUS] = ACTIONS(4888), + [anon_sym_COMMA] = ACTIONS(4888), + [anon_sym_DASH] = ACTIONS(4890), + [anon_sym_DOT] = ACTIONS(4890), + [anon_sym_SLASH] = ACTIONS(4888), + [anon_sym_COLON] = ACTIONS(4888), + [anon_sym_SEMI] = ACTIONS(4888), + [anon_sym_EQ] = ACTIONS(4888), + [anon_sym_QMARK] = ACTIONS(4888), + [anon_sym_LBRACK] = ACTIONS(4890), + [anon_sym_BSLASH] = ACTIONS(4890), + [anon_sym_CARET] = ACTIONS(4890), + [anon_sym__] = ACTIONS(4888), + [anon_sym_BQUOTE] = ACTIONS(4888), + [anon_sym_LBRACE] = ACTIONS(4888), + [anon_sym_PIPE] = ACTIONS(4888), + [anon_sym_TILDE] = ACTIONS(4888), + [anon_sym_LPAREN] = ACTIONS(4888), + [anon_sym_RPAREN] = ACTIONS(4888), + [sym__newline_token] = ACTIONS(4888), + [aux_sym_insert_token1] = ACTIONS(4888), + [aux_sym_delete_token1] = ACTIONS(4888), + [aux_sym_highlight_token1] = ACTIONS(4888), + [aux_sym_edit_comment_token1] = ACTIONS(4888), + [anon_sym_CARET_LBRACK] = ACTIONS(4888), + [anon_sym_LBRACK_CARET] = ACTIONS(4888), + [sym_uri_autolink] = ACTIONS(4888), + [sym_email_autolink] = ACTIONS(4888), + [sym__whitespace_ge_2] = ACTIONS(4888), + [aux_sym__whitespace_token1] = ACTIONS(4890), + [sym__word_no_digit] = ACTIONS(4888), + [sym__digits] = ACTIONS(4888), + [anon_sym_DASH_DASH] = ACTIONS(4890), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4888), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4888), + [sym__code_span_start] = ACTIONS(4888), + [sym__emphasis_open_star] = ACTIONS(4888), + [sym__emphasis_open_underscore] = ACTIONS(4888), + [sym__strikeout_open] = ACTIONS(4888), + [sym__latex_span_start] = ACTIONS(4888), + [sym__single_quote_open] = ACTIONS(4888), + [sym__single_quote_close] = ACTIONS(4888), + [sym__double_quote_open] = ACTIONS(4888), + [sym__superscript_open] = ACTIONS(4888), + [sym__subscript_open] = ACTIONS(4888), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4888), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4888), + [sym__cite_author_in_text] = ACTIONS(4888), + [sym__cite_suppress_author] = ACTIONS(4888), + [sym__shortcode_open_escaped] = ACTIONS(4888), + [sym__shortcode_open] = ACTIONS(4888), + [sym__unclosed_span] = ACTIONS(4888), + }, + [STATE(1193)] = { + [sym__backslash_escape] = ACTIONS(4892), + [sym_entity_reference] = ACTIONS(4892), + [sym_numeric_character_reference] = ACTIONS(4892), + [anon_sym_LT] = ACTIONS(4894), + [anon_sym_GT] = ACTIONS(4892), + [anon_sym_BANG] = ACTIONS(4892), + [anon_sym_DQUOTE] = ACTIONS(4892), + [anon_sym_POUND] = ACTIONS(4892), + [anon_sym_DOLLAR] = ACTIONS(4892), + [anon_sym_PERCENT] = ACTIONS(4892), + [anon_sym_AMP] = ACTIONS(4894), + [anon_sym_SQUOTE] = ACTIONS(4892), + [anon_sym_STAR] = ACTIONS(4892), + [anon_sym_PLUS] = ACTIONS(4892), + [anon_sym_COMMA] = ACTIONS(4892), + [anon_sym_DASH] = ACTIONS(4894), + [anon_sym_DOT] = ACTIONS(4894), + [anon_sym_SLASH] = ACTIONS(4892), + [anon_sym_COLON] = ACTIONS(4892), + [anon_sym_SEMI] = ACTIONS(4892), + [anon_sym_EQ] = ACTIONS(4892), + [anon_sym_QMARK] = ACTIONS(4892), + [anon_sym_LBRACK] = ACTIONS(4894), + [anon_sym_BSLASH] = ACTIONS(4894), + [anon_sym_CARET] = ACTIONS(4894), + [anon_sym__] = ACTIONS(4892), + [anon_sym_BQUOTE] = ACTIONS(4892), + [anon_sym_LBRACE] = ACTIONS(4892), + [anon_sym_PIPE] = ACTIONS(4892), + [anon_sym_TILDE] = ACTIONS(4892), + [anon_sym_LPAREN] = ACTIONS(4892), + [anon_sym_RPAREN] = ACTIONS(4892), + [sym__newline_token] = ACTIONS(4892), + [aux_sym_insert_token1] = ACTIONS(4892), + [aux_sym_delete_token1] = ACTIONS(4892), + [aux_sym_highlight_token1] = ACTIONS(4892), + [aux_sym_edit_comment_token1] = ACTIONS(4892), + [anon_sym_CARET_LBRACK] = ACTIONS(4892), + [anon_sym_LBRACK_CARET] = ACTIONS(4892), + [sym_uri_autolink] = ACTIONS(4892), + [sym_email_autolink] = ACTIONS(4892), + [sym__whitespace_ge_2] = ACTIONS(4892), + [aux_sym__whitespace_token1] = ACTIONS(4894), + [sym__word_no_digit] = ACTIONS(4892), + [sym__digits] = ACTIONS(4892), + [anon_sym_DASH_DASH] = ACTIONS(4894), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4892), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4892), + [sym__code_span_start] = ACTIONS(4892), + [sym__emphasis_open_star] = ACTIONS(4892), + [sym__emphasis_open_underscore] = ACTIONS(4892), + [sym__strikeout_open] = ACTIONS(4892), + [sym__latex_span_start] = ACTIONS(4892), + [sym__single_quote_open] = ACTIONS(4892), + [sym__single_quote_close] = ACTIONS(4892), + [sym__double_quote_open] = ACTIONS(4892), + [sym__superscript_open] = ACTIONS(4892), + [sym__subscript_open] = ACTIONS(4892), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4892), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4892), + [sym__cite_author_in_text] = ACTIONS(4892), + [sym__cite_suppress_author] = ACTIONS(4892), + [sym__shortcode_open_escaped] = ACTIONS(4892), + [sym__shortcode_open] = ACTIONS(4892), + [sym__unclosed_span] = ACTIONS(4892), + }, + [STATE(1194)] = { + [ts_builtin_sym_end] = ACTIONS(4996), + [sym__backslash_escape] = ACTIONS(4996), + [sym_entity_reference] = ACTIONS(4996), + [sym_numeric_character_reference] = ACTIONS(4996), + [anon_sym_LT] = ACTIONS(4998), + [anon_sym_GT] = ACTIONS(4996), + [anon_sym_BANG] = ACTIONS(4996), + [anon_sym_DQUOTE] = ACTIONS(4996), + [anon_sym_POUND] = ACTIONS(4996), + [anon_sym_DOLLAR] = ACTIONS(4996), + [anon_sym_PERCENT] = ACTIONS(4996), + [anon_sym_AMP] = ACTIONS(4998), + [anon_sym_SQUOTE] = ACTIONS(4996), + [anon_sym_STAR] = ACTIONS(4996), + [anon_sym_PLUS] = ACTIONS(4996), + [anon_sym_COMMA] = ACTIONS(4996), + [anon_sym_DASH] = ACTIONS(4998), + [anon_sym_DOT] = ACTIONS(4998), + [anon_sym_SLASH] = ACTIONS(4996), + [anon_sym_COLON] = ACTIONS(4996), + [anon_sym_SEMI] = ACTIONS(4996), + [anon_sym_EQ] = ACTIONS(4996), + [anon_sym_QMARK] = ACTIONS(4996), + [anon_sym_LBRACK] = ACTIONS(4998), + [anon_sym_BSLASH] = ACTIONS(4998), + [anon_sym_CARET] = ACTIONS(4998), + [anon_sym__] = ACTIONS(4996), + [anon_sym_BQUOTE] = ACTIONS(4996), + [anon_sym_LBRACE] = ACTIONS(4996), + [anon_sym_PIPE] = ACTIONS(4996), + [anon_sym_TILDE] = ACTIONS(4996), + [anon_sym_LPAREN] = ACTIONS(4996), + [anon_sym_RPAREN] = ACTIONS(4996), + [sym__newline_token] = ACTIONS(4996), + [aux_sym_insert_token1] = ACTIONS(4996), + [aux_sym_delete_token1] = ACTIONS(4996), + [aux_sym_highlight_token1] = ACTIONS(4996), + [aux_sym_edit_comment_token1] = ACTIONS(4996), + [anon_sym_CARET_LBRACK] = ACTIONS(4996), + [anon_sym_LBRACK_CARET] = ACTIONS(4996), + [sym_uri_autolink] = ACTIONS(4996), + [sym_email_autolink] = ACTIONS(4996), + [sym__whitespace_ge_2] = ACTIONS(4996), + [aux_sym__whitespace_token1] = ACTIONS(4998), + [sym__word_no_digit] = ACTIONS(4996), + [sym__digits] = ACTIONS(4996), + [anon_sym_DASH_DASH] = ACTIONS(4998), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4996), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4996), + [sym__code_span_start] = ACTIONS(4996), + [sym__emphasis_open_star] = ACTIONS(4996), + [sym__emphasis_open_underscore] = ACTIONS(4996), + [sym__strikeout_open] = ACTIONS(4996), + [sym__latex_span_start] = ACTIONS(4996), + [sym__single_quote_open] = ACTIONS(4996), + [sym__double_quote_open] = ACTIONS(4996), + [sym__superscript_open] = ACTIONS(4996), + [sym__subscript_open] = ACTIONS(4996), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4996), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4996), + [sym__cite_author_in_text] = ACTIONS(4996), + [sym__cite_suppress_author] = ACTIONS(4996), + [sym__shortcode_open_escaped] = ACTIONS(4996), + [sym__shortcode_open] = ACTIONS(4996), + [sym__unclosed_span] = ACTIONS(4996), + }, + [STATE(1195)] = { + [ts_builtin_sym_end] = ACTIONS(4690), + [sym__backslash_escape] = ACTIONS(4690), + [sym_entity_reference] = ACTIONS(4690), + [sym_numeric_character_reference] = ACTIONS(4690), + [anon_sym_LT] = ACTIONS(4692), + [anon_sym_GT] = ACTIONS(4690), + [anon_sym_BANG] = ACTIONS(4690), + [anon_sym_DQUOTE] = ACTIONS(4690), + [anon_sym_POUND] = ACTIONS(4690), + [anon_sym_DOLLAR] = ACTIONS(4690), + [anon_sym_PERCENT] = ACTIONS(4690), + [anon_sym_AMP] = ACTIONS(4692), + [anon_sym_SQUOTE] = ACTIONS(4690), + [anon_sym_STAR] = ACTIONS(4690), + [anon_sym_PLUS] = ACTIONS(4690), + [anon_sym_COMMA] = ACTIONS(4690), + [anon_sym_DASH] = ACTIONS(4692), + [anon_sym_DOT] = ACTIONS(4692), + [anon_sym_SLASH] = ACTIONS(4690), + [anon_sym_COLON] = ACTIONS(4690), + [anon_sym_SEMI] = ACTIONS(4690), + [anon_sym_EQ] = ACTIONS(4690), + [anon_sym_QMARK] = ACTIONS(4690), + [anon_sym_LBRACK] = ACTIONS(4692), + [anon_sym_BSLASH] = ACTIONS(4692), + [anon_sym_CARET] = ACTIONS(4692), + [anon_sym__] = ACTIONS(4690), + [anon_sym_BQUOTE] = ACTIONS(4690), + [anon_sym_LBRACE] = ACTIONS(4690), + [anon_sym_PIPE] = ACTIONS(4690), + [anon_sym_TILDE] = ACTIONS(4690), + [anon_sym_LPAREN] = ACTIONS(4690), + [anon_sym_RPAREN] = ACTIONS(4690), + [sym__newline_token] = ACTIONS(4690), + [aux_sym_insert_token1] = ACTIONS(4690), + [aux_sym_delete_token1] = ACTIONS(4690), + [aux_sym_highlight_token1] = ACTIONS(4690), + [aux_sym_edit_comment_token1] = ACTIONS(4690), + [anon_sym_CARET_LBRACK] = ACTIONS(4690), + [anon_sym_LBRACK_CARET] = ACTIONS(4690), + [sym_uri_autolink] = ACTIONS(4690), + [sym_email_autolink] = ACTIONS(4690), + [sym__whitespace_ge_2] = ACTIONS(4690), + [aux_sym__whitespace_token1] = ACTIONS(4692), + [sym__word_no_digit] = ACTIONS(4690), + [sym__digits] = ACTIONS(4690), + [anon_sym_DASH_DASH] = ACTIONS(4692), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4690), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4690), + [sym__code_span_start] = ACTIONS(4690), + [sym__emphasis_open_star] = ACTIONS(4690), + [sym__emphasis_open_underscore] = ACTIONS(4690), + [sym__strikeout_open] = ACTIONS(4690), + [sym__latex_span_start] = ACTIONS(4690), + [sym__single_quote_open] = ACTIONS(4690), + [sym__double_quote_open] = ACTIONS(4690), + [sym__superscript_open] = ACTIONS(4690), + [sym__subscript_open] = ACTIONS(4690), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4690), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4690), + [sym__cite_author_in_text] = ACTIONS(4690), + [sym__cite_suppress_author] = ACTIONS(4690), + [sym__shortcode_open_escaped] = ACTIONS(4690), + [sym__shortcode_open] = ACTIONS(4690), + [sym__unclosed_span] = ACTIONS(4690), + }, + [STATE(1196)] = { + [sym__backslash_escape] = ACTIONS(4896), + [sym_entity_reference] = ACTIONS(4896), + [sym_numeric_character_reference] = ACTIONS(4896), + [anon_sym_LT] = ACTIONS(4898), + [anon_sym_GT] = ACTIONS(4896), + [anon_sym_BANG] = ACTIONS(4896), + [anon_sym_DQUOTE] = ACTIONS(4896), + [anon_sym_POUND] = ACTIONS(4896), + [anon_sym_DOLLAR] = ACTIONS(4896), + [anon_sym_PERCENT] = ACTIONS(4896), + [anon_sym_AMP] = ACTIONS(4898), + [anon_sym_SQUOTE] = ACTIONS(4896), + [anon_sym_STAR] = ACTIONS(4896), + [anon_sym_PLUS] = ACTIONS(4896), + [anon_sym_COMMA] = ACTIONS(4896), + [anon_sym_DASH] = ACTIONS(4898), + [anon_sym_DOT] = ACTIONS(4898), + [anon_sym_SLASH] = ACTIONS(4896), + [anon_sym_COLON] = ACTIONS(4896), + [anon_sym_SEMI] = ACTIONS(4896), + [anon_sym_EQ] = ACTIONS(4896), + [anon_sym_QMARK] = ACTIONS(4896), + [anon_sym_LBRACK] = ACTIONS(4898), + [anon_sym_BSLASH] = ACTIONS(4898), + [anon_sym_CARET] = ACTIONS(4898), + [anon_sym__] = ACTIONS(4896), + [anon_sym_BQUOTE] = ACTIONS(4896), + [anon_sym_LBRACE] = ACTIONS(4896), + [anon_sym_PIPE] = ACTIONS(4896), + [anon_sym_TILDE] = ACTIONS(4896), + [anon_sym_LPAREN] = ACTIONS(4896), + [anon_sym_RPAREN] = ACTIONS(4896), + [sym__newline_token] = ACTIONS(4896), + [aux_sym_insert_token1] = ACTIONS(4896), + [aux_sym_delete_token1] = ACTIONS(4896), + [aux_sym_highlight_token1] = ACTIONS(4896), + [aux_sym_edit_comment_token1] = ACTIONS(4896), + [anon_sym_CARET_LBRACK] = ACTIONS(4896), + [anon_sym_LBRACK_CARET] = ACTIONS(4896), + [sym_uri_autolink] = ACTIONS(4896), + [sym_email_autolink] = ACTIONS(4896), + [sym__whitespace_ge_2] = ACTIONS(4896), + [aux_sym__whitespace_token1] = ACTIONS(4898), + [sym__word_no_digit] = ACTIONS(4896), + [sym__digits] = ACTIONS(4896), + [anon_sym_DASH_DASH] = ACTIONS(4898), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4896), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4896), + [sym__code_span_start] = ACTIONS(4896), + [sym__emphasis_open_star] = ACTIONS(4896), + [sym__emphasis_open_underscore] = ACTIONS(4896), + [sym__strikeout_open] = ACTIONS(4896), + [sym__latex_span_start] = ACTIONS(4896), + [sym__single_quote_open] = ACTIONS(4896), + [sym__single_quote_close] = ACTIONS(4896), + [sym__double_quote_open] = ACTIONS(4896), + [sym__superscript_open] = ACTIONS(4896), + [sym__subscript_open] = ACTIONS(4896), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4896), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4896), + [sym__cite_author_in_text] = ACTIONS(4896), + [sym__cite_suppress_author] = ACTIONS(4896), + [sym__shortcode_open_escaped] = ACTIONS(4896), + [sym__shortcode_open] = ACTIONS(4896), + [sym__unclosed_span] = ACTIONS(4896), + }, + [STATE(1197)] = { + [ts_builtin_sym_end] = ACTIONS(5056), + [sym__backslash_escape] = ACTIONS(5056), + [sym_entity_reference] = ACTIONS(5056), + [sym_numeric_character_reference] = ACTIONS(5056), + [anon_sym_LT] = ACTIONS(5058), + [anon_sym_GT] = ACTIONS(5056), + [anon_sym_BANG] = ACTIONS(5056), + [anon_sym_DQUOTE] = ACTIONS(5056), + [anon_sym_POUND] = ACTIONS(5056), + [anon_sym_DOLLAR] = ACTIONS(5056), + [anon_sym_PERCENT] = ACTIONS(5056), + [anon_sym_AMP] = ACTIONS(5058), + [anon_sym_SQUOTE] = ACTIONS(5056), + [anon_sym_STAR] = ACTIONS(5056), + [anon_sym_PLUS] = ACTIONS(5056), + [anon_sym_COMMA] = ACTIONS(5056), + [anon_sym_DASH] = ACTIONS(5058), + [anon_sym_DOT] = ACTIONS(5058), + [anon_sym_SLASH] = ACTIONS(5056), + [anon_sym_COLON] = ACTIONS(5056), + [anon_sym_SEMI] = ACTIONS(5056), + [anon_sym_EQ] = ACTIONS(5056), + [anon_sym_QMARK] = ACTIONS(5056), + [anon_sym_LBRACK] = ACTIONS(5058), + [anon_sym_BSLASH] = ACTIONS(5058), + [anon_sym_CARET] = ACTIONS(5058), + [anon_sym__] = ACTIONS(5056), + [anon_sym_BQUOTE] = ACTIONS(5056), + [anon_sym_LBRACE] = ACTIONS(5056), + [anon_sym_PIPE] = ACTIONS(5056), + [anon_sym_TILDE] = ACTIONS(5056), + [anon_sym_LPAREN] = ACTIONS(5056), + [anon_sym_RPAREN] = ACTIONS(5056), + [sym__newline_token] = ACTIONS(5056), + [aux_sym_insert_token1] = ACTIONS(5056), + [aux_sym_delete_token1] = ACTIONS(5056), + [aux_sym_highlight_token1] = ACTIONS(5056), + [aux_sym_edit_comment_token1] = ACTIONS(5056), + [anon_sym_CARET_LBRACK] = ACTIONS(5056), + [anon_sym_LBRACK_CARET] = ACTIONS(5056), + [sym_uri_autolink] = ACTIONS(5056), + [sym_email_autolink] = ACTIONS(5056), + [sym__whitespace_ge_2] = ACTIONS(5056), + [aux_sym__whitespace_token1] = ACTIONS(5058), + [sym__word_no_digit] = ACTIONS(5056), + [sym__digits] = ACTIONS(5056), + [anon_sym_DASH_DASH] = ACTIONS(5058), + [anon_sym_DASH_DASH_DASH] = ACTIONS(5056), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5056), + [sym__code_span_start] = ACTIONS(5056), + [sym__emphasis_open_star] = ACTIONS(5056), + [sym__emphasis_open_underscore] = ACTIONS(5056), + [sym__strikeout_open] = ACTIONS(5056), + [sym__latex_span_start] = ACTIONS(5056), + [sym__single_quote_open] = ACTIONS(5056), + [sym__double_quote_open] = ACTIONS(5056), + [sym__superscript_open] = ACTIONS(5056), + [sym__subscript_open] = ACTIONS(5056), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5056), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5056), + [sym__cite_author_in_text] = ACTIONS(5056), + [sym__cite_suppress_author] = ACTIONS(5056), + [sym__shortcode_open_escaped] = ACTIONS(5056), + [sym__shortcode_open] = ACTIONS(5056), + [sym__unclosed_span] = ACTIONS(5056), + }, + [STATE(1198)] = { + [sym__backslash_escape] = ACTIONS(4534), + [sym_entity_reference] = ACTIONS(4534), + [sym_numeric_character_reference] = ACTIONS(4534), + [anon_sym_LT] = ACTIONS(4536), + [anon_sym_GT] = ACTIONS(4534), + [anon_sym_BANG] = ACTIONS(4534), + [anon_sym_DQUOTE] = ACTIONS(4534), + [anon_sym_POUND] = ACTIONS(4534), + [anon_sym_DOLLAR] = ACTIONS(4534), + [anon_sym_PERCENT] = ACTIONS(4534), + [anon_sym_AMP] = ACTIONS(4536), + [anon_sym_SQUOTE] = ACTIONS(4534), + [anon_sym_STAR] = ACTIONS(4534), + [anon_sym_PLUS] = ACTIONS(4534), + [anon_sym_COMMA] = ACTIONS(4534), + [anon_sym_DASH] = ACTIONS(4536), + [anon_sym_DOT] = ACTIONS(4536), + [anon_sym_SLASH] = ACTIONS(4534), + [anon_sym_COLON] = ACTIONS(4534), + [anon_sym_SEMI] = ACTIONS(4534), + [anon_sym_EQ] = ACTIONS(4534), + [anon_sym_QMARK] = ACTIONS(4534), + [anon_sym_LBRACK] = ACTIONS(4536), + [anon_sym_BSLASH] = ACTIONS(4536), + [anon_sym_CARET] = ACTIONS(4536), + [anon_sym__] = ACTIONS(4534), + [anon_sym_BQUOTE] = ACTIONS(4534), + [anon_sym_LBRACE] = ACTIONS(4534), + [anon_sym_PIPE] = ACTIONS(4534), + [anon_sym_TILDE] = ACTIONS(4534), + [anon_sym_LPAREN] = ACTIONS(4534), + [anon_sym_RPAREN] = ACTIONS(4534), + [sym__newline_token] = ACTIONS(4534), + [aux_sym_insert_token1] = ACTIONS(4534), + [aux_sym_delete_token1] = ACTIONS(4534), + [aux_sym_highlight_token1] = ACTIONS(4534), + [aux_sym_edit_comment_token1] = ACTIONS(4534), + [anon_sym_CARET_LBRACK] = ACTIONS(4534), + [anon_sym_LBRACK_CARET] = ACTIONS(4534), + [sym_uri_autolink] = ACTIONS(4534), + [sym_email_autolink] = ACTIONS(4534), + [sym__whitespace_ge_2] = ACTIONS(4534), + [aux_sym__whitespace_token1] = ACTIONS(4536), + [sym__word_no_digit] = ACTIONS(4534), + [sym__digits] = ACTIONS(4534), + [anon_sym_DASH_DASH] = ACTIONS(4536), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4534), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4534), + [sym__code_span_start] = ACTIONS(4534), + [sym__emphasis_open_star] = ACTIONS(4534), + [sym__emphasis_open_underscore] = ACTIONS(4534), + [sym__strikeout_open] = ACTIONS(4534), + [sym__latex_span_start] = ACTIONS(4534), + [sym__single_quote_open] = ACTIONS(4534), + [sym__single_quote_close] = ACTIONS(4534), + [sym__double_quote_open] = ACTIONS(4534), + [sym__superscript_open] = ACTIONS(4534), + [sym__subscript_open] = ACTIONS(4534), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4534), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4534), + [sym__cite_author_in_text] = ACTIONS(4534), + [sym__cite_suppress_author] = ACTIONS(4534), + [sym__shortcode_open_escaped] = ACTIONS(4534), + [sym__shortcode_open] = ACTIONS(4534), + [sym__unclosed_span] = ACTIONS(4534), + }, + [STATE(1199)] = { + [sym__backslash_escape] = ACTIONS(4960), + [sym_entity_reference] = ACTIONS(4960), + [sym_numeric_character_reference] = ACTIONS(4960), + [anon_sym_LT] = ACTIONS(4962), + [anon_sym_GT] = ACTIONS(4960), + [anon_sym_BANG] = ACTIONS(4960), + [anon_sym_DQUOTE] = ACTIONS(4960), + [anon_sym_POUND] = ACTIONS(4960), + [anon_sym_DOLLAR] = ACTIONS(4960), + [anon_sym_PERCENT] = ACTIONS(4960), + [anon_sym_AMP] = ACTIONS(4962), + [anon_sym_SQUOTE] = ACTIONS(4960), + [anon_sym_STAR] = ACTIONS(4960), + [anon_sym_PLUS] = ACTIONS(4960), + [anon_sym_COMMA] = ACTIONS(4960), + [anon_sym_DASH] = ACTIONS(4962), + [anon_sym_DOT] = ACTIONS(4962), + [anon_sym_SLASH] = ACTIONS(4960), + [anon_sym_COLON] = ACTIONS(4960), + [anon_sym_SEMI] = ACTIONS(4960), + [anon_sym_EQ] = ACTIONS(4960), + [anon_sym_QMARK] = ACTIONS(4960), + [anon_sym_LBRACK] = ACTIONS(4962), + [anon_sym_BSLASH] = ACTIONS(4962), + [anon_sym_CARET] = ACTIONS(4962), + [anon_sym__] = ACTIONS(4960), + [anon_sym_BQUOTE] = ACTIONS(4960), + [anon_sym_LBRACE] = ACTIONS(4960), + [anon_sym_PIPE] = ACTIONS(4960), + [anon_sym_TILDE] = ACTIONS(4960), + [anon_sym_LPAREN] = ACTIONS(4960), + [anon_sym_RPAREN] = ACTIONS(4960), + [sym__newline_token] = ACTIONS(4960), + [aux_sym_insert_token1] = ACTIONS(4960), + [aux_sym_delete_token1] = ACTIONS(4960), + [aux_sym_highlight_token1] = ACTIONS(4960), + [aux_sym_edit_comment_token1] = ACTIONS(4960), + [anon_sym_CARET_LBRACK] = ACTIONS(4960), + [anon_sym_LBRACK_CARET] = ACTIONS(4960), + [sym_uri_autolink] = ACTIONS(4960), + [sym_email_autolink] = ACTIONS(4960), + [sym__whitespace_ge_2] = ACTIONS(4960), + [aux_sym__whitespace_token1] = ACTIONS(4962), + [sym__word_no_digit] = ACTIONS(4960), + [sym__digits] = ACTIONS(4960), + [anon_sym_DASH_DASH] = ACTIONS(4962), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4960), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4960), + [sym__code_span_start] = ACTIONS(4960), + [sym__emphasis_open_star] = ACTIONS(4960), + [sym__emphasis_open_underscore] = ACTIONS(4960), + [sym__emphasis_close_underscore] = ACTIONS(4960), + [sym__strikeout_open] = ACTIONS(4960), + [sym__latex_span_start] = ACTIONS(4960), + [sym__single_quote_open] = ACTIONS(4960), + [sym__double_quote_open] = ACTIONS(4960), + [sym__superscript_open] = ACTIONS(4960), + [sym__subscript_open] = ACTIONS(4960), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4960), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4960), + [sym__cite_author_in_text] = ACTIONS(4960), + [sym__cite_suppress_author] = ACTIONS(4960), + [sym__shortcode_open_escaped] = ACTIONS(4960), + [sym__shortcode_open] = ACTIONS(4960), + [sym__unclosed_span] = ACTIONS(4960), + }, + [STATE(1200)] = { + [sym__backslash_escape] = ACTIONS(4546), + [sym_entity_reference] = ACTIONS(4546), + [sym_numeric_character_reference] = ACTIONS(4546), + [anon_sym_LT] = ACTIONS(4548), + [anon_sym_GT] = ACTIONS(4546), + [anon_sym_BANG] = ACTIONS(4546), + [anon_sym_DQUOTE] = ACTIONS(4546), + [anon_sym_POUND] = ACTIONS(4546), + [anon_sym_DOLLAR] = ACTIONS(4546), + [anon_sym_PERCENT] = ACTIONS(4546), + [anon_sym_AMP] = ACTIONS(4548), + [anon_sym_SQUOTE] = ACTIONS(4546), + [anon_sym_STAR] = ACTIONS(4546), + [anon_sym_PLUS] = ACTIONS(4546), + [anon_sym_COMMA] = ACTIONS(4546), + [anon_sym_DASH] = ACTIONS(4548), + [anon_sym_DOT] = ACTIONS(4548), + [anon_sym_SLASH] = ACTIONS(4546), + [anon_sym_COLON] = ACTIONS(4546), + [anon_sym_SEMI] = ACTIONS(4546), + [anon_sym_EQ] = ACTIONS(4546), + [anon_sym_QMARK] = ACTIONS(4546), + [anon_sym_LBRACK] = ACTIONS(4548), + [anon_sym_BSLASH] = ACTIONS(4548), + [anon_sym_CARET] = ACTIONS(4548), + [anon_sym__] = ACTIONS(4546), + [anon_sym_BQUOTE] = ACTIONS(4546), + [anon_sym_LBRACE] = ACTIONS(4546), + [anon_sym_PIPE] = ACTIONS(4546), + [anon_sym_TILDE] = ACTIONS(4546), + [anon_sym_LPAREN] = ACTIONS(4546), + [anon_sym_RPAREN] = ACTIONS(4546), + [sym__newline_token] = ACTIONS(4546), + [aux_sym_insert_token1] = ACTIONS(4546), + [aux_sym_delete_token1] = ACTIONS(4546), + [aux_sym_highlight_token1] = ACTIONS(4546), + [aux_sym_edit_comment_token1] = ACTIONS(4546), + [anon_sym_CARET_LBRACK] = ACTIONS(4546), + [anon_sym_LBRACK_CARET] = ACTIONS(4546), + [sym_uri_autolink] = ACTIONS(4546), + [sym_email_autolink] = ACTIONS(4546), + [sym__whitespace_ge_2] = ACTIONS(4546), + [aux_sym__whitespace_token1] = ACTIONS(4548), + [sym__word_no_digit] = ACTIONS(4546), + [sym__digits] = ACTIONS(4546), + [anon_sym_DASH_DASH] = ACTIONS(4548), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4546), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4546), + [sym__code_span_start] = ACTIONS(4546), + [sym__emphasis_open_star] = ACTIONS(4546), + [sym__emphasis_open_underscore] = ACTIONS(4546), + [sym__strikeout_open] = ACTIONS(4546), + [sym__latex_span_start] = ACTIONS(4546), + [sym__single_quote_open] = ACTIONS(4546), + [sym__single_quote_close] = ACTIONS(4546), + [sym__double_quote_open] = ACTIONS(4546), + [sym__superscript_open] = ACTIONS(4546), + [sym__subscript_open] = ACTIONS(4546), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4546), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4546), + [sym__cite_author_in_text] = ACTIONS(4546), + [sym__cite_suppress_author] = ACTIONS(4546), + [sym__shortcode_open_escaped] = ACTIONS(4546), + [sym__shortcode_open] = ACTIONS(4546), + [sym__unclosed_span] = ACTIONS(4546), + }, + [STATE(1201)] = { + [ts_builtin_sym_end] = ACTIONS(4820), + [sym__backslash_escape] = ACTIONS(4820), + [sym_entity_reference] = ACTIONS(4820), + [sym_numeric_character_reference] = ACTIONS(4820), + [anon_sym_LT] = ACTIONS(4822), + [anon_sym_GT] = ACTIONS(4820), + [anon_sym_BANG] = ACTIONS(4820), + [anon_sym_DQUOTE] = ACTIONS(4820), + [anon_sym_POUND] = ACTIONS(4820), + [anon_sym_DOLLAR] = ACTIONS(4820), + [anon_sym_PERCENT] = ACTIONS(4820), + [anon_sym_AMP] = ACTIONS(4822), + [anon_sym_SQUOTE] = ACTIONS(4820), + [anon_sym_STAR] = ACTIONS(4820), + [anon_sym_PLUS] = ACTIONS(4820), + [anon_sym_COMMA] = ACTIONS(4820), + [anon_sym_DASH] = ACTIONS(4822), + [anon_sym_DOT] = ACTIONS(4822), + [anon_sym_SLASH] = ACTIONS(4820), + [anon_sym_COLON] = ACTIONS(4820), + [anon_sym_SEMI] = ACTIONS(4820), + [anon_sym_EQ] = ACTIONS(4820), + [anon_sym_QMARK] = ACTIONS(4820), + [anon_sym_LBRACK] = ACTIONS(4822), + [anon_sym_BSLASH] = ACTIONS(4822), + [anon_sym_CARET] = ACTIONS(4822), + [anon_sym__] = ACTIONS(4820), + [anon_sym_BQUOTE] = ACTIONS(4820), + [anon_sym_LBRACE] = ACTIONS(4820), + [anon_sym_PIPE] = ACTIONS(4820), + [anon_sym_TILDE] = ACTIONS(4820), + [anon_sym_LPAREN] = ACTIONS(4820), + [anon_sym_RPAREN] = ACTIONS(4820), + [sym__newline_token] = ACTIONS(4820), + [aux_sym_insert_token1] = ACTIONS(4820), + [aux_sym_delete_token1] = ACTIONS(4820), + [aux_sym_highlight_token1] = ACTIONS(4820), + [aux_sym_edit_comment_token1] = ACTIONS(4820), + [anon_sym_CARET_LBRACK] = ACTIONS(4820), + [anon_sym_LBRACK_CARET] = ACTIONS(4820), + [sym_uri_autolink] = ACTIONS(4820), + [sym_email_autolink] = ACTIONS(4820), + [sym__whitespace_ge_2] = ACTIONS(4820), + [aux_sym__whitespace_token1] = ACTIONS(4822), + [sym__word_no_digit] = ACTIONS(4820), + [sym__digits] = ACTIONS(4820), + [anon_sym_DASH_DASH] = ACTIONS(4822), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4820), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4820), + [sym__code_span_start] = ACTIONS(4820), + [sym__emphasis_open_star] = ACTIONS(4820), + [sym__emphasis_open_underscore] = ACTIONS(4820), + [sym__strikeout_open] = ACTIONS(4820), + [sym__latex_span_start] = ACTIONS(4820), + [sym__single_quote_open] = ACTIONS(4820), + [sym__double_quote_open] = ACTIONS(4820), + [sym__superscript_open] = ACTIONS(4820), + [sym__subscript_open] = ACTIONS(4820), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4820), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4820), + [sym__cite_author_in_text] = ACTIONS(4820), + [sym__cite_suppress_author] = ACTIONS(4820), + [sym__shortcode_open_escaped] = ACTIONS(4820), + [sym__shortcode_open] = ACTIONS(4820), + [sym__unclosed_span] = ACTIONS(4820), + }, + [STATE(1202)] = { + [ts_builtin_sym_end] = ACTIONS(4824), + [sym__backslash_escape] = ACTIONS(4824), + [sym_entity_reference] = ACTIONS(4824), + [sym_numeric_character_reference] = ACTIONS(4824), + [anon_sym_LT] = ACTIONS(4826), + [anon_sym_GT] = ACTIONS(4824), + [anon_sym_BANG] = ACTIONS(4824), + [anon_sym_DQUOTE] = ACTIONS(4824), + [anon_sym_POUND] = ACTIONS(4824), + [anon_sym_DOLLAR] = ACTIONS(4824), + [anon_sym_PERCENT] = ACTIONS(4824), + [anon_sym_AMP] = ACTIONS(4826), + [anon_sym_SQUOTE] = ACTIONS(4824), + [anon_sym_STAR] = ACTIONS(4824), + [anon_sym_PLUS] = ACTIONS(4824), + [anon_sym_COMMA] = ACTIONS(4824), + [anon_sym_DASH] = ACTIONS(4826), + [anon_sym_DOT] = ACTIONS(4826), + [anon_sym_SLASH] = ACTIONS(4824), + [anon_sym_COLON] = ACTIONS(4824), + [anon_sym_SEMI] = ACTIONS(4824), + [anon_sym_EQ] = ACTIONS(4824), + [anon_sym_QMARK] = ACTIONS(4824), + [anon_sym_LBRACK] = ACTIONS(4826), + [anon_sym_BSLASH] = ACTIONS(4826), + [anon_sym_CARET] = ACTIONS(4826), + [anon_sym__] = ACTIONS(4824), + [anon_sym_BQUOTE] = ACTIONS(4824), + [anon_sym_LBRACE] = ACTIONS(4824), + [anon_sym_PIPE] = ACTIONS(4824), + [anon_sym_TILDE] = ACTIONS(4824), + [anon_sym_LPAREN] = ACTIONS(4824), + [anon_sym_RPAREN] = ACTIONS(4824), + [sym__newline_token] = ACTIONS(4824), + [aux_sym_insert_token1] = ACTIONS(4824), + [aux_sym_delete_token1] = ACTIONS(4824), + [aux_sym_highlight_token1] = ACTIONS(4824), + [aux_sym_edit_comment_token1] = ACTIONS(4824), + [anon_sym_CARET_LBRACK] = ACTIONS(4824), + [anon_sym_LBRACK_CARET] = ACTIONS(4824), + [sym_uri_autolink] = ACTIONS(4824), + [sym_email_autolink] = ACTIONS(4824), + [sym__whitespace_ge_2] = ACTIONS(4824), + [aux_sym__whitespace_token1] = ACTIONS(4826), + [sym__word_no_digit] = ACTIONS(4824), + [sym__digits] = ACTIONS(4824), + [anon_sym_DASH_DASH] = ACTIONS(4826), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4824), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4824), + [sym__code_span_start] = ACTIONS(4824), + [sym__emphasis_open_star] = ACTIONS(4824), + [sym__emphasis_open_underscore] = ACTIONS(4824), + [sym__strikeout_open] = ACTIONS(4824), + [sym__latex_span_start] = ACTIONS(4824), + [sym__single_quote_open] = ACTIONS(4824), + [sym__double_quote_open] = ACTIONS(4824), + [sym__superscript_open] = ACTIONS(4824), + [sym__subscript_open] = ACTIONS(4824), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4824), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4824), + [sym__cite_author_in_text] = ACTIONS(4824), + [sym__cite_suppress_author] = ACTIONS(4824), + [sym__shortcode_open_escaped] = ACTIONS(4824), + [sym__shortcode_open] = ACTIONS(4824), + [sym__unclosed_span] = ACTIONS(4824), + }, + [STATE(1203)] = { + [ts_builtin_sym_end] = ACTIONS(4828), + [sym__backslash_escape] = ACTIONS(4828), + [sym_entity_reference] = ACTIONS(4828), + [sym_numeric_character_reference] = ACTIONS(4828), + [anon_sym_LT] = ACTIONS(4830), + [anon_sym_GT] = ACTIONS(4828), + [anon_sym_BANG] = ACTIONS(4828), + [anon_sym_DQUOTE] = ACTIONS(4828), + [anon_sym_POUND] = ACTIONS(4828), + [anon_sym_DOLLAR] = ACTIONS(4828), + [anon_sym_PERCENT] = ACTIONS(4828), + [anon_sym_AMP] = ACTIONS(4830), + [anon_sym_SQUOTE] = ACTIONS(4828), + [anon_sym_STAR] = ACTIONS(4828), + [anon_sym_PLUS] = ACTIONS(4828), + [anon_sym_COMMA] = ACTIONS(4828), + [anon_sym_DASH] = ACTIONS(4830), + [anon_sym_DOT] = ACTIONS(4830), + [anon_sym_SLASH] = ACTIONS(4828), + [anon_sym_COLON] = ACTIONS(4828), + [anon_sym_SEMI] = ACTIONS(4828), + [anon_sym_EQ] = ACTIONS(4828), + [anon_sym_QMARK] = ACTIONS(4828), + [anon_sym_LBRACK] = ACTIONS(4830), + [anon_sym_BSLASH] = ACTIONS(4830), + [anon_sym_CARET] = ACTIONS(4830), + [anon_sym__] = ACTIONS(4828), + [anon_sym_BQUOTE] = ACTIONS(4828), + [anon_sym_LBRACE] = ACTIONS(4828), + [anon_sym_PIPE] = ACTIONS(4828), + [anon_sym_TILDE] = ACTIONS(4828), + [anon_sym_LPAREN] = ACTIONS(4828), + [anon_sym_RPAREN] = ACTIONS(4828), + [sym__newline_token] = ACTIONS(4828), + [aux_sym_insert_token1] = ACTIONS(4828), + [aux_sym_delete_token1] = ACTIONS(4828), + [aux_sym_highlight_token1] = ACTIONS(4828), + [aux_sym_edit_comment_token1] = ACTIONS(4828), + [anon_sym_CARET_LBRACK] = ACTIONS(4828), + [anon_sym_LBRACK_CARET] = ACTIONS(4828), + [sym_uri_autolink] = ACTIONS(4828), + [sym_email_autolink] = ACTIONS(4828), + [sym__whitespace_ge_2] = ACTIONS(4828), + [aux_sym__whitespace_token1] = ACTIONS(4830), + [sym__word_no_digit] = ACTIONS(4828), + [sym__digits] = ACTIONS(4828), + [anon_sym_DASH_DASH] = ACTIONS(4830), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4828), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4828), + [sym__code_span_start] = ACTIONS(4828), + [sym__emphasis_open_star] = ACTIONS(4828), + [sym__emphasis_open_underscore] = ACTIONS(4828), + [sym__strikeout_open] = ACTIONS(4828), + [sym__latex_span_start] = ACTIONS(4828), + [sym__single_quote_open] = ACTIONS(4828), + [sym__double_quote_open] = ACTIONS(4828), + [sym__superscript_open] = ACTIONS(4828), + [sym__subscript_open] = ACTIONS(4828), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4828), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4828), + [sym__cite_author_in_text] = ACTIONS(4828), + [sym__cite_suppress_author] = ACTIONS(4828), + [sym__shortcode_open_escaped] = ACTIONS(4828), + [sym__shortcode_open] = ACTIONS(4828), + [sym__unclosed_span] = ACTIONS(4828), + }, + [STATE(1204)] = { + [sym__backslash_escape] = ACTIONS(4820), + [sym_entity_reference] = ACTIONS(4820), + [sym_numeric_character_reference] = ACTIONS(4820), + [anon_sym_LT] = ACTIONS(4822), + [anon_sym_GT] = ACTIONS(4820), + [anon_sym_BANG] = ACTIONS(4820), + [anon_sym_DQUOTE] = ACTIONS(4820), + [anon_sym_POUND] = ACTIONS(4820), + [anon_sym_DOLLAR] = ACTIONS(4820), + [anon_sym_PERCENT] = ACTIONS(4820), + [anon_sym_AMP] = ACTIONS(4822), + [anon_sym_SQUOTE] = ACTIONS(4820), + [anon_sym_STAR] = ACTIONS(4820), + [anon_sym_PLUS] = ACTIONS(4820), + [anon_sym_COMMA] = ACTIONS(4820), + [anon_sym_DASH] = ACTIONS(4822), + [anon_sym_DOT] = ACTIONS(4822), + [anon_sym_SLASH] = ACTIONS(4820), + [anon_sym_COLON] = ACTIONS(4820), + [anon_sym_SEMI] = ACTIONS(4820), + [anon_sym_EQ] = ACTIONS(4820), + [anon_sym_QMARK] = ACTIONS(4820), + [anon_sym_LBRACK] = ACTIONS(4822), + [anon_sym_BSLASH] = ACTIONS(4822), + [anon_sym_CARET] = ACTIONS(4822), + [anon_sym__] = ACTIONS(4820), + [anon_sym_BQUOTE] = ACTIONS(4820), + [anon_sym_LBRACE] = ACTIONS(4820), + [anon_sym_PIPE] = ACTIONS(4820), + [anon_sym_TILDE] = ACTIONS(4820), + [anon_sym_LPAREN] = ACTIONS(4820), + [anon_sym_RPAREN] = ACTIONS(4820), + [sym__newline_token] = ACTIONS(4820), + [aux_sym_insert_token1] = ACTIONS(4820), + [aux_sym_delete_token1] = ACTIONS(4820), + [aux_sym_highlight_token1] = ACTIONS(4820), + [aux_sym_edit_comment_token1] = ACTIONS(4820), + [anon_sym_CARET_LBRACK] = ACTIONS(4820), + [anon_sym_LBRACK_CARET] = ACTIONS(4820), + [sym_uri_autolink] = ACTIONS(4820), + [sym_email_autolink] = ACTIONS(4820), + [sym__whitespace_ge_2] = ACTIONS(4820), + [aux_sym__whitespace_token1] = ACTIONS(4822), + [sym__word_no_digit] = ACTIONS(4820), + [sym__digits] = ACTIONS(4820), + [anon_sym_DASH_DASH] = ACTIONS(4822), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4820), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4820), + [sym__code_span_start] = ACTIONS(4820), + [sym__emphasis_open_star] = ACTIONS(4820), + [sym__emphasis_open_underscore] = ACTIONS(4820), + [sym__emphasis_close_underscore] = ACTIONS(4820), + [sym__strikeout_open] = ACTIONS(4820), + [sym__latex_span_start] = ACTIONS(4820), + [sym__single_quote_open] = ACTIONS(4820), + [sym__double_quote_open] = ACTIONS(4820), + [sym__superscript_open] = ACTIONS(4820), + [sym__subscript_open] = ACTIONS(4820), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4820), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4820), + [sym__cite_author_in_text] = ACTIONS(4820), + [sym__cite_suppress_author] = ACTIONS(4820), + [sym__shortcode_open_escaped] = ACTIONS(4820), + [sym__shortcode_open] = ACTIONS(4820), + [sym__unclosed_span] = ACTIONS(4820), + }, + [STATE(1205)] = { + [sym__backslash_escape] = ACTIONS(4904), + [sym_entity_reference] = ACTIONS(4904), + [sym_numeric_character_reference] = ACTIONS(4904), + [anon_sym_LT] = ACTIONS(4906), + [anon_sym_GT] = ACTIONS(4904), + [anon_sym_BANG] = ACTIONS(4904), + [anon_sym_DQUOTE] = ACTIONS(4904), + [anon_sym_POUND] = ACTIONS(4904), + [anon_sym_DOLLAR] = ACTIONS(4904), + [anon_sym_PERCENT] = ACTIONS(4904), + [anon_sym_AMP] = ACTIONS(4906), + [anon_sym_SQUOTE] = ACTIONS(4904), + [anon_sym_STAR] = ACTIONS(4904), + [anon_sym_PLUS] = ACTIONS(4904), + [anon_sym_COMMA] = ACTIONS(4904), + [anon_sym_DASH] = ACTIONS(4906), + [anon_sym_DOT] = ACTIONS(4906), + [anon_sym_SLASH] = ACTIONS(4904), + [anon_sym_COLON] = ACTIONS(4904), + [anon_sym_SEMI] = ACTIONS(4904), + [anon_sym_EQ] = ACTIONS(4904), + [anon_sym_QMARK] = ACTIONS(4904), + [anon_sym_LBRACK] = ACTIONS(4906), + [anon_sym_BSLASH] = ACTIONS(4906), + [anon_sym_CARET] = ACTIONS(4906), + [anon_sym__] = ACTIONS(4904), + [anon_sym_BQUOTE] = ACTIONS(4904), + [anon_sym_LBRACE] = ACTIONS(4904), + [anon_sym_PIPE] = ACTIONS(4904), + [anon_sym_TILDE] = ACTIONS(4904), + [anon_sym_LPAREN] = ACTIONS(4904), + [anon_sym_RPAREN] = ACTIONS(4904), + [sym__newline_token] = ACTIONS(4904), + [aux_sym_insert_token1] = ACTIONS(4904), + [aux_sym_delete_token1] = ACTIONS(4904), + [aux_sym_highlight_token1] = ACTIONS(4904), + [aux_sym_edit_comment_token1] = ACTIONS(4904), + [anon_sym_CARET_LBRACK] = ACTIONS(4904), + [anon_sym_LBRACK_CARET] = ACTIONS(4904), + [sym_uri_autolink] = ACTIONS(4904), + [sym_email_autolink] = ACTIONS(4904), + [sym__whitespace_ge_2] = ACTIONS(4904), + [aux_sym__whitespace_token1] = ACTIONS(4906), + [sym__word_no_digit] = ACTIONS(4904), + [sym__digits] = ACTIONS(4904), + [anon_sym_DASH_DASH] = ACTIONS(4906), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4904), + [sym__code_span_start] = ACTIONS(4904), + [sym__emphasis_open_star] = ACTIONS(4904), + [sym__emphasis_open_underscore] = ACTIONS(4904), + [sym__strikeout_open] = ACTIONS(4904), + [sym__latex_span_start] = ACTIONS(4904), + [sym__single_quote_open] = ACTIONS(4904), + [sym__single_quote_close] = ACTIONS(4904), + [sym__double_quote_open] = ACTIONS(4904), + [sym__superscript_open] = ACTIONS(4904), + [sym__subscript_open] = ACTIONS(4904), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4904), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4904), + [sym__cite_author_in_text] = ACTIONS(4904), + [sym__cite_suppress_author] = ACTIONS(4904), + [sym__shortcode_open_escaped] = ACTIONS(4904), + [sym__shortcode_open] = ACTIONS(4904), + [sym__unclosed_span] = ACTIONS(4904), + }, + [STATE(1206)] = { + [sym__backslash_escape] = ACTIONS(5064), + [sym_entity_reference] = ACTIONS(5064), + [sym_numeric_character_reference] = ACTIONS(5064), + [anon_sym_LT] = ACTIONS(5066), + [anon_sym_GT] = ACTIONS(5064), + [anon_sym_BANG] = ACTIONS(5064), + [anon_sym_DQUOTE] = ACTIONS(5064), + [anon_sym_POUND] = ACTIONS(5064), + [anon_sym_DOLLAR] = ACTIONS(5064), + [anon_sym_PERCENT] = ACTIONS(5064), + [anon_sym_AMP] = ACTIONS(5066), + [anon_sym_SQUOTE] = ACTIONS(5064), + [anon_sym_STAR] = ACTIONS(5064), + [anon_sym_PLUS] = ACTIONS(5064), + [anon_sym_COMMA] = ACTIONS(5064), + [anon_sym_DASH] = ACTIONS(5066), + [anon_sym_DOT] = ACTIONS(5066), + [anon_sym_SLASH] = ACTIONS(5064), + [anon_sym_COLON] = ACTIONS(5064), + [anon_sym_SEMI] = ACTIONS(5064), + [anon_sym_EQ] = ACTIONS(5064), + [anon_sym_QMARK] = ACTIONS(5064), + [anon_sym_LBRACK] = ACTIONS(5066), + [anon_sym_BSLASH] = ACTIONS(5066), + [anon_sym_CARET] = ACTIONS(5066), + [anon_sym__] = ACTIONS(5064), + [anon_sym_BQUOTE] = ACTIONS(5064), + [anon_sym_LBRACE] = ACTIONS(5064), + [anon_sym_PIPE] = ACTIONS(5064), + [anon_sym_TILDE] = ACTIONS(5064), + [anon_sym_LPAREN] = ACTIONS(5064), + [anon_sym_RPAREN] = ACTIONS(5064), + [sym__newline_token] = ACTIONS(5064), + [aux_sym_insert_token1] = ACTIONS(5064), + [aux_sym_delete_token1] = ACTIONS(5064), + [aux_sym_highlight_token1] = ACTIONS(5064), + [aux_sym_edit_comment_token1] = ACTIONS(5064), + [anon_sym_CARET_LBRACK] = ACTIONS(5064), + [anon_sym_LBRACK_CARET] = ACTIONS(5064), + [sym_uri_autolink] = ACTIONS(5064), + [sym_email_autolink] = ACTIONS(5064), + [sym__whitespace_ge_2] = ACTIONS(5064), + [aux_sym__whitespace_token1] = ACTIONS(5066), + [sym__word_no_digit] = ACTIONS(5064), + [sym__digits] = ACTIONS(5064), + [anon_sym_DASH_DASH] = ACTIONS(5066), + [anon_sym_DASH_DASH_DASH] = ACTIONS(5064), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5064), + [sym__code_span_start] = ACTIONS(5064), + [sym__emphasis_open_star] = ACTIONS(5064), + [sym__emphasis_open_underscore] = ACTIONS(5064), + [sym__emphasis_close_star] = ACTIONS(5090), + [sym__strikeout_open] = ACTIONS(5064), + [sym__latex_span_start] = ACTIONS(5064), + [sym__single_quote_open] = ACTIONS(5064), + [sym__double_quote_open] = ACTIONS(5064), + [sym__superscript_open] = ACTIONS(5064), + [sym__subscript_open] = ACTIONS(5064), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5064), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5064), + [sym__cite_author_in_text] = ACTIONS(5064), + [sym__cite_suppress_author] = ACTIONS(5064), + [sym__shortcode_open_escaped] = ACTIONS(5064), + [sym__shortcode_open] = ACTIONS(5064), + [sym__unclosed_span] = ACTIONS(5064), + }, + [STATE(1207)] = { + [sym__backslash_escape] = ACTIONS(4908), + [sym_entity_reference] = ACTIONS(4908), + [sym_numeric_character_reference] = ACTIONS(4908), + [anon_sym_LT] = ACTIONS(4910), + [anon_sym_GT] = ACTIONS(4908), + [anon_sym_BANG] = ACTIONS(4908), + [anon_sym_DQUOTE] = ACTIONS(4908), + [anon_sym_POUND] = ACTIONS(4908), + [anon_sym_DOLLAR] = ACTIONS(4908), + [anon_sym_PERCENT] = ACTIONS(4908), + [anon_sym_AMP] = ACTIONS(4910), + [anon_sym_SQUOTE] = ACTIONS(4908), + [anon_sym_STAR] = ACTIONS(4908), + [anon_sym_PLUS] = ACTIONS(4908), + [anon_sym_COMMA] = ACTIONS(4908), + [anon_sym_DASH] = ACTIONS(4910), + [anon_sym_DOT] = ACTIONS(4910), + [anon_sym_SLASH] = ACTIONS(4908), + [anon_sym_COLON] = ACTIONS(4908), + [anon_sym_SEMI] = ACTIONS(4908), + [anon_sym_EQ] = ACTIONS(4908), + [anon_sym_QMARK] = ACTIONS(4908), + [anon_sym_LBRACK] = ACTIONS(4910), + [anon_sym_BSLASH] = ACTIONS(4910), + [anon_sym_CARET] = ACTIONS(4910), + [anon_sym__] = ACTIONS(4908), + [anon_sym_BQUOTE] = ACTIONS(4908), + [anon_sym_LBRACE] = ACTIONS(4908), + [anon_sym_PIPE] = ACTIONS(4908), + [anon_sym_TILDE] = ACTIONS(4908), + [anon_sym_LPAREN] = ACTIONS(4908), + [anon_sym_RPAREN] = ACTIONS(4908), + [sym__newline_token] = ACTIONS(4908), + [aux_sym_insert_token1] = ACTIONS(4908), + [aux_sym_delete_token1] = ACTIONS(4908), + [aux_sym_highlight_token1] = ACTIONS(4908), + [aux_sym_edit_comment_token1] = ACTIONS(4908), + [anon_sym_CARET_LBRACK] = ACTIONS(4908), + [anon_sym_LBRACK_CARET] = ACTIONS(4908), + [sym_uri_autolink] = ACTIONS(4908), + [sym_email_autolink] = ACTIONS(4908), + [sym__whitespace_ge_2] = ACTIONS(4908), + [aux_sym__whitespace_token1] = ACTIONS(4910), + [sym__word_no_digit] = ACTIONS(4908), + [sym__digits] = ACTIONS(4908), + [anon_sym_DASH_DASH] = ACTIONS(4910), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4908), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4908), + [sym__code_span_start] = ACTIONS(4908), + [sym__emphasis_open_star] = ACTIONS(4908), + [sym__emphasis_open_underscore] = ACTIONS(4908), + [sym__strikeout_open] = ACTIONS(4908), + [sym__latex_span_start] = ACTIONS(4908), + [sym__single_quote_open] = ACTIONS(4908), + [sym__single_quote_close] = ACTIONS(4908), + [sym__double_quote_open] = ACTIONS(4908), + [sym__superscript_open] = ACTIONS(4908), + [sym__subscript_open] = ACTIONS(4908), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4908), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4908), + [sym__cite_author_in_text] = ACTIONS(4908), + [sym__cite_suppress_author] = ACTIONS(4908), + [sym__shortcode_open_escaped] = ACTIONS(4908), + [sym__shortcode_open] = ACTIONS(4908), + [sym__unclosed_span] = ACTIONS(4908), + }, + [STATE(1208)] = { + [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__] = ACTIONS(5071), + [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(5093), + [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), + }, + [STATE(1209)] = { + [sym__backslash_escape] = ACTIONS(4550), + [sym_entity_reference] = ACTIONS(4550), + [sym_numeric_character_reference] = ACTIONS(4550), + [anon_sym_LT] = ACTIONS(4552), + [anon_sym_GT] = ACTIONS(4550), + [anon_sym_BANG] = ACTIONS(4550), + [anon_sym_DQUOTE] = ACTIONS(4550), + [anon_sym_POUND] = ACTIONS(4550), + [anon_sym_DOLLAR] = ACTIONS(4550), + [anon_sym_PERCENT] = ACTIONS(4550), + [anon_sym_AMP] = ACTIONS(4552), + [anon_sym_SQUOTE] = ACTIONS(4550), + [anon_sym_STAR] = ACTIONS(4550), + [anon_sym_PLUS] = ACTIONS(4550), + [anon_sym_COMMA] = ACTIONS(4550), + [anon_sym_DASH] = ACTIONS(4552), + [anon_sym_DOT] = ACTIONS(4552), + [anon_sym_SLASH] = ACTIONS(4550), + [anon_sym_COLON] = ACTIONS(4550), + [anon_sym_SEMI] = ACTIONS(4550), + [anon_sym_EQ] = ACTIONS(4550), + [anon_sym_QMARK] = ACTIONS(4550), + [anon_sym_LBRACK] = ACTIONS(4552), + [anon_sym_BSLASH] = ACTIONS(4552), + [anon_sym_CARET] = ACTIONS(4552), + [anon_sym__] = ACTIONS(4550), + [anon_sym_BQUOTE] = ACTIONS(4550), + [anon_sym_LBRACE] = ACTIONS(4550), + [anon_sym_PIPE] = ACTIONS(4550), + [anon_sym_TILDE] = ACTIONS(4550), + [anon_sym_LPAREN] = ACTIONS(4550), + [anon_sym_RPAREN] = ACTIONS(4550), + [sym__newline_token] = ACTIONS(4550), + [aux_sym_insert_token1] = ACTIONS(4550), + [aux_sym_delete_token1] = ACTIONS(4550), + [aux_sym_highlight_token1] = ACTIONS(4550), + [aux_sym_edit_comment_token1] = ACTIONS(4550), + [anon_sym_CARET_LBRACK] = ACTIONS(4550), + [anon_sym_LBRACK_CARET] = ACTIONS(4550), + [sym_uri_autolink] = ACTIONS(4550), + [sym_email_autolink] = ACTIONS(4550), + [sym__whitespace_ge_2] = ACTIONS(4550), + [aux_sym__whitespace_token1] = ACTIONS(4552), + [sym__word_no_digit] = ACTIONS(4550), + [sym__digits] = ACTIONS(4550), + [anon_sym_DASH_DASH] = ACTIONS(4552), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4550), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4550), + [sym__code_span_start] = ACTIONS(4550), + [sym__emphasis_open_star] = ACTIONS(4550), + [sym__emphasis_open_underscore] = ACTIONS(4550), + [sym__strikeout_open] = ACTIONS(4550), + [sym__latex_span_start] = ACTIONS(4550), + [sym__single_quote_open] = ACTIONS(4550), + [sym__single_quote_close] = ACTIONS(4550), + [sym__double_quote_open] = ACTIONS(4550), + [sym__superscript_open] = ACTIONS(4550), + [sym__subscript_open] = ACTIONS(4550), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4550), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4550), + [sym__cite_author_in_text] = ACTIONS(4550), + [sym__cite_suppress_author] = ACTIONS(4550), + [sym__shortcode_open_escaped] = ACTIONS(4550), + [sym__shortcode_open] = ACTIONS(4550), + [sym__unclosed_span] = ACTIONS(4550), + }, + [STATE(1210)] = { + [ts_builtin_sym_end] = ACTIONS(4832), + [sym__backslash_escape] = ACTIONS(4832), + [sym_entity_reference] = ACTIONS(4832), + [sym_numeric_character_reference] = ACTIONS(4832), + [anon_sym_LT] = ACTIONS(4834), + [anon_sym_GT] = ACTIONS(4832), + [anon_sym_BANG] = ACTIONS(4832), + [anon_sym_DQUOTE] = ACTIONS(4832), + [anon_sym_POUND] = ACTIONS(4832), + [anon_sym_DOLLAR] = ACTIONS(4832), + [anon_sym_PERCENT] = ACTIONS(4832), + [anon_sym_AMP] = ACTIONS(4834), + [anon_sym_SQUOTE] = ACTIONS(4832), + [anon_sym_STAR] = ACTIONS(4832), + [anon_sym_PLUS] = ACTIONS(4832), + [anon_sym_COMMA] = ACTIONS(4832), + [anon_sym_DASH] = ACTIONS(4834), + [anon_sym_DOT] = ACTIONS(4834), + [anon_sym_SLASH] = ACTIONS(4832), + [anon_sym_COLON] = ACTIONS(4832), + [anon_sym_SEMI] = ACTIONS(4832), + [anon_sym_EQ] = ACTIONS(4832), + [anon_sym_QMARK] = ACTIONS(4832), + [anon_sym_LBRACK] = ACTIONS(4834), + [anon_sym_BSLASH] = ACTIONS(4834), + [anon_sym_CARET] = ACTIONS(4834), + [anon_sym__] = ACTIONS(4832), + [anon_sym_BQUOTE] = ACTIONS(4832), + [anon_sym_LBRACE] = ACTIONS(4832), + [anon_sym_PIPE] = ACTIONS(4832), + [anon_sym_TILDE] = ACTIONS(4832), + [anon_sym_LPAREN] = ACTIONS(4832), + [anon_sym_RPAREN] = ACTIONS(4832), + [sym__newline_token] = ACTIONS(4832), + [aux_sym_insert_token1] = ACTIONS(4832), + [aux_sym_delete_token1] = ACTIONS(4832), + [aux_sym_highlight_token1] = ACTIONS(4832), + [aux_sym_edit_comment_token1] = ACTIONS(4832), + [anon_sym_CARET_LBRACK] = ACTIONS(4832), + [anon_sym_LBRACK_CARET] = ACTIONS(4832), + [sym_uri_autolink] = ACTIONS(4832), + [sym_email_autolink] = ACTIONS(4832), + [sym__whitespace_ge_2] = ACTIONS(4832), + [aux_sym__whitespace_token1] = ACTIONS(4834), + [sym__word_no_digit] = ACTIONS(4832), + [sym__digits] = ACTIONS(4832), + [anon_sym_DASH_DASH] = ACTIONS(4834), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4832), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4832), + [sym__code_span_start] = ACTIONS(4832), + [sym__emphasis_open_star] = ACTIONS(4832), + [sym__emphasis_open_underscore] = ACTIONS(4832), + [sym__strikeout_open] = ACTIONS(4832), + [sym__latex_span_start] = ACTIONS(4832), + [sym__single_quote_open] = ACTIONS(4832), + [sym__double_quote_open] = ACTIONS(4832), + [sym__superscript_open] = ACTIONS(4832), + [sym__subscript_open] = ACTIONS(4832), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4832), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4832), + [sym__cite_author_in_text] = ACTIONS(4832), + [sym__cite_suppress_author] = ACTIONS(4832), + [sym__shortcode_open_escaped] = ACTIONS(4832), + [sym__shortcode_open] = ACTIONS(4832), + [sym__unclosed_span] = ACTIONS(4832), + }, + [STATE(1211)] = { + [ts_builtin_sym_end] = ACTIONS(4836), + [sym__backslash_escape] = ACTIONS(4836), + [sym_entity_reference] = ACTIONS(4836), + [sym_numeric_character_reference] = ACTIONS(4836), + [anon_sym_LT] = ACTIONS(4838), + [anon_sym_GT] = ACTIONS(4836), + [anon_sym_BANG] = ACTIONS(4836), + [anon_sym_DQUOTE] = ACTIONS(4836), + [anon_sym_POUND] = ACTIONS(4836), + [anon_sym_DOLLAR] = ACTIONS(4836), + [anon_sym_PERCENT] = ACTIONS(4836), + [anon_sym_AMP] = ACTIONS(4838), + [anon_sym_SQUOTE] = ACTIONS(4836), + [anon_sym_STAR] = ACTIONS(4836), + [anon_sym_PLUS] = ACTIONS(4836), + [anon_sym_COMMA] = ACTIONS(4836), + [anon_sym_DASH] = ACTIONS(4838), + [anon_sym_DOT] = ACTIONS(4838), + [anon_sym_SLASH] = ACTIONS(4836), + [anon_sym_COLON] = ACTIONS(4836), + [anon_sym_SEMI] = ACTIONS(4836), + [anon_sym_EQ] = ACTIONS(4836), + [anon_sym_QMARK] = ACTIONS(4836), + [anon_sym_LBRACK] = ACTIONS(4838), + [anon_sym_BSLASH] = ACTIONS(4838), + [anon_sym_CARET] = ACTIONS(4838), + [anon_sym__] = ACTIONS(4836), + [anon_sym_BQUOTE] = ACTIONS(4836), + [anon_sym_LBRACE] = ACTIONS(4836), + [anon_sym_PIPE] = ACTIONS(4836), + [anon_sym_TILDE] = ACTIONS(4836), + [anon_sym_LPAREN] = ACTIONS(4836), + [anon_sym_RPAREN] = ACTIONS(4836), + [sym__newline_token] = ACTIONS(4836), + [aux_sym_insert_token1] = ACTIONS(4836), + [aux_sym_delete_token1] = ACTIONS(4836), + [aux_sym_highlight_token1] = ACTIONS(4836), + [aux_sym_edit_comment_token1] = ACTIONS(4836), + [anon_sym_CARET_LBRACK] = ACTIONS(4836), + [anon_sym_LBRACK_CARET] = ACTIONS(4836), + [sym_uri_autolink] = ACTIONS(4836), + [sym_email_autolink] = ACTIONS(4836), + [sym__whitespace_ge_2] = ACTIONS(4836), + [aux_sym__whitespace_token1] = ACTIONS(4838), + [sym__word_no_digit] = ACTIONS(4836), + [sym__digits] = ACTIONS(4836), + [anon_sym_DASH_DASH] = ACTIONS(4838), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4836), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4836), + [sym__code_span_start] = ACTIONS(4836), + [sym__emphasis_open_star] = ACTIONS(4836), + [sym__emphasis_open_underscore] = ACTIONS(4836), + [sym__strikeout_open] = ACTIONS(4836), + [sym__latex_span_start] = ACTIONS(4836), + [sym__single_quote_open] = ACTIONS(4836), + [sym__double_quote_open] = ACTIONS(4836), + [sym__superscript_open] = ACTIONS(4836), + [sym__subscript_open] = ACTIONS(4836), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4836), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4836), + [sym__cite_author_in_text] = ACTIONS(4836), + [sym__cite_suppress_author] = ACTIONS(4836), + [sym__shortcode_open_escaped] = ACTIONS(4836), + [sym__shortcode_open] = ACTIONS(4836), + [sym__unclosed_span] = ACTIONS(4836), + }, + [STATE(1212)] = { + [sym__backslash_escape] = ACTIONS(4824), + [sym_entity_reference] = ACTIONS(4824), + [sym_numeric_character_reference] = ACTIONS(4824), + [anon_sym_LT] = ACTIONS(4826), + [anon_sym_GT] = ACTIONS(4824), + [anon_sym_BANG] = ACTIONS(4824), + [anon_sym_DQUOTE] = ACTIONS(4824), + [anon_sym_POUND] = ACTIONS(4824), + [anon_sym_DOLLAR] = ACTIONS(4824), + [anon_sym_PERCENT] = ACTIONS(4824), + [anon_sym_AMP] = ACTIONS(4826), + [anon_sym_SQUOTE] = ACTIONS(4824), + [anon_sym_STAR] = ACTIONS(4824), + [anon_sym_PLUS] = ACTIONS(4824), + [anon_sym_COMMA] = ACTIONS(4824), + [anon_sym_DASH] = ACTIONS(4826), + [anon_sym_DOT] = ACTIONS(4826), + [anon_sym_SLASH] = ACTIONS(4824), + [anon_sym_COLON] = ACTIONS(4824), + [anon_sym_SEMI] = ACTIONS(4824), + [anon_sym_EQ] = ACTIONS(4824), + [anon_sym_QMARK] = ACTIONS(4824), + [anon_sym_LBRACK] = ACTIONS(4826), + [anon_sym_BSLASH] = ACTIONS(4826), + [anon_sym_CARET] = ACTIONS(4826), + [anon_sym__] = ACTIONS(4824), + [anon_sym_BQUOTE] = ACTIONS(4824), + [anon_sym_LBRACE] = ACTIONS(4824), + [anon_sym_PIPE] = ACTIONS(4824), + [anon_sym_TILDE] = ACTIONS(4824), + [anon_sym_LPAREN] = ACTIONS(4824), + [anon_sym_RPAREN] = ACTIONS(4824), + [sym__newline_token] = ACTIONS(4824), + [aux_sym_insert_token1] = ACTIONS(4824), + [aux_sym_delete_token1] = ACTIONS(4824), + [aux_sym_highlight_token1] = ACTIONS(4824), + [aux_sym_edit_comment_token1] = ACTIONS(4824), + [anon_sym_CARET_LBRACK] = ACTIONS(4824), + [anon_sym_LBRACK_CARET] = ACTIONS(4824), + [sym_uri_autolink] = ACTIONS(4824), + [sym_email_autolink] = ACTIONS(4824), + [sym__whitespace_ge_2] = ACTIONS(4824), + [aux_sym__whitespace_token1] = ACTIONS(4826), + [sym__word_no_digit] = ACTIONS(4824), + [sym__digits] = ACTIONS(4824), + [anon_sym_DASH_DASH] = ACTIONS(4826), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4824), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4824), + [sym__code_span_start] = ACTIONS(4824), + [sym__emphasis_open_star] = ACTIONS(4824), + [sym__emphasis_open_underscore] = ACTIONS(4824), + [sym__emphasis_close_underscore] = ACTIONS(4824), + [sym__strikeout_open] = ACTIONS(4824), + [sym__latex_span_start] = ACTIONS(4824), + [sym__single_quote_open] = ACTIONS(4824), + [sym__double_quote_open] = ACTIONS(4824), + [sym__superscript_open] = ACTIONS(4824), + [sym__subscript_open] = ACTIONS(4824), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4824), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4824), + [sym__cite_author_in_text] = ACTIONS(4824), + [sym__cite_suppress_author] = ACTIONS(4824), + [sym__shortcode_open_escaped] = ACTIONS(4824), + [sym__shortcode_open] = ACTIONS(4824), + [sym__unclosed_span] = ACTIONS(4824), + }, + [STATE(1213)] = { + [ts_builtin_sym_end] = ACTIONS(4844), + [sym__backslash_escape] = ACTIONS(4844), + [sym_entity_reference] = ACTIONS(4844), + [sym_numeric_character_reference] = ACTIONS(4844), + [anon_sym_LT] = ACTIONS(4846), + [anon_sym_GT] = ACTIONS(4844), + [anon_sym_BANG] = ACTIONS(4844), + [anon_sym_DQUOTE] = ACTIONS(4844), + [anon_sym_POUND] = ACTIONS(4844), + [anon_sym_DOLLAR] = ACTIONS(4844), + [anon_sym_PERCENT] = ACTIONS(4844), + [anon_sym_AMP] = ACTIONS(4846), + [anon_sym_SQUOTE] = ACTIONS(4844), + [anon_sym_STAR] = ACTIONS(4844), + [anon_sym_PLUS] = ACTIONS(4844), + [anon_sym_COMMA] = ACTIONS(4844), + [anon_sym_DASH] = ACTIONS(4846), + [anon_sym_DOT] = ACTIONS(4846), + [anon_sym_SLASH] = ACTIONS(4844), + [anon_sym_COLON] = ACTIONS(4844), + [anon_sym_SEMI] = ACTIONS(4844), + [anon_sym_EQ] = ACTIONS(4844), + [anon_sym_QMARK] = ACTIONS(4844), + [anon_sym_LBRACK] = ACTIONS(4846), + [anon_sym_BSLASH] = ACTIONS(4846), + [anon_sym_CARET] = ACTIONS(4846), + [anon_sym__] = ACTIONS(4844), + [anon_sym_BQUOTE] = ACTIONS(4844), + [anon_sym_LBRACE] = ACTIONS(4844), + [anon_sym_PIPE] = ACTIONS(4844), + [anon_sym_TILDE] = ACTIONS(4844), + [anon_sym_LPAREN] = ACTIONS(4844), + [anon_sym_RPAREN] = ACTIONS(4844), + [sym__newline_token] = ACTIONS(4844), + [aux_sym_insert_token1] = ACTIONS(4844), + [aux_sym_delete_token1] = ACTIONS(4844), + [aux_sym_highlight_token1] = ACTIONS(4844), + [aux_sym_edit_comment_token1] = ACTIONS(4844), + [anon_sym_CARET_LBRACK] = ACTIONS(4844), + [anon_sym_LBRACK_CARET] = ACTIONS(4844), + [sym_uri_autolink] = ACTIONS(4844), + [sym_email_autolink] = ACTIONS(4844), + [sym__whitespace_ge_2] = ACTIONS(4844), + [aux_sym__whitespace_token1] = ACTIONS(4846), + [sym__word_no_digit] = ACTIONS(4844), + [sym__digits] = ACTIONS(4844), + [anon_sym_DASH_DASH] = ACTIONS(4846), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4844), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4844), + [sym__code_span_start] = ACTIONS(4844), + [sym__emphasis_open_star] = ACTIONS(4844), + [sym__emphasis_open_underscore] = ACTIONS(4844), + [sym__strikeout_open] = ACTIONS(4844), + [sym__latex_span_start] = ACTIONS(4844), + [sym__single_quote_open] = ACTIONS(4844), + [sym__double_quote_open] = ACTIONS(4844), + [sym__superscript_open] = ACTIONS(4844), + [sym__subscript_open] = ACTIONS(4844), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4844), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4844), + [sym__cite_author_in_text] = ACTIONS(4844), + [sym__cite_suppress_author] = ACTIONS(4844), + [sym__shortcode_open_escaped] = ACTIONS(4844), + [sym__shortcode_open] = ACTIONS(4844), + [sym__unclosed_span] = ACTIONS(4844), + }, + [STATE(1214)] = { + [sym__backslash_escape] = ACTIONS(4554), + [sym_entity_reference] = ACTIONS(4554), + [sym_numeric_character_reference] = ACTIONS(4554), + [anon_sym_LT] = ACTIONS(4556), + [anon_sym_GT] = ACTIONS(4554), + [anon_sym_BANG] = ACTIONS(4554), + [anon_sym_DQUOTE] = ACTIONS(4554), + [anon_sym_POUND] = ACTIONS(4554), + [anon_sym_DOLLAR] = ACTIONS(4554), + [anon_sym_PERCENT] = ACTIONS(4554), + [anon_sym_AMP] = ACTIONS(4556), + [anon_sym_SQUOTE] = ACTIONS(4554), + [anon_sym_STAR] = ACTIONS(4554), + [anon_sym_PLUS] = ACTIONS(4554), + [anon_sym_COMMA] = ACTIONS(4554), + [anon_sym_DASH] = ACTIONS(4556), + [anon_sym_DOT] = ACTIONS(4556), + [anon_sym_SLASH] = ACTIONS(4554), + [anon_sym_COLON] = ACTIONS(4554), + [anon_sym_SEMI] = ACTIONS(4554), + [anon_sym_EQ] = ACTIONS(4554), + [anon_sym_QMARK] = ACTIONS(4554), + [anon_sym_LBRACK] = ACTIONS(4556), + [anon_sym_BSLASH] = ACTIONS(4556), + [anon_sym_CARET] = ACTIONS(4556), + [anon_sym__] = ACTIONS(4554), + [anon_sym_BQUOTE] = ACTIONS(4554), + [anon_sym_LBRACE] = ACTIONS(4554), + [anon_sym_PIPE] = ACTIONS(4554), + [anon_sym_TILDE] = ACTIONS(4554), + [anon_sym_LPAREN] = ACTIONS(4554), + [anon_sym_RPAREN] = ACTIONS(4554), + [sym__newline_token] = ACTIONS(4554), + [aux_sym_insert_token1] = ACTIONS(4554), + [aux_sym_delete_token1] = ACTIONS(4554), + [aux_sym_highlight_token1] = ACTIONS(4554), + [aux_sym_edit_comment_token1] = ACTIONS(4554), + [anon_sym_CARET_LBRACK] = ACTIONS(4554), + [anon_sym_LBRACK_CARET] = ACTIONS(4554), + [sym_uri_autolink] = ACTIONS(4554), + [sym_email_autolink] = ACTIONS(4554), + [sym__whitespace_ge_2] = ACTIONS(4554), + [aux_sym__whitespace_token1] = ACTIONS(4556), + [sym__word_no_digit] = ACTIONS(4554), + [sym__digits] = ACTIONS(4554), + [anon_sym_DASH_DASH] = ACTIONS(4556), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4554), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4554), + [sym__code_span_start] = ACTIONS(4554), + [sym__emphasis_open_star] = ACTIONS(4554), + [sym__emphasis_open_underscore] = ACTIONS(4554), + [sym__strikeout_open] = ACTIONS(4554), + [sym__latex_span_start] = ACTIONS(4554), + [sym__single_quote_open] = ACTIONS(4554), + [sym__single_quote_close] = ACTIONS(4554), + [sym__double_quote_open] = ACTIONS(4554), + [sym__superscript_open] = ACTIONS(4554), + [sym__subscript_open] = ACTIONS(4554), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4554), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4554), + [sym__cite_author_in_text] = ACTIONS(4554), + [sym__cite_suppress_author] = ACTIONS(4554), + [sym__shortcode_open_escaped] = ACTIONS(4554), + [sym__shortcode_open] = ACTIONS(4554), + [sym__unclosed_span] = ACTIONS(4554), + }, + [STATE(1215)] = { + [ts_builtin_sym_end] = ACTIONS(4848), + [sym__backslash_escape] = ACTIONS(4848), + [sym_entity_reference] = ACTIONS(4848), + [sym_numeric_character_reference] = ACTIONS(4848), + [anon_sym_LT] = ACTIONS(4850), + [anon_sym_GT] = ACTIONS(4848), + [anon_sym_BANG] = ACTIONS(4848), + [anon_sym_DQUOTE] = ACTIONS(4848), + [anon_sym_POUND] = ACTIONS(4848), + [anon_sym_DOLLAR] = ACTIONS(4848), + [anon_sym_PERCENT] = ACTIONS(4848), + [anon_sym_AMP] = ACTIONS(4850), + [anon_sym_SQUOTE] = ACTIONS(4848), + [anon_sym_STAR] = ACTIONS(4848), + [anon_sym_PLUS] = ACTIONS(4848), + [anon_sym_COMMA] = ACTIONS(4848), + [anon_sym_DASH] = ACTIONS(4850), + [anon_sym_DOT] = ACTIONS(4850), + [anon_sym_SLASH] = ACTIONS(4848), + [anon_sym_COLON] = ACTIONS(4848), + [anon_sym_SEMI] = ACTIONS(4848), + [anon_sym_EQ] = ACTIONS(4848), + [anon_sym_QMARK] = ACTIONS(4848), + [anon_sym_LBRACK] = ACTIONS(4850), + [anon_sym_BSLASH] = ACTIONS(4850), + [anon_sym_CARET] = ACTIONS(4850), + [anon_sym__] = ACTIONS(4848), + [anon_sym_BQUOTE] = ACTIONS(4848), + [anon_sym_LBRACE] = ACTIONS(4848), + [anon_sym_PIPE] = ACTIONS(4848), + [anon_sym_TILDE] = ACTIONS(4848), + [anon_sym_LPAREN] = ACTIONS(4848), + [anon_sym_RPAREN] = ACTIONS(4848), + [sym__newline_token] = ACTIONS(4848), + [aux_sym_insert_token1] = ACTIONS(4848), + [aux_sym_delete_token1] = ACTIONS(4848), + [aux_sym_highlight_token1] = ACTIONS(4848), + [aux_sym_edit_comment_token1] = ACTIONS(4848), + [anon_sym_CARET_LBRACK] = ACTIONS(4848), + [anon_sym_LBRACK_CARET] = ACTIONS(4848), + [sym_uri_autolink] = ACTIONS(4848), + [sym_email_autolink] = ACTIONS(4848), + [sym__whitespace_ge_2] = ACTIONS(4848), + [aux_sym__whitespace_token1] = ACTIONS(4850), + [sym__word_no_digit] = ACTIONS(4848), + [sym__digits] = ACTIONS(4848), + [anon_sym_DASH_DASH] = ACTIONS(4850), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4848), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4848), + [sym__code_span_start] = ACTIONS(4848), + [sym__emphasis_open_star] = ACTIONS(4848), + [sym__emphasis_open_underscore] = ACTIONS(4848), + [sym__strikeout_open] = ACTIONS(4848), + [sym__latex_span_start] = ACTIONS(4848), + [sym__single_quote_open] = ACTIONS(4848), + [sym__double_quote_open] = ACTIONS(4848), + [sym__superscript_open] = ACTIONS(4848), + [sym__subscript_open] = ACTIONS(4848), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4848), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4848), + [sym__cite_author_in_text] = ACTIONS(4848), + [sym__cite_suppress_author] = ACTIONS(4848), + [sym__shortcode_open_escaped] = ACTIONS(4848), + [sym__shortcode_open] = ACTIONS(4848), + [sym__unclosed_span] = ACTIONS(4848), + }, + [STATE(1216)] = { + [ts_builtin_sym_end] = ACTIONS(4852), + [sym__backslash_escape] = ACTIONS(4852), + [sym_entity_reference] = ACTIONS(4852), + [sym_numeric_character_reference] = ACTIONS(4852), + [anon_sym_LT] = ACTIONS(4854), + [anon_sym_GT] = ACTIONS(4852), + [anon_sym_BANG] = ACTIONS(4852), + [anon_sym_DQUOTE] = ACTIONS(4852), + [anon_sym_POUND] = ACTIONS(4852), + [anon_sym_DOLLAR] = ACTIONS(4852), + [anon_sym_PERCENT] = ACTIONS(4852), + [anon_sym_AMP] = ACTIONS(4854), + [anon_sym_SQUOTE] = ACTIONS(4852), + [anon_sym_STAR] = ACTIONS(4852), + [anon_sym_PLUS] = ACTIONS(4852), + [anon_sym_COMMA] = ACTIONS(4852), + [anon_sym_DASH] = ACTIONS(4854), + [anon_sym_DOT] = ACTIONS(4854), + [anon_sym_SLASH] = ACTIONS(4852), + [anon_sym_COLON] = ACTIONS(4852), + [anon_sym_SEMI] = ACTIONS(4852), + [anon_sym_EQ] = ACTIONS(4852), + [anon_sym_QMARK] = ACTIONS(4852), + [anon_sym_LBRACK] = ACTIONS(4854), + [anon_sym_BSLASH] = ACTIONS(4854), + [anon_sym_CARET] = ACTIONS(4854), + [anon_sym__] = ACTIONS(4852), + [anon_sym_BQUOTE] = ACTIONS(4852), + [anon_sym_LBRACE] = ACTIONS(4852), + [anon_sym_PIPE] = ACTIONS(4852), + [anon_sym_TILDE] = ACTIONS(4852), + [anon_sym_LPAREN] = ACTIONS(4852), + [anon_sym_RPAREN] = ACTIONS(4852), + [sym__newline_token] = ACTIONS(4852), + [aux_sym_insert_token1] = ACTIONS(4852), + [aux_sym_delete_token1] = ACTIONS(4852), + [aux_sym_highlight_token1] = ACTIONS(4852), + [aux_sym_edit_comment_token1] = ACTIONS(4852), + [anon_sym_CARET_LBRACK] = ACTIONS(4852), + [anon_sym_LBRACK_CARET] = ACTIONS(4852), + [sym_uri_autolink] = ACTIONS(4852), + [sym_email_autolink] = ACTIONS(4852), + [sym__whitespace_ge_2] = ACTIONS(4852), + [aux_sym__whitespace_token1] = ACTIONS(4854), + [sym__word_no_digit] = ACTIONS(4852), + [sym__digits] = ACTIONS(4852), + [anon_sym_DASH_DASH] = ACTIONS(4854), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4852), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4852), + [sym__code_span_start] = ACTIONS(4852), + [sym__emphasis_open_star] = ACTIONS(4852), + [sym__emphasis_open_underscore] = ACTIONS(4852), + [sym__strikeout_open] = ACTIONS(4852), + [sym__latex_span_start] = ACTIONS(4852), + [sym__single_quote_open] = ACTIONS(4852), + [sym__double_quote_open] = ACTIONS(4852), + [sym__superscript_open] = ACTIONS(4852), + [sym__subscript_open] = ACTIONS(4852), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4852), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4852), + [sym__cite_author_in_text] = ACTIONS(4852), + [sym__cite_suppress_author] = ACTIONS(4852), + [sym__shortcode_open_escaped] = ACTIONS(4852), + [sym__shortcode_open] = ACTIONS(4852), + [sym__unclosed_span] = ACTIONS(4852), + }, + [STATE(1217)] = { + [ts_builtin_sym_end] = ACTIONS(4566), + [sym__backslash_escape] = ACTIONS(4566), + [sym_entity_reference] = ACTIONS(4566), + [sym_numeric_character_reference] = ACTIONS(4566), + [anon_sym_LT] = ACTIONS(4568), + [anon_sym_GT] = ACTIONS(4566), + [anon_sym_BANG] = ACTIONS(4566), + [anon_sym_DQUOTE] = ACTIONS(4566), + [anon_sym_POUND] = ACTIONS(4566), + [anon_sym_DOLLAR] = ACTIONS(4566), + [anon_sym_PERCENT] = ACTIONS(4566), + [anon_sym_AMP] = ACTIONS(4568), + [anon_sym_SQUOTE] = ACTIONS(4566), + [anon_sym_STAR] = ACTIONS(4566), + [anon_sym_PLUS] = ACTIONS(4566), + [anon_sym_COMMA] = ACTIONS(4566), + [anon_sym_DASH] = ACTIONS(4568), + [anon_sym_DOT] = ACTIONS(4568), + [anon_sym_SLASH] = ACTIONS(4566), + [anon_sym_COLON] = ACTIONS(4566), + [anon_sym_SEMI] = ACTIONS(4566), + [anon_sym_EQ] = ACTIONS(4566), + [anon_sym_QMARK] = ACTIONS(4566), + [anon_sym_LBRACK] = ACTIONS(4568), + [anon_sym_BSLASH] = ACTIONS(4568), + [anon_sym_CARET] = ACTIONS(4568), + [anon_sym__] = ACTIONS(4566), + [anon_sym_BQUOTE] = ACTIONS(4566), + [anon_sym_LBRACE] = ACTIONS(4566), + [anon_sym_PIPE] = ACTIONS(4566), + [anon_sym_TILDE] = ACTIONS(4566), + [anon_sym_LPAREN] = ACTIONS(4566), + [anon_sym_RPAREN] = ACTIONS(4566), + [sym__newline_token] = ACTIONS(4566), + [aux_sym_insert_token1] = ACTIONS(4566), + [aux_sym_delete_token1] = ACTIONS(4566), + [aux_sym_highlight_token1] = ACTIONS(4566), + [aux_sym_edit_comment_token1] = ACTIONS(4566), + [anon_sym_CARET_LBRACK] = ACTIONS(4566), + [anon_sym_LBRACK_CARET] = ACTIONS(4566), + [sym_uri_autolink] = ACTIONS(4566), + [sym_email_autolink] = ACTIONS(4566), + [sym__whitespace_ge_2] = ACTIONS(4566), + [aux_sym__whitespace_token1] = ACTIONS(4568), + [sym__word_no_digit] = ACTIONS(4566), + [sym__digits] = ACTIONS(4566), + [anon_sym_DASH_DASH] = ACTIONS(4568), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4566), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4566), + [sym__code_span_start] = ACTIONS(4566), + [sym__emphasis_open_star] = ACTIONS(4566), + [sym__emphasis_open_underscore] = ACTIONS(4566), + [sym__strikeout_open] = ACTIONS(4566), + [sym__latex_span_start] = ACTIONS(4566), + [sym__single_quote_open] = ACTIONS(4566), + [sym__double_quote_open] = ACTIONS(4566), + [sym__superscript_open] = ACTIONS(4566), + [sym__subscript_open] = ACTIONS(4566), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4566), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4566), + [sym__cite_author_in_text] = ACTIONS(4566), + [sym__cite_suppress_author] = ACTIONS(4566), + [sym__shortcode_open_escaped] = ACTIONS(4566), + [sym__shortcode_open] = ACTIONS(4566), + [sym__unclosed_span] = ACTIONS(4566), + }, + [STATE(1218)] = { + [sym__backslash_escape] = ACTIONS(4648), + [sym_entity_reference] = ACTIONS(4648), + [sym_numeric_character_reference] = ACTIONS(4648), + [anon_sym_LT] = ACTIONS(4650), + [anon_sym_GT] = ACTIONS(4648), + [anon_sym_BANG] = ACTIONS(4648), + [anon_sym_DQUOTE] = ACTIONS(4648), + [anon_sym_POUND] = ACTIONS(4648), + [anon_sym_DOLLAR] = ACTIONS(4648), + [anon_sym_PERCENT] = ACTIONS(4648), + [anon_sym_AMP] = ACTIONS(4650), + [anon_sym_SQUOTE] = ACTIONS(4648), + [anon_sym_STAR] = ACTIONS(4648), + [anon_sym_PLUS] = ACTIONS(4648), + [anon_sym_COMMA] = ACTIONS(4648), + [anon_sym_DASH] = ACTIONS(4650), + [anon_sym_DOT] = ACTIONS(4650), + [anon_sym_SLASH] = ACTIONS(4648), + [anon_sym_COLON] = ACTIONS(4648), + [anon_sym_SEMI] = ACTIONS(4648), + [anon_sym_EQ] = ACTIONS(4648), + [anon_sym_QMARK] = ACTIONS(4648), + [anon_sym_LBRACK] = ACTIONS(4650), + [anon_sym_BSLASH] = ACTIONS(4650), + [anon_sym_CARET] = ACTIONS(4650), + [anon_sym__] = ACTIONS(4648), + [anon_sym_BQUOTE] = ACTIONS(4648), + [anon_sym_LBRACE] = ACTIONS(4648), + [anon_sym_PIPE] = ACTIONS(4648), + [anon_sym_TILDE] = ACTIONS(4648), + [anon_sym_LPAREN] = ACTIONS(4648), + [anon_sym_RPAREN] = ACTIONS(4648), + [sym__newline_token] = ACTIONS(4648), + [aux_sym_insert_token1] = ACTIONS(4648), + [aux_sym_delete_token1] = ACTIONS(4648), + [aux_sym_highlight_token1] = ACTIONS(4648), + [aux_sym_edit_comment_token1] = ACTIONS(4648), + [anon_sym_CARET_LBRACK] = ACTIONS(4648), + [anon_sym_LBRACK_CARET] = ACTIONS(4648), + [sym_uri_autolink] = ACTIONS(4648), + [sym_email_autolink] = ACTIONS(4648), + [sym__whitespace_ge_2] = ACTIONS(4648), + [aux_sym__whitespace_token1] = ACTIONS(4650), + [sym__word_no_digit] = ACTIONS(4648), + [sym__digits] = ACTIONS(4648), + [anon_sym_DASH_DASH] = ACTIONS(4650), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4648), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4648), + [sym__code_span_start] = ACTIONS(4648), + [sym__emphasis_open_star] = ACTIONS(4648), + [sym__emphasis_open_underscore] = ACTIONS(4648), + [sym__strikeout_open] = ACTIONS(4648), + [sym__strikeout_close] = ACTIONS(4648), + [sym__latex_span_start] = ACTIONS(4648), + [sym__single_quote_open] = ACTIONS(4648), + [sym__double_quote_open] = ACTIONS(4648), + [sym__superscript_open] = ACTIONS(4648), + [sym__subscript_open] = ACTIONS(4648), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4648), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4648), + [sym__cite_author_in_text] = ACTIONS(4648), + [sym__cite_suppress_author] = ACTIONS(4648), + [sym__shortcode_open_escaped] = ACTIONS(4648), + [sym__shortcode_open] = ACTIONS(4648), + [sym__unclosed_span] = ACTIONS(4648), + }, + [STATE(1219)] = { + [ts_builtin_sym_end] = ACTIONS(4572), + [sym__backslash_escape] = ACTIONS(4572), + [sym_entity_reference] = ACTIONS(4572), + [sym_numeric_character_reference] = ACTIONS(4572), + [anon_sym_LT] = ACTIONS(4574), + [anon_sym_GT] = ACTIONS(4572), + [anon_sym_BANG] = ACTIONS(4572), + [anon_sym_DQUOTE] = ACTIONS(4572), + [anon_sym_POUND] = ACTIONS(4572), + [anon_sym_DOLLAR] = ACTIONS(4572), + [anon_sym_PERCENT] = ACTIONS(4572), + [anon_sym_AMP] = ACTIONS(4574), + [anon_sym_SQUOTE] = ACTIONS(4572), + [anon_sym_STAR] = ACTIONS(4572), + [anon_sym_PLUS] = ACTIONS(4572), + [anon_sym_COMMA] = ACTIONS(4572), + [anon_sym_DASH] = ACTIONS(4574), + [anon_sym_DOT] = ACTIONS(4574), + [anon_sym_SLASH] = ACTIONS(4572), + [anon_sym_COLON] = ACTIONS(4572), + [anon_sym_SEMI] = ACTIONS(4572), + [anon_sym_EQ] = ACTIONS(4572), + [anon_sym_QMARK] = ACTIONS(4572), + [anon_sym_LBRACK] = ACTIONS(4574), + [anon_sym_BSLASH] = ACTIONS(4574), + [anon_sym_CARET] = ACTIONS(4574), + [anon_sym__] = ACTIONS(4572), + [anon_sym_BQUOTE] = ACTIONS(4572), + [anon_sym_LBRACE] = ACTIONS(4572), + [anon_sym_PIPE] = ACTIONS(4572), + [anon_sym_TILDE] = ACTIONS(4572), + [anon_sym_LPAREN] = ACTIONS(4572), + [anon_sym_RPAREN] = ACTIONS(4572), + [sym__newline_token] = ACTIONS(4572), + [aux_sym_insert_token1] = ACTIONS(4572), + [aux_sym_delete_token1] = ACTIONS(4572), + [aux_sym_highlight_token1] = ACTIONS(4572), + [aux_sym_edit_comment_token1] = ACTIONS(4572), + [anon_sym_CARET_LBRACK] = ACTIONS(4572), + [anon_sym_LBRACK_CARET] = ACTIONS(4572), + [sym_uri_autolink] = ACTIONS(4572), + [sym_email_autolink] = ACTIONS(4572), + [sym__whitespace_ge_2] = ACTIONS(4572), + [aux_sym__whitespace_token1] = ACTIONS(4574), + [sym__word_no_digit] = ACTIONS(4572), + [sym__digits] = ACTIONS(4572), + [anon_sym_DASH_DASH] = ACTIONS(4574), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4572), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4572), + [sym__code_span_start] = ACTIONS(4572), + [sym__emphasis_open_star] = ACTIONS(4572), + [sym__emphasis_open_underscore] = ACTIONS(4572), + [sym__strikeout_open] = ACTIONS(4572), + [sym__latex_span_start] = ACTIONS(4572), + [sym__single_quote_open] = ACTIONS(4572), + [sym__double_quote_open] = ACTIONS(4572), + [sym__superscript_open] = ACTIONS(4572), + [sym__subscript_open] = ACTIONS(4572), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4572), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4572), + [sym__cite_author_in_text] = ACTIONS(4572), + [sym__cite_suppress_author] = ACTIONS(4572), + [sym__shortcode_open_escaped] = ACTIONS(4572), + [sym__shortcode_open] = ACTIONS(4572), + [sym__unclosed_span] = ACTIONS(4572), + }, + [STATE(1220)] = { + [sym__backslash_escape] = ACTIONS(4558), + [sym_entity_reference] = ACTIONS(4558), + [sym_numeric_character_reference] = ACTIONS(4558), + [anon_sym_LT] = ACTIONS(4560), + [anon_sym_GT] = ACTIONS(4558), + [anon_sym_BANG] = ACTIONS(4558), + [anon_sym_DQUOTE] = ACTIONS(4558), + [anon_sym_POUND] = ACTIONS(4558), + [anon_sym_DOLLAR] = ACTIONS(4558), + [anon_sym_PERCENT] = ACTIONS(4558), + [anon_sym_AMP] = ACTIONS(4560), + [anon_sym_SQUOTE] = ACTIONS(4558), + [anon_sym_STAR] = ACTIONS(4558), + [anon_sym_PLUS] = ACTIONS(4558), + [anon_sym_COMMA] = ACTIONS(4558), + [anon_sym_DASH] = ACTIONS(4560), + [anon_sym_DOT] = ACTIONS(4560), + [anon_sym_SLASH] = ACTIONS(4558), + [anon_sym_COLON] = ACTIONS(4558), + [anon_sym_SEMI] = ACTIONS(4558), + [anon_sym_EQ] = ACTIONS(4558), + [anon_sym_QMARK] = ACTIONS(4558), + [anon_sym_LBRACK] = ACTIONS(4560), + [anon_sym_BSLASH] = ACTIONS(4560), + [anon_sym_CARET] = ACTIONS(4560), + [anon_sym__] = ACTIONS(4558), + [anon_sym_BQUOTE] = ACTIONS(4558), + [anon_sym_LBRACE] = ACTIONS(4558), + [anon_sym_PIPE] = ACTIONS(4558), + [anon_sym_TILDE] = ACTIONS(4558), + [anon_sym_LPAREN] = ACTIONS(4558), + [anon_sym_RPAREN] = ACTIONS(4558), + [sym__newline_token] = ACTIONS(4558), + [aux_sym_insert_token1] = ACTIONS(4558), + [aux_sym_delete_token1] = ACTIONS(4558), + [aux_sym_highlight_token1] = ACTIONS(4558), + [aux_sym_edit_comment_token1] = ACTIONS(4558), + [anon_sym_CARET_LBRACK] = ACTIONS(4558), + [anon_sym_LBRACK_CARET] = ACTIONS(4558), + [sym_uri_autolink] = ACTIONS(4558), + [sym_email_autolink] = ACTIONS(4558), + [sym__whitespace_ge_2] = ACTIONS(4558), + [aux_sym__whitespace_token1] = ACTIONS(4560), + [sym__word_no_digit] = ACTIONS(4558), + [sym__digits] = ACTIONS(4558), + [anon_sym_DASH_DASH] = ACTIONS(4560), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4558), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4558), + [sym__code_span_start] = ACTIONS(4558), + [sym__emphasis_open_star] = ACTIONS(4558), + [sym__emphasis_open_underscore] = ACTIONS(4558), + [sym__strikeout_open] = ACTIONS(4558), + [sym__latex_span_start] = ACTIONS(4558), + [sym__single_quote_open] = ACTIONS(4558), + [sym__single_quote_close] = ACTIONS(4558), + [sym__double_quote_open] = ACTIONS(4558), + [sym__superscript_open] = ACTIONS(4558), + [sym__subscript_open] = ACTIONS(4558), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4558), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4558), + [sym__cite_author_in_text] = ACTIONS(4558), + [sym__cite_suppress_author] = ACTIONS(4558), + [sym__shortcode_open_escaped] = ACTIONS(4558), + [sym__shortcode_open] = ACTIONS(4558), + [sym__unclosed_span] = ACTIONS(4558), + }, + [STATE(1221)] = { + [ts_builtin_sym_end] = ACTIONS(4860), + [sym__backslash_escape] = ACTIONS(4860), + [sym_entity_reference] = ACTIONS(4860), + [sym_numeric_character_reference] = ACTIONS(4860), + [anon_sym_LT] = ACTIONS(4862), + [anon_sym_GT] = ACTIONS(4860), + [anon_sym_BANG] = ACTIONS(4860), + [anon_sym_DQUOTE] = ACTIONS(4860), + [anon_sym_POUND] = ACTIONS(4860), + [anon_sym_DOLLAR] = ACTIONS(4860), + [anon_sym_PERCENT] = ACTIONS(4860), + [anon_sym_AMP] = ACTIONS(4862), + [anon_sym_SQUOTE] = ACTIONS(4860), + [anon_sym_STAR] = ACTIONS(4860), + [anon_sym_PLUS] = ACTIONS(4860), + [anon_sym_COMMA] = ACTIONS(4860), + [anon_sym_DASH] = ACTIONS(4862), + [anon_sym_DOT] = ACTIONS(4862), + [anon_sym_SLASH] = ACTIONS(4860), + [anon_sym_COLON] = ACTIONS(4860), + [anon_sym_SEMI] = ACTIONS(4860), + [anon_sym_EQ] = ACTIONS(4860), + [anon_sym_QMARK] = ACTIONS(4860), + [anon_sym_LBRACK] = ACTIONS(4862), + [anon_sym_BSLASH] = ACTIONS(4862), + [anon_sym_CARET] = ACTIONS(4862), + [anon_sym__] = ACTIONS(4860), + [anon_sym_BQUOTE] = ACTIONS(4860), + [anon_sym_LBRACE] = ACTIONS(4860), + [anon_sym_PIPE] = ACTIONS(4860), + [anon_sym_TILDE] = ACTIONS(4860), + [anon_sym_LPAREN] = ACTIONS(4860), + [anon_sym_RPAREN] = ACTIONS(4860), + [sym__newline_token] = ACTIONS(4860), + [aux_sym_insert_token1] = ACTIONS(4860), + [aux_sym_delete_token1] = ACTIONS(4860), + [aux_sym_highlight_token1] = ACTIONS(4860), + [aux_sym_edit_comment_token1] = ACTIONS(4860), + [anon_sym_CARET_LBRACK] = ACTIONS(4860), + [anon_sym_LBRACK_CARET] = ACTIONS(4860), + [sym_uri_autolink] = ACTIONS(4860), + [sym_email_autolink] = ACTIONS(4860), + [sym__whitespace_ge_2] = ACTIONS(4860), + [aux_sym__whitespace_token1] = ACTIONS(4862), + [sym__word_no_digit] = ACTIONS(4860), + [sym__digits] = ACTIONS(4860), + [anon_sym_DASH_DASH] = ACTIONS(4862), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4860), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4860), + [sym__code_span_start] = ACTIONS(4860), + [sym__emphasis_open_star] = ACTIONS(4860), + [sym__emphasis_open_underscore] = ACTIONS(4860), + [sym__strikeout_open] = ACTIONS(4860), + [sym__latex_span_start] = ACTIONS(4860), + [sym__single_quote_open] = ACTIONS(4860), + [sym__double_quote_open] = ACTIONS(4860), + [sym__superscript_open] = ACTIONS(4860), + [sym__subscript_open] = ACTIONS(4860), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4860), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4860), + [sym__cite_author_in_text] = ACTIONS(4860), + [sym__cite_suppress_author] = ACTIONS(4860), + [sym__shortcode_open_escaped] = ACTIONS(4860), + [sym__shortcode_open] = ACTIONS(4860), + [sym__unclosed_span] = ACTIONS(4860), + }, + [STATE(1222)] = { + [ts_builtin_sym_end] = ACTIONS(4864), + [sym__backslash_escape] = ACTIONS(4864), + [sym_entity_reference] = ACTIONS(4864), + [sym_numeric_character_reference] = ACTIONS(4864), + [anon_sym_LT] = ACTIONS(4866), + [anon_sym_GT] = ACTIONS(4864), + [anon_sym_BANG] = ACTIONS(4864), + [anon_sym_DQUOTE] = ACTIONS(4864), + [anon_sym_POUND] = ACTIONS(4864), + [anon_sym_DOLLAR] = ACTIONS(4864), + [anon_sym_PERCENT] = ACTIONS(4864), + [anon_sym_AMP] = ACTIONS(4866), + [anon_sym_SQUOTE] = ACTIONS(4864), + [anon_sym_STAR] = ACTIONS(4864), + [anon_sym_PLUS] = ACTIONS(4864), + [anon_sym_COMMA] = ACTIONS(4864), + [anon_sym_DASH] = ACTIONS(4866), + [anon_sym_DOT] = ACTIONS(4866), + [anon_sym_SLASH] = ACTIONS(4864), + [anon_sym_COLON] = ACTIONS(4864), + [anon_sym_SEMI] = ACTIONS(4864), + [anon_sym_EQ] = ACTIONS(4864), + [anon_sym_QMARK] = ACTIONS(4864), + [anon_sym_LBRACK] = ACTIONS(4866), + [anon_sym_BSLASH] = ACTIONS(4866), + [anon_sym_CARET] = ACTIONS(4866), + [anon_sym__] = ACTIONS(4864), + [anon_sym_BQUOTE] = ACTIONS(4864), + [anon_sym_LBRACE] = ACTIONS(4864), + [anon_sym_PIPE] = ACTIONS(4864), + [anon_sym_TILDE] = ACTIONS(4864), + [anon_sym_LPAREN] = ACTIONS(4864), + [anon_sym_RPAREN] = ACTIONS(4864), + [sym__newline_token] = ACTIONS(4864), + [aux_sym_insert_token1] = ACTIONS(4864), + [aux_sym_delete_token1] = ACTIONS(4864), + [aux_sym_highlight_token1] = ACTIONS(4864), + [aux_sym_edit_comment_token1] = ACTIONS(4864), + [anon_sym_CARET_LBRACK] = ACTIONS(4864), + [anon_sym_LBRACK_CARET] = ACTIONS(4864), + [sym_uri_autolink] = ACTIONS(4864), + [sym_email_autolink] = ACTIONS(4864), + [sym__whitespace_ge_2] = ACTIONS(4864), + [aux_sym__whitespace_token1] = ACTIONS(4866), + [sym__word_no_digit] = ACTIONS(4864), + [sym__digits] = ACTIONS(4864), + [anon_sym_DASH_DASH] = ACTIONS(4866), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4864), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4864), + [sym__code_span_start] = ACTIONS(4864), + [sym__emphasis_open_star] = ACTIONS(4864), + [sym__emphasis_open_underscore] = ACTIONS(4864), + [sym__strikeout_open] = ACTIONS(4864), + [sym__latex_span_start] = ACTIONS(4864), + [sym__single_quote_open] = ACTIONS(4864), + [sym__double_quote_open] = ACTIONS(4864), + [sym__superscript_open] = ACTIONS(4864), + [sym__subscript_open] = ACTIONS(4864), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4864), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4864), + [sym__cite_author_in_text] = ACTIONS(4864), + [sym__cite_suppress_author] = ACTIONS(4864), + [sym__shortcode_open_escaped] = ACTIONS(4864), + [sym__shortcode_open] = ACTIONS(4864), + [sym__unclosed_span] = ACTIONS(4864), + }, + [STATE(1223)] = { + [ts_builtin_sym_end] = ACTIONS(4868), + [sym__backslash_escape] = ACTIONS(4868), + [sym_entity_reference] = ACTIONS(4868), + [sym_numeric_character_reference] = ACTIONS(4868), + [anon_sym_LT] = ACTIONS(4870), + [anon_sym_GT] = ACTIONS(4868), + [anon_sym_BANG] = ACTIONS(4868), + [anon_sym_DQUOTE] = ACTIONS(4868), + [anon_sym_POUND] = ACTIONS(4868), + [anon_sym_DOLLAR] = ACTIONS(4868), + [anon_sym_PERCENT] = ACTIONS(4868), + [anon_sym_AMP] = ACTIONS(4870), + [anon_sym_SQUOTE] = ACTIONS(4868), + [anon_sym_STAR] = ACTIONS(4868), + [anon_sym_PLUS] = ACTIONS(4868), + [anon_sym_COMMA] = ACTIONS(4868), + [anon_sym_DASH] = ACTIONS(4870), + [anon_sym_DOT] = ACTIONS(4870), + [anon_sym_SLASH] = ACTIONS(4868), + [anon_sym_COLON] = ACTIONS(4868), + [anon_sym_SEMI] = ACTIONS(4868), + [anon_sym_EQ] = ACTIONS(4868), + [anon_sym_QMARK] = ACTIONS(4868), + [anon_sym_LBRACK] = ACTIONS(4870), + [anon_sym_BSLASH] = ACTIONS(4870), + [anon_sym_CARET] = ACTIONS(4870), + [anon_sym__] = ACTIONS(4868), + [anon_sym_BQUOTE] = ACTIONS(4868), + [anon_sym_LBRACE] = ACTIONS(4868), + [anon_sym_PIPE] = ACTIONS(4868), + [anon_sym_TILDE] = ACTIONS(4868), + [anon_sym_LPAREN] = ACTIONS(4868), + [anon_sym_RPAREN] = ACTIONS(4868), + [sym__newline_token] = ACTIONS(4868), + [aux_sym_insert_token1] = ACTIONS(4868), + [aux_sym_delete_token1] = ACTIONS(4868), + [aux_sym_highlight_token1] = ACTIONS(4868), + [aux_sym_edit_comment_token1] = ACTIONS(4868), + [anon_sym_CARET_LBRACK] = ACTIONS(4868), + [anon_sym_LBRACK_CARET] = ACTIONS(4868), + [sym_uri_autolink] = ACTIONS(4868), + [sym_email_autolink] = ACTIONS(4868), + [sym__whitespace_ge_2] = ACTIONS(4868), + [aux_sym__whitespace_token1] = ACTIONS(4870), + [sym__word_no_digit] = ACTIONS(4868), + [sym__digits] = ACTIONS(4868), + [anon_sym_DASH_DASH] = ACTIONS(4870), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4868), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4868), + [sym__code_span_start] = ACTIONS(4868), + [sym__emphasis_open_star] = ACTIONS(4868), + [sym__emphasis_open_underscore] = ACTIONS(4868), + [sym__strikeout_open] = ACTIONS(4868), + [sym__latex_span_start] = ACTIONS(4868), + [sym__single_quote_open] = ACTIONS(4868), + [sym__double_quote_open] = ACTIONS(4868), + [sym__superscript_open] = ACTIONS(4868), + [sym__subscript_open] = ACTIONS(4868), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4868), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4868), + [sym__cite_author_in_text] = ACTIONS(4868), + [sym__cite_suppress_author] = ACTIONS(4868), + [sym__shortcode_open_escaped] = ACTIONS(4868), + [sym__shortcode_open] = ACTIONS(4868), + [sym__unclosed_span] = ACTIONS(4868), + }, + [STATE(1224)] = { + [ts_builtin_sym_end] = ACTIONS(4872), + [sym__backslash_escape] = ACTIONS(4872), + [sym_entity_reference] = ACTIONS(4872), + [sym_numeric_character_reference] = ACTIONS(4872), + [anon_sym_LT] = ACTIONS(4874), + [anon_sym_GT] = ACTIONS(4872), + [anon_sym_BANG] = ACTIONS(4872), + [anon_sym_DQUOTE] = ACTIONS(4872), + [anon_sym_POUND] = ACTIONS(4872), + [anon_sym_DOLLAR] = ACTIONS(4872), + [anon_sym_PERCENT] = ACTIONS(4872), + [anon_sym_AMP] = ACTIONS(4874), + [anon_sym_SQUOTE] = ACTIONS(4872), + [anon_sym_STAR] = ACTIONS(4872), + [anon_sym_PLUS] = ACTIONS(4872), + [anon_sym_COMMA] = ACTIONS(4872), + [anon_sym_DASH] = ACTIONS(4874), + [anon_sym_DOT] = ACTIONS(4874), + [anon_sym_SLASH] = ACTIONS(4872), + [anon_sym_COLON] = ACTIONS(4872), + [anon_sym_SEMI] = ACTIONS(4872), + [anon_sym_EQ] = ACTIONS(4872), + [anon_sym_QMARK] = ACTIONS(4872), + [anon_sym_LBRACK] = ACTIONS(4874), + [anon_sym_BSLASH] = ACTIONS(4874), + [anon_sym_CARET] = ACTIONS(4874), + [anon_sym__] = ACTIONS(4872), + [anon_sym_BQUOTE] = ACTIONS(4872), + [anon_sym_LBRACE] = ACTIONS(4872), + [anon_sym_PIPE] = ACTIONS(4872), + [anon_sym_TILDE] = ACTIONS(4872), + [anon_sym_LPAREN] = ACTIONS(4872), + [anon_sym_RPAREN] = ACTIONS(4872), + [sym__newline_token] = ACTIONS(4872), + [aux_sym_insert_token1] = ACTIONS(4872), + [aux_sym_delete_token1] = ACTIONS(4872), + [aux_sym_highlight_token1] = ACTIONS(4872), + [aux_sym_edit_comment_token1] = ACTIONS(4872), + [anon_sym_CARET_LBRACK] = ACTIONS(4872), + [anon_sym_LBRACK_CARET] = ACTIONS(4872), + [sym_uri_autolink] = ACTIONS(4872), + [sym_email_autolink] = ACTIONS(4872), + [sym__whitespace_ge_2] = ACTIONS(4872), + [aux_sym__whitespace_token1] = ACTIONS(4874), + [sym__word_no_digit] = ACTIONS(4872), + [sym__digits] = ACTIONS(4872), + [anon_sym_DASH_DASH] = ACTIONS(4874), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4872), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4872), + [sym__code_span_start] = ACTIONS(4872), + [sym__emphasis_open_star] = ACTIONS(4872), + [sym__emphasis_open_underscore] = ACTIONS(4872), + [sym__strikeout_open] = ACTIONS(4872), + [sym__latex_span_start] = ACTIONS(4872), + [sym__single_quote_open] = ACTIONS(4872), + [sym__double_quote_open] = ACTIONS(4872), + [sym__superscript_open] = ACTIONS(4872), + [sym__subscript_open] = ACTIONS(4872), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4872), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4872), + [sym__cite_author_in_text] = ACTIONS(4872), + [sym__cite_suppress_author] = ACTIONS(4872), + [sym__shortcode_open_escaped] = ACTIONS(4872), + [sym__shortcode_open] = ACTIONS(4872), + [sym__unclosed_span] = ACTIONS(4872), + }, + [STATE(1225)] = { + [ts_builtin_sym_end] = ACTIONS(4876), + [sym__backslash_escape] = ACTIONS(4876), + [sym_entity_reference] = ACTIONS(4876), + [sym_numeric_character_reference] = ACTIONS(4876), + [anon_sym_LT] = ACTIONS(4878), + [anon_sym_GT] = ACTIONS(4876), + [anon_sym_BANG] = ACTIONS(4876), + [anon_sym_DQUOTE] = ACTIONS(4876), + [anon_sym_POUND] = ACTIONS(4876), + [anon_sym_DOLLAR] = ACTIONS(4876), + [anon_sym_PERCENT] = ACTIONS(4876), + [anon_sym_AMP] = ACTIONS(4878), + [anon_sym_SQUOTE] = ACTIONS(4876), + [anon_sym_STAR] = ACTIONS(4876), + [anon_sym_PLUS] = ACTIONS(4876), + [anon_sym_COMMA] = ACTIONS(4876), + [anon_sym_DASH] = ACTIONS(4878), + [anon_sym_DOT] = ACTIONS(4878), + [anon_sym_SLASH] = ACTIONS(4876), + [anon_sym_COLON] = ACTIONS(4876), + [anon_sym_SEMI] = ACTIONS(4876), + [anon_sym_EQ] = ACTIONS(4876), + [anon_sym_QMARK] = ACTIONS(4876), + [anon_sym_LBRACK] = ACTIONS(4878), + [anon_sym_BSLASH] = ACTIONS(4878), + [anon_sym_CARET] = ACTIONS(4878), + [anon_sym__] = ACTIONS(4876), + [anon_sym_BQUOTE] = ACTIONS(4876), + [anon_sym_LBRACE] = ACTIONS(4876), + [anon_sym_PIPE] = ACTIONS(4876), + [anon_sym_TILDE] = ACTIONS(4876), + [anon_sym_LPAREN] = ACTIONS(4876), + [anon_sym_RPAREN] = ACTIONS(4876), + [sym__newline_token] = ACTIONS(4876), + [aux_sym_insert_token1] = ACTIONS(4876), + [aux_sym_delete_token1] = ACTIONS(4876), + [aux_sym_highlight_token1] = ACTIONS(4876), + [aux_sym_edit_comment_token1] = ACTIONS(4876), + [anon_sym_CARET_LBRACK] = ACTIONS(4876), + [anon_sym_LBRACK_CARET] = ACTIONS(4876), + [sym_uri_autolink] = ACTIONS(4876), + [sym_email_autolink] = ACTIONS(4876), + [sym__whitespace_ge_2] = ACTIONS(4876), + [aux_sym__whitespace_token1] = ACTIONS(4878), + [sym__word_no_digit] = ACTIONS(4876), + [sym__digits] = ACTIONS(4876), + [anon_sym_DASH_DASH] = ACTIONS(4878), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4876), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4876), + [sym__code_span_start] = ACTIONS(4876), + [sym__emphasis_open_star] = ACTIONS(4876), + [sym__emphasis_open_underscore] = ACTIONS(4876), + [sym__strikeout_open] = ACTIONS(4876), + [sym__latex_span_start] = ACTIONS(4876), + [sym__single_quote_open] = ACTIONS(4876), + [sym__double_quote_open] = ACTIONS(4876), + [sym__superscript_open] = ACTIONS(4876), + [sym__subscript_open] = ACTIONS(4876), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4876), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4876), + [sym__cite_author_in_text] = ACTIONS(4876), + [sym__cite_suppress_author] = ACTIONS(4876), + [sym__shortcode_open_escaped] = ACTIONS(4876), + [sym__shortcode_open] = ACTIONS(4876), + [sym__unclosed_span] = ACTIONS(4876), + }, + [STATE(1226)] = { + [ts_builtin_sym_end] = ACTIONS(4588), + [sym__backslash_escape] = ACTIONS(4588), + [sym_entity_reference] = ACTIONS(4588), + [sym_numeric_character_reference] = ACTIONS(4588), + [anon_sym_LT] = ACTIONS(4590), + [anon_sym_GT] = ACTIONS(4588), + [anon_sym_BANG] = ACTIONS(4588), + [anon_sym_DQUOTE] = ACTIONS(4588), + [anon_sym_POUND] = ACTIONS(4588), + [anon_sym_DOLLAR] = ACTIONS(4588), + [anon_sym_PERCENT] = ACTIONS(4588), + [anon_sym_AMP] = ACTIONS(4590), + [anon_sym_SQUOTE] = ACTIONS(4588), + [anon_sym_STAR] = ACTIONS(4588), + [anon_sym_PLUS] = ACTIONS(4588), + [anon_sym_COMMA] = ACTIONS(4588), + [anon_sym_DASH] = ACTIONS(4590), + [anon_sym_DOT] = ACTIONS(4590), + [anon_sym_SLASH] = ACTIONS(4588), + [anon_sym_COLON] = ACTIONS(4588), + [anon_sym_SEMI] = ACTIONS(4588), + [anon_sym_EQ] = ACTIONS(4588), + [anon_sym_QMARK] = ACTIONS(4588), + [anon_sym_LBRACK] = ACTIONS(4590), + [anon_sym_BSLASH] = ACTIONS(4590), + [anon_sym_CARET] = ACTIONS(4590), + [anon_sym__] = ACTIONS(4588), + [anon_sym_BQUOTE] = ACTIONS(4588), + [anon_sym_LBRACE] = ACTIONS(4588), + [anon_sym_PIPE] = ACTIONS(4588), + [anon_sym_TILDE] = ACTIONS(4588), + [anon_sym_LPAREN] = ACTIONS(4588), + [anon_sym_RPAREN] = ACTIONS(4588), + [sym__newline_token] = ACTIONS(4588), + [aux_sym_insert_token1] = ACTIONS(4588), + [aux_sym_delete_token1] = ACTIONS(4588), + [aux_sym_highlight_token1] = ACTIONS(4588), + [aux_sym_edit_comment_token1] = ACTIONS(4588), + [anon_sym_CARET_LBRACK] = ACTIONS(4588), + [anon_sym_LBRACK_CARET] = ACTIONS(4588), + [sym_uri_autolink] = ACTIONS(4588), + [sym_email_autolink] = ACTIONS(4588), + [sym__whitespace_ge_2] = ACTIONS(4588), + [aux_sym__whitespace_token1] = ACTIONS(4590), + [sym__word_no_digit] = ACTIONS(4588), + [sym__digits] = ACTIONS(4588), + [anon_sym_DASH_DASH] = ACTIONS(4590), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4588), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4588), + [sym__code_span_start] = ACTIONS(4588), + [sym__emphasis_open_star] = ACTIONS(4588), + [sym__emphasis_open_underscore] = ACTIONS(4588), + [sym__strikeout_open] = ACTIONS(4588), + [sym__latex_span_start] = ACTIONS(4588), + [sym__single_quote_open] = ACTIONS(4588), + [sym__double_quote_open] = ACTIONS(4588), + [sym__superscript_open] = ACTIONS(4588), + [sym__subscript_open] = ACTIONS(4588), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4588), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4588), + [sym__cite_author_in_text] = ACTIONS(4588), + [sym__cite_suppress_author] = ACTIONS(4588), + [sym__shortcode_open_escaped] = ACTIONS(4588), + [sym__shortcode_open] = ACTIONS(4588), + [sym__unclosed_span] = ACTIONS(4588), + }, + [STATE(1227)] = { + [sym__backslash_escape] = ACTIONS(4828), + [sym_entity_reference] = ACTIONS(4828), + [sym_numeric_character_reference] = ACTIONS(4828), + [anon_sym_LT] = ACTIONS(4830), + [anon_sym_GT] = ACTIONS(4828), + [anon_sym_BANG] = ACTIONS(4828), + [anon_sym_DQUOTE] = ACTIONS(4828), + [anon_sym_POUND] = ACTIONS(4828), + [anon_sym_DOLLAR] = ACTIONS(4828), + [anon_sym_PERCENT] = ACTIONS(4828), + [anon_sym_AMP] = ACTIONS(4830), + [anon_sym_SQUOTE] = ACTIONS(4828), + [anon_sym_STAR] = ACTIONS(4828), + [anon_sym_PLUS] = ACTIONS(4828), + [anon_sym_COMMA] = ACTIONS(4828), + [anon_sym_DASH] = ACTIONS(4830), + [anon_sym_DOT] = ACTIONS(4830), + [anon_sym_SLASH] = ACTIONS(4828), + [anon_sym_COLON] = ACTIONS(4828), + [anon_sym_SEMI] = ACTIONS(4828), + [anon_sym_EQ] = ACTIONS(4828), + [anon_sym_QMARK] = ACTIONS(4828), + [anon_sym_LBRACK] = ACTIONS(4830), + [anon_sym_BSLASH] = ACTIONS(4830), + [anon_sym_CARET] = ACTIONS(4830), + [anon_sym__] = ACTIONS(4828), + [anon_sym_BQUOTE] = ACTIONS(4828), + [anon_sym_LBRACE] = ACTIONS(4828), + [anon_sym_PIPE] = ACTIONS(4828), + [anon_sym_TILDE] = ACTIONS(4828), + [anon_sym_LPAREN] = ACTIONS(4828), + [anon_sym_RPAREN] = ACTIONS(4828), + [sym__newline_token] = ACTIONS(4828), + [aux_sym_insert_token1] = ACTIONS(4828), + [aux_sym_delete_token1] = ACTIONS(4828), + [aux_sym_highlight_token1] = ACTIONS(4828), + [aux_sym_edit_comment_token1] = ACTIONS(4828), + [anon_sym_CARET_LBRACK] = ACTIONS(4828), + [anon_sym_LBRACK_CARET] = ACTIONS(4828), + [sym_uri_autolink] = ACTIONS(4828), + [sym_email_autolink] = ACTIONS(4828), + [sym__whitespace_ge_2] = ACTIONS(4828), + [aux_sym__whitespace_token1] = ACTIONS(4830), + [sym__word_no_digit] = ACTIONS(4828), + [sym__digits] = ACTIONS(4828), + [anon_sym_DASH_DASH] = ACTIONS(4830), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4828), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4828), + [sym__code_span_start] = ACTIONS(4828), + [sym__emphasis_open_star] = ACTIONS(4828), + [sym__emphasis_open_underscore] = ACTIONS(4828), + [sym__emphasis_close_underscore] = ACTIONS(4828), + [sym__strikeout_open] = ACTIONS(4828), + [sym__latex_span_start] = ACTIONS(4828), + [sym__single_quote_open] = ACTIONS(4828), + [sym__double_quote_open] = ACTIONS(4828), + [sym__superscript_open] = ACTIONS(4828), + [sym__subscript_open] = ACTIONS(4828), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4828), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4828), + [sym__cite_author_in_text] = ACTIONS(4828), + [sym__cite_suppress_author] = ACTIONS(4828), + [sym__shortcode_open_escaped] = ACTIONS(4828), + [sym__shortcode_open] = ACTIONS(4828), + [sym__unclosed_span] = ACTIONS(4828), + }, + [STATE(1228)] = { + [ts_builtin_sym_end] = ACTIONS(4540), + [sym__backslash_escape] = ACTIONS(4540), + [sym_entity_reference] = ACTIONS(4540), + [sym_numeric_character_reference] = ACTIONS(4540), + [anon_sym_LT] = ACTIONS(4542), + [anon_sym_GT] = ACTIONS(4540), + [anon_sym_BANG] = ACTIONS(4540), + [anon_sym_DQUOTE] = ACTIONS(4540), + [anon_sym_POUND] = ACTIONS(4540), + [anon_sym_DOLLAR] = ACTIONS(4540), + [anon_sym_PERCENT] = ACTIONS(4540), + [anon_sym_AMP] = ACTIONS(4542), + [anon_sym_SQUOTE] = ACTIONS(4540), + [anon_sym_STAR] = ACTIONS(4540), + [anon_sym_PLUS] = ACTIONS(4540), + [anon_sym_COMMA] = ACTIONS(4540), + [anon_sym_DASH] = ACTIONS(4542), + [anon_sym_DOT] = ACTIONS(4542), + [anon_sym_SLASH] = ACTIONS(4540), + [anon_sym_COLON] = ACTIONS(4540), + [anon_sym_SEMI] = ACTIONS(4540), + [anon_sym_EQ] = ACTIONS(4540), + [anon_sym_QMARK] = ACTIONS(4540), + [anon_sym_LBRACK] = ACTIONS(4542), + [anon_sym_BSLASH] = ACTIONS(4542), + [anon_sym_CARET] = ACTIONS(4542), + [anon_sym__] = ACTIONS(4540), + [anon_sym_BQUOTE] = ACTIONS(4540), + [anon_sym_LBRACE] = ACTIONS(4540), + [anon_sym_PIPE] = ACTIONS(4540), + [anon_sym_TILDE] = ACTIONS(4540), + [anon_sym_LPAREN] = ACTIONS(4540), + [anon_sym_RPAREN] = ACTIONS(4540), + [sym__newline_token] = ACTIONS(4540), + [aux_sym_insert_token1] = ACTIONS(4540), + [aux_sym_delete_token1] = ACTIONS(4540), + [aux_sym_highlight_token1] = ACTIONS(4540), + [aux_sym_edit_comment_token1] = ACTIONS(4540), + [anon_sym_CARET_LBRACK] = ACTIONS(4540), + [anon_sym_LBRACK_CARET] = ACTIONS(4540), + [sym_uri_autolink] = ACTIONS(4540), + [sym_email_autolink] = ACTIONS(4540), + [sym__whitespace_ge_2] = ACTIONS(4540), + [aux_sym__whitespace_token1] = ACTIONS(4542), + [sym__word_no_digit] = ACTIONS(4540), + [sym__digits] = ACTIONS(4540), + [anon_sym_DASH_DASH] = ACTIONS(4542), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4540), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4540), + [sym__code_span_start] = ACTIONS(4540), + [sym__emphasis_open_star] = ACTIONS(4540), + [sym__emphasis_open_underscore] = ACTIONS(4540), + [sym__strikeout_open] = ACTIONS(4540), + [sym__latex_span_start] = ACTIONS(4540), + [sym__single_quote_open] = ACTIONS(4540), + [sym__double_quote_open] = ACTIONS(4540), + [sym__superscript_open] = ACTIONS(4540), + [sym__subscript_open] = ACTIONS(4540), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4540), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4540), + [sym__cite_author_in_text] = ACTIONS(4540), + [sym__cite_suppress_author] = ACTIONS(4540), + [sym__shortcode_open_escaped] = ACTIONS(4540), + [sym__shortcode_open] = ACTIONS(4540), + [sym__unclosed_span] = ACTIONS(4540), + }, + [STATE(1229)] = { + [sym__backslash_escape] = ACTIONS(4562), + [sym_entity_reference] = ACTIONS(4562), + [sym_numeric_character_reference] = ACTIONS(4562), + [anon_sym_LT] = ACTIONS(4564), + [anon_sym_GT] = ACTIONS(4562), + [anon_sym_BANG] = ACTIONS(4562), + [anon_sym_DQUOTE] = ACTIONS(4562), + [anon_sym_POUND] = ACTIONS(4562), + [anon_sym_DOLLAR] = ACTIONS(4562), + [anon_sym_PERCENT] = ACTIONS(4562), + [anon_sym_AMP] = ACTIONS(4564), + [anon_sym_SQUOTE] = ACTIONS(4562), + [anon_sym_STAR] = ACTIONS(4562), + [anon_sym_PLUS] = ACTIONS(4562), + [anon_sym_COMMA] = ACTIONS(4562), + [anon_sym_DASH] = ACTIONS(4564), + [anon_sym_DOT] = ACTIONS(4564), + [anon_sym_SLASH] = ACTIONS(4562), + [anon_sym_COLON] = ACTIONS(4562), + [anon_sym_SEMI] = ACTIONS(4562), + [anon_sym_EQ] = ACTIONS(4562), + [anon_sym_QMARK] = ACTIONS(4562), + [anon_sym_LBRACK] = ACTIONS(4564), + [anon_sym_BSLASH] = ACTIONS(4564), + [anon_sym_CARET] = ACTIONS(4564), + [anon_sym__] = ACTIONS(4562), + [anon_sym_BQUOTE] = ACTIONS(4562), + [anon_sym_LBRACE] = ACTIONS(4562), + [anon_sym_PIPE] = ACTIONS(4562), + [anon_sym_TILDE] = ACTIONS(4562), + [anon_sym_LPAREN] = ACTIONS(4562), + [anon_sym_RPAREN] = ACTIONS(4562), + [sym__newline_token] = ACTIONS(4562), + [aux_sym_insert_token1] = ACTIONS(4562), + [aux_sym_delete_token1] = ACTIONS(4562), + [aux_sym_highlight_token1] = ACTIONS(4562), + [aux_sym_edit_comment_token1] = ACTIONS(4562), + [anon_sym_CARET_LBRACK] = ACTIONS(4562), + [anon_sym_LBRACK_CARET] = ACTIONS(4562), + [sym_uri_autolink] = ACTIONS(4562), + [sym_email_autolink] = ACTIONS(4562), + [sym__whitespace_ge_2] = ACTIONS(4562), + [aux_sym__whitespace_token1] = ACTIONS(4564), + [sym__word_no_digit] = ACTIONS(4562), + [sym__digits] = ACTIONS(4562), + [anon_sym_DASH_DASH] = ACTIONS(4564), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4562), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4562), + [sym__code_span_start] = ACTIONS(4562), + [sym__emphasis_open_star] = ACTIONS(4562), + [sym__emphasis_open_underscore] = ACTIONS(4562), + [sym__strikeout_open] = ACTIONS(4562), + [sym__latex_span_start] = ACTIONS(4562), + [sym__single_quote_open] = ACTIONS(4562), + [sym__single_quote_close] = ACTIONS(4562), + [sym__double_quote_open] = ACTIONS(4562), + [sym__superscript_open] = ACTIONS(4562), + [sym__subscript_open] = ACTIONS(4562), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4562), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4562), + [sym__cite_author_in_text] = ACTIONS(4562), + [sym__cite_suppress_author] = ACTIONS(4562), + [sym__shortcode_open_escaped] = ACTIONS(4562), + [sym__shortcode_open] = ACTIONS(4562), + [sym__unclosed_span] = ACTIONS(4562), + }, + [STATE(1230)] = { + [sym__backslash_escape] = ACTIONS(4832), + [sym_entity_reference] = ACTIONS(4832), + [sym_numeric_character_reference] = ACTIONS(4832), + [anon_sym_LT] = ACTIONS(4834), + [anon_sym_GT] = ACTIONS(4832), + [anon_sym_BANG] = ACTIONS(4832), + [anon_sym_DQUOTE] = ACTIONS(4832), + [anon_sym_POUND] = ACTIONS(4832), + [anon_sym_DOLLAR] = ACTIONS(4832), + [anon_sym_PERCENT] = ACTIONS(4832), + [anon_sym_AMP] = ACTIONS(4834), + [anon_sym_SQUOTE] = ACTIONS(4832), + [anon_sym_STAR] = ACTIONS(4832), + [anon_sym_PLUS] = ACTIONS(4832), + [anon_sym_COMMA] = ACTIONS(4832), + [anon_sym_DASH] = ACTIONS(4834), + [anon_sym_DOT] = ACTIONS(4834), + [anon_sym_SLASH] = ACTIONS(4832), + [anon_sym_COLON] = ACTIONS(4832), + [anon_sym_SEMI] = ACTIONS(4832), + [anon_sym_EQ] = ACTIONS(4832), + [anon_sym_QMARK] = ACTIONS(4832), + [anon_sym_LBRACK] = ACTIONS(4834), + [anon_sym_BSLASH] = ACTIONS(4834), + [anon_sym_CARET] = ACTIONS(4834), + [anon_sym__] = ACTIONS(4832), + [anon_sym_BQUOTE] = ACTIONS(4832), + [anon_sym_LBRACE] = ACTIONS(4832), + [anon_sym_PIPE] = ACTIONS(4832), + [anon_sym_TILDE] = ACTIONS(4832), + [anon_sym_LPAREN] = ACTIONS(4832), + [anon_sym_RPAREN] = ACTIONS(4832), + [sym__newline_token] = ACTIONS(4832), + [aux_sym_insert_token1] = ACTIONS(4832), + [aux_sym_delete_token1] = ACTIONS(4832), + [aux_sym_highlight_token1] = ACTIONS(4832), + [aux_sym_edit_comment_token1] = ACTIONS(4832), + [anon_sym_CARET_LBRACK] = ACTIONS(4832), + [anon_sym_LBRACK_CARET] = ACTIONS(4832), + [sym_uri_autolink] = ACTIONS(4832), + [sym_email_autolink] = ACTIONS(4832), + [sym__whitespace_ge_2] = ACTIONS(4832), + [aux_sym__whitespace_token1] = ACTIONS(4834), + [sym__word_no_digit] = ACTIONS(4832), + [sym__digits] = ACTIONS(4832), + [anon_sym_DASH_DASH] = ACTIONS(4834), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4832), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4832), + [sym__code_span_start] = ACTIONS(4832), + [sym__emphasis_open_star] = ACTIONS(4832), + [sym__emphasis_open_underscore] = ACTIONS(4832), + [sym__emphasis_close_underscore] = ACTIONS(4832), + [sym__strikeout_open] = ACTIONS(4832), + [sym__latex_span_start] = ACTIONS(4832), + [sym__single_quote_open] = ACTIONS(4832), + [sym__double_quote_open] = ACTIONS(4832), + [sym__superscript_open] = ACTIONS(4832), + [sym__subscript_open] = ACTIONS(4832), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4832), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4832), + [sym__cite_author_in_text] = ACTIONS(4832), + [sym__cite_suppress_author] = ACTIONS(4832), + [sym__shortcode_open_escaped] = ACTIONS(4832), + [sym__shortcode_open] = ACTIONS(4832), + [sym__unclosed_span] = ACTIONS(4832), + }, + [STATE(1231)] = { + [ts_builtin_sym_end] = ACTIONS(4884), + [sym__backslash_escape] = ACTIONS(4884), + [sym_entity_reference] = ACTIONS(4884), + [sym_numeric_character_reference] = ACTIONS(4884), + [anon_sym_LT] = ACTIONS(4886), + [anon_sym_GT] = ACTIONS(4884), + [anon_sym_BANG] = ACTIONS(4884), + [anon_sym_DQUOTE] = ACTIONS(4884), + [anon_sym_POUND] = ACTIONS(4884), + [anon_sym_DOLLAR] = ACTIONS(4884), + [anon_sym_PERCENT] = ACTIONS(4884), + [anon_sym_AMP] = ACTIONS(4886), + [anon_sym_SQUOTE] = ACTIONS(4884), + [anon_sym_STAR] = ACTIONS(4884), + [anon_sym_PLUS] = ACTIONS(4884), + [anon_sym_COMMA] = ACTIONS(4884), + [anon_sym_DASH] = ACTIONS(4886), + [anon_sym_DOT] = ACTIONS(4886), + [anon_sym_SLASH] = ACTIONS(4884), + [anon_sym_COLON] = ACTIONS(4884), + [anon_sym_SEMI] = ACTIONS(4884), + [anon_sym_EQ] = ACTIONS(4884), + [anon_sym_QMARK] = ACTIONS(4884), + [anon_sym_LBRACK] = ACTIONS(4886), + [anon_sym_BSLASH] = ACTIONS(4886), + [anon_sym_CARET] = ACTIONS(4886), + [anon_sym__] = ACTIONS(4884), + [anon_sym_BQUOTE] = ACTIONS(4884), + [anon_sym_LBRACE] = ACTIONS(4884), + [anon_sym_PIPE] = ACTIONS(4884), + [anon_sym_TILDE] = ACTIONS(4884), + [anon_sym_LPAREN] = ACTIONS(4884), + [anon_sym_RPAREN] = ACTIONS(4884), + [sym__newline_token] = ACTIONS(4884), + [aux_sym_insert_token1] = ACTIONS(4884), + [aux_sym_delete_token1] = ACTIONS(4884), + [aux_sym_highlight_token1] = ACTIONS(4884), + [aux_sym_edit_comment_token1] = ACTIONS(4884), + [anon_sym_CARET_LBRACK] = ACTIONS(4884), + [anon_sym_LBRACK_CARET] = ACTIONS(4884), + [sym_uri_autolink] = ACTIONS(4884), + [sym_email_autolink] = ACTIONS(4884), + [sym__whitespace_ge_2] = ACTIONS(4884), + [aux_sym__whitespace_token1] = ACTIONS(4886), + [sym__word_no_digit] = ACTIONS(4884), + [sym__digits] = ACTIONS(4884), + [anon_sym_DASH_DASH] = ACTIONS(4886), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4884), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4884), + [sym__code_span_start] = ACTIONS(4884), + [sym__emphasis_open_star] = ACTIONS(4884), + [sym__emphasis_open_underscore] = ACTIONS(4884), + [sym__strikeout_open] = ACTIONS(4884), + [sym__latex_span_start] = ACTIONS(4884), + [sym__single_quote_open] = ACTIONS(4884), + [sym__double_quote_open] = ACTIONS(4884), + [sym__superscript_open] = ACTIONS(4884), + [sym__subscript_open] = ACTIONS(4884), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4884), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4884), + [sym__cite_author_in_text] = ACTIONS(4884), + [sym__cite_suppress_author] = ACTIONS(4884), + [sym__shortcode_open_escaped] = ACTIONS(4884), + [sym__shortcode_open] = ACTIONS(4884), + [sym__unclosed_span] = ACTIONS(4884), + }, + [STATE(1232)] = { + [ts_builtin_sym_end] = ACTIONS(4888), + [sym__backslash_escape] = ACTIONS(4888), + [sym_entity_reference] = ACTIONS(4888), + [sym_numeric_character_reference] = ACTIONS(4888), + [anon_sym_LT] = ACTIONS(4890), + [anon_sym_GT] = ACTIONS(4888), + [anon_sym_BANG] = ACTIONS(4888), + [anon_sym_DQUOTE] = ACTIONS(4888), + [anon_sym_POUND] = ACTIONS(4888), + [anon_sym_DOLLAR] = ACTIONS(4888), + [anon_sym_PERCENT] = ACTIONS(4888), + [anon_sym_AMP] = ACTIONS(4890), + [anon_sym_SQUOTE] = ACTIONS(4888), + [anon_sym_STAR] = ACTIONS(4888), + [anon_sym_PLUS] = ACTIONS(4888), + [anon_sym_COMMA] = ACTIONS(4888), + [anon_sym_DASH] = ACTIONS(4890), + [anon_sym_DOT] = ACTIONS(4890), + [anon_sym_SLASH] = ACTIONS(4888), + [anon_sym_COLON] = ACTIONS(4888), + [anon_sym_SEMI] = ACTIONS(4888), + [anon_sym_EQ] = ACTIONS(4888), + [anon_sym_QMARK] = ACTIONS(4888), + [anon_sym_LBRACK] = ACTIONS(4890), + [anon_sym_BSLASH] = ACTIONS(4890), + [anon_sym_CARET] = ACTIONS(4890), + [anon_sym__] = ACTIONS(4888), + [anon_sym_BQUOTE] = ACTIONS(4888), + [anon_sym_LBRACE] = ACTIONS(4888), + [anon_sym_PIPE] = ACTIONS(4888), + [anon_sym_TILDE] = ACTIONS(4888), + [anon_sym_LPAREN] = ACTIONS(4888), + [anon_sym_RPAREN] = ACTIONS(4888), + [sym__newline_token] = ACTIONS(4888), + [aux_sym_insert_token1] = ACTIONS(4888), + [aux_sym_delete_token1] = ACTIONS(4888), + [aux_sym_highlight_token1] = ACTIONS(4888), + [aux_sym_edit_comment_token1] = ACTIONS(4888), + [anon_sym_CARET_LBRACK] = ACTIONS(4888), + [anon_sym_LBRACK_CARET] = ACTIONS(4888), + [sym_uri_autolink] = ACTIONS(4888), + [sym_email_autolink] = ACTIONS(4888), + [sym__whitespace_ge_2] = ACTIONS(4888), + [aux_sym__whitespace_token1] = ACTIONS(4890), + [sym__word_no_digit] = ACTIONS(4888), + [sym__digits] = ACTIONS(4888), + [anon_sym_DASH_DASH] = ACTIONS(4890), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4888), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4888), + [sym__code_span_start] = ACTIONS(4888), + [sym__emphasis_open_star] = ACTIONS(4888), + [sym__emphasis_open_underscore] = ACTIONS(4888), + [sym__strikeout_open] = ACTIONS(4888), + [sym__latex_span_start] = ACTIONS(4888), + [sym__single_quote_open] = ACTIONS(4888), + [sym__double_quote_open] = ACTIONS(4888), + [sym__superscript_open] = ACTIONS(4888), + [sym__subscript_open] = ACTIONS(4888), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4888), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4888), + [sym__cite_author_in_text] = ACTIONS(4888), + [sym__cite_suppress_author] = ACTIONS(4888), + [sym__shortcode_open_escaped] = ACTIONS(4888), + [sym__shortcode_open] = ACTIONS(4888), + [sym__unclosed_span] = ACTIONS(4888), + }, + [STATE(1233)] = { + [ts_builtin_sym_end] = ACTIONS(4892), + [sym__backslash_escape] = ACTIONS(4892), + [sym_entity_reference] = ACTIONS(4892), + [sym_numeric_character_reference] = ACTIONS(4892), + [anon_sym_LT] = ACTIONS(4894), + [anon_sym_GT] = ACTIONS(4892), + [anon_sym_BANG] = ACTIONS(4892), + [anon_sym_DQUOTE] = ACTIONS(4892), + [anon_sym_POUND] = ACTIONS(4892), + [anon_sym_DOLLAR] = ACTIONS(4892), + [anon_sym_PERCENT] = ACTIONS(4892), + [anon_sym_AMP] = ACTIONS(4894), + [anon_sym_SQUOTE] = ACTIONS(4892), + [anon_sym_STAR] = ACTIONS(4892), + [anon_sym_PLUS] = ACTIONS(4892), + [anon_sym_COMMA] = ACTIONS(4892), + [anon_sym_DASH] = ACTIONS(4894), + [anon_sym_DOT] = ACTIONS(4894), + [anon_sym_SLASH] = ACTIONS(4892), + [anon_sym_COLON] = ACTIONS(4892), + [anon_sym_SEMI] = ACTIONS(4892), + [anon_sym_EQ] = ACTIONS(4892), + [anon_sym_QMARK] = ACTIONS(4892), + [anon_sym_LBRACK] = ACTIONS(4894), + [anon_sym_BSLASH] = ACTIONS(4894), + [anon_sym_CARET] = ACTIONS(4894), + [anon_sym__] = ACTIONS(4892), + [anon_sym_BQUOTE] = ACTIONS(4892), + [anon_sym_LBRACE] = ACTIONS(4892), + [anon_sym_PIPE] = ACTIONS(4892), + [anon_sym_TILDE] = ACTIONS(4892), + [anon_sym_LPAREN] = ACTIONS(4892), + [anon_sym_RPAREN] = ACTIONS(4892), + [sym__newline_token] = ACTIONS(4892), + [aux_sym_insert_token1] = ACTIONS(4892), + [aux_sym_delete_token1] = ACTIONS(4892), + [aux_sym_highlight_token1] = ACTIONS(4892), + [aux_sym_edit_comment_token1] = ACTIONS(4892), + [anon_sym_CARET_LBRACK] = ACTIONS(4892), + [anon_sym_LBRACK_CARET] = ACTIONS(4892), + [sym_uri_autolink] = ACTIONS(4892), + [sym_email_autolink] = ACTIONS(4892), + [sym__whitespace_ge_2] = ACTIONS(4892), + [aux_sym__whitespace_token1] = ACTIONS(4894), + [sym__word_no_digit] = ACTIONS(4892), + [sym__digits] = ACTIONS(4892), + [anon_sym_DASH_DASH] = ACTIONS(4894), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4892), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4892), + [sym__code_span_start] = ACTIONS(4892), + [sym__emphasis_open_star] = ACTIONS(4892), + [sym__emphasis_open_underscore] = ACTIONS(4892), + [sym__strikeout_open] = ACTIONS(4892), + [sym__latex_span_start] = ACTIONS(4892), + [sym__single_quote_open] = ACTIONS(4892), + [sym__double_quote_open] = ACTIONS(4892), + [sym__superscript_open] = ACTIONS(4892), + [sym__subscript_open] = ACTIONS(4892), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4892), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4892), + [sym__cite_author_in_text] = ACTIONS(4892), + [sym__cite_suppress_author] = ACTIONS(4892), + [sym__shortcode_open_escaped] = ACTIONS(4892), + [sym__shortcode_open] = ACTIONS(4892), + [sym__unclosed_span] = ACTIONS(4892), + }, + [STATE(1234)] = { + [ts_builtin_sym_end] = ACTIONS(4896), + [sym__backslash_escape] = ACTIONS(4896), + [sym_entity_reference] = ACTIONS(4896), + [sym_numeric_character_reference] = ACTIONS(4896), + [anon_sym_LT] = ACTIONS(4898), + [anon_sym_GT] = ACTIONS(4896), + [anon_sym_BANG] = ACTIONS(4896), + [anon_sym_DQUOTE] = ACTIONS(4896), + [anon_sym_POUND] = ACTIONS(4896), + [anon_sym_DOLLAR] = ACTIONS(4896), + [anon_sym_PERCENT] = ACTIONS(4896), + [anon_sym_AMP] = ACTIONS(4898), + [anon_sym_SQUOTE] = ACTIONS(4896), + [anon_sym_STAR] = ACTIONS(4896), + [anon_sym_PLUS] = ACTIONS(4896), + [anon_sym_COMMA] = ACTIONS(4896), + [anon_sym_DASH] = ACTIONS(4898), + [anon_sym_DOT] = ACTIONS(4898), + [anon_sym_SLASH] = ACTIONS(4896), + [anon_sym_COLON] = ACTIONS(4896), + [anon_sym_SEMI] = ACTIONS(4896), + [anon_sym_EQ] = ACTIONS(4896), + [anon_sym_QMARK] = ACTIONS(4896), + [anon_sym_LBRACK] = ACTIONS(4898), + [anon_sym_BSLASH] = ACTIONS(4898), + [anon_sym_CARET] = ACTIONS(4898), + [anon_sym__] = ACTIONS(4896), + [anon_sym_BQUOTE] = ACTIONS(4896), + [anon_sym_LBRACE] = ACTIONS(4896), + [anon_sym_PIPE] = ACTIONS(4896), + [anon_sym_TILDE] = ACTIONS(4896), + [anon_sym_LPAREN] = ACTIONS(4896), + [anon_sym_RPAREN] = ACTIONS(4896), + [sym__newline_token] = ACTIONS(4896), + [aux_sym_insert_token1] = ACTIONS(4896), + [aux_sym_delete_token1] = ACTIONS(4896), + [aux_sym_highlight_token1] = ACTIONS(4896), + [aux_sym_edit_comment_token1] = ACTIONS(4896), + [anon_sym_CARET_LBRACK] = ACTIONS(4896), + [anon_sym_LBRACK_CARET] = ACTIONS(4896), + [sym_uri_autolink] = ACTIONS(4896), + [sym_email_autolink] = ACTIONS(4896), + [sym__whitespace_ge_2] = ACTIONS(4896), + [aux_sym__whitespace_token1] = ACTIONS(4898), + [sym__word_no_digit] = ACTIONS(4896), + [sym__digits] = ACTIONS(4896), + [anon_sym_DASH_DASH] = ACTIONS(4898), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4896), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4896), + [sym__code_span_start] = ACTIONS(4896), + [sym__emphasis_open_star] = ACTIONS(4896), + [sym__emphasis_open_underscore] = ACTIONS(4896), + [sym__strikeout_open] = ACTIONS(4896), + [sym__latex_span_start] = ACTIONS(4896), + [sym__single_quote_open] = ACTIONS(4896), + [sym__double_quote_open] = ACTIONS(4896), + [sym__superscript_open] = ACTIONS(4896), + [sym__subscript_open] = ACTIONS(4896), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4896), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4896), + [sym__cite_author_in_text] = ACTIONS(4896), + [sym__cite_suppress_author] = ACTIONS(4896), + [sym__shortcode_open_escaped] = ACTIONS(4896), + [sym__shortcode_open] = ACTIONS(4896), + [sym__unclosed_span] = ACTIONS(4896), + }, + [STATE(1235)] = { + [ts_builtin_sym_end] = ACTIONS(4534), + [sym__backslash_escape] = ACTIONS(4534), + [sym_entity_reference] = ACTIONS(4534), + [sym_numeric_character_reference] = ACTIONS(4534), + [anon_sym_LT] = ACTIONS(4536), + [anon_sym_GT] = ACTIONS(4534), + [anon_sym_BANG] = ACTIONS(4534), + [anon_sym_DQUOTE] = ACTIONS(4534), + [anon_sym_POUND] = ACTIONS(4534), + [anon_sym_DOLLAR] = ACTIONS(4534), + [anon_sym_PERCENT] = ACTIONS(4534), + [anon_sym_AMP] = ACTIONS(4536), + [anon_sym_SQUOTE] = ACTIONS(4534), + [anon_sym_STAR] = ACTIONS(4534), + [anon_sym_PLUS] = ACTIONS(4534), + [anon_sym_COMMA] = ACTIONS(4534), + [anon_sym_DASH] = ACTIONS(4536), + [anon_sym_DOT] = ACTIONS(4536), + [anon_sym_SLASH] = ACTIONS(4534), + [anon_sym_COLON] = ACTIONS(4534), + [anon_sym_SEMI] = ACTIONS(4534), + [anon_sym_EQ] = ACTIONS(4534), + [anon_sym_QMARK] = ACTIONS(4534), + [anon_sym_LBRACK] = ACTIONS(4536), + [anon_sym_BSLASH] = ACTIONS(4536), + [anon_sym_CARET] = ACTIONS(4536), + [anon_sym__] = ACTIONS(4534), + [anon_sym_BQUOTE] = ACTIONS(4534), + [anon_sym_LBRACE] = ACTIONS(4534), + [anon_sym_PIPE] = ACTIONS(4534), + [anon_sym_TILDE] = ACTIONS(4534), + [anon_sym_LPAREN] = ACTIONS(4534), + [anon_sym_RPAREN] = ACTIONS(4534), + [sym__newline_token] = ACTIONS(4534), + [aux_sym_insert_token1] = ACTIONS(4534), + [aux_sym_delete_token1] = ACTIONS(4534), + [aux_sym_highlight_token1] = ACTIONS(4534), + [aux_sym_edit_comment_token1] = ACTIONS(4534), + [anon_sym_CARET_LBRACK] = ACTIONS(4534), + [anon_sym_LBRACK_CARET] = ACTIONS(4534), + [sym_uri_autolink] = ACTIONS(4534), + [sym_email_autolink] = ACTIONS(4534), + [sym__whitespace_ge_2] = ACTIONS(4534), + [aux_sym__whitespace_token1] = ACTIONS(4536), + [sym__word_no_digit] = ACTIONS(4534), + [sym__digits] = ACTIONS(4534), + [anon_sym_DASH_DASH] = ACTIONS(4536), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4534), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4534), + [sym__code_span_start] = ACTIONS(4534), + [sym__emphasis_open_star] = ACTIONS(4534), + [sym__emphasis_open_underscore] = ACTIONS(4534), + [sym__strikeout_open] = ACTIONS(4534), + [sym__latex_span_start] = ACTIONS(4534), + [sym__single_quote_open] = ACTIONS(4534), + [sym__double_quote_open] = ACTIONS(4534), + [sym__superscript_open] = ACTIONS(4534), + [sym__subscript_open] = ACTIONS(4534), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4534), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4534), + [sym__cite_author_in_text] = ACTIONS(4534), + [sym__cite_suppress_author] = ACTIONS(4534), + [sym__shortcode_open_escaped] = ACTIONS(4534), + [sym__shortcode_open] = ACTIONS(4534), + [sym__unclosed_span] = ACTIONS(4534), + }, + [STATE(1236)] = { + [sym__backslash_escape] = ACTIONS(5064), + [sym_entity_reference] = ACTIONS(5064), + [sym_numeric_character_reference] = ACTIONS(5064), + [anon_sym_LT] = ACTIONS(5066), + [anon_sym_GT] = ACTIONS(5064), + [anon_sym_BANG] = ACTIONS(5064), + [anon_sym_DQUOTE] = ACTIONS(5064), + [anon_sym_POUND] = ACTIONS(5064), + [anon_sym_DOLLAR] = ACTIONS(5064), + [anon_sym_PERCENT] = ACTIONS(5064), + [anon_sym_AMP] = ACTIONS(5066), + [anon_sym_SQUOTE] = ACTIONS(5064), + [anon_sym_STAR] = ACTIONS(5064), + [anon_sym_PLUS] = ACTIONS(5064), + [anon_sym_COMMA] = ACTIONS(5064), + [anon_sym_DASH] = ACTIONS(5066), + [anon_sym_DOT] = ACTIONS(5066), + [anon_sym_SLASH] = ACTIONS(5064), + [anon_sym_COLON] = ACTIONS(5064), + [anon_sym_SEMI] = ACTIONS(5064), + [anon_sym_EQ] = ACTIONS(5064), + [anon_sym_QMARK] = ACTIONS(5064), + [anon_sym_LBRACK] = ACTIONS(5066), + [anon_sym_BSLASH] = ACTIONS(5066), + [anon_sym_CARET] = ACTIONS(5066), + [anon_sym__] = ACTIONS(5064), + [anon_sym_BQUOTE] = ACTIONS(5064), + [anon_sym_LBRACE] = ACTIONS(5064), + [anon_sym_PIPE] = ACTIONS(5064), + [anon_sym_TILDE] = ACTIONS(5064), + [anon_sym_LPAREN] = ACTIONS(5064), + [anon_sym_RPAREN] = ACTIONS(5064), + [sym__newline_token] = ACTIONS(5064), + [aux_sym_insert_token1] = ACTIONS(5064), + [aux_sym_delete_token1] = ACTIONS(5064), + [aux_sym_highlight_token1] = ACTIONS(5064), + [aux_sym_edit_comment_token1] = ACTIONS(5064), + [anon_sym_CARET_LBRACK] = ACTIONS(5064), + [anon_sym_LBRACK_CARET] = ACTIONS(5064), + [sym_uri_autolink] = ACTIONS(5064), + [sym_email_autolink] = ACTIONS(5064), + [sym__whitespace_ge_2] = ACTIONS(5064), + [aux_sym__whitespace_token1] = ACTIONS(5066), + [sym__word_no_digit] = ACTIONS(5064), + [sym__digits] = ACTIONS(5064), + [anon_sym_DASH_DASH] = ACTIONS(5066), + [anon_sym_DASH_DASH_DASH] = ACTIONS(5064), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5064), + [sym__code_span_start] = ACTIONS(5064), + [sym__emphasis_open_star] = ACTIONS(5064), + [sym__emphasis_open_underscore] = ACTIONS(5064), + [sym__emphasis_close_star] = ACTIONS(5096), + [sym__strikeout_open] = ACTIONS(5064), + [sym__latex_span_start] = ACTIONS(5064), + [sym__single_quote_open] = ACTIONS(5064), + [sym__double_quote_open] = ACTIONS(5064), + [sym__superscript_open] = ACTIONS(5064), + [sym__subscript_open] = ACTIONS(5064), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5064), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5064), + [sym__cite_author_in_text] = ACTIONS(5064), + [sym__cite_suppress_author] = ACTIONS(5064), + [sym__shortcode_open_escaped] = ACTIONS(5064), + [sym__shortcode_open] = ACTIONS(5064), + [sym__unclosed_span] = ACTIONS(5064), + }, + [STATE(1237)] = { + [sym__backslash_escape] = ACTIONS(4924), + [sym_entity_reference] = ACTIONS(4924), + [sym_numeric_character_reference] = ACTIONS(4924), + [anon_sym_LT] = ACTIONS(4926), + [anon_sym_GT] = ACTIONS(4924), + [anon_sym_BANG] = ACTIONS(4924), + [anon_sym_DQUOTE] = ACTIONS(4924), + [anon_sym_POUND] = ACTIONS(4924), + [anon_sym_DOLLAR] = ACTIONS(4924), + [anon_sym_PERCENT] = ACTIONS(4924), + [anon_sym_AMP] = ACTIONS(4926), + [anon_sym_SQUOTE] = ACTIONS(4924), + [anon_sym_STAR] = ACTIONS(4924), + [anon_sym_PLUS] = ACTIONS(4924), + [anon_sym_COMMA] = ACTIONS(4924), + [anon_sym_DASH] = ACTIONS(4926), + [anon_sym_DOT] = ACTIONS(4926), + [anon_sym_SLASH] = ACTIONS(4924), + [anon_sym_COLON] = ACTIONS(4924), + [anon_sym_SEMI] = ACTIONS(4924), + [anon_sym_EQ] = ACTIONS(4924), + [anon_sym_QMARK] = ACTIONS(4924), + [anon_sym_LBRACK] = ACTIONS(4926), + [anon_sym_BSLASH] = ACTIONS(4926), + [anon_sym_CARET] = ACTIONS(4926), + [anon_sym__] = ACTIONS(4924), + [anon_sym_BQUOTE] = ACTIONS(4924), + [anon_sym_LBRACE] = ACTIONS(4924), + [anon_sym_PIPE] = ACTIONS(4924), + [anon_sym_TILDE] = ACTIONS(4924), + [anon_sym_LPAREN] = ACTIONS(4924), + [anon_sym_RPAREN] = ACTIONS(4924), + [sym__newline_token] = ACTIONS(4924), + [aux_sym_insert_token1] = ACTIONS(4924), + [aux_sym_delete_token1] = ACTIONS(4924), + [aux_sym_highlight_token1] = ACTIONS(4924), + [aux_sym_edit_comment_token1] = ACTIONS(4924), + [anon_sym_CARET_LBRACK] = ACTIONS(4924), + [anon_sym_LBRACK_CARET] = ACTIONS(4924), + [sym_uri_autolink] = ACTIONS(4924), + [sym_email_autolink] = ACTIONS(4924), + [sym__whitespace_ge_2] = ACTIONS(4924), + [aux_sym__whitespace_token1] = ACTIONS(4926), + [sym__word_no_digit] = ACTIONS(4924), + [sym__digits] = ACTIONS(4924), + [anon_sym_DASH_DASH] = ACTIONS(4926), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4924), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4924), + [sym__code_span_start] = ACTIONS(4924), + [sym__emphasis_open_star] = ACTIONS(4924), + [sym__emphasis_open_underscore] = ACTIONS(4924), + [sym__strikeout_open] = ACTIONS(4924), + [sym__latex_span_start] = ACTIONS(4924), + [sym__single_quote_open] = ACTIONS(4924), + [sym__single_quote_close] = ACTIONS(4924), + [sym__double_quote_open] = ACTIONS(4924), + [sym__superscript_open] = ACTIONS(4924), + [sym__subscript_open] = ACTIONS(4924), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4924), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4924), + [sym__cite_author_in_text] = ACTIONS(4924), + [sym__cite_suppress_author] = ACTIONS(4924), + [sym__shortcode_open_escaped] = ACTIONS(4924), + [sym__shortcode_open] = ACTIONS(4924), + [sym__unclosed_span] = ACTIONS(4924), + }, + [STATE(1238)] = { + [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__] = ACTIONS(5071), + [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(5099), + [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), + }, + [STATE(1239)] = { + [ts_builtin_sym_end] = ACTIONS(4546), + [sym__backslash_escape] = ACTIONS(4546), + [sym_entity_reference] = ACTIONS(4546), + [sym_numeric_character_reference] = ACTIONS(4546), + [anon_sym_LT] = ACTIONS(4548), + [anon_sym_GT] = ACTIONS(4546), + [anon_sym_BANG] = ACTIONS(4546), + [anon_sym_DQUOTE] = ACTIONS(4546), + [anon_sym_POUND] = ACTIONS(4546), + [anon_sym_DOLLAR] = ACTIONS(4546), + [anon_sym_PERCENT] = ACTIONS(4546), + [anon_sym_AMP] = ACTIONS(4548), + [anon_sym_SQUOTE] = ACTIONS(4546), + [anon_sym_STAR] = ACTIONS(4546), + [anon_sym_PLUS] = ACTIONS(4546), + [anon_sym_COMMA] = ACTIONS(4546), + [anon_sym_DASH] = ACTIONS(4548), + [anon_sym_DOT] = ACTIONS(4548), + [anon_sym_SLASH] = ACTIONS(4546), + [anon_sym_COLON] = ACTIONS(4546), + [anon_sym_SEMI] = ACTIONS(4546), + [anon_sym_EQ] = ACTIONS(4546), + [anon_sym_QMARK] = ACTIONS(4546), + [anon_sym_LBRACK] = ACTIONS(4548), + [anon_sym_BSLASH] = ACTIONS(4548), + [anon_sym_CARET] = ACTIONS(4548), + [anon_sym__] = ACTIONS(4546), + [anon_sym_BQUOTE] = ACTIONS(4546), + [anon_sym_LBRACE] = ACTIONS(4546), + [anon_sym_PIPE] = ACTIONS(4546), + [anon_sym_TILDE] = ACTIONS(4546), + [anon_sym_LPAREN] = ACTIONS(4546), + [anon_sym_RPAREN] = ACTIONS(4546), + [sym__newline_token] = ACTIONS(4546), + [aux_sym_insert_token1] = ACTIONS(4546), + [aux_sym_delete_token1] = ACTIONS(4546), + [aux_sym_highlight_token1] = ACTIONS(4546), + [aux_sym_edit_comment_token1] = ACTIONS(4546), + [anon_sym_CARET_LBRACK] = ACTIONS(4546), + [anon_sym_LBRACK_CARET] = ACTIONS(4546), + [sym_uri_autolink] = ACTIONS(4546), + [sym_email_autolink] = ACTIONS(4546), + [sym__whitespace_ge_2] = ACTIONS(4546), + [aux_sym__whitespace_token1] = ACTIONS(4548), + [sym__word_no_digit] = ACTIONS(4546), + [sym__digits] = ACTIONS(4546), + [anon_sym_DASH_DASH] = ACTIONS(4548), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4546), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4546), + [sym__code_span_start] = ACTIONS(4546), + [sym__emphasis_open_star] = ACTIONS(4546), + [sym__emphasis_open_underscore] = ACTIONS(4546), + [sym__strikeout_open] = ACTIONS(4546), + [sym__latex_span_start] = ACTIONS(4546), + [sym__single_quote_open] = ACTIONS(4546), + [sym__double_quote_open] = ACTIONS(4546), + [sym__superscript_open] = ACTIONS(4546), + [sym__subscript_open] = ACTIONS(4546), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4546), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4546), + [sym__cite_author_in_text] = ACTIONS(4546), + [sym__cite_suppress_author] = ACTIONS(4546), + [sym__shortcode_open_escaped] = ACTIONS(4546), + [sym__shortcode_open] = ACTIONS(4546), + [sym__unclosed_span] = ACTIONS(4546), + }, + [STATE(1240)] = { + [sym__backslash_escape] = ACTIONS(4928), + [sym_entity_reference] = ACTIONS(4928), + [sym_numeric_character_reference] = ACTIONS(4928), + [anon_sym_LT] = ACTIONS(4930), + [anon_sym_GT] = ACTIONS(4928), + [anon_sym_BANG] = ACTIONS(4928), + [anon_sym_DQUOTE] = ACTIONS(4928), + [anon_sym_POUND] = ACTIONS(4928), + [anon_sym_DOLLAR] = ACTIONS(4928), + [anon_sym_PERCENT] = ACTIONS(4928), + [anon_sym_AMP] = ACTIONS(4930), + [anon_sym_SQUOTE] = ACTIONS(4928), + [anon_sym_STAR] = ACTIONS(4928), + [anon_sym_PLUS] = ACTIONS(4928), + [anon_sym_COMMA] = ACTIONS(4928), + [anon_sym_DASH] = ACTIONS(4930), + [anon_sym_DOT] = ACTIONS(4930), + [anon_sym_SLASH] = ACTIONS(4928), + [anon_sym_COLON] = ACTIONS(4928), + [anon_sym_SEMI] = ACTIONS(4928), + [anon_sym_EQ] = ACTIONS(4928), + [anon_sym_QMARK] = ACTIONS(4928), + [anon_sym_LBRACK] = ACTIONS(4930), + [anon_sym_BSLASH] = ACTIONS(4930), + [anon_sym_CARET] = ACTIONS(4930), + [anon_sym__] = ACTIONS(4928), + [anon_sym_BQUOTE] = ACTIONS(4928), + [anon_sym_LBRACE] = ACTIONS(4928), + [anon_sym_PIPE] = ACTIONS(4928), + [anon_sym_TILDE] = ACTIONS(4928), + [anon_sym_LPAREN] = ACTIONS(4928), + [anon_sym_RPAREN] = ACTIONS(4928), + [sym__newline_token] = ACTIONS(4928), + [aux_sym_insert_token1] = ACTIONS(4928), + [aux_sym_delete_token1] = ACTIONS(4928), + [aux_sym_highlight_token1] = ACTIONS(4928), + [aux_sym_edit_comment_token1] = ACTIONS(4928), + [anon_sym_CARET_LBRACK] = ACTIONS(4928), + [anon_sym_LBRACK_CARET] = ACTIONS(4928), + [sym_uri_autolink] = ACTIONS(4928), + [sym_email_autolink] = ACTIONS(4928), + [sym__whitespace_ge_2] = ACTIONS(4928), + [aux_sym__whitespace_token1] = ACTIONS(4930), + [sym__word_no_digit] = ACTIONS(4928), + [sym__digits] = ACTIONS(4928), + [anon_sym_DASH_DASH] = ACTIONS(4930), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4928), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4928), + [sym__code_span_start] = ACTIONS(4928), + [sym__emphasis_open_star] = ACTIONS(4928), + [sym__emphasis_open_underscore] = ACTIONS(4928), + [sym__strikeout_open] = ACTIONS(4928), + [sym__latex_span_start] = ACTIONS(4928), + [sym__single_quote_open] = ACTIONS(4928), + [sym__single_quote_close] = ACTIONS(4928), + [sym__double_quote_open] = ACTIONS(4928), + [sym__superscript_open] = ACTIONS(4928), + [sym__subscript_open] = ACTIONS(4928), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4928), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4928), + [sym__cite_author_in_text] = ACTIONS(4928), + [sym__cite_suppress_author] = ACTIONS(4928), + [sym__shortcode_open_escaped] = ACTIONS(4928), + [sym__shortcode_open] = ACTIONS(4928), + [sym__unclosed_span] = ACTIONS(4928), + }, + [STATE(1241)] = { + [ts_builtin_sym_end] = ACTIONS(4904), + [sym__backslash_escape] = ACTIONS(4904), + [sym_entity_reference] = ACTIONS(4904), + [sym_numeric_character_reference] = ACTIONS(4904), + [anon_sym_LT] = ACTIONS(4906), + [anon_sym_GT] = ACTIONS(4904), + [anon_sym_BANG] = ACTIONS(4904), + [anon_sym_DQUOTE] = ACTIONS(4904), + [anon_sym_POUND] = ACTIONS(4904), + [anon_sym_DOLLAR] = ACTIONS(4904), + [anon_sym_PERCENT] = ACTIONS(4904), + [anon_sym_AMP] = ACTIONS(4906), + [anon_sym_SQUOTE] = ACTIONS(4904), + [anon_sym_STAR] = ACTIONS(4904), + [anon_sym_PLUS] = ACTIONS(4904), + [anon_sym_COMMA] = ACTIONS(4904), + [anon_sym_DASH] = ACTIONS(4906), + [anon_sym_DOT] = ACTIONS(4906), + [anon_sym_SLASH] = ACTIONS(4904), + [anon_sym_COLON] = ACTIONS(4904), + [anon_sym_SEMI] = ACTIONS(4904), + [anon_sym_EQ] = ACTIONS(4904), + [anon_sym_QMARK] = ACTIONS(4904), + [anon_sym_LBRACK] = ACTIONS(4906), + [anon_sym_BSLASH] = ACTIONS(4906), + [anon_sym_CARET] = ACTIONS(4906), + [anon_sym__] = ACTIONS(4904), + [anon_sym_BQUOTE] = ACTIONS(4904), + [anon_sym_LBRACE] = ACTIONS(4904), + [anon_sym_PIPE] = ACTIONS(4904), + [anon_sym_TILDE] = ACTIONS(4904), + [anon_sym_LPAREN] = ACTIONS(4904), + [anon_sym_RPAREN] = ACTIONS(4904), + [sym__newline_token] = ACTIONS(4904), + [aux_sym_insert_token1] = ACTIONS(4904), + [aux_sym_delete_token1] = ACTIONS(4904), + [aux_sym_highlight_token1] = ACTIONS(4904), + [aux_sym_edit_comment_token1] = ACTIONS(4904), + [anon_sym_CARET_LBRACK] = ACTIONS(4904), + [anon_sym_LBRACK_CARET] = ACTIONS(4904), + [sym_uri_autolink] = ACTIONS(4904), + [sym_email_autolink] = ACTIONS(4904), + [sym__whitespace_ge_2] = ACTIONS(4904), + [aux_sym__whitespace_token1] = ACTIONS(4906), + [sym__word_no_digit] = ACTIONS(4904), + [sym__digits] = ACTIONS(4904), + [anon_sym_DASH_DASH] = ACTIONS(4906), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4904), + [sym__code_span_start] = ACTIONS(4904), + [sym__emphasis_open_star] = ACTIONS(4904), + [sym__emphasis_open_underscore] = ACTIONS(4904), + [sym__strikeout_open] = ACTIONS(4904), + [sym__latex_span_start] = ACTIONS(4904), + [sym__single_quote_open] = ACTIONS(4904), + [sym__double_quote_open] = ACTIONS(4904), + [sym__superscript_open] = ACTIONS(4904), + [sym__subscript_open] = ACTIONS(4904), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4904), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4904), + [sym__cite_author_in_text] = ACTIONS(4904), + [sym__cite_suppress_author] = ACTIONS(4904), + [sym__shortcode_open_escaped] = ACTIONS(4904), + [sym__shortcode_open] = ACTIONS(4904), + [sym__unclosed_span] = ACTIONS(4904), + }, + [STATE(1242)] = { + [ts_builtin_sym_end] = ACTIONS(4908), + [sym__backslash_escape] = ACTIONS(4908), + [sym_entity_reference] = ACTIONS(4908), + [sym_numeric_character_reference] = ACTIONS(4908), + [anon_sym_LT] = ACTIONS(4910), + [anon_sym_GT] = ACTIONS(4908), + [anon_sym_BANG] = ACTIONS(4908), + [anon_sym_DQUOTE] = ACTIONS(4908), + [anon_sym_POUND] = ACTIONS(4908), + [anon_sym_DOLLAR] = ACTIONS(4908), + [anon_sym_PERCENT] = ACTIONS(4908), + [anon_sym_AMP] = ACTIONS(4910), + [anon_sym_SQUOTE] = ACTIONS(4908), + [anon_sym_STAR] = ACTIONS(4908), + [anon_sym_PLUS] = ACTIONS(4908), + [anon_sym_COMMA] = ACTIONS(4908), + [anon_sym_DASH] = ACTIONS(4910), + [anon_sym_DOT] = ACTIONS(4910), + [anon_sym_SLASH] = ACTIONS(4908), + [anon_sym_COLON] = ACTIONS(4908), + [anon_sym_SEMI] = ACTIONS(4908), + [anon_sym_EQ] = ACTIONS(4908), + [anon_sym_QMARK] = ACTIONS(4908), + [anon_sym_LBRACK] = ACTIONS(4910), + [anon_sym_BSLASH] = ACTIONS(4910), + [anon_sym_CARET] = ACTIONS(4910), + [anon_sym__] = ACTIONS(4908), + [anon_sym_BQUOTE] = ACTIONS(4908), + [anon_sym_LBRACE] = ACTIONS(4908), + [anon_sym_PIPE] = ACTIONS(4908), + [anon_sym_TILDE] = ACTIONS(4908), + [anon_sym_LPAREN] = ACTIONS(4908), + [anon_sym_RPAREN] = ACTIONS(4908), + [sym__newline_token] = ACTIONS(4908), + [aux_sym_insert_token1] = ACTIONS(4908), + [aux_sym_delete_token1] = ACTIONS(4908), + [aux_sym_highlight_token1] = ACTIONS(4908), + [aux_sym_edit_comment_token1] = ACTIONS(4908), + [anon_sym_CARET_LBRACK] = ACTIONS(4908), + [anon_sym_LBRACK_CARET] = ACTIONS(4908), + [sym_uri_autolink] = ACTIONS(4908), + [sym_email_autolink] = ACTIONS(4908), + [sym__whitespace_ge_2] = ACTIONS(4908), + [aux_sym__whitespace_token1] = ACTIONS(4910), + [sym__word_no_digit] = ACTIONS(4908), + [sym__digits] = ACTIONS(4908), + [anon_sym_DASH_DASH] = ACTIONS(4910), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4908), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4908), + [sym__code_span_start] = ACTIONS(4908), + [sym__emphasis_open_star] = ACTIONS(4908), + [sym__emphasis_open_underscore] = ACTIONS(4908), + [sym__strikeout_open] = ACTIONS(4908), + [sym__latex_span_start] = ACTIONS(4908), + [sym__single_quote_open] = ACTIONS(4908), + [sym__double_quote_open] = ACTIONS(4908), + [sym__superscript_open] = ACTIONS(4908), + [sym__subscript_open] = ACTIONS(4908), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4908), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4908), + [sym__cite_author_in_text] = ACTIONS(4908), + [sym__cite_suppress_author] = ACTIONS(4908), + [sym__shortcode_open_escaped] = ACTIONS(4908), + [sym__shortcode_open] = ACTIONS(4908), + [sym__unclosed_span] = ACTIONS(4908), + }, + [STATE(1243)] = { + [ts_builtin_sym_end] = ACTIONS(4550), + [sym__backslash_escape] = ACTIONS(4550), + [sym_entity_reference] = ACTIONS(4550), + [sym_numeric_character_reference] = ACTIONS(4550), + [anon_sym_LT] = ACTIONS(4552), + [anon_sym_GT] = ACTIONS(4550), + [anon_sym_BANG] = ACTIONS(4550), + [anon_sym_DQUOTE] = ACTIONS(4550), + [anon_sym_POUND] = ACTIONS(4550), + [anon_sym_DOLLAR] = ACTIONS(4550), + [anon_sym_PERCENT] = ACTIONS(4550), + [anon_sym_AMP] = ACTIONS(4552), + [anon_sym_SQUOTE] = ACTIONS(4550), + [anon_sym_STAR] = ACTIONS(4550), + [anon_sym_PLUS] = ACTIONS(4550), + [anon_sym_COMMA] = ACTIONS(4550), + [anon_sym_DASH] = ACTIONS(4552), + [anon_sym_DOT] = ACTIONS(4552), + [anon_sym_SLASH] = ACTIONS(4550), + [anon_sym_COLON] = ACTIONS(4550), + [anon_sym_SEMI] = ACTIONS(4550), + [anon_sym_EQ] = ACTIONS(4550), + [anon_sym_QMARK] = ACTIONS(4550), + [anon_sym_LBRACK] = ACTIONS(4552), + [anon_sym_BSLASH] = ACTIONS(4552), + [anon_sym_CARET] = ACTIONS(4552), + [anon_sym__] = ACTIONS(4550), + [anon_sym_BQUOTE] = ACTIONS(4550), + [anon_sym_LBRACE] = ACTIONS(4550), + [anon_sym_PIPE] = ACTIONS(4550), + [anon_sym_TILDE] = ACTIONS(4550), + [anon_sym_LPAREN] = ACTIONS(4550), + [anon_sym_RPAREN] = ACTIONS(4550), + [sym__newline_token] = ACTIONS(4550), + [aux_sym_insert_token1] = ACTIONS(4550), + [aux_sym_delete_token1] = ACTIONS(4550), + [aux_sym_highlight_token1] = ACTIONS(4550), + [aux_sym_edit_comment_token1] = ACTIONS(4550), + [anon_sym_CARET_LBRACK] = ACTIONS(4550), + [anon_sym_LBRACK_CARET] = ACTIONS(4550), + [sym_uri_autolink] = ACTIONS(4550), + [sym_email_autolink] = ACTIONS(4550), + [sym__whitespace_ge_2] = ACTIONS(4550), + [aux_sym__whitespace_token1] = ACTIONS(4552), + [sym__word_no_digit] = ACTIONS(4550), + [sym__digits] = ACTIONS(4550), + [anon_sym_DASH_DASH] = ACTIONS(4552), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4550), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4550), + [sym__code_span_start] = ACTIONS(4550), + [sym__emphasis_open_star] = ACTIONS(4550), + [sym__emphasis_open_underscore] = ACTIONS(4550), + [sym__strikeout_open] = ACTIONS(4550), + [sym__latex_span_start] = ACTIONS(4550), + [sym__single_quote_open] = ACTIONS(4550), + [sym__double_quote_open] = ACTIONS(4550), + [sym__superscript_open] = ACTIONS(4550), + [sym__subscript_open] = ACTIONS(4550), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4550), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4550), + [sym__cite_author_in_text] = ACTIONS(4550), + [sym__cite_suppress_author] = ACTIONS(4550), + [sym__shortcode_open_escaped] = ACTIONS(4550), + [sym__shortcode_open] = ACTIONS(4550), + [sym__unclosed_span] = ACTIONS(4550), + }, + [STATE(1244)] = { + [sym__backslash_escape] = ACTIONS(4976), + [sym_entity_reference] = ACTIONS(4976), + [sym_numeric_character_reference] = ACTIONS(4976), + [anon_sym_LT] = ACTIONS(4978), + [anon_sym_GT] = ACTIONS(4976), + [anon_sym_BANG] = ACTIONS(4976), + [anon_sym_DQUOTE] = ACTIONS(4976), + [anon_sym_POUND] = ACTIONS(4976), + [anon_sym_DOLLAR] = ACTIONS(4976), + [anon_sym_PERCENT] = ACTIONS(4976), + [anon_sym_AMP] = ACTIONS(4978), + [anon_sym_SQUOTE] = ACTIONS(4976), + [anon_sym_STAR] = ACTIONS(4976), + [anon_sym_PLUS] = ACTIONS(4976), + [anon_sym_COMMA] = ACTIONS(4976), + [anon_sym_DASH] = ACTIONS(4978), + [anon_sym_DOT] = ACTIONS(4978), + [anon_sym_SLASH] = ACTIONS(4976), + [anon_sym_COLON] = ACTIONS(4976), + [anon_sym_SEMI] = ACTIONS(4976), + [anon_sym_EQ] = ACTIONS(4976), + [anon_sym_QMARK] = ACTIONS(4976), + [anon_sym_LBRACK] = ACTIONS(4978), + [anon_sym_BSLASH] = ACTIONS(4978), + [anon_sym_CARET] = ACTIONS(4978), + [anon_sym__] = ACTIONS(4976), + [anon_sym_BQUOTE] = ACTIONS(4976), + [anon_sym_LBRACE] = ACTIONS(4976), + [anon_sym_PIPE] = ACTIONS(4976), + [anon_sym_TILDE] = ACTIONS(4976), + [anon_sym_LPAREN] = ACTIONS(4976), + [anon_sym_RPAREN] = ACTIONS(4976), + [sym__newline_token] = ACTIONS(4976), + [aux_sym_insert_token1] = ACTIONS(4976), + [aux_sym_delete_token1] = ACTIONS(4976), + [aux_sym_highlight_token1] = ACTIONS(4976), + [aux_sym_edit_comment_token1] = ACTIONS(4976), + [anon_sym_CARET_LBRACK] = ACTIONS(4976), + [anon_sym_LBRACK_CARET] = ACTIONS(4976), + [sym_uri_autolink] = ACTIONS(4976), + [sym_email_autolink] = ACTIONS(4976), + [sym__whitespace_ge_2] = ACTIONS(4976), + [aux_sym__whitespace_token1] = ACTIONS(4978), + [sym__word_no_digit] = ACTIONS(4976), + [sym__digits] = ACTIONS(4976), + [anon_sym_DASH_DASH] = ACTIONS(4978), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4976), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4976), + [sym__code_span_start] = ACTIONS(4976), + [sym__emphasis_open_star] = ACTIONS(4976), + [sym__emphasis_open_underscore] = ACTIONS(4976), + [sym__strikeout_open] = ACTIONS(4976), + [sym__strikeout_close] = ACTIONS(4976), + [sym__latex_span_start] = ACTIONS(4976), + [sym__single_quote_open] = ACTIONS(4976), + [sym__double_quote_open] = ACTIONS(4976), + [sym__superscript_open] = ACTIONS(4976), + [sym__subscript_open] = ACTIONS(4976), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4976), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4976), + [sym__cite_author_in_text] = ACTIONS(4976), + [sym__cite_suppress_author] = ACTIONS(4976), + [sym__shortcode_open_escaped] = ACTIONS(4976), + [sym__shortcode_open] = ACTIONS(4976), + [sym__unclosed_span] = ACTIONS(4976), + }, + [STATE(1245)] = { + [sym__backslash_escape] = ACTIONS(4980), + [sym_entity_reference] = ACTIONS(4980), + [sym_numeric_character_reference] = ACTIONS(4980), + [anon_sym_LT] = ACTIONS(4982), + [anon_sym_GT] = ACTIONS(4980), + [anon_sym_BANG] = ACTIONS(4980), + [anon_sym_DQUOTE] = ACTIONS(4980), + [anon_sym_POUND] = ACTIONS(4980), + [anon_sym_DOLLAR] = ACTIONS(4980), + [anon_sym_PERCENT] = ACTIONS(4980), + [anon_sym_AMP] = ACTIONS(4982), + [anon_sym_SQUOTE] = ACTIONS(4980), + [anon_sym_STAR] = ACTIONS(4980), + [anon_sym_PLUS] = ACTIONS(4980), + [anon_sym_COMMA] = ACTIONS(4980), + [anon_sym_DASH] = ACTIONS(4982), + [anon_sym_DOT] = ACTIONS(4982), + [anon_sym_SLASH] = ACTIONS(4980), + [anon_sym_COLON] = ACTIONS(4980), + [anon_sym_SEMI] = ACTIONS(4980), + [anon_sym_EQ] = ACTIONS(4980), + [anon_sym_QMARK] = ACTIONS(4980), + [anon_sym_LBRACK] = ACTIONS(4982), + [anon_sym_BSLASH] = ACTIONS(4982), + [anon_sym_CARET] = ACTIONS(4982), + [anon_sym__] = ACTIONS(4980), + [anon_sym_BQUOTE] = ACTIONS(4980), + [anon_sym_LBRACE] = ACTIONS(4980), + [anon_sym_PIPE] = ACTIONS(4980), + [anon_sym_TILDE] = ACTIONS(4980), + [anon_sym_LPAREN] = ACTIONS(4980), + [anon_sym_RPAREN] = ACTIONS(4980), + [sym__newline_token] = ACTIONS(4980), + [aux_sym_insert_token1] = ACTIONS(4980), + [aux_sym_delete_token1] = ACTIONS(4980), + [aux_sym_highlight_token1] = ACTIONS(4980), + [aux_sym_edit_comment_token1] = ACTIONS(4980), + [anon_sym_CARET_LBRACK] = ACTIONS(4980), + [anon_sym_LBRACK_CARET] = ACTIONS(4980), + [sym_uri_autolink] = ACTIONS(4980), + [sym_email_autolink] = ACTIONS(4980), + [sym__whitespace_ge_2] = ACTIONS(4980), + [aux_sym__whitespace_token1] = ACTIONS(4982), + [sym__word_no_digit] = ACTIONS(4980), + [sym__digits] = ACTIONS(4980), + [anon_sym_DASH_DASH] = ACTIONS(4982), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4980), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4980), + [sym__code_span_start] = ACTIONS(4980), + [sym__emphasis_open_star] = ACTIONS(4980), + [sym__emphasis_open_underscore] = ACTIONS(4980), + [sym__strikeout_open] = ACTIONS(4980), + [sym__strikeout_close] = ACTIONS(4980), + [sym__latex_span_start] = ACTIONS(4980), + [sym__single_quote_open] = ACTIONS(4980), + [sym__double_quote_open] = ACTIONS(4980), + [sym__superscript_open] = ACTIONS(4980), + [sym__subscript_open] = ACTIONS(4980), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4980), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4980), + [sym__cite_author_in_text] = ACTIONS(4980), + [sym__cite_suppress_author] = ACTIONS(4980), + [sym__shortcode_open_escaped] = ACTIONS(4980), + [sym__shortcode_open] = ACTIONS(4980), + [sym__unclosed_span] = ACTIONS(4980), + }, + [STATE(1246)] = { + [ts_builtin_sym_end] = ACTIONS(4554), + [sym__backslash_escape] = ACTIONS(4554), + [sym_entity_reference] = ACTIONS(4554), + [sym_numeric_character_reference] = ACTIONS(4554), + [anon_sym_LT] = ACTIONS(4556), + [anon_sym_GT] = ACTIONS(4554), + [anon_sym_BANG] = ACTIONS(4554), + [anon_sym_DQUOTE] = ACTIONS(4554), + [anon_sym_POUND] = ACTIONS(4554), + [anon_sym_DOLLAR] = ACTIONS(4554), + [anon_sym_PERCENT] = ACTIONS(4554), + [anon_sym_AMP] = ACTIONS(4556), + [anon_sym_SQUOTE] = ACTIONS(4554), + [anon_sym_STAR] = ACTIONS(4554), + [anon_sym_PLUS] = ACTIONS(4554), + [anon_sym_COMMA] = ACTIONS(4554), + [anon_sym_DASH] = ACTIONS(4556), + [anon_sym_DOT] = ACTIONS(4556), + [anon_sym_SLASH] = ACTIONS(4554), + [anon_sym_COLON] = ACTIONS(4554), + [anon_sym_SEMI] = ACTIONS(4554), + [anon_sym_EQ] = ACTIONS(4554), + [anon_sym_QMARK] = ACTIONS(4554), + [anon_sym_LBRACK] = ACTIONS(4556), + [anon_sym_BSLASH] = ACTIONS(4556), + [anon_sym_CARET] = ACTIONS(4556), + [anon_sym__] = ACTIONS(4554), + [anon_sym_BQUOTE] = ACTIONS(4554), + [anon_sym_LBRACE] = ACTIONS(4554), + [anon_sym_PIPE] = ACTIONS(4554), + [anon_sym_TILDE] = ACTIONS(4554), + [anon_sym_LPAREN] = ACTIONS(4554), + [anon_sym_RPAREN] = ACTIONS(4554), + [sym__newline_token] = ACTIONS(4554), + [aux_sym_insert_token1] = ACTIONS(4554), + [aux_sym_delete_token1] = ACTIONS(4554), + [aux_sym_highlight_token1] = ACTIONS(4554), + [aux_sym_edit_comment_token1] = ACTIONS(4554), + [anon_sym_CARET_LBRACK] = ACTIONS(4554), + [anon_sym_LBRACK_CARET] = ACTIONS(4554), + [sym_uri_autolink] = ACTIONS(4554), + [sym_email_autolink] = ACTIONS(4554), + [sym__whitespace_ge_2] = ACTIONS(4554), + [aux_sym__whitespace_token1] = ACTIONS(4556), + [sym__word_no_digit] = ACTIONS(4554), + [sym__digits] = ACTIONS(4554), + [anon_sym_DASH_DASH] = ACTIONS(4556), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4554), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4554), + [sym__code_span_start] = ACTIONS(4554), + [sym__emphasis_open_star] = ACTIONS(4554), + [sym__emphasis_open_underscore] = ACTIONS(4554), + [sym__strikeout_open] = ACTIONS(4554), + [sym__latex_span_start] = ACTIONS(4554), + [sym__single_quote_open] = ACTIONS(4554), + [sym__double_quote_open] = ACTIONS(4554), + [sym__superscript_open] = ACTIONS(4554), + [sym__subscript_open] = ACTIONS(4554), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4554), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4554), + [sym__cite_author_in_text] = ACTIONS(4554), + [sym__cite_suppress_author] = ACTIONS(4554), + [sym__shortcode_open_escaped] = ACTIONS(4554), + [sym__shortcode_open] = ACTIONS(4554), + [sym__unclosed_span] = ACTIONS(4554), + }, + [STATE(1247)] = { + [sym__backslash_escape] = ACTIONS(4940), + [sym_entity_reference] = ACTIONS(4940), + [sym_numeric_character_reference] = ACTIONS(4940), + [anon_sym_LT] = ACTIONS(4942), + [anon_sym_GT] = ACTIONS(4940), + [anon_sym_BANG] = ACTIONS(4940), + [anon_sym_DQUOTE] = ACTIONS(4940), + [anon_sym_POUND] = ACTIONS(4940), + [anon_sym_DOLLAR] = ACTIONS(4940), + [anon_sym_PERCENT] = ACTIONS(4940), + [anon_sym_AMP] = ACTIONS(4942), + [anon_sym_SQUOTE] = ACTIONS(4940), + [anon_sym_STAR] = ACTIONS(4940), + [anon_sym_PLUS] = ACTIONS(4940), + [anon_sym_COMMA] = ACTIONS(4940), + [anon_sym_DASH] = ACTIONS(4942), + [anon_sym_DOT] = ACTIONS(4942), + [anon_sym_SLASH] = ACTIONS(4940), + [anon_sym_COLON] = ACTIONS(4940), + [anon_sym_SEMI] = ACTIONS(4940), + [anon_sym_EQ] = ACTIONS(4940), + [anon_sym_QMARK] = ACTIONS(4940), + [anon_sym_LBRACK] = ACTIONS(4942), + [anon_sym_BSLASH] = ACTIONS(4942), + [anon_sym_CARET] = ACTIONS(4942), + [anon_sym__] = ACTIONS(4940), + [anon_sym_BQUOTE] = ACTIONS(4940), + [anon_sym_LBRACE] = ACTIONS(4940), + [anon_sym_PIPE] = ACTIONS(4940), + [anon_sym_TILDE] = ACTIONS(4940), + [anon_sym_LPAREN] = ACTIONS(4940), + [anon_sym_RPAREN] = ACTIONS(4940), + [sym__newline_token] = ACTIONS(4940), + [aux_sym_insert_token1] = ACTIONS(4940), + [aux_sym_delete_token1] = ACTIONS(4940), + [aux_sym_highlight_token1] = ACTIONS(4940), + [aux_sym_edit_comment_token1] = ACTIONS(4940), + [anon_sym_CARET_LBRACK] = ACTIONS(4940), + [anon_sym_LBRACK_CARET] = ACTIONS(4940), + [sym_uri_autolink] = ACTIONS(4940), + [sym_email_autolink] = ACTIONS(4940), + [sym__whitespace_ge_2] = ACTIONS(4940), + [aux_sym__whitespace_token1] = ACTIONS(4942), + [sym__word_no_digit] = ACTIONS(4940), + [sym__digits] = ACTIONS(4940), + [anon_sym_DASH_DASH] = ACTIONS(4942), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4940), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4940), + [sym__code_span_start] = ACTIONS(4940), + [sym__emphasis_open_star] = ACTIONS(4940), + [sym__emphasis_open_underscore] = ACTIONS(4940), + [sym__strikeout_open] = ACTIONS(4940), + [sym__latex_span_start] = ACTIONS(4940), + [sym__single_quote_open] = ACTIONS(4940), + [sym__single_quote_close] = ACTIONS(4940), + [sym__double_quote_open] = ACTIONS(4940), + [sym__superscript_open] = ACTIONS(4940), + [sym__subscript_open] = ACTIONS(4940), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4940), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4940), + [sym__cite_author_in_text] = ACTIONS(4940), + [sym__cite_suppress_author] = ACTIONS(4940), + [sym__shortcode_open_escaped] = ACTIONS(4940), + [sym__shortcode_open] = ACTIONS(4940), + [sym__unclosed_span] = ACTIONS(4940), + }, + [STATE(1248)] = { + [ts_builtin_sym_end] = ACTIONS(4558), + [sym__backslash_escape] = ACTIONS(4558), + [sym_entity_reference] = ACTIONS(4558), + [sym_numeric_character_reference] = ACTIONS(4558), + [anon_sym_LT] = ACTIONS(4560), + [anon_sym_GT] = ACTIONS(4558), + [anon_sym_BANG] = ACTIONS(4558), + [anon_sym_DQUOTE] = ACTIONS(4558), + [anon_sym_POUND] = ACTIONS(4558), + [anon_sym_DOLLAR] = ACTIONS(4558), + [anon_sym_PERCENT] = ACTIONS(4558), + [anon_sym_AMP] = ACTIONS(4560), + [anon_sym_SQUOTE] = ACTIONS(4558), + [anon_sym_STAR] = ACTIONS(4558), + [anon_sym_PLUS] = ACTIONS(4558), + [anon_sym_COMMA] = ACTIONS(4558), + [anon_sym_DASH] = ACTIONS(4560), + [anon_sym_DOT] = ACTIONS(4560), + [anon_sym_SLASH] = ACTIONS(4558), + [anon_sym_COLON] = ACTIONS(4558), + [anon_sym_SEMI] = ACTIONS(4558), + [anon_sym_EQ] = ACTIONS(4558), + [anon_sym_QMARK] = ACTIONS(4558), + [anon_sym_LBRACK] = ACTIONS(4560), + [anon_sym_BSLASH] = ACTIONS(4560), + [anon_sym_CARET] = ACTIONS(4560), + [anon_sym__] = ACTIONS(4558), + [anon_sym_BQUOTE] = ACTIONS(4558), + [anon_sym_LBRACE] = ACTIONS(4558), + [anon_sym_PIPE] = ACTIONS(4558), + [anon_sym_TILDE] = ACTIONS(4558), + [anon_sym_LPAREN] = ACTIONS(4558), + [anon_sym_RPAREN] = ACTIONS(4558), + [sym__newline_token] = ACTIONS(4558), + [aux_sym_insert_token1] = ACTIONS(4558), + [aux_sym_delete_token1] = ACTIONS(4558), + [aux_sym_highlight_token1] = ACTIONS(4558), + [aux_sym_edit_comment_token1] = ACTIONS(4558), + [anon_sym_CARET_LBRACK] = ACTIONS(4558), + [anon_sym_LBRACK_CARET] = ACTIONS(4558), + [sym_uri_autolink] = ACTIONS(4558), + [sym_email_autolink] = ACTIONS(4558), + [sym__whitespace_ge_2] = ACTIONS(4558), + [aux_sym__whitespace_token1] = ACTIONS(4560), + [sym__word_no_digit] = ACTIONS(4558), + [sym__digits] = ACTIONS(4558), + [anon_sym_DASH_DASH] = ACTIONS(4560), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4558), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4558), + [sym__code_span_start] = ACTIONS(4558), + [sym__emphasis_open_star] = ACTIONS(4558), + [sym__emphasis_open_underscore] = ACTIONS(4558), + [sym__strikeout_open] = ACTIONS(4558), + [sym__latex_span_start] = ACTIONS(4558), + [sym__single_quote_open] = ACTIONS(4558), + [sym__double_quote_open] = ACTIONS(4558), + [sym__superscript_open] = ACTIONS(4558), + [sym__subscript_open] = ACTIONS(4558), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4558), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4558), + [sym__cite_author_in_text] = ACTIONS(4558), + [sym__cite_suppress_author] = ACTIONS(4558), + [sym__shortcode_open_escaped] = ACTIONS(4558), + [sym__shortcode_open] = ACTIONS(4558), + [sym__unclosed_span] = ACTIONS(4558), + }, + [STATE(1249)] = { + [sym__backslash_escape] = ACTIONS(4984), + [sym_entity_reference] = ACTIONS(4984), + [sym_numeric_character_reference] = ACTIONS(4984), + [anon_sym_LT] = ACTIONS(4986), + [anon_sym_GT] = ACTIONS(4984), + [anon_sym_BANG] = ACTIONS(4984), + [anon_sym_DQUOTE] = ACTIONS(4984), + [anon_sym_POUND] = ACTIONS(4984), + [anon_sym_DOLLAR] = ACTIONS(4984), + [anon_sym_PERCENT] = ACTIONS(4984), + [anon_sym_AMP] = ACTIONS(4986), + [anon_sym_SQUOTE] = ACTIONS(4984), + [anon_sym_STAR] = ACTIONS(4984), + [anon_sym_PLUS] = ACTIONS(4984), + [anon_sym_COMMA] = ACTIONS(4984), + [anon_sym_DASH] = ACTIONS(4986), + [anon_sym_DOT] = ACTIONS(4986), + [anon_sym_SLASH] = ACTIONS(4984), + [anon_sym_COLON] = ACTIONS(4984), + [anon_sym_SEMI] = ACTIONS(4984), + [anon_sym_EQ] = ACTIONS(4984), + [anon_sym_QMARK] = ACTIONS(4984), + [anon_sym_LBRACK] = ACTIONS(4986), + [anon_sym_BSLASH] = ACTIONS(4986), + [anon_sym_CARET] = ACTIONS(4986), + [anon_sym__] = ACTIONS(4984), + [anon_sym_BQUOTE] = ACTIONS(4984), + [anon_sym_LBRACE] = ACTIONS(4984), + [anon_sym_PIPE] = ACTIONS(4984), + [anon_sym_TILDE] = ACTIONS(4984), + [anon_sym_LPAREN] = ACTIONS(4984), + [anon_sym_RPAREN] = ACTIONS(4984), + [sym__newline_token] = ACTIONS(4984), + [aux_sym_insert_token1] = ACTIONS(4984), + [aux_sym_delete_token1] = ACTIONS(4984), + [aux_sym_highlight_token1] = ACTIONS(4984), + [aux_sym_edit_comment_token1] = ACTIONS(4984), + [anon_sym_CARET_LBRACK] = ACTIONS(4984), + [anon_sym_LBRACK_CARET] = ACTIONS(4984), + [sym_uri_autolink] = ACTIONS(4984), + [sym_email_autolink] = ACTIONS(4984), + [sym__whitespace_ge_2] = ACTIONS(4984), + [aux_sym__whitespace_token1] = ACTIONS(4986), + [sym__word_no_digit] = ACTIONS(4984), + [sym__digits] = ACTIONS(4984), + [anon_sym_DASH_DASH] = ACTIONS(4986), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4984), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4984), + [sym__code_span_start] = ACTIONS(4984), + [sym__emphasis_open_star] = ACTIONS(4984), + [sym__emphasis_open_underscore] = ACTIONS(4984), + [sym__strikeout_open] = ACTIONS(4984), + [sym__latex_span_start] = ACTIONS(4984), + [sym__single_quote_open] = ACTIONS(4984), + [sym__double_quote_open] = ACTIONS(4984), + [sym__double_quote_close] = ACTIONS(4984), + [sym__superscript_open] = ACTIONS(4984), + [sym__subscript_open] = ACTIONS(4984), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4984), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4984), + [sym__cite_author_in_text] = ACTIONS(4984), + [sym__cite_suppress_author] = ACTIONS(4984), + [sym__shortcode_open_escaped] = ACTIONS(4984), + [sym__shortcode_open] = ACTIONS(4984), + [sym__unclosed_span] = ACTIONS(4984), + }, + [STATE(1250)] = { + [ts_builtin_sym_end] = ACTIONS(4562), + [sym__backslash_escape] = ACTIONS(4562), + [sym_entity_reference] = ACTIONS(4562), + [sym_numeric_character_reference] = ACTIONS(4562), + [anon_sym_LT] = ACTIONS(4564), + [anon_sym_GT] = ACTIONS(4562), + [anon_sym_BANG] = ACTIONS(4562), + [anon_sym_DQUOTE] = ACTIONS(4562), + [anon_sym_POUND] = ACTIONS(4562), + [anon_sym_DOLLAR] = ACTIONS(4562), + [anon_sym_PERCENT] = ACTIONS(4562), + [anon_sym_AMP] = ACTIONS(4564), + [anon_sym_SQUOTE] = ACTIONS(4562), + [anon_sym_STAR] = ACTIONS(4562), + [anon_sym_PLUS] = ACTIONS(4562), + [anon_sym_COMMA] = ACTIONS(4562), + [anon_sym_DASH] = ACTIONS(4564), + [anon_sym_DOT] = ACTIONS(4564), + [anon_sym_SLASH] = ACTIONS(4562), + [anon_sym_COLON] = ACTIONS(4562), + [anon_sym_SEMI] = ACTIONS(4562), + [anon_sym_EQ] = ACTIONS(4562), + [anon_sym_QMARK] = ACTIONS(4562), + [anon_sym_LBRACK] = ACTIONS(4564), + [anon_sym_BSLASH] = ACTIONS(4564), + [anon_sym_CARET] = ACTIONS(4564), + [anon_sym__] = ACTIONS(4562), + [anon_sym_BQUOTE] = ACTIONS(4562), + [anon_sym_LBRACE] = ACTIONS(4562), + [anon_sym_PIPE] = ACTIONS(4562), + [anon_sym_TILDE] = ACTIONS(4562), + [anon_sym_LPAREN] = ACTIONS(4562), + [anon_sym_RPAREN] = ACTIONS(4562), + [sym__newline_token] = ACTIONS(4562), + [aux_sym_insert_token1] = ACTIONS(4562), + [aux_sym_delete_token1] = ACTIONS(4562), + [aux_sym_highlight_token1] = ACTIONS(4562), + [aux_sym_edit_comment_token1] = ACTIONS(4562), + [anon_sym_CARET_LBRACK] = ACTIONS(4562), + [anon_sym_LBRACK_CARET] = ACTIONS(4562), + [sym_uri_autolink] = ACTIONS(4562), + [sym_email_autolink] = ACTIONS(4562), + [sym__whitespace_ge_2] = ACTIONS(4562), + [aux_sym__whitespace_token1] = ACTIONS(4564), + [sym__word_no_digit] = ACTIONS(4562), + [sym__digits] = ACTIONS(4562), + [anon_sym_DASH_DASH] = ACTIONS(4564), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4562), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4562), + [sym__code_span_start] = ACTIONS(4562), + [sym__emphasis_open_star] = ACTIONS(4562), + [sym__emphasis_open_underscore] = ACTIONS(4562), + [sym__strikeout_open] = ACTIONS(4562), + [sym__latex_span_start] = ACTIONS(4562), + [sym__single_quote_open] = ACTIONS(4562), + [sym__double_quote_open] = ACTIONS(4562), + [sym__superscript_open] = ACTIONS(4562), + [sym__subscript_open] = ACTIONS(4562), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4562), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4562), + [sym__cite_author_in_text] = ACTIONS(4562), + [sym__cite_suppress_author] = ACTIONS(4562), + [sym__shortcode_open_escaped] = ACTIONS(4562), + [sym__shortcode_open] = ACTIONS(4562), + [sym__unclosed_span] = ACTIONS(4562), + }, + [STATE(1251)] = { + [sym__backslash_escape] = ACTIONS(4836), + [sym_entity_reference] = ACTIONS(4836), + [sym_numeric_character_reference] = ACTIONS(4836), + [anon_sym_LT] = ACTIONS(4838), + [anon_sym_GT] = ACTIONS(4836), + [anon_sym_BANG] = ACTIONS(4836), + [anon_sym_DQUOTE] = ACTIONS(4836), + [anon_sym_POUND] = ACTIONS(4836), + [anon_sym_DOLLAR] = ACTIONS(4836), + [anon_sym_PERCENT] = ACTIONS(4836), + [anon_sym_AMP] = ACTIONS(4838), + [anon_sym_SQUOTE] = ACTIONS(4836), + [anon_sym_STAR] = ACTIONS(4836), + [anon_sym_PLUS] = ACTIONS(4836), + [anon_sym_COMMA] = ACTIONS(4836), + [anon_sym_DASH] = ACTIONS(4838), + [anon_sym_DOT] = ACTIONS(4838), + [anon_sym_SLASH] = ACTIONS(4836), + [anon_sym_COLON] = ACTIONS(4836), + [anon_sym_SEMI] = ACTIONS(4836), + [anon_sym_EQ] = ACTIONS(4836), + [anon_sym_QMARK] = ACTIONS(4836), + [anon_sym_LBRACK] = ACTIONS(4838), + [anon_sym_BSLASH] = ACTIONS(4838), + [anon_sym_CARET] = ACTIONS(4838), + [anon_sym__] = ACTIONS(4836), + [anon_sym_BQUOTE] = ACTIONS(4836), + [anon_sym_LBRACE] = ACTIONS(4836), + [anon_sym_PIPE] = ACTIONS(4836), + [anon_sym_TILDE] = ACTIONS(4836), + [anon_sym_LPAREN] = ACTIONS(4836), + [anon_sym_RPAREN] = ACTIONS(4836), + [sym__newline_token] = ACTIONS(4836), + [aux_sym_insert_token1] = ACTIONS(4836), + [aux_sym_delete_token1] = ACTIONS(4836), + [aux_sym_highlight_token1] = ACTIONS(4836), + [aux_sym_edit_comment_token1] = ACTIONS(4836), + [anon_sym_CARET_LBRACK] = ACTIONS(4836), + [anon_sym_LBRACK_CARET] = ACTIONS(4836), + [sym_uri_autolink] = ACTIONS(4836), + [sym_email_autolink] = ACTIONS(4836), + [sym__whitespace_ge_2] = ACTIONS(4836), + [aux_sym__whitespace_token1] = ACTIONS(4838), + [sym__word_no_digit] = ACTIONS(4836), + [sym__digits] = ACTIONS(4836), + [anon_sym_DASH_DASH] = ACTIONS(4838), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4836), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4836), + [sym__code_span_start] = ACTIONS(4836), + [sym__emphasis_open_star] = ACTIONS(4836), + [sym__emphasis_open_underscore] = ACTIONS(4836), + [sym__emphasis_close_underscore] = ACTIONS(4836), + [sym__strikeout_open] = ACTIONS(4836), + [sym__latex_span_start] = ACTIONS(4836), + [sym__single_quote_open] = ACTIONS(4836), + [sym__double_quote_open] = ACTIONS(4836), + [sym__superscript_open] = ACTIONS(4836), + [sym__subscript_open] = ACTIONS(4836), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4836), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4836), + [sym__cite_author_in_text] = ACTIONS(4836), + [sym__cite_suppress_author] = ACTIONS(4836), + [sym__shortcode_open_escaped] = ACTIONS(4836), + [sym__shortcode_open] = ACTIONS(4836), + [sym__unclosed_span] = ACTIONS(4836), + }, + [STATE(1252)] = { + [ts_builtin_sym_end] = ACTIONS(4924), + [sym__backslash_escape] = ACTIONS(4924), + [sym_entity_reference] = ACTIONS(4924), + [sym_numeric_character_reference] = ACTIONS(4924), + [anon_sym_LT] = ACTIONS(4926), + [anon_sym_GT] = ACTIONS(4924), + [anon_sym_BANG] = ACTIONS(4924), + [anon_sym_DQUOTE] = ACTIONS(4924), + [anon_sym_POUND] = ACTIONS(4924), + [anon_sym_DOLLAR] = ACTIONS(4924), + [anon_sym_PERCENT] = ACTIONS(4924), + [anon_sym_AMP] = ACTIONS(4926), + [anon_sym_SQUOTE] = ACTIONS(4924), + [anon_sym_STAR] = ACTIONS(4924), + [anon_sym_PLUS] = ACTIONS(4924), + [anon_sym_COMMA] = ACTIONS(4924), + [anon_sym_DASH] = ACTIONS(4926), + [anon_sym_DOT] = ACTIONS(4926), + [anon_sym_SLASH] = ACTIONS(4924), + [anon_sym_COLON] = ACTIONS(4924), + [anon_sym_SEMI] = ACTIONS(4924), + [anon_sym_EQ] = ACTIONS(4924), + [anon_sym_QMARK] = ACTIONS(4924), + [anon_sym_LBRACK] = ACTIONS(4926), + [anon_sym_BSLASH] = ACTIONS(4926), + [anon_sym_CARET] = ACTIONS(4926), + [anon_sym__] = ACTIONS(4924), + [anon_sym_BQUOTE] = ACTIONS(4924), + [anon_sym_LBRACE] = ACTIONS(4924), + [anon_sym_PIPE] = ACTIONS(4924), + [anon_sym_TILDE] = ACTIONS(4924), + [anon_sym_LPAREN] = ACTIONS(4924), + [anon_sym_RPAREN] = ACTIONS(4924), + [sym__newline_token] = ACTIONS(4924), + [aux_sym_insert_token1] = ACTIONS(4924), + [aux_sym_delete_token1] = ACTIONS(4924), + [aux_sym_highlight_token1] = ACTIONS(4924), + [aux_sym_edit_comment_token1] = ACTIONS(4924), + [anon_sym_CARET_LBRACK] = ACTIONS(4924), + [anon_sym_LBRACK_CARET] = ACTIONS(4924), + [sym_uri_autolink] = ACTIONS(4924), + [sym_email_autolink] = ACTIONS(4924), + [sym__whitespace_ge_2] = ACTIONS(4924), + [aux_sym__whitespace_token1] = ACTIONS(4926), + [sym__word_no_digit] = ACTIONS(4924), + [sym__digits] = ACTIONS(4924), + [anon_sym_DASH_DASH] = ACTIONS(4926), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4924), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4924), + [sym__code_span_start] = ACTIONS(4924), + [sym__emphasis_open_star] = ACTIONS(4924), + [sym__emphasis_open_underscore] = ACTIONS(4924), + [sym__strikeout_open] = ACTIONS(4924), + [sym__latex_span_start] = ACTIONS(4924), + [sym__single_quote_open] = ACTIONS(4924), + [sym__double_quote_open] = ACTIONS(4924), + [sym__superscript_open] = ACTIONS(4924), + [sym__subscript_open] = ACTIONS(4924), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4924), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4924), + [sym__cite_author_in_text] = ACTIONS(4924), + [sym__cite_suppress_author] = ACTIONS(4924), + [sym__shortcode_open_escaped] = ACTIONS(4924), + [sym__shortcode_open] = ACTIONS(4924), + [sym__unclosed_span] = ACTIONS(4924), + }, + [STATE(1253)] = { + [ts_builtin_sym_end] = ACTIONS(4928), + [sym__backslash_escape] = ACTIONS(4928), + [sym_entity_reference] = ACTIONS(4928), + [sym_numeric_character_reference] = ACTIONS(4928), + [anon_sym_LT] = ACTIONS(4930), + [anon_sym_GT] = ACTIONS(4928), + [anon_sym_BANG] = ACTIONS(4928), + [anon_sym_DQUOTE] = ACTIONS(4928), + [anon_sym_POUND] = ACTIONS(4928), + [anon_sym_DOLLAR] = ACTIONS(4928), + [anon_sym_PERCENT] = ACTIONS(4928), + [anon_sym_AMP] = ACTIONS(4930), + [anon_sym_SQUOTE] = ACTIONS(4928), + [anon_sym_STAR] = ACTIONS(4928), + [anon_sym_PLUS] = ACTIONS(4928), + [anon_sym_COMMA] = ACTIONS(4928), + [anon_sym_DASH] = ACTIONS(4930), + [anon_sym_DOT] = ACTIONS(4930), + [anon_sym_SLASH] = ACTIONS(4928), + [anon_sym_COLON] = ACTIONS(4928), + [anon_sym_SEMI] = ACTIONS(4928), + [anon_sym_EQ] = ACTIONS(4928), + [anon_sym_QMARK] = ACTIONS(4928), + [anon_sym_LBRACK] = ACTIONS(4930), + [anon_sym_BSLASH] = ACTIONS(4930), + [anon_sym_CARET] = ACTIONS(4930), + [anon_sym__] = ACTIONS(4928), + [anon_sym_BQUOTE] = ACTIONS(4928), + [anon_sym_LBRACE] = ACTIONS(4928), + [anon_sym_PIPE] = ACTIONS(4928), + [anon_sym_TILDE] = ACTIONS(4928), + [anon_sym_LPAREN] = ACTIONS(4928), + [anon_sym_RPAREN] = ACTIONS(4928), + [sym__newline_token] = ACTIONS(4928), + [aux_sym_insert_token1] = ACTIONS(4928), + [aux_sym_delete_token1] = ACTIONS(4928), + [aux_sym_highlight_token1] = ACTIONS(4928), + [aux_sym_edit_comment_token1] = ACTIONS(4928), + [anon_sym_CARET_LBRACK] = ACTIONS(4928), + [anon_sym_LBRACK_CARET] = ACTIONS(4928), + [sym_uri_autolink] = ACTIONS(4928), + [sym_email_autolink] = ACTIONS(4928), + [sym__whitespace_ge_2] = ACTIONS(4928), + [aux_sym__whitespace_token1] = ACTIONS(4930), + [sym__word_no_digit] = ACTIONS(4928), + [sym__digits] = ACTIONS(4928), + [anon_sym_DASH_DASH] = ACTIONS(4930), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4928), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4928), + [sym__code_span_start] = ACTIONS(4928), + [sym__emphasis_open_star] = ACTIONS(4928), + [sym__emphasis_open_underscore] = ACTIONS(4928), + [sym__strikeout_open] = ACTIONS(4928), + [sym__latex_span_start] = ACTIONS(4928), + [sym__single_quote_open] = ACTIONS(4928), + [sym__double_quote_open] = ACTIONS(4928), + [sym__superscript_open] = ACTIONS(4928), + [sym__subscript_open] = ACTIONS(4928), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4928), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4928), + [sym__cite_author_in_text] = ACTIONS(4928), + [sym__cite_suppress_author] = ACTIONS(4928), + [sym__shortcode_open_escaped] = ACTIONS(4928), + [sym__shortcode_open] = ACTIONS(4928), + [sym__unclosed_span] = ACTIONS(4928), + }, + [STATE(1254)] = { + [sym__backslash_escape] = ACTIONS(4964), + [sym_entity_reference] = ACTIONS(4964), + [sym_numeric_character_reference] = ACTIONS(4964), + [anon_sym_LT] = ACTIONS(4966), + [anon_sym_GT] = ACTIONS(4964), + [anon_sym_BANG] = ACTIONS(4964), + [anon_sym_DQUOTE] = ACTIONS(4964), + [anon_sym_POUND] = ACTIONS(4964), + [anon_sym_DOLLAR] = ACTIONS(4964), + [anon_sym_PERCENT] = ACTIONS(4964), + [anon_sym_AMP] = ACTIONS(4966), + [anon_sym_SQUOTE] = ACTIONS(4964), + [anon_sym_STAR] = ACTIONS(4964), + [anon_sym_PLUS] = ACTIONS(4964), + [anon_sym_COMMA] = ACTIONS(4964), + [anon_sym_DASH] = ACTIONS(4966), + [anon_sym_DOT] = ACTIONS(4966), + [anon_sym_SLASH] = ACTIONS(4964), + [anon_sym_COLON] = ACTIONS(4964), + [anon_sym_SEMI] = ACTIONS(4964), + [anon_sym_EQ] = ACTIONS(4964), + [anon_sym_QMARK] = ACTIONS(4964), + [anon_sym_LBRACK] = ACTIONS(4966), + [anon_sym_BSLASH] = ACTIONS(4966), + [anon_sym_CARET] = ACTIONS(4966), + [anon_sym__] = ACTIONS(4964), + [anon_sym_BQUOTE] = ACTIONS(4964), + [anon_sym_LBRACE] = ACTIONS(4964), + [anon_sym_PIPE] = ACTIONS(4964), + [anon_sym_TILDE] = ACTIONS(4964), + [anon_sym_LPAREN] = ACTIONS(4964), + [anon_sym_RPAREN] = ACTIONS(4964), + [sym__newline_token] = ACTIONS(4964), + [aux_sym_insert_token1] = ACTIONS(4964), + [aux_sym_delete_token1] = ACTIONS(4964), + [aux_sym_highlight_token1] = ACTIONS(4964), + [aux_sym_edit_comment_token1] = ACTIONS(4964), + [anon_sym_CARET_LBRACK] = ACTIONS(4964), + [anon_sym_LBRACK_CARET] = ACTIONS(4964), + [sym_uri_autolink] = ACTIONS(4964), + [sym_email_autolink] = ACTIONS(4964), + [sym__whitespace_ge_2] = ACTIONS(4964), + [aux_sym__whitespace_token1] = ACTIONS(4966), + [sym__word_no_digit] = ACTIONS(4964), + [sym__digits] = ACTIONS(4964), + [anon_sym_DASH_DASH] = ACTIONS(4966), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4964), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4964), + [sym__code_span_start] = ACTIONS(4964), + [sym__emphasis_open_star] = ACTIONS(4964), + [sym__emphasis_open_underscore] = ACTIONS(4964), + [sym__emphasis_close_underscore] = ACTIONS(4964), + [sym__strikeout_open] = ACTIONS(4964), + [sym__latex_span_start] = ACTIONS(4964), + [sym__single_quote_open] = ACTIONS(4964), + [sym__double_quote_open] = ACTIONS(4964), + [sym__superscript_open] = ACTIONS(4964), + [sym__subscript_open] = ACTIONS(4964), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4964), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4964), + [sym__cite_author_in_text] = ACTIONS(4964), + [sym__cite_suppress_author] = ACTIONS(4964), + [sym__shortcode_open_escaped] = ACTIONS(4964), + [sym__shortcode_open] = ACTIONS(4964), + [sym__unclosed_span] = ACTIONS(4964), + }, + [STATE(1255)] = { + [ts_builtin_sym_end] = ACTIONS(5000), + [sym__backslash_escape] = ACTIONS(5000), + [sym_entity_reference] = ACTIONS(5000), + [sym_numeric_character_reference] = ACTIONS(5000), + [anon_sym_LT] = ACTIONS(5002), + [anon_sym_GT] = ACTIONS(5000), + [anon_sym_BANG] = ACTIONS(5000), + [anon_sym_DQUOTE] = ACTIONS(5000), + [anon_sym_POUND] = ACTIONS(5000), + [anon_sym_DOLLAR] = ACTIONS(5000), + [anon_sym_PERCENT] = ACTIONS(5000), + [anon_sym_AMP] = ACTIONS(5002), + [anon_sym_SQUOTE] = ACTIONS(5000), + [anon_sym_STAR] = ACTIONS(5000), + [anon_sym_PLUS] = ACTIONS(5000), + [anon_sym_COMMA] = ACTIONS(5000), + [anon_sym_DASH] = ACTIONS(5002), + [anon_sym_DOT] = ACTIONS(5002), + [anon_sym_SLASH] = ACTIONS(5000), + [anon_sym_COLON] = ACTIONS(5000), + [anon_sym_SEMI] = ACTIONS(5000), + [anon_sym_EQ] = ACTIONS(5000), + [anon_sym_QMARK] = ACTIONS(5000), + [anon_sym_LBRACK] = ACTIONS(5002), + [anon_sym_BSLASH] = ACTIONS(5002), + [anon_sym_CARET] = ACTIONS(5002), + [anon_sym__] = ACTIONS(5000), + [anon_sym_BQUOTE] = ACTIONS(5000), + [anon_sym_LBRACE] = ACTIONS(5000), + [anon_sym_PIPE] = ACTIONS(5000), + [anon_sym_TILDE] = ACTIONS(5000), + [anon_sym_LPAREN] = ACTIONS(5000), + [anon_sym_RPAREN] = ACTIONS(5000), + [sym__newline_token] = ACTIONS(5000), + [aux_sym_insert_token1] = ACTIONS(5000), + [aux_sym_delete_token1] = ACTIONS(5000), + [aux_sym_highlight_token1] = ACTIONS(5000), + [aux_sym_edit_comment_token1] = ACTIONS(5000), + [anon_sym_CARET_LBRACK] = ACTIONS(5000), + [anon_sym_LBRACK_CARET] = ACTIONS(5000), + [sym_uri_autolink] = ACTIONS(5000), + [sym_email_autolink] = ACTIONS(5000), + [sym__whitespace_ge_2] = ACTIONS(5000), + [aux_sym__whitespace_token1] = ACTIONS(5002), + [sym__word_no_digit] = ACTIONS(5000), + [sym__digits] = ACTIONS(5000), + [anon_sym_DASH_DASH] = ACTIONS(5002), + [anon_sym_DASH_DASH_DASH] = ACTIONS(5000), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5000), + [sym__code_span_start] = ACTIONS(5000), + [sym__emphasis_open_star] = ACTIONS(5000), + [sym__emphasis_open_underscore] = ACTIONS(5000), + [sym__strikeout_open] = ACTIONS(5000), + [sym__latex_span_start] = ACTIONS(5000), + [sym__single_quote_open] = ACTIONS(5000), + [sym__double_quote_open] = ACTIONS(5000), + [sym__superscript_open] = ACTIONS(5000), + [sym__subscript_open] = ACTIONS(5000), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5000), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5000), + [sym__cite_author_in_text] = ACTIONS(5000), + [sym__cite_suppress_author] = ACTIONS(5000), + [sym__shortcode_open_escaped] = ACTIONS(5000), + [sym__shortcode_open] = ACTIONS(5000), + [sym__unclosed_span] = ACTIONS(5000), + }, + [STATE(1256)] = { + [sym__backslash_escape] = ACTIONS(4940), + [sym_entity_reference] = ACTIONS(4940), + [sym_numeric_character_reference] = ACTIONS(4940), + [anon_sym_LT] = ACTIONS(4942), + [anon_sym_GT] = ACTIONS(4940), + [anon_sym_BANG] = ACTIONS(4940), + [anon_sym_DQUOTE] = ACTIONS(4940), + [anon_sym_POUND] = ACTIONS(4940), + [anon_sym_DOLLAR] = ACTIONS(4940), + [anon_sym_PERCENT] = ACTIONS(4940), + [anon_sym_AMP] = ACTIONS(4942), + [anon_sym_SQUOTE] = ACTIONS(4940), + [anon_sym_STAR] = ACTIONS(4940), + [anon_sym_PLUS] = ACTIONS(4940), + [anon_sym_COMMA] = ACTIONS(4940), + [anon_sym_DASH] = ACTIONS(4942), + [anon_sym_DOT] = ACTIONS(4942), + [anon_sym_SLASH] = ACTIONS(4940), + [anon_sym_COLON] = ACTIONS(4940), + [anon_sym_SEMI] = ACTIONS(4940), + [anon_sym_EQ] = ACTIONS(4940), + [anon_sym_QMARK] = ACTIONS(4940), + [anon_sym_LBRACK] = ACTIONS(4942), + [anon_sym_BSLASH] = ACTIONS(4942), + [anon_sym_CARET] = ACTIONS(4942), + [anon_sym__] = ACTIONS(4940), + [anon_sym_BQUOTE] = ACTIONS(4940), + [anon_sym_LBRACE] = ACTIONS(4940), + [anon_sym_PIPE] = ACTIONS(4940), + [anon_sym_TILDE] = ACTIONS(4940), + [anon_sym_LPAREN] = ACTIONS(4940), + [anon_sym_RPAREN] = ACTIONS(4940), + [sym__newline_token] = ACTIONS(4940), + [aux_sym_insert_token1] = ACTIONS(4940), + [aux_sym_delete_token1] = ACTIONS(4940), + [aux_sym_highlight_token1] = ACTIONS(4940), + [aux_sym_edit_comment_token1] = ACTIONS(4940), + [anon_sym_CARET_LBRACK] = ACTIONS(4940), + [anon_sym_LBRACK_CARET] = ACTIONS(4940), + [sym_uri_autolink] = ACTIONS(4940), + [sym_email_autolink] = ACTIONS(4940), + [sym__whitespace_ge_2] = ACTIONS(4940), + [aux_sym__whitespace_token1] = ACTIONS(4942), + [sym__word_no_digit] = ACTIONS(4940), + [sym__digits] = ACTIONS(4940), + [anon_sym_DASH_DASH] = ACTIONS(4942), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4940), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4940), + [sym__code_span_start] = ACTIONS(4940), + [sym__emphasis_open_star] = ACTIONS(4940), + [sym__emphasis_open_underscore] = ACTIONS(4940), + [sym__emphasis_close_star] = ACTIONS(4940), + [sym__strikeout_open] = ACTIONS(4940), + [sym__latex_span_start] = ACTIONS(4940), + [sym__single_quote_open] = ACTIONS(4940), + [sym__double_quote_open] = ACTIONS(4940), + [sym__superscript_open] = ACTIONS(4940), + [sym__subscript_open] = ACTIONS(4940), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4940), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4940), + [sym__cite_author_in_text] = ACTIONS(4940), + [sym__cite_suppress_author] = ACTIONS(4940), + [sym__shortcode_open_escaped] = ACTIONS(4940), + [sym__shortcode_open] = ACTIONS(4940), + [sym__unclosed_span] = ACTIONS(4940), + }, + [STATE(1257)] = { + [sym__backslash_escape] = ACTIONS(4996), + [sym_entity_reference] = ACTIONS(4996), + [sym_numeric_character_reference] = ACTIONS(4996), + [anon_sym_LT] = ACTIONS(4998), + [anon_sym_GT] = ACTIONS(4996), + [anon_sym_BANG] = ACTIONS(4996), + [anon_sym_DQUOTE] = ACTIONS(4996), + [anon_sym_POUND] = ACTIONS(4996), + [anon_sym_DOLLAR] = ACTIONS(4996), + [anon_sym_PERCENT] = ACTIONS(4996), + [anon_sym_AMP] = ACTIONS(4998), + [anon_sym_SQUOTE] = ACTIONS(4996), + [anon_sym_STAR] = ACTIONS(4996), + [anon_sym_PLUS] = ACTIONS(4996), + [anon_sym_COMMA] = ACTIONS(4996), + [anon_sym_DASH] = ACTIONS(4998), + [anon_sym_DOT] = ACTIONS(4998), + [anon_sym_SLASH] = ACTIONS(4996), + [anon_sym_COLON] = ACTIONS(4996), + [anon_sym_SEMI] = ACTIONS(4996), + [anon_sym_EQ] = ACTIONS(4996), + [anon_sym_QMARK] = ACTIONS(4996), + [anon_sym_LBRACK] = ACTIONS(4998), + [anon_sym_BSLASH] = ACTIONS(4998), + [anon_sym_CARET] = ACTIONS(4998), + [anon_sym__] = ACTIONS(4996), + [anon_sym_BQUOTE] = ACTIONS(4996), + [anon_sym_LBRACE] = ACTIONS(4996), + [anon_sym_PIPE] = ACTIONS(4996), + [anon_sym_TILDE] = ACTIONS(4996), + [anon_sym_LPAREN] = ACTIONS(4996), + [anon_sym_RPAREN] = ACTIONS(4996), + [sym__newline_token] = ACTIONS(4996), + [aux_sym_insert_token1] = ACTIONS(4996), + [aux_sym_delete_token1] = ACTIONS(4996), + [aux_sym_highlight_token1] = ACTIONS(4996), + [aux_sym_edit_comment_token1] = ACTIONS(4996), + [anon_sym_CARET_LBRACK] = ACTIONS(4996), + [anon_sym_LBRACK_CARET] = ACTIONS(4996), + [sym_uri_autolink] = ACTIONS(4996), + [sym_email_autolink] = ACTIONS(4996), + [sym__whitespace_ge_2] = ACTIONS(4996), + [aux_sym__whitespace_token1] = ACTIONS(4998), + [sym__word_no_digit] = ACTIONS(4996), + [sym__digits] = ACTIONS(4996), + [anon_sym_DASH_DASH] = ACTIONS(4998), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4996), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4996), + [sym__code_span_start] = ACTIONS(4996), + [sym__emphasis_open_star] = ACTIONS(4996), + [sym__emphasis_open_underscore] = ACTIONS(4996), + [sym__strikeout_open] = ACTIONS(4996), + [sym__strikeout_close] = ACTIONS(4996), + [sym__latex_span_start] = ACTIONS(4996), + [sym__single_quote_open] = ACTIONS(4996), + [sym__double_quote_open] = ACTIONS(4996), + [sym__superscript_open] = ACTIONS(4996), + [sym__subscript_open] = ACTIONS(4996), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4996), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4996), + [sym__cite_author_in_text] = ACTIONS(4996), + [sym__cite_suppress_author] = ACTIONS(4996), + [sym__shortcode_open_escaped] = ACTIONS(4996), + [sym__shortcode_open] = ACTIONS(4996), + [sym__unclosed_span] = ACTIONS(4996), + }, + [STATE(1258)] = { + [sym__backslash_escape] = ACTIONS(5000), + [sym_entity_reference] = ACTIONS(5000), + [sym_numeric_character_reference] = ACTIONS(5000), + [anon_sym_LT] = ACTIONS(5002), + [anon_sym_GT] = ACTIONS(5000), + [anon_sym_BANG] = ACTIONS(5000), + [anon_sym_DQUOTE] = ACTIONS(5000), + [anon_sym_POUND] = ACTIONS(5000), + [anon_sym_DOLLAR] = ACTIONS(5000), + [anon_sym_PERCENT] = ACTIONS(5000), + [anon_sym_AMP] = ACTIONS(5002), + [anon_sym_SQUOTE] = ACTIONS(5000), + [anon_sym_STAR] = ACTIONS(5000), + [anon_sym_PLUS] = ACTIONS(5000), + [anon_sym_COMMA] = ACTIONS(5000), + [anon_sym_DASH] = ACTIONS(5002), + [anon_sym_DOT] = ACTIONS(5002), + [anon_sym_SLASH] = ACTIONS(5000), + [anon_sym_COLON] = ACTIONS(5000), + [anon_sym_SEMI] = ACTIONS(5000), + [anon_sym_EQ] = ACTIONS(5000), + [anon_sym_QMARK] = ACTIONS(5000), + [anon_sym_LBRACK] = ACTIONS(5002), + [anon_sym_BSLASH] = ACTIONS(5002), + [anon_sym_CARET] = ACTIONS(5002), + [anon_sym__] = ACTIONS(5000), + [anon_sym_BQUOTE] = ACTIONS(5000), + [anon_sym_LBRACE] = ACTIONS(5000), + [anon_sym_PIPE] = ACTIONS(5000), + [anon_sym_TILDE] = ACTIONS(5000), + [anon_sym_LPAREN] = ACTIONS(5000), + [anon_sym_RPAREN] = ACTIONS(5000), + [sym__newline_token] = ACTIONS(5000), + [aux_sym_insert_token1] = ACTIONS(5000), + [aux_sym_delete_token1] = ACTIONS(5000), + [aux_sym_highlight_token1] = ACTIONS(5000), + [aux_sym_edit_comment_token1] = ACTIONS(5000), + [anon_sym_CARET_LBRACK] = ACTIONS(5000), + [anon_sym_LBRACK_CARET] = ACTIONS(5000), + [sym_uri_autolink] = ACTIONS(5000), + [sym_email_autolink] = ACTIONS(5000), + [sym__whitespace_ge_2] = ACTIONS(5000), + [aux_sym__whitespace_token1] = ACTIONS(5002), + [sym__word_no_digit] = ACTIONS(5000), + [sym__digits] = ACTIONS(5000), + [anon_sym_DASH_DASH] = ACTIONS(5002), + [anon_sym_DASH_DASH_DASH] = ACTIONS(5000), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5000), + [sym__code_span_start] = ACTIONS(5000), + [sym__emphasis_open_star] = ACTIONS(5000), + [sym__emphasis_open_underscore] = ACTIONS(5000), + [sym__strikeout_open] = ACTIONS(5000), + [sym__strikeout_close] = ACTIONS(5000), + [sym__latex_span_start] = ACTIONS(5000), + [sym__single_quote_open] = ACTIONS(5000), + [sym__double_quote_open] = ACTIONS(5000), + [sym__superscript_open] = ACTIONS(5000), + [sym__subscript_open] = ACTIONS(5000), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5000), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5000), + [sym__cite_author_in_text] = ACTIONS(5000), + [sym__cite_suppress_author] = ACTIONS(5000), + [sym__shortcode_open_escaped] = ACTIONS(5000), + [sym__shortcode_open] = ACTIONS(5000), + [sym__unclosed_span] = ACTIONS(5000), + }, + [STATE(1259)] = { + [sym__backslash_escape] = ACTIONS(4648), + [sym_entity_reference] = ACTIONS(4648), + [sym_numeric_character_reference] = ACTIONS(4648), + [anon_sym_LT] = ACTIONS(4650), + [anon_sym_GT] = ACTIONS(4648), + [anon_sym_BANG] = ACTIONS(4648), + [anon_sym_DQUOTE] = ACTIONS(4648), + [anon_sym_POUND] = ACTIONS(4648), + [anon_sym_DOLLAR] = ACTIONS(4648), + [anon_sym_PERCENT] = ACTIONS(4648), + [anon_sym_AMP] = ACTIONS(4650), + [anon_sym_SQUOTE] = ACTIONS(4648), + [anon_sym_STAR] = ACTIONS(4648), + [anon_sym_PLUS] = ACTIONS(4648), + [anon_sym_COMMA] = ACTIONS(4648), + [anon_sym_DASH] = ACTIONS(4650), + [anon_sym_DOT] = ACTIONS(4650), + [anon_sym_SLASH] = ACTIONS(4648), + [anon_sym_COLON] = ACTIONS(4648), + [anon_sym_SEMI] = ACTIONS(4648), + [anon_sym_EQ] = ACTIONS(4648), + [anon_sym_QMARK] = ACTIONS(4648), + [anon_sym_LBRACK] = ACTIONS(4650), + [anon_sym_BSLASH] = ACTIONS(4650), + [anon_sym_CARET] = ACTIONS(4650), + [anon_sym__] = ACTIONS(4648), + [anon_sym_BQUOTE] = ACTIONS(4648), + [anon_sym_LBRACE] = ACTIONS(4648), + [anon_sym_PIPE] = ACTIONS(4648), + [anon_sym_TILDE] = ACTIONS(4648), + [anon_sym_LPAREN] = ACTIONS(4648), + [anon_sym_RPAREN] = ACTIONS(4648), + [sym__newline_token] = ACTIONS(4648), + [aux_sym_insert_token1] = ACTIONS(4648), + [aux_sym_delete_token1] = ACTIONS(4648), + [aux_sym_highlight_token1] = ACTIONS(4648), + [aux_sym_edit_comment_token1] = ACTIONS(4648), + [anon_sym_CARET_LBRACK] = ACTIONS(4648), + [anon_sym_LBRACK_CARET] = ACTIONS(4648), + [sym_uri_autolink] = ACTIONS(4648), + [sym_email_autolink] = ACTIONS(4648), + [sym__whitespace_ge_2] = ACTIONS(4648), + [aux_sym__whitespace_token1] = ACTIONS(4650), + [sym__word_no_digit] = ACTIONS(4648), + [sym__digits] = ACTIONS(4648), + [anon_sym_DASH_DASH] = ACTIONS(4650), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4648), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4648), + [sym__code_span_start] = ACTIONS(4648), + [sym__emphasis_open_star] = ACTIONS(4648), + [sym__emphasis_open_underscore] = ACTIONS(4648), + [sym__strikeout_open] = ACTIONS(4648), + [sym__latex_span_start] = ACTIONS(4648), + [sym__single_quote_open] = ACTIONS(4648), + [sym__double_quote_open] = ACTIONS(4648), + [sym__double_quote_close] = ACTIONS(4648), + [sym__superscript_open] = ACTIONS(4648), + [sym__subscript_open] = ACTIONS(4648), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4648), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4648), + [sym__cite_author_in_text] = ACTIONS(4648), + [sym__cite_suppress_author] = ACTIONS(4648), + [sym__shortcode_open_escaped] = ACTIONS(4648), + [sym__shortcode_open] = ACTIONS(4648), + [sym__unclosed_span] = ACTIONS(4648), + }, + [STATE(1260)] = { + [sym__backslash_escape] = ACTIONS(5004), + [sym_entity_reference] = ACTIONS(5004), + [sym_numeric_character_reference] = ACTIONS(5004), + [anon_sym_LT] = ACTIONS(5006), + [anon_sym_GT] = ACTIONS(5004), + [anon_sym_BANG] = ACTIONS(5004), + [anon_sym_DQUOTE] = ACTIONS(5004), + [anon_sym_POUND] = ACTIONS(5004), + [anon_sym_DOLLAR] = ACTIONS(5004), + [anon_sym_PERCENT] = ACTIONS(5004), + [anon_sym_AMP] = ACTIONS(5006), + [anon_sym_SQUOTE] = ACTIONS(5004), + [anon_sym_STAR] = ACTIONS(5004), + [anon_sym_PLUS] = ACTIONS(5004), + [anon_sym_COMMA] = ACTIONS(5004), + [anon_sym_DASH] = ACTIONS(5006), + [anon_sym_DOT] = ACTIONS(5006), + [anon_sym_SLASH] = ACTIONS(5004), + [anon_sym_COLON] = ACTIONS(5004), + [anon_sym_SEMI] = ACTIONS(5004), + [anon_sym_EQ] = ACTIONS(5004), + [anon_sym_QMARK] = ACTIONS(5004), + [anon_sym_LBRACK] = ACTIONS(5006), + [anon_sym_BSLASH] = ACTIONS(5006), + [anon_sym_CARET] = ACTIONS(5006), + [anon_sym__] = ACTIONS(5004), + [anon_sym_BQUOTE] = ACTIONS(5004), + [anon_sym_LBRACE] = ACTIONS(5004), + [anon_sym_PIPE] = ACTIONS(5004), + [anon_sym_TILDE] = ACTIONS(5004), + [anon_sym_LPAREN] = ACTIONS(5004), + [anon_sym_RPAREN] = ACTIONS(5004), + [sym__newline_token] = ACTIONS(5004), + [aux_sym_insert_token1] = ACTIONS(5004), + [aux_sym_delete_token1] = ACTIONS(5004), + [aux_sym_highlight_token1] = ACTIONS(5004), + [aux_sym_edit_comment_token1] = ACTIONS(5004), + [anon_sym_CARET_LBRACK] = ACTIONS(5004), + [anon_sym_LBRACK_CARET] = ACTIONS(5004), + [sym_uri_autolink] = ACTIONS(5004), + [sym_email_autolink] = ACTIONS(5004), + [sym__whitespace_ge_2] = ACTIONS(5004), + [aux_sym__whitespace_token1] = ACTIONS(5006), + [sym__word_no_digit] = ACTIONS(5004), + [sym__digits] = ACTIONS(5004), + [anon_sym_DASH_DASH] = ACTIONS(5006), + [anon_sym_DASH_DASH_DASH] = ACTIONS(5004), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5004), + [sym__code_span_start] = ACTIONS(5004), + [sym__emphasis_open_star] = ACTIONS(5004), + [sym__emphasis_open_underscore] = ACTIONS(5004), + [sym__strikeout_open] = ACTIONS(5004), + [sym__strikeout_close] = ACTIONS(5004), + [sym__latex_span_start] = ACTIONS(5004), + [sym__single_quote_open] = ACTIONS(5004), + [sym__double_quote_open] = ACTIONS(5004), + [sym__superscript_open] = ACTIONS(5004), + [sym__subscript_open] = ACTIONS(5004), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5004), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5004), + [sym__cite_author_in_text] = ACTIONS(5004), + [sym__cite_suppress_author] = ACTIONS(5004), + [sym__shortcode_open_escaped] = ACTIONS(5004), + [sym__shortcode_open] = ACTIONS(5004), + [sym__unclosed_span] = ACTIONS(5004), + }, + [STATE(1261)] = { + [sym__backslash_escape] = ACTIONS(5008), + [sym_entity_reference] = ACTIONS(5008), + [sym_numeric_character_reference] = ACTIONS(5008), + [anon_sym_LT] = ACTIONS(5010), + [anon_sym_GT] = ACTIONS(5008), + [anon_sym_BANG] = ACTIONS(5008), + [anon_sym_DQUOTE] = ACTIONS(5008), + [anon_sym_POUND] = ACTIONS(5008), + [anon_sym_DOLLAR] = ACTIONS(5008), + [anon_sym_PERCENT] = ACTIONS(5008), + [anon_sym_AMP] = ACTIONS(5010), + [anon_sym_SQUOTE] = ACTIONS(5008), + [anon_sym_STAR] = ACTIONS(5008), + [anon_sym_PLUS] = ACTIONS(5008), + [anon_sym_COMMA] = ACTIONS(5008), + [anon_sym_DASH] = ACTIONS(5010), + [anon_sym_DOT] = ACTIONS(5010), + [anon_sym_SLASH] = ACTIONS(5008), + [anon_sym_COLON] = ACTIONS(5008), + [anon_sym_SEMI] = ACTIONS(5008), + [anon_sym_EQ] = ACTIONS(5008), + [anon_sym_QMARK] = ACTIONS(5008), + [anon_sym_LBRACK] = ACTIONS(5010), + [anon_sym_BSLASH] = ACTIONS(5010), + [anon_sym_CARET] = ACTIONS(5010), + [anon_sym__] = ACTIONS(5008), + [anon_sym_BQUOTE] = ACTIONS(5008), + [anon_sym_LBRACE] = ACTIONS(5008), + [anon_sym_PIPE] = ACTIONS(5008), + [anon_sym_TILDE] = ACTIONS(5008), + [anon_sym_LPAREN] = ACTIONS(5008), + [anon_sym_RPAREN] = ACTIONS(5008), + [sym__newline_token] = ACTIONS(5008), + [aux_sym_insert_token1] = ACTIONS(5008), + [aux_sym_delete_token1] = ACTIONS(5008), + [aux_sym_highlight_token1] = ACTIONS(5008), + [aux_sym_edit_comment_token1] = ACTIONS(5008), + [anon_sym_CARET_LBRACK] = ACTIONS(5008), + [anon_sym_LBRACK_CARET] = ACTIONS(5008), + [sym_uri_autolink] = ACTIONS(5008), + [sym_email_autolink] = ACTIONS(5008), + [sym__whitespace_ge_2] = ACTIONS(5008), + [aux_sym__whitespace_token1] = ACTIONS(5010), + [sym__word_no_digit] = ACTIONS(5008), + [sym__digits] = ACTIONS(5008), + [anon_sym_DASH_DASH] = ACTIONS(5010), + [anon_sym_DASH_DASH_DASH] = ACTIONS(5008), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5008), + [sym__code_span_start] = ACTIONS(5008), + [sym__emphasis_open_star] = ACTIONS(5008), + [sym__emphasis_open_underscore] = ACTIONS(5008), + [sym__strikeout_open] = ACTIONS(5008), + [sym__strikeout_close] = ACTIONS(5008), + [sym__latex_span_start] = ACTIONS(5008), + [sym__single_quote_open] = ACTIONS(5008), + [sym__double_quote_open] = ACTIONS(5008), + [sym__superscript_open] = ACTIONS(5008), + [sym__subscript_open] = ACTIONS(5008), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5008), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5008), + [sym__cite_author_in_text] = ACTIONS(5008), + [sym__cite_suppress_author] = ACTIONS(5008), + [sym__shortcode_open_escaped] = ACTIONS(5008), + [sym__shortcode_open] = ACTIONS(5008), + [sym__unclosed_span] = ACTIONS(5008), + }, + [STATE(1262)] = { + [sym__backslash_escape] = ACTIONS(4648), + [sym_entity_reference] = ACTIONS(4648), + [sym_numeric_character_reference] = ACTIONS(4648), + [anon_sym_LT] = ACTIONS(4650), + [anon_sym_GT] = ACTIONS(4648), + [anon_sym_BANG] = ACTIONS(4648), + [anon_sym_DQUOTE] = ACTIONS(4648), + [anon_sym_POUND] = ACTIONS(4648), + [anon_sym_DOLLAR] = ACTIONS(4648), + [anon_sym_PERCENT] = ACTIONS(4648), + [anon_sym_AMP] = ACTIONS(4650), + [anon_sym_SQUOTE] = ACTIONS(4648), + [anon_sym_STAR] = ACTIONS(4648), + [anon_sym_PLUS] = ACTIONS(4648), + [anon_sym_COMMA] = ACTIONS(4648), + [anon_sym_DASH] = ACTIONS(4650), + [anon_sym_DOT] = ACTIONS(4650), + [anon_sym_SLASH] = ACTIONS(4648), + [anon_sym_COLON] = ACTIONS(4648), + [anon_sym_SEMI] = ACTIONS(4648), + [anon_sym_EQ] = ACTIONS(4648), + [anon_sym_QMARK] = ACTIONS(4648), + [anon_sym_LBRACK] = ACTIONS(4650), + [anon_sym_BSLASH] = ACTIONS(4650), + [anon_sym_CARET] = ACTIONS(4650), + [anon_sym__] = ACTIONS(4648), + [anon_sym_BQUOTE] = ACTIONS(4648), + [anon_sym_LBRACE] = ACTIONS(4648), + [anon_sym_PIPE] = ACTIONS(4648), + [anon_sym_TILDE] = ACTIONS(4648), + [anon_sym_LPAREN] = ACTIONS(4648), + [anon_sym_RPAREN] = ACTIONS(4648), + [sym__newline_token] = ACTIONS(4648), + [aux_sym_insert_token1] = ACTIONS(4648), + [aux_sym_delete_token1] = ACTIONS(4648), + [aux_sym_highlight_token1] = ACTIONS(4648), + [aux_sym_edit_comment_token1] = ACTIONS(4648), + [anon_sym_CARET_LBRACK] = ACTIONS(4648), + [anon_sym_LBRACK_CARET] = ACTIONS(4648), + [sym_uri_autolink] = ACTIONS(4648), + [sym_email_autolink] = ACTIONS(4648), + [sym__whitespace_ge_2] = ACTIONS(4648), + [aux_sym__whitespace_token1] = ACTIONS(4650), + [sym__word_no_digit] = ACTIONS(4648), + [sym__digits] = ACTIONS(4648), + [anon_sym_DASH_DASH] = ACTIONS(4650), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4648), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4648), + [sym__code_span_start] = ACTIONS(4648), + [sym__emphasis_open_star] = ACTIONS(4648), + [sym__emphasis_open_underscore] = ACTIONS(4648), + [sym__emphasis_close_star] = ACTIONS(4648), + [sym__strikeout_open] = ACTIONS(4648), + [sym__latex_span_start] = ACTIONS(4648), + [sym__single_quote_open] = ACTIONS(4648), + [sym__double_quote_open] = ACTIONS(4648), + [sym__superscript_open] = ACTIONS(4648), + [sym__subscript_open] = ACTIONS(4648), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4648), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4648), + [sym__cite_author_in_text] = ACTIONS(4648), + [sym__cite_suppress_author] = ACTIONS(4648), + [sym__shortcode_open_escaped] = ACTIONS(4648), + [sym__shortcode_open] = ACTIONS(4648), + [sym__unclosed_span] = ACTIONS(4648), + }, + [STATE(1263)] = { + [sym__backslash_escape] = ACTIONS(4976), + [sym_entity_reference] = ACTIONS(4976), + [sym_numeric_character_reference] = ACTIONS(4976), + [anon_sym_LT] = ACTIONS(4978), + [anon_sym_GT] = ACTIONS(4976), + [anon_sym_BANG] = ACTIONS(4976), + [anon_sym_DQUOTE] = ACTIONS(4976), + [anon_sym_POUND] = ACTIONS(4976), + [anon_sym_DOLLAR] = ACTIONS(4976), + [anon_sym_PERCENT] = ACTIONS(4976), + [anon_sym_AMP] = ACTIONS(4978), + [anon_sym_SQUOTE] = ACTIONS(4976), + [anon_sym_STAR] = ACTIONS(4976), + [anon_sym_PLUS] = ACTIONS(4976), + [anon_sym_COMMA] = ACTIONS(4976), + [anon_sym_DASH] = ACTIONS(4978), + [anon_sym_DOT] = ACTIONS(4978), + [anon_sym_SLASH] = ACTIONS(4976), + [anon_sym_COLON] = ACTIONS(4976), + [anon_sym_SEMI] = ACTIONS(4976), + [anon_sym_EQ] = ACTIONS(4976), + [anon_sym_QMARK] = ACTIONS(4976), + [anon_sym_LBRACK] = ACTIONS(4978), + [anon_sym_BSLASH] = ACTIONS(4978), + [anon_sym_CARET] = ACTIONS(4978), + [anon_sym__] = ACTIONS(4976), + [anon_sym_BQUOTE] = ACTIONS(4976), + [anon_sym_LBRACE] = ACTIONS(4976), + [anon_sym_PIPE] = ACTIONS(4976), + [anon_sym_TILDE] = ACTIONS(4976), + [anon_sym_LPAREN] = ACTIONS(4976), + [anon_sym_RPAREN] = ACTIONS(4976), + [sym__newline_token] = ACTIONS(4976), + [aux_sym_insert_token1] = ACTIONS(4976), + [aux_sym_delete_token1] = ACTIONS(4976), + [aux_sym_highlight_token1] = ACTIONS(4976), + [aux_sym_edit_comment_token1] = ACTIONS(4976), + [anon_sym_CARET_LBRACK] = ACTIONS(4976), + [anon_sym_LBRACK_CARET] = ACTIONS(4976), + [sym_uri_autolink] = ACTIONS(4976), + [sym_email_autolink] = ACTIONS(4976), + [sym__whitespace_ge_2] = ACTIONS(4976), + [aux_sym__whitespace_token1] = ACTIONS(4978), + [sym__word_no_digit] = ACTIONS(4976), + [sym__digits] = ACTIONS(4976), + [anon_sym_DASH_DASH] = ACTIONS(4978), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4976), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4976), + [sym__code_span_start] = ACTIONS(4976), + [sym__emphasis_open_star] = ACTIONS(4976), + [sym__emphasis_open_underscore] = ACTIONS(4976), + [sym__strikeout_open] = ACTIONS(4976), + [sym__latex_span_start] = ACTIONS(4976), + [sym__single_quote_open] = ACTIONS(4976), + [sym__double_quote_open] = ACTIONS(4976), + [sym__double_quote_close] = ACTIONS(4976), + [sym__superscript_open] = ACTIONS(4976), + [sym__subscript_open] = ACTIONS(4976), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4976), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4976), + [sym__cite_author_in_text] = ACTIONS(4976), + [sym__cite_suppress_author] = ACTIONS(4976), + [sym__shortcode_open_escaped] = ACTIONS(4976), + [sym__shortcode_open] = ACTIONS(4976), + [sym__unclosed_span] = ACTIONS(4976), + }, + [STATE(1264)] = { + [sym__backslash_escape] = ACTIONS(4980), + [sym_entity_reference] = ACTIONS(4980), + [sym_numeric_character_reference] = ACTIONS(4980), + [anon_sym_LT] = ACTIONS(4982), + [anon_sym_GT] = ACTIONS(4980), + [anon_sym_BANG] = ACTIONS(4980), + [anon_sym_DQUOTE] = ACTIONS(4980), + [anon_sym_POUND] = ACTIONS(4980), + [anon_sym_DOLLAR] = ACTIONS(4980), + [anon_sym_PERCENT] = ACTIONS(4980), + [anon_sym_AMP] = ACTIONS(4982), + [anon_sym_SQUOTE] = ACTIONS(4980), + [anon_sym_STAR] = ACTIONS(4980), + [anon_sym_PLUS] = ACTIONS(4980), + [anon_sym_COMMA] = ACTIONS(4980), + [anon_sym_DASH] = ACTIONS(4982), + [anon_sym_DOT] = ACTIONS(4982), + [anon_sym_SLASH] = ACTIONS(4980), + [anon_sym_COLON] = ACTIONS(4980), + [anon_sym_SEMI] = ACTIONS(4980), + [anon_sym_EQ] = ACTIONS(4980), + [anon_sym_QMARK] = ACTIONS(4980), + [anon_sym_LBRACK] = ACTIONS(4982), + [anon_sym_BSLASH] = ACTIONS(4982), + [anon_sym_CARET] = ACTIONS(4982), + [anon_sym__] = ACTIONS(4980), + [anon_sym_BQUOTE] = ACTIONS(4980), + [anon_sym_LBRACE] = ACTIONS(4980), + [anon_sym_PIPE] = ACTIONS(4980), + [anon_sym_TILDE] = ACTIONS(4980), + [anon_sym_LPAREN] = ACTIONS(4980), + [anon_sym_RPAREN] = ACTIONS(4980), + [sym__newline_token] = ACTIONS(4980), + [aux_sym_insert_token1] = ACTIONS(4980), + [aux_sym_delete_token1] = ACTIONS(4980), + [aux_sym_highlight_token1] = ACTIONS(4980), + [aux_sym_edit_comment_token1] = ACTIONS(4980), + [anon_sym_CARET_LBRACK] = ACTIONS(4980), + [anon_sym_LBRACK_CARET] = ACTIONS(4980), + [sym_uri_autolink] = ACTIONS(4980), + [sym_email_autolink] = ACTIONS(4980), + [sym__whitespace_ge_2] = ACTIONS(4980), + [aux_sym__whitespace_token1] = ACTIONS(4982), + [sym__word_no_digit] = ACTIONS(4980), + [sym__digits] = ACTIONS(4980), + [anon_sym_DASH_DASH] = ACTIONS(4982), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4980), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4980), + [sym__code_span_start] = ACTIONS(4980), + [sym__emphasis_open_star] = ACTIONS(4980), + [sym__emphasis_open_underscore] = ACTIONS(4980), + [sym__strikeout_open] = ACTIONS(4980), + [sym__latex_span_start] = ACTIONS(4980), + [sym__single_quote_open] = ACTIONS(4980), + [sym__double_quote_open] = ACTIONS(4980), + [sym__double_quote_close] = ACTIONS(4980), + [sym__superscript_open] = ACTIONS(4980), + [sym__subscript_open] = ACTIONS(4980), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4980), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4980), + [sym__cite_author_in_text] = ACTIONS(4980), + [sym__cite_suppress_author] = ACTIONS(4980), + [sym__shortcode_open_escaped] = ACTIONS(4980), + [sym__shortcode_open] = ACTIONS(4980), + [sym__unclosed_span] = ACTIONS(4980), + }, + [STATE(1265)] = { + [sym__backslash_escape] = ACTIONS(4976), + [sym_entity_reference] = ACTIONS(4976), + [sym_numeric_character_reference] = ACTIONS(4976), + [anon_sym_LT] = ACTIONS(4978), + [anon_sym_GT] = ACTIONS(4976), + [anon_sym_BANG] = ACTIONS(4976), + [anon_sym_DQUOTE] = ACTIONS(4976), + [anon_sym_POUND] = ACTIONS(4976), + [anon_sym_DOLLAR] = ACTIONS(4976), + [anon_sym_PERCENT] = ACTIONS(4976), + [anon_sym_AMP] = ACTIONS(4978), + [anon_sym_SQUOTE] = ACTIONS(4976), + [anon_sym_STAR] = ACTIONS(4976), + [anon_sym_PLUS] = ACTIONS(4976), + [anon_sym_COMMA] = ACTIONS(4976), + [anon_sym_DASH] = ACTIONS(4978), + [anon_sym_DOT] = ACTIONS(4978), + [anon_sym_SLASH] = ACTIONS(4976), + [anon_sym_COLON] = ACTIONS(4976), + [anon_sym_SEMI] = ACTIONS(4976), + [anon_sym_EQ] = ACTIONS(4976), + [anon_sym_QMARK] = ACTIONS(4976), + [anon_sym_LBRACK] = ACTIONS(4978), + [anon_sym_BSLASH] = ACTIONS(4978), + [anon_sym_CARET] = ACTIONS(4978), + [anon_sym__] = ACTIONS(4976), + [anon_sym_BQUOTE] = ACTIONS(4976), + [anon_sym_LBRACE] = ACTIONS(4976), + [anon_sym_PIPE] = ACTIONS(4976), + [anon_sym_TILDE] = ACTIONS(4976), + [anon_sym_LPAREN] = ACTIONS(4976), + [anon_sym_RPAREN] = ACTIONS(4976), + [sym__newline_token] = ACTIONS(4976), + [aux_sym_insert_token1] = ACTIONS(4976), + [aux_sym_delete_token1] = ACTIONS(4976), + [aux_sym_highlight_token1] = ACTIONS(4976), + [aux_sym_edit_comment_token1] = ACTIONS(4976), + [anon_sym_CARET_LBRACK] = ACTIONS(4976), + [anon_sym_LBRACK_CARET] = ACTIONS(4976), + [sym_uri_autolink] = ACTIONS(4976), + [sym_email_autolink] = ACTIONS(4976), + [sym__whitespace_ge_2] = ACTIONS(4976), + [aux_sym__whitespace_token1] = ACTIONS(4978), + [sym__word_no_digit] = ACTIONS(4976), + [sym__digits] = ACTIONS(4976), + [anon_sym_DASH_DASH] = ACTIONS(4978), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4976), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4976), + [sym__code_span_start] = ACTIONS(4976), + [sym__emphasis_open_star] = ACTIONS(4976), + [sym__emphasis_open_underscore] = ACTIONS(4976), + [sym__emphasis_close_star] = ACTIONS(4976), + [sym__strikeout_open] = ACTIONS(4976), + [sym__latex_span_start] = ACTIONS(4976), + [sym__single_quote_open] = ACTIONS(4976), + [sym__double_quote_open] = ACTIONS(4976), + [sym__superscript_open] = ACTIONS(4976), + [sym__subscript_open] = ACTIONS(4976), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4976), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4976), + [sym__cite_author_in_text] = ACTIONS(4976), + [sym__cite_suppress_author] = ACTIONS(4976), + [sym__shortcode_open_escaped] = ACTIONS(4976), + [sym__shortcode_open] = ACTIONS(4976), + [sym__unclosed_span] = ACTIONS(4976), + }, + [STATE(1266)] = { + [sym__backslash_escape] = ACTIONS(5064), + [sym_entity_reference] = ACTIONS(5064), + [sym_numeric_character_reference] = ACTIONS(5064), + [anon_sym_LT] = ACTIONS(5066), + [anon_sym_GT] = ACTIONS(5064), + [anon_sym_BANG] = ACTIONS(5064), + [anon_sym_DQUOTE] = ACTIONS(5064), + [anon_sym_POUND] = ACTIONS(5064), + [anon_sym_DOLLAR] = ACTIONS(5064), + [anon_sym_PERCENT] = ACTIONS(5064), + [anon_sym_AMP] = ACTIONS(5066), + [anon_sym_SQUOTE] = ACTIONS(5064), + [anon_sym_STAR] = ACTIONS(5064), + [anon_sym_PLUS] = ACTIONS(5064), + [anon_sym_COMMA] = ACTIONS(5064), + [anon_sym_DASH] = ACTIONS(5066), + [anon_sym_DOT] = ACTIONS(5066), + [anon_sym_SLASH] = ACTIONS(5064), + [anon_sym_COLON] = ACTIONS(5064), + [anon_sym_SEMI] = ACTIONS(5064), + [anon_sym_EQ] = ACTIONS(5064), + [anon_sym_QMARK] = ACTIONS(5064), + [anon_sym_LBRACK] = ACTIONS(5066), + [anon_sym_BSLASH] = ACTIONS(5066), + [anon_sym_CARET] = ACTIONS(5066), + [anon_sym__] = ACTIONS(5064), + [anon_sym_BQUOTE] = ACTIONS(5064), + [anon_sym_LBRACE] = ACTIONS(5064), + [anon_sym_PIPE] = ACTIONS(5064), + [anon_sym_TILDE] = ACTIONS(5064), + [anon_sym_LPAREN] = ACTIONS(5064), + [anon_sym_RPAREN] = ACTIONS(5064), + [sym__newline_token] = ACTIONS(5064), + [aux_sym_insert_token1] = ACTIONS(5064), + [aux_sym_delete_token1] = ACTIONS(5064), + [aux_sym_highlight_token1] = ACTIONS(5064), + [aux_sym_edit_comment_token1] = ACTIONS(5064), + [anon_sym_CARET_LBRACK] = ACTIONS(5064), + [anon_sym_LBRACK_CARET] = ACTIONS(5064), + [sym_uri_autolink] = ACTIONS(5064), + [sym_email_autolink] = ACTIONS(5064), + [sym__whitespace_ge_2] = ACTIONS(5064), + [aux_sym__whitespace_token1] = ACTIONS(5066), + [sym__word_no_digit] = ACTIONS(5064), + [sym__digits] = ACTIONS(5064), + [anon_sym_DASH_DASH] = ACTIONS(5066), + [anon_sym_DASH_DASH_DASH] = ACTIONS(5064), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5064), + [sym__code_span_start] = ACTIONS(5064), + [sym__emphasis_open_star] = ACTIONS(5064), + [sym__emphasis_open_underscore] = ACTIONS(5064), + [sym__emphasis_close_star] = ACTIONS(5102), + [sym__strikeout_open] = ACTIONS(5064), + [sym__latex_span_start] = ACTIONS(5064), + [sym__single_quote_open] = ACTIONS(5064), + [sym__double_quote_open] = ACTIONS(5064), + [sym__superscript_open] = ACTIONS(5064), + [sym__subscript_open] = ACTIONS(5064), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5064), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5064), + [sym__cite_author_in_text] = ACTIONS(5064), + [sym__cite_suppress_author] = ACTIONS(5064), + [sym__shortcode_open_escaped] = ACTIONS(5064), + [sym__shortcode_open] = ACTIONS(5064), + [sym__unclosed_span] = ACTIONS(5064), + }, + [STATE(1267)] = { + [sym__backslash_escape] = ACTIONS(4980), + [sym_entity_reference] = ACTIONS(4980), + [sym_numeric_character_reference] = ACTIONS(4980), + [anon_sym_LT] = ACTIONS(4982), + [anon_sym_GT] = ACTIONS(4980), + [anon_sym_BANG] = ACTIONS(4980), + [anon_sym_DQUOTE] = ACTIONS(4980), + [anon_sym_POUND] = ACTIONS(4980), + [anon_sym_DOLLAR] = ACTIONS(4980), + [anon_sym_PERCENT] = ACTIONS(4980), + [anon_sym_AMP] = ACTIONS(4982), + [anon_sym_SQUOTE] = ACTIONS(4980), + [anon_sym_STAR] = ACTIONS(4980), + [anon_sym_PLUS] = ACTIONS(4980), + [anon_sym_COMMA] = ACTIONS(4980), + [anon_sym_DASH] = ACTIONS(4982), + [anon_sym_DOT] = ACTIONS(4982), + [anon_sym_SLASH] = ACTIONS(4980), + [anon_sym_COLON] = ACTIONS(4980), + [anon_sym_SEMI] = ACTIONS(4980), + [anon_sym_EQ] = ACTIONS(4980), + [anon_sym_QMARK] = ACTIONS(4980), + [anon_sym_LBRACK] = ACTIONS(4982), + [anon_sym_BSLASH] = ACTIONS(4982), + [anon_sym_CARET] = ACTIONS(4982), + [anon_sym__] = ACTIONS(4980), + [anon_sym_BQUOTE] = ACTIONS(4980), + [anon_sym_LBRACE] = ACTIONS(4980), + [anon_sym_PIPE] = ACTIONS(4980), + [anon_sym_TILDE] = ACTIONS(4980), + [anon_sym_LPAREN] = ACTIONS(4980), + [anon_sym_RPAREN] = ACTIONS(4980), + [sym__newline_token] = ACTIONS(4980), + [aux_sym_insert_token1] = ACTIONS(4980), + [aux_sym_delete_token1] = ACTIONS(4980), + [aux_sym_highlight_token1] = ACTIONS(4980), + [aux_sym_edit_comment_token1] = ACTIONS(4980), + [anon_sym_CARET_LBRACK] = ACTIONS(4980), + [anon_sym_LBRACK_CARET] = ACTIONS(4980), + [sym_uri_autolink] = ACTIONS(4980), + [sym_email_autolink] = ACTIONS(4980), + [sym__whitespace_ge_2] = ACTIONS(4980), + [aux_sym__whitespace_token1] = ACTIONS(4982), + [sym__word_no_digit] = ACTIONS(4980), + [sym__digits] = ACTIONS(4980), + [anon_sym_DASH_DASH] = ACTIONS(4982), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4980), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4980), + [sym__code_span_start] = ACTIONS(4980), + [sym__emphasis_open_star] = ACTIONS(4980), + [sym__emphasis_open_underscore] = ACTIONS(4980), + [sym__emphasis_close_star] = ACTIONS(4980), + [sym__strikeout_open] = ACTIONS(4980), + [sym__latex_span_start] = ACTIONS(4980), + [sym__single_quote_open] = ACTIONS(4980), + [sym__double_quote_open] = ACTIONS(4980), + [sym__superscript_open] = ACTIONS(4980), + [sym__subscript_open] = ACTIONS(4980), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4980), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4980), + [sym__cite_author_in_text] = ACTIONS(4980), + [sym__cite_suppress_author] = ACTIONS(4980), + [sym__shortcode_open_escaped] = ACTIONS(4980), + [sym__shortcode_open] = ACTIONS(4980), + [sym__unclosed_span] = ACTIONS(4980), + }, + [STATE(1268)] = { + [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__] = ACTIONS(5071), + [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(5105), + [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), + }, + [STATE(1269)] = { + [sym__backslash_escape] = ACTIONS(5060), + [sym_entity_reference] = ACTIONS(5060), + [sym_numeric_character_reference] = ACTIONS(5060), + [anon_sym_LT] = ACTIONS(5062), + [anon_sym_GT] = ACTIONS(5060), + [anon_sym_BANG] = ACTIONS(5060), + [anon_sym_DQUOTE] = ACTIONS(5060), + [anon_sym_POUND] = ACTIONS(5060), + [anon_sym_DOLLAR] = ACTIONS(5060), + [anon_sym_PERCENT] = ACTIONS(5060), + [anon_sym_AMP] = ACTIONS(5062), + [anon_sym_SQUOTE] = ACTIONS(5060), + [anon_sym_STAR] = ACTIONS(5060), + [anon_sym_PLUS] = ACTIONS(5060), + [anon_sym_COMMA] = ACTIONS(5060), + [anon_sym_DASH] = ACTIONS(5062), + [anon_sym_DOT] = ACTIONS(5062), + [anon_sym_SLASH] = ACTIONS(5060), + [anon_sym_COLON] = ACTIONS(5060), + [anon_sym_SEMI] = ACTIONS(5060), + [anon_sym_EQ] = ACTIONS(5060), + [anon_sym_QMARK] = ACTIONS(5060), + [anon_sym_LBRACK] = ACTIONS(5062), + [anon_sym_BSLASH] = ACTIONS(5062), + [anon_sym_RBRACK] = ACTIONS(5060), + [anon_sym_CARET] = ACTIONS(5062), + [anon_sym__] = ACTIONS(5060), + [anon_sym_BQUOTE] = ACTIONS(5060), + [anon_sym_LBRACE] = ACTIONS(5060), + [anon_sym_PIPE] = ACTIONS(5060), + [anon_sym_TILDE] = ACTIONS(5060), + [anon_sym_LPAREN] = ACTIONS(5060), + [anon_sym_RPAREN] = ACTIONS(5060), + [sym__newline_token] = ACTIONS(5060), + [aux_sym_insert_token1] = ACTIONS(5060), + [aux_sym_delete_token1] = ACTIONS(5060), + [aux_sym_highlight_token1] = ACTIONS(5060), + [aux_sym_edit_comment_token1] = ACTIONS(5060), + [anon_sym_CARET_LBRACK] = ACTIONS(5060), + [anon_sym_LBRACK_CARET] = ACTIONS(5060), + [sym_uri_autolink] = ACTIONS(5060), + [sym_email_autolink] = ACTIONS(5060), + [sym__whitespace_ge_2] = ACTIONS(5060), + [aux_sym__whitespace_token1] = ACTIONS(5062), + [sym__word_no_digit] = ACTIONS(5060), + [sym__digits] = ACTIONS(5060), + [anon_sym_DASH_DASH] = ACTIONS(5062), + [anon_sym_DASH_DASH_DASH] = ACTIONS(5060), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5060), + [sym__code_span_start] = ACTIONS(5060), + [sym__emphasis_open_star] = ACTIONS(5060), + [sym__emphasis_open_underscore] = ACTIONS(5060), + [sym__strikeout_open] = ACTIONS(5060), + [sym__latex_span_start] = ACTIONS(5060), + [sym__single_quote_open] = ACTIONS(5060), + [sym__double_quote_open] = ACTIONS(5060), + [sym__superscript_open] = ACTIONS(5060), + [sym__subscript_open] = ACTIONS(5060), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5060), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5060), + [sym__cite_author_in_text] = ACTIONS(5060), + [sym__cite_suppress_author] = ACTIONS(5060), + [sym__shortcode_open_escaped] = ACTIONS(5060), + [sym__shortcode_open] = ACTIONS(5060), + [sym__unclosed_span] = ACTIONS(5060), + }, + [STATE(1270)] = { + [sym__backslash_escape] = ACTIONS(4984), + [sym_entity_reference] = ACTIONS(4984), + [sym_numeric_character_reference] = ACTIONS(4984), + [anon_sym_LT] = ACTIONS(4986), + [anon_sym_GT] = ACTIONS(4984), + [anon_sym_BANG] = ACTIONS(4984), + [anon_sym_DQUOTE] = ACTIONS(4984), + [anon_sym_POUND] = ACTIONS(4984), + [anon_sym_DOLLAR] = ACTIONS(4984), + [anon_sym_PERCENT] = ACTIONS(4984), + [anon_sym_AMP] = ACTIONS(4986), + [anon_sym_SQUOTE] = ACTIONS(4984), + [anon_sym_STAR] = ACTIONS(4984), + [anon_sym_PLUS] = ACTIONS(4984), + [anon_sym_COMMA] = ACTIONS(4984), + [anon_sym_DASH] = ACTIONS(4986), + [anon_sym_DOT] = ACTIONS(4986), + [anon_sym_SLASH] = ACTIONS(4984), + [anon_sym_COLON] = ACTIONS(4984), + [anon_sym_SEMI] = ACTIONS(4984), + [anon_sym_EQ] = ACTIONS(4984), + [anon_sym_QMARK] = ACTIONS(4984), + [anon_sym_LBRACK] = ACTIONS(4986), + [anon_sym_BSLASH] = ACTIONS(4986), + [anon_sym_CARET] = ACTIONS(4986), + [anon_sym__] = ACTIONS(4984), + [anon_sym_BQUOTE] = ACTIONS(4984), + [anon_sym_LBRACE] = ACTIONS(4984), + [anon_sym_PIPE] = ACTIONS(4984), + [anon_sym_TILDE] = ACTIONS(4984), + [anon_sym_LPAREN] = ACTIONS(4984), + [anon_sym_RPAREN] = ACTIONS(4984), + [sym__newline_token] = ACTIONS(4984), + [aux_sym_insert_token1] = ACTIONS(4984), + [aux_sym_delete_token1] = ACTIONS(4984), + [aux_sym_highlight_token1] = ACTIONS(4984), + [aux_sym_edit_comment_token1] = ACTIONS(4984), + [anon_sym_CARET_LBRACK] = ACTIONS(4984), + [anon_sym_LBRACK_CARET] = ACTIONS(4984), + [sym_uri_autolink] = ACTIONS(4984), + [sym_email_autolink] = ACTIONS(4984), + [sym__whitespace_ge_2] = ACTIONS(4984), + [aux_sym__whitespace_token1] = ACTIONS(4986), + [sym__word_no_digit] = ACTIONS(4984), + [sym__digits] = ACTIONS(4984), + [anon_sym_DASH_DASH] = ACTIONS(4986), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4984), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4984), + [sym__code_span_start] = ACTIONS(4984), + [sym__emphasis_open_star] = ACTIONS(4984), + [sym__emphasis_open_underscore] = ACTIONS(4984), + [sym__strikeout_open] = ACTIONS(4984), + [sym__strikeout_close] = ACTIONS(4984), + [sym__latex_span_start] = ACTIONS(4984), + [sym__single_quote_open] = ACTIONS(4984), + [sym__double_quote_open] = ACTIONS(4984), + [sym__superscript_open] = ACTIONS(4984), + [sym__subscript_open] = ACTIONS(4984), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4984), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4984), + [sym__cite_author_in_text] = ACTIONS(4984), + [sym__cite_suppress_author] = ACTIONS(4984), + [sym__shortcode_open_escaped] = ACTIONS(4984), + [sym__shortcode_open] = ACTIONS(4984), + [sym__unclosed_span] = ACTIONS(4984), + }, + [STATE(1271)] = { + [sym__backslash_escape] = ACTIONS(4984), + [sym_entity_reference] = ACTIONS(4984), + [sym_numeric_character_reference] = ACTIONS(4984), + [anon_sym_LT] = ACTIONS(4986), + [anon_sym_GT] = ACTIONS(4984), + [anon_sym_BANG] = ACTIONS(4984), + [anon_sym_DQUOTE] = ACTIONS(4984), + [anon_sym_POUND] = ACTIONS(4984), + [anon_sym_DOLLAR] = ACTIONS(4984), + [anon_sym_PERCENT] = ACTIONS(4984), + [anon_sym_AMP] = ACTIONS(4986), + [anon_sym_SQUOTE] = ACTIONS(4984), + [anon_sym_STAR] = ACTIONS(4984), + [anon_sym_PLUS] = ACTIONS(4984), + [anon_sym_COMMA] = ACTIONS(4984), + [anon_sym_DASH] = ACTIONS(4986), + [anon_sym_DOT] = ACTIONS(4986), + [anon_sym_SLASH] = ACTIONS(4984), + [anon_sym_COLON] = ACTIONS(4984), + [anon_sym_SEMI] = ACTIONS(4984), + [anon_sym_EQ] = ACTIONS(4984), + [anon_sym_QMARK] = ACTIONS(4984), + [anon_sym_LBRACK] = ACTIONS(4986), + [anon_sym_BSLASH] = ACTIONS(4986), + [anon_sym_CARET] = ACTIONS(4986), + [anon_sym__] = ACTIONS(4984), + [anon_sym_BQUOTE] = ACTIONS(4984), + [anon_sym_LBRACE] = ACTIONS(4984), + [anon_sym_PIPE] = ACTIONS(4984), + [anon_sym_TILDE] = ACTIONS(4984), + [anon_sym_LPAREN] = ACTIONS(4984), + [anon_sym_RPAREN] = ACTIONS(4984), + [sym__newline_token] = ACTIONS(4984), + [aux_sym_insert_token1] = ACTIONS(4984), + [aux_sym_delete_token1] = ACTIONS(4984), + [aux_sym_highlight_token1] = ACTIONS(4984), + [aux_sym_edit_comment_token1] = ACTIONS(4984), + [anon_sym_CARET_LBRACK] = ACTIONS(4984), + [anon_sym_LBRACK_CARET] = ACTIONS(4984), + [sym_uri_autolink] = ACTIONS(4984), + [sym_email_autolink] = ACTIONS(4984), + [sym__whitespace_ge_2] = ACTIONS(4984), + [aux_sym__whitespace_token1] = ACTIONS(4986), + [sym__word_no_digit] = ACTIONS(4984), + [sym__digits] = ACTIONS(4984), + [anon_sym_DASH_DASH] = ACTIONS(4986), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4984), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4984), + [sym__code_span_start] = ACTIONS(4984), + [sym__emphasis_open_star] = ACTIONS(4984), + [sym__emphasis_open_underscore] = ACTIONS(4984), + [sym__strikeout_open] = ACTIONS(4984), + [sym__latex_span_start] = ACTIONS(4984), + [sym__single_quote_open] = ACTIONS(4984), + [sym__double_quote_open] = ACTIONS(4984), + [sym__superscript_open] = ACTIONS(4984), + [sym__subscript_open] = ACTIONS(4984), + [sym__subscript_close] = ACTIONS(4984), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4984), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4984), + [sym__cite_author_in_text] = ACTIONS(4984), + [sym__cite_suppress_author] = ACTIONS(4984), + [sym__shortcode_open_escaped] = ACTIONS(4984), + [sym__shortcode_open] = ACTIONS(4984), + [sym__unclosed_span] = ACTIONS(4984), + }, + [STATE(1272)] = { + [sym__backslash_escape] = ACTIONS(5012), + [sym_entity_reference] = ACTIONS(5012), + [sym_numeric_character_reference] = ACTIONS(5012), + [anon_sym_LT] = ACTIONS(5014), + [anon_sym_GT] = ACTIONS(5012), + [anon_sym_BANG] = ACTIONS(5012), + [anon_sym_DQUOTE] = ACTIONS(5012), + [anon_sym_POUND] = ACTIONS(5012), + [anon_sym_DOLLAR] = ACTIONS(5012), + [anon_sym_PERCENT] = ACTIONS(5012), + [anon_sym_AMP] = ACTIONS(5014), + [anon_sym_SQUOTE] = ACTIONS(5012), + [anon_sym_STAR] = ACTIONS(5012), + [anon_sym_PLUS] = ACTIONS(5012), + [anon_sym_COMMA] = ACTIONS(5012), + [anon_sym_DASH] = ACTIONS(5014), + [anon_sym_DOT] = ACTIONS(5014), + [anon_sym_SLASH] = ACTIONS(5012), + [anon_sym_COLON] = ACTIONS(5012), + [anon_sym_SEMI] = ACTIONS(5012), + [anon_sym_EQ] = ACTIONS(5012), + [anon_sym_QMARK] = ACTIONS(5012), + [anon_sym_LBRACK] = ACTIONS(5014), + [anon_sym_BSLASH] = ACTIONS(5014), + [anon_sym_CARET] = ACTIONS(5014), + [anon_sym__] = ACTIONS(5012), + [anon_sym_BQUOTE] = ACTIONS(5012), + [anon_sym_LBRACE] = ACTIONS(5012), + [anon_sym_PIPE] = ACTIONS(5012), + [anon_sym_TILDE] = ACTIONS(5012), + [anon_sym_LPAREN] = ACTIONS(5012), + [anon_sym_RPAREN] = ACTIONS(5012), + [sym__newline_token] = ACTIONS(5012), + [aux_sym_insert_token1] = ACTIONS(5012), + [aux_sym_delete_token1] = ACTIONS(5012), + [aux_sym_highlight_token1] = ACTIONS(5012), + [aux_sym_edit_comment_token1] = ACTIONS(5012), + [anon_sym_CARET_LBRACK] = ACTIONS(5012), + [anon_sym_LBRACK_CARET] = ACTIONS(5012), + [sym_uri_autolink] = ACTIONS(5012), + [sym_email_autolink] = ACTIONS(5012), + [sym__whitespace_ge_2] = ACTIONS(5012), + [aux_sym__whitespace_token1] = ACTIONS(5014), + [sym__word_no_digit] = ACTIONS(5012), + [sym__digits] = ACTIONS(5012), + [anon_sym_DASH_DASH] = ACTIONS(5014), + [anon_sym_DASH_DASH_DASH] = ACTIONS(5012), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5012), + [sym__code_span_start] = ACTIONS(5012), + [sym__emphasis_open_star] = ACTIONS(5012), + [sym__emphasis_open_underscore] = ACTIONS(5012), + [sym__strikeout_open] = ACTIONS(5012), + [sym__strikeout_close] = ACTIONS(5012), + [sym__latex_span_start] = ACTIONS(5012), + [sym__single_quote_open] = ACTIONS(5012), + [sym__double_quote_open] = ACTIONS(5012), + [sym__superscript_open] = ACTIONS(5012), + [sym__subscript_open] = ACTIONS(5012), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5012), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5012), + [sym__cite_author_in_text] = ACTIONS(5012), + [sym__cite_suppress_author] = ACTIONS(5012), + [sym__shortcode_open_escaped] = ACTIONS(5012), + [sym__shortcode_open] = ACTIONS(5012), + [sym__unclosed_span] = ACTIONS(5012), + }, + [STATE(1273)] = { + [sym__backslash_escape] = ACTIONS(4996), + [sym_entity_reference] = ACTIONS(4996), + [sym_numeric_character_reference] = ACTIONS(4996), + [anon_sym_LT] = ACTIONS(4998), + [anon_sym_GT] = ACTIONS(4996), + [anon_sym_BANG] = ACTIONS(4996), + [anon_sym_DQUOTE] = ACTIONS(4996), + [anon_sym_POUND] = ACTIONS(4996), + [anon_sym_DOLLAR] = ACTIONS(4996), + [anon_sym_PERCENT] = ACTIONS(4996), + [anon_sym_AMP] = ACTIONS(4998), + [anon_sym_SQUOTE] = ACTIONS(4996), + [anon_sym_STAR] = ACTIONS(4996), + [anon_sym_PLUS] = ACTIONS(4996), + [anon_sym_COMMA] = ACTIONS(4996), + [anon_sym_DASH] = ACTIONS(4998), + [anon_sym_DOT] = ACTIONS(4998), + [anon_sym_SLASH] = ACTIONS(4996), + [anon_sym_COLON] = ACTIONS(4996), + [anon_sym_SEMI] = ACTIONS(4996), + [anon_sym_EQ] = ACTIONS(4996), + [anon_sym_QMARK] = ACTIONS(4996), + [anon_sym_LBRACK] = ACTIONS(4998), + [anon_sym_BSLASH] = ACTIONS(4998), + [anon_sym_CARET] = ACTIONS(4998), + [anon_sym__] = ACTIONS(4996), + [anon_sym_BQUOTE] = ACTIONS(4996), + [anon_sym_LBRACE] = ACTIONS(4996), + [anon_sym_PIPE] = ACTIONS(4996), + [anon_sym_TILDE] = ACTIONS(4996), + [anon_sym_LPAREN] = ACTIONS(4996), + [anon_sym_RPAREN] = ACTIONS(4996), + [sym__newline_token] = ACTIONS(4996), + [aux_sym_insert_token1] = ACTIONS(4996), + [aux_sym_delete_token1] = ACTIONS(4996), + [aux_sym_highlight_token1] = ACTIONS(4996), + [aux_sym_edit_comment_token1] = ACTIONS(4996), + [anon_sym_CARET_LBRACK] = ACTIONS(4996), + [anon_sym_LBRACK_CARET] = ACTIONS(4996), + [sym_uri_autolink] = ACTIONS(4996), + [sym_email_autolink] = ACTIONS(4996), + [sym__whitespace_ge_2] = ACTIONS(4996), + [aux_sym__whitespace_token1] = ACTIONS(4998), + [sym__word_no_digit] = ACTIONS(4996), + [sym__digits] = ACTIONS(4996), + [anon_sym_DASH_DASH] = ACTIONS(4998), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4996), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4996), + [sym__code_span_start] = ACTIONS(4996), + [sym__emphasis_open_star] = ACTIONS(4996), + [sym__emphasis_open_underscore] = ACTIONS(4996), + [sym__emphasis_close_star] = ACTIONS(4996), + [sym__strikeout_open] = ACTIONS(4996), + [sym__latex_span_start] = ACTIONS(4996), + [sym__single_quote_open] = ACTIONS(4996), + [sym__double_quote_open] = ACTIONS(4996), + [sym__superscript_open] = ACTIONS(4996), + [sym__subscript_open] = ACTIONS(4996), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4996), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4996), + [sym__cite_author_in_text] = ACTIONS(4996), + [sym__cite_suppress_author] = ACTIONS(4996), + [sym__shortcode_open_escaped] = ACTIONS(4996), + [sym__shortcode_open] = ACTIONS(4996), + [sym__unclosed_span] = ACTIONS(4996), + }, + [STATE(1274)] = { + [sym__backslash_escape] = ACTIONS(4948), + [sym_entity_reference] = ACTIONS(4948), + [sym_numeric_character_reference] = ACTIONS(4948), + [anon_sym_LT] = ACTIONS(4950), + [anon_sym_GT] = ACTIONS(4948), + [anon_sym_BANG] = ACTIONS(4948), + [anon_sym_DQUOTE] = ACTIONS(4948), + [anon_sym_POUND] = ACTIONS(4948), + [anon_sym_DOLLAR] = ACTIONS(4948), + [anon_sym_PERCENT] = ACTIONS(4948), + [anon_sym_AMP] = ACTIONS(4950), + [anon_sym_SQUOTE] = ACTIONS(4948), + [anon_sym_STAR] = ACTIONS(4948), + [anon_sym_PLUS] = ACTIONS(4948), + [anon_sym_COMMA] = ACTIONS(4948), + [anon_sym_DASH] = ACTIONS(4950), + [anon_sym_DOT] = ACTIONS(4950), + [anon_sym_SLASH] = ACTIONS(4948), + [anon_sym_COLON] = ACTIONS(4948), + [anon_sym_SEMI] = ACTIONS(4948), + [anon_sym_EQ] = ACTIONS(4948), + [anon_sym_QMARK] = ACTIONS(4948), + [anon_sym_LBRACK] = ACTIONS(4950), + [anon_sym_BSLASH] = ACTIONS(4950), + [anon_sym_CARET] = ACTIONS(4950), + [anon_sym__] = ACTIONS(4948), + [anon_sym_BQUOTE] = ACTIONS(4948), + [anon_sym_LBRACE] = ACTIONS(4948), + [anon_sym_PIPE] = ACTIONS(4948), + [anon_sym_TILDE] = ACTIONS(4948), + [anon_sym_LPAREN] = ACTIONS(4948), + [anon_sym_RPAREN] = ACTIONS(4948), + [sym__newline_token] = ACTIONS(4948), + [aux_sym_insert_token1] = ACTIONS(4948), + [aux_sym_delete_token1] = ACTIONS(4948), + [aux_sym_highlight_token1] = ACTIONS(4948), + [aux_sym_edit_comment_token1] = ACTIONS(4948), + [anon_sym_CARET_LBRACK] = ACTIONS(4948), + [anon_sym_LBRACK_CARET] = ACTIONS(4948), + [sym_uri_autolink] = ACTIONS(4948), + [sym_email_autolink] = ACTIONS(4948), + [sym__whitespace_ge_2] = ACTIONS(4948), + [aux_sym__whitespace_token1] = ACTIONS(4950), + [sym__word_no_digit] = ACTIONS(4948), + [sym__digits] = ACTIONS(4948), + [anon_sym_DASH_DASH] = ACTIONS(4950), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4948), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4948), + [sym__code_span_start] = ACTIONS(4948), + [sym__emphasis_open_star] = ACTIONS(4948), + [sym__emphasis_open_underscore] = ACTIONS(4948), + [sym__strikeout_open] = ACTIONS(4948), + [sym__strikeout_close] = ACTIONS(4948), + [sym__latex_span_start] = ACTIONS(4948), + [sym__single_quote_open] = ACTIONS(4948), + [sym__double_quote_open] = ACTIONS(4948), + [sym__superscript_open] = ACTIONS(4948), + [sym__subscript_open] = ACTIONS(4948), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4948), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4948), + [sym__cite_author_in_text] = ACTIONS(4948), + [sym__cite_suppress_author] = ACTIONS(4948), + [sym__shortcode_open_escaped] = ACTIONS(4948), + [sym__shortcode_open] = ACTIONS(4948), + [sym__unclosed_span] = ACTIONS(4948), + }, + [STATE(1275)] = { + [sym__backslash_escape] = ACTIONS(5000), + [sym_entity_reference] = ACTIONS(5000), + [sym_numeric_character_reference] = ACTIONS(5000), + [anon_sym_LT] = ACTIONS(5002), + [anon_sym_GT] = ACTIONS(5000), + [anon_sym_BANG] = ACTIONS(5000), + [anon_sym_DQUOTE] = ACTIONS(5000), + [anon_sym_POUND] = ACTIONS(5000), + [anon_sym_DOLLAR] = ACTIONS(5000), + [anon_sym_PERCENT] = ACTIONS(5000), + [anon_sym_AMP] = ACTIONS(5002), + [anon_sym_SQUOTE] = ACTIONS(5000), + [anon_sym_STAR] = ACTIONS(5000), + [anon_sym_PLUS] = ACTIONS(5000), + [anon_sym_COMMA] = ACTIONS(5000), + [anon_sym_DASH] = ACTIONS(5002), + [anon_sym_DOT] = ACTIONS(5002), + [anon_sym_SLASH] = ACTIONS(5000), + [anon_sym_COLON] = ACTIONS(5000), + [anon_sym_SEMI] = ACTIONS(5000), + [anon_sym_EQ] = ACTIONS(5000), + [anon_sym_QMARK] = ACTIONS(5000), + [anon_sym_LBRACK] = ACTIONS(5002), + [anon_sym_BSLASH] = ACTIONS(5002), + [anon_sym_CARET] = ACTIONS(5002), + [anon_sym__] = ACTIONS(5000), + [anon_sym_BQUOTE] = ACTIONS(5000), + [anon_sym_LBRACE] = ACTIONS(5000), + [anon_sym_PIPE] = ACTIONS(5000), + [anon_sym_TILDE] = ACTIONS(5000), + [anon_sym_LPAREN] = ACTIONS(5000), + [anon_sym_RPAREN] = ACTIONS(5000), + [sym__newline_token] = ACTIONS(5000), + [aux_sym_insert_token1] = ACTIONS(5000), + [aux_sym_delete_token1] = ACTIONS(5000), + [aux_sym_highlight_token1] = ACTIONS(5000), + [aux_sym_edit_comment_token1] = ACTIONS(5000), + [anon_sym_CARET_LBRACK] = ACTIONS(5000), + [anon_sym_LBRACK_CARET] = ACTIONS(5000), + [sym_uri_autolink] = ACTIONS(5000), + [sym_email_autolink] = ACTIONS(5000), + [sym__whitespace_ge_2] = ACTIONS(5000), + [aux_sym__whitespace_token1] = ACTIONS(5002), + [sym__word_no_digit] = ACTIONS(5000), + [sym__digits] = ACTIONS(5000), + [anon_sym_DASH_DASH] = ACTIONS(5002), + [anon_sym_DASH_DASH_DASH] = ACTIONS(5000), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5000), + [sym__code_span_start] = ACTIONS(5000), + [sym__emphasis_open_star] = ACTIONS(5000), + [sym__emphasis_open_underscore] = ACTIONS(5000), + [sym__emphasis_close_star] = ACTIONS(5000), + [sym__strikeout_open] = ACTIONS(5000), + [sym__latex_span_start] = ACTIONS(5000), + [sym__single_quote_open] = ACTIONS(5000), + [sym__double_quote_open] = ACTIONS(5000), + [sym__superscript_open] = ACTIONS(5000), + [sym__subscript_open] = ACTIONS(5000), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5000), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5000), + [sym__cite_author_in_text] = ACTIONS(5000), + [sym__cite_suppress_author] = ACTIONS(5000), + [sym__shortcode_open_escaped] = ACTIONS(5000), + [sym__shortcode_open] = ACTIONS(5000), + [sym__unclosed_span] = ACTIONS(5000), + }, + [STATE(1276)] = { + [sym__backslash_escape] = ACTIONS(5004), + [sym_entity_reference] = ACTIONS(5004), + [sym_numeric_character_reference] = ACTIONS(5004), + [anon_sym_LT] = ACTIONS(5006), + [anon_sym_GT] = ACTIONS(5004), + [anon_sym_BANG] = ACTIONS(5004), + [anon_sym_DQUOTE] = ACTIONS(5004), + [anon_sym_POUND] = ACTIONS(5004), + [anon_sym_DOLLAR] = ACTIONS(5004), + [anon_sym_PERCENT] = ACTIONS(5004), + [anon_sym_AMP] = ACTIONS(5006), + [anon_sym_SQUOTE] = ACTIONS(5004), + [anon_sym_STAR] = ACTIONS(5004), + [anon_sym_PLUS] = ACTIONS(5004), + [anon_sym_COMMA] = ACTIONS(5004), + [anon_sym_DASH] = ACTIONS(5006), + [anon_sym_DOT] = ACTIONS(5006), + [anon_sym_SLASH] = ACTIONS(5004), + [anon_sym_COLON] = ACTIONS(5004), + [anon_sym_SEMI] = ACTIONS(5004), + [anon_sym_EQ] = ACTIONS(5004), + [anon_sym_QMARK] = ACTIONS(5004), + [anon_sym_LBRACK] = ACTIONS(5006), + [anon_sym_BSLASH] = ACTIONS(5006), + [anon_sym_CARET] = ACTIONS(5006), + [anon_sym__] = ACTIONS(5004), + [anon_sym_BQUOTE] = ACTIONS(5004), + [anon_sym_LBRACE] = ACTIONS(5004), + [anon_sym_PIPE] = ACTIONS(5004), + [anon_sym_TILDE] = ACTIONS(5004), + [anon_sym_LPAREN] = ACTIONS(5004), + [anon_sym_RPAREN] = ACTIONS(5004), + [sym__newline_token] = ACTIONS(5004), + [aux_sym_insert_token1] = ACTIONS(5004), + [aux_sym_delete_token1] = ACTIONS(5004), + [aux_sym_highlight_token1] = ACTIONS(5004), + [aux_sym_edit_comment_token1] = ACTIONS(5004), + [anon_sym_CARET_LBRACK] = ACTIONS(5004), + [anon_sym_LBRACK_CARET] = ACTIONS(5004), + [sym_uri_autolink] = ACTIONS(5004), + [sym_email_autolink] = ACTIONS(5004), + [sym__whitespace_ge_2] = ACTIONS(5004), + [aux_sym__whitespace_token1] = ACTIONS(5006), + [sym__word_no_digit] = ACTIONS(5004), + [sym__digits] = ACTIONS(5004), + [anon_sym_DASH_DASH] = ACTIONS(5006), + [anon_sym_DASH_DASH_DASH] = ACTIONS(5004), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5004), + [sym__code_span_start] = ACTIONS(5004), + [sym__emphasis_open_star] = ACTIONS(5004), + [sym__emphasis_open_underscore] = ACTIONS(5004), + [sym__emphasis_close_star] = ACTIONS(5004), + [sym__strikeout_open] = ACTIONS(5004), + [sym__latex_span_start] = ACTIONS(5004), + [sym__single_quote_open] = ACTIONS(5004), + [sym__double_quote_open] = ACTIONS(5004), + [sym__superscript_open] = ACTIONS(5004), + [sym__subscript_open] = ACTIONS(5004), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5004), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5004), + [sym__cite_author_in_text] = ACTIONS(5004), + [sym__cite_suppress_author] = ACTIONS(5004), + [sym__shortcode_open_escaped] = ACTIONS(5004), + [sym__shortcode_open] = ACTIONS(5004), + [sym__unclosed_span] = ACTIONS(5004), + }, + [STATE(1277)] = { + [sym__backslash_escape] = ACTIONS(5008), + [sym_entity_reference] = ACTIONS(5008), + [sym_numeric_character_reference] = ACTIONS(5008), + [anon_sym_LT] = ACTIONS(5010), + [anon_sym_GT] = ACTIONS(5008), + [anon_sym_BANG] = ACTIONS(5008), + [anon_sym_DQUOTE] = ACTIONS(5008), + [anon_sym_POUND] = ACTIONS(5008), + [anon_sym_DOLLAR] = ACTIONS(5008), + [anon_sym_PERCENT] = ACTIONS(5008), + [anon_sym_AMP] = ACTIONS(5010), + [anon_sym_SQUOTE] = ACTIONS(5008), + [anon_sym_STAR] = ACTIONS(5008), + [anon_sym_PLUS] = ACTIONS(5008), + [anon_sym_COMMA] = ACTIONS(5008), + [anon_sym_DASH] = ACTIONS(5010), + [anon_sym_DOT] = ACTIONS(5010), + [anon_sym_SLASH] = ACTIONS(5008), + [anon_sym_COLON] = ACTIONS(5008), + [anon_sym_SEMI] = ACTIONS(5008), + [anon_sym_EQ] = ACTIONS(5008), + [anon_sym_QMARK] = ACTIONS(5008), + [anon_sym_LBRACK] = ACTIONS(5010), + [anon_sym_BSLASH] = ACTIONS(5010), + [anon_sym_CARET] = ACTIONS(5010), + [anon_sym__] = ACTIONS(5008), + [anon_sym_BQUOTE] = ACTIONS(5008), + [anon_sym_LBRACE] = ACTIONS(5008), + [anon_sym_PIPE] = ACTIONS(5008), + [anon_sym_TILDE] = ACTIONS(5008), + [anon_sym_LPAREN] = ACTIONS(5008), + [anon_sym_RPAREN] = ACTIONS(5008), + [sym__newline_token] = ACTIONS(5008), + [aux_sym_insert_token1] = ACTIONS(5008), + [aux_sym_delete_token1] = ACTIONS(5008), + [aux_sym_highlight_token1] = ACTIONS(5008), + [aux_sym_edit_comment_token1] = ACTIONS(5008), + [anon_sym_CARET_LBRACK] = ACTIONS(5008), + [anon_sym_LBRACK_CARET] = ACTIONS(5008), + [sym_uri_autolink] = ACTIONS(5008), + [sym_email_autolink] = ACTIONS(5008), + [sym__whitespace_ge_2] = ACTIONS(5008), + [aux_sym__whitespace_token1] = ACTIONS(5010), + [sym__word_no_digit] = ACTIONS(5008), + [sym__digits] = ACTIONS(5008), + [anon_sym_DASH_DASH] = ACTIONS(5010), + [anon_sym_DASH_DASH_DASH] = ACTIONS(5008), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5008), + [sym__code_span_start] = ACTIONS(5008), + [sym__emphasis_open_star] = ACTIONS(5008), + [sym__emphasis_open_underscore] = ACTIONS(5008), + [sym__emphasis_close_star] = ACTIONS(5008), + [sym__strikeout_open] = ACTIONS(5008), + [sym__latex_span_start] = ACTIONS(5008), + [sym__single_quote_open] = ACTIONS(5008), + [sym__double_quote_open] = ACTIONS(5008), + [sym__superscript_open] = ACTIONS(5008), + [sym__subscript_open] = ACTIONS(5008), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5008), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5008), + [sym__cite_author_in_text] = ACTIONS(5008), + [sym__cite_suppress_author] = ACTIONS(5008), + [sym__shortcode_open_escaped] = ACTIONS(5008), + [sym__shortcode_open] = ACTIONS(5008), + [sym__unclosed_span] = ACTIONS(5008), + }, + [STATE(1278)] = { + [sym__backslash_escape] = ACTIONS(5012), + [sym_entity_reference] = ACTIONS(5012), + [sym_numeric_character_reference] = ACTIONS(5012), + [anon_sym_LT] = ACTIONS(5014), + [anon_sym_GT] = ACTIONS(5012), + [anon_sym_BANG] = ACTIONS(5012), + [anon_sym_DQUOTE] = ACTIONS(5012), + [anon_sym_POUND] = ACTIONS(5012), + [anon_sym_DOLLAR] = ACTIONS(5012), + [anon_sym_PERCENT] = ACTIONS(5012), + [anon_sym_AMP] = ACTIONS(5014), + [anon_sym_SQUOTE] = ACTIONS(5012), + [anon_sym_STAR] = ACTIONS(5012), + [anon_sym_PLUS] = ACTIONS(5012), + [anon_sym_COMMA] = ACTIONS(5012), + [anon_sym_DASH] = ACTIONS(5014), + [anon_sym_DOT] = ACTIONS(5014), + [anon_sym_SLASH] = ACTIONS(5012), + [anon_sym_COLON] = ACTIONS(5012), + [anon_sym_SEMI] = ACTIONS(5012), + [anon_sym_EQ] = ACTIONS(5012), + [anon_sym_QMARK] = ACTIONS(5012), + [anon_sym_LBRACK] = ACTIONS(5014), + [anon_sym_BSLASH] = ACTIONS(5014), + [anon_sym_CARET] = ACTIONS(5014), + [anon_sym__] = ACTIONS(5012), + [anon_sym_BQUOTE] = ACTIONS(5012), + [anon_sym_LBRACE] = ACTIONS(5012), + [anon_sym_PIPE] = ACTIONS(5012), + [anon_sym_TILDE] = ACTIONS(5012), + [anon_sym_LPAREN] = ACTIONS(5012), + [anon_sym_RPAREN] = ACTIONS(5012), + [sym__newline_token] = ACTIONS(5012), + [aux_sym_insert_token1] = ACTIONS(5012), + [aux_sym_delete_token1] = ACTIONS(5012), + [aux_sym_highlight_token1] = ACTIONS(5012), + [aux_sym_edit_comment_token1] = ACTIONS(5012), + [anon_sym_CARET_LBRACK] = ACTIONS(5012), + [anon_sym_LBRACK_CARET] = ACTIONS(5012), + [sym_uri_autolink] = ACTIONS(5012), + [sym_email_autolink] = ACTIONS(5012), + [sym__whitespace_ge_2] = ACTIONS(5012), + [aux_sym__whitespace_token1] = ACTIONS(5014), + [sym__word_no_digit] = ACTIONS(5012), + [sym__digits] = ACTIONS(5012), + [anon_sym_DASH_DASH] = ACTIONS(5014), + [anon_sym_DASH_DASH_DASH] = ACTIONS(5012), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5012), + [sym__code_span_start] = ACTIONS(5012), + [sym__emphasis_open_star] = ACTIONS(5012), + [sym__emphasis_open_underscore] = ACTIONS(5012), + [sym__emphasis_close_star] = ACTIONS(5012), + [sym__strikeout_open] = ACTIONS(5012), + [sym__latex_span_start] = ACTIONS(5012), + [sym__single_quote_open] = ACTIONS(5012), + [sym__double_quote_open] = ACTIONS(5012), + [sym__superscript_open] = ACTIONS(5012), + [sym__subscript_open] = ACTIONS(5012), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5012), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5012), + [sym__cite_author_in_text] = ACTIONS(5012), + [sym__cite_suppress_author] = ACTIONS(5012), + [sym__shortcode_open_escaped] = ACTIONS(5012), + [sym__shortcode_open] = ACTIONS(5012), + [sym__unclosed_span] = ACTIONS(5012), + }, + [STATE(1279)] = { + [sym__backslash_escape] = ACTIONS(4948), + [sym_entity_reference] = ACTIONS(4948), + [sym_numeric_character_reference] = ACTIONS(4948), + [anon_sym_LT] = ACTIONS(4950), + [anon_sym_GT] = ACTIONS(4948), + [anon_sym_BANG] = ACTIONS(4948), + [anon_sym_DQUOTE] = ACTIONS(4948), + [anon_sym_POUND] = ACTIONS(4948), + [anon_sym_DOLLAR] = ACTIONS(4948), + [anon_sym_PERCENT] = ACTIONS(4948), + [anon_sym_AMP] = ACTIONS(4950), + [anon_sym_SQUOTE] = ACTIONS(4948), + [anon_sym_STAR] = ACTIONS(4948), + [anon_sym_PLUS] = ACTIONS(4948), + [anon_sym_COMMA] = ACTIONS(4948), + [anon_sym_DASH] = ACTIONS(4950), + [anon_sym_DOT] = ACTIONS(4950), + [anon_sym_SLASH] = ACTIONS(4948), + [anon_sym_COLON] = ACTIONS(4948), + [anon_sym_SEMI] = ACTIONS(4948), + [anon_sym_EQ] = ACTIONS(4948), + [anon_sym_QMARK] = ACTIONS(4948), + [anon_sym_LBRACK] = ACTIONS(4950), + [anon_sym_BSLASH] = ACTIONS(4950), + [anon_sym_CARET] = ACTIONS(4950), + [anon_sym__] = ACTIONS(4948), + [anon_sym_BQUOTE] = ACTIONS(4948), + [anon_sym_LBRACE] = ACTIONS(4948), + [anon_sym_PIPE] = ACTIONS(4948), + [anon_sym_TILDE] = ACTIONS(4948), + [anon_sym_LPAREN] = ACTIONS(4948), + [anon_sym_RPAREN] = ACTIONS(4948), + [sym__newline_token] = ACTIONS(4948), + [aux_sym_insert_token1] = ACTIONS(4948), + [aux_sym_delete_token1] = ACTIONS(4948), + [aux_sym_highlight_token1] = ACTIONS(4948), + [aux_sym_edit_comment_token1] = ACTIONS(4948), + [anon_sym_CARET_LBRACK] = ACTIONS(4948), + [anon_sym_LBRACK_CARET] = ACTIONS(4948), + [sym_uri_autolink] = ACTIONS(4948), + [sym_email_autolink] = ACTIONS(4948), + [sym__whitespace_ge_2] = ACTIONS(4948), + [aux_sym__whitespace_token1] = ACTIONS(4950), + [sym__word_no_digit] = ACTIONS(4948), + [sym__digits] = ACTIONS(4948), + [anon_sym_DASH_DASH] = ACTIONS(4950), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4948), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4948), + [sym__code_span_start] = ACTIONS(4948), + [sym__emphasis_open_star] = ACTIONS(4948), + [sym__emphasis_open_underscore] = ACTIONS(4948), + [sym__emphasis_close_star] = ACTIONS(4948), + [sym__strikeout_open] = ACTIONS(4948), + [sym__latex_span_start] = ACTIONS(4948), + [sym__single_quote_open] = ACTIONS(4948), + [sym__double_quote_open] = ACTIONS(4948), + [sym__superscript_open] = ACTIONS(4948), + [sym__subscript_open] = ACTIONS(4948), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4948), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4948), + [sym__cite_author_in_text] = ACTIONS(4948), + [sym__cite_suppress_author] = ACTIONS(4948), + [sym__shortcode_open_escaped] = ACTIONS(4948), + [sym__shortcode_open] = ACTIONS(4948), + [sym__unclosed_span] = ACTIONS(4948), + }, + [STATE(1280)] = { + [sym__backslash_escape] = ACTIONS(5016), + [sym_entity_reference] = ACTIONS(5016), + [sym_numeric_character_reference] = ACTIONS(5016), + [anon_sym_LT] = ACTIONS(5018), + [anon_sym_GT] = ACTIONS(5016), + [anon_sym_BANG] = ACTIONS(5016), + [anon_sym_DQUOTE] = ACTIONS(5016), + [anon_sym_POUND] = ACTIONS(5016), + [anon_sym_DOLLAR] = ACTIONS(5016), + [anon_sym_PERCENT] = ACTIONS(5016), + [anon_sym_AMP] = ACTIONS(5018), + [anon_sym_SQUOTE] = ACTIONS(5016), + [anon_sym_STAR] = ACTIONS(5016), + [anon_sym_PLUS] = ACTIONS(5016), + [anon_sym_COMMA] = ACTIONS(5016), + [anon_sym_DASH] = ACTIONS(5018), + [anon_sym_DOT] = ACTIONS(5018), + [anon_sym_SLASH] = ACTIONS(5016), + [anon_sym_COLON] = ACTIONS(5016), + [anon_sym_SEMI] = ACTIONS(5016), + [anon_sym_EQ] = ACTIONS(5016), + [anon_sym_QMARK] = ACTIONS(5016), + [anon_sym_LBRACK] = ACTIONS(5018), + [anon_sym_BSLASH] = ACTIONS(5018), + [anon_sym_CARET] = ACTIONS(5018), + [anon_sym__] = ACTIONS(5016), + [anon_sym_BQUOTE] = ACTIONS(5016), + [anon_sym_LBRACE] = ACTIONS(5016), + [anon_sym_PIPE] = ACTIONS(5016), + [anon_sym_TILDE] = ACTIONS(5016), + [anon_sym_LPAREN] = ACTIONS(5016), + [anon_sym_RPAREN] = ACTIONS(5016), + [sym__newline_token] = ACTIONS(5016), + [aux_sym_insert_token1] = ACTIONS(5016), + [aux_sym_delete_token1] = ACTIONS(5016), + [aux_sym_highlight_token1] = ACTIONS(5016), + [aux_sym_edit_comment_token1] = ACTIONS(5016), + [anon_sym_CARET_LBRACK] = ACTIONS(5016), + [anon_sym_LBRACK_CARET] = ACTIONS(5016), + [sym_uri_autolink] = ACTIONS(5016), + [sym_email_autolink] = ACTIONS(5016), + [sym__whitespace_ge_2] = ACTIONS(5016), + [aux_sym__whitespace_token1] = ACTIONS(5018), + [sym__word_no_digit] = ACTIONS(5016), + [sym__digits] = ACTIONS(5016), + [anon_sym_DASH_DASH] = ACTIONS(5018), + [anon_sym_DASH_DASH_DASH] = ACTIONS(5016), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5016), + [sym__code_span_start] = ACTIONS(5016), + [sym__emphasis_open_star] = ACTIONS(5016), + [sym__emphasis_open_underscore] = ACTIONS(5016), + [sym__emphasis_close_star] = ACTIONS(5016), + [sym__strikeout_open] = ACTIONS(5016), + [sym__latex_span_start] = ACTIONS(5016), + [sym__single_quote_open] = ACTIONS(5016), + [sym__double_quote_open] = ACTIONS(5016), + [sym__superscript_open] = ACTIONS(5016), + [sym__subscript_open] = ACTIONS(5016), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5016), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5016), + [sym__cite_author_in_text] = ACTIONS(5016), + [sym__cite_suppress_author] = ACTIONS(5016), + [sym__shortcode_open_escaped] = ACTIONS(5016), + [sym__shortcode_open] = ACTIONS(5016), + [sym__unclosed_span] = ACTIONS(5016), + }, + [STATE(1281)] = { + [sym__backslash_escape] = ACTIONS(5020), + [sym_entity_reference] = ACTIONS(5020), + [sym_numeric_character_reference] = ACTIONS(5020), + [anon_sym_LT] = ACTIONS(5022), + [anon_sym_GT] = ACTIONS(5020), + [anon_sym_BANG] = ACTIONS(5020), + [anon_sym_DQUOTE] = ACTIONS(5020), + [anon_sym_POUND] = ACTIONS(5020), + [anon_sym_DOLLAR] = ACTIONS(5020), + [anon_sym_PERCENT] = ACTIONS(5020), + [anon_sym_AMP] = ACTIONS(5022), + [anon_sym_SQUOTE] = ACTIONS(5020), + [anon_sym_STAR] = ACTIONS(5020), + [anon_sym_PLUS] = ACTIONS(5020), + [anon_sym_COMMA] = ACTIONS(5020), + [anon_sym_DASH] = ACTIONS(5022), + [anon_sym_DOT] = ACTIONS(5022), + [anon_sym_SLASH] = ACTIONS(5020), + [anon_sym_COLON] = ACTIONS(5020), + [anon_sym_SEMI] = ACTIONS(5020), + [anon_sym_EQ] = ACTIONS(5020), + [anon_sym_QMARK] = ACTIONS(5020), + [anon_sym_LBRACK] = ACTIONS(5022), + [anon_sym_BSLASH] = ACTIONS(5022), + [anon_sym_CARET] = ACTIONS(5022), + [anon_sym__] = ACTIONS(5020), + [anon_sym_BQUOTE] = ACTIONS(5020), + [anon_sym_LBRACE] = ACTIONS(5020), + [anon_sym_PIPE] = ACTIONS(5020), + [anon_sym_TILDE] = ACTIONS(5020), + [anon_sym_LPAREN] = ACTIONS(5020), + [anon_sym_RPAREN] = ACTIONS(5020), + [sym__newline_token] = ACTIONS(5020), + [aux_sym_insert_token1] = ACTIONS(5020), + [aux_sym_delete_token1] = ACTIONS(5020), + [aux_sym_highlight_token1] = ACTIONS(5020), + [aux_sym_edit_comment_token1] = ACTIONS(5020), + [anon_sym_CARET_LBRACK] = ACTIONS(5020), + [anon_sym_LBRACK_CARET] = ACTIONS(5020), + [sym_uri_autolink] = ACTIONS(5020), + [sym_email_autolink] = ACTIONS(5020), + [sym__whitespace_ge_2] = ACTIONS(5020), + [aux_sym__whitespace_token1] = ACTIONS(5022), + [sym__word_no_digit] = ACTIONS(5020), + [sym__digits] = ACTIONS(5020), + [anon_sym_DASH_DASH] = ACTIONS(5022), + [anon_sym_DASH_DASH_DASH] = ACTIONS(5020), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5020), + [sym__code_span_start] = ACTIONS(5020), + [sym__emphasis_open_star] = ACTIONS(5020), + [sym__emphasis_open_underscore] = ACTIONS(5020), + [sym__emphasis_close_star] = ACTIONS(5020), + [sym__strikeout_open] = ACTIONS(5020), + [sym__latex_span_start] = ACTIONS(5020), + [sym__single_quote_open] = ACTIONS(5020), + [sym__double_quote_open] = ACTIONS(5020), + [sym__superscript_open] = ACTIONS(5020), + [sym__subscript_open] = ACTIONS(5020), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5020), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5020), + [sym__cite_author_in_text] = ACTIONS(5020), + [sym__cite_suppress_author] = ACTIONS(5020), + [sym__shortcode_open_escaped] = ACTIONS(5020), + [sym__shortcode_open] = ACTIONS(5020), + [sym__unclosed_span] = ACTIONS(5020), + }, + [STATE(1282)] = { + [sym__backslash_escape] = ACTIONS(4996), + [sym_entity_reference] = ACTIONS(4996), + [sym_numeric_character_reference] = ACTIONS(4996), + [anon_sym_LT] = ACTIONS(4998), + [anon_sym_GT] = ACTIONS(4996), + [anon_sym_BANG] = ACTIONS(4996), + [anon_sym_DQUOTE] = ACTIONS(4996), + [anon_sym_POUND] = ACTIONS(4996), + [anon_sym_DOLLAR] = ACTIONS(4996), + [anon_sym_PERCENT] = ACTIONS(4996), + [anon_sym_AMP] = ACTIONS(4998), + [anon_sym_SQUOTE] = ACTIONS(4996), + [anon_sym_STAR] = ACTIONS(4996), + [anon_sym_PLUS] = ACTIONS(4996), + [anon_sym_COMMA] = ACTIONS(4996), + [anon_sym_DASH] = ACTIONS(4998), + [anon_sym_DOT] = ACTIONS(4998), + [anon_sym_SLASH] = ACTIONS(4996), + [anon_sym_COLON] = ACTIONS(4996), + [anon_sym_SEMI] = ACTIONS(4996), + [anon_sym_EQ] = ACTIONS(4996), + [anon_sym_QMARK] = ACTIONS(4996), + [anon_sym_LBRACK] = ACTIONS(4998), + [anon_sym_BSLASH] = ACTIONS(4998), + [anon_sym_CARET] = ACTIONS(4998), + [anon_sym__] = ACTIONS(4996), + [anon_sym_BQUOTE] = ACTIONS(4996), + [anon_sym_LBRACE] = ACTIONS(4996), + [anon_sym_PIPE] = ACTIONS(4996), + [anon_sym_TILDE] = ACTIONS(4996), + [anon_sym_LPAREN] = ACTIONS(4996), + [anon_sym_RPAREN] = ACTIONS(4996), + [sym__newline_token] = ACTIONS(4996), + [aux_sym_insert_token1] = ACTIONS(4996), + [aux_sym_delete_token1] = ACTIONS(4996), + [aux_sym_highlight_token1] = ACTIONS(4996), + [aux_sym_edit_comment_token1] = ACTIONS(4996), + [anon_sym_CARET_LBRACK] = ACTIONS(4996), + [anon_sym_LBRACK_CARET] = ACTIONS(4996), + [sym_uri_autolink] = ACTIONS(4996), + [sym_email_autolink] = ACTIONS(4996), + [sym__whitespace_ge_2] = ACTIONS(4996), + [aux_sym__whitespace_token1] = ACTIONS(4998), + [sym__word_no_digit] = ACTIONS(4996), + [sym__digits] = ACTIONS(4996), + [anon_sym_DASH_DASH] = ACTIONS(4998), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4996), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4996), + [sym__code_span_start] = ACTIONS(4996), + [sym__emphasis_open_star] = ACTIONS(4996), + [sym__emphasis_open_underscore] = ACTIONS(4996), + [sym__strikeout_open] = ACTIONS(4996), + [sym__latex_span_start] = ACTIONS(4996), + [sym__single_quote_open] = ACTIONS(4996), + [sym__double_quote_open] = ACTIONS(4996), + [sym__double_quote_close] = ACTIONS(4996), + [sym__superscript_open] = ACTIONS(4996), + [sym__subscript_open] = ACTIONS(4996), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4996), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4996), + [sym__cite_author_in_text] = ACTIONS(4996), + [sym__cite_suppress_author] = ACTIONS(4996), + [sym__shortcode_open_escaped] = ACTIONS(4996), + [sym__shortcode_open] = ACTIONS(4996), + [sym__unclosed_span] = ACTIONS(4996), + }, + [STATE(1283)] = { + [sym__backslash_escape] = ACTIONS(4936), + [sym_entity_reference] = ACTIONS(4936), + [sym_numeric_character_reference] = ACTIONS(4936), + [anon_sym_LT] = ACTIONS(4938), + [anon_sym_GT] = ACTIONS(4936), + [anon_sym_BANG] = ACTIONS(4936), + [anon_sym_DQUOTE] = ACTIONS(4936), + [anon_sym_POUND] = ACTIONS(4936), + [anon_sym_DOLLAR] = ACTIONS(4936), + [anon_sym_PERCENT] = ACTIONS(4936), + [anon_sym_AMP] = ACTIONS(4938), + [anon_sym_SQUOTE] = ACTIONS(4936), + [anon_sym_STAR] = ACTIONS(4936), + [anon_sym_PLUS] = ACTIONS(4936), + [anon_sym_COMMA] = ACTIONS(4936), + [anon_sym_DASH] = ACTIONS(4938), + [anon_sym_DOT] = ACTIONS(4938), + [anon_sym_SLASH] = ACTIONS(4936), + [anon_sym_COLON] = ACTIONS(4936), + [anon_sym_SEMI] = ACTIONS(4936), + [anon_sym_EQ] = ACTIONS(4936), + [anon_sym_QMARK] = ACTIONS(4936), + [anon_sym_LBRACK] = ACTIONS(4938), + [anon_sym_BSLASH] = ACTIONS(4938), + [anon_sym_CARET] = ACTIONS(4938), + [anon_sym__] = ACTIONS(4936), + [anon_sym_BQUOTE] = ACTIONS(4936), + [anon_sym_LBRACE] = ACTIONS(4936), + [anon_sym_PIPE] = ACTIONS(4936), + [anon_sym_TILDE] = ACTIONS(4936), + [anon_sym_LPAREN] = ACTIONS(4936), + [anon_sym_RPAREN] = ACTIONS(4936), + [sym__newline_token] = ACTIONS(4936), + [aux_sym_insert_token1] = ACTIONS(4936), + [aux_sym_delete_token1] = ACTIONS(4936), + [aux_sym_highlight_token1] = ACTIONS(4936), + [aux_sym_edit_comment_token1] = ACTIONS(4936), + [anon_sym_CARET_LBRACK] = ACTIONS(4936), + [anon_sym_LBRACK_CARET] = ACTIONS(4936), + [sym_uri_autolink] = ACTIONS(4936), + [sym_email_autolink] = ACTIONS(4936), + [sym__whitespace_ge_2] = ACTIONS(4936), + [aux_sym__whitespace_token1] = ACTIONS(4938), + [sym__word_no_digit] = ACTIONS(4936), + [sym__digits] = ACTIONS(4936), + [anon_sym_DASH_DASH] = ACTIONS(4938), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4936), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4936), + [sym__code_span_start] = ACTIONS(4936), + [sym__emphasis_open_star] = ACTIONS(4936), + [sym__emphasis_open_underscore] = ACTIONS(4936), + [sym__emphasis_close_star] = ACTIONS(4936), + [sym__strikeout_open] = ACTIONS(4936), + [sym__latex_span_start] = ACTIONS(4936), + [sym__single_quote_open] = ACTIONS(4936), + [sym__double_quote_open] = ACTIONS(4936), + [sym__superscript_open] = ACTIONS(4936), + [sym__subscript_open] = ACTIONS(4936), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4936), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4936), + [sym__cite_author_in_text] = ACTIONS(4936), + [sym__cite_suppress_author] = ACTIONS(4936), + [sym__shortcode_open_escaped] = ACTIONS(4936), + [sym__shortcode_open] = ACTIONS(4936), + [sym__unclosed_span] = ACTIONS(4936), + }, + [STATE(1284)] = { + [sym__backslash_escape] = ACTIONS(5028), + [sym_entity_reference] = ACTIONS(5028), + [sym_numeric_character_reference] = ACTIONS(5028), + [anon_sym_LT] = ACTIONS(5030), + [anon_sym_GT] = ACTIONS(5028), + [anon_sym_BANG] = ACTIONS(5028), + [anon_sym_DQUOTE] = ACTIONS(5028), + [anon_sym_POUND] = ACTIONS(5028), + [anon_sym_DOLLAR] = ACTIONS(5028), + [anon_sym_PERCENT] = ACTIONS(5028), + [anon_sym_AMP] = ACTIONS(5030), + [anon_sym_SQUOTE] = ACTIONS(5028), + [anon_sym_STAR] = ACTIONS(5028), + [anon_sym_PLUS] = ACTIONS(5028), + [anon_sym_COMMA] = ACTIONS(5028), + [anon_sym_DASH] = ACTIONS(5030), + [anon_sym_DOT] = ACTIONS(5030), + [anon_sym_SLASH] = ACTIONS(5028), + [anon_sym_COLON] = ACTIONS(5028), + [anon_sym_SEMI] = ACTIONS(5028), + [anon_sym_EQ] = ACTIONS(5028), + [anon_sym_QMARK] = ACTIONS(5028), + [anon_sym_LBRACK] = ACTIONS(5030), + [anon_sym_BSLASH] = ACTIONS(5030), + [anon_sym_CARET] = ACTIONS(5030), + [anon_sym__] = ACTIONS(5028), + [anon_sym_BQUOTE] = ACTIONS(5028), + [anon_sym_LBRACE] = ACTIONS(5028), + [anon_sym_PIPE] = ACTIONS(5028), + [anon_sym_TILDE] = ACTIONS(5028), + [anon_sym_LPAREN] = ACTIONS(5028), + [anon_sym_RPAREN] = ACTIONS(5028), + [sym__newline_token] = ACTIONS(5028), + [aux_sym_insert_token1] = ACTIONS(5028), + [aux_sym_delete_token1] = ACTIONS(5028), + [aux_sym_highlight_token1] = ACTIONS(5028), + [aux_sym_edit_comment_token1] = ACTIONS(5028), + [anon_sym_CARET_LBRACK] = ACTIONS(5028), + [anon_sym_LBRACK_CARET] = ACTIONS(5028), + [sym_uri_autolink] = ACTIONS(5028), + [sym_email_autolink] = ACTIONS(5028), + [sym__whitespace_ge_2] = ACTIONS(5028), + [aux_sym__whitespace_token1] = ACTIONS(5030), + [sym__word_no_digit] = ACTIONS(5028), + [sym__digits] = ACTIONS(5028), + [anon_sym_DASH_DASH] = ACTIONS(5030), + [anon_sym_DASH_DASH_DASH] = ACTIONS(5028), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5028), + [sym__code_span_start] = ACTIONS(5028), + [sym__emphasis_open_star] = ACTIONS(5028), + [sym__emphasis_open_underscore] = ACTIONS(5028), + [sym__emphasis_close_star] = ACTIONS(5028), + [sym__strikeout_open] = ACTIONS(5028), + [sym__latex_span_start] = ACTIONS(5028), + [sym__single_quote_open] = ACTIONS(5028), + [sym__double_quote_open] = ACTIONS(5028), + [sym__superscript_open] = ACTIONS(5028), + [sym__subscript_open] = ACTIONS(5028), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5028), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5028), + [sym__cite_author_in_text] = ACTIONS(5028), + [sym__cite_suppress_author] = ACTIONS(5028), + [sym__shortcode_open_escaped] = ACTIONS(5028), + [sym__shortcode_open] = ACTIONS(5028), + [sym__unclosed_span] = ACTIONS(5028), + }, + [STATE(1285)] = { + [sym__backslash_escape] = ACTIONS(5036), + [sym_entity_reference] = ACTIONS(5036), + [sym_numeric_character_reference] = ACTIONS(5036), + [anon_sym_LT] = ACTIONS(5038), + [anon_sym_GT] = ACTIONS(5036), + [anon_sym_BANG] = ACTIONS(5036), + [anon_sym_DQUOTE] = ACTIONS(5036), + [anon_sym_POUND] = ACTIONS(5036), + [anon_sym_DOLLAR] = ACTIONS(5036), + [anon_sym_PERCENT] = ACTIONS(5036), + [anon_sym_AMP] = ACTIONS(5038), + [anon_sym_SQUOTE] = ACTIONS(5036), + [anon_sym_STAR] = ACTIONS(5036), + [anon_sym_PLUS] = ACTIONS(5036), + [anon_sym_COMMA] = ACTIONS(5036), + [anon_sym_DASH] = ACTIONS(5038), + [anon_sym_DOT] = ACTIONS(5038), + [anon_sym_SLASH] = ACTIONS(5036), + [anon_sym_COLON] = ACTIONS(5036), + [anon_sym_SEMI] = ACTIONS(5036), + [anon_sym_EQ] = ACTIONS(5036), + [anon_sym_QMARK] = ACTIONS(5036), + [anon_sym_LBRACK] = ACTIONS(5038), + [anon_sym_BSLASH] = ACTIONS(5038), + [anon_sym_CARET] = ACTIONS(5038), + [anon_sym__] = ACTIONS(5036), + [anon_sym_BQUOTE] = ACTIONS(5036), + [anon_sym_LBRACE] = ACTIONS(5036), + [anon_sym_PIPE] = ACTIONS(5036), + [anon_sym_TILDE] = ACTIONS(5036), + [anon_sym_LPAREN] = ACTIONS(5036), + [anon_sym_RPAREN] = ACTIONS(5036), + [sym__newline_token] = ACTIONS(5036), + [aux_sym_insert_token1] = ACTIONS(5036), + [aux_sym_delete_token1] = ACTIONS(5036), + [aux_sym_highlight_token1] = ACTIONS(5036), + [aux_sym_edit_comment_token1] = ACTIONS(5036), + [anon_sym_CARET_LBRACK] = ACTIONS(5036), + [anon_sym_LBRACK_CARET] = ACTIONS(5036), + [sym_uri_autolink] = ACTIONS(5036), + [sym_email_autolink] = ACTIONS(5036), + [sym__whitespace_ge_2] = ACTIONS(5036), + [aux_sym__whitespace_token1] = ACTIONS(5038), + [sym__word_no_digit] = ACTIONS(5036), + [sym__digits] = ACTIONS(5036), + [anon_sym_DASH_DASH] = ACTIONS(5038), + [anon_sym_DASH_DASH_DASH] = ACTIONS(5036), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5036), + [sym__code_span_start] = ACTIONS(5036), + [sym__emphasis_open_star] = ACTIONS(5036), + [sym__emphasis_open_underscore] = ACTIONS(5036), + [sym__emphasis_close_star] = ACTIONS(5036), + [sym__strikeout_open] = ACTIONS(5036), + [sym__latex_span_start] = ACTIONS(5036), + [sym__single_quote_open] = ACTIONS(5036), + [sym__double_quote_open] = ACTIONS(5036), + [sym__superscript_open] = ACTIONS(5036), + [sym__subscript_open] = ACTIONS(5036), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5036), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5036), + [sym__cite_author_in_text] = ACTIONS(5036), + [sym__cite_suppress_author] = ACTIONS(5036), + [sym__shortcode_open_escaped] = ACTIONS(5036), + [sym__shortcode_open] = ACTIONS(5036), + [sym__unclosed_span] = ACTIONS(5036), + }, + [STATE(1286)] = { + [sym__backslash_escape] = ACTIONS(4812), + [sym_entity_reference] = ACTIONS(4812), + [sym_numeric_character_reference] = ACTIONS(4812), + [anon_sym_LT] = ACTIONS(4814), + [anon_sym_GT] = ACTIONS(4812), + [anon_sym_BANG] = ACTIONS(4812), + [anon_sym_DQUOTE] = ACTIONS(4812), + [anon_sym_POUND] = ACTIONS(4812), + [anon_sym_DOLLAR] = ACTIONS(4812), + [anon_sym_PERCENT] = ACTIONS(4812), + [anon_sym_AMP] = ACTIONS(4814), + [anon_sym_SQUOTE] = ACTIONS(4812), + [anon_sym_STAR] = ACTIONS(4812), + [anon_sym_PLUS] = ACTIONS(4812), + [anon_sym_COMMA] = ACTIONS(4812), + [anon_sym_DASH] = ACTIONS(4814), + [anon_sym_DOT] = ACTIONS(4814), + [anon_sym_SLASH] = ACTIONS(4812), + [anon_sym_COLON] = ACTIONS(4812), + [anon_sym_SEMI] = ACTIONS(4812), + [anon_sym_EQ] = ACTIONS(4812), + [anon_sym_QMARK] = ACTIONS(4812), + [anon_sym_LBRACK] = ACTIONS(4814), + [anon_sym_BSLASH] = ACTIONS(4814), + [anon_sym_CARET] = ACTIONS(4814), + [anon_sym__] = ACTIONS(4812), + [anon_sym_BQUOTE] = ACTIONS(4812), + [anon_sym_LBRACE] = ACTIONS(4812), + [anon_sym_PIPE] = ACTIONS(4812), + [anon_sym_TILDE] = ACTIONS(4812), + [anon_sym_LPAREN] = ACTIONS(4812), + [anon_sym_RPAREN] = ACTIONS(4812), + [sym__newline_token] = ACTIONS(4812), + [aux_sym_insert_token1] = ACTIONS(4812), + [aux_sym_delete_token1] = ACTIONS(4812), + [aux_sym_highlight_token1] = ACTIONS(4812), + [aux_sym_edit_comment_token1] = ACTIONS(4812), + [anon_sym_CARET_LBRACK] = ACTIONS(4812), + [anon_sym_LBRACK_CARET] = ACTIONS(4812), + [sym_uri_autolink] = ACTIONS(4812), + [sym_email_autolink] = ACTIONS(4812), + [sym__whitespace_ge_2] = ACTIONS(4812), + [aux_sym__whitespace_token1] = ACTIONS(4814), + [sym__word_no_digit] = ACTIONS(4812), + [sym__digits] = ACTIONS(4812), + [anon_sym_DASH_DASH] = ACTIONS(4814), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4812), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4812), + [sym__code_span_start] = ACTIONS(4812), + [sym__emphasis_open_star] = ACTIONS(4812), + [sym__emphasis_open_underscore] = ACTIONS(4812), + [sym__emphasis_close_star] = ACTIONS(4812), + [sym__strikeout_open] = ACTIONS(4812), + [sym__latex_span_start] = ACTIONS(4812), + [sym__single_quote_open] = ACTIONS(4812), + [sym__double_quote_open] = ACTIONS(4812), + [sym__superscript_open] = ACTIONS(4812), + [sym__subscript_open] = ACTIONS(4812), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4812), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4812), + [sym__cite_author_in_text] = ACTIONS(4812), + [sym__cite_suppress_author] = ACTIONS(4812), + [sym__shortcode_open_escaped] = ACTIONS(4812), + [sym__shortcode_open] = ACTIONS(4812), + [sym__unclosed_span] = ACTIONS(4812), + }, + [STATE(1287)] = { + [sym__backslash_escape] = ACTIONS(4816), + [sym_entity_reference] = ACTIONS(4816), + [sym_numeric_character_reference] = ACTIONS(4816), + [anon_sym_LT] = ACTIONS(4818), + [anon_sym_GT] = ACTIONS(4816), + [anon_sym_BANG] = ACTIONS(4816), + [anon_sym_DQUOTE] = ACTIONS(4816), + [anon_sym_POUND] = ACTIONS(4816), + [anon_sym_DOLLAR] = ACTIONS(4816), + [anon_sym_PERCENT] = ACTIONS(4816), + [anon_sym_AMP] = ACTIONS(4818), + [anon_sym_SQUOTE] = ACTIONS(4816), + [anon_sym_STAR] = ACTIONS(4816), + [anon_sym_PLUS] = ACTIONS(4816), + [anon_sym_COMMA] = ACTIONS(4816), + [anon_sym_DASH] = ACTIONS(4818), + [anon_sym_DOT] = ACTIONS(4818), + [anon_sym_SLASH] = ACTIONS(4816), + [anon_sym_COLON] = ACTIONS(4816), + [anon_sym_SEMI] = ACTIONS(4816), + [anon_sym_EQ] = ACTIONS(4816), + [anon_sym_QMARK] = ACTIONS(4816), + [anon_sym_LBRACK] = ACTIONS(4818), + [anon_sym_BSLASH] = ACTIONS(4818), + [anon_sym_CARET] = ACTIONS(4818), + [anon_sym__] = ACTIONS(4816), + [anon_sym_BQUOTE] = ACTIONS(4816), + [anon_sym_LBRACE] = ACTIONS(4816), + [anon_sym_PIPE] = ACTIONS(4816), + [anon_sym_TILDE] = ACTIONS(4816), + [anon_sym_LPAREN] = ACTIONS(4816), + [anon_sym_RPAREN] = ACTIONS(4816), + [sym__newline_token] = ACTIONS(4816), + [aux_sym_insert_token1] = ACTIONS(4816), + [aux_sym_delete_token1] = ACTIONS(4816), + [aux_sym_highlight_token1] = ACTIONS(4816), + [aux_sym_edit_comment_token1] = ACTIONS(4816), + [anon_sym_CARET_LBRACK] = ACTIONS(4816), + [anon_sym_LBRACK_CARET] = ACTIONS(4816), + [sym_uri_autolink] = ACTIONS(4816), + [sym_email_autolink] = ACTIONS(4816), + [sym__whitespace_ge_2] = ACTIONS(4816), + [aux_sym__whitespace_token1] = ACTIONS(4818), + [sym__word_no_digit] = ACTIONS(4816), + [sym__digits] = ACTIONS(4816), + [anon_sym_DASH_DASH] = ACTIONS(4818), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4816), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4816), + [sym__code_span_start] = ACTIONS(4816), + [sym__emphasis_open_star] = ACTIONS(4816), + [sym__emphasis_open_underscore] = ACTIONS(4816), + [sym__emphasis_close_star] = ACTIONS(4816), + [sym__strikeout_open] = ACTIONS(4816), + [sym__latex_span_start] = ACTIONS(4816), + [sym__single_quote_open] = ACTIONS(4816), + [sym__double_quote_open] = ACTIONS(4816), + [sym__superscript_open] = ACTIONS(4816), + [sym__subscript_open] = ACTIONS(4816), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4816), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4816), + [sym__cite_author_in_text] = ACTIONS(4816), + [sym__cite_suppress_author] = ACTIONS(4816), + [sym__shortcode_open_escaped] = ACTIONS(4816), + [sym__shortcode_open] = ACTIONS(4816), + [sym__unclosed_span] = ACTIONS(4816), + }, + [STATE(1288)] = { + [sym__backslash_escape] = ACTIONS(4840), + [sym_entity_reference] = ACTIONS(4840), + [sym_numeric_character_reference] = ACTIONS(4840), + [anon_sym_LT] = ACTIONS(4842), + [anon_sym_GT] = ACTIONS(4840), + [anon_sym_BANG] = ACTIONS(4840), + [anon_sym_DQUOTE] = ACTIONS(4840), + [anon_sym_POUND] = ACTIONS(4840), + [anon_sym_DOLLAR] = ACTIONS(4840), + [anon_sym_PERCENT] = ACTIONS(4840), + [anon_sym_AMP] = ACTIONS(4842), + [anon_sym_SQUOTE] = ACTIONS(4840), + [anon_sym_STAR] = ACTIONS(4840), + [anon_sym_PLUS] = ACTIONS(4840), + [anon_sym_COMMA] = ACTIONS(4840), + [anon_sym_DASH] = ACTIONS(4842), + [anon_sym_DOT] = ACTIONS(4842), + [anon_sym_SLASH] = ACTIONS(4840), + [anon_sym_COLON] = ACTIONS(4840), + [anon_sym_SEMI] = ACTIONS(4840), + [anon_sym_EQ] = ACTIONS(4840), + [anon_sym_QMARK] = ACTIONS(4840), + [anon_sym_LBRACK] = ACTIONS(4842), + [anon_sym_BSLASH] = ACTIONS(4842), + [anon_sym_CARET] = ACTIONS(4842), + [anon_sym__] = ACTIONS(4840), + [anon_sym_BQUOTE] = ACTIONS(4840), + [anon_sym_LBRACE] = ACTIONS(4840), + [anon_sym_PIPE] = ACTIONS(4840), + [anon_sym_TILDE] = ACTIONS(4840), + [anon_sym_LPAREN] = ACTIONS(4840), + [anon_sym_RPAREN] = ACTIONS(4840), + [sym__newline_token] = ACTIONS(4840), + [aux_sym_insert_token1] = ACTIONS(4840), + [aux_sym_delete_token1] = ACTIONS(4840), + [aux_sym_highlight_token1] = ACTIONS(4840), + [aux_sym_edit_comment_token1] = ACTIONS(4840), + [anon_sym_CARET_LBRACK] = ACTIONS(4840), + [anon_sym_LBRACK_CARET] = ACTIONS(4840), + [sym_uri_autolink] = ACTIONS(4840), + [sym_email_autolink] = ACTIONS(4840), + [sym__whitespace_ge_2] = ACTIONS(4840), + [aux_sym__whitespace_token1] = ACTIONS(4842), + [sym__word_no_digit] = ACTIONS(4840), + [sym__digits] = ACTIONS(4840), + [anon_sym_DASH_DASH] = ACTIONS(4842), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4840), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4840), + [sym__code_span_start] = ACTIONS(4840), + [sym__emphasis_open_star] = ACTIONS(4840), + [sym__emphasis_open_underscore] = ACTIONS(4840), + [sym__emphasis_close_star] = ACTIONS(4840), + [sym__strikeout_open] = ACTIONS(4840), + [sym__latex_span_start] = ACTIONS(4840), + [sym__single_quote_open] = ACTIONS(4840), + [sym__double_quote_open] = ACTIONS(4840), + [sym__superscript_open] = ACTIONS(4840), + [sym__subscript_open] = ACTIONS(4840), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4840), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4840), + [sym__cite_author_in_text] = ACTIONS(4840), + [sym__cite_suppress_author] = ACTIONS(4840), + [sym__shortcode_open_escaped] = ACTIONS(4840), + [sym__shortcode_open] = ACTIONS(4840), + [sym__unclosed_span] = ACTIONS(4840), + }, + [STATE(1289)] = { + [sym__backslash_escape] = ACTIONS(5000), + [sym_entity_reference] = ACTIONS(5000), + [sym_numeric_character_reference] = ACTIONS(5000), + [anon_sym_LT] = ACTIONS(5002), + [anon_sym_GT] = ACTIONS(5000), + [anon_sym_BANG] = ACTIONS(5000), + [anon_sym_DQUOTE] = ACTIONS(5000), + [anon_sym_POUND] = ACTIONS(5000), + [anon_sym_DOLLAR] = ACTIONS(5000), + [anon_sym_PERCENT] = ACTIONS(5000), + [anon_sym_AMP] = ACTIONS(5002), + [anon_sym_SQUOTE] = ACTIONS(5000), + [anon_sym_STAR] = ACTIONS(5000), + [anon_sym_PLUS] = ACTIONS(5000), + [anon_sym_COMMA] = ACTIONS(5000), + [anon_sym_DASH] = ACTIONS(5002), + [anon_sym_DOT] = ACTIONS(5002), + [anon_sym_SLASH] = ACTIONS(5000), + [anon_sym_COLON] = ACTIONS(5000), + [anon_sym_SEMI] = ACTIONS(5000), + [anon_sym_EQ] = ACTIONS(5000), + [anon_sym_QMARK] = ACTIONS(5000), + [anon_sym_LBRACK] = ACTIONS(5002), + [anon_sym_BSLASH] = ACTIONS(5002), + [anon_sym_CARET] = ACTIONS(5002), + [anon_sym__] = ACTIONS(5000), + [anon_sym_BQUOTE] = ACTIONS(5000), + [anon_sym_LBRACE] = ACTIONS(5000), + [anon_sym_PIPE] = ACTIONS(5000), + [anon_sym_TILDE] = ACTIONS(5000), + [anon_sym_LPAREN] = ACTIONS(5000), + [anon_sym_RPAREN] = ACTIONS(5000), + [sym__newline_token] = ACTIONS(5000), + [aux_sym_insert_token1] = ACTIONS(5000), + [aux_sym_delete_token1] = ACTIONS(5000), + [aux_sym_highlight_token1] = ACTIONS(5000), + [aux_sym_edit_comment_token1] = ACTIONS(5000), + [anon_sym_CARET_LBRACK] = ACTIONS(5000), + [anon_sym_LBRACK_CARET] = ACTIONS(5000), + [sym_uri_autolink] = ACTIONS(5000), + [sym_email_autolink] = ACTIONS(5000), + [sym__whitespace_ge_2] = ACTIONS(5000), + [aux_sym__whitespace_token1] = ACTIONS(5002), + [sym__word_no_digit] = ACTIONS(5000), + [sym__digits] = ACTIONS(5000), + [anon_sym_DASH_DASH] = ACTIONS(5002), + [anon_sym_DASH_DASH_DASH] = ACTIONS(5000), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5000), + [sym__code_span_start] = ACTIONS(5000), + [sym__emphasis_open_star] = ACTIONS(5000), + [sym__emphasis_open_underscore] = ACTIONS(5000), + [sym__strikeout_open] = ACTIONS(5000), + [sym__latex_span_start] = ACTIONS(5000), + [sym__single_quote_open] = ACTIONS(5000), + [sym__double_quote_open] = ACTIONS(5000), + [sym__double_quote_close] = ACTIONS(5000), + [sym__superscript_open] = ACTIONS(5000), + [sym__subscript_open] = ACTIONS(5000), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5000), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5000), + [sym__cite_author_in_text] = ACTIONS(5000), + [sym__cite_suppress_author] = ACTIONS(5000), + [sym__shortcode_open_escaped] = ACTIONS(5000), + [sym__shortcode_open] = ACTIONS(5000), + [sym__unclosed_span] = ACTIONS(5000), + }, + [STATE(1290)] = { + [sym__backslash_escape] = ACTIONS(5004), + [sym_entity_reference] = ACTIONS(5004), + [sym_numeric_character_reference] = ACTIONS(5004), + [anon_sym_LT] = ACTIONS(5006), + [anon_sym_GT] = ACTIONS(5004), + [anon_sym_BANG] = ACTIONS(5004), + [anon_sym_DQUOTE] = ACTIONS(5004), + [anon_sym_POUND] = ACTIONS(5004), + [anon_sym_DOLLAR] = ACTIONS(5004), + [anon_sym_PERCENT] = ACTIONS(5004), + [anon_sym_AMP] = ACTIONS(5006), + [anon_sym_SQUOTE] = ACTIONS(5004), + [anon_sym_STAR] = ACTIONS(5004), + [anon_sym_PLUS] = ACTIONS(5004), + [anon_sym_COMMA] = ACTIONS(5004), + [anon_sym_DASH] = ACTIONS(5006), + [anon_sym_DOT] = ACTIONS(5006), + [anon_sym_SLASH] = ACTIONS(5004), + [anon_sym_COLON] = ACTIONS(5004), + [anon_sym_SEMI] = ACTIONS(5004), + [anon_sym_EQ] = ACTIONS(5004), + [anon_sym_QMARK] = ACTIONS(5004), + [anon_sym_LBRACK] = ACTIONS(5006), + [anon_sym_BSLASH] = ACTIONS(5006), + [anon_sym_CARET] = ACTIONS(5006), + [anon_sym__] = ACTIONS(5004), + [anon_sym_BQUOTE] = ACTIONS(5004), + [anon_sym_LBRACE] = ACTIONS(5004), + [anon_sym_PIPE] = ACTIONS(5004), + [anon_sym_TILDE] = ACTIONS(5004), + [anon_sym_LPAREN] = ACTIONS(5004), + [anon_sym_RPAREN] = ACTIONS(5004), + [sym__newline_token] = ACTIONS(5004), + [aux_sym_insert_token1] = ACTIONS(5004), + [aux_sym_delete_token1] = ACTIONS(5004), + [aux_sym_highlight_token1] = ACTIONS(5004), + [aux_sym_edit_comment_token1] = ACTIONS(5004), + [anon_sym_CARET_LBRACK] = ACTIONS(5004), + [anon_sym_LBRACK_CARET] = ACTIONS(5004), + [sym_uri_autolink] = ACTIONS(5004), + [sym_email_autolink] = ACTIONS(5004), + [sym__whitespace_ge_2] = ACTIONS(5004), + [aux_sym__whitespace_token1] = ACTIONS(5006), + [sym__word_no_digit] = ACTIONS(5004), + [sym__digits] = ACTIONS(5004), + [anon_sym_DASH_DASH] = ACTIONS(5006), + [anon_sym_DASH_DASH_DASH] = ACTIONS(5004), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5004), + [sym__code_span_start] = ACTIONS(5004), + [sym__emphasis_open_star] = ACTIONS(5004), + [sym__emphasis_open_underscore] = ACTIONS(5004), + [sym__strikeout_open] = ACTIONS(5004), + [sym__latex_span_start] = ACTIONS(5004), + [sym__single_quote_open] = ACTIONS(5004), + [sym__double_quote_open] = ACTIONS(5004), + [sym__double_quote_close] = ACTIONS(5004), + [sym__superscript_open] = ACTIONS(5004), + [sym__subscript_open] = ACTIONS(5004), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5004), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5004), + [sym__cite_author_in_text] = ACTIONS(5004), + [sym__cite_suppress_author] = ACTIONS(5004), + [sym__shortcode_open_escaped] = ACTIONS(5004), + [sym__shortcode_open] = ACTIONS(5004), + [sym__unclosed_span] = ACTIONS(5004), + }, + [STATE(1291)] = { + [sym__backslash_escape] = ACTIONS(4880), + [sym_entity_reference] = ACTIONS(4880), + [sym_numeric_character_reference] = ACTIONS(4880), + [anon_sym_LT] = ACTIONS(4882), + [anon_sym_GT] = ACTIONS(4880), + [anon_sym_BANG] = ACTIONS(4880), + [anon_sym_DQUOTE] = ACTIONS(4880), + [anon_sym_POUND] = ACTIONS(4880), + [anon_sym_DOLLAR] = ACTIONS(4880), + [anon_sym_PERCENT] = ACTIONS(4880), + [anon_sym_AMP] = ACTIONS(4882), + [anon_sym_SQUOTE] = ACTIONS(4880), + [anon_sym_STAR] = ACTIONS(4880), + [anon_sym_PLUS] = ACTIONS(4880), + [anon_sym_COMMA] = ACTIONS(4880), + [anon_sym_DASH] = ACTIONS(4882), + [anon_sym_DOT] = ACTIONS(4882), + [anon_sym_SLASH] = ACTIONS(4880), + [anon_sym_COLON] = ACTIONS(4880), + [anon_sym_SEMI] = ACTIONS(4880), + [anon_sym_EQ] = ACTIONS(4880), + [anon_sym_QMARK] = ACTIONS(4880), + [anon_sym_LBRACK] = ACTIONS(4882), + [anon_sym_BSLASH] = ACTIONS(4882), + [anon_sym_CARET] = ACTIONS(4882), + [anon_sym__] = ACTIONS(4880), + [anon_sym_BQUOTE] = ACTIONS(4880), + [anon_sym_LBRACE] = ACTIONS(4880), + [anon_sym_PIPE] = ACTIONS(4880), + [anon_sym_TILDE] = ACTIONS(4880), + [anon_sym_LPAREN] = ACTIONS(4880), + [anon_sym_RPAREN] = ACTIONS(4880), + [sym__newline_token] = ACTIONS(4880), + [aux_sym_insert_token1] = ACTIONS(4880), + [aux_sym_delete_token1] = ACTIONS(4880), + [aux_sym_highlight_token1] = ACTIONS(4880), + [aux_sym_edit_comment_token1] = ACTIONS(4880), + [anon_sym_CARET_LBRACK] = ACTIONS(4880), + [anon_sym_LBRACK_CARET] = ACTIONS(4880), + [sym_uri_autolink] = ACTIONS(4880), + [sym_email_autolink] = ACTIONS(4880), + [sym__whitespace_ge_2] = ACTIONS(4880), + [aux_sym__whitespace_token1] = ACTIONS(4882), + [sym__word_no_digit] = ACTIONS(4880), + [sym__digits] = ACTIONS(4880), + [anon_sym_DASH_DASH] = ACTIONS(4882), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4880), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4880), + [sym__code_span_start] = ACTIONS(4880), + [sym__emphasis_open_star] = ACTIONS(4880), + [sym__emphasis_open_underscore] = ACTIONS(4880), + [sym__emphasis_close_star] = ACTIONS(4880), + [sym__strikeout_open] = ACTIONS(4880), + [sym__latex_span_start] = ACTIONS(4880), + [sym__single_quote_open] = ACTIONS(4880), + [sym__double_quote_open] = ACTIONS(4880), + [sym__superscript_open] = ACTIONS(4880), + [sym__subscript_open] = ACTIONS(4880), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4880), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4880), + [sym__cite_author_in_text] = ACTIONS(4880), + [sym__cite_suppress_author] = ACTIONS(4880), + [sym__shortcode_open_escaped] = ACTIONS(4880), + [sym__shortcode_open] = ACTIONS(4880), + [sym__unclosed_span] = ACTIONS(4880), + }, + [STATE(1292)] = { + [sym__backslash_escape] = ACTIONS(4596), + [sym_entity_reference] = ACTIONS(4596), + [sym_numeric_character_reference] = ACTIONS(4596), + [anon_sym_LT] = ACTIONS(4598), + [anon_sym_GT] = ACTIONS(4596), + [anon_sym_BANG] = ACTIONS(4596), + [anon_sym_DQUOTE] = ACTIONS(4596), + [anon_sym_POUND] = ACTIONS(4596), + [anon_sym_DOLLAR] = ACTIONS(4596), + [anon_sym_PERCENT] = ACTIONS(4596), + [anon_sym_AMP] = ACTIONS(4598), + [anon_sym_SQUOTE] = ACTIONS(4596), + [anon_sym_STAR] = ACTIONS(4596), + [anon_sym_PLUS] = ACTIONS(4596), + [anon_sym_COMMA] = ACTIONS(4596), + [anon_sym_DASH] = ACTIONS(4598), + [anon_sym_DOT] = ACTIONS(4598), + [anon_sym_SLASH] = ACTIONS(4596), + [anon_sym_COLON] = ACTIONS(4596), + [anon_sym_SEMI] = ACTIONS(4596), + [anon_sym_EQ] = ACTIONS(4596), + [anon_sym_QMARK] = ACTIONS(4596), + [anon_sym_LBRACK] = ACTIONS(4598), + [anon_sym_BSLASH] = ACTIONS(4598), + [anon_sym_CARET] = ACTIONS(4598), + [anon_sym__] = ACTIONS(4596), + [anon_sym_BQUOTE] = ACTIONS(4596), + [anon_sym_LBRACE] = ACTIONS(4596), + [anon_sym_PIPE] = ACTIONS(4596), + [anon_sym_TILDE] = ACTIONS(4596), + [anon_sym_LPAREN] = ACTIONS(4596), + [anon_sym_RPAREN] = ACTIONS(4596), + [sym__newline_token] = ACTIONS(4596), + [aux_sym_insert_token1] = ACTIONS(4596), + [aux_sym_delete_token1] = ACTIONS(4596), + [aux_sym_highlight_token1] = ACTIONS(4596), + [aux_sym_edit_comment_token1] = ACTIONS(4596), + [anon_sym_CARET_LBRACK] = ACTIONS(4596), + [anon_sym_LBRACK_CARET] = ACTIONS(4596), + [sym_uri_autolink] = ACTIONS(4596), + [sym_email_autolink] = ACTIONS(4596), + [sym__whitespace_ge_2] = ACTIONS(4596), + [aux_sym__whitespace_token1] = ACTIONS(4598), + [sym__word_no_digit] = ACTIONS(4596), + [sym__digits] = ACTIONS(4596), + [anon_sym_DASH_DASH] = ACTIONS(4598), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4596), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4596), + [sym__code_span_start] = ACTIONS(4596), + [sym__emphasis_open_star] = ACTIONS(4596), + [sym__emphasis_open_underscore] = ACTIONS(4596), + [sym__emphasis_close_star] = ACTIONS(4596), + [sym__strikeout_open] = ACTIONS(4596), + [sym__latex_span_start] = ACTIONS(4596), + [sym__single_quote_open] = ACTIONS(4596), + [sym__double_quote_open] = ACTIONS(4596), + [sym__superscript_open] = ACTIONS(4596), + [sym__subscript_open] = ACTIONS(4596), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4596), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4596), + [sym__cite_author_in_text] = ACTIONS(4596), + [sym__cite_suppress_author] = ACTIONS(4596), + [sym__shortcode_open_escaped] = ACTIONS(4596), + [sym__shortcode_open] = ACTIONS(4596), + [sym__unclosed_span] = ACTIONS(4596), + }, + [STATE(1293)] = { + [ts_builtin_sym_end] = ACTIONS(5004), + [sym__backslash_escape] = ACTIONS(5004), + [sym_entity_reference] = ACTIONS(5004), + [sym_numeric_character_reference] = ACTIONS(5004), + [anon_sym_LT] = ACTIONS(5006), + [anon_sym_GT] = ACTIONS(5004), + [anon_sym_BANG] = ACTIONS(5004), + [anon_sym_DQUOTE] = ACTIONS(5004), + [anon_sym_POUND] = ACTIONS(5004), + [anon_sym_DOLLAR] = ACTIONS(5004), + [anon_sym_PERCENT] = ACTIONS(5004), + [anon_sym_AMP] = ACTIONS(5006), + [anon_sym_SQUOTE] = ACTIONS(5004), + [anon_sym_STAR] = ACTIONS(5004), + [anon_sym_PLUS] = ACTIONS(5004), + [anon_sym_COMMA] = ACTIONS(5004), + [anon_sym_DASH] = ACTIONS(5006), + [anon_sym_DOT] = ACTIONS(5006), + [anon_sym_SLASH] = ACTIONS(5004), + [anon_sym_COLON] = ACTIONS(5004), + [anon_sym_SEMI] = ACTIONS(5004), + [anon_sym_EQ] = ACTIONS(5004), + [anon_sym_QMARK] = ACTIONS(5004), + [anon_sym_LBRACK] = ACTIONS(5006), + [anon_sym_BSLASH] = ACTIONS(5006), + [anon_sym_CARET] = ACTIONS(5006), + [anon_sym__] = ACTIONS(5004), + [anon_sym_BQUOTE] = ACTIONS(5004), + [anon_sym_LBRACE] = ACTIONS(5004), + [anon_sym_PIPE] = ACTIONS(5004), + [anon_sym_TILDE] = ACTIONS(5004), + [anon_sym_LPAREN] = ACTIONS(5004), + [anon_sym_RPAREN] = ACTIONS(5004), + [sym__newline_token] = ACTIONS(5004), + [aux_sym_insert_token1] = ACTIONS(5004), + [aux_sym_delete_token1] = ACTIONS(5004), + [aux_sym_highlight_token1] = ACTIONS(5004), + [aux_sym_edit_comment_token1] = ACTIONS(5004), + [anon_sym_CARET_LBRACK] = ACTIONS(5004), + [anon_sym_LBRACK_CARET] = ACTIONS(5004), + [sym_uri_autolink] = ACTIONS(5004), + [sym_email_autolink] = ACTIONS(5004), + [sym__whitespace_ge_2] = ACTIONS(5004), + [aux_sym__whitespace_token1] = ACTIONS(5006), + [sym__word_no_digit] = ACTIONS(5004), + [sym__digits] = ACTIONS(5004), + [anon_sym_DASH_DASH] = ACTIONS(5006), + [anon_sym_DASH_DASH_DASH] = ACTIONS(5004), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5004), + [sym__code_span_start] = ACTIONS(5004), + [sym__emphasis_open_star] = ACTIONS(5004), + [sym__emphasis_open_underscore] = ACTIONS(5004), + [sym__strikeout_open] = ACTIONS(5004), + [sym__latex_span_start] = ACTIONS(5004), + [sym__single_quote_open] = ACTIONS(5004), + [sym__double_quote_open] = ACTIONS(5004), + [sym__superscript_open] = ACTIONS(5004), + [sym__subscript_open] = ACTIONS(5004), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5004), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5004), + [sym__cite_author_in_text] = ACTIONS(5004), + [sym__cite_suppress_author] = ACTIONS(5004), + [sym__shortcode_open_escaped] = ACTIONS(5004), + [sym__shortcode_open] = ACTIONS(5004), + [sym__unclosed_span] = ACTIONS(5004), + }, + [STATE(1294)] = { + [sym__backslash_escape] = ACTIONS(5008), + [sym_entity_reference] = ACTIONS(5008), + [sym_numeric_character_reference] = ACTIONS(5008), + [anon_sym_LT] = ACTIONS(5010), + [anon_sym_GT] = ACTIONS(5008), + [anon_sym_BANG] = ACTIONS(5008), + [anon_sym_DQUOTE] = ACTIONS(5008), + [anon_sym_POUND] = ACTIONS(5008), + [anon_sym_DOLLAR] = ACTIONS(5008), + [anon_sym_PERCENT] = ACTIONS(5008), + [anon_sym_AMP] = ACTIONS(5010), + [anon_sym_SQUOTE] = ACTIONS(5008), + [anon_sym_STAR] = ACTIONS(5008), + [anon_sym_PLUS] = ACTIONS(5008), + [anon_sym_COMMA] = ACTIONS(5008), + [anon_sym_DASH] = ACTIONS(5010), + [anon_sym_DOT] = ACTIONS(5010), + [anon_sym_SLASH] = ACTIONS(5008), + [anon_sym_COLON] = ACTIONS(5008), + [anon_sym_SEMI] = ACTIONS(5008), + [anon_sym_EQ] = ACTIONS(5008), + [anon_sym_QMARK] = ACTIONS(5008), + [anon_sym_LBRACK] = ACTIONS(5010), + [anon_sym_BSLASH] = ACTIONS(5010), + [anon_sym_CARET] = ACTIONS(5010), + [anon_sym__] = ACTIONS(5008), + [anon_sym_BQUOTE] = ACTIONS(5008), + [anon_sym_LBRACE] = ACTIONS(5008), + [anon_sym_PIPE] = ACTIONS(5008), + [anon_sym_TILDE] = ACTIONS(5008), + [anon_sym_LPAREN] = ACTIONS(5008), + [anon_sym_RPAREN] = ACTIONS(5008), + [sym__newline_token] = ACTIONS(5008), + [aux_sym_insert_token1] = ACTIONS(5008), + [aux_sym_delete_token1] = ACTIONS(5008), + [aux_sym_highlight_token1] = ACTIONS(5008), + [aux_sym_edit_comment_token1] = ACTIONS(5008), + [anon_sym_CARET_LBRACK] = ACTIONS(5008), + [anon_sym_LBRACK_CARET] = ACTIONS(5008), + [sym_uri_autolink] = ACTIONS(5008), + [sym_email_autolink] = ACTIONS(5008), + [sym__whitespace_ge_2] = ACTIONS(5008), + [aux_sym__whitespace_token1] = ACTIONS(5010), + [sym__word_no_digit] = ACTIONS(5008), + [sym__digits] = ACTIONS(5008), + [anon_sym_DASH_DASH] = ACTIONS(5010), + [anon_sym_DASH_DASH_DASH] = ACTIONS(5008), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5008), + [sym__code_span_start] = ACTIONS(5008), + [sym__emphasis_open_star] = ACTIONS(5008), + [sym__emphasis_open_underscore] = ACTIONS(5008), + [sym__strikeout_open] = ACTIONS(5008), + [sym__latex_span_start] = ACTIONS(5008), + [sym__single_quote_open] = ACTIONS(5008), + [sym__double_quote_open] = ACTIONS(5008), + [sym__double_quote_close] = ACTIONS(5008), + [sym__superscript_open] = ACTIONS(5008), + [sym__subscript_open] = ACTIONS(5008), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5008), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5008), + [sym__cite_author_in_text] = ACTIONS(5008), + [sym__cite_suppress_author] = ACTIONS(5008), + [sym__shortcode_open_escaped] = ACTIONS(5008), + [sym__shortcode_open] = ACTIONS(5008), + [sym__unclosed_span] = ACTIONS(5008), + }, + [STATE(1295)] = { + [sym__backslash_escape] = ACTIONS(4900), + [sym_entity_reference] = ACTIONS(4900), + [sym_numeric_character_reference] = ACTIONS(4900), + [anon_sym_LT] = ACTIONS(4902), + [anon_sym_GT] = ACTIONS(4900), + [anon_sym_BANG] = ACTIONS(4900), + [anon_sym_DQUOTE] = ACTIONS(4900), + [anon_sym_POUND] = ACTIONS(4900), + [anon_sym_DOLLAR] = ACTIONS(4900), + [anon_sym_PERCENT] = ACTIONS(4900), + [anon_sym_AMP] = ACTIONS(4902), + [anon_sym_SQUOTE] = ACTIONS(4900), + [anon_sym_STAR] = ACTIONS(4900), + [anon_sym_PLUS] = ACTIONS(4900), + [anon_sym_COMMA] = ACTIONS(4900), + [anon_sym_DASH] = ACTIONS(4902), + [anon_sym_DOT] = ACTIONS(4902), + [anon_sym_SLASH] = ACTIONS(4900), + [anon_sym_COLON] = ACTIONS(4900), + [anon_sym_SEMI] = ACTIONS(4900), + [anon_sym_EQ] = ACTIONS(4900), + [anon_sym_QMARK] = ACTIONS(4900), + [anon_sym_LBRACK] = ACTIONS(4902), + [anon_sym_BSLASH] = ACTIONS(4902), + [anon_sym_CARET] = ACTIONS(4902), + [anon_sym__] = ACTIONS(4900), + [anon_sym_BQUOTE] = ACTIONS(4900), + [anon_sym_LBRACE] = ACTIONS(4900), + [anon_sym_PIPE] = ACTIONS(4900), + [anon_sym_TILDE] = ACTIONS(4900), + [anon_sym_LPAREN] = ACTIONS(4900), + [anon_sym_RPAREN] = ACTIONS(4900), + [sym__newline_token] = ACTIONS(4900), + [aux_sym_insert_token1] = ACTIONS(4900), + [aux_sym_delete_token1] = ACTIONS(4900), + [aux_sym_highlight_token1] = ACTIONS(4900), + [aux_sym_edit_comment_token1] = ACTIONS(4900), + [anon_sym_CARET_LBRACK] = ACTIONS(4900), + [anon_sym_LBRACK_CARET] = ACTIONS(4900), + [sym_uri_autolink] = ACTIONS(4900), + [sym_email_autolink] = ACTIONS(4900), + [sym__whitespace_ge_2] = ACTIONS(4900), + [aux_sym__whitespace_token1] = ACTIONS(4902), + [sym__word_no_digit] = ACTIONS(4900), + [sym__digits] = ACTIONS(4900), + [anon_sym_DASH_DASH] = ACTIONS(4902), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4900), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4900), + [sym__code_span_start] = ACTIONS(4900), + [sym__emphasis_open_star] = ACTIONS(4900), + [sym__emphasis_open_underscore] = ACTIONS(4900), + [sym__emphasis_close_star] = ACTIONS(4900), + [sym__strikeout_open] = ACTIONS(4900), + [sym__latex_span_start] = ACTIONS(4900), + [sym__single_quote_open] = ACTIONS(4900), + [sym__double_quote_open] = ACTIONS(4900), + [sym__superscript_open] = ACTIONS(4900), + [sym__subscript_open] = ACTIONS(4900), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4900), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4900), + [sym__cite_author_in_text] = ACTIONS(4900), + [sym__cite_suppress_author] = ACTIONS(4900), + [sym__shortcode_open_escaped] = ACTIONS(4900), + [sym__shortcode_open] = ACTIONS(4900), + [sym__unclosed_span] = ACTIONS(4900), + }, + [STATE(1296)] = { + [sym__backslash_escape] = ACTIONS(5064), + [sym_entity_reference] = ACTIONS(5064), + [sym_numeric_character_reference] = ACTIONS(5064), + [anon_sym_LT] = ACTIONS(5066), + [anon_sym_GT] = ACTIONS(5064), + [anon_sym_BANG] = ACTIONS(5064), + [anon_sym_DQUOTE] = ACTIONS(5064), + [anon_sym_POUND] = ACTIONS(5064), + [anon_sym_DOLLAR] = ACTIONS(5064), + [anon_sym_PERCENT] = ACTIONS(5064), + [anon_sym_AMP] = ACTIONS(5066), + [anon_sym_SQUOTE] = ACTIONS(5064), + [anon_sym_STAR] = ACTIONS(5064), + [anon_sym_PLUS] = ACTIONS(5064), + [anon_sym_COMMA] = ACTIONS(5064), + [anon_sym_DASH] = ACTIONS(5066), + [anon_sym_DOT] = ACTIONS(5066), + [anon_sym_SLASH] = ACTIONS(5064), + [anon_sym_COLON] = ACTIONS(5064), + [anon_sym_SEMI] = ACTIONS(5064), + [anon_sym_EQ] = ACTIONS(5064), + [anon_sym_QMARK] = ACTIONS(5064), + [anon_sym_LBRACK] = ACTIONS(5066), + [anon_sym_BSLASH] = ACTIONS(5066), + [anon_sym_CARET] = ACTIONS(5066), + [anon_sym__] = ACTIONS(5064), + [anon_sym_BQUOTE] = ACTIONS(5064), + [anon_sym_LBRACE] = ACTIONS(5064), + [anon_sym_PIPE] = ACTIONS(5064), + [anon_sym_TILDE] = ACTIONS(5064), + [anon_sym_LPAREN] = ACTIONS(5064), + [anon_sym_RPAREN] = ACTIONS(5064), + [sym__newline_token] = ACTIONS(5064), + [aux_sym_insert_token1] = ACTIONS(5064), + [aux_sym_delete_token1] = ACTIONS(5064), + [aux_sym_highlight_token1] = ACTIONS(5064), + [aux_sym_edit_comment_token1] = ACTIONS(5064), + [anon_sym_CARET_LBRACK] = ACTIONS(5064), + [anon_sym_LBRACK_CARET] = ACTIONS(5064), + [sym_uri_autolink] = ACTIONS(5064), + [sym_email_autolink] = ACTIONS(5064), + [sym__whitespace_ge_2] = ACTIONS(5064), + [aux_sym__whitespace_token1] = ACTIONS(5066), + [sym__word_no_digit] = ACTIONS(5064), + [sym__digits] = ACTIONS(5064), + [anon_sym_DASH_DASH] = ACTIONS(5066), + [anon_sym_DASH_DASH_DASH] = ACTIONS(5064), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5064), + [sym__code_span_start] = ACTIONS(5064), + [sym__emphasis_open_star] = ACTIONS(5064), + [sym__emphasis_open_underscore] = ACTIONS(5064), + [sym__emphasis_close_star] = ACTIONS(5108), + [sym__strikeout_open] = ACTIONS(5064), + [sym__latex_span_start] = ACTIONS(5064), + [sym__single_quote_open] = ACTIONS(5064), + [sym__double_quote_open] = ACTIONS(5064), + [sym__superscript_open] = ACTIONS(5064), + [sym__subscript_open] = ACTIONS(5064), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5064), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5064), + [sym__cite_author_in_text] = ACTIONS(5064), + [sym__cite_suppress_author] = ACTIONS(5064), + [sym__shortcode_open_escaped] = ACTIONS(5064), + [sym__shortcode_open] = ACTIONS(5064), + [sym__unclosed_span] = ACTIONS(5064), + }, + [STATE(1297)] = { + [sym__backslash_escape] = ACTIONS(5012), + [sym_entity_reference] = ACTIONS(5012), + [sym_numeric_character_reference] = ACTIONS(5012), + [anon_sym_LT] = ACTIONS(5014), + [anon_sym_GT] = ACTIONS(5012), + [anon_sym_BANG] = ACTIONS(5012), + [anon_sym_DQUOTE] = ACTIONS(5012), + [anon_sym_POUND] = ACTIONS(5012), + [anon_sym_DOLLAR] = ACTIONS(5012), + [anon_sym_PERCENT] = ACTIONS(5012), + [anon_sym_AMP] = ACTIONS(5014), + [anon_sym_SQUOTE] = ACTIONS(5012), + [anon_sym_STAR] = ACTIONS(5012), + [anon_sym_PLUS] = ACTIONS(5012), + [anon_sym_COMMA] = ACTIONS(5012), + [anon_sym_DASH] = ACTIONS(5014), + [anon_sym_DOT] = ACTIONS(5014), + [anon_sym_SLASH] = ACTIONS(5012), + [anon_sym_COLON] = ACTIONS(5012), + [anon_sym_SEMI] = ACTIONS(5012), + [anon_sym_EQ] = ACTIONS(5012), + [anon_sym_QMARK] = ACTIONS(5012), + [anon_sym_LBRACK] = ACTIONS(5014), + [anon_sym_BSLASH] = ACTIONS(5014), + [anon_sym_CARET] = ACTIONS(5014), + [anon_sym__] = ACTIONS(5012), + [anon_sym_BQUOTE] = ACTIONS(5012), + [anon_sym_LBRACE] = ACTIONS(5012), + [anon_sym_PIPE] = ACTIONS(5012), + [anon_sym_TILDE] = ACTIONS(5012), + [anon_sym_LPAREN] = ACTIONS(5012), + [anon_sym_RPAREN] = ACTIONS(5012), + [sym__newline_token] = ACTIONS(5012), + [aux_sym_insert_token1] = ACTIONS(5012), + [aux_sym_delete_token1] = ACTIONS(5012), + [aux_sym_highlight_token1] = ACTIONS(5012), + [aux_sym_edit_comment_token1] = ACTIONS(5012), + [anon_sym_CARET_LBRACK] = ACTIONS(5012), + [anon_sym_LBRACK_CARET] = ACTIONS(5012), + [sym_uri_autolink] = ACTIONS(5012), + [sym_email_autolink] = ACTIONS(5012), + [sym__whitespace_ge_2] = ACTIONS(5012), + [aux_sym__whitespace_token1] = ACTIONS(5014), + [sym__word_no_digit] = ACTIONS(5012), + [sym__digits] = ACTIONS(5012), + [anon_sym_DASH_DASH] = ACTIONS(5014), + [anon_sym_DASH_DASH_DASH] = ACTIONS(5012), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5012), + [sym__code_span_start] = ACTIONS(5012), + [sym__emphasis_open_star] = ACTIONS(5012), + [sym__emphasis_open_underscore] = ACTIONS(5012), + [sym__strikeout_open] = ACTIONS(5012), + [sym__latex_span_start] = ACTIONS(5012), + [sym__single_quote_open] = ACTIONS(5012), + [sym__double_quote_open] = ACTIONS(5012), + [sym__double_quote_close] = ACTIONS(5012), + [sym__superscript_open] = ACTIONS(5012), + [sym__subscript_open] = ACTIONS(5012), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5012), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5012), + [sym__cite_author_in_text] = ACTIONS(5012), + [sym__cite_suppress_author] = ACTIONS(5012), + [sym__shortcode_open_escaped] = ACTIONS(5012), + [sym__shortcode_open] = ACTIONS(5012), + [sym__unclosed_span] = ACTIONS(5012), + }, + [STATE(1298)] = { + [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__] = ACTIONS(5071), + [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(5111), + [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), + }, + [STATE(1299)] = { + [sym__backslash_escape] = ACTIONS(4912), + [sym_entity_reference] = ACTIONS(4912), + [sym_numeric_character_reference] = ACTIONS(4912), + [anon_sym_LT] = ACTIONS(4914), + [anon_sym_GT] = ACTIONS(4912), + [anon_sym_BANG] = ACTIONS(4912), + [anon_sym_DQUOTE] = ACTIONS(4912), + [anon_sym_POUND] = ACTIONS(4912), + [anon_sym_DOLLAR] = ACTIONS(4912), + [anon_sym_PERCENT] = ACTIONS(4912), + [anon_sym_AMP] = ACTIONS(4914), + [anon_sym_SQUOTE] = ACTIONS(4912), + [anon_sym_STAR] = ACTIONS(4912), + [anon_sym_PLUS] = ACTIONS(4912), + [anon_sym_COMMA] = ACTIONS(4912), + [anon_sym_DASH] = ACTIONS(4914), + [anon_sym_DOT] = ACTIONS(4914), + [anon_sym_SLASH] = ACTIONS(4912), + [anon_sym_COLON] = ACTIONS(4912), + [anon_sym_SEMI] = ACTIONS(4912), + [anon_sym_EQ] = ACTIONS(4912), + [anon_sym_QMARK] = ACTIONS(4912), + [anon_sym_LBRACK] = ACTIONS(4914), + [anon_sym_BSLASH] = ACTIONS(4914), + [anon_sym_CARET] = ACTIONS(4914), + [anon_sym__] = ACTIONS(4912), + [anon_sym_BQUOTE] = ACTIONS(4912), + [anon_sym_LBRACE] = ACTIONS(4912), + [anon_sym_PIPE] = ACTIONS(4912), + [anon_sym_TILDE] = ACTIONS(4912), + [anon_sym_LPAREN] = ACTIONS(4912), + [anon_sym_RPAREN] = ACTIONS(4912), + [sym__newline_token] = ACTIONS(4912), + [aux_sym_insert_token1] = ACTIONS(4912), + [aux_sym_delete_token1] = ACTIONS(4912), + [aux_sym_highlight_token1] = ACTIONS(4912), + [aux_sym_edit_comment_token1] = ACTIONS(4912), + [anon_sym_CARET_LBRACK] = ACTIONS(4912), + [anon_sym_LBRACK_CARET] = ACTIONS(4912), + [sym_uri_autolink] = ACTIONS(4912), + [sym_email_autolink] = ACTIONS(4912), + [sym__whitespace_ge_2] = ACTIONS(4912), + [aux_sym__whitespace_token1] = ACTIONS(4914), + [sym__word_no_digit] = ACTIONS(4912), + [sym__digits] = ACTIONS(4912), + [anon_sym_DASH_DASH] = ACTIONS(4914), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4912), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4912), + [sym__code_span_start] = ACTIONS(4912), + [sym__emphasis_open_star] = ACTIONS(4912), + [sym__emphasis_open_underscore] = ACTIONS(4912), + [sym__emphasis_close_star] = ACTIONS(4912), + [sym__strikeout_open] = ACTIONS(4912), + [sym__latex_span_start] = ACTIONS(4912), + [sym__single_quote_open] = ACTIONS(4912), + [sym__double_quote_open] = ACTIONS(4912), + [sym__superscript_open] = ACTIONS(4912), + [sym__subscript_open] = ACTIONS(4912), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4912), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4912), + [sym__cite_author_in_text] = ACTIONS(4912), + [sym__cite_suppress_author] = ACTIONS(4912), + [sym__shortcode_open_escaped] = ACTIONS(4912), + [sym__shortcode_open] = ACTIONS(4912), + [sym__unclosed_span] = ACTIONS(4912), + }, + [STATE(1300)] = { + [sym__backslash_escape] = ACTIONS(4916), + [sym_entity_reference] = ACTIONS(4916), + [sym_numeric_character_reference] = ACTIONS(4916), + [anon_sym_LT] = ACTIONS(4918), + [anon_sym_GT] = ACTIONS(4916), + [anon_sym_BANG] = ACTIONS(4916), + [anon_sym_DQUOTE] = ACTIONS(4916), + [anon_sym_POUND] = ACTIONS(4916), + [anon_sym_DOLLAR] = ACTIONS(4916), + [anon_sym_PERCENT] = ACTIONS(4916), + [anon_sym_AMP] = ACTIONS(4918), + [anon_sym_SQUOTE] = ACTIONS(4916), + [anon_sym_STAR] = ACTIONS(4916), + [anon_sym_PLUS] = ACTIONS(4916), + [anon_sym_COMMA] = ACTIONS(4916), + [anon_sym_DASH] = ACTIONS(4918), + [anon_sym_DOT] = ACTIONS(4918), + [anon_sym_SLASH] = ACTIONS(4916), + [anon_sym_COLON] = ACTIONS(4916), + [anon_sym_SEMI] = ACTIONS(4916), + [anon_sym_EQ] = ACTIONS(4916), + [anon_sym_QMARK] = ACTIONS(4916), + [anon_sym_LBRACK] = ACTIONS(4918), + [anon_sym_BSLASH] = ACTIONS(4918), + [anon_sym_CARET] = ACTIONS(4918), + [anon_sym__] = ACTIONS(4916), + [anon_sym_BQUOTE] = ACTIONS(4916), + [anon_sym_LBRACE] = ACTIONS(4916), + [anon_sym_PIPE] = ACTIONS(4916), + [anon_sym_TILDE] = ACTIONS(4916), + [anon_sym_LPAREN] = ACTIONS(4916), + [anon_sym_RPAREN] = ACTIONS(4916), + [sym__newline_token] = ACTIONS(4916), + [aux_sym_insert_token1] = ACTIONS(4916), + [aux_sym_delete_token1] = ACTIONS(4916), + [aux_sym_highlight_token1] = ACTIONS(4916), + [aux_sym_edit_comment_token1] = ACTIONS(4916), + [anon_sym_CARET_LBRACK] = ACTIONS(4916), + [anon_sym_LBRACK_CARET] = ACTIONS(4916), + [sym_uri_autolink] = ACTIONS(4916), + [sym_email_autolink] = ACTIONS(4916), + [sym__whitespace_ge_2] = ACTIONS(4916), + [aux_sym__whitespace_token1] = ACTIONS(4918), + [sym__word_no_digit] = ACTIONS(4916), + [sym__digits] = ACTIONS(4916), + [anon_sym_DASH_DASH] = ACTIONS(4918), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4916), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4916), + [sym__code_span_start] = ACTIONS(4916), + [sym__emphasis_open_star] = ACTIONS(4916), + [sym__emphasis_open_underscore] = ACTIONS(4916), + [sym__emphasis_close_star] = ACTIONS(4916), + [sym__strikeout_open] = ACTIONS(4916), + [sym__latex_span_start] = ACTIONS(4916), + [sym__single_quote_open] = ACTIONS(4916), + [sym__double_quote_open] = ACTIONS(4916), + [sym__superscript_open] = ACTIONS(4916), + [sym__subscript_open] = ACTIONS(4916), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4916), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4916), + [sym__cite_author_in_text] = ACTIONS(4916), + [sym__cite_suppress_author] = ACTIONS(4916), + [sym__shortcode_open_escaped] = ACTIONS(4916), + [sym__shortcode_open] = ACTIONS(4916), + [sym__unclosed_span] = ACTIONS(4916), + }, + [STATE(1301)] = { + [sym__backslash_escape] = ACTIONS(4920), + [sym_entity_reference] = ACTIONS(4920), + [sym_numeric_character_reference] = ACTIONS(4920), + [anon_sym_LT] = ACTIONS(4922), + [anon_sym_GT] = ACTIONS(4920), + [anon_sym_BANG] = ACTIONS(4920), + [anon_sym_DQUOTE] = ACTIONS(4920), + [anon_sym_POUND] = ACTIONS(4920), + [anon_sym_DOLLAR] = ACTIONS(4920), + [anon_sym_PERCENT] = ACTIONS(4920), + [anon_sym_AMP] = ACTIONS(4922), + [anon_sym_SQUOTE] = ACTIONS(4920), + [anon_sym_STAR] = ACTIONS(4920), + [anon_sym_PLUS] = ACTIONS(4920), + [anon_sym_COMMA] = ACTIONS(4920), + [anon_sym_DASH] = ACTIONS(4922), + [anon_sym_DOT] = ACTIONS(4922), + [anon_sym_SLASH] = ACTIONS(4920), + [anon_sym_COLON] = ACTIONS(4920), + [anon_sym_SEMI] = ACTIONS(4920), + [anon_sym_EQ] = ACTIONS(4920), + [anon_sym_QMARK] = ACTIONS(4920), + [anon_sym_LBRACK] = ACTIONS(4922), + [anon_sym_BSLASH] = ACTIONS(4922), + [anon_sym_CARET] = ACTIONS(4922), + [anon_sym__] = ACTIONS(4920), + [anon_sym_BQUOTE] = ACTIONS(4920), + [anon_sym_LBRACE] = ACTIONS(4920), + [anon_sym_PIPE] = ACTIONS(4920), + [anon_sym_TILDE] = ACTIONS(4920), + [anon_sym_LPAREN] = ACTIONS(4920), + [anon_sym_RPAREN] = ACTIONS(4920), + [sym__newline_token] = ACTIONS(4920), + [aux_sym_insert_token1] = ACTIONS(4920), + [aux_sym_delete_token1] = ACTIONS(4920), + [aux_sym_highlight_token1] = ACTIONS(4920), + [aux_sym_edit_comment_token1] = ACTIONS(4920), + [anon_sym_CARET_LBRACK] = ACTIONS(4920), + [anon_sym_LBRACK_CARET] = ACTIONS(4920), + [sym_uri_autolink] = ACTIONS(4920), + [sym_email_autolink] = ACTIONS(4920), + [sym__whitespace_ge_2] = ACTIONS(4920), + [aux_sym__whitespace_token1] = ACTIONS(4922), + [sym__word_no_digit] = ACTIONS(4920), + [sym__digits] = ACTIONS(4920), + [anon_sym_DASH_DASH] = ACTIONS(4922), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4920), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4920), + [sym__code_span_start] = ACTIONS(4920), + [sym__emphasis_open_star] = ACTIONS(4920), + [sym__emphasis_open_underscore] = ACTIONS(4920), + [sym__emphasis_close_star] = ACTIONS(4920), + [sym__strikeout_open] = ACTIONS(4920), + [sym__latex_span_start] = ACTIONS(4920), + [sym__single_quote_open] = ACTIONS(4920), + [sym__double_quote_open] = ACTIONS(4920), + [sym__superscript_open] = ACTIONS(4920), + [sym__subscript_open] = ACTIONS(4920), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4920), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4920), + [sym__cite_author_in_text] = ACTIONS(4920), + [sym__cite_suppress_author] = ACTIONS(4920), + [sym__shortcode_open_escaped] = ACTIONS(4920), + [sym__shortcode_open] = ACTIONS(4920), + [sym__unclosed_span] = ACTIONS(4920), + }, + [STATE(1302)] = { + [sym__backslash_escape] = ACTIONS(4932), + [sym_entity_reference] = ACTIONS(4932), + [sym_numeric_character_reference] = ACTIONS(4932), + [anon_sym_LT] = ACTIONS(4934), + [anon_sym_GT] = ACTIONS(4932), + [anon_sym_BANG] = ACTIONS(4932), + [anon_sym_DQUOTE] = ACTIONS(4932), + [anon_sym_POUND] = ACTIONS(4932), + [anon_sym_DOLLAR] = ACTIONS(4932), + [anon_sym_PERCENT] = ACTIONS(4932), + [anon_sym_AMP] = ACTIONS(4934), + [anon_sym_SQUOTE] = ACTIONS(4932), + [anon_sym_STAR] = ACTIONS(4932), + [anon_sym_PLUS] = ACTIONS(4932), + [anon_sym_COMMA] = ACTIONS(4932), + [anon_sym_DASH] = ACTIONS(4934), + [anon_sym_DOT] = ACTIONS(4934), + [anon_sym_SLASH] = ACTIONS(4932), + [anon_sym_COLON] = ACTIONS(4932), + [anon_sym_SEMI] = ACTIONS(4932), + [anon_sym_EQ] = ACTIONS(4932), + [anon_sym_QMARK] = ACTIONS(4932), + [anon_sym_LBRACK] = ACTIONS(4934), + [anon_sym_BSLASH] = ACTIONS(4934), + [anon_sym_CARET] = ACTIONS(4934), + [anon_sym__] = ACTIONS(4932), + [anon_sym_BQUOTE] = ACTIONS(4932), + [anon_sym_LBRACE] = ACTIONS(4932), + [anon_sym_PIPE] = ACTIONS(4932), + [anon_sym_TILDE] = ACTIONS(4932), + [anon_sym_LPAREN] = ACTIONS(4932), + [anon_sym_RPAREN] = ACTIONS(4932), + [sym__newline_token] = ACTIONS(4932), + [aux_sym_insert_token1] = ACTIONS(4932), + [aux_sym_delete_token1] = ACTIONS(4932), + [aux_sym_highlight_token1] = ACTIONS(4932), + [aux_sym_edit_comment_token1] = ACTIONS(4932), + [anon_sym_CARET_LBRACK] = ACTIONS(4932), + [anon_sym_LBRACK_CARET] = ACTIONS(4932), + [sym_uri_autolink] = ACTIONS(4932), + [sym_email_autolink] = ACTIONS(4932), + [sym__whitespace_ge_2] = ACTIONS(4932), + [aux_sym__whitespace_token1] = ACTIONS(4934), + [sym__word_no_digit] = ACTIONS(4932), + [sym__digits] = ACTIONS(4932), + [anon_sym_DASH_DASH] = ACTIONS(4934), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4932), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4932), + [sym__code_span_start] = ACTIONS(4932), + [sym__emphasis_open_star] = ACTIONS(4932), + [sym__emphasis_open_underscore] = ACTIONS(4932), + [sym__emphasis_close_star] = ACTIONS(4932), + [sym__strikeout_open] = ACTIONS(4932), + [sym__latex_span_start] = ACTIONS(4932), + [sym__single_quote_open] = ACTIONS(4932), + [sym__double_quote_open] = ACTIONS(4932), + [sym__superscript_open] = ACTIONS(4932), + [sym__subscript_open] = ACTIONS(4932), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4932), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4932), + [sym__cite_author_in_text] = ACTIONS(4932), + [sym__cite_suppress_author] = ACTIONS(4932), + [sym__shortcode_open_escaped] = ACTIONS(4932), + [sym__shortcode_open] = ACTIONS(4932), + [sym__unclosed_span] = ACTIONS(4932), + }, + [STATE(1303)] = { + [sym__backslash_escape] = ACTIONS(4944), + [sym_entity_reference] = ACTIONS(4944), + [sym_numeric_character_reference] = ACTIONS(4944), + [anon_sym_LT] = ACTIONS(4946), + [anon_sym_GT] = ACTIONS(4944), + [anon_sym_BANG] = ACTIONS(4944), + [anon_sym_DQUOTE] = ACTIONS(4944), + [anon_sym_POUND] = ACTIONS(4944), + [anon_sym_DOLLAR] = ACTIONS(4944), + [anon_sym_PERCENT] = ACTIONS(4944), + [anon_sym_AMP] = ACTIONS(4946), + [anon_sym_SQUOTE] = ACTIONS(4944), + [anon_sym_STAR] = ACTIONS(4944), + [anon_sym_PLUS] = ACTIONS(4944), + [anon_sym_COMMA] = ACTIONS(4944), + [anon_sym_DASH] = ACTIONS(4946), + [anon_sym_DOT] = ACTIONS(4946), + [anon_sym_SLASH] = ACTIONS(4944), + [anon_sym_COLON] = ACTIONS(4944), + [anon_sym_SEMI] = ACTIONS(4944), + [anon_sym_EQ] = ACTIONS(4944), + [anon_sym_QMARK] = ACTIONS(4944), + [anon_sym_LBRACK] = ACTIONS(4946), + [anon_sym_BSLASH] = ACTIONS(4946), + [anon_sym_CARET] = ACTIONS(4946), + [anon_sym__] = ACTIONS(4944), + [anon_sym_BQUOTE] = ACTIONS(4944), + [anon_sym_LBRACE] = ACTIONS(4944), + [anon_sym_PIPE] = ACTIONS(4944), + [anon_sym_TILDE] = ACTIONS(4944), + [anon_sym_LPAREN] = ACTIONS(4944), + [anon_sym_RPAREN] = ACTIONS(4944), + [sym__newline_token] = ACTIONS(4944), + [aux_sym_insert_token1] = ACTIONS(4944), + [aux_sym_delete_token1] = ACTIONS(4944), + [aux_sym_highlight_token1] = ACTIONS(4944), + [aux_sym_edit_comment_token1] = ACTIONS(4944), + [anon_sym_CARET_LBRACK] = ACTIONS(4944), + [anon_sym_LBRACK_CARET] = ACTIONS(4944), + [sym_uri_autolink] = ACTIONS(4944), + [sym_email_autolink] = ACTIONS(4944), + [sym__whitespace_ge_2] = ACTIONS(4944), + [aux_sym__whitespace_token1] = ACTIONS(4946), + [sym__word_no_digit] = ACTIONS(4944), + [sym__digits] = ACTIONS(4944), + [anon_sym_DASH_DASH] = ACTIONS(4946), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4944), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4944), + [sym__code_span_start] = ACTIONS(4944), + [sym__emphasis_open_star] = ACTIONS(4944), + [sym__emphasis_open_underscore] = ACTIONS(4944), + [sym__emphasis_close_star] = ACTIONS(4944), + [sym__strikeout_open] = ACTIONS(4944), + [sym__latex_span_start] = ACTIONS(4944), + [sym__single_quote_open] = ACTIONS(4944), + [sym__double_quote_open] = ACTIONS(4944), + [sym__superscript_open] = ACTIONS(4944), + [sym__subscript_open] = ACTIONS(4944), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4944), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4944), + [sym__cite_author_in_text] = ACTIONS(4944), + [sym__cite_suppress_author] = ACTIONS(4944), + [sym__shortcode_open_escaped] = ACTIONS(4944), + [sym__shortcode_open] = ACTIONS(4944), + [sym__unclosed_span] = ACTIONS(4944), + }, + [STATE(1304)] = { + [sym__backslash_escape] = ACTIONS(4948), + [sym_entity_reference] = ACTIONS(4948), + [sym_numeric_character_reference] = ACTIONS(4948), + [anon_sym_LT] = ACTIONS(4950), + [anon_sym_GT] = ACTIONS(4948), + [anon_sym_BANG] = ACTIONS(4948), + [anon_sym_DQUOTE] = ACTIONS(4948), + [anon_sym_POUND] = ACTIONS(4948), + [anon_sym_DOLLAR] = ACTIONS(4948), + [anon_sym_PERCENT] = ACTIONS(4948), + [anon_sym_AMP] = ACTIONS(4950), + [anon_sym_SQUOTE] = ACTIONS(4948), + [anon_sym_STAR] = ACTIONS(4948), + [anon_sym_PLUS] = ACTIONS(4948), + [anon_sym_COMMA] = ACTIONS(4948), + [anon_sym_DASH] = ACTIONS(4950), + [anon_sym_DOT] = ACTIONS(4950), + [anon_sym_SLASH] = ACTIONS(4948), + [anon_sym_COLON] = ACTIONS(4948), + [anon_sym_SEMI] = ACTIONS(4948), + [anon_sym_EQ] = ACTIONS(4948), + [anon_sym_QMARK] = ACTIONS(4948), + [anon_sym_LBRACK] = ACTIONS(4950), + [anon_sym_BSLASH] = ACTIONS(4950), + [anon_sym_CARET] = ACTIONS(4950), + [anon_sym__] = ACTIONS(4948), + [anon_sym_BQUOTE] = ACTIONS(4948), + [anon_sym_LBRACE] = ACTIONS(4948), + [anon_sym_PIPE] = ACTIONS(4948), + [anon_sym_TILDE] = ACTIONS(4948), + [anon_sym_LPAREN] = ACTIONS(4948), + [anon_sym_RPAREN] = ACTIONS(4948), + [sym__newline_token] = ACTIONS(4948), + [aux_sym_insert_token1] = ACTIONS(4948), + [aux_sym_delete_token1] = ACTIONS(4948), + [aux_sym_highlight_token1] = ACTIONS(4948), + [aux_sym_edit_comment_token1] = ACTIONS(4948), + [anon_sym_CARET_LBRACK] = ACTIONS(4948), + [anon_sym_LBRACK_CARET] = ACTIONS(4948), + [sym_uri_autolink] = ACTIONS(4948), + [sym_email_autolink] = ACTIONS(4948), + [sym__whitespace_ge_2] = ACTIONS(4948), + [aux_sym__whitespace_token1] = ACTIONS(4950), + [sym__word_no_digit] = ACTIONS(4948), + [sym__digits] = ACTIONS(4948), + [anon_sym_DASH_DASH] = ACTIONS(4950), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4948), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4948), + [sym__code_span_start] = ACTIONS(4948), + [sym__emphasis_open_star] = ACTIONS(4948), + [sym__emphasis_open_underscore] = ACTIONS(4948), + [sym__strikeout_open] = ACTIONS(4948), + [sym__latex_span_start] = ACTIONS(4948), + [sym__single_quote_open] = ACTIONS(4948), + [sym__double_quote_open] = ACTIONS(4948), + [sym__double_quote_close] = ACTIONS(4948), + [sym__superscript_open] = ACTIONS(4948), + [sym__subscript_open] = ACTIONS(4948), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4948), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4948), + [sym__cite_author_in_text] = ACTIONS(4948), + [sym__cite_suppress_author] = ACTIONS(4948), + [sym__shortcode_open_escaped] = ACTIONS(4948), + [sym__shortcode_open] = ACTIONS(4948), + [sym__unclosed_span] = ACTIONS(4948), + }, + [STATE(1305)] = { + [ts_builtin_sym_end] = ACTIONS(4976), + [sym__backslash_escape] = ACTIONS(4976), + [sym_entity_reference] = ACTIONS(4976), + [sym_numeric_character_reference] = ACTIONS(4976), + [anon_sym_LT] = ACTIONS(4978), + [anon_sym_GT] = ACTIONS(4976), + [anon_sym_BANG] = ACTIONS(4976), + [anon_sym_DQUOTE] = ACTIONS(4976), + [anon_sym_POUND] = ACTIONS(4976), + [anon_sym_DOLLAR] = ACTIONS(4976), + [anon_sym_PERCENT] = ACTIONS(4976), + [anon_sym_AMP] = ACTIONS(4978), + [anon_sym_SQUOTE] = ACTIONS(4976), + [anon_sym_STAR] = ACTIONS(4976), + [anon_sym_PLUS] = ACTIONS(4976), + [anon_sym_COMMA] = ACTIONS(4976), + [anon_sym_DASH] = ACTIONS(4978), + [anon_sym_DOT] = ACTIONS(4978), + [anon_sym_SLASH] = ACTIONS(4976), + [anon_sym_COLON] = ACTIONS(4976), + [anon_sym_SEMI] = ACTIONS(4976), + [anon_sym_EQ] = ACTIONS(4976), + [anon_sym_QMARK] = ACTIONS(4976), + [anon_sym_LBRACK] = ACTIONS(4978), + [anon_sym_BSLASH] = ACTIONS(4978), + [anon_sym_CARET] = ACTIONS(4978), + [anon_sym__] = ACTIONS(4976), + [anon_sym_BQUOTE] = ACTIONS(4976), + [anon_sym_LBRACE] = ACTIONS(4976), + [anon_sym_PIPE] = ACTIONS(4976), + [anon_sym_TILDE] = ACTIONS(4976), + [anon_sym_LPAREN] = ACTIONS(4976), + [anon_sym_RPAREN] = ACTIONS(4976), + [sym__newline_token] = ACTIONS(4976), + [aux_sym_insert_token1] = ACTIONS(4976), + [aux_sym_delete_token1] = ACTIONS(4976), + [aux_sym_highlight_token1] = ACTIONS(4976), + [aux_sym_edit_comment_token1] = ACTIONS(4976), + [anon_sym_CARET_LBRACK] = ACTIONS(4976), + [anon_sym_LBRACK_CARET] = ACTIONS(4976), + [sym_uri_autolink] = ACTIONS(4976), + [sym_email_autolink] = ACTIONS(4976), + [sym__whitespace_ge_2] = ACTIONS(4976), + [aux_sym__whitespace_token1] = ACTIONS(4978), + [sym__word_no_digit] = ACTIONS(4976), + [sym__digits] = ACTIONS(4976), + [anon_sym_DASH_DASH] = ACTIONS(4978), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4976), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4976), + [sym__code_span_start] = ACTIONS(4976), + [sym__emphasis_open_star] = ACTIONS(4976), + [sym__emphasis_open_underscore] = ACTIONS(4976), + [sym__strikeout_open] = ACTIONS(4976), + [sym__latex_span_start] = ACTIONS(4976), + [sym__single_quote_open] = ACTIONS(4976), + [sym__double_quote_open] = ACTIONS(4976), + [sym__superscript_open] = ACTIONS(4976), + [sym__subscript_open] = ACTIONS(4976), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4976), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4976), + [sym__cite_author_in_text] = ACTIONS(4976), + [sym__cite_suppress_author] = ACTIONS(4976), + [sym__shortcode_open_escaped] = ACTIONS(4976), + [sym__shortcode_open] = ACTIONS(4976), + [sym__unclosed_span] = ACTIONS(4976), + }, + [STATE(1306)] = { + [sym__backslash_escape] = ACTIONS(4952), + [sym_entity_reference] = ACTIONS(4952), + [sym_numeric_character_reference] = ACTIONS(4952), + [anon_sym_LT] = ACTIONS(4954), + [anon_sym_GT] = ACTIONS(4952), + [anon_sym_BANG] = ACTIONS(4952), + [anon_sym_DQUOTE] = ACTIONS(4952), + [anon_sym_POUND] = ACTIONS(4952), + [anon_sym_DOLLAR] = ACTIONS(4952), + [anon_sym_PERCENT] = ACTIONS(4952), + [anon_sym_AMP] = ACTIONS(4954), + [anon_sym_SQUOTE] = ACTIONS(4952), + [anon_sym_STAR] = ACTIONS(4952), + [anon_sym_PLUS] = ACTIONS(4952), + [anon_sym_COMMA] = ACTIONS(4952), + [anon_sym_DASH] = ACTIONS(4954), + [anon_sym_DOT] = ACTIONS(4954), + [anon_sym_SLASH] = ACTIONS(4952), + [anon_sym_COLON] = ACTIONS(4952), + [anon_sym_SEMI] = ACTIONS(4952), + [anon_sym_EQ] = ACTIONS(4952), + [anon_sym_QMARK] = ACTIONS(4952), + [anon_sym_LBRACK] = ACTIONS(4954), + [anon_sym_BSLASH] = ACTIONS(4954), + [anon_sym_CARET] = ACTIONS(4954), + [anon_sym__] = ACTIONS(4952), + [anon_sym_BQUOTE] = ACTIONS(4952), + [anon_sym_LBRACE] = ACTIONS(4952), + [anon_sym_PIPE] = ACTIONS(4952), + [anon_sym_TILDE] = ACTIONS(4952), + [anon_sym_LPAREN] = ACTIONS(4952), + [anon_sym_RPAREN] = ACTIONS(4952), + [sym__newline_token] = ACTIONS(4952), + [aux_sym_insert_token1] = ACTIONS(4952), + [aux_sym_delete_token1] = ACTIONS(4952), + [aux_sym_highlight_token1] = ACTIONS(4952), + [aux_sym_edit_comment_token1] = ACTIONS(4952), + [anon_sym_CARET_LBRACK] = ACTIONS(4952), + [anon_sym_LBRACK_CARET] = ACTIONS(4952), + [sym_uri_autolink] = ACTIONS(4952), + [sym_email_autolink] = ACTIONS(4952), + [sym__whitespace_ge_2] = ACTIONS(4952), + [aux_sym__whitespace_token1] = ACTIONS(4954), + [sym__word_no_digit] = ACTIONS(4952), + [sym__digits] = ACTIONS(4952), + [anon_sym_DASH_DASH] = ACTIONS(4954), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4952), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4952), + [sym__code_span_start] = ACTIONS(4952), + [sym__emphasis_open_star] = ACTIONS(4952), + [sym__emphasis_open_underscore] = ACTIONS(4952), + [sym__emphasis_close_star] = ACTIONS(4952), + [sym__strikeout_open] = ACTIONS(4952), + [sym__latex_span_start] = ACTIONS(4952), + [sym__single_quote_open] = ACTIONS(4952), + [sym__double_quote_open] = ACTIONS(4952), + [sym__superscript_open] = ACTIONS(4952), + [sym__subscript_open] = ACTIONS(4952), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4952), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4952), + [sym__cite_author_in_text] = ACTIONS(4952), + [sym__cite_suppress_author] = ACTIONS(4952), + [sym__shortcode_open_escaped] = ACTIONS(4952), + [sym__shortcode_open] = ACTIONS(4952), + [sym__unclosed_span] = ACTIONS(4952), + }, + [STATE(1307)] = { + [sym__backslash_escape] = ACTIONS(4956), + [sym_entity_reference] = ACTIONS(4956), + [sym_numeric_character_reference] = ACTIONS(4956), + [anon_sym_LT] = ACTIONS(4958), + [anon_sym_GT] = ACTIONS(4956), + [anon_sym_BANG] = ACTIONS(4956), + [anon_sym_DQUOTE] = ACTIONS(4956), + [anon_sym_POUND] = ACTIONS(4956), + [anon_sym_DOLLAR] = ACTIONS(4956), + [anon_sym_PERCENT] = ACTIONS(4956), + [anon_sym_AMP] = ACTIONS(4958), + [anon_sym_SQUOTE] = ACTIONS(4956), + [anon_sym_STAR] = ACTIONS(4956), + [anon_sym_PLUS] = ACTIONS(4956), + [anon_sym_COMMA] = ACTIONS(4956), + [anon_sym_DASH] = ACTIONS(4958), + [anon_sym_DOT] = ACTIONS(4958), + [anon_sym_SLASH] = ACTIONS(4956), + [anon_sym_COLON] = ACTIONS(4956), + [anon_sym_SEMI] = ACTIONS(4956), + [anon_sym_EQ] = ACTIONS(4956), + [anon_sym_QMARK] = ACTIONS(4956), + [anon_sym_LBRACK] = ACTIONS(4958), + [anon_sym_BSLASH] = ACTIONS(4958), + [anon_sym_CARET] = ACTIONS(4958), + [anon_sym__] = ACTIONS(4956), + [anon_sym_BQUOTE] = ACTIONS(4956), + [anon_sym_LBRACE] = ACTIONS(4956), + [anon_sym_PIPE] = ACTIONS(4956), + [anon_sym_TILDE] = ACTIONS(4956), + [anon_sym_LPAREN] = ACTIONS(4956), + [anon_sym_RPAREN] = ACTIONS(4956), + [sym__newline_token] = ACTIONS(4956), + [aux_sym_insert_token1] = ACTIONS(4956), + [aux_sym_delete_token1] = ACTIONS(4956), + [aux_sym_highlight_token1] = ACTIONS(4956), + [aux_sym_edit_comment_token1] = ACTIONS(4956), + [anon_sym_CARET_LBRACK] = ACTIONS(4956), + [anon_sym_LBRACK_CARET] = ACTIONS(4956), + [sym_uri_autolink] = ACTIONS(4956), + [sym_email_autolink] = ACTIONS(4956), + [sym__whitespace_ge_2] = ACTIONS(4956), + [aux_sym__whitespace_token1] = ACTIONS(4958), + [sym__word_no_digit] = ACTIONS(4956), + [sym__digits] = ACTIONS(4956), + [anon_sym_DASH_DASH] = ACTIONS(4958), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4956), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4956), + [sym__code_span_start] = ACTIONS(4956), + [sym__emphasis_open_star] = ACTIONS(4956), + [sym__emphasis_open_underscore] = ACTIONS(4956), + [sym__emphasis_close_star] = ACTIONS(4956), + [sym__strikeout_open] = ACTIONS(4956), + [sym__latex_span_start] = ACTIONS(4956), + [sym__single_quote_open] = ACTIONS(4956), + [sym__double_quote_open] = ACTIONS(4956), + [sym__superscript_open] = ACTIONS(4956), + [sym__subscript_open] = ACTIONS(4956), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4956), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4956), + [sym__cite_author_in_text] = ACTIONS(4956), + [sym__cite_suppress_author] = ACTIONS(4956), + [sym__shortcode_open_escaped] = ACTIONS(4956), + [sym__shortcode_open] = ACTIONS(4956), + [sym__unclosed_span] = ACTIONS(4956), + }, + [STATE(1308)] = { + [sym__backslash_escape] = ACTIONS(4960), + [sym_entity_reference] = ACTIONS(4960), + [sym_numeric_character_reference] = ACTIONS(4960), + [anon_sym_LT] = ACTIONS(4962), + [anon_sym_GT] = ACTIONS(4960), + [anon_sym_BANG] = ACTIONS(4960), + [anon_sym_DQUOTE] = ACTIONS(4960), + [anon_sym_POUND] = ACTIONS(4960), + [anon_sym_DOLLAR] = ACTIONS(4960), + [anon_sym_PERCENT] = ACTIONS(4960), + [anon_sym_AMP] = ACTIONS(4962), + [anon_sym_SQUOTE] = ACTIONS(4960), + [anon_sym_STAR] = ACTIONS(4960), + [anon_sym_PLUS] = ACTIONS(4960), + [anon_sym_COMMA] = ACTIONS(4960), + [anon_sym_DASH] = ACTIONS(4962), + [anon_sym_DOT] = ACTIONS(4962), + [anon_sym_SLASH] = ACTIONS(4960), + [anon_sym_COLON] = ACTIONS(4960), + [anon_sym_SEMI] = ACTIONS(4960), + [anon_sym_EQ] = ACTIONS(4960), + [anon_sym_QMARK] = ACTIONS(4960), + [anon_sym_LBRACK] = ACTIONS(4962), + [anon_sym_BSLASH] = ACTIONS(4962), + [anon_sym_CARET] = ACTIONS(4962), + [anon_sym__] = ACTIONS(4960), + [anon_sym_BQUOTE] = ACTIONS(4960), + [anon_sym_LBRACE] = ACTIONS(4960), + [anon_sym_PIPE] = ACTIONS(4960), + [anon_sym_TILDE] = ACTIONS(4960), + [anon_sym_LPAREN] = ACTIONS(4960), + [anon_sym_RPAREN] = ACTIONS(4960), + [sym__newline_token] = ACTIONS(4960), + [aux_sym_insert_token1] = ACTIONS(4960), + [aux_sym_delete_token1] = ACTIONS(4960), + [aux_sym_highlight_token1] = ACTIONS(4960), + [aux_sym_edit_comment_token1] = ACTIONS(4960), + [anon_sym_CARET_LBRACK] = ACTIONS(4960), + [anon_sym_LBRACK_CARET] = ACTIONS(4960), + [sym_uri_autolink] = ACTIONS(4960), + [sym_email_autolink] = ACTIONS(4960), + [sym__whitespace_ge_2] = ACTIONS(4960), + [aux_sym__whitespace_token1] = ACTIONS(4962), + [sym__word_no_digit] = ACTIONS(4960), + [sym__digits] = ACTIONS(4960), + [anon_sym_DASH_DASH] = ACTIONS(4962), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4960), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4960), + [sym__code_span_start] = ACTIONS(4960), + [sym__emphasis_open_star] = ACTIONS(4960), + [sym__emphasis_open_underscore] = ACTIONS(4960), + [sym__emphasis_close_star] = ACTIONS(4960), + [sym__strikeout_open] = ACTIONS(4960), + [sym__latex_span_start] = ACTIONS(4960), + [sym__single_quote_open] = ACTIONS(4960), + [sym__double_quote_open] = ACTIONS(4960), + [sym__superscript_open] = ACTIONS(4960), + [sym__subscript_open] = ACTIONS(4960), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4960), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4960), + [sym__cite_author_in_text] = ACTIONS(4960), + [sym__cite_suppress_author] = ACTIONS(4960), + [sym__shortcode_open_escaped] = ACTIONS(4960), + [sym__shortcode_open] = ACTIONS(4960), + [sym__unclosed_span] = ACTIONS(4960), + }, + [STATE(1309)] = { + [sym__backslash_escape] = ACTIONS(4964), + [sym_entity_reference] = ACTIONS(4964), + [sym_numeric_character_reference] = ACTIONS(4964), + [anon_sym_LT] = ACTIONS(4966), + [anon_sym_GT] = ACTIONS(4964), + [anon_sym_BANG] = ACTIONS(4964), + [anon_sym_DQUOTE] = ACTIONS(4964), + [anon_sym_POUND] = ACTIONS(4964), + [anon_sym_DOLLAR] = ACTIONS(4964), + [anon_sym_PERCENT] = ACTIONS(4964), + [anon_sym_AMP] = ACTIONS(4966), + [anon_sym_SQUOTE] = ACTIONS(4964), + [anon_sym_STAR] = ACTIONS(4964), + [anon_sym_PLUS] = ACTIONS(4964), + [anon_sym_COMMA] = ACTIONS(4964), + [anon_sym_DASH] = ACTIONS(4966), + [anon_sym_DOT] = ACTIONS(4966), + [anon_sym_SLASH] = ACTIONS(4964), + [anon_sym_COLON] = ACTIONS(4964), + [anon_sym_SEMI] = ACTIONS(4964), + [anon_sym_EQ] = ACTIONS(4964), + [anon_sym_QMARK] = ACTIONS(4964), + [anon_sym_LBRACK] = ACTIONS(4966), + [anon_sym_BSLASH] = ACTIONS(4966), + [anon_sym_CARET] = ACTIONS(4966), + [anon_sym__] = ACTIONS(4964), + [anon_sym_BQUOTE] = ACTIONS(4964), + [anon_sym_LBRACE] = ACTIONS(4964), + [anon_sym_PIPE] = ACTIONS(4964), + [anon_sym_TILDE] = ACTIONS(4964), + [anon_sym_LPAREN] = ACTIONS(4964), + [anon_sym_RPAREN] = ACTIONS(4964), + [sym__newline_token] = ACTIONS(4964), + [aux_sym_insert_token1] = ACTIONS(4964), + [aux_sym_delete_token1] = ACTIONS(4964), + [aux_sym_highlight_token1] = ACTIONS(4964), + [aux_sym_edit_comment_token1] = ACTIONS(4964), + [anon_sym_CARET_LBRACK] = ACTIONS(4964), + [anon_sym_LBRACK_CARET] = ACTIONS(4964), + [sym_uri_autolink] = ACTIONS(4964), + [sym_email_autolink] = ACTIONS(4964), + [sym__whitespace_ge_2] = ACTIONS(4964), + [aux_sym__whitespace_token1] = ACTIONS(4966), + [sym__word_no_digit] = ACTIONS(4964), + [sym__digits] = ACTIONS(4964), + [anon_sym_DASH_DASH] = ACTIONS(4966), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4964), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4964), + [sym__code_span_start] = ACTIONS(4964), + [sym__emphasis_open_star] = ACTIONS(4964), + [sym__emphasis_open_underscore] = ACTIONS(4964), + [sym__emphasis_close_star] = ACTIONS(4964), + [sym__strikeout_open] = ACTIONS(4964), + [sym__latex_span_start] = ACTIONS(4964), + [sym__single_quote_open] = ACTIONS(4964), + [sym__double_quote_open] = ACTIONS(4964), + [sym__superscript_open] = ACTIONS(4964), + [sym__subscript_open] = ACTIONS(4964), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4964), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4964), + [sym__cite_author_in_text] = ACTIONS(4964), + [sym__cite_suppress_author] = ACTIONS(4964), + [sym__shortcode_open_escaped] = ACTIONS(4964), + [sym__shortcode_open] = ACTIONS(4964), + [sym__unclosed_span] = ACTIONS(4964), + }, + [STATE(1310)] = { + [sym__backslash_escape] = ACTIONS(4968), + [sym_entity_reference] = ACTIONS(4968), + [sym_numeric_character_reference] = ACTIONS(4968), + [anon_sym_LT] = ACTIONS(4970), + [anon_sym_GT] = ACTIONS(4968), + [anon_sym_BANG] = ACTIONS(4968), + [anon_sym_DQUOTE] = ACTIONS(4968), + [anon_sym_POUND] = ACTIONS(4968), + [anon_sym_DOLLAR] = ACTIONS(4968), + [anon_sym_PERCENT] = ACTIONS(4968), + [anon_sym_AMP] = ACTIONS(4970), + [anon_sym_SQUOTE] = ACTIONS(4968), + [anon_sym_STAR] = ACTIONS(4968), + [anon_sym_PLUS] = ACTIONS(4968), + [anon_sym_COMMA] = ACTIONS(4968), + [anon_sym_DASH] = ACTIONS(4970), + [anon_sym_DOT] = ACTIONS(4970), + [anon_sym_SLASH] = ACTIONS(4968), + [anon_sym_COLON] = ACTIONS(4968), + [anon_sym_SEMI] = ACTIONS(4968), + [anon_sym_EQ] = ACTIONS(4968), + [anon_sym_QMARK] = ACTIONS(4968), + [anon_sym_LBRACK] = ACTIONS(4970), + [anon_sym_BSLASH] = ACTIONS(4970), + [anon_sym_CARET] = ACTIONS(4970), + [anon_sym__] = ACTIONS(4968), + [anon_sym_BQUOTE] = ACTIONS(4968), + [anon_sym_LBRACE] = ACTIONS(4968), + [anon_sym_PIPE] = ACTIONS(4968), + [anon_sym_TILDE] = ACTIONS(4968), + [anon_sym_LPAREN] = ACTIONS(4968), + [anon_sym_RPAREN] = ACTIONS(4968), + [sym__newline_token] = ACTIONS(4968), + [aux_sym_insert_token1] = ACTIONS(4968), + [aux_sym_delete_token1] = ACTIONS(4968), + [aux_sym_highlight_token1] = ACTIONS(4968), + [aux_sym_edit_comment_token1] = ACTIONS(4968), + [anon_sym_CARET_LBRACK] = ACTIONS(4968), + [anon_sym_LBRACK_CARET] = ACTIONS(4968), + [sym_uri_autolink] = ACTIONS(4968), + [sym_email_autolink] = ACTIONS(4968), + [sym__whitespace_ge_2] = ACTIONS(4968), + [aux_sym__whitespace_token1] = ACTIONS(4970), + [sym__word_no_digit] = ACTIONS(4968), + [sym__digits] = ACTIONS(4968), + [anon_sym_DASH_DASH] = ACTIONS(4970), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4968), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4968), + [sym__code_span_start] = ACTIONS(4968), + [sym__emphasis_open_star] = ACTIONS(4968), + [sym__emphasis_open_underscore] = ACTIONS(4968), + [sym__emphasis_close_star] = ACTIONS(4968), + [sym__strikeout_open] = ACTIONS(4968), + [sym__latex_span_start] = ACTIONS(4968), + [sym__single_quote_open] = ACTIONS(4968), + [sym__double_quote_open] = ACTIONS(4968), + [sym__superscript_open] = ACTIONS(4968), + [sym__subscript_open] = ACTIONS(4968), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4968), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4968), + [sym__cite_author_in_text] = ACTIONS(4968), + [sym__cite_suppress_author] = ACTIONS(4968), + [sym__shortcode_open_escaped] = ACTIONS(4968), + [sym__shortcode_open] = ACTIONS(4968), + [sym__unclosed_span] = ACTIONS(4968), + }, + [STATE(1311)] = { + [sym__backslash_escape] = ACTIONS(4972), + [sym_entity_reference] = ACTIONS(4972), + [sym_numeric_character_reference] = ACTIONS(4972), + [anon_sym_LT] = ACTIONS(4974), + [anon_sym_GT] = ACTIONS(4972), + [anon_sym_BANG] = ACTIONS(4972), + [anon_sym_DQUOTE] = ACTIONS(4972), + [anon_sym_POUND] = ACTIONS(4972), + [anon_sym_DOLLAR] = ACTIONS(4972), + [anon_sym_PERCENT] = ACTIONS(4972), + [anon_sym_AMP] = ACTIONS(4974), + [anon_sym_SQUOTE] = ACTIONS(4972), + [anon_sym_STAR] = ACTIONS(4972), + [anon_sym_PLUS] = ACTIONS(4972), + [anon_sym_COMMA] = ACTIONS(4972), + [anon_sym_DASH] = ACTIONS(4974), + [anon_sym_DOT] = ACTIONS(4974), + [anon_sym_SLASH] = ACTIONS(4972), + [anon_sym_COLON] = ACTIONS(4972), + [anon_sym_SEMI] = ACTIONS(4972), + [anon_sym_EQ] = ACTIONS(4972), + [anon_sym_QMARK] = ACTIONS(4972), + [anon_sym_LBRACK] = ACTIONS(4974), + [anon_sym_BSLASH] = ACTIONS(4974), + [anon_sym_CARET] = ACTIONS(4974), + [anon_sym__] = ACTIONS(4972), + [anon_sym_BQUOTE] = ACTIONS(4972), + [anon_sym_LBRACE] = ACTIONS(4972), + [anon_sym_PIPE] = ACTIONS(4972), + [anon_sym_TILDE] = ACTIONS(4972), + [anon_sym_LPAREN] = ACTIONS(4972), + [anon_sym_RPAREN] = ACTIONS(4972), + [sym__newline_token] = ACTIONS(4972), + [aux_sym_insert_token1] = ACTIONS(4972), + [aux_sym_delete_token1] = ACTIONS(4972), + [aux_sym_highlight_token1] = ACTIONS(4972), + [aux_sym_edit_comment_token1] = ACTIONS(4972), + [anon_sym_CARET_LBRACK] = ACTIONS(4972), + [anon_sym_LBRACK_CARET] = ACTIONS(4972), + [sym_uri_autolink] = ACTIONS(4972), + [sym_email_autolink] = ACTIONS(4972), + [sym__whitespace_ge_2] = ACTIONS(4972), + [aux_sym__whitespace_token1] = ACTIONS(4974), + [sym__word_no_digit] = ACTIONS(4972), + [sym__digits] = ACTIONS(4972), + [anon_sym_DASH_DASH] = ACTIONS(4974), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4972), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4972), + [sym__code_span_start] = ACTIONS(4972), + [sym__emphasis_open_star] = ACTIONS(4972), + [sym__emphasis_open_underscore] = ACTIONS(4972), + [sym__emphasis_close_star] = ACTIONS(4972), + [sym__strikeout_open] = ACTIONS(4972), + [sym__latex_span_start] = ACTIONS(4972), + [sym__single_quote_open] = ACTIONS(4972), + [sym__double_quote_open] = ACTIONS(4972), + [sym__superscript_open] = ACTIONS(4972), + [sym__subscript_open] = ACTIONS(4972), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4972), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4972), + [sym__cite_author_in_text] = ACTIONS(4972), + [sym__cite_suppress_author] = ACTIONS(4972), + [sym__shortcode_open_escaped] = ACTIONS(4972), + [sym__shortcode_open] = ACTIONS(4972), + [sym__unclosed_span] = ACTIONS(4972), + }, + [STATE(1312)] = { + [sym__backslash_escape] = ACTIONS(4988), + [sym_entity_reference] = ACTIONS(4988), + [sym_numeric_character_reference] = ACTIONS(4988), + [anon_sym_LT] = ACTIONS(4990), + [anon_sym_GT] = ACTIONS(4988), + [anon_sym_BANG] = ACTIONS(4988), + [anon_sym_DQUOTE] = ACTIONS(4988), + [anon_sym_POUND] = ACTIONS(4988), + [anon_sym_DOLLAR] = ACTIONS(4988), + [anon_sym_PERCENT] = ACTIONS(4988), + [anon_sym_AMP] = ACTIONS(4990), + [anon_sym_SQUOTE] = ACTIONS(4988), + [anon_sym_STAR] = ACTIONS(4988), + [anon_sym_PLUS] = ACTIONS(4988), + [anon_sym_COMMA] = ACTIONS(4988), + [anon_sym_DASH] = ACTIONS(4990), + [anon_sym_DOT] = ACTIONS(4990), + [anon_sym_SLASH] = ACTIONS(4988), + [anon_sym_COLON] = ACTIONS(4988), + [anon_sym_SEMI] = ACTIONS(4988), + [anon_sym_EQ] = ACTIONS(4988), + [anon_sym_QMARK] = ACTIONS(4988), + [anon_sym_LBRACK] = ACTIONS(4990), + [anon_sym_BSLASH] = ACTIONS(4990), + [anon_sym_CARET] = ACTIONS(4990), + [anon_sym__] = ACTIONS(4988), + [anon_sym_BQUOTE] = ACTIONS(4988), + [anon_sym_LBRACE] = ACTIONS(4988), + [anon_sym_PIPE] = ACTIONS(4988), + [anon_sym_TILDE] = ACTIONS(4988), + [anon_sym_LPAREN] = ACTIONS(4988), + [anon_sym_RPAREN] = ACTIONS(4988), + [sym__newline_token] = ACTIONS(4988), + [aux_sym_insert_token1] = ACTIONS(4988), + [aux_sym_delete_token1] = ACTIONS(4988), + [aux_sym_highlight_token1] = ACTIONS(4988), + [aux_sym_edit_comment_token1] = ACTIONS(4988), + [anon_sym_CARET_LBRACK] = ACTIONS(4988), + [anon_sym_LBRACK_CARET] = ACTIONS(4988), + [sym_uri_autolink] = ACTIONS(4988), + [sym_email_autolink] = ACTIONS(4988), + [sym__whitespace_ge_2] = ACTIONS(4988), + [aux_sym__whitespace_token1] = ACTIONS(4990), + [sym__word_no_digit] = ACTIONS(4988), + [sym__digits] = ACTIONS(4988), + [anon_sym_DASH_DASH] = ACTIONS(4990), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4988), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4988), + [sym__code_span_start] = ACTIONS(4988), + [sym__emphasis_open_star] = ACTIONS(4988), + [sym__emphasis_open_underscore] = ACTIONS(4988), + [sym__emphasis_close_star] = ACTIONS(4988), + [sym__strikeout_open] = ACTIONS(4988), + [sym__latex_span_start] = ACTIONS(4988), + [sym__single_quote_open] = ACTIONS(4988), + [sym__double_quote_open] = ACTIONS(4988), + [sym__superscript_open] = ACTIONS(4988), + [sym__subscript_open] = ACTIONS(4988), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4988), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4988), + [sym__cite_author_in_text] = ACTIONS(4988), + [sym__cite_suppress_author] = ACTIONS(4988), + [sym__shortcode_open_escaped] = ACTIONS(4988), + [sym__shortcode_open] = ACTIONS(4988), + [sym__unclosed_span] = ACTIONS(4988), + }, + [STATE(1313)] = { + [sym__backslash_escape] = ACTIONS(4992), + [sym_entity_reference] = ACTIONS(4992), + [sym_numeric_character_reference] = ACTIONS(4992), + [anon_sym_LT] = ACTIONS(4994), + [anon_sym_GT] = ACTIONS(4992), + [anon_sym_BANG] = ACTIONS(4992), + [anon_sym_DQUOTE] = ACTIONS(4992), + [anon_sym_POUND] = ACTIONS(4992), + [anon_sym_DOLLAR] = ACTIONS(4992), + [anon_sym_PERCENT] = ACTIONS(4992), + [anon_sym_AMP] = ACTIONS(4994), + [anon_sym_SQUOTE] = ACTIONS(4992), + [anon_sym_STAR] = ACTIONS(4992), + [anon_sym_PLUS] = ACTIONS(4992), + [anon_sym_COMMA] = ACTIONS(4992), + [anon_sym_DASH] = ACTIONS(4994), + [anon_sym_DOT] = ACTIONS(4994), + [anon_sym_SLASH] = ACTIONS(4992), + [anon_sym_COLON] = ACTIONS(4992), + [anon_sym_SEMI] = ACTIONS(4992), + [anon_sym_EQ] = ACTIONS(4992), + [anon_sym_QMARK] = ACTIONS(4992), + [anon_sym_LBRACK] = ACTIONS(4994), + [anon_sym_BSLASH] = ACTIONS(4994), + [anon_sym_CARET] = ACTIONS(4994), + [anon_sym__] = ACTIONS(4992), + [anon_sym_BQUOTE] = ACTIONS(4992), + [anon_sym_LBRACE] = ACTIONS(4992), + [anon_sym_PIPE] = ACTIONS(4992), + [anon_sym_TILDE] = ACTIONS(4992), + [anon_sym_LPAREN] = ACTIONS(4992), + [anon_sym_RPAREN] = ACTIONS(4992), + [sym__newline_token] = ACTIONS(4992), + [aux_sym_insert_token1] = ACTIONS(4992), + [aux_sym_delete_token1] = ACTIONS(4992), + [aux_sym_highlight_token1] = ACTIONS(4992), + [aux_sym_edit_comment_token1] = ACTIONS(4992), + [anon_sym_CARET_LBRACK] = ACTIONS(4992), + [anon_sym_LBRACK_CARET] = ACTIONS(4992), + [sym_uri_autolink] = ACTIONS(4992), + [sym_email_autolink] = ACTIONS(4992), + [sym__whitespace_ge_2] = ACTIONS(4992), + [aux_sym__whitespace_token1] = ACTIONS(4994), + [sym__word_no_digit] = ACTIONS(4992), + [sym__digits] = ACTIONS(4992), + [anon_sym_DASH_DASH] = ACTIONS(4994), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4992), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4992), + [sym__code_span_start] = ACTIONS(4992), + [sym__emphasis_open_star] = ACTIONS(4992), + [sym__emphasis_open_underscore] = ACTIONS(4992), + [sym__emphasis_close_star] = ACTIONS(4992), + [sym__strikeout_open] = ACTIONS(4992), + [sym__latex_span_start] = ACTIONS(4992), + [sym__single_quote_open] = ACTIONS(4992), + [sym__double_quote_open] = ACTIONS(4992), + [sym__superscript_open] = ACTIONS(4992), + [sym__subscript_open] = ACTIONS(4992), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4992), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4992), + [sym__cite_author_in_text] = ACTIONS(4992), + [sym__cite_suppress_author] = ACTIONS(4992), + [sym__shortcode_open_escaped] = ACTIONS(4992), + [sym__shortcode_open] = ACTIONS(4992), + [sym__unclosed_span] = ACTIONS(4992), + }, + [STATE(1314)] = { + [sym__backslash_escape] = ACTIONS(5024), + [sym_entity_reference] = ACTIONS(5024), + [sym_numeric_character_reference] = ACTIONS(5024), + [anon_sym_LT] = ACTIONS(5026), + [anon_sym_GT] = ACTIONS(5024), + [anon_sym_BANG] = ACTIONS(5024), + [anon_sym_DQUOTE] = ACTIONS(5024), + [anon_sym_POUND] = ACTIONS(5024), + [anon_sym_DOLLAR] = ACTIONS(5024), + [anon_sym_PERCENT] = ACTIONS(5024), + [anon_sym_AMP] = ACTIONS(5026), + [anon_sym_SQUOTE] = ACTIONS(5024), + [anon_sym_STAR] = ACTIONS(5024), + [anon_sym_PLUS] = ACTIONS(5024), + [anon_sym_COMMA] = ACTIONS(5024), + [anon_sym_DASH] = ACTIONS(5026), + [anon_sym_DOT] = ACTIONS(5026), + [anon_sym_SLASH] = ACTIONS(5024), + [anon_sym_COLON] = ACTIONS(5024), + [anon_sym_SEMI] = ACTIONS(5024), + [anon_sym_EQ] = ACTIONS(5024), + [anon_sym_QMARK] = ACTIONS(5024), + [anon_sym_LBRACK] = ACTIONS(5026), + [anon_sym_BSLASH] = ACTIONS(5026), + [anon_sym_CARET] = ACTIONS(5026), + [anon_sym__] = ACTIONS(5024), + [anon_sym_BQUOTE] = ACTIONS(5024), + [anon_sym_LBRACE] = ACTIONS(5024), + [anon_sym_PIPE] = ACTIONS(5024), + [anon_sym_TILDE] = ACTIONS(5024), + [anon_sym_LPAREN] = ACTIONS(5024), + [anon_sym_RPAREN] = ACTIONS(5024), + [sym__newline_token] = ACTIONS(5024), + [aux_sym_insert_token1] = ACTIONS(5024), + [aux_sym_delete_token1] = ACTIONS(5024), + [aux_sym_highlight_token1] = ACTIONS(5024), + [aux_sym_edit_comment_token1] = ACTIONS(5024), + [anon_sym_CARET_LBRACK] = ACTIONS(5024), + [anon_sym_LBRACK_CARET] = ACTIONS(5024), + [sym_uri_autolink] = ACTIONS(5024), + [sym_email_autolink] = ACTIONS(5024), + [sym__whitespace_ge_2] = ACTIONS(5024), + [aux_sym__whitespace_token1] = ACTIONS(5026), + [sym__word_no_digit] = ACTIONS(5024), + [sym__digits] = ACTIONS(5024), + [anon_sym_DASH_DASH] = ACTIONS(5026), + [anon_sym_DASH_DASH_DASH] = ACTIONS(5024), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5024), + [sym__code_span_start] = ACTIONS(5024), + [sym__emphasis_open_star] = ACTIONS(5024), + [sym__emphasis_open_underscore] = ACTIONS(5024), + [sym__emphasis_close_star] = ACTIONS(5024), + [sym__strikeout_open] = ACTIONS(5024), + [sym__latex_span_start] = ACTIONS(5024), + [sym__single_quote_open] = ACTIONS(5024), + [sym__double_quote_open] = ACTIONS(5024), + [sym__superscript_open] = ACTIONS(5024), + [sym__subscript_open] = ACTIONS(5024), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5024), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5024), + [sym__cite_author_in_text] = ACTIONS(5024), + [sym__cite_suppress_author] = ACTIONS(5024), + [sym__shortcode_open_escaped] = ACTIONS(5024), + [sym__shortcode_open] = ACTIONS(5024), + [sym__unclosed_span] = ACTIONS(5024), + }, + [STATE(1315)] = { + [sym__backslash_escape] = ACTIONS(5040), + [sym_entity_reference] = ACTIONS(5040), + [sym_numeric_character_reference] = ACTIONS(5040), + [anon_sym_LT] = ACTIONS(5042), + [anon_sym_GT] = ACTIONS(5040), + [anon_sym_BANG] = ACTIONS(5040), + [anon_sym_DQUOTE] = ACTIONS(5040), + [anon_sym_POUND] = ACTIONS(5040), + [anon_sym_DOLLAR] = ACTIONS(5040), + [anon_sym_PERCENT] = ACTIONS(5040), + [anon_sym_AMP] = ACTIONS(5042), + [anon_sym_SQUOTE] = ACTIONS(5040), + [anon_sym_STAR] = ACTIONS(5040), + [anon_sym_PLUS] = ACTIONS(5040), + [anon_sym_COMMA] = ACTIONS(5040), + [anon_sym_DASH] = ACTIONS(5042), + [anon_sym_DOT] = ACTIONS(5042), + [anon_sym_SLASH] = ACTIONS(5040), + [anon_sym_COLON] = ACTIONS(5040), + [anon_sym_SEMI] = ACTIONS(5040), + [anon_sym_EQ] = ACTIONS(5040), + [anon_sym_QMARK] = ACTIONS(5040), + [anon_sym_LBRACK] = ACTIONS(5042), + [anon_sym_BSLASH] = ACTIONS(5042), + [anon_sym_CARET] = ACTIONS(5042), + [anon_sym__] = ACTIONS(5040), + [anon_sym_BQUOTE] = ACTIONS(5040), + [anon_sym_LBRACE] = ACTIONS(5040), + [anon_sym_PIPE] = ACTIONS(5040), + [anon_sym_TILDE] = ACTIONS(5040), + [anon_sym_LPAREN] = ACTIONS(5040), + [anon_sym_RPAREN] = ACTIONS(5040), + [sym__newline_token] = ACTIONS(5040), + [aux_sym_insert_token1] = ACTIONS(5040), + [aux_sym_delete_token1] = ACTIONS(5040), + [aux_sym_highlight_token1] = ACTIONS(5040), + [aux_sym_edit_comment_token1] = ACTIONS(5040), + [anon_sym_CARET_LBRACK] = ACTIONS(5040), + [anon_sym_LBRACK_CARET] = ACTIONS(5040), + [sym_uri_autolink] = ACTIONS(5040), + [sym_email_autolink] = ACTIONS(5040), + [sym__whitespace_ge_2] = ACTIONS(5040), + [aux_sym__whitespace_token1] = ACTIONS(5042), + [sym__word_no_digit] = ACTIONS(5040), + [sym__digits] = ACTIONS(5040), + [anon_sym_DASH_DASH] = ACTIONS(5042), + [anon_sym_DASH_DASH_DASH] = ACTIONS(5040), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5040), + [sym__code_span_start] = ACTIONS(5040), + [sym__emphasis_open_star] = ACTIONS(5040), + [sym__emphasis_open_underscore] = ACTIONS(5040), + [sym__emphasis_close_star] = ACTIONS(5040), + [sym__strikeout_open] = ACTIONS(5040), + [sym__latex_span_start] = ACTIONS(5040), + [sym__single_quote_open] = ACTIONS(5040), + [sym__double_quote_open] = ACTIONS(5040), + [sym__superscript_open] = ACTIONS(5040), + [sym__subscript_open] = ACTIONS(5040), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5040), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5040), + [sym__cite_author_in_text] = ACTIONS(5040), + [sym__cite_suppress_author] = ACTIONS(5040), + [sym__shortcode_open_escaped] = ACTIONS(5040), + [sym__shortcode_open] = ACTIONS(5040), + [sym__unclosed_span] = ACTIONS(5040), + }, + [STATE(1316)] = { + [sym__backslash_escape] = ACTIONS(5044), + [sym_entity_reference] = ACTIONS(5044), + [sym_numeric_character_reference] = ACTIONS(5044), + [anon_sym_LT] = ACTIONS(5046), + [anon_sym_GT] = ACTIONS(5044), + [anon_sym_BANG] = ACTIONS(5044), + [anon_sym_DQUOTE] = ACTIONS(5044), + [anon_sym_POUND] = ACTIONS(5044), + [anon_sym_DOLLAR] = ACTIONS(5044), + [anon_sym_PERCENT] = ACTIONS(5044), + [anon_sym_AMP] = ACTIONS(5046), + [anon_sym_SQUOTE] = ACTIONS(5044), + [anon_sym_STAR] = ACTIONS(5044), + [anon_sym_PLUS] = ACTIONS(5044), + [anon_sym_COMMA] = ACTIONS(5044), + [anon_sym_DASH] = ACTIONS(5046), + [anon_sym_DOT] = ACTIONS(5046), + [anon_sym_SLASH] = ACTIONS(5044), + [anon_sym_COLON] = ACTIONS(5044), + [anon_sym_SEMI] = ACTIONS(5044), + [anon_sym_EQ] = ACTIONS(5044), + [anon_sym_QMARK] = ACTIONS(5044), + [anon_sym_LBRACK] = ACTIONS(5046), + [anon_sym_BSLASH] = ACTIONS(5046), + [anon_sym_CARET] = ACTIONS(5046), + [anon_sym__] = ACTIONS(5044), + [anon_sym_BQUOTE] = ACTIONS(5044), + [anon_sym_LBRACE] = ACTIONS(5044), + [anon_sym_PIPE] = ACTIONS(5044), + [anon_sym_TILDE] = ACTIONS(5044), + [anon_sym_LPAREN] = ACTIONS(5044), + [anon_sym_RPAREN] = ACTIONS(5044), + [sym__newline_token] = ACTIONS(5044), + [aux_sym_insert_token1] = ACTIONS(5044), + [aux_sym_delete_token1] = ACTIONS(5044), + [aux_sym_highlight_token1] = ACTIONS(5044), + [aux_sym_edit_comment_token1] = ACTIONS(5044), + [anon_sym_CARET_LBRACK] = ACTIONS(5044), + [anon_sym_LBRACK_CARET] = ACTIONS(5044), + [sym_uri_autolink] = ACTIONS(5044), + [sym_email_autolink] = ACTIONS(5044), + [sym__whitespace_ge_2] = ACTIONS(5044), + [aux_sym__whitespace_token1] = ACTIONS(5046), + [sym__word_no_digit] = ACTIONS(5044), + [sym__digits] = ACTIONS(5044), + [anon_sym_DASH_DASH] = ACTIONS(5046), + [anon_sym_DASH_DASH_DASH] = ACTIONS(5044), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5044), + [sym__code_span_start] = ACTIONS(5044), + [sym__emphasis_open_star] = ACTIONS(5044), + [sym__emphasis_open_underscore] = ACTIONS(5044), + [sym__emphasis_close_star] = ACTIONS(5044), + [sym__strikeout_open] = ACTIONS(5044), + [sym__latex_span_start] = ACTIONS(5044), + [sym__single_quote_open] = ACTIONS(5044), + [sym__double_quote_open] = ACTIONS(5044), + [sym__superscript_open] = ACTIONS(5044), + [sym__subscript_open] = ACTIONS(5044), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5044), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5044), + [sym__cite_author_in_text] = ACTIONS(5044), + [sym__cite_suppress_author] = ACTIONS(5044), + [sym__shortcode_open_escaped] = ACTIONS(5044), + [sym__shortcode_open] = ACTIONS(5044), + [sym__unclosed_span] = ACTIONS(5044), + }, + [STATE(1317)] = { + [sym__backslash_escape] = ACTIONS(5048), + [sym_entity_reference] = ACTIONS(5048), + [sym_numeric_character_reference] = ACTIONS(5048), + [anon_sym_LT] = ACTIONS(5050), + [anon_sym_GT] = ACTIONS(5048), + [anon_sym_BANG] = ACTIONS(5048), + [anon_sym_DQUOTE] = ACTIONS(5048), + [anon_sym_POUND] = ACTIONS(5048), + [anon_sym_DOLLAR] = ACTIONS(5048), + [anon_sym_PERCENT] = ACTIONS(5048), + [anon_sym_AMP] = ACTIONS(5050), + [anon_sym_SQUOTE] = ACTIONS(5048), + [anon_sym_STAR] = ACTIONS(5048), + [anon_sym_PLUS] = ACTIONS(5048), + [anon_sym_COMMA] = ACTIONS(5048), + [anon_sym_DASH] = ACTIONS(5050), + [anon_sym_DOT] = ACTIONS(5050), + [anon_sym_SLASH] = ACTIONS(5048), + [anon_sym_COLON] = ACTIONS(5048), + [anon_sym_SEMI] = ACTIONS(5048), + [anon_sym_EQ] = ACTIONS(5048), + [anon_sym_QMARK] = ACTIONS(5048), + [anon_sym_LBRACK] = ACTIONS(5050), + [anon_sym_BSLASH] = ACTIONS(5050), + [anon_sym_CARET] = ACTIONS(5050), + [anon_sym__] = ACTIONS(5048), + [anon_sym_BQUOTE] = ACTIONS(5048), + [anon_sym_LBRACE] = ACTIONS(5048), + [anon_sym_PIPE] = ACTIONS(5048), + [anon_sym_TILDE] = ACTIONS(5048), + [anon_sym_LPAREN] = ACTIONS(5048), + [anon_sym_RPAREN] = ACTIONS(5048), + [sym__newline_token] = ACTIONS(5048), + [aux_sym_insert_token1] = ACTIONS(5048), + [aux_sym_delete_token1] = ACTIONS(5048), + [aux_sym_highlight_token1] = ACTIONS(5048), + [aux_sym_edit_comment_token1] = ACTIONS(5048), + [anon_sym_CARET_LBRACK] = ACTIONS(5048), + [anon_sym_LBRACK_CARET] = ACTIONS(5048), + [sym_uri_autolink] = ACTIONS(5048), + [sym_email_autolink] = ACTIONS(5048), + [sym__whitespace_ge_2] = ACTIONS(5048), + [aux_sym__whitespace_token1] = ACTIONS(5050), + [sym__word_no_digit] = ACTIONS(5048), + [sym__digits] = ACTIONS(5048), + [anon_sym_DASH_DASH] = ACTIONS(5050), + [anon_sym_DASH_DASH_DASH] = ACTIONS(5048), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5048), + [sym__code_span_start] = ACTIONS(5048), + [sym__emphasis_open_star] = ACTIONS(5048), + [sym__emphasis_open_underscore] = ACTIONS(5048), + [sym__emphasis_close_star] = ACTIONS(5048), + [sym__strikeout_open] = ACTIONS(5048), + [sym__latex_span_start] = ACTIONS(5048), + [sym__single_quote_open] = ACTIONS(5048), + [sym__double_quote_open] = ACTIONS(5048), + [sym__superscript_open] = ACTIONS(5048), + [sym__subscript_open] = ACTIONS(5048), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5048), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5048), + [sym__cite_author_in_text] = ACTIONS(5048), + [sym__cite_suppress_author] = ACTIONS(5048), + [sym__shortcode_open_escaped] = ACTIONS(5048), + [sym__shortcode_open] = ACTIONS(5048), + [sym__unclosed_span] = ACTIONS(5048), + }, + [STATE(1318)] = { + [sym__backslash_escape] = ACTIONS(5052), + [sym_entity_reference] = ACTIONS(5052), + [sym_numeric_character_reference] = ACTIONS(5052), + [anon_sym_LT] = ACTIONS(5054), + [anon_sym_GT] = ACTIONS(5052), + [anon_sym_BANG] = ACTIONS(5052), + [anon_sym_DQUOTE] = ACTIONS(5052), + [anon_sym_POUND] = ACTIONS(5052), + [anon_sym_DOLLAR] = ACTIONS(5052), + [anon_sym_PERCENT] = ACTIONS(5052), + [anon_sym_AMP] = ACTIONS(5054), + [anon_sym_SQUOTE] = ACTIONS(5052), + [anon_sym_STAR] = ACTIONS(5052), + [anon_sym_PLUS] = ACTIONS(5052), + [anon_sym_COMMA] = ACTIONS(5052), + [anon_sym_DASH] = ACTIONS(5054), + [anon_sym_DOT] = ACTIONS(5054), + [anon_sym_SLASH] = ACTIONS(5052), + [anon_sym_COLON] = ACTIONS(5052), + [anon_sym_SEMI] = ACTIONS(5052), + [anon_sym_EQ] = ACTIONS(5052), + [anon_sym_QMARK] = ACTIONS(5052), + [anon_sym_LBRACK] = ACTIONS(5054), + [anon_sym_BSLASH] = ACTIONS(5054), + [anon_sym_CARET] = ACTIONS(5054), + [anon_sym__] = ACTIONS(5052), + [anon_sym_BQUOTE] = ACTIONS(5052), + [anon_sym_LBRACE] = ACTIONS(5052), + [anon_sym_PIPE] = ACTIONS(5052), + [anon_sym_TILDE] = ACTIONS(5052), + [anon_sym_LPAREN] = ACTIONS(5052), + [anon_sym_RPAREN] = ACTIONS(5052), + [sym__newline_token] = ACTIONS(5052), + [aux_sym_insert_token1] = ACTIONS(5052), + [aux_sym_delete_token1] = ACTIONS(5052), + [aux_sym_highlight_token1] = ACTIONS(5052), + [aux_sym_edit_comment_token1] = ACTIONS(5052), + [anon_sym_CARET_LBRACK] = ACTIONS(5052), + [anon_sym_LBRACK_CARET] = ACTIONS(5052), + [sym_uri_autolink] = ACTIONS(5052), + [sym_email_autolink] = ACTIONS(5052), + [sym__whitespace_ge_2] = ACTIONS(5052), + [aux_sym__whitespace_token1] = ACTIONS(5054), + [sym__word_no_digit] = ACTIONS(5052), + [sym__digits] = ACTIONS(5052), + [anon_sym_DASH_DASH] = ACTIONS(5054), + [anon_sym_DASH_DASH_DASH] = ACTIONS(5052), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5052), + [sym__code_span_start] = ACTIONS(5052), + [sym__emphasis_open_star] = ACTIONS(5052), + [sym__emphasis_open_underscore] = ACTIONS(5052), + [sym__emphasis_close_star] = ACTIONS(5052), + [sym__strikeout_open] = ACTIONS(5052), + [sym__latex_span_start] = ACTIONS(5052), + [sym__single_quote_open] = ACTIONS(5052), + [sym__double_quote_open] = ACTIONS(5052), + [sym__superscript_open] = ACTIONS(5052), + [sym__subscript_open] = ACTIONS(5052), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5052), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5052), + [sym__cite_author_in_text] = ACTIONS(5052), + [sym__cite_suppress_author] = ACTIONS(5052), + [sym__shortcode_open_escaped] = ACTIONS(5052), + [sym__shortcode_open] = ACTIONS(5052), + [sym__unclosed_span] = ACTIONS(5052), + }, + [STATE(1319)] = { + [sym__backslash_escape] = ACTIONS(5016), + [sym_entity_reference] = ACTIONS(5016), + [sym_numeric_character_reference] = ACTIONS(5016), + [anon_sym_LT] = ACTIONS(5018), + [anon_sym_GT] = ACTIONS(5016), + [anon_sym_BANG] = ACTIONS(5016), + [anon_sym_DQUOTE] = ACTIONS(5016), + [anon_sym_POUND] = ACTIONS(5016), + [anon_sym_DOLLAR] = ACTIONS(5016), + [anon_sym_PERCENT] = ACTIONS(5016), + [anon_sym_AMP] = ACTIONS(5018), + [anon_sym_SQUOTE] = ACTIONS(5016), + [anon_sym_STAR] = ACTIONS(5016), + [anon_sym_PLUS] = ACTIONS(5016), + [anon_sym_COMMA] = ACTIONS(5016), + [anon_sym_DASH] = ACTIONS(5018), + [anon_sym_DOT] = ACTIONS(5018), + [anon_sym_SLASH] = ACTIONS(5016), + [anon_sym_COLON] = ACTIONS(5016), + [anon_sym_SEMI] = ACTIONS(5016), + [anon_sym_EQ] = ACTIONS(5016), + [anon_sym_QMARK] = ACTIONS(5016), + [anon_sym_LBRACK] = ACTIONS(5018), + [anon_sym_BSLASH] = ACTIONS(5018), + [anon_sym_CARET] = ACTIONS(5018), + [anon_sym__] = ACTIONS(5016), + [anon_sym_BQUOTE] = ACTIONS(5016), + [anon_sym_LBRACE] = ACTIONS(5016), + [anon_sym_PIPE] = ACTIONS(5016), + [anon_sym_TILDE] = ACTIONS(5016), + [anon_sym_LPAREN] = ACTIONS(5016), + [anon_sym_RPAREN] = ACTIONS(5016), + [sym__newline_token] = ACTIONS(5016), + [aux_sym_insert_token1] = ACTIONS(5016), + [aux_sym_delete_token1] = ACTIONS(5016), + [aux_sym_highlight_token1] = ACTIONS(5016), + [aux_sym_edit_comment_token1] = ACTIONS(5016), + [anon_sym_CARET_LBRACK] = ACTIONS(5016), + [anon_sym_LBRACK_CARET] = ACTIONS(5016), + [sym_uri_autolink] = ACTIONS(5016), + [sym_email_autolink] = ACTIONS(5016), + [sym__whitespace_ge_2] = ACTIONS(5016), + [aux_sym__whitespace_token1] = ACTIONS(5018), + [sym__word_no_digit] = ACTIONS(5016), + [sym__digits] = ACTIONS(5016), + [anon_sym_DASH_DASH] = ACTIONS(5018), + [anon_sym_DASH_DASH_DASH] = ACTIONS(5016), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5016), + [sym__code_span_start] = ACTIONS(5016), + [sym__emphasis_open_star] = ACTIONS(5016), + [sym__emphasis_open_underscore] = ACTIONS(5016), + [sym__strikeout_open] = ACTIONS(5016), + [sym__latex_span_start] = ACTIONS(5016), + [sym__single_quote_open] = ACTIONS(5016), + [sym__double_quote_open] = ACTIONS(5016), + [sym__double_quote_close] = ACTIONS(5016), + [sym__superscript_open] = ACTIONS(5016), + [sym__subscript_open] = ACTIONS(5016), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5016), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5016), + [sym__cite_author_in_text] = ACTIONS(5016), + [sym__cite_suppress_author] = ACTIONS(5016), + [sym__shortcode_open_escaped] = ACTIONS(5016), + [sym__shortcode_open] = ACTIONS(5016), + [sym__unclosed_span] = ACTIONS(5016), + }, + [STATE(1320)] = { + [sym__backslash_escape] = ACTIONS(5020), + [sym_entity_reference] = ACTIONS(5020), + [sym_numeric_character_reference] = ACTIONS(5020), + [anon_sym_LT] = ACTIONS(5022), + [anon_sym_GT] = ACTIONS(5020), + [anon_sym_BANG] = ACTIONS(5020), + [anon_sym_DQUOTE] = ACTIONS(5020), + [anon_sym_POUND] = ACTIONS(5020), + [anon_sym_DOLLAR] = ACTIONS(5020), + [anon_sym_PERCENT] = ACTIONS(5020), + [anon_sym_AMP] = ACTIONS(5022), + [anon_sym_SQUOTE] = ACTIONS(5020), + [anon_sym_STAR] = ACTIONS(5020), + [anon_sym_PLUS] = ACTIONS(5020), + [anon_sym_COMMA] = ACTIONS(5020), + [anon_sym_DASH] = ACTIONS(5022), + [anon_sym_DOT] = ACTIONS(5022), + [anon_sym_SLASH] = ACTIONS(5020), + [anon_sym_COLON] = ACTIONS(5020), + [anon_sym_SEMI] = ACTIONS(5020), + [anon_sym_EQ] = ACTIONS(5020), + [anon_sym_QMARK] = ACTIONS(5020), + [anon_sym_LBRACK] = ACTIONS(5022), + [anon_sym_BSLASH] = ACTIONS(5022), + [anon_sym_CARET] = ACTIONS(5022), + [anon_sym__] = ACTIONS(5020), + [anon_sym_BQUOTE] = ACTIONS(5020), + [anon_sym_LBRACE] = ACTIONS(5020), + [anon_sym_PIPE] = ACTIONS(5020), + [anon_sym_TILDE] = ACTIONS(5020), + [anon_sym_LPAREN] = ACTIONS(5020), + [anon_sym_RPAREN] = ACTIONS(5020), + [sym__newline_token] = ACTIONS(5020), + [aux_sym_insert_token1] = ACTIONS(5020), + [aux_sym_delete_token1] = ACTIONS(5020), + [aux_sym_highlight_token1] = ACTIONS(5020), + [aux_sym_edit_comment_token1] = ACTIONS(5020), + [anon_sym_CARET_LBRACK] = ACTIONS(5020), + [anon_sym_LBRACK_CARET] = ACTIONS(5020), + [sym_uri_autolink] = ACTIONS(5020), + [sym_email_autolink] = ACTIONS(5020), + [sym__whitespace_ge_2] = ACTIONS(5020), + [aux_sym__whitespace_token1] = ACTIONS(5022), + [sym__word_no_digit] = ACTIONS(5020), + [sym__digits] = ACTIONS(5020), + [anon_sym_DASH_DASH] = ACTIONS(5022), + [anon_sym_DASH_DASH_DASH] = ACTIONS(5020), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5020), + [sym__code_span_start] = ACTIONS(5020), + [sym__emphasis_open_star] = ACTIONS(5020), + [sym__emphasis_open_underscore] = ACTIONS(5020), + [sym__strikeout_open] = ACTIONS(5020), + [sym__latex_span_start] = ACTIONS(5020), + [sym__single_quote_open] = ACTIONS(5020), + [sym__double_quote_open] = ACTIONS(5020), + [sym__double_quote_close] = ACTIONS(5020), + [sym__superscript_open] = ACTIONS(5020), + [sym__subscript_open] = ACTIONS(5020), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5020), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5020), + [sym__cite_author_in_text] = ACTIONS(5020), + [sym__cite_suppress_author] = ACTIONS(5020), + [sym__shortcode_open_escaped] = ACTIONS(5020), + [sym__shortcode_open] = ACTIONS(5020), + [sym__unclosed_span] = ACTIONS(5020), + }, + [STATE(1321)] = { + [sym__backslash_escape] = ACTIONS(4690), + [sym_entity_reference] = ACTIONS(4690), + [sym_numeric_character_reference] = ACTIONS(4690), + [anon_sym_LT] = ACTIONS(4692), + [anon_sym_GT] = ACTIONS(4690), + [anon_sym_BANG] = ACTIONS(4690), + [anon_sym_DQUOTE] = ACTIONS(4690), + [anon_sym_POUND] = ACTIONS(4690), + [anon_sym_DOLLAR] = ACTIONS(4690), + [anon_sym_PERCENT] = ACTIONS(4690), + [anon_sym_AMP] = ACTIONS(4692), + [anon_sym_SQUOTE] = ACTIONS(4690), + [anon_sym_STAR] = ACTIONS(4690), + [anon_sym_PLUS] = ACTIONS(4690), + [anon_sym_COMMA] = ACTIONS(4690), + [anon_sym_DASH] = ACTIONS(4692), + [anon_sym_DOT] = ACTIONS(4692), + [anon_sym_SLASH] = ACTIONS(4690), + [anon_sym_COLON] = ACTIONS(4690), + [anon_sym_SEMI] = ACTIONS(4690), + [anon_sym_EQ] = ACTIONS(4690), + [anon_sym_QMARK] = ACTIONS(4690), + [anon_sym_LBRACK] = ACTIONS(4692), + [anon_sym_BSLASH] = ACTIONS(4692), + [anon_sym_CARET] = ACTIONS(4692), + [anon_sym__] = ACTIONS(4690), + [anon_sym_BQUOTE] = ACTIONS(4690), + [anon_sym_LBRACE] = ACTIONS(4690), + [anon_sym_PIPE] = ACTIONS(4690), + [anon_sym_TILDE] = ACTIONS(4690), + [anon_sym_LPAREN] = ACTIONS(4690), + [anon_sym_RPAREN] = ACTIONS(4690), + [sym__newline_token] = ACTIONS(4690), + [aux_sym_insert_token1] = ACTIONS(4690), + [aux_sym_delete_token1] = ACTIONS(4690), + [aux_sym_highlight_token1] = ACTIONS(4690), + [aux_sym_edit_comment_token1] = ACTIONS(4690), + [anon_sym_CARET_LBRACK] = ACTIONS(4690), + [anon_sym_LBRACK_CARET] = ACTIONS(4690), + [sym_uri_autolink] = ACTIONS(4690), + [sym_email_autolink] = ACTIONS(4690), + [sym__whitespace_ge_2] = ACTIONS(4690), + [aux_sym__whitespace_token1] = ACTIONS(4692), + [sym__word_no_digit] = ACTIONS(4690), + [sym__digits] = ACTIONS(4690), + [anon_sym_DASH_DASH] = ACTIONS(4692), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4690), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4690), + [sym__code_span_start] = ACTIONS(4690), + [sym__emphasis_open_star] = ACTIONS(4690), + [sym__emphasis_open_underscore] = ACTIONS(4690), + [sym__emphasis_close_star] = ACTIONS(4690), + [sym__strikeout_open] = ACTIONS(4690), + [sym__latex_span_start] = ACTIONS(4690), + [sym__single_quote_open] = ACTIONS(4690), + [sym__double_quote_open] = ACTIONS(4690), + [sym__superscript_open] = ACTIONS(4690), + [sym__subscript_open] = ACTIONS(4690), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4690), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4690), + [sym__cite_author_in_text] = ACTIONS(4690), + [sym__cite_suppress_author] = ACTIONS(4690), + [sym__shortcode_open_escaped] = ACTIONS(4690), + [sym__shortcode_open] = ACTIONS(4690), + [sym__unclosed_span] = ACTIONS(4690), + }, + [STATE(1322)] = { + [sym__backslash_escape] = ACTIONS(5016), + [sym_entity_reference] = ACTIONS(5016), + [sym_numeric_character_reference] = ACTIONS(5016), + [anon_sym_LT] = ACTIONS(5018), + [anon_sym_GT] = ACTIONS(5016), + [anon_sym_BANG] = ACTIONS(5016), + [anon_sym_DQUOTE] = ACTIONS(5016), + [anon_sym_POUND] = ACTIONS(5016), + [anon_sym_DOLLAR] = ACTIONS(5016), + [anon_sym_PERCENT] = ACTIONS(5016), + [anon_sym_AMP] = ACTIONS(5018), + [anon_sym_SQUOTE] = ACTIONS(5016), + [anon_sym_STAR] = ACTIONS(5016), + [anon_sym_PLUS] = ACTIONS(5016), + [anon_sym_COMMA] = ACTIONS(5016), + [anon_sym_DASH] = ACTIONS(5018), + [anon_sym_DOT] = ACTIONS(5018), + [anon_sym_SLASH] = ACTIONS(5016), + [anon_sym_COLON] = ACTIONS(5016), + [anon_sym_SEMI] = ACTIONS(5016), + [anon_sym_EQ] = ACTIONS(5016), + [anon_sym_QMARK] = ACTIONS(5016), + [anon_sym_LBRACK] = ACTIONS(5018), + [anon_sym_BSLASH] = ACTIONS(5018), + [anon_sym_CARET] = ACTIONS(5018), + [anon_sym__] = ACTIONS(5016), + [anon_sym_BQUOTE] = ACTIONS(5016), + [anon_sym_LBRACE] = ACTIONS(5016), + [anon_sym_PIPE] = ACTIONS(5016), + [anon_sym_TILDE] = ACTIONS(5016), + [anon_sym_LPAREN] = ACTIONS(5016), + [anon_sym_RPAREN] = ACTIONS(5016), + [sym__newline_token] = ACTIONS(5016), + [aux_sym_insert_token1] = ACTIONS(5016), + [aux_sym_delete_token1] = ACTIONS(5016), + [aux_sym_highlight_token1] = ACTIONS(5016), + [aux_sym_edit_comment_token1] = ACTIONS(5016), + [anon_sym_CARET_LBRACK] = ACTIONS(5016), + [anon_sym_LBRACK_CARET] = ACTIONS(5016), + [sym_uri_autolink] = ACTIONS(5016), + [sym_email_autolink] = ACTIONS(5016), + [sym__whitespace_ge_2] = ACTIONS(5016), + [aux_sym__whitespace_token1] = ACTIONS(5018), + [sym__word_no_digit] = ACTIONS(5016), + [sym__digits] = ACTIONS(5016), + [anon_sym_DASH_DASH] = ACTIONS(5018), + [anon_sym_DASH_DASH_DASH] = ACTIONS(5016), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5016), + [sym__code_span_start] = ACTIONS(5016), + [sym__emphasis_open_star] = ACTIONS(5016), + [sym__emphasis_open_underscore] = ACTIONS(5016), + [sym__strikeout_open] = ACTIONS(5016), + [sym__strikeout_close] = ACTIONS(5016), + [sym__latex_span_start] = ACTIONS(5016), + [sym__single_quote_open] = ACTIONS(5016), + [sym__double_quote_open] = ACTIONS(5016), + [sym__superscript_open] = ACTIONS(5016), + [sym__subscript_open] = ACTIONS(5016), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5016), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5016), + [sym__cite_author_in_text] = ACTIONS(5016), + [sym__cite_suppress_author] = ACTIONS(5016), + [sym__shortcode_open_escaped] = ACTIONS(5016), + [sym__shortcode_open] = ACTIONS(5016), + [sym__unclosed_span] = ACTIONS(5016), + }, + [STATE(1323)] = { + [sym__backslash_escape] = ACTIONS(5056), + [sym_entity_reference] = ACTIONS(5056), + [sym_numeric_character_reference] = ACTIONS(5056), + [anon_sym_LT] = ACTIONS(5058), + [anon_sym_GT] = ACTIONS(5056), + [anon_sym_BANG] = ACTIONS(5056), + [anon_sym_DQUOTE] = ACTIONS(5056), + [anon_sym_POUND] = ACTIONS(5056), + [anon_sym_DOLLAR] = ACTIONS(5056), + [anon_sym_PERCENT] = ACTIONS(5056), + [anon_sym_AMP] = ACTIONS(5058), + [anon_sym_SQUOTE] = ACTIONS(5056), + [anon_sym_STAR] = ACTIONS(5056), + [anon_sym_PLUS] = ACTIONS(5056), + [anon_sym_COMMA] = ACTIONS(5056), + [anon_sym_DASH] = ACTIONS(5058), + [anon_sym_DOT] = ACTIONS(5058), + [anon_sym_SLASH] = ACTIONS(5056), + [anon_sym_COLON] = ACTIONS(5056), + [anon_sym_SEMI] = ACTIONS(5056), + [anon_sym_EQ] = ACTIONS(5056), + [anon_sym_QMARK] = ACTIONS(5056), + [anon_sym_LBRACK] = ACTIONS(5058), + [anon_sym_BSLASH] = ACTIONS(5058), + [anon_sym_CARET] = ACTIONS(5058), + [anon_sym__] = ACTIONS(5056), + [anon_sym_BQUOTE] = ACTIONS(5056), + [anon_sym_LBRACE] = ACTIONS(5056), + [anon_sym_PIPE] = ACTIONS(5056), + [anon_sym_TILDE] = ACTIONS(5056), + [anon_sym_LPAREN] = ACTIONS(5056), + [anon_sym_RPAREN] = ACTIONS(5056), + [sym__newline_token] = ACTIONS(5056), + [aux_sym_insert_token1] = ACTIONS(5056), + [aux_sym_delete_token1] = ACTIONS(5056), + [aux_sym_highlight_token1] = ACTIONS(5056), + [aux_sym_edit_comment_token1] = ACTIONS(5056), + [anon_sym_CARET_LBRACK] = ACTIONS(5056), + [anon_sym_LBRACK_CARET] = ACTIONS(5056), + [sym_uri_autolink] = ACTIONS(5056), + [sym_email_autolink] = ACTIONS(5056), + [sym__whitespace_ge_2] = ACTIONS(5056), + [aux_sym__whitespace_token1] = ACTIONS(5058), + [sym__word_no_digit] = ACTIONS(5056), + [sym__digits] = ACTIONS(5056), + [anon_sym_DASH_DASH] = ACTIONS(5058), + [anon_sym_DASH_DASH_DASH] = ACTIONS(5056), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5056), + [sym__code_span_start] = ACTIONS(5056), + [sym__emphasis_open_star] = ACTIONS(5056), + [sym__emphasis_open_underscore] = ACTIONS(5056), + [sym__emphasis_close_star] = ACTIONS(5056), + [sym__strikeout_open] = ACTIONS(5056), + [sym__latex_span_start] = ACTIONS(5056), + [sym__single_quote_open] = ACTIONS(5056), + [sym__double_quote_open] = ACTIONS(5056), + [sym__superscript_open] = ACTIONS(5056), + [sym__subscript_open] = ACTIONS(5056), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5056), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5056), + [sym__cite_author_in_text] = ACTIONS(5056), + [sym__cite_suppress_author] = ACTIONS(5056), + [sym__shortcode_open_escaped] = ACTIONS(5056), + [sym__shortcode_open] = ACTIONS(5056), + [sym__unclosed_span] = ACTIONS(5056), + }, + [STATE(1324)] = { + [sym__backslash_escape] = ACTIONS(4936), + [sym_entity_reference] = ACTIONS(4936), + [sym_numeric_character_reference] = ACTIONS(4936), + [anon_sym_LT] = ACTIONS(4938), + [anon_sym_GT] = ACTIONS(4936), + [anon_sym_BANG] = ACTIONS(4936), + [anon_sym_DQUOTE] = ACTIONS(4936), + [anon_sym_POUND] = ACTIONS(4936), + [anon_sym_DOLLAR] = ACTIONS(4936), + [anon_sym_PERCENT] = ACTIONS(4936), + [anon_sym_AMP] = ACTIONS(4938), + [anon_sym_SQUOTE] = ACTIONS(4936), + [anon_sym_STAR] = ACTIONS(4936), + [anon_sym_PLUS] = ACTIONS(4936), + [anon_sym_COMMA] = ACTIONS(4936), + [anon_sym_DASH] = ACTIONS(4938), + [anon_sym_DOT] = ACTIONS(4938), + [anon_sym_SLASH] = ACTIONS(4936), + [anon_sym_COLON] = ACTIONS(4936), + [anon_sym_SEMI] = ACTIONS(4936), + [anon_sym_EQ] = ACTIONS(4936), + [anon_sym_QMARK] = ACTIONS(4936), + [anon_sym_LBRACK] = ACTIONS(4938), + [anon_sym_BSLASH] = ACTIONS(4938), + [anon_sym_CARET] = ACTIONS(4938), + [anon_sym__] = ACTIONS(4936), + [anon_sym_BQUOTE] = ACTIONS(4936), + [anon_sym_LBRACE] = ACTIONS(4936), + [anon_sym_PIPE] = ACTIONS(4936), + [anon_sym_TILDE] = ACTIONS(4936), + [anon_sym_LPAREN] = ACTIONS(4936), + [anon_sym_RPAREN] = ACTIONS(4936), + [sym__newline_token] = ACTIONS(4936), + [aux_sym_insert_token1] = ACTIONS(4936), + [aux_sym_delete_token1] = ACTIONS(4936), + [aux_sym_highlight_token1] = ACTIONS(4936), + [aux_sym_edit_comment_token1] = ACTIONS(4936), + [anon_sym_CARET_LBRACK] = ACTIONS(4936), + [anon_sym_LBRACK_CARET] = ACTIONS(4936), + [sym_uri_autolink] = ACTIONS(4936), + [sym_email_autolink] = ACTIONS(4936), + [sym__whitespace_ge_2] = ACTIONS(4936), + [aux_sym__whitespace_token1] = ACTIONS(4938), + [sym__word_no_digit] = ACTIONS(4936), + [sym__digits] = ACTIONS(4936), + [anon_sym_DASH_DASH] = ACTIONS(4938), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4936), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4936), + [sym__code_span_start] = ACTIONS(4936), + [sym__emphasis_open_star] = ACTIONS(4936), + [sym__emphasis_open_underscore] = ACTIONS(4936), + [sym__strikeout_open] = ACTIONS(4936), + [sym__latex_span_start] = ACTIONS(4936), + [sym__single_quote_open] = ACTIONS(4936), + [sym__double_quote_open] = ACTIONS(4936), + [sym__double_quote_close] = ACTIONS(4936), + [sym__superscript_open] = ACTIONS(4936), + [sym__subscript_open] = ACTIONS(4936), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4936), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4936), + [sym__cite_author_in_text] = ACTIONS(4936), + [sym__cite_suppress_author] = ACTIONS(4936), + [sym__shortcode_open_escaped] = ACTIONS(4936), + [sym__shortcode_open] = ACTIONS(4936), + [sym__unclosed_span] = ACTIONS(4936), + }, + [STATE(1325)] = { + [sym__backslash_escape] = ACTIONS(5028), + [sym_entity_reference] = ACTIONS(5028), + [sym_numeric_character_reference] = ACTIONS(5028), + [anon_sym_LT] = ACTIONS(5030), + [anon_sym_GT] = ACTIONS(5028), + [anon_sym_BANG] = ACTIONS(5028), + [anon_sym_DQUOTE] = ACTIONS(5028), + [anon_sym_POUND] = ACTIONS(5028), + [anon_sym_DOLLAR] = ACTIONS(5028), + [anon_sym_PERCENT] = ACTIONS(5028), + [anon_sym_AMP] = ACTIONS(5030), + [anon_sym_SQUOTE] = ACTIONS(5028), + [anon_sym_STAR] = ACTIONS(5028), + [anon_sym_PLUS] = ACTIONS(5028), + [anon_sym_COMMA] = ACTIONS(5028), + [anon_sym_DASH] = ACTIONS(5030), + [anon_sym_DOT] = ACTIONS(5030), + [anon_sym_SLASH] = ACTIONS(5028), + [anon_sym_COLON] = ACTIONS(5028), + [anon_sym_SEMI] = ACTIONS(5028), + [anon_sym_EQ] = ACTIONS(5028), + [anon_sym_QMARK] = ACTIONS(5028), + [anon_sym_LBRACK] = ACTIONS(5030), + [anon_sym_BSLASH] = ACTIONS(5030), + [anon_sym_CARET] = ACTIONS(5030), + [anon_sym__] = ACTIONS(5028), + [anon_sym_BQUOTE] = ACTIONS(5028), + [anon_sym_LBRACE] = ACTIONS(5028), + [anon_sym_PIPE] = ACTIONS(5028), + [anon_sym_TILDE] = ACTIONS(5028), + [anon_sym_LPAREN] = ACTIONS(5028), + [anon_sym_RPAREN] = ACTIONS(5028), + [sym__newline_token] = ACTIONS(5028), + [aux_sym_insert_token1] = ACTIONS(5028), + [aux_sym_delete_token1] = ACTIONS(5028), + [aux_sym_highlight_token1] = ACTIONS(5028), + [aux_sym_edit_comment_token1] = ACTIONS(5028), + [anon_sym_CARET_LBRACK] = ACTIONS(5028), + [anon_sym_LBRACK_CARET] = ACTIONS(5028), + [sym_uri_autolink] = ACTIONS(5028), + [sym_email_autolink] = ACTIONS(5028), + [sym__whitespace_ge_2] = ACTIONS(5028), + [aux_sym__whitespace_token1] = ACTIONS(5030), + [sym__word_no_digit] = ACTIONS(5028), + [sym__digits] = ACTIONS(5028), + [anon_sym_DASH_DASH] = ACTIONS(5030), + [anon_sym_DASH_DASH_DASH] = ACTIONS(5028), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5028), + [sym__code_span_start] = ACTIONS(5028), + [sym__emphasis_open_star] = ACTIONS(5028), + [sym__emphasis_open_underscore] = ACTIONS(5028), + [sym__strikeout_open] = ACTIONS(5028), + [sym__latex_span_start] = ACTIONS(5028), + [sym__single_quote_open] = ACTIONS(5028), + [sym__double_quote_open] = ACTIONS(5028), + [sym__double_quote_close] = ACTIONS(5028), + [sym__superscript_open] = ACTIONS(5028), + [sym__subscript_open] = ACTIONS(5028), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5028), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5028), + [sym__cite_author_in_text] = ACTIONS(5028), + [sym__cite_suppress_author] = ACTIONS(5028), + [sym__shortcode_open_escaped] = ACTIONS(5028), + [sym__shortcode_open] = ACTIONS(5028), + [sym__unclosed_span] = ACTIONS(5028), + }, + [STATE(1326)] = { + [sym__backslash_escape] = ACTIONS(5064), + [sym_entity_reference] = ACTIONS(5064), + [sym_numeric_character_reference] = ACTIONS(5064), + [anon_sym_LT] = ACTIONS(5066), + [anon_sym_GT] = ACTIONS(5064), + [anon_sym_BANG] = ACTIONS(5064), + [anon_sym_DQUOTE] = ACTIONS(5064), + [anon_sym_POUND] = ACTIONS(5064), + [anon_sym_DOLLAR] = ACTIONS(5064), + [anon_sym_PERCENT] = ACTIONS(5064), + [anon_sym_AMP] = ACTIONS(5066), + [anon_sym_SQUOTE] = ACTIONS(5064), + [anon_sym_STAR] = ACTIONS(5064), + [anon_sym_PLUS] = ACTIONS(5064), + [anon_sym_COMMA] = ACTIONS(5064), + [anon_sym_DASH] = ACTIONS(5066), + [anon_sym_DOT] = ACTIONS(5066), + [anon_sym_SLASH] = ACTIONS(5064), + [anon_sym_COLON] = ACTIONS(5064), + [anon_sym_SEMI] = ACTIONS(5064), + [anon_sym_EQ] = ACTIONS(5064), + [anon_sym_QMARK] = ACTIONS(5064), + [anon_sym_LBRACK] = ACTIONS(5066), + [anon_sym_BSLASH] = ACTIONS(5066), + [anon_sym_CARET] = ACTIONS(5066), + [anon_sym__] = ACTIONS(5064), + [anon_sym_BQUOTE] = ACTIONS(5064), + [anon_sym_LBRACE] = ACTIONS(5064), + [anon_sym_PIPE] = ACTIONS(5064), + [anon_sym_TILDE] = ACTIONS(5064), + [anon_sym_LPAREN] = ACTIONS(5064), + [anon_sym_RPAREN] = ACTIONS(5064), + [sym__newline_token] = ACTIONS(5064), + [aux_sym_insert_token1] = ACTIONS(5064), + [aux_sym_delete_token1] = ACTIONS(5064), + [aux_sym_highlight_token1] = ACTIONS(5064), + [aux_sym_edit_comment_token1] = ACTIONS(5064), + [anon_sym_CARET_LBRACK] = ACTIONS(5064), + [anon_sym_LBRACK_CARET] = ACTIONS(5064), + [sym_uri_autolink] = ACTIONS(5064), + [sym_email_autolink] = ACTIONS(5064), + [sym__whitespace_ge_2] = ACTIONS(5064), + [aux_sym__whitespace_token1] = ACTIONS(5066), + [sym__word_no_digit] = ACTIONS(5064), + [sym__digits] = ACTIONS(5064), + [anon_sym_DASH_DASH] = ACTIONS(5066), + [anon_sym_DASH_DASH_DASH] = ACTIONS(5064), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5064), + [sym__code_span_start] = ACTIONS(5064), + [sym__emphasis_open_star] = ACTIONS(5064), + [sym__emphasis_open_underscore] = ACTIONS(5064), + [sym__emphasis_close_star] = ACTIONS(5114), + [sym__strikeout_open] = ACTIONS(5064), + [sym__latex_span_start] = ACTIONS(5064), + [sym__single_quote_open] = ACTIONS(5064), + [sym__double_quote_open] = ACTIONS(5064), + [sym__superscript_open] = ACTIONS(5064), + [sym__subscript_open] = ACTIONS(5064), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5064), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5064), + [sym__cite_author_in_text] = ACTIONS(5064), + [sym__cite_suppress_author] = ACTIONS(5064), + [sym__shortcode_open_escaped] = ACTIONS(5064), + [sym__shortcode_open] = ACTIONS(5064), + [sym__unclosed_span] = ACTIONS(5064), + }, + [STATE(1327)] = { + [sym__backslash_escape] = ACTIONS(4820), + [sym_entity_reference] = ACTIONS(4820), + [sym_numeric_character_reference] = ACTIONS(4820), + [anon_sym_LT] = ACTIONS(4822), + [anon_sym_GT] = ACTIONS(4820), + [anon_sym_BANG] = ACTIONS(4820), + [anon_sym_DQUOTE] = ACTIONS(4820), + [anon_sym_POUND] = ACTIONS(4820), + [anon_sym_DOLLAR] = ACTIONS(4820), + [anon_sym_PERCENT] = ACTIONS(4820), + [anon_sym_AMP] = ACTIONS(4822), + [anon_sym_SQUOTE] = ACTIONS(4820), + [anon_sym_STAR] = ACTIONS(4820), + [anon_sym_PLUS] = ACTIONS(4820), + [anon_sym_COMMA] = ACTIONS(4820), + [anon_sym_DASH] = ACTIONS(4822), + [anon_sym_DOT] = ACTIONS(4822), + [anon_sym_SLASH] = ACTIONS(4820), + [anon_sym_COLON] = ACTIONS(4820), + [anon_sym_SEMI] = ACTIONS(4820), + [anon_sym_EQ] = ACTIONS(4820), + [anon_sym_QMARK] = ACTIONS(4820), + [anon_sym_LBRACK] = ACTIONS(4822), + [anon_sym_BSLASH] = ACTIONS(4822), + [anon_sym_CARET] = ACTIONS(4822), + [anon_sym__] = ACTIONS(4820), + [anon_sym_BQUOTE] = ACTIONS(4820), + [anon_sym_LBRACE] = ACTIONS(4820), + [anon_sym_PIPE] = ACTIONS(4820), + [anon_sym_TILDE] = ACTIONS(4820), + [anon_sym_LPAREN] = ACTIONS(4820), + [anon_sym_RPAREN] = ACTIONS(4820), + [sym__newline_token] = ACTIONS(4820), + [aux_sym_insert_token1] = ACTIONS(4820), + [aux_sym_delete_token1] = ACTIONS(4820), + [aux_sym_highlight_token1] = ACTIONS(4820), + [aux_sym_edit_comment_token1] = ACTIONS(4820), + [anon_sym_CARET_LBRACK] = ACTIONS(4820), + [anon_sym_LBRACK_CARET] = ACTIONS(4820), + [sym_uri_autolink] = ACTIONS(4820), + [sym_email_autolink] = ACTIONS(4820), + [sym__whitespace_ge_2] = ACTIONS(4820), + [aux_sym__whitespace_token1] = ACTIONS(4822), + [sym__word_no_digit] = ACTIONS(4820), + [sym__digits] = ACTIONS(4820), + [anon_sym_DASH_DASH] = ACTIONS(4822), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4820), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4820), + [sym__code_span_start] = ACTIONS(4820), + [sym__emphasis_open_star] = ACTIONS(4820), + [sym__emphasis_open_underscore] = ACTIONS(4820), + [sym__emphasis_close_star] = ACTIONS(4820), + [sym__strikeout_open] = ACTIONS(4820), + [sym__latex_span_start] = ACTIONS(4820), + [sym__single_quote_open] = ACTIONS(4820), + [sym__double_quote_open] = ACTIONS(4820), + [sym__superscript_open] = ACTIONS(4820), + [sym__subscript_open] = ACTIONS(4820), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4820), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4820), + [sym__cite_author_in_text] = ACTIONS(4820), + [sym__cite_suppress_author] = ACTIONS(4820), + [sym__shortcode_open_escaped] = ACTIONS(4820), + [sym__shortcode_open] = ACTIONS(4820), + [sym__unclosed_span] = ACTIONS(4820), + }, + [STATE(1328)] = { + [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__] = ACTIONS(5071), + [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(5117), + [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), + }, + [STATE(1329)] = { + [sym__backslash_escape] = ACTIONS(4824), + [sym_entity_reference] = ACTIONS(4824), + [sym_numeric_character_reference] = ACTIONS(4824), + [anon_sym_LT] = ACTIONS(4826), + [anon_sym_GT] = ACTIONS(4824), + [anon_sym_BANG] = ACTIONS(4824), + [anon_sym_DQUOTE] = ACTIONS(4824), + [anon_sym_POUND] = ACTIONS(4824), + [anon_sym_DOLLAR] = ACTIONS(4824), + [anon_sym_PERCENT] = ACTIONS(4824), + [anon_sym_AMP] = ACTIONS(4826), + [anon_sym_SQUOTE] = ACTIONS(4824), + [anon_sym_STAR] = ACTIONS(4824), + [anon_sym_PLUS] = ACTIONS(4824), + [anon_sym_COMMA] = ACTIONS(4824), + [anon_sym_DASH] = ACTIONS(4826), + [anon_sym_DOT] = ACTIONS(4826), + [anon_sym_SLASH] = ACTIONS(4824), + [anon_sym_COLON] = ACTIONS(4824), + [anon_sym_SEMI] = ACTIONS(4824), + [anon_sym_EQ] = ACTIONS(4824), + [anon_sym_QMARK] = ACTIONS(4824), + [anon_sym_LBRACK] = ACTIONS(4826), + [anon_sym_BSLASH] = ACTIONS(4826), + [anon_sym_CARET] = ACTIONS(4826), + [anon_sym__] = ACTIONS(4824), + [anon_sym_BQUOTE] = ACTIONS(4824), + [anon_sym_LBRACE] = ACTIONS(4824), + [anon_sym_PIPE] = ACTIONS(4824), + [anon_sym_TILDE] = ACTIONS(4824), + [anon_sym_LPAREN] = ACTIONS(4824), + [anon_sym_RPAREN] = ACTIONS(4824), + [sym__newline_token] = ACTIONS(4824), + [aux_sym_insert_token1] = ACTIONS(4824), + [aux_sym_delete_token1] = ACTIONS(4824), + [aux_sym_highlight_token1] = ACTIONS(4824), + [aux_sym_edit_comment_token1] = ACTIONS(4824), + [anon_sym_CARET_LBRACK] = ACTIONS(4824), + [anon_sym_LBRACK_CARET] = ACTIONS(4824), + [sym_uri_autolink] = ACTIONS(4824), + [sym_email_autolink] = ACTIONS(4824), + [sym__whitespace_ge_2] = ACTIONS(4824), + [aux_sym__whitespace_token1] = ACTIONS(4826), + [sym__word_no_digit] = ACTIONS(4824), + [sym__digits] = ACTIONS(4824), + [anon_sym_DASH_DASH] = ACTIONS(4826), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4824), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4824), + [sym__code_span_start] = ACTIONS(4824), + [sym__emphasis_open_star] = ACTIONS(4824), + [sym__emphasis_open_underscore] = ACTIONS(4824), + [sym__emphasis_close_star] = ACTIONS(4824), + [sym__strikeout_open] = ACTIONS(4824), + [sym__latex_span_start] = ACTIONS(4824), + [sym__single_quote_open] = ACTIONS(4824), + [sym__double_quote_open] = ACTIONS(4824), + [sym__superscript_open] = ACTIONS(4824), + [sym__subscript_open] = ACTIONS(4824), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4824), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4824), + [sym__cite_author_in_text] = ACTIONS(4824), + [sym__cite_suppress_author] = ACTIONS(4824), + [sym__shortcode_open_escaped] = ACTIONS(4824), + [sym__shortcode_open] = ACTIONS(4824), + [sym__unclosed_span] = ACTIONS(4824), + }, + [STATE(1330)] = { + [sym__backslash_escape] = ACTIONS(4828), + [sym_entity_reference] = ACTIONS(4828), + [sym_numeric_character_reference] = ACTIONS(4828), + [anon_sym_LT] = ACTIONS(4830), + [anon_sym_GT] = ACTIONS(4828), + [anon_sym_BANG] = ACTIONS(4828), + [anon_sym_DQUOTE] = ACTIONS(4828), + [anon_sym_POUND] = ACTIONS(4828), + [anon_sym_DOLLAR] = ACTIONS(4828), + [anon_sym_PERCENT] = ACTIONS(4828), + [anon_sym_AMP] = ACTIONS(4830), + [anon_sym_SQUOTE] = ACTIONS(4828), + [anon_sym_STAR] = ACTIONS(4828), + [anon_sym_PLUS] = ACTIONS(4828), + [anon_sym_COMMA] = ACTIONS(4828), + [anon_sym_DASH] = ACTIONS(4830), + [anon_sym_DOT] = ACTIONS(4830), + [anon_sym_SLASH] = ACTIONS(4828), + [anon_sym_COLON] = ACTIONS(4828), + [anon_sym_SEMI] = ACTIONS(4828), + [anon_sym_EQ] = ACTIONS(4828), + [anon_sym_QMARK] = ACTIONS(4828), + [anon_sym_LBRACK] = ACTIONS(4830), + [anon_sym_BSLASH] = ACTIONS(4830), + [anon_sym_CARET] = ACTIONS(4830), + [anon_sym__] = ACTIONS(4828), + [anon_sym_BQUOTE] = ACTIONS(4828), + [anon_sym_LBRACE] = ACTIONS(4828), + [anon_sym_PIPE] = ACTIONS(4828), + [anon_sym_TILDE] = ACTIONS(4828), + [anon_sym_LPAREN] = ACTIONS(4828), + [anon_sym_RPAREN] = ACTIONS(4828), + [sym__newline_token] = ACTIONS(4828), + [aux_sym_insert_token1] = ACTIONS(4828), + [aux_sym_delete_token1] = ACTIONS(4828), + [aux_sym_highlight_token1] = ACTIONS(4828), + [aux_sym_edit_comment_token1] = ACTIONS(4828), + [anon_sym_CARET_LBRACK] = ACTIONS(4828), + [anon_sym_LBRACK_CARET] = ACTIONS(4828), + [sym_uri_autolink] = ACTIONS(4828), + [sym_email_autolink] = ACTIONS(4828), + [sym__whitespace_ge_2] = ACTIONS(4828), + [aux_sym__whitespace_token1] = ACTIONS(4830), + [sym__word_no_digit] = ACTIONS(4828), + [sym__digits] = ACTIONS(4828), + [anon_sym_DASH_DASH] = ACTIONS(4830), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4828), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4828), + [sym__code_span_start] = ACTIONS(4828), + [sym__emphasis_open_star] = ACTIONS(4828), + [sym__emphasis_open_underscore] = ACTIONS(4828), + [sym__emphasis_close_star] = ACTIONS(4828), + [sym__strikeout_open] = ACTIONS(4828), + [sym__latex_span_start] = ACTIONS(4828), + [sym__single_quote_open] = ACTIONS(4828), + [sym__double_quote_open] = ACTIONS(4828), + [sym__superscript_open] = ACTIONS(4828), + [sym__subscript_open] = ACTIONS(4828), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4828), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4828), + [sym__cite_author_in_text] = ACTIONS(4828), + [sym__cite_suppress_author] = ACTIONS(4828), + [sym__shortcode_open_escaped] = ACTIONS(4828), + [sym__shortcode_open] = ACTIONS(4828), + [sym__unclosed_span] = ACTIONS(4828), + }, + [STATE(1331)] = { + [sym__backslash_escape] = ACTIONS(4832), + [sym_entity_reference] = ACTIONS(4832), + [sym_numeric_character_reference] = ACTIONS(4832), + [anon_sym_LT] = ACTIONS(4834), + [anon_sym_GT] = ACTIONS(4832), + [anon_sym_BANG] = ACTIONS(4832), + [anon_sym_DQUOTE] = ACTIONS(4832), + [anon_sym_POUND] = ACTIONS(4832), + [anon_sym_DOLLAR] = ACTIONS(4832), + [anon_sym_PERCENT] = ACTIONS(4832), + [anon_sym_AMP] = ACTIONS(4834), + [anon_sym_SQUOTE] = ACTIONS(4832), + [anon_sym_STAR] = ACTIONS(4832), + [anon_sym_PLUS] = ACTIONS(4832), + [anon_sym_COMMA] = ACTIONS(4832), + [anon_sym_DASH] = ACTIONS(4834), + [anon_sym_DOT] = ACTIONS(4834), + [anon_sym_SLASH] = ACTIONS(4832), + [anon_sym_COLON] = ACTIONS(4832), + [anon_sym_SEMI] = ACTIONS(4832), + [anon_sym_EQ] = ACTIONS(4832), + [anon_sym_QMARK] = ACTIONS(4832), + [anon_sym_LBRACK] = ACTIONS(4834), + [anon_sym_BSLASH] = ACTIONS(4834), + [anon_sym_CARET] = ACTIONS(4834), + [anon_sym__] = ACTIONS(4832), + [anon_sym_BQUOTE] = ACTIONS(4832), + [anon_sym_LBRACE] = ACTIONS(4832), + [anon_sym_PIPE] = ACTIONS(4832), + [anon_sym_TILDE] = ACTIONS(4832), + [anon_sym_LPAREN] = ACTIONS(4832), + [anon_sym_RPAREN] = ACTIONS(4832), + [sym__newline_token] = ACTIONS(4832), + [aux_sym_insert_token1] = ACTIONS(4832), + [aux_sym_delete_token1] = ACTIONS(4832), + [aux_sym_highlight_token1] = ACTIONS(4832), + [aux_sym_edit_comment_token1] = ACTIONS(4832), + [anon_sym_CARET_LBRACK] = ACTIONS(4832), + [anon_sym_LBRACK_CARET] = ACTIONS(4832), + [sym_uri_autolink] = ACTIONS(4832), + [sym_email_autolink] = ACTIONS(4832), + [sym__whitespace_ge_2] = ACTIONS(4832), + [aux_sym__whitespace_token1] = ACTIONS(4834), + [sym__word_no_digit] = ACTIONS(4832), + [sym__digits] = ACTIONS(4832), + [anon_sym_DASH_DASH] = ACTIONS(4834), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4832), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4832), + [sym__code_span_start] = ACTIONS(4832), + [sym__emphasis_open_star] = ACTIONS(4832), + [sym__emphasis_open_underscore] = ACTIONS(4832), + [sym__emphasis_close_star] = ACTIONS(4832), + [sym__strikeout_open] = ACTIONS(4832), + [sym__latex_span_start] = ACTIONS(4832), + [sym__single_quote_open] = ACTIONS(4832), + [sym__double_quote_open] = ACTIONS(4832), + [sym__superscript_open] = ACTIONS(4832), + [sym__subscript_open] = ACTIONS(4832), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4832), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4832), + [sym__cite_author_in_text] = ACTIONS(4832), + [sym__cite_suppress_author] = ACTIONS(4832), + [sym__shortcode_open_escaped] = ACTIONS(4832), + [sym__shortcode_open] = ACTIONS(4832), + [sym__unclosed_span] = ACTIONS(4832), + }, + [STATE(1332)] = { + [sym__backslash_escape] = ACTIONS(4836), + [sym_entity_reference] = ACTIONS(4836), + [sym_numeric_character_reference] = ACTIONS(4836), + [anon_sym_LT] = ACTIONS(4838), + [anon_sym_GT] = ACTIONS(4836), + [anon_sym_BANG] = ACTIONS(4836), + [anon_sym_DQUOTE] = ACTIONS(4836), + [anon_sym_POUND] = ACTIONS(4836), + [anon_sym_DOLLAR] = ACTIONS(4836), + [anon_sym_PERCENT] = ACTIONS(4836), + [anon_sym_AMP] = ACTIONS(4838), + [anon_sym_SQUOTE] = ACTIONS(4836), + [anon_sym_STAR] = ACTIONS(4836), + [anon_sym_PLUS] = ACTIONS(4836), + [anon_sym_COMMA] = ACTIONS(4836), + [anon_sym_DASH] = ACTIONS(4838), + [anon_sym_DOT] = ACTIONS(4838), + [anon_sym_SLASH] = ACTIONS(4836), + [anon_sym_COLON] = ACTIONS(4836), + [anon_sym_SEMI] = ACTIONS(4836), + [anon_sym_EQ] = ACTIONS(4836), + [anon_sym_QMARK] = ACTIONS(4836), + [anon_sym_LBRACK] = ACTIONS(4838), + [anon_sym_BSLASH] = ACTIONS(4838), + [anon_sym_CARET] = ACTIONS(4838), + [anon_sym__] = ACTIONS(4836), + [anon_sym_BQUOTE] = ACTIONS(4836), + [anon_sym_LBRACE] = ACTIONS(4836), + [anon_sym_PIPE] = ACTIONS(4836), + [anon_sym_TILDE] = ACTIONS(4836), + [anon_sym_LPAREN] = ACTIONS(4836), + [anon_sym_RPAREN] = ACTIONS(4836), + [sym__newline_token] = ACTIONS(4836), + [aux_sym_insert_token1] = ACTIONS(4836), + [aux_sym_delete_token1] = ACTIONS(4836), + [aux_sym_highlight_token1] = ACTIONS(4836), + [aux_sym_edit_comment_token1] = ACTIONS(4836), + [anon_sym_CARET_LBRACK] = ACTIONS(4836), + [anon_sym_LBRACK_CARET] = ACTIONS(4836), + [sym_uri_autolink] = ACTIONS(4836), + [sym_email_autolink] = ACTIONS(4836), + [sym__whitespace_ge_2] = ACTIONS(4836), + [aux_sym__whitespace_token1] = ACTIONS(4838), + [sym__word_no_digit] = ACTIONS(4836), + [sym__digits] = ACTIONS(4836), + [anon_sym_DASH_DASH] = ACTIONS(4838), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4836), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4836), + [sym__code_span_start] = ACTIONS(4836), + [sym__emphasis_open_star] = ACTIONS(4836), + [sym__emphasis_open_underscore] = ACTIONS(4836), + [sym__emphasis_close_star] = ACTIONS(4836), + [sym__strikeout_open] = ACTIONS(4836), + [sym__latex_span_start] = ACTIONS(4836), + [sym__single_quote_open] = ACTIONS(4836), + [sym__double_quote_open] = ACTIONS(4836), + [sym__superscript_open] = ACTIONS(4836), + [sym__subscript_open] = ACTIONS(4836), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4836), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4836), + [sym__cite_author_in_text] = ACTIONS(4836), + [sym__cite_suppress_author] = ACTIONS(4836), + [sym__shortcode_open_escaped] = ACTIONS(4836), + [sym__shortcode_open] = ACTIONS(4836), + [sym__unclosed_span] = ACTIONS(4836), + }, + [STATE(1333)] = { + [sym__backslash_escape] = ACTIONS(5036), + [sym_entity_reference] = ACTIONS(5036), + [sym_numeric_character_reference] = ACTIONS(5036), + [anon_sym_LT] = ACTIONS(5038), + [anon_sym_GT] = ACTIONS(5036), + [anon_sym_BANG] = ACTIONS(5036), + [anon_sym_DQUOTE] = ACTIONS(5036), + [anon_sym_POUND] = ACTIONS(5036), + [anon_sym_DOLLAR] = ACTIONS(5036), + [anon_sym_PERCENT] = ACTIONS(5036), + [anon_sym_AMP] = ACTIONS(5038), + [anon_sym_SQUOTE] = ACTIONS(5036), + [anon_sym_STAR] = ACTIONS(5036), + [anon_sym_PLUS] = ACTIONS(5036), + [anon_sym_COMMA] = ACTIONS(5036), + [anon_sym_DASH] = ACTIONS(5038), + [anon_sym_DOT] = ACTIONS(5038), + [anon_sym_SLASH] = ACTIONS(5036), + [anon_sym_COLON] = ACTIONS(5036), + [anon_sym_SEMI] = ACTIONS(5036), + [anon_sym_EQ] = ACTIONS(5036), + [anon_sym_QMARK] = ACTIONS(5036), + [anon_sym_LBRACK] = ACTIONS(5038), + [anon_sym_BSLASH] = ACTIONS(5038), + [anon_sym_CARET] = ACTIONS(5038), + [anon_sym__] = ACTIONS(5036), + [anon_sym_BQUOTE] = ACTIONS(5036), + [anon_sym_LBRACE] = ACTIONS(5036), + [anon_sym_PIPE] = ACTIONS(5036), + [anon_sym_TILDE] = ACTIONS(5036), + [anon_sym_LPAREN] = ACTIONS(5036), + [anon_sym_RPAREN] = ACTIONS(5036), + [sym__newline_token] = ACTIONS(5036), + [aux_sym_insert_token1] = ACTIONS(5036), + [aux_sym_delete_token1] = ACTIONS(5036), + [aux_sym_highlight_token1] = ACTIONS(5036), + [aux_sym_edit_comment_token1] = ACTIONS(5036), + [anon_sym_CARET_LBRACK] = ACTIONS(5036), + [anon_sym_LBRACK_CARET] = ACTIONS(5036), + [sym_uri_autolink] = ACTIONS(5036), + [sym_email_autolink] = ACTIONS(5036), + [sym__whitespace_ge_2] = ACTIONS(5036), + [aux_sym__whitespace_token1] = ACTIONS(5038), + [sym__word_no_digit] = ACTIONS(5036), + [sym__digits] = ACTIONS(5036), + [anon_sym_DASH_DASH] = ACTIONS(5038), + [anon_sym_DASH_DASH_DASH] = ACTIONS(5036), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5036), + [sym__code_span_start] = ACTIONS(5036), + [sym__emphasis_open_star] = ACTIONS(5036), + [sym__emphasis_open_underscore] = ACTIONS(5036), + [sym__strikeout_open] = ACTIONS(5036), + [sym__latex_span_start] = ACTIONS(5036), + [sym__single_quote_open] = ACTIONS(5036), + [sym__double_quote_open] = ACTIONS(5036), + [sym__double_quote_close] = ACTIONS(5036), + [sym__superscript_open] = ACTIONS(5036), + [sym__subscript_open] = ACTIONS(5036), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5036), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5036), + [sym__cite_author_in_text] = ACTIONS(5036), + [sym__cite_suppress_author] = ACTIONS(5036), + [sym__shortcode_open_escaped] = ACTIONS(5036), + [sym__shortcode_open] = ACTIONS(5036), + [sym__unclosed_span] = ACTIONS(5036), + }, + [STATE(1334)] = { + [sym__backslash_escape] = ACTIONS(4812), + [sym_entity_reference] = ACTIONS(4812), + [sym_numeric_character_reference] = ACTIONS(4812), + [anon_sym_LT] = ACTIONS(4814), + [anon_sym_GT] = ACTIONS(4812), + [anon_sym_BANG] = ACTIONS(4812), + [anon_sym_DQUOTE] = ACTIONS(4812), + [anon_sym_POUND] = ACTIONS(4812), + [anon_sym_DOLLAR] = ACTIONS(4812), + [anon_sym_PERCENT] = ACTIONS(4812), + [anon_sym_AMP] = ACTIONS(4814), + [anon_sym_SQUOTE] = ACTIONS(4812), + [anon_sym_STAR] = ACTIONS(4812), + [anon_sym_PLUS] = ACTIONS(4812), + [anon_sym_COMMA] = ACTIONS(4812), + [anon_sym_DASH] = ACTIONS(4814), + [anon_sym_DOT] = ACTIONS(4814), + [anon_sym_SLASH] = ACTIONS(4812), + [anon_sym_COLON] = ACTIONS(4812), + [anon_sym_SEMI] = ACTIONS(4812), + [anon_sym_EQ] = ACTIONS(4812), + [anon_sym_QMARK] = ACTIONS(4812), + [anon_sym_LBRACK] = ACTIONS(4814), + [anon_sym_BSLASH] = ACTIONS(4814), + [anon_sym_CARET] = ACTIONS(4814), + [anon_sym__] = ACTIONS(4812), + [anon_sym_BQUOTE] = ACTIONS(4812), + [anon_sym_LBRACE] = ACTIONS(4812), + [anon_sym_PIPE] = ACTIONS(4812), + [anon_sym_TILDE] = ACTIONS(4812), + [anon_sym_LPAREN] = ACTIONS(4812), + [anon_sym_RPAREN] = ACTIONS(4812), + [sym__newline_token] = ACTIONS(4812), + [aux_sym_insert_token1] = ACTIONS(4812), + [aux_sym_delete_token1] = ACTIONS(4812), + [aux_sym_highlight_token1] = ACTIONS(4812), + [aux_sym_edit_comment_token1] = ACTIONS(4812), + [anon_sym_CARET_LBRACK] = ACTIONS(4812), + [anon_sym_LBRACK_CARET] = ACTIONS(4812), + [sym_uri_autolink] = ACTIONS(4812), + [sym_email_autolink] = ACTIONS(4812), + [sym__whitespace_ge_2] = ACTIONS(4812), + [aux_sym__whitespace_token1] = ACTIONS(4814), + [sym__word_no_digit] = ACTIONS(4812), + [sym__digits] = ACTIONS(4812), + [anon_sym_DASH_DASH] = ACTIONS(4814), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4812), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4812), + [sym__code_span_start] = ACTIONS(4812), + [sym__emphasis_open_star] = ACTIONS(4812), + [sym__emphasis_open_underscore] = ACTIONS(4812), + [sym__strikeout_open] = ACTIONS(4812), + [sym__latex_span_start] = ACTIONS(4812), + [sym__single_quote_open] = ACTIONS(4812), + [sym__double_quote_open] = ACTIONS(4812), + [sym__double_quote_close] = ACTIONS(4812), + [sym__superscript_open] = ACTIONS(4812), + [sym__subscript_open] = ACTIONS(4812), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4812), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4812), + [sym__cite_author_in_text] = ACTIONS(4812), + [sym__cite_suppress_author] = ACTIONS(4812), + [sym__shortcode_open_escaped] = ACTIONS(4812), + [sym__shortcode_open] = ACTIONS(4812), + [sym__unclosed_span] = ACTIONS(4812), + }, + [STATE(1335)] = { + [sym__backslash_escape] = ACTIONS(4844), + [sym_entity_reference] = ACTIONS(4844), + [sym_numeric_character_reference] = ACTIONS(4844), + [anon_sym_LT] = ACTIONS(4846), + [anon_sym_GT] = ACTIONS(4844), + [anon_sym_BANG] = ACTIONS(4844), + [anon_sym_DQUOTE] = ACTIONS(4844), + [anon_sym_POUND] = ACTIONS(4844), + [anon_sym_DOLLAR] = ACTIONS(4844), + [anon_sym_PERCENT] = ACTIONS(4844), + [anon_sym_AMP] = ACTIONS(4846), + [anon_sym_SQUOTE] = ACTIONS(4844), + [anon_sym_STAR] = ACTIONS(4844), + [anon_sym_PLUS] = ACTIONS(4844), + [anon_sym_COMMA] = ACTIONS(4844), + [anon_sym_DASH] = ACTIONS(4846), + [anon_sym_DOT] = ACTIONS(4846), + [anon_sym_SLASH] = ACTIONS(4844), + [anon_sym_COLON] = ACTIONS(4844), + [anon_sym_SEMI] = ACTIONS(4844), + [anon_sym_EQ] = ACTIONS(4844), + [anon_sym_QMARK] = ACTIONS(4844), + [anon_sym_LBRACK] = ACTIONS(4846), + [anon_sym_BSLASH] = ACTIONS(4846), + [anon_sym_CARET] = ACTIONS(4846), + [anon_sym__] = ACTIONS(4844), + [anon_sym_BQUOTE] = ACTIONS(4844), + [anon_sym_LBRACE] = ACTIONS(4844), + [anon_sym_PIPE] = ACTIONS(4844), + [anon_sym_TILDE] = ACTIONS(4844), + [anon_sym_LPAREN] = ACTIONS(4844), + [anon_sym_RPAREN] = ACTIONS(4844), + [sym__newline_token] = ACTIONS(4844), + [aux_sym_insert_token1] = ACTIONS(4844), + [aux_sym_delete_token1] = ACTIONS(4844), + [aux_sym_highlight_token1] = ACTIONS(4844), + [aux_sym_edit_comment_token1] = ACTIONS(4844), + [anon_sym_CARET_LBRACK] = ACTIONS(4844), + [anon_sym_LBRACK_CARET] = ACTIONS(4844), + [sym_uri_autolink] = ACTIONS(4844), + [sym_email_autolink] = ACTIONS(4844), + [sym__whitespace_ge_2] = ACTIONS(4844), + [aux_sym__whitespace_token1] = ACTIONS(4846), + [sym__word_no_digit] = ACTIONS(4844), + [sym__digits] = ACTIONS(4844), + [anon_sym_DASH_DASH] = ACTIONS(4846), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4844), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4844), + [sym__code_span_start] = ACTIONS(4844), + [sym__emphasis_open_star] = ACTIONS(4844), + [sym__emphasis_open_underscore] = ACTIONS(4844), + [sym__emphasis_close_star] = ACTIONS(4844), + [sym__strikeout_open] = ACTIONS(4844), + [sym__latex_span_start] = ACTIONS(4844), + [sym__single_quote_open] = ACTIONS(4844), + [sym__double_quote_open] = ACTIONS(4844), + [sym__superscript_open] = ACTIONS(4844), + [sym__subscript_open] = ACTIONS(4844), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4844), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4844), + [sym__cite_author_in_text] = ACTIONS(4844), + [sym__cite_suppress_author] = ACTIONS(4844), + [sym__shortcode_open_escaped] = ACTIONS(4844), + [sym__shortcode_open] = ACTIONS(4844), + [sym__unclosed_span] = ACTIONS(4844), + }, + [STATE(1336)] = { + [sym__backslash_escape] = ACTIONS(4848), + [sym_entity_reference] = ACTIONS(4848), + [sym_numeric_character_reference] = ACTIONS(4848), + [anon_sym_LT] = ACTIONS(4850), + [anon_sym_GT] = ACTIONS(4848), + [anon_sym_BANG] = ACTIONS(4848), + [anon_sym_DQUOTE] = ACTIONS(4848), + [anon_sym_POUND] = ACTIONS(4848), + [anon_sym_DOLLAR] = ACTIONS(4848), + [anon_sym_PERCENT] = ACTIONS(4848), + [anon_sym_AMP] = ACTIONS(4850), + [anon_sym_SQUOTE] = ACTIONS(4848), + [anon_sym_STAR] = ACTIONS(4848), + [anon_sym_PLUS] = ACTIONS(4848), + [anon_sym_COMMA] = ACTIONS(4848), + [anon_sym_DASH] = ACTIONS(4850), + [anon_sym_DOT] = ACTIONS(4850), + [anon_sym_SLASH] = ACTIONS(4848), + [anon_sym_COLON] = ACTIONS(4848), + [anon_sym_SEMI] = ACTIONS(4848), + [anon_sym_EQ] = ACTIONS(4848), + [anon_sym_QMARK] = ACTIONS(4848), + [anon_sym_LBRACK] = ACTIONS(4850), + [anon_sym_BSLASH] = ACTIONS(4850), + [anon_sym_CARET] = ACTIONS(4850), + [anon_sym__] = ACTIONS(4848), + [anon_sym_BQUOTE] = ACTIONS(4848), + [anon_sym_LBRACE] = ACTIONS(4848), + [anon_sym_PIPE] = ACTIONS(4848), + [anon_sym_TILDE] = ACTIONS(4848), + [anon_sym_LPAREN] = ACTIONS(4848), + [anon_sym_RPAREN] = ACTIONS(4848), + [sym__newline_token] = ACTIONS(4848), + [aux_sym_insert_token1] = ACTIONS(4848), + [aux_sym_delete_token1] = ACTIONS(4848), + [aux_sym_highlight_token1] = ACTIONS(4848), + [aux_sym_edit_comment_token1] = ACTIONS(4848), + [anon_sym_CARET_LBRACK] = ACTIONS(4848), + [anon_sym_LBRACK_CARET] = ACTIONS(4848), + [sym_uri_autolink] = ACTIONS(4848), + [sym_email_autolink] = ACTIONS(4848), + [sym__whitespace_ge_2] = ACTIONS(4848), + [aux_sym__whitespace_token1] = ACTIONS(4850), + [sym__word_no_digit] = ACTIONS(4848), + [sym__digits] = ACTIONS(4848), + [anon_sym_DASH_DASH] = ACTIONS(4850), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4848), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4848), + [sym__code_span_start] = ACTIONS(4848), + [sym__emphasis_open_star] = ACTIONS(4848), + [sym__emphasis_open_underscore] = ACTIONS(4848), + [sym__emphasis_close_star] = ACTIONS(4848), + [sym__strikeout_open] = ACTIONS(4848), + [sym__latex_span_start] = ACTIONS(4848), + [sym__single_quote_open] = ACTIONS(4848), + [sym__double_quote_open] = ACTIONS(4848), + [sym__superscript_open] = ACTIONS(4848), + [sym__subscript_open] = ACTIONS(4848), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4848), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4848), + [sym__cite_author_in_text] = ACTIONS(4848), + [sym__cite_suppress_author] = ACTIONS(4848), + [sym__shortcode_open_escaped] = ACTIONS(4848), + [sym__shortcode_open] = ACTIONS(4848), + [sym__unclosed_span] = ACTIONS(4848), + }, + [STATE(1337)] = { + [sym__backslash_escape] = ACTIONS(4852), + [sym_entity_reference] = ACTIONS(4852), + [sym_numeric_character_reference] = ACTIONS(4852), + [anon_sym_LT] = ACTIONS(4854), + [anon_sym_GT] = ACTIONS(4852), + [anon_sym_BANG] = ACTIONS(4852), + [anon_sym_DQUOTE] = ACTIONS(4852), + [anon_sym_POUND] = ACTIONS(4852), + [anon_sym_DOLLAR] = ACTIONS(4852), + [anon_sym_PERCENT] = ACTIONS(4852), + [anon_sym_AMP] = ACTIONS(4854), + [anon_sym_SQUOTE] = ACTIONS(4852), + [anon_sym_STAR] = ACTIONS(4852), + [anon_sym_PLUS] = ACTIONS(4852), + [anon_sym_COMMA] = ACTIONS(4852), + [anon_sym_DASH] = ACTIONS(4854), + [anon_sym_DOT] = ACTIONS(4854), + [anon_sym_SLASH] = ACTIONS(4852), + [anon_sym_COLON] = ACTIONS(4852), + [anon_sym_SEMI] = ACTIONS(4852), + [anon_sym_EQ] = ACTIONS(4852), + [anon_sym_QMARK] = ACTIONS(4852), + [anon_sym_LBRACK] = ACTIONS(4854), + [anon_sym_BSLASH] = ACTIONS(4854), + [anon_sym_CARET] = ACTIONS(4854), + [anon_sym__] = ACTIONS(4852), + [anon_sym_BQUOTE] = ACTIONS(4852), + [anon_sym_LBRACE] = ACTIONS(4852), + [anon_sym_PIPE] = ACTIONS(4852), + [anon_sym_TILDE] = ACTIONS(4852), + [anon_sym_LPAREN] = ACTIONS(4852), + [anon_sym_RPAREN] = ACTIONS(4852), + [sym__newline_token] = ACTIONS(4852), + [aux_sym_insert_token1] = ACTIONS(4852), + [aux_sym_delete_token1] = ACTIONS(4852), + [aux_sym_highlight_token1] = ACTIONS(4852), + [aux_sym_edit_comment_token1] = ACTIONS(4852), + [anon_sym_CARET_LBRACK] = ACTIONS(4852), + [anon_sym_LBRACK_CARET] = ACTIONS(4852), + [sym_uri_autolink] = ACTIONS(4852), + [sym_email_autolink] = ACTIONS(4852), + [sym__whitespace_ge_2] = ACTIONS(4852), + [aux_sym__whitespace_token1] = ACTIONS(4854), + [sym__word_no_digit] = ACTIONS(4852), + [sym__digits] = ACTIONS(4852), + [anon_sym_DASH_DASH] = ACTIONS(4854), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4852), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4852), + [sym__code_span_start] = ACTIONS(4852), + [sym__emphasis_open_star] = ACTIONS(4852), + [sym__emphasis_open_underscore] = ACTIONS(4852), + [sym__emphasis_close_star] = ACTIONS(4852), + [sym__strikeout_open] = ACTIONS(4852), + [sym__latex_span_start] = ACTIONS(4852), + [sym__single_quote_open] = ACTIONS(4852), + [sym__double_quote_open] = ACTIONS(4852), + [sym__superscript_open] = ACTIONS(4852), + [sym__subscript_open] = ACTIONS(4852), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4852), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4852), + [sym__cite_author_in_text] = ACTIONS(4852), + [sym__cite_suppress_author] = ACTIONS(4852), + [sym__shortcode_open_escaped] = ACTIONS(4852), + [sym__shortcode_open] = ACTIONS(4852), + [sym__unclosed_span] = ACTIONS(4852), + }, + [STATE(1338)] = { + [sym__backslash_escape] = ACTIONS(4566), + [sym_entity_reference] = ACTIONS(4566), + [sym_numeric_character_reference] = ACTIONS(4566), + [anon_sym_LT] = ACTIONS(4568), + [anon_sym_GT] = ACTIONS(4566), + [anon_sym_BANG] = ACTIONS(4566), + [anon_sym_DQUOTE] = ACTIONS(4566), + [anon_sym_POUND] = ACTIONS(4566), + [anon_sym_DOLLAR] = ACTIONS(4566), + [anon_sym_PERCENT] = ACTIONS(4566), + [anon_sym_AMP] = ACTIONS(4568), + [anon_sym_SQUOTE] = ACTIONS(4566), + [anon_sym_STAR] = ACTIONS(4566), + [anon_sym_PLUS] = ACTIONS(4566), + [anon_sym_COMMA] = ACTIONS(4566), + [anon_sym_DASH] = ACTIONS(4568), + [anon_sym_DOT] = ACTIONS(4568), + [anon_sym_SLASH] = ACTIONS(4566), + [anon_sym_COLON] = ACTIONS(4566), + [anon_sym_SEMI] = ACTIONS(4566), + [anon_sym_EQ] = ACTIONS(4566), + [anon_sym_QMARK] = ACTIONS(4566), + [anon_sym_LBRACK] = ACTIONS(4568), + [anon_sym_BSLASH] = ACTIONS(4568), + [anon_sym_CARET] = ACTIONS(4568), + [anon_sym__] = ACTIONS(4566), + [anon_sym_BQUOTE] = ACTIONS(4566), + [anon_sym_LBRACE] = ACTIONS(4566), + [anon_sym_PIPE] = ACTIONS(4566), + [anon_sym_TILDE] = ACTIONS(4566), + [anon_sym_LPAREN] = ACTIONS(4566), + [anon_sym_RPAREN] = ACTIONS(4566), + [sym__newline_token] = ACTIONS(4566), + [aux_sym_insert_token1] = ACTIONS(4566), + [aux_sym_delete_token1] = ACTIONS(4566), + [aux_sym_highlight_token1] = ACTIONS(4566), + [aux_sym_edit_comment_token1] = ACTIONS(4566), + [anon_sym_CARET_LBRACK] = ACTIONS(4566), + [anon_sym_LBRACK_CARET] = ACTIONS(4566), + [sym_uri_autolink] = ACTIONS(4566), + [sym_email_autolink] = ACTIONS(4566), + [sym__whitespace_ge_2] = ACTIONS(4566), + [aux_sym__whitespace_token1] = ACTIONS(4568), + [sym__word_no_digit] = ACTIONS(4566), + [sym__digits] = ACTIONS(4566), + [anon_sym_DASH_DASH] = ACTIONS(4568), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4566), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4566), + [sym__code_span_start] = ACTIONS(4566), + [sym__emphasis_open_star] = ACTIONS(4566), + [sym__emphasis_open_underscore] = ACTIONS(4566), + [sym__emphasis_close_star] = ACTIONS(4566), + [sym__strikeout_open] = ACTIONS(4566), + [sym__latex_span_start] = ACTIONS(4566), + [sym__single_quote_open] = ACTIONS(4566), + [sym__double_quote_open] = ACTIONS(4566), + [sym__superscript_open] = ACTIONS(4566), + [sym__subscript_open] = ACTIONS(4566), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4566), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4566), + [sym__cite_author_in_text] = ACTIONS(4566), + [sym__cite_suppress_author] = ACTIONS(4566), + [sym__shortcode_open_escaped] = ACTIONS(4566), + [sym__shortcode_open] = ACTIONS(4566), + [sym__unclosed_span] = ACTIONS(4566), + }, + [STATE(1339)] = { + [sym__backslash_escape] = ACTIONS(4816), + [sym_entity_reference] = ACTIONS(4816), + [sym_numeric_character_reference] = ACTIONS(4816), + [anon_sym_LT] = ACTIONS(4818), + [anon_sym_GT] = ACTIONS(4816), + [anon_sym_BANG] = ACTIONS(4816), + [anon_sym_DQUOTE] = ACTIONS(4816), + [anon_sym_POUND] = ACTIONS(4816), + [anon_sym_DOLLAR] = ACTIONS(4816), + [anon_sym_PERCENT] = ACTIONS(4816), + [anon_sym_AMP] = ACTIONS(4818), + [anon_sym_SQUOTE] = ACTIONS(4816), + [anon_sym_STAR] = ACTIONS(4816), + [anon_sym_PLUS] = ACTIONS(4816), + [anon_sym_COMMA] = ACTIONS(4816), + [anon_sym_DASH] = ACTIONS(4818), + [anon_sym_DOT] = ACTIONS(4818), + [anon_sym_SLASH] = ACTIONS(4816), + [anon_sym_COLON] = ACTIONS(4816), + [anon_sym_SEMI] = ACTIONS(4816), + [anon_sym_EQ] = ACTIONS(4816), + [anon_sym_QMARK] = ACTIONS(4816), + [anon_sym_LBRACK] = ACTIONS(4818), + [anon_sym_BSLASH] = ACTIONS(4818), + [anon_sym_CARET] = ACTIONS(4818), + [anon_sym__] = ACTIONS(4816), + [anon_sym_BQUOTE] = ACTIONS(4816), + [anon_sym_LBRACE] = ACTIONS(4816), + [anon_sym_PIPE] = ACTIONS(4816), + [anon_sym_TILDE] = ACTIONS(4816), + [anon_sym_LPAREN] = ACTIONS(4816), + [anon_sym_RPAREN] = ACTIONS(4816), + [sym__newline_token] = ACTIONS(4816), + [aux_sym_insert_token1] = ACTIONS(4816), + [aux_sym_delete_token1] = ACTIONS(4816), + [aux_sym_highlight_token1] = ACTIONS(4816), + [aux_sym_edit_comment_token1] = ACTIONS(4816), + [anon_sym_CARET_LBRACK] = ACTIONS(4816), + [anon_sym_LBRACK_CARET] = ACTIONS(4816), + [sym_uri_autolink] = ACTIONS(4816), + [sym_email_autolink] = ACTIONS(4816), + [sym__whitespace_ge_2] = ACTIONS(4816), + [aux_sym__whitespace_token1] = ACTIONS(4818), + [sym__word_no_digit] = ACTIONS(4816), + [sym__digits] = ACTIONS(4816), + [anon_sym_DASH_DASH] = ACTIONS(4818), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4816), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4816), + [sym__code_span_start] = ACTIONS(4816), + [sym__emphasis_open_star] = ACTIONS(4816), + [sym__emphasis_open_underscore] = ACTIONS(4816), + [sym__strikeout_open] = ACTIONS(4816), + [sym__latex_span_start] = ACTIONS(4816), + [sym__single_quote_open] = ACTIONS(4816), + [sym__double_quote_open] = ACTIONS(4816), + [sym__double_quote_close] = ACTIONS(4816), + [sym__superscript_open] = ACTIONS(4816), + [sym__subscript_open] = ACTIONS(4816), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4816), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4816), + [sym__cite_author_in_text] = ACTIONS(4816), + [sym__cite_suppress_author] = ACTIONS(4816), + [sym__shortcode_open_escaped] = ACTIONS(4816), + [sym__shortcode_open] = ACTIONS(4816), + [sym__unclosed_span] = ACTIONS(4816), + }, + [STATE(1340)] = { + [sym__backslash_escape] = ACTIONS(4572), + [sym_entity_reference] = ACTIONS(4572), + [sym_numeric_character_reference] = ACTIONS(4572), + [anon_sym_LT] = ACTIONS(4574), + [anon_sym_GT] = ACTIONS(4572), + [anon_sym_BANG] = ACTIONS(4572), + [anon_sym_DQUOTE] = ACTIONS(4572), + [anon_sym_POUND] = ACTIONS(4572), + [anon_sym_DOLLAR] = ACTIONS(4572), + [anon_sym_PERCENT] = ACTIONS(4572), + [anon_sym_AMP] = ACTIONS(4574), + [anon_sym_SQUOTE] = ACTIONS(4572), + [anon_sym_STAR] = ACTIONS(4572), + [anon_sym_PLUS] = ACTIONS(4572), + [anon_sym_COMMA] = ACTIONS(4572), + [anon_sym_DASH] = ACTIONS(4574), + [anon_sym_DOT] = ACTIONS(4574), + [anon_sym_SLASH] = ACTIONS(4572), + [anon_sym_COLON] = ACTIONS(4572), + [anon_sym_SEMI] = ACTIONS(4572), + [anon_sym_EQ] = ACTIONS(4572), + [anon_sym_QMARK] = ACTIONS(4572), + [anon_sym_LBRACK] = ACTIONS(4574), + [anon_sym_BSLASH] = ACTIONS(4574), + [anon_sym_CARET] = ACTIONS(4574), + [anon_sym__] = ACTIONS(4572), + [anon_sym_BQUOTE] = ACTIONS(4572), + [anon_sym_LBRACE] = ACTIONS(4572), + [anon_sym_PIPE] = ACTIONS(4572), + [anon_sym_TILDE] = ACTIONS(4572), + [anon_sym_LPAREN] = ACTIONS(4572), + [anon_sym_RPAREN] = ACTIONS(4572), + [sym__newline_token] = ACTIONS(4572), + [aux_sym_insert_token1] = ACTIONS(4572), + [aux_sym_delete_token1] = ACTIONS(4572), + [aux_sym_highlight_token1] = ACTIONS(4572), + [aux_sym_edit_comment_token1] = ACTIONS(4572), + [anon_sym_CARET_LBRACK] = ACTIONS(4572), + [anon_sym_LBRACK_CARET] = ACTIONS(4572), + [sym_uri_autolink] = ACTIONS(4572), + [sym_email_autolink] = ACTIONS(4572), + [sym__whitespace_ge_2] = ACTIONS(4572), + [aux_sym__whitespace_token1] = ACTIONS(4574), + [sym__word_no_digit] = ACTIONS(4572), + [sym__digits] = ACTIONS(4572), + [anon_sym_DASH_DASH] = ACTIONS(4574), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4572), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4572), + [sym__code_span_start] = ACTIONS(4572), + [sym__emphasis_open_star] = ACTIONS(4572), + [sym__emphasis_open_underscore] = ACTIONS(4572), + [sym__emphasis_close_star] = ACTIONS(4572), + [sym__strikeout_open] = ACTIONS(4572), + [sym__latex_span_start] = ACTIONS(4572), + [sym__single_quote_open] = ACTIONS(4572), + [sym__double_quote_open] = ACTIONS(4572), + [sym__superscript_open] = ACTIONS(4572), + [sym__subscript_open] = ACTIONS(4572), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4572), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4572), + [sym__cite_author_in_text] = ACTIONS(4572), + [sym__cite_suppress_author] = ACTIONS(4572), + [sym__shortcode_open_escaped] = ACTIONS(4572), + [sym__shortcode_open] = ACTIONS(4572), + [sym__unclosed_span] = ACTIONS(4572), + }, + [STATE(1341)] = { + [sym__backslash_escape] = ACTIONS(4840), + [sym_entity_reference] = ACTIONS(4840), + [sym_numeric_character_reference] = ACTIONS(4840), + [anon_sym_LT] = ACTIONS(4842), + [anon_sym_GT] = ACTIONS(4840), + [anon_sym_BANG] = ACTIONS(4840), + [anon_sym_DQUOTE] = ACTIONS(4840), + [anon_sym_POUND] = ACTIONS(4840), + [anon_sym_DOLLAR] = ACTIONS(4840), + [anon_sym_PERCENT] = ACTIONS(4840), + [anon_sym_AMP] = ACTIONS(4842), + [anon_sym_SQUOTE] = ACTIONS(4840), + [anon_sym_STAR] = ACTIONS(4840), + [anon_sym_PLUS] = ACTIONS(4840), + [anon_sym_COMMA] = ACTIONS(4840), + [anon_sym_DASH] = ACTIONS(4842), + [anon_sym_DOT] = ACTIONS(4842), + [anon_sym_SLASH] = ACTIONS(4840), + [anon_sym_COLON] = ACTIONS(4840), + [anon_sym_SEMI] = ACTIONS(4840), + [anon_sym_EQ] = ACTIONS(4840), + [anon_sym_QMARK] = ACTIONS(4840), + [anon_sym_LBRACK] = ACTIONS(4842), + [anon_sym_BSLASH] = ACTIONS(4842), + [anon_sym_CARET] = ACTIONS(4842), + [anon_sym__] = ACTIONS(4840), + [anon_sym_BQUOTE] = ACTIONS(4840), + [anon_sym_LBRACE] = ACTIONS(4840), + [anon_sym_PIPE] = ACTIONS(4840), + [anon_sym_TILDE] = ACTIONS(4840), + [anon_sym_LPAREN] = ACTIONS(4840), + [anon_sym_RPAREN] = ACTIONS(4840), + [sym__newline_token] = ACTIONS(4840), + [aux_sym_insert_token1] = ACTIONS(4840), + [aux_sym_delete_token1] = ACTIONS(4840), + [aux_sym_highlight_token1] = ACTIONS(4840), + [aux_sym_edit_comment_token1] = ACTIONS(4840), + [anon_sym_CARET_LBRACK] = ACTIONS(4840), + [anon_sym_LBRACK_CARET] = ACTIONS(4840), + [sym_uri_autolink] = ACTIONS(4840), + [sym_email_autolink] = ACTIONS(4840), + [sym__whitespace_ge_2] = ACTIONS(4840), + [aux_sym__whitespace_token1] = ACTIONS(4842), + [sym__word_no_digit] = ACTIONS(4840), + [sym__digits] = ACTIONS(4840), + [anon_sym_DASH_DASH] = ACTIONS(4842), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4840), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4840), + [sym__code_span_start] = ACTIONS(4840), + [sym__emphasis_open_star] = ACTIONS(4840), + [sym__emphasis_open_underscore] = ACTIONS(4840), + [sym__strikeout_open] = ACTIONS(4840), + [sym__latex_span_start] = ACTIONS(4840), + [sym__single_quote_open] = ACTIONS(4840), + [sym__double_quote_open] = ACTIONS(4840), + [sym__double_quote_close] = ACTIONS(4840), + [sym__superscript_open] = ACTIONS(4840), + [sym__subscript_open] = ACTIONS(4840), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4840), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4840), + [sym__cite_author_in_text] = ACTIONS(4840), + [sym__cite_suppress_author] = ACTIONS(4840), + [sym__shortcode_open_escaped] = ACTIONS(4840), + [sym__shortcode_open] = ACTIONS(4840), + [sym__unclosed_span] = ACTIONS(4840), + }, + [STATE(1342)] = { + [sym__backslash_escape] = ACTIONS(4860), + [sym_entity_reference] = ACTIONS(4860), + [sym_numeric_character_reference] = ACTIONS(4860), + [anon_sym_LT] = ACTIONS(4862), + [anon_sym_GT] = ACTIONS(4860), + [anon_sym_BANG] = ACTIONS(4860), + [anon_sym_DQUOTE] = ACTIONS(4860), + [anon_sym_POUND] = ACTIONS(4860), + [anon_sym_DOLLAR] = ACTIONS(4860), + [anon_sym_PERCENT] = ACTIONS(4860), + [anon_sym_AMP] = ACTIONS(4862), + [anon_sym_SQUOTE] = ACTIONS(4860), + [anon_sym_STAR] = ACTIONS(4860), + [anon_sym_PLUS] = ACTIONS(4860), + [anon_sym_COMMA] = ACTIONS(4860), + [anon_sym_DASH] = ACTIONS(4862), + [anon_sym_DOT] = ACTIONS(4862), + [anon_sym_SLASH] = ACTIONS(4860), + [anon_sym_COLON] = ACTIONS(4860), + [anon_sym_SEMI] = ACTIONS(4860), + [anon_sym_EQ] = ACTIONS(4860), + [anon_sym_QMARK] = ACTIONS(4860), + [anon_sym_LBRACK] = ACTIONS(4862), + [anon_sym_BSLASH] = ACTIONS(4862), + [anon_sym_CARET] = ACTIONS(4862), + [anon_sym__] = ACTIONS(4860), + [anon_sym_BQUOTE] = ACTIONS(4860), + [anon_sym_LBRACE] = ACTIONS(4860), + [anon_sym_PIPE] = ACTIONS(4860), + [anon_sym_TILDE] = ACTIONS(4860), + [anon_sym_LPAREN] = ACTIONS(4860), + [anon_sym_RPAREN] = ACTIONS(4860), + [sym__newline_token] = ACTIONS(4860), + [aux_sym_insert_token1] = ACTIONS(4860), + [aux_sym_delete_token1] = ACTIONS(4860), + [aux_sym_highlight_token1] = ACTIONS(4860), + [aux_sym_edit_comment_token1] = ACTIONS(4860), + [anon_sym_CARET_LBRACK] = ACTIONS(4860), + [anon_sym_LBRACK_CARET] = ACTIONS(4860), + [sym_uri_autolink] = ACTIONS(4860), + [sym_email_autolink] = ACTIONS(4860), + [sym__whitespace_ge_2] = ACTIONS(4860), + [aux_sym__whitespace_token1] = ACTIONS(4862), + [sym__word_no_digit] = ACTIONS(4860), + [sym__digits] = ACTIONS(4860), + [anon_sym_DASH_DASH] = ACTIONS(4862), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4860), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4860), + [sym__code_span_start] = ACTIONS(4860), + [sym__emphasis_open_star] = ACTIONS(4860), + [sym__emphasis_open_underscore] = ACTIONS(4860), + [sym__emphasis_close_star] = ACTIONS(4860), + [sym__strikeout_open] = ACTIONS(4860), + [sym__latex_span_start] = ACTIONS(4860), + [sym__single_quote_open] = ACTIONS(4860), + [sym__double_quote_open] = ACTIONS(4860), + [sym__superscript_open] = ACTIONS(4860), + [sym__subscript_open] = ACTIONS(4860), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4860), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4860), + [sym__cite_author_in_text] = ACTIONS(4860), + [sym__cite_suppress_author] = ACTIONS(4860), + [sym__shortcode_open_escaped] = ACTIONS(4860), + [sym__shortcode_open] = ACTIONS(4860), + [sym__unclosed_span] = ACTIONS(4860), + }, + [STATE(1343)] = { + [sym__backslash_escape] = ACTIONS(4864), + [sym_entity_reference] = ACTIONS(4864), + [sym_numeric_character_reference] = ACTIONS(4864), + [anon_sym_LT] = ACTIONS(4866), + [anon_sym_GT] = ACTIONS(4864), + [anon_sym_BANG] = ACTIONS(4864), + [anon_sym_DQUOTE] = ACTIONS(4864), + [anon_sym_POUND] = ACTIONS(4864), + [anon_sym_DOLLAR] = ACTIONS(4864), + [anon_sym_PERCENT] = ACTIONS(4864), + [anon_sym_AMP] = ACTIONS(4866), + [anon_sym_SQUOTE] = ACTIONS(4864), + [anon_sym_STAR] = ACTIONS(4864), + [anon_sym_PLUS] = ACTIONS(4864), + [anon_sym_COMMA] = ACTIONS(4864), + [anon_sym_DASH] = ACTIONS(4866), + [anon_sym_DOT] = ACTIONS(4866), + [anon_sym_SLASH] = ACTIONS(4864), + [anon_sym_COLON] = ACTIONS(4864), + [anon_sym_SEMI] = ACTIONS(4864), + [anon_sym_EQ] = ACTIONS(4864), + [anon_sym_QMARK] = ACTIONS(4864), + [anon_sym_LBRACK] = ACTIONS(4866), + [anon_sym_BSLASH] = ACTIONS(4866), + [anon_sym_CARET] = ACTIONS(4866), + [anon_sym__] = ACTIONS(4864), + [anon_sym_BQUOTE] = ACTIONS(4864), + [anon_sym_LBRACE] = ACTIONS(4864), + [anon_sym_PIPE] = ACTIONS(4864), + [anon_sym_TILDE] = ACTIONS(4864), + [anon_sym_LPAREN] = ACTIONS(4864), + [anon_sym_RPAREN] = ACTIONS(4864), + [sym__newline_token] = ACTIONS(4864), + [aux_sym_insert_token1] = ACTIONS(4864), + [aux_sym_delete_token1] = ACTIONS(4864), + [aux_sym_highlight_token1] = ACTIONS(4864), + [aux_sym_edit_comment_token1] = ACTIONS(4864), + [anon_sym_CARET_LBRACK] = ACTIONS(4864), + [anon_sym_LBRACK_CARET] = ACTIONS(4864), + [sym_uri_autolink] = ACTIONS(4864), + [sym_email_autolink] = ACTIONS(4864), + [sym__whitespace_ge_2] = ACTIONS(4864), + [aux_sym__whitespace_token1] = ACTIONS(4866), + [sym__word_no_digit] = ACTIONS(4864), + [sym__digits] = ACTIONS(4864), + [anon_sym_DASH_DASH] = ACTIONS(4866), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4864), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4864), + [sym__code_span_start] = ACTIONS(4864), + [sym__emphasis_open_star] = ACTIONS(4864), + [sym__emphasis_open_underscore] = ACTIONS(4864), + [sym__emphasis_close_star] = ACTIONS(4864), + [sym__strikeout_open] = ACTIONS(4864), + [sym__latex_span_start] = ACTIONS(4864), + [sym__single_quote_open] = ACTIONS(4864), + [sym__double_quote_open] = ACTIONS(4864), + [sym__superscript_open] = ACTIONS(4864), + [sym__subscript_open] = ACTIONS(4864), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4864), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4864), + [sym__cite_author_in_text] = ACTIONS(4864), + [sym__cite_suppress_author] = ACTIONS(4864), + [sym__shortcode_open_escaped] = ACTIONS(4864), + [sym__shortcode_open] = ACTIONS(4864), + [sym__unclosed_span] = ACTIONS(4864), + }, + [STATE(1344)] = { + [sym__backslash_escape] = ACTIONS(4868), + [sym_entity_reference] = ACTIONS(4868), + [sym_numeric_character_reference] = ACTIONS(4868), + [anon_sym_LT] = ACTIONS(4870), + [anon_sym_GT] = ACTIONS(4868), + [anon_sym_BANG] = ACTIONS(4868), + [anon_sym_DQUOTE] = ACTIONS(4868), + [anon_sym_POUND] = ACTIONS(4868), + [anon_sym_DOLLAR] = ACTIONS(4868), + [anon_sym_PERCENT] = ACTIONS(4868), + [anon_sym_AMP] = ACTIONS(4870), + [anon_sym_SQUOTE] = ACTIONS(4868), + [anon_sym_STAR] = ACTIONS(4868), + [anon_sym_PLUS] = ACTIONS(4868), + [anon_sym_COMMA] = ACTIONS(4868), + [anon_sym_DASH] = ACTIONS(4870), + [anon_sym_DOT] = ACTIONS(4870), + [anon_sym_SLASH] = ACTIONS(4868), + [anon_sym_COLON] = ACTIONS(4868), + [anon_sym_SEMI] = ACTIONS(4868), + [anon_sym_EQ] = ACTIONS(4868), + [anon_sym_QMARK] = ACTIONS(4868), + [anon_sym_LBRACK] = ACTIONS(4870), + [anon_sym_BSLASH] = ACTIONS(4870), + [anon_sym_CARET] = ACTIONS(4870), + [anon_sym__] = ACTIONS(4868), + [anon_sym_BQUOTE] = ACTIONS(4868), + [anon_sym_LBRACE] = ACTIONS(4868), + [anon_sym_PIPE] = ACTIONS(4868), + [anon_sym_TILDE] = ACTIONS(4868), + [anon_sym_LPAREN] = ACTIONS(4868), + [anon_sym_RPAREN] = ACTIONS(4868), + [sym__newline_token] = ACTIONS(4868), + [aux_sym_insert_token1] = ACTIONS(4868), + [aux_sym_delete_token1] = ACTIONS(4868), + [aux_sym_highlight_token1] = ACTIONS(4868), + [aux_sym_edit_comment_token1] = ACTIONS(4868), + [anon_sym_CARET_LBRACK] = ACTIONS(4868), + [anon_sym_LBRACK_CARET] = ACTIONS(4868), + [sym_uri_autolink] = ACTIONS(4868), + [sym_email_autolink] = ACTIONS(4868), + [sym__whitespace_ge_2] = ACTIONS(4868), + [aux_sym__whitespace_token1] = ACTIONS(4870), + [sym__word_no_digit] = ACTIONS(4868), + [sym__digits] = ACTIONS(4868), + [anon_sym_DASH_DASH] = ACTIONS(4870), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4868), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4868), + [sym__code_span_start] = ACTIONS(4868), + [sym__emphasis_open_star] = ACTIONS(4868), + [sym__emphasis_open_underscore] = ACTIONS(4868), + [sym__emphasis_close_star] = ACTIONS(4868), + [sym__strikeout_open] = ACTIONS(4868), + [sym__latex_span_start] = ACTIONS(4868), + [sym__single_quote_open] = ACTIONS(4868), + [sym__double_quote_open] = ACTIONS(4868), + [sym__superscript_open] = ACTIONS(4868), + [sym__subscript_open] = ACTIONS(4868), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4868), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4868), + [sym__cite_author_in_text] = ACTIONS(4868), + [sym__cite_suppress_author] = ACTIONS(4868), + [sym__shortcode_open_escaped] = ACTIONS(4868), + [sym__shortcode_open] = ACTIONS(4868), + [sym__unclosed_span] = ACTIONS(4868), + }, + [STATE(1345)] = { + [sym__backslash_escape] = ACTIONS(4872), + [sym_entity_reference] = ACTIONS(4872), + [sym_numeric_character_reference] = ACTIONS(4872), + [anon_sym_LT] = ACTIONS(4874), + [anon_sym_GT] = ACTIONS(4872), + [anon_sym_BANG] = ACTIONS(4872), + [anon_sym_DQUOTE] = ACTIONS(4872), + [anon_sym_POUND] = ACTIONS(4872), + [anon_sym_DOLLAR] = ACTIONS(4872), + [anon_sym_PERCENT] = ACTIONS(4872), + [anon_sym_AMP] = ACTIONS(4874), + [anon_sym_SQUOTE] = ACTIONS(4872), + [anon_sym_STAR] = ACTIONS(4872), + [anon_sym_PLUS] = ACTIONS(4872), + [anon_sym_COMMA] = ACTIONS(4872), + [anon_sym_DASH] = ACTIONS(4874), + [anon_sym_DOT] = ACTIONS(4874), + [anon_sym_SLASH] = ACTIONS(4872), + [anon_sym_COLON] = ACTIONS(4872), + [anon_sym_SEMI] = ACTIONS(4872), + [anon_sym_EQ] = ACTIONS(4872), + [anon_sym_QMARK] = ACTIONS(4872), + [anon_sym_LBRACK] = ACTIONS(4874), + [anon_sym_BSLASH] = ACTIONS(4874), + [anon_sym_CARET] = ACTIONS(4874), + [anon_sym__] = ACTIONS(4872), + [anon_sym_BQUOTE] = ACTIONS(4872), + [anon_sym_LBRACE] = ACTIONS(4872), + [anon_sym_PIPE] = ACTIONS(4872), + [anon_sym_TILDE] = ACTIONS(4872), + [anon_sym_LPAREN] = ACTIONS(4872), + [anon_sym_RPAREN] = ACTIONS(4872), + [sym__newline_token] = ACTIONS(4872), + [aux_sym_insert_token1] = ACTIONS(4872), + [aux_sym_delete_token1] = ACTIONS(4872), + [aux_sym_highlight_token1] = ACTIONS(4872), + [aux_sym_edit_comment_token1] = ACTIONS(4872), + [anon_sym_CARET_LBRACK] = ACTIONS(4872), + [anon_sym_LBRACK_CARET] = ACTIONS(4872), + [sym_uri_autolink] = ACTIONS(4872), + [sym_email_autolink] = ACTIONS(4872), + [sym__whitespace_ge_2] = ACTIONS(4872), + [aux_sym__whitespace_token1] = ACTIONS(4874), + [sym__word_no_digit] = ACTIONS(4872), + [sym__digits] = ACTIONS(4872), + [anon_sym_DASH_DASH] = ACTIONS(4874), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4872), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4872), + [sym__code_span_start] = ACTIONS(4872), + [sym__emphasis_open_star] = ACTIONS(4872), + [sym__emphasis_open_underscore] = ACTIONS(4872), + [sym__emphasis_close_star] = ACTIONS(4872), + [sym__strikeout_open] = ACTIONS(4872), + [sym__latex_span_start] = ACTIONS(4872), + [sym__single_quote_open] = ACTIONS(4872), + [sym__double_quote_open] = ACTIONS(4872), + [sym__superscript_open] = ACTIONS(4872), + [sym__subscript_open] = ACTIONS(4872), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4872), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4872), + [sym__cite_author_in_text] = ACTIONS(4872), + [sym__cite_suppress_author] = ACTIONS(4872), + [sym__shortcode_open_escaped] = ACTIONS(4872), + [sym__shortcode_open] = ACTIONS(4872), + [sym__unclosed_span] = ACTIONS(4872), + }, + [STATE(1346)] = { + [sym__backslash_escape] = ACTIONS(4876), + [sym_entity_reference] = ACTIONS(4876), + [sym_numeric_character_reference] = ACTIONS(4876), + [anon_sym_LT] = ACTIONS(4878), + [anon_sym_GT] = ACTIONS(4876), + [anon_sym_BANG] = ACTIONS(4876), + [anon_sym_DQUOTE] = ACTIONS(4876), + [anon_sym_POUND] = ACTIONS(4876), + [anon_sym_DOLLAR] = ACTIONS(4876), + [anon_sym_PERCENT] = ACTIONS(4876), + [anon_sym_AMP] = ACTIONS(4878), + [anon_sym_SQUOTE] = ACTIONS(4876), + [anon_sym_STAR] = ACTIONS(4876), + [anon_sym_PLUS] = ACTIONS(4876), + [anon_sym_COMMA] = ACTIONS(4876), + [anon_sym_DASH] = ACTIONS(4878), + [anon_sym_DOT] = ACTIONS(4878), + [anon_sym_SLASH] = ACTIONS(4876), + [anon_sym_COLON] = ACTIONS(4876), + [anon_sym_SEMI] = ACTIONS(4876), + [anon_sym_EQ] = ACTIONS(4876), + [anon_sym_QMARK] = ACTIONS(4876), + [anon_sym_LBRACK] = ACTIONS(4878), + [anon_sym_BSLASH] = ACTIONS(4878), + [anon_sym_CARET] = ACTIONS(4878), + [anon_sym__] = ACTIONS(4876), + [anon_sym_BQUOTE] = ACTIONS(4876), + [anon_sym_LBRACE] = ACTIONS(4876), + [anon_sym_PIPE] = ACTIONS(4876), + [anon_sym_TILDE] = ACTIONS(4876), + [anon_sym_LPAREN] = ACTIONS(4876), + [anon_sym_RPAREN] = ACTIONS(4876), + [sym__newline_token] = ACTIONS(4876), + [aux_sym_insert_token1] = ACTIONS(4876), + [aux_sym_delete_token1] = ACTIONS(4876), + [aux_sym_highlight_token1] = ACTIONS(4876), + [aux_sym_edit_comment_token1] = ACTIONS(4876), + [anon_sym_CARET_LBRACK] = ACTIONS(4876), + [anon_sym_LBRACK_CARET] = ACTIONS(4876), + [sym_uri_autolink] = ACTIONS(4876), + [sym_email_autolink] = ACTIONS(4876), + [sym__whitespace_ge_2] = ACTIONS(4876), + [aux_sym__whitespace_token1] = ACTIONS(4878), + [sym__word_no_digit] = ACTIONS(4876), + [sym__digits] = ACTIONS(4876), + [anon_sym_DASH_DASH] = ACTIONS(4878), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4876), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4876), + [sym__code_span_start] = ACTIONS(4876), + [sym__emphasis_open_star] = ACTIONS(4876), + [sym__emphasis_open_underscore] = ACTIONS(4876), + [sym__emphasis_close_star] = ACTIONS(4876), + [sym__strikeout_open] = ACTIONS(4876), + [sym__latex_span_start] = ACTIONS(4876), + [sym__single_quote_open] = ACTIONS(4876), + [sym__double_quote_open] = ACTIONS(4876), + [sym__superscript_open] = ACTIONS(4876), + [sym__subscript_open] = ACTIONS(4876), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4876), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4876), + [sym__cite_author_in_text] = ACTIONS(4876), + [sym__cite_suppress_author] = ACTIONS(4876), + [sym__shortcode_open_escaped] = ACTIONS(4876), + [sym__shortcode_open] = ACTIONS(4876), + [sym__unclosed_span] = ACTIONS(4876), + }, + [STATE(1347)] = { + [sym__backslash_escape] = ACTIONS(4588), + [sym_entity_reference] = ACTIONS(4588), + [sym_numeric_character_reference] = ACTIONS(4588), + [anon_sym_LT] = ACTIONS(4590), + [anon_sym_GT] = ACTIONS(4588), + [anon_sym_BANG] = ACTIONS(4588), + [anon_sym_DQUOTE] = ACTIONS(4588), + [anon_sym_POUND] = ACTIONS(4588), + [anon_sym_DOLLAR] = ACTIONS(4588), + [anon_sym_PERCENT] = ACTIONS(4588), + [anon_sym_AMP] = ACTIONS(4590), + [anon_sym_SQUOTE] = ACTIONS(4588), + [anon_sym_STAR] = ACTIONS(4588), + [anon_sym_PLUS] = ACTIONS(4588), + [anon_sym_COMMA] = ACTIONS(4588), + [anon_sym_DASH] = ACTIONS(4590), + [anon_sym_DOT] = ACTIONS(4590), + [anon_sym_SLASH] = ACTIONS(4588), + [anon_sym_COLON] = ACTIONS(4588), + [anon_sym_SEMI] = ACTIONS(4588), + [anon_sym_EQ] = ACTIONS(4588), + [anon_sym_QMARK] = ACTIONS(4588), + [anon_sym_LBRACK] = ACTIONS(4590), + [anon_sym_BSLASH] = ACTIONS(4590), + [anon_sym_CARET] = ACTIONS(4590), + [anon_sym__] = ACTIONS(4588), + [anon_sym_BQUOTE] = ACTIONS(4588), + [anon_sym_LBRACE] = ACTIONS(4588), + [anon_sym_PIPE] = ACTIONS(4588), + [anon_sym_TILDE] = ACTIONS(4588), + [anon_sym_LPAREN] = ACTIONS(4588), + [anon_sym_RPAREN] = ACTIONS(4588), + [sym__newline_token] = ACTIONS(4588), + [aux_sym_insert_token1] = ACTIONS(4588), + [aux_sym_delete_token1] = ACTIONS(4588), + [aux_sym_highlight_token1] = ACTIONS(4588), + [aux_sym_edit_comment_token1] = ACTIONS(4588), + [anon_sym_CARET_LBRACK] = ACTIONS(4588), + [anon_sym_LBRACK_CARET] = ACTIONS(4588), + [sym_uri_autolink] = ACTIONS(4588), + [sym_email_autolink] = ACTIONS(4588), + [sym__whitespace_ge_2] = ACTIONS(4588), + [aux_sym__whitespace_token1] = ACTIONS(4590), + [sym__word_no_digit] = ACTIONS(4588), + [sym__digits] = ACTIONS(4588), + [anon_sym_DASH_DASH] = ACTIONS(4590), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4588), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4588), + [sym__code_span_start] = ACTIONS(4588), + [sym__emphasis_open_star] = ACTIONS(4588), + [sym__emphasis_open_underscore] = ACTIONS(4588), + [sym__emphasis_close_star] = ACTIONS(4588), + [sym__strikeout_open] = ACTIONS(4588), + [sym__latex_span_start] = ACTIONS(4588), + [sym__single_quote_open] = ACTIONS(4588), + [sym__double_quote_open] = ACTIONS(4588), + [sym__superscript_open] = ACTIONS(4588), + [sym__subscript_open] = ACTIONS(4588), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4588), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4588), + [sym__cite_author_in_text] = ACTIONS(4588), + [sym__cite_suppress_author] = ACTIONS(4588), + [sym__shortcode_open_escaped] = ACTIONS(4588), + [sym__shortcode_open] = ACTIONS(4588), + [sym__unclosed_span] = ACTIONS(4588), + }, + [STATE(1348)] = { + [sym__backslash_escape] = ACTIONS(5020), + [sym_entity_reference] = ACTIONS(5020), + [sym_numeric_character_reference] = ACTIONS(5020), + [anon_sym_LT] = ACTIONS(5022), + [anon_sym_GT] = ACTIONS(5020), + [anon_sym_BANG] = ACTIONS(5020), + [anon_sym_DQUOTE] = ACTIONS(5020), + [anon_sym_POUND] = ACTIONS(5020), + [anon_sym_DOLLAR] = ACTIONS(5020), + [anon_sym_PERCENT] = ACTIONS(5020), + [anon_sym_AMP] = ACTIONS(5022), + [anon_sym_SQUOTE] = ACTIONS(5020), + [anon_sym_STAR] = ACTIONS(5020), + [anon_sym_PLUS] = ACTIONS(5020), + [anon_sym_COMMA] = ACTIONS(5020), + [anon_sym_DASH] = ACTIONS(5022), + [anon_sym_DOT] = ACTIONS(5022), + [anon_sym_SLASH] = ACTIONS(5020), + [anon_sym_COLON] = ACTIONS(5020), + [anon_sym_SEMI] = ACTIONS(5020), + [anon_sym_EQ] = ACTIONS(5020), + [anon_sym_QMARK] = ACTIONS(5020), + [anon_sym_LBRACK] = ACTIONS(5022), + [anon_sym_BSLASH] = ACTIONS(5022), + [anon_sym_CARET] = ACTIONS(5022), + [anon_sym__] = ACTIONS(5020), + [anon_sym_BQUOTE] = ACTIONS(5020), + [anon_sym_LBRACE] = ACTIONS(5020), + [anon_sym_PIPE] = ACTIONS(5020), + [anon_sym_TILDE] = ACTIONS(5020), + [anon_sym_LPAREN] = ACTIONS(5020), + [anon_sym_RPAREN] = ACTIONS(5020), + [sym__newline_token] = ACTIONS(5020), + [aux_sym_insert_token1] = ACTIONS(5020), + [aux_sym_delete_token1] = ACTIONS(5020), + [aux_sym_highlight_token1] = ACTIONS(5020), + [aux_sym_edit_comment_token1] = ACTIONS(5020), + [anon_sym_CARET_LBRACK] = ACTIONS(5020), + [anon_sym_LBRACK_CARET] = ACTIONS(5020), + [sym_uri_autolink] = ACTIONS(5020), + [sym_email_autolink] = ACTIONS(5020), + [sym__whitespace_ge_2] = ACTIONS(5020), + [aux_sym__whitespace_token1] = ACTIONS(5022), + [sym__word_no_digit] = ACTIONS(5020), + [sym__digits] = ACTIONS(5020), + [anon_sym_DASH_DASH] = ACTIONS(5022), + [anon_sym_DASH_DASH_DASH] = ACTIONS(5020), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5020), + [sym__code_span_start] = ACTIONS(5020), + [sym__emphasis_open_star] = ACTIONS(5020), + [sym__emphasis_open_underscore] = ACTIONS(5020), + [sym__strikeout_open] = ACTIONS(5020), + [sym__strikeout_close] = ACTIONS(5020), + [sym__latex_span_start] = ACTIONS(5020), + [sym__single_quote_open] = ACTIONS(5020), + [sym__double_quote_open] = ACTIONS(5020), + [sym__superscript_open] = ACTIONS(5020), + [sym__subscript_open] = ACTIONS(5020), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5020), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5020), + [sym__cite_author_in_text] = ACTIONS(5020), + [sym__cite_suppress_author] = ACTIONS(5020), + [sym__shortcode_open_escaped] = ACTIONS(5020), + [sym__shortcode_open] = ACTIONS(5020), + [sym__unclosed_span] = ACTIONS(5020), + }, + [STATE(1349)] = { + [sym__backslash_escape] = ACTIONS(4856), + [sym_entity_reference] = ACTIONS(4856), + [sym_numeric_character_reference] = ACTIONS(4856), + [anon_sym_LT] = ACTIONS(4858), + [anon_sym_GT] = ACTIONS(4856), + [anon_sym_BANG] = ACTIONS(4856), + [anon_sym_DQUOTE] = ACTIONS(4856), + [anon_sym_POUND] = ACTIONS(4856), + [anon_sym_DOLLAR] = ACTIONS(4856), + [anon_sym_PERCENT] = ACTIONS(4856), + [anon_sym_AMP] = ACTIONS(4858), + [anon_sym_SQUOTE] = ACTIONS(4856), + [anon_sym_STAR] = ACTIONS(4856), + [anon_sym_PLUS] = ACTIONS(4856), + [anon_sym_COMMA] = ACTIONS(4856), + [anon_sym_DASH] = ACTIONS(4858), + [anon_sym_DOT] = ACTIONS(4858), + [anon_sym_SLASH] = ACTIONS(4856), + [anon_sym_COLON] = ACTIONS(4856), + [anon_sym_SEMI] = ACTIONS(4856), + [anon_sym_EQ] = ACTIONS(4856), + [anon_sym_QMARK] = ACTIONS(4856), + [anon_sym_LBRACK] = ACTIONS(4858), + [anon_sym_BSLASH] = ACTIONS(4858), + [anon_sym_CARET] = ACTIONS(4858), + [anon_sym__] = ACTIONS(4856), + [anon_sym_BQUOTE] = ACTIONS(4856), + [anon_sym_LBRACE] = ACTIONS(4856), + [anon_sym_PIPE] = ACTIONS(4856), + [anon_sym_TILDE] = ACTIONS(4856), + [anon_sym_LPAREN] = ACTIONS(4856), + [anon_sym_RPAREN] = ACTIONS(4856), + [sym__newline_token] = ACTIONS(4856), + [aux_sym_insert_token1] = ACTIONS(4856), + [aux_sym_delete_token1] = ACTIONS(4856), + [aux_sym_highlight_token1] = ACTIONS(4856), + [aux_sym_edit_comment_token1] = ACTIONS(4856), + [anon_sym_CARET_LBRACK] = ACTIONS(4856), + [anon_sym_LBRACK_CARET] = ACTIONS(4856), + [sym_uri_autolink] = ACTIONS(4856), + [sym_email_autolink] = ACTIONS(4856), + [sym__whitespace_ge_2] = ACTIONS(4856), + [aux_sym__whitespace_token1] = ACTIONS(4858), + [sym__word_no_digit] = ACTIONS(4856), + [sym__digits] = ACTIONS(4856), + [anon_sym_DASH_DASH] = ACTIONS(4858), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4856), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4856), + [sym__code_span_start] = ACTIONS(4856), + [sym__emphasis_open_star] = ACTIONS(4856), + [sym__emphasis_open_underscore] = ACTIONS(4856), + [sym__strikeout_open] = ACTIONS(4856), + [sym__latex_span_start] = ACTIONS(4856), + [sym__single_quote_open] = ACTIONS(4856), + [sym__single_quote_close] = ACTIONS(4856), + [sym__double_quote_open] = ACTIONS(4856), + [sym__superscript_open] = ACTIONS(4856), + [sym__subscript_open] = ACTIONS(4856), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4856), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4856), + [sym__cite_author_in_text] = ACTIONS(4856), + [sym__cite_suppress_author] = ACTIONS(4856), + [sym__shortcode_open_escaped] = ACTIONS(4856), + [sym__shortcode_open] = ACTIONS(4856), + [sym__unclosed_span] = ACTIONS(4856), + }, + [STATE(1350)] = { + [sym__backslash_escape] = ACTIONS(4540), + [sym_entity_reference] = ACTIONS(4540), + [sym_numeric_character_reference] = ACTIONS(4540), + [anon_sym_LT] = ACTIONS(4542), + [anon_sym_GT] = ACTIONS(4540), + [anon_sym_BANG] = ACTIONS(4540), + [anon_sym_DQUOTE] = ACTIONS(4540), + [anon_sym_POUND] = ACTIONS(4540), + [anon_sym_DOLLAR] = ACTIONS(4540), + [anon_sym_PERCENT] = ACTIONS(4540), + [anon_sym_AMP] = ACTIONS(4542), + [anon_sym_SQUOTE] = ACTIONS(4540), + [anon_sym_STAR] = ACTIONS(4540), + [anon_sym_PLUS] = ACTIONS(4540), + [anon_sym_COMMA] = ACTIONS(4540), + [anon_sym_DASH] = ACTIONS(4542), + [anon_sym_DOT] = ACTIONS(4542), + [anon_sym_SLASH] = ACTIONS(4540), + [anon_sym_COLON] = ACTIONS(4540), + [anon_sym_SEMI] = ACTIONS(4540), + [anon_sym_EQ] = ACTIONS(4540), + [anon_sym_QMARK] = ACTIONS(4540), + [anon_sym_LBRACK] = ACTIONS(4542), + [anon_sym_BSLASH] = ACTIONS(4542), + [anon_sym_CARET] = ACTIONS(4542), + [anon_sym__] = ACTIONS(4540), + [anon_sym_BQUOTE] = ACTIONS(4540), + [anon_sym_LBRACE] = ACTIONS(4540), + [anon_sym_PIPE] = ACTIONS(4540), + [anon_sym_TILDE] = ACTIONS(4540), + [anon_sym_LPAREN] = ACTIONS(4540), + [anon_sym_RPAREN] = ACTIONS(4540), + [sym__newline_token] = ACTIONS(4540), + [aux_sym_insert_token1] = ACTIONS(4540), + [aux_sym_delete_token1] = ACTIONS(4540), + [aux_sym_highlight_token1] = ACTIONS(4540), + [aux_sym_edit_comment_token1] = ACTIONS(4540), + [anon_sym_CARET_LBRACK] = ACTIONS(4540), + [anon_sym_LBRACK_CARET] = ACTIONS(4540), + [sym_uri_autolink] = ACTIONS(4540), + [sym_email_autolink] = ACTIONS(4540), + [sym__whitespace_ge_2] = ACTIONS(4540), + [aux_sym__whitespace_token1] = ACTIONS(4542), + [sym__word_no_digit] = ACTIONS(4540), + [sym__digits] = ACTIONS(4540), + [anon_sym_DASH_DASH] = ACTIONS(4542), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4540), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4540), + [sym__code_span_start] = ACTIONS(4540), + [sym__emphasis_open_star] = ACTIONS(4540), + [sym__emphasis_open_underscore] = ACTIONS(4540), + [sym__emphasis_close_star] = ACTIONS(4540), + [sym__strikeout_open] = ACTIONS(4540), + [sym__latex_span_start] = ACTIONS(4540), + [sym__single_quote_open] = ACTIONS(4540), + [sym__double_quote_open] = ACTIONS(4540), + [sym__superscript_open] = ACTIONS(4540), + [sym__subscript_open] = ACTIONS(4540), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4540), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4540), + [sym__cite_author_in_text] = ACTIONS(4540), + [sym__cite_suppress_author] = ACTIONS(4540), + [sym__shortcode_open_escaped] = ACTIONS(4540), + [sym__shortcode_open] = ACTIONS(4540), + [sym__unclosed_span] = ACTIONS(4540), + }, + [STATE(1351)] = { + [sym__backslash_escape] = ACTIONS(4880), + [sym_entity_reference] = ACTIONS(4880), + [sym_numeric_character_reference] = ACTIONS(4880), + [anon_sym_LT] = ACTIONS(4882), + [anon_sym_GT] = ACTIONS(4880), + [anon_sym_BANG] = ACTIONS(4880), + [anon_sym_DQUOTE] = ACTIONS(4880), + [anon_sym_POUND] = ACTIONS(4880), + [anon_sym_DOLLAR] = ACTIONS(4880), + [anon_sym_PERCENT] = ACTIONS(4880), + [anon_sym_AMP] = ACTIONS(4882), + [anon_sym_SQUOTE] = ACTIONS(4880), + [anon_sym_STAR] = ACTIONS(4880), + [anon_sym_PLUS] = ACTIONS(4880), + [anon_sym_COMMA] = ACTIONS(4880), + [anon_sym_DASH] = ACTIONS(4882), + [anon_sym_DOT] = ACTIONS(4882), + [anon_sym_SLASH] = ACTIONS(4880), + [anon_sym_COLON] = ACTIONS(4880), + [anon_sym_SEMI] = ACTIONS(4880), + [anon_sym_EQ] = ACTIONS(4880), + [anon_sym_QMARK] = ACTIONS(4880), + [anon_sym_LBRACK] = ACTIONS(4882), + [anon_sym_BSLASH] = ACTIONS(4882), + [anon_sym_CARET] = ACTIONS(4882), + [anon_sym__] = ACTIONS(4880), + [anon_sym_BQUOTE] = ACTIONS(4880), + [anon_sym_LBRACE] = ACTIONS(4880), + [anon_sym_PIPE] = ACTIONS(4880), + [anon_sym_TILDE] = ACTIONS(4880), + [anon_sym_LPAREN] = ACTIONS(4880), + [anon_sym_RPAREN] = ACTIONS(4880), + [sym__newline_token] = ACTIONS(4880), + [aux_sym_insert_token1] = ACTIONS(4880), + [aux_sym_delete_token1] = ACTIONS(4880), + [aux_sym_highlight_token1] = ACTIONS(4880), + [aux_sym_edit_comment_token1] = ACTIONS(4880), + [anon_sym_CARET_LBRACK] = ACTIONS(4880), + [anon_sym_LBRACK_CARET] = ACTIONS(4880), + [sym_uri_autolink] = ACTIONS(4880), + [sym_email_autolink] = ACTIONS(4880), + [sym__whitespace_ge_2] = ACTIONS(4880), + [aux_sym__whitespace_token1] = ACTIONS(4882), + [sym__word_no_digit] = ACTIONS(4880), + [sym__digits] = ACTIONS(4880), + [anon_sym_DASH_DASH] = ACTIONS(4882), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4880), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4880), + [sym__code_span_start] = ACTIONS(4880), + [sym__emphasis_open_star] = ACTIONS(4880), + [sym__emphasis_open_underscore] = ACTIONS(4880), + [sym__strikeout_open] = ACTIONS(4880), + [sym__latex_span_start] = ACTIONS(4880), + [sym__single_quote_open] = ACTIONS(4880), + [sym__double_quote_open] = ACTIONS(4880), + [sym__double_quote_close] = ACTIONS(4880), + [sym__superscript_open] = ACTIONS(4880), + [sym__subscript_open] = ACTIONS(4880), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4880), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4880), + [sym__cite_author_in_text] = ACTIONS(4880), + [sym__cite_suppress_author] = ACTIONS(4880), + [sym__shortcode_open_escaped] = ACTIONS(4880), + [sym__shortcode_open] = ACTIONS(4880), + [sym__unclosed_span] = ACTIONS(4880), + }, + [STATE(1352)] = { + [sym__backslash_escape] = ACTIONS(4884), + [sym_entity_reference] = ACTIONS(4884), + [sym_numeric_character_reference] = ACTIONS(4884), + [anon_sym_LT] = ACTIONS(4886), + [anon_sym_GT] = ACTIONS(4884), + [anon_sym_BANG] = ACTIONS(4884), + [anon_sym_DQUOTE] = ACTIONS(4884), + [anon_sym_POUND] = ACTIONS(4884), + [anon_sym_DOLLAR] = ACTIONS(4884), + [anon_sym_PERCENT] = ACTIONS(4884), + [anon_sym_AMP] = ACTIONS(4886), + [anon_sym_SQUOTE] = ACTIONS(4884), + [anon_sym_STAR] = ACTIONS(4884), + [anon_sym_PLUS] = ACTIONS(4884), + [anon_sym_COMMA] = ACTIONS(4884), + [anon_sym_DASH] = ACTIONS(4886), + [anon_sym_DOT] = ACTIONS(4886), + [anon_sym_SLASH] = ACTIONS(4884), + [anon_sym_COLON] = ACTIONS(4884), + [anon_sym_SEMI] = ACTIONS(4884), + [anon_sym_EQ] = ACTIONS(4884), + [anon_sym_QMARK] = ACTIONS(4884), + [anon_sym_LBRACK] = ACTIONS(4886), + [anon_sym_BSLASH] = ACTIONS(4886), + [anon_sym_CARET] = ACTIONS(4886), + [anon_sym__] = ACTIONS(4884), + [anon_sym_BQUOTE] = ACTIONS(4884), + [anon_sym_LBRACE] = ACTIONS(4884), + [anon_sym_PIPE] = ACTIONS(4884), + [anon_sym_TILDE] = ACTIONS(4884), + [anon_sym_LPAREN] = ACTIONS(4884), + [anon_sym_RPAREN] = ACTIONS(4884), + [sym__newline_token] = ACTIONS(4884), + [aux_sym_insert_token1] = ACTIONS(4884), + [aux_sym_delete_token1] = ACTIONS(4884), + [aux_sym_highlight_token1] = ACTIONS(4884), + [aux_sym_edit_comment_token1] = ACTIONS(4884), + [anon_sym_CARET_LBRACK] = ACTIONS(4884), + [anon_sym_LBRACK_CARET] = ACTIONS(4884), + [sym_uri_autolink] = ACTIONS(4884), + [sym_email_autolink] = ACTIONS(4884), + [sym__whitespace_ge_2] = ACTIONS(4884), + [aux_sym__whitespace_token1] = ACTIONS(4886), + [sym__word_no_digit] = ACTIONS(4884), + [sym__digits] = ACTIONS(4884), + [anon_sym_DASH_DASH] = ACTIONS(4886), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4884), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4884), + [sym__code_span_start] = ACTIONS(4884), + [sym__emphasis_open_star] = ACTIONS(4884), + [sym__emphasis_open_underscore] = ACTIONS(4884), + [sym__emphasis_close_star] = ACTIONS(4884), + [sym__strikeout_open] = ACTIONS(4884), + [sym__latex_span_start] = ACTIONS(4884), + [sym__single_quote_open] = ACTIONS(4884), + [sym__double_quote_open] = ACTIONS(4884), + [sym__superscript_open] = ACTIONS(4884), + [sym__subscript_open] = ACTIONS(4884), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4884), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4884), + [sym__cite_author_in_text] = ACTIONS(4884), + [sym__cite_suppress_author] = ACTIONS(4884), + [sym__shortcode_open_escaped] = ACTIONS(4884), + [sym__shortcode_open] = ACTIONS(4884), + [sym__unclosed_span] = ACTIONS(4884), + }, + [STATE(1353)] = { + [sym__backslash_escape] = ACTIONS(4888), + [sym_entity_reference] = ACTIONS(4888), + [sym_numeric_character_reference] = ACTIONS(4888), + [anon_sym_LT] = ACTIONS(4890), + [anon_sym_GT] = ACTIONS(4888), + [anon_sym_BANG] = ACTIONS(4888), + [anon_sym_DQUOTE] = ACTIONS(4888), + [anon_sym_POUND] = ACTIONS(4888), + [anon_sym_DOLLAR] = ACTIONS(4888), + [anon_sym_PERCENT] = ACTIONS(4888), + [anon_sym_AMP] = ACTIONS(4890), + [anon_sym_SQUOTE] = ACTIONS(4888), + [anon_sym_STAR] = ACTIONS(4888), + [anon_sym_PLUS] = ACTIONS(4888), + [anon_sym_COMMA] = ACTIONS(4888), + [anon_sym_DASH] = ACTIONS(4890), + [anon_sym_DOT] = ACTIONS(4890), + [anon_sym_SLASH] = ACTIONS(4888), + [anon_sym_COLON] = ACTIONS(4888), + [anon_sym_SEMI] = ACTIONS(4888), + [anon_sym_EQ] = ACTIONS(4888), + [anon_sym_QMARK] = ACTIONS(4888), + [anon_sym_LBRACK] = ACTIONS(4890), + [anon_sym_BSLASH] = ACTIONS(4890), + [anon_sym_CARET] = ACTIONS(4890), + [anon_sym__] = ACTIONS(4888), + [anon_sym_BQUOTE] = ACTIONS(4888), + [anon_sym_LBRACE] = ACTIONS(4888), + [anon_sym_PIPE] = ACTIONS(4888), + [anon_sym_TILDE] = ACTIONS(4888), + [anon_sym_LPAREN] = ACTIONS(4888), + [anon_sym_RPAREN] = ACTIONS(4888), + [sym__newline_token] = ACTIONS(4888), + [aux_sym_insert_token1] = ACTIONS(4888), + [aux_sym_delete_token1] = ACTIONS(4888), + [aux_sym_highlight_token1] = ACTIONS(4888), + [aux_sym_edit_comment_token1] = ACTIONS(4888), + [anon_sym_CARET_LBRACK] = ACTIONS(4888), + [anon_sym_LBRACK_CARET] = ACTIONS(4888), + [sym_uri_autolink] = ACTIONS(4888), + [sym_email_autolink] = ACTIONS(4888), + [sym__whitespace_ge_2] = ACTIONS(4888), + [aux_sym__whitespace_token1] = ACTIONS(4890), + [sym__word_no_digit] = ACTIONS(4888), + [sym__digits] = ACTIONS(4888), + [anon_sym_DASH_DASH] = ACTIONS(4890), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4888), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4888), + [sym__code_span_start] = ACTIONS(4888), + [sym__emphasis_open_star] = ACTIONS(4888), + [sym__emphasis_open_underscore] = ACTIONS(4888), + [sym__emphasis_close_star] = ACTIONS(4888), + [sym__strikeout_open] = ACTIONS(4888), + [sym__latex_span_start] = ACTIONS(4888), + [sym__single_quote_open] = ACTIONS(4888), + [sym__double_quote_open] = ACTIONS(4888), + [sym__superscript_open] = ACTIONS(4888), + [sym__subscript_open] = ACTIONS(4888), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4888), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4888), + [sym__cite_author_in_text] = ACTIONS(4888), + [sym__cite_suppress_author] = ACTIONS(4888), + [sym__shortcode_open_escaped] = ACTIONS(4888), + [sym__shortcode_open] = ACTIONS(4888), + [sym__unclosed_span] = ACTIONS(4888), + }, + [STATE(1354)] = { + [sym__backslash_escape] = ACTIONS(4892), + [sym_entity_reference] = ACTIONS(4892), + [sym_numeric_character_reference] = ACTIONS(4892), + [anon_sym_LT] = ACTIONS(4894), + [anon_sym_GT] = ACTIONS(4892), + [anon_sym_BANG] = ACTIONS(4892), + [anon_sym_DQUOTE] = ACTIONS(4892), + [anon_sym_POUND] = ACTIONS(4892), + [anon_sym_DOLLAR] = ACTIONS(4892), + [anon_sym_PERCENT] = ACTIONS(4892), + [anon_sym_AMP] = ACTIONS(4894), + [anon_sym_SQUOTE] = ACTIONS(4892), + [anon_sym_STAR] = ACTIONS(4892), + [anon_sym_PLUS] = ACTIONS(4892), + [anon_sym_COMMA] = ACTIONS(4892), + [anon_sym_DASH] = ACTIONS(4894), + [anon_sym_DOT] = ACTIONS(4894), + [anon_sym_SLASH] = ACTIONS(4892), + [anon_sym_COLON] = ACTIONS(4892), + [anon_sym_SEMI] = ACTIONS(4892), + [anon_sym_EQ] = ACTIONS(4892), + [anon_sym_QMARK] = ACTIONS(4892), + [anon_sym_LBRACK] = ACTIONS(4894), + [anon_sym_BSLASH] = ACTIONS(4894), + [anon_sym_CARET] = ACTIONS(4894), + [anon_sym__] = ACTIONS(4892), + [anon_sym_BQUOTE] = ACTIONS(4892), + [anon_sym_LBRACE] = ACTIONS(4892), + [anon_sym_PIPE] = ACTIONS(4892), + [anon_sym_TILDE] = ACTIONS(4892), + [anon_sym_LPAREN] = ACTIONS(4892), + [anon_sym_RPAREN] = ACTIONS(4892), + [sym__newline_token] = ACTIONS(4892), + [aux_sym_insert_token1] = ACTIONS(4892), + [aux_sym_delete_token1] = ACTIONS(4892), + [aux_sym_highlight_token1] = ACTIONS(4892), + [aux_sym_edit_comment_token1] = ACTIONS(4892), + [anon_sym_CARET_LBRACK] = ACTIONS(4892), + [anon_sym_LBRACK_CARET] = ACTIONS(4892), + [sym_uri_autolink] = ACTIONS(4892), + [sym_email_autolink] = ACTIONS(4892), + [sym__whitespace_ge_2] = ACTIONS(4892), + [aux_sym__whitespace_token1] = ACTIONS(4894), + [sym__word_no_digit] = ACTIONS(4892), + [sym__digits] = ACTIONS(4892), + [anon_sym_DASH_DASH] = ACTIONS(4894), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4892), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4892), + [sym__code_span_start] = ACTIONS(4892), + [sym__emphasis_open_star] = ACTIONS(4892), + [sym__emphasis_open_underscore] = ACTIONS(4892), + [sym__emphasis_close_star] = ACTIONS(4892), + [sym__strikeout_open] = ACTIONS(4892), + [sym__latex_span_start] = ACTIONS(4892), + [sym__single_quote_open] = ACTIONS(4892), + [sym__double_quote_open] = ACTIONS(4892), + [sym__superscript_open] = ACTIONS(4892), + [sym__subscript_open] = ACTIONS(4892), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4892), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4892), + [sym__cite_author_in_text] = ACTIONS(4892), + [sym__cite_suppress_author] = ACTIONS(4892), + [sym__shortcode_open_escaped] = ACTIONS(4892), + [sym__shortcode_open] = ACTIONS(4892), + [sym__unclosed_span] = ACTIONS(4892), + }, + [STATE(1355)] = { + [sym__backslash_escape] = ACTIONS(4896), + [sym_entity_reference] = ACTIONS(4896), + [sym_numeric_character_reference] = ACTIONS(4896), + [anon_sym_LT] = ACTIONS(4898), + [anon_sym_GT] = ACTIONS(4896), + [anon_sym_BANG] = ACTIONS(4896), + [anon_sym_DQUOTE] = ACTIONS(4896), + [anon_sym_POUND] = ACTIONS(4896), + [anon_sym_DOLLAR] = ACTIONS(4896), + [anon_sym_PERCENT] = ACTIONS(4896), + [anon_sym_AMP] = ACTIONS(4898), + [anon_sym_SQUOTE] = ACTIONS(4896), + [anon_sym_STAR] = ACTIONS(4896), + [anon_sym_PLUS] = ACTIONS(4896), + [anon_sym_COMMA] = ACTIONS(4896), + [anon_sym_DASH] = ACTIONS(4898), + [anon_sym_DOT] = ACTIONS(4898), + [anon_sym_SLASH] = ACTIONS(4896), + [anon_sym_COLON] = ACTIONS(4896), + [anon_sym_SEMI] = ACTIONS(4896), + [anon_sym_EQ] = ACTIONS(4896), + [anon_sym_QMARK] = ACTIONS(4896), + [anon_sym_LBRACK] = ACTIONS(4898), + [anon_sym_BSLASH] = ACTIONS(4898), + [anon_sym_CARET] = ACTIONS(4898), + [anon_sym__] = ACTIONS(4896), + [anon_sym_BQUOTE] = ACTIONS(4896), + [anon_sym_LBRACE] = ACTIONS(4896), + [anon_sym_PIPE] = ACTIONS(4896), + [anon_sym_TILDE] = ACTIONS(4896), + [anon_sym_LPAREN] = ACTIONS(4896), + [anon_sym_RPAREN] = ACTIONS(4896), + [sym__newline_token] = ACTIONS(4896), + [aux_sym_insert_token1] = ACTIONS(4896), + [aux_sym_delete_token1] = ACTIONS(4896), + [aux_sym_highlight_token1] = ACTIONS(4896), + [aux_sym_edit_comment_token1] = ACTIONS(4896), + [anon_sym_CARET_LBRACK] = ACTIONS(4896), + [anon_sym_LBRACK_CARET] = ACTIONS(4896), + [sym_uri_autolink] = ACTIONS(4896), + [sym_email_autolink] = ACTIONS(4896), + [sym__whitespace_ge_2] = ACTIONS(4896), + [aux_sym__whitespace_token1] = ACTIONS(4898), + [sym__word_no_digit] = ACTIONS(4896), + [sym__digits] = ACTIONS(4896), + [anon_sym_DASH_DASH] = ACTIONS(4898), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4896), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4896), + [sym__code_span_start] = ACTIONS(4896), + [sym__emphasis_open_star] = ACTIONS(4896), + [sym__emphasis_open_underscore] = ACTIONS(4896), + [sym__emphasis_close_star] = ACTIONS(4896), + [sym__strikeout_open] = ACTIONS(4896), + [sym__latex_span_start] = ACTIONS(4896), + [sym__single_quote_open] = ACTIONS(4896), + [sym__double_quote_open] = ACTIONS(4896), + [sym__superscript_open] = ACTIONS(4896), + [sym__subscript_open] = ACTIONS(4896), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4896), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4896), + [sym__cite_author_in_text] = ACTIONS(4896), + [sym__cite_suppress_author] = ACTIONS(4896), + [sym__shortcode_open_escaped] = ACTIONS(4896), + [sym__shortcode_open] = ACTIONS(4896), + [sym__unclosed_span] = ACTIONS(4896), + }, + [STATE(1356)] = { + [sym__backslash_escape] = ACTIONS(5064), + [sym_entity_reference] = ACTIONS(5064), + [sym_numeric_character_reference] = ACTIONS(5064), + [anon_sym_LT] = ACTIONS(5066), + [anon_sym_GT] = ACTIONS(5064), + [anon_sym_BANG] = ACTIONS(5064), + [anon_sym_DQUOTE] = ACTIONS(5064), + [anon_sym_POUND] = ACTIONS(5064), + [anon_sym_DOLLAR] = ACTIONS(5064), + [anon_sym_PERCENT] = ACTIONS(5064), + [anon_sym_AMP] = ACTIONS(5066), + [anon_sym_SQUOTE] = ACTIONS(5064), + [anon_sym_STAR] = ACTIONS(5064), + [anon_sym_PLUS] = ACTIONS(5064), + [anon_sym_COMMA] = ACTIONS(5064), + [anon_sym_DASH] = ACTIONS(5066), + [anon_sym_DOT] = ACTIONS(5066), + [anon_sym_SLASH] = ACTIONS(5064), + [anon_sym_COLON] = ACTIONS(5064), + [anon_sym_SEMI] = ACTIONS(5064), + [anon_sym_EQ] = ACTIONS(5064), + [anon_sym_QMARK] = ACTIONS(5064), + [anon_sym_LBRACK] = ACTIONS(5066), + [anon_sym_BSLASH] = ACTIONS(5066), + [anon_sym_CARET] = ACTIONS(5066), + [anon_sym__] = ACTIONS(5064), + [anon_sym_BQUOTE] = ACTIONS(5064), + [anon_sym_LBRACE] = ACTIONS(5064), + [anon_sym_PIPE] = ACTIONS(5064), + [anon_sym_TILDE] = ACTIONS(5064), + [anon_sym_LPAREN] = ACTIONS(5064), + [anon_sym_RPAREN] = ACTIONS(5064), + [sym__newline_token] = ACTIONS(5064), + [aux_sym_insert_token1] = ACTIONS(5064), + [aux_sym_delete_token1] = ACTIONS(5064), + [aux_sym_highlight_token1] = ACTIONS(5064), + [aux_sym_edit_comment_token1] = ACTIONS(5064), + [anon_sym_CARET_LBRACK] = ACTIONS(5064), + [anon_sym_LBRACK_CARET] = ACTIONS(5064), + [sym_uri_autolink] = ACTIONS(5064), + [sym_email_autolink] = ACTIONS(5064), + [sym__whitespace_ge_2] = ACTIONS(5064), + [aux_sym__whitespace_token1] = ACTIONS(5066), + [sym__word_no_digit] = ACTIONS(5064), + [sym__digits] = ACTIONS(5064), + [anon_sym_DASH_DASH] = ACTIONS(5066), + [anon_sym_DASH_DASH_DASH] = ACTIONS(5064), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5064), + [sym__code_span_start] = ACTIONS(5064), + [sym__emphasis_open_star] = ACTIONS(5064), + [sym__emphasis_open_underscore] = ACTIONS(5064), + [sym__emphasis_close_star] = ACTIONS(5120), + [sym__strikeout_open] = ACTIONS(5064), + [sym__latex_span_start] = ACTIONS(5064), + [sym__single_quote_open] = ACTIONS(5064), + [sym__double_quote_open] = ACTIONS(5064), + [sym__superscript_open] = ACTIONS(5064), + [sym__subscript_open] = ACTIONS(5064), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5064), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5064), + [sym__cite_author_in_text] = ACTIONS(5064), + [sym__cite_suppress_author] = ACTIONS(5064), + [sym__shortcode_open_escaped] = ACTIONS(5064), + [sym__shortcode_open] = ACTIONS(5064), + [sym__unclosed_span] = ACTIONS(5064), + }, + [STATE(1357)] = { + [sym__backslash_escape] = ACTIONS(4534), + [sym_entity_reference] = ACTIONS(4534), + [sym_numeric_character_reference] = ACTIONS(4534), + [anon_sym_LT] = ACTIONS(4536), + [anon_sym_GT] = ACTIONS(4534), + [anon_sym_BANG] = ACTIONS(4534), + [anon_sym_DQUOTE] = ACTIONS(4534), + [anon_sym_POUND] = ACTIONS(4534), + [anon_sym_DOLLAR] = ACTIONS(4534), + [anon_sym_PERCENT] = ACTIONS(4534), + [anon_sym_AMP] = ACTIONS(4536), + [anon_sym_SQUOTE] = ACTIONS(4534), + [anon_sym_STAR] = ACTIONS(4534), + [anon_sym_PLUS] = ACTIONS(4534), + [anon_sym_COMMA] = ACTIONS(4534), + [anon_sym_DASH] = ACTIONS(4536), + [anon_sym_DOT] = ACTIONS(4536), + [anon_sym_SLASH] = ACTIONS(4534), + [anon_sym_COLON] = ACTIONS(4534), + [anon_sym_SEMI] = ACTIONS(4534), + [anon_sym_EQ] = ACTIONS(4534), + [anon_sym_QMARK] = ACTIONS(4534), + [anon_sym_LBRACK] = ACTIONS(4536), + [anon_sym_BSLASH] = ACTIONS(4536), + [anon_sym_CARET] = ACTIONS(4536), + [anon_sym__] = ACTIONS(4534), + [anon_sym_BQUOTE] = ACTIONS(4534), + [anon_sym_LBRACE] = ACTIONS(4534), + [anon_sym_PIPE] = ACTIONS(4534), + [anon_sym_TILDE] = ACTIONS(4534), + [anon_sym_LPAREN] = ACTIONS(4534), + [anon_sym_RPAREN] = ACTIONS(4534), + [sym__newline_token] = ACTIONS(4534), + [aux_sym_insert_token1] = ACTIONS(4534), + [aux_sym_delete_token1] = ACTIONS(4534), + [aux_sym_highlight_token1] = ACTIONS(4534), + [aux_sym_edit_comment_token1] = ACTIONS(4534), + [anon_sym_CARET_LBRACK] = ACTIONS(4534), + [anon_sym_LBRACK_CARET] = ACTIONS(4534), + [sym_uri_autolink] = ACTIONS(4534), + [sym_email_autolink] = ACTIONS(4534), + [sym__whitespace_ge_2] = ACTIONS(4534), + [aux_sym__whitespace_token1] = ACTIONS(4536), + [sym__word_no_digit] = ACTIONS(4534), + [sym__digits] = ACTIONS(4534), + [anon_sym_DASH_DASH] = ACTIONS(4536), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4534), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4534), + [sym__code_span_start] = ACTIONS(4534), + [sym__emphasis_open_star] = ACTIONS(4534), + [sym__emphasis_open_underscore] = ACTIONS(4534), + [sym__emphasis_close_star] = ACTIONS(4534), + [sym__strikeout_open] = ACTIONS(4534), + [sym__latex_span_start] = ACTIONS(4534), + [sym__single_quote_open] = ACTIONS(4534), + [sym__double_quote_open] = ACTIONS(4534), + [sym__superscript_open] = ACTIONS(4534), + [sym__subscript_open] = ACTIONS(4534), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4534), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4534), + [sym__cite_author_in_text] = ACTIONS(4534), + [sym__cite_suppress_author] = ACTIONS(4534), + [sym__shortcode_open_escaped] = ACTIONS(4534), + [sym__shortcode_open] = ACTIONS(4534), + [sym__unclosed_span] = ACTIONS(4534), + }, + [STATE(1358)] = { + [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__] = ACTIONS(5071), + [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(5123), + [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), + }, + [STATE(1359)] = { + [sym__backslash_escape] = ACTIONS(4596), + [sym_entity_reference] = ACTIONS(4596), + [sym_numeric_character_reference] = ACTIONS(4596), + [anon_sym_LT] = ACTIONS(4598), + [anon_sym_GT] = ACTIONS(4596), + [anon_sym_BANG] = ACTIONS(4596), + [anon_sym_DQUOTE] = ACTIONS(4596), + [anon_sym_POUND] = ACTIONS(4596), + [anon_sym_DOLLAR] = ACTIONS(4596), + [anon_sym_PERCENT] = ACTIONS(4596), + [anon_sym_AMP] = ACTIONS(4598), + [anon_sym_SQUOTE] = ACTIONS(4596), + [anon_sym_STAR] = ACTIONS(4596), + [anon_sym_PLUS] = ACTIONS(4596), + [anon_sym_COMMA] = ACTIONS(4596), + [anon_sym_DASH] = ACTIONS(4598), + [anon_sym_DOT] = ACTIONS(4598), + [anon_sym_SLASH] = ACTIONS(4596), + [anon_sym_COLON] = ACTIONS(4596), + [anon_sym_SEMI] = ACTIONS(4596), + [anon_sym_EQ] = ACTIONS(4596), + [anon_sym_QMARK] = ACTIONS(4596), + [anon_sym_LBRACK] = ACTIONS(4598), + [anon_sym_BSLASH] = ACTIONS(4598), + [anon_sym_CARET] = ACTIONS(4598), + [anon_sym__] = ACTIONS(4596), + [anon_sym_BQUOTE] = ACTIONS(4596), + [anon_sym_LBRACE] = ACTIONS(4596), + [anon_sym_PIPE] = ACTIONS(4596), + [anon_sym_TILDE] = ACTIONS(4596), + [anon_sym_LPAREN] = ACTIONS(4596), + [anon_sym_RPAREN] = ACTIONS(4596), + [sym__newline_token] = ACTIONS(4596), + [aux_sym_insert_token1] = ACTIONS(4596), + [aux_sym_delete_token1] = ACTIONS(4596), + [aux_sym_highlight_token1] = ACTIONS(4596), + [aux_sym_edit_comment_token1] = ACTIONS(4596), + [anon_sym_CARET_LBRACK] = ACTIONS(4596), + [anon_sym_LBRACK_CARET] = ACTIONS(4596), + [sym_uri_autolink] = ACTIONS(4596), + [sym_email_autolink] = ACTIONS(4596), + [sym__whitespace_ge_2] = ACTIONS(4596), + [aux_sym__whitespace_token1] = ACTIONS(4598), + [sym__word_no_digit] = ACTIONS(4596), + [sym__digits] = ACTIONS(4596), + [anon_sym_DASH_DASH] = ACTIONS(4598), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4596), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4596), + [sym__code_span_start] = ACTIONS(4596), + [sym__emphasis_open_star] = ACTIONS(4596), + [sym__emphasis_open_underscore] = ACTIONS(4596), + [sym__strikeout_open] = ACTIONS(4596), + [sym__latex_span_start] = ACTIONS(4596), + [sym__single_quote_open] = ACTIONS(4596), + [sym__double_quote_open] = ACTIONS(4596), + [sym__double_quote_close] = ACTIONS(4596), + [sym__superscript_open] = ACTIONS(4596), + [sym__subscript_open] = ACTIONS(4596), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4596), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4596), + [sym__cite_author_in_text] = ACTIONS(4596), + [sym__cite_suppress_author] = ACTIONS(4596), + [sym__shortcode_open_escaped] = ACTIONS(4596), + [sym__shortcode_open] = ACTIONS(4596), + [sym__unclosed_span] = ACTIONS(4596), + }, + [STATE(1360)] = { + [sym__backslash_escape] = ACTIONS(4546), + [sym_entity_reference] = ACTIONS(4546), + [sym_numeric_character_reference] = ACTIONS(4546), + [anon_sym_LT] = ACTIONS(4548), + [anon_sym_GT] = ACTIONS(4546), + [anon_sym_BANG] = ACTIONS(4546), + [anon_sym_DQUOTE] = ACTIONS(4546), + [anon_sym_POUND] = ACTIONS(4546), + [anon_sym_DOLLAR] = ACTIONS(4546), + [anon_sym_PERCENT] = ACTIONS(4546), + [anon_sym_AMP] = ACTIONS(4548), + [anon_sym_SQUOTE] = ACTIONS(4546), + [anon_sym_STAR] = ACTIONS(4546), + [anon_sym_PLUS] = ACTIONS(4546), + [anon_sym_COMMA] = ACTIONS(4546), + [anon_sym_DASH] = ACTIONS(4548), + [anon_sym_DOT] = ACTIONS(4548), + [anon_sym_SLASH] = ACTIONS(4546), + [anon_sym_COLON] = ACTIONS(4546), + [anon_sym_SEMI] = ACTIONS(4546), + [anon_sym_EQ] = ACTIONS(4546), + [anon_sym_QMARK] = ACTIONS(4546), + [anon_sym_LBRACK] = ACTIONS(4548), + [anon_sym_BSLASH] = ACTIONS(4548), + [anon_sym_CARET] = ACTIONS(4548), + [anon_sym__] = ACTIONS(4546), + [anon_sym_BQUOTE] = ACTIONS(4546), + [anon_sym_LBRACE] = ACTIONS(4546), + [anon_sym_PIPE] = ACTIONS(4546), + [anon_sym_TILDE] = ACTIONS(4546), + [anon_sym_LPAREN] = ACTIONS(4546), + [anon_sym_RPAREN] = ACTIONS(4546), + [sym__newline_token] = ACTIONS(4546), + [aux_sym_insert_token1] = ACTIONS(4546), + [aux_sym_delete_token1] = ACTIONS(4546), + [aux_sym_highlight_token1] = ACTIONS(4546), + [aux_sym_edit_comment_token1] = ACTIONS(4546), + [anon_sym_CARET_LBRACK] = ACTIONS(4546), + [anon_sym_LBRACK_CARET] = ACTIONS(4546), + [sym_uri_autolink] = ACTIONS(4546), + [sym_email_autolink] = ACTIONS(4546), + [sym__whitespace_ge_2] = ACTIONS(4546), + [aux_sym__whitespace_token1] = ACTIONS(4548), + [sym__word_no_digit] = ACTIONS(4546), + [sym__digits] = ACTIONS(4546), + [anon_sym_DASH_DASH] = ACTIONS(4548), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4546), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4546), + [sym__code_span_start] = ACTIONS(4546), + [sym__emphasis_open_star] = ACTIONS(4546), + [sym__emphasis_open_underscore] = ACTIONS(4546), + [sym__emphasis_close_star] = ACTIONS(4546), + [sym__strikeout_open] = ACTIONS(4546), + [sym__latex_span_start] = ACTIONS(4546), + [sym__single_quote_open] = ACTIONS(4546), + [sym__double_quote_open] = ACTIONS(4546), + [sym__superscript_open] = ACTIONS(4546), + [sym__subscript_open] = ACTIONS(4546), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4546), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4546), + [sym__cite_author_in_text] = ACTIONS(4546), + [sym__cite_suppress_author] = ACTIONS(4546), + [sym__shortcode_open_escaped] = ACTIONS(4546), + [sym__shortcode_open] = ACTIONS(4546), + [sym__unclosed_span] = ACTIONS(4546), + }, + [STATE(1361)] = { + [sym__backslash_escape] = ACTIONS(4844), + [sym_entity_reference] = ACTIONS(4844), + [sym_numeric_character_reference] = ACTIONS(4844), + [anon_sym_LT] = ACTIONS(4846), + [anon_sym_GT] = ACTIONS(4844), + [anon_sym_BANG] = ACTIONS(4844), + [anon_sym_DQUOTE] = ACTIONS(4844), + [anon_sym_POUND] = ACTIONS(4844), + [anon_sym_DOLLAR] = ACTIONS(4844), + [anon_sym_PERCENT] = ACTIONS(4844), + [anon_sym_AMP] = ACTIONS(4846), + [anon_sym_SQUOTE] = ACTIONS(4844), + [anon_sym_STAR] = ACTIONS(4844), + [anon_sym_PLUS] = ACTIONS(4844), + [anon_sym_COMMA] = ACTIONS(4844), + [anon_sym_DASH] = ACTIONS(4846), + [anon_sym_DOT] = ACTIONS(4846), + [anon_sym_SLASH] = ACTIONS(4844), + [anon_sym_COLON] = ACTIONS(4844), + [anon_sym_SEMI] = ACTIONS(4844), + [anon_sym_EQ] = ACTIONS(4844), + [anon_sym_QMARK] = ACTIONS(4844), + [anon_sym_LBRACK] = ACTIONS(4846), + [anon_sym_BSLASH] = ACTIONS(4846), + [anon_sym_CARET] = ACTIONS(4846), + [anon_sym__] = ACTIONS(4844), + [anon_sym_BQUOTE] = ACTIONS(4844), + [anon_sym_LBRACE] = ACTIONS(4844), + [anon_sym_PIPE] = ACTIONS(4844), + [anon_sym_TILDE] = ACTIONS(4844), + [anon_sym_LPAREN] = ACTIONS(4844), + [anon_sym_RPAREN] = ACTIONS(4844), + [sym__newline_token] = ACTIONS(4844), + [aux_sym_insert_token1] = ACTIONS(4844), + [aux_sym_delete_token1] = ACTIONS(4844), + [aux_sym_highlight_token1] = ACTIONS(4844), + [aux_sym_edit_comment_token1] = ACTIONS(4844), + [anon_sym_CARET_LBRACK] = ACTIONS(4844), + [anon_sym_LBRACK_CARET] = ACTIONS(4844), + [sym_uri_autolink] = ACTIONS(4844), + [sym_email_autolink] = ACTIONS(4844), + [sym__whitespace_ge_2] = ACTIONS(4844), + [aux_sym__whitespace_token1] = ACTIONS(4846), + [sym__word_no_digit] = ACTIONS(4844), + [sym__digits] = ACTIONS(4844), + [anon_sym_DASH_DASH] = ACTIONS(4846), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4844), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4844), + [sym__code_span_start] = ACTIONS(4844), + [sym__emphasis_open_star] = ACTIONS(4844), + [sym__emphasis_open_underscore] = ACTIONS(4844), + [sym__emphasis_close_underscore] = ACTIONS(4844), + [sym__strikeout_open] = ACTIONS(4844), + [sym__latex_span_start] = ACTIONS(4844), + [sym__single_quote_open] = ACTIONS(4844), + [sym__double_quote_open] = ACTIONS(4844), + [sym__superscript_open] = ACTIONS(4844), + [sym__subscript_open] = ACTIONS(4844), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4844), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4844), + [sym__cite_author_in_text] = ACTIONS(4844), + [sym__cite_suppress_author] = ACTIONS(4844), + [sym__shortcode_open_escaped] = ACTIONS(4844), + [sym__shortcode_open] = ACTIONS(4844), + [sym__unclosed_span] = ACTIONS(4844), + }, + [STATE(1362)] = { + [sym__backslash_escape] = ACTIONS(4904), + [sym_entity_reference] = ACTIONS(4904), + [sym_numeric_character_reference] = ACTIONS(4904), + [anon_sym_LT] = ACTIONS(4906), + [anon_sym_GT] = ACTIONS(4904), + [anon_sym_BANG] = ACTIONS(4904), + [anon_sym_DQUOTE] = ACTIONS(4904), + [anon_sym_POUND] = ACTIONS(4904), + [anon_sym_DOLLAR] = ACTIONS(4904), + [anon_sym_PERCENT] = ACTIONS(4904), + [anon_sym_AMP] = ACTIONS(4906), + [anon_sym_SQUOTE] = ACTIONS(4904), + [anon_sym_STAR] = ACTIONS(4904), + [anon_sym_PLUS] = ACTIONS(4904), + [anon_sym_COMMA] = ACTIONS(4904), + [anon_sym_DASH] = ACTIONS(4906), + [anon_sym_DOT] = ACTIONS(4906), + [anon_sym_SLASH] = ACTIONS(4904), + [anon_sym_COLON] = ACTIONS(4904), + [anon_sym_SEMI] = ACTIONS(4904), + [anon_sym_EQ] = ACTIONS(4904), + [anon_sym_QMARK] = ACTIONS(4904), + [anon_sym_LBRACK] = ACTIONS(4906), + [anon_sym_BSLASH] = ACTIONS(4906), + [anon_sym_CARET] = ACTIONS(4906), + [anon_sym__] = ACTIONS(4904), + [anon_sym_BQUOTE] = ACTIONS(4904), + [anon_sym_LBRACE] = ACTIONS(4904), + [anon_sym_PIPE] = ACTIONS(4904), + [anon_sym_TILDE] = ACTIONS(4904), + [anon_sym_LPAREN] = ACTIONS(4904), + [anon_sym_RPAREN] = ACTIONS(4904), + [sym__newline_token] = ACTIONS(4904), + [aux_sym_insert_token1] = ACTIONS(4904), + [aux_sym_delete_token1] = ACTIONS(4904), + [aux_sym_highlight_token1] = ACTIONS(4904), + [aux_sym_edit_comment_token1] = ACTIONS(4904), + [anon_sym_CARET_LBRACK] = ACTIONS(4904), + [anon_sym_LBRACK_CARET] = ACTIONS(4904), + [sym_uri_autolink] = ACTIONS(4904), + [sym_email_autolink] = ACTIONS(4904), + [sym__whitespace_ge_2] = ACTIONS(4904), + [aux_sym__whitespace_token1] = ACTIONS(4906), + [sym__word_no_digit] = ACTIONS(4904), + [sym__digits] = ACTIONS(4904), + [anon_sym_DASH_DASH] = ACTIONS(4906), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4904), + [sym__code_span_start] = ACTIONS(4904), + [sym__emphasis_open_star] = ACTIONS(4904), + [sym__emphasis_open_underscore] = ACTIONS(4904), + [sym__emphasis_close_star] = ACTIONS(4904), + [sym__strikeout_open] = ACTIONS(4904), + [sym__latex_span_start] = ACTIONS(4904), + [sym__single_quote_open] = ACTIONS(4904), + [sym__double_quote_open] = ACTIONS(4904), + [sym__superscript_open] = ACTIONS(4904), + [sym__subscript_open] = ACTIONS(4904), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4904), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4904), + [sym__cite_author_in_text] = ACTIONS(4904), + [sym__cite_suppress_author] = ACTIONS(4904), + [sym__shortcode_open_escaped] = ACTIONS(4904), + [sym__shortcode_open] = ACTIONS(4904), + [sym__unclosed_span] = ACTIONS(4904), + }, + [STATE(1363)] = { + [sym__backslash_escape] = ACTIONS(4908), + [sym_entity_reference] = ACTIONS(4908), + [sym_numeric_character_reference] = ACTIONS(4908), + [anon_sym_LT] = ACTIONS(4910), + [anon_sym_GT] = ACTIONS(4908), + [anon_sym_BANG] = ACTIONS(4908), + [anon_sym_DQUOTE] = ACTIONS(4908), + [anon_sym_POUND] = ACTIONS(4908), + [anon_sym_DOLLAR] = ACTIONS(4908), + [anon_sym_PERCENT] = ACTIONS(4908), + [anon_sym_AMP] = ACTIONS(4910), + [anon_sym_SQUOTE] = ACTIONS(4908), + [anon_sym_STAR] = ACTIONS(4908), + [anon_sym_PLUS] = ACTIONS(4908), + [anon_sym_COMMA] = ACTIONS(4908), + [anon_sym_DASH] = ACTIONS(4910), + [anon_sym_DOT] = ACTIONS(4910), + [anon_sym_SLASH] = ACTIONS(4908), + [anon_sym_COLON] = ACTIONS(4908), + [anon_sym_SEMI] = ACTIONS(4908), + [anon_sym_EQ] = ACTIONS(4908), + [anon_sym_QMARK] = ACTIONS(4908), + [anon_sym_LBRACK] = ACTIONS(4910), + [anon_sym_BSLASH] = ACTIONS(4910), + [anon_sym_CARET] = ACTIONS(4910), + [anon_sym__] = ACTIONS(4908), + [anon_sym_BQUOTE] = ACTIONS(4908), + [anon_sym_LBRACE] = ACTIONS(4908), + [anon_sym_PIPE] = ACTIONS(4908), + [anon_sym_TILDE] = ACTIONS(4908), + [anon_sym_LPAREN] = ACTIONS(4908), + [anon_sym_RPAREN] = ACTIONS(4908), + [sym__newline_token] = ACTIONS(4908), + [aux_sym_insert_token1] = ACTIONS(4908), + [aux_sym_delete_token1] = ACTIONS(4908), + [aux_sym_highlight_token1] = ACTIONS(4908), + [aux_sym_edit_comment_token1] = ACTIONS(4908), + [anon_sym_CARET_LBRACK] = ACTIONS(4908), + [anon_sym_LBRACK_CARET] = ACTIONS(4908), + [sym_uri_autolink] = ACTIONS(4908), + [sym_email_autolink] = ACTIONS(4908), + [sym__whitespace_ge_2] = ACTIONS(4908), + [aux_sym__whitespace_token1] = ACTIONS(4910), + [sym__word_no_digit] = ACTIONS(4908), + [sym__digits] = ACTIONS(4908), + [anon_sym_DASH_DASH] = ACTIONS(4910), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4908), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4908), + [sym__code_span_start] = ACTIONS(4908), + [sym__emphasis_open_star] = ACTIONS(4908), + [sym__emphasis_open_underscore] = ACTIONS(4908), + [sym__emphasis_close_star] = ACTIONS(4908), + [sym__strikeout_open] = ACTIONS(4908), + [sym__latex_span_start] = ACTIONS(4908), + [sym__single_quote_open] = ACTIONS(4908), + [sym__double_quote_open] = ACTIONS(4908), + [sym__superscript_open] = ACTIONS(4908), + [sym__subscript_open] = ACTIONS(4908), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4908), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4908), + [sym__cite_author_in_text] = ACTIONS(4908), + [sym__cite_suppress_author] = ACTIONS(4908), + [sym__shortcode_open_escaped] = ACTIONS(4908), + [sym__shortcode_open] = ACTIONS(4908), + [sym__unclosed_span] = ACTIONS(4908), + }, + [STATE(1364)] = { + [sym__backslash_escape] = ACTIONS(4900), + [sym_entity_reference] = ACTIONS(4900), + [sym_numeric_character_reference] = ACTIONS(4900), + [anon_sym_LT] = ACTIONS(4902), + [anon_sym_GT] = ACTIONS(4900), + [anon_sym_BANG] = ACTIONS(4900), + [anon_sym_DQUOTE] = ACTIONS(4900), + [anon_sym_POUND] = ACTIONS(4900), + [anon_sym_DOLLAR] = ACTIONS(4900), + [anon_sym_PERCENT] = ACTIONS(4900), + [anon_sym_AMP] = ACTIONS(4902), + [anon_sym_SQUOTE] = ACTIONS(4900), + [anon_sym_STAR] = ACTIONS(4900), + [anon_sym_PLUS] = ACTIONS(4900), + [anon_sym_COMMA] = ACTIONS(4900), + [anon_sym_DASH] = ACTIONS(4902), + [anon_sym_DOT] = ACTIONS(4902), + [anon_sym_SLASH] = ACTIONS(4900), + [anon_sym_COLON] = ACTIONS(4900), + [anon_sym_SEMI] = ACTIONS(4900), + [anon_sym_EQ] = ACTIONS(4900), + [anon_sym_QMARK] = ACTIONS(4900), + [anon_sym_LBRACK] = ACTIONS(4902), + [anon_sym_BSLASH] = ACTIONS(4902), + [anon_sym_CARET] = ACTIONS(4902), + [anon_sym__] = ACTIONS(4900), + [anon_sym_BQUOTE] = ACTIONS(4900), + [anon_sym_LBRACE] = ACTIONS(4900), + [anon_sym_PIPE] = ACTIONS(4900), + [anon_sym_TILDE] = ACTIONS(4900), + [anon_sym_LPAREN] = ACTIONS(4900), + [anon_sym_RPAREN] = ACTIONS(4900), + [sym__newline_token] = ACTIONS(4900), + [aux_sym_insert_token1] = ACTIONS(4900), + [aux_sym_delete_token1] = ACTIONS(4900), + [aux_sym_highlight_token1] = ACTIONS(4900), + [aux_sym_edit_comment_token1] = ACTIONS(4900), + [anon_sym_CARET_LBRACK] = ACTIONS(4900), + [anon_sym_LBRACK_CARET] = ACTIONS(4900), + [sym_uri_autolink] = ACTIONS(4900), + [sym_email_autolink] = ACTIONS(4900), + [sym__whitespace_ge_2] = ACTIONS(4900), + [aux_sym__whitespace_token1] = ACTIONS(4902), + [sym__word_no_digit] = ACTIONS(4900), + [sym__digits] = ACTIONS(4900), + [anon_sym_DASH_DASH] = ACTIONS(4902), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4900), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4900), + [sym__code_span_start] = ACTIONS(4900), + [sym__emphasis_open_star] = ACTIONS(4900), + [sym__emphasis_open_underscore] = ACTIONS(4900), + [sym__strikeout_open] = ACTIONS(4900), + [sym__latex_span_start] = ACTIONS(4900), + [sym__single_quote_open] = ACTIONS(4900), + [sym__double_quote_open] = ACTIONS(4900), + [sym__double_quote_close] = ACTIONS(4900), + [sym__superscript_open] = ACTIONS(4900), + [sym__subscript_open] = ACTIONS(4900), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4900), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4900), + [sym__cite_author_in_text] = ACTIONS(4900), + [sym__cite_suppress_author] = ACTIONS(4900), + [sym__shortcode_open_escaped] = ACTIONS(4900), + [sym__shortcode_open] = ACTIONS(4900), + [sym__unclosed_span] = ACTIONS(4900), + }, + [STATE(1365)] = { + [sym__backslash_escape] = ACTIONS(4550), + [sym_entity_reference] = ACTIONS(4550), + [sym_numeric_character_reference] = ACTIONS(4550), + [anon_sym_LT] = ACTIONS(4552), + [anon_sym_GT] = ACTIONS(4550), + [anon_sym_BANG] = ACTIONS(4550), + [anon_sym_DQUOTE] = ACTIONS(4550), + [anon_sym_POUND] = ACTIONS(4550), + [anon_sym_DOLLAR] = ACTIONS(4550), + [anon_sym_PERCENT] = ACTIONS(4550), + [anon_sym_AMP] = ACTIONS(4552), + [anon_sym_SQUOTE] = ACTIONS(4550), + [anon_sym_STAR] = ACTIONS(4550), + [anon_sym_PLUS] = ACTIONS(4550), + [anon_sym_COMMA] = ACTIONS(4550), + [anon_sym_DASH] = ACTIONS(4552), + [anon_sym_DOT] = ACTIONS(4552), + [anon_sym_SLASH] = ACTIONS(4550), + [anon_sym_COLON] = ACTIONS(4550), + [anon_sym_SEMI] = ACTIONS(4550), + [anon_sym_EQ] = ACTIONS(4550), + [anon_sym_QMARK] = ACTIONS(4550), + [anon_sym_LBRACK] = ACTIONS(4552), + [anon_sym_BSLASH] = ACTIONS(4552), + [anon_sym_CARET] = ACTIONS(4552), + [anon_sym__] = ACTIONS(4550), + [anon_sym_BQUOTE] = ACTIONS(4550), + [anon_sym_LBRACE] = ACTIONS(4550), + [anon_sym_PIPE] = ACTIONS(4550), + [anon_sym_TILDE] = ACTIONS(4550), + [anon_sym_LPAREN] = ACTIONS(4550), + [anon_sym_RPAREN] = ACTIONS(4550), + [sym__newline_token] = ACTIONS(4550), + [aux_sym_insert_token1] = ACTIONS(4550), + [aux_sym_delete_token1] = ACTIONS(4550), + [aux_sym_highlight_token1] = ACTIONS(4550), + [aux_sym_edit_comment_token1] = ACTIONS(4550), + [anon_sym_CARET_LBRACK] = ACTIONS(4550), + [anon_sym_LBRACK_CARET] = ACTIONS(4550), + [sym_uri_autolink] = ACTIONS(4550), + [sym_email_autolink] = ACTIONS(4550), + [sym__whitespace_ge_2] = ACTIONS(4550), + [aux_sym__whitespace_token1] = ACTIONS(4552), + [sym__word_no_digit] = ACTIONS(4550), + [sym__digits] = ACTIONS(4550), + [anon_sym_DASH_DASH] = ACTIONS(4552), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4550), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4550), + [sym__code_span_start] = ACTIONS(4550), + [sym__emphasis_open_star] = ACTIONS(4550), + [sym__emphasis_open_underscore] = ACTIONS(4550), + [sym__emphasis_close_star] = ACTIONS(4550), + [sym__strikeout_open] = ACTIONS(4550), + [sym__latex_span_start] = ACTIONS(4550), + [sym__single_quote_open] = ACTIONS(4550), + [sym__double_quote_open] = ACTIONS(4550), + [sym__superscript_open] = ACTIONS(4550), + [sym__subscript_open] = ACTIONS(4550), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4550), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4550), + [sym__cite_author_in_text] = ACTIONS(4550), + [sym__cite_suppress_author] = ACTIONS(4550), + [sym__shortcode_open_escaped] = ACTIONS(4550), + [sym__shortcode_open] = ACTIONS(4550), + [sym__unclosed_span] = ACTIONS(4550), + }, + [STATE(1366)] = { + [sym__backslash_escape] = ACTIONS(4936), + [sym_entity_reference] = ACTIONS(4936), + [sym_numeric_character_reference] = ACTIONS(4936), + [anon_sym_LT] = ACTIONS(4938), + [anon_sym_GT] = ACTIONS(4936), + [anon_sym_BANG] = ACTIONS(4936), + [anon_sym_DQUOTE] = ACTIONS(4936), + [anon_sym_POUND] = ACTIONS(4936), + [anon_sym_DOLLAR] = ACTIONS(4936), + [anon_sym_PERCENT] = ACTIONS(4936), + [anon_sym_AMP] = ACTIONS(4938), + [anon_sym_SQUOTE] = ACTIONS(4936), + [anon_sym_STAR] = ACTIONS(4936), + [anon_sym_PLUS] = ACTIONS(4936), + [anon_sym_COMMA] = ACTIONS(4936), + [anon_sym_DASH] = ACTIONS(4938), + [anon_sym_DOT] = ACTIONS(4938), + [anon_sym_SLASH] = ACTIONS(4936), + [anon_sym_COLON] = ACTIONS(4936), + [anon_sym_SEMI] = ACTIONS(4936), + [anon_sym_EQ] = ACTIONS(4936), + [anon_sym_QMARK] = ACTIONS(4936), + [anon_sym_LBRACK] = ACTIONS(4938), + [anon_sym_BSLASH] = ACTIONS(4938), + [anon_sym_CARET] = ACTIONS(4938), + [anon_sym__] = ACTIONS(4936), + [anon_sym_BQUOTE] = ACTIONS(4936), + [anon_sym_LBRACE] = ACTIONS(4936), + [anon_sym_PIPE] = ACTIONS(4936), + [anon_sym_TILDE] = ACTIONS(4936), + [anon_sym_LPAREN] = ACTIONS(4936), + [anon_sym_RPAREN] = ACTIONS(4936), + [sym__newline_token] = ACTIONS(4936), + [aux_sym_insert_token1] = ACTIONS(4936), + [aux_sym_delete_token1] = ACTIONS(4936), + [aux_sym_highlight_token1] = ACTIONS(4936), + [aux_sym_edit_comment_token1] = ACTIONS(4936), + [anon_sym_CARET_LBRACK] = ACTIONS(4936), + [anon_sym_LBRACK_CARET] = ACTIONS(4936), + [sym_uri_autolink] = ACTIONS(4936), + [sym_email_autolink] = ACTIONS(4936), + [sym__whitespace_ge_2] = ACTIONS(4936), + [aux_sym__whitespace_token1] = ACTIONS(4938), + [sym__word_no_digit] = ACTIONS(4936), + [sym__digits] = ACTIONS(4936), + [anon_sym_DASH_DASH] = ACTIONS(4938), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4936), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4936), + [sym__code_span_start] = ACTIONS(4936), + [sym__emphasis_open_star] = ACTIONS(4936), + [sym__emphasis_open_underscore] = ACTIONS(4936), + [sym__strikeout_open] = ACTIONS(4936), + [sym__strikeout_close] = ACTIONS(4936), + [sym__latex_span_start] = ACTIONS(4936), + [sym__single_quote_open] = ACTIONS(4936), + [sym__double_quote_open] = ACTIONS(4936), + [sym__superscript_open] = ACTIONS(4936), + [sym__subscript_open] = ACTIONS(4936), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4936), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4936), + [sym__cite_author_in_text] = ACTIONS(4936), + [sym__cite_suppress_author] = ACTIONS(4936), + [sym__shortcode_open_escaped] = ACTIONS(4936), + [sym__shortcode_open] = ACTIONS(4936), + [sym__unclosed_span] = ACTIONS(4936), + }, + [STATE(1367)] = { + [sym__backslash_escape] = ACTIONS(4554), + [sym_entity_reference] = ACTIONS(4554), + [sym_numeric_character_reference] = ACTIONS(4554), + [anon_sym_LT] = ACTIONS(4556), + [anon_sym_GT] = ACTIONS(4554), + [anon_sym_BANG] = ACTIONS(4554), + [anon_sym_DQUOTE] = ACTIONS(4554), + [anon_sym_POUND] = ACTIONS(4554), + [anon_sym_DOLLAR] = ACTIONS(4554), + [anon_sym_PERCENT] = ACTIONS(4554), + [anon_sym_AMP] = ACTIONS(4556), + [anon_sym_SQUOTE] = ACTIONS(4554), + [anon_sym_STAR] = ACTIONS(4554), + [anon_sym_PLUS] = ACTIONS(4554), + [anon_sym_COMMA] = ACTIONS(4554), + [anon_sym_DASH] = ACTIONS(4556), + [anon_sym_DOT] = ACTIONS(4556), + [anon_sym_SLASH] = ACTIONS(4554), + [anon_sym_COLON] = ACTIONS(4554), + [anon_sym_SEMI] = ACTIONS(4554), + [anon_sym_EQ] = ACTIONS(4554), + [anon_sym_QMARK] = ACTIONS(4554), + [anon_sym_LBRACK] = ACTIONS(4556), + [anon_sym_BSLASH] = ACTIONS(4556), + [anon_sym_CARET] = ACTIONS(4556), + [anon_sym__] = ACTIONS(4554), + [anon_sym_BQUOTE] = ACTIONS(4554), + [anon_sym_LBRACE] = ACTIONS(4554), + [anon_sym_PIPE] = ACTIONS(4554), + [anon_sym_TILDE] = ACTIONS(4554), + [anon_sym_LPAREN] = ACTIONS(4554), + [anon_sym_RPAREN] = ACTIONS(4554), + [sym__newline_token] = ACTIONS(4554), + [aux_sym_insert_token1] = ACTIONS(4554), + [aux_sym_delete_token1] = ACTIONS(4554), + [aux_sym_highlight_token1] = ACTIONS(4554), + [aux_sym_edit_comment_token1] = ACTIONS(4554), + [anon_sym_CARET_LBRACK] = ACTIONS(4554), + [anon_sym_LBRACK_CARET] = ACTIONS(4554), + [sym_uri_autolink] = ACTIONS(4554), + [sym_email_autolink] = ACTIONS(4554), + [sym__whitespace_ge_2] = ACTIONS(4554), + [aux_sym__whitespace_token1] = ACTIONS(4556), + [sym__word_no_digit] = ACTIONS(4554), + [sym__digits] = ACTIONS(4554), + [anon_sym_DASH_DASH] = ACTIONS(4556), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4554), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4554), + [sym__code_span_start] = ACTIONS(4554), + [sym__emphasis_open_star] = ACTIONS(4554), + [sym__emphasis_open_underscore] = ACTIONS(4554), + [sym__emphasis_close_star] = ACTIONS(4554), + [sym__strikeout_open] = ACTIONS(4554), + [sym__latex_span_start] = ACTIONS(4554), + [sym__single_quote_open] = ACTIONS(4554), + [sym__double_quote_open] = ACTIONS(4554), + [sym__superscript_open] = ACTIONS(4554), + [sym__subscript_open] = ACTIONS(4554), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4554), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4554), + [sym__cite_author_in_text] = ACTIONS(4554), + [sym__cite_suppress_author] = ACTIONS(4554), + [sym__shortcode_open_escaped] = ACTIONS(4554), + [sym__shortcode_open] = ACTIONS(4554), + [sym__unclosed_span] = ACTIONS(4554), + }, + [STATE(1368)] = { + [sym__backslash_escape] = ACTIONS(4912), + [sym_entity_reference] = ACTIONS(4912), + [sym_numeric_character_reference] = ACTIONS(4912), + [anon_sym_LT] = ACTIONS(4914), + [anon_sym_GT] = ACTIONS(4912), + [anon_sym_BANG] = ACTIONS(4912), + [anon_sym_DQUOTE] = ACTIONS(4912), + [anon_sym_POUND] = ACTIONS(4912), + [anon_sym_DOLLAR] = ACTIONS(4912), + [anon_sym_PERCENT] = ACTIONS(4912), + [anon_sym_AMP] = ACTIONS(4914), + [anon_sym_SQUOTE] = ACTIONS(4912), + [anon_sym_STAR] = ACTIONS(4912), + [anon_sym_PLUS] = ACTIONS(4912), + [anon_sym_COMMA] = ACTIONS(4912), + [anon_sym_DASH] = ACTIONS(4914), + [anon_sym_DOT] = ACTIONS(4914), + [anon_sym_SLASH] = ACTIONS(4912), + [anon_sym_COLON] = ACTIONS(4912), + [anon_sym_SEMI] = ACTIONS(4912), + [anon_sym_EQ] = ACTIONS(4912), + [anon_sym_QMARK] = ACTIONS(4912), + [anon_sym_LBRACK] = ACTIONS(4914), + [anon_sym_BSLASH] = ACTIONS(4914), + [anon_sym_CARET] = ACTIONS(4914), + [anon_sym__] = ACTIONS(4912), + [anon_sym_BQUOTE] = ACTIONS(4912), + [anon_sym_LBRACE] = ACTIONS(4912), + [anon_sym_PIPE] = ACTIONS(4912), + [anon_sym_TILDE] = ACTIONS(4912), + [anon_sym_LPAREN] = ACTIONS(4912), + [anon_sym_RPAREN] = ACTIONS(4912), + [sym__newline_token] = ACTIONS(4912), + [aux_sym_insert_token1] = ACTIONS(4912), + [aux_sym_delete_token1] = ACTIONS(4912), + [aux_sym_highlight_token1] = ACTIONS(4912), + [aux_sym_edit_comment_token1] = ACTIONS(4912), + [anon_sym_CARET_LBRACK] = ACTIONS(4912), + [anon_sym_LBRACK_CARET] = ACTIONS(4912), + [sym_uri_autolink] = ACTIONS(4912), + [sym_email_autolink] = ACTIONS(4912), + [sym__whitespace_ge_2] = ACTIONS(4912), + [aux_sym__whitespace_token1] = ACTIONS(4914), + [sym__word_no_digit] = ACTIONS(4912), + [sym__digits] = ACTIONS(4912), + [anon_sym_DASH_DASH] = ACTIONS(4914), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4912), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4912), + [sym__code_span_start] = ACTIONS(4912), + [sym__emphasis_open_star] = ACTIONS(4912), + [sym__emphasis_open_underscore] = ACTIONS(4912), + [sym__strikeout_open] = ACTIONS(4912), + [sym__latex_span_start] = ACTIONS(4912), + [sym__single_quote_open] = ACTIONS(4912), + [sym__double_quote_open] = ACTIONS(4912), + [sym__double_quote_close] = ACTIONS(4912), + [sym__superscript_open] = ACTIONS(4912), + [sym__subscript_open] = ACTIONS(4912), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4912), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4912), + [sym__cite_author_in_text] = ACTIONS(4912), + [sym__cite_suppress_author] = ACTIONS(4912), + [sym__shortcode_open_escaped] = ACTIONS(4912), + [sym__shortcode_open] = ACTIONS(4912), + [sym__unclosed_span] = ACTIONS(4912), + }, + [STATE(1369)] = { + [sym__backslash_escape] = ACTIONS(4558), + [sym_entity_reference] = ACTIONS(4558), + [sym_numeric_character_reference] = ACTIONS(4558), + [anon_sym_LT] = ACTIONS(4560), + [anon_sym_GT] = ACTIONS(4558), + [anon_sym_BANG] = ACTIONS(4558), + [anon_sym_DQUOTE] = ACTIONS(4558), + [anon_sym_POUND] = ACTIONS(4558), + [anon_sym_DOLLAR] = ACTIONS(4558), + [anon_sym_PERCENT] = ACTIONS(4558), + [anon_sym_AMP] = ACTIONS(4560), + [anon_sym_SQUOTE] = ACTIONS(4558), + [anon_sym_STAR] = ACTIONS(4558), + [anon_sym_PLUS] = ACTIONS(4558), + [anon_sym_COMMA] = ACTIONS(4558), + [anon_sym_DASH] = ACTIONS(4560), + [anon_sym_DOT] = ACTIONS(4560), + [anon_sym_SLASH] = ACTIONS(4558), + [anon_sym_COLON] = ACTIONS(4558), + [anon_sym_SEMI] = ACTIONS(4558), + [anon_sym_EQ] = ACTIONS(4558), + [anon_sym_QMARK] = ACTIONS(4558), + [anon_sym_LBRACK] = ACTIONS(4560), + [anon_sym_BSLASH] = ACTIONS(4560), + [anon_sym_CARET] = ACTIONS(4560), + [anon_sym__] = ACTIONS(4558), + [anon_sym_BQUOTE] = ACTIONS(4558), + [anon_sym_LBRACE] = ACTIONS(4558), + [anon_sym_PIPE] = ACTIONS(4558), + [anon_sym_TILDE] = ACTIONS(4558), + [anon_sym_LPAREN] = ACTIONS(4558), + [anon_sym_RPAREN] = ACTIONS(4558), + [sym__newline_token] = ACTIONS(4558), + [aux_sym_insert_token1] = ACTIONS(4558), + [aux_sym_delete_token1] = ACTIONS(4558), + [aux_sym_highlight_token1] = ACTIONS(4558), + [aux_sym_edit_comment_token1] = ACTIONS(4558), + [anon_sym_CARET_LBRACK] = ACTIONS(4558), + [anon_sym_LBRACK_CARET] = ACTIONS(4558), + [sym_uri_autolink] = ACTIONS(4558), + [sym_email_autolink] = ACTIONS(4558), + [sym__whitespace_ge_2] = ACTIONS(4558), + [aux_sym__whitespace_token1] = ACTIONS(4560), + [sym__word_no_digit] = ACTIONS(4558), + [sym__digits] = ACTIONS(4558), + [anon_sym_DASH_DASH] = ACTIONS(4560), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4558), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4558), + [sym__code_span_start] = ACTIONS(4558), + [sym__emphasis_open_star] = ACTIONS(4558), + [sym__emphasis_open_underscore] = ACTIONS(4558), + [sym__emphasis_close_star] = ACTIONS(4558), + [sym__strikeout_open] = ACTIONS(4558), + [sym__latex_span_start] = ACTIONS(4558), + [sym__single_quote_open] = ACTIONS(4558), + [sym__double_quote_open] = ACTIONS(4558), + [sym__superscript_open] = ACTIONS(4558), + [sym__subscript_open] = ACTIONS(4558), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4558), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4558), + [sym__cite_author_in_text] = ACTIONS(4558), + [sym__cite_suppress_author] = ACTIONS(4558), + [sym__shortcode_open_escaped] = ACTIONS(4558), + [sym__shortcode_open] = ACTIONS(4558), + [sym__unclosed_span] = ACTIONS(4558), + }, + [STATE(1370)] = { + [sym__backslash_escape] = ACTIONS(4916), + [sym_entity_reference] = ACTIONS(4916), + [sym_numeric_character_reference] = ACTIONS(4916), + [anon_sym_LT] = ACTIONS(4918), + [anon_sym_GT] = ACTIONS(4916), + [anon_sym_BANG] = ACTIONS(4916), + [anon_sym_DQUOTE] = ACTIONS(4916), + [anon_sym_POUND] = ACTIONS(4916), + [anon_sym_DOLLAR] = ACTIONS(4916), + [anon_sym_PERCENT] = ACTIONS(4916), + [anon_sym_AMP] = ACTIONS(4918), + [anon_sym_SQUOTE] = ACTIONS(4916), + [anon_sym_STAR] = ACTIONS(4916), + [anon_sym_PLUS] = ACTIONS(4916), + [anon_sym_COMMA] = ACTIONS(4916), + [anon_sym_DASH] = ACTIONS(4918), + [anon_sym_DOT] = ACTIONS(4918), + [anon_sym_SLASH] = ACTIONS(4916), + [anon_sym_COLON] = ACTIONS(4916), + [anon_sym_SEMI] = ACTIONS(4916), + [anon_sym_EQ] = ACTIONS(4916), + [anon_sym_QMARK] = ACTIONS(4916), + [anon_sym_LBRACK] = ACTIONS(4918), + [anon_sym_BSLASH] = ACTIONS(4918), + [anon_sym_CARET] = ACTIONS(4918), + [anon_sym__] = ACTIONS(4916), + [anon_sym_BQUOTE] = ACTIONS(4916), + [anon_sym_LBRACE] = ACTIONS(4916), + [anon_sym_PIPE] = ACTIONS(4916), + [anon_sym_TILDE] = ACTIONS(4916), + [anon_sym_LPAREN] = ACTIONS(4916), + [anon_sym_RPAREN] = ACTIONS(4916), + [sym__newline_token] = ACTIONS(4916), + [aux_sym_insert_token1] = ACTIONS(4916), + [aux_sym_delete_token1] = ACTIONS(4916), + [aux_sym_highlight_token1] = ACTIONS(4916), + [aux_sym_edit_comment_token1] = ACTIONS(4916), + [anon_sym_CARET_LBRACK] = ACTIONS(4916), + [anon_sym_LBRACK_CARET] = ACTIONS(4916), + [sym_uri_autolink] = ACTIONS(4916), + [sym_email_autolink] = ACTIONS(4916), + [sym__whitespace_ge_2] = ACTIONS(4916), + [aux_sym__whitespace_token1] = ACTIONS(4918), + [sym__word_no_digit] = ACTIONS(4916), + [sym__digits] = ACTIONS(4916), + [anon_sym_DASH_DASH] = ACTIONS(4918), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4916), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4916), + [sym__code_span_start] = ACTIONS(4916), + [sym__emphasis_open_star] = ACTIONS(4916), + [sym__emphasis_open_underscore] = ACTIONS(4916), + [sym__strikeout_open] = ACTIONS(4916), + [sym__latex_span_start] = ACTIONS(4916), + [sym__single_quote_open] = ACTIONS(4916), + [sym__double_quote_open] = ACTIONS(4916), + [sym__double_quote_close] = ACTIONS(4916), + [sym__superscript_open] = ACTIONS(4916), + [sym__subscript_open] = ACTIONS(4916), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4916), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4916), + [sym__cite_author_in_text] = ACTIONS(4916), + [sym__cite_suppress_author] = ACTIONS(4916), + [sym__shortcode_open_escaped] = ACTIONS(4916), + [sym__shortcode_open] = ACTIONS(4916), + [sym__unclosed_span] = ACTIONS(4916), + }, + [STATE(1371)] = { + [sym__backslash_escape] = ACTIONS(4562), + [sym_entity_reference] = ACTIONS(4562), + [sym_numeric_character_reference] = ACTIONS(4562), + [anon_sym_LT] = ACTIONS(4564), + [anon_sym_GT] = ACTIONS(4562), + [anon_sym_BANG] = ACTIONS(4562), + [anon_sym_DQUOTE] = ACTIONS(4562), + [anon_sym_POUND] = ACTIONS(4562), + [anon_sym_DOLLAR] = ACTIONS(4562), + [anon_sym_PERCENT] = ACTIONS(4562), + [anon_sym_AMP] = ACTIONS(4564), + [anon_sym_SQUOTE] = ACTIONS(4562), + [anon_sym_STAR] = ACTIONS(4562), + [anon_sym_PLUS] = ACTIONS(4562), + [anon_sym_COMMA] = ACTIONS(4562), + [anon_sym_DASH] = ACTIONS(4564), + [anon_sym_DOT] = ACTIONS(4564), + [anon_sym_SLASH] = ACTIONS(4562), + [anon_sym_COLON] = ACTIONS(4562), + [anon_sym_SEMI] = ACTIONS(4562), + [anon_sym_EQ] = ACTIONS(4562), + [anon_sym_QMARK] = ACTIONS(4562), + [anon_sym_LBRACK] = ACTIONS(4564), + [anon_sym_BSLASH] = ACTIONS(4564), + [anon_sym_CARET] = ACTIONS(4564), + [anon_sym__] = ACTIONS(4562), + [anon_sym_BQUOTE] = ACTIONS(4562), + [anon_sym_LBRACE] = ACTIONS(4562), + [anon_sym_PIPE] = ACTIONS(4562), + [anon_sym_TILDE] = ACTIONS(4562), + [anon_sym_LPAREN] = ACTIONS(4562), + [anon_sym_RPAREN] = ACTIONS(4562), + [sym__newline_token] = ACTIONS(4562), + [aux_sym_insert_token1] = ACTIONS(4562), + [aux_sym_delete_token1] = ACTIONS(4562), + [aux_sym_highlight_token1] = ACTIONS(4562), + [aux_sym_edit_comment_token1] = ACTIONS(4562), + [anon_sym_CARET_LBRACK] = ACTIONS(4562), + [anon_sym_LBRACK_CARET] = ACTIONS(4562), + [sym_uri_autolink] = ACTIONS(4562), + [sym_email_autolink] = ACTIONS(4562), + [sym__whitespace_ge_2] = ACTIONS(4562), + [aux_sym__whitespace_token1] = ACTIONS(4564), + [sym__word_no_digit] = ACTIONS(4562), + [sym__digits] = ACTIONS(4562), + [anon_sym_DASH_DASH] = ACTIONS(4564), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4562), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4562), + [sym__code_span_start] = ACTIONS(4562), + [sym__emphasis_open_star] = ACTIONS(4562), + [sym__emphasis_open_underscore] = ACTIONS(4562), + [sym__emphasis_close_star] = ACTIONS(4562), + [sym__strikeout_open] = ACTIONS(4562), + [sym__latex_span_start] = ACTIONS(4562), + [sym__single_quote_open] = ACTIONS(4562), + [sym__double_quote_open] = ACTIONS(4562), + [sym__superscript_open] = ACTIONS(4562), + [sym__subscript_open] = ACTIONS(4562), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4562), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4562), + [sym__cite_author_in_text] = ACTIONS(4562), + [sym__cite_suppress_author] = ACTIONS(4562), + [sym__shortcode_open_escaped] = ACTIONS(4562), + [sym__shortcode_open] = ACTIONS(4562), + [sym__unclosed_span] = ACTIONS(4562), + }, + [STATE(1372)] = { + [sym__backslash_escape] = ACTIONS(4920), + [sym_entity_reference] = ACTIONS(4920), + [sym_numeric_character_reference] = ACTIONS(4920), + [anon_sym_LT] = ACTIONS(4922), + [anon_sym_GT] = ACTIONS(4920), + [anon_sym_BANG] = ACTIONS(4920), + [anon_sym_DQUOTE] = ACTIONS(4920), + [anon_sym_POUND] = ACTIONS(4920), + [anon_sym_DOLLAR] = ACTIONS(4920), + [anon_sym_PERCENT] = ACTIONS(4920), + [anon_sym_AMP] = ACTIONS(4922), + [anon_sym_SQUOTE] = ACTIONS(4920), + [anon_sym_STAR] = ACTIONS(4920), + [anon_sym_PLUS] = ACTIONS(4920), + [anon_sym_COMMA] = ACTIONS(4920), + [anon_sym_DASH] = ACTIONS(4922), + [anon_sym_DOT] = ACTIONS(4922), + [anon_sym_SLASH] = ACTIONS(4920), + [anon_sym_COLON] = ACTIONS(4920), + [anon_sym_SEMI] = ACTIONS(4920), + [anon_sym_EQ] = ACTIONS(4920), + [anon_sym_QMARK] = ACTIONS(4920), + [anon_sym_LBRACK] = ACTIONS(4922), + [anon_sym_BSLASH] = ACTIONS(4922), + [anon_sym_CARET] = ACTIONS(4922), + [anon_sym__] = ACTIONS(4920), + [anon_sym_BQUOTE] = ACTIONS(4920), + [anon_sym_LBRACE] = ACTIONS(4920), + [anon_sym_PIPE] = ACTIONS(4920), + [anon_sym_TILDE] = ACTIONS(4920), + [anon_sym_LPAREN] = ACTIONS(4920), + [anon_sym_RPAREN] = ACTIONS(4920), + [sym__newline_token] = ACTIONS(4920), + [aux_sym_insert_token1] = ACTIONS(4920), + [aux_sym_delete_token1] = ACTIONS(4920), + [aux_sym_highlight_token1] = ACTIONS(4920), + [aux_sym_edit_comment_token1] = ACTIONS(4920), + [anon_sym_CARET_LBRACK] = ACTIONS(4920), + [anon_sym_LBRACK_CARET] = ACTIONS(4920), + [sym_uri_autolink] = ACTIONS(4920), + [sym_email_autolink] = ACTIONS(4920), + [sym__whitespace_ge_2] = ACTIONS(4920), + [aux_sym__whitespace_token1] = ACTIONS(4922), + [sym__word_no_digit] = ACTIONS(4920), + [sym__digits] = ACTIONS(4920), + [anon_sym_DASH_DASH] = ACTIONS(4922), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4920), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4920), + [sym__code_span_start] = ACTIONS(4920), + [sym__emphasis_open_star] = ACTIONS(4920), + [sym__emphasis_open_underscore] = ACTIONS(4920), + [sym__strikeout_open] = ACTIONS(4920), + [sym__latex_span_start] = ACTIONS(4920), + [sym__single_quote_open] = ACTIONS(4920), + [sym__double_quote_open] = ACTIONS(4920), + [sym__double_quote_close] = ACTIONS(4920), + [sym__superscript_open] = ACTIONS(4920), + [sym__subscript_open] = ACTIONS(4920), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4920), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4920), + [sym__cite_author_in_text] = ACTIONS(4920), + [sym__cite_suppress_author] = ACTIONS(4920), + [sym__shortcode_open_escaped] = ACTIONS(4920), + [sym__shortcode_open] = ACTIONS(4920), + [sym__unclosed_span] = ACTIONS(4920), + }, + [STATE(1373)] = { + [sym__backslash_escape] = ACTIONS(4924), + [sym_entity_reference] = ACTIONS(4924), + [sym_numeric_character_reference] = ACTIONS(4924), + [anon_sym_LT] = ACTIONS(4926), + [anon_sym_GT] = ACTIONS(4924), + [anon_sym_BANG] = ACTIONS(4924), + [anon_sym_DQUOTE] = ACTIONS(4924), + [anon_sym_POUND] = ACTIONS(4924), + [anon_sym_DOLLAR] = ACTIONS(4924), + [anon_sym_PERCENT] = ACTIONS(4924), + [anon_sym_AMP] = ACTIONS(4926), + [anon_sym_SQUOTE] = ACTIONS(4924), + [anon_sym_STAR] = ACTIONS(4924), + [anon_sym_PLUS] = ACTIONS(4924), + [anon_sym_COMMA] = ACTIONS(4924), + [anon_sym_DASH] = ACTIONS(4926), + [anon_sym_DOT] = ACTIONS(4926), + [anon_sym_SLASH] = ACTIONS(4924), + [anon_sym_COLON] = ACTIONS(4924), + [anon_sym_SEMI] = ACTIONS(4924), + [anon_sym_EQ] = ACTIONS(4924), + [anon_sym_QMARK] = ACTIONS(4924), + [anon_sym_LBRACK] = ACTIONS(4926), + [anon_sym_BSLASH] = ACTIONS(4926), + [anon_sym_CARET] = ACTIONS(4926), + [anon_sym__] = ACTIONS(4924), + [anon_sym_BQUOTE] = ACTIONS(4924), + [anon_sym_LBRACE] = ACTIONS(4924), + [anon_sym_PIPE] = ACTIONS(4924), + [anon_sym_TILDE] = ACTIONS(4924), + [anon_sym_LPAREN] = ACTIONS(4924), + [anon_sym_RPAREN] = ACTIONS(4924), + [sym__newline_token] = ACTIONS(4924), + [aux_sym_insert_token1] = ACTIONS(4924), + [aux_sym_delete_token1] = ACTIONS(4924), + [aux_sym_highlight_token1] = ACTIONS(4924), + [aux_sym_edit_comment_token1] = ACTIONS(4924), + [anon_sym_CARET_LBRACK] = ACTIONS(4924), + [anon_sym_LBRACK_CARET] = ACTIONS(4924), + [sym_uri_autolink] = ACTIONS(4924), + [sym_email_autolink] = ACTIONS(4924), + [sym__whitespace_ge_2] = ACTIONS(4924), + [aux_sym__whitespace_token1] = ACTIONS(4926), + [sym__word_no_digit] = ACTIONS(4924), + [sym__digits] = ACTIONS(4924), + [anon_sym_DASH_DASH] = ACTIONS(4926), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4924), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4924), + [sym__code_span_start] = ACTIONS(4924), + [sym__emphasis_open_star] = ACTIONS(4924), + [sym__emphasis_open_underscore] = ACTIONS(4924), + [sym__emphasis_close_star] = ACTIONS(4924), + [sym__strikeout_open] = ACTIONS(4924), + [sym__latex_span_start] = ACTIONS(4924), + [sym__single_quote_open] = ACTIONS(4924), + [sym__double_quote_open] = ACTIONS(4924), + [sym__superscript_open] = ACTIONS(4924), + [sym__subscript_open] = ACTIONS(4924), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4924), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4924), + [sym__cite_author_in_text] = ACTIONS(4924), + [sym__cite_suppress_author] = ACTIONS(4924), + [sym__shortcode_open_escaped] = ACTIONS(4924), + [sym__shortcode_open] = ACTIONS(4924), + [sym__unclosed_span] = ACTIONS(4924), + }, + [STATE(1374)] = { + [sym__backslash_escape] = ACTIONS(4928), + [sym_entity_reference] = ACTIONS(4928), + [sym_numeric_character_reference] = ACTIONS(4928), + [anon_sym_LT] = ACTIONS(4930), + [anon_sym_GT] = ACTIONS(4928), + [anon_sym_BANG] = ACTIONS(4928), + [anon_sym_DQUOTE] = ACTIONS(4928), + [anon_sym_POUND] = ACTIONS(4928), + [anon_sym_DOLLAR] = ACTIONS(4928), + [anon_sym_PERCENT] = ACTIONS(4928), + [anon_sym_AMP] = ACTIONS(4930), + [anon_sym_SQUOTE] = ACTIONS(4928), + [anon_sym_STAR] = ACTIONS(4928), + [anon_sym_PLUS] = ACTIONS(4928), + [anon_sym_COMMA] = ACTIONS(4928), + [anon_sym_DASH] = ACTIONS(4930), + [anon_sym_DOT] = ACTIONS(4930), + [anon_sym_SLASH] = ACTIONS(4928), + [anon_sym_COLON] = ACTIONS(4928), + [anon_sym_SEMI] = ACTIONS(4928), + [anon_sym_EQ] = ACTIONS(4928), + [anon_sym_QMARK] = ACTIONS(4928), + [anon_sym_LBRACK] = ACTIONS(4930), + [anon_sym_BSLASH] = ACTIONS(4930), + [anon_sym_CARET] = ACTIONS(4930), + [anon_sym__] = ACTIONS(4928), + [anon_sym_BQUOTE] = ACTIONS(4928), + [anon_sym_LBRACE] = ACTIONS(4928), + [anon_sym_PIPE] = ACTIONS(4928), + [anon_sym_TILDE] = ACTIONS(4928), + [anon_sym_LPAREN] = ACTIONS(4928), + [anon_sym_RPAREN] = ACTIONS(4928), + [sym__newline_token] = ACTIONS(4928), + [aux_sym_insert_token1] = ACTIONS(4928), + [aux_sym_delete_token1] = ACTIONS(4928), + [aux_sym_highlight_token1] = ACTIONS(4928), + [aux_sym_edit_comment_token1] = ACTIONS(4928), + [anon_sym_CARET_LBRACK] = ACTIONS(4928), + [anon_sym_LBRACK_CARET] = ACTIONS(4928), + [sym_uri_autolink] = ACTIONS(4928), + [sym_email_autolink] = ACTIONS(4928), + [sym__whitespace_ge_2] = ACTIONS(4928), + [aux_sym__whitespace_token1] = ACTIONS(4930), + [sym__word_no_digit] = ACTIONS(4928), + [sym__digits] = ACTIONS(4928), + [anon_sym_DASH_DASH] = ACTIONS(4930), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4928), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4928), + [sym__code_span_start] = ACTIONS(4928), + [sym__emphasis_open_star] = ACTIONS(4928), + [sym__emphasis_open_underscore] = ACTIONS(4928), + [sym__emphasis_close_star] = ACTIONS(4928), + [sym__strikeout_open] = ACTIONS(4928), + [sym__latex_span_start] = ACTIONS(4928), + [sym__single_quote_open] = ACTIONS(4928), + [sym__double_quote_open] = ACTIONS(4928), + [sym__superscript_open] = ACTIONS(4928), + [sym__subscript_open] = ACTIONS(4928), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4928), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4928), + [sym__cite_author_in_text] = ACTIONS(4928), + [sym__cite_suppress_author] = ACTIONS(4928), + [sym__shortcode_open_escaped] = ACTIONS(4928), + [sym__shortcode_open] = ACTIONS(4928), + [sym__unclosed_span] = ACTIONS(4928), + }, + [STATE(1375)] = { + [ts_builtin_sym_end] = ACTIONS(4980), + [sym__backslash_escape] = ACTIONS(4980), + [sym_entity_reference] = ACTIONS(4980), + [sym_numeric_character_reference] = ACTIONS(4980), + [anon_sym_LT] = ACTIONS(4982), + [anon_sym_GT] = ACTIONS(4980), + [anon_sym_BANG] = ACTIONS(4980), + [anon_sym_DQUOTE] = ACTIONS(4980), + [anon_sym_POUND] = ACTIONS(4980), + [anon_sym_DOLLAR] = ACTIONS(4980), + [anon_sym_PERCENT] = ACTIONS(4980), + [anon_sym_AMP] = ACTIONS(4982), + [anon_sym_SQUOTE] = ACTIONS(4980), + [anon_sym_STAR] = ACTIONS(4980), + [anon_sym_PLUS] = ACTIONS(4980), + [anon_sym_COMMA] = ACTIONS(4980), + [anon_sym_DASH] = ACTIONS(4982), + [anon_sym_DOT] = ACTIONS(4982), + [anon_sym_SLASH] = ACTIONS(4980), + [anon_sym_COLON] = ACTIONS(4980), + [anon_sym_SEMI] = ACTIONS(4980), + [anon_sym_EQ] = ACTIONS(4980), + [anon_sym_QMARK] = ACTIONS(4980), + [anon_sym_LBRACK] = ACTIONS(4982), + [anon_sym_BSLASH] = ACTIONS(4982), + [anon_sym_CARET] = ACTIONS(4982), + [anon_sym__] = ACTIONS(4980), + [anon_sym_BQUOTE] = ACTIONS(4980), + [anon_sym_LBRACE] = ACTIONS(4980), + [anon_sym_PIPE] = ACTIONS(4980), + [anon_sym_TILDE] = ACTIONS(4980), + [anon_sym_LPAREN] = ACTIONS(4980), + [anon_sym_RPAREN] = ACTIONS(4980), + [sym__newline_token] = ACTIONS(4980), + [aux_sym_insert_token1] = ACTIONS(4980), + [aux_sym_delete_token1] = ACTIONS(4980), + [aux_sym_highlight_token1] = ACTIONS(4980), + [aux_sym_edit_comment_token1] = ACTIONS(4980), + [anon_sym_CARET_LBRACK] = ACTIONS(4980), + [anon_sym_LBRACK_CARET] = ACTIONS(4980), + [sym_uri_autolink] = ACTIONS(4980), + [sym_email_autolink] = ACTIONS(4980), + [sym__whitespace_ge_2] = ACTIONS(4980), + [aux_sym__whitespace_token1] = ACTIONS(4982), + [sym__word_no_digit] = ACTIONS(4980), + [sym__digits] = ACTIONS(4980), + [anon_sym_DASH_DASH] = ACTIONS(4982), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4980), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4980), + [sym__code_span_start] = ACTIONS(4980), + [sym__emphasis_open_star] = ACTIONS(4980), + [sym__emphasis_open_underscore] = ACTIONS(4980), + [sym__strikeout_open] = ACTIONS(4980), + [sym__latex_span_start] = ACTIONS(4980), + [sym__single_quote_open] = ACTIONS(4980), + [sym__double_quote_open] = ACTIONS(4980), + [sym__superscript_open] = ACTIONS(4980), + [sym__subscript_open] = ACTIONS(4980), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4980), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4980), + [sym__cite_author_in_text] = ACTIONS(4980), + [sym__cite_suppress_author] = ACTIONS(4980), + [sym__shortcode_open_escaped] = ACTIONS(4980), + [sym__shortcode_open] = ACTIONS(4980), + [sym__unclosed_span] = ACTIONS(4980), + }, + [STATE(1376)] = { + [ts_builtin_sym_end] = ACTIONS(5008), + [sym__backslash_escape] = ACTIONS(5008), + [sym_entity_reference] = ACTIONS(5008), + [sym_numeric_character_reference] = ACTIONS(5008), + [anon_sym_LT] = ACTIONS(5010), + [anon_sym_GT] = ACTIONS(5008), + [anon_sym_BANG] = ACTIONS(5008), + [anon_sym_DQUOTE] = ACTIONS(5008), + [anon_sym_POUND] = ACTIONS(5008), + [anon_sym_DOLLAR] = ACTIONS(5008), + [anon_sym_PERCENT] = ACTIONS(5008), + [anon_sym_AMP] = ACTIONS(5010), + [anon_sym_SQUOTE] = ACTIONS(5008), + [anon_sym_STAR] = ACTIONS(5008), + [anon_sym_PLUS] = ACTIONS(5008), + [anon_sym_COMMA] = ACTIONS(5008), + [anon_sym_DASH] = ACTIONS(5010), + [anon_sym_DOT] = ACTIONS(5010), + [anon_sym_SLASH] = ACTIONS(5008), + [anon_sym_COLON] = ACTIONS(5008), + [anon_sym_SEMI] = ACTIONS(5008), + [anon_sym_EQ] = ACTIONS(5008), + [anon_sym_QMARK] = ACTIONS(5008), + [anon_sym_LBRACK] = ACTIONS(5010), + [anon_sym_BSLASH] = ACTIONS(5010), + [anon_sym_CARET] = ACTIONS(5010), + [anon_sym__] = ACTIONS(5008), + [anon_sym_BQUOTE] = ACTIONS(5008), + [anon_sym_LBRACE] = ACTIONS(5008), + [anon_sym_PIPE] = ACTIONS(5008), + [anon_sym_TILDE] = ACTIONS(5008), + [anon_sym_LPAREN] = ACTIONS(5008), + [anon_sym_RPAREN] = ACTIONS(5008), + [sym__newline_token] = ACTIONS(5008), + [aux_sym_insert_token1] = ACTIONS(5008), + [aux_sym_delete_token1] = ACTIONS(5008), + [aux_sym_highlight_token1] = ACTIONS(5008), + [aux_sym_edit_comment_token1] = ACTIONS(5008), + [anon_sym_CARET_LBRACK] = ACTIONS(5008), + [anon_sym_LBRACK_CARET] = ACTIONS(5008), + [sym_uri_autolink] = ACTIONS(5008), + [sym_email_autolink] = ACTIONS(5008), + [sym__whitespace_ge_2] = ACTIONS(5008), + [aux_sym__whitespace_token1] = ACTIONS(5010), + [sym__word_no_digit] = ACTIONS(5008), + [sym__digits] = ACTIONS(5008), + [anon_sym_DASH_DASH] = ACTIONS(5010), + [anon_sym_DASH_DASH_DASH] = ACTIONS(5008), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5008), + [sym__code_span_start] = ACTIONS(5008), + [sym__emphasis_open_star] = ACTIONS(5008), + [sym__emphasis_open_underscore] = ACTIONS(5008), + [sym__strikeout_open] = ACTIONS(5008), + [sym__latex_span_start] = ACTIONS(5008), + [sym__single_quote_open] = ACTIONS(5008), + [sym__double_quote_open] = ACTIONS(5008), + [sym__superscript_open] = ACTIONS(5008), + [sym__subscript_open] = ACTIONS(5008), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5008), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5008), + [sym__cite_author_in_text] = ACTIONS(5008), + [sym__cite_suppress_author] = ACTIONS(5008), + [sym__shortcode_open_escaped] = ACTIONS(5008), + [sym__shortcode_open] = ACTIONS(5008), + [sym__unclosed_span] = ACTIONS(5008), + }, + [STATE(1377)] = { + [sym__backslash_escape] = ACTIONS(4940), + [sym_entity_reference] = ACTIONS(4940), + [sym_numeric_character_reference] = ACTIONS(4940), + [anon_sym_LT] = ACTIONS(4942), + [anon_sym_GT] = ACTIONS(4940), + [anon_sym_BANG] = ACTIONS(4940), + [anon_sym_DQUOTE] = ACTIONS(4940), + [anon_sym_POUND] = ACTIONS(4940), + [anon_sym_DOLLAR] = ACTIONS(4940), + [anon_sym_PERCENT] = ACTIONS(4940), + [anon_sym_AMP] = ACTIONS(4942), + [anon_sym_SQUOTE] = ACTIONS(4940), + [anon_sym_STAR] = ACTIONS(4940), + [anon_sym_PLUS] = ACTIONS(4940), + [anon_sym_COMMA] = ACTIONS(4940), + [anon_sym_DASH] = ACTIONS(4942), + [anon_sym_DOT] = ACTIONS(4942), + [anon_sym_SLASH] = ACTIONS(4940), + [anon_sym_COLON] = ACTIONS(4940), + [anon_sym_SEMI] = ACTIONS(4940), + [anon_sym_EQ] = ACTIONS(4940), + [anon_sym_QMARK] = ACTIONS(4940), + [anon_sym_LBRACK] = ACTIONS(4942), + [anon_sym_BSLASH] = ACTIONS(4942), + [anon_sym_CARET] = ACTIONS(4942), + [anon_sym__] = ACTIONS(4940), + [anon_sym_BQUOTE] = ACTIONS(4940), + [anon_sym_LBRACE] = ACTIONS(4940), + [anon_sym_PIPE] = ACTIONS(4940), + [anon_sym_TILDE] = ACTIONS(4940), + [anon_sym_LPAREN] = ACTIONS(4940), + [anon_sym_RPAREN] = ACTIONS(4940), + [sym__newline_token] = ACTIONS(4940), + [aux_sym_insert_token1] = ACTIONS(4940), + [aux_sym_delete_token1] = ACTIONS(4940), + [aux_sym_highlight_token1] = ACTIONS(4940), + [aux_sym_edit_comment_token1] = ACTIONS(4940), + [anon_sym_CARET_LBRACK] = ACTIONS(4940), + [anon_sym_LBRACK_CARET] = ACTIONS(4940), + [sym_uri_autolink] = ACTIONS(4940), + [sym_email_autolink] = ACTIONS(4940), + [sym__whitespace_ge_2] = ACTIONS(4940), + [aux_sym__whitespace_token1] = ACTIONS(4942), + [sym__word_no_digit] = ACTIONS(4940), + [sym__digits] = ACTIONS(4940), + [anon_sym_DASH_DASH] = ACTIONS(4942), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4940), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4940), + [sym__code_span_start] = ACTIONS(4940), + [sym__emphasis_open_star] = ACTIONS(4940), + [sym__emphasis_open_underscore] = ACTIONS(4940), + [sym__emphasis_close_underscore] = ACTIONS(4940), + [sym__strikeout_open] = ACTIONS(4940), + [sym__latex_span_start] = ACTIONS(4940), + [sym__single_quote_open] = ACTIONS(4940), + [sym__double_quote_open] = ACTIONS(4940), + [sym__superscript_open] = ACTIONS(4940), + [sym__subscript_open] = ACTIONS(4940), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4940), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4940), + [sym__cite_author_in_text] = ACTIONS(4940), + [sym__cite_suppress_author] = ACTIONS(4940), + [sym__shortcode_open_escaped] = ACTIONS(4940), + [sym__shortcode_open] = ACTIONS(4940), + [sym__unclosed_span] = ACTIONS(4940), + }, + [STATE(1378)] = { + [sym__backslash_escape] = ACTIONS(4932), + [sym_entity_reference] = ACTIONS(4932), + [sym_numeric_character_reference] = ACTIONS(4932), + [anon_sym_LT] = ACTIONS(4934), + [anon_sym_GT] = ACTIONS(4932), + [anon_sym_BANG] = ACTIONS(4932), + [anon_sym_DQUOTE] = ACTIONS(4932), + [anon_sym_POUND] = ACTIONS(4932), + [anon_sym_DOLLAR] = ACTIONS(4932), + [anon_sym_PERCENT] = ACTIONS(4932), + [anon_sym_AMP] = ACTIONS(4934), + [anon_sym_SQUOTE] = ACTIONS(4932), + [anon_sym_STAR] = ACTIONS(4932), + [anon_sym_PLUS] = ACTIONS(4932), + [anon_sym_COMMA] = ACTIONS(4932), + [anon_sym_DASH] = ACTIONS(4934), + [anon_sym_DOT] = ACTIONS(4934), + [anon_sym_SLASH] = ACTIONS(4932), + [anon_sym_COLON] = ACTIONS(4932), + [anon_sym_SEMI] = ACTIONS(4932), + [anon_sym_EQ] = ACTIONS(4932), + [anon_sym_QMARK] = ACTIONS(4932), + [anon_sym_LBRACK] = ACTIONS(4934), + [anon_sym_BSLASH] = ACTIONS(4934), + [anon_sym_CARET] = ACTIONS(4934), + [anon_sym__] = ACTIONS(4932), + [anon_sym_BQUOTE] = ACTIONS(4932), + [anon_sym_LBRACE] = ACTIONS(4932), + [anon_sym_PIPE] = ACTIONS(4932), + [anon_sym_TILDE] = ACTIONS(4932), + [anon_sym_LPAREN] = ACTIONS(4932), + [anon_sym_RPAREN] = ACTIONS(4932), + [sym__newline_token] = ACTIONS(4932), + [aux_sym_insert_token1] = ACTIONS(4932), + [aux_sym_delete_token1] = ACTIONS(4932), + [aux_sym_highlight_token1] = ACTIONS(4932), + [aux_sym_edit_comment_token1] = ACTIONS(4932), + [anon_sym_CARET_LBRACK] = ACTIONS(4932), + [anon_sym_LBRACK_CARET] = ACTIONS(4932), + [sym_uri_autolink] = ACTIONS(4932), + [sym_email_autolink] = ACTIONS(4932), + [sym__whitespace_ge_2] = ACTIONS(4932), + [aux_sym__whitespace_token1] = ACTIONS(4934), + [sym__word_no_digit] = ACTIONS(4932), + [sym__digits] = ACTIONS(4932), + [anon_sym_DASH_DASH] = ACTIONS(4934), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4932), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4932), + [sym__code_span_start] = ACTIONS(4932), + [sym__emphasis_open_star] = ACTIONS(4932), + [sym__emphasis_open_underscore] = ACTIONS(4932), + [sym__strikeout_open] = ACTIONS(4932), + [sym__latex_span_start] = ACTIONS(4932), + [sym__single_quote_open] = ACTIONS(4932), + [sym__double_quote_open] = ACTIONS(4932), + [sym__double_quote_close] = ACTIONS(4932), + [sym__superscript_open] = ACTIONS(4932), + [sym__subscript_open] = ACTIONS(4932), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4932), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4932), + [sym__cite_author_in_text] = ACTIONS(4932), + [sym__cite_suppress_author] = ACTIONS(4932), + [sym__shortcode_open_escaped] = ACTIONS(4932), + [sym__shortcode_open] = ACTIONS(4932), + [sym__unclosed_span] = ACTIONS(4932), + }, + [STATE(1379)] = { + [sym__backslash_escape] = ACTIONS(4944), + [sym_entity_reference] = ACTIONS(4944), + [sym_numeric_character_reference] = ACTIONS(4944), + [anon_sym_LT] = ACTIONS(4946), + [anon_sym_GT] = ACTIONS(4944), + [anon_sym_BANG] = ACTIONS(4944), + [anon_sym_DQUOTE] = ACTIONS(4944), + [anon_sym_POUND] = ACTIONS(4944), + [anon_sym_DOLLAR] = ACTIONS(4944), + [anon_sym_PERCENT] = ACTIONS(4944), + [anon_sym_AMP] = ACTIONS(4946), + [anon_sym_SQUOTE] = ACTIONS(4944), + [anon_sym_STAR] = ACTIONS(4944), + [anon_sym_PLUS] = ACTIONS(4944), + [anon_sym_COMMA] = ACTIONS(4944), + [anon_sym_DASH] = ACTIONS(4946), + [anon_sym_DOT] = ACTIONS(4946), + [anon_sym_SLASH] = ACTIONS(4944), + [anon_sym_COLON] = ACTIONS(4944), + [anon_sym_SEMI] = ACTIONS(4944), + [anon_sym_EQ] = ACTIONS(4944), + [anon_sym_QMARK] = ACTIONS(4944), + [anon_sym_LBRACK] = ACTIONS(4946), + [anon_sym_BSLASH] = ACTIONS(4946), + [anon_sym_CARET] = ACTIONS(4946), + [anon_sym__] = ACTIONS(4944), + [anon_sym_BQUOTE] = ACTIONS(4944), + [anon_sym_LBRACE] = ACTIONS(4944), + [anon_sym_PIPE] = ACTIONS(4944), + [anon_sym_TILDE] = ACTIONS(4944), + [anon_sym_LPAREN] = ACTIONS(4944), + [anon_sym_RPAREN] = ACTIONS(4944), + [sym__newline_token] = ACTIONS(4944), + [aux_sym_insert_token1] = ACTIONS(4944), + [aux_sym_delete_token1] = ACTIONS(4944), + [aux_sym_highlight_token1] = ACTIONS(4944), + [aux_sym_edit_comment_token1] = ACTIONS(4944), + [anon_sym_CARET_LBRACK] = ACTIONS(4944), + [anon_sym_LBRACK_CARET] = ACTIONS(4944), + [sym_uri_autolink] = ACTIONS(4944), + [sym_email_autolink] = ACTIONS(4944), + [sym__whitespace_ge_2] = ACTIONS(4944), + [aux_sym__whitespace_token1] = ACTIONS(4946), + [sym__word_no_digit] = ACTIONS(4944), + [sym__digits] = ACTIONS(4944), + [anon_sym_DASH_DASH] = ACTIONS(4946), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4944), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4944), + [sym__code_span_start] = ACTIONS(4944), + [sym__emphasis_open_star] = ACTIONS(4944), + [sym__emphasis_open_underscore] = ACTIONS(4944), + [sym__strikeout_open] = ACTIONS(4944), + [sym__latex_span_start] = ACTIONS(4944), + [sym__single_quote_open] = ACTIONS(4944), + [sym__double_quote_open] = ACTIONS(4944), + [sym__double_quote_close] = ACTIONS(4944), + [sym__superscript_open] = ACTIONS(4944), + [sym__subscript_open] = ACTIONS(4944), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4944), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4944), + [sym__cite_author_in_text] = ACTIONS(4944), + [sym__cite_suppress_author] = ACTIONS(4944), + [sym__shortcode_open_escaped] = ACTIONS(4944), + [sym__shortcode_open] = ACTIONS(4944), + [sym__unclosed_span] = ACTIONS(4944), + }, + [STATE(1380)] = { + [sym__backslash_escape] = ACTIONS(5028), + [sym_entity_reference] = ACTIONS(5028), + [sym_numeric_character_reference] = ACTIONS(5028), + [anon_sym_LT] = ACTIONS(5030), + [anon_sym_GT] = ACTIONS(5028), + [anon_sym_BANG] = ACTIONS(5028), + [anon_sym_DQUOTE] = ACTIONS(5028), + [anon_sym_POUND] = ACTIONS(5028), + [anon_sym_DOLLAR] = ACTIONS(5028), + [anon_sym_PERCENT] = ACTIONS(5028), + [anon_sym_AMP] = ACTIONS(5030), + [anon_sym_SQUOTE] = ACTIONS(5028), + [anon_sym_STAR] = ACTIONS(5028), + [anon_sym_PLUS] = ACTIONS(5028), + [anon_sym_COMMA] = ACTIONS(5028), + [anon_sym_DASH] = ACTIONS(5030), + [anon_sym_DOT] = ACTIONS(5030), + [anon_sym_SLASH] = ACTIONS(5028), + [anon_sym_COLON] = ACTIONS(5028), + [anon_sym_SEMI] = ACTIONS(5028), + [anon_sym_EQ] = ACTIONS(5028), + [anon_sym_QMARK] = ACTIONS(5028), + [anon_sym_LBRACK] = ACTIONS(5030), + [anon_sym_BSLASH] = ACTIONS(5030), + [anon_sym_CARET] = ACTIONS(5030), + [anon_sym__] = ACTIONS(5028), + [anon_sym_BQUOTE] = ACTIONS(5028), + [anon_sym_LBRACE] = ACTIONS(5028), + [anon_sym_PIPE] = ACTIONS(5028), + [anon_sym_TILDE] = ACTIONS(5028), + [anon_sym_LPAREN] = ACTIONS(5028), + [anon_sym_RPAREN] = ACTIONS(5028), + [sym__newline_token] = ACTIONS(5028), + [aux_sym_insert_token1] = ACTIONS(5028), + [aux_sym_delete_token1] = ACTIONS(5028), + [aux_sym_highlight_token1] = ACTIONS(5028), + [aux_sym_edit_comment_token1] = ACTIONS(5028), + [anon_sym_CARET_LBRACK] = ACTIONS(5028), + [anon_sym_LBRACK_CARET] = ACTIONS(5028), + [sym_uri_autolink] = ACTIONS(5028), + [sym_email_autolink] = ACTIONS(5028), + [sym__whitespace_ge_2] = ACTIONS(5028), + [aux_sym__whitespace_token1] = ACTIONS(5030), + [sym__word_no_digit] = ACTIONS(5028), + [sym__digits] = ACTIONS(5028), + [anon_sym_DASH_DASH] = ACTIONS(5030), + [anon_sym_DASH_DASH_DASH] = ACTIONS(5028), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5028), + [sym__code_span_start] = ACTIONS(5028), + [sym__emphasis_open_star] = ACTIONS(5028), + [sym__emphasis_open_underscore] = ACTIONS(5028), + [sym__strikeout_open] = ACTIONS(5028), + [sym__strikeout_close] = ACTIONS(5028), + [sym__latex_span_start] = ACTIONS(5028), + [sym__single_quote_open] = ACTIONS(5028), + [sym__double_quote_open] = ACTIONS(5028), + [sym__superscript_open] = ACTIONS(5028), + [sym__subscript_open] = ACTIONS(5028), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5028), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5028), + [sym__cite_author_in_text] = ACTIONS(5028), + [sym__cite_suppress_author] = ACTIONS(5028), + [sym__shortcode_open_escaped] = ACTIONS(5028), + [sym__shortcode_open] = ACTIONS(5028), + [sym__unclosed_span] = ACTIONS(5028), + }, + [STATE(1381)] = { + [sym__backslash_escape] = ACTIONS(4952), + [sym_entity_reference] = ACTIONS(4952), + [sym_numeric_character_reference] = ACTIONS(4952), + [anon_sym_LT] = ACTIONS(4954), + [anon_sym_GT] = ACTIONS(4952), + [anon_sym_BANG] = ACTIONS(4952), + [anon_sym_DQUOTE] = ACTIONS(4952), + [anon_sym_POUND] = ACTIONS(4952), + [anon_sym_DOLLAR] = ACTIONS(4952), + [anon_sym_PERCENT] = ACTIONS(4952), + [anon_sym_AMP] = ACTIONS(4954), + [anon_sym_SQUOTE] = ACTIONS(4952), + [anon_sym_STAR] = ACTIONS(4952), + [anon_sym_PLUS] = ACTIONS(4952), + [anon_sym_COMMA] = ACTIONS(4952), + [anon_sym_DASH] = ACTIONS(4954), + [anon_sym_DOT] = ACTIONS(4954), + [anon_sym_SLASH] = ACTIONS(4952), + [anon_sym_COLON] = ACTIONS(4952), + [anon_sym_SEMI] = ACTIONS(4952), + [anon_sym_EQ] = ACTIONS(4952), + [anon_sym_QMARK] = ACTIONS(4952), + [anon_sym_LBRACK] = ACTIONS(4954), + [anon_sym_BSLASH] = ACTIONS(4954), + [anon_sym_CARET] = ACTIONS(4954), + [anon_sym__] = ACTIONS(4952), + [anon_sym_BQUOTE] = ACTIONS(4952), + [anon_sym_LBRACE] = ACTIONS(4952), + [anon_sym_PIPE] = ACTIONS(4952), + [anon_sym_TILDE] = ACTIONS(4952), + [anon_sym_LPAREN] = ACTIONS(4952), + [anon_sym_RPAREN] = ACTIONS(4952), + [sym__newline_token] = ACTIONS(4952), + [aux_sym_insert_token1] = ACTIONS(4952), + [aux_sym_delete_token1] = ACTIONS(4952), + [aux_sym_highlight_token1] = ACTIONS(4952), + [aux_sym_edit_comment_token1] = ACTIONS(4952), + [anon_sym_CARET_LBRACK] = ACTIONS(4952), + [anon_sym_LBRACK_CARET] = ACTIONS(4952), + [sym_uri_autolink] = ACTIONS(4952), + [sym_email_autolink] = ACTIONS(4952), + [sym__whitespace_ge_2] = ACTIONS(4952), + [aux_sym__whitespace_token1] = ACTIONS(4954), + [sym__word_no_digit] = ACTIONS(4952), + [sym__digits] = ACTIONS(4952), + [anon_sym_DASH_DASH] = ACTIONS(4954), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4952), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4952), + [sym__code_span_start] = ACTIONS(4952), + [sym__emphasis_open_star] = ACTIONS(4952), + [sym__emphasis_open_underscore] = ACTIONS(4952), + [sym__strikeout_open] = ACTIONS(4952), + [sym__latex_span_start] = ACTIONS(4952), + [sym__single_quote_open] = ACTIONS(4952), + [sym__double_quote_open] = ACTIONS(4952), + [sym__double_quote_close] = ACTIONS(4952), + [sym__superscript_open] = ACTIONS(4952), + [sym__subscript_open] = ACTIONS(4952), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4952), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4952), + [sym__cite_author_in_text] = ACTIONS(4952), + [sym__cite_suppress_author] = ACTIONS(4952), + [sym__shortcode_open_escaped] = ACTIONS(4952), + [sym__shortcode_open] = ACTIONS(4952), + [sym__unclosed_span] = ACTIONS(4952), + }, + [STATE(1382)] = { + [sym__backslash_escape] = ACTIONS(4956), + [sym_entity_reference] = ACTIONS(4956), + [sym_numeric_character_reference] = ACTIONS(4956), + [anon_sym_LT] = ACTIONS(4958), + [anon_sym_GT] = ACTIONS(4956), + [anon_sym_BANG] = ACTIONS(4956), + [anon_sym_DQUOTE] = ACTIONS(4956), + [anon_sym_POUND] = ACTIONS(4956), + [anon_sym_DOLLAR] = ACTIONS(4956), + [anon_sym_PERCENT] = ACTIONS(4956), + [anon_sym_AMP] = ACTIONS(4958), + [anon_sym_SQUOTE] = ACTIONS(4956), + [anon_sym_STAR] = ACTIONS(4956), + [anon_sym_PLUS] = ACTIONS(4956), + [anon_sym_COMMA] = ACTIONS(4956), + [anon_sym_DASH] = ACTIONS(4958), + [anon_sym_DOT] = ACTIONS(4958), + [anon_sym_SLASH] = ACTIONS(4956), + [anon_sym_COLON] = ACTIONS(4956), + [anon_sym_SEMI] = ACTIONS(4956), + [anon_sym_EQ] = ACTIONS(4956), + [anon_sym_QMARK] = ACTIONS(4956), + [anon_sym_LBRACK] = ACTIONS(4958), + [anon_sym_BSLASH] = ACTIONS(4958), + [anon_sym_CARET] = ACTIONS(4958), + [anon_sym__] = ACTIONS(4956), + [anon_sym_BQUOTE] = ACTIONS(4956), + [anon_sym_LBRACE] = ACTIONS(4956), + [anon_sym_PIPE] = ACTIONS(4956), + [anon_sym_TILDE] = ACTIONS(4956), + [anon_sym_LPAREN] = ACTIONS(4956), + [anon_sym_RPAREN] = ACTIONS(4956), + [sym__newline_token] = ACTIONS(4956), + [aux_sym_insert_token1] = ACTIONS(4956), + [aux_sym_delete_token1] = ACTIONS(4956), + [aux_sym_highlight_token1] = ACTIONS(4956), + [aux_sym_edit_comment_token1] = ACTIONS(4956), + [anon_sym_CARET_LBRACK] = ACTIONS(4956), + [anon_sym_LBRACK_CARET] = ACTIONS(4956), + [sym_uri_autolink] = ACTIONS(4956), + [sym_email_autolink] = ACTIONS(4956), + [sym__whitespace_ge_2] = ACTIONS(4956), + [aux_sym__whitespace_token1] = ACTIONS(4958), + [sym__word_no_digit] = ACTIONS(4956), + [sym__digits] = ACTIONS(4956), + [anon_sym_DASH_DASH] = ACTIONS(4958), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4956), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4956), + [sym__code_span_start] = ACTIONS(4956), + [sym__emphasis_open_star] = ACTIONS(4956), + [sym__emphasis_open_underscore] = ACTIONS(4956), + [sym__strikeout_open] = ACTIONS(4956), + [sym__latex_span_start] = ACTIONS(4956), + [sym__single_quote_open] = ACTIONS(4956), + [sym__double_quote_open] = ACTIONS(4956), + [sym__double_quote_close] = ACTIONS(4956), + [sym__superscript_open] = ACTIONS(4956), + [sym__subscript_open] = ACTIONS(4956), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4956), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4956), + [sym__cite_author_in_text] = ACTIONS(4956), + [sym__cite_suppress_author] = ACTIONS(4956), + [sym__shortcode_open_escaped] = ACTIONS(4956), + [sym__shortcode_open] = ACTIONS(4956), + [sym__unclosed_span] = ACTIONS(4956), + }, + [STATE(1383)] = { + [sym__backslash_escape] = ACTIONS(4960), + [sym_entity_reference] = ACTIONS(4960), + [sym_numeric_character_reference] = ACTIONS(4960), + [anon_sym_LT] = ACTIONS(4962), + [anon_sym_GT] = ACTIONS(4960), + [anon_sym_BANG] = ACTIONS(4960), + [anon_sym_DQUOTE] = ACTIONS(4960), + [anon_sym_POUND] = ACTIONS(4960), + [anon_sym_DOLLAR] = ACTIONS(4960), + [anon_sym_PERCENT] = ACTIONS(4960), + [anon_sym_AMP] = ACTIONS(4962), + [anon_sym_SQUOTE] = ACTIONS(4960), + [anon_sym_STAR] = ACTIONS(4960), + [anon_sym_PLUS] = ACTIONS(4960), + [anon_sym_COMMA] = ACTIONS(4960), + [anon_sym_DASH] = ACTIONS(4962), + [anon_sym_DOT] = ACTIONS(4962), + [anon_sym_SLASH] = ACTIONS(4960), + [anon_sym_COLON] = ACTIONS(4960), + [anon_sym_SEMI] = ACTIONS(4960), + [anon_sym_EQ] = ACTIONS(4960), + [anon_sym_QMARK] = ACTIONS(4960), + [anon_sym_LBRACK] = ACTIONS(4962), + [anon_sym_BSLASH] = ACTIONS(4962), + [anon_sym_CARET] = ACTIONS(4962), + [anon_sym__] = ACTIONS(4960), + [anon_sym_BQUOTE] = ACTIONS(4960), + [anon_sym_LBRACE] = ACTIONS(4960), + [anon_sym_PIPE] = ACTIONS(4960), + [anon_sym_TILDE] = ACTIONS(4960), + [anon_sym_LPAREN] = ACTIONS(4960), + [anon_sym_RPAREN] = ACTIONS(4960), + [sym__newline_token] = ACTIONS(4960), + [aux_sym_insert_token1] = ACTIONS(4960), + [aux_sym_delete_token1] = ACTIONS(4960), + [aux_sym_highlight_token1] = ACTIONS(4960), + [aux_sym_edit_comment_token1] = ACTIONS(4960), + [anon_sym_CARET_LBRACK] = ACTIONS(4960), + [anon_sym_LBRACK_CARET] = ACTIONS(4960), + [sym_uri_autolink] = ACTIONS(4960), + [sym_email_autolink] = ACTIONS(4960), + [sym__whitespace_ge_2] = ACTIONS(4960), + [aux_sym__whitespace_token1] = ACTIONS(4962), + [sym__word_no_digit] = ACTIONS(4960), + [sym__digits] = ACTIONS(4960), + [anon_sym_DASH_DASH] = ACTIONS(4962), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4960), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4960), + [sym__code_span_start] = ACTIONS(4960), + [sym__emphasis_open_star] = ACTIONS(4960), + [sym__emphasis_open_underscore] = ACTIONS(4960), + [sym__strikeout_open] = ACTIONS(4960), + [sym__latex_span_start] = ACTIONS(4960), + [sym__single_quote_open] = ACTIONS(4960), + [sym__double_quote_open] = ACTIONS(4960), + [sym__double_quote_close] = ACTIONS(4960), + [sym__superscript_open] = ACTIONS(4960), + [sym__subscript_open] = ACTIONS(4960), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4960), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4960), + [sym__cite_author_in_text] = ACTIONS(4960), + [sym__cite_suppress_author] = ACTIONS(4960), + [sym__shortcode_open_escaped] = ACTIONS(4960), + [sym__shortcode_open] = ACTIONS(4960), + [sym__unclosed_span] = ACTIONS(4960), + }, + [STATE(1384)] = { + [sym__backslash_escape] = ACTIONS(4964), + [sym_entity_reference] = ACTIONS(4964), + [sym_numeric_character_reference] = ACTIONS(4964), + [anon_sym_LT] = ACTIONS(4966), + [anon_sym_GT] = ACTIONS(4964), + [anon_sym_BANG] = ACTIONS(4964), + [anon_sym_DQUOTE] = ACTIONS(4964), + [anon_sym_POUND] = ACTIONS(4964), + [anon_sym_DOLLAR] = ACTIONS(4964), + [anon_sym_PERCENT] = ACTIONS(4964), + [anon_sym_AMP] = ACTIONS(4966), + [anon_sym_SQUOTE] = ACTIONS(4964), + [anon_sym_STAR] = ACTIONS(4964), + [anon_sym_PLUS] = ACTIONS(4964), + [anon_sym_COMMA] = ACTIONS(4964), + [anon_sym_DASH] = ACTIONS(4966), + [anon_sym_DOT] = ACTIONS(4966), + [anon_sym_SLASH] = ACTIONS(4964), + [anon_sym_COLON] = ACTIONS(4964), + [anon_sym_SEMI] = ACTIONS(4964), + [anon_sym_EQ] = ACTIONS(4964), + [anon_sym_QMARK] = ACTIONS(4964), + [anon_sym_LBRACK] = ACTIONS(4966), + [anon_sym_BSLASH] = ACTIONS(4966), + [anon_sym_CARET] = ACTIONS(4966), + [anon_sym__] = ACTIONS(4964), + [anon_sym_BQUOTE] = ACTIONS(4964), + [anon_sym_LBRACE] = ACTIONS(4964), + [anon_sym_PIPE] = ACTIONS(4964), + [anon_sym_TILDE] = ACTIONS(4964), + [anon_sym_LPAREN] = ACTIONS(4964), + [anon_sym_RPAREN] = ACTIONS(4964), + [sym__newline_token] = ACTIONS(4964), + [aux_sym_insert_token1] = ACTIONS(4964), + [aux_sym_delete_token1] = ACTIONS(4964), + [aux_sym_highlight_token1] = ACTIONS(4964), + [aux_sym_edit_comment_token1] = ACTIONS(4964), + [anon_sym_CARET_LBRACK] = ACTIONS(4964), + [anon_sym_LBRACK_CARET] = ACTIONS(4964), + [sym_uri_autolink] = ACTIONS(4964), + [sym_email_autolink] = ACTIONS(4964), + [sym__whitespace_ge_2] = ACTIONS(4964), + [aux_sym__whitespace_token1] = ACTIONS(4966), + [sym__word_no_digit] = ACTIONS(4964), + [sym__digits] = ACTIONS(4964), + [anon_sym_DASH_DASH] = ACTIONS(4966), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4964), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4964), + [sym__code_span_start] = ACTIONS(4964), + [sym__emphasis_open_star] = ACTIONS(4964), + [sym__emphasis_open_underscore] = ACTIONS(4964), + [sym__strikeout_open] = ACTIONS(4964), + [sym__latex_span_start] = ACTIONS(4964), + [sym__single_quote_open] = ACTIONS(4964), + [sym__double_quote_open] = ACTIONS(4964), + [sym__double_quote_close] = ACTIONS(4964), + [sym__superscript_open] = ACTIONS(4964), + [sym__subscript_open] = ACTIONS(4964), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4964), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4964), + [sym__cite_author_in_text] = ACTIONS(4964), + [sym__cite_suppress_author] = ACTIONS(4964), + [sym__shortcode_open_escaped] = ACTIONS(4964), + [sym__shortcode_open] = ACTIONS(4964), + [sym__unclosed_span] = ACTIONS(4964), + }, + [STATE(1385)] = { + [sym__backslash_escape] = ACTIONS(4648), + [sym_entity_reference] = ACTIONS(4648), + [sym_numeric_character_reference] = ACTIONS(4648), + [anon_sym_LT] = ACTIONS(4650), + [anon_sym_GT] = ACTIONS(4648), + [anon_sym_BANG] = ACTIONS(4648), + [anon_sym_DQUOTE] = ACTIONS(4648), + [anon_sym_POUND] = ACTIONS(4648), + [anon_sym_DOLLAR] = ACTIONS(4648), + [anon_sym_PERCENT] = ACTIONS(4648), + [anon_sym_AMP] = ACTIONS(4650), + [anon_sym_SQUOTE] = ACTIONS(4648), + [anon_sym_STAR] = ACTIONS(4648), + [anon_sym_PLUS] = ACTIONS(4648), + [anon_sym_COMMA] = ACTIONS(4648), + [anon_sym_DASH] = ACTIONS(4650), + [anon_sym_DOT] = ACTIONS(4650), + [anon_sym_SLASH] = ACTIONS(4648), + [anon_sym_COLON] = ACTIONS(4648), + [anon_sym_SEMI] = ACTIONS(4648), + [anon_sym_EQ] = ACTIONS(4648), + [anon_sym_QMARK] = ACTIONS(4648), + [anon_sym_LBRACK] = ACTIONS(4650), + [anon_sym_BSLASH] = ACTIONS(4650), + [anon_sym_CARET] = ACTIONS(4650), + [anon_sym__] = ACTIONS(4648), + [anon_sym_BQUOTE] = ACTIONS(4648), + [anon_sym_LBRACE] = ACTIONS(4648), + [anon_sym_PIPE] = ACTIONS(4648), + [anon_sym_TILDE] = ACTIONS(4648), + [anon_sym_LPAREN] = ACTIONS(4648), + [anon_sym_RPAREN] = ACTIONS(4648), + [sym__newline_token] = ACTIONS(4648), + [aux_sym_insert_token1] = ACTIONS(4648), + [aux_sym_delete_token1] = ACTIONS(4648), + [aux_sym_highlight_token1] = ACTIONS(4648), + [aux_sym_edit_comment_token1] = ACTIONS(4648), + [anon_sym_CARET_LBRACK] = ACTIONS(4648), + [anon_sym_LBRACK_CARET] = ACTIONS(4648), + [sym_uri_autolink] = ACTIONS(4648), + [sym_email_autolink] = ACTIONS(4648), + [sym__whitespace_ge_2] = ACTIONS(4648), + [aux_sym__whitespace_token1] = ACTIONS(4650), + [sym__word_no_digit] = ACTIONS(4648), + [sym__digits] = ACTIONS(4648), + [anon_sym_DASH_DASH] = ACTIONS(4650), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4648), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4648), + [sym__code_span_start] = ACTIONS(4648), + [sym__emphasis_open_star] = ACTIONS(4648), + [sym__emphasis_open_underscore] = ACTIONS(4648), + [sym__emphasis_close_underscore] = ACTIONS(4648), + [sym__strikeout_open] = ACTIONS(4648), + [sym__latex_span_start] = ACTIONS(4648), + [sym__single_quote_open] = ACTIONS(4648), + [sym__double_quote_open] = ACTIONS(4648), + [sym__superscript_open] = ACTIONS(4648), + [sym__subscript_open] = ACTIONS(4648), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4648), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4648), + [sym__cite_author_in_text] = ACTIONS(4648), + [sym__cite_suppress_author] = ACTIONS(4648), + [sym__shortcode_open_escaped] = ACTIONS(4648), + [sym__shortcode_open] = ACTIONS(4648), + [sym__unclosed_span] = ACTIONS(4648), + }, + [STATE(1386)] = { + [sym__backslash_escape] = ACTIONS(5064), + [sym_entity_reference] = ACTIONS(5064), + [sym_numeric_character_reference] = ACTIONS(5064), + [anon_sym_LT] = ACTIONS(5066), + [anon_sym_GT] = ACTIONS(5064), + [anon_sym_BANG] = ACTIONS(5064), + [anon_sym_DQUOTE] = ACTIONS(5064), + [anon_sym_POUND] = ACTIONS(5064), + [anon_sym_DOLLAR] = ACTIONS(5064), + [anon_sym_PERCENT] = ACTIONS(5064), + [anon_sym_AMP] = ACTIONS(5066), + [anon_sym_SQUOTE] = ACTIONS(5064), + [anon_sym_STAR] = ACTIONS(5064), + [anon_sym_PLUS] = ACTIONS(5064), + [anon_sym_COMMA] = ACTIONS(5064), + [anon_sym_DASH] = ACTIONS(5066), + [anon_sym_DOT] = ACTIONS(5066), + [anon_sym_SLASH] = ACTIONS(5064), + [anon_sym_COLON] = ACTIONS(5064), + [anon_sym_SEMI] = ACTIONS(5064), + [anon_sym_EQ] = ACTIONS(5064), + [anon_sym_QMARK] = ACTIONS(5064), + [anon_sym_LBRACK] = ACTIONS(5066), + [anon_sym_BSLASH] = ACTIONS(5066), + [anon_sym_CARET] = ACTIONS(5066), + [anon_sym__] = ACTIONS(5064), + [anon_sym_BQUOTE] = ACTIONS(5064), + [anon_sym_LBRACE] = ACTIONS(5064), + [anon_sym_PIPE] = ACTIONS(5064), + [anon_sym_TILDE] = ACTIONS(5064), + [anon_sym_LPAREN] = ACTIONS(5064), + [anon_sym_RPAREN] = ACTIONS(5064), + [sym__newline_token] = ACTIONS(5064), + [aux_sym_insert_token1] = ACTIONS(5064), + [aux_sym_delete_token1] = ACTIONS(5064), + [aux_sym_highlight_token1] = ACTIONS(5064), + [aux_sym_edit_comment_token1] = ACTIONS(5064), + [anon_sym_CARET_LBRACK] = ACTIONS(5064), + [anon_sym_LBRACK_CARET] = ACTIONS(5064), + [sym_uri_autolink] = ACTIONS(5064), + [sym_email_autolink] = ACTIONS(5064), + [sym__whitespace_ge_2] = ACTIONS(5064), + [aux_sym__whitespace_token1] = ACTIONS(5066), + [sym__word_no_digit] = ACTIONS(5064), + [sym__digits] = ACTIONS(5064), + [anon_sym_DASH_DASH] = ACTIONS(5066), + [anon_sym_DASH_DASH_DASH] = ACTIONS(5064), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5064), + [sym__code_span_start] = ACTIONS(5064), + [sym__emphasis_open_star] = ACTIONS(5064), + [sym__emphasis_open_underscore] = ACTIONS(5064), + [sym__emphasis_close_star] = ACTIONS(5126), + [sym__strikeout_open] = ACTIONS(5064), + [sym__latex_span_start] = ACTIONS(5064), + [sym__single_quote_open] = ACTIONS(5064), + [sym__double_quote_open] = ACTIONS(5064), + [sym__superscript_open] = ACTIONS(5064), + [sym__subscript_open] = ACTIONS(5064), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5064), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5064), + [sym__cite_author_in_text] = ACTIONS(5064), + [sym__cite_suppress_author] = ACTIONS(5064), + [sym__shortcode_open_escaped] = ACTIONS(5064), + [sym__shortcode_open] = ACTIONS(5064), + [sym__unclosed_span] = ACTIONS(5064), + }, + [STATE(1387)] = { + [sym__backslash_escape] = ACTIONS(4968), + [sym_entity_reference] = ACTIONS(4968), + [sym_numeric_character_reference] = ACTIONS(4968), + [anon_sym_LT] = ACTIONS(4970), + [anon_sym_GT] = ACTIONS(4968), + [anon_sym_BANG] = ACTIONS(4968), + [anon_sym_DQUOTE] = ACTIONS(4968), + [anon_sym_POUND] = ACTIONS(4968), + [anon_sym_DOLLAR] = ACTIONS(4968), + [anon_sym_PERCENT] = ACTIONS(4968), + [anon_sym_AMP] = ACTIONS(4970), + [anon_sym_SQUOTE] = ACTIONS(4968), + [anon_sym_STAR] = ACTIONS(4968), + [anon_sym_PLUS] = ACTIONS(4968), + [anon_sym_COMMA] = ACTIONS(4968), + [anon_sym_DASH] = ACTIONS(4970), + [anon_sym_DOT] = ACTIONS(4970), + [anon_sym_SLASH] = ACTIONS(4968), + [anon_sym_COLON] = ACTIONS(4968), + [anon_sym_SEMI] = ACTIONS(4968), + [anon_sym_EQ] = ACTIONS(4968), + [anon_sym_QMARK] = ACTIONS(4968), + [anon_sym_LBRACK] = ACTIONS(4970), + [anon_sym_BSLASH] = ACTIONS(4970), + [anon_sym_CARET] = ACTIONS(4970), + [anon_sym__] = ACTIONS(4968), + [anon_sym_BQUOTE] = ACTIONS(4968), + [anon_sym_LBRACE] = ACTIONS(4968), + [anon_sym_PIPE] = ACTIONS(4968), + [anon_sym_TILDE] = ACTIONS(4968), + [anon_sym_LPAREN] = ACTIONS(4968), + [anon_sym_RPAREN] = ACTIONS(4968), + [sym__newline_token] = ACTIONS(4968), + [aux_sym_insert_token1] = ACTIONS(4968), + [aux_sym_delete_token1] = ACTIONS(4968), + [aux_sym_highlight_token1] = ACTIONS(4968), + [aux_sym_edit_comment_token1] = ACTIONS(4968), + [anon_sym_CARET_LBRACK] = ACTIONS(4968), + [anon_sym_LBRACK_CARET] = ACTIONS(4968), + [sym_uri_autolink] = ACTIONS(4968), + [sym_email_autolink] = ACTIONS(4968), + [sym__whitespace_ge_2] = ACTIONS(4968), + [aux_sym__whitespace_token1] = ACTIONS(4970), + [sym__word_no_digit] = ACTIONS(4968), + [sym__digits] = ACTIONS(4968), + [anon_sym_DASH_DASH] = ACTIONS(4970), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4968), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4968), + [sym__code_span_start] = ACTIONS(4968), + [sym__emphasis_open_star] = ACTIONS(4968), + [sym__emphasis_open_underscore] = ACTIONS(4968), + [sym__strikeout_open] = ACTIONS(4968), + [sym__latex_span_start] = ACTIONS(4968), + [sym__single_quote_open] = ACTIONS(4968), + [sym__double_quote_open] = ACTIONS(4968), + [sym__double_quote_close] = ACTIONS(4968), + [sym__superscript_open] = ACTIONS(4968), + [sym__subscript_open] = ACTIONS(4968), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4968), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4968), + [sym__cite_author_in_text] = ACTIONS(4968), + [sym__cite_suppress_author] = ACTIONS(4968), + [sym__shortcode_open_escaped] = ACTIONS(4968), + [sym__shortcode_open] = ACTIONS(4968), + [sym__unclosed_span] = ACTIONS(4968), + }, + [STATE(1388)] = { + [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__] = ACTIONS(5071), + [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(5129), + [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), + }, + [STATE(1389)] = { + [sym__backslash_escape] = ACTIONS(4972), + [sym_entity_reference] = ACTIONS(4972), + [sym_numeric_character_reference] = ACTIONS(4972), + [anon_sym_LT] = ACTIONS(4974), + [anon_sym_GT] = ACTIONS(4972), + [anon_sym_BANG] = ACTIONS(4972), + [anon_sym_DQUOTE] = ACTIONS(4972), + [anon_sym_POUND] = ACTIONS(4972), + [anon_sym_DOLLAR] = ACTIONS(4972), + [anon_sym_PERCENT] = ACTIONS(4972), + [anon_sym_AMP] = ACTIONS(4974), + [anon_sym_SQUOTE] = ACTIONS(4972), + [anon_sym_STAR] = ACTIONS(4972), + [anon_sym_PLUS] = ACTIONS(4972), + [anon_sym_COMMA] = ACTIONS(4972), + [anon_sym_DASH] = ACTIONS(4974), + [anon_sym_DOT] = ACTIONS(4974), + [anon_sym_SLASH] = ACTIONS(4972), + [anon_sym_COLON] = ACTIONS(4972), + [anon_sym_SEMI] = ACTIONS(4972), + [anon_sym_EQ] = ACTIONS(4972), + [anon_sym_QMARK] = ACTIONS(4972), + [anon_sym_LBRACK] = ACTIONS(4974), + [anon_sym_BSLASH] = ACTIONS(4974), + [anon_sym_CARET] = ACTIONS(4974), + [anon_sym__] = ACTIONS(4972), + [anon_sym_BQUOTE] = ACTIONS(4972), + [anon_sym_LBRACE] = ACTIONS(4972), + [anon_sym_PIPE] = ACTIONS(4972), + [anon_sym_TILDE] = ACTIONS(4972), + [anon_sym_LPAREN] = ACTIONS(4972), + [anon_sym_RPAREN] = ACTIONS(4972), + [sym__newline_token] = ACTIONS(4972), + [aux_sym_insert_token1] = ACTIONS(4972), + [aux_sym_delete_token1] = ACTIONS(4972), + [aux_sym_highlight_token1] = ACTIONS(4972), + [aux_sym_edit_comment_token1] = ACTIONS(4972), + [anon_sym_CARET_LBRACK] = ACTIONS(4972), + [anon_sym_LBRACK_CARET] = ACTIONS(4972), + [sym_uri_autolink] = ACTIONS(4972), + [sym_email_autolink] = ACTIONS(4972), + [sym__whitespace_ge_2] = ACTIONS(4972), + [aux_sym__whitespace_token1] = ACTIONS(4974), + [sym__word_no_digit] = ACTIONS(4972), + [sym__digits] = ACTIONS(4972), + [anon_sym_DASH_DASH] = ACTIONS(4974), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4972), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4972), + [sym__code_span_start] = ACTIONS(4972), + [sym__emphasis_open_star] = ACTIONS(4972), + [sym__emphasis_open_underscore] = ACTIONS(4972), + [sym__strikeout_open] = ACTIONS(4972), + [sym__latex_span_start] = ACTIONS(4972), + [sym__single_quote_open] = ACTIONS(4972), + [sym__double_quote_open] = ACTIONS(4972), + [sym__double_quote_close] = ACTIONS(4972), + [sym__superscript_open] = ACTIONS(4972), + [sym__subscript_open] = ACTIONS(4972), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4972), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4972), + [sym__cite_author_in_text] = ACTIONS(4972), + [sym__cite_suppress_author] = ACTIONS(4972), + [sym__shortcode_open_escaped] = ACTIONS(4972), + [sym__shortcode_open] = ACTIONS(4972), + [sym__unclosed_span] = ACTIONS(4972), + }, + [STATE(1390)] = { + [sym__backslash_escape] = ACTIONS(4976), + [sym_entity_reference] = ACTIONS(4976), + [sym_numeric_character_reference] = ACTIONS(4976), + [anon_sym_LT] = ACTIONS(4978), + [anon_sym_GT] = ACTIONS(4976), + [anon_sym_BANG] = ACTIONS(4976), + [anon_sym_DQUOTE] = ACTIONS(4976), + [anon_sym_POUND] = ACTIONS(4976), + [anon_sym_DOLLAR] = ACTIONS(4976), + [anon_sym_PERCENT] = ACTIONS(4976), + [anon_sym_AMP] = ACTIONS(4978), + [anon_sym_SQUOTE] = ACTIONS(4976), + [anon_sym_STAR] = ACTIONS(4976), + [anon_sym_PLUS] = ACTIONS(4976), + [anon_sym_COMMA] = ACTIONS(4976), + [anon_sym_DASH] = ACTIONS(4978), + [anon_sym_DOT] = ACTIONS(4978), + [anon_sym_SLASH] = ACTIONS(4976), + [anon_sym_COLON] = ACTIONS(4976), + [anon_sym_SEMI] = ACTIONS(4976), + [anon_sym_EQ] = ACTIONS(4976), + [anon_sym_QMARK] = ACTIONS(4976), + [anon_sym_LBRACK] = ACTIONS(4978), + [anon_sym_BSLASH] = ACTIONS(4978), + [anon_sym_CARET] = ACTIONS(4978), + [anon_sym__] = ACTIONS(4976), + [anon_sym_BQUOTE] = ACTIONS(4976), + [anon_sym_LBRACE] = ACTIONS(4976), + [anon_sym_PIPE] = ACTIONS(4976), + [anon_sym_TILDE] = ACTIONS(4976), + [anon_sym_LPAREN] = ACTIONS(4976), + [anon_sym_RPAREN] = ACTIONS(4976), + [sym__newline_token] = ACTIONS(4976), + [aux_sym_insert_token1] = ACTIONS(4976), + [aux_sym_delete_token1] = ACTIONS(4976), + [aux_sym_highlight_token1] = ACTIONS(4976), + [aux_sym_edit_comment_token1] = ACTIONS(4976), + [anon_sym_CARET_LBRACK] = ACTIONS(4976), + [anon_sym_LBRACK_CARET] = ACTIONS(4976), + [sym_uri_autolink] = ACTIONS(4976), + [sym_email_autolink] = ACTIONS(4976), + [sym__whitespace_ge_2] = ACTIONS(4976), + [aux_sym__whitespace_token1] = ACTIONS(4978), + [sym__word_no_digit] = ACTIONS(4976), + [sym__digits] = ACTIONS(4976), + [anon_sym_DASH_DASH] = ACTIONS(4978), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4976), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4976), + [sym__code_span_start] = ACTIONS(4976), + [sym__emphasis_open_star] = ACTIONS(4976), + [sym__emphasis_open_underscore] = ACTIONS(4976), + [sym__emphasis_close_underscore] = ACTIONS(4976), + [sym__strikeout_open] = ACTIONS(4976), + [sym__latex_span_start] = ACTIONS(4976), + [sym__single_quote_open] = ACTIONS(4976), + [sym__double_quote_open] = ACTIONS(4976), + [sym__superscript_open] = ACTIONS(4976), + [sym__subscript_open] = ACTIONS(4976), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4976), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4976), + [sym__cite_author_in_text] = ACTIONS(4976), + [sym__cite_suppress_author] = ACTIONS(4976), + [sym__shortcode_open_escaped] = ACTIONS(4976), + [sym__shortcode_open] = ACTIONS(4976), + [sym__unclosed_span] = ACTIONS(4976), + }, + [STATE(1391)] = { + [sym__backslash_escape] = ACTIONS(4980), + [sym_entity_reference] = ACTIONS(4980), + [sym_numeric_character_reference] = ACTIONS(4980), + [anon_sym_LT] = ACTIONS(4982), + [anon_sym_GT] = ACTIONS(4980), + [anon_sym_BANG] = ACTIONS(4980), + [anon_sym_DQUOTE] = ACTIONS(4980), + [anon_sym_POUND] = ACTIONS(4980), + [anon_sym_DOLLAR] = ACTIONS(4980), + [anon_sym_PERCENT] = ACTIONS(4980), + [anon_sym_AMP] = ACTIONS(4982), + [anon_sym_SQUOTE] = ACTIONS(4980), + [anon_sym_STAR] = ACTIONS(4980), + [anon_sym_PLUS] = ACTIONS(4980), + [anon_sym_COMMA] = ACTIONS(4980), + [anon_sym_DASH] = ACTIONS(4982), + [anon_sym_DOT] = ACTIONS(4982), + [anon_sym_SLASH] = ACTIONS(4980), + [anon_sym_COLON] = ACTIONS(4980), + [anon_sym_SEMI] = ACTIONS(4980), + [anon_sym_EQ] = ACTIONS(4980), + [anon_sym_QMARK] = ACTIONS(4980), + [anon_sym_LBRACK] = ACTIONS(4982), + [anon_sym_BSLASH] = ACTIONS(4982), + [anon_sym_CARET] = ACTIONS(4982), + [anon_sym__] = ACTIONS(4980), + [anon_sym_BQUOTE] = ACTIONS(4980), + [anon_sym_LBRACE] = ACTIONS(4980), + [anon_sym_PIPE] = ACTIONS(4980), + [anon_sym_TILDE] = ACTIONS(4980), + [anon_sym_LPAREN] = ACTIONS(4980), + [anon_sym_RPAREN] = ACTIONS(4980), + [sym__newline_token] = ACTIONS(4980), + [aux_sym_insert_token1] = ACTIONS(4980), + [aux_sym_delete_token1] = ACTIONS(4980), + [aux_sym_highlight_token1] = ACTIONS(4980), + [aux_sym_edit_comment_token1] = ACTIONS(4980), + [anon_sym_CARET_LBRACK] = ACTIONS(4980), + [anon_sym_LBRACK_CARET] = ACTIONS(4980), + [sym_uri_autolink] = ACTIONS(4980), + [sym_email_autolink] = ACTIONS(4980), + [sym__whitespace_ge_2] = ACTIONS(4980), + [aux_sym__whitespace_token1] = ACTIONS(4982), + [sym__word_no_digit] = ACTIONS(4980), + [sym__digits] = ACTIONS(4980), + [anon_sym_DASH_DASH] = ACTIONS(4982), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4980), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4980), + [sym__code_span_start] = ACTIONS(4980), + [sym__emphasis_open_star] = ACTIONS(4980), + [sym__emphasis_open_underscore] = ACTIONS(4980), + [sym__emphasis_close_underscore] = ACTIONS(4980), + [sym__strikeout_open] = ACTIONS(4980), + [sym__latex_span_start] = ACTIONS(4980), + [sym__single_quote_open] = ACTIONS(4980), + [sym__double_quote_open] = ACTIONS(4980), + [sym__superscript_open] = ACTIONS(4980), + [sym__subscript_open] = ACTIONS(4980), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4980), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4980), + [sym__cite_author_in_text] = ACTIONS(4980), + [sym__cite_suppress_author] = ACTIONS(4980), + [sym__shortcode_open_escaped] = ACTIONS(4980), + [sym__shortcode_open] = ACTIONS(4980), + [sym__unclosed_span] = ACTIONS(4980), + }, + [STATE(1392)] = { + [sym__backslash_escape] = ACTIONS(4984), + [sym_entity_reference] = ACTIONS(4984), + [sym_numeric_character_reference] = ACTIONS(4984), + [anon_sym_LT] = ACTIONS(4986), + [anon_sym_GT] = ACTIONS(4984), + [anon_sym_BANG] = ACTIONS(4984), + [anon_sym_DQUOTE] = ACTIONS(4984), + [anon_sym_POUND] = ACTIONS(4984), + [anon_sym_DOLLAR] = ACTIONS(4984), + [anon_sym_PERCENT] = ACTIONS(4984), + [anon_sym_AMP] = ACTIONS(4986), + [anon_sym_SQUOTE] = ACTIONS(4984), + [anon_sym_STAR] = ACTIONS(4984), + [anon_sym_PLUS] = ACTIONS(4984), + [anon_sym_COMMA] = ACTIONS(4984), + [anon_sym_DASH] = ACTIONS(4986), + [anon_sym_DOT] = ACTIONS(4986), + [anon_sym_SLASH] = ACTIONS(4984), + [anon_sym_COLON] = ACTIONS(4984), + [anon_sym_SEMI] = ACTIONS(4984), + [anon_sym_EQ] = ACTIONS(4984), + [anon_sym_QMARK] = ACTIONS(4984), + [anon_sym_LBRACK] = ACTIONS(4986), + [anon_sym_BSLASH] = ACTIONS(4986), + [anon_sym_CARET] = ACTIONS(4986), + [anon_sym__] = ACTIONS(4984), + [anon_sym_BQUOTE] = ACTIONS(4984), + [anon_sym_LBRACE] = ACTIONS(4984), + [anon_sym_PIPE] = ACTIONS(4984), + [anon_sym_TILDE] = ACTIONS(4984), + [anon_sym_LPAREN] = ACTIONS(4984), + [anon_sym_RPAREN] = ACTIONS(4984), + [sym__newline_token] = ACTIONS(4984), + [aux_sym_insert_token1] = ACTIONS(4984), + [aux_sym_delete_token1] = ACTIONS(4984), + [aux_sym_highlight_token1] = ACTIONS(4984), + [aux_sym_edit_comment_token1] = ACTIONS(4984), + [anon_sym_CARET_LBRACK] = ACTIONS(4984), + [anon_sym_LBRACK_CARET] = ACTIONS(4984), + [sym_uri_autolink] = ACTIONS(4984), + [sym_email_autolink] = ACTIONS(4984), + [sym__whitespace_ge_2] = ACTIONS(4984), + [aux_sym__whitespace_token1] = ACTIONS(4986), + [sym__word_no_digit] = ACTIONS(4984), + [sym__digits] = ACTIONS(4984), + [anon_sym_DASH_DASH] = ACTIONS(4986), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4984), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4984), + [sym__code_span_start] = ACTIONS(4984), + [sym__emphasis_open_star] = ACTIONS(4984), + [sym__emphasis_open_underscore] = ACTIONS(4984), + [sym__strikeout_open] = ACTIONS(4984), + [sym__latex_span_start] = ACTIONS(4984), + [sym__single_quote_open] = ACTIONS(4984), + [sym__single_quote_close] = ACTIONS(4984), + [sym__double_quote_open] = ACTIONS(4984), + [sym__superscript_open] = ACTIONS(4984), + [sym__subscript_open] = ACTIONS(4984), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4984), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4984), + [sym__cite_author_in_text] = ACTIONS(4984), + [sym__cite_suppress_author] = ACTIONS(4984), + [sym__shortcode_open_escaped] = ACTIONS(4984), + [sym__shortcode_open] = ACTIONS(4984), + [sym__unclosed_span] = ACTIONS(4984), + }, + [STATE(1393)] = { + [sym__backslash_escape] = ACTIONS(4988), + [sym_entity_reference] = ACTIONS(4988), + [sym_numeric_character_reference] = ACTIONS(4988), + [anon_sym_LT] = ACTIONS(4990), + [anon_sym_GT] = ACTIONS(4988), + [anon_sym_BANG] = ACTIONS(4988), + [anon_sym_DQUOTE] = ACTIONS(4988), + [anon_sym_POUND] = ACTIONS(4988), + [anon_sym_DOLLAR] = ACTIONS(4988), + [anon_sym_PERCENT] = ACTIONS(4988), + [anon_sym_AMP] = ACTIONS(4990), + [anon_sym_SQUOTE] = ACTIONS(4988), + [anon_sym_STAR] = ACTIONS(4988), + [anon_sym_PLUS] = ACTIONS(4988), + [anon_sym_COMMA] = ACTIONS(4988), + [anon_sym_DASH] = ACTIONS(4990), + [anon_sym_DOT] = ACTIONS(4990), + [anon_sym_SLASH] = ACTIONS(4988), + [anon_sym_COLON] = ACTIONS(4988), + [anon_sym_SEMI] = ACTIONS(4988), + [anon_sym_EQ] = ACTIONS(4988), + [anon_sym_QMARK] = ACTIONS(4988), + [anon_sym_LBRACK] = ACTIONS(4990), + [anon_sym_BSLASH] = ACTIONS(4990), + [anon_sym_CARET] = ACTIONS(4990), + [anon_sym__] = ACTIONS(4988), + [anon_sym_BQUOTE] = ACTIONS(4988), + [anon_sym_LBRACE] = ACTIONS(4988), + [anon_sym_PIPE] = ACTIONS(4988), + [anon_sym_TILDE] = ACTIONS(4988), + [anon_sym_LPAREN] = ACTIONS(4988), + [anon_sym_RPAREN] = ACTIONS(4988), + [sym__newline_token] = ACTIONS(4988), + [aux_sym_insert_token1] = ACTIONS(4988), + [aux_sym_delete_token1] = ACTIONS(4988), + [aux_sym_highlight_token1] = ACTIONS(4988), + [aux_sym_edit_comment_token1] = ACTIONS(4988), + [anon_sym_CARET_LBRACK] = ACTIONS(4988), + [anon_sym_LBRACK_CARET] = ACTIONS(4988), + [sym_uri_autolink] = ACTIONS(4988), + [sym_email_autolink] = ACTIONS(4988), + [sym__whitespace_ge_2] = ACTIONS(4988), + [aux_sym__whitespace_token1] = ACTIONS(4990), + [sym__word_no_digit] = ACTIONS(4988), + [sym__digits] = ACTIONS(4988), + [anon_sym_DASH_DASH] = ACTIONS(4990), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4988), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4988), + [sym__code_span_start] = ACTIONS(4988), + [sym__emphasis_open_star] = ACTIONS(4988), + [sym__emphasis_open_underscore] = ACTIONS(4988), + [sym__strikeout_open] = ACTIONS(4988), + [sym__latex_span_start] = ACTIONS(4988), + [sym__single_quote_open] = ACTIONS(4988), + [sym__double_quote_open] = ACTIONS(4988), + [sym__double_quote_close] = ACTIONS(4988), + [sym__superscript_open] = ACTIONS(4988), + [sym__subscript_open] = ACTIONS(4988), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4988), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4988), + [sym__cite_author_in_text] = ACTIONS(4988), + [sym__cite_suppress_author] = ACTIONS(4988), + [sym__shortcode_open_escaped] = ACTIONS(4988), + [sym__shortcode_open] = ACTIONS(4988), + [sym__unclosed_span] = ACTIONS(4988), + }, + [STATE(1394)] = { + [sym__backslash_escape] = ACTIONS(4992), + [sym_entity_reference] = ACTIONS(4992), + [sym_numeric_character_reference] = ACTIONS(4992), + [anon_sym_LT] = ACTIONS(4994), + [anon_sym_GT] = ACTIONS(4992), + [anon_sym_BANG] = ACTIONS(4992), + [anon_sym_DQUOTE] = ACTIONS(4992), + [anon_sym_POUND] = ACTIONS(4992), + [anon_sym_DOLLAR] = ACTIONS(4992), + [anon_sym_PERCENT] = ACTIONS(4992), + [anon_sym_AMP] = ACTIONS(4994), + [anon_sym_SQUOTE] = ACTIONS(4992), + [anon_sym_STAR] = ACTIONS(4992), + [anon_sym_PLUS] = ACTIONS(4992), + [anon_sym_COMMA] = ACTIONS(4992), + [anon_sym_DASH] = ACTIONS(4994), + [anon_sym_DOT] = ACTIONS(4994), + [anon_sym_SLASH] = ACTIONS(4992), + [anon_sym_COLON] = ACTIONS(4992), + [anon_sym_SEMI] = ACTIONS(4992), + [anon_sym_EQ] = ACTIONS(4992), + [anon_sym_QMARK] = ACTIONS(4992), + [anon_sym_LBRACK] = ACTIONS(4994), + [anon_sym_BSLASH] = ACTIONS(4994), + [anon_sym_CARET] = ACTIONS(4994), + [anon_sym__] = ACTIONS(4992), + [anon_sym_BQUOTE] = ACTIONS(4992), + [anon_sym_LBRACE] = ACTIONS(4992), + [anon_sym_PIPE] = ACTIONS(4992), + [anon_sym_TILDE] = ACTIONS(4992), + [anon_sym_LPAREN] = ACTIONS(4992), + [anon_sym_RPAREN] = ACTIONS(4992), + [sym__newline_token] = ACTIONS(4992), + [aux_sym_insert_token1] = ACTIONS(4992), + [aux_sym_delete_token1] = ACTIONS(4992), + [aux_sym_highlight_token1] = ACTIONS(4992), + [aux_sym_edit_comment_token1] = ACTIONS(4992), + [anon_sym_CARET_LBRACK] = ACTIONS(4992), + [anon_sym_LBRACK_CARET] = ACTIONS(4992), + [sym_uri_autolink] = ACTIONS(4992), + [sym_email_autolink] = ACTIONS(4992), + [sym__whitespace_ge_2] = ACTIONS(4992), + [aux_sym__whitespace_token1] = ACTIONS(4994), + [sym__word_no_digit] = ACTIONS(4992), + [sym__digits] = ACTIONS(4992), + [anon_sym_DASH_DASH] = ACTIONS(4994), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4992), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4992), + [sym__code_span_start] = ACTIONS(4992), + [sym__emphasis_open_star] = ACTIONS(4992), + [sym__emphasis_open_underscore] = ACTIONS(4992), + [sym__strikeout_open] = ACTIONS(4992), + [sym__latex_span_start] = ACTIONS(4992), + [sym__single_quote_open] = ACTIONS(4992), + [sym__double_quote_open] = ACTIONS(4992), + [sym__double_quote_close] = ACTIONS(4992), + [sym__superscript_open] = ACTIONS(4992), + [sym__subscript_open] = ACTIONS(4992), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4992), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4992), + [sym__cite_author_in_text] = ACTIONS(4992), + [sym__cite_suppress_author] = ACTIONS(4992), + [sym__shortcode_open_escaped] = ACTIONS(4992), + [sym__shortcode_open] = ACTIONS(4992), + [sym__unclosed_span] = ACTIONS(4992), + }, + [STATE(1395)] = { + [sym__backslash_escape] = ACTIONS(5024), + [sym_entity_reference] = ACTIONS(5024), + [sym_numeric_character_reference] = ACTIONS(5024), + [anon_sym_LT] = ACTIONS(5026), + [anon_sym_GT] = ACTIONS(5024), + [anon_sym_BANG] = ACTIONS(5024), + [anon_sym_DQUOTE] = ACTIONS(5024), + [anon_sym_POUND] = ACTIONS(5024), + [anon_sym_DOLLAR] = ACTIONS(5024), + [anon_sym_PERCENT] = ACTIONS(5024), + [anon_sym_AMP] = ACTIONS(5026), + [anon_sym_SQUOTE] = ACTIONS(5024), + [anon_sym_STAR] = ACTIONS(5024), + [anon_sym_PLUS] = ACTIONS(5024), + [anon_sym_COMMA] = ACTIONS(5024), + [anon_sym_DASH] = ACTIONS(5026), + [anon_sym_DOT] = ACTIONS(5026), + [anon_sym_SLASH] = ACTIONS(5024), + [anon_sym_COLON] = ACTIONS(5024), + [anon_sym_SEMI] = ACTIONS(5024), + [anon_sym_EQ] = ACTIONS(5024), + [anon_sym_QMARK] = ACTIONS(5024), + [anon_sym_LBRACK] = ACTIONS(5026), + [anon_sym_BSLASH] = ACTIONS(5026), + [anon_sym_CARET] = ACTIONS(5026), + [anon_sym__] = ACTIONS(5024), + [anon_sym_BQUOTE] = ACTIONS(5024), + [anon_sym_LBRACE] = ACTIONS(5024), + [anon_sym_PIPE] = ACTIONS(5024), + [anon_sym_TILDE] = ACTIONS(5024), + [anon_sym_LPAREN] = ACTIONS(5024), + [anon_sym_RPAREN] = ACTIONS(5024), + [sym__newline_token] = ACTIONS(5024), + [aux_sym_insert_token1] = ACTIONS(5024), + [aux_sym_delete_token1] = ACTIONS(5024), + [aux_sym_highlight_token1] = ACTIONS(5024), + [aux_sym_edit_comment_token1] = ACTIONS(5024), + [anon_sym_CARET_LBRACK] = ACTIONS(5024), + [anon_sym_LBRACK_CARET] = ACTIONS(5024), + [sym_uri_autolink] = ACTIONS(5024), + [sym_email_autolink] = ACTIONS(5024), + [sym__whitespace_ge_2] = ACTIONS(5024), + [aux_sym__whitespace_token1] = ACTIONS(5026), + [sym__word_no_digit] = ACTIONS(5024), + [sym__digits] = ACTIONS(5024), + [anon_sym_DASH_DASH] = ACTIONS(5026), + [anon_sym_DASH_DASH_DASH] = ACTIONS(5024), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5024), + [sym__code_span_start] = ACTIONS(5024), + [sym__emphasis_open_star] = ACTIONS(5024), + [sym__emphasis_open_underscore] = ACTIONS(5024), + [sym__strikeout_open] = ACTIONS(5024), + [sym__latex_span_start] = ACTIONS(5024), + [sym__single_quote_open] = ACTIONS(5024), + [sym__double_quote_open] = ACTIONS(5024), + [sym__double_quote_close] = ACTIONS(5024), + [sym__superscript_open] = ACTIONS(5024), + [sym__subscript_open] = ACTIONS(5024), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5024), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5024), + [sym__cite_author_in_text] = ACTIONS(5024), + [sym__cite_suppress_author] = ACTIONS(5024), + [sym__shortcode_open_escaped] = ACTIONS(5024), + [sym__shortcode_open] = ACTIONS(5024), + [sym__unclosed_span] = ACTIONS(5024), + }, + [STATE(1396)] = { + [sym__backslash_escape] = ACTIONS(4996), + [sym_entity_reference] = ACTIONS(4996), + [sym_numeric_character_reference] = ACTIONS(4996), + [anon_sym_LT] = ACTIONS(4998), + [anon_sym_GT] = ACTIONS(4996), + [anon_sym_BANG] = ACTIONS(4996), + [anon_sym_DQUOTE] = ACTIONS(4996), + [anon_sym_POUND] = ACTIONS(4996), + [anon_sym_DOLLAR] = ACTIONS(4996), + [anon_sym_PERCENT] = ACTIONS(4996), + [anon_sym_AMP] = ACTIONS(4998), + [anon_sym_SQUOTE] = ACTIONS(4996), + [anon_sym_STAR] = ACTIONS(4996), + [anon_sym_PLUS] = ACTIONS(4996), + [anon_sym_COMMA] = ACTIONS(4996), + [anon_sym_DASH] = ACTIONS(4998), + [anon_sym_DOT] = ACTIONS(4998), + [anon_sym_SLASH] = ACTIONS(4996), + [anon_sym_COLON] = ACTIONS(4996), + [anon_sym_SEMI] = ACTIONS(4996), + [anon_sym_EQ] = ACTIONS(4996), + [anon_sym_QMARK] = ACTIONS(4996), + [anon_sym_LBRACK] = ACTIONS(4998), + [anon_sym_BSLASH] = ACTIONS(4998), + [anon_sym_CARET] = ACTIONS(4998), + [anon_sym__] = ACTIONS(4996), + [anon_sym_BQUOTE] = ACTIONS(4996), + [anon_sym_LBRACE] = ACTIONS(4996), + [anon_sym_PIPE] = ACTIONS(4996), + [anon_sym_TILDE] = ACTIONS(4996), + [anon_sym_LPAREN] = ACTIONS(4996), + [anon_sym_RPAREN] = ACTIONS(4996), + [sym__newline_token] = ACTIONS(4996), + [aux_sym_insert_token1] = ACTIONS(4996), + [aux_sym_delete_token1] = ACTIONS(4996), + [aux_sym_highlight_token1] = ACTIONS(4996), + [aux_sym_edit_comment_token1] = ACTIONS(4996), + [anon_sym_CARET_LBRACK] = ACTIONS(4996), + [anon_sym_LBRACK_CARET] = ACTIONS(4996), + [sym_uri_autolink] = ACTIONS(4996), + [sym_email_autolink] = ACTIONS(4996), + [sym__whitespace_ge_2] = ACTIONS(4996), + [aux_sym__whitespace_token1] = ACTIONS(4998), + [sym__word_no_digit] = ACTIONS(4996), + [sym__digits] = ACTIONS(4996), + [anon_sym_DASH_DASH] = ACTIONS(4998), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4996), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4996), + [sym__code_span_start] = ACTIONS(4996), + [sym__emphasis_open_star] = ACTIONS(4996), + [sym__emphasis_open_underscore] = ACTIONS(4996), + [sym__emphasis_close_underscore] = ACTIONS(4996), + [sym__strikeout_open] = ACTIONS(4996), + [sym__latex_span_start] = ACTIONS(4996), + [sym__single_quote_open] = ACTIONS(4996), + [sym__double_quote_open] = ACTIONS(4996), + [sym__superscript_open] = ACTIONS(4996), + [sym__subscript_open] = ACTIONS(4996), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4996), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4996), + [sym__cite_author_in_text] = ACTIONS(4996), + [sym__cite_suppress_author] = ACTIONS(4996), + [sym__shortcode_open_escaped] = ACTIONS(4996), + [sym__shortcode_open] = ACTIONS(4996), + [sym__unclosed_span] = ACTIONS(4996), + }, + [STATE(1397)] = { + [sym__backslash_escape] = ACTIONS(5000), + [sym_entity_reference] = ACTIONS(5000), + [sym_numeric_character_reference] = ACTIONS(5000), + [anon_sym_LT] = ACTIONS(5002), + [anon_sym_GT] = ACTIONS(5000), + [anon_sym_BANG] = ACTIONS(5000), + [anon_sym_DQUOTE] = ACTIONS(5000), + [anon_sym_POUND] = ACTIONS(5000), + [anon_sym_DOLLAR] = ACTIONS(5000), + [anon_sym_PERCENT] = ACTIONS(5000), + [anon_sym_AMP] = ACTIONS(5002), + [anon_sym_SQUOTE] = ACTIONS(5000), + [anon_sym_STAR] = ACTIONS(5000), + [anon_sym_PLUS] = ACTIONS(5000), + [anon_sym_COMMA] = ACTIONS(5000), + [anon_sym_DASH] = ACTIONS(5002), + [anon_sym_DOT] = ACTIONS(5002), + [anon_sym_SLASH] = ACTIONS(5000), + [anon_sym_COLON] = ACTIONS(5000), + [anon_sym_SEMI] = ACTIONS(5000), + [anon_sym_EQ] = ACTIONS(5000), + [anon_sym_QMARK] = ACTIONS(5000), + [anon_sym_LBRACK] = ACTIONS(5002), + [anon_sym_BSLASH] = ACTIONS(5002), + [anon_sym_CARET] = ACTIONS(5002), + [anon_sym__] = ACTIONS(5000), + [anon_sym_BQUOTE] = ACTIONS(5000), + [anon_sym_LBRACE] = ACTIONS(5000), + [anon_sym_PIPE] = ACTIONS(5000), + [anon_sym_TILDE] = ACTIONS(5000), + [anon_sym_LPAREN] = ACTIONS(5000), + [anon_sym_RPAREN] = ACTIONS(5000), + [sym__newline_token] = ACTIONS(5000), + [aux_sym_insert_token1] = ACTIONS(5000), + [aux_sym_delete_token1] = ACTIONS(5000), + [aux_sym_highlight_token1] = ACTIONS(5000), + [aux_sym_edit_comment_token1] = ACTIONS(5000), + [anon_sym_CARET_LBRACK] = ACTIONS(5000), + [anon_sym_LBRACK_CARET] = ACTIONS(5000), + [sym_uri_autolink] = ACTIONS(5000), + [sym_email_autolink] = ACTIONS(5000), + [sym__whitespace_ge_2] = ACTIONS(5000), + [aux_sym__whitespace_token1] = ACTIONS(5002), + [sym__word_no_digit] = ACTIONS(5000), + [sym__digits] = ACTIONS(5000), + [anon_sym_DASH_DASH] = ACTIONS(5002), + [anon_sym_DASH_DASH_DASH] = ACTIONS(5000), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5000), + [sym__code_span_start] = ACTIONS(5000), + [sym__emphasis_open_star] = ACTIONS(5000), + [sym__emphasis_open_underscore] = ACTIONS(5000), + [sym__emphasis_close_underscore] = ACTIONS(5000), + [sym__strikeout_open] = ACTIONS(5000), + [sym__latex_span_start] = ACTIONS(5000), + [sym__single_quote_open] = ACTIONS(5000), + [sym__double_quote_open] = ACTIONS(5000), + [sym__superscript_open] = ACTIONS(5000), + [sym__subscript_open] = ACTIONS(5000), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5000), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5000), + [sym__cite_author_in_text] = ACTIONS(5000), + [sym__cite_suppress_author] = ACTIONS(5000), + [sym__shortcode_open_escaped] = ACTIONS(5000), + [sym__shortcode_open] = ACTIONS(5000), + [sym__unclosed_span] = ACTIONS(5000), + }, + [STATE(1398)] = { + [sym__backslash_escape] = ACTIONS(5004), + [sym_entity_reference] = ACTIONS(5004), + [sym_numeric_character_reference] = ACTIONS(5004), + [anon_sym_LT] = ACTIONS(5006), + [anon_sym_GT] = ACTIONS(5004), + [anon_sym_BANG] = ACTIONS(5004), + [anon_sym_DQUOTE] = ACTIONS(5004), + [anon_sym_POUND] = ACTIONS(5004), + [anon_sym_DOLLAR] = ACTIONS(5004), + [anon_sym_PERCENT] = ACTIONS(5004), + [anon_sym_AMP] = ACTIONS(5006), + [anon_sym_SQUOTE] = ACTIONS(5004), + [anon_sym_STAR] = ACTIONS(5004), + [anon_sym_PLUS] = ACTIONS(5004), + [anon_sym_COMMA] = ACTIONS(5004), + [anon_sym_DASH] = ACTIONS(5006), + [anon_sym_DOT] = ACTIONS(5006), + [anon_sym_SLASH] = ACTIONS(5004), + [anon_sym_COLON] = ACTIONS(5004), + [anon_sym_SEMI] = ACTIONS(5004), + [anon_sym_EQ] = ACTIONS(5004), + [anon_sym_QMARK] = ACTIONS(5004), + [anon_sym_LBRACK] = ACTIONS(5006), + [anon_sym_BSLASH] = ACTIONS(5006), + [anon_sym_CARET] = ACTIONS(5006), + [anon_sym__] = ACTIONS(5004), + [anon_sym_BQUOTE] = ACTIONS(5004), + [anon_sym_LBRACE] = ACTIONS(5004), + [anon_sym_PIPE] = ACTIONS(5004), + [anon_sym_TILDE] = ACTIONS(5004), + [anon_sym_LPAREN] = ACTIONS(5004), + [anon_sym_RPAREN] = ACTIONS(5004), + [sym__newline_token] = ACTIONS(5004), + [aux_sym_insert_token1] = ACTIONS(5004), + [aux_sym_delete_token1] = ACTIONS(5004), + [aux_sym_highlight_token1] = ACTIONS(5004), + [aux_sym_edit_comment_token1] = ACTIONS(5004), + [anon_sym_CARET_LBRACK] = ACTIONS(5004), + [anon_sym_LBRACK_CARET] = ACTIONS(5004), + [sym_uri_autolink] = ACTIONS(5004), + [sym_email_autolink] = ACTIONS(5004), + [sym__whitespace_ge_2] = ACTIONS(5004), + [aux_sym__whitespace_token1] = ACTIONS(5006), + [sym__word_no_digit] = ACTIONS(5004), + [sym__digits] = ACTIONS(5004), + [anon_sym_DASH_DASH] = ACTIONS(5006), + [anon_sym_DASH_DASH_DASH] = ACTIONS(5004), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5004), + [sym__code_span_start] = ACTIONS(5004), + [sym__emphasis_open_star] = ACTIONS(5004), + [sym__emphasis_open_underscore] = ACTIONS(5004), + [sym__emphasis_close_underscore] = ACTIONS(5004), + [sym__strikeout_open] = ACTIONS(5004), + [sym__latex_span_start] = ACTIONS(5004), + [sym__single_quote_open] = ACTIONS(5004), + [sym__double_quote_open] = ACTIONS(5004), + [sym__superscript_open] = ACTIONS(5004), + [sym__subscript_open] = ACTIONS(5004), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5004), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5004), + [sym__cite_author_in_text] = ACTIONS(5004), + [sym__cite_suppress_author] = ACTIONS(5004), + [sym__shortcode_open_escaped] = ACTIONS(5004), + [sym__shortcode_open] = ACTIONS(5004), + [sym__unclosed_span] = ACTIONS(5004), + }, + [STATE(1399)] = { + [sym__backslash_escape] = ACTIONS(5008), + [sym_entity_reference] = ACTIONS(5008), + [sym_numeric_character_reference] = ACTIONS(5008), + [anon_sym_LT] = ACTIONS(5010), + [anon_sym_GT] = ACTIONS(5008), + [anon_sym_BANG] = ACTIONS(5008), + [anon_sym_DQUOTE] = ACTIONS(5008), + [anon_sym_POUND] = ACTIONS(5008), + [anon_sym_DOLLAR] = ACTIONS(5008), + [anon_sym_PERCENT] = ACTIONS(5008), + [anon_sym_AMP] = ACTIONS(5010), + [anon_sym_SQUOTE] = ACTIONS(5008), + [anon_sym_STAR] = ACTIONS(5008), + [anon_sym_PLUS] = ACTIONS(5008), + [anon_sym_COMMA] = ACTIONS(5008), + [anon_sym_DASH] = ACTIONS(5010), + [anon_sym_DOT] = ACTIONS(5010), + [anon_sym_SLASH] = ACTIONS(5008), + [anon_sym_COLON] = ACTIONS(5008), + [anon_sym_SEMI] = ACTIONS(5008), + [anon_sym_EQ] = ACTIONS(5008), + [anon_sym_QMARK] = ACTIONS(5008), + [anon_sym_LBRACK] = ACTIONS(5010), + [anon_sym_BSLASH] = ACTIONS(5010), + [anon_sym_CARET] = ACTIONS(5010), + [anon_sym__] = ACTIONS(5008), + [anon_sym_BQUOTE] = ACTIONS(5008), + [anon_sym_LBRACE] = ACTIONS(5008), + [anon_sym_PIPE] = ACTIONS(5008), + [anon_sym_TILDE] = ACTIONS(5008), + [anon_sym_LPAREN] = ACTIONS(5008), + [anon_sym_RPAREN] = ACTIONS(5008), + [sym__newline_token] = ACTIONS(5008), + [aux_sym_insert_token1] = ACTIONS(5008), + [aux_sym_delete_token1] = ACTIONS(5008), + [aux_sym_highlight_token1] = ACTIONS(5008), + [aux_sym_edit_comment_token1] = ACTIONS(5008), + [anon_sym_CARET_LBRACK] = ACTIONS(5008), + [anon_sym_LBRACK_CARET] = ACTIONS(5008), + [sym_uri_autolink] = ACTIONS(5008), + [sym_email_autolink] = ACTIONS(5008), + [sym__whitespace_ge_2] = ACTIONS(5008), + [aux_sym__whitespace_token1] = ACTIONS(5010), + [sym__word_no_digit] = ACTIONS(5008), + [sym__digits] = ACTIONS(5008), + [anon_sym_DASH_DASH] = ACTIONS(5010), + [anon_sym_DASH_DASH_DASH] = ACTIONS(5008), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5008), + [sym__code_span_start] = ACTIONS(5008), + [sym__emphasis_open_star] = ACTIONS(5008), + [sym__emphasis_open_underscore] = ACTIONS(5008), + [sym__emphasis_close_underscore] = ACTIONS(5008), + [sym__strikeout_open] = ACTIONS(5008), + [sym__latex_span_start] = ACTIONS(5008), + [sym__single_quote_open] = ACTIONS(5008), + [sym__double_quote_open] = ACTIONS(5008), + [sym__superscript_open] = ACTIONS(5008), + [sym__subscript_open] = ACTIONS(5008), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5008), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5008), + [sym__cite_author_in_text] = ACTIONS(5008), + [sym__cite_suppress_author] = ACTIONS(5008), + [sym__shortcode_open_escaped] = ACTIONS(5008), + [sym__shortcode_open] = ACTIONS(5008), + [sym__unclosed_span] = ACTIONS(5008), + }, + [STATE(1400)] = { + [sym__backslash_escape] = ACTIONS(5012), + [sym_entity_reference] = ACTIONS(5012), + [sym_numeric_character_reference] = ACTIONS(5012), + [anon_sym_LT] = ACTIONS(5014), + [anon_sym_GT] = ACTIONS(5012), + [anon_sym_BANG] = ACTIONS(5012), + [anon_sym_DQUOTE] = ACTIONS(5012), + [anon_sym_POUND] = ACTIONS(5012), + [anon_sym_DOLLAR] = ACTIONS(5012), + [anon_sym_PERCENT] = ACTIONS(5012), + [anon_sym_AMP] = ACTIONS(5014), + [anon_sym_SQUOTE] = ACTIONS(5012), + [anon_sym_STAR] = ACTIONS(5012), + [anon_sym_PLUS] = ACTIONS(5012), + [anon_sym_COMMA] = ACTIONS(5012), + [anon_sym_DASH] = ACTIONS(5014), + [anon_sym_DOT] = ACTIONS(5014), + [anon_sym_SLASH] = ACTIONS(5012), + [anon_sym_COLON] = ACTIONS(5012), + [anon_sym_SEMI] = ACTIONS(5012), + [anon_sym_EQ] = ACTIONS(5012), + [anon_sym_QMARK] = ACTIONS(5012), + [anon_sym_LBRACK] = ACTIONS(5014), + [anon_sym_BSLASH] = ACTIONS(5014), + [anon_sym_CARET] = ACTIONS(5014), + [anon_sym__] = ACTIONS(5012), + [anon_sym_BQUOTE] = ACTIONS(5012), + [anon_sym_LBRACE] = ACTIONS(5012), + [anon_sym_PIPE] = ACTIONS(5012), + [anon_sym_TILDE] = ACTIONS(5012), + [anon_sym_LPAREN] = ACTIONS(5012), + [anon_sym_RPAREN] = ACTIONS(5012), + [sym__newline_token] = ACTIONS(5012), + [aux_sym_insert_token1] = ACTIONS(5012), + [aux_sym_delete_token1] = ACTIONS(5012), + [aux_sym_highlight_token1] = ACTIONS(5012), + [aux_sym_edit_comment_token1] = ACTIONS(5012), + [anon_sym_CARET_LBRACK] = ACTIONS(5012), + [anon_sym_LBRACK_CARET] = ACTIONS(5012), + [sym_uri_autolink] = ACTIONS(5012), + [sym_email_autolink] = ACTIONS(5012), + [sym__whitespace_ge_2] = ACTIONS(5012), + [aux_sym__whitespace_token1] = ACTIONS(5014), + [sym__word_no_digit] = ACTIONS(5012), + [sym__digits] = ACTIONS(5012), + [anon_sym_DASH_DASH] = ACTIONS(5014), + [anon_sym_DASH_DASH_DASH] = ACTIONS(5012), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5012), + [sym__code_span_start] = ACTIONS(5012), + [sym__emphasis_open_star] = ACTIONS(5012), + [sym__emphasis_open_underscore] = ACTIONS(5012), + [sym__emphasis_close_underscore] = ACTIONS(5012), + [sym__strikeout_open] = ACTIONS(5012), + [sym__latex_span_start] = ACTIONS(5012), + [sym__single_quote_open] = ACTIONS(5012), + [sym__double_quote_open] = ACTIONS(5012), + [sym__superscript_open] = ACTIONS(5012), + [sym__subscript_open] = ACTIONS(5012), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5012), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5012), + [sym__cite_author_in_text] = ACTIONS(5012), + [sym__cite_suppress_author] = ACTIONS(5012), + [sym__shortcode_open_escaped] = ACTIONS(5012), + [sym__shortcode_open] = ACTIONS(5012), + [sym__unclosed_span] = ACTIONS(5012), + }, + [STATE(1401)] = { + [sym__backslash_escape] = ACTIONS(4948), + [sym_entity_reference] = ACTIONS(4948), + [sym_numeric_character_reference] = ACTIONS(4948), + [anon_sym_LT] = ACTIONS(4950), + [anon_sym_GT] = ACTIONS(4948), + [anon_sym_BANG] = ACTIONS(4948), + [anon_sym_DQUOTE] = ACTIONS(4948), + [anon_sym_POUND] = ACTIONS(4948), + [anon_sym_DOLLAR] = ACTIONS(4948), + [anon_sym_PERCENT] = ACTIONS(4948), + [anon_sym_AMP] = ACTIONS(4950), + [anon_sym_SQUOTE] = ACTIONS(4948), + [anon_sym_STAR] = ACTIONS(4948), + [anon_sym_PLUS] = ACTIONS(4948), + [anon_sym_COMMA] = ACTIONS(4948), + [anon_sym_DASH] = ACTIONS(4950), + [anon_sym_DOT] = ACTIONS(4950), + [anon_sym_SLASH] = ACTIONS(4948), + [anon_sym_COLON] = ACTIONS(4948), + [anon_sym_SEMI] = ACTIONS(4948), + [anon_sym_EQ] = ACTIONS(4948), + [anon_sym_QMARK] = ACTIONS(4948), + [anon_sym_LBRACK] = ACTIONS(4950), + [anon_sym_BSLASH] = ACTIONS(4950), + [anon_sym_CARET] = ACTIONS(4950), + [anon_sym__] = ACTIONS(4948), + [anon_sym_BQUOTE] = ACTIONS(4948), + [anon_sym_LBRACE] = ACTIONS(4948), + [anon_sym_PIPE] = ACTIONS(4948), + [anon_sym_TILDE] = ACTIONS(4948), + [anon_sym_LPAREN] = ACTIONS(4948), + [anon_sym_RPAREN] = ACTIONS(4948), + [sym__newline_token] = ACTIONS(4948), + [aux_sym_insert_token1] = ACTIONS(4948), + [aux_sym_delete_token1] = ACTIONS(4948), + [aux_sym_highlight_token1] = ACTIONS(4948), + [aux_sym_edit_comment_token1] = ACTIONS(4948), + [anon_sym_CARET_LBRACK] = ACTIONS(4948), + [anon_sym_LBRACK_CARET] = ACTIONS(4948), + [sym_uri_autolink] = ACTIONS(4948), + [sym_email_autolink] = ACTIONS(4948), + [sym__whitespace_ge_2] = ACTIONS(4948), + [aux_sym__whitespace_token1] = ACTIONS(4950), + [sym__word_no_digit] = ACTIONS(4948), + [sym__digits] = ACTIONS(4948), + [anon_sym_DASH_DASH] = ACTIONS(4950), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4948), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4948), + [sym__code_span_start] = ACTIONS(4948), + [sym__emphasis_open_star] = ACTIONS(4948), + [sym__emphasis_open_underscore] = ACTIONS(4948), + [sym__emphasis_close_underscore] = ACTIONS(4948), + [sym__strikeout_open] = ACTIONS(4948), + [sym__latex_span_start] = ACTIONS(4948), + [sym__single_quote_open] = ACTIONS(4948), + [sym__double_quote_open] = ACTIONS(4948), + [sym__superscript_open] = ACTIONS(4948), + [sym__subscript_open] = ACTIONS(4948), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4948), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4948), + [sym__cite_author_in_text] = ACTIONS(4948), + [sym__cite_suppress_author] = ACTIONS(4948), + [sym__shortcode_open_escaped] = ACTIONS(4948), + [sym__shortcode_open] = ACTIONS(4948), + [sym__unclosed_span] = ACTIONS(4948), + }, + [STATE(1402)] = { + [sym__backslash_escape] = ACTIONS(5016), + [sym_entity_reference] = ACTIONS(5016), + [sym_numeric_character_reference] = ACTIONS(5016), + [anon_sym_LT] = ACTIONS(5018), + [anon_sym_GT] = ACTIONS(5016), + [anon_sym_BANG] = ACTIONS(5016), + [anon_sym_DQUOTE] = ACTIONS(5016), + [anon_sym_POUND] = ACTIONS(5016), + [anon_sym_DOLLAR] = ACTIONS(5016), + [anon_sym_PERCENT] = ACTIONS(5016), + [anon_sym_AMP] = ACTIONS(5018), + [anon_sym_SQUOTE] = ACTIONS(5016), + [anon_sym_STAR] = ACTIONS(5016), + [anon_sym_PLUS] = ACTIONS(5016), + [anon_sym_COMMA] = ACTIONS(5016), + [anon_sym_DASH] = ACTIONS(5018), + [anon_sym_DOT] = ACTIONS(5018), + [anon_sym_SLASH] = ACTIONS(5016), + [anon_sym_COLON] = ACTIONS(5016), + [anon_sym_SEMI] = ACTIONS(5016), + [anon_sym_EQ] = ACTIONS(5016), + [anon_sym_QMARK] = ACTIONS(5016), + [anon_sym_LBRACK] = ACTIONS(5018), + [anon_sym_BSLASH] = ACTIONS(5018), + [anon_sym_CARET] = ACTIONS(5018), + [anon_sym__] = ACTIONS(5016), + [anon_sym_BQUOTE] = ACTIONS(5016), + [anon_sym_LBRACE] = ACTIONS(5016), + [anon_sym_PIPE] = ACTIONS(5016), + [anon_sym_TILDE] = ACTIONS(5016), + [anon_sym_LPAREN] = ACTIONS(5016), + [anon_sym_RPAREN] = ACTIONS(5016), + [sym__newline_token] = ACTIONS(5016), + [aux_sym_insert_token1] = ACTIONS(5016), + [aux_sym_delete_token1] = ACTIONS(5016), + [aux_sym_highlight_token1] = ACTIONS(5016), + [aux_sym_edit_comment_token1] = ACTIONS(5016), + [anon_sym_CARET_LBRACK] = ACTIONS(5016), + [anon_sym_LBRACK_CARET] = ACTIONS(5016), + [sym_uri_autolink] = ACTIONS(5016), + [sym_email_autolink] = ACTIONS(5016), + [sym__whitespace_ge_2] = ACTIONS(5016), + [aux_sym__whitespace_token1] = ACTIONS(5018), + [sym__word_no_digit] = ACTIONS(5016), + [sym__digits] = ACTIONS(5016), + [anon_sym_DASH_DASH] = ACTIONS(5018), + [anon_sym_DASH_DASH_DASH] = ACTIONS(5016), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5016), + [sym__code_span_start] = ACTIONS(5016), + [sym__emphasis_open_star] = ACTIONS(5016), + [sym__emphasis_open_underscore] = ACTIONS(5016), + [sym__emphasis_close_underscore] = ACTIONS(5016), + [sym__strikeout_open] = ACTIONS(5016), + [sym__latex_span_start] = ACTIONS(5016), + [sym__single_quote_open] = ACTIONS(5016), + [sym__double_quote_open] = ACTIONS(5016), + [sym__superscript_open] = ACTIONS(5016), + [sym__subscript_open] = ACTIONS(5016), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5016), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5016), + [sym__cite_author_in_text] = ACTIONS(5016), + [sym__cite_suppress_author] = ACTIONS(5016), + [sym__shortcode_open_escaped] = ACTIONS(5016), + [sym__shortcode_open] = ACTIONS(5016), + [sym__unclosed_span] = ACTIONS(5016), + }, + [STATE(1403)] = { + [sym__backslash_escape] = ACTIONS(5020), + [sym_entity_reference] = ACTIONS(5020), + [sym_numeric_character_reference] = ACTIONS(5020), + [anon_sym_LT] = ACTIONS(5022), + [anon_sym_GT] = ACTIONS(5020), + [anon_sym_BANG] = ACTIONS(5020), + [anon_sym_DQUOTE] = ACTIONS(5020), + [anon_sym_POUND] = ACTIONS(5020), + [anon_sym_DOLLAR] = ACTIONS(5020), + [anon_sym_PERCENT] = ACTIONS(5020), + [anon_sym_AMP] = ACTIONS(5022), + [anon_sym_SQUOTE] = ACTIONS(5020), + [anon_sym_STAR] = ACTIONS(5020), + [anon_sym_PLUS] = ACTIONS(5020), + [anon_sym_COMMA] = ACTIONS(5020), + [anon_sym_DASH] = ACTIONS(5022), + [anon_sym_DOT] = ACTIONS(5022), + [anon_sym_SLASH] = ACTIONS(5020), + [anon_sym_COLON] = ACTIONS(5020), + [anon_sym_SEMI] = ACTIONS(5020), + [anon_sym_EQ] = ACTIONS(5020), + [anon_sym_QMARK] = ACTIONS(5020), + [anon_sym_LBRACK] = ACTIONS(5022), + [anon_sym_BSLASH] = ACTIONS(5022), + [anon_sym_CARET] = ACTIONS(5022), + [anon_sym__] = ACTIONS(5020), + [anon_sym_BQUOTE] = ACTIONS(5020), + [anon_sym_LBRACE] = ACTIONS(5020), + [anon_sym_PIPE] = ACTIONS(5020), + [anon_sym_TILDE] = ACTIONS(5020), + [anon_sym_LPAREN] = ACTIONS(5020), + [anon_sym_RPAREN] = ACTIONS(5020), + [sym__newline_token] = ACTIONS(5020), + [aux_sym_insert_token1] = ACTIONS(5020), + [aux_sym_delete_token1] = ACTIONS(5020), + [aux_sym_highlight_token1] = ACTIONS(5020), + [aux_sym_edit_comment_token1] = ACTIONS(5020), + [anon_sym_CARET_LBRACK] = ACTIONS(5020), + [anon_sym_LBRACK_CARET] = ACTIONS(5020), + [sym_uri_autolink] = ACTIONS(5020), + [sym_email_autolink] = ACTIONS(5020), + [sym__whitespace_ge_2] = ACTIONS(5020), + [aux_sym__whitespace_token1] = ACTIONS(5022), + [sym__word_no_digit] = ACTIONS(5020), + [sym__digits] = ACTIONS(5020), + [anon_sym_DASH_DASH] = ACTIONS(5022), + [anon_sym_DASH_DASH_DASH] = ACTIONS(5020), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5020), + [sym__code_span_start] = ACTIONS(5020), + [sym__emphasis_open_star] = ACTIONS(5020), + [sym__emphasis_open_underscore] = ACTIONS(5020), + [sym__emphasis_close_underscore] = ACTIONS(5020), + [sym__strikeout_open] = ACTIONS(5020), + [sym__latex_span_start] = ACTIONS(5020), + [sym__single_quote_open] = ACTIONS(5020), + [sym__double_quote_open] = ACTIONS(5020), + [sym__superscript_open] = ACTIONS(5020), + [sym__subscript_open] = ACTIONS(5020), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5020), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5020), + [sym__cite_author_in_text] = ACTIONS(5020), + [sym__cite_suppress_author] = ACTIONS(5020), + [sym__shortcode_open_escaped] = ACTIONS(5020), + [sym__shortcode_open] = ACTIONS(5020), + [sym__unclosed_span] = ACTIONS(5020), + }, + [STATE(1404)] = { + [sym__backslash_escape] = ACTIONS(5040), + [sym_entity_reference] = ACTIONS(5040), + [sym_numeric_character_reference] = ACTIONS(5040), + [anon_sym_LT] = ACTIONS(5042), + [anon_sym_GT] = ACTIONS(5040), + [anon_sym_BANG] = ACTIONS(5040), + [anon_sym_DQUOTE] = ACTIONS(5040), + [anon_sym_POUND] = ACTIONS(5040), + [anon_sym_DOLLAR] = ACTIONS(5040), + [anon_sym_PERCENT] = ACTIONS(5040), + [anon_sym_AMP] = ACTIONS(5042), + [anon_sym_SQUOTE] = ACTIONS(5040), + [anon_sym_STAR] = ACTIONS(5040), + [anon_sym_PLUS] = ACTIONS(5040), + [anon_sym_COMMA] = ACTIONS(5040), + [anon_sym_DASH] = ACTIONS(5042), + [anon_sym_DOT] = ACTIONS(5042), + [anon_sym_SLASH] = ACTIONS(5040), + [anon_sym_COLON] = ACTIONS(5040), + [anon_sym_SEMI] = ACTIONS(5040), + [anon_sym_EQ] = ACTIONS(5040), + [anon_sym_QMARK] = ACTIONS(5040), + [anon_sym_LBRACK] = ACTIONS(5042), + [anon_sym_BSLASH] = ACTIONS(5042), + [anon_sym_CARET] = ACTIONS(5042), + [anon_sym__] = ACTIONS(5040), + [anon_sym_BQUOTE] = ACTIONS(5040), + [anon_sym_LBRACE] = ACTIONS(5040), + [anon_sym_PIPE] = ACTIONS(5040), + [anon_sym_TILDE] = ACTIONS(5040), + [anon_sym_LPAREN] = ACTIONS(5040), + [anon_sym_RPAREN] = ACTIONS(5040), + [sym__newline_token] = ACTIONS(5040), + [aux_sym_insert_token1] = ACTIONS(5040), + [aux_sym_delete_token1] = ACTIONS(5040), + [aux_sym_highlight_token1] = ACTIONS(5040), + [aux_sym_edit_comment_token1] = ACTIONS(5040), + [anon_sym_CARET_LBRACK] = ACTIONS(5040), + [anon_sym_LBRACK_CARET] = ACTIONS(5040), + [sym_uri_autolink] = ACTIONS(5040), + [sym_email_autolink] = ACTIONS(5040), + [sym__whitespace_ge_2] = ACTIONS(5040), + [aux_sym__whitespace_token1] = ACTIONS(5042), + [sym__word_no_digit] = ACTIONS(5040), + [sym__digits] = ACTIONS(5040), + [anon_sym_DASH_DASH] = ACTIONS(5042), + [anon_sym_DASH_DASH_DASH] = ACTIONS(5040), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5040), + [sym__code_span_start] = ACTIONS(5040), + [sym__emphasis_open_star] = ACTIONS(5040), + [sym__emphasis_open_underscore] = ACTIONS(5040), + [sym__strikeout_open] = ACTIONS(5040), + [sym__latex_span_start] = ACTIONS(5040), + [sym__single_quote_open] = ACTIONS(5040), + [sym__double_quote_open] = ACTIONS(5040), + [sym__double_quote_close] = ACTIONS(5040), + [sym__superscript_open] = ACTIONS(5040), + [sym__subscript_open] = ACTIONS(5040), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5040), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5040), + [sym__cite_author_in_text] = ACTIONS(5040), + [sym__cite_suppress_author] = ACTIONS(5040), + [sym__shortcode_open_escaped] = ACTIONS(5040), + [sym__shortcode_open] = ACTIONS(5040), + [sym__unclosed_span] = ACTIONS(5040), + }, + [STATE(1405)] = { + [sym__backslash_escape] = ACTIONS(4936), + [sym_entity_reference] = ACTIONS(4936), + [sym_numeric_character_reference] = ACTIONS(4936), + [anon_sym_LT] = ACTIONS(4938), + [anon_sym_GT] = ACTIONS(4936), + [anon_sym_BANG] = ACTIONS(4936), + [anon_sym_DQUOTE] = ACTIONS(4936), + [anon_sym_POUND] = ACTIONS(4936), + [anon_sym_DOLLAR] = ACTIONS(4936), + [anon_sym_PERCENT] = ACTIONS(4936), + [anon_sym_AMP] = ACTIONS(4938), + [anon_sym_SQUOTE] = ACTIONS(4936), + [anon_sym_STAR] = ACTIONS(4936), + [anon_sym_PLUS] = ACTIONS(4936), + [anon_sym_COMMA] = ACTIONS(4936), + [anon_sym_DASH] = ACTIONS(4938), + [anon_sym_DOT] = ACTIONS(4938), + [anon_sym_SLASH] = ACTIONS(4936), + [anon_sym_COLON] = ACTIONS(4936), + [anon_sym_SEMI] = ACTIONS(4936), + [anon_sym_EQ] = ACTIONS(4936), + [anon_sym_QMARK] = ACTIONS(4936), + [anon_sym_LBRACK] = ACTIONS(4938), + [anon_sym_BSLASH] = ACTIONS(4938), + [anon_sym_CARET] = ACTIONS(4938), + [anon_sym__] = ACTIONS(4936), + [anon_sym_BQUOTE] = ACTIONS(4936), + [anon_sym_LBRACE] = ACTIONS(4936), + [anon_sym_PIPE] = ACTIONS(4936), + [anon_sym_TILDE] = ACTIONS(4936), + [anon_sym_LPAREN] = ACTIONS(4936), + [anon_sym_RPAREN] = ACTIONS(4936), + [sym__newline_token] = ACTIONS(4936), + [aux_sym_insert_token1] = ACTIONS(4936), + [aux_sym_delete_token1] = ACTIONS(4936), + [aux_sym_highlight_token1] = ACTIONS(4936), + [aux_sym_edit_comment_token1] = ACTIONS(4936), + [anon_sym_CARET_LBRACK] = ACTIONS(4936), + [anon_sym_LBRACK_CARET] = ACTIONS(4936), + [sym_uri_autolink] = ACTIONS(4936), + [sym_email_autolink] = ACTIONS(4936), + [sym__whitespace_ge_2] = ACTIONS(4936), + [aux_sym__whitespace_token1] = ACTIONS(4938), + [sym__word_no_digit] = ACTIONS(4936), + [sym__digits] = ACTIONS(4936), + [anon_sym_DASH_DASH] = ACTIONS(4938), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4936), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4936), + [sym__code_span_start] = ACTIONS(4936), + [sym__emphasis_open_star] = ACTIONS(4936), + [sym__emphasis_open_underscore] = ACTIONS(4936), + [sym__emphasis_close_underscore] = ACTIONS(4936), + [sym__strikeout_open] = ACTIONS(4936), + [sym__latex_span_start] = ACTIONS(4936), + [sym__single_quote_open] = ACTIONS(4936), + [sym__double_quote_open] = ACTIONS(4936), + [sym__superscript_open] = ACTIONS(4936), + [sym__subscript_open] = ACTIONS(4936), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4936), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4936), + [sym__cite_author_in_text] = ACTIONS(4936), + [sym__cite_suppress_author] = ACTIONS(4936), + [sym__shortcode_open_escaped] = ACTIONS(4936), + [sym__shortcode_open] = ACTIONS(4936), + [sym__unclosed_span] = ACTIONS(4936), + }, + [STATE(1406)] = { + [sym__backslash_escape] = ACTIONS(5044), + [sym_entity_reference] = ACTIONS(5044), + [sym_numeric_character_reference] = ACTIONS(5044), + [anon_sym_LT] = ACTIONS(5046), + [anon_sym_GT] = ACTIONS(5044), + [anon_sym_BANG] = ACTIONS(5044), + [anon_sym_DQUOTE] = ACTIONS(5044), + [anon_sym_POUND] = ACTIONS(5044), + [anon_sym_DOLLAR] = ACTIONS(5044), + [anon_sym_PERCENT] = ACTIONS(5044), + [anon_sym_AMP] = ACTIONS(5046), + [anon_sym_SQUOTE] = ACTIONS(5044), + [anon_sym_STAR] = ACTIONS(5044), + [anon_sym_PLUS] = ACTIONS(5044), + [anon_sym_COMMA] = ACTIONS(5044), + [anon_sym_DASH] = ACTIONS(5046), + [anon_sym_DOT] = ACTIONS(5046), + [anon_sym_SLASH] = ACTIONS(5044), + [anon_sym_COLON] = ACTIONS(5044), + [anon_sym_SEMI] = ACTIONS(5044), + [anon_sym_EQ] = ACTIONS(5044), + [anon_sym_QMARK] = ACTIONS(5044), + [anon_sym_LBRACK] = ACTIONS(5046), + [anon_sym_BSLASH] = ACTIONS(5046), + [anon_sym_CARET] = ACTIONS(5046), + [anon_sym__] = ACTIONS(5044), + [anon_sym_BQUOTE] = ACTIONS(5044), + [anon_sym_LBRACE] = ACTIONS(5044), + [anon_sym_PIPE] = ACTIONS(5044), + [anon_sym_TILDE] = ACTIONS(5044), + [anon_sym_LPAREN] = ACTIONS(5044), + [anon_sym_RPAREN] = ACTIONS(5044), + [sym__newline_token] = ACTIONS(5044), + [aux_sym_insert_token1] = ACTIONS(5044), + [aux_sym_delete_token1] = ACTIONS(5044), + [aux_sym_highlight_token1] = ACTIONS(5044), + [aux_sym_edit_comment_token1] = ACTIONS(5044), + [anon_sym_CARET_LBRACK] = ACTIONS(5044), + [anon_sym_LBRACK_CARET] = ACTIONS(5044), + [sym_uri_autolink] = ACTIONS(5044), + [sym_email_autolink] = ACTIONS(5044), + [sym__whitespace_ge_2] = ACTIONS(5044), + [aux_sym__whitespace_token1] = ACTIONS(5046), + [sym__word_no_digit] = ACTIONS(5044), + [sym__digits] = ACTIONS(5044), + [anon_sym_DASH_DASH] = ACTIONS(5046), + [anon_sym_DASH_DASH_DASH] = ACTIONS(5044), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5044), + [sym__code_span_start] = ACTIONS(5044), + [sym__emphasis_open_star] = ACTIONS(5044), + [sym__emphasis_open_underscore] = ACTIONS(5044), + [sym__strikeout_open] = ACTIONS(5044), + [sym__latex_span_start] = ACTIONS(5044), + [sym__single_quote_open] = ACTIONS(5044), + [sym__double_quote_open] = ACTIONS(5044), + [sym__double_quote_close] = ACTIONS(5044), + [sym__superscript_open] = ACTIONS(5044), + [sym__subscript_open] = ACTIONS(5044), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5044), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5044), + [sym__cite_author_in_text] = ACTIONS(5044), + [sym__cite_suppress_author] = ACTIONS(5044), + [sym__shortcode_open_escaped] = ACTIONS(5044), + [sym__shortcode_open] = ACTIONS(5044), + [sym__unclosed_span] = ACTIONS(5044), + }, + [STATE(1407)] = { + [sym__backslash_escape] = ACTIONS(5048), + [sym_entity_reference] = ACTIONS(5048), + [sym_numeric_character_reference] = ACTIONS(5048), + [anon_sym_LT] = ACTIONS(5050), + [anon_sym_GT] = ACTIONS(5048), + [anon_sym_BANG] = ACTIONS(5048), + [anon_sym_DQUOTE] = ACTIONS(5048), + [anon_sym_POUND] = ACTIONS(5048), + [anon_sym_DOLLAR] = ACTIONS(5048), + [anon_sym_PERCENT] = ACTIONS(5048), + [anon_sym_AMP] = ACTIONS(5050), + [anon_sym_SQUOTE] = ACTIONS(5048), + [anon_sym_STAR] = ACTIONS(5048), + [anon_sym_PLUS] = ACTIONS(5048), + [anon_sym_COMMA] = ACTIONS(5048), + [anon_sym_DASH] = ACTIONS(5050), + [anon_sym_DOT] = ACTIONS(5050), + [anon_sym_SLASH] = ACTIONS(5048), + [anon_sym_COLON] = ACTIONS(5048), + [anon_sym_SEMI] = ACTIONS(5048), + [anon_sym_EQ] = ACTIONS(5048), + [anon_sym_QMARK] = ACTIONS(5048), + [anon_sym_LBRACK] = ACTIONS(5050), + [anon_sym_BSLASH] = ACTIONS(5050), + [anon_sym_CARET] = ACTIONS(5050), + [anon_sym__] = ACTIONS(5048), + [anon_sym_BQUOTE] = ACTIONS(5048), + [anon_sym_LBRACE] = ACTIONS(5048), + [anon_sym_PIPE] = ACTIONS(5048), + [anon_sym_TILDE] = ACTIONS(5048), + [anon_sym_LPAREN] = ACTIONS(5048), + [anon_sym_RPAREN] = ACTIONS(5048), + [sym__newline_token] = ACTIONS(5048), + [aux_sym_insert_token1] = ACTIONS(5048), + [aux_sym_delete_token1] = ACTIONS(5048), + [aux_sym_highlight_token1] = ACTIONS(5048), + [aux_sym_edit_comment_token1] = ACTIONS(5048), + [anon_sym_CARET_LBRACK] = ACTIONS(5048), + [anon_sym_LBRACK_CARET] = ACTIONS(5048), + [sym_uri_autolink] = ACTIONS(5048), + [sym_email_autolink] = ACTIONS(5048), + [sym__whitespace_ge_2] = ACTIONS(5048), + [aux_sym__whitespace_token1] = ACTIONS(5050), + [sym__word_no_digit] = ACTIONS(5048), + [sym__digits] = ACTIONS(5048), + [anon_sym_DASH_DASH] = ACTIONS(5050), + [anon_sym_DASH_DASH_DASH] = ACTIONS(5048), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5048), + [sym__code_span_start] = ACTIONS(5048), + [sym__emphasis_open_star] = ACTIONS(5048), + [sym__emphasis_open_underscore] = ACTIONS(5048), + [sym__strikeout_open] = ACTIONS(5048), + [sym__latex_span_start] = ACTIONS(5048), + [sym__single_quote_open] = ACTIONS(5048), + [sym__double_quote_open] = ACTIONS(5048), + [sym__double_quote_close] = ACTIONS(5048), + [sym__superscript_open] = ACTIONS(5048), + [sym__subscript_open] = ACTIONS(5048), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5048), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5048), + [sym__cite_author_in_text] = ACTIONS(5048), + [sym__cite_suppress_author] = ACTIONS(5048), + [sym__shortcode_open_escaped] = ACTIONS(5048), + [sym__shortcode_open] = ACTIONS(5048), + [sym__unclosed_span] = ACTIONS(5048), + }, + [STATE(1408)] = { + [sym__backslash_escape] = ACTIONS(5028), + [sym_entity_reference] = ACTIONS(5028), + [sym_numeric_character_reference] = ACTIONS(5028), + [anon_sym_LT] = ACTIONS(5030), + [anon_sym_GT] = ACTIONS(5028), + [anon_sym_BANG] = ACTIONS(5028), + [anon_sym_DQUOTE] = ACTIONS(5028), + [anon_sym_POUND] = ACTIONS(5028), + [anon_sym_DOLLAR] = ACTIONS(5028), + [anon_sym_PERCENT] = ACTIONS(5028), + [anon_sym_AMP] = ACTIONS(5030), + [anon_sym_SQUOTE] = ACTIONS(5028), + [anon_sym_STAR] = ACTIONS(5028), + [anon_sym_PLUS] = ACTIONS(5028), + [anon_sym_COMMA] = ACTIONS(5028), + [anon_sym_DASH] = ACTIONS(5030), + [anon_sym_DOT] = ACTIONS(5030), + [anon_sym_SLASH] = ACTIONS(5028), + [anon_sym_COLON] = ACTIONS(5028), + [anon_sym_SEMI] = ACTIONS(5028), + [anon_sym_EQ] = ACTIONS(5028), + [anon_sym_QMARK] = ACTIONS(5028), + [anon_sym_LBRACK] = ACTIONS(5030), + [anon_sym_BSLASH] = ACTIONS(5030), + [anon_sym_CARET] = ACTIONS(5030), + [anon_sym__] = ACTIONS(5028), + [anon_sym_BQUOTE] = ACTIONS(5028), + [anon_sym_LBRACE] = ACTIONS(5028), + [anon_sym_PIPE] = ACTIONS(5028), + [anon_sym_TILDE] = ACTIONS(5028), + [anon_sym_LPAREN] = ACTIONS(5028), + [anon_sym_RPAREN] = ACTIONS(5028), + [sym__newline_token] = ACTIONS(5028), + [aux_sym_insert_token1] = ACTIONS(5028), + [aux_sym_delete_token1] = ACTIONS(5028), + [aux_sym_highlight_token1] = ACTIONS(5028), + [aux_sym_edit_comment_token1] = ACTIONS(5028), + [anon_sym_CARET_LBRACK] = ACTIONS(5028), + [anon_sym_LBRACK_CARET] = ACTIONS(5028), + [sym_uri_autolink] = ACTIONS(5028), + [sym_email_autolink] = ACTIONS(5028), + [sym__whitespace_ge_2] = ACTIONS(5028), + [aux_sym__whitespace_token1] = ACTIONS(5030), + [sym__word_no_digit] = ACTIONS(5028), + [sym__digits] = ACTIONS(5028), + [anon_sym_DASH_DASH] = ACTIONS(5030), + [anon_sym_DASH_DASH_DASH] = ACTIONS(5028), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5028), + [sym__code_span_start] = ACTIONS(5028), + [sym__emphasis_open_star] = ACTIONS(5028), + [sym__emphasis_open_underscore] = ACTIONS(5028), + [sym__emphasis_close_underscore] = ACTIONS(5028), + [sym__strikeout_open] = ACTIONS(5028), + [sym__latex_span_start] = ACTIONS(5028), + [sym__single_quote_open] = ACTIONS(5028), + [sym__double_quote_open] = ACTIONS(5028), + [sym__superscript_open] = ACTIONS(5028), + [sym__subscript_open] = ACTIONS(5028), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5028), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5028), + [sym__cite_author_in_text] = ACTIONS(5028), + [sym__cite_suppress_author] = ACTIONS(5028), + [sym__shortcode_open_escaped] = ACTIONS(5028), + [sym__shortcode_open] = ACTIONS(5028), + [sym__unclosed_span] = ACTIONS(5028), + }, + [STATE(1409)] = { + [sym__backslash_escape] = ACTIONS(5032), + [sym_entity_reference] = ACTIONS(5032), + [sym_numeric_character_reference] = ACTIONS(5032), + [anon_sym_LT] = ACTIONS(5034), + [anon_sym_GT] = ACTIONS(5032), + [anon_sym_BANG] = ACTIONS(5032), + [anon_sym_DQUOTE] = ACTIONS(5032), + [anon_sym_POUND] = ACTIONS(5032), + [anon_sym_DOLLAR] = ACTIONS(5032), + [anon_sym_PERCENT] = ACTIONS(5032), + [anon_sym_AMP] = ACTIONS(5034), + [anon_sym_SQUOTE] = ACTIONS(5032), + [anon_sym_STAR] = ACTIONS(5032), + [anon_sym_PLUS] = ACTIONS(5032), + [anon_sym_COMMA] = ACTIONS(5032), + [anon_sym_DASH] = ACTIONS(5034), + [anon_sym_DOT] = ACTIONS(5034), + [anon_sym_SLASH] = ACTIONS(5032), + [anon_sym_COLON] = ACTIONS(5032), + [anon_sym_SEMI] = ACTIONS(5032), + [anon_sym_EQ] = ACTIONS(5032), + [anon_sym_QMARK] = ACTIONS(5032), + [anon_sym_LBRACK] = ACTIONS(5034), + [anon_sym_BSLASH] = ACTIONS(5034), + [anon_sym_CARET] = ACTIONS(5034), + [anon_sym__] = ACTIONS(5032), + [anon_sym_BQUOTE] = ACTIONS(5032), + [anon_sym_LBRACE] = ACTIONS(5032), + [anon_sym_PIPE] = ACTIONS(5032), + [anon_sym_TILDE] = ACTIONS(5032), + [anon_sym_LPAREN] = ACTIONS(5032), + [anon_sym_RPAREN] = ACTIONS(5032), + [sym__newline_token] = ACTIONS(5032), + [aux_sym_insert_token1] = ACTIONS(5032), + [aux_sym_delete_token1] = ACTIONS(5032), + [aux_sym_highlight_token1] = ACTIONS(5032), + [aux_sym_edit_comment_token1] = ACTIONS(5032), + [anon_sym_CARET_LBRACK] = ACTIONS(5032), + [anon_sym_LBRACK_CARET] = ACTIONS(5032), + [sym_uri_autolink] = ACTIONS(5032), + [sym_email_autolink] = ACTIONS(5032), + [sym__whitespace_ge_2] = ACTIONS(5032), + [aux_sym__whitespace_token1] = ACTIONS(5034), + [sym__word_no_digit] = ACTIONS(5032), + [sym__digits] = ACTIONS(5032), + [anon_sym_DASH_DASH] = ACTIONS(5034), + [anon_sym_DASH_DASH_DASH] = ACTIONS(5032), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5032), + [sym__code_span_start] = ACTIONS(5032), + [sym__emphasis_open_star] = ACTIONS(5032), + [sym__emphasis_open_underscore] = ACTIONS(5032), + [sym__emphasis_close_star] = ACTIONS(5032), + [sym__strikeout_open] = ACTIONS(5032), + [sym__latex_span_start] = ACTIONS(5032), + [sym__single_quote_open] = ACTIONS(5032), + [sym__double_quote_open] = ACTIONS(5032), + [sym__superscript_open] = ACTIONS(5032), + [sym__subscript_open] = ACTIONS(5032), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5032), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5032), + [sym__cite_author_in_text] = ACTIONS(5032), + [sym__cite_suppress_author] = ACTIONS(5032), + [sym__shortcode_open_escaped] = ACTIONS(5032), + [sym__shortcode_open] = ACTIONS(5032), + [sym__unclosed_span] = ACTIONS(5032), + }, + [STATE(1410)] = { + [sym__backslash_escape] = ACTIONS(5052), + [sym_entity_reference] = ACTIONS(5052), + [sym_numeric_character_reference] = ACTIONS(5052), + [anon_sym_LT] = ACTIONS(5054), + [anon_sym_GT] = ACTIONS(5052), + [anon_sym_BANG] = ACTIONS(5052), + [anon_sym_DQUOTE] = ACTIONS(5052), + [anon_sym_POUND] = ACTIONS(5052), + [anon_sym_DOLLAR] = ACTIONS(5052), + [anon_sym_PERCENT] = ACTIONS(5052), + [anon_sym_AMP] = ACTIONS(5054), + [anon_sym_SQUOTE] = ACTIONS(5052), + [anon_sym_STAR] = ACTIONS(5052), + [anon_sym_PLUS] = ACTIONS(5052), + [anon_sym_COMMA] = ACTIONS(5052), + [anon_sym_DASH] = ACTIONS(5054), + [anon_sym_DOT] = ACTIONS(5054), + [anon_sym_SLASH] = ACTIONS(5052), + [anon_sym_COLON] = ACTIONS(5052), + [anon_sym_SEMI] = ACTIONS(5052), + [anon_sym_EQ] = ACTIONS(5052), + [anon_sym_QMARK] = ACTIONS(5052), + [anon_sym_LBRACK] = ACTIONS(5054), + [anon_sym_BSLASH] = ACTIONS(5054), + [anon_sym_CARET] = ACTIONS(5054), + [anon_sym__] = ACTIONS(5052), + [anon_sym_BQUOTE] = ACTIONS(5052), + [anon_sym_LBRACE] = ACTIONS(5052), + [anon_sym_PIPE] = ACTIONS(5052), + [anon_sym_TILDE] = ACTIONS(5052), + [anon_sym_LPAREN] = ACTIONS(5052), + [anon_sym_RPAREN] = ACTIONS(5052), + [sym__newline_token] = ACTIONS(5052), + [aux_sym_insert_token1] = ACTIONS(5052), + [aux_sym_delete_token1] = ACTIONS(5052), + [aux_sym_highlight_token1] = ACTIONS(5052), + [aux_sym_edit_comment_token1] = ACTIONS(5052), + [anon_sym_CARET_LBRACK] = ACTIONS(5052), + [anon_sym_LBRACK_CARET] = ACTIONS(5052), + [sym_uri_autolink] = ACTIONS(5052), + [sym_email_autolink] = ACTIONS(5052), + [sym__whitespace_ge_2] = ACTIONS(5052), + [aux_sym__whitespace_token1] = ACTIONS(5054), + [sym__word_no_digit] = ACTIONS(5052), + [sym__digits] = ACTIONS(5052), + [anon_sym_DASH_DASH] = ACTIONS(5054), + [anon_sym_DASH_DASH_DASH] = ACTIONS(5052), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5052), + [sym__code_span_start] = ACTIONS(5052), + [sym__emphasis_open_star] = ACTIONS(5052), + [sym__emphasis_open_underscore] = ACTIONS(5052), + [sym__strikeout_open] = ACTIONS(5052), + [sym__latex_span_start] = ACTIONS(5052), + [sym__single_quote_open] = ACTIONS(5052), + [sym__double_quote_open] = ACTIONS(5052), + [sym__double_quote_close] = ACTIONS(5052), + [sym__superscript_open] = ACTIONS(5052), + [sym__subscript_open] = ACTIONS(5052), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5052), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5052), + [sym__cite_author_in_text] = ACTIONS(5052), + [sym__cite_suppress_author] = ACTIONS(5052), + [sym__shortcode_open_escaped] = ACTIONS(5052), + [sym__shortcode_open] = ACTIONS(5052), + [sym__unclosed_span] = ACTIONS(5052), + }, + [STATE(1411)] = { + [sym__backslash_escape] = ACTIONS(5032), + [sym_entity_reference] = ACTIONS(5032), + [sym_numeric_character_reference] = ACTIONS(5032), + [anon_sym_LT] = ACTIONS(5034), + [anon_sym_GT] = ACTIONS(5032), + [anon_sym_BANG] = ACTIONS(5032), + [anon_sym_DQUOTE] = ACTIONS(5032), + [anon_sym_POUND] = ACTIONS(5032), + [anon_sym_DOLLAR] = ACTIONS(5032), + [anon_sym_PERCENT] = ACTIONS(5032), + [anon_sym_AMP] = ACTIONS(5034), + [anon_sym_SQUOTE] = ACTIONS(5032), + [anon_sym_STAR] = ACTIONS(5032), + [anon_sym_PLUS] = ACTIONS(5032), + [anon_sym_COMMA] = ACTIONS(5032), + [anon_sym_DASH] = ACTIONS(5034), + [anon_sym_DOT] = ACTIONS(5034), + [anon_sym_SLASH] = ACTIONS(5032), + [anon_sym_COLON] = ACTIONS(5032), + [anon_sym_SEMI] = ACTIONS(5032), + [anon_sym_EQ] = ACTIONS(5032), + [anon_sym_QMARK] = ACTIONS(5032), + [anon_sym_LBRACK] = ACTIONS(5034), + [anon_sym_BSLASH] = ACTIONS(5034), + [anon_sym_CARET] = ACTIONS(5034), + [anon_sym__] = ACTIONS(5032), + [anon_sym_BQUOTE] = ACTIONS(5032), + [anon_sym_LBRACE] = ACTIONS(5032), + [anon_sym_PIPE] = ACTIONS(5032), + [anon_sym_TILDE] = ACTIONS(5032), + [anon_sym_LPAREN] = ACTIONS(5032), + [anon_sym_RPAREN] = ACTIONS(5032), + [sym__newline_token] = ACTIONS(5032), + [aux_sym_insert_token1] = ACTIONS(5032), + [aux_sym_delete_token1] = ACTIONS(5032), + [aux_sym_highlight_token1] = ACTIONS(5032), + [aux_sym_edit_comment_token1] = ACTIONS(5032), + [anon_sym_CARET_LBRACK] = ACTIONS(5032), + [anon_sym_LBRACK_CARET] = ACTIONS(5032), + [sym_uri_autolink] = ACTIONS(5032), + [sym_email_autolink] = ACTIONS(5032), + [sym__whitespace_ge_2] = ACTIONS(5032), + [aux_sym__whitespace_token1] = ACTIONS(5034), + [sym__word_no_digit] = ACTIONS(5032), + [sym__digits] = ACTIONS(5032), + [anon_sym_DASH_DASH] = ACTIONS(5034), + [anon_sym_DASH_DASH_DASH] = ACTIONS(5032), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5032), + [sym__code_span_start] = ACTIONS(5032), + [sym__emphasis_open_star] = ACTIONS(5032), + [sym__emphasis_open_underscore] = ACTIONS(5032), + [sym__emphasis_close_underscore] = ACTIONS(5032), + [sym__strikeout_open] = ACTIONS(5032), + [sym__latex_span_start] = ACTIONS(5032), + [sym__single_quote_open] = ACTIONS(5032), + [sym__double_quote_open] = ACTIONS(5032), + [sym__superscript_open] = ACTIONS(5032), + [sym__subscript_open] = ACTIONS(5032), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5032), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5032), + [sym__cite_author_in_text] = ACTIONS(5032), + [sym__cite_suppress_author] = ACTIONS(5032), + [sym__shortcode_open_escaped] = ACTIONS(5032), + [sym__shortcode_open] = ACTIONS(5032), + [sym__unclosed_span] = ACTIONS(5032), + }, + [STATE(1412)] = { + [sym__backslash_escape] = ACTIONS(5036), + [sym_entity_reference] = ACTIONS(5036), + [sym_numeric_character_reference] = ACTIONS(5036), + [anon_sym_LT] = ACTIONS(5038), + [anon_sym_GT] = ACTIONS(5036), + [anon_sym_BANG] = ACTIONS(5036), + [anon_sym_DQUOTE] = ACTIONS(5036), + [anon_sym_POUND] = ACTIONS(5036), + [anon_sym_DOLLAR] = ACTIONS(5036), + [anon_sym_PERCENT] = ACTIONS(5036), + [anon_sym_AMP] = ACTIONS(5038), + [anon_sym_SQUOTE] = ACTIONS(5036), + [anon_sym_STAR] = ACTIONS(5036), + [anon_sym_PLUS] = ACTIONS(5036), + [anon_sym_COMMA] = ACTIONS(5036), + [anon_sym_DASH] = ACTIONS(5038), + [anon_sym_DOT] = ACTIONS(5038), + [anon_sym_SLASH] = ACTIONS(5036), + [anon_sym_COLON] = ACTIONS(5036), + [anon_sym_SEMI] = ACTIONS(5036), + [anon_sym_EQ] = ACTIONS(5036), + [anon_sym_QMARK] = ACTIONS(5036), + [anon_sym_LBRACK] = ACTIONS(5038), + [anon_sym_BSLASH] = ACTIONS(5038), + [anon_sym_CARET] = ACTIONS(5038), + [anon_sym__] = ACTIONS(5036), + [anon_sym_BQUOTE] = ACTIONS(5036), + [anon_sym_LBRACE] = ACTIONS(5036), + [anon_sym_PIPE] = ACTIONS(5036), + [anon_sym_TILDE] = ACTIONS(5036), + [anon_sym_LPAREN] = ACTIONS(5036), + [anon_sym_RPAREN] = ACTIONS(5036), + [sym__newline_token] = ACTIONS(5036), + [aux_sym_insert_token1] = ACTIONS(5036), + [aux_sym_delete_token1] = ACTIONS(5036), + [aux_sym_highlight_token1] = ACTIONS(5036), + [aux_sym_edit_comment_token1] = ACTIONS(5036), + [anon_sym_CARET_LBRACK] = ACTIONS(5036), + [anon_sym_LBRACK_CARET] = ACTIONS(5036), + [sym_uri_autolink] = ACTIONS(5036), + [sym_email_autolink] = ACTIONS(5036), + [sym__whitespace_ge_2] = ACTIONS(5036), + [aux_sym__whitespace_token1] = ACTIONS(5038), + [sym__word_no_digit] = ACTIONS(5036), + [sym__digits] = ACTIONS(5036), + [anon_sym_DASH_DASH] = ACTIONS(5038), + [anon_sym_DASH_DASH_DASH] = ACTIONS(5036), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5036), + [sym__code_span_start] = ACTIONS(5036), + [sym__emphasis_open_star] = ACTIONS(5036), + [sym__emphasis_open_underscore] = ACTIONS(5036), + [sym__emphasis_close_underscore] = ACTIONS(5036), + [sym__strikeout_open] = ACTIONS(5036), + [sym__latex_span_start] = ACTIONS(5036), + [sym__single_quote_open] = ACTIONS(5036), + [sym__double_quote_open] = ACTIONS(5036), + [sym__superscript_open] = ACTIONS(5036), + [sym__subscript_open] = ACTIONS(5036), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5036), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5036), + [sym__cite_author_in_text] = ACTIONS(5036), + [sym__cite_suppress_author] = ACTIONS(5036), + [sym__shortcode_open_escaped] = ACTIONS(5036), + [sym__shortcode_open] = ACTIONS(5036), + [sym__unclosed_span] = ACTIONS(5036), + }, + [STATE(1413)] = { + [sym__backslash_escape] = ACTIONS(4812), + [sym_entity_reference] = ACTIONS(4812), + [sym_numeric_character_reference] = ACTIONS(4812), + [anon_sym_LT] = ACTIONS(4814), + [anon_sym_GT] = ACTIONS(4812), + [anon_sym_BANG] = ACTIONS(4812), + [anon_sym_DQUOTE] = ACTIONS(4812), + [anon_sym_POUND] = ACTIONS(4812), + [anon_sym_DOLLAR] = ACTIONS(4812), + [anon_sym_PERCENT] = ACTIONS(4812), + [anon_sym_AMP] = ACTIONS(4814), + [anon_sym_SQUOTE] = ACTIONS(4812), + [anon_sym_STAR] = ACTIONS(4812), + [anon_sym_PLUS] = ACTIONS(4812), + [anon_sym_COMMA] = ACTIONS(4812), + [anon_sym_DASH] = ACTIONS(4814), + [anon_sym_DOT] = ACTIONS(4814), + [anon_sym_SLASH] = ACTIONS(4812), + [anon_sym_COLON] = ACTIONS(4812), + [anon_sym_SEMI] = ACTIONS(4812), + [anon_sym_EQ] = ACTIONS(4812), + [anon_sym_QMARK] = ACTIONS(4812), + [anon_sym_LBRACK] = ACTIONS(4814), + [anon_sym_BSLASH] = ACTIONS(4814), + [anon_sym_CARET] = ACTIONS(4814), + [anon_sym__] = ACTIONS(4812), + [anon_sym_BQUOTE] = ACTIONS(4812), + [anon_sym_LBRACE] = ACTIONS(4812), + [anon_sym_PIPE] = ACTIONS(4812), + [anon_sym_TILDE] = ACTIONS(4812), + [anon_sym_LPAREN] = ACTIONS(4812), + [anon_sym_RPAREN] = ACTIONS(4812), + [sym__newline_token] = ACTIONS(4812), + [aux_sym_insert_token1] = ACTIONS(4812), + [aux_sym_delete_token1] = ACTIONS(4812), + [aux_sym_highlight_token1] = ACTIONS(4812), + [aux_sym_edit_comment_token1] = ACTIONS(4812), + [anon_sym_CARET_LBRACK] = ACTIONS(4812), + [anon_sym_LBRACK_CARET] = ACTIONS(4812), + [sym_uri_autolink] = ACTIONS(4812), + [sym_email_autolink] = ACTIONS(4812), + [sym__whitespace_ge_2] = ACTIONS(4812), + [aux_sym__whitespace_token1] = ACTIONS(4814), + [sym__word_no_digit] = ACTIONS(4812), + [sym__digits] = ACTIONS(4812), + [anon_sym_DASH_DASH] = ACTIONS(4814), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4812), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4812), + [sym__code_span_start] = ACTIONS(4812), + [sym__emphasis_open_star] = ACTIONS(4812), + [sym__emphasis_open_underscore] = ACTIONS(4812), + [sym__emphasis_close_underscore] = ACTIONS(4812), + [sym__strikeout_open] = ACTIONS(4812), + [sym__latex_span_start] = ACTIONS(4812), + [sym__single_quote_open] = ACTIONS(4812), + [sym__double_quote_open] = ACTIONS(4812), + [sym__superscript_open] = ACTIONS(4812), + [sym__subscript_open] = ACTIONS(4812), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4812), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4812), + [sym__cite_author_in_text] = ACTIONS(4812), + [sym__cite_suppress_author] = ACTIONS(4812), + [sym__shortcode_open_escaped] = ACTIONS(4812), + [sym__shortcode_open] = ACTIONS(4812), + [sym__unclosed_span] = ACTIONS(4812), + }, + [STATE(1414)] = { + [sym__backslash_escape] = ACTIONS(4816), + [sym_entity_reference] = ACTIONS(4816), + [sym_numeric_character_reference] = ACTIONS(4816), + [anon_sym_LT] = ACTIONS(4818), + [anon_sym_GT] = ACTIONS(4816), + [anon_sym_BANG] = ACTIONS(4816), + [anon_sym_DQUOTE] = ACTIONS(4816), + [anon_sym_POUND] = ACTIONS(4816), + [anon_sym_DOLLAR] = ACTIONS(4816), + [anon_sym_PERCENT] = ACTIONS(4816), + [anon_sym_AMP] = ACTIONS(4818), + [anon_sym_SQUOTE] = ACTIONS(4816), + [anon_sym_STAR] = ACTIONS(4816), + [anon_sym_PLUS] = ACTIONS(4816), + [anon_sym_COMMA] = ACTIONS(4816), + [anon_sym_DASH] = ACTIONS(4818), + [anon_sym_DOT] = ACTIONS(4818), + [anon_sym_SLASH] = ACTIONS(4816), + [anon_sym_COLON] = ACTIONS(4816), + [anon_sym_SEMI] = ACTIONS(4816), + [anon_sym_EQ] = ACTIONS(4816), + [anon_sym_QMARK] = ACTIONS(4816), + [anon_sym_LBRACK] = ACTIONS(4818), + [anon_sym_BSLASH] = ACTIONS(4818), + [anon_sym_CARET] = ACTIONS(4818), + [anon_sym__] = ACTIONS(4816), + [anon_sym_BQUOTE] = ACTIONS(4816), + [anon_sym_LBRACE] = ACTIONS(4816), + [anon_sym_PIPE] = ACTIONS(4816), + [anon_sym_TILDE] = ACTIONS(4816), + [anon_sym_LPAREN] = ACTIONS(4816), + [anon_sym_RPAREN] = ACTIONS(4816), + [sym__newline_token] = ACTIONS(4816), + [aux_sym_insert_token1] = ACTIONS(4816), + [aux_sym_delete_token1] = ACTIONS(4816), + [aux_sym_highlight_token1] = ACTIONS(4816), + [aux_sym_edit_comment_token1] = ACTIONS(4816), + [anon_sym_CARET_LBRACK] = ACTIONS(4816), + [anon_sym_LBRACK_CARET] = ACTIONS(4816), + [sym_uri_autolink] = ACTIONS(4816), + [sym_email_autolink] = ACTIONS(4816), + [sym__whitespace_ge_2] = ACTIONS(4816), + [aux_sym__whitespace_token1] = ACTIONS(4818), + [sym__word_no_digit] = ACTIONS(4816), + [sym__digits] = ACTIONS(4816), + [anon_sym_DASH_DASH] = ACTIONS(4818), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4816), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4816), + [sym__code_span_start] = ACTIONS(4816), + [sym__emphasis_open_star] = ACTIONS(4816), + [sym__emphasis_open_underscore] = ACTIONS(4816), + [sym__emphasis_close_underscore] = ACTIONS(4816), + [sym__strikeout_open] = ACTIONS(4816), + [sym__latex_span_start] = ACTIONS(4816), + [sym__single_quote_open] = ACTIONS(4816), + [sym__double_quote_open] = ACTIONS(4816), + [sym__superscript_open] = ACTIONS(4816), + [sym__subscript_open] = ACTIONS(4816), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4816), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4816), + [sym__cite_author_in_text] = ACTIONS(4816), + [sym__cite_suppress_author] = ACTIONS(4816), + [sym__shortcode_open_escaped] = ACTIONS(4816), + [sym__shortcode_open] = ACTIONS(4816), + [sym__unclosed_span] = ACTIONS(4816), + }, + [STATE(1415)] = { + [sym__backslash_escape] = ACTIONS(4840), + [sym_entity_reference] = ACTIONS(4840), + [sym_numeric_character_reference] = ACTIONS(4840), + [anon_sym_LT] = ACTIONS(4842), + [anon_sym_GT] = ACTIONS(4840), + [anon_sym_BANG] = ACTIONS(4840), + [anon_sym_DQUOTE] = ACTIONS(4840), + [anon_sym_POUND] = ACTIONS(4840), + [anon_sym_DOLLAR] = ACTIONS(4840), + [anon_sym_PERCENT] = ACTIONS(4840), + [anon_sym_AMP] = ACTIONS(4842), + [anon_sym_SQUOTE] = ACTIONS(4840), + [anon_sym_STAR] = ACTIONS(4840), + [anon_sym_PLUS] = ACTIONS(4840), + [anon_sym_COMMA] = ACTIONS(4840), + [anon_sym_DASH] = ACTIONS(4842), + [anon_sym_DOT] = ACTIONS(4842), + [anon_sym_SLASH] = ACTIONS(4840), + [anon_sym_COLON] = ACTIONS(4840), + [anon_sym_SEMI] = ACTIONS(4840), + [anon_sym_EQ] = ACTIONS(4840), + [anon_sym_QMARK] = ACTIONS(4840), + [anon_sym_LBRACK] = ACTIONS(4842), + [anon_sym_BSLASH] = ACTIONS(4842), + [anon_sym_CARET] = ACTIONS(4842), + [anon_sym__] = ACTIONS(4840), + [anon_sym_BQUOTE] = ACTIONS(4840), + [anon_sym_LBRACE] = ACTIONS(4840), + [anon_sym_PIPE] = ACTIONS(4840), + [anon_sym_TILDE] = ACTIONS(4840), + [anon_sym_LPAREN] = ACTIONS(4840), + [anon_sym_RPAREN] = ACTIONS(4840), + [sym__newline_token] = ACTIONS(4840), + [aux_sym_insert_token1] = ACTIONS(4840), + [aux_sym_delete_token1] = ACTIONS(4840), + [aux_sym_highlight_token1] = ACTIONS(4840), + [aux_sym_edit_comment_token1] = ACTIONS(4840), + [anon_sym_CARET_LBRACK] = ACTIONS(4840), + [anon_sym_LBRACK_CARET] = ACTIONS(4840), + [sym_uri_autolink] = ACTIONS(4840), + [sym_email_autolink] = ACTIONS(4840), + [sym__whitespace_ge_2] = ACTIONS(4840), + [aux_sym__whitespace_token1] = ACTIONS(4842), + [sym__word_no_digit] = ACTIONS(4840), + [sym__digits] = ACTIONS(4840), + [anon_sym_DASH_DASH] = ACTIONS(4842), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4840), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4840), + [sym__code_span_start] = ACTIONS(4840), + [sym__emphasis_open_star] = ACTIONS(4840), + [sym__emphasis_open_underscore] = ACTIONS(4840), + [sym__emphasis_close_underscore] = ACTIONS(4840), + [sym__strikeout_open] = ACTIONS(4840), + [sym__latex_span_start] = ACTIONS(4840), + [sym__single_quote_open] = ACTIONS(4840), + [sym__double_quote_open] = ACTIONS(4840), + [sym__superscript_open] = ACTIONS(4840), + [sym__subscript_open] = ACTIONS(4840), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4840), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4840), + [sym__cite_author_in_text] = ACTIONS(4840), + [sym__cite_suppress_author] = ACTIONS(4840), + [sym__shortcode_open_escaped] = ACTIONS(4840), + [sym__shortcode_open] = ACTIONS(4840), + [sym__unclosed_span] = ACTIONS(4840), + }, + [STATE(1416)] = { + [sym__backslash_escape] = ACTIONS(4690), + [sym_entity_reference] = ACTIONS(4690), + [sym_numeric_character_reference] = ACTIONS(4690), + [anon_sym_LT] = ACTIONS(4692), + [anon_sym_GT] = ACTIONS(4690), + [anon_sym_BANG] = ACTIONS(4690), + [anon_sym_DQUOTE] = ACTIONS(4690), + [anon_sym_POUND] = ACTIONS(4690), + [anon_sym_DOLLAR] = ACTIONS(4690), + [anon_sym_PERCENT] = ACTIONS(4690), + [anon_sym_AMP] = ACTIONS(4692), + [anon_sym_SQUOTE] = ACTIONS(4690), + [anon_sym_STAR] = ACTIONS(4690), + [anon_sym_PLUS] = ACTIONS(4690), + [anon_sym_COMMA] = ACTIONS(4690), + [anon_sym_DASH] = ACTIONS(4692), + [anon_sym_DOT] = ACTIONS(4692), + [anon_sym_SLASH] = ACTIONS(4690), + [anon_sym_COLON] = ACTIONS(4690), + [anon_sym_SEMI] = ACTIONS(4690), + [anon_sym_EQ] = ACTIONS(4690), + [anon_sym_QMARK] = ACTIONS(4690), + [anon_sym_LBRACK] = ACTIONS(4692), + [anon_sym_BSLASH] = ACTIONS(4692), + [anon_sym_CARET] = ACTIONS(4692), + [anon_sym__] = ACTIONS(4690), + [anon_sym_BQUOTE] = ACTIONS(4690), + [anon_sym_LBRACE] = ACTIONS(4690), + [anon_sym_PIPE] = ACTIONS(4690), + [anon_sym_TILDE] = ACTIONS(4690), + [anon_sym_LPAREN] = ACTIONS(4690), + [anon_sym_RPAREN] = ACTIONS(4690), + [sym__newline_token] = ACTIONS(4690), + [aux_sym_insert_token1] = ACTIONS(4690), + [aux_sym_delete_token1] = ACTIONS(4690), + [aux_sym_highlight_token1] = ACTIONS(4690), + [aux_sym_edit_comment_token1] = ACTIONS(4690), + [anon_sym_CARET_LBRACK] = ACTIONS(4690), + [anon_sym_LBRACK_CARET] = ACTIONS(4690), + [sym_uri_autolink] = ACTIONS(4690), + [sym_email_autolink] = ACTIONS(4690), + [sym__whitespace_ge_2] = ACTIONS(4690), + [aux_sym__whitespace_token1] = ACTIONS(4692), + [sym__word_no_digit] = ACTIONS(4690), + [sym__digits] = ACTIONS(4690), + [anon_sym_DASH_DASH] = ACTIONS(4692), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4690), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4690), + [sym__code_span_start] = ACTIONS(4690), + [sym__emphasis_open_star] = ACTIONS(4690), + [sym__emphasis_open_underscore] = ACTIONS(4690), + [sym__strikeout_open] = ACTIONS(4690), + [sym__latex_span_start] = ACTIONS(4690), + [sym__single_quote_open] = ACTIONS(4690), + [sym__double_quote_open] = ACTIONS(4690), + [sym__double_quote_close] = ACTIONS(4690), + [sym__superscript_open] = ACTIONS(4690), + [sym__subscript_open] = ACTIONS(4690), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4690), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4690), + [sym__cite_author_in_text] = ACTIONS(4690), + [sym__cite_suppress_author] = ACTIONS(4690), + [sym__shortcode_open_escaped] = ACTIONS(4690), + [sym__shortcode_open] = ACTIONS(4690), + [sym__unclosed_span] = ACTIONS(4690), + }, + [STATE(1417)] = { + [sym__backslash_escape] = ACTIONS(4856), + [sym_entity_reference] = ACTIONS(4856), + [sym_numeric_character_reference] = ACTIONS(4856), + [anon_sym_LT] = ACTIONS(4858), + [anon_sym_GT] = ACTIONS(4856), + [anon_sym_BANG] = ACTIONS(4856), + [anon_sym_DQUOTE] = ACTIONS(4856), + [anon_sym_POUND] = ACTIONS(4856), + [anon_sym_DOLLAR] = ACTIONS(4856), + [anon_sym_PERCENT] = ACTIONS(4856), + [anon_sym_AMP] = ACTIONS(4858), + [anon_sym_SQUOTE] = ACTIONS(4856), + [anon_sym_STAR] = ACTIONS(4856), + [anon_sym_PLUS] = ACTIONS(4856), + [anon_sym_COMMA] = ACTIONS(4856), + [anon_sym_DASH] = ACTIONS(4858), + [anon_sym_DOT] = ACTIONS(4858), + [anon_sym_SLASH] = ACTIONS(4856), + [anon_sym_COLON] = ACTIONS(4856), + [anon_sym_SEMI] = ACTIONS(4856), + [anon_sym_EQ] = ACTIONS(4856), + [anon_sym_QMARK] = ACTIONS(4856), + [anon_sym_LBRACK] = ACTIONS(4858), + [anon_sym_BSLASH] = ACTIONS(4858), + [anon_sym_CARET] = ACTIONS(4858), + [anon_sym__] = ACTIONS(4856), + [anon_sym_BQUOTE] = ACTIONS(4856), + [anon_sym_LBRACE] = ACTIONS(4856), + [anon_sym_PIPE] = ACTIONS(4856), + [anon_sym_TILDE] = ACTIONS(4856), + [anon_sym_LPAREN] = ACTIONS(4856), + [anon_sym_RPAREN] = ACTIONS(4856), + [sym__newline_token] = ACTIONS(4856), + [aux_sym_insert_token1] = ACTIONS(4856), + [aux_sym_delete_token1] = ACTIONS(4856), + [aux_sym_highlight_token1] = ACTIONS(4856), + [aux_sym_edit_comment_token1] = ACTIONS(4856), + [anon_sym_CARET_LBRACK] = ACTIONS(4856), + [anon_sym_LBRACK_CARET] = ACTIONS(4856), + [sym_uri_autolink] = ACTIONS(4856), + [sym_email_autolink] = ACTIONS(4856), + [sym__whitespace_ge_2] = ACTIONS(4856), + [aux_sym__whitespace_token1] = ACTIONS(4858), + [sym__word_no_digit] = ACTIONS(4856), + [sym__digits] = ACTIONS(4856), + [anon_sym_DASH_DASH] = ACTIONS(4858), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4856), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4856), + [sym__code_span_start] = ACTIONS(4856), + [sym__emphasis_open_star] = ACTIONS(4856), + [sym__emphasis_open_underscore] = ACTIONS(4856), + [sym__emphasis_close_star] = ACTIONS(4856), + [sym__strikeout_open] = ACTIONS(4856), + [sym__latex_span_start] = ACTIONS(4856), + [sym__single_quote_open] = ACTIONS(4856), + [sym__double_quote_open] = ACTIONS(4856), + [sym__superscript_open] = ACTIONS(4856), + [sym__subscript_open] = ACTIONS(4856), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4856), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4856), + [sym__cite_author_in_text] = ACTIONS(4856), + [sym__cite_suppress_author] = ACTIONS(4856), + [sym__shortcode_open_escaped] = ACTIONS(4856), + [sym__shortcode_open] = ACTIONS(4856), + [sym__unclosed_span] = ACTIONS(4856), + }, + [STATE(1418)] = { + [sym__backslash_escape] = ACTIONS(4880), + [sym_entity_reference] = ACTIONS(4880), + [sym_numeric_character_reference] = ACTIONS(4880), + [anon_sym_LT] = ACTIONS(4882), + [anon_sym_GT] = ACTIONS(4880), + [anon_sym_BANG] = ACTIONS(4880), + [anon_sym_DQUOTE] = ACTIONS(4880), + [anon_sym_POUND] = ACTIONS(4880), + [anon_sym_DOLLAR] = ACTIONS(4880), + [anon_sym_PERCENT] = ACTIONS(4880), + [anon_sym_AMP] = ACTIONS(4882), + [anon_sym_SQUOTE] = ACTIONS(4880), + [anon_sym_STAR] = ACTIONS(4880), + [anon_sym_PLUS] = ACTIONS(4880), + [anon_sym_COMMA] = ACTIONS(4880), + [anon_sym_DASH] = ACTIONS(4882), + [anon_sym_DOT] = ACTIONS(4882), + [anon_sym_SLASH] = ACTIONS(4880), + [anon_sym_COLON] = ACTIONS(4880), + [anon_sym_SEMI] = ACTIONS(4880), + [anon_sym_EQ] = ACTIONS(4880), + [anon_sym_QMARK] = ACTIONS(4880), + [anon_sym_LBRACK] = ACTIONS(4882), + [anon_sym_BSLASH] = ACTIONS(4882), + [anon_sym_CARET] = ACTIONS(4882), + [anon_sym__] = ACTIONS(4880), + [anon_sym_BQUOTE] = ACTIONS(4880), + [anon_sym_LBRACE] = ACTIONS(4880), + [anon_sym_PIPE] = ACTIONS(4880), + [anon_sym_TILDE] = ACTIONS(4880), + [anon_sym_LPAREN] = ACTIONS(4880), + [anon_sym_RPAREN] = ACTIONS(4880), + [sym__newline_token] = ACTIONS(4880), + [aux_sym_insert_token1] = ACTIONS(4880), + [aux_sym_delete_token1] = ACTIONS(4880), + [aux_sym_highlight_token1] = ACTIONS(4880), + [aux_sym_edit_comment_token1] = ACTIONS(4880), + [anon_sym_CARET_LBRACK] = ACTIONS(4880), + [anon_sym_LBRACK_CARET] = ACTIONS(4880), + [sym_uri_autolink] = ACTIONS(4880), + [sym_email_autolink] = ACTIONS(4880), + [sym__whitespace_ge_2] = ACTIONS(4880), + [aux_sym__whitespace_token1] = ACTIONS(4882), + [sym__word_no_digit] = ACTIONS(4880), + [sym__digits] = ACTIONS(4880), + [anon_sym_DASH_DASH] = ACTIONS(4882), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4880), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4880), + [sym__code_span_start] = ACTIONS(4880), + [sym__emphasis_open_star] = ACTIONS(4880), + [sym__emphasis_open_underscore] = ACTIONS(4880), + [sym__emphasis_close_underscore] = ACTIONS(4880), + [sym__strikeout_open] = ACTIONS(4880), + [sym__latex_span_start] = ACTIONS(4880), + [sym__single_quote_open] = ACTIONS(4880), + [sym__double_quote_open] = ACTIONS(4880), + [sym__superscript_open] = ACTIONS(4880), + [sym__subscript_open] = ACTIONS(4880), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4880), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4880), + [sym__cite_author_in_text] = ACTIONS(4880), + [sym__cite_suppress_author] = ACTIONS(4880), + [sym__shortcode_open_escaped] = ACTIONS(4880), + [sym__shortcode_open] = ACTIONS(4880), + [sym__unclosed_span] = ACTIONS(4880), + }, + [STATE(1419)] = { + [sym__backslash_escape] = ACTIONS(4596), + [sym_entity_reference] = ACTIONS(4596), + [sym_numeric_character_reference] = ACTIONS(4596), + [anon_sym_LT] = ACTIONS(4598), + [anon_sym_GT] = ACTIONS(4596), + [anon_sym_BANG] = ACTIONS(4596), + [anon_sym_DQUOTE] = ACTIONS(4596), + [anon_sym_POUND] = ACTIONS(4596), + [anon_sym_DOLLAR] = ACTIONS(4596), + [anon_sym_PERCENT] = ACTIONS(4596), + [anon_sym_AMP] = ACTIONS(4598), + [anon_sym_SQUOTE] = ACTIONS(4596), + [anon_sym_STAR] = ACTIONS(4596), + [anon_sym_PLUS] = ACTIONS(4596), + [anon_sym_COMMA] = ACTIONS(4596), + [anon_sym_DASH] = ACTIONS(4598), + [anon_sym_DOT] = ACTIONS(4598), + [anon_sym_SLASH] = ACTIONS(4596), + [anon_sym_COLON] = ACTIONS(4596), + [anon_sym_SEMI] = ACTIONS(4596), + [anon_sym_EQ] = ACTIONS(4596), + [anon_sym_QMARK] = ACTIONS(4596), + [anon_sym_LBRACK] = ACTIONS(4598), + [anon_sym_BSLASH] = ACTIONS(4598), + [anon_sym_CARET] = ACTIONS(4598), + [anon_sym__] = ACTIONS(4596), + [anon_sym_BQUOTE] = ACTIONS(4596), + [anon_sym_LBRACE] = ACTIONS(4596), + [anon_sym_PIPE] = ACTIONS(4596), + [anon_sym_TILDE] = ACTIONS(4596), + [anon_sym_LPAREN] = ACTIONS(4596), + [anon_sym_RPAREN] = ACTIONS(4596), + [sym__newline_token] = ACTIONS(4596), + [aux_sym_insert_token1] = ACTIONS(4596), + [aux_sym_delete_token1] = ACTIONS(4596), + [aux_sym_highlight_token1] = ACTIONS(4596), + [aux_sym_edit_comment_token1] = ACTIONS(4596), + [anon_sym_CARET_LBRACK] = ACTIONS(4596), + [anon_sym_LBRACK_CARET] = ACTIONS(4596), + [sym_uri_autolink] = ACTIONS(4596), + [sym_email_autolink] = ACTIONS(4596), + [sym__whitespace_ge_2] = ACTIONS(4596), + [aux_sym__whitespace_token1] = ACTIONS(4598), + [sym__word_no_digit] = ACTIONS(4596), + [sym__digits] = ACTIONS(4596), + [anon_sym_DASH_DASH] = ACTIONS(4598), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4596), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4596), + [sym__code_span_start] = ACTIONS(4596), + [sym__emphasis_open_star] = ACTIONS(4596), + [sym__emphasis_open_underscore] = ACTIONS(4596), + [sym__emphasis_close_underscore] = ACTIONS(4596), + [sym__strikeout_open] = ACTIONS(4596), + [sym__latex_span_start] = ACTIONS(4596), + [sym__single_quote_open] = ACTIONS(4596), + [sym__double_quote_open] = ACTIONS(4596), + [sym__superscript_open] = ACTIONS(4596), + [sym__subscript_open] = ACTIONS(4596), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4596), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4596), + [sym__cite_author_in_text] = ACTIONS(4596), + [sym__cite_suppress_author] = ACTIONS(4596), + [sym__shortcode_open_escaped] = ACTIONS(4596), + [sym__shortcode_open] = ACTIONS(4596), + [sym__unclosed_span] = ACTIONS(4596), + }, + [STATE(1420)] = { + [sym__backslash_escape] = ACTIONS(5036), + [sym_entity_reference] = ACTIONS(5036), + [sym_numeric_character_reference] = ACTIONS(5036), + [anon_sym_LT] = ACTIONS(5038), + [anon_sym_GT] = ACTIONS(5036), + [anon_sym_BANG] = ACTIONS(5036), + [anon_sym_DQUOTE] = ACTIONS(5036), + [anon_sym_POUND] = ACTIONS(5036), + [anon_sym_DOLLAR] = ACTIONS(5036), + [anon_sym_PERCENT] = ACTIONS(5036), + [anon_sym_AMP] = ACTIONS(5038), + [anon_sym_SQUOTE] = ACTIONS(5036), + [anon_sym_STAR] = ACTIONS(5036), + [anon_sym_PLUS] = ACTIONS(5036), + [anon_sym_COMMA] = ACTIONS(5036), + [anon_sym_DASH] = ACTIONS(5038), + [anon_sym_DOT] = ACTIONS(5038), + [anon_sym_SLASH] = ACTIONS(5036), + [anon_sym_COLON] = ACTIONS(5036), + [anon_sym_SEMI] = ACTIONS(5036), + [anon_sym_EQ] = ACTIONS(5036), + [anon_sym_QMARK] = ACTIONS(5036), + [anon_sym_LBRACK] = ACTIONS(5038), + [anon_sym_BSLASH] = ACTIONS(5038), + [anon_sym_CARET] = ACTIONS(5038), + [anon_sym__] = ACTIONS(5036), + [anon_sym_BQUOTE] = ACTIONS(5036), + [anon_sym_LBRACE] = ACTIONS(5036), + [anon_sym_PIPE] = ACTIONS(5036), + [anon_sym_TILDE] = ACTIONS(5036), + [anon_sym_LPAREN] = ACTIONS(5036), + [anon_sym_RPAREN] = ACTIONS(5036), + [sym__newline_token] = ACTIONS(5036), + [aux_sym_insert_token1] = ACTIONS(5036), + [aux_sym_delete_token1] = ACTIONS(5036), + [aux_sym_highlight_token1] = ACTIONS(5036), + [aux_sym_edit_comment_token1] = ACTIONS(5036), + [anon_sym_CARET_LBRACK] = ACTIONS(5036), + [anon_sym_LBRACK_CARET] = ACTIONS(5036), + [sym_uri_autolink] = ACTIONS(5036), + [sym_email_autolink] = ACTIONS(5036), + [sym__whitespace_ge_2] = ACTIONS(5036), + [aux_sym__whitespace_token1] = ACTIONS(5038), + [sym__word_no_digit] = ACTIONS(5036), + [sym__digits] = ACTIONS(5036), + [anon_sym_DASH_DASH] = ACTIONS(5038), + [anon_sym_DASH_DASH_DASH] = ACTIONS(5036), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5036), + [sym__code_span_start] = ACTIONS(5036), + [sym__emphasis_open_star] = ACTIONS(5036), + [sym__emphasis_open_underscore] = ACTIONS(5036), + [sym__strikeout_open] = ACTIONS(5036), + [sym__strikeout_close] = ACTIONS(5036), + [sym__latex_span_start] = ACTIONS(5036), + [sym__single_quote_open] = ACTIONS(5036), + [sym__double_quote_open] = ACTIONS(5036), + [sym__superscript_open] = ACTIONS(5036), + [sym__subscript_open] = ACTIONS(5036), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5036), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5036), + [sym__cite_author_in_text] = ACTIONS(5036), + [sym__cite_suppress_author] = ACTIONS(5036), + [sym__shortcode_open_escaped] = ACTIONS(5036), + [sym__shortcode_open] = ACTIONS(5036), + [sym__unclosed_span] = ACTIONS(5036), + }, + [STATE(1421)] = { + [sym__backslash_escape] = ACTIONS(4900), + [sym_entity_reference] = ACTIONS(4900), + [sym_numeric_character_reference] = ACTIONS(4900), + [anon_sym_LT] = ACTIONS(4902), + [anon_sym_GT] = ACTIONS(4900), + [anon_sym_BANG] = ACTIONS(4900), + [anon_sym_DQUOTE] = ACTIONS(4900), + [anon_sym_POUND] = ACTIONS(4900), + [anon_sym_DOLLAR] = ACTIONS(4900), + [anon_sym_PERCENT] = ACTIONS(4900), + [anon_sym_AMP] = ACTIONS(4902), + [anon_sym_SQUOTE] = ACTIONS(4900), + [anon_sym_STAR] = ACTIONS(4900), + [anon_sym_PLUS] = ACTIONS(4900), + [anon_sym_COMMA] = ACTIONS(4900), + [anon_sym_DASH] = ACTIONS(4902), + [anon_sym_DOT] = ACTIONS(4902), + [anon_sym_SLASH] = ACTIONS(4900), + [anon_sym_COLON] = ACTIONS(4900), + [anon_sym_SEMI] = ACTIONS(4900), + [anon_sym_EQ] = ACTIONS(4900), + [anon_sym_QMARK] = ACTIONS(4900), + [anon_sym_LBRACK] = ACTIONS(4902), + [anon_sym_BSLASH] = ACTIONS(4902), + [anon_sym_CARET] = ACTIONS(4902), + [anon_sym__] = ACTIONS(4900), + [anon_sym_BQUOTE] = ACTIONS(4900), + [anon_sym_LBRACE] = ACTIONS(4900), + [anon_sym_PIPE] = ACTIONS(4900), + [anon_sym_TILDE] = ACTIONS(4900), + [anon_sym_LPAREN] = ACTIONS(4900), + [anon_sym_RPAREN] = ACTIONS(4900), + [sym__newline_token] = ACTIONS(4900), + [aux_sym_insert_token1] = ACTIONS(4900), + [aux_sym_delete_token1] = ACTIONS(4900), + [aux_sym_highlight_token1] = ACTIONS(4900), + [aux_sym_edit_comment_token1] = ACTIONS(4900), + [anon_sym_CARET_LBRACK] = ACTIONS(4900), + [anon_sym_LBRACK_CARET] = ACTIONS(4900), + [sym_uri_autolink] = ACTIONS(4900), + [sym_email_autolink] = ACTIONS(4900), + [sym__whitespace_ge_2] = ACTIONS(4900), + [aux_sym__whitespace_token1] = ACTIONS(4902), + [sym__word_no_digit] = ACTIONS(4900), + [sym__digits] = ACTIONS(4900), + [anon_sym_DASH_DASH] = ACTIONS(4902), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4900), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4900), + [sym__code_span_start] = ACTIONS(4900), + [sym__emphasis_open_star] = ACTIONS(4900), + [sym__emphasis_open_underscore] = ACTIONS(4900), + [sym__emphasis_close_underscore] = ACTIONS(4900), + [sym__strikeout_open] = ACTIONS(4900), + [sym__latex_span_start] = ACTIONS(4900), + [sym__single_quote_open] = ACTIONS(4900), + [sym__double_quote_open] = ACTIONS(4900), + [sym__superscript_open] = ACTIONS(4900), + [sym__subscript_open] = ACTIONS(4900), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4900), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4900), + [sym__cite_author_in_text] = ACTIONS(4900), + [sym__cite_suppress_author] = ACTIONS(4900), + [sym__shortcode_open_escaped] = ACTIONS(4900), + [sym__shortcode_open] = ACTIONS(4900), + [sym__unclosed_span] = ACTIONS(4900), + }, + [STATE(1422)] = { + [sym__backslash_escape] = ACTIONS(5056), + [sym_entity_reference] = ACTIONS(5056), + [sym_numeric_character_reference] = ACTIONS(5056), + [anon_sym_LT] = ACTIONS(5058), + [anon_sym_GT] = ACTIONS(5056), + [anon_sym_BANG] = ACTIONS(5056), + [anon_sym_DQUOTE] = ACTIONS(5056), + [anon_sym_POUND] = ACTIONS(5056), + [anon_sym_DOLLAR] = ACTIONS(5056), + [anon_sym_PERCENT] = ACTIONS(5056), + [anon_sym_AMP] = ACTIONS(5058), + [anon_sym_SQUOTE] = ACTIONS(5056), + [anon_sym_STAR] = ACTIONS(5056), + [anon_sym_PLUS] = ACTIONS(5056), + [anon_sym_COMMA] = ACTIONS(5056), + [anon_sym_DASH] = ACTIONS(5058), + [anon_sym_DOT] = ACTIONS(5058), + [anon_sym_SLASH] = ACTIONS(5056), + [anon_sym_COLON] = ACTIONS(5056), + [anon_sym_SEMI] = ACTIONS(5056), + [anon_sym_EQ] = ACTIONS(5056), + [anon_sym_QMARK] = ACTIONS(5056), + [anon_sym_LBRACK] = ACTIONS(5058), + [anon_sym_BSLASH] = ACTIONS(5058), + [anon_sym_CARET] = ACTIONS(5058), + [anon_sym__] = ACTIONS(5056), + [anon_sym_BQUOTE] = ACTIONS(5056), + [anon_sym_LBRACE] = ACTIONS(5056), + [anon_sym_PIPE] = ACTIONS(5056), + [anon_sym_TILDE] = ACTIONS(5056), + [anon_sym_LPAREN] = ACTIONS(5056), + [anon_sym_RPAREN] = ACTIONS(5056), + [sym__newline_token] = ACTIONS(5056), + [aux_sym_insert_token1] = ACTIONS(5056), + [aux_sym_delete_token1] = ACTIONS(5056), + [aux_sym_highlight_token1] = ACTIONS(5056), + [aux_sym_edit_comment_token1] = ACTIONS(5056), + [anon_sym_CARET_LBRACK] = ACTIONS(5056), + [anon_sym_LBRACK_CARET] = ACTIONS(5056), + [sym_uri_autolink] = ACTIONS(5056), + [sym_email_autolink] = ACTIONS(5056), + [sym__whitespace_ge_2] = ACTIONS(5056), + [aux_sym__whitespace_token1] = ACTIONS(5058), + [sym__word_no_digit] = ACTIONS(5056), + [sym__digits] = ACTIONS(5056), + [anon_sym_DASH_DASH] = ACTIONS(5058), + [anon_sym_DASH_DASH_DASH] = ACTIONS(5056), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5056), + [sym__code_span_start] = ACTIONS(5056), + [sym__emphasis_open_star] = ACTIONS(5056), + [sym__emphasis_open_underscore] = ACTIONS(5056), + [sym__strikeout_open] = ACTIONS(5056), + [sym__latex_span_start] = ACTIONS(5056), + [sym__single_quote_open] = ACTIONS(5056), + [sym__double_quote_open] = ACTIONS(5056), + [sym__double_quote_close] = ACTIONS(5056), + [sym__superscript_open] = ACTIONS(5056), + [sym__subscript_open] = ACTIONS(5056), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5056), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5056), + [sym__cite_author_in_text] = ACTIONS(5056), + [sym__cite_suppress_author] = ACTIONS(5056), + [sym__shortcode_open_escaped] = ACTIONS(5056), + [sym__shortcode_open] = ACTIONS(5056), + [sym__unclosed_span] = ACTIONS(5056), + }, + [STATE(1423)] = { + [sym__backslash_escape] = ACTIONS(4912), + [sym_entity_reference] = ACTIONS(4912), + [sym_numeric_character_reference] = ACTIONS(4912), + [anon_sym_LT] = ACTIONS(4914), + [anon_sym_GT] = ACTIONS(4912), + [anon_sym_BANG] = ACTIONS(4912), + [anon_sym_DQUOTE] = ACTIONS(4912), + [anon_sym_POUND] = ACTIONS(4912), + [anon_sym_DOLLAR] = ACTIONS(4912), + [anon_sym_PERCENT] = ACTIONS(4912), + [anon_sym_AMP] = ACTIONS(4914), + [anon_sym_SQUOTE] = ACTIONS(4912), + [anon_sym_STAR] = ACTIONS(4912), + [anon_sym_PLUS] = ACTIONS(4912), + [anon_sym_COMMA] = ACTIONS(4912), + [anon_sym_DASH] = ACTIONS(4914), + [anon_sym_DOT] = ACTIONS(4914), + [anon_sym_SLASH] = ACTIONS(4912), + [anon_sym_COLON] = ACTIONS(4912), + [anon_sym_SEMI] = ACTIONS(4912), + [anon_sym_EQ] = ACTIONS(4912), + [anon_sym_QMARK] = ACTIONS(4912), + [anon_sym_LBRACK] = ACTIONS(4914), + [anon_sym_BSLASH] = ACTIONS(4914), + [anon_sym_CARET] = ACTIONS(4914), + [anon_sym__] = ACTIONS(4912), + [anon_sym_BQUOTE] = ACTIONS(4912), + [anon_sym_LBRACE] = ACTIONS(4912), + [anon_sym_PIPE] = ACTIONS(4912), + [anon_sym_TILDE] = ACTIONS(4912), + [anon_sym_LPAREN] = ACTIONS(4912), + [anon_sym_RPAREN] = ACTIONS(4912), + [sym__newline_token] = ACTIONS(4912), + [aux_sym_insert_token1] = ACTIONS(4912), + [aux_sym_delete_token1] = ACTIONS(4912), + [aux_sym_highlight_token1] = ACTIONS(4912), + [aux_sym_edit_comment_token1] = ACTIONS(4912), + [anon_sym_CARET_LBRACK] = ACTIONS(4912), + [anon_sym_LBRACK_CARET] = ACTIONS(4912), + [sym_uri_autolink] = ACTIONS(4912), + [sym_email_autolink] = ACTIONS(4912), + [sym__whitespace_ge_2] = ACTIONS(4912), + [aux_sym__whitespace_token1] = ACTIONS(4914), + [sym__word_no_digit] = ACTIONS(4912), + [sym__digits] = ACTIONS(4912), + [anon_sym_DASH_DASH] = ACTIONS(4914), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4912), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4912), + [sym__code_span_start] = ACTIONS(4912), + [sym__emphasis_open_star] = ACTIONS(4912), + [sym__emphasis_open_underscore] = ACTIONS(4912), + [sym__emphasis_close_underscore] = ACTIONS(4912), + [sym__strikeout_open] = ACTIONS(4912), + [sym__latex_span_start] = ACTIONS(4912), + [sym__single_quote_open] = ACTIONS(4912), + [sym__double_quote_open] = ACTIONS(4912), + [sym__superscript_open] = ACTIONS(4912), + [sym__subscript_open] = ACTIONS(4912), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4912), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4912), + [sym__cite_author_in_text] = ACTIONS(4912), + [sym__cite_suppress_author] = ACTIONS(4912), + [sym__shortcode_open_escaped] = ACTIONS(4912), + [sym__shortcode_open] = ACTIONS(4912), + [sym__unclosed_span] = ACTIONS(4912), + }, + [STATE(1424)] = { + [sym__backslash_escape] = ACTIONS(4916), + [sym_entity_reference] = ACTIONS(4916), + [sym_numeric_character_reference] = ACTIONS(4916), + [anon_sym_LT] = ACTIONS(4918), + [anon_sym_GT] = ACTIONS(4916), + [anon_sym_BANG] = ACTIONS(4916), + [anon_sym_DQUOTE] = ACTIONS(4916), + [anon_sym_POUND] = ACTIONS(4916), + [anon_sym_DOLLAR] = ACTIONS(4916), + [anon_sym_PERCENT] = ACTIONS(4916), + [anon_sym_AMP] = ACTIONS(4918), + [anon_sym_SQUOTE] = ACTIONS(4916), + [anon_sym_STAR] = ACTIONS(4916), + [anon_sym_PLUS] = ACTIONS(4916), + [anon_sym_COMMA] = ACTIONS(4916), + [anon_sym_DASH] = ACTIONS(4918), + [anon_sym_DOT] = ACTIONS(4918), + [anon_sym_SLASH] = ACTIONS(4916), + [anon_sym_COLON] = ACTIONS(4916), + [anon_sym_SEMI] = ACTIONS(4916), + [anon_sym_EQ] = ACTIONS(4916), + [anon_sym_QMARK] = ACTIONS(4916), + [anon_sym_LBRACK] = ACTIONS(4918), + [anon_sym_BSLASH] = ACTIONS(4918), + [anon_sym_CARET] = ACTIONS(4918), + [anon_sym__] = ACTIONS(4916), + [anon_sym_BQUOTE] = ACTIONS(4916), + [anon_sym_LBRACE] = ACTIONS(4916), + [anon_sym_PIPE] = ACTIONS(4916), + [anon_sym_TILDE] = ACTIONS(4916), + [anon_sym_LPAREN] = ACTIONS(4916), + [anon_sym_RPAREN] = ACTIONS(4916), + [sym__newline_token] = ACTIONS(4916), + [aux_sym_insert_token1] = ACTIONS(4916), + [aux_sym_delete_token1] = ACTIONS(4916), + [aux_sym_highlight_token1] = ACTIONS(4916), + [aux_sym_edit_comment_token1] = ACTIONS(4916), + [anon_sym_CARET_LBRACK] = ACTIONS(4916), + [anon_sym_LBRACK_CARET] = ACTIONS(4916), + [sym_uri_autolink] = ACTIONS(4916), + [sym_email_autolink] = ACTIONS(4916), + [sym__whitespace_ge_2] = ACTIONS(4916), + [aux_sym__whitespace_token1] = ACTIONS(4918), + [sym__word_no_digit] = ACTIONS(4916), + [sym__digits] = ACTIONS(4916), + [anon_sym_DASH_DASH] = ACTIONS(4918), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4916), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4916), + [sym__code_span_start] = ACTIONS(4916), + [sym__emphasis_open_star] = ACTIONS(4916), + [sym__emphasis_open_underscore] = ACTIONS(4916), + [sym__emphasis_close_underscore] = ACTIONS(4916), + [sym__strikeout_open] = ACTIONS(4916), + [sym__latex_span_start] = ACTIONS(4916), + [sym__single_quote_open] = ACTIONS(4916), + [sym__double_quote_open] = ACTIONS(4916), + [sym__superscript_open] = ACTIONS(4916), + [sym__subscript_open] = ACTIONS(4916), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4916), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4916), + [sym__cite_author_in_text] = ACTIONS(4916), + [sym__cite_suppress_author] = ACTIONS(4916), + [sym__shortcode_open_escaped] = ACTIONS(4916), + [sym__shortcode_open] = ACTIONS(4916), + [sym__unclosed_span] = ACTIONS(4916), + }, + [STATE(1425)] = { + [sym__backslash_escape] = ACTIONS(4920), + [sym_entity_reference] = ACTIONS(4920), + [sym_numeric_character_reference] = ACTIONS(4920), + [anon_sym_LT] = ACTIONS(4922), + [anon_sym_GT] = ACTIONS(4920), + [anon_sym_BANG] = ACTIONS(4920), + [anon_sym_DQUOTE] = ACTIONS(4920), + [anon_sym_POUND] = ACTIONS(4920), + [anon_sym_DOLLAR] = ACTIONS(4920), + [anon_sym_PERCENT] = ACTIONS(4920), + [anon_sym_AMP] = ACTIONS(4922), + [anon_sym_SQUOTE] = ACTIONS(4920), + [anon_sym_STAR] = ACTIONS(4920), + [anon_sym_PLUS] = ACTIONS(4920), + [anon_sym_COMMA] = ACTIONS(4920), + [anon_sym_DASH] = ACTIONS(4922), + [anon_sym_DOT] = ACTIONS(4922), + [anon_sym_SLASH] = ACTIONS(4920), + [anon_sym_COLON] = ACTIONS(4920), + [anon_sym_SEMI] = ACTIONS(4920), + [anon_sym_EQ] = ACTIONS(4920), + [anon_sym_QMARK] = ACTIONS(4920), + [anon_sym_LBRACK] = ACTIONS(4922), + [anon_sym_BSLASH] = ACTIONS(4922), + [anon_sym_CARET] = ACTIONS(4922), + [anon_sym__] = ACTIONS(4920), + [anon_sym_BQUOTE] = ACTIONS(4920), + [anon_sym_LBRACE] = ACTIONS(4920), + [anon_sym_PIPE] = ACTIONS(4920), + [anon_sym_TILDE] = ACTIONS(4920), + [anon_sym_LPAREN] = ACTIONS(4920), + [anon_sym_RPAREN] = ACTIONS(4920), + [sym__newline_token] = ACTIONS(4920), + [aux_sym_insert_token1] = ACTIONS(4920), + [aux_sym_delete_token1] = ACTIONS(4920), + [aux_sym_highlight_token1] = ACTIONS(4920), + [aux_sym_edit_comment_token1] = ACTIONS(4920), + [anon_sym_CARET_LBRACK] = ACTIONS(4920), + [anon_sym_LBRACK_CARET] = ACTIONS(4920), + [sym_uri_autolink] = ACTIONS(4920), + [sym_email_autolink] = ACTIONS(4920), + [sym__whitespace_ge_2] = ACTIONS(4920), + [aux_sym__whitespace_token1] = ACTIONS(4922), + [sym__word_no_digit] = ACTIONS(4920), + [sym__digits] = ACTIONS(4920), + [anon_sym_DASH_DASH] = ACTIONS(4922), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4920), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4920), + [sym__code_span_start] = ACTIONS(4920), + [sym__emphasis_open_star] = ACTIONS(4920), + [sym__emphasis_open_underscore] = ACTIONS(4920), + [sym__emphasis_close_underscore] = ACTIONS(4920), + [sym__strikeout_open] = ACTIONS(4920), + [sym__latex_span_start] = ACTIONS(4920), + [sym__single_quote_open] = ACTIONS(4920), + [sym__double_quote_open] = ACTIONS(4920), + [sym__superscript_open] = ACTIONS(4920), + [sym__subscript_open] = ACTIONS(4920), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4920), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4920), + [sym__cite_author_in_text] = ACTIONS(4920), + [sym__cite_suppress_author] = ACTIONS(4920), + [sym__shortcode_open_escaped] = ACTIONS(4920), + [sym__shortcode_open] = ACTIONS(4920), + [sym__unclosed_span] = ACTIONS(4920), + }, + [STATE(1426)] = { + [sym__backslash_escape] = ACTIONS(4872), + [sym_entity_reference] = ACTIONS(4872), + [sym_numeric_character_reference] = ACTIONS(4872), + [anon_sym_LT] = ACTIONS(4874), + [anon_sym_GT] = ACTIONS(4872), + [anon_sym_BANG] = ACTIONS(4872), + [anon_sym_DQUOTE] = ACTIONS(4872), + [anon_sym_POUND] = ACTIONS(4872), + [anon_sym_DOLLAR] = ACTIONS(4872), + [anon_sym_PERCENT] = ACTIONS(4872), + [anon_sym_AMP] = ACTIONS(4874), + [anon_sym_SQUOTE] = ACTIONS(4872), + [anon_sym_STAR] = ACTIONS(4872), + [anon_sym_PLUS] = ACTIONS(4872), + [anon_sym_COMMA] = ACTIONS(4872), + [anon_sym_DASH] = ACTIONS(4874), + [anon_sym_DOT] = ACTIONS(4874), + [anon_sym_SLASH] = ACTIONS(4872), + [anon_sym_COLON] = ACTIONS(4872), + [anon_sym_SEMI] = ACTIONS(4872), + [anon_sym_EQ] = ACTIONS(4872), + [anon_sym_QMARK] = ACTIONS(4872), + [anon_sym_LBRACK] = ACTIONS(4874), + [anon_sym_BSLASH] = ACTIONS(4874), + [anon_sym_CARET] = ACTIONS(4874), + [anon_sym__] = ACTIONS(4872), + [anon_sym_BQUOTE] = ACTIONS(4872), + [anon_sym_LBRACE] = ACTIONS(4872), + [anon_sym_PIPE] = ACTIONS(4872), + [anon_sym_TILDE] = ACTIONS(4872), + [anon_sym_LPAREN] = ACTIONS(4872), + [anon_sym_RPAREN] = ACTIONS(4872), + [sym__newline_token] = ACTIONS(4872), + [aux_sym_insert_token1] = ACTIONS(4872), + [aux_sym_insert_token2] = ACTIONS(4872), + [aux_sym_delete_token1] = ACTIONS(4872), + [aux_sym_highlight_token1] = ACTIONS(4872), + [aux_sym_edit_comment_token1] = ACTIONS(4872), + [anon_sym_CARET_LBRACK] = ACTIONS(4872), + [anon_sym_LBRACK_CARET] = ACTIONS(4872), + [sym_uri_autolink] = ACTIONS(4872), + [sym_email_autolink] = ACTIONS(4872), + [sym__whitespace_ge_2] = ACTIONS(4874), + [aux_sym__whitespace_token1] = ACTIONS(4874), + [sym__word_no_digit] = ACTIONS(4872), + [sym__digits] = ACTIONS(4872), + [anon_sym_DASH_DASH] = ACTIONS(4874), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4872), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4872), + [sym__code_span_start] = ACTIONS(4872), + [sym__emphasis_open_star] = ACTIONS(4872), + [sym__emphasis_open_underscore] = ACTIONS(4872), + [sym__strikeout_open] = ACTIONS(4872), + [sym__latex_span_start] = ACTIONS(4872), + [sym__single_quote_open] = ACTIONS(4872), + [sym__double_quote_open] = ACTIONS(4872), + [sym__superscript_open] = ACTIONS(4872), + [sym__subscript_open] = ACTIONS(4872), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4872), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4872), + [sym__cite_author_in_text] = ACTIONS(4872), + [sym__cite_suppress_author] = ACTIONS(4872), + [sym__shortcode_open_escaped] = ACTIONS(4872), + [sym__shortcode_open] = ACTIONS(4872), + [sym__unclosed_span] = ACTIONS(4872), + }, +}; + +static const uint16_t ts_small_parse_table[] = { + [0] = 3, + ACTIONS(5136), 1, sym__emphasis_close_star, - ACTIONS(3959), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3957), 51, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [46680] = 2, - ACTIONS(4083), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4081), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - ts_builtin_sym_end, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [46746] = 2, - ACTIONS(3743), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3741), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__single_quote_close, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [46812] = 2, - ACTIONS(4087), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4085), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - ts_builtin_sym_end, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [46878] = 2, - ACTIONS(3677), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(3675), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - ts_builtin_sym_end, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [46944] = 2, - ACTIONS(4091), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4089), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__single_quote_close, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [47010] = 2, - ACTIONS(4095), 9, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4093), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__single_quote_close, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [47076] = 2, - ACTIONS(4103), 9, + ACTIONS(5134), 8, anon_sym_LT, anon_sym_AMP, anon_sym_DASH, anon_sym_DOT, - anon_sym_LBRACK, anon_sym_BSLASH, anon_sym_CARET, aux_sym__whitespace_token1, anon_sym_DASH_DASH, - ACTIONS(4101), 52, + ACTIONS(5132), 55, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -109995,7 +139082,6 @@ static const uint16_t ts_small_parse_table[] = { sym__single_quote_open, sym__double_quote_open, sym__superscript_open, - sym__superscript_close, sym__subscript_open, sym__cite_author_in_text_with_open_bracket, sym__cite_suppress_author_with_open_bracket, @@ -110030,6 +139116,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_RPAREN, sym__newline_token, + aux_sym_insert_token1, + aux_sym_delete_token1, + aux_sym_highlight_token1, + aux_sym_edit_comment_token1, anon_sym_CARET_LBRACK, anon_sym_LBRACK_CARET, sym_uri_autolink, @@ -110039,18 +139129,17 @@ static const uint16_t ts_small_parse_table[] = { sym__digits, anon_sym_DASH_DASH_DASH, anon_sym_DOT_DOT_DOT, - [47142] = 2, - ACTIONS(3943), 9, + [71] = 2, + ACTIONS(5140), 8, anon_sym_LT, anon_sym_AMP, anon_sym_DASH, anon_sym_DOT, - anon_sym_LBRACK, anon_sym_BSLASH, anon_sym_CARET, aux_sym__whitespace_token1, anon_sym_DASH_DASH, - ACTIONS(3941), 52, + ACTIONS(5138), 56, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -110067,7 +139156,6 @@ static const uint16_t ts_small_parse_table[] = { sym__shortcode_open_escaped, sym__shortcode_open, sym__unclosed_span, - ts_builtin_sym_end, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -110086,6 +139174,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_EQ, anon_sym_QMARK, + anon_sym_RBRACK, anon_sym__, anon_sym_BQUOTE, anon_sym_LBRACE, @@ -110094,6 +139183,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_RPAREN, sym__newline_token, + aux_sym_insert_token1, + aux_sym_delete_token1, + aux_sym_highlight_token1, + aux_sym_edit_comment_token1, anon_sym_CARET_LBRACK, anon_sym_LBRACK_CARET, sym_uri_autolink, @@ -110103,18 +139196,19 @@ static const uint16_t ts_small_parse_table[] = { sym__digits, anon_sym_DASH_DASH_DASH, anon_sym_DOT_DOT_DOT, - [47208] = 2, - ACTIONS(3681), 9, + [140] = 3, + ACTIONS(5142), 1, + sym__emphasis_close_star, + ACTIONS(5134), 8, anon_sym_LT, anon_sym_AMP, anon_sym_DASH, anon_sym_DOT, - anon_sym_LBRACK, anon_sym_BSLASH, anon_sym_CARET, aux_sym__whitespace_token1, anon_sym_DASH_DASH, - ACTIONS(3679), 52, + ACTIONS(5132), 55, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -110131,7 +139225,6 @@ static const uint16_t ts_small_parse_table[] = { sym__shortcode_open_escaped, sym__shortcode_open, sym__unclosed_span, - ts_builtin_sym_end, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -110158,6 +139251,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_RPAREN, sym__newline_token, + aux_sym_insert_token1, + aux_sym_delete_token1, + aux_sym_highlight_token1, + aux_sym_edit_comment_token1, anon_sym_CARET_LBRACK, anon_sym_LBRACK_CARET, sym_uri_autolink, @@ -110167,25 +139264,25 @@ static const uint16_t ts_small_parse_table[] = { sym__digits, anon_sym_DASH_DASH_DASH, anon_sym_DOT_DOT_DOT, - [47274] = 2, - ACTIONS(4107), 9, + [211] = 3, + ACTIONS(5148), 1, + sym__emphasis_close_underscore, + ACTIONS(5146), 8, anon_sym_LT, anon_sym_AMP, anon_sym_DASH, anon_sym_DOT, - anon_sym_LBRACK, anon_sym_BSLASH, anon_sym_CARET, aux_sym__whitespace_token1, anon_sym_DASH_DASH, - ACTIONS(4105), 52, + ACTIONS(5144), 55, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikeout_open, sym__latex_span_start, sym__single_quote_open, - sym__single_quote_close, sym__double_quote_open, sym__superscript_open, sym__subscript_open, @@ -110222,6 +139319,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_RPAREN, sym__newline_token, + aux_sym_insert_token1, + aux_sym_delete_token1, + aux_sym_highlight_token1, + aux_sym_edit_comment_token1, anon_sym_CARET_LBRACK, anon_sym_LBRACK_CARET, sym_uri_autolink, @@ -110231,25 +139332,24 @@ static const uint16_t ts_small_parse_table[] = { sym__digits, anon_sym_DASH_DASH_DASH, anon_sym_DOT_DOT_DOT, - [47340] = 2, - ACTIONS(4111), 9, + [282] = 2, + ACTIONS(5152), 8, anon_sym_LT, anon_sym_AMP, anon_sym_DASH, anon_sym_DOT, - anon_sym_LBRACK, anon_sym_BSLASH, anon_sym_CARET, aux_sym__whitespace_token1, anon_sym_DASH_DASH, - ACTIONS(4109), 52, + ACTIONS(5150), 56, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_star, sym__strikeout_open, sym__latex_span_start, sym__single_quote_open, - sym__single_quote_close, sym__double_quote_open, sym__superscript_open, sym__subscript_open, @@ -110286,6 +139386,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_RPAREN, sym__newline_token, + aux_sym_insert_token1, + aux_sym_delete_token1, + aux_sym_highlight_token1, + aux_sym_edit_comment_token1, anon_sym_CARET_LBRACK, anon_sym_LBRACK_CARET, sym_uri_autolink, @@ -110295,21 +139399,21 @@ static const uint16_t ts_small_parse_table[] = { sym__digits, anon_sym_DASH_DASH_DASH, anon_sym_DOT_DOT_DOT, - [47406] = 2, - ACTIONS(3975), 9, + [351] = 2, + ACTIONS(5156), 8, anon_sym_LT, anon_sym_AMP, anon_sym_DASH, anon_sym_DOT, - anon_sym_LBRACK, anon_sym_BSLASH, anon_sym_CARET, aux_sym__whitespace_token1, anon_sym_DASH_DASH, - ACTIONS(3973), 52, + ACTIONS(5154), 56, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_star, sym__strikeout_open, sym__latex_span_start, sym__single_quote_open, @@ -110341,7 +139445,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_EQ, anon_sym_QMARK, - anon_sym_RBRACK, anon_sym__, anon_sym_BQUOTE, anon_sym_LBRACE, @@ -110350,6 +139453,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_RPAREN, sym__newline_token, + aux_sym_insert_token1, + aux_sym_delete_token1, + aux_sym_highlight_token1, + aux_sym_edit_comment_token1, anon_sym_CARET_LBRACK, anon_sym_LBRACK_CARET, sym_uri_autolink, @@ -110359,8 +139466,8 @@ static const uint16_t ts_small_parse_table[] = { sym__digits, anon_sym_DASH_DASH_DASH, anon_sym_DOT_DOT_DOT, - [47472] = 2, - ACTIONS(4173), 8, + [420] = 2, + ACTIONS(5140), 8, anon_sym_LT, anon_sym_AMP, anon_sym_DASH, @@ -110369,10 +139476,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, aux_sym__whitespace_token1, anon_sym_DASH_DASH, - ACTIONS(4171), 52, + ACTIONS(5138), 56, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_star, sym__strikeout_open, sym__latex_span_start, sym__single_quote_open, @@ -110404,7 +139512,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_EQ, anon_sym_QMARK, - anon_sym_RBRACK, anon_sym__, anon_sym_BQUOTE, anon_sym_LBRACE, @@ -110413,6 +139520,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_RPAREN, sym__newline_token, + aux_sym_insert_token1, + aux_sym_delete_token1, + aux_sym_highlight_token1, + aux_sym_edit_comment_token1, anon_sym_CARET_LBRACK, anon_sym_LBRACK_CARET, sym_uri_autolink, @@ -110422,8 +139533,8 @@ static const uint16_t ts_small_parse_table[] = { sym__digits, anon_sym_DASH_DASH_DASH, anon_sym_DOT_DOT_DOT, - [47537] = 2, - ACTIONS(4177), 8, + [489] = 2, + ACTIONS(5160), 8, anon_sym_LT, anon_sym_AMP, anon_sym_DASH, @@ -110432,7 +139543,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, aux_sym__whitespace_token1, anon_sym_DASH_DASH, - ACTIONS(4175), 52, + ACTIONS(5158), 56, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -110476,6 +139587,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_RPAREN, sym__newline_token, + aux_sym_insert_token1, + aux_sym_delete_token1, + aux_sym_highlight_token1, + aux_sym_edit_comment_token1, anon_sym_CARET_LBRACK, anon_sym_LBRACK_CARET, sym_uri_autolink, @@ -110485,8 +139600,8 @@ static const uint16_t ts_small_parse_table[] = { sym__digits, anon_sym_DASH_DASH_DASH, anon_sym_DOT_DOT_DOT, - [47602] = 2, - ACTIONS(4181), 8, + [558] = 2, + ACTIONS(5164), 8, anon_sym_LT, anon_sym_AMP, anon_sym_DASH, @@ -110495,10 +139610,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, aux_sym__whitespace_token1, anon_sym_DASH_DASH, - ACTIONS(4179), 52, + ACTIONS(5162), 56, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_star, sym__strikeout_open, sym__latex_span_start, sym__single_quote_open, @@ -110530,7 +139646,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_EQ, anon_sym_QMARK, - anon_sym_RBRACK, anon_sym__, anon_sym_BQUOTE, anon_sym_LBRACE, @@ -110539,6 +139654,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_RPAREN, sym__newline_token, + aux_sym_insert_token1, + aux_sym_delete_token1, + aux_sym_highlight_token1, + aux_sym_edit_comment_token1, anon_sym_CARET_LBRACK, anon_sym_LBRACK_CARET, sym_uri_autolink, @@ -110548,10 +139667,8 @@ static const uint16_t ts_small_parse_table[] = { sym__digits, anon_sym_DASH_DASH_DASH, anon_sym_DOT_DOT_DOT, - [47667] = 3, - ACTIONS(4183), 1, - sym__emphasis_close_star, - ACTIONS(4177), 8, + [627] = 2, + ACTIONS(5168), 8, anon_sym_LT, anon_sym_AMP, anon_sym_DASH, @@ -110560,10 +139677,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, aux_sym__whitespace_token1, anon_sym_DASH_DASH, - ACTIONS(4175), 51, + ACTIONS(5166), 56, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_star, sym__strikeout_open, sym__latex_span_start, sym__single_quote_open, @@ -110603,6 +139721,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_RPAREN, sym__newline_token, + aux_sym_insert_token1, + aux_sym_delete_token1, + aux_sym_highlight_token1, + aux_sym_edit_comment_token1, anon_sym_CARET_LBRACK, anon_sym_LBRACK_CARET, sym_uri_autolink, @@ -110612,8 +139734,10 @@ static const uint16_t ts_small_parse_table[] = { sym__digits, anon_sym_DASH_DASH_DASH, anon_sym_DOT_DOT_DOT, - [47734] = 2, - ACTIONS(4187), 8, + [696] = 3, + ACTIONS(5170), 1, + sym__emphasis_close_star, + ACTIONS(5134), 8, anon_sym_LT, anon_sym_AMP, anon_sym_DASH, @@ -110622,11 +139746,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, aux_sym__whitespace_token1, anon_sym_DASH_DASH, - ACTIONS(4185), 52, + ACTIONS(5132), 55, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, sym__strikeout_open, sym__latex_span_start, sym__single_quote_open, @@ -110666,6 +139789,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_RPAREN, sym__newline_token, + aux_sym_insert_token1, + aux_sym_delete_token1, + aux_sym_highlight_token1, + aux_sym_edit_comment_token1, anon_sym_CARET_LBRACK, anon_sym_LBRACK_CARET, sym_uri_autolink, @@ -110675,10 +139802,10 @@ static const uint16_t ts_small_parse_table[] = { sym__digits, anon_sym_DASH_DASH_DASH, anon_sym_DOT_DOT_DOT, - [47799] = 3, - ACTIONS(4193), 1, + [767] = 3, + ACTIONS(5172), 1, sym__emphasis_close_underscore, - ACTIONS(4191), 8, + ACTIONS(5146), 8, anon_sym_LT, anon_sym_AMP, anon_sym_DASH, @@ -110687,7 +139814,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, aux_sym__whitespace_token1, anon_sym_DASH_DASH, - ACTIONS(4189), 51, + ACTIONS(5144), 55, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -110730,6 +139857,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_RPAREN, sym__newline_token, + aux_sym_insert_token1, + aux_sym_delete_token1, + aux_sym_highlight_token1, + aux_sym_edit_comment_token1, anon_sym_CARET_LBRACK, anon_sym_LBRACK_CARET, sym_uri_autolink, @@ -110739,8 +139870,8 @@ static const uint16_t ts_small_parse_table[] = { sym__digits, anon_sym_DASH_DASH_DASH, anon_sym_DOT_DOT_DOT, - [47866] = 2, - ACTIONS(4197), 8, + [838] = 2, + ACTIONS(5164), 8, anon_sym_LT, anon_sym_AMP, anon_sym_DASH, @@ -110749,7 +139880,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, aux_sym__whitespace_token1, anon_sym_DASH_DASH, - ACTIONS(4195), 52, + ACTIONS(5162), 56, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -110793,6 +139924,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_RPAREN, sym__newline_token, + aux_sym_insert_token1, + aux_sym_delete_token1, + aux_sym_highlight_token1, + aux_sym_edit_comment_token1, anon_sym_CARET_LBRACK, anon_sym_LBRACK_CARET, sym_uri_autolink, @@ -110802,10 +139937,8 @@ static const uint16_t ts_small_parse_table[] = { sym__digits, anon_sym_DASH_DASH_DASH, anon_sym_DOT_DOT_DOT, - [47931] = 3, - ACTIONS(4199), 1, - sym__emphasis_close_star, - ACTIONS(4177), 8, + [907] = 2, + ACTIONS(5168), 8, anon_sym_LT, anon_sym_AMP, anon_sym_DASH, @@ -110814,7 +139947,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, aux_sym__whitespace_token1, anon_sym_DASH_DASH, - ACTIONS(4175), 51, + ACTIONS(5166), 56, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -110849,6 +139982,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_EQ, anon_sym_QMARK, + anon_sym_RBRACK, anon_sym__, anon_sym_BQUOTE, anon_sym_LBRACE, @@ -110857,6 +139991,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_RPAREN, sym__newline_token, + aux_sym_insert_token1, + aux_sym_delete_token1, + aux_sym_highlight_token1, + aux_sym_edit_comment_token1, anon_sym_CARET_LBRACK, anon_sym_LBRACK_CARET, sym_uri_autolink, @@ -110866,8 +140004,8 @@ static const uint16_t ts_small_parse_table[] = { sym__digits, anon_sym_DASH_DASH_DASH, anon_sym_DOT_DOT_DOT, - [47998] = 2, - ACTIONS(4197), 8, + [976] = 2, + ACTIONS(5134), 8, anon_sym_LT, anon_sym_AMP, anon_sym_DASH, @@ -110876,7 +140014,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, aux_sym__whitespace_token1, anon_sym_DASH_DASH, - ACTIONS(4195), 52, + ACTIONS(5132), 56, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -110920,6 +140058,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_RPAREN, sym__newline_token, + aux_sym_insert_token1, + aux_sym_delete_token1, + aux_sym_highlight_token1, + aux_sym_edit_comment_token1, anon_sym_CARET_LBRACK, anon_sym_LBRACK_CARET, sym_uri_autolink, @@ -110929,134 +140071,8 @@ static const uint16_t ts_small_parse_table[] = { sym__digits, anon_sym_DASH_DASH_DASH, anon_sym_DOT_DOT_DOT, - [48063] = 2, - ACTIONS(4187), 8, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4185), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [48128] = 2, - ACTIONS(4181), 8, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4179), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [48193] = 2, - ACTIONS(4197), 8, + [1045] = 2, + ACTIONS(5146), 8, anon_sym_LT, anon_sym_AMP, anon_sym_DASH, @@ -111065,7 +140081,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, aux_sym__whitespace_token1, anon_sym_DASH_DASH, - ACTIONS(4195), 52, + ACTIONS(5144), 56, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -111109,6 +140125,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_RPAREN, sym__newline_token, + aux_sym_insert_token1, + aux_sym_delete_token1, + aux_sym_highlight_token1, + aux_sym_edit_comment_token1, anon_sym_CARET_LBRACK, anon_sym_LBRACK_CARET, sym_uri_autolink, @@ -111118,8 +140138,8 @@ static const uint16_t ts_small_parse_table[] = { sym__digits, anon_sym_DASH_DASH_DASH, anon_sym_DOT_DOT_DOT, - [48258] = 2, - ACTIONS(4203), 8, + [1114] = 2, + ACTIONS(5152), 8, anon_sym_LT, anon_sym_AMP, anon_sym_DASH, @@ -111128,7 +140148,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, aux_sym__whitespace_token1, anon_sym_DASH_DASH, - ACTIONS(4201), 52, + ACTIONS(5150), 56, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -111172,6 +140192,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_RPAREN, sym__newline_token, + aux_sym_insert_token1, + aux_sym_delete_token1, + aux_sym_highlight_token1, + aux_sym_edit_comment_token1, anon_sym_CARET_LBRACK, anon_sym_LBRACK_CARET, sym_uri_autolink, @@ -111181,8 +140205,8 @@ static const uint16_t ts_small_parse_table[] = { sym__digits, anon_sym_DASH_DASH_DASH, anon_sym_DOT_DOT_DOT, - [48323] = 2, - ACTIONS(4181), 8, + [1183] = 2, + ACTIONS(5156), 8, anon_sym_LT, anon_sym_AMP, anon_sym_DASH, @@ -111191,201 +140215,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, aux_sym__whitespace_token1, anon_sym_DASH_DASH, - ACTIONS(4179), 52, + ACTIONS(5154), 56, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [48388] = 3, - ACTIONS(4205), 1, sym__emphasis_close_underscore, - ACTIONS(4191), 8, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4189), 51, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [48455] = 2, - ACTIONS(4203), 8, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4201), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_star, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, - 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_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [48520] = 2, - ACTIONS(4209), 8, - anon_sym_LT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_BSLASH, - anon_sym_CARET, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4207), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_star, sym__strikeout_open, sym__latex_span_start, sym__single_quote_open, @@ -111425,6 +140259,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_RPAREN, sym__newline_token, + aux_sym_insert_token1, + aux_sym_delete_token1, + aux_sym_highlight_token1, + aux_sym_edit_comment_token1, anon_sym_CARET_LBRACK, anon_sym_LBRACK_CARET, sym_uri_autolink, @@ -111434,8 +140272,8 @@ static const uint16_t ts_small_parse_table[] = { sym__digits, anon_sym_DASH_DASH_DASH, anon_sym_DOT_DOT_DOT, - [48585] = 2, - ACTIONS(4187), 8, + [1252] = 2, + ACTIONS(5140), 8, anon_sym_LT, anon_sym_AMP, anon_sym_DASH, @@ -111444,10 +140282,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, aux_sym__whitespace_token1, anon_sym_DASH_DASH, - ACTIONS(4185), 52, + ACTIONS(5138), 56, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, sym__strikeout_open, sym__latex_span_start, sym__single_quote_open, @@ -111479,7 +140318,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_EQ, anon_sym_QMARK, - anon_sym_RBRACK, anon_sym__, anon_sym_BQUOTE, anon_sym_LBRACE, @@ -111488,6 +140326,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_RPAREN, sym__newline_token, + aux_sym_insert_token1, + aux_sym_delete_token1, + aux_sym_highlight_token1, + aux_sym_edit_comment_token1, anon_sym_CARET_LBRACK, anon_sym_LBRACK_CARET, sym_uri_autolink, @@ -111497,8 +140339,8 @@ static const uint16_t ts_small_parse_table[] = { sym__digits, anon_sym_DASH_DASH_DASH, anon_sym_DOT_DOT_DOT, - [48650] = 2, - ACTIONS(4203), 8, + [1321] = 2, + ACTIONS(5160), 8, anon_sym_LT, anon_sym_AMP, anon_sym_DASH, @@ -111507,10 +140349,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, aux_sym__whitespace_token1, anon_sym_DASH_DASH, - ACTIONS(4201), 52, + ACTIONS(5158), 56, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, sym__strikeout_open, sym__latex_span_start, sym__single_quote_open, @@ -111542,7 +140385,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_EQ, anon_sym_QMARK, - anon_sym_RBRACK, anon_sym__, anon_sym_BQUOTE, anon_sym_LBRACE, @@ -111551,6 +140393,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_RPAREN, sym__newline_token, + aux_sym_insert_token1, + aux_sym_delete_token1, + aux_sym_highlight_token1, + aux_sym_edit_comment_token1, anon_sym_CARET_LBRACK, anon_sym_LBRACK_CARET, sym_uri_autolink, @@ -111560,8 +140406,10 @@ static const uint16_t ts_small_parse_table[] = { sym__digits, anon_sym_DASH_DASH_DASH, anon_sym_DOT_DOT_DOT, - [48715] = 2, - ACTIONS(4209), 8, + [1390] = 3, + ACTIONS(5174), 1, + sym__emphasis_close_underscore, + ACTIONS(5146), 8, anon_sym_LT, anon_sym_AMP, anon_sym_DASH, @@ -111570,11 +140418,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, aux_sym__whitespace_token1, anon_sym_DASH_DASH, - ACTIONS(4207), 52, + ACTIONS(5144), 55, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, sym__strikeout_open, sym__latex_span_start, sym__single_quote_open, @@ -111614,6 +140461,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_RPAREN, sym__newline_token, + aux_sym_insert_token1, + aux_sym_delete_token1, + aux_sym_highlight_token1, + aux_sym_edit_comment_token1, anon_sym_CARET_LBRACK, anon_sym_LBRACK_CARET, sym_uri_autolink, @@ -111623,8 +140474,8 @@ static const uint16_t ts_small_parse_table[] = { sym__digits, anon_sym_DASH_DASH_DASH, anon_sym_DOT_DOT_DOT, - [48780] = 2, - ACTIONS(4213), 8, + [1461] = 2, + ACTIONS(5160), 8, anon_sym_LT, anon_sym_AMP, anon_sym_DASH, @@ -111633,11 +140484,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, aux_sym__whitespace_token1, anon_sym_DASH_DASH, - ACTIONS(4211), 52, + ACTIONS(5158), 56, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, sym__strikeout_open, sym__latex_span_start, sym__single_quote_open, @@ -111669,6 +140519,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_EQ, anon_sym_QMARK, + anon_sym_RBRACK, anon_sym__, anon_sym_BQUOTE, anon_sym_LBRACE, @@ -111677,6 +140528,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_RPAREN, sym__newline_token, + aux_sym_insert_token1, + aux_sym_delete_token1, + aux_sym_highlight_token1, + aux_sym_edit_comment_token1, anon_sym_CARET_LBRACK, anon_sym_LBRACK_CARET, sym_uri_autolink, @@ -111686,10 +140541,8 @@ static const uint16_t ts_small_parse_table[] = { sym__digits, anon_sym_DASH_DASH_DASH, anon_sym_DOT_DOT_DOT, - [48845] = 3, - ACTIONS(4215), 1, - sym__emphasis_close_star, - ACTIONS(4177), 8, + [1530] = 2, + ACTIONS(5164), 8, anon_sym_LT, anon_sym_AMP, anon_sym_DASH, @@ -111698,10 +140551,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, aux_sym__whitespace_token1, anon_sym_DASH_DASH, - ACTIONS(4175), 51, + ACTIONS(5162), 56, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, sym__strikeout_open, sym__latex_span_start, sym__single_quote_open, @@ -111741,6 +140595,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_RPAREN, sym__newline_token, + aux_sym_insert_token1, + aux_sym_delete_token1, + aux_sym_highlight_token1, + aux_sym_edit_comment_token1, anon_sym_CARET_LBRACK, anon_sym_LBRACK_CARET, sym_uri_autolink, @@ -111750,10 +140608,8 @@ static const uint16_t ts_small_parse_table[] = { sym__digits, anon_sym_DASH_DASH_DASH, anon_sym_DOT_DOT_DOT, - [48912] = 3, - ACTIONS(4217), 1, - sym__emphasis_close_underscore, - ACTIONS(4191), 8, + [1599] = 2, + ACTIONS(5168), 8, anon_sym_LT, anon_sym_AMP, anon_sym_DASH, @@ -111762,10 +140618,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, aux_sym__whitespace_token1, anon_sym_DASH_DASH, - ACTIONS(4189), 51, + ACTIONS(5166), 56, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, sym__strikeout_open, sym__latex_span_start, sym__single_quote_open, @@ -111805,6 +140662,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_RPAREN, sym__newline_token, + aux_sym_insert_token1, + aux_sym_delete_token1, + aux_sym_highlight_token1, + aux_sym_edit_comment_token1, anon_sym_CARET_LBRACK, anon_sym_LBRACK_CARET, sym_uri_autolink, @@ -111814,8 +140675,8 @@ static const uint16_t ts_small_parse_table[] = { sym__digits, anon_sym_DASH_DASH_DASH, anon_sym_DOT_DOT_DOT, - [48979] = 2, - ACTIONS(4213), 8, + [1668] = 2, + ACTIONS(5178), 8, anon_sym_LT, anon_sym_AMP, anon_sym_DASH, @@ -111824,11 +140685,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, aux_sym__whitespace_token1, anon_sym_DASH_DASH, - ACTIONS(4211), 52, + ACTIONS(5176), 56, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, sym__strikeout_open, sym__latex_span_start, sym__single_quote_open, @@ -111860,6 +140720,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_EQ, anon_sym_QMARK, + anon_sym_RBRACK, anon_sym__, anon_sym_BQUOTE, anon_sym_LBRACE, @@ -111868,6 +140729,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_RPAREN, sym__newline_token, + aux_sym_insert_token1, + aux_sym_delete_token1, + aux_sym_highlight_token1, + aux_sym_edit_comment_token1, anon_sym_CARET_LBRACK, anon_sym_LBRACK_CARET, sym_uri_autolink, @@ -111877,8 +140742,8 @@ static const uint16_t ts_small_parse_table[] = { sym__digits, anon_sym_DASH_DASH_DASH, anon_sym_DOT_DOT_DOT, - [49044] = 2, - ACTIONS(4209), 8, + [1737] = 2, + ACTIONS(5182), 8, anon_sym_LT, anon_sym_AMP, anon_sym_DASH, @@ -111887,7 +140752,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, aux_sym__whitespace_token1, anon_sym_DASH_DASH, - ACTIONS(4207), 52, + ACTIONS(5180), 56, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -111931,6 +140796,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_RPAREN, sym__newline_token, + aux_sym_insert_token1, + aux_sym_delete_token1, + aux_sym_highlight_token1, + aux_sym_edit_comment_token1, anon_sym_CARET_LBRACK, anon_sym_LBRACK_CARET, sym_uri_autolink, @@ -111940,8 +140809,8 @@ static const uint16_t ts_small_parse_table[] = { sym__digits, anon_sym_DASH_DASH_DASH, anon_sym_DOT_DOT_DOT, - [49109] = 2, - ACTIONS(4191), 8, + [1806] = 2, + ACTIONS(5152), 8, anon_sym_LT, anon_sym_AMP, anon_sym_DASH, @@ -111950,11 +140819,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, aux_sym__whitespace_token1, anon_sym_DASH_DASH, - ACTIONS(4189), 52, + ACTIONS(5150), 56, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, sym__strikeout_open, sym__latex_span_start, sym__single_quote_open, @@ -111986,6 +140854,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_EQ, anon_sym_QMARK, + anon_sym_RBRACK, anon_sym__, anon_sym_BQUOTE, anon_sym_LBRACE, @@ -111994,6 +140863,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_RPAREN, sym__newline_token, + aux_sym_insert_token1, + aux_sym_delete_token1, + aux_sym_highlight_token1, + aux_sym_edit_comment_token1, anon_sym_CARET_LBRACK, anon_sym_LBRACK_CARET, sym_uri_autolink, @@ -112003,8 +140876,8 @@ static const uint16_t ts_small_parse_table[] = { sym__digits, anon_sym_DASH_DASH_DASH, anon_sym_DOT_DOT_DOT, - [49174] = 2, - ACTIONS(4221), 8, + [1875] = 2, + ACTIONS(5156), 8, anon_sym_LT, anon_sym_AMP, anon_sym_DASH, @@ -112013,7 +140886,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, aux_sym__whitespace_token1, anon_sym_DASH_DASH, - ACTIONS(4219), 52, + ACTIONS(5154), 56, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -112057,6 +140930,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_RPAREN, sym__newline_token, + aux_sym_insert_token1, + aux_sym_delete_token1, + aux_sym_highlight_token1, + aux_sym_edit_comment_token1, anon_sym_CARET_LBRACK, anon_sym_LBRACK_CARET, sym_uri_autolink, @@ -112066,109 +140943,436 @@ static const uint16_t ts_small_parse_table[] = { sym__digits, anon_sym_DASH_DASH_DASH, anon_sym_DOT_DOT_DOT, - [49239] = 2, - ACTIONS(4213), 8, + [1944] = 16, + ACTIONS(5184), 1, + sym__backslash_escape, + ACTIONS(5188), 1, anon_sym_LT, + ACTIONS(5192), 1, + anon_sym_DQUOTE, + ACTIONS(5196), 1, + anon_sym_SQUOTE, + ACTIONS(5198), 1, + anon_sym_LPAREN, + ACTIONS(5200), 1, + anon_sym_RPAREN, + ACTIONS(5202), 1, + sym__newline_token, + ACTIONS(5204), 1, + sym__whitespace_ge_2, + ACTIONS(5206), 1, + aux_sym__whitespace_token1, + STATE(1835), 1, + sym_link_destination, + STATE(1836), 1, + sym_link_title, + ACTIONS(5194), 2, anon_sym_AMP, + anon_sym_BSLASH, + STATE(1477), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + STATE(1508), 3, + sym_backslash_escape, + sym__link_destination_parenthesis, + sym__word, + ACTIONS(5186), 4, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + ACTIONS(5190), 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_BSLASH, + 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, - aux_sym__whitespace_token1, - anon_sym_DASH_DASH, - ACTIONS(4211), 52, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikeout_open, - sym__latex_span_start, - sym__single_quote_open, - sym__double_quote_open, - sym__superscript_open, - sym__subscript_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__unclosed_span, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + [2025] = 16, + ACTIONS(5184), 1, sym__backslash_escape, + ACTIONS(5188), 1, + anon_sym_LT, + ACTIONS(5192), 1, + anon_sym_DQUOTE, + ACTIONS(5196), 1, + anon_sym_SQUOTE, + ACTIONS(5198), 1, + anon_sym_LPAREN, + ACTIONS(5202), 1, + sym__newline_token, + ACTIONS(5204), 1, + sym__whitespace_ge_2, + ACTIONS(5206), 1, + aux_sym__whitespace_token1, + ACTIONS(5208), 1, + anon_sym_RPAREN, + STATE(1801), 1, + sym_link_destination, + STATE(1810), 1, + sym_link_title, + ACTIONS(5194), 2, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(1460), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + STATE(1508), 3, + sym_backslash_escape, + sym__link_destination_parenthesis, + sym__word, + ACTIONS(5186), 4, sym_entity_reference, sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + ACTIONS(5190), 25, 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, + [2106] = 16, + ACTIONS(5184), 1, + sym__backslash_escape, + ACTIONS(5188), 1, + anon_sym_LT, + ACTIONS(5192), 1, + anon_sym_DQUOTE, + ACTIONS(5196), 1, + anon_sym_SQUOTE, + ACTIONS(5198), 1, anon_sym_LPAREN, + ACTIONS(5202), 1, + sym__newline_token, + ACTIONS(5204), 1, + sym__whitespace_ge_2, + ACTIONS(5206), 1, + aux_sym__whitespace_token1, + ACTIONS(5210), 1, anon_sym_RPAREN, + STATE(1823), 1, + sym_link_destination, + STATE(1828), 1, + sym_link_title, + ACTIONS(5194), 2, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(1467), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + STATE(1508), 3, + sym_backslash_escape, + sym__link_destination_parenthesis, + sym__word, + ACTIONS(5186), 4, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + ACTIONS(5190), 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, + [2187] = 16, + ACTIONS(5184), 1, + sym__backslash_escape, + ACTIONS(5188), 1, + anon_sym_LT, + ACTIONS(5192), 1, + anon_sym_DQUOTE, + ACTIONS(5196), 1, + anon_sym_SQUOTE, + ACTIONS(5198), 1, + anon_sym_LPAREN, + ACTIONS(5202), 1, sym__newline_token, - anon_sym_CARET_LBRACK, - anon_sym_LBRACK_CARET, - sym_uri_autolink, - sym_email_autolink, + ACTIONS(5204), 1, sym__whitespace_ge_2, + ACTIONS(5206), 1, + aux_sym__whitespace_token1, + ACTIONS(5212), 1, + anon_sym_RPAREN, + STATE(1950), 1, + sym_link_destination, + STATE(1951), 1, + sym_link_title, + ACTIONS(5194), 2, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(1461), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + STATE(1508), 3, + sym_backslash_escape, + sym__link_destination_parenthesis, + sym__word, + ACTIONS(5186), 4, + sym_entity_reference, + sym_numeric_character_reference, sym__word_no_digit, sym__digits, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT_DOT, - [49304] = 16, - ACTIONS(4223), 1, + ACTIONS(5190), 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, + [2268] = 16, + ACTIONS(5184), 1, sym__backslash_escape, - ACTIONS(4227), 1, + ACTIONS(5188), 1, anon_sym_LT, - ACTIONS(4231), 1, + ACTIONS(5192), 1, anon_sym_DQUOTE, - ACTIONS(4235), 1, + ACTIONS(5196), 1, anon_sym_SQUOTE, - ACTIONS(4237), 1, + ACTIONS(5198), 1, anon_sym_LPAREN, - ACTIONS(4239), 1, + ACTIONS(5202), 1, + sym__newline_token, + ACTIONS(5204), 1, + sym__whitespace_ge_2, + ACTIONS(5206), 1, + aux_sym__whitespace_token1, + ACTIONS(5214), 1, anon_sym_RPAREN, - ACTIONS(4241), 1, + STATE(1952), 1, + sym_link_destination, + STATE(1953), 1, + sym_link_title, + ACTIONS(5194), 2, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(1462), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + STATE(1508), 3, + sym_backslash_escape, + sym__link_destination_parenthesis, + sym__word, + ACTIONS(5186), 4, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + ACTIONS(5190), 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, + [2349] = 16, + ACTIONS(5184), 1, + sym__backslash_escape, + ACTIONS(5188), 1, + anon_sym_LT, + ACTIONS(5192), 1, + anon_sym_DQUOTE, + ACTIONS(5196), 1, + anon_sym_SQUOTE, + ACTIONS(5198), 1, + anon_sym_LPAREN, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4243), 1, + ACTIONS(5204), 1, sym__whitespace_ge_2, - ACTIONS(4245), 1, + ACTIONS(5206), 1, aux_sym__whitespace_token1, - STATE(1586), 1, + ACTIONS(5216), 1, + anon_sym_RPAREN, + STATE(1865), 1, sym_link_destination, - STATE(1587), 1, + STATE(1873), 1, sym_link_title, - ACTIONS(4233), 2, + ACTIONS(5194), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1182), 3, + STATE(1508), 3, + sym_backslash_escape, + sym__link_destination_parenthesis, + sym__word, + STATE(1536), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - STATE(1225), 3, + ACTIONS(5186), 4, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + ACTIONS(5190), 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, + [2430] = 16, + ACTIONS(5184), 1, + sym__backslash_escape, + ACTIONS(5188), 1, + anon_sym_LT, + ACTIONS(5192), 1, + anon_sym_DQUOTE, + ACTIONS(5196), 1, + anon_sym_SQUOTE, + ACTIONS(5198), 1, + anon_sym_LPAREN, + ACTIONS(5202), 1, + sym__newline_token, + ACTIONS(5204), 1, + sym__whitespace_ge_2, + ACTIONS(5206), 1, + aux_sym__whitespace_token1, + ACTIONS(5218), 1, + anon_sym_RPAREN, + STATE(1776), 1, + sym_link_title, + STATE(2000), 1, + sym_link_destination, + ACTIONS(5194), 2, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(1508), 3, sym_backslash_escape, sym__link_destination_parenthesis, sym__word, - ACTIONS(4225), 4, + STATE(1536), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + ACTIONS(5186), 4, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(4229), 25, + ACTIONS(5190), 25, anon_sym_GT, anon_sym_BANG, anon_sym_POUND, @@ -112194,46 +141398,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [49385] = 16, - ACTIONS(4223), 1, + [2511] = 16, + ACTIONS(5184), 1, sym__backslash_escape, - ACTIONS(4227), 1, + ACTIONS(5188), 1, anon_sym_LT, - ACTIONS(4231), 1, + ACTIONS(5192), 1, anon_sym_DQUOTE, - ACTIONS(4235), 1, + ACTIONS(5196), 1, anon_sym_SQUOTE, - ACTIONS(4237), 1, + ACTIONS(5198), 1, anon_sym_LPAREN, - ACTIONS(4241), 1, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4243), 1, + ACTIONS(5204), 1, sym__whitespace_ge_2, - ACTIONS(4245), 1, + ACTIONS(5206), 1, aux_sym__whitespace_token1, - ACTIONS(4247), 1, + ACTIONS(5220), 1, anon_sym_RPAREN, - STATE(1551), 1, + STATE(1778), 1, sym_link_destination, - STATE(1554), 1, + STATE(1779), 1, sym_link_title, - ACTIONS(4233), 2, + ACTIONS(5194), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1225), 3, + STATE(1508), 3, sym_backslash_escape, sym__link_destination_parenthesis, sym__word, - STATE(1234), 3, + STATE(1536), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - ACTIONS(4225), 4, + ACTIONS(5186), 4, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(4229), 25, + ACTIONS(5190), 25, anon_sym_GT, anon_sym_BANG, anon_sym_POUND, @@ -112259,46 +141463,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [49466] = 16, - ACTIONS(4223), 1, + [2592] = 16, + ACTIONS(5184), 1, sym__backslash_escape, - ACTIONS(4227), 1, + ACTIONS(5188), 1, anon_sym_LT, - ACTIONS(4231), 1, + ACTIONS(5192), 1, anon_sym_DQUOTE, - ACTIONS(4235), 1, + ACTIONS(5196), 1, anon_sym_SQUOTE, - ACTIONS(4237), 1, + ACTIONS(5198), 1, anon_sym_LPAREN, - ACTIONS(4241), 1, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4243), 1, + ACTIONS(5204), 1, sym__whitespace_ge_2, - ACTIONS(4245), 1, + ACTIONS(5206), 1, aux_sym__whitespace_token1, - ACTIONS(4249), 1, + ACTIONS(5222), 1, anon_sym_RPAREN, - STATE(1565), 1, + STATE(1847), 1, sym_link_destination, - STATE(1566), 1, + STATE(1849), 1, sym_link_title, - ACTIONS(4233), 2, + ACTIONS(5194), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1225), 3, + STATE(1465), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + STATE(1508), 3, sym_backslash_escape, sym__link_destination_parenthesis, sym__word, - STATE(1234), 3, + ACTIONS(5186), 4, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + ACTIONS(5190), 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, + [2673] = 16, + ACTIONS(5184), 1, + sym__backslash_escape, + ACTIONS(5188), 1, + anon_sym_LT, + ACTIONS(5192), 1, + anon_sym_DQUOTE, + ACTIONS(5196), 1, + anon_sym_SQUOTE, + ACTIONS(5198), 1, + anon_sym_LPAREN, + ACTIONS(5202), 1, + sym__newline_token, + ACTIONS(5204), 1, + sym__whitespace_ge_2, + ACTIONS(5206), 1, + aux_sym__whitespace_token1, + ACTIONS(5224), 1, + anon_sym_RPAREN, + STATE(1859), 1, + sym_link_destination, + STATE(1861), 1, + sym_link_title, + ACTIONS(5194), 2, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(1466), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - ACTIONS(4225), 4, + STATE(1508), 3, + sym_backslash_escape, + sym__link_destination_parenthesis, + sym__word, + ACTIONS(5186), 4, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(4229), 25, + ACTIONS(5190), 25, anon_sym_GT, anon_sym_BANG, anon_sym_POUND, @@ -112324,46 +141593,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [49547] = 16, - ACTIONS(4223), 1, + [2754] = 16, + ACTIONS(5184), 1, sym__backslash_escape, - ACTIONS(4227), 1, + ACTIONS(5188), 1, anon_sym_LT, - ACTIONS(4231), 1, + ACTIONS(5192), 1, anon_sym_DQUOTE, - ACTIONS(4235), 1, + ACTIONS(5196), 1, anon_sym_SQUOTE, - ACTIONS(4237), 1, + ACTIONS(5198), 1, anon_sym_LPAREN, - ACTIONS(4241), 1, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4243), 1, + ACTIONS(5204), 1, sym__whitespace_ge_2, - ACTIONS(4245), 1, + ACTIONS(5206), 1, aux_sym__whitespace_token1, - ACTIONS(4251), 1, + ACTIONS(5226), 1, anon_sym_RPAREN, - STATE(1575), 1, + STATE(1871), 1, sym_link_destination, - STATE(1674), 1, + STATE(1872), 1, sym_link_title, - ACTIONS(4233), 2, + ACTIONS(5194), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1187), 3, + STATE(1508), 3, + sym_backslash_escape, + sym__link_destination_parenthesis, + sym__word, + STATE(1536), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - STATE(1225), 3, + ACTIONS(5186), 4, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + ACTIONS(5190), 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, + [2835] = 16, + ACTIONS(5184), 1, + sym__backslash_escape, + ACTIONS(5188), 1, + anon_sym_LT, + ACTIONS(5192), 1, + anon_sym_DQUOTE, + ACTIONS(5196), 1, + anon_sym_SQUOTE, + ACTIONS(5198), 1, + anon_sym_LPAREN, + ACTIONS(5202), 1, + sym__newline_token, + ACTIONS(5204), 1, + sym__whitespace_ge_2, + ACTIONS(5206), 1, + aux_sym__whitespace_token1, + ACTIONS(5228), 1, + anon_sym_RPAREN, + STATE(1876), 1, + sym_link_destination, + STATE(1877), 1, + sym_link_title, + ACTIONS(5194), 2, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(1508), 3, sym_backslash_escape, sym__link_destination_parenthesis, sym__word, - ACTIONS(4225), 4, + STATE(1536), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + ACTIONS(5186), 4, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(4229), 25, + ACTIONS(5190), 25, anon_sym_GT, anon_sym_BANG, anon_sym_POUND, @@ -112389,46 +141723,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [49628] = 16, - ACTIONS(4223), 1, + [2916] = 16, + ACTIONS(5184), 1, sym__backslash_escape, - ACTIONS(4227), 1, + ACTIONS(5188), 1, anon_sym_LT, - ACTIONS(4231), 1, + ACTIONS(5192), 1, anon_sym_DQUOTE, - ACTIONS(4235), 1, + ACTIONS(5196), 1, anon_sym_SQUOTE, - ACTIONS(4237), 1, + ACTIONS(5198), 1, anon_sym_LPAREN, - ACTIONS(4241), 1, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4243), 1, + ACTIONS(5204), 1, sym__whitespace_ge_2, - ACTIONS(4245), 1, + ACTIONS(5206), 1, aux_sym__whitespace_token1, - ACTIONS(4253), 1, + ACTIONS(5230), 1, anon_sym_RPAREN, - STATE(1478), 1, + STATE(1912), 1, sym_link_destination, - STATE(1488), 1, + STATE(1913), 1, sym_link_title, - ACTIONS(4233), 2, + ACTIONS(5194), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1225), 3, + STATE(1508), 3, sym_backslash_escape, sym__link_destination_parenthesis, sym__word, - STATE(1234), 3, + STATE(1536), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - ACTIONS(4225), 4, + ACTIONS(5186), 4, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(4229), 25, + ACTIONS(5190), 25, anon_sym_GT, anon_sym_BANG, anon_sym_POUND, @@ -112454,46 +141788,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [49709] = 16, - ACTIONS(4223), 1, + [2997] = 16, + ACTIONS(5184), 1, sym__backslash_escape, - ACTIONS(4227), 1, + ACTIONS(5188), 1, anon_sym_LT, - ACTIONS(4231), 1, + ACTIONS(5192), 1, anon_sym_DQUOTE, - ACTIONS(4235), 1, + ACTIONS(5196), 1, anon_sym_SQUOTE, - ACTIONS(4237), 1, + ACTIONS(5198), 1, anon_sym_LPAREN, - ACTIONS(4241), 1, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4243), 1, + ACTIONS(5204), 1, sym__whitespace_ge_2, - ACTIONS(4245), 1, + ACTIONS(5206), 1, aux_sym__whitespace_token1, - ACTIONS(4255), 1, + ACTIONS(5232), 1, anon_sym_RPAREN, - STATE(1491), 1, + STATE(1957), 1, sym_link_destination, - STATE(1548), 1, + STATE(1958), 1, sym_link_title, - ACTIONS(4233), 2, + ACTIONS(5194), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1195), 3, + STATE(1470), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + STATE(1508), 3, + sym_backslash_escape, + sym__link_destination_parenthesis, + sym__word, + ACTIONS(5186), 4, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + ACTIONS(5190), 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, + [3078] = 16, + ACTIONS(5184), 1, + sym__backslash_escape, + ACTIONS(5188), 1, + anon_sym_LT, + ACTIONS(5192), 1, + anon_sym_DQUOTE, + ACTIONS(5196), 1, + anon_sym_SQUOTE, + ACTIONS(5198), 1, + anon_sym_LPAREN, + ACTIONS(5202), 1, + sym__newline_token, + ACTIONS(5204), 1, + sym__whitespace_ge_2, + ACTIONS(5206), 1, + aux_sym__whitespace_token1, + ACTIONS(5234), 1, + anon_sym_RPAREN, + STATE(1960), 1, + sym_link_destination, + STATE(1961), 1, + sym_link_title, + ACTIONS(5194), 2, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(1471), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - STATE(1225), 3, + STATE(1508), 3, sym_backslash_escape, sym__link_destination_parenthesis, sym__word, - ACTIONS(4225), 4, + ACTIONS(5186), 4, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(4229), 25, + ACTIONS(5190), 25, anon_sym_GT, anon_sym_BANG, anon_sym_POUND, @@ -112519,46 +141918,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [49790] = 16, - ACTIONS(4223), 1, + [3159] = 16, + ACTIONS(5184), 1, sym__backslash_escape, - ACTIONS(4227), 1, + ACTIONS(5188), 1, anon_sym_LT, - ACTIONS(4231), 1, + ACTIONS(5192), 1, anon_sym_DQUOTE, - ACTIONS(4235), 1, + ACTIONS(5196), 1, anon_sym_SQUOTE, - ACTIONS(4237), 1, + ACTIONS(5198), 1, anon_sym_LPAREN, - ACTIONS(4241), 1, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4243), 1, + ACTIONS(5204), 1, sym__whitespace_ge_2, - ACTIONS(4245), 1, + ACTIONS(5206), 1, aux_sym__whitespace_token1, - ACTIONS(4257), 1, + ACTIONS(5236), 1, anon_sym_RPAREN, - STATE(1540), 1, + STATE(1973), 1, sym_link_destination, - STATE(1562), 1, + STATE(1974), 1, sym_link_title, - ACTIONS(4233), 2, + ACTIONS(5194), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1225), 3, + STATE(1508), 3, sym_backslash_escape, sym__link_destination_parenthesis, sym__word, - STATE(1234), 3, + STATE(1536), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - ACTIONS(4225), 4, + ACTIONS(5186), 4, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(4229), 25, + ACTIONS(5190), 25, anon_sym_GT, anon_sym_BANG, anon_sym_POUND, @@ -112584,46 +141983,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [49871] = 16, - ACTIONS(4223), 1, + [3240] = 16, + ACTIONS(5184), 1, sym__backslash_escape, - ACTIONS(4227), 1, + ACTIONS(5188), 1, anon_sym_LT, - ACTIONS(4231), 1, + ACTIONS(5192), 1, anon_sym_DQUOTE, - ACTIONS(4235), 1, + ACTIONS(5196), 1, anon_sym_SQUOTE, - ACTIONS(4237), 1, + ACTIONS(5198), 1, anon_sym_LPAREN, - ACTIONS(4241), 1, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4243), 1, + ACTIONS(5204), 1, sym__whitespace_ge_2, - ACTIONS(4245), 1, + ACTIONS(5206), 1, aux_sym__whitespace_token1, - ACTIONS(4259), 1, + ACTIONS(5238), 1, anon_sym_RPAREN, - STATE(1593), 1, + STATE(1980), 1, sym_link_destination, - STATE(1673), 1, + STATE(1984), 1, sym_link_title, - ACTIONS(4233), 2, + ACTIONS(5194), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1178), 3, - sym__whitespace, - sym__soft_line_break, - aux_sym_inline_link_repeat1, - STATE(1225), 3, + STATE(1508), 3, sym_backslash_escape, sym__link_destination_parenthesis, sym__word, - ACTIONS(4225), 4, + STATE(1536), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + ACTIONS(5186), 4, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(4229), 25, + ACTIONS(5190), 25, anon_sym_GT, anon_sym_BANG, anon_sym_POUND, @@ -112649,46 +142048,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [49952] = 16, - ACTIONS(4223), 1, + [3321] = 16, + ACTIONS(5184), 1, sym__backslash_escape, - ACTIONS(4227), 1, + ACTIONS(5188), 1, anon_sym_LT, - ACTIONS(4231), 1, + ACTIONS(5192), 1, anon_sym_DQUOTE, - ACTIONS(4235), 1, + ACTIONS(5196), 1, anon_sym_SQUOTE, - ACTIONS(4237), 1, + ACTIONS(5198), 1, anon_sym_LPAREN, - ACTIONS(4241), 1, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4243), 1, + ACTIONS(5204), 1, sym__whitespace_ge_2, - ACTIONS(4245), 1, + ACTIONS(5206), 1, aux_sym__whitespace_token1, - ACTIONS(4261), 1, + ACTIONS(5240), 1, anon_sym_RPAREN, - STATE(1589), 1, + STATE(1797), 1, sym_link_destination, - STATE(1590), 1, + STATE(1798), 1, sym_link_title, - ACTIONS(4233), 2, + ACTIONS(5194), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1183), 3, + STATE(1474), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - STATE(1225), 3, + STATE(1508), 3, sym_backslash_escape, sym__link_destination_parenthesis, sym__word, - ACTIONS(4225), 4, + ACTIONS(5186), 4, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(4229), 25, + ACTIONS(5190), 25, anon_sym_GT, anon_sym_BANG, anon_sym_POUND, @@ -112714,111 +142113,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [50033] = 16, - ACTIONS(4223), 1, + [3402] = 16, + ACTIONS(5184), 1, sym__backslash_escape, - ACTIONS(4227), 1, + ACTIONS(5188), 1, anon_sym_LT, - ACTIONS(4231), 1, + ACTIONS(5192), 1, anon_sym_DQUOTE, - ACTIONS(4235), 1, + ACTIONS(5196), 1, anon_sym_SQUOTE, - ACTIONS(4237), 1, + ACTIONS(5198), 1, anon_sym_LPAREN, - ACTIONS(4241), 1, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4243), 1, + ACTIONS(5204), 1, sym__whitespace_ge_2, - ACTIONS(4245), 1, + ACTIONS(5206), 1, aux_sym__whitespace_token1, - ACTIONS(4263), 1, + ACTIONS(5242), 1, anon_sym_RPAREN, - STATE(1497), 1, + STATE(1799), 1, sym_link_destination, - STATE(1498), 1, + STATE(1800), 1, sym_link_title, - ACTIONS(4233), 2, + ACTIONS(5194), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1225), 3, - sym_backslash_escape, - sym__link_destination_parenthesis, - sym__word, - STATE(1234), 3, + STATE(1496), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - ACTIONS(4225), 4, - sym_entity_reference, - sym_numeric_character_reference, - sym__word_no_digit, - sym__digits, - ACTIONS(4229), 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, - [50114] = 16, - ACTIONS(4223), 1, - sym__backslash_escape, - ACTIONS(4227), 1, - anon_sym_LT, - ACTIONS(4231), 1, - anon_sym_DQUOTE, - ACTIONS(4235), 1, - anon_sym_SQUOTE, - ACTIONS(4237), 1, - anon_sym_LPAREN, - ACTIONS(4241), 1, - sym__newline_token, - ACTIONS(4243), 1, - sym__whitespace_ge_2, - ACTIONS(4245), 1, - aux_sym__whitespace_token1, - ACTIONS(4265), 1, - anon_sym_RPAREN, - STATE(1597), 1, - sym_link_destination, - STATE(1598), 1, - sym_link_title, - ACTIONS(4233), 2, - anon_sym_AMP, - anon_sym_BSLASH, - STATE(1225), 3, + STATE(1508), 3, sym_backslash_escape, sym__link_destination_parenthesis, sym__word, - STATE(1234), 3, - sym__whitespace, - sym__soft_line_break, - aux_sym_inline_link_repeat1, - ACTIONS(4225), 4, + ACTIONS(5186), 4, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(4229), 25, + ACTIONS(5190), 25, anon_sym_GT, anon_sym_BANG, anon_sym_POUND, @@ -112844,46 +142178,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [50195] = 16, - ACTIONS(4223), 1, + [3483] = 16, + ACTIONS(5184), 1, sym__backslash_escape, - ACTIONS(4227), 1, + ACTIONS(5188), 1, anon_sym_LT, - ACTIONS(4231), 1, + ACTIONS(5192), 1, anon_sym_DQUOTE, - ACTIONS(4235), 1, + ACTIONS(5196), 1, anon_sym_SQUOTE, - ACTIONS(4237), 1, + ACTIONS(5198), 1, anon_sym_LPAREN, - ACTIONS(4241), 1, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4243), 1, + ACTIONS(5204), 1, sym__whitespace_ge_2, - ACTIONS(4245), 1, + ACTIONS(5206), 1, aux_sym__whitespace_token1, - ACTIONS(4267), 1, + ACTIONS(5244), 1, anon_sym_RPAREN, - STATE(1601), 1, + STATE(1804), 1, sym_link_destination, - STATE(1602), 1, + STATE(1805), 1, sym_link_title, - ACTIONS(4233), 2, + ACTIONS(5194), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1225), 3, + STATE(1508), 3, sym_backslash_escape, sym__link_destination_parenthesis, sym__word, - STATE(1234), 3, + STATE(1536), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - ACTIONS(4225), 4, + ACTIONS(5186), 4, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(4229), 25, + ACTIONS(5190), 25, anon_sym_GT, anon_sym_BANG, anon_sym_POUND, @@ -112909,46 +142243,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [50276] = 16, - ACTIONS(4223), 1, + [3564] = 16, + ACTIONS(5184), 1, sym__backslash_escape, - ACTIONS(4227), 1, + ACTIONS(5188), 1, anon_sym_LT, - ACTIONS(4231), 1, + ACTIONS(5192), 1, anon_sym_DQUOTE, - ACTIONS(4235), 1, + ACTIONS(5196), 1, anon_sym_SQUOTE, - ACTIONS(4237), 1, + ACTIONS(5198), 1, anon_sym_LPAREN, - ACTIONS(4241), 1, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4243), 1, + ACTIONS(5204), 1, sym__whitespace_ge_2, - ACTIONS(4245), 1, + ACTIONS(5206), 1, aux_sym__whitespace_token1, - ACTIONS(4269), 1, + ACTIONS(5246), 1, anon_sym_RPAREN, - STATE(1546), 1, + STATE(1982), 1, sym_link_destination, - STATE(1547), 1, + STATE(1983), 1, sym_link_title, - ACTIONS(4233), 2, + ACTIONS(5194), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1225), 3, + STATE(1508), 3, sym_backslash_escape, sym__link_destination_parenthesis, sym__word, - STATE(1234), 3, + STATE(1536), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - ACTIONS(4225), 4, + ACTIONS(5186), 4, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(4229), 25, + ACTIONS(5190), 25, anon_sym_GT, anon_sym_BANG, anon_sym_POUND, @@ -112974,46 +142308,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [50357] = 16, - ACTIONS(4223), 1, + [3645] = 16, + ACTIONS(5184), 1, sym__backslash_escape, - ACTIONS(4227), 1, + ACTIONS(5188), 1, anon_sym_LT, - ACTIONS(4231), 1, + ACTIONS(5192), 1, anon_sym_DQUOTE, - ACTIONS(4235), 1, + ACTIONS(5196), 1, anon_sym_SQUOTE, - ACTIONS(4237), 1, + ACTIONS(5198), 1, anon_sym_LPAREN, - ACTIONS(4241), 1, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4243), 1, + ACTIONS(5204), 1, sym__whitespace_ge_2, - ACTIONS(4245), 1, + ACTIONS(5206), 1, aux_sym__whitespace_token1, - ACTIONS(4271), 1, + ACTIONS(5248), 1, anon_sym_RPAREN, - STATE(1643), 1, + STATE(1837), 1, sym_link_destination, - STATE(1644), 1, + STATE(1838), 1, sym_link_title, - ACTIONS(4233), 2, + ACTIONS(5194), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1189), 3, + STATE(1478), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - STATE(1225), 3, + STATE(1508), 3, sym_backslash_escape, sym__link_destination_parenthesis, sym__word, - ACTIONS(4225), 4, + ACTIONS(5186), 4, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(4229), 25, + ACTIONS(5190), 25, anon_sym_GT, anon_sym_BANG, anon_sym_POUND, @@ -113039,46 +142373,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [50438] = 16, - ACTIONS(4223), 1, + [3726] = 16, + ACTIONS(5184), 1, sym__backslash_escape, - ACTIONS(4227), 1, + ACTIONS(5188), 1, anon_sym_LT, - ACTIONS(4231), 1, + ACTIONS(5192), 1, anon_sym_DQUOTE, - ACTIONS(4235), 1, + ACTIONS(5196), 1, anon_sym_SQUOTE, - ACTIONS(4237), 1, + ACTIONS(5198), 1, anon_sym_LPAREN, - ACTIONS(4241), 1, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4243), 1, + ACTIONS(5204), 1, sym__whitespace_ge_2, - ACTIONS(4245), 1, + ACTIONS(5206), 1, aux_sym__whitespace_token1, - ACTIONS(4273), 1, + ACTIONS(5250), 1, anon_sym_RPAREN, - STATE(1493), 1, + STATE(1842), 1, sym_link_destination, - STATE(1494), 1, + STATE(1843), 1, sym_link_title, - ACTIONS(4233), 2, + ACTIONS(5194), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1225), 3, + STATE(1508), 3, sym_backslash_escape, sym__link_destination_parenthesis, sym__word, - STATE(1234), 3, + STATE(1536), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - ACTIONS(4225), 4, + ACTIONS(5186), 4, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(4229), 25, + ACTIONS(5190), 25, anon_sym_GT, anon_sym_BANG, anon_sym_POUND, @@ -113104,46 +142438,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [50519] = 16, - ACTIONS(4223), 1, + [3807] = 16, + ACTIONS(5184), 1, sym__backslash_escape, - ACTIONS(4227), 1, + ACTIONS(5188), 1, anon_sym_LT, - ACTIONS(4231), 1, + ACTIONS(5192), 1, anon_sym_DQUOTE, - ACTIONS(4235), 1, + ACTIONS(5196), 1, anon_sym_SQUOTE, - ACTIONS(4237), 1, + ACTIONS(5198), 1, anon_sym_LPAREN, - ACTIONS(4241), 1, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4243), 1, + ACTIONS(5204), 1, sym__whitespace_ge_2, - ACTIONS(4245), 1, + ACTIONS(5206), 1, aux_sym__whitespace_token1, - ACTIONS(4275), 1, + ACTIONS(5252), 1, anon_sym_RPAREN, - STATE(1516), 1, + STATE(1845), 1, sym_link_destination, - STATE(1517), 1, + STATE(1846), 1, sym_link_title, - ACTIONS(4233), 2, + ACTIONS(5194), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1225), 3, + STATE(1508), 3, sym_backslash_escape, sym__link_destination_parenthesis, sym__word, - STATE(1234), 3, + STATE(1536), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - ACTIONS(4225), 4, + ACTIONS(5186), 4, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(4229), 25, + ACTIONS(5190), 25, anon_sym_GT, anon_sym_BANG, anon_sym_POUND, @@ -113169,46 +142503,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [50600] = 16, - ACTIONS(4223), 1, + [3888] = 16, + ACTIONS(5184), 1, sym__backslash_escape, - ACTIONS(4227), 1, + ACTIONS(5188), 1, anon_sym_LT, - ACTIONS(4231), 1, + ACTIONS(5192), 1, anon_sym_DQUOTE, - ACTIONS(4235), 1, + ACTIONS(5196), 1, anon_sym_SQUOTE, - ACTIONS(4237), 1, + ACTIONS(5198), 1, anon_sym_LPAREN, - ACTIONS(4241), 1, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4243), 1, + ACTIONS(5204), 1, sym__whitespace_ge_2, - ACTIONS(4245), 1, + ACTIONS(5206), 1, aux_sym__whitespace_token1, - ACTIONS(4277), 1, + ACTIONS(5254), 1, anon_sym_RPAREN, - STATE(1668), 1, + STATE(1917), 1, sym_link_destination, - STATE(1669), 1, + STATE(1918), 1, sym_link_title, - ACTIONS(4233), 2, + ACTIONS(5194), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1225), 3, - sym_backslash_escape, - sym__link_destination_parenthesis, - sym__word, - STATE(1234), 3, + STATE(1487), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - ACTIONS(4225), 4, + STATE(1508), 3, + sym_backslash_escape, + sym__link_destination_parenthesis, + sym__word, + ACTIONS(5186), 4, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(4229), 25, + ACTIONS(5190), 25, anon_sym_GT, anon_sym_BANG, anon_sym_POUND, @@ -113234,46 +142568,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [50681] = 16, - ACTIONS(4223), 1, + [3969] = 16, + ACTIONS(5184), 1, sym__backslash_escape, - ACTIONS(4227), 1, + ACTIONS(5188), 1, anon_sym_LT, - ACTIONS(4231), 1, + ACTIONS(5192), 1, anon_sym_DQUOTE, - ACTIONS(4235), 1, + ACTIONS(5196), 1, anon_sym_SQUOTE, - ACTIONS(4237), 1, + ACTIONS(5198), 1, anon_sym_LPAREN, - ACTIONS(4241), 1, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4243), 1, + ACTIONS(5204), 1, sym__whitespace_ge_2, - ACTIONS(4245), 1, + ACTIONS(5206), 1, aux_sym__whitespace_token1, - ACTIONS(4279), 1, + ACTIONS(5256), 1, anon_sym_RPAREN, - STATE(1672), 1, + STATE(1879), 1, sym_link_destination, - STATE(1676), 1, + STATE(1880), 1, sym_link_title, - ACTIONS(4233), 2, + ACTIONS(5194), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1225), 3, - sym_backslash_escape, - sym__link_destination_parenthesis, - sym__word, - STATE(1234), 3, + STATE(1483), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - ACTIONS(4225), 4, + STATE(1508), 3, + sym_backslash_escape, + sym__link_destination_parenthesis, + sym__word, + ACTIONS(5186), 4, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(4229), 25, + ACTIONS(5190), 25, anon_sym_GT, anon_sym_BANG, anon_sym_POUND, @@ -113299,50 +142633,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [50762] = 15, - ACTIONS(4223), 1, + [4050] = 16, + ACTIONS(5184), 1, sym__backslash_escape, - ACTIONS(4285), 1, + ACTIONS(5188), 1, + anon_sym_LT, + ACTIONS(5192), 1, anon_sym_DQUOTE, - ACTIONS(4289), 1, + ACTIONS(5196), 1, + anon_sym_SQUOTE, + ACTIONS(5198), 1, anon_sym_LPAREN, - ACTIONS(4291), 1, - anon_sym_RPAREN, - ACTIONS(4294), 1, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4297), 1, + ACTIONS(5204), 1, sym__whitespace_ge_2, - ACTIONS(4300), 1, + ACTIONS(5206), 1, aux_sym__whitespace_token1, - ACTIONS(4303), 1, - sym__last_token_punctuation, - STATE(1257), 1, - sym__soft_line_break, - ACTIONS(4287), 2, + ACTIONS(5258), 1, + anon_sym_RPAREN, + STATE(1881), 1, + sym_link_destination, + STATE(1882), 1, + sym_link_title, + ACTIONS(5194), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1216), 2, + STATE(1484), 3, sym__whitespace, - aux_sym_link_title_repeat1, - STATE(1221), 2, - sym__link_destination_parenthesis, - aux_sym_link_destination_repeat2, - STATE(1267), 2, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + STATE(1508), 3, sym_backslash_escape, + sym__link_destination_parenthesis, sym__word, - ACTIONS(4281), 4, + ACTIONS(5186), 4, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(4283), 27, - anon_sym_LT, + ACTIONS(5190), 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, @@ -113363,46 +142698,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [50841] = 16, - ACTIONS(4223), 1, + [4131] = 16, + ACTIONS(5184), 1, sym__backslash_escape, - ACTIONS(4227), 1, + ACTIONS(5188), 1, anon_sym_LT, - ACTIONS(4231), 1, + ACTIONS(5192), 1, anon_sym_DQUOTE, - ACTIONS(4235), 1, + ACTIONS(5196), 1, anon_sym_SQUOTE, - ACTIONS(4237), 1, + ACTIONS(5198), 1, anon_sym_LPAREN, - ACTIONS(4241), 1, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4243), 1, + ACTIONS(5204), 1, sym__whitespace_ge_2, - ACTIONS(4245), 1, + ACTIONS(5206), 1, aux_sym__whitespace_token1, - ACTIONS(4305), 1, + ACTIONS(5260), 1, anon_sym_RPAREN, - STATE(1638), 1, + STATE(1920), 1, sym_link_destination, - STATE(1639), 1, + STATE(1921), 1, sym_link_title, - ACTIONS(4233), 2, + ACTIONS(5194), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1196), 3, + STATE(1490), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - STATE(1225), 3, + STATE(1508), 3, sym_backslash_escape, sym__link_destination_parenthesis, sym__word, - ACTIONS(4225), 4, + ACTIONS(5186), 4, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(4229), 25, + ACTIONS(5190), 25, anon_sym_GT, anon_sym_BANG, anon_sym_POUND, @@ -113428,46 +142763,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [50922] = 16, - ACTIONS(4223), 1, + [4212] = 16, + ACTIONS(5184), 1, sym__backslash_escape, - ACTIONS(4227), 1, + ACTIONS(5188), 1, anon_sym_LT, - ACTIONS(4231), 1, + ACTIONS(5192), 1, anon_sym_DQUOTE, - ACTIONS(4235), 1, + ACTIONS(5196), 1, anon_sym_SQUOTE, - ACTIONS(4237), 1, + ACTIONS(5198), 1, anon_sym_LPAREN, - ACTIONS(4241), 1, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4243), 1, + ACTIONS(5204), 1, sym__whitespace_ge_2, - ACTIONS(4245), 1, + ACTIONS(5206), 1, aux_sym__whitespace_token1, - ACTIONS(4307), 1, + ACTIONS(5262), 1, anon_sym_RPAREN, - STATE(1640), 1, + STATE(1887), 1, sym_link_destination, - STATE(1641), 1, + STATE(1888), 1, sym_link_title, - ACTIONS(4233), 2, + ACTIONS(5194), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1197), 3, - sym__whitespace, - sym__soft_line_break, - aux_sym_inline_link_repeat1, - STATE(1225), 3, + STATE(1508), 3, sym_backslash_escape, sym__link_destination_parenthesis, sym__word, - ACTIONS(4225), 4, + STATE(1536), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + ACTIONS(5186), 4, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(4229), 25, + ACTIONS(5190), 25, anon_sym_GT, anon_sym_BANG, anon_sym_POUND, @@ -113493,46 +142828,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [51003] = 16, - ACTIONS(4223), 1, + [4293] = 16, + ACTIONS(5184), 1, sym__backslash_escape, - ACTIONS(4227), 1, + ACTIONS(5188), 1, anon_sym_LT, - ACTIONS(4231), 1, + ACTIONS(5192), 1, anon_sym_DQUOTE, - ACTIONS(4235), 1, + ACTIONS(5196), 1, anon_sym_SQUOTE, - ACTIONS(4237), 1, + ACTIONS(5198), 1, anon_sym_LPAREN, - ACTIONS(4241), 1, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4243), 1, + ACTIONS(5204), 1, sym__whitespace_ge_2, - ACTIONS(4245), 1, + ACTIONS(5206), 1, aux_sym__whitespace_token1, - ACTIONS(4309), 1, + ACTIONS(5264), 1, anon_sym_RPAREN, - STATE(1606), 1, + STATE(1891), 1, sym_link_destination, - STATE(1609), 1, + STATE(1892), 1, sym_link_title, - ACTIONS(4233), 2, + ACTIONS(5194), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1202), 3, - sym__whitespace, - sym__soft_line_break, - aux_sym_inline_link_repeat1, - STATE(1225), 3, + STATE(1508), 3, sym_backslash_escape, sym__link_destination_parenthesis, sym__word, - ACTIONS(4225), 4, + STATE(1536), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + ACTIONS(5186), 4, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(4229), 25, + ACTIONS(5190), 25, anon_sym_GT, anon_sym_BANG, anon_sym_POUND, @@ -113558,51 +142893,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [51084] = 16, - ACTIONS(4223), 1, + [4374] = 15, + ACTIONS(5184), 1, sym__backslash_escape, - ACTIONS(4227), 1, - anon_sym_LT, - ACTIONS(4231), 1, + ACTIONS(5270), 1, anon_sym_DQUOTE, - ACTIONS(4235), 1, - anon_sym_SQUOTE, - ACTIONS(4237), 1, + ACTIONS(5274), 1, anon_sym_LPAREN, - ACTIONS(4241), 1, + ACTIONS(5276), 1, + anon_sym_RPAREN, + ACTIONS(5279), 1, sym__newline_token, - ACTIONS(4243), 1, + ACTIONS(5282), 1, sym__whitespace_ge_2, - ACTIONS(4245), 1, + ACTIONS(5285), 1, aux_sym__whitespace_token1, - ACTIONS(4311), 1, - anon_sym_RPAREN, - STATE(1618), 1, - sym_link_destination, - STATE(1619), 1, - sym_link_title, - ACTIONS(4233), 2, + ACTIONS(5288), 1, + sym__last_token_punctuation, + STATE(1548), 1, + sym__soft_line_break, + ACTIONS(5272), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1203), 3, + STATE(1500), 2, sym__whitespace, - sym__soft_line_break, - aux_sym_inline_link_repeat1, - STATE(1225), 3, - sym_backslash_escape, + aux_sym_link_title_repeat1, + STATE(1509), 2, sym__link_destination_parenthesis, + aux_sym_link_destination_repeat2, + STATE(1576), 2, + sym_backslash_escape, sym__word, - ACTIONS(4225), 4, + ACTIONS(5266), 4, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(4229), 25, + ACTIONS(5268), 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, @@ -113623,48 +142957,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [51165] = 16, - ACTIONS(4223), 1, + [4453] = 15, + ACTIONS(5184), 1, sym__backslash_escape, - ACTIONS(4227), 1, - anon_sym_LT, - ACTIONS(4231), 1, - anon_sym_DQUOTE, - ACTIONS(4235), 1, + ACTIONS(5270), 1, anon_sym_SQUOTE, - ACTIONS(4237), 1, - anon_sym_LPAREN, - ACTIONS(4241), 1, + ACTIONS(5279), 1, sym__newline_token, - ACTIONS(4243), 1, + ACTIONS(5282), 1, sym__whitespace_ge_2, - ACTIONS(4245), 1, + ACTIONS(5285), 1, aux_sym__whitespace_token1, - ACTIONS(4313), 1, + ACTIONS(5288), 1, + sym__last_token_punctuation, + ACTIONS(5296), 1, + anon_sym_LPAREN, + ACTIONS(5298), 1, anon_sym_RPAREN, - STATE(1522), 1, - sym_link_destination, - STATE(1524), 1, - sym_link_title, - ACTIONS(4233), 2, + STATE(1547), 1, + sym__soft_line_break, + ACTIONS(5294), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1225), 3, - sym_backslash_escape, + STATE(1504), 2, + sym__whitespace, + aux_sym_link_title_repeat2, + STATE(1509), 2, sym__link_destination_parenthesis, + aux_sym_link_destination_repeat2, + STATE(1567), 2, + sym_backslash_escape, sym__word, - STATE(1234), 3, - sym__whitespace, - sym__soft_line_break, - aux_sym_inline_link_repeat1, - ACTIONS(4225), 4, + ACTIONS(5290), 4, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(4229), 25, + ACTIONS(5292), 27, + anon_sym_LT, anon_sym_GT, anon_sym_BANG, + anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, @@ -113688,46 +143021,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [51246] = 16, - ACTIONS(4223), 1, + [4532] = 16, + ACTIONS(5184), 1, sym__backslash_escape, - ACTIONS(4227), 1, + ACTIONS(5188), 1, anon_sym_LT, - ACTIONS(4231), 1, + ACTIONS(5192), 1, anon_sym_DQUOTE, - ACTIONS(4235), 1, + ACTIONS(5196), 1, anon_sym_SQUOTE, - ACTIONS(4237), 1, + ACTIONS(5198), 1, anon_sym_LPAREN, - ACTIONS(4241), 1, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4243), 1, + ACTIONS(5204), 1, sym__whitespace_ge_2, - ACTIONS(4245), 1, + ACTIONS(5206), 1, aux_sym__whitespace_token1, - ACTIONS(4315), 1, + ACTIONS(5301), 1, anon_sym_RPAREN, - STATE(1648), 1, + STATE(1811), 1, sym_link_destination, - STATE(1649), 1, + STATE(1813), 1, sym_link_title, - ACTIONS(4233), 2, + ACTIONS(5194), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1225), 3, + STATE(1508), 3, sym_backslash_escape, sym__link_destination_parenthesis, sym__word, - STATE(1234), 3, + STATE(1536), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - ACTIONS(4225), 4, + ACTIONS(5186), 4, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(4229), 25, + ACTIONS(5190), 25, anon_sym_GT, anon_sym_BANG, anon_sym_POUND, @@ -113753,46 +143086,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [51327] = 16, - ACTIONS(4223), 1, + [4613] = 16, + ACTIONS(5184), 1, sym__backslash_escape, - ACTIONS(4227), 1, + ACTIONS(5188), 1, anon_sym_LT, - ACTIONS(4231), 1, + ACTIONS(5192), 1, anon_sym_DQUOTE, - ACTIONS(4235), 1, + ACTIONS(5196), 1, anon_sym_SQUOTE, - ACTIONS(4237), 1, + ACTIONS(5198), 1, anon_sym_LPAREN, - ACTIONS(4241), 1, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4243), 1, + ACTIONS(5204), 1, sym__whitespace_ge_2, - ACTIONS(4245), 1, + ACTIONS(5206), 1, aux_sym__whitespace_token1, - ACTIONS(4317), 1, + ACTIONS(5303), 1, anon_sym_RPAREN, - STATE(1652), 1, + STATE(1924), 1, sym_link_destination, - STATE(1653), 1, + STATE(1925), 1, sym_link_title, - ACTIONS(4233), 2, + ACTIONS(5194), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1225), 3, - sym_backslash_escape, - sym__link_destination_parenthesis, - sym__word, - STATE(1234), 3, + STATE(1491), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - ACTIONS(4225), 4, + STATE(1508), 3, + sym_backslash_escape, + sym__link_destination_parenthesis, + sym__word, + ACTIONS(5186), 4, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(4229), 25, + ACTIONS(5190), 25, anon_sym_GT, anon_sym_BANG, anon_sym_POUND, @@ -113818,46 +143151,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [51408] = 16, - ACTIONS(4223), 1, + [4694] = 16, + ACTIONS(5184), 1, sym__backslash_escape, - ACTIONS(4227), 1, + ACTIONS(5188), 1, anon_sym_LT, - ACTIONS(4231), 1, + ACTIONS(5192), 1, anon_sym_DQUOTE, - ACTIONS(4235), 1, + ACTIONS(5196), 1, anon_sym_SQUOTE, - ACTIONS(4237), 1, + ACTIONS(5198), 1, anon_sym_LPAREN, - ACTIONS(4241), 1, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4243), 1, + ACTIONS(5204), 1, sym__whitespace_ge_2, - ACTIONS(4245), 1, + ACTIONS(5206), 1, aux_sym__whitespace_token1, - ACTIONS(4319), 1, + ACTIONS(5305), 1, anon_sym_RPAREN, - STATE(1523), 1, + STATE(1926), 1, sym_link_destination, - STATE(1529), 1, + STATE(1927), 1, sym_link_title, - ACTIONS(4233), 2, + ACTIONS(5194), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1173), 3, + STATE(1492), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - STATE(1225), 3, + STATE(1508), 3, sym_backslash_escape, sym__link_destination_parenthesis, sym__word, - ACTIONS(4225), 4, + ACTIONS(5186), 4, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(4229), 25, + ACTIONS(5190), 25, anon_sym_GT, anon_sym_BANG, anon_sym_POUND, @@ -113883,46 +143216,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [51489] = 16, - ACTIONS(4223), 1, + [4775] = 16, + ACTIONS(5184), 1, sym__backslash_escape, - ACTIONS(4227), 1, + ACTIONS(5188), 1, anon_sym_LT, - ACTIONS(4231), 1, + ACTIONS(5192), 1, anon_sym_DQUOTE, - ACTIONS(4235), 1, + ACTIONS(5196), 1, anon_sym_SQUOTE, - ACTIONS(4237), 1, + ACTIONS(5198), 1, anon_sym_LPAREN, - ACTIONS(4241), 1, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4243), 1, + ACTIONS(5204), 1, sym__whitespace_ge_2, - ACTIONS(4245), 1, + ACTIONS(5206), 1, aux_sym__whitespace_token1, - ACTIONS(4321), 1, + ACTIONS(5307), 1, anon_sym_RPAREN, - STATE(1534), 1, + STATE(1825), 1, sym_link_destination, - STATE(1537), 1, + STATE(1826), 1, sym_link_title, - ACTIONS(4233), 2, + ACTIONS(5194), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1174), 3, - sym__whitespace, - sym__soft_line_break, - aux_sym_inline_link_repeat1, - STATE(1225), 3, + STATE(1508), 3, sym_backslash_escape, sym__link_destination_parenthesis, sym__word, - ACTIONS(4225), 4, + STATE(1536), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + ACTIONS(5186), 4, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(4229), 25, + ACTIONS(5190), 25, anon_sym_GT, anon_sym_BANG, anon_sym_POUND, @@ -113948,47 +143281,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [51570] = 15, - ACTIONS(4223), 1, + [4856] = 16, + ACTIONS(5184), 1, sym__backslash_escape, - ACTIONS(4285), 1, + ACTIONS(5188), 1, + anon_sym_LT, + ACTIONS(5192), 1, + anon_sym_DQUOTE, + ACTIONS(5196), 1, anon_sym_SQUOTE, - ACTIONS(4294), 1, + ACTIONS(5198), 1, + anon_sym_LPAREN, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4297), 1, + ACTIONS(5204), 1, sym__whitespace_ge_2, - ACTIONS(4300), 1, + ACTIONS(5206), 1, aux_sym__whitespace_token1, - ACTIONS(4303), 1, - sym__last_token_punctuation, - ACTIONS(4329), 1, - anon_sym_LPAREN, - ACTIONS(4331), 1, + ACTIONS(5309), 1, anon_sym_RPAREN, - STATE(1260), 1, - sym__soft_line_break, - ACTIONS(4327), 2, + STATE(1933), 1, + sym_link_destination, + STATE(1934), 1, + sym_link_title, + ACTIONS(5194), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1211), 2, - sym__whitespace, - aux_sym_link_title_repeat2, - STATE(1221), 2, - sym__link_destination_parenthesis, - aux_sym_link_destination_repeat2, - STATE(1264), 2, + STATE(1508), 3, sym_backslash_escape, + sym__link_destination_parenthesis, sym__word, - ACTIONS(4323), 4, + STATE(1536), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + ACTIONS(5186), 4, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(4325), 27, - anon_sym_LT, + ACTIONS(5190), 25, anon_sym_GT, anon_sym_BANG, - anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, @@ -114012,46 +143346,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [51649] = 16, - ACTIONS(4223), 1, + [4937] = 16, + ACTIONS(5184), 1, sym__backslash_escape, - ACTIONS(4227), 1, + ACTIONS(5188), 1, anon_sym_LT, - ACTIONS(4231), 1, + ACTIONS(5192), 1, anon_sym_DQUOTE, - ACTIONS(4235), 1, + ACTIONS(5196), 1, anon_sym_SQUOTE, - ACTIONS(4237), 1, + ACTIONS(5198), 1, anon_sym_LPAREN, - ACTIONS(4241), 1, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4243), 1, + ACTIONS(5204), 1, sym__whitespace_ge_2, - ACTIONS(4245), 1, + ACTIONS(5206), 1, aux_sym__whitespace_token1, - ACTIONS(4334), 1, + ACTIONS(5311), 1, anon_sym_RPAREN, - STATE(1532), 1, + STATE(1936), 1, sym_link_destination, - STATE(1533), 1, + STATE(1937), 1, sym_link_title, - ACTIONS(4233), 2, + ACTIONS(5194), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1207), 3, - sym__whitespace, - sym__soft_line_break, - aux_sym_inline_link_repeat1, - STATE(1225), 3, + STATE(1508), 3, sym_backslash_escape, sym__link_destination_parenthesis, sym__word, - ACTIONS(4225), 4, + STATE(1536), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + ACTIONS(5186), 4, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(4229), 25, + ACTIONS(5190), 25, anon_sym_GT, anon_sym_BANG, anon_sym_POUND, @@ -114077,46 +143411,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [51730] = 16, - ACTIONS(4223), 1, + [5018] = 16, + ACTIONS(5184), 1, sym__backslash_escape, - ACTIONS(4227), 1, + ACTIONS(5188), 1, anon_sym_LT, - ACTIONS(4231), 1, + ACTIONS(5192), 1, anon_sym_DQUOTE, - ACTIONS(4235), 1, + ACTIONS(5196), 1, anon_sym_SQUOTE, - ACTIONS(4237), 1, + ACTIONS(5198), 1, anon_sym_LPAREN, - ACTIONS(4241), 1, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4243), 1, + ACTIONS(5204), 1, sym__whitespace_ge_2, - ACTIONS(4245), 1, + ACTIONS(5206), 1, aux_sym__whitespace_token1, - ACTIONS(4336), 1, + ACTIONS(5313), 1, anon_sym_RPAREN, - STATE(1654), 1, + STATE(1968), 1, sym_link_destination, - STATE(1657), 1, + STATE(1969), 1, sym_link_title, - ACTIONS(4233), 2, + ACTIONS(5194), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1225), 3, - sym_backslash_escape, - sym__link_destination_parenthesis, - sym__word, - STATE(1234), 3, + STATE(1495), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - ACTIONS(4225), 4, + STATE(1508), 3, + sym_backslash_escape, + sym__link_destination_parenthesis, + sym__word, + ACTIONS(5186), 4, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(4229), 25, + ACTIONS(5190), 25, anon_sym_GT, anon_sym_BANG, anon_sym_POUND, @@ -114142,46 +143476,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [51811] = 16, - ACTIONS(4223), 1, + [5099] = 16, + ACTIONS(5184), 1, sym__backslash_escape, - ACTIONS(4227), 1, + ACTIONS(5188), 1, anon_sym_LT, - ACTIONS(4231), 1, + ACTIONS(5192), 1, anon_sym_DQUOTE, - ACTIONS(4235), 1, + ACTIONS(5196), 1, anon_sym_SQUOTE, - ACTIONS(4237), 1, + ACTIONS(5198), 1, anon_sym_LPAREN, - ACTIONS(4241), 1, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4243), 1, + ACTIONS(5204), 1, sym__whitespace_ge_2, - ACTIONS(4245), 1, + ACTIONS(5206), 1, aux_sym__whitespace_token1, - ACTIONS(4338), 1, + ACTIONS(5315), 1, anon_sym_RPAREN, - STATE(1583), 1, - sym_link_title, - STATE(1678), 1, + STATE(1971), 1, sym_link_destination, - ACTIONS(4233), 2, + STATE(1972), 1, + sym_link_title, + ACTIONS(5194), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1225), 3, - sym_backslash_escape, - sym__link_destination_parenthesis, - sym__word, - STATE(1234), 3, + STATE(1475), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - ACTIONS(4225), 4, + STATE(1508), 3, + sym_backslash_escape, + sym__link_destination_parenthesis, + sym__word, + ACTIONS(5186), 4, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(4229), 25, + ACTIONS(5190), 25, anon_sym_GT, anon_sym_BANG, anon_sym_POUND, @@ -114207,46 +143541,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [51892] = 16, - ACTIONS(4223), 1, + [5180] = 16, + ACTIONS(5184), 1, sym__backslash_escape, - ACTIONS(4227), 1, + ACTIONS(5188), 1, anon_sym_LT, - ACTIONS(4231), 1, + ACTIONS(5192), 1, anon_sym_DQUOTE, - ACTIONS(4235), 1, + ACTIONS(5196), 1, anon_sym_SQUOTE, - ACTIONS(4237), 1, + ACTIONS(5198), 1, anon_sym_LPAREN, - ACTIONS(4241), 1, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4243), 1, + ACTIONS(5204), 1, sym__whitespace_ge_2, - ACTIONS(4245), 1, + ACTIONS(5206), 1, aux_sym__whitespace_token1, - ACTIONS(4340), 1, + ACTIONS(5317), 1, anon_sym_RPAREN, - STATE(1535), 1, + STATE(1978), 1, sym_link_destination, - STATE(1536), 1, + STATE(1979), 1, sym_link_title, - ACTIONS(4233), 2, + ACTIONS(5194), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1184), 3, - sym__whitespace, - sym__soft_line_break, - aux_sym_inline_link_repeat1, - STATE(1225), 3, + STATE(1508), 3, sym_backslash_escape, sym__link_destination_parenthesis, sym__word, - ACTIONS(4225), 4, + STATE(1536), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + ACTIONS(5186), 4, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(4229), 25, + ACTIONS(5190), 25, anon_sym_GT, anon_sym_BANG, anon_sym_POUND, @@ -114272,46 +143606,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [51973] = 16, - ACTIONS(4223), 1, + [5261] = 16, + ACTIONS(5184), 1, sym__backslash_escape, - ACTIONS(4227), 1, + ACTIONS(5188), 1, anon_sym_LT, - ACTIONS(4231), 1, + ACTIONS(5192), 1, anon_sym_DQUOTE, - ACTIONS(4235), 1, + ACTIONS(5196), 1, anon_sym_SQUOTE, - ACTIONS(4237), 1, + ACTIONS(5198), 1, anon_sym_LPAREN, - ACTIONS(4241), 1, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4243), 1, + ACTIONS(5204), 1, sym__whitespace_ge_2, - ACTIONS(4245), 1, + ACTIONS(5206), 1, aux_sym__whitespace_token1, - ACTIONS(4342), 1, + ACTIONS(5319), 1, anon_sym_RPAREN, - STATE(1482), 1, + STATE(1808), 1, sym_link_destination, - STATE(1483), 1, + STATE(1809), 1, sym_link_title, - ACTIONS(4233), 2, + ACTIONS(5194), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1186), 3, - sym__whitespace, - sym__soft_line_break, - aux_sym_inline_link_repeat1, - STATE(1225), 3, + STATE(1508), 3, sym_backslash_escape, sym__link_destination_parenthesis, sym__word, - ACTIONS(4225), 4, + STATE(1536), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + ACTIONS(5186), 4, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(4229), 25, + ACTIONS(5190), 25, anon_sym_GT, anon_sym_BANG, anon_sym_POUND, @@ -114337,51 +143671,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [52054] = 16, - ACTIONS(4223), 1, + [5342] = 13, + ACTIONS(5184), 1, sym__backslash_escape, - ACTIONS(4227), 1, - anon_sym_LT, - ACTIONS(4231), 1, - anon_sym_DQUOTE, - ACTIONS(4235), 1, - anon_sym_SQUOTE, - ACTIONS(4237), 1, - anon_sym_LPAREN, - ACTIONS(4241), 1, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4243), 1, + ACTIONS(5204), 1, sym__whitespace_ge_2, - ACTIONS(4245), 1, + ACTIONS(5206), 1, aux_sym__whitespace_token1, - ACTIONS(4344), 1, + ACTIONS(5327), 1, + anon_sym_LPAREN, + ACTIONS(5329), 1, anon_sym_RPAREN, - STATE(1485), 1, - sym_link_destination, - STATE(1486), 1, - sym_link_title, - ACTIONS(4233), 2, + STATE(1554), 1, + sym__soft_line_break, + ACTIONS(5325), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1181), 3, + STATE(1507), 2, sym__whitespace, - sym__soft_line_break, - aux_sym_inline_link_repeat1, - STATE(1225), 3, - sym_backslash_escape, + aux_sym_link_title_repeat3, + STATE(1551), 2, sym__link_destination_parenthesis, + aux_sym_link_destination_repeat2, + STATE(1566), 2, + sym_backslash_escape, sym__word, - ACTIONS(4225), 4, + ACTIONS(5321), 4, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(4229), 25, + ACTIONS(5323), 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, @@ -114402,51 +143732,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [52135] = 16, - ACTIONS(4223), 1, + [5416] = 10, + ACTIONS(5184), 1, sym__backslash_escape, - ACTIONS(4227), 1, - anon_sym_LT, - ACTIONS(4231), 1, - anon_sym_DQUOTE, - ACTIONS(4235), 1, - anon_sym_SQUOTE, - ACTIONS(4237), 1, - anon_sym_LPAREN, - ACTIONS(4241), 1, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4243), 1, + ACTIONS(5204), 1, sym__whitespace_ge_2, - ACTIONS(4245), 1, + ACTIONS(5206), 1, aux_sym__whitespace_token1, - ACTIONS(4346), 1, - anon_sym_RPAREN, - STATE(1542), 1, - sym_link_destination, - STATE(1543), 1, - sym_link_title, - ACTIONS(4233), 2, + ACTIONS(5335), 1, + anon_sym_DQUOTE, + STATE(1548), 1, + sym__soft_line_break, + ACTIONS(5337), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1225), 3, - sym_backslash_escape, - sym__link_destination_parenthesis, - sym__word, - STATE(1234), 3, - sym__whitespace, - sym__soft_line_break, - aux_sym_inline_link_repeat1, - ACTIONS(4225), 4, + ACTIONS(5331), 4, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(4229), 25, + STATE(1500), 4, + sym_backslash_escape, + sym__whitespace, + sym__word, + aux_sym_link_title_repeat1, + ACTIONS(5333), 29, + anon_sym_LT, anon_sym_GT, anon_sym_BANG, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_SQUOTE, anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, @@ -114467,48 +143786,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [52216] = 16, - ACTIONS(4223), 1, + anon_sym_LPAREN, + anon_sym_RPAREN, + [5482] = 10, + ACTIONS(5339), 1, sym__backslash_escape, - ACTIONS(4227), 1, - anon_sym_LT, - ACTIONS(4231), 1, - anon_sym_DQUOTE, - ACTIONS(4235), 1, + ACTIONS(5351), 1, anon_sym_SQUOTE, - ACTIONS(4237), 1, - anon_sym_LPAREN, - ACTIONS(4241), 1, + ACTIONS(5353), 1, sym__newline_token, - ACTIONS(4243), 1, + ACTIONS(5356), 1, sym__whitespace_ge_2, - ACTIONS(4245), 1, + ACTIONS(5359), 1, aux_sym__whitespace_token1, - ACTIONS(4348), 1, - anon_sym_RPAREN, - STATE(1489), 1, - sym_link_destination, - STATE(1514), 1, - sym_link_title, - ACTIONS(4233), 2, + STATE(1547), 1, + sym__soft_line_break, + ACTIONS(5348), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1176), 3, - sym__whitespace, - sym__soft_line_break, - aux_sym_inline_link_repeat1, - STATE(1225), 3, - sym_backslash_escape, - sym__link_destination_parenthesis, - sym__word, - ACTIONS(4225), 4, + ACTIONS(5342), 4, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(4229), 25, + STATE(1499), 4, + sym_backslash_escape, + sym__whitespace, + sym__word, + aux_sym_link_title_repeat2, + ACTIONS(5345), 29, + anon_sym_LT, anon_sym_GT, anon_sym_BANG, + anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, @@ -114532,51 +143842,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [52297] = 16, - ACTIONS(4223), 1, - sym__backslash_escape, - ACTIONS(4227), 1, - anon_sym_LT, - ACTIONS(4231), 1, - anon_sym_DQUOTE, - ACTIONS(4235), 1, - anon_sym_SQUOTE, - ACTIONS(4237), 1, anon_sym_LPAREN, - ACTIONS(4241), 1, + anon_sym_RPAREN, + [5548] = 10, + ACTIONS(5184), 1, + sym__backslash_escape, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4243), 1, + ACTIONS(5204), 1, sym__whitespace_ge_2, - ACTIONS(4245), 1, + ACTIONS(5206), 1, aux_sym__whitespace_token1, - ACTIONS(4350), 1, - anon_sym_RPAREN, - STATE(1634), 1, - sym_link_destination, - STATE(1637), 1, - sym_link_title, - ACTIONS(4233), 2, + ACTIONS(5364), 1, + anon_sym_DQUOTE, + STATE(1548), 1, + sym__soft_line_break, + ACTIONS(5337), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1188), 3, - sym__whitespace, - sym__soft_line_break, - aux_sym_inline_link_repeat1, - STATE(1225), 3, - sym_backslash_escape, - sym__link_destination_parenthesis, - sym__word, - ACTIONS(4225), 4, + ACTIONS(5362), 4, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(4229), 25, + STATE(1506), 4, + sym_backslash_escape, + sym__whitespace, + sym__word, + aux_sym_link_title_repeat1, + ACTIONS(5333), 29, + anon_sym_LT, anon_sym_GT, anon_sym_BANG, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_SQUOTE, anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, @@ -114597,39 +143898,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [52378] = 13, - ACTIONS(4223), 1, - sym__backslash_escape, - ACTIONS(4241), 1, - sym__newline_token, - ACTIONS(4243), 1, - sym__whitespace_ge_2, - ACTIONS(4245), 1, - aux_sym__whitespace_token1, - ACTIONS(4358), 1, anon_sym_LPAREN, - ACTIONS(4360), 1, anon_sym_RPAREN, - STATE(1275), 1, - sym__soft_line_break, - ACTIONS(4356), 2, + [5614] = 9, + ACTIONS(5184), 1, + sym__backslash_escape, + ACTIONS(5288), 1, + sym__last_token_punctuation, + ACTIONS(5327), 1, + anon_sym_LPAREN, + ACTIONS(5374), 1, + aux_sym__whitespace_token1, + ACTIONS(5370), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1227), 2, - sym__whitespace, - aux_sym_link_title_repeat3, - STATE(1262), 2, - sym__link_destination_parenthesis, - aux_sym_link_destination_repeat2, - STATE(1271), 2, - sym_backslash_escape, - sym__word, - ACTIONS(4352), 4, + ACTIONS(5372), 3, + anon_sym_RPAREN, + sym__newline_token, + sym__whitespace_ge_2, + ACTIONS(5366), 4, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(4354), 28, + STATE(1509), 4, + sym_backslash_escape, + sym__link_destination_parenthesis, + sym__word, + aux_sym_link_destination_repeat2, + ACTIONS(5368), 28, anon_sym_LT, anon_sym_GT, anon_sym_BANG, @@ -114658,33 +143955,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [52452] = 10, - ACTIONS(4223), 1, + [5678] = 10, + ACTIONS(5184), 1, sym__backslash_escape, - ACTIONS(4241), 1, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4243), 1, + ACTIONS(5204), 1, sym__whitespace_ge_2, - ACTIONS(4245), 1, + ACTIONS(5206), 1, aux_sym__whitespace_token1, - ACTIONS(4368), 1, + ACTIONS(5335), 1, anon_sym_SQUOTE, - STATE(1260), 1, + STATE(1547), 1, sym__soft_line_break, - ACTIONS(4366), 2, + ACTIONS(5380), 2, anon_sym_AMP, anon_sym_BSLASH, - ACTIONS(4362), 4, + ACTIONS(5376), 4, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - STATE(1215), 4, + STATE(1504), 4, sym_backslash_escape, sym__whitespace, sym__word, aux_sym_link_title_repeat2, - ACTIONS(4364), 29, + ACTIONS(5378), 29, anon_sym_LT, anon_sym_GT, anon_sym_BANG, @@ -114714,33 +144011,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [52518] = 10, - ACTIONS(4223), 1, + [5744] = 10, + ACTIONS(5382), 1, sym__backslash_escape, - ACTIONS(4241), 1, - sym__newline_token, - ACTIONS(4243), 1, - sym__whitespace_ge_2, - ACTIONS(4245), 1, + ACTIONS(5394), 1, + anon_sym_LPAREN, + ACTIONS(5397), 1, + anon_sym_RPAREN, + ACTIONS(5402), 1, aux_sym__whitespace_token1, - ACTIONS(4372), 1, - anon_sym_SQUOTE, - STATE(1260), 1, - sym__soft_line_break, - ACTIONS(4366), 2, + ACTIONS(5404), 1, + sym__last_token_punctuation, + ACTIONS(5391), 2, anon_sym_AMP, anon_sym_BSLASH, - ACTIONS(4370), 4, + ACTIONS(5400), 2, + sym__newline_token, + sym__whitespace_ge_2, + ACTIONS(5385), 4, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - STATE(1211), 4, + STATE(1551), 4, sym_backslash_escape, - sym__whitespace, + sym__link_destination_parenthesis, sym__word, - aux_sym_link_title_repeat2, - ACTIONS(4364), 29, + aux_sym_link_destination_repeat2, + ACTIONS(5388), 28, anon_sym_LT, anon_sym_GT, anon_sym_BANG, @@ -114748,6 +144046,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, @@ -114768,42 +144067,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - [52584] = 10, - ACTIONS(4374), 1, + [5810] = 10, + ACTIONS(5184), 1, sym__backslash_escape, - ACTIONS(4383), 1, - anon_sym_DQUOTE, - ACTIONS(4388), 1, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4391), 1, + ACTIONS(5204), 1, sym__whitespace_ge_2, - ACTIONS(4394), 1, + ACTIONS(5206), 1, aux_sym__whitespace_token1, - STATE(1257), 1, + ACTIONS(5364), 1, + anon_sym_SQUOTE, + STATE(1547), 1, sym__soft_line_break, - ACTIONS(4385), 2, + ACTIONS(5380), 2, anon_sym_AMP, anon_sym_BSLASH, - ACTIONS(4377), 4, + ACTIONS(5406), 4, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - STATE(1213), 4, + STATE(1499), 4, sym_backslash_escape, sym__whitespace, sym__word, - aux_sym_link_title_repeat1, - ACTIONS(4380), 29, + aux_sym_link_title_repeat2, + ACTIONS(5378), 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, @@ -114826,34 +144123,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [52650] = 10, - ACTIONS(4397), 1, + [5876] = 10, + ACTIONS(5408), 1, sym__backslash_escape, - ACTIONS(4409), 1, + ACTIONS(5420), 1, anon_sym_LPAREN, - ACTIONS(4412), 1, + ACTIONS(5423), 1, anon_sym_RPAREN, - ACTIONS(4417), 1, + ACTIONS(5428), 1, aux_sym__whitespace_token1, - ACTIONS(4419), 1, + ACTIONS(5430), 1, sym__last_token_punctuation, - ACTIONS(4406), 2, + ACTIONS(5417), 2, anon_sym_AMP, anon_sym_BSLASH, - ACTIONS(4415), 2, + ACTIONS(5426), 2, sym__newline_token, sym__whitespace_ge_2, - ACTIONS(4400), 4, + ACTIONS(5411), 4, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - STATE(1262), 4, + STATE(1551), 4, sym_backslash_escape, sym__link_destination_parenthesis, sym__word, aux_sym_link_destination_repeat2, - ACTIONS(4403), 28, + ACTIONS(5414), 28, anon_sym_LT, anon_sym_GT, anon_sym_BANG, @@ -114882,40 +144179,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [52716] = 10, - ACTIONS(4421), 1, + [5942] = 10, + ACTIONS(5432), 1, sym__backslash_escape, - ACTIONS(4433), 1, - anon_sym_SQUOTE, - ACTIONS(4435), 1, + ACTIONS(5441), 1, + anon_sym_DQUOTE, + ACTIONS(5446), 1, sym__newline_token, - ACTIONS(4438), 1, + ACTIONS(5449), 1, sym__whitespace_ge_2, - ACTIONS(4441), 1, + ACTIONS(5452), 1, aux_sym__whitespace_token1, - STATE(1260), 1, + STATE(1548), 1, sym__soft_line_break, - ACTIONS(4430), 2, + ACTIONS(5443), 2, anon_sym_AMP, anon_sym_BSLASH, - ACTIONS(4424), 4, + ACTIONS(5435), 4, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - STATE(1215), 4, + STATE(1506), 4, sym_backslash_escape, sym__whitespace, sym__word, - aux_sym_link_title_repeat2, - ACTIONS(4427), 29, + aux_sym_link_title_repeat1, + ACTIONS(5438), 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, @@ -114938,36 +144235,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [52782] = 10, - ACTIONS(4223), 1, + [6008] = 10, + ACTIONS(5184), 1, sym__backslash_escape, - ACTIONS(4241), 1, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4243), 1, + ACTIONS(5204), 1, sym__whitespace_ge_2, - ACTIONS(4245), 1, + ACTIONS(5206), 1, aux_sym__whitespace_token1, - ACTIONS(4368), 1, - anon_sym_DQUOTE, - STATE(1257), 1, + ACTIONS(5364), 1, + anon_sym_RPAREN, + STATE(1554), 1, sym__soft_line_break, - ACTIONS(4448), 2, + ACTIONS(5459), 2, anon_sym_AMP, anon_sym_BSLASH, - ACTIONS(4444), 4, + ACTIONS(5455), 4, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - STATE(1213), 4, + STATE(1510), 4, sym_backslash_escape, sym__whitespace, sym__word, - aux_sym_link_title_repeat1, - ACTIONS(4446), 29, + aux_sym_link_title_repeat3, + ACTIONS(5457), 28, anon_sym_LT, anon_sym_GT, anon_sym_BANG, + anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, @@ -114992,36 +144290,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - [52848] = 10, - ACTIONS(4450), 1, + [6073] = 8, + ACTIONS(5184), 1, sym__backslash_escape, - ACTIONS(4462), 1, + ACTIONS(5327), 1, anon_sym_LPAREN, - ACTIONS(4465), 1, - anon_sym_RPAREN, - ACTIONS(4470), 1, + ACTIONS(5374), 1, aux_sym__whitespace_token1, - ACTIONS(4472), 1, - sym__last_token_punctuation, - ACTIONS(4459), 2, + ACTIONS(5370), 2, anon_sym_AMP, anon_sym_BSLASH, - ACTIONS(4468), 2, + ACTIONS(5372), 3, + anon_sym_RPAREN, sym__newline_token, sym__whitespace_ge_2, - ACTIONS(4453), 4, + ACTIONS(5366), 4, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - STATE(1262), 4, + STATE(1509), 4, sym_backslash_escape, sym__link_destination_parenthesis, sym__word, aux_sym_link_destination_repeat2, - ACTIONS(4456), 28, + ACTIONS(5368), 28, anon_sym_LT, anon_sym_GT, anon_sym_BANG, @@ -115050,33 +144343,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [52914] = 9, - ACTIONS(4223), 1, + [6134] = 8, + ACTIONS(5184), 1, sym__backslash_escape, - ACTIONS(4303), 1, - sym__last_token_punctuation, - ACTIONS(4358), 1, + ACTIONS(5327), 1, anon_sym_LPAREN, - ACTIONS(4482), 1, + ACTIONS(5465), 1, aux_sym__whitespace_token1, - ACTIONS(4478), 2, + ACTIONS(5370), 2, anon_sym_AMP, anon_sym_BSLASH, - ACTIONS(4480), 3, + ACTIONS(5463), 3, anon_sym_RPAREN, sym__newline_token, sym__whitespace_ge_2, - ACTIONS(4474), 4, + ACTIONS(5461), 4, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - STATE(1221), 4, + STATE(1512), 4, sym_backslash_escape, sym__link_destination_parenthesis, sym__word, aux_sym_link_destination_repeat2, - ACTIONS(4476), 28, + ACTIONS(5368), 28, anon_sym_LT, anon_sym_GT, anon_sym_BANG, @@ -115105,142 +144396,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [52978] = 10, - ACTIONS(4223), 1, + [6195] = 10, + ACTIONS(5467), 1, sym__backslash_escape, - ACTIONS(4241), 1, - sym__newline_token, - ACTIONS(4243), 1, - sym__whitespace_ge_2, - ACTIONS(4245), 1, - aux_sym__whitespace_token1, - ACTIONS(4372), 1, - anon_sym_DQUOTE, - STATE(1257), 1, - sym__soft_line_break, - ACTIONS(4448), 2, - anon_sym_AMP, - anon_sym_BSLASH, - ACTIONS(4484), 4, - sym_entity_reference, - sym_numeric_character_reference, - sym__word_no_digit, - sym__digits, - STATE(1216), 4, - sym_backslash_escape, - sym__whitespace, - sym__word, - aux_sym_link_title_repeat1, - ACTIONS(4446), 29, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - 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, + ACTIONS(5479), 1, anon_sym_RPAREN, - [53044] = 10, - ACTIONS(4223), 1, - sym__backslash_escape, - ACTIONS(4241), 1, + ACTIONS(5481), 1, sym__newline_token, - ACTIONS(4243), 1, + ACTIONS(5484), 1, sym__whitespace_ge_2, - ACTIONS(4245), 1, + ACTIONS(5487), 1, aux_sym__whitespace_token1, - ACTIONS(4372), 1, - anon_sym_RPAREN, - STATE(1275), 1, + STATE(1554), 1, sym__soft_line_break, - ACTIONS(4490), 2, + ACTIONS(5476), 2, anon_sym_AMP, anon_sym_BSLASH, - ACTIONS(4486), 4, + ACTIONS(5470), 4, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - STATE(1227), 4, + STATE(1510), 4, sym_backslash_escape, sym__whitespace, sym__word, aux_sym_link_title_repeat3, - ACTIONS(4488), 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, - [53109] = 8, - ACTIONS(4223), 1, - sym__backslash_escape, - ACTIONS(4358), 1, - anon_sym_LPAREN, - ACTIONS(4496), 1, - aux_sym__whitespace_token1, - ACTIONS(4478), 2, - anon_sym_AMP, - anon_sym_BSLASH, - ACTIONS(4494), 3, - anon_sym_RPAREN, - sym__newline_token, - sym__whitespace_ge_2, - ACTIONS(4492), 4, - sym_entity_reference, - sym_numeric_character_reference, - sym__word_no_digit, - sym__digits, - STATE(1223), 4, - sym_backslash_escape, - sym__link_destination_parenthesis, - sym__word, - aux_sym_link_destination_repeat2, - ACTIONS(4476), 28, + ACTIONS(5473), 28, anon_sym_LT, anon_sym_GT, anon_sym_BANG, @@ -115269,33 +144451,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [53170] = 10, - ACTIONS(4498), 1, + [6260] = 10, + ACTIONS(5184), 1, sym__backslash_escape, - ACTIONS(4510), 1, - anon_sym_RPAREN, - ACTIONS(4512), 1, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4515), 1, + ACTIONS(5204), 1, sym__whitespace_ge_2, - ACTIONS(4518), 1, + ACTIONS(5206), 1, aux_sym__whitespace_token1, - STATE(1275), 1, + ACTIONS(5335), 1, + anon_sym_RPAREN, + STATE(1554), 1, sym__soft_line_break, - ACTIONS(4507), 2, + ACTIONS(5459), 2, anon_sym_AMP, anon_sym_BSLASH, - ACTIONS(4501), 4, + ACTIONS(5490), 4, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - STATE(1222), 4, + STATE(1507), 4, sym_backslash_escape, sym__whitespace, sym__word, aux_sym_link_title_repeat3, - ACTIONS(4504), 28, + ACTIONS(5457), 28, anon_sym_LT, anon_sym_GT, anon_sym_BANG, @@ -115324,31 +144506,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [53235] = 8, - ACTIONS(4521), 1, + [6325] = 8, + ACTIONS(5492), 1, sym__backslash_escape, - ACTIONS(4533), 1, + ACTIONS(5504), 1, anon_sym_LPAREN, - ACTIONS(4538), 1, + ACTIONS(5509), 1, aux_sym__whitespace_token1, - ACTIONS(4530), 2, + ACTIONS(5501), 2, anon_sym_AMP, anon_sym_BSLASH, - ACTIONS(4536), 3, + ACTIONS(5507), 3, anon_sym_RPAREN, sym__newline_token, sym__whitespace_ge_2, - ACTIONS(4524), 4, + ACTIONS(5495), 4, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - STATE(1223), 4, + STATE(1512), 4, sym_backslash_escape, sym__link_destination_parenthesis, sym__word, aux_sym_link_destination_repeat2, - ACTIONS(4527), 28, + ACTIONS(5498), 28, anon_sym_LT, anon_sym_GT, anon_sym_BANG, @@ -115377,31 +144559,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [53296] = 8, - ACTIONS(4223), 1, + [6386] = 8, + ACTIONS(5184), 1, sym__backslash_escape, - ACTIONS(4358), 1, + ACTIONS(5327), 1, anon_sym_LPAREN, - ACTIONS(4542), 1, + ACTIONS(5513), 1, aux_sym__whitespace_token1, - ACTIONS(4478), 2, + ACTIONS(5370), 2, anon_sym_AMP, anon_sym_BSLASH, - ACTIONS(4540), 3, + ACTIONS(5511), 3, anon_sym_RPAREN, sym__newline_token, sym__whitespace_ge_2, - ACTIONS(4492), 4, + ACTIONS(5461), 4, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - STATE(1223), 4, + STATE(1512), 4, sym_backslash_escape, sym__link_destination_parenthesis, sym__word, aux_sym_link_destination_repeat2, - ACTIONS(4476), 28, + ACTIONS(5368), 28, anon_sym_LT, anon_sym_GT, anon_sym_BANG, @@ -115430,31 +144612,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [53357] = 8, - ACTIONS(4223), 1, + [6447] = 8, + ACTIONS(5184), 1, sym__backslash_escape, - ACTIONS(4358), 1, + ACTIONS(5327), 1, anon_sym_LPAREN, - ACTIONS(4482), 1, + ACTIONS(5465), 1, aux_sym__whitespace_token1, - ACTIONS(4478), 2, + ACTIONS(5370), 2, anon_sym_AMP, anon_sym_BSLASH, - ACTIONS(4480), 3, + ACTIONS(5463), 3, anon_sym_RPAREN, sym__newline_token, sym__whitespace_ge_2, - ACTIONS(4474), 4, + ACTIONS(5515), 4, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - STATE(1221), 4, + STATE(1513), 4, sym_backslash_escape, sym__link_destination_parenthesis, sym__word, aux_sym_link_destination_repeat2, - ACTIONS(4476), 28, + ACTIONS(5368), 28, anon_sym_LT, anon_sym_GT, anon_sym_BANG, @@ -115483,31 +144665,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [53418] = 8, - ACTIONS(4223), 1, - sym__backslash_escape, - ACTIONS(4358), 1, - anon_sym_LPAREN, - ACTIONS(4496), 1, - aux_sym__whitespace_token1, - ACTIONS(4478), 2, - anon_sym_AMP, - anon_sym_BSLASH, - ACTIONS(4494), 3, - anon_sym_RPAREN, + [6508] = 8, + ACTIONS(5519), 1, sym__newline_token, + ACTIONS(5521), 1, sym__whitespace_ge_2, - ACTIONS(4544), 4, - sym_entity_reference, - sym_numeric_character_reference, + ACTIONS(5523), 1, + aux_sym__whitespace_token1, + ACTIONS(5527), 1, + sym__code_span_close, + STATE(1520), 1, + aux_sym_code_span_repeat1, + ACTIONS(5525), 2, sym__word_no_digit, sym__digits, - STATE(1224), 4, - sym_backslash_escape, - sym__link_destination_parenthesis, + STATE(1589), 4, + sym__whitespace, sym__word, - aux_sym_link_destination_repeat2, - ACTIONS(4476), 28, + sym__soft_line_break, + sym__code_span_text_base, + ACTIONS(5517), 32, anon_sym_LT, anon_sym_GT, anon_sym_BANG, @@ -115515,6 +144692,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, @@ -115528,6 +144706,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__, @@ -115536,33 +144715,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [53479] = 10, - ACTIONS(4223), 1, - sym__backslash_escape, - ACTIONS(4241), 1, + anon_sym_LPAREN, + anon_sym_RPAREN, + [6568] = 8, + ACTIONS(5519), 1, sym__newline_token, - ACTIONS(4243), 1, + ACTIONS(5521), 1, sym__whitespace_ge_2, - ACTIONS(4245), 1, + ACTIONS(5523), 1, aux_sym__whitespace_token1, - ACTIONS(4368), 1, - anon_sym_RPAREN, - STATE(1275), 1, - sym__soft_line_break, - ACTIONS(4490), 2, - anon_sym_AMP, - anon_sym_BSLASH, - ACTIONS(4546), 4, - sym_entity_reference, - sym_numeric_character_reference, + ACTIONS(5529), 1, + sym__code_span_close, + STATE(1520), 1, + aux_sym_code_span_repeat1, + ACTIONS(5525), 2, sym__word_no_digit, sym__digits, - STATE(1222), 4, - sym_backslash_escape, + STATE(1589), 4, sym__whitespace, sym__word, - aux_sym_link_title_repeat3, - ACTIONS(4488), 28, + sym__soft_line_break, + sym__code_span_text_base, + ACTIONS(5517), 32, anon_sym_LT, anon_sym_GT, anon_sym_BANG, @@ -115570,6 +144744,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, @@ -115583,6 +144758,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__, @@ -115591,26 +144767,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [53544] = 8, - ACTIONS(4550), 1, + anon_sym_LPAREN, + anon_sym_RPAREN, + [6628] = 8, + ACTIONS(5519), 1, sym__newline_token, - ACTIONS(4552), 1, + ACTIONS(5521), 1, sym__whitespace_ge_2, - ACTIONS(4554), 1, + ACTIONS(5523), 1, aux_sym__whitespace_token1, - ACTIONS(4558), 1, + ACTIONS(5531), 1, sym__code_span_close, - STATE(1238), 1, + STATE(1519), 1, aux_sym_code_span_repeat1, - ACTIONS(4556), 2, + ACTIONS(5525), 2, sym__word_no_digit, sym__digits, - STATE(1302), 4, + STATE(1589), 4, sym__whitespace, sym__word, sym__soft_line_break, sym__code_span_text_base, - ACTIONS(4548), 32, + ACTIONS(5517), 32, anon_sym_LT, anon_sym_GT, anon_sym_BANG, @@ -115643,26 +144821,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [53604] = 8, - ACTIONS(4550), 1, + [6688] = 8, + ACTIONS(5519), 1, sym__newline_token, - ACTIONS(4552), 1, + ACTIONS(5521), 1, sym__whitespace_ge_2, - ACTIONS(4554), 1, + ACTIONS(5523), 1, aux_sym__whitespace_token1, - ACTIONS(4560), 1, + ACTIONS(5533), 1, sym__code_span_close, - STATE(1236), 1, + STATE(1521), 1, aux_sym_code_span_repeat1, - ACTIONS(4556), 2, + ACTIONS(5525), 2, sym__word_no_digit, sym__digits, - STATE(1302), 4, + STATE(1589), 4, sym__whitespace, sym__word, sym__soft_line_break, sym__code_span_text_base, - ACTIONS(4548), 32, + ACTIONS(5517), 32, anon_sym_LT, anon_sym_GT, anon_sym_BANG, @@ -115695,26 +144873,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [53664] = 8, - ACTIONS(4550), 1, + [6748] = 8, + ACTIONS(5519), 1, sym__newline_token, - ACTIONS(4552), 1, + ACTIONS(5521), 1, sym__whitespace_ge_2, - ACTIONS(4554), 1, + ACTIONS(5523), 1, aux_sym__whitespace_token1, - ACTIONS(4562), 1, + ACTIONS(5535), 1, sym__code_span_close, - STATE(1240), 1, + STATE(1520), 1, aux_sym_code_span_repeat1, - ACTIONS(4556), 2, + ACTIONS(5525), 2, sym__word_no_digit, sym__digits, - STATE(1302), 4, + STATE(1589), 4, sym__whitespace, sym__word, sym__soft_line_break, sym__code_span_text_base, - ACTIONS(4548), 32, + ACTIONS(5517), 32, anon_sym_LT, anon_sym_GT, anon_sym_BANG, @@ -115747,26 +144925,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [53724] = 8, - ACTIONS(4550), 1, + [6808] = 8, + ACTIONS(5540), 1, sym__newline_token, - ACTIONS(4552), 1, + ACTIONS(5543), 1, sym__whitespace_ge_2, - ACTIONS(4554), 1, + ACTIONS(5546), 1, aux_sym__whitespace_token1, - ACTIONS(4564), 1, + ACTIONS(5552), 1, sym__code_span_close, - STATE(1241), 1, + STATE(1520), 1, aux_sym_code_span_repeat1, - ACTIONS(4556), 2, + ACTIONS(5549), 2, sym__word_no_digit, sym__digits, - STATE(1302), 4, + STATE(1589), 4, sym__whitespace, sym__word, sym__soft_line_break, sym__code_span_text_base, - ACTIONS(4548), 32, + ACTIONS(5537), 32, anon_sym_LT, anon_sym_GT, anon_sym_BANG, @@ -115799,26 +144977,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [53784] = 8, - ACTIONS(4550), 1, + [6868] = 8, + ACTIONS(5519), 1, sym__newline_token, - ACTIONS(4552), 1, + ACTIONS(5521), 1, sym__whitespace_ge_2, - ACTIONS(4554), 1, + ACTIONS(5523), 1, aux_sym__whitespace_token1, - ACTIONS(4566), 1, + ACTIONS(5554), 1, sym__code_span_close, - STATE(1247), 1, + STATE(1520), 1, aux_sym_code_span_repeat1, - ACTIONS(4556), 2, + ACTIONS(5525), 2, sym__word_no_digit, sym__digits, - STATE(1302), 4, + STATE(1589), 4, sym__whitespace, sym__word, sym__soft_line_break, sym__code_span_text_base, - ACTIONS(4548), 32, + ACTIONS(5517), 32, anon_sym_LT, anon_sym_GT, anon_sym_BANG, @@ -115851,26 +145029,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [53844] = 8, - ACTIONS(4550), 1, + [6928] = 8, + ACTIONS(5519), 1, sym__newline_token, - ACTIONS(4552), 1, + ACTIONS(5521), 1, sym__whitespace_ge_2, - ACTIONS(4554), 1, + ACTIONS(5523), 1, aux_sym__whitespace_token1, - ACTIONS(4568), 1, + ACTIONS(5556), 1, sym__code_span_close, - STATE(1235), 1, + STATE(1520), 1, aux_sym_code_span_repeat1, - ACTIONS(4556), 2, + ACTIONS(5525), 2, sym__word_no_digit, sym__digits, - STATE(1302), 4, + STATE(1589), 4, sym__whitespace, sym__word, sym__soft_line_break, sym__code_span_text_base, - ACTIONS(4548), 32, + ACTIONS(5517), 32, anon_sym_LT, anon_sym_GT, anon_sym_BANG, @@ -115903,26 +145081,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [53904] = 6, - ACTIONS(4574), 1, - sym__newline_token, - ACTIONS(4577), 1, + [6988] = 8, + ACTIONS(5184), 1, + sym__backslash_escape, + ACTIONS(5204), 1, sym__whitespace_ge_2, - ACTIONS(4580), 1, + ACTIONS(5206), 1, aux_sym__whitespace_token1, - ACTIONS(4572), 2, + ACTIONS(5560), 1, + anon_sym_GT, + ACTIONS(5564), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1234), 3, - sym__whitespace, - sym__soft_line_break, - aux_sym_inline_link_repeat1, - ACTIONS(4570), 35, - sym__backslash_escape, + ACTIONS(5558), 4, sym_entity_reference, sym_numeric_character_reference, - anon_sym_LT, - anon_sym_GT, + sym__word_no_digit, + sym__digits, + STATE(1532), 5, + sym_backslash_escape, + sym__text_no_angle, + sym__whitespace, + sym__word, + aux_sym_link_destination_repeat1, + ACTIONS(5562), 28, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -115951,28 +145133,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - sym__word_no_digit, - sym__digits, - [53960] = 8, - ACTIONS(4550), 1, + [7048] = 8, + ACTIONS(5519), 1, sym__newline_token, - ACTIONS(4552), 1, + ACTIONS(5521), 1, sym__whitespace_ge_2, - ACTIONS(4554), 1, + ACTIONS(5523), 1, aux_sym__whitespace_token1, - ACTIONS(4583), 1, + ACTIONS(5566), 1, sym__code_span_close, - STATE(1247), 1, + STATE(1520), 1, aux_sym_code_span_repeat1, - ACTIONS(4556), 2, + ACTIONS(5525), 2, sym__word_no_digit, sym__digits, - STATE(1302), 4, + STATE(1589), 4, sym__whitespace, sym__word, sym__soft_line_break, sym__code_span_text_base, - ACTIONS(4548), 32, + ACTIONS(5517), 32, anon_sym_LT, anon_sym_GT, anon_sym_BANG, @@ -116005,26 +145185,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [54020] = 8, - ACTIONS(4550), 1, + [7108] = 8, + ACTIONS(5519), 1, sym__newline_token, - ACTIONS(4552), 1, + ACTIONS(5521), 1, sym__whitespace_ge_2, - ACTIONS(4554), 1, + ACTIONS(5523), 1, aux_sym__whitespace_token1, - ACTIONS(4585), 1, + ACTIONS(5568), 1, sym__code_span_close, - STATE(1247), 1, + STATE(1537), 1, aux_sym_code_span_repeat1, - ACTIONS(4556), 2, + ACTIONS(5525), 2, sym__word_no_digit, sym__digits, - STATE(1302), 4, + STATE(1589), 4, sym__whitespace, sym__word, sym__soft_line_break, sym__code_span_text_base, - ACTIONS(4548), 32, + ACTIONS(5517), 32, anon_sym_LT, anon_sym_GT, anon_sym_BANG, @@ -116057,26 +145237,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [54080] = 8, - ACTIONS(4550), 1, + [7168] = 8, + ACTIONS(5519), 1, sym__newline_token, - ACTIONS(4552), 1, + ACTIONS(5521), 1, sym__whitespace_ge_2, - ACTIONS(4554), 1, + ACTIONS(5523), 1, aux_sym__whitespace_token1, - ACTIONS(4587), 1, + ACTIONS(5570), 1, sym__code_span_close, - STATE(1247), 1, + STATE(1528), 1, aux_sym_code_span_repeat1, - ACTIONS(4556), 2, + ACTIONS(5525), 2, sym__word_no_digit, sym__digits, - STATE(1302), 4, + STATE(1589), 4, sym__whitespace, sym__word, sym__soft_line_break, sym__code_span_text_base, - ACTIONS(4548), 32, + ACTIONS(5517), 32, anon_sym_LT, anon_sym_GT, anon_sym_BANG, @@ -116109,26 +145289,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [54140] = 8, - ACTIONS(4550), 1, + [7228] = 8, + ACTIONS(5519), 1, sym__newline_token, - ACTIONS(4552), 1, + ACTIONS(5521), 1, sym__whitespace_ge_2, - ACTIONS(4554), 1, + ACTIONS(5523), 1, aux_sym__whitespace_token1, - ACTIONS(4589), 1, + ACTIONS(5572), 1, sym__code_span_close, - STATE(1247), 1, + STATE(1516), 1, aux_sym_code_span_repeat1, - ACTIONS(4556), 2, + ACTIONS(5525), 2, sym__word_no_digit, sym__digits, - STATE(1302), 4, + STATE(1589), 4, sym__whitespace, sym__word, sym__soft_line_break, sym__code_span_text_base, - ACTIONS(4548), 32, + ACTIONS(5517), 32, anon_sym_LT, anon_sym_GT, anon_sym_BANG, @@ -116161,26 +145341,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [54200] = 8, - ACTIONS(4550), 1, + [7288] = 8, + ACTIONS(5519), 1, sym__newline_token, - ACTIONS(4552), 1, + ACTIONS(5521), 1, sym__whitespace_ge_2, - ACTIONS(4554), 1, + ACTIONS(5523), 1, aux_sym__whitespace_token1, - ACTIONS(4591), 1, + ACTIONS(5574), 1, sym__code_span_close, - STATE(1237), 1, + STATE(1520), 1, aux_sym_code_span_repeat1, - ACTIONS(4556), 2, + ACTIONS(5525), 2, sym__word_no_digit, sym__digits, - STATE(1302), 4, + STATE(1589), 4, sym__whitespace, sym__word, sym__soft_line_break, sym__code_span_text_base, - ACTIONS(4548), 32, + ACTIONS(5517), 32, anon_sym_LT, anon_sym_GT, anon_sym_BANG, @@ -116213,26 +145393,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [54260] = 8, - ACTIONS(4550), 1, + [7348] = 8, + ACTIONS(5519), 1, sym__newline_token, - ACTIONS(4552), 1, + ACTIONS(5521), 1, sym__whitespace_ge_2, - ACTIONS(4554), 1, + ACTIONS(5523), 1, aux_sym__whitespace_token1, - ACTIONS(4593), 1, + ACTIONS(5576), 1, sym__code_span_close, - STATE(1247), 1, + STATE(1534), 1, aux_sym_code_span_repeat1, - ACTIONS(4556), 2, + ACTIONS(5525), 2, sym__word_no_digit, sym__digits, - STATE(1302), 4, + STATE(1589), 4, sym__whitespace, sym__word, sym__soft_line_break, sym__code_span_text_base, - ACTIONS(4548), 32, + ACTIONS(5517), 32, anon_sym_LT, anon_sym_GT, anon_sym_BANG, @@ -116265,26 +145445,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [54320] = 8, - ACTIONS(4550), 1, + [7408] = 8, + ACTIONS(5578), 1, + sym__backslash_escape, + ACTIONS(5584), 1, + anon_sym_GT, + ACTIONS(5592), 1, + sym__whitespace_ge_2, + ACTIONS(5595), 1, + aux_sym__whitespace_token1, + ACTIONS(5589), 2, + anon_sym_AMP, + anon_sym_BSLASH, + ACTIONS(5581), 4, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + STATE(1530), 5, + sym_backslash_escape, + sym__text_no_angle, + sym__whitespace, + sym__word, + aux_sym_link_destination_repeat1, + ACTIONS(5586), 28, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [7468] = 8, + ACTIONS(5519), 1, sym__newline_token, - ACTIONS(4552), 1, + ACTIONS(5521), 1, sym__whitespace_ge_2, - ACTIONS(4554), 1, + ACTIONS(5523), 1, aux_sym__whitespace_token1, - ACTIONS(4595), 1, + ACTIONS(5598), 1, sym__code_span_close, - STATE(1247), 1, + STATE(1522), 1, aux_sym_code_span_repeat1, - ACTIONS(4556), 2, + ACTIONS(5525), 2, sym__word_no_digit, sym__digits, - STATE(1302), 4, + STATE(1589), 4, sym__whitespace, sym__word, sym__soft_line_break, sym__code_span_text_base, - ACTIONS(4548), 32, + ACTIONS(5517), 32, anon_sym_LT, anon_sym_GT, anon_sym_BANG, @@ -116317,30 +145549,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [54380] = 8, - ACTIONS(4223), 1, + [7528] = 8, + ACTIONS(5184), 1, sym__backslash_escape, - ACTIONS(4243), 1, + ACTIONS(5204), 1, sym__whitespace_ge_2, - ACTIONS(4245), 1, + ACTIONS(5206), 1, aux_sym__whitespace_token1, - ACTIONS(4599), 1, + ACTIONS(5602), 1, anon_sym_GT, - ACTIONS(4603), 2, + ACTIONS(5564), 2, anon_sym_AMP, anon_sym_BSLASH, - ACTIONS(4597), 4, + ACTIONS(5600), 4, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - STATE(1246), 5, + STATE(1530), 5, sym_backslash_escape, sym__text_no_angle, sym__whitespace, sym__word, aux_sym_link_destination_repeat1, - ACTIONS(4601), 28, + ACTIONS(5562), 28, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -116369,26 +145601,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [54440] = 8, - ACTIONS(4550), 1, + [7588] = 8, + ACTIONS(5519), 1, sym__newline_token, - ACTIONS(4552), 1, + ACTIONS(5521), 1, sym__whitespace_ge_2, - ACTIONS(4554), 1, + ACTIONS(5523), 1, aux_sym__whitespace_token1, - ACTIONS(4605), 1, + ACTIONS(5604), 1, sym__code_span_close, - STATE(1247), 1, + STATE(1515), 1, aux_sym_code_span_repeat1, - ACTIONS(4556), 2, + ACTIONS(5525), 2, sym__word_no_digit, sym__digits, - STATE(1302), 4, + STATE(1589), 4, sym__whitespace, sym__word, sym__soft_line_break, sym__code_span_text_base, - ACTIONS(4548), 32, + ACTIONS(5517), 32, anon_sym_LT, anon_sym_GT, anon_sym_BANG, @@ -116421,26 +145653,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [54500] = 8, - ACTIONS(4550), 1, + [7648] = 8, + ACTIONS(5519), 1, sym__newline_token, - ACTIONS(4552), 1, + ACTIONS(5521), 1, sym__whitespace_ge_2, - ACTIONS(4554), 1, + ACTIONS(5523), 1, aux_sym__whitespace_token1, - ACTIONS(4607), 1, + ACTIONS(5606), 1, sym__code_span_close, - STATE(1243), 1, + STATE(1520), 1, aux_sym_code_span_repeat1, - ACTIONS(4556), 2, + ACTIONS(5525), 2, sym__word_no_digit, sym__digits, - STATE(1302), 4, + STATE(1589), 4, sym__whitespace, sym__word, sym__soft_line_break, sym__code_span_text_base, - ACTIONS(4548), 32, + ACTIONS(5517), 32, anon_sym_LT, anon_sym_GT, anon_sym_BANG, @@ -116473,26 +145705,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [54560] = 8, - ACTIONS(4550), 1, + [7708] = 8, + ACTIONS(5519), 1, sym__newline_token, - ACTIONS(4552), 1, + ACTIONS(5521), 1, sym__whitespace_ge_2, - ACTIONS(4554), 1, + ACTIONS(5523), 1, aux_sym__whitespace_token1, - ACTIONS(4609), 1, + ACTIONS(5608), 1, sym__code_span_close, - STATE(1250), 1, + STATE(1539), 1, aux_sym_code_span_repeat1, - ACTIONS(4556), 2, + ACTIONS(5525), 2, sym__word_no_digit, sym__digits, - STATE(1302), 4, + STATE(1589), 4, sym__whitespace, sym__word, sym__soft_line_break, sym__code_span_text_base, - ACTIONS(4548), 32, + ACTIONS(5517), 32, anon_sym_LT, anon_sym_GT, anon_sym_BANG, @@ -116525,35 +145757,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [54620] = 8, - ACTIONS(4611), 1, - sym__backslash_escape, - ACTIONS(4617), 1, - anon_sym_GT, - ACTIONS(4625), 1, + [7768] = 6, + ACTIONS(5614), 1, + sym__newline_token, + ACTIONS(5617), 1, sym__whitespace_ge_2, - ACTIONS(4628), 1, + ACTIONS(5620), 1, aux_sym__whitespace_token1, - ACTIONS(4622), 2, + ACTIONS(5612), 2, anon_sym_AMP, anon_sym_BSLASH, - ACTIONS(4614), 4, + STATE(1536), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + ACTIONS(5610), 35, + 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__word_no_digit, sym__digits, - STATE(1246), 5, - sym_backslash_escape, - sym__text_no_angle, + [7824] = 8, + ACTIONS(5519), 1, + sym__newline_token, + ACTIONS(5521), 1, + sym__whitespace_ge_2, + ACTIONS(5523), 1, + aux_sym__whitespace_token1, + ACTIONS(5623), 1, + sym__code_span_close, + STATE(1520), 1, + aux_sym_code_span_repeat1, + ACTIONS(5525), 2, + sym__word_no_digit, + sym__digits, + STATE(1589), 4, sym__whitespace, sym__word, - aux_sym_link_destination_repeat1, - ACTIONS(4619), 28, + sym__soft_line_break, + sym__code_span_text_base, + ACTIONS(5517), 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, @@ -116567,6 +145848,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__, @@ -116577,26 +145859,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [54680] = 8, - ACTIONS(4634), 1, + [7884] = 8, + ACTIONS(5519), 1, sym__newline_token, - ACTIONS(4637), 1, + ACTIONS(5521), 1, sym__whitespace_ge_2, - ACTIONS(4640), 1, + ACTIONS(5523), 1, aux_sym__whitespace_token1, - ACTIONS(4646), 1, + ACTIONS(5625), 1, sym__code_span_close, - STATE(1247), 1, + STATE(1524), 1, aux_sym_code_span_repeat1, - ACTIONS(4643), 2, + ACTIONS(5525), 2, sym__word_no_digit, sym__digits, - STATE(1302), 4, + STATE(1589), 4, sym__whitespace, sym__word, sym__soft_line_break, sym__code_span_text_base, - ACTIONS(4631), 32, + ACTIONS(5517), 32, anon_sym_LT, anon_sym_GT, anon_sym_BANG, @@ -116629,26 +145911,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [54740] = 8, - ACTIONS(4550), 1, + [7944] = 8, + ACTIONS(5519), 1, sym__newline_token, - ACTIONS(4552), 1, + ACTIONS(5521), 1, sym__whitespace_ge_2, - ACTIONS(4554), 1, + ACTIONS(5523), 1, aux_sym__whitespace_token1, - ACTIONS(4648), 1, + ACTIONS(5627), 1, sym__code_span_close, - STATE(1232), 1, + STATE(1520), 1, aux_sym_code_span_repeat1, - ACTIONS(4556), 2, + ACTIONS(5525), 2, sym__word_no_digit, sym__digits, - STATE(1302), 4, + STATE(1589), 4, sym__whitespace, sym__word, sym__soft_line_break, sym__code_span_text_base, - ACTIONS(4548), 32, + ACTIONS(5517), 32, anon_sym_LT, anon_sym_GT, anon_sym_BANG, @@ -116681,30 +145963,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [54800] = 8, - ACTIONS(4223), 1, - sym__backslash_escape, - ACTIONS(4243), 1, - sym__whitespace_ge_2, - ACTIONS(4245), 1, - aux_sym__whitespace_token1, - ACTIONS(4652), 1, - anon_sym_GT, - ACTIONS(4603), 2, + [8004] = 3, + ACTIONS(5404), 1, + sym__last_token_punctuation, + ACTIONS(5402), 3, anon_sym_AMP, anon_sym_BSLASH, - ACTIONS(4650), 4, + aux_sym__whitespace_token1, + ACTIONS(5400), 37, + sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, - sym__word_no_digit, - sym__digits, - STATE(1242), 5, - sym_backslash_escape, - sym__text_no_angle, - sym__whitespace, - sym__word, - aux_sym_link_destination_repeat1, - ACTIONS(4601), 28, + anon_sym_LT, + anon_sym_GT, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -116733,26 +146004,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [54860] = 8, - ACTIONS(4550), 1, sym__newline_token, - ACTIONS(4552), 1, sym__whitespace_ge_2, - ACTIONS(4554), 1, - aux_sym__whitespace_token1, - ACTIONS(4654), 1, - sym__code_span_close, - STATE(1247), 1, - aux_sym_code_span_repeat1, - ACTIONS(4556), 2, sym__word_no_digit, sym__digits, - STATE(1302), 4, - sym__whitespace, - sym__word, - sym__soft_line_break, - sym__code_span_text_base, - ACTIONS(4548), 32, + [8052] = 3, + ACTIONS(5635), 1, + sym__last_token_punctuation, + ACTIONS(5632), 3, + anon_sym_AMP, + anon_sym_BSLASH, + aux_sym__whitespace_token1, + ACTIONS(5629), 37, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, anon_sym_LT, anon_sym_GT, anon_sym_BANG, @@ -116760,7 +146026,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, @@ -116774,7 +146039,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__, @@ -116785,19 +146049,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [54920] = 5, - ACTIONS(4663), 1, + sym__newline_token, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [8100] = 5, + ACTIONS(5644), 1, aux_sym__whitespace_token1, - ACTIONS(4666), 1, + ACTIONS(5647), 1, sym__last_token_punctuation, - ACTIONS(4658), 2, + ACTIONS(5639), 2, anon_sym_AMP, anon_sym_BSLASH, - ACTIONS(4660), 3, + ACTIONS(5641), 3, anon_sym_RPAREN, sym__newline_token, sym__whitespace_ge_2, - ACTIONS(4656), 34, + ACTIONS(5637), 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, + [8152] = 3, + ACTIONS(5649), 1, + sym__last_token_whitespace, + ACTIONS(4730), 3, + anon_sym_AMP, + anon_sym_BSLASH, + aux_sym__whitespace_token1, + ACTIONS(4728), 37, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -116830,16 +146140,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_TILDE, anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [54972] = 3, - ACTIONS(4668), 1, + [8200] = 3, + ACTIONS(5651), 1, sym__last_token_whitespace, - ACTIONS(3735), 3, + ACTIONS(4644), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(3733), 37, + ACTIONS(4642), 37, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -116877,14 +146190,14 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [55020] = 3, - ACTIONS(4666), 1, + [8248] = 3, + ACTIONS(5647), 1, sym__last_token_punctuation, - ACTIONS(4658), 3, + ACTIONS(5639), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(4656), 37, + ACTIONS(5637), 37, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -116922,63 +146235,14 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [55068] = 7, - ACTIONS(4223), 1, - sym__backslash_escape, - ACTIONS(4358), 1, - anon_sym_LPAREN, - ACTIONS(4672), 1, - anon_sym_RPAREN, - ACTIONS(4478), 2, - anon_sym_AMP, - anon_sym_BSLASH, - ACTIONS(4670), 4, - sym_entity_reference, - sym_numeric_character_reference, - sym__word_no_digit, - sym__digits, - STATE(1262), 4, - sym_backslash_escape, - sym__link_destination_parenthesis, - sym__word, - aux_sym_link_destination_repeat2, - ACTIONS(4476), 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, - [55124] = 3, - ACTIONS(4680), 1, + [8296] = 3, + ACTIONS(5430), 1, sym__last_token_punctuation, - ACTIONS(4677), 3, + ACTIONS(5428), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(4674), 37, + ACTIONS(5426), 37, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -117016,14 +146280,16 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [55172] = 3, - ACTIONS(4419), 1, - sym__last_token_punctuation, - ACTIONS(4417), 3, + [8344] = 4, + ACTIONS(5653), 1, + sym__newline_token, + STATE(2347), 1, + sym__soft_line_break, + ACTIONS(5402), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(4415), 37, + ACTIONS(5400), 36, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -117057,20 +146323,19 @@ 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, - [55220] = 4, - ACTIONS(4682), 1, + [8394] = 4, + ACTIONS(5656), 1, sym__newline_token, - STATE(1957), 1, + STATE(2351), 1, sym__soft_line_break, - ACTIONS(4417), 3, + ACTIONS(5428), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(4415), 36, + ACTIONS(5426), 36, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -117107,14 +146372,14 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [55270] = 3, - ACTIONS(4691), 1, + [8444] = 3, + ACTIONS(5665), 1, sym__last_token_punctuation, - ACTIONS(4688), 3, + ACTIONS(5662), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(4685), 37, + ACTIONS(5659), 37, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -117152,14 +146417,20 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [55318] = 3, - ACTIONS(4472), 1, + [8492] = 6, + ACTIONS(5637), 1, + anon_sym_LPAREN, + ACTIONS(5675), 1, + aux_sym__whitespace_token1, + ACTIONS(5677), 1, sym__last_token_punctuation, - ACTIONS(4470), 3, + ACTIONS(5670), 2, anon_sym_AMP, anon_sym_BSLASH, - aux_sym__whitespace_token1, - ACTIONS(4468), 37, + ACTIONS(5673), 2, + sym__newline_token, + sym__whitespace_ge_2, + ACTIONS(5667), 34, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -117191,25 +146462,30 @@ 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, - [55366] = 4, - ACTIONS(4693), 1, - sym__newline_token, - STATE(1999), 1, - sym__soft_line_break, - ACTIONS(4470), 3, + [8546] = 7, + ACTIONS(5184), 1, + sym__backslash_escape, + ACTIONS(5327), 1, + anon_sym_LPAREN, + ACTIONS(5679), 1, + anon_sym_RPAREN, + ACTIONS(5370), 2, anon_sym_AMP, anon_sym_BSLASH, - aux_sym__whitespace_token1, - ACTIONS(4468), 36, - sym__backslash_escape, + ACTIONS(5461), 4, sym_entity_reference, sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + STATE(1512), 4, + sym_backslash_escape, + sym__link_destination_parenthesis, + sym__word, + aux_sym_link_destination_repeat2, + ACTIONS(5368), 28, anon_sym_LT, anon_sym_GT, anon_sym_BANG, @@ -117238,28 +146514,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, + [8602] = 7, + ACTIONS(5184), 1, + sym__backslash_escape, + ACTIONS(5327), 1, anon_sym_LPAREN, + ACTIONS(5683), 1, anon_sym_RPAREN, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - [55416] = 6, - ACTIONS(4656), 1, - anon_sym_LPAREN, - ACTIONS(4704), 1, - aux_sym__whitespace_token1, - ACTIONS(4706), 1, - sym__last_token_punctuation, - ACTIONS(4699), 2, + ACTIONS(5370), 2, anon_sym_AMP, anon_sym_BSLASH, - ACTIONS(4702), 2, - sym__newline_token, - sym__whitespace_ge_2, - ACTIONS(4696), 34, - sym__backslash_escape, + ACTIONS(5681), 4, sym_entity_reference, sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + STATE(1551), 4, + sym_backslash_escape, + sym__link_destination_parenthesis, + sym__word, + aux_sym_link_destination_repeat2, + ACTIONS(5368), 28, anon_sym_LT, anon_sym_GT, anon_sym_BANG, @@ -117288,30 +146563,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - anon_sym_RPAREN, - sym__word_no_digit, - sym__digits, - [55470] = 7, - ACTIONS(4223), 1, - sym__backslash_escape, - ACTIONS(4358), 1, - anon_sym_LPAREN, - ACTIONS(4708), 1, - anon_sym_RPAREN, - ACTIONS(4478), 2, + [8658] = 2, + ACTIONS(5687), 3, anon_sym_AMP, anon_sym_BSLASH, - ACTIONS(4492), 4, + aux_sym__whitespace_token1, + ACTIONS(5685), 37, + sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, - sym__word_no_digit, - sym__digits, - STATE(1223), 4, - sym_backslash_escape, - sym__link_destination_parenthesis, - sym__word, - aux_sym_link_destination_repeat2, - ACTIONS(4476), 28, anon_sym_LT, anon_sym_GT, anon_sym_BANG, @@ -117340,14 +146600,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [55526] = 3, - ACTIONS(4710), 1, - sym__last_token_whitespace, - ACTIONS(3803), 3, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [8703] = 4, + ACTIONS(5689), 1, + sym__newline_token, + STATE(2319), 1, + sym__soft_line_break, + ACTIONS(5675), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(3801), 37, + ACTIONS(5673), 35, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -117379,18 +146647,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - anon_sym_LPAREN, anon_sym_RPAREN, - sym__newline_token, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [55574] = 2, - ACTIONS(4688), 3, + [8752] = 2, + ACTIONS(5692), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(4685), 37, + ACTIONS(5441), 37, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -117428,14 +146694,12 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [55619] = 3, - ACTIONS(4712), 1, - sym__last_token_punctuation, - ACTIONS(4704), 3, + [8797] = 2, + ACTIONS(5697), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(4702), 36, + ACTIONS(5694), 37, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -117467,28 +146731,21 @@ 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, - [55666] = 6, - ACTIONS(4717), 1, - anon_sym_SQUOTE, - ACTIONS(4719), 1, + [8842] = 2, + ACTIONS(5700), 3, + anon_sym_AMP, anon_sym_BSLASH, - ACTIONS(4722), 1, - sym__newline_token, - STATE(1266), 3, - sym__word, - sym__soft_line_break, - aux_sym_key_value_value_repeat1, - ACTIONS(4725), 4, - sym__commonmark_whitespace, - anon_sym_BSLASH_SQUOTE, - sym__word_no_digit, - sym__digits, - ACTIONS(4714), 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, @@ -117496,7 +146753,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, @@ -117519,12 +146776,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [55719] = 2, - ACTIONS(4677), 3, + sym__newline_token, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [8887] = 5, + ACTIONS(5507), 1, + anon_sym_LPAREN, + ACTIONS(5708), 1, + aux_sym__whitespace_token1, + ACTIONS(5479), 2, + sym__newline_token, + sym__whitespace_ge_2, + ACTIONS(5705), 2, anon_sym_AMP, anon_sym_BSLASH, - aux_sym__whitespace_token1, - ACTIONS(4674), 37, + ACTIONS(5702), 34, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -117556,36 +146823,25 @@ 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, - [55764] = 6, - ACTIONS(4730), 1, - anon_sym_DQUOTE, - ACTIONS(4732), 1, + [8938] = 2, + ACTIONS(5712), 3, + anon_sym_AMP, anon_sym_BSLASH, - ACTIONS(4734), 1, - sym__newline_token, - STATE(1278), 3, - sym__word, - sym__soft_line_break, - aux_sym_key_value_value_repeat2, - ACTIONS(4736), 4, - sym__commonmark_whitespace, - anon_sym_BSLASH_DQUOTE, - sym__word_no_digit, - sym__digits, - ACTIONS(4728), 30, + aux_sym__whitespace_token1, + ACTIONS(5710), 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_AMP, anon_sym_SQUOTE, anon_sym_STAR, anon_sym_PLUS, @@ -117609,12 +146865,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [55817] = 2, - ACTIONS(4740), 3, + sym__newline_token, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [8983] = 3, + ACTIONS(5714), 1, + sym__last_token_punctuation, + ACTIONS(5675), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(4738), 37, + ACTIONS(5673), 36, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -117646,21 +146908,28 @@ 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, - [55862] = 2, - ACTIONS(4744), 3, - anon_sym_AMP, + [9030] = 6, + ACTIONS(5718), 1, + anon_sym_SQUOTE, + ACTIONS(5720), 1, anon_sym_BSLASH, - aux_sym__whitespace_token1, - ACTIONS(4742), 37, - sym__backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, + ACTIONS(5722), 1, + sym__newline_token, + STATE(1571), 3, + sym__word, + sym__soft_line_break, + aux_sym_key_value_value_repeat1, + ACTIONS(5724), 4, + sym__commonmark_whitespace, + anon_sym_BSLASH_SQUOTE, + sym__word_no_digit, + sym__digits, + ACTIONS(5716), 30, anon_sym_LT, anon_sym_GT, anon_sym_BANG, @@ -117668,7 +146937,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, - anon_sym_SQUOTE, + anon_sym_AMP, anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, @@ -117691,32 +146960,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, + [9083] = 6, + ACTIONS(5718), 1, + anon_sym_DQUOTE, + ACTIONS(5728), 1, + anon_sym_BSLASH, + ACTIONS(5730), 1, sym__newline_token, - sym__whitespace_ge_2, + STATE(1569), 3, + sym__word, + sym__soft_line_break, + aux_sym_key_value_value_repeat2, + ACTIONS(5732), 4, + sym__commonmark_whitespace, + anon_sym_BSLASH_DQUOTE, sym__word_no_digit, sym__digits, - [55907] = 5, - ACTIONS(4656), 1, - anon_sym_LPAREN, - ACTIONS(4704), 1, - aux_sym__whitespace_token1, - ACTIONS(4699), 2, - anon_sym_AMP, - anon_sym_BSLASH, - ACTIONS(4702), 2, - sym__newline_token, - sym__whitespace_ge_2, - ACTIONS(4696), 34, - sym__backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, + ACTIONS(5726), 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, @@ -117738,25 +147005,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, + anon_sym_LPAREN, anon_sym_RPAREN, + [9136] = 6, + ACTIONS(5737), 1, + anon_sym_DQUOTE, + ACTIONS(5739), 1, + anon_sym_BSLASH, + ACTIONS(5742), 1, + sym__newline_token, + STATE(1563), 3, + sym__word, + sym__soft_line_break, + aux_sym_key_value_value_repeat2, + ACTIONS(5745), 4, + sym__commonmark_whitespace, + anon_sym_BSLASH_DQUOTE, sym__word_no_digit, sym__digits, - [55958] = 2, - ACTIONS(4748), 3, - anon_sym_AMP, - anon_sym_BSLASH, - aux_sym__whitespace_token1, - ACTIONS(4746), 37, - sym__backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, + ACTIONS(5734), 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, @@ -117780,27 +147054,23 @@ 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, - [56003] = 6, - ACTIONS(4730), 1, + [9189] = 6, + ACTIONS(5751), 1, anon_sym_SQUOTE, - ACTIONS(4752), 1, + ACTIONS(5753), 1, anon_sym_BSLASH, - ACTIONS(4754), 1, + ACTIONS(5756), 1, sym__newline_token, - STATE(1279), 3, + STATE(1564), 3, sym__word, sym__soft_line_break, aux_sym_key_value_value_repeat1, - ACTIONS(4756), 4, + ACTIONS(5759), 4, sym__commonmark_whitespace, anon_sym_BSLASH_SQUOTE, sym__word_no_digit, sym__digits, - ACTIONS(4750), 30, + ACTIONS(5748), 30, anon_sym_LT, anon_sym_GT, anon_sym_BANG, @@ -117831,17 +147101,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [56056] = 4, - ACTIONS(4765), 1, - aux_sym__whitespace_token1, - ACTIONS(4760), 2, + [9242] = 2, + ACTIONS(5764), 3, anon_sym_AMP, anon_sym_BSLASH, - ACTIONS(4762), 3, - anon_sym_RPAREN, - sym__newline_token, - sym__whitespace_ge_2, - ACTIONS(4758), 34, + aux_sym__whitespace_token1, + ACTIONS(5762), 37, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -117874,18 +147139,23 @@ 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, - [56105] = 4, - ACTIONS(4768), 1, - sym__newline_token, - STATE(1993), 1, - sym__soft_line_break, - ACTIONS(4704), 3, + [9287] = 5, + ACTIONS(5637), 1, + anon_sym_LPAREN, + ACTIONS(5675), 1, + aux_sym__whitespace_token1, + ACTIONS(5670), 2, anon_sym_AMP, anon_sym_BSLASH, - aux_sym__whitespace_token1, - ACTIONS(4702), 35, + ACTIONS(5673), 2, + sym__newline_token, + sym__whitespace_ge_2, + ACTIONS(5667), 34, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -117918,15 +147188,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_TILDE, anon_sym_RPAREN, - sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [56154] = 2, - ACTIONS(4774), 3, + [9338] = 2, + ACTIONS(5632), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(4771), 37, + ACTIONS(5629), 37, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -117964,12 +147233,12 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [56199] = 2, - ACTIONS(4031), 3, + [9383] = 2, + ACTIONS(5769), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(4029), 37, + ACTIONS(5766), 37, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -118007,23 +147276,23 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [56244] = 6, - ACTIONS(4732), 1, + [9428] = 6, + ACTIONS(5728), 1, anon_sym_BSLASH, - ACTIONS(4734), 1, + ACTIONS(5730), 1, sym__newline_token, - ACTIONS(4777), 1, + ACTIONS(5772), 1, anon_sym_DQUOTE, - STATE(1280), 3, + STATE(1563), 3, sym__word, sym__soft_line_break, aux_sym_key_value_value_repeat2, - ACTIONS(4779), 4, + ACTIONS(5774), 4, sym__commonmark_whitespace, anon_sym_BSLASH_DQUOTE, sym__word_no_digit, sym__digits, - ACTIONS(4728), 30, + ACTIONS(5726), 30, anon_sym_LT, anon_sym_GT, anon_sym_BANG, @@ -118054,23 +147323,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [56297] = 6, - ACTIONS(4752), 1, + [9481] = 2, + ACTIONS(4942), 3, + anon_sym_AMP, anon_sym_BSLASH, - ACTIONS(4754), 1, - sym__newline_token, - ACTIONS(4777), 1, - anon_sym_SQUOTE, - STATE(1266), 3, - sym__word, - sym__soft_line_break, - aux_sym_key_value_value_repeat1, - ACTIONS(4781), 4, - sym__commonmark_whitespace, - anon_sym_BSLASH_SQUOTE, - sym__word_no_digit, - sym__digits, - ACTIONS(4750), 30, + aux_sym__whitespace_token1, + ACTIONS(4940), 37, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, anon_sym_LT, anon_sym_GT, anon_sym_BANG, @@ -118078,7 +147339,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, @@ -118101,31 +147362,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [56350] = 6, - ACTIONS(4786), 1, - anon_sym_DQUOTE, - ACTIONS(4788), 1, + sym__newline_token, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [9526] = 6, + ACTIONS(5720), 1, anon_sym_BSLASH, - ACTIONS(4791), 1, + ACTIONS(5722), 1, sym__newline_token, - STATE(1280), 3, + ACTIONS(5772), 1, + anon_sym_SQUOTE, + STATE(1564), 3, sym__word, sym__soft_line_break, - aux_sym_key_value_value_repeat2, - ACTIONS(4794), 4, + aux_sym_key_value_value_repeat1, + ACTIONS(5776), 4, sym__commonmark_whitespace, - anon_sym_BSLASH_DQUOTE, + anon_sym_BSLASH_SQUOTE, sym__word_no_digit, sym__digits, - ACTIONS(4783), 30, + ACTIONS(5716), 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, @@ -118148,12 +147413,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [56403] = 2, - ACTIONS(3923), 3, + [9579] = 2, + ACTIONS(5034), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(3921), 37, + ACTIONS(5032), 37, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -118191,12 +147456,12 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [56448] = 2, - ACTIONS(3927), 3, + [9624] = 2, + ACTIONS(4858), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(3925), 37, + ACTIONS(4856), 37, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -118234,12 +147499,12 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [56493] = 2, - ACTIONS(4760), 3, + [9669] = 2, + ACTIONS(5509), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(4758), 37, + ACTIONS(5507), 37, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -118277,12 +147542,12 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [56538] = 2, - ACTIONS(4538), 3, + [9714] = 2, + ACTIONS(5780), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(4536), 37, + ACTIONS(5778), 37, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -118320,58 +147585,12 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [56583] = 5, - ACTIONS(4536), 1, - anon_sym_LPAREN, - ACTIONS(4803), 1, - aux_sym__whitespace_token1, - ACTIONS(4510), 2, - sym__newline_token, - sym__whitespace_ge_2, - ACTIONS(4800), 2, - anon_sym_AMP, - anon_sym_BSLASH, - ACTIONS(4797), 34, - sym__backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_TILDE, - anon_sym_RPAREN, - sym__word_no_digit, - sym__digits, - [56634] = 2, - ACTIONS(4805), 3, + [9759] = 2, + ACTIONS(5662), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(4433), 37, + ACTIONS(5659), 37, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -118409,12 +147628,17 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [56679] = 2, - ACTIONS(4807), 3, + [9804] = 4, + ACTIONS(5785), 1, + aux_sym__whitespace_token1, + ACTIONS(5780), 2, anon_sym_AMP, anon_sym_BSLASH, - aux_sym__whitespace_token1, - ACTIONS(4383), 37, + ACTIONS(5782), 3, + anon_sym_RPAREN, + sym__newline_token, + sym__whitespace_ge_2, + ACTIONS(5778), 34, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -118447,21 +147671,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_TILDE, anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [56724] = 2, - ACTIONS(4812), 3, + [9853] = 3, + ACTIONS(5792), 1, + sym__last_token_punctuation, + ACTIONS(5790), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(4809), 37, + ACTIONS(5788), 35, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, - anon_sym_LT, anon_sym_GT, anon_sym_BANG, anon_sym_DQUOTE, @@ -118491,27 +147713,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, - [56769] = 3, - ACTIONS(4819), 1, - sym__last_token_punctuation, - ACTIONS(4817), 3, - anon_sym_AMP, - anon_sym_BSLASH, + [9899] = 3, + ACTIONS(4730), 1, aux_sym__whitespace_token1, - ACTIONS(4815), 35, - sym__backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, + ACTIONS(5794), 1, + sym__last_token_whitespace, + ACTIONS(4728), 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, @@ -118525,6 +147744,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__, @@ -118535,15 +147755,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, - [56815] = 3, - ACTIONS(4823), 1, + [9945] = 3, + ACTIONS(4644), 1, aux_sym__whitespace_token1, - ACTIONS(4825), 1, - sym__last_token_punctuation, - ACTIONS(4821), 37, + ACTIONS(5796), 1, + sym__last_token_whitespace, + ACTIONS(4642), 37, sym__code_span_close, anon_sym_LT, anon_sym_GT, @@ -118581,12 +147802,12 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [56861] = 2, - ACTIONS(4829), 3, + [9991] = 2, + ACTIONS(5708), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(4827), 36, + ACTIONS(5479), 36, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -118623,12 +147844,12 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [56905] = 2, - ACTIONS(4803), 3, + [10035] = 2, + ACTIONS(5800), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(4510), 36, + ACTIONS(5798), 36, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -118665,12 +147886,12 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [56949] = 3, - ACTIONS(3735), 1, + [10079] = 3, + ACTIONS(5804), 1, aux_sym__whitespace_token1, - ACTIONS(4831), 1, - sym__last_token_whitespace, - ACTIONS(3733), 37, + ACTIONS(5806), 1, + sym__last_token_punctuation, + ACTIONS(5802), 37, sym__code_span_close, anon_sym_LT, anon_sym_GT, @@ -118708,12 +147929,10 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [56995] = 3, - ACTIONS(3803), 1, + [10125] = 2, + ACTIONS(5810), 1, aux_sym__whitespace_token1, - ACTIONS(4833), 1, - sym__last_token_whitespace, - ACTIONS(3801), 37, + ACTIONS(5808), 37, sym__code_span_close, anon_sym_LT, anon_sym_GT, @@ -118751,21 +147970,20 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [57041] = 2, - ACTIONS(4837), 3, - anon_sym_AMP, + [10168] = 3, + ACTIONS(5814), 1, anon_sym_BSLASH, - aux_sym__whitespace_token1, - ACTIONS(4835), 35, - sym__backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, + ACTIONS(5816), 1, + sym__last_token_punctuation, + ACTIONS(5812), 36, + 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, @@ -118789,14 +148007,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - sym__whitespace_ge_2, + sym__newline_token, + sym__commonmark_whitespace, + anon_sym_BSLASH_SQUOTE, sym__word_no_digit, sym__digits, - [57084] = 2, - ACTIONS(4841), 1, - aux_sym__whitespace_token1, - ACTIONS(4839), 37, - sym__code_span_close, + [10213] = 3, + ACTIONS(5820), 1, + anon_sym_BSLASH, + ACTIONS(5822), 1, + sym__last_token_punctuation, + ACTIONS(5818), 36, anon_sym_LT, anon_sym_GT, anon_sym_BANG, @@ -118818,7 +148039,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__, @@ -118830,13 +148050,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_DQUOTE, sym__word_no_digit, sym__digits, - [57127] = 2, - ACTIONS(3923), 1, + [10258] = 2, + ACTIONS(5034), 1, aux_sym__whitespace_token1, - ACTIONS(3921), 37, + ACTIONS(5032), 37, sym__code_span_close, anon_sym_LT, anon_sym_GT, @@ -118874,12 +148095,12 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [57170] = 3, - ACTIONS(3803), 1, + [10301] = 3, + ACTIONS(4730), 1, anon_sym_BSLASH, - ACTIONS(4843), 1, + ACTIONS(5824), 1, sym__last_token_whitespace, - ACTIONS(3801), 36, + ACTIONS(4728), 36, anon_sym_LT, anon_sym_GT, anon_sym_BANG, @@ -118916,10 +148137,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_DQUOTE, sym__word_no_digit, sym__digits, - [57215] = 2, - ACTIONS(3927), 1, + [10346] = 2, + ACTIONS(5828), 1, aux_sym__whitespace_token1, - ACTIONS(3925), 37, + ACTIONS(5826), 37, sym__code_span_close, anon_sym_LT, anon_sym_GT, @@ -118957,54 +148178,12 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [57258] = 3, - ACTIONS(4847), 1, - anon_sym_BSLASH, - ACTIONS(4849), 1, - sym__last_token_punctuation, - ACTIONS(4845), 36, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_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__commonmark_whitespace, - anon_sym_BSLASH_DQUOTE, - sym__word_no_digit, - sym__digits, - [57303] = 3, - ACTIONS(3803), 1, + [10389] = 3, + ACTIONS(4730), 1, anon_sym_BSLASH, - ACTIONS(4851), 1, + ACTIONS(5830), 1, sym__last_token_whitespace, - ACTIONS(3801), 36, + ACTIONS(4728), 36, anon_sym_LT, anon_sym_GT, anon_sym_BANG, @@ -119041,10 +148220,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_SQUOTE, sym__word_no_digit, sym__digits, - [57348] = 2, - ACTIONS(4855), 1, + [10434] = 2, + ACTIONS(4858), 1, aux_sym__whitespace_token1, - ACTIONS(4853), 37, + ACTIONS(4856), 37, sym__code_span_close, anon_sym_LT, anon_sym_GT, @@ -119082,20 +148261,21 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [57391] = 3, - ACTIONS(4859), 1, + [10477] = 2, + ACTIONS(5834), 3, + anon_sym_AMP, anon_sym_BSLASH, - ACTIONS(4861), 1, - sym__last_token_punctuation, - ACTIONS(4857), 36, - anon_sym_LT, + aux_sym__whitespace_token1, + ACTIONS(5832), 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, @@ -119119,15 +148299,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - sym__newline_token, - sym__commonmark_whitespace, - anon_sym_BSLASH_SQUOTE, + sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [57436] = 2, - ACTIONS(4863), 1, + [10520] = 2, + ACTIONS(5836), 1, anon_sym_BSLASH, - ACTIONS(4786), 36, + ACTIONS(5751), 36, anon_sym_LT, anon_sym_GT, anon_sym_BANG, @@ -119161,13 +148339,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, sym__newline_token, sym__commonmark_whitespace, - anon_sym_BSLASH_DQUOTE, + anon_sym_BSLASH_SQUOTE, sym__word_no_digit, sym__digits, - [57478] = 2, - ACTIONS(4865), 1, + [10562] = 2, + ACTIONS(5838), 1, anon_sym_BSLASH, - ACTIONS(4717), 36, + ACTIONS(5737), 36, anon_sym_LT, anon_sym_GT, anon_sym_BANG, @@ -119201,13 +148379,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, sym__newline_token, sym__commonmark_whitespace, - anon_sym_BSLASH_SQUOTE, + anon_sym_BSLASH_DQUOTE, sym__word_no_digit, sym__digits, - [57520] = 2, - ACTIONS(3923), 1, + [10604] = 2, + ACTIONS(5034), 1, anon_sym_BSLASH, - ACTIONS(3921), 36, + ACTIONS(5032), 36, anon_sym_LT, anon_sym_GT, anon_sym_BANG, @@ -119241,13 +148419,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, sym__newline_token, sym__commonmark_whitespace, - anon_sym_BSLASH_DQUOTE, + anon_sym_BSLASH_SQUOTE, sym__word_no_digit, sym__digits, - [57562] = 2, - ACTIONS(3923), 1, + [10646] = 2, + ACTIONS(5034), 1, anon_sym_BSLASH, - ACTIONS(3921), 36, + ACTIONS(5032), 36, anon_sym_LT, anon_sym_GT, anon_sym_BANG, @@ -119281,2454 +148459,2772 @@ 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, - [57604] = 10, - ACTIONS(4867), 1, + [10688] = 10, + ACTIONS(5840), 1, + sym_shortcode_name, + ACTIONS(5846), 1, + sym_shortcode_number, + ACTIONS(5850), 1, + sym__whitespace_ge_2, + ACTIONS(5852), 1, + aux_sym__whitespace_token1, + ACTIONS(5854), 1, + sym__shortcode_open, + STATE(1643), 1, + sym__whitespace, + ACTIONS(5842), 2, + aux_sym_shortcode_naked_string_token1, + aux_sym_shortcode_naked_string_token2, + ACTIONS(5844), 2, + aux_sym_shortcode_string_token1, + aux_sym_shortcode_string_token2, + ACTIONS(5848), 2, + anon_sym_true, + anon_sym_false, + STATE(2273), 5, + sym_shortcode, + sym__shortcode_value, + sym_shortcode_naked_string, + sym_shortcode_string, + sym_shortcode_boolean, + [10726] = 10, + ACTIONS(5850), 1, + sym__whitespace_ge_2, + ACTIONS(5852), 1, + aux_sym__whitespace_token1, + ACTIONS(5854), 1, + sym__shortcode_open, + ACTIONS(5856), 1, + sym_shortcode_name, + ACTIONS(5858), 1, + sym_shortcode_number, + STATE(1641), 1, + sym__whitespace, + ACTIONS(5842), 2, + aux_sym_shortcode_naked_string_token1, + aux_sym_shortcode_naked_string_token2, + ACTIONS(5844), 2, + aux_sym_shortcode_string_token1, + aux_sym_shortcode_string_token2, + ACTIONS(5848), 2, + anon_sym_true, + anon_sym_false, + STATE(2269), 5, + sym_shortcode, + sym__shortcode_value, + sym_shortcode_naked_string, + sym_shortcode_string, + sym_shortcode_boolean, + [10764] = 9, + ACTIONS(5854), 1, + sym__shortcode_open, + ACTIONS(5860), 1, + sym_shortcode_name, + ACTIONS(5862), 1, + sym_shortcode_number, + ACTIONS(5864), 1, + sym__shortcode_close, + STATE(2245), 1, + sym_shortcode_keyword_param, + ACTIONS(5842), 2, + aux_sym_shortcode_naked_string_token1, + aux_sym_shortcode_naked_string_token2, + ACTIONS(5844), 2, + aux_sym_shortcode_string_token1, + aux_sym_shortcode_string_token2, + ACTIONS(5848), 2, + anon_sym_true, + anon_sym_false, + STATE(2256), 5, + sym_shortcode, + sym__shortcode_value, + sym_shortcode_naked_string, + sym_shortcode_string, + sym_shortcode_boolean, + [10799] = 9, + ACTIONS(5854), 1, + sym__shortcode_open, + ACTIONS(5860), 1, sym_shortcode_name, - ACTIONS(4873), 1, + ACTIONS(5862), 1, sym_shortcode_number, - ACTIONS(4877), 1, - sym__whitespace_ge_2, - ACTIONS(4879), 1, - aux_sym__whitespace_token1, - ACTIONS(4881), 1, - sym__shortcode_open, - STATE(1350), 1, - sym__whitespace, - ACTIONS(4869), 2, + ACTIONS(5866), 1, + sym__shortcode_close_escaped, + STATE(2245), 1, + sym_shortcode_keyword_param, + ACTIONS(5842), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - ACTIONS(4871), 2, + ACTIONS(5844), 2, aux_sym_shortcode_string_token1, aux_sym_shortcode_string_token2, - ACTIONS(4875), 2, + ACTIONS(5848), 2, anon_sym_true, anon_sym_false, - STATE(1919), 5, + STATE(2256), 5, sym_shortcode, sym__shortcode_value, sym_shortcode_naked_string, sym_shortcode_string, sym_shortcode_boolean, - [57642] = 10, - ACTIONS(4877), 1, - sym__whitespace_ge_2, - ACTIONS(4879), 1, - aux_sym__whitespace_token1, - ACTIONS(4881), 1, + [10834] = 9, + ACTIONS(5854), 1, sym__shortcode_open, - ACTIONS(4883), 1, + ACTIONS(5860), 1, sym_shortcode_name, - ACTIONS(4885), 1, + ACTIONS(5862), 1, sym_shortcode_number, - STATE(1349), 1, - sym__whitespace, - ACTIONS(4869), 2, + ACTIONS(5868), 1, + sym__shortcode_close, + STATE(2245), 1, + sym_shortcode_keyword_param, + ACTIONS(5842), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - ACTIONS(4871), 2, + ACTIONS(5844), 2, aux_sym_shortcode_string_token1, aux_sym_shortcode_string_token2, - ACTIONS(4875), 2, + ACTIONS(5848), 2, anon_sym_true, anon_sym_false, - STATE(1909), 5, + STATE(2256), 5, sym_shortcode, sym__shortcode_value, sym_shortcode_naked_string, sym_shortcode_string, sym_shortcode_boolean, - [57680] = 9, - ACTIONS(4881), 1, + [10869] = 9, + ACTIONS(5854), 1, sym__shortcode_open, - ACTIONS(4887), 1, + ACTIONS(5860), 1, sym_shortcode_name, - ACTIONS(4889), 1, + ACTIONS(5862), 1, sym_shortcode_number, - ACTIONS(4891), 1, + ACTIONS(5870), 1, sym__shortcode_close, - STATE(1918), 1, + STATE(2245), 1, sym_shortcode_keyword_param, - ACTIONS(4869), 2, + ACTIONS(5842), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - ACTIONS(4871), 2, + ACTIONS(5844), 2, aux_sym_shortcode_string_token1, aux_sym_shortcode_string_token2, - ACTIONS(4875), 2, + ACTIONS(5848), 2, anon_sym_true, anon_sym_false, - STATE(1915), 5, + STATE(2256), 5, sym_shortcode, sym__shortcode_value, sym_shortcode_naked_string, sym_shortcode_string, sym_shortcode_boolean, - [57715] = 9, - ACTIONS(4881), 1, + [10904] = 9, + ACTIONS(5854), 1, sym__shortcode_open, - ACTIONS(4887), 1, + ACTIONS(5860), 1, sym_shortcode_name, - ACTIONS(4889), 1, + ACTIONS(5862), 1, sym_shortcode_number, - ACTIONS(4893), 1, - sym__shortcode_close, - STATE(1918), 1, + ACTIONS(5872), 1, + sym__shortcode_close_escaped, + STATE(2245), 1, sym_shortcode_keyword_param, - ACTIONS(4869), 2, + ACTIONS(5842), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - ACTIONS(4871), 2, + ACTIONS(5844), 2, aux_sym_shortcode_string_token1, aux_sym_shortcode_string_token2, - ACTIONS(4875), 2, + ACTIONS(5848), 2, anon_sym_true, anon_sym_false, - STATE(1915), 5, + STATE(2256), 5, sym_shortcode, sym__shortcode_value, sym_shortcode_naked_string, sym_shortcode_string, sym_shortcode_boolean, - [57750] = 9, - ACTIONS(4881), 1, + [10939] = 9, + ACTIONS(5854), 1, sym__shortcode_open, - ACTIONS(4887), 1, + ACTIONS(5860), 1, sym_shortcode_name, - ACTIONS(4889), 1, + ACTIONS(5862), 1, sym_shortcode_number, - ACTIONS(4895), 1, + ACTIONS(5874), 1, sym__shortcode_close_escaped, - STATE(1918), 1, + STATE(2245), 1, sym_shortcode_keyword_param, - ACTIONS(4869), 2, + ACTIONS(5842), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - ACTIONS(4871), 2, + ACTIONS(5844), 2, aux_sym_shortcode_string_token1, aux_sym_shortcode_string_token2, - ACTIONS(4875), 2, + ACTIONS(5848), 2, anon_sym_true, anon_sym_false, - STATE(1915), 5, + STATE(2256), 5, sym_shortcode, sym__shortcode_value, sym_shortcode_naked_string, sym_shortcode_string, sym_shortcode_boolean, - [57785] = 9, - ACTIONS(4881), 1, + [10974] = 9, + ACTIONS(5854), 1, sym__shortcode_open, - ACTIONS(4887), 1, + ACTIONS(5860), 1, sym_shortcode_name, - ACTIONS(4889), 1, + ACTIONS(5862), 1, sym_shortcode_number, - ACTIONS(4897), 1, + ACTIONS(5876), 1, sym__shortcode_close, - STATE(1918), 1, + STATE(2245), 1, sym_shortcode_keyword_param, - ACTIONS(4869), 2, + ACTIONS(5842), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - ACTIONS(4871), 2, + ACTIONS(5844), 2, aux_sym_shortcode_string_token1, aux_sym_shortcode_string_token2, - ACTIONS(4875), 2, + ACTIONS(5848), 2, anon_sym_true, anon_sym_false, - STATE(1915), 5, + STATE(2256), 5, sym_shortcode, sym__shortcode_value, sym_shortcode_naked_string, sym_shortcode_string, sym_shortcode_boolean, - [57820] = 9, - ACTIONS(4881), 1, + [11009] = 9, + ACTIONS(5854), 1, sym__shortcode_open, - ACTIONS(4887), 1, + ACTIONS(5860), 1, sym_shortcode_name, - ACTIONS(4889), 1, + ACTIONS(5862), 1, sym_shortcode_number, - ACTIONS(4899), 1, - sym__shortcode_close_escaped, - STATE(1918), 1, + ACTIONS(5878), 1, + sym__shortcode_close, + STATE(2245), 1, sym_shortcode_keyword_param, - ACTIONS(4869), 2, + ACTIONS(5842), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - ACTIONS(4871), 2, + ACTIONS(5844), 2, aux_sym_shortcode_string_token1, aux_sym_shortcode_string_token2, - ACTIONS(4875), 2, + ACTIONS(5848), 2, anon_sym_true, anon_sym_false, - STATE(1915), 5, + STATE(2256), 5, sym_shortcode, sym__shortcode_value, sym_shortcode_naked_string, sym_shortcode_string, sym_shortcode_boolean, - [57855] = 9, - ACTIONS(4881), 1, + [11044] = 9, + ACTIONS(5854), 1, sym__shortcode_open, - ACTIONS(4887), 1, + ACTIONS(5860), 1, sym_shortcode_name, - ACTIONS(4889), 1, + ACTIONS(5862), 1, sym_shortcode_number, - ACTIONS(4901), 1, + ACTIONS(5880), 1, sym__shortcode_close_escaped, - STATE(1918), 1, + STATE(2245), 1, sym_shortcode_keyword_param, - ACTIONS(4869), 2, + ACTIONS(5842), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - ACTIONS(4871), 2, + ACTIONS(5844), 2, aux_sym_shortcode_string_token1, aux_sym_shortcode_string_token2, - ACTIONS(4875), 2, + ACTIONS(5848), 2, anon_sym_true, anon_sym_false, - STATE(1915), 5, + STATE(2256), 5, sym_shortcode, sym__shortcode_value, sym_shortcode_naked_string, sym_shortcode_string, sym_shortcode_boolean, - [57890] = 9, - ACTIONS(4881), 1, + [11079] = 9, + ACTIONS(5854), 1, sym__shortcode_open, - ACTIONS(4887), 1, + ACTIONS(5860), 1, sym_shortcode_name, - ACTIONS(4889), 1, + ACTIONS(5862), 1, sym_shortcode_number, - ACTIONS(4903), 1, + ACTIONS(5882), 1, sym__shortcode_close, - STATE(1918), 1, + STATE(2245), 1, sym_shortcode_keyword_param, - ACTIONS(4869), 2, + ACTIONS(5842), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - ACTIONS(4871), 2, + ACTIONS(5844), 2, aux_sym_shortcode_string_token1, aux_sym_shortcode_string_token2, - ACTIONS(4875), 2, + ACTIONS(5848), 2, anon_sym_true, anon_sym_false, - STATE(1915), 5, + STATE(2256), 5, sym_shortcode, sym__shortcode_value, sym_shortcode_naked_string, sym_shortcode_string, sym_shortcode_boolean, - [57925] = 9, - ACTIONS(4881), 1, + [11114] = 9, + ACTIONS(5854), 1, sym__shortcode_open, - ACTIONS(4887), 1, + ACTIONS(5860), 1, sym_shortcode_name, - ACTIONS(4889), 1, + ACTIONS(5862), 1, sym_shortcode_number, - ACTIONS(4905), 1, - sym__shortcode_close_escaped, - STATE(1918), 1, + ACTIONS(5884), 1, + sym__shortcode_close, + STATE(2245), 1, sym_shortcode_keyword_param, - ACTIONS(4869), 2, + ACTIONS(5842), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - ACTIONS(4871), 2, + ACTIONS(5844), 2, aux_sym_shortcode_string_token1, aux_sym_shortcode_string_token2, - ACTIONS(4875), 2, + ACTIONS(5848), 2, anon_sym_true, anon_sym_false, - STATE(1915), 5, + STATE(2256), 5, sym_shortcode, sym__shortcode_value, sym_shortcode_naked_string, sym_shortcode_string, sym_shortcode_boolean, - [57960] = 9, - ACTIONS(4881), 1, + [11149] = 9, + ACTIONS(5854), 1, sym__shortcode_open, - ACTIONS(4887), 1, + ACTIONS(5860), 1, sym_shortcode_name, - ACTIONS(4889), 1, + ACTIONS(5862), 1, sym_shortcode_number, - ACTIONS(4907), 1, - sym__shortcode_close, - STATE(1918), 1, + ACTIONS(5886), 1, + sym__shortcode_close_escaped, + STATE(2245), 1, sym_shortcode_keyword_param, - ACTIONS(4869), 2, + ACTIONS(5842), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - ACTIONS(4871), 2, + ACTIONS(5844), 2, aux_sym_shortcode_string_token1, aux_sym_shortcode_string_token2, - ACTIONS(4875), 2, + ACTIONS(5848), 2, anon_sym_true, anon_sym_false, - STATE(1915), 5, + STATE(2256), 5, sym_shortcode, sym__shortcode_value, sym_shortcode_naked_string, sym_shortcode_string, sym_shortcode_boolean, - [57995] = 9, - ACTIONS(4881), 1, + [11184] = 9, + ACTIONS(5854), 1, sym__shortcode_open, - ACTIONS(4887), 1, + ACTIONS(5860), 1, sym_shortcode_name, - ACTIONS(4889), 1, + ACTIONS(5862), 1, sym_shortcode_number, - ACTIONS(4909), 1, + ACTIONS(5888), 1, sym__shortcode_close_escaped, - STATE(1918), 1, + STATE(2245), 1, sym_shortcode_keyword_param, - ACTIONS(4869), 2, + ACTIONS(5842), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - ACTIONS(4871), 2, + ACTIONS(5844), 2, aux_sym_shortcode_string_token1, aux_sym_shortcode_string_token2, - ACTIONS(4875), 2, + ACTIONS(5848), 2, anon_sym_true, anon_sym_false, - STATE(1915), 5, + STATE(2256), 5, sym_shortcode, sym__shortcode_value, sym_shortcode_naked_string, sym_shortcode_string, sym_shortcode_boolean, - [58030] = 9, - ACTIONS(4881), 1, + [11219] = 9, + ACTIONS(5854), 1, sym__shortcode_open, - ACTIONS(4887), 1, + ACTIONS(5860), 1, sym_shortcode_name, - ACTIONS(4889), 1, + ACTIONS(5862), 1, sym_shortcode_number, - ACTIONS(4911), 1, - sym__shortcode_close_escaped, - STATE(1918), 1, + ACTIONS(5890), 1, + sym__shortcode_close, + STATE(2245), 1, sym_shortcode_keyword_param, - ACTIONS(4869), 2, + ACTIONS(5842), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - ACTIONS(4871), 2, + ACTIONS(5844), 2, aux_sym_shortcode_string_token1, aux_sym_shortcode_string_token2, - ACTIONS(4875), 2, + ACTIONS(5848), 2, anon_sym_true, anon_sym_false, - STATE(1915), 5, + STATE(2256), 5, sym_shortcode, sym__shortcode_value, sym_shortcode_naked_string, sym_shortcode_string, sym_shortcode_boolean, - [58065] = 9, - ACTIONS(4881), 1, + [11254] = 9, + ACTIONS(5854), 1, sym__shortcode_open, - ACTIONS(4887), 1, + ACTIONS(5860), 1, sym_shortcode_name, - ACTIONS(4889), 1, + ACTIONS(5862), 1, sym_shortcode_number, - ACTIONS(4913), 1, - sym__shortcode_close_escaped, - STATE(1918), 1, + ACTIONS(5892), 1, + sym__shortcode_close, + STATE(2245), 1, sym_shortcode_keyword_param, - ACTIONS(4869), 2, + ACTIONS(5842), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - ACTIONS(4871), 2, + ACTIONS(5844), 2, aux_sym_shortcode_string_token1, aux_sym_shortcode_string_token2, - ACTIONS(4875), 2, + ACTIONS(5848), 2, anon_sym_true, anon_sym_false, - STATE(1915), 5, + STATE(2256), 5, sym_shortcode, sym__shortcode_value, sym_shortcode_naked_string, sym_shortcode_string, sym_shortcode_boolean, - [58100] = 9, - ACTIONS(4881), 1, + [11289] = 9, + ACTIONS(5854), 1, sym__shortcode_open, - ACTIONS(4887), 1, + ACTIONS(5860), 1, sym_shortcode_name, - ACTIONS(4889), 1, + ACTIONS(5862), 1, sym_shortcode_number, - ACTIONS(4915), 1, - sym__shortcode_close, - STATE(1918), 1, + ACTIONS(5894), 1, + sym__shortcode_close_escaped, + STATE(2245), 1, sym_shortcode_keyword_param, - ACTIONS(4869), 2, + ACTIONS(5842), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - ACTIONS(4871), 2, + ACTIONS(5844), 2, aux_sym_shortcode_string_token1, aux_sym_shortcode_string_token2, - ACTIONS(4875), 2, + ACTIONS(5848), 2, anon_sym_true, anon_sym_false, - STATE(1915), 5, + STATE(2256), 5, sym_shortcode, sym__shortcode_value, sym_shortcode_naked_string, sym_shortcode_string, sym_shortcode_boolean, - [58135] = 9, - ACTIONS(4881), 1, + [11324] = 9, + ACTIONS(5854), 1, sym__shortcode_open, - ACTIONS(4887), 1, + ACTIONS(5860), 1, sym_shortcode_name, - ACTIONS(4889), 1, + ACTIONS(5862), 1, sym_shortcode_number, - ACTIONS(4917), 1, - sym__shortcode_close, - STATE(1918), 1, + ACTIONS(5896), 1, + sym__shortcode_close_escaped, + STATE(2245), 1, sym_shortcode_keyword_param, - ACTIONS(4869), 2, + ACTIONS(5842), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - ACTIONS(4871), 2, + ACTIONS(5844), 2, aux_sym_shortcode_string_token1, aux_sym_shortcode_string_token2, - ACTIONS(4875), 2, + ACTIONS(5848), 2, anon_sym_true, anon_sym_false, - STATE(1915), 5, + STATE(2256), 5, sym_shortcode, sym__shortcode_value, sym_shortcode_naked_string, sym_shortcode_string, sym_shortcode_boolean, - [58170] = 9, - ACTIONS(4881), 1, + [11359] = 9, + ACTIONS(5854), 1, sym__shortcode_open, - ACTIONS(4887), 1, + ACTIONS(5860), 1, sym_shortcode_name, - ACTIONS(4889), 1, + ACTIONS(5862), 1, sym_shortcode_number, - ACTIONS(4919), 1, - sym__shortcode_close_escaped, - STATE(1918), 1, + ACTIONS(5898), 1, + sym__shortcode_close, + STATE(2245), 1, sym_shortcode_keyword_param, - ACTIONS(4869), 2, + ACTIONS(5842), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - ACTIONS(4871), 2, + ACTIONS(5844), 2, aux_sym_shortcode_string_token1, aux_sym_shortcode_string_token2, - ACTIONS(4875), 2, + ACTIONS(5848), 2, anon_sym_true, anon_sym_false, - STATE(1915), 5, + STATE(2256), 5, sym_shortcode, sym__shortcode_value, sym_shortcode_naked_string, sym_shortcode_string, sym_shortcode_boolean, - [58205] = 9, - ACTIONS(4881), 1, + [11394] = 9, + ACTIONS(5854), 1, sym__shortcode_open, - ACTIONS(4887), 1, + ACTIONS(5860), 1, sym_shortcode_name, - ACTIONS(4889), 1, + ACTIONS(5862), 1, sym_shortcode_number, - ACTIONS(4921), 1, + ACTIONS(5900), 1, sym__shortcode_close_escaped, - STATE(1918), 1, + STATE(2245), 1, sym_shortcode_keyword_param, - ACTIONS(4869), 2, + ACTIONS(5842), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - ACTIONS(4871), 2, + ACTIONS(5844), 2, aux_sym_shortcode_string_token1, aux_sym_shortcode_string_token2, - ACTIONS(4875), 2, + ACTIONS(5848), 2, anon_sym_true, anon_sym_false, - STATE(1915), 5, + STATE(2256), 5, sym_shortcode, sym__shortcode_value, sym_shortcode_naked_string, sym_shortcode_string, sym_shortcode_boolean, - [58240] = 9, - ACTIONS(4881), 1, + [11429] = 9, + ACTIONS(5854), 1, sym__shortcode_open, - ACTIONS(4887), 1, + ACTIONS(5860), 1, sym_shortcode_name, - ACTIONS(4889), 1, + ACTIONS(5862), 1, sym_shortcode_number, - ACTIONS(4923), 1, + ACTIONS(5902), 1, sym__shortcode_close, - STATE(1918), 1, + STATE(2245), 1, sym_shortcode_keyword_param, - ACTIONS(4869), 2, + ACTIONS(5842), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - ACTIONS(4871), 2, + ACTIONS(5844), 2, aux_sym_shortcode_string_token1, aux_sym_shortcode_string_token2, - ACTIONS(4875), 2, + ACTIONS(5848), 2, anon_sym_true, anon_sym_false, - STATE(1915), 5, + STATE(2256), 5, sym_shortcode, sym__shortcode_value, sym_shortcode_naked_string, sym_shortcode_string, sym_shortcode_boolean, - [58275] = 9, - ACTIONS(4881), 1, + [11464] = 9, + ACTIONS(5854), 1, sym__shortcode_open, - ACTIONS(4887), 1, + ACTIONS(5860), 1, sym_shortcode_name, - ACTIONS(4889), 1, + ACTIONS(5862), 1, sym_shortcode_number, - ACTIONS(4925), 1, - sym__shortcode_close, - STATE(1918), 1, + ACTIONS(5904), 1, + sym__shortcode_close_escaped, + STATE(2245), 1, sym_shortcode_keyword_param, - ACTIONS(4869), 2, + ACTIONS(5842), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - ACTIONS(4871), 2, + ACTIONS(5844), 2, aux_sym_shortcode_string_token1, aux_sym_shortcode_string_token2, - ACTIONS(4875), 2, + ACTIONS(5848), 2, anon_sym_true, anon_sym_false, - STATE(1915), 5, + STATE(2256), 5, sym_shortcode, sym__shortcode_value, sym_shortcode_naked_string, sym_shortcode_string, sym_shortcode_boolean, - [58310] = 9, - ACTIONS(4881), 1, + [11499] = 9, + ACTIONS(5854), 1, sym__shortcode_open, - ACTIONS(4887), 1, + ACTIONS(5860), 1, sym_shortcode_name, - ACTIONS(4889), 1, + ACTIONS(5862), 1, sym_shortcode_number, - ACTIONS(4927), 1, + ACTIONS(5906), 1, sym__shortcode_close_escaped, - STATE(1918), 1, + STATE(2245), 1, sym_shortcode_keyword_param, - ACTIONS(4869), 2, + ACTIONS(5842), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - ACTIONS(4871), 2, + ACTIONS(5844), 2, aux_sym_shortcode_string_token1, aux_sym_shortcode_string_token2, - ACTIONS(4875), 2, + ACTIONS(5848), 2, anon_sym_true, anon_sym_false, - STATE(1915), 5, + STATE(2256), 5, sym_shortcode, sym__shortcode_value, sym_shortcode_naked_string, sym_shortcode_string, sym_shortcode_boolean, - [58345] = 9, - ACTIONS(4881), 1, + [11534] = 9, + ACTIONS(5854), 1, sym__shortcode_open, - ACTIONS(4887), 1, + ACTIONS(5860), 1, sym_shortcode_name, - ACTIONS(4889), 1, + ACTIONS(5862), 1, sym_shortcode_number, - ACTIONS(4929), 1, + ACTIONS(5908), 1, sym__shortcode_close, - STATE(1918), 1, + STATE(2245), 1, sym_shortcode_keyword_param, - ACTIONS(4869), 2, + ACTIONS(5842), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - ACTIONS(4871), 2, + ACTIONS(5844), 2, aux_sym_shortcode_string_token1, aux_sym_shortcode_string_token2, - ACTIONS(4875), 2, + ACTIONS(5848), 2, anon_sym_true, anon_sym_false, - STATE(1915), 5, + STATE(2256), 5, sym_shortcode, sym__shortcode_value, sym_shortcode_naked_string, sym_shortcode_string, sym_shortcode_boolean, - [58380] = 9, - ACTIONS(4881), 1, + [11569] = 9, + ACTIONS(5854), 1, sym__shortcode_open, - ACTIONS(4887), 1, + ACTIONS(5860), 1, sym_shortcode_name, - ACTIONS(4889), 1, + ACTIONS(5862), 1, sym_shortcode_number, - ACTIONS(4931), 1, + ACTIONS(5910), 1, sym__shortcode_close_escaped, - STATE(1918), 1, + STATE(2245), 1, sym_shortcode_keyword_param, - ACTIONS(4869), 2, + ACTIONS(5842), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - ACTIONS(4871), 2, + ACTIONS(5844), 2, aux_sym_shortcode_string_token1, aux_sym_shortcode_string_token2, - ACTIONS(4875), 2, + ACTIONS(5848), 2, anon_sym_true, anon_sym_false, - STATE(1915), 5, + STATE(2256), 5, sym_shortcode, sym__shortcode_value, sym_shortcode_naked_string, sym_shortcode_string, sym_shortcode_boolean, - [58415] = 9, - ACTIONS(4881), 1, + [11604] = 9, + ACTIONS(5854), 1, sym__shortcode_open, - ACTIONS(4887), 1, + ACTIONS(5860), 1, sym_shortcode_name, - ACTIONS(4889), 1, + ACTIONS(5862), 1, sym_shortcode_number, - ACTIONS(4933), 1, + ACTIONS(5912), 1, sym__shortcode_close, - STATE(1918), 1, + STATE(2245), 1, sym_shortcode_keyword_param, - ACTIONS(4869), 2, + ACTIONS(5842), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - ACTIONS(4871), 2, + ACTIONS(5844), 2, aux_sym_shortcode_string_token1, aux_sym_shortcode_string_token2, - ACTIONS(4875), 2, + ACTIONS(5848), 2, anon_sym_true, anon_sym_false, - STATE(1915), 5, + STATE(2256), 5, sym_shortcode, sym__shortcode_value, sym_shortcode_naked_string, sym_shortcode_string, sym_shortcode_boolean, - [58450] = 9, - ACTIONS(4881), 1, + [11639] = 9, + ACTIONS(5854), 1, sym__shortcode_open, - ACTIONS(4887), 1, + ACTIONS(5860), 1, sym_shortcode_name, - ACTIONS(4889), 1, + ACTIONS(5862), 1, sym_shortcode_number, - ACTIONS(4935), 1, + ACTIONS(5914), 1, sym__shortcode_close, - STATE(1918), 1, + STATE(2245), 1, sym_shortcode_keyword_param, - ACTIONS(4869), 2, + ACTIONS(5842), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - ACTIONS(4871), 2, + ACTIONS(5844), 2, aux_sym_shortcode_string_token1, aux_sym_shortcode_string_token2, - ACTIONS(4875), 2, + ACTIONS(5848), 2, anon_sym_true, anon_sym_false, - STATE(1915), 5, + STATE(2256), 5, sym_shortcode, sym__shortcode_value, sym_shortcode_naked_string, sym_shortcode_string, sym_shortcode_boolean, - [58485] = 9, - ACTIONS(4881), 1, + [11674] = 9, + ACTIONS(5854), 1, sym__shortcode_open, - ACTIONS(4887), 1, + ACTIONS(5860), 1, sym_shortcode_name, - ACTIONS(4889), 1, + ACTIONS(5862), 1, sym_shortcode_number, - ACTIONS(4937), 1, + ACTIONS(5916), 1, sym__shortcode_close_escaped, - STATE(1918), 1, + STATE(2245), 1, sym_shortcode_keyword_param, - ACTIONS(4869), 2, + ACTIONS(5842), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - ACTIONS(4871), 2, + ACTIONS(5844), 2, aux_sym_shortcode_string_token1, aux_sym_shortcode_string_token2, - ACTIONS(4875), 2, + ACTIONS(5848), 2, anon_sym_true, anon_sym_false, - STATE(1915), 5, + STATE(2256), 5, sym_shortcode, sym__shortcode_value, sym_shortcode_naked_string, sym_shortcode_string, sym_shortcode_boolean, - [58520] = 9, - ACTIONS(4881), 1, + [11709] = 9, + ACTIONS(5854), 1, sym__shortcode_open, - ACTIONS(4887), 1, + ACTIONS(5860), 1, sym_shortcode_name, - ACTIONS(4889), 1, + ACTIONS(5862), 1, sym_shortcode_number, - ACTIONS(4939), 1, + ACTIONS(5918), 1, sym__shortcode_close, - STATE(1918), 1, + STATE(2245), 1, sym_shortcode_keyword_param, - ACTIONS(4869), 2, + ACTIONS(5842), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - ACTIONS(4871), 2, + ACTIONS(5844), 2, aux_sym_shortcode_string_token1, aux_sym_shortcode_string_token2, - ACTIONS(4875), 2, + ACTIONS(5848), 2, anon_sym_true, anon_sym_false, - STATE(1915), 5, + STATE(2256), 5, sym_shortcode, sym__shortcode_value, sym_shortcode_naked_string, sym_shortcode_string, sym_shortcode_boolean, - [58555] = 9, - ACTIONS(4881), 1, + [11744] = 9, + ACTIONS(5854), 1, sym__shortcode_open, - ACTIONS(4887), 1, + ACTIONS(5860), 1, sym_shortcode_name, - ACTIONS(4889), 1, + ACTIONS(5862), 1, sym_shortcode_number, - ACTIONS(4941), 1, + ACTIONS(5920), 1, sym__shortcode_close_escaped, - STATE(1918), 1, + STATE(2245), 1, sym_shortcode_keyword_param, - ACTIONS(4869), 2, + ACTIONS(5842), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - ACTIONS(4871), 2, + ACTIONS(5844), 2, aux_sym_shortcode_string_token1, aux_sym_shortcode_string_token2, - ACTIONS(4875), 2, + ACTIONS(5848), 2, anon_sym_true, anon_sym_false, - STATE(1915), 5, + STATE(2256), 5, sym_shortcode, sym__shortcode_value, sym_shortcode_naked_string, sym_shortcode_string, sym_shortcode_boolean, - [58590] = 9, - ACTIONS(4881), 1, + [11779] = 9, + ACTIONS(5854), 1, sym__shortcode_open, - ACTIONS(4887), 1, + ACTIONS(5860), 1, sym_shortcode_name, - ACTIONS(4889), 1, + ACTIONS(5862), 1, sym_shortcode_number, - ACTIONS(4943), 1, + ACTIONS(5922), 1, sym__shortcode_close_escaped, - STATE(1918), 1, + STATE(2245), 1, sym_shortcode_keyword_param, - ACTIONS(4869), 2, + ACTIONS(5842), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - ACTIONS(4871), 2, + ACTIONS(5844), 2, aux_sym_shortcode_string_token1, aux_sym_shortcode_string_token2, - ACTIONS(4875), 2, + ACTIONS(5848), 2, anon_sym_true, anon_sym_false, - STATE(1915), 5, + STATE(2256), 5, sym_shortcode, sym__shortcode_value, sym_shortcode_naked_string, sym_shortcode_string, sym_shortcode_boolean, - [58625] = 9, - ACTIONS(4881), 1, + [11814] = 9, + ACTIONS(5854), 1, sym__shortcode_open, - ACTIONS(4887), 1, + ACTIONS(5860), 1, sym_shortcode_name, - ACTIONS(4889), 1, + ACTIONS(5862), 1, sym_shortcode_number, - ACTIONS(4945), 1, + ACTIONS(5924), 1, sym__shortcode_close_escaped, - STATE(1918), 1, + STATE(2245), 1, sym_shortcode_keyword_param, - ACTIONS(4869), 2, + ACTIONS(5842), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - ACTIONS(4871), 2, + ACTIONS(5844), 2, aux_sym_shortcode_string_token1, aux_sym_shortcode_string_token2, - ACTIONS(4875), 2, + ACTIONS(5848), 2, anon_sym_true, anon_sym_false, - STATE(1915), 5, + STATE(2256), 5, sym_shortcode, sym__shortcode_value, sym_shortcode_naked_string, sym_shortcode_string, sym_shortcode_boolean, - [58660] = 9, - ACTIONS(4881), 1, + [11849] = 9, + ACTIONS(5854), 1, sym__shortcode_open, - ACTIONS(4887), 1, + ACTIONS(5860), 1, sym_shortcode_name, - ACTIONS(4889), 1, + ACTIONS(5862), 1, sym_shortcode_number, - ACTIONS(4947), 1, + ACTIONS(5926), 1, sym__shortcode_close, - STATE(1918), 1, + STATE(2245), 1, sym_shortcode_keyword_param, - ACTIONS(4869), 2, + ACTIONS(5842), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - ACTIONS(4871), 2, + ACTIONS(5844), 2, aux_sym_shortcode_string_token1, aux_sym_shortcode_string_token2, - ACTIONS(4875), 2, + ACTIONS(5848), 2, anon_sym_true, anon_sym_false, - STATE(1915), 5, + STATE(2256), 5, sym_shortcode, sym__shortcode_value, sym_shortcode_naked_string, sym_shortcode_string, sym_shortcode_boolean, - [58695] = 9, - ACTIONS(4881), 1, + [11884] = 9, + ACTIONS(5854), 1, sym__shortcode_open, - ACTIONS(4887), 1, + ACTIONS(5860), 1, sym_shortcode_name, - ACTIONS(4889), 1, + ACTIONS(5862), 1, sym_shortcode_number, - ACTIONS(4949), 1, - sym__shortcode_close, - STATE(1918), 1, + ACTIONS(5928), 1, + sym__shortcode_close_escaped, + STATE(2245), 1, sym_shortcode_keyword_param, - ACTIONS(4869), 2, + ACTIONS(5842), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - ACTIONS(4871), 2, + ACTIONS(5844), 2, aux_sym_shortcode_string_token1, aux_sym_shortcode_string_token2, - ACTIONS(4875), 2, + ACTIONS(5848), 2, anon_sym_true, anon_sym_false, - STATE(1915), 5, + STATE(2256), 5, sym_shortcode, sym__shortcode_value, sym_shortcode_naked_string, sym_shortcode_string, sym_shortcode_boolean, - [58730] = 9, - ACTIONS(4881), 1, + [11919] = 9, + ACTIONS(5854), 1, sym__shortcode_open, - ACTIONS(4887), 1, + ACTIONS(5860), 1, sym_shortcode_name, - ACTIONS(4889), 1, + ACTIONS(5862), 1, sym_shortcode_number, - ACTIONS(4951), 1, - sym__shortcode_close_escaped, - STATE(1918), 1, + ACTIONS(5930), 1, + sym__shortcode_close, + STATE(2245), 1, sym_shortcode_keyword_param, - ACTIONS(4869), 2, + ACTIONS(5842), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - ACTIONS(4871), 2, + ACTIONS(5844), 2, aux_sym_shortcode_string_token1, aux_sym_shortcode_string_token2, - ACTIONS(4875), 2, + ACTIONS(5848), 2, anon_sym_true, anon_sym_false, - STATE(1915), 5, + STATE(2256), 5, sym_shortcode, sym__shortcode_value, sym_shortcode_naked_string, sym_shortcode_string, sym_shortcode_boolean, - [58765] = 9, - ACTIONS(4881), 1, + [11954] = 9, + ACTIONS(5854), 1, sym__shortcode_open, - ACTIONS(4887), 1, + ACTIONS(5860), 1, sym_shortcode_name, - ACTIONS(4889), 1, + ACTIONS(5862), 1, sym_shortcode_number, - ACTIONS(4953), 1, + ACTIONS(5932), 1, sym__shortcode_close, - STATE(1918), 1, + STATE(2245), 1, sym_shortcode_keyword_param, - ACTIONS(4869), 2, + ACTIONS(5842), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - ACTIONS(4871), 2, + ACTIONS(5844), 2, aux_sym_shortcode_string_token1, aux_sym_shortcode_string_token2, - ACTIONS(4875), 2, + ACTIONS(5848), 2, anon_sym_true, anon_sym_false, - STATE(1915), 5, + STATE(2256), 5, sym_shortcode, sym__shortcode_value, sym_shortcode_naked_string, sym_shortcode_string, sym_shortcode_boolean, - [58800] = 9, - ACTIONS(4881), 1, + [11989] = 9, + ACTIONS(5854), 1, sym__shortcode_open, - ACTIONS(4887), 1, + ACTIONS(5860), 1, sym_shortcode_name, - ACTIONS(4889), 1, + ACTIONS(5862), 1, sym_shortcode_number, - ACTIONS(4955), 1, + ACTIONS(5934), 1, sym__shortcode_close, - STATE(1918), 1, + STATE(2245), 1, sym_shortcode_keyword_param, - ACTIONS(4869), 2, + ACTIONS(5842), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - ACTIONS(4871), 2, + ACTIONS(5844), 2, aux_sym_shortcode_string_token1, aux_sym_shortcode_string_token2, - ACTIONS(4875), 2, + ACTIONS(5848), 2, anon_sym_true, anon_sym_false, - STATE(1915), 5, + STATE(2256), 5, sym_shortcode, sym__shortcode_value, sym_shortcode_naked_string, sym_shortcode_string, sym_shortcode_boolean, - [58835] = 9, - ACTIONS(4881), 1, + [12024] = 9, + ACTIONS(5854), 1, sym__shortcode_open, - ACTIONS(4887), 1, + ACTIONS(5860), 1, sym_shortcode_name, - ACTIONS(4889), 1, + ACTIONS(5862), 1, sym_shortcode_number, - ACTIONS(4957), 1, + ACTIONS(5936), 1, sym__shortcode_close, - STATE(1918), 1, + STATE(2245), 1, sym_shortcode_keyword_param, - ACTIONS(4869), 2, + ACTIONS(5842), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - ACTIONS(4871), 2, + ACTIONS(5844), 2, aux_sym_shortcode_string_token1, aux_sym_shortcode_string_token2, - ACTIONS(4875), 2, + ACTIONS(5848), 2, anon_sym_true, anon_sym_false, - STATE(1915), 5, + STATE(2256), 5, sym_shortcode, sym__shortcode_value, sym_shortcode_naked_string, sym_shortcode_string, sym_shortcode_boolean, - [58870] = 9, - ACTIONS(4881), 1, + [12059] = 9, + ACTIONS(5854), 1, sym__shortcode_open, - ACTIONS(4887), 1, + ACTIONS(5860), 1, sym_shortcode_name, - ACTIONS(4889), 1, + ACTIONS(5862), 1, sym_shortcode_number, - ACTIONS(4959), 1, + ACTIONS(5938), 1, sym__shortcode_close_escaped, - STATE(1918), 1, + STATE(2245), 1, sym_shortcode_keyword_param, - ACTIONS(4869), 2, + ACTIONS(5842), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - ACTIONS(4871), 2, + ACTIONS(5844), 2, aux_sym_shortcode_string_token1, aux_sym_shortcode_string_token2, - ACTIONS(4875), 2, + ACTIONS(5848), 2, anon_sym_true, anon_sym_false, - STATE(1915), 5, + STATE(2256), 5, sym_shortcode, sym__shortcode_value, sym_shortcode_naked_string, sym_shortcode_string, sym_shortcode_boolean, - [58905] = 9, - ACTIONS(4881), 1, + [12094] = 9, + ACTIONS(5854), 1, sym__shortcode_open, - ACTIONS(4887), 1, + ACTIONS(5860), 1, sym_shortcode_name, - ACTIONS(4889), 1, + ACTIONS(5862), 1, sym_shortcode_number, - ACTIONS(4961), 1, - sym__shortcode_close, - STATE(1918), 1, + ACTIONS(5940), 1, + sym__shortcode_close_escaped, + STATE(2245), 1, sym_shortcode_keyword_param, - ACTIONS(4869), 2, + ACTIONS(5842), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - ACTIONS(4871), 2, + ACTIONS(5844), 2, aux_sym_shortcode_string_token1, aux_sym_shortcode_string_token2, - ACTIONS(4875), 2, + ACTIONS(5848), 2, anon_sym_true, anon_sym_false, - STATE(1915), 5, + STATE(2256), 5, sym_shortcode, sym__shortcode_value, sym_shortcode_naked_string, sym_shortcode_string, sym_shortcode_boolean, - [58940] = 9, - ACTIONS(4881), 1, + [12129] = 9, + ACTIONS(5854), 1, sym__shortcode_open, - ACTIONS(4887), 1, + ACTIONS(5860), 1, sym_shortcode_name, - ACTIONS(4889), 1, + ACTIONS(5862), 1, sym_shortcode_number, - ACTIONS(4963), 1, - sym__shortcode_close, - STATE(1918), 1, + ACTIONS(5942), 1, + sym__shortcode_close_escaped, + STATE(2245), 1, sym_shortcode_keyword_param, - ACTIONS(4869), 2, + ACTIONS(5842), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - ACTIONS(4871), 2, + ACTIONS(5844), 2, aux_sym_shortcode_string_token1, aux_sym_shortcode_string_token2, - ACTIONS(4875), 2, + ACTIONS(5848), 2, anon_sym_true, anon_sym_false, - STATE(1915), 5, + STATE(2256), 5, sym_shortcode, sym__shortcode_value, sym_shortcode_naked_string, sym_shortcode_string, sym_shortcode_boolean, - [58975] = 9, - ACTIONS(4881), 1, + [12164] = 9, + ACTIONS(5854), 1, sym__shortcode_open, - ACTIONS(4887), 1, + ACTIONS(5860), 1, sym_shortcode_name, - ACTIONS(4889), 1, + ACTIONS(5862), 1, sym_shortcode_number, - ACTIONS(4965), 1, - sym__shortcode_close_escaped, - STATE(1918), 1, + ACTIONS(5944), 1, + sym__shortcode_close, + STATE(2245), 1, sym_shortcode_keyword_param, - ACTIONS(4869), 2, + ACTIONS(5842), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - ACTIONS(4871), 2, + ACTIONS(5844), 2, aux_sym_shortcode_string_token1, aux_sym_shortcode_string_token2, - ACTIONS(4875), 2, + ACTIONS(5848), 2, anon_sym_true, anon_sym_false, - STATE(1915), 5, + STATE(2256), 5, sym_shortcode, sym__shortcode_value, sym_shortcode_naked_string, sym_shortcode_string, sym_shortcode_boolean, - [59010] = 7, - ACTIONS(4881), 1, + [12199] = 9, + ACTIONS(5854), 1, sym__shortcode_open, - ACTIONS(4889), 1, + ACTIONS(5860), 1, + sym_shortcode_name, + ACTIONS(5862), 1, sym_shortcode_number, - ACTIONS(4967), 1, + ACTIONS(5946), 1, + sym__shortcode_close, + STATE(2245), 1, + sym_shortcode_keyword_param, + ACTIONS(5842), 2, + aux_sym_shortcode_naked_string_token1, + aux_sym_shortcode_naked_string_token2, + ACTIONS(5844), 2, + aux_sym_shortcode_string_token1, + aux_sym_shortcode_string_token2, + ACTIONS(5848), 2, + anon_sym_true, + anon_sym_false, + STATE(2256), 5, + sym_shortcode, + sym__shortcode_value, + sym_shortcode_naked_string, + sym_shortcode_string, + sym_shortcode_boolean, + [12234] = 7, + ACTIONS(5840), 1, sym_shortcode_name, - ACTIONS(4869), 2, + ACTIONS(5846), 1, + sym_shortcode_number, + ACTIONS(5854), 1, + sym__shortcode_open, + ACTIONS(5842), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - ACTIONS(4871), 2, + ACTIONS(5844), 2, aux_sym_shortcode_string_token1, aux_sym_shortcode_string_token2, - ACTIONS(4875), 2, + ACTIONS(5848), 2, anon_sym_true, anon_sym_false, - STATE(1915), 5, + STATE(2273), 5, sym_shortcode, sym__shortcode_value, sym_shortcode_naked_string, sym_shortcode_string, sym_shortcode_boolean, - [59039] = 7, - ACTIONS(4881), 1, + [12263] = 7, + ACTIONS(5854), 1, sym__shortcode_open, - ACTIONS(4969), 1, - sym_shortcode_name, - ACTIONS(4971), 1, + ACTIONS(5862), 1, sym_shortcode_number, - ACTIONS(4869), 2, + ACTIONS(5948), 1, + sym_shortcode_name, + ACTIONS(5842), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - ACTIONS(4871), 2, + ACTIONS(5844), 2, aux_sym_shortcode_string_token1, aux_sym_shortcode_string_token2, - ACTIONS(4875), 2, + ACTIONS(5848), 2, anon_sym_true, anon_sym_false, - STATE(1912), 5, + STATE(2256), 5, sym_shortcode, sym__shortcode_value, sym_shortcode_naked_string, sym_shortcode_string, sym_shortcode_boolean, - [59068] = 7, - ACTIONS(4881), 1, + [12292] = 7, + ACTIONS(5854), 1, sym__shortcode_open, - ACTIONS(4883), 1, + ACTIONS(5950), 1, sym_shortcode_name, - ACTIONS(4885), 1, + ACTIONS(5952), 1, sym_shortcode_number, - ACTIONS(4869), 2, + ACTIONS(5842), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - ACTIONS(4871), 2, + ACTIONS(5844), 2, aux_sym_shortcode_string_token1, aux_sym_shortcode_string_token2, - ACTIONS(4875), 2, + ACTIONS(5848), 2, anon_sym_true, anon_sym_false, - STATE(1909), 5, + STATE(2267), 5, sym_shortcode, sym__shortcode_value, sym_shortcode_naked_string, sym_shortcode_string, sym_shortcode_boolean, - [59097] = 9, - ACTIONS(4241), 1, + [12321] = 9, + ACTIONS(5202), 1, + sym__newline_token, + ACTIONS(5954), 1, + anon_sym_DQUOTE, + ACTIONS(5956), 1, + anon_sym_SQUOTE, + ACTIONS(5958), 1, + anon_sym_LPAREN, + ACTIONS(5960), 1, + anon_sym_RPAREN, + ACTIONS(5962), 1, + sym__whitespace_ge_2, + ACTIONS(5964), 1, + aux_sym__whitespace_token1, + STATE(1894), 1, + sym_link_title, + STATE(1709), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [12351] = 9, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4973), 1, + ACTIONS(5954), 1, anon_sym_DQUOTE, - ACTIONS(4975), 1, + ACTIONS(5956), 1, anon_sym_SQUOTE, - ACTIONS(4977), 1, + ACTIONS(5958), 1, anon_sym_LPAREN, - ACTIONS(4979), 1, + ACTIONS(5962), 1, + sym__whitespace_ge_2, + ACTIONS(5964), 1, + aux_sym__whitespace_token1, + ACTIONS(5966), 1, anon_sym_RPAREN, - ACTIONS(4981), 1, + STATE(1854), 1, + sym_link_title, + STATE(1709), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [12381] = 9, + ACTIONS(5202), 1, + sym__newline_token, + ACTIONS(5954), 1, + anon_sym_DQUOTE, + ACTIONS(5956), 1, + anon_sym_SQUOTE, + ACTIONS(5958), 1, + anon_sym_LPAREN, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - STATE(1656), 1, + ACTIONS(5968), 1, + anon_sym_RPAREN, + STATE(1856), 1, sym_link_title, - STATE(1413), 3, + STATE(1709), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [59127] = 9, - ACTIONS(4241), 1, + [12411] = 11, + ACTIONS(5970), 1, + anon_sym_RBRACE, + ACTIONS(5972), 1, + sym_raw_specifier, + ACTIONS(5974), 1, + sym__commonmark_whitespace, + ACTIONS(5976), 1, + sym_commonmark_name, + ACTIONS(5978), 1, + sym_id_specifier, + ACTIONS(5980), 1, + sym_class_specifier, + ACTIONS(5982), 1, + sym_key_value_key, + STATE(1772), 1, + aux_sym_commonmark_attribute_repeat1, + STATE(1962), 1, + aux_sym_commonmark_attribute_repeat2, + STATE(2092), 1, + aux_sym_commonmark_attribute_repeat3, + STATE(2152), 1, + sym__attribute, + [12445] = 9, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4973), 1, + ACTIONS(5954), 1, anon_sym_DQUOTE, - ACTIONS(4975), 1, + ACTIONS(5956), 1, anon_sym_SQUOTE, - ACTIONS(4977), 1, + ACTIONS(5958), 1, anon_sym_LPAREN, - ACTIONS(4981), 1, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - ACTIONS(4985), 1, + ACTIONS(5984), 1, anon_sym_RPAREN, - STATE(1573), 1, + STATE(1864), 1, sym_link_title, - STATE(1413), 3, + STATE(1709), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [59157] = 9, - ACTIONS(4241), 1, + [12475] = 11, + ACTIONS(5978), 1, + sym_id_specifier, + ACTIONS(5980), 1, + sym_class_specifier, + ACTIONS(5982), 1, + sym_key_value_key, + ACTIONS(5986), 1, + anon_sym_RBRACE, + ACTIONS(5988), 1, + sym_raw_specifier, + ACTIONS(5990), 1, + sym__commonmark_whitespace, + ACTIONS(5992), 1, + sym_commonmark_name, + STATE(1770), 1, + aux_sym_commonmark_attribute_repeat1, + STATE(1830), 1, + aux_sym_commonmark_attribute_repeat2, + STATE(2057), 1, + aux_sym_commonmark_attribute_repeat3, + STATE(2152), 1, + sym__attribute, + [12509] = 11, + ACTIONS(5978), 1, + sym_id_specifier, + ACTIONS(5980), 1, + sym_class_specifier, + ACTIONS(5982), 1, + sym_key_value_key, + ACTIONS(5994), 1, + anon_sym_RBRACE, + ACTIONS(5996), 1, + sym_raw_specifier, + ACTIONS(5998), 1, + sym__commonmark_whitespace, + ACTIONS(6000), 1, + sym_commonmark_name, + STATE(1747), 1, + aux_sym_commonmark_attribute_repeat1, + STATE(1875), 1, + aux_sym_commonmark_attribute_repeat2, + STATE(2093), 1, + aux_sym_commonmark_attribute_repeat3, + STATE(2152), 1, + sym__attribute, + [12543] = 9, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4973), 1, + ACTIONS(5954), 1, anon_sym_DQUOTE, - ACTIONS(4975), 1, + ACTIONS(5956), 1, anon_sym_SQUOTE, - ACTIONS(4977), 1, + ACTIONS(5958), 1, anon_sym_LPAREN, - ACTIONS(4981), 1, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - ACTIONS(4987), 1, + ACTIONS(6002), 1, anon_sym_RPAREN, - STATE(1479), 1, + STATE(1785), 1, sym_link_title, - STATE(1413), 3, + STATE(1709), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [59187] = 9, - ACTIONS(4241), 1, + [12573] = 9, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4973), 1, + ACTIONS(5954), 1, anon_sym_DQUOTE, - ACTIONS(4975), 1, + ACTIONS(5956), 1, anon_sym_SQUOTE, - ACTIONS(4977), 1, + ACTIONS(5958), 1, anon_sym_LPAREN, - ACTIONS(4981), 1, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - ACTIONS(4989), 1, + ACTIONS(6004), 1, anon_sym_RPAREN, - STATE(1580), 1, + STATE(1996), 1, sym_link_title, - STATE(1413), 3, + STATE(1709), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [59217] = 9, - ACTIONS(4241), 1, + [12603] = 9, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4973), 1, + ACTIONS(5954), 1, anon_sym_DQUOTE, - ACTIONS(4975), 1, + ACTIONS(5956), 1, anon_sym_SQUOTE, - ACTIONS(4977), 1, + ACTIONS(5958), 1, anon_sym_LPAREN, - ACTIONS(4981), 1, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - ACTIONS(4991), 1, + ACTIONS(6006), 1, anon_sym_RPAREN, - STATE(1582), 1, + STATE(1897), 1, sym_link_title, - STATE(1413), 3, + STATE(1709), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [59247] = 11, - ACTIONS(4993), 1, + [12633] = 11, + ACTIONS(5978), 1, + sym_id_specifier, + ACTIONS(5980), 1, + sym_class_specifier, + ACTIONS(5982), 1, + sym_key_value_key, + ACTIONS(6008), 1, anon_sym_RBRACE, - ACTIONS(4995), 1, + ACTIONS(6010), 1, sym_raw_specifier, - ACTIONS(4997), 1, + ACTIONS(6012), 1, sym__commonmark_whitespace, - ACTIONS(4999), 1, + ACTIONS(6014), 1, sym_commonmark_name, - ACTIONS(5001), 1, - sym_id_specifier, - ACTIONS(5003), 1, - sym_class_specifier, - ACTIONS(5005), 1, - sym_key_value_key, - STATE(1440), 1, + STATE(1769), 1, aux_sym_commonmark_attribute_repeat1, - STATE(1591), 1, + STATE(1885), 1, aux_sym_commonmark_attribute_repeat2, - STATE(1690), 1, + STATE(2058), 1, aux_sym_commonmark_attribute_repeat3, - STATE(1826), 1, + STATE(2152), 1, sym__attribute, - [59281] = 9, - ACTIONS(4241), 1, + [12667] = 9, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4973), 1, + ACTIONS(5954), 1, anon_sym_DQUOTE, - ACTIONS(4975), 1, + ACTIONS(5956), 1, anon_sym_SQUOTE, - ACTIONS(4977), 1, + ACTIONS(5958), 1, anon_sym_LPAREN, - ACTIONS(4981), 1, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - ACTIONS(5007), 1, + ACTIONS(6016), 1, anon_sym_RPAREN, - STATE(1501), 1, + STATE(1999), 1, sym_link_title, - STATE(1413), 3, + STATE(1709), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [59311] = 9, - ACTIONS(4241), 1, + [12697] = 9, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4973), 1, + ACTIONS(5954), 1, anon_sym_DQUOTE, - ACTIONS(4975), 1, + ACTIONS(5956), 1, anon_sym_SQUOTE, - ACTIONS(4977), 1, + ACTIONS(5958), 1, anon_sym_LPAREN, - ACTIONS(4981), 1, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - ACTIONS(5009), 1, + ACTIONS(6018), 1, anon_sym_RPAREN, - STATE(1504), 1, + STATE(1900), 1, sym_link_title, - STATE(1413), 3, + STATE(1709), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [59341] = 9, - ACTIONS(4241), 1, + [12727] = 9, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4973), 1, + ACTIONS(5954), 1, anon_sym_DQUOTE, - ACTIONS(4975), 1, + ACTIONS(5956), 1, anon_sym_SQUOTE, - ACTIONS(4977), 1, + ACTIONS(5958), 1, anon_sym_LPAREN, - ACTIONS(4981), 1, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - ACTIONS(5011), 1, + ACTIONS(6020), 1, anon_sym_RPAREN, - STATE(1477), 1, + STATE(2007), 1, sym_link_title, - STATE(1413), 3, + STATE(1709), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [59371] = 9, - ACTIONS(4241), 1, + [12757] = 9, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4973), 1, + ACTIONS(5954), 1, anon_sym_DQUOTE, - ACTIONS(4975), 1, + ACTIONS(5956), 1, anon_sym_SQUOTE, - ACTIONS(4977), 1, + ACTIONS(5958), 1, anon_sym_LPAREN, - ACTIONS(4981), 1, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - ACTIONS(5013), 1, + ACTIONS(6022), 1, anon_sym_RPAREN, - STATE(1508), 1, + STATE(1812), 1, sym_link_title, - STATE(1413), 3, + STATE(1709), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [59401] = 9, - ACTIONS(4241), 1, + [12787] = 9, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4973), 1, + ACTIONS(5954), 1, anon_sym_DQUOTE, - ACTIONS(4975), 1, + ACTIONS(5956), 1, anon_sym_SQUOTE, - ACTIONS(4977), 1, + ACTIONS(5958), 1, anon_sym_LPAREN, - ACTIONS(4981), 1, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - ACTIONS(5015), 1, + ACTIONS(6024), 1, anon_sym_RPAREN, - STATE(1510), 1, + STATE(1815), 1, sym_link_title, - STATE(1413), 3, + STATE(1709), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [59431] = 9, - ACTIONS(4241), 1, + [12817] = 9, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4973), 1, + ACTIONS(5954), 1, anon_sym_DQUOTE, - ACTIONS(4975), 1, + ACTIONS(5956), 1, anon_sym_SQUOTE, - ACTIONS(4977), 1, + ACTIONS(5958), 1, anon_sym_LPAREN, - ACTIONS(4981), 1, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - ACTIONS(5017), 1, + ACTIONS(6026), 1, anon_sym_RPAREN, - STATE(1475), 1, + STATE(1883), 1, sym_link_title, - STATE(1413), 3, + STATE(1709), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [59461] = 9, - ACTIONS(4241), 1, + [12847] = 9, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4973), 1, + ACTIONS(5954), 1, anon_sym_DQUOTE, - ACTIONS(4975), 1, + ACTIONS(5956), 1, anon_sym_SQUOTE, - ACTIONS(4977), 1, + ACTIONS(5958), 1, anon_sym_LPAREN, - ACTIONS(4981), 1, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - ACTIONS(5019), 1, + ACTIONS(6028), 1, anon_sym_RPAREN, - STATE(1505), 1, + STATE(1788), 1, sym_link_title, - STATE(1413), 3, + STATE(1709), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [59491] = 9, - ACTIONS(4241), 1, + [12877] = 9, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4973), 1, + ACTIONS(5954), 1, anon_sym_DQUOTE, - ACTIONS(4975), 1, + ACTIONS(5956), 1, anon_sym_SQUOTE, - ACTIONS(4977), 1, + ACTIONS(5958), 1, anon_sym_LPAREN, - ACTIONS(4981), 1, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - ACTIONS(5021), 1, + ACTIONS(6030), 1, anon_sym_RPAREN, - STATE(1568), 1, + STATE(1893), 1, sym_link_title, - STATE(1413), 3, + STATE(1709), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [59521] = 11, - ACTIONS(5001), 1, - sym_id_specifier, - ACTIONS(5003), 1, - sym_class_specifier, - ACTIONS(5005), 1, - sym_key_value_key, - ACTIONS(5023), 1, - anon_sym_RBRACE, - ACTIONS(5025), 1, - sym_raw_specifier, - ACTIONS(5027), 1, - sym__commonmark_whitespace, - ACTIONS(5029), 1, - sym_commonmark_name, - STATE(1447), 1, - aux_sym_commonmark_attribute_repeat1, - STATE(1502), 1, - aux_sym_commonmark_attribute_repeat2, - STATE(1713), 1, - aux_sym_commonmark_attribute_repeat3, - STATE(1826), 1, - sym__attribute, - [59555] = 9, - ACTIONS(4241), 1, + [12907] = 9, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4973), 1, + ACTIONS(5954), 1, anon_sym_DQUOTE, - ACTIONS(4975), 1, + ACTIONS(5956), 1, anon_sym_SQUOTE, - ACTIONS(4977), 1, + ACTIONS(5958), 1, anon_sym_LPAREN, - ACTIONS(4981), 1, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - ACTIONS(5031), 1, + ACTIONS(6032), 1, anon_sym_RPAREN, - STATE(1574), 1, + STATE(1818), 1, sym_link_title, - STATE(1413), 3, + STATE(1709), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [59585] = 9, - ACTIONS(4241), 1, + [12937] = 9, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4973), 1, + ACTIONS(5954), 1, anon_sym_DQUOTE, - ACTIONS(4975), 1, + ACTIONS(5956), 1, anon_sym_SQUOTE, - ACTIONS(4977), 1, + ACTIONS(5958), 1, anon_sym_LPAREN, - ACTIONS(4981), 1, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - ACTIONS(5033), 1, + ACTIONS(6034), 1, anon_sym_RPAREN, - STATE(1550), 1, + STATE(1820), 1, sym_link_title, - STATE(1413), 3, + STATE(1709), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [59615] = 9, - ACTIONS(4241), 1, + [12967] = 9, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4973), 1, + ACTIONS(5954), 1, anon_sym_DQUOTE, - ACTIONS(4975), 1, + ACTIONS(5956), 1, anon_sym_SQUOTE, - ACTIONS(4977), 1, + ACTIONS(5958), 1, anon_sym_LPAREN, - ACTIONS(4981), 1, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - ACTIONS(5035), 1, + ACTIONS(6036), 1, anon_sym_RPAREN, - STATE(1553), 1, + STATE(1792), 1, sym_link_title, - STATE(1413), 3, + STATE(1709), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [59645] = 9, - ACTIONS(4241), 1, + [12997] = 9, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4973), 1, + ACTIONS(5954), 1, anon_sym_DQUOTE, - ACTIONS(4975), 1, + ACTIONS(5956), 1, anon_sym_SQUOTE, - ACTIONS(4977), 1, + ACTIONS(5958), 1, anon_sym_LPAREN, - ACTIONS(4981), 1, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - ACTIONS(5037), 1, + ACTIONS(6038), 1, anon_sym_RPAREN, - STATE(1557), 1, + STATE(1906), 1, sym_link_title, - STATE(1413), 3, + STATE(1709), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [59675] = 9, - ACTIONS(4241), 1, + [13027] = 9, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4973), 1, + ACTIONS(5954), 1, anon_sym_DQUOTE, - ACTIONS(4975), 1, + ACTIONS(5956), 1, anon_sym_SQUOTE, - ACTIONS(4977), 1, + ACTIONS(5958), 1, anon_sym_LPAREN, - ACTIONS(4981), 1, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - ACTIONS(5039), 1, + ACTIONS(6040), 1, anon_sym_RPAREN, - STATE(1559), 1, + STATE(1908), 1, sym_link_title, - STATE(1413), 3, + STATE(1709), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [59705] = 11, - ACTIONS(5001), 1, - sym_id_specifier, - ACTIONS(5003), 1, - sym_class_specifier, - ACTIONS(5005), 1, - sym_key_value_key, - ACTIONS(5041), 1, - anon_sym_RBRACE, - ACTIONS(5043), 1, - sym_raw_specifier, - ACTIONS(5045), 1, - sym__commonmark_whitespace, - ACTIONS(5047), 1, - sym_commonmark_name, - STATE(1450), 1, - aux_sym_commonmark_attribute_repeat1, - STATE(1527), 1, - aux_sym_commonmark_attribute_repeat2, - STATE(1724), 1, - aux_sym_commonmark_attribute_repeat3, - STATE(1826), 1, - sym__attribute, - [59739] = 11, - ACTIONS(5001), 1, + [13057] = 9, + ACTIONS(5202), 1, + sym__newline_token, + ACTIONS(5954), 1, + anon_sym_DQUOTE, + ACTIONS(5956), 1, + anon_sym_SQUOTE, + ACTIONS(5958), 1, + anon_sym_LPAREN, + ACTIONS(5962), 1, + sym__whitespace_ge_2, + ACTIONS(5964), 1, + aux_sym__whitespace_token1, + ACTIONS(6042), 1, + anon_sym_RPAREN, + STATE(1848), 1, + sym_link_title, + STATE(1709), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [13087] = 9, + ACTIONS(5202), 1, + sym__newline_token, + ACTIONS(5954), 1, + anon_sym_DQUOTE, + ACTIONS(5956), 1, + anon_sym_SQUOTE, + ACTIONS(5958), 1, + anon_sym_LPAREN, + ACTIONS(5962), 1, + sym__whitespace_ge_2, + ACTIONS(5964), 1, + aux_sym__whitespace_token1, + ACTIONS(6044), 1, + anon_sym_RPAREN, + STATE(1915), 1, + sym_link_title, + STATE(1709), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [13117] = 9, + ACTIONS(5202), 1, + sym__newline_token, + ACTIONS(5954), 1, + anon_sym_DQUOTE, + ACTIONS(5956), 1, + anon_sym_SQUOTE, + ACTIONS(5958), 1, + anon_sym_LPAREN, + ACTIONS(5962), 1, + sym__whitespace_ge_2, + ACTIONS(5964), 1, + aux_sym__whitespace_token1, + ACTIONS(6046), 1, + anon_sym_RPAREN, + STATE(1781), 1, + sym_link_title, + STATE(1709), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [13147] = 11, + ACTIONS(5978), 1, sym_id_specifier, - ACTIONS(5003), 1, + ACTIONS(5980), 1, sym_class_specifier, - ACTIONS(5005), 1, + ACTIONS(5982), 1, sym_key_value_key, - ACTIONS(5049), 1, + ACTIONS(6048), 1, anon_sym_RBRACE, - ACTIONS(5051), 1, + ACTIONS(6050), 1, sym_raw_specifier, - ACTIONS(5053), 1, + ACTIONS(6052), 1, sym__commonmark_whitespace, - ACTIONS(5055), 1, + ACTIONS(6054), 1, sym_commonmark_name, - STATE(1465), 1, + STATE(1761), 1, aux_sym_commonmark_attribute_repeat1, - STATE(1630), 1, + STATE(1916), 1, aux_sym_commonmark_attribute_repeat2, - STATE(1711), 1, + STATE(2041), 1, aux_sym_commonmark_attribute_repeat3, - STATE(1826), 1, + STATE(2152), 1, sym__attribute, - [59773] = 9, - ACTIONS(4241), 1, + [13181] = 9, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4973), 1, + ACTIONS(5954), 1, anon_sym_DQUOTE, - ACTIONS(4975), 1, + ACTIONS(5956), 1, anon_sym_SQUOTE, - ACTIONS(4977), 1, + ACTIONS(5958), 1, anon_sym_LPAREN, - ACTIONS(4981), 1, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - ACTIONS(5057), 1, + ACTIONS(6056), 1, anon_sym_RPAREN, - STATE(1622), 1, + STATE(1939), 1, sym_link_title, - STATE(1413), 3, + STATE(1709), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [59803] = 9, - ACTIONS(4241), 1, + [13211] = 9, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4973), 1, + ACTIONS(5954), 1, anon_sym_DQUOTE, - ACTIONS(4975), 1, + ACTIONS(5956), 1, anon_sym_SQUOTE, - ACTIONS(4977), 1, + ACTIONS(5958), 1, anon_sym_LPAREN, - ACTIONS(4981), 1, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - ACTIONS(5059), 1, + ACTIONS(6058), 1, anon_sym_RPAREN, - STATE(1629), 1, + STATE(1941), 1, sym_link_title, - STATE(1413), 3, + STATE(1709), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [59833] = 9, - ACTIONS(4241), 1, + [13241] = 9, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4973), 1, + ACTIONS(5954), 1, anon_sym_DQUOTE, - ACTIONS(4975), 1, + ACTIONS(5956), 1, anon_sym_SQUOTE, - ACTIONS(4977), 1, + ACTIONS(5958), 1, anon_sym_LPAREN, - ACTIONS(4981), 1, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - ACTIONS(5061), 1, + ACTIONS(6060), 1, anon_sym_RPAREN, - STATE(1484), 1, + STATE(1928), 1, sym_link_title, - STATE(1413), 3, + STATE(1709), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [59863] = 9, - ACTIONS(4241), 1, + [13271] = 9, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4973), 1, + ACTIONS(5954), 1, anon_sym_DQUOTE, - ACTIONS(4975), 1, + ACTIONS(5956), 1, anon_sym_SQUOTE, - ACTIONS(4977), 1, + ACTIONS(5958), 1, anon_sym_LPAREN, - ACTIONS(4981), 1, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - ACTIONS(5063), 1, + ACTIONS(6062), 1, anon_sym_RPAREN, - STATE(1592), 1, + STATE(1945), 1, sym_link_title, - STATE(1413), 3, + STATE(1709), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [59893] = 3, - ACTIONS(5065), 1, - sym__last_token_whitespace, - ACTIONS(3735), 3, - sym_shortcode_name, - aux_sym_shortcode_naked_string_token1, - aux_sym_shortcode_naked_string_token2, - ACTIONS(3733), 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, - [59911] = 9, - ACTIONS(4241), 1, + [13301] = 9, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4973), 1, + ACTIONS(5954), 1, anon_sym_DQUOTE, - ACTIONS(4975), 1, + ACTIONS(5956), 1, anon_sym_SQUOTE, - ACTIONS(4977), 1, + ACTIONS(5958), 1, anon_sym_LPAREN, - ACTIONS(4981), 1, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - ACTIONS(5067), 1, + ACTIONS(6064), 1, anon_sym_RPAREN, - STATE(1585), 1, + STATE(1947), 1, sym_link_title, - STATE(1413), 3, + STATE(1709), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [59941] = 9, - ACTIONS(4241), 1, + [13331] = 9, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4973), 1, + ACTIONS(5954), 1, anon_sym_DQUOTE, - ACTIONS(4975), 1, + ACTIONS(5956), 1, anon_sym_SQUOTE, - ACTIONS(4977), 1, + ACTIONS(5958), 1, anon_sym_LPAREN, - ACTIONS(4981), 1, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - ACTIONS(5069), 1, + ACTIONS(6066), 1, anon_sym_RPAREN, - STATE(1473), 1, + STATE(1783), 1, sym_link_title, - STATE(1413), 3, + STATE(1709), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [59971] = 3, - ACTIONS(5071), 1, - sym__last_token_whitespace, - ACTIONS(3735), 3, - sym_shortcode_name, - aux_sym_shortcode_naked_string_token1, - aux_sym_shortcode_naked_string_token2, - ACTIONS(3733), 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, - [59989] = 9, - ACTIONS(4241), 1, + [13361] = 9, + ACTIONS(5202), 1, + sym__newline_token, + ACTIONS(5954), 1, + anon_sym_DQUOTE, + ACTIONS(5956), 1, + anon_sym_SQUOTE, + ACTIONS(5958), 1, + anon_sym_LPAREN, + ACTIONS(5962), 1, + sym__whitespace_ge_2, + ACTIONS(5964), 1, + aux_sym__whitespace_token1, + ACTIONS(6068), 1, + anon_sym_RPAREN, + STATE(1851), 1, + sym_link_title, + STATE(1709), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [13391] = 9, + ACTIONS(5202), 1, + sym__newline_token, + ACTIONS(5954), 1, + anon_sym_DQUOTE, + ACTIONS(5956), 1, + anon_sym_SQUOTE, + ACTIONS(5958), 1, + anon_sym_LPAREN, + ACTIONS(5962), 1, + sym__whitespace_ge_2, + ACTIONS(5964), 1, + aux_sym__whitespace_token1, + ACTIONS(6070), 1, + anon_sym_RPAREN, + STATE(2004), 1, + sym_link_title, + STATE(1709), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [13421] = 9, + ACTIONS(5202), 1, + sym__newline_token, + ACTIONS(5954), 1, + anon_sym_DQUOTE, + ACTIONS(5956), 1, + anon_sym_SQUOTE, + ACTIONS(5958), 1, + anon_sym_LPAREN, + ACTIONS(5962), 1, + sym__whitespace_ge_2, + ACTIONS(5964), 1, + aux_sym__whitespace_token1, + ACTIONS(6072), 1, + anon_sym_RPAREN, + STATE(1791), 1, + sym_link_title, + STATE(1709), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [13451] = 9, + ACTIONS(5202), 1, + sym__newline_token, + ACTIONS(5954), 1, + anon_sym_DQUOTE, + ACTIONS(5956), 1, + anon_sym_SQUOTE, + ACTIONS(5958), 1, + anon_sym_LPAREN, + ACTIONS(5962), 1, + sym__whitespace_ge_2, + ACTIONS(5964), 1, + aux_sym__whitespace_token1, + ACTIONS(6074), 1, + anon_sym_RPAREN, + STATE(2006), 1, + sym_link_title, + STATE(1709), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [13481] = 9, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4973), 1, + ACTIONS(5954), 1, anon_sym_DQUOTE, - ACTIONS(4975), 1, + ACTIONS(5956), 1, anon_sym_SQUOTE, - ACTIONS(4977), 1, + ACTIONS(5958), 1, anon_sym_LPAREN, - ACTIONS(4981), 1, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - ACTIONS(5073), 1, + ACTIONS(6076), 1, anon_sym_RPAREN, - STATE(1518), 1, + STATE(1955), 1, sym_link_title, - STATE(1413), 3, + STATE(1709), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [60019] = 9, - ACTIONS(4241), 1, + [13511] = 3, + ACTIONS(6078), 1, + sym__last_token_whitespace, + ACTIONS(4644), 3, + sym_shortcode_name, + aux_sym_shortcode_naked_string_token1, + aux_sym_shortcode_naked_string_token2, + ACTIONS(4642), 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, + [13529] = 3, + ACTIONS(6080), 1, + sym__last_token_whitespace, + ACTIONS(4644), 3, + sym_shortcode_name, + aux_sym_shortcode_naked_string_token1, + aux_sym_shortcode_naked_string_token2, + ACTIONS(4642), 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, + [13547] = 11, + ACTIONS(5978), 1, + sym_id_specifier, + ACTIONS(5980), 1, + sym_class_specifier, + ACTIONS(5982), 1, + sym_key_value_key, + ACTIONS(6082), 1, + anon_sym_RBRACE, + ACTIONS(6084), 1, + sym_raw_specifier, + ACTIONS(6086), 1, + sym__commonmark_whitespace, + ACTIONS(6088), 1, + sym_commonmark_name, + STATE(1752), 1, + aux_sym_commonmark_attribute_repeat1, + STATE(1942), 1, + aux_sym_commonmark_attribute_repeat2, + STATE(2039), 1, + aux_sym_commonmark_attribute_repeat3, + STATE(2152), 1, + sym__attribute, + [13581] = 11, + ACTIONS(5978), 1, + sym_id_specifier, + ACTIONS(5980), 1, + sym_class_specifier, + ACTIONS(5982), 1, + sym_key_value_key, + ACTIONS(6090), 1, + anon_sym_RBRACE, + ACTIONS(6092), 1, + sym_raw_specifier, + ACTIONS(6094), 1, + sym__commonmark_whitespace, + ACTIONS(6096), 1, + sym_commonmark_name, + STATE(1773), 1, + aux_sym_commonmark_attribute_repeat1, + STATE(1775), 1, + aux_sym_commonmark_attribute_repeat2, + STATE(2035), 1, + aux_sym_commonmark_attribute_repeat3, + STATE(2152), 1, + sym__attribute, + [13615] = 9, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4973), 1, + ACTIONS(5954), 1, anon_sym_DQUOTE, - ACTIONS(4975), 1, + ACTIONS(5956), 1, anon_sym_SQUOTE, - ACTIONS(4977), 1, + ACTIONS(5958), 1, anon_sym_LPAREN, - ACTIONS(4981), 1, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - ACTIONS(5075), 1, + ACTIONS(6098), 1, anon_sym_RPAREN, - STATE(1605), 1, + STATE(1963), 1, sym_link_title, - STATE(1413), 3, + STATE(1709), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [60049] = 9, - ACTIONS(4241), 1, + [13645] = 9, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4973), 1, + ACTIONS(5954), 1, anon_sym_DQUOTE, - ACTIONS(4975), 1, + ACTIONS(5956), 1, anon_sym_SQUOTE, - ACTIONS(4977), 1, + ACTIONS(5958), 1, anon_sym_LPAREN, - ACTIONS(4981), 1, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - ACTIONS(5077), 1, + ACTIONS(6100), 1, anon_sym_RPAREN, - STATE(1608), 1, + STATE(1985), 1, sym_link_title, - STATE(1413), 3, + STATE(1709), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [60079] = 9, - ACTIONS(4241), 1, + [13675] = 9, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4973), 1, + ACTIONS(5954), 1, anon_sym_DQUOTE, - ACTIONS(4975), 1, + ACTIONS(5956), 1, anon_sym_SQUOTE, - ACTIONS(4977), 1, + ACTIONS(5958), 1, anon_sym_LPAREN, - ACTIONS(4981), 1, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - ACTIONS(5079), 1, + ACTIONS(6102), 1, anon_sym_RPAREN, - STATE(1526), 1, + STATE(1987), 1, sym_link_title, - STATE(1413), 3, + STATE(1709), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [60109] = 9, - ACTIONS(4241), 1, + [13705] = 9, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4973), 1, + ACTIONS(5954), 1, anon_sym_DQUOTE, - ACTIONS(4975), 1, + ACTIONS(5956), 1, anon_sym_SQUOTE, - ACTIONS(4977), 1, + ACTIONS(5958), 1, anon_sym_LPAREN, - ACTIONS(4981), 1, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - ACTIONS(5081), 1, + ACTIONS(6104), 1, anon_sym_RPAREN, - STATE(1612), 1, + STATE(1991), 1, sym_link_title, - STATE(1413), 3, + STATE(1709), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [60139] = 9, - ACTIONS(4241), 1, + [13735] = 9, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4973), 1, + ACTIONS(5954), 1, anon_sym_DQUOTE, - ACTIONS(4975), 1, + ACTIONS(5956), 1, anon_sym_SQUOTE, - ACTIONS(4977), 1, + ACTIONS(5958), 1, anon_sym_LPAREN, - ACTIONS(4981), 1, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - ACTIONS(5083), 1, + ACTIONS(6106), 1, anon_sym_RPAREN, - STATE(1614), 1, + STATE(1993), 1, sym_link_title, - STATE(1413), 3, + STATE(1709), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [60169] = 11, - ACTIONS(5001), 1, + [13765] = 11, + ACTIONS(5978), 1, sym_id_specifier, - ACTIONS(5003), 1, + ACTIONS(5980), 1, sym_class_specifier, - ACTIONS(5005), 1, + ACTIONS(5982), 1, sym_key_value_key, - ACTIONS(5085), 1, + ACTIONS(6108), 1, anon_sym_RBRACE, - ACTIONS(5087), 1, + ACTIONS(6110), 1, sym_raw_specifier, - ACTIONS(5089), 1, + ACTIONS(6112), 1, sym__commonmark_whitespace, - ACTIONS(5091), 1, + ACTIONS(6114), 1, sym_commonmark_name, - STATE(1444), 1, + STATE(1742), 1, aux_sym_commonmark_attribute_repeat1, - STATE(1474), 1, + STATE(1829), 1, aux_sym_commonmark_attribute_repeat2, - STATE(1698), 1, + STATE(2042), 1, aux_sym_commonmark_attribute_repeat3, - STATE(1826), 1, + STATE(2152), 1, sym__attribute, - [60203] = 9, - ACTIONS(4241), 1, - sym__newline_token, - ACTIONS(4973), 1, - anon_sym_DQUOTE, - ACTIONS(4975), 1, - anon_sym_SQUOTE, - ACTIONS(4977), 1, - anon_sym_LPAREN, - ACTIONS(4981), 1, - sym__whitespace_ge_2, - ACTIONS(4983), 1, - aux_sym__whitespace_token1, - ACTIONS(5093), 1, - anon_sym_RPAREN, - STATE(1624), 1, - sym_link_title, - STATE(1413), 3, - sym__whitespace, - sym__soft_line_break, - aux_sym_inline_link_repeat1, - [60233] = 9, - ACTIONS(4241), 1, - sym__newline_token, - ACTIONS(4973), 1, - anon_sym_DQUOTE, - ACTIONS(4975), 1, - anon_sym_SQUOTE, - ACTIONS(4977), 1, - anon_sym_LPAREN, - ACTIONS(4981), 1, - sym__whitespace_ge_2, - ACTIONS(4983), 1, - aux_sym__whitespace_token1, - ACTIONS(5095), 1, - anon_sym_RPAREN, - STATE(1659), 1, - sym_link_title, - STATE(1413), 3, - sym__whitespace, - sym__soft_line_break, - aux_sym_inline_link_repeat1, - [60263] = 11, - ACTIONS(5001), 1, + [13799] = 11, + ACTIONS(5978), 1, sym_id_specifier, - ACTIONS(5003), 1, + ACTIONS(5980), 1, sym_class_specifier, - ACTIONS(5005), 1, + ACTIONS(5982), 1, sym_key_value_key, - ACTIONS(5097), 1, + ACTIONS(6116), 1, anon_sym_RBRACE, - ACTIONS(5099), 1, + ACTIONS(6118), 1, sym_raw_specifier, - ACTIONS(5101), 1, + ACTIONS(6120), 1, sym__commonmark_whitespace, - ACTIONS(5103), 1, + ACTIONS(6122), 1, sym_commonmark_name, - STATE(1441), 1, + STATE(1756), 1, aux_sym_commonmark_attribute_repeat1, - STATE(1675), 1, + STATE(1831), 1, aux_sym_commonmark_attribute_repeat2, - STATE(1743), 1, + STATE(2040), 1, aux_sym_commonmark_attribute_repeat3, - STATE(1826), 1, + STATE(2152), 1, sym__attribute, - [60297] = 9, - ACTIONS(4241), 1, - sym__newline_token, - ACTIONS(4973), 1, - anon_sym_DQUOTE, - ACTIONS(4975), 1, - anon_sym_SQUOTE, - ACTIONS(4977), 1, - anon_sym_LPAREN, - ACTIONS(4981), 1, - sym__whitespace_ge_2, - ACTIONS(4983), 1, - aux_sym__whitespace_token1, - ACTIONS(5105), 1, - anon_sym_RPAREN, - STATE(1663), 1, - sym_link_title, - STATE(1413), 3, - sym__whitespace, - sym__soft_line_break, - aux_sym_inline_link_repeat1, - [60327] = 9, - ACTIONS(4241), 1, + [13833] = 9, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4973), 1, + ACTIONS(5954), 1, anon_sym_DQUOTE, - ACTIONS(4975), 1, + ACTIONS(5956), 1, anon_sym_SQUOTE, - ACTIONS(4977), 1, + ACTIONS(5958), 1, anon_sym_LPAREN, - ACTIONS(4981), 1, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - ACTIONS(5107), 1, + ACTIONS(6124), 1, anon_sym_RPAREN, - STATE(1665), 1, + STATE(1860), 1, sym_link_title, - STATE(1413), 3, + STATE(1709), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [60357] = 11, - ACTIONS(5001), 1, - sym_id_specifier, - ACTIONS(5003), 1, - sym_class_specifier, - ACTIONS(5005), 1, - sym_key_value_key, - ACTIONS(5109), 1, - anon_sym_RBRACE, - ACTIONS(5111), 1, - sym_raw_specifier, - ACTIONS(5113), 1, - sym__commonmark_whitespace, - ACTIONS(5115), 1, - sym_commonmark_name, - STATE(1463), 1, - aux_sym_commonmark_attribute_repeat1, - STATE(1623), 1, - aux_sym_commonmark_attribute_repeat2, - STATE(1710), 1, - aux_sym_commonmark_attribute_repeat3, - STATE(1826), 1, - sym__attribute, - [60391] = 11, - ACTIONS(5001), 1, + [13863] = 11, + ACTIONS(5978), 1, sym_id_specifier, - ACTIONS(5003), 1, + ACTIONS(5980), 1, sym_class_specifier, - ACTIONS(5005), 1, + ACTIONS(5982), 1, sym_key_value_key, - ACTIONS(5117), 1, + ACTIONS(6126), 1, anon_sym_RBRACE, - ACTIONS(5119), 1, + ACTIONS(6128), 1, sym_raw_specifier, - ACTIONS(5121), 1, + ACTIONS(6130), 1, sym__commonmark_whitespace, - ACTIONS(5123), 1, + ACTIONS(6132), 1, sym_commonmark_name, - STATE(1458), 1, + STATE(1755), 1, aux_sym_commonmark_attribute_repeat1, - STATE(1576), 1, + STATE(1790), 1, aux_sym_commonmark_attribute_repeat2, - STATE(1696), 1, + STATE(2019), 1, aux_sym_commonmark_attribute_repeat3, - STATE(1826), 1, + STATE(2152), 1, sym__attribute, - [60425] = 9, - ACTIONS(4241), 1, + [13897] = 6, + ACTIONS(6134), 1, + sym__backslash_escape, + ACTIONS(6138), 1, sym__newline_token, - ACTIONS(4973), 1, - anon_sym_DQUOTE, - ACTIONS(4975), 1, - anon_sym_SQUOTE, - ACTIONS(4977), 1, - anon_sym_LPAREN, - ACTIONS(4981), 1, - sym__whitespace_ge_2, - ACTIONS(4983), 1, - aux_sym__whitespace_token1, - ACTIONS(5125), 1, - anon_sym_RPAREN, - STATE(1646), 1, - sym_link_title, - STATE(1413), 3, - sym__whitespace, + ACTIONS(6140), 1, + sym__latex_span_close, + STATE(1712), 1, + aux_sym_latex_span_repeat1, + STATE(1919), 2, + sym_backslash_escape, sym__soft_line_break, - aux_sym_inline_link_repeat1, - [60455] = 11, - ACTIONS(5001), 1, + ACTIONS(6136), 4, + anon_sym_LBRACK, + anon_sym_RBRACK, + aux_sym_latex_span_token1, + aux_sym_latex_span_token2, + [13920] = 6, + ACTIONS(6134), 1, + sym__backslash_escape, + ACTIONS(6138), 1, + sym__newline_token, + ACTIONS(6142), 1, + sym__latex_span_close, + STATE(1712), 1, + aux_sym_latex_span_repeat1, + STATE(1919), 2, + sym_backslash_escape, + sym__soft_line_break, + ACTIONS(6136), 4, + anon_sym_LBRACK, + anon_sym_RBRACK, + aux_sym_latex_span_token1, + aux_sym_latex_span_token2, + [13943] = 6, + ACTIONS(6134), 1, + sym__backslash_escape, + ACTIONS(6138), 1, + sym__newline_token, + ACTIONS(6144), 1, + sym__latex_span_close, + STATE(1718), 1, + aux_sym_latex_span_repeat1, + STATE(1919), 2, + sym_backslash_escape, + sym__soft_line_break, + ACTIONS(6136), 4, + anon_sym_LBRACK, + anon_sym_RBRACK, + aux_sym_latex_span_token1, + aux_sym_latex_span_token2, + [13966] = 10, + ACTIONS(5978), 1, sym_id_specifier, - ACTIONS(5003), 1, + ACTIONS(5980), 1, sym_class_specifier, - ACTIONS(5005), 1, + ACTIONS(5982), 1, sym_key_value_key, - ACTIONS(5127), 1, + ACTIONS(6146), 1, anon_sym_RBRACE, - ACTIONS(5129), 1, + ACTIONS(6148), 1, sym_raw_specifier, - ACTIONS(5131), 1, - sym__commonmark_whitespace, - ACTIONS(5133), 1, + ACTIONS(6150), 1, sym_commonmark_name, - STATE(1455), 1, + STATE(1765), 1, aux_sym_commonmark_attribute_repeat1, - STATE(1470), 1, + STATE(1878), 1, aux_sym_commonmark_attribute_repeat2, - STATE(1712), 1, + STATE(2020), 1, aux_sym_commonmark_attribute_repeat3, - STATE(1826), 1, + STATE(2152), 1, sym__attribute, - [60489] = 9, - ACTIONS(4241), 1, + [13997] = 6, + ACTIONS(6134), 1, + sym__backslash_escape, + ACTIONS(6138), 1, sym__newline_token, - ACTIONS(4973), 1, - anon_sym_DQUOTE, - ACTIONS(4975), 1, - anon_sym_SQUOTE, - ACTIONS(4977), 1, - anon_sym_LPAREN, - ACTIONS(4981), 1, - sym__whitespace_ge_2, - ACTIONS(4983), 1, - aux_sym__whitespace_token1, - ACTIONS(5135), 1, - anon_sym_RPAREN, - STATE(1570), 1, - sym_link_title, - STATE(1413), 3, - sym__whitespace, + ACTIONS(6152), 1, + sym__latex_span_close, + STATE(1717), 1, + aux_sym_latex_span_repeat1, + STATE(1919), 2, + sym_backslash_escape, sym__soft_line_break, - aux_sym_inline_link_repeat1, - [60519] = 10, - ACTIONS(5001), 1, + ACTIONS(6136), 4, + anon_sym_LBRACK, + anon_sym_RBRACK, + aux_sym_latex_span_token1, + aux_sym_latex_span_token2, + [14020] = 10, + ACTIONS(5978), 1, sym_id_specifier, - ACTIONS(5003), 1, + ACTIONS(5980), 1, sym_class_specifier, - ACTIONS(5005), 1, + ACTIONS(5982), 1, sym_key_value_key, - ACTIONS(5137), 1, + ACTIONS(6150), 1, + sym_commonmark_name, + ACTIONS(6154), 1, anon_sym_RBRACE, - ACTIONS(5139), 1, + ACTIONS(6156), 1, sym_raw_specifier, - ACTIONS(5141), 1, - sym_commonmark_name, - STATE(1442), 1, + STATE(1758), 1, aux_sym_commonmark_attribute_repeat1, - STATE(1595), 1, + STATE(1938), 1, aux_sym_commonmark_attribute_repeat2, - STATE(1695), 1, + STATE(2025), 1, aux_sym_commonmark_attribute_repeat3, - STATE(1826), 1, + STATE(2152), 1, sym__attribute, - [60550] = 10, - ACTIONS(5001), 1, + [14051] = 10, + ACTIONS(5978), 1, sym_id_specifier, - ACTIONS(5003), 1, + ACTIONS(5980), 1, sym_class_specifier, - ACTIONS(5005), 1, + ACTIONS(5982), 1, sym_key_value_key, - ACTIONS(5109), 1, + ACTIONS(5986), 1, anon_sym_RBRACE, - ACTIONS(5141), 1, + ACTIONS(6150), 1, sym_commonmark_name, - ACTIONS(5143), 1, + ACTIONS(6158), 1, sym__commonmark_whitespace, - STATE(1463), 1, + STATE(1770), 1, aux_sym_commonmark_attribute_repeat1, - STATE(1623), 1, + STATE(1830), 1, aux_sym_commonmark_attribute_repeat2, - STATE(1710), 1, + STATE(2057), 1, aux_sym_commonmark_attribute_repeat3, - STATE(1826), 1, + STATE(2152), 1, sym__attribute, - [60581] = 6, - ACTIONS(5145), 1, + [14082] = 6, + ACTIONS(6134), 1, sym__backslash_escape, - ACTIONS(5149), 1, + ACTIONS(6138), 1, sym__newline_token, - ACTIONS(5151), 1, + ACTIONS(6160), 1, sym__latex_span_close, - STATE(1424), 1, + STATE(1696), 1, aux_sym_latex_span_repeat1, - STATE(1564), 2, + STATE(1919), 2, sym_backslash_escape, sym__soft_line_break, - ACTIONS(5147), 4, + ACTIONS(6136), 4, anon_sym_LBRACK, anon_sym_RBRACK, aux_sym_latex_span_token1, aux_sym_latex_span_token2, - [60604] = 10, - ACTIONS(5001), 1, + [14105] = 10, + ACTIONS(5978), 1, sym_id_specifier, - ACTIONS(5003), 1, + ACTIONS(5980), 1, sym_class_specifier, - ACTIONS(5005), 1, + ACTIONS(5982), 1, sym_key_value_key, - ACTIONS(5023), 1, + ACTIONS(6082), 1, anon_sym_RBRACE, - ACTIONS(5141), 1, + ACTIONS(6150), 1, sym_commonmark_name, - ACTIONS(5153), 1, + ACTIONS(6162), 1, sym__commonmark_whitespace, - STATE(1447), 1, + STATE(1752), 1, aux_sym_commonmark_attribute_repeat1, - STATE(1502), 1, + STATE(1942), 1, aux_sym_commonmark_attribute_repeat2, - STATE(1713), 1, + STATE(2039), 1, aux_sym_commonmark_attribute_repeat3, - STATE(1826), 1, + STATE(2152), 1, sym__attribute, - [60635] = 10, - ACTIONS(5001), 1, + [14136] = 6, + ACTIONS(6134), 1, + sym__backslash_escape, + ACTIONS(6138), 1, + sym__newline_token, + ACTIONS(6164), 1, + sym__latex_span_close, + STATE(1733), 1, + aux_sym_latex_span_repeat1, + STATE(1919), 2, + sym_backslash_escape, + sym__soft_line_break, + ACTIONS(6136), 4, + anon_sym_LBRACK, + anon_sym_RBRACK, + aux_sym_latex_span_token1, + aux_sym_latex_span_token2, + [14159] = 10, + ACTIONS(5978), 1, sym_id_specifier, - ACTIONS(5003), 1, + ACTIONS(5980), 1, sym_class_specifier, - ACTIONS(5005), 1, + ACTIONS(5982), 1, sym_key_value_key, - ACTIONS(5141), 1, + ACTIONS(6150), 1, sym_commonmark_name, - ACTIONS(5155), 1, + ACTIONS(6166), 1, anon_sym_RBRACE, - ACTIONS(5157), 1, + ACTIONS(6168), 1, sym_raw_specifier, - STATE(1456), 1, + STATE(1745), 1, aux_sym_commonmark_attribute_repeat1, - STATE(1577), 1, + STATE(1956), 1, aux_sym_commonmark_attribute_repeat2, - STATE(1682), 1, + STATE(2054), 1, aux_sym_commonmark_attribute_repeat3, - STATE(1826), 1, + STATE(2152), 1, sym__attribute, - [60666] = 6, - ACTIONS(5145), 1, + [14190] = 6, + ACTIONS(6134), 1, sym__backslash_escape, - ACTIONS(5149), 1, + ACTIONS(6138), 1, sym__newline_token, - ACTIONS(5159), 1, + ACTIONS(6170), 1, sym__latex_span_close, - STATE(1424), 1, + STATE(1712), 1, aux_sym_latex_span_repeat1, - STATE(1564), 2, + STATE(1919), 2, sym_backslash_escape, sym__soft_line_break, - ACTIONS(5147), 4, + ACTIONS(6136), 4, anon_sym_LBRACK, anon_sym_RBRACK, aux_sym_latex_span_token1, aux_sym_latex_span_token2, - [60689] = 6, - ACTIONS(5145), 1, + [14213] = 10, + ACTIONS(5978), 1, + sym_id_specifier, + ACTIONS(5980), 1, + sym_class_specifier, + ACTIONS(5982), 1, + sym_key_value_key, + ACTIONS(6008), 1, + anon_sym_RBRACE, + ACTIONS(6150), 1, + sym_commonmark_name, + ACTIONS(6172), 1, + sym__commonmark_whitespace, + STATE(1769), 1, + aux_sym_commonmark_attribute_repeat1, + STATE(1885), 1, + aux_sym_commonmark_attribute_repeat2, + STATE(2058), 1, + aux_sym_commonmark_attribute_repeat3, + STATE(2152), 1, + sym__attribute, + [14244] = 5, + ACTIONS(5614), 1, + sym__newline_token, + ACTIONS(6174), 1, + sym__whitespace_ge_2, + ACTIONS(6177), 1, + aux_sym__whitespace_token1, + STATE(1709), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + ACTIONS(5610), 4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [14265] = 10, + ACTIONS(5978), 1, + sym_id_specifier, + ACTIONS(5980), 1, + sym_class_specifier, + ACTIONS(5982), 1, + sym_key_value_key, + ACTIONS(6150), 1, + sym_commonmark_name, + ACTIONS(6180), 1, + anon_sym_RBRACE, + ACTIONS(6182), 1, + sym_raw_specifier, + STATE(1764), 1, + aux_sym_commonmark_attribute_repeat1, + STATE(1923), 1, + aux_sym_commonmark_attribute_repeat2, + STATE(2068), 1, + aux_sym_commonmark_attribute_repeat3, + STATE(2152), 1, + sym__attribute, + [14296] = 6, + ACTIONS(6134), 1, sym__backslash_escape, - ACTIONS(5149), 1, + ACTIONS(6138), 1, sym__newline_token, - ACTIONS(5161), 1, + ACTIONS(6184), 1, sym__latex_span_close, - STATE(1419), 1, + STATE(1714), 1, aux_sym_latex_span_repeat1, - STATE(1564), 2, + STATE(1919), 2, sym_backslash_escape, sym__soft_line_break, - ACTIONS(5147), 4, + ACTIONS(6136), 4, anon_sym_LBRACK, anon_sym_RBRACK, aux_sym_latex_span_token1, aux_sym_latex_span_token2, - [60712] = 3, - ACTIONS(3735), 1, - aux_sym__whitespace_token1, - ACTIONS(5163), 1, - sym__last_token_whitespace, - ACTIONS(3733), 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, - [60729] = 6, - ACTIONS(5145), 1, + [14319] = 6, + ACTIONS(6186), 1, sym__backslash_escape, - ACTIONS(5149), 1, + ACTIONS(6192), 1, sym__newline_token, - ACTIONS(5165), 1, + ACTIONS(6195), 1, sym__latex_span_close, - STATE(1432), 1, + STATE(1712), 1, aux_sym_latex_span_repeat1, - STATE(1564), 2, + STATE(1919), 2, sym_backslash_escape, sym__soft_line_break, - ACTIONS(5147), 4, + ACTIONS(6189), 4, anon_sym_LBRACK, anon_sym_RBRACK, aux_sym_latex_span_token1, aux_sym_latex_span_token2, - [60752] = 10, - ACTIONS(5001), 1, - sym_id_specifier, - ACTIONS(5003), 1, - sym_class_specifier, - ACTIONS(5005), 1, - sym_key_value_key, - ACTIONS(5117), 1, - anon_sym_RBRACE, - ACTIONS(5141), 1, - sym_commonmark_name, - ACTIONS(5167), 1, - sym__commonmark_whitespace, - STATE(1458), 1, - aux_sym_commonmark_attribute_repeat1, - STATE(1576), 1, - aux_sym_commonmark_attribute_repeat2, - STATE(1696), 1, - aux_sym_commonmark_attribute_repeat3, - STATE(1826), 1, - sym__attribute, - [60783] = 6, - ACTIONS(5145), 1, + [14342] = 6, + ACTIONS(6134), 1, sym__backslash_escape, - ACTIONS(5149), 1, + ACTIONS(6138), 1, sym__newline_token, - ACTIONS(5169), 1, + ACTIONS(6197), 1, sym__latex_span_close, - STATE(1400), 1, + STATE(1721), 1, aux_sym_latex_span_repeat1, - STATE(1564), 2, + STATE(1919), 2, sym_backslash_escape, sym__soft_line_break, - ACTIONS(5147), 4, + ACTIONS(6136), 4, anon_sym_LBRACK, anon_sym_RBRACK, aux_sym_latex_span_token1, aux_sym_latex_span_token2, - [60806] = 2, - ACTIONS(3927), 3, - sym_shortcode_name, - aux_sym_shortcode_naked_string_token1, - aux_sym_shortcode_naked_string_token2, - ACTIONS(3925), 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, - [60821] = 6, - ACTIONS(5145), 1, + [14365] = 6, + ACTIONS(6134), 1, sym__backslash_escape, - ACTIONS(5149), 1, + ACTIONS(6138), 1, sym__newline_token, - ACTIONS(5171), 1, + ACTIONS(6199), 1, sym__latex_span_close, - STATE(1416), 1, + STATE(1712), 1, aux_sym_latex_span_repeat1, - STATE(1564), 2, + STATE(1919), 2, sym_backslash_escape, sym__soft_line_break, - ACTIONS(5147), 4, + ACTIONS(6136), 4, anon_sym_LBRACK, anon_sym_RBRACK, aux_sym_latex_span_token1, aux_sym_latex_span_token2, - [60844] = 10, - ACTIONS(5001), 1, + [14388] = 10, + ACTIONS(5970), 1, + anon_sym_RBRACE, + ACTIONS(5978), 1, sym_id_specifier, - ACTIONS(5003), 1, + ACTIONS(5980), 1, sym_class_specifier, - ACTIONS(5005), 1, + ACTIONS(5982), 1, sym_key_value_key, - ACTIONS(5049), 1, - anon_sym_RBRACE, - ACTIONS(5141), 1, + ACTIONS(6150), 1, sym_commonmark_name, - ACTIONS(5173), 1, + ACTIONS(6201), 1, sym__commonmark_whitespace, - STATE(1465), 1, + STATE(1772), 1, aux_sym_commonmark_attribute_repeat1, - STATE(1630), 1, + STATE(1962), 1, aux_sym_commonmark_attribute_repeat2, - STATE(1711), 1, + STATE(2092), 1, aux_sym_commonmark_attribute_repeat3, - STATE(1826), 1, + STATE(2152), 1, sym__attribute, - [60875] = 3, - ACTIONS(5175), 1, - sym__last_token_whitespace, - ACTIONS(3735), 3, - sym_shortcode_name, - aux_sym_shortcode_naked_string_token1, - aux_sym_shortcode_naked_string_token2, - ACTIONS(3733), 6, - sym__shortcode_open, - aux_sym_shortcode_string_token1, - aux_sym_shortcode_string_token2, - sym_shortcode_number, - anon_sym_true, - anon_sym_false, - [60892] = 5, - ACTIONS(4574), 1, - sym__newline_token, - ACTIONS(5177), 1, - sym__whitespace_ge_2, - ACTIONS(5180), 1, - aux_sym__whitespace_token1, - STATE(1413), 3, - sym__whitespace, - sym__soft_line_break, - aux_sym_inline_link_repeat1, - ACTIONS(4570), 4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_LPAREN, - anon_sym_RPAREN, - [60913] = 6, - ACTIONS(5145), 1, + [14419] = 6, + ACTIONS(6134), 1, sym__backslash_escape, - ACTIONS(5149), 1, + ACTIONS(6138), 1, sym__newline_token, - ACTIONS(5183), 1, + ACTIONS(6203), 1, sym__latex_span_close, - STATE(1424), 1, + STATE(1697), 1, aux_sym_latex_span_repeat1, - STATE(1564), 2, + STATE(1919), 2, sym_backslash_escape, sym__soft_line_break, - ACTIONS(5147), 4, + ACTIONS(6136), 4, anon_sym_LBRACK, anon_sym_RBRACK, aux_sym_latex_span_token1, aux_sym_latex_span_token2, - [60936] = 6, - ACTIONS(5145), 1, + [14442] = 6, + ACTIONS(6134), 1, sym__backslash_escape, - ACTIONS(5149), 1, + ACTIONS(6138), 1, sym__newline_token, - ACTIONS(5185), 1, + ACTIONS(6205), 1, sym__latex_span_close, - STATE(1423), 1, + STATE(1712), 1, aux_sym_latex_span_repeat1, - STATE(1564), 2, + STATE(1919), 2, sym_backslash_escape, sym__soft_line_break, - ACTIONS(5147), 4, + ACTIONS(6136), 4, anon_sym_LBRACK, anon_sym_RBRACK, aux_sym_latex_span_token1, aux_sym_latex_span_token2, - [60959] = 6, - ACTIONS(5145), 1, + [14465] = 6, + ACTIONS(6134), 1, sym__backslash_escape, - ACTIONS(5149), 1, + ACTIONS(6138), 1, sym__newline_token, - ACTIONS(5187), 1, + ACTIONS(6207), 1, sym__latex_span_close, - STATE(1424), 1, + STATE(1712), 1, aux_sym_latex_span_repeat1, - STATE(1564), 2, + STATE(1919), 2, sym_backslash_escape, sym__soft_line_break, - ACTIONS(5147), 4, + ACTIONS(6136), 4, anon_sym_LBRACK, anon_sym_RBRACK, aux_sym_latex_span_token1, aux_sym_latex_span_token2, - [60982] = 2, - ACTIONS(3927), 3, + [14488] = 10, + ACTIONS(5978), 1, + sym_id_specifier, + ACTIONS(5980), 1, + sym_class_specifier, + ACTIONS(5982), 1, + sym_key_value_key, + ACTIONS(6150), 1, + sym_commonmark_name, + ACTIONS(6209), 1, + anon_sym_RBRACE, + ACTIONS(6211), 1, + sym_raw_specifier, + STATE(1754), 1, + aux_sym_commonmark_attribute_repeat1, + STATE(1839), 1, + aux_sym_commonmark_attribute_repeat2, + STATE(2044), 1, + aux_sym_commonmark_attribute_repeat3, + STATE(2152), 1, + sym__attribute, + [14519] = 2, + ACTIONS(4858), 3, sym_shortcode_name, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - ACTIONS(3925), 7, + ACTIONS(4856), 7, sym__shortcode_close_escaped, sym__shortcode_open, aux_sym_shortcode_string_token1, @@ -121736,10319 +151232,10681 @@ static const uint16_t ts_small_parse_table[] = { sym_shortcode_number, anon_sym_true, anon_sym_false, - [60997] = 6, - ACTIONS(5145), 1, + [14534] = 6, + ACTIONS(6134), 1, sym__backslash_escape, - ACTIONS(5149), 1, + ACTIONS(6138), 1, sym__newline_token, - ACTIONS(5189), 1, + ACTIONS(6213), 1, sym__latex_span_close, - STATE(1424), 1, + STATE(1712), 1, aux_sym_latex_span_repeat1, - STATE(1564), 2, + STATE(1919), 2, sym_backslash_escape, sym__soft_line_break, - ACTIONS(5147), 4, + ACTIONS(6136), 4, anon_sym_LBRACK, anon_sym_RBRACK, aux_sym_latex_span_token1, aux_sym_latex_span_token2, - [61020] = 6, - ACTIONS(5145), 1, + [14557] = 2, + ACTIONS(4858), 3, + sym_shortcode_name, + aux_sym_shortcode_naked_string_token1, + aux_sym_shortcode_naked_string_token2, + ACTIONS(4856), 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, + [14572] = 3, + ACTIONS(6215), 1, + sym__last_token_whitespace, + ACTIONS(4644), 3, + sym_shortcode_name, + aux_sym_shortcode_naked_string_token1, + aux_sym_shortcode_naked_string_token2, + ACTIONS(4642), 6, + sym__shortcode_open, + aux_sym_shortcode_string_token1, + aux_sym_shortcode_string_token2, + sym_shortcode_number, + anon_sym_true, + anon_sym_false, + [14589] = 6, + ACTIONS(6134), 1, sym__backslash_escape, - ACTIONS(5149), 1, + ACTIONS(6138), 1, sym__newline_token, - ACTIONS(5191), 1, + ACTIONS(6217), 1, sym__latex_span_close, - STATE(1424), 1, + STATE(1707), 1, aux_sym_latex_span_repeat1, - STATE(1564), 2, + STATE(1919), 2, sym_backslash_escape, sym__soft_line_break, - ACTIONS(5147), 4, + ACTIONS(6136), 4, anon_sym_LBRACK, anon_sym_RBRACK, aux_sym_latex_span_token1, aux_sym_latex_span_token2, - [61043] = 6, - ACTIONS(5145), 1, + [14612] = 3, + ACTIONS(4644), 1, + aux_sym__whitespace_token1, + ACTIONS(6219), 1, + sym__last_token_whitespace, + ACTIONS(4642), 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, + [14629] = 6, + ACTIONS(6134), 1, sym__backslash_escape, - ACTIONS(5149), 1, + ACTIONS(6138), 1, sym__newline_token, - ACTIONS(5193), 1, + ACTIONS(6221), 1, sym__latex_span_close, - STATE(1414), 1, + STATE(1712), 1, aux_sym_latex_span_repeat1, - STATE(1564), 2, + STATE(1919), 2, sym_backslash_escape, sym__soft_line_break, - ACTIONS(5147), 4, + ACTIONS(6136), 4, anon_sym_LBRACK, anon_sym_RBRACK, aux_sym_latex_span_token1, aux_sym_latex_span_token2, - [61066] = 6, - ACTIONS(5145), 1, + [14652] = 6, + ACTIONS(6134), 1, sym__backslash_escape, - ACTIONS(5149), 1, + ACTIONS(6138), 1, sym__newline_token, - ACTIONS(5195), 1, + ACTIONS(6223), 1, sym__latex_span_close, - STATE(1424), 1, + STATE(1740), 1, aux_sym_latex_span_repeat1, - STATE(1564), 2, + STATE(1919), 2, sym_backslash_escape, sym__soft_line_break, - ACTIONS(5147), 4, + ACTIONS(6136), 4, anon_sym_LBRACK, anon_sym_RBRACK, aux_sym_latex_span_token1, aux_sym_latex_span_token2, - [61089] = 10, - ACTIONS(5001), 1, + [14675] = 10, + ACTIONS(5978), 1, sym_id_specifier, - ACTIONS(5003), 1, + ACTIONS(5980), 1, sym_class_specifier, - ACTIONS(5005), 1, + ACTIONS(5982), 1, sym_key_value_key, - ACTIONS(5085), 1, + ACTIONS(6048), 1, anon_sym_RBRACE, - ACTIONS(5141), 1, + ACTIONS(6150), 1, sym_commonmark_name, - ACTIONS(5197), 1, + ACTIONS(6225), 1, sym__commonmark_whitespace, - STATE(1444), 1, + STATE(1761), 1, aux_sym_commonmark_attribute_repeat1, - STATE(1474), 1, + STATE(1916), 1, aux_sym_commonmark_attribute_repeat2, - STATE(1698), 1, + STATE(2041), 1, aux_sym_commonmark_attribute_repeat3, - STATE(1826), 1, + STATE(2152), 1, + sym__attribute, + [14706] = 10, + ACTIONS(5978), 1, + sym_id_specifier, + ACTIONS(5980), 1, + sym_class_specifier, + ACTIONS(5982), 1, + sym_key_value_key, + ACTIONS(6090), 1, + anon_sym_RBRACE, + ACTIONS(6150), 1, + sym_commonmark_name, + ACTIONS(6227), 1, + sym__commonmark_whitespace, + STATE(1773), 1, + aux_sym_commonmark_attribute_repeat1, + STATE(1775), 1, + aux_sym_commonmark_attribute_repeat2, + STATE(2035), 1, + aux_sym_commonmark_attribute_repeat3, + STATE(2152), 1, + sym__attribute, + [14737] = 10, + ACTIONS(5978), 1, + sym_id_specifier, + ACTIONS(5980), 1, + sym_class_specifier, + ACTIONS(5982), 1, + sym_key_value_key, + ACTIONS(6150), 1, + sym_commonmark_name, + ACTIONS(6229), 1, + anon_sym_RBRACE, + ACTIONS(6231), 1, + sym_raw_specifier, + STATE(1749), 1, + aux_sym_commonmark_attribute_repeat1, + STATE(1867), 1, + aux_sym_commonmark_attribute_repeat2, + STATE(2033), 1, + aux_sym_commonmark_attribute_repeat3, + STATE(2152), 1, + sym__attribute, + [14768] = 10, + ACTIONS(5978), 1, + sym_id_specifier, + ACTIONS(5980), 1, + sym_class_specifier, + ACTIONS(5982), 1, + sym_key_value_key, + ACTIONS(5994), 1, + anon_sym_RBRACE, + ACTIONS(6150), 1, + sym_commonmark_name, + ACTIONS(6233), 1, + sym__commonmark_whitespace, + STATE(1747), 1, + aux_sym_commonmark_attribute_repeat1, + STATE(1875), 1, + aux_sym_commonmark_attribute_repeat2, + STATE(2093), 1, + aux_sym_commonmark_attribute_repeat3, + STATE(2152), 1, sym__attribute, - [61120] = 6, - ACTIONS(5145), 1, + [14799] = 6, + ACTIONS(6134), 1, sym__backslash_escape, - ACTIONS(5149), 1, + ACTIONS(6138), 1, sym__newline_token, - ACTIONS(5199), 1, + ACTIONS(6235), 1, sym__latex_span_close, - STATE(1424), 1, + STATE(1726), 1, aux_sym_latex_span_repeat1, - STATE(1564), 2, + STATE(1919), 2, sym_backslash_escape, sym__soft_line_break, - ACTIONS(5147), 4, + ACTIONS(6136), 4, anon_sym_LBRACK, anon_sym_RBRACK, aux_sym_latex_span_token1, aux_sym_latex_span_token2, - [61143] = 6, - ACTIONS(5201), 1, + [14822] = 6, + ACTIONS(6134), 1, sym__backslash_escape, - ACTIONS(5207), 1, + ACTIONS(6138), 1, sym__newline_token, - ACTIONS(5210), 1, + ACTIONS(6237), 1, sym__latex_span_close, - STATE(1424), 1, + STATE(1712), 1, aux_sym_latex_span_repeat1, - STATE(1564), 2, + STATE(1919), 2, sym_backslash_escape, sym__soft_line_break, - ACTIONS(5204), 4, + ACTIONS(6136), 4, anon_sym_LBRACK, anon_sym_RBRACK, aux_sym_latex_span_token1, aux_sym_latex_span_token2, - [61166] = 10, - ACTIONS(5001), 1, + [14845] = 10, + ACTIONS(5978), 1, sym_id_specifier, - ACTIONS(5003), 1, + ACTIONS(5980), 1, sym_class_specifier, - ACTIONS(5005), 1, + ACTIONS(5982), 1, sym_key_value_key, - ACTIONS(5141), 1, + ACTIONS(6150), 1, sym_commonmark_name, - ACTIONS(5212), 1, + ACTIONS(6239), 1, anon_sym_RBRACE, - ACTIONS(5214), 1, + ACTIONS(6241), 1, sym_raw_specifier, - STATE(1460), 1, + STATE(1750), 1, aux_sym_commonmark_attribute_repeat1, - STATE(1603), 1, + STATE(1967), 1, aux_sym_commonmark_attribute_repeat2, - STATE(1689), 1, + STATE(2014), 1, aux_sym_commonmark_attribute_repeat3, - STATE(1826), 1, + STATE(2152), 1, sym__attribute, - [61197] = 10, - ACTIONS(5001), 1, + [14876] = 10, + ACTIONS(5978), 1, sym_id_specifier, - ACTIONS(5003), 1, + ACTIONS(5980), 1, sym_class_specifier, - ACTIONS(5005), 1, + ACTIONS(5982), 1, sym_key_value_key, - ACTIONS(5141), 1, - sym_commonmark_name, - ACTIONS(5216), 1, + ACTIONS(6116), 1, anon_sym_RBRACE, - ACTIONS(5218), 1, - sym_raw_specifier, - STATE(1452), 1, + ACTIONS(6150), 1, + sym_commonmark_name, + ACTIONS(6243), 1, + sym__commonmark_whitespace, + STATE(1756), 1, aux_sym_commonmark_attribute_repeat1, - STATE(1531), 1, + STATE(1831), 1, aux_sym_commonmark_attribute_repeat2, - STATE(1744), 1, + STATE(2040), 1, aux_sym_commonmark_attribute_repeat3, - STATE(1826), 1, + STATE(2152), 1, sym__attribute, - [61228] = 10, - ACTIONS(5001), 1, + [14907] = 10, + ACTIONS(5978), 1, sym_id_specifier, - ACTIONS(5003), 1, + ACTIONS(5980), 1, sym_class_specifier, - ACTIONS(5005), 1, + ACTIONS(5982), 1, sym_key_value_key, - ACTIONS(5141), 1, - sym_commonmark_name, - ACTIONS(5220), 1, + ACTIONS(6108), 1, anon_sym_RBRACE, - ACTIONS(5222), 1, - sym_raw_specifier, - STATE(1466), 1, + ACTIONS(6150), 1, + sym_commonmark_name, + ACTIONS(6245), 1, + sym__commonmark_whitespace, + STATE(1742), 1, aux_sym_commonmark_attribute_repeat1, - STATE(1632), 1, + STATE(1829), 1, aux_sym_commonmark_attribute_repeat2, - STATE(1715), 1, + STATE(2042), 1, aux_sym_commonmark_attribute_repeat3, - STATE(1826), 1, + STATE(2152), 1, sym__attribute, - [61259] = 10, - ACTIONS(5001), 1, + [14938] = 10, + ACTIONS(5978), 1, sym_id_specifier, - ACTIONS(5003), 1, + ACTIONS(5980), 1, sym_class_specifier, - ACTIONS(5005), 1, + ACTIONS(5982), 1, sym_key_value_key, - ACTIONS(5141), 1, + ACTIONS(6150), 1, sym_commonmark_name, - ACTIONS(5224), 1, + ACTIONS(6247), 1, anon_sym_RBRACE, - ACTIONS(5226), 1, + ACTIONS(6249), 1, sym_raw_specifier, - STATE(1445), 1, + STATE(1762), 1, aux_sym_commonmark_attribute_repeat1, - STATE(1480), 1, + STATE(1833), 1, aux_sym_commonmark_attribute_repeat2, - STATE(1701), 1, + STATE(2017), 1, aux_sym_commonmark_attribute_repeat3, - STATE(1826), 1, + STATE(2152), 1, sym__attribute, - [61290] = 10, - ACTIONS(4993), 1, - anon_sym_RBRACE, - ACTIONS(5001), 1, + [14969] = 10, + ACTIONS(5978), 1, sym_id_specifier, - ACTIONS(5003), 1, + ACTIONS(5980), 1, sym_class_specifier, - ACTIONS(5005), 1, + ACTIONS(5982), 1, sym_key_value_key, - ACTIONS(5141), 1, + ACTIONS(6150), 1, sym_commonmark_name, - ACTIONS(5228), 1, - sym__commonmark_whitespace, - STATE(1440), 1, + ACTIONS(6251), 1, + anon_sym_RBRACE, + ACTIONS(6253), 1, + sym_raw_specifier, + STATE(1768), 1, aux_sym_commonmark_attribute_repeat1, - STATE(1591), 1, + STATE(1796), 1, aux_sym_commonmark_attribute_repeat2, - STATE(1690), 1, + STATE(2045), 1, aux_sym_commonmark_attribute_repeat3, - STATE(1826), 1, + STATE(2152), 1, sym__attribute, - [61321] = 6, - ACTIONS(5145), 1, - sym__backslash_escape, - ACTIONS(5149), 1, - sym__newline_token, - ACTIONS(5230), 1, - sym__latex_span_close, - STATE(1403), 1, - aux_sym_latex_span_repeat1, - STATE(1564), 2, - sym_backslash_escape, - sym__soft_line_break, - ACTIONS(5147), 4, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_latex_span_token1, - aux_sym_latex_span_token2, - [61344] = 10, - ACTIONS(5001), 1, + [15000] = 10, + ACTIONS(5978), 1, sym_id_specifier, - ACTIONS(5003), 1, + ACTIONS(5980), 1, sym_class_specifier, - ACTIONS(5005), 1, + ACTIONS(5982), 1, sym_key_value_key, - ACTIONS(5127), 1, - anon_sym_RBRACE, - ACTIONS(5141), 1, + ACTIONS(6150), 1, sym_commonmark_name, - ACTIONS(5232), 1, - sym__commonmark_whitespace, - STATE(1455), 1, + ACTIONS(6255), 1, + anon_sym_RBRACE, + ACTIONS(6257), 1, + sym_raw_specifier, + STATE(1759), 1, aux_sym_commonmark_attribute_repeat1, - STATE(1470), 1, + STATE(1780), 1, aux_sym_commonmark_attribute_repeat2, - STATE(1712), 1, + STATE(2028), 1, aux_sym_commonmark_attribute_repeat3, - STATE(1826), 1, + STATE(2152), 1, sym__attribute, - [61375] = 6, - ACTIONS(5145), 1, - sym__backslash_escape, - ACTIONS(5149), 1, - sym__newline_token, - ACTIONS(5234), 1, - sym__latex_span_close, - STATE(1424), 1, - aux_sym_latex_span_repeat1, - STATE(1564), 2, - sym_backslash_escape, - sym__soft_line_break, - ACTIONS(5147), 4, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_latex_span_token1, - aux_sym_latex_span_token2, - [61398] = 6, - ACTIONS(5145), 1, + [15031] = 6, + ACTIONS(6134), 1, sym__backslash_escape, - ACTIONS(5149), 1, + ACTIONS(6138), 1, sym__newline_token, - ACTIONS(5236), 1, + ACTIONS(6259), 1, sym__latex_span_close, - STATE(1418), 1, + STATE(1712), 1, aux_sym_latex_span_repeat1, - STATE(1564), 2, + STATE(1919), 2, sym_backslash_escape, sym__soft_line_break, - ACTIONS(5147), 4, + ACTIONS(6136), 4, anon_sym_LBRACK, anon_sym_RBRACK, aux_sym_latex_span_token1, aux_sym_latex_span_token2, - [61421] = 10, - ACTIONS(5001), 1, + [15054] = 10, + ACTIONS(5978), 1, sym_id_specifier, - ACTIONS(5003), 1, + ACTIONS(5980), 1, sym_class_specifier, - ACTIONS(5005), 1, + ACTIONS(5982), 1, sym_key_value_key, - ACTIONS(5141), 1, - sym_commonmark_name, - ACTIONS(5238), 1, + ACTIONS(6126), 1, anon_sym_RBRACE, - ACTIONS(5240), 1, - sym_raw_specifier, - STATE(1448), 1, + ACTIONS(6150), 1, + sym_commonmark_name, + ACTIONS(6261), 1, + sym__commonmark_whitespace, + STATE(1755), 1, aux_sym_commonmark_attribute_repeat1, - STATE(1519), 1, + STATE(1790), 1, aux_sym_commonmark_attribute_repeat2, - STATE(1721), 1, + STATE(2019), 1, aux_sym_commonmark_attribute_repeat3, - STATE(1826), 1, + STATE(2152), 1, sym__attribute, - [61452] = 10, - ACTIONS(5001), 1, + [15085] = 9, + ACTIONS(5978), 1, sym_id_specifier, - ACTIONS(5003), 1, + ACTIONS(5980), 1, sym_class_specifier, - ACTIONS(5005), 1, + ACTIONS(5982), 1, sym_key_value_key, - ACTIONS(5141), 1, + ACTIONS(6150), 1, sym_commonmark_name, - ACTIONS(5242), 1, + ACTIONS(6209), 1, anon_sym_RBRACE, - ACTIONS(5244), 1, - sym_raw_specifier, - STATE(1467), 1, - aux_sym_commonmark_attribute_repeat1, - STATE(1636), 1, + STATE(1839), 1, aux_sym_commonmark_attribute_repeat2, - STATE(1714), 1, + STATE(2009), 1, + aux_sym_commonmark_attribute_repeat1, + STATE(2044), 1, aux_sym_commonmark_attribute_repeat3, - STATE(1826), 1, + STATE(2152), 1, sym__attribute, - [61483] = 6, - ACTIONS(5145), 1, - sym__backslash_escape, - ACTIONS(5149), 1, - sym__newline_token, - ACTIONS(5246), 1, - sym__latex_span_close, - STATE(1421), 1, - aux_sym_latex_span_repeat1, - STATE(1564), 2, - sym_backslash_escape, - sym__soft_line_break, - ACTIONS(5147), 4, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_latex_span_token1, - aux_sym_latex_span_token2, - [61506] = 10, - ACTIONS(5001), 1, + [15113] = 9, + ACTIONS(5978), 1, sym_id_specifier, - ACTIONS(5003), 1, + ACTIONS(5980), 1, sym_class_specifier, - ACTIONS(5005), 1, + ACTIONS(5982), 1, sym_key_value_key, - ACTIONS(5041), 1, - anon_sym_RBRACE, - ACTIONS(5141), 1, + ACTIONS(6150), 1, sym_commonmark_name, - ACTIONS(5248), 1, - sym__commonmark_whitespace, - STATE(1450), 1, + ACTIONS(6229), 1, + anon_sym_RBRACE, + STATE(1749), 1, aux_sym_commonmark_attribute_repeat1, - STATE(1527), 1, + STATE(1867), 1, aux_sym_commonmark_attribute_repeat2, - STATE(1724), 1, + STATE(2033), 1, aux_sym_commonmark_attribute_repeat3, - STATE(1826), 1, + STATE(2152), 1, sym__attribute, - [61537] = 10, - ACTIONS(5001), 1, + [15141] = 2, + ACTIONS(4858), 3, + sym_shortcode_name, + aux_sym_shortcode_naked_string_token1, + aux_sym_shortcode_naked_string_token2, + ACTIONS(4856), 6, + sym__shortcode_open, + aux_sym_shortcode_string_token1, + aux_sym_shortcode_string_token2, + sym_shortcode_number, + anon_sym_true, + anon_sym_false, + [15155] = 9, + ACTIONS(5978), 1, sym_id_specifier, - ACTIONS(5003), 1, + ACTIONS(5980), 1, sym_class_specifier, - ACTIONS(5005), 1, + ACTIONS(5982), 1, sym_key_value_key, - ACTIONS(5141), 1, + ACTIONS(6150), 1, sym_commonmark_name, - ACTIONS(5250), 1, + ACTIONS(6263), 1, anon_sym_RBRACE, - ACTIONS(5252), 1, - sym_raw_specifier, - STATE(1459), 1, - aux_sym_commonmark_attribute_repeat1, - STATE(1584), 1, + STATE(1966), 1, aux_sym_commonmark_attribute_repeat2, - STATE(1699), 1, + STATE(2009), 1, + aux_sym_commonmark_attribute_repeat1, + STATE(2011), 1, aux_sym_commonmark_attribute_repeat3, - STATE(1826), 1, + STATE(2152), 1, sym__attribute, - [61568] = 10, - ACTIONS(5001), 1, + [15183] = 9, + ACTIONS(5978), 1, sym_id_specifier, - ACTIONS(5003), 1, + ACTIONS(5980), 1, sym_class_specifier, - ACTIONS(5005), 1, + ACTIONS(5982), 1, sym_key_value_key, - ACTIONS(5097), 1, - anon_sym_RBRACE, - ACTIONS(5141), 1, + ACTIONS(6150), 1, sym_commonmark_name, - ACTIONS(5254), 1, - sym__commonmark_whitespace, - STATE(1441), 1, + ACTIONS(6154), 1, + anon_sym_RBRACE, + STATE(1758), 1, aux_sym_commonmark_attribute_repeat1, - STATE(1675), 1, + STATE(1938), 1, aux_sym_commonmark_attribute_repeat2, - STATE(1743), 1, + STATE(2025), 1, aux_sym_commonmark_attribute_repeat3, - STATE(1826), 1, + STATE(2152), 1, sym__attribute, - [61599] = 9, - ACTIONS(5001), 1, + [15211] = 9, + ACTIONS(5978), 1, sym_id_specifier, - ACTIONS(5003), 1, + ACTIONS(5980), 1, sym_class_specifier, - ACTIONS(5005), 1, + ACTIONS(5982), 1, sym_key_value_key, - ACTIONS(5137), 1, + ACTIONS(6146), 1, anon_sym_RBRACE, - ACTIONS(5141), 1, + ACTIONS(6150), 1, sym_commonmark_name, - STATE(1595), 1, + STATE(1878), 1, aux_sym_commonmark_attribute_repeat2, - STATE(1680), 1, + STATE(2009), 1, aux_sym_commonmark_attribute_repeat1, - STATE(1695), 1, + STATE(2020), 1, aux_sym_commonmark_attribute_repeat3, - STATE(1826), 1, + STATE(2152), 1, sym__attribute, - [61627] = 9, - ACTIONS(5001), 1, + [15239] = 2, + ACTIONS(4858), 1, + aux_sym__whitespace_token1, + ACTIONS(4856), 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, + [15253] = 9, + ACTIONS(5978), 1, sym_id_specifier, - ACTIONS(5003), 1, + ACTIONS(5980), 1, sym_class_specifier, - ACTIONS(5005), 1, + ACTIONS(5982), 1, sym_key_value_key, - ACTIONS(5141), 1, + ACTIONS(6150), 1, sym_commonmark_name, - ACTIONS(5155), 1, + ACTIONS(6265), 1, anon_sym_RBRACE, - STATE(1577), 1, + STATE(1929), 1, aux_sym_commonmark_attribute_repeat2, - STATE(1680), 1, + STATE(2009), 1, aux_sym_commonmark_attribute_repeat1, - STATE(1682), 1, + STATE(2021), 1, aux_sym_commonmark_attribute_repeat3, - STATE(1826), 1, + STATE(2152), 1, sym__attribute, - [61655] = 9, - ACTIONS(5001), 1, + [15281] = 9, + ACTIONS(5978), 1, sym_id_specifier, - ACTIONS(5003), 1, + ACTIONS(5980), 1, sym_class_specifier, - ACTIONS(5005), 1, + ACTIONS(5982), 1, sym_key_value_key, - ACTIONS(5141), 1, + ACTIONS(6150), 1, sym_commonmark_name, - ACTIONS(5256), 1, + ACTIONS(6267), 1, anon_sym_RBRACE, - STATE(1599), 1, + STATE(1975), 1, aux_sym_commonmark_attribute_repeat2, - STATE(1680), 1, + STATE(2009), 1, aux_sym_commonmark_attribute_repeat1, - STATE(1703), 1, + STATE(2024), 1, aux_sym_commonmark_attribute_repeat3, - STATE(1826), 1, + STATE(2152), 1, sym__attribute, - [61683] = 9, - ACTIONS(5001), 1, + [15309] = 9, + ACTIONS(5978), 1, sym_id_specifier, - ACTIONS(5003), 1, + ACTIONS(5980), 1, sym_class_specifier, - ACTIONS(5005), 1, + ACTIONS(5982), 1, sym_key_value_key, - ACTIONS(5141), 1, + ACTIONS(6150), 1, sym_commonmark_name, - ACTIONS(5224), 1, + ACTIONS(6166), 1, anon_sym_RBRACE, - STATE(1445), 1, + STATE(1745), 1, aux_sym_commonmark_attribute_repeat1, - STATE(1480), 1, - aux_sym_commonmark_attribute_repeat2, - STATE(1701), 1, - aux_sym_commonmark_attribute_repeat3, - STATE(1826), 1, - sym__attribute, - [61711] = 9, - ACTIONS(5001), 1, - sym_id_specifier, - ACTIONS(5003), 1, - sym_class_specifier, - ACTIONS(5005), 1, - sym_key_value_key, - ACTIONS(5141), 1, - sym_commonmark_name, - ACTIONS(5224), 1, - anon_sym_RBRACE, - STATE(1480), 1, + STATE(1956), 1, aux_sym_commonmark_attribute_repeat2, - STATE(1680), 1, - aux_sym_commonmark_attribute_repeat1, - STATE(1701), 1, + STATE(2054), 1, aux_sym_commonmark_attribute_repeat3, - STATE(1826), 1, + STATE(2152), 1, sym__attribute, - [61739] = 9, - ACTIONS(5001), 1, + [15337] = 9, + ACTIONS(5978), 1, sym_id_specifier, - ACTIONS(5003), 1, + ACTIONS(5980), 1, sym_class_specifier, - ACTIONS(5005), 1, + ACTIONS(5982), 1, sym_key_value_key, - ACTIONS(5141), 1, + ACTIONS(6150), 1, sym_commonmark_name, - ACTIONS(5258), 1, + ACTIONS(6166), 1, anon_sym_RBRACE, - STATE(1490), 1, + STATE(1956), 1, aux_sym_commonmark_attribute_repeat2, - STATE(1680), 1, + STATE(2009), 1, aux_sym_commonmark_attribute_repeat1, - STATE(1707), 1, + STATE(2054), 1, aux_sym_commonmark_attribute_repeat3, - STATE(1826), 1, + STATE(2152), 1, sym__attribute, - [61767] = 9, - ACTIONS(5001), 1, + [15365] = 9, + ACTIONS(5978), 1, sym_id_specifier, - ACTIONS(5003), 1, + ACTIONS(5980), 1, sym_class_specifier, - ACTIONS(5005), 1, + ACTIONS(5982), 1, sym_key_value_key, - ACTIONS(5141), 1, + ACTIONS(6150), 1, sym_commonmark_name, - ACTIONS(5238), 1, + ACTIONS(6180), 1, anon_sym_RBRACE, - STATE(1448), 1, + STATE(1764), 1, aux_sym_commonmark_attribute_repeat1, - STATE(1519), 1, + STATE(1923), 1, aux_sym_commonmark_attribute_repeat2, - STATE(1721), 1, + STATE(2068), 1, aux_sym_commonmark_attribute_repeat3, - STATE(1826), 1, + STATE(2152), 1, sym__attribute, - [61795] = 9, - ACTIONS(5001), 1, + [15393] = 9, + ACTIONS(5978), 1, sym_id_specifier, - ACTIONS(5003), 1, + ACTIONS(5980), 1, sym_class_specifier, - ACTIONS(5005), 1, + ACTIONS(5982), 1, sym_key_value_key, - ACTIONS(5141), 1, + ACTIONS(6150), 1, sym_commonmark_name, - ACTIONS(5238), 1, + ACTIONS(6269), 1, anon_sym_RBRACE, - STATE(1519), 1, + STATE(1866), 1, aux_sym_commonmark_attribute_repeat2, - STATE(1680), 1, + STATE(2009), 1, aux_sym_commonmark_attribute_repeat1, - STATE(1721), 1, + STATE(2030), 1, aux_sym_commonmark_attribute_repeat3, - STATE(1826), 1, + STATE(2152), 1, sym__attribute, - [61823] = 9, - ACTIONS(5001), 1, + [15421] = 9, + ACTIONS(5978), 1, sym_id_specifier, - ACTIONS(5003), 1, + ACTIONS(5980), 1, sym_class_specifier, - ACTIONS(5005), 1, + ACTIONS(5982), 1, sym_key_value_key, - ACTIONS(5141), 1, + ACTIONS(6150), 1, sym_commonmark_name, - ACTIONS(5260), 1, + ACTIONS(6251), 1, anon_sym_RBRACE, - STATE(1544), 1, + STATE(1796), 1, aux_sym_commonmark_attribute_repeat2, - STATE(1680), 1, + STATE(2009), 1, aux_sym_commonmark_attribute_repeat1, - STATE(1686), 1, + STATE(2045), 1, aux_sym_commonmark_attribute_repeat3, - STATE(1826), 1, + STATE(2152), 1, sym__attribute, - [61851] = 9, - ACTIONS(5001), 1, + [15449] = 9, + ACTIONS(5978), 1, sym_id_specifier, - ACTIONS(5003), 1, + ACTIONS(5980), 1, sym_class_specifier, - ACTIONS(5005), 1, + ACTIONS(5982), 1, sym_key_value_key, - ACTIONS(5141), 1, + ACTIONS(6150), 1, sym_commonmark_name, - ACTIONS(5216), 1, + ACTIONS(6255), 1, anon_sym_RBRACE, - STATE(1452), 1, - aux_sym_commonmark_attribute_repeat1, - STATE(1531), 1, + STATE(1780), 1, aux_sym_commonmark_attribute_repeat2, - STATE(1744), 1, + STATE(2009), 1, + aux_sym_commonmark_attribute_repeat1, + STATE(2028), 1, aux_sym_commonmark_attribute_repeat3, - STATE(1826), 1, + STATE(2152), 1, sym__attribute, - [61879] = 9, - ACTIONS(5001), 1, + [15477] = 9, + ACTIONS(5978), 1, sym_id_specifier, - ACTIONS(5003), 1, + ACTIONS(5980), 1, sym_class_specifier, - ACTIONS(5005), 1, + ACTIONS(5982), 1, sym_key_value_key, - ACTIONS(5141), 1, + ACTIONS(6150), 1, sym_commonmark_name, - ACTIONS(5216), 1, + ACTIONS(6209), 1, anon_sym_RBRACE, - STATE(1531), 1, - aux_sym_commonmark_attribute_repeat2, - STATE(1680), 1, + STATE(1754), 1, aux_sym_commonmark_attribute_repeat1, - STATE(1744), 1, + STATE(1839), 1, + aux_sym_commonmark_attribute_repeat2, + STATE(2044), 1, aux_sym_commonmark_attribute_repeat3, - STATE(1826), 1, + STATE(2152), 1, sym__attribute, - [61907] = 9, - ACTIONS(5001), 1, + [15505] = 9, + ACTIONS(5978), 1, sym_id_specifier, - ACTIONS(5003), 1, + ACTIONS(5980), 1, sym_class_specifier, - ACTIONS(5005), 1, + ACTIONS(5982), 1, sym_key_value_key, - ACTIONS(5137), 1, - anon_sym_RBRACE, - ACTIONS(5141), 1, + ACTIONS(6150), 1, sym_commonmark_name, - STATE(1442), 1, - aux_sym_commonmark_attribute_repeat1, - STATE(1595), 1, + ACTIONS(6271), 1, + anon_sym_RBRACE, + STATE(1965), 1, aux_sym_commonmark_attribute_repeat2, - STATE(1695), 1, + STATE(2009), 1, + aux_sym_commonmark_attribute_repeat1, + STATE(2012), 1, aux_sym_commonmark_attribute_repeat3, - STATE(1826), 1, + STATE(2152), 1, sym__attribute, - [61935] = 9, - ACTIONS(5001), 1, + [15533] = 9, + ACTIONS(5978), 1, sym_id_specifier, - ACTIONS(5003), 1, + ACTIONS(5980), 1, sym_class_specifier, - ACTIONS(5005), 1, + ACTIONS(5982), 1, sym_key_value_key, - ACTIONS(5141), 1, + ACTIONS(6150), 1, sym_commonmark_name, - ACTIONS(5262), 1, + ACTIONS(6273), 1, anon_sym_RBRACE, - STATE(1539), 1, + STATE(1832), 1, aux_sym_commonmark_attribute_repeat2, - STATE(1680), 1, + STATE(2009), 1, aux_sym_commonmark_attribute_repeat1, - STATE(1685), 1, + STATE(2099), 1, aux_sym_commonmark_attribute_repeat3, - STATE(1826), 1, + STATE(2152), 1, sym__attribute, - [61963] = 2, - ACTIONS(3927), 1, - aux_sym__whitespace_token1, - ACTIONS(3925), 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, - [61977] = 9, - ACTIONS(5001), 1, + [15561] = 9, + ACTIONS(5978), 1, sym_id_specifier, - ACTIONS(5003), 1, + ACTIONS(5980), 1, sym_class_specifier, - ACTIONS(5005), 1, + ACTIONS(5982), 1, sym_key_value_key, - ACTIONS(5141), 1, - sym_commonmark_name, - ACTIONS(5212), 1, + ACTIONS(6146), 1, anon_sym_RBRACE, - STATE(1460), 1, + ACTIONS(6150), 1, + sym_commonmark_name, + STATE(1765), 1, aux_sym_commonmark_attribute_repeat1, - STATE(1603), 1, + STATE(1878), 1, aux_sym_commonmark_attribute_repeat2, - STATE(1689), 1, + STATE(2020), 1, aux_sym_commonmark_attribute_repeat3, - STATE(1826), 1, + STATE(2152), 1, sym__attribute, - [62005] = 9, - ACTIONS(5001), 1, + [15589] = 9, + ACTIONS(5978), 1, sym_id_specifier, - ACTIONS(5003), 1, + ACTIONS(5980), 1, sym_class_specifier, - ACTIONS(5005), 1, + ACTIONS(5982), 1, sym_key_value_key, - ACTIONS(5141), 1, + ACTIONS(6150), 1, sym_commonmark_name, - ACTIONS(5212), 1, + ACTIONS(6180), 1, anon_sym_RBRACE, - STATE(1603), 1, + STATE(1923), 1, aux_sym_commonmark_attribute_repeat2, - STATE(1680), 1, + STATE(2009), 1, aux_sym_commonmark_attribute_repeat1, - STATE(1689), 1, + STATE(2068), 1, aux_sym_commonmark_attribute_repeat3, - STATE(1826), 1, + STATE(2152), 1, sym__attribute, - [62033] = 9, - ACTIONS(5001), 1, + [15617] = 9, + ACTIONS(5978), 1, sym_id_specifier, - ACTIONS(5003), 1, + ACTIONS(5980), 1, sym_class_specifier, - ACTIONS(5005), 1, + ACTIONS(5982), 1, sym_key_value_key, - ACTIONS(5141), 1, + ACTIONS(6150), 1, sym_commonmark_name, - ACTIONS(5264), 1, + ACTIONS(6275), 1, anon_sym_RBRACE, - STATE(1625), 1, + STATE(1840), 1, aux_sym_commonmark_attribute_repeat2, - STATE(1680), 1, + STATE(2009), 1, aux_sym_commonmark_attribute_repeat1, - STATE(1687), 1, + STATE(2050), 1, aux_sym_commonmark_attribute_repeat3, - STATE(1826), 1, + STATE(2152), 1, sym__attribute, - [62061] = 9, - ACTIONS(5001), 1, + [15645] = 9, + ACTIONS(5978), 1, sym_id_specifier, - ACTIONS(5003), 1, + ACTIONS(5980), 1, sym_class_specifier, - ACTIONS(5005), 1, + ACTIONS(5982), 1, sym_key_value_key, - ACTIONS(5141), 1, + ACTIONS(6150), 1, sym_commonmark_name, - ACTIONS(5250), 1, + ACTIONS(6255), 1, anon_sym_RBRACE, - STATE(1459), 1, + STATE(1759), 1, aux_sym_commonmark_attribute_repeat1, - STATE(1584), 1, + STATE(1780), 1, aux_sym_commonmark_attribute_repeat2, - STATE(1699), 1, + STATE(2028), 1, aux_sym_commonmark_attribute_repeat3, - STATE(1826), 1, + STATE(2152), 1, sym__attribute, - [62089] = 9, - ACTIONS(5001), 1, + [15673] = 9, + ACTIONS(5978), 1, sym_id_specifier, - ACTIONS(5003), 1, + ACTIONS(5980), 1, sym_class_specifier, - ACTIONS(5005), 1, + ACTIONS(5982), 1, sym_key_value_key, - ACTIONS(5141), 1, + ACTIONS(6150), 1, sym_commonmark_name, - ACTIONS(5250), 1, + ACTIONS(6277), 1, anon_sym_RBRACE, - STATE(1584), 1, + STATE(1931), 1, aux_sym_commonmark_attribute_repeat2, - STATE(1680), 1, + STATE(2009), 1, aux_sym_commonmark_attribute_repeat1, - STATE(1699), 1, + STATE(2016), 1, aux_sym_commonmark_attribute_repeat3, - STATE(1826), 1, + STATE(2152), 1, sym__attribute, - [62117] = 9, - ACTIONS(5001), 1, + [15701] = 9, + ACTIONS(5978), 1, sym_id_specifier, - ACTIONS(5003), 1, + ACTIONS(5980), 1, sym_class_specifier, - ACTIONS(5005), 1, + ACTIONS(5982), 1, sym_key_value_key, - ACTIONS(5141), 1, + ACTIONS(6150), 1, sym_commonmark_name, - ACTIONS(5266), 1, + ACTIONS(6279), 1, anon_sym_RBRACE, - STATE(1594), 1, + STATE(1884), 1, aux_sym_commonmark_attribute_repeat2, - STATE(1680), 1, + STATE(2009), 1, aux_sym_commonmark_attribute_repeat1, - STATE(1702), 1, + STATE(2032), 1, aux_sym_commonmark_attribute_repeat3, - STATE(1826), 1, + STATE(2152), 1, sym__attribute, - [62145] = 9, - ACTIONS(5001), 1, + [15729] = 9, + ACTIONS(5978), 1, sym_id_specifier, - ACTIONS(5003), 1, + ACTIONS(5980), 1, sym_class_specifier, - ACTIONS(5005), 1, + ACTIONS(5982), 1, sym_key_value_key, - ACTIONS(5141), 1, + ACTIONS(6150), 1, sym_commonmark_name, - ACTIONS(5268), 1, + ACTIONS(6247), 1, anon_sym_RBRACE, - STATE(1642), 1, - aux_sym_commonmark_attribute_repeat2, - STATE(1680), 1, + STATE(1762), 1, aux_sym_commonmark_attribute_repeat1, - STATE(1704), 1, + STATE(1833), 1, + aux_sym_commonmark_attribute_repeat2, + STATE(2017), 1, aux_sym_commonmark_attribute_repeat3, - STATE(1826), 1, + STATE(2152), 1, sym__attribute, - [62173] = 9, - ACTIONS(5001), 1, + [15757] = 9, + ACTIONS(5978), 1, sym_id_specifier, - ACTIONS(5003), 1, + ACTIONS(5980), 1, sym_class_specifier, - ACTIONS(5005), 1, + ACTIONS(5982), 1, sym_key_value_key, - ACTIONS(5141), 1, + ACTIONS(6150), 1, sym_commonmark_name, - ACTIONS(5220), 1, + ACTIONS(6251), 1, anon_sym_RBRACE, - STATE(1466), 1, + STATE(1768), 1, aux_sym_commonmark_attribute_repeat1, - STATE(1632), 1, + STATE(1796), 1, aux_sym_commonmark_attribute_repeat2, - STATE(1715), 1, + STATE(2045), 1, aux_sym_commonmark_attribute_repeat3, - STATE(1826), 1, + STATE(2152), 1, sym__attribute, - [62201] = 2, - ACTIONS(3927), 3, - sym_shortcode_name, - aux_sym_shortcode_naked_string_token1, - aux_sym_shortcode_naked_string_token2, - ACTIONS(3925), 6, - sym__shortcode_open, - aux_sym_shortcode_string_token1, - aux_sym_shortcode_string_token2, - sym_shortcode_number, - anon_sym_true, - anon_sym_false, - [62215] = 9, - ACTIONS(5001), 1, + [15785] = 9, + ACTIONS(5978), 1, sym_id_specifier, - ACTIONS(5003), 1, + ACTIONS(5980), 1, sym_class_specifier, - ACTIONS(5005), 1, + ACTIONS(5982), 1, sym_key_value_key, - ACTIONS(5141), 1, + ACTIONS(6150), 1, sym_commonmark_name, - ACTIONS(5220), 1, + ACTIONS(6281), 1, anon_sym_RBRACE, - STATE(1632), 1, + STATE(1802), 1, aux_sym_commonmark_attribute_repeat2, - STATE(1680), 1, + STATE(2009), 1, aux_sym_commonmark_attribute_repeat1, - STATE(1715), 1, + STATE(2013), 1, aux_sym_commonmark_attribute_repeat3, - STATE(1826), 1, + STATE(2152), 1, sym__attribute, - [62243] = 9, - ACTIONS(5001), 1, + [15813] = 9, + ACTIONS(5978), 1, sym_id_specifier, - ACTIONS(5003), 1, + ACTIONS(5980), 1, sym_class_specifier, - ACTIONS(5005), 1, + ACTIONS(5982), 1, sym_key_value_key, - ACTIONS(5141), 1, + ACTIONS(6150), 1, sym_commonmark_name, - ACTIONS(5242), 1, + ACTIONS(6154), 1, anon_sym_RBRACE, - STATE(1467), 1, - aux_sym_commonmark_attribute_repeat1, - STATE(1636), 1, + STATE(1938), 1, aux_sym_commonmark_attribute_repeat2, - STATE(1714), 1, + STATE(2009), 1, + aux_sym_commonmark_attribute_repeat1, + STATE(2025), 1, aux_sym_commonmark_attribute_repeat3, - STATE(1826), 1, + STATE(2152), 1, sym__attribute, - [62271] = 9, - ACTIONS(5001), 1, + [15841] = 9, + ACTIONS(5978), 1, sym_id_specifier, - ACTIONS(5003), 1, + ACTIONS(5980), 1, sym_class_specifier, - ACTIONS(5005), 1, + ACTIONS(5982), 1, sym_key_value_key, - ACTIONS(5141), 1, + ACTIONS(6150), 1, sym_commonmark_name, - ACTIONS(5242), 1, + ACTIONS(6247), 1, anon_sym_RBRACE, - STATE(1636), 1, + STATE(1833), 1, aux_sym_commonmark_attribute_repeat2, - STATE(1680), 1, + STATE(2009), 1, aux_sym_commonmark_attribute_repeat1, - STATE(1714), 1, + STATE(2017), 1, aux_sym_commonmark_attribute_repeat3, - STATE(1826), 1, + STATE(2152), 1, sym__attribute, - [62299] = 9, - ACTIONS(5001), 1, + [15869] = 9, + ACTIONS(5978), 1, sym_id_specifier, - ACTIONS(5003), 1, + ACTIONS(5980), 1, sym_class_specifier, - ACTIONS(5005), 1, + ACTIONS(5982), 1, sym_key_value_key, - ACTIONS(5141), 1, + ACTIONS(6150), 1, sym_commonmark_name, - ACTIONS(5270), 1, + ACTIONS(6239), 1, anon_sym_RBRACE, - STATE(1655), 1, - aux_sym_commonmark_attribute_repeat2, - STATE(1680), 1, + STATE(1750), 1, aux_sym_commonmark_attribute_repeat1, - STATE(1723), 1, + STATE(1967), 1, + aux_sym_commonmark_attribute_repeat2, + STATE(2014), 1, aux_sym_commonmark_attribute_repeat3, - STATE(1826), 1, + STATE(2152), 1, sym__attribute, - [62327] = 9, - ACTIONS(5001), 1, + [15897] = 9, + ACTIONS(5978), 1, sym_id_specifier, - ACTIONS(5003), 1, + ACTIONS(5980), 1, sym_class_specifier, - ACTIONS(5005), 1, + ACTIONS(5982), 1, sym_key_value_key, - ACTIONS(5141), 1, + ACTIONS(6150), 1, sym_commonmark_name, - ACTIONS(5272), 1, + ACTIONS(6239), 1, anon_sym_RBRACE, - STATE(1645), 1, + STATE(1967), 1, aux_sym_commonmark_attribute_repeat2, - STATE(1680), 1, + STATE(2009), 1, aux_sym_commonmark_attribute_repeat1, - STATE(1717), 1, + STATE(2014), 1, aux_sym_commonmark_attribute_repeat3, - STATE(1826), 1, + STATE(2152), 1, sym__attribute, - [62355] = 9, - ACTIONS(5001), 1, + [15925] = 9, + ACTIONS(5978), 1, sym_id_specifier, - ACTIONS(5003), 1, + ACTIONS(5980), 1, sym_class_specifier, - ACTIONS(5005), 1, + ACTIONS(5982), 1, sym_key_value_key, - ACTIONS(5141), 1, + ACTIONS(6150), 1, sym_commonmark_name, - ACTIONS(5155), 1, + ACTIONS(6229), 1, anon_sym_RBRACE, - STATE(1456), 1, - aux_sym_commonmark_attribute_repeat1, - STATE(1577), 1, + STATE(1867), 1, aux_sym_commonmark_attribute_repeat2, - STATE(1682), 1, + STATE(2009), 1, + aux_sym_commonmark_attribute_repeat1, + STATE(2033), 1, aux_sym_commonmark_attribute_repeat3, - STATE(1826), 1, + STATE(2152), 1, sym__attribute, - [62383] = 3, - ACTIONS(5274), 1, + [15953] = 3, + ACTIONS(6283), 1, sym__last_token_whitespace, - ACTIONS(3801), 2, + ACTIONS(4728), 2, sym__latex_span_close, sym__backslash_escape, - ACTIONS(3803), 5, + ACTIONS(4730), 5, anon_sym_LBRACK, anon_sym_RBRACK, sym__newline_token, aux_sym_latex_span_token1, aux_sym_latex_span_token2, - [62398] = 7, - ACTIONS(5003), 1, + [15968] = 7, + ACTIONS(5980), 1, sym_class_specifier, - ACTIONS(5005), 1, + ACTIONS(5982), 1, sym_key_value_key, - ACTIONS(5141), 1, + ACTIONS(6150), 1, sym_commonmark_name, - ACTIONS(5212), 1, + ACTIONS(6229), 1, anon_sym_RBRACE, - STATE(1689), 1, + STATE(2033), 1, aux_sym_commonmark_attribute_repeat3, - STATE(1718), 1, + STATE(2100), 1, aux_sym_commonmark_attribute_repeat2, - STATE(1826), 1, + STATE(2152), 1, sym__attribute, - [62420] = 5, - ACTIONS(4241), 1, + [15990] = 5, + ACTIONS(5202), 1, + sym__newline_token, + ACTIONS(5962), 1, + sym__whitespace_ge_2, + ACTIONS(5964), 1, + aux_sym__whitespace_token1, + ACTIONS(6046), 1, + anon_sym_RPAREN, + STATE(1782), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [16008] = 5, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4981), 1, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - ACTIONS(5063), 1, + ACTIONS(6066), 1, anon_sym_RPAREN, - STATE(1413), 3, + STATE(1709), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [62438] = 5, - ACTIONS(4241), 1, + [16026] = 5, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4981), 1, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - ACTIONS(5073), 1, + ACTIONS(6066), 1, anon_sym_RPAREN, - STATE(1413), 3, + STATE(1680), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [62456] = 5, - ACTIONS(4241), 1, + [16044] = 5, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4981), 1, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - ACTIONS(5079), 1, + ACTIONS(6066), 1, anon_sym_RPAREN, - STATE(1525), 3, + STATE(1784), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [62474] = 7, - ACTIONS(5003), 1, + [16062] = 7, + ACTIONS(5980), 1, sym_class_specifier, - ACTIONS(5005), 1, + ACTIONS(5982), 1, sym_key_value_key, - ACTIONS(5141), 1, + ACTIONS(6150), 1, sym_commonmark_name, - ACTIONS(5224), 1, + ACTIONS(6273), 1, anon_sym_RBRACE, - STATE(1701), 1, + STATE(2099), 1, aux_sym_commonmark_attribute_repeat3, - STATE(1718), 1, + STATE(2100), 1, aux_sym_commonmark_attribute_repeat2, - STATE(1826), 1, + STATE(2152), 1, sym__attribute, - [62496] = 5, - ACTIONS(4241), 1, + [16084] = 5, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4981), 1, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - ACTIONS(5011), 1, + ACTIONS(6028), 1, anon_sym_RPAREN, - STATE(1476), 3, + STATE(1786), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [62514] = 5, - ACTIONS(4241), 1, + [16102] = 5, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4981), 1, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - ACTIONS(5276), 1, + ACTIONS(6028), 1, anon_sym_RPAREN, - STATE(1413), 3, + STATE(1709), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [62532] = 5, - ACTIONS(4241), 1, + [16120] = 5, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4981), 1, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - ACTIONS(5276), 1, + ACTIONS(6072), 1, anon_sym_RPAREN, - STATE(1495), 3, + STATE(1789), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [62550] = 5, - ACTIONS(4241), 1, + [16138] = 5, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4981), 1, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - ACTIONS(5063), 1, + ACTIONS(6072), 1, anon_sym_RPAREN, - STATE(1395), 3, + STATE(1709), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [62568] = 5, - ACTIONS(4241), 1, + [16156] = 5, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4981), 1, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - ACTIONS(5278), 1, + ACTIONS(6124), 1, anon_sym_RPAREN, - STATE(1569), 3, + STATE(1834), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [16174] = 5, + ACTIONS(5202), 1, + sym__newline_token, + ACTIONS(5962), 1, + sym__whitespace_ge_2, + ACTIONS(5964), 1, + aux_sym__whitespace_token1, + ACTIONS(6285), 1, + anon_sym_RPAREN, + STATE(1709), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [16192] = 5, + ACTIONS(5202), 1, + sym__newline_token, + ACTIONS(5962), 1, + sym__whitespace_ge_2, + ACTIONS(5964), 1, + aux_sym__whitespace_token1, + ACTIONS(6124), 1, + anon_sym_RPAREN, + STATE(1709), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [16210] = 5, + ACTIONS(5202), 1, + sym__newline_token, + ACTIONS(5962), 1, + sym__whitespace_ge_2, + ACTIONS(5964), 1, + aux_sym__whitespace_token1, + ACTIONS(6285), 1, + anon_sym_RPAREN, + STATE(1793), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [62586] = 7, - ACTIONS(5003), 1, + [16228] = 5, + ACTIONS(5202), 1, + sym__newline_token, + ACTIONS(5962), 1, + sym__whitespace_ge_2, + ACTIONS(5964), 1, + aux_sym__whitespace_token1, + ACTIONS(6287), 1, + anon_sym_RPAREN, + STATE(1709), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [16246] = 7, + ACTIONS(5980), 1, sym_class_specifier, - ACTIONS(5005), 1, + ACTIONS(5982), 1, sym_key_value_key, - ACTIONS(5141), 1, + ACTIONS(6150), 1, sym_commonmark_name, - ACTIONS(5258), 1, + ACTIONS(6251), 1, anon_sym_RBRACE, - STATE(1707), 1, + STATE(2045), 1, aux_sym_commonmark_attribute_repeat3, - STATE(1718), 1, + STATE(2100), 1, aux_sym_commonmark_attribute_repeat2, - STATE(1826), 1, + STATE(2152), 1, sym__attribute, - [62608] = 5, - ACTIONS(4241), 1, + [16268] = 5, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4981), 1, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - ACTIONS(5280), 1, + ACTIONS(6287), 1, anon_sym_RPAREN, - STATE(1413), 3, + STATE(1795), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [62626] = 5, - ACTIONS(4241), 1, + [16286] = 5, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4273), 1, - anon_sym_RPAREN, - ACTIONS(4981), 1, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - STATE(1357), 3, + ACTIONS(5984), 1, + anon_sym_RPAREN, + STATE(1863), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [62644] = 5, - ACTIONS(4241), 1, + [16304] = 5, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4273), 1, + ACTIONS(5962), 1, + sym__whitespace_ge_2, + ACTIONS(5964), 1, + aux_sym__whitespace_token1, + ACTIONS(6289), 1, anon_sym_RPAREN, - ACTIONS(4981), 1, + STATE(1709), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [16322] = 5, + ACTIONS(5202), 1, + sym__newline_token, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - STATE(1492), 3, + ACTIONS(5984), 1, + anon_sym_RPAREN, + STATE(1709), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [62662] = 5, - ACTIONS(4241), 1, + [16340] = 5, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4981), 1, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - ACTIONS(5280), 1, + ACTIONS(6291), 1, anon_sym_RPAREN, - STATE(1513), 3, + STATE(1709), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [62680] = 5, - ACTIONS(4241), 1, + [16358] = 7, + ACTIONS(5980), 1, + sym_class_specifier, + ACTIONS(5982), 1, + sym_key_value_key, + ACTIONS(6150), 1, + sym_commonmark_name, + ACTIONS(6281), 1, + anon_sym_RBRACE, + STATE(2013), 1, + aux_sym_commonmark_attribute_repeat3, + STATE(2100), 1, + aux_sym_commonmark_attribute_repeat2, + STATE(2152), 1, + sym__attribute, + [16380] = 5, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4263), 1, + ACTIONS(5244), 1, anon_sym_RPAREN, - ACTIONS(4981), 1, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - STATE(1358), 3, + STATE(1658), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [62698] = 5, - ACTIONS(4241), 1, + [16398] = 5, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4263), 1, + ACTIONS(5244), 1, anon_sym_RPAREN, - ACTIONS(4981), 1, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - STATE(1496), 3, + STATE(1803), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [62716] = 5, - ACTIONS(4241), 1, + [16416] = 5, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4981), 1, + ACTIONS(5319), 1, + anon_sym_RPAREN, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - ACTIONS(5011), 1, - anon_sym_RPAREN, - STATE(1413), 3, + STATE(1659), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [62734] = 5, - ACTIONS(4241), 1, + [16434] = 5, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4981), 1, + ACTIONS(5319), 1, + anon_sym_RPAREN, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - ACTIONS(5063), 1, - anon_sym_RPAREN, - STATE(1604), 3, + STATE(1807), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [62752] = 5, - ACTIONS(4241), 1, + [16452] = 5, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4253), 1, + ACTIONS(5216), 1, anon_sym_RPAREN, - ACTIONS(4981), 1, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - STATE(1376), 3, + STATE(1669), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [62770] = 7, - ACTIONS(5003), 1, + [16470] = 7, + ACTIONS(5980), 1, sym_class_specifier, - ACTIONS(5005), 1, + ACTIONS(5982), 1, sym_key_value_key, - ACTIONS(5141), 1, + ACTIONS(6150), 1, sym_commonmark_name, - ACTIONS(5282), 1, + ACTIONS(6293), 1, anon_sym_RBRACE, - STATE(1709), 1, + STATE(2027), 1, aux_sym_commonmark_attribute_repeat3, - STATE(1718), 1, + STATE(2100), 1, aux_sym_commonmark_attribute_repeat2, - STATE(1826), 1, + STATE(2152), 1, sym__attribute, - [62792] = 5, - ACTIONS(4241), 1, + [16492] = 5, + ACTIONS(5202), 1, + sym__newline_token, + ACTIONS(5962), 1, + sym__whitespace_ge_2, + ACTIONS(5964), 1, + aux_sym__whitespace_token1, + ACTIONS(6022), 1, + anon_sym_RPAREN, + STATE(1709), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [16510] = 5, + ACTIONS(5202), 1, + sym__newline_token, + ACTIONS(5962), 1, + sym__whitespace_ge_2, + ACTIONS(5964), 1, + aux_sym__whitespace_token1, + ACTIONS(6022), 1, + anon_sym_RPAREN, + STATE(1663), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [16528] = 5, + ACTIONS(5202), 1, + sym__newline_token, + ACTIONS(5962), 1, + sym__whitespace_ge_2, + ACTIONS(5964), 1, + aux_sym__whitespace_token1, + ACTIONS(6022), 1, + anon_sym_RPAREN, + STATE(1814), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [16546] = 5, + ACTIONS(5202), 1, + sym__newline_token, + ACTIONS(5962), 1, + sym__whitespace_ge_2, + ACTIONS(5964), 1, + aux_sym__whitespace_token1, + ACTIONS(6002), 1, + anon_sym_RPAREN, + STATE(1709), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [16564] = 5, + ACTIONS(5202), 1, + sym__newline_token, + ACTIONS(5962), 1, + sym__whitespace_ge_2, + ACTIONS(5964), 1, + aux_sym__whitespace_token1, + ACTIONS(6024), 1, + anon_sym_RPAREN, + STATE(1709), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [16582] = 5, + ACTIONS(5202), 1, + sym__newline_token, + ACTIONS(5962), 1, + sym__whitespace_ge_2, + ACTIONS(5964), 1, + aux_sym__whitespace_token1, + ACTIONS(6024), 1, + anon_sym_RPAREN, + STATE(1664), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [16600] = 5, + ACTIONS(5202), 1, + sym__newline_token, + ACTIONS(5962), 1, + sym__whitespace_ge_2, + ACTIONS(5964), 1, + aux_sym__whitespace_token1, + ACTIONS(6024), 1, + anon_sym_RPAREN, + STATE(1816), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [16618] = 5, + ACTIONS(5202), 1, + sym__newline_token, + ACTIONS(5216), 1, + anon_sym_RPAREN, + ACTIONS(5962), 1, + sym__whitespace_ge_2, + ACTIONS(5964), 1, + aux_sym__whitespace_token1, + STATE(1862), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [16636] = 5, + ACTIONS(5202), 1, + sym__newline_token, + ACTIONS(5962), 1, + sym__whitespace_ge_2, + ACTIONS(5964), 1, + aux_sym__whitespace_token1, + ACTIONS(6002), 1, + anon_sym_RPAREN, + STATE(1694), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [16654] = 5, + ACTIONS(5202), 1, + sym__newline_token, + ACTIONS(5962), 1, + sym__whitespace_ge_2, + ACTIONS(5964), 1, + aux_sym__whitespace_token1, + ACTIONS(6032), 1, + anon_sym_RPAREN, + STATE(1817), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [16672] = 5, + ACTIONS(5202), 1, + sym__newline_token, + ACTIONS(5962), 1, + sym__whitespace_ge_2, + ACTIONS(5964), 1, + aux_sym__whitespace_token1, + ACTIONS(6002), 1, + anon_sym_RPAREN, + STATE(1787), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [16690] = 5, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4313), 1, + ACTIONS(5962), 1, + sym__whitespace_ge_2, + ACTIONS(5964), 1, + aux_sym__whitespace_token1, + ACTIONS(6032), 1, anon_sym_RPAREN, - ACTIONS(4981), 1, + STATE(1709), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [16708] = 5, + ACTIONS(5202), 1, + sym__newline_token, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - STATE(1363), 3, + ACTIONS(6034), 1, + anon_sym_RPAREN, + STATE(1819), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [62810] = 5, - ACTIONS(4241), 1, + [16726] = 5, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4981), 1, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - ACTIONS(5007), 1, + ACTIONS(6034), 1, anon_sym_RPAREN, - STATE(1413), 3, + STATE(1709), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [62828] = 5, - ACTIONS(4241), 1, + [16744] = 5, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4981), 1, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - ACTIONS(5007), 1, + ACTIONS(6295), 1, anon_sym_RPAREN, - STATE(1360), 3, + STATE(1709), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [62846] = 5, - ACTIONS(4241), 1, + [16762] = 5, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4981), 1, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - ACTIONS(5007), 1, + ACTIONS(6295), 1, anon_sym_RPAREN, - STATE(1503), 3, + STATE(1821), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [62864] = 5, - ACTIONS(4241), 1, + [16780] = 5, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4981), 1, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - ACTIONS(5284), 1, + ACTIONS(6297), 1, anon_sym_RPAREN, - STATE(1413), 3, + STATE(1709), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [62882] = 5, - ACTIONS(4241), 1, + [16798] = 5, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4981), 1, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - ACTIONS(5009), 1, + ACTIONS(6297), 1, anon_sym_RPAREN, - STATE(1413), 3, + STATE(1822), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [62900] = 5, - ACTIONS(4241), 1, + [16816] = 5, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4981), 1, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - ACTIONS(5009), 1, + ACTIONS(6299), 1, anon_sym_RPAREN, - STATE(1361), 3, + STATE(1709), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [62918] = 5, - ACTIONS(4241), 1, + [16834] = 5, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4981), 1, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - ACTIONS(5009), 1, + ACTIONS(6301), 1, anon_sym_RPAREN, - STATE(1506), 3, + STATE(1709), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [62936] = 5, - ACTIONS(4241), 1, + [16852] = 5, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4981), 1, + ACTIONS(5230), 1, + anon_sym_RPAREN, + ACTIONS(5962), 1, + sym__whitespace_ge_2, + ACTIONS(5964), 1, + aux_sym__whitespace_token1, + STATE(1674), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [16870] = 5, + ACTIONS(5202), 1, + sym__newline_token, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - ACTIONS(5079), 1, + ACTIONS(6036), 1, anon_sym_RPAREN, - STATE(1413), 3, + STATE(1709), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [62954] = 5, - ACTIONS(4241), 1, + [16888] = 5, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4981), 1, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - ACTIONS(5286), 1, + ACTIONS(6036), 1, anon_sym_RPAREN, - STATE(1413), 3, + STATE(1648), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [62972] = 5, - ACTIONS(4241), 1, + [16906] = 5, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4981), 1, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - ACTIONS(5013), 1, + ACTIONS(6036), 1, + anon_sym_RPAREN, + STATE(1794), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [16924] = 2, + ACTIONS(4940), 2, + sym__latex_span_close, + sym__backslash_escape, + ACTIONS(4942), 5, + anon_sym_LBRACK, + anon_sym_RBRACK, + sym__newline_token, + aux_sym_latex_span_token1, + aux_sym_latex_span_token2, + [16936] = 5, + ACTIONS(5202), 1, + sym__newline_token, + ACTIONS(5230), 1, anon_sym_RPAREN, - STATE(1507), 3, + ACTIONS(5962), 1, + sym__whitespace_ge_2, + ACTIONS(5964), 1, + aux_sym__whitespace_token1, + STATE(1911), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [62990] = 7, - ACTIONS(5003), 1, + [16954] = 7, + ACTIONS(5980), 1, sym_class_specifier, - ACTIONS(5005), 1, + ACTIONS(5982), 1, sym_key_value_key, - ACTIONS(5141), 1, + ACTIONS(6150), 1, sym_commonmark_name, - ACTIONS(5238), 1, + ACTIONS(6209), 1, anon_sym_RBRACE, - STATE(1718), 1, + STATE(2044), 1, + aux_sym_commonmark_attribute_repeat3, + STATE(2100), 1, aux_sym_commonmark_attribute_repeat2, - STATE(1721), 1, + STATE(2152), 1, + sym__attribute, + [16976] = 7, + ACTIONS(5980), 1, + sym_class_specifier, + ACTIONS(5982), 1, + sym_key_value_key, + ACTIONS(6150), 1, + sym_commonmark_name, + ACTIONS(6247), 1, + anon_sym_RBRACE, + STATE(2017), 1, aux_sym_commonmark_attribute_repeat3, - STATE(1826), 1, + STATE(2100), 1, + aux_sym_commonmark_attribute_repeat2, + STATE(2152), 1, + sym__attribute, + [16998] = 7, + ACTIONS(5980), 1, + sym_class_specifier, + ACTIONS(5982), 1, + sym_key_value_key, + ACTIONS(6150), 1, + sym_commonmark_name, + ACTIONS(6255), 1, + anon_sym_RBRACE, + STATE(2028), 1, + aux_sym_commonmark_attribute_repeat3, + STATE(2100), 1, + aux_sym_commonmark_attribute_repeat2, + STATE(2152), 1, + sym__attribute, + [17020] = 7, + ACTIONS(5980), 1, + sym_class_specifier, + ACTIONS(5982), 1, + sym_key_value_key, + ACTIONS(6150), 1, + sym_commonmark_name, + ACTIONS(6303), 1, + anon_sym_RBRACE, + STATE(2037), 1, + aux_sym_commonmark_attribute_repeat3, + STATE(2100), 1, + aux_sym_commonmark_attribute_repeat2, + STATE(2152), 1, + sym__attribute, + [17042] = 7, + ACTIONS(5980), 1, + sym_class_specifier, + ACTIONS(5982), 1, + sym_key_value_key, + ACTIONS(6150), 1, + sym_commonmark_name, + ACTIONS(6275), 1, + anon_sym_RBRACE, + STATE(2050), 1, + aux_sym_commonmark_attribute_repeat3, + STATE(2100), 1, + aux_sym_commonmark_attribute_repeat2, + STATE(2152), 1, sym__attribute, - [63012] = 5, - ACTIONS(4241), 1, + [17064] = 5, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4981), 1, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - ACTIONS(5013), 1, + ACTIONS(6305), 1, anon_sym_RPAREN, - STATE(1413), 3, + STATE(1709), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [63030] = 5, - ACTIONS(4241), 1, + [17082] = 5, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4981), 1, + ACTIONS(5250), 1, + anon_sym_RPAREN, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - ACTIONS(5015), 1, + STATE(1668), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [17100] = 5, + ACTIONS(5202), 1, + sym__newline_token, + ACTIONS(5250), 1, anon_sym_RPAREN, - STATE(1509), 3, + ACTIONS(5962), 1, + sym__whitespace_ge_2, + ACTIONS(5964), 1, + aux_sym__whitespace_token1, + STATE(1841), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [63048] = 5, - ACTIONS(4241), 1, + [17118] = 5, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4981), 1, + ACTIONS(5252), 1, + anon_sym_RPAREN, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - ACTIONS(5061), 1, + STATE(1678), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [17136] = 5, + ACTIONS(5202), 1, + sym__newline_token, + ACTIONS(5252), 1, anon_sym_RPAREN, - STATE(1481), 3, + ACTIONS(5962), 1, + sym__whitespace_ge_2, + ACTIONS(5964), 1, + aux_sym__whitespace_token1, + STATE(1844), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [63066] = 5, - ACTIONS(4241), 1, + [17154] = 7, + ACTIONS(5980), 1, + sym_class_specifier, + ACTIONS(5982), 1, + sym_key_value_key, + ACTIONS(6150), 1, + sym_commonmark_name, + ACTIONS(6269), 1, + anon_sym_RBRACE, + STATE(2030), 1, + aux_sym_commonmark_attribute_repeat3, + STATE(2100), 1, + aux_sym_commonmark_attribute_repeat2, + STATE(2152), 1, + sym__attribute, + [17176] = 7, + ACTIONS(5980), 1, + sym_class_specifier, + ACTIONS(5982), 1, + sym_key_value_key, + ACTIONS(6150), 1, + sym_commonmark_name, + ACTIONS(6307), 1, + anon_sym_RBRACE, + STATE(2022), 1, + aux_sym_commonmark_attribute_repeat3, + STATE(2100), 1, + aux_sym_commonmark_attribute_repeat2, + STATE(2152), 1, + sym__attribute, + [17198] = 5, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4981), 1, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - ACTIONS(5015), 1, + ACTIONS(6042), 1, anon_sym_RPAREN, - STATE(1413), 3, + STATE(1709), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [63084] = 5, - ACTIONS(4241), 1, + [17216] = 5, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4981), 1, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - ACTIONS(5288), 1, + ACTIONS(6042), 1, anon_sym_RPAREN, - STATE(1413), 3, + STATE(1645), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [63102] = 5, - ACTIONS(4241), 1, + [17234] = 5, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4981), 1, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - ACTIONS(5288), 1, + ACTIONS(6042), 1, anon_sym_RPAREN, - STATE(1511), 3, + STATE(1850), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [63120] = 5, - ACTIONS(4241), 1, + [17252] = 5, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4981), 1, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - ACTIONS(5290), 1, + ACTIONS(6068), 1, anon_sym_RPAREN, - STATE(1413), 3, + STATE(1709), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [63138] = 5, - ACTIONS(4241), 1, + [17270] = 5, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4981), 1, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - ACTIONS(5290), 1, + ACTIONS(6068), 1, anon_sym_RPAREN, - STATE(1512), 3, + STATE(1646), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [63156] = 5, - ACTIONS(4241), 1, + [17288] = 5, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4981), 1, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - ACTIONS(5292), 1, + ACTIONS(6068), 1, + anon_sym_RPAREN, + STATE(1852), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [17306] = 5, + ACTIONS(5202), 1, + sym__newline_token, + ACTIONS(5226), 1, anon_sym_RPAREN, - STATE(1413), 3, + ACTIONS(5962), 1, + sym__whitespace_ge_2, + ACTIONS(5964), 1, + aux_sym__whitespace_token1, + STATE(1660), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [63174] = 5, - ACTIONS(4241), 1, + [17324] = 5, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4981), 1, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - ACTIONS(5294), 1, + ACTIONS(5966), 1, + anon_sym_RPAREN, + STATE(1853), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [17342] = 5, + ACTIONS(5202), 1, + sym__newline_token, + ACTIONS(5226), 1, anon_sym_RPAREN, - STATE(1413), 3, + ACTIONS(5962), 1, + sym__whitespace_ge_2, + ACTIONS(5964), 1, + aux_sym__whitespace_token1, + STATE(1869), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [63192] = 5, - ACTIONS(4241), 1, + [17360] = 5, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4981), 1, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - ACTIONS(5296), 1, + ACTIONS(5966), 1, anon_sym_RPAREN, - STATE(1413), 3, + STATE(1709), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [63210] = 5, - ACTIONS(4241), 1, + [17378] = 5, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4253), 1, + ACTIONS(5962), 1, + sym__whitespace_ge_2, + ACTIONS(5964), 1, + aux_sym__whitespace_token1, + ACTIONS(5968), 1, anon_sym_RPAREN, - ACTIONS(4981), 1, + STATE(1855), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [17396] = 5, + ACTIONS(5202), 1, + sym__newline_token, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - STATE(1471), 3, + ACTIONS(5968), 1, + anon_sym_RPAREN, + STATE(1709), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [63228] = 5, - ACTIONS(4241), 1, + [17414] = 5, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4981), 1, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - ACTIONS(5017), 1, + ACTIONS(6309), 1, anon_sym_RPAREN, - STATE(1413), 3, + STATE(1709), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [63246] = 5, - ACTIONS(4241), 1, + [17432] = 5, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4981), 1, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - ACTIONS(5017), 1, + ACTIONS(6309), 1, anon_sym_RPAREN, - STATE(1359), 3, + STATE(1857), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [63264] = 5, - ACTIONS(4241), 1, + [17450] = 5, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4981), 1, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - ACTIONS(5017), 1, + ACTIONS(6311), 1, anon_sym_RPAREN, - STATE(1487), 3, + STATE(1709), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [63282] = 5, - ACTIONS(4241), 1, + [17468] = 5, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4981), 1, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - ACTIONS(5286), 1, + ACTIONS(6311), 1, anon_sym_RPAREN, - STATE(1528), 3, + STATE(1858), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [63300] = 7, - ACTIONS(5003), 1, - sym_class_specifier, - ACTIONS(5005), 1, - sym_key_value_key, - ACTIONS(5141), 1, - sym_commonmark_name, - ACTIONS(5260), 1, - anon_sym_RBRACE, - STATE(1686), 1, - aux_sym_commonmark_attribute_repeat3, - STATE(1718), 1, - aux_sym_commonmark_attribute_repeat2, - STATE(1826), 1, - sym__attribute, - [63322] = 5, - ACTIONS(4241), 1, + [17486] = 5, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4981), 1, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - ACTIONS(5019), 1, + ACTIONS(6313), 1, anon_sym_RPAREN, - STATE(1413), 3, + STATE(1709), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [63340] = 5, - ACTIONS(4241), 1, + [17504] = 5, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4981), 1, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - ACTIONS(5061), 1, + ACTIONS(6315), 1, + anon_sym_RPAREN, + STATE(1709), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [17522] = 5, + ACTIONS(5202), 1, + sym__newline_token, + ACTIONS(5228), 1, anon_sym_RPAREN, - STATE(1413), 3, + ACTIONS(5962), 1, + sym__whitespace_ge_2, + ACTIONS(5964), 1, + aux_sym__whitespace_token1, + STATE(1662), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [63358] = 5, - ACTIONS(4241), 1, + [17540] = 5, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4981), 1, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - ACTIONS(5019), 1, + ACTIONS(6305), 1, anon_sym_RPAREN, - STATE(1375), 3, + STATE(1868), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [63376] = 5, - ACTIONS(4241), 1, + [17558] = 5, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4247), 1, + ACTIONS(5228), 1, anon_sym_RPAREN, - ACTIONS(4981), 1, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - STATE(1397), 3, + STATE(1874), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [63394] = 5, - ACTIONS(4241), 1, + [17576] = 5, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4981), 1, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - ACTIONS(5019), 1, + ACTIONS(6044), 1, anon_sym_RPAREN, - STATE(1521), 3, + STATE(1709), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [63412] = 5, - ACTIONS(4241), 1, + [17594] = 5, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4981), 1, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - ACTIONS(5298), 1, + ACTIONS(6317), 1, anon_sym_RPAREN, - STATE(1413), 3, + STATE(1709), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [63430] = 5, - ACTIONS(4241), 1, + [17612] = 5, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4981), 1, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - ACTIONS(5298), 1, + ACTIONS(6317), 1, + anon_sym_RPAREN, + STATE(1870), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [17630] = 5, + ACTIONS(5202), 1, + sym__newline_token, + ACTIONS(5962), 1, + sym__whitespace_ge_2, + ACTIONS(5964), 1, + aux_sym__whitespace_token1, + ACTIONS(6044), 1, anon_sym_RPAREN, - STATE(1530), 3, + STATE(1682), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [63448] = 7, - ACTIONS(5003), 1, + [17648] = 7, + ACTIONS(5980), 1, sym_class_specifier, - ACTIONS(5005), 1, + ACTIONS(5982), 1, sym_key_value_key, - ACTIONS(5141), 1, + ACTIONS(6150), 1, sym_commonmark_name, - ACTIONS(5216), 1, + ACTIONS(6319), 1, anon_sym_RBRACE, - STATE(1718), 1, + STATE(2029), 1, + aux_sym_commonmark_attribute_repeat3, + STATE(2100), 1, aux_sym_commonmark_attribute_repeat2, - STATE(1744), 1, + STATE(2152), 1, + sym__attribute, + [17670] = 7, + ACTIONS(5980), 1, + sym_class_specifier, + ACTIONS(5982), 1, + sym_key_value_key, + ACTIONS(6150), 1, + sym_commonmark_name, + ACTIONS(6265), 1, + anon_sym_RBRACE, + STATE(2021), 1, aux_sym_commonmark_attribute_repeat3, - STATE(1826), 1, + STATE(2100), 1, + aux_sym_commonmark_attribute_repeat2, + STATE(2152), 1, sym__attribute, - [63470] = 5, - ACTIONS(4241), 1, + [17692] = 5, + ACTIONS(5202), 1, + sym__newline_token, + ACTIONS(5962), 1, + sym__whitespace_ge_2, + ACTIONS(5964), 1, + aux_sym__whitespace_token1, + ACTIONS(6321), 1, + anon_sym_RPAREN, + STATE(1709), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [17710] = 5, + ACTIONS(5202), 1, + sym__newline_token, + ACTIONS(5962), 1, + sym__whitespace_ge_2, + ACTIONS(5964), 1, + aux_sym__whitespace_token1, + ACTIONS(6026), 1, + anon_sym_RPAREN, + STATE(1709), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [17728] = 5, + ACTIONS(5202), 1, + sym__newline_token, + ACTIONS(5962), 1, + sym__whitespace_ge_2, + ACTIONS(5964), 1, + aux_sym__whitespace_token1, + ACTIONS(6323), 1, + anon_sym_RPAREN, + STATE(1709), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [17746] = 5, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4981), 1, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - ACTIONS(5300), 1, + ACTIONS(6026), 1, anon_sym_RPAREN, - STATE(1413), 3, + STATE(1666), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [63488] = 5, - ACTIONS(4241), 1, + [17764] = 5, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4247), 1, + ACTIONS(5962), 1, + sym__whitespace_ge_2, + ACTIONS(5964), 1, + aux_sym__whitespace_token1, + ACTIONS(6026), 1, anon_sym_RPAREN, - ACTIONS(4981), 1, + STATE(1889), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [17782] = 5, + ACTIONS(5202), 1, + sym__newline_token, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - STATE(1549), 3, + ACTIONS(6044), 1, + anon_sym_RPAREN, + STATE(1922), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [63506] = 5, - ACTIONS(4241), 1, + [17800] = 5, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4981), 1, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - ACTIONS(5302), 1, + ACTIONS(6030), 1, anon_sym_RPAREN, - STATE(1413), 3, + STATE(1709), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [63524] = 7, - ACTIONS(5003), 1, + [17818] = 7, + ACTIONS(5980), 1, sym_class_specifier, - ACTIONS(5005), 1, + ACTIONS(5982), 1, sym_key_value_key, - ACTIONS(5141), 1, + ACTIONS(6146), 1, + anon_sym_RBRACE, + ACTIONS(6150), 1, sym_commonmark_name, - ACTIONS(5262), 1, + STATE(2020), 1, + aux_sym_commonmark_attribute_repeat3, + STATE(2100), 1, + aux_sym_commonmark_attribute_repeat2, + STATE(2152), 1, + sym__attribute, + [17840] = 5, + ACTIONS(5202), 1, + sym__newline_token, + ACTIONS(5962), 1, + sym__whitespace_ge_2, + ACTIONS(5964), 1, + aux_sym__whitespace_token1, + ACTIONS(6030), 1, + anon_sym_RPAREN, + STATE(1667), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [17858] = 5, + ACTIONS(5202), 1, + sym__newline_token, + ACTIONS(5962), 1, + sym__whitespace_ge_2, + ACTIONS(5964), 1, + aux_sym__whitespace_token1, + ACTIONS(6030), 1, + anon_sym_RPAREN, + STATE(1895), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [17876] = 7, + ACTIONS(5980), 1, + sym_class_specifier, + ACTIONS(5982), 1, + sym_key_value_key, + ACTIONS(6150), 1, + sym_commonmark_name, + ACTIONS(6279), 1, anon_sym_RBRACE, - STATE(1685), 1, + STATE(2032), 1, aux_sym_commonmark_attribute_repeat3, - STATE(1718), 1, + STATE(2100), 1, aux_sym_commonmark_attribute_repeat2, - STATE(1826), 1, + STATE(2152), 1, sym__attribute, - [63546] = 5, - ACTIONS(4241), 1, + [17898] = 5, + ACTIONS(5202), 1, + sym__newline_token, + ACTIONS(5262), 1, + anon_sym_RPAREN, + ACTIONS(5962), 1, + sym__whitespace_ge_2, + ACTIONS(5964), 1, + aux_sym__whitespace_token1, + STATE(1644), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [17916] = 5, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4346), 1, + ACTIONS(5262), 1, + anon_sym_RPAREN, + ACTIONS(5962), 1, + sym__whitespace_ge_2, + ACTIONS(5964), 1, + aux_sym__whitespace_token1, + STATE(1886), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [17934] = 5, + ACTIONS(5202), 1, + sym__newline_token, + ACTIONS(5264), 1, anon_sym_RPAREN, - ACTIONS(4981), 1, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - STATE(1367), 3, + STATE(1653), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [63564] = 5, - ACTIONS(4241), 1, + [17952] = 5, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4346), 1, + ACTIONS(5264), 1, anon_sym_RPAREN, - ACTIONS(4981), 1, + ACTIONS(5962), 1, + sym__whitespace_ge_2, + ACTIONS(5964), 1, + aux_sym__whitespace_token1, + STATE(1890), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [17970] = 5, + ACTIONS(5202), 1, + sym__newline_token, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - STATE(1541), 3, + ACTIONS(6038), 1, + anon_sym_RPAREN, + STATE(1905), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [63582] = 5, - ACTIONS(4241), 1, + [17988] = 7, + ACTIONS(5980), 1, + sym_class_specifier, + ACTIONS(5982), 1, + sym_key_value_key, + ACTIONS(6150), 1, + sym_commonmark_name, + ACTIONS(6325), 1, + anon_sym_RBRACE, + STATE(2074), 1, + aux_sym_commonmark_attribute_repeat3, + STATE(2100), 1, + aux_sym_commonmark_attribute_repeat2, + STATE(2152), 1, + sym__attribute, + [18010] = 7, + ACTIONS(5980), 1, + sym_class_specifier, + ACTIONS(5982), 1, + sym_key_value_key, + ACTIONS(6150), 1, + sym_commonmark_name, + ACTIONS(6154), 1, + anon_sym_RBRACE, + STATE(2025), 1, + aux_sym_commonmark_attribute_repeat3, + STATE(2100), 1, + aux_sym_commonmark_attribute_repeat2, + STATE(2152), 1, + sym__attribute, + [18032] = 5, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4249), 1, + ACTIONS(5960), 1, anon_sym_RPAREN, - ACTIONS(4981), 1, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - STATE(1352), 3, + STATE(1709), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [63600] = 5, - ACTIONS(4241), 1, + [18050] = 5, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4269), 1, + ACTIONS(5960), 1, anon_sym_RPAREN, - ACTIONS(4981), 1, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - STATE(1368), 3, + STATE(1656), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [63618] = 5, - ACTIONS(4241), 1, + [18068] = 5, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4269), 1, + ACTIONS(5960), 1, anon_sym_RPAREN, - ACTIONS(4981), 1, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - STATE(1545), 3, + STATE(1896), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [63636] = 5, - ACTIONS(4241), 1, + [18086] = 5, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4249), 1, - anon_sym_RPAREN, - ACTIONS(4981), 1, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - STATE(1563), 3, + ACTIONS(6038), 1, + anon_sym_RPAREN, + STATE(1709), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [63654] = 5, - ACTIONS(4241), 1, + [18104] = 5, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4981), 1, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - ACTIONS(5093), 1, + ACTIONS(6006), 1, anon_sym_RPAREN, - STATE(1413), 3, + STATE(1709), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [63672] = 7, - ACTIONS(5003), 1, - sym_class_specifier, - ACTIONS(5005), 1, - sym_key_value_key, - ACTIONS(5141), 1, - sym_commonmark_name, - ACTIONS(5304), 1, - anon_sym_RBRACE, - STATE(1718), 1, - aux_sym_commonmark_attribute_repeat2, - STATE(1770), 1, - aux_sym_commonmark_attribute_repeat3, - STATE(1826), 1, - sym__attribute, - [63694] = 5, - ACTIONS(4241), 1, + [18122] = 5, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4981), 1, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - ACTIONS(5093), 1, + ACTIONS(6006), 1, anon_sym_RPAREN, - STATE(1353), 3, + STATE(1657), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [63712] = 5, - ACTIONS(4241), 1, + [18140] = 5, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4981), 1, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - ACTIONS(5033), 1, + ACTIONS(6006), 1, anon_sym_RPAREN, - STATE(1413), 3, + STATE(1898), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [63730] = 5, - ACTIONS(4241), 1, + [18158] = 5, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4981), 1, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - ACTIONS(5033), 1, + ACTIONS(6040), 1, anon_sym_RPAREN, - STATE(1369), 3, + STATE(1907), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [63748] = 5, - ACTIONS(4241), 1, + [18176] = 5, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4981), 1, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - ACTIONS(5033), 1, + ACTIONS(6018), 1, anon_sym_RPAREN, - STATE(1552), 3, + STATE(1899), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [63766] = 7, - ACTIONS(5003), 1, - sym_class_specifier, - ACTIONS(5005), 1, - sym_key_value_key, - ACTIONS(5141), 1, - sym_commonmark_name, - ACTIONS(5306), 1, - anon_sym_RBRACE, - STATE(1691), 1, - aux_sym_commonmark_attribute_repeat3, - STATE(1718), 1, - aux_sym_commonmark_attribute_repeat2, - STATE(1826), 1, - sym__attribute, - [63788] = 5, - ACTIONS(4241), 1, + [18194] = 5, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4981), 1, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - ACTIONS(5035), 1, + ACTIONS(6040), 1, anon_sym_RPAREN, - STATE(1413), 3, + STATE(1709), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [63806] = 5, - ACTIONS(4241), 1, + [18212] = 5, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4981), 1, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - ACTIONS(5035), 1, + ACTIONS(6018), 1, anon_sym_RPAREN, - STATE(1370), 3, + STATE(1709), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [63824] = 5, - ACTIONS(4241), 1, + [18230] = 5, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4981), 1, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - ACTIONS(5035), 1, + ACTIONS(6020), 1, anon_sym_RPAREN, - STATE(1555), 3, + STATE(1901), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [63842] = 5, - ACTIONS(4241), 1, + [18248] = 5, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4313), 1, - anon_sym_RPAREN, - ACTIONS(4981), 1, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - STATE(1520), 3, + ACTIONS(6020), 1, + anon_sym_RPAREN, + STATE(1709), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [63860] = 5, - ACTIONS(4241), 1, + [18266] = 5, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4981), 1, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - ACTIONS(5135), 1, + ACTIONS(6327), 1, anon_sym_RPAREN, - STATE(1413), 3, + STATE(1709), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [63878] = 5, - ACTIONS(4241), 1, + [18284] = 5, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4981), 1, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - ACTIONS(5037), 1, + ACTIONS(6327), 1, anon_sym_RPAREN, - STATE(1556), 3, + STATE(1903), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [63896] = 5, - ACTIONS(4241), 1, + [18302] = 5, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4981), 1, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - ACTIONS(5135), 1, + ACTIONS(6329), 1, anon_sym_RPAREN, - STATE(1354), 3, + STATE(1709), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [63914] = 5, - ACTIONS(4241), 1, + [18320] = 5, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4981), 1, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - ACTIONS(5037), 1, + ACTIONS(6331), 1, anon_sym_RPAREN, - STATE(1413), 3, + STATE(1709), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [63932] = 5, - ACTIONS(4241), 1, + [18338] = 5, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4981), 1, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - ACTIONS(5039), 1, + ACTIONS(6333), 1, anon_sym_RPAREN, - STATE(1558), 3, + STATE(1709), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [63950] = 5, - ACTIONS(4241), 1, + [18356] = 5, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4981), 1, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - ACTIONS(5135), 1, + ACTIONS(6335), 1, anon_sym_RPAREN, - STATE(1572), 3, + STATE(1709), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [63968] = 5, - ACTIONS(4241), 1, + [18374] = 5, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4981), 1, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - ACTIONS(5039), 1, + ACTIONS(6337), 1, anon_sym_RPAREN, - STATE(1413), 3, + STATE(1709), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [63986] = 5, - ACTIONS(4241), 1, + [18392] = 5, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4981), 1, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - ACTIONS(5308), 1, + ACTIONS(6337), 1, anon_sym_RPAREN, - STATE(1413), 3, + STATE(1909), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [64004] = 5, - ACTIONS(4241), 1, + [18410] = 5, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4981), 1, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - ACTIONS(5308), 1, + ACTIONS(6339), 1, anon_sym_RPAREN, - STATE(1560), 3, + STATE(1709), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [64022] = 5, - ACTIONS(4241), 1, + [18428] = 5, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4981), 1, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - ACTIONS(5310), 1, + ACTIONS(6339), 1, anon_sym_RPAREN, - STATE(1413), 3, + STATE(1910), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [64040] = 5, - ACTIONS(4241), 1, + [18446] = 5, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4981), 1, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - ACTIONS(5310), 1, + ACTIONS(6341), 1, anon_sym_RPAREN, - STATE(1561), 3, + STATE(1709), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [64058] = 5, - ACTIONS(4241), 1, + [18464] = 5, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4981), 1, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - ACTIONS(5312), 1, + ACTIONS(6343), 1, anon_sym_RPAREN, - STATE(1413), 3, + STATE(1709), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [64076] = 5, - ACTIONS(4241), 1, + [18482] = 5, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4981), 1, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - ACTIONS(5314), 1, + ACTIONS(6060), 1, anon_sym_RPAREN, - STATE(1413), 3, + STATE(1709), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [64094] = 5, - ACTIONS(4241), 1, + [18500] = 5, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4981), 1, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - ACTIONS(5093), 1, + ACTIONS(6060), 1, anon_sym_RPAREN, - STATE(1627), 3, + STATE(1687), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [64112] = 5, - ACTIONS(4241), 1, + [18518] = 5, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4981), 1, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - ACTIONS(4985), 1, + ACTIONS(6060), 1, anon_sym_RPAREN, - STATE(1413), 3, + STATE(1930), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [64130] = 2, - ACTIONS(5316), 2, + [18536] = 2, + ACTIONS(5032), 2, sym__latex_span_close, sym__backslash_escape, - ACTIONS(5318), 5, + ACTIONS(5034), 5, anon_sym_LBRACK, anon_sym_RBRACK, sym__newline_token, aux_sym_latex_span_token1, aux_sym_latex_span_token2, - [64142] = 5, - ACTIONS(4241), 1, - sym__newline_token, - ACTIONS(4981), 1, - sym__whitespace_ge_2, - ACTIONS(4983), 1, - aux_sym__whitespace_token1, - ACTIONS(4985), 1, - anon_sym_RPAREN, - STATE(1355), 3, - sym__whitespace, - sym__soft_line_break, - aux_sym_inline_link_repeat1, - [64160] = 5, - ACTIONS(4241), 1, + [18548] = 5, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4981), 1, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - ACTIONS(4985), 1, + ACTIONS(6076), 1, anon_sym_RPAREN, - STATE(1578), 3, + STATE(1954), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [64178] = 5, - ACTIONS(4241), 1, - sym__newline_token, - ACTIONS(4981), 1, - sym__whitespace_ge_2, - ACTIONS(4983), 1, - aux_sym__whitespace_token1, - ACTIONS(5320), 1, - anon_sym_RPAREN, - STATE(1413), 3, - sym__whitespace, - sym__soft_line_break, - aux_sym_inline_link_repeat1, - [64196] = 5, - ACTIONS(4241), 1, - sym__newline_token, - ACTIONS(4981), 1, - sym__whitespace_ge_2, - ACTIONS(4983), 1, - aux_sym__whitespace_token1, - ACTIONS(5057), 1, - anon_sym_RPAREN, - STATE(1621), 3, - sym__whitespace, - sym__soft_line_break, - aux_sym_inline_link_repeat1, - [64214] = 5, - ACTIONS(4241), 1, - sym__newline_token, - ACTIONS(4981), 1, - sym__whitespace_ge_2, - ACTIONS(4983), 1, - aux_sym__whitespace_token1, - ACTIONS(5322), 1, - anon_sym_RPAREN, - STATE(1413), 3, - sym__whitespace, - sym__soft_line_break, - aux_sym_inline_link_repeat1, - [64232] = 5, - ACTIONS(4241), 1, - sym__newline_token, - ACTIONS(4981), 1, - sym__whitespace_ge_2, - ACTIONS(4983), 1, - aux_sym__whitespace_token1, - ACTIONS(4989), 1, - anon_sym_RPAREN, - STATE(1579), 3, - sym__whitespace, - sym__soft_line_break, - aux_sym_inline_link_repeat1, - [64250] = 5, - ACTIONS(4241), 1, - sym__newline_token, - ACTIONS(4981), 1, - sym__whitespace_ge_2, - ACTIONS(4983), 1, - aux_sym__whitespace_token1, - ACTIONS(5057), 1, - anon_sym_RPAREN, - STATE(1413), 3, - sym__whitespace, - sym__soft_line_break, - aux_sym_inline_link_repeat1, - [64268] = 5, - ACTIONS(4241), 1, - sym__newline_token, - ACTIONS(4981), 1, - sym__whitespace_ge_2, - ACTIONS(4983), 1, - aux_sym__whitespace_token1, - ACTIONS(4989), 1, - anon_sym_RPAREN, - STATE(1413), 3, - sym__whitespace, - sym__soft_line_break, - aux_sym_inline_link_repeat1, - [64286] = 5, - ACTIONS(4241), 1, - sym__newline_token, - ACTIONS(4981), 1, - sym__whitespace_ge_2, - ACTIONS(4983), 1, - aux_sym__whitespace_token1, - ACTIONS(4991), 1, - anon_sym_RPAREN, - STATE(1581), 3, - sym__whitespace, - sym__soft_line_break, - aux_sym_inline_link_repeat1, - [64304] = 5, - ACTIONS(4241), 1, - sym__newline_token, - ACTIONS(4981), 1, - sym__whitespace_ge_2, - ACTIONS(4983), 1, - aux_sym__whitespace_token1, - ACTIONS(5059), 1, - anon_sym_RPAREN, - STATE(1628), 3, - sym__whitespace, - sym__soft_line_break, - aux_sym_inline_link_repeat1, - [64322] = 5, - ACTIONS(4241), 1, - sym__newline_token, - ACTIONS(4275), 1, - anon_sym_RPAREN, - ACTIONS(4981), 1, - sym__whitespace_ge_2, - ACTIONS(4983), 1, - aux_sym__whitespace_token1, - STATE(1362), 3, - sym__whitespace, - sym__soft_line_break, - aux_sym_inline_link_repeat1, - [64340] = 7, - ACTIONS(5003), 1, - sym_class_specifier, - ACTIONS(5005), 1, - sym_key_value_key, - ACTIONS(5141), 1, - sym_commonmark_name, - ACTIONS(5250), 1, - anon_sym_RBRACE, - STATE(1699), 1, - aux_sym_commonmark_attribute_repeat3, - STATE(1718), 1, - aux_sym_commonmark_attribute_repeat2, - STATE(1826), 1, - sym__attribute, - [64362] = 7, - ACTIONS(5003), 1, + [18566] = 7, + ACTIONS(5980), 1, sym_class_specifier, - ACTIONS(5005), 1, + ACTIONS(5982), 1, sym_key_value_key, - ACTIONS(5141), 1, + ACTIONS(6150), 1, sym_commonmark_name, - ACTIONS(5264), 1, + ACTIONS(6180), 1, anon_sym_RBRACE, - STATE(1687), 1, + STATE(2068), 1, aux_sym_commonmark_attribute_repeat3, - STATE(1718), 1, + STATE(2100), 1, aux_sym_commonmark_attribute_repeat2, - STATE(1826), 1, + STATE(2152), 1, sym__attribute, - [64384] = 5, - ACTIONS(4241), 1, + [18588] = 5, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4981), 1, - sym__whitespace_ge_2, - ACTIONS(4983), 1, - aux_sym__whitespace_token1, - ACTIONS(4991), 1, + ACTIONS(5301), 1, anon_sym_RPAREN, - STATE(1413), 3, - sym__whitespace, - sym__soft_line_break, - aux_sym_inline_link_repeat1, - [64402] = 5, - ACTIONS(4241), 1, - sym__newline_token, - ACTIONS(4981), 1, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - ACTIONS(5324), 1, - anon_sym_RPAREN, - STATE(1413), 3, + STATE(1651), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [64420] = 5, - ACTIONS(4241), 1, + [18606] = 5, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4981), 1, + ACTIONS(5301), 1, + anon_sym_RPAREN, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - ACTIONS(5324), 1, - anon_sym_RPAREN, - STATE(1679), 3, + STATE(1806), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [64438] = 5, - ACTIONS(4241), 1, + [18624] = 2, + ACTIONS(6345), 2, + sym__latex_span_close, + sym__backslash_escape, + ACTIONS(6347), 5, + anon_sym_LBRACK, + anon_sym_RBRACK, + sym__newline_token, + aux_sym_latex_span_token1, + aux_sym_latex_span_token2, + [18636] = 5, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4981), 1, + ACTIONS(5307), 1, + anon_sym_RPAREN, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - ACTIONS(5326), 1, - anon_sym_RPAREN, - STATE(1413), 3, + STATE(1665), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [64456] = 5, - ACTIONS(4241), 1, + [18654] = 5, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4981), 1, + ACTIONS(5307), 1, + anon_sym_RPAREN, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - ACTIONS(5326), 1, - anon_sym_RPAREN, - STATE(1588), 3, + STATE(1824), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [64474] = 5, - ACTIONS(4241), 1, + [18672] = 5, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4981), 1, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - ACTIONS(5031), 1, + ACTIONS(6076), 1, anon_sym_RPAREN, - STATE(1620), 3, + STATE(1709), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [64492] = 7, - ACTIONS(5003), 1, + [18690] = 7, + ACTIONS(5980), 1, sym_class_specifier, - ACTIONS(5005), 1, + ACTIONS(5982), 1, sym_key_value_key, - ACTIONS(5141), 1, + ACTIONS(6150), 1, sym_commonmark_name, - ACTIONS(5266), 1, + ACTIONS(6277), 1, anon_sym_RBRACE, - STATE(1702), 1, + STATE(2016), 1, aux_sym_commonmark_attribute_repeat3, - STATE(1718), 1, + STATE(2100), 1, aux_sym_commonmark_attribute_repeat2, - STATE(1826), 1, + STATE(2152), 1, sym__attribute, - [64514] = 5, - ACTIONS(4241), 1, + [18712] = 5, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4981), 1, - sym__whitespace_ge_2, - ACTIONS(4983), 1, - aux_sym__whitespace_token1, - ACTIONS(5073), 1, + ACTIONS(5309), 1, anon_sym_RPAREN, - STATE(1500), 3, - sym__whitespace, - sym__soft_line_break, - aux_sym_inline_link_repeat1, - [64532] = 5, - ACTIONS(4241), 1, - sym__newline_token, - ACTIONS(4265), 1, - anon_sym_RPAREN, - ACTIONS(4981), 1, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - STATE(1382), 3, + STATE(1672), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [64550] = 5, - ACTIONS(4241), 1, + [18730] = 5, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4265), 1, + ACTIONS(5309), 1, anon_sym_RPAREN, - ACTIONS(4981), 1, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - STATE(1596), 3, + STATE(1932), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [64568] = 5, - ACTIONS(4241), 1, + [18748] = 5, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4981), 1, + ACTIONS(5311), 1, + anon_sym_RPAREN, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - ACTIONS(5328), 1, - anon_sym_RPAREN, - STATE(1413), 3, + STATE(1673), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [64586] = 5, - ACTIONS(4241), 1, + [18766] = 5, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4267), 1, + ACTIONS(5311), 1, anon_sym_RPAREN, - ACTIONS(4981), 1, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - STATE(1383), 3, + STATE(1935), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [64604] = 5, - ACTIONS(4241), 1, + [18784] = 5, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4267), 1, - anon_sym_RPAREN, - ACTIONS(4981), 1, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - STATE(1600), 3, + ACTIONS(6098), 1, + anon_sym_RPAREN, + STATE(1959), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [64622] = 7, - ACTIONS(5003), 1, + [18802] = 7, + ACTIONS(5980), 1, sym_class_specifier, - ACTIONS(5005), 1, + ACTIONS(5982), 1, sym_key_value_key, - ACTIONS(5137), 1, - anon_sym_RBRACE, - ACTIONS(5141), 1, + ACTIONS(6150), 1, sym_commonmark_name, - STATE(1695), 1, + ACTIONS(6349), 1, + anon_sym_RBRACE, + STATE(2036), 1, aux_sym_commonmark_attribute_repeat3, - STATE(1718), 1, + STATE(2100), 1, aux_sym_commonmark_attribute_repeat2, - STATE(1826), 1, + STATE(2152), 1, sym__attribute, - [64644] = 5, - ACTIONS(4241), 1, + [18824] = 5, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4981), 1, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - ACTIONS(5125), 1, - anon_sym_RPAREN, - STATE(1633), 3, - sym__whitespace, - sym__soft_line_break, - aux_sym_inline_link_repeat1, - [64662] = 5, - ACTIONS(4241), 1, - sym__newline_token, - ACTIONS(4257), 1, + ACTIONS(6098), 1, anon_sym_RPAREN, - ACTIONS(4981), 1, - sym__whitespace_ge_2, - ACTIONS(4983), 1, - aux_sym__whitespace_token1, - STATE(1388), 3, + STATE(1709), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [64680] = 7, - ACTIONS(5003), 1, + [18842] = 7, + ACTIONS(5980), 1, sym_class_specifier, - ACTIONS(5005), 1, + ACTIONS(5982), 1, sym_key_value_key, - ACTIONS(5141), 1, + ACTIONS(6150), 1, sym_commonmark_name, - ACTIONS(5330), 1, + ACTIONS(6351), 1, anon_sym_RBRACE, - STATE(1705), 1, - aux_sym_commonmark_attribute_repeat3, - STATE(1718), 1, - aux_sym_commonmark_attribute_repeat2, - STATE(1826), 1, - sym__attribute, - [64702] = 7, - ACTIONS(5003), 1, - sym_class_specifier, - ACTIONS(5005), 1, - sym_key_value_key, - ACTIONS(5141), 1, - sym_commonmark_name, - ACTIONS(5256), 1, - anon_sym_RBRACE, - STATE(1703), 1, + STATE(2026), 1, aux_sym_commonmark_attribute_repeat3, - STATE(1718), 1, + STATE(2100), 1, aux_sym_commonmark_attribute_repeat2, - STATE(1826), 1, + STATE(2152), 1, sym__attribute, - [64724] = 5, - ACTIONS(4241), 1, + [18864] = 5, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4981), 1, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - ACTIONS(5075), 1, + ACTIONS(6056), 1, anon_sym_RPAREN, - STATE(1413), 3, + STATE(1709), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [64742] = 5, - ACTIONS(4241), 1, + [18882] = 5, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4981), 1, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - ACTIONS(5075), 1, + ACTIONS(6056), 1, anon_sym_RPAREN, - STATE(1385), 3, + STATE(1675), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [64760] = 5, - ACTIONS(4241), 1, + [18900] = 5, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4981), 1, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - ACTIONS(5075), 1, + ACTIONS(6056), 1, anon_sym_RPAREN, - STATE(1607), 3, + STATE(1940), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [64778] = 7, - ACTIONS(5003), 1, - sym_class_specifier, - ACTIONS(5005), 1, - sym_key_value_key, - ACTIONS(5141), 1, - sym_commonmark_name, - ACTIONS(5332), 1, - anon_sym_RBRACE, - STATE(1693), 1, - aux_sym_commonmark_attribute_repeat3, - STATE(1718), 1, - aux_sym_commonmark_attribute_repeat2, - STATE(1826), 1, - sym__attribute, - [64800] = 5, - ACTIONS(4241), 1, + [18918] = 5, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4981), 1, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - ACTIONS(5077), 1, + ACTIONS(6058), 1, anon_sym_RPAREN, - STATE(1413), 3, + STATE(1709), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [64818] = 5, - ACTIONS(4241), 1, + [18936] = 5, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4981), 1, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - ACTIONS(5077), 1, + ACTIONS(6058), 1, anon_sym_RPAREN, - STATE(1386), 3, + STATE(1676), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [64836] = 5, - ACTIONS(4241), 1, + [18954] = 5, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4981), 1, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - ACTIONS(5077), 1, + ACTIONS(6058), 1, anon_sym_RPAREN, - STATE(1610), 3, + STATE(1943), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [64854] = 7, - ACTIONS(5003), 1, + [18972] = 7, + ACTIONS(5980), 1, sym_class_specifier, - ACTIONS(5005), 1, + ACTIONS(5982), 1, sym_key_value_key, - ACTIONS(5141), 1, + ACTIONS(6150), 1, sym_commonmark_name, - ACTIONS(5268), 1, + ACTIONS(6271), 1, anon_sym_RBRACE, - STATE(1704), 1, + STATE(2012), 1, aux_sym_commonmark_attribute_repeat3, - STATE(1718), 1, + STATE(2100), 1, aux_sym_commonmark_attribute_repeat2, - STATE(1826), 1, + STATE(2152), 1, sym__attribute, - [64876] = 5, - ACTIONS(4241), 1, + [18994] = 5, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4981), 1, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - ACTIONS(5125), 1, + ACTIONS(6062), 1, anon_sym_RPAREN, - STATE(1413), 3, + STATE(1944), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [64894] = 5, - ACTIONS(4241), 1, + [19012] = 5, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4981), 1, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - ACTIONS(5081), 1, + ACTIONS(6062), 1, anon_sym_RPAREN, - STATE(1611), 3, + STATE(1709), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [64912] = 5, - ACTIONS(4241), 1, + [19030] = 5, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4336), 1, - anon_sym_RPAREN, - ACTIONS(4981), 1, - sym__whitespace_ge_2, - ACTIONS(4983), 1, - aux_sym__whitespace_token1, - STATE(1364), 3, - sym__whitespace, - sym__soft_line_break, - aux_sym_inline_link_repeat1, - [64930] = 5, - ACTIONS(4241), 1, - sym__newline_token, - ACTIONS(4981), 1, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - ACTIONS(5081), 1, + ACTIONS(6064), 1, anon_sym_RPAREN, - STATE(1413), 3, + STATE(1946), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [64948] = 5, - ACTIONS(4241), 1, + [19048] = 7, + ACTIONS(5980), 1, + sym_class_specifier, + ACTIONS(5982), 1, + sym_key_value_key, + ACTIONS(6150), 1, + sym_commonmark_name, + ACTIONS(6166), 1, + anon_sym_RBRACE, + STATE(2054), 1, + aux_sym_commonmark_attribute_repeat3, + STATE(2100), 1, + aux_sym_commonmark_attribute_repeat2, + STATE(2152), 1, + sym__attribute, + [19070] = 5, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4981), 1, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - ACTIONS(5083), 1, + ACTIONS(6064), 1, anon_sym_RPAREN, - STATE(1613), 3, + STATE(1709), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [64966] = 5, - ACTIONS(4241), 1, + [19088] = 5, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4336), 1, - anon_sym_RPAREN, - ACTIONS(4981), 1, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - STATE(1650), 3, - sym__whitespace, - sym__soft_line_break, - aux_sym_inline_link_repeat1, - [64984] = 5, - ACTIONS(4241), 1, - sym__newline_token, - ACTIONS(4981), 1, - sym__whitespace_ge_2, - ACTIONS(4983), 1, - aux_sym__whitespace_token1, - ACTIONS(5083), 1, + ACTIONS(6353), 1, anon_sym_RPAREN, - STATE(1413), 3, + STATE(1709), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [65002] = 5, - ACTIONS(4241), 1, + [19106] = 5, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4981), 1, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - ACTIONS(5334), 1, + ACTIONS(6353), 1, anon_sym_RPAREN, - STATE(1413), 3, + STATE(1948), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [65020] = 5, - ACTIONS(4241), 1, + [19124] = 5, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4981), 1, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - ACTIONS(5334), 1, + ACTIONS(6355), 1, anon_sym_RPAREN, - STATE(1615), 3, + STATE(1709), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [65038] = 5, - ACTIONS(4241), 1, + [19142] = 5, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4981), 1, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - ACTIONS(5336), 1, + ACTIONS(6355), 1, anon_sym_RPAREN, - STATE(1413), 3, + STATE(1949), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [65056] = 5, - ACTIONS(4241), 1, + [19160] = 5, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4981), 1, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - ACTIONS(5336), 1, + ACTIONS(6357), 1, anon_sym_RPAREN, - STATE(1616), 3, + STATE(1709), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [65074] = 5, - ACTIONS(4241), 1, + [19178] = 5, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4981), 1, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - ACTIONS(5338), 1, + ACTIONS(6359), 1, anon_sym_RPAREN, - STATE(1413), 3, + STATE(1709), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [65092] = 5, - ACTIONS(4241), 1, + [19196] = 5, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4981), 1, + ACTIONS(5218), 1, + anon_sym_RPAREN, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - ACTIONS(5340), 1, - anon_sym_RPAREN, - STATE(1413), 3, + STATE(1670), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [65110] = 2, - ACTIONS(4029), 2, - sym__latex_span_close, - sym__backslash_escape, - ACTIONS(4031), 5, - anon_sym_LBRACK, - anon_sym_RBRACK, - sym__newline_token, - aux_sym_latex_span_token1, - aux_sym_latex_span_token2, - [65122] = 5, - ACTIONS(4241), 1, + [19214] = 5, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4338), 1, + ACTIONS(5218), 1, anon_sym_RPAREN, - ACTIONS(4981), 1, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - STATE(1366), 3, + STATE(1997), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [65140] = 5, - ACTIONS(4241), 1, + [19232] = 5, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4338), 1, + ACTIONS(5220), 1, anon_sym_RPAREN, - ACTIONS(4981), 1, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, STATE(1677), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [65158] = 5, - ACTIONS(4241), 1, + [19250] = 5, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4981), 1, + ACTIONS(5220), 1, + anon_sym_RPAREN, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - ACTIONS(5059), 1, - anon_sym_RPAREN, - STATE(1413), 3, + STATE(1777), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [65176] = 5, - ACTIONS(4241), 1, + [19268] = 5, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4981), 1, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - ACTIONS(5342), 1, + ACTIONS(6361), 1, anon_sym_RPAREN, - STATE(1413), 3, + STATE(1709), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [65194] = 5, - ACTIONS(4241), 1, + [19286] = 5, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4981), 1, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - ACTIONS(5342), 1, + ACTIONS(6361), 1, anon_sym_RPAREN, - STATE(1631), 3, + STATE(1964), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [65212] = 7, - ACTIONS(5003), 1, + [19304] = 7, + ACTIONS(5980), 1, sym_class_specifier, - ACTIONS(5005), 1, + ACTIONS(5982), 1, sym_key_value_key, - ACTIONS(5141), 1, + ACTIONS(6150), 1, sym_commonmark_name, - ACTIONS(5220), 1, + ACTIONS(6263), 1, anon_sym_RBRACE, - STATE(1715), 1, + STATE(2011), 1, aux_sym_commonmark_attribute_repeat3, - STATE(1718), 1, + STATE(2100), 1, aux_sym_commonmark_attribute_repeat2, - STATE(1826), 1, + STATE(2152), 1, sym__attribute, - [65234] = 5, - ACTIONS(4241), 1, + [19326] = 5, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4981), 1, - sym__whitespace_ge_2, - ACTIONS(4983), 1, - aux_sym__whitespace_token1, - ACTIONS(4987), 1, + ACTIONS(5236), 1, anon_sym_RPAREN, - STATE(1670), 3, - sym__whitespace, - sym__soft_line_break, - aux_sym_inline_link_repeat1, - [65252] = 7, - ACTIONS(5003), 1, - sym_class_specifier, - ACTIONS(5005), 1, - sym_key_value_key, - ACTIONS(5141), 1, - sym_commonmark_name, - ACTIONS(5344), 1, - anon_sym_RBRACE, - STATE(1718), 1, - aux_sym_commonmark_attribute_repeat2, - STATE(1729), 1, - aux_sym_commonmark_attribute_repeat3, - STATE(1826), 1, - sym__attribute, - [65274] = 2, - ACTIONS(3921), 2, - sym__latex_span_close, - sym__backslash_escape, - ACTIONS(3923), 5, - anon_sym_LBRACK, - anon_sym_RBRACK, - sym__newline_token, - aux_sym_latex_span_token1, - aux_sym_latex_span_token2, - [65286] = 5, - ACTIONS(4241), 1, - sym__newline_token, - ACTIONS(4981), 1, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - ACTIONS(4987), 1, - anon_sym_RPAREN, - STATE(1413), 3, + STATE(1652), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [65304] = 5, - ACTIONS(4241), 1, + [19344] = 5, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4981), 1, + ACTIONS(5236), 1, + anon_sym_RPAREN, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - ACTIONS(5346), 1, - anon_sym_RPAREN, - STATE(1413), 3, + STATE(1970), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [65322] = 5, - ACTIONS(4241), 1, + [19362] = 5, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4981), 1, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - ACTIONS(5346), 1, + ACTIONS(6363), 1, anon_sym_RPAREN, - STATE(1635), 3, + STATE(1709), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [65340] = 7, - ACTIONS(5003), 1, - sym_class_specifier, - ACTIONS(5005), 1, - sym_key_value_key, - ACTIONS(5141), 1, - sym_commonmark_name, - ACTIONS(5242), 1, - anon_sym_RBRACE, - STATE(1714), 1, - aux_sym_commonmark_attribute_repeat3, - STATE(1718), 1, - aux_sym_commonmark_attribute_repeat2, - STATE(1826), 1, - sym__attribute, - [65362] = 5, - ACTIONS(4241), 1, + [19380] = 5, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4981), 1, + ACTIONS(5238), 1, + anon_sym_RPAREN, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - ACTIONS(5348), 1, + STATE(1655), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [19398] = 5, + ACTIONS(5202), 1, + sym__newline_token, + ACTIONS(5238), 1, anon_sym_RPAREN, - STATE(1413), 3, + ACTIONS(5962), 1, + sym__whitespace_ge_2, + ACTIONS(5964), 1, + aux_sym__whitespace_token1, + STATE(1976), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [65380] = 7, - ACTIONS(5003), 1, + [19416] = 7, + ACTIONS(5980), 1, sym_class_specifier, - ACTIONS(5005), 1, + ACTIONS(5982), 1, sym_key_value_key, - ACTIONS(5141), 1, + ACTIONS(6150), 1, sym_commonmark_name, - ACTIONS(5270), 1, + ACTIONS(6239), 1, anon_sym_RBRACE, - STATE(1718), 1, - aux_sym_commonmark_attribute_repeat2, - STATE(1723), 1, + STATE(2014), 1, aux_sym_commonmark_attribute_repeat3, - STATE(1826), 1, + STATE(2100), 1, + aux_sym_commonmark_attribute_repeat2, + STATE(2152), 1, sym__attribute, - [65402] = 5, - ACTIONS(4241), 1, + [19438] = 5, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4981), 1, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - ACTIONS(5350), 1, - anon_sym_RPAREN, - STATE(1413), 3, - sym__whitespace, - sym__soft_line_break, - aux_sym_inline_link_repeat1, - [65420] = 5, - ACTIONS(4241), 1, - sym__newline_token, - ACTIONS(4277), 1, + ACTIONS(6363), 1, anon_sym_RPAREN, - ACTIONS(4981), 1, - sym__whitespace_ge_2, - ACTIONS(4983), 1, - aux_sym__whitespace_token1, - STATE(1378), 3, + STATE(1988), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [65438] = 5, - ACTIONS(4241), 1, + [19456] = 5, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4981), 1, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - ACTIONS(5352), 1, + ACTIONS(6365), 1, anon_sym_RPAREN, - STATE(1413), 3, + STATE(1709), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [65456] = 7, - ACTIONS(5003), 1, + [19474] = 7, + ACTIONS(5980), 1, sym_class_specifier, - ACTIONS(5005), 1, + ACTIONS(5982), 1, sym_key_value_key, - ACTIONS(5141), 1, + ACTIONS(6150), 1, sym_commonmark_name, - ACTIONS(5272), 1, + ACTIONS(6367), 1, anon_sym_RBRACE, - STATE(1717), 1, + STATE(2023), 1, aux_sym_commonmark_attribute_repeat3, - STATE(1718), 1, + STATE(2100), 1, aux_sym_commonmark_attribute_repeat2, - STATE(1826), 1, + STATE(2152), 1, + sym__attribute, + [19496] = 7, + ACTIONS(5980), 1, + sym_class_specifier, + ACTIONS(5982), 1, + sym_key_value_key, + ACTIONS(6150), 1, + sym_commonmark_name, + ACTIONS(6369), 1, + anon_sym_RBRACE, + STATE(2046), 1, + aux_sym_commonmark_attribute_repeat3, + STATE(2100), 1, + aux_sym_commonmark_attribute_repeat2, + STATE(2152), 1, sym__attribute, - [65478] = 5, - ACTIONS(4241), 1, + [19518] = 7, + ACTIONS(5980), 1, + sym_class_specifier, + ACTIONS(5982), 1, + sym_key_value_key, + ACTIONS(6150), 1, + sym_commonmark_name, + ACTIONS(6267), 1, + anon_sym_RBRACE, + STATE(2024), 1, + aux_sym_commonmark_attribute_repeat3, + STATE(2100), 1, + aux_sym_commonmark_attribute_repeat2, + STATE(2152), 1, + sym__attribute, + [19540] = 5, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4277), 1, + ACTIONS(5317), 1, anon_sym_RPAREN, - ACTIONS(4981), 1, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - STATE(1660), 3, + STATE(1688), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [65496] = 5, - ACTIONS(4241), 1, + [19558] = 5, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4315), 1, + ACTIONS(5317), 1, anon_sym_RPAREN, - ACTIONS(4981), 1, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - STATE(1351), 3, + STATE(1977), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [65514] = 5, - ACTIONS(4241), 1, + [19576] = 5, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4315), 1, - anon_sym_RPAREN, - ACTIONS(4981), 1, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - STATE(1647), 3, + ACTIONS(6004), 1, + anon_sym_RPAREN, + STATE(1709), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [65532] = 5, - ACTIONS(4241), 1, + [19594] = 5, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4317), 1, + ACTIONS(5246), 1, anon_sym_RPAREN, - ACTIONS(4981), 1, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - STATE(1389), 3, + STATE(1689), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [65550] = 5, - ACTIONS(4241), 1, + [19612] = 5, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4317), 1, + ACTIONS(5246), 1, anon_sym_RPAREN, - ACTIONS(4981), 1, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - STATE(1651), 3, + STATE(1981), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [65568] = 7, - ACTIONS(5003), 1, - sym_class_specifier, - ACTIONS(5005), 1, - sym_key_value_key, - ACTIONS(5141), 1, - sym_commonmark_name, - ACTIONS(5354), 1, - anon_sym_RBRACE, - STATE(1688), 1, - aux_sym_commonmark_attribute_repeat3, - STATE(1718), 1, - aux_sym_commonmark_attribute_repeat2, - STATE(1826), 1, - sym__attribute, - [65590] = 5, - ACTIONS(4241), 1, + [19630] = 5, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4279), 1, - anon_sym_RPAREN, - ACTIONS(4981), 1, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - STATE(1379), 3, + ACTIONS(6004), 1, + anon_sym_RPAREN, + STATE(1679), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [65608] = 5, - ACTIONS(4241), 1, + [19648] = 5, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4279), 1, - anon_sym_RPAREN, - ACTIONS(4981), 1, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - STATE(1671), 3, + ACTIONS(6004), 1, + anon_sym_RPAREN, + STATE(1998), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [65626] = 7, - ACTIONS(5003), 1, + [19666] = 7, + ACTIONS(5980), 1, sym_class_specifier, - ACTIONS(5005), 1, + ACTIONS(5982), 1, sym_key_value_key, - ACTIONS(5141), 1, + ACTIONS(6150), 1, sym_commonmark_name, - ACTIONS(5356), 1, + ACTIONS(6371), 1, anon_sym_RBRACE, - STATE(1718), 1, - aux_sym_commonmark_attribute_repeat2, - STATE(1722), 1, + STATE(2034), 1, aux_sym_commonmark_attribute_repeat3, - STATE(1826), 1, + STATE(2100), 1, + aux_sym_commonmark_attribute_repeat2, + STATE(2152), 1, sym__attribute, - [65648] = 5, - ACTIONS(4241), 1, + [19688] = 5, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4981), 1, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - ACTIONS(5350), 1, + ACTIONS(6016), 1, anon_sym_RPAREN, - STATE(1567), 3, + STATE(1709), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [65666] = 5, - ACTIONS(4241), 1, + [19706] = 5, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4979), 1, - anon_sym_RPAREN, - ACTIONS(4981), 1, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - STATE(1413), 3, + ACTIONS(6100), 1, + anon_sym_RPAREN, + STATE(1709), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [65684] = 5, - ACTIONS(4241), 1, + [19724] = 5, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4979), 1, - anon_sym_RPAREN, - ACTIONS(4981), 1, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - STATE(1391), 3, + ACTIONS(6100), 1, + anon_sym_RPAREN, + STATE(1690), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [65702] = 5, - ACTIONS(4241), 1, + [19742] = 5, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4979), 1, - anon_sym_RPAREN, - ACTIONS(4981), 1, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - STATE(1658), 3, + ACTIONS(6100), 1, + anon_sym_RPAREN, + STATE(1986), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [65720] = 5, - ACTIONS(4241), 1, + [19760] = 5, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4981), 1, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - ACTIONS(5021), 1, + ACTIONS(6016), 1, anon_sym_RPAREN, - STATE(1413), 3, + STATE(1681), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [65738] = 5, - ACTIONS(4241), 1, + [19778] = 5, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4981), 1, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - ACTIONS(5095), 1, + ACTIONS(6102), 1, anon_sym_RPAREN, - STATE(1413), 3, + STATE(1709), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [65756] = 5, - ACTIONS(4241), 1, + [19796] = 5, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4981), 1, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - ACTIONS(5095), 1, + ACTIONS(6102), 1, anon_sym_RPAREN, - STATE(1392), 3, + STATE(1691), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [65774] = 5, - ACTIONS(4241), 1, + [19814] = 5, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4981), 1, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - ACTIONS(5095), 1, + ACTIONS(6102), 1, anon_sym_RPAREN, - STATE(1661), 3, + STATE(1989), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [65792] = 5, - ACTIONS(4241), 1, + [19832] = 5, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4981), 1, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - ACTIONS(5021), 1, + ACTIONS(6016), 1, anon_sym_RPAREN, - STATE(1373), 3, + STATE(2001), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [65810] = 7, - ACTIONS(5003), 1, - sym_class_specifier, - ACTIONS(5005), 1, - sym_key_value_key, - ACTIONS(5141), 1, - sym_commonmark_name, - ACTIONS(5358), 1, - anon_sym_RBRACE, - STATE(1684), 1, - aux_sym_commonmark_attribute_repeat3, - STATE(1718), 1, - aux_sym_commonmark_attribute_repeat2, - STATE(1826), 1, - sym__attribute, - [65832] = 5, - ACTIONS(4241), 1, + [19850] = 5, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4981), 1, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - ACTIONS(5105), 1, + ACTIONS(6104), 1, anon_sym_RPAREN, - STATE(1662), 3, + STATE(1990), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [65850] = 5, - ACTIONS(4241), 1, + [19868] = 5, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4981), 1, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - ACTIONS(5021), 1, + ACTIONS(6104), 1, anon_sym_RPAREN, - STATE(1571), 3, + STATE(1709), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [65868] = 5, - ACTIONS(4241), 1, + [19886] = 5, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4981), 1, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - ACTIONS(5105), 1, + ACTIONS(6106), 1, anon_sym_RPAREN, - STATE(1413), 3, + STATE(1992), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [65886] = 5, - ACTIONS(4241), 1, + [19904] = 5, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4981), 1, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - ACTIONS(5107), 1, + ACTIONS(6373), 1, anon_sym_RPAREN, - STATE(1664), 3, + STATE(1709), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [65904] = 5, - ACTIONS(4241), 1, + [19922] = 5, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4981), 1, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - ACTIONS(5067), 1, + ACTIONS(6106), 1, anon_sym_RPAREN, - STATE(1413), 3, + STATE(1709), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [65922] = 5, - ACTIONS(4241), 1, + [19940] = 5, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4981), 1, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - ACTIONS(5107), 1, + ACTIONS(6375), 1, anon_sym_RPAREN, - STATE(1413), 3, + STATE(1709), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [65940] = 5, - ACTIONS(4241), 1, + [19958] = 5, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4981), 1, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - ACTIONS(5360), 1, + ACTIONS(6375), 1, anon_sym_RPAREN, - STATE(1413), 3, + STATE(1994), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [65958] = 5, - ACTIONS(4241), 1, + [19976] = 5, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4981), 1, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - ACTIONS(5360), 1, + ACTIONS(6377), 1, anon_sym_RPAREN, - STATE(1666), 3, + STATE(1709), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [65976] = 5, - ACTIONS(4241), 1, + [19994] = 5, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4981), 1, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - ACTIONS(5362), 1, + ACTIONS(6377), 1, anon_sym_RPAREN, - STATE(1413), 3, + STATE(1995), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [65994] = 5, - ACTIONS(4241), 1, + [20012] = 5, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4981), 1, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - ACTIONS(5362), 1, + ACTIONS(6379), 1, anon_sym_RPAREN, - STATE(1667), 3, + STATE(1709), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [66012] = 5, - ACTIONS(4241), 1, + [20030] = 5, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4981), 1, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - ACTIONS(5364), 1, + ACTIONS(6381), 1, anon_sym_RPAREN, - STATE(1413), 3, + STATE(1709), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [66030] = 5, - ACTIONS(4241), 1, + [20048] = 5, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4981), 1, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - ACTIONS(5366), 1, + ACTIONS(6070), 1, anon_sym_RPAREN, - STATE(1413), 3, + STATE(2003), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [66048] = 5, - ACTIONS(4241), 1, + [20066] = 5, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4981), 1, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - ACTIONS(5067), 1, + ACTIONS(6046), 1, anon_sym_RPAREN, - STATE(1381), 3, + STATE(1709), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [66066] = 5, - ACTIONS(4241), 1, + [20084] = 5, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4981), 1, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - ACTIONS(5067), 1, + ACTIONS(6070), 1, anon_sym_RPAREN, - STATE(1472), 3, + STATE(1709), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [66084] = 5, - ACTIONS(4241), 1, + [20102] = 5, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4981), 1, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - ACTIONS(5278), 1, + ACTIONS(6074), 1, anon_sym_RPAREN, - STATE(1413), 3, + STATE(2005), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [66102] = 5, - ACTIONS(4241), 1, + [20120] = 5, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4981), 1, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - ACTIONS(5069), 1, + ACTIONS(6046), 1, anon_sym_RPAREN, - STATE(1413), 3, + STATE(1661), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [66120] = 5, - ACTIONS(4241), 1, + [20138] = 5, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4981), 1, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - ACTIONS(5069), 1, + ACTIONS(6074), 1, anon_sym_RPAREN, - STATE(1384), 3, + STATE(1709), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [66138] = 5, - ACTIONS(4241), 1, + [20156] = 5, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4257), 1, - anon_sym_RPAREN, - ACTIONS(4981), 1, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - STATE(1538), 3, + ACTIONS(6383), 1, + anon_sym_RPAREN, + STATE(1709), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [66156] = 5, - ACTIONS(4241), 1, + [20174] = 5, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4275), 1, - anon_sym_RPAREN, - ACTIONS(4981), 1, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - STATE(1515), 3, + ACTIONS(6385), 1, + anon_sym_RPAREN, + STATE(1709), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [66174] = 7, - ACTIONS(5003), 1, - sym_class_specifier, - ACTIONS(5005), 1, - sym_key_value_key, - ACTIONS(5141), 1, - sym_commonmark_name, - ACTIONS(5155), 1, - anon_sym_RBRACE, - STATE(1682), 1, - aux_sym_commonmark_attribute_repeat3, - STATE(1718), 1, - aux_sym_commonmark_attribute_repeat2, - STATE(1826), 1, - sym__attribute, - [66196] = 5, - ACTIONS(4241), 1, + [20192] = 5, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4981), 1, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - ACTIONS(5069), 1, + ACTIONS(6385), 1, anon_sym_RPAREN, - STATE(1499), 3, + STATE(2002), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [66214] = 5, - ACTIONS(4241), 1, + [20210] = 5, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4981), 1, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - ACTIONS(5031), 1, + ACTIONS(6387), 1, anon_sym_RPAREN, - STATE(1413), 3, + STATE(1709), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [66232] = 5, - ACTIONS(4241), 1, + [20228] = 5, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4981), 1, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - ACTIONS(5031), 1, + ACTIONS(6387), 1, anon_sym_RPAREN, - STATE(1374), 3, + STATE(1902), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [66250] = 5, - ACTIONS(4241), 1, + [20246] = 5, + ACTIONS(5202), 1, sym__newline_token, - ACTIONS(4981), 1, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - ACTIONS(5368), 1, + ACTIONS(6329), 1, anon_sym_RPAREN, - STATE(1413), 3, + STATE(1904), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [66268] = 4, - ACTIONS(5372), 1, - sym_id_specifier, - ACTIONS(5375), 1, - sym_key_value_key, - STATE(1680), 1, - aux_sym_commonmark_attribute_repeat1, - ACTIONS(5370), 3, - anon_sym_RBRACE, - sym_commonmark_name, - sym_class_specifier, - [66283] = 3, - ACTIONS(5379), 1, + [20264] = 3, + ACTIONS(6391), 1, sym__commonmark_whitespace, - ACTIONS(5381), 1, + ACTIONS(6393), 1, sym_key_value_key, - ACTIONS(5377), 4, + ACTIONS(6389), 4, anon_sym_RBRACE, sym_commonmark_name, sym_id_specifier, sym_class_specifier, - [66296] = 5, - ACTIONS(5005), 1, + [20277] = 4, + ACTIONS(6397), 1, + sym_id_specifier, + ACTIONS(6400), 1, sym_key_value_key, - ACTIONS(5141), 1, - sym_commonmark_name, - ACTIONS(5264), 1, + STATE(2009), 1, + aux_sym_commonmark_attribute_repeat1, + ACTIONS(6395), 3, anon_sym_RBRACE, - STATE(1719), 1, - aux_sym_commonmark_attribute_repeat3, - STATE(1826), 1, - sym__attribute, - [66312] = 5, - ACTIONS(5383), 1, + sym_commonmark_name, + sym_class_specifier, + [20292] = 5, + ACTIONS(6402), 1, sym__whitespace_ge_2, - ACTIONS(5385), 1, + ACTIONS(6404), 1, aux_sym__whitespace_token1, - STATE(1343), 1, + STATE(1620), 1, sym__whitespace, - STATE(1797), 1, + STATE(2084), 1, aux_sym_shortcode_escaped_repeat1, - STATE(1825), 1, + STATE(2146), 1, aux_sym_shortcode_escaped_repeat2, - [66328] = 5, - ACTIONS(5005), 1, + [20308] = 5, + ACTIONS(5982), 1, sym_key_value_key, - ACTIONS(5141), 1, + ACTIONS(6150), 1, sym_commonmark_name, - ACTIONS(5387), 1, + ACTIONS(6369), 1, anon_sym_RBRACE, - STATE(1719), 1, + STATE(2062), 1, aux_sym_commonmark_attribute_repeat3, - STATE(1826), 1, + STATE(2152), 1, sym__attribute, - [66344] = 5, - ACTIONS(5005), 1, + [20324] = 5, + ACTIONS(5982), 1, sym_key_value_key, - ACTIONS(5141), 1, + ACTIONS(6150), 1, sym_commonmark_name, - ACTIONS(5304), 1, + ACTIONS(6367), 1, anon_sym_RBRACE, - STATE(1719), 1, + STATE(2062), 1, aux_sym_commonmark_attribute_repeat3, - STATE(1826), 1, + STATE(2152), 1, sym__attribute, - [66360] = 5, - ACTIONS(5005), 1, + [20340] = 5, + ACTIONS(5982), 1, sym_key_value_key, - ACTIONS(5141), 1, + ACTIONS(6150), 1, sym_commonmark_name, - ACTIONS(5306), 1, + ACTIONS(6293), 1, anon_sym_RBRACE, - STATE(1719), 1, + STATE(2062), 1, aux_sym_commonmark_attribute_repeat3, - STATE(1826), 1, + STATE(2152), 1, sym__attribute, - [66376] = 5, - ACTIONS(5005), 1, + [20356] = 5, + ACTIONS(5982), 1, sym_key_value_key, - ACTIONS(5141), 1, + ACTIONS(6150), 1, sym_commonmark_name, - ACTIONS(5344), 1, + ACTIONS(6267), 1, anon_sym_RBRACE, - STATE(1719), 1, + STATE(2062), 1, aux_sym_commonmark_attribute_repeat3, - STATE(1826), 1, + STATE(2152), 1, sym__attribute, - [66392] = 5, - ACTIONS(5005), 1, + [20372] = 5, + ACTIONS(6402), 1, + sym__whitespace_ge_2, + ACTIONS(6404), 1, + aux_sym__whitespace_token1, + STATE(1619), 1, + sym__whitespace, + STATE(2115), 1, + aux_sym_shortcode_escaped_repeat1, + STATE(2117), 1, + aux_sym_shortcode_escaped_repeat2, + [20388] = 5, + ACTIONS(5982), 1, sym_key_value_key, - ACTIONS(5141), 1, + ACTIONS(6150), 1, sym_commonmark_name, - ACTIONS(5389), 1, + ACTIONS(6351), 1, anon_sym_RBRACE, - STATE(1719), 1, + STATE(2062), 1, aux_sym_commonmark_attribute_repeat3, - STATE(1826), 1, + STATE(2152), 1, sym__attribute, - [66408] = 5, - ACTIONS(5005), 1, + [20404] = 5, + ACTIONS(5982), 1, sym_key_value_key, - ACTIONS(5141), 1, + ACTIONS(6150), 1, sym_commonmark_name, - ACTIONS(5268), 1, + ACTIONS(6275), 1, anon_sym_RBRACE, - STATE(1719), 1, + STATE(2062), 1, aux_sym_commonmark_attribute_repeat3, - STATE(1826), 1, + STATE(2152), 1, sym__attribute, - [66424] = 5, - ACTIONS(5005), 1, + [20420] = 5, + ACTIONS(6406), 1, + anon_sym_DQUOTE, + ACTIONS(6408), 1, + anon_sym_SQUOTE, + ACTIONS(6410), 1, + sym__commonmark_whitespace, + ACTIONS(6412), 1, + aux_sym_key_value_value_token1, + STATE(2151), 1, + sym_key_value_value, + [20436] = 5, + ACTIONS(5982), 1, sym_key_value_key, - ACTIONS(5137), 1, - anon_sym_RBRACE, - ACTIONS(5141), 1, + ACTIONS(6150), 1, sym_commonmark_name, - STATE(1719), 1, + ACTIONS(6251), 1, + anon_sym_RBRACE, + STATE(2062), 1, aux_sym_commonmark_attribute_repeat3, - STATE(1826), 1, + STATE(2152), 1, sym__attribute, - [66440] = 5, - ACTIONS(5005), 1, + [20452] = 5, + ACTIONS(5982), 1, sym_key_value_key, - ACTIONS(5141), 1, + ACTIONS(6150), 1, sym_commonmark_name, - ACTIONS(5391), 1, + ACTIONS(6279), 1, anon_sym_RBRACE, - STATE(1719), 1, + STATE(2062), 1, aux_sym_commonmark_attribute_repeat3, - STATE(1826), 1, + STATE(2152), 1, sym__attribute, - [66456] = 4, - ACTIONS(5393), 1, - sym_shortcode_name, - ACTIONS(5395), 1, - sym_shortcode_number, - STATE(2037), 1, - sym_shortcode_boolean, - ACTIONS(4875), 2, - anon_sym_true, - anon_sym_false, - [66470] = 5, - ACTIONS(5005), 1, + [20468] = 5, + ACTIONS(5982), 1, sym_key_value_key, - ACTIONS(5141), 1, + ACTIONS(6150), 1, sym_commonmark_name, - ACTIONS(5397), 1, + ACTIONS(6349), 1, anon_sym_RBRACE, - STATE(1719), 1, + STATE(2062), 1, aux_sym_commonmark_attribute_repeat3, - STATE(1826), 1, + STATE(2152), 1, sym__attribute, - [66486] = 5, - ACTIONS(5383), 1, - sym__whitespace_ge_2, - ACTIONS(5385), 1, - aux_sym__whitespace_token1, - STATE(1322), 1, - sym__whitespace, - STATE(1706), 1, - aux_sym_shortcode_escaped_repeat1, - STATE(1796), 1, - aux_sym_shortcode_escaped_repeat2, - [66502] = 5, - ACTIONS(5005), 1, + [20484] = 5, + ACTIONS(5982), 1, sym_key_value_key, - ACTIONS(5141), 1, + ACTIONS(6150), 1, sym_commonmark_name, - ACTIONS(5256), 1, + ACTIONS(6414), 1, anon_sym_RBRACE, - STATE(1719), 1, + STATE(2062), 1, aux_sym_commonmark_attribute_repeat3, - STATE(1826), 1, + STATE(2152), 1, sym__attribute, - [66518] = 5, - ACTIONS(5005), 1, + [20500] = 5, + ACTIONS(5982), 1, sym_key_value_key, - ACTIONS(5141), 1, + ACTIONS(6150), 1, sym_commonmark_name, - ACTIONS(5250), 1, + ACTIONS(6416), 1, anon_sym_RBRACE, - STATE(1719), 1, + STATE(2062), 1, aux_sym_commonmark_attribute_repeat3, - STATE(1826), 1, + STATE(2152), 1, sym__attribute, - [66534] = 5, - ACTIONS(5399), 1, - sym__whitespace_ge_2, - ACTIONS(5401), 1, - aux_sym__whitespace_token1, - STATE(1314), 1, - sym__whitespace, - STATE(1771), 1, - aux_sym_shortcode_escaped_repeat2, - STATE(1797), 1, - aux_sym_shortcode_escaped_repeat1, - [66550] = 5, - ACTIONS(5005), 1, + [20516] = 5, + ACTIONS(5982), 1, sym_key_value_key, - ACTIONS(5141), 1, + ACTIONS(6150), 1, sym_commonmark_name, - ACTIONS(5224), 1, + ACTIONS(6371), 1, anon_sym_RBRACE, - STATE(1719), 1, + STATE(2062), 1, aux_sym_commonmark_attribute_repeat3, - STATE(1826), 1, + STATE(2152), 1, sym__attribute, - [66566] = 5, - ACTIONS(5005), 1, + [20532] = 5, + ACTIONS(5982), 1, sym_key_value_key, - ACTIONS(5141), 1, + ACTIONS(6150), 1, sym_commonmark_name, - ACTIONS(5266), 1, + ACTIONS(6271), 1, anon_sym_RBRACE, - STATE(1719), 1, + STATE(2062), 1, aux_sym_commonmark_attribute_repeat3, - STATE(1826), 1, + STATE(2152), 1, sym__attribute, - [66582] = 5, - ACTIONS(5403), 1, - anon_sym_DQUOTE, - ACTIONS(5405), 1, - anon_sym_SQUOTE, - ACTIONS(5407), 1, - sym__commonmark_whitespace, - ACTIONS(5409), 1, - aux_sym_key_value_value_token1, - STATE(1800), 1, - sym_key_value_value, - [66598] = 5, - ACTIONS(5005), 1, + [20548] = 5, + ACTIONS(5982), 1, sym_key_value_key, - ACTIONS(5141), 1, + ACTIONS(6150), 1, sym_commonmark_name, - ACTIONS(5258), 1, + ACTIONS(6418), 1, anon_sym_RBRACE, - STATE(1719), 1, + STATE(2062), 1, aux_sym_commonmark_attribute_repeat3, - STATE(1826), 1, + STATE(2152), 1, sym__attribute, - [66614] = 5, - ACTIONS(5005), 1, + [20564] = 5, + ACTIONS(5982), 1, sym_key_value_key, - ACTIONS(5141), 1, + ACTIONS(6150), 1, sym_commonmark_name, - ACTIONS(5330), 1, + ACTIONS(6420), 1, anon_sym_RBRACE, - STATE(1719), 1, + STATE(2062), 1, aux_sym_commonmark_attribute_repeat3, - STATE(1826), 1, + STATE(2152), 1, sym__attribute, - [66630] = 5, - ACTIONS(5005), 1, + [20580] = 5, + ACTIONS(5982), 1, sym_key_value_key, - ACTIONS(5141), 1, + ACTIONS(6150), 1, sym_commonmark_name, - ACTIONS(5332), 1, + ACTIONS(6273), 1, anon_sym_RBRACE, - STATE(1719), 1, + STATE(2062), 1, aux_sym_commonmark_attribute_repeat3, - STATE(1826), 1, + STATE(2152), 1, sym__attribute, - [66646] = 5, - ACTIONS(5005), 1, + [20596] = 5, + ACTIONS(5982), 1, sym_key_value_key, - ACTIONS(5141), 1, + ACTIONS(6150), 1, sym_commonmark_name, - ACTIONS(5354), 1, + ACTIONS(6422), 1, anon_sym_RBRACE, - STATE(1719), 1, + STATE(2062), 1, aux_sym_commonmark_attribute_repeat3, - STATE(1826), 1, + STATE(2152), 1, sym__attribute, - [66662] = 5, - ACTIONS(5005), 1, + [20612] = 5, + ACTIONS(5982), 1, sym_key_value_key, - ACTIONS(5141), 1, + ACTIONS(6150), 1, sym_commonmark_name, - ACTIONS(5411), 1, + ACTIONS(6319), 1, anon_sym_RBRACE, - STATE(1719), 1, + STATE(2062), 1, aux_sym_commonmark_attribute_repeat3, - STATE(1826), 1, + STATE(2152), 1, sym__attribute, - [66678] = 5, - ACTIONS(5383), 1, + [20628] = 5, + ACTIONS(6402), 1, sym__whitespace_ge_2, - ACTIONS(5385), 1, + ACTIONS(6404), 1, aux_sym__whitespace_token1, - STATE(1310), 1, + STATE(1628), 1, sym__whitespace, - STATE(1797), 1, + STATE(2015), 1, aux_sym_shortcode_escaped_repeat1, - STATE(1805), 1, + STATE(2121), 1, aux_sym_shortcode_escaped_repeat2, - [66694] = 5, - ACTIONS(5005), 1, + [20644] = 5, + ACTIONS(5982), 1, sym_key_value_key, - ACTIONS(5141), 1, + ACTIONS(6150), 1, sym_commonmark_name, - ACTIONS(5282), 1, + ACTIONS(6325), 1, anon_sym_RBRACE, - STATE(1719), 1, + STATE(2062), 1, aux_sym_commonmark_attribute_repeat3, - STATE(1826), 1, + STATE(2152), 1, sym__attribute, - [66710] = 5, - ACTIONS(5403), 1, - anon_sym_DQUOTE, - ACTIONS(5405), 1, - anon_sym_SQUOTE, - ACTIONS(5409), 1, - aux_sym_key_value_value_token1, - ACTIONS(5413), 1, - sym__commonmark_whitespace, - STATE(1814), 1, - sym_key_value_value, - [66726] = 5, - ACTIONS(5005), 1, + [20660] = 5, + ACTIONS(5982), 1, sym_key_value_key, - ACTIONS(5141), 1, + ACTIONS(6150), 1, sym_commonmark_name, - ACTIONS(5415), 1, + ACTIONS(6265), 1, anon_sym_RBRACE, - STATE(1719), 1, + STATE(2062), 1, aux_sym_commonmark_attribute_repeat3, - STATE(1826), 1, + STATE(2152), 1, sym__attribute, - [66742] = 5, - ACTIONS(5005), 1, + [20676] = 5, + ACTIONS(5982), 1, sym_key_value_key, - ACTIONS(5141), 1, + ACTIONS(6150), 1, sym_commonmark_name, - ACTIONS(5220), 1, + ACTIONS(6424), 1, anon_sym_RBRACE, - STATE(1719), 1, + STATE(2062), 1, aux_sym_commonmark_attribute_repeat3, - STATE(1826), 1, + STATE(2152), 1, sym__attribute, - [66758] = 5, - ACTIONS(5005), 1, + [20692] = 5, + ACTIONS(5982), 1, sym_key_value_key, - ACTIONS(5141), 1, + ACTIONS(6150), 1, sym_commonmark_name, - ACTIONS(5242), 1, + ACTIONS(6229), 1, anon_sym_RBRACE, - STATE(1719), 1, + STATE(2062), 1, aux_sym_commonmark_attribute_repeat3, - STATE(1826), 1, + STATE(2152), 1, sym__attribute, - [66774] = 5, - ACTIONS(5005), 1, + [20708] = 5, + ACTIONS(5982), 1, sym_key_value_key, - ACTIONS(5141), 1, + ACTIONS(6150), 1, sym_commonmark_name, - ACTIONS(5212), 1, + ACTIONS(6426), 1, anon_sym_RBRACE, - STATE(1719), 1, + STATE(2062), 1, aux_sym_commonmark_attribute_repeat3, - STATE(1826), 1, + STATE(2152), 1, sym__attribute, - [66790] = 5, - ACTIONS(5005), 1, + [20724] = 5, + ACTIONS(5982), 1, sym_key_value_key, - ACTIONS(5141), 1, + ACTIONS(6150), 1, sym_commonmark_name, - ACTIONS(5238), 1, + ACTIONS(6428), 1, anon_sym_RBRACE, - STATE(1719), 1, + STATE(2062), 1, aux_sym_commonmark_attribute_repeat3, - STATE(1826), 1, + STATE(2152), 1, sym__attribute, - [66806] = 5, - ACTIONS(5005), 1, + [20740] = 5, + ACTIONS(6406), 1, + anon_sym_DQUOTE, + ACTIONS(6408), 1, + anon_sym_SQUOTE, + ACTIONS(6412), 1, + aux_sym_key_value_value_token1, + ACTIONS(6430), 1, + sym__commonmark_whitespace, + STATE(2110), 1, + sym_key_value_value, + [20756] = 5, + ACTIONS(5982), 1, sym_key_value_key, - ACTIONS(5141), 1, + ACTIONS(6150), 1, sym_commonmark_name, - ACTIONS(5272), 1, + ACTIONS(6166), 1, anon_sym_RBRACE, - STATE(1719), 1, + STATE(2062), 1, aux_sym_commonmark_attribute_repeat3, - STATE(1826), 1, + STATE(2152), 1, sym__attribute, - [66822] = 5, - ACTIONS(5005), 1, + [20772] = 5, + ACTIONS(5982), 1, sym_key_value_key, - ACTIONS(5141), 1, + ACTIONS(6150), 1, sym_commonmark_name, - ACTIONS(5270), 1, + ACTIONS(6255), 1, anon_sym_RBRACE, - STATE(1719), 1, + STATE(2062), 1, aux_sym_commonmark_attribute_repeat3, - STATE(1826), 1, + STATE(2152), 1, sym__attribute, - [66838] = 2, - ACTIONS(5375), 1, - sym_key_value_key, - ACTIONS(5370), 4, - anon_sym_RBRACE, - sym_commonmark_name, - sym_id_specifier, - sym_class_specifier, - [66848] = 5, - ACTIONS(5005), 1, + [20788] = 5, + ACTIONS(5982), 1, sym_key_value_key, - ACTIONS(5141), 1, + ACTIONS(6150), 1, sym_commonmark_name, - ACTIONS(5356), 1, + ACTIONS(6180), 1, anon_sym_RBRACE, - STATE(1719), 1, + STATE(2062), 1, aux_sym_commonmark_attribute_repeat3, - STATE(1826), 1, + STATE(2152), 1, sym__attribute, - [66864] = 4, - ACTIONS(5419), 1, - sym_class_specifier, - ACTIONS(5422), 1, + [20804] = 5, + ACTIONS(5982), 1, sym_key_value_key, - STATE(1718), 1, - aux_sym_commonmark_attribute_repeat2, - ACTIONS(5417), 2, - anon_sym_RBRACE, + ACTIONS(6150), 1, sym_commonmark_name, - [66878] = 5, - ACTIONS(5424), 1, + ACTIONS(6209), 1, anon_sym_RBRACE, - ACTIONS(5426), 1, - sym_commonmark_name, - ACTIONS(5429), 1, - sym_key_value_key, - STATE(1719), 1, + STATE(2062), 1, aux_sym_commonmark_attribute_repeat3, - STATE(1826), 1, + STATE(2152), 1, sym__attribute, - [66894] = 5, - ACTIONS(5399), 1, - sym__whitespace_ge_2, - ACTIONS(5401), 1, - aux_sym__whitespace_token1, - STATE(1320), 1, - sym__whitespace, - STATE(1697), 1, - aux_sym_shortcode_escaped_repeat1, - STATE(1774), 1, - aux_sym_shortcode_escaped_repeat2, - [66910] = 5, - ACTIONS(5005), 1, + [20820] = 2, + ACTIONS(6400), 1, sym_key_value_key, - ACTIONS(5141), 1, - sym_commonmark_name, - ACTIONS(5260), 1, + ACTIONS(6395), 4, anon_sym_RBRACE, - STATE(1719), 1, - aux_sym_commonmark_attribute_repeat3, - STATE(1826), 1, - sym__attribute, - [66926] = 5, - ACTIONS(5005), 1, + sym_commonmark_name, + sym_id_specifier, + sym_class_specifier, + [20830] = 5, + ACTIONS(5982), 1, sym_key_value_key, - ACTIONS(5141), 1, + ACTIONS(6150), 1, sym_commonmark_name, - ACTIONS(5432), 1, + ACTIONS(6269), 1, anon_sym_RBRACE, - STATE(1719), 1, + STATE(2062), 1, aux_sym_commonmark_attribute_repeat3, - STATE(1826), 1, + STATE(2152), 1, sym__attribute, - [66942] = 5, - ACTIONS(5005), 1, + [20846] = 5, + ACTIONS(5982), 1, sym_key_value_key, - ACTIONS(5141), 1, + ACTIONS(6150), 1, sym_commonmark_name, - ACTIONS(5358), 1, + ACTIONS(6281), 1, anon_sym_RBRACE, - STATE(1719), 1, + STATE(2062), 1, aux_sym_commonmark_attribute_repeat3, - STATE(1826), 1, + STATE(2152), 1, sym__attribute, - [66958] = 5, - ACTIONS(5005), 1, + [20862] = 5, + ACTIONS(5982), 1, sym_key_value_key, - ACTIONS(5141), 1, + ACTIONS(6150), 1, sym_commonmark_name, - ACTIONS(5216), 1, + ACTIONS(6432), 1, anon_sym_RBRACE, - STATE(1719), 1, + STATE(2062), 1, aux_sym_commonmark_attribute_repeat3, - STATE(1826), 1, + STATE(2152), 1, sym__attribute, - [66974] = 4, - ACTIONS(5434), 1, + [20878] = 4, + ACTIONS(6434), 1, sym_shortcode_name, - ACTIONS(5436), 1, + ACTIONS(6436), 1, sym_shortcode_number, - STATE(1958), 1, + STATE(2405), 1, sym_shortcode_boolean, - ACTIONS(4875), 2, + ACTIONS(5848), 2, anon_sym_true, anon_sym_false, - [66988] = 5, - ACTIONS(5399), 1, + [20892] = 5, + ACTIONS(6402), 1, sym__whitespace_ge_2, - ACTIONS(5401), 1, + ACTIONS(6404), 1, aux_sym__whitespace_token1, - STATE(1321), 1, + STATE(1611), 1, sym__whitespace, - STATE(1730), 1, + STATE(2051), 1, aux_sym_shortcode_escaped_repeat1, - STATE(1780), 1, + STATE(2122), 1, aux_sym_shortcode_escaped_repeat2, - [67004] = 5, - ACTIONS(5383), 1, + [20908] = 5, + ACTIONS(6438), 1, sym__whitespace_ge_2, - ACTIONS(5385), 1, + ACTIONS(6440), 1, aux_sym__whitespace_token1, - STATE(1323), 1, + STATE(1613), 1, sym__whitespace, - STATE(1731), 1, + STATE(2052), 1, aux_sym_shortcode_escaped_repeat1, - STATE(1785), 1, + STATE(2123), 1, aux_sym_shortcode_escaped_repeat2, - [67020] = 3, - ACTIONS(5440), 1, - sym__commonmark_whitespace, - ACTIONS(5442), 1, - sym_key_value_key, - ACTIONS(5438), 3, - anon_sym_RBRACE, - sym_commonmark_name, - sym_class_specifier, - [67032] = 5, - ACTIONS(5005), 1, + [20924] = 5, + ACTIONS(5982), 1, sym_key_value_key, - ACTIONS(5141), 1, + ACTIONS(6150), 1, sym_commonmark_name, - ACTIONS(5444), 1, + ACTIONS(6307), 1, anon_sym_RBRACE, - STATE(1719), 1, + STATE(2062), 1, aux_sym_commonmark_attribute_repeat3, - STATE(1826), 1, + STATE(2152), 1, sym__attribute, - [67048] = 5, - ACTIONS(5399), 1, + [20940] = 5, + ACTIONS(6402), 1, sym__whitespace_ge_2, - ACTIONS(5401), 1, + ACTIONS(6404), 1, aux_sym__whitespace_token1, - STATE(1335), 1, + STATE(1604), 1, sym__whitespace, - STATE(1786), 1, - aux_sym_shortcode_escaped_repeat2, - STATE(1797), 1, + STATE(2115), 1, aux_sym_shortcode_escaped_repeat1, - [67064] = 5, - ACTIONS(5383), 1, + STATE(2124), 1, + aux_sym_shortcode_escaped_repeat2, + [20956] = 5, + ACTIONS(6438), 1, sym__whitespace_ge_2, - ACTIONS(5385), 1, + ACTIONS(6440), 1, aux_sym__whitespace_token1, - STATE(1346), 1, + STATE(1605), 1, sym__whitespace, - STATE(1787), 1, - aux_sym_shortcode_escaped_repeat2, - STATE(1797), 1, + STATE(2115), 1, aux_sym_shortcode_escaped_repeat1, - [67080] = 4, - ACTIONS(5446), 1, + STATE(2125), 1, + aux_sym_shortcode_escaped_repeat2, + [20972] = 4, + ACTIONS(6442), 1, sym_shortcode_name, - ACTIONS(5448), 1, + ACTIONS(6444), 1, sym_shortcode_number, - STATE(1975), 1, + STATE(2293), 1, sym_shortcode_boolean, - ACTIONS(4875), 2, + ACTIONS(5848), 2, anon_sym_true, anon_sym_false, - [67094] = 5, - ACTIONS(5399), 1, + [20986] = 5, + ACTIONS(5982), 1, + sym_key_value_key, + ACTIONS(6150), 1, + sym_commonmark_name, + ACTIONS(6263), 1, + anon_sym_RBRACE, + STATE(2062), 1, + aux_sym_commonmark_attribute_repeat3, + STATE(2152), 1, + sym__attribute, + [21002] = 5, + ACTIONS(6402), 1, sym__whitespace_ge_2, - ACTIONS(5401), 1, + ACTIONS(6404), 1, aux_sym__whitespace_token1, - STATE(1324), 1, + STATE(1638), 1, sym__whitespace, - STATE(1735), 1, + STATE(2059), 1, aux_sym_shortcode_escaped_repeat1, - STATE(1804), 1, + STATE(2126), 1, aux_sym_shortcode_escaped_repeat2, - [67110] = 5, - ACTIONS(5383), 1, + [21018] = 5, + ACTIONS(6438), 1, sym__whitespace_ge_2, - ACTIONS(5385), 1, + ACTIONS(6440), 1, aux_sym__whitespace_token1, - STATE(1334), 1, + STATE(1639), 1, sym__whitespace, - STATE(1736), 1, + STATE(2060), 1, aux_sym_shortcode_escaped_repeat1, - STATE(1806), 1, + STATE(2127), 1, aux_sym_shortcode_escaped_repeat2, - [67126] = 5, - ACTIONS(5399), 1, + [21034] = 5, + ACTIONS(5982), 1, + sym_key_value_key, + ACTIONS(6150), 1, + sym_commonmark_name, + ACTIONS(6247), 1, + anon_sym_RBRACE, + STATE(2062), 1, + aux_sym_commonmark_attribute_repeat3, + STATE(2152), 1, + sym__attribute, + [21050] = 5, + ACTIONS(5982), 1, + sym_key_value_key, + ACTIONS(6150), 1, + sym_commonmark_name, + ACTIONS(6154), 1, + anon_sym_RBRACE, + STATE(2062), 1, + aux_sym_commonmark_attribute_repeat3, + STATE(2152), 1, + sym__attribute, + [21066] = 5, + ACTIONS(6402), 1, sym__whitespace_ge_2, - ACTIONS(5401), 1, + ACTIONS(6404), 1, aux_sym__whitespace_token1, - STATE(1319), 1, + STATE(1610), 1, sym__whitespace, - STATE(1797), 1, + STATE(2115), 1, aux_sym_shortcode_escaped_repeat1, - STATE(1807), 1, + STATE(2128), 1, aux_sym_shortcode_escaped_repeat2, - [67142] = 5, - ACTIONS(5383), 1, + [21082] = 5, + ACTIONS(6438), 1, sym__whitespace_ge_2, - ACTIONS(5385), 1, + ACTIONS(6440), 1, aux_sym__whitespace_token1, - STATE(1327), 1, + STATE(1612), 1, sym__whitespace, - STATE(1797), 1, + STATE(2115), 1, aux_sym_shortcode_escaped_repeat1, - STATE(1809), 1, + STATE(2129), 1, aux_sym_shortcode_escaped_repeat2, - [67158] = 4, - ACTIONS(5450), 1, + [21098] = 4, + ACTIONS(6446), 1, sym_shortcode_name, - ACTIONS(5452), 1, + ACTIONS(6448), 1, sym_shortcode_number, - STATE(1941), 1, + STATE(2337), 1, sym_shortcode_boolean, - ACTIONS(4875), 2, + ACTIONS(5848), 2, anon_sym_true, anon_sym_false, - [67172] = 5, - ACTIONS(5399), 1, + [21112] = 5, + ACTIONS(6450), 1, + anon_sym_RBRACE, + ACTIONS(6452), 1, + sym_commonmark_name, + ACTIONS(6455), 1, + sym_key_value_key, + STATE(2062), 1, + aux_sym_commonmark_attribute_repeat3, + STATE(2152), 1, + sym__attribute, + [21128] = 5, + ACTIONS(6402), 1, sym__whitespace_ge_2, - ACTIONS(5401), 1, + ACTIONS(6404), 1, aux_sym__whitespace_token1, - STATE(1325), 1, + STATE(1636), 1, sym__whitespace, - STATE(1740), 1, + STATE(2065), 1, aux_sym_shortcode_escaped_repeat1, - STATE(1818), 1, + STATE(2132), 1, aux_sym_shortcode_escaped_repeat2, - [67188] = 5, - ACTIONS(5383), 1, + [21144] = 5, + ACTIONS(6438), 1, sym__whitespace_ge_2, - ACTIONS(5385), 1, + ACTIONS(6440), 1, aux_sym__whitespace_token1, - STATE(1326), 1, + STATE(1602), 1, sym__whitespace, - STATE(1741), 1, + STATE(2066), 1, aux_sym_shortcode_escaped_repeat1, - STATE(1823), 1, + STATE(2133), 1, aux_sym_shortcode_escaped_repeat2, - [67204] = 5, - ACTIONS(5399), 1, + [21160] = 5, + ACTIONS(6402), 1, sym__whitespace_ge_2, - ACTIONS(5401), 1, + ACTIONS(6404), 1, aux_sym__whitespace_token1, - STATE(1347), 1, + STATE(1607), 1, sym__whitespace, - STATE(1795), 1, - aux_sym_shortcode_escaped_repeat2, - STATE(1797), 1, + STATE(2115), 1, aux_sym_shortcode_escaped_repeat1, - [67220] = 5, - ACTIONS(5383), 1, + STATE(2134), 1, + aux_sym_shortcode_escaped_repeat2, + [21176] = 5, + ACTIONS(6438), 1, sym__whitespace_ge_2, - ACTIONS(5385), 1, + ACTIONS(6440), 1, aux_sym__whitespace_token1, - STATE(1332), 1, + STATE(1608), 1, sym__whitespace, - STATE(1772), 1, - aux_sym_shortcode_escaped_repeat2, - STATE(1797), 1, + STATE(2115), 1, aux_sym_shortcode_escaped_repeat1, - [67236] = 4, - ACTIONS(5454), 1, + STATE(2135), 1, + aux_sym_shortcode_escaped_repeat2, + [21192] = 4, + ACTIONS(6458), 1, sym_shortcode_name, - ACTIONS(5456), 1, + ACTIONS(6460), 1, sym_shortcode_number, - STATE(1947), 1, + STATE(2338), 1, sym_shortcode_boolean, - ACTIONS(4875), 2, + ACTIONS(5848), 2, anon_sym_true, anon_sym_false, - [67250] = 5, - ACTIONS(5005), 1, + [21206] = 5, + ACTIONS(5982), 1, sym_key_value_key, - ACTIONS(5141), 1, + ACTIONS(6150), 1, sym_commonmark_name, - ACTIONS(5155), 1, + ACTIONS(6277), 1, anon_sym_RBRACE, - STATE(1719), 1, + STATE(2062), 1, aux_sym_commonmark_attribute_repeat3, - STATE(1826), 1, + STATE(2152), 1, sym__attribute, - [67266] = 5, - ACTIONS(5005), 1, + [21222] = 5, + ACTIONS(6402), 1, + sym__whitespace_ge_2, + ACTIONS(6404), 1, + aux_sym__whitespace_token1, + STATE(1614), 1, + sym__whitespace, + STATE(2071), 1, + aux_sym_shortcode_escaped_repeat1, + STATE(2167), 1, + aux_sym_shortcode_escaped_repeat2, + [21238] = 5, + ACTIONS(6438), 1, + sym__whitespace_ge_2, + ACTIONS(6440), 1, + aux_sym__whitespace_token1, + STATE(1624), 1, + sym__whitespace, + STATE(2072), 1, + aux_sym_shortcode_escaped_repeat1, + STATE(2137), 1, + aux_sym_shortcode_escaped_repeat2, + [21254] = 5, + ACTIONS(6402), 1, + sym__whitespace_ge_2, + ACTIONS(6404), 1, + aux_sym__whitespace_token1, + STATE(1603), 1, + sym__whitespace, + STATE(2115), 1, + aux_sym_shortcode_escaped_repeat1, + STATE(2138), 1, + aux_sym_shortcode_escaped_repeat2, + [21270] = 5, + ACTIONS(6438), 1, + sym__whitespace_ge_2, + ACTIONS(6440), 1, + aux_sym__whitespace_token1, + STATE(1606), 1, + sym__whitespace, + STATE(2115), 1, + aux_sym_shortcode_escaped_repeat1, + STATE(2139), 1, + aux_sym_shortcode_escaped_repeat2, + [21286] = 4, + ACTIONS(6462), 1, + sym_shortcode_name, + ACTIONS(6464), 1, + sym_shortcode_number, + STATE(2355), 1, + sym_shortcode_boolean, + ACTIONS(5848), 2, + anon_sym_true, + anon_sym_false, + [21300] = 5, + ACTIONS(5982), 1, sym_key_value_key, - ACTIONS(5141), 1, + ACTIONS(6150), 1, sym_commonmark_name, - ACTIONS(5262), 1, + ACTIONS(6466), 1, anon_sym_RBRACE, - STATE(1719), 1, + STATE(2062), 1, aux_sym_commonmark_attribute_repeat3, - STATE(1826), 1, + STATE(2152), 1, sym__attribute, - [67282] = 5, - ACTIONS(5399), 1, + [21316] = 5, + ACTIONS(6438), 1, sym__whitespace_ge_2, - ACTIONS(5401), 1, + ACTIONS(6440), 1, aux_sym__whitespace_token1, - STATE(1336), 1, + STATE(1635), 1, sym__whitespace, - STATE(1747), 1, + STATE(2107), 1, aux_sym_shortcode_escaped_repeat1, - STATE(1779), 1, + STATE(2131), 1, aux_sym_shortcode_escaped_repeat2, - [67298] = 5, - ACTIONS(5383), 1, + [21332] = 5, + ACTIONS(6402), 1, sym__whitespace_ge_2, - ACTIONS(5385), 1, + ACTIONS(6404), 1, aux_sym__whitespace_token1, - STATE(1339), 1, + STATE(1625), 1, sym__whitespace, - STATE(1748), 1, + STATE(2078), 1, aux_sym_shortcode_escaped_repeat1, - STATE(1781), 1, + STATE(2141), 1, aux_sym_shortcode_escaped_repeat2, - [67314] = 5, - ACTIONS(5399), 1, + [21348] = 5, + ACTIONS(6438), 1, sym__whitespace_ge_2, - ACTIONS(5401), 1, + ACTIONS(6440), 1, aux_sym__whitespace_token1, - STATE(1344), 1, + STATE(1626), 1, sym__whitespace, - STATE(1782), 1, - aux_sym_shortcode_escaped_repeat2, - STATE(1797), 1, + STATE(2079), 1, aux_sym_shortcode_escaped_repeat1, - [67330] = 5, - ACTIONS(5383), 1, + STATE(2142), 1, + aux_sym_shortcode_escaped_repeat2, + [21364] = 5, + ACTIONS(6402), 1, sym__whitespace_ge_2, - ACTIONS(5385), 1, + ACTIONS(6404), 1, aux_sym__whitespace_token1, - STATE(1345), 1, + STATE(1627), 1, sym__whitespace, - STATE(1783), 1, + STATE(2115), 1, + aux_sym_shortcode_escaped_repeat1, + STATE(2143), 1, aux_sym_shortcode_escaped_repeat2, - STATE(1797), 1, + [21380] = 5, + ACTIONS(6438), 1, + sym__whitespace_ge_2, + ACTIONS(6440), 1, + aux_sym__whitespace_token1, + STATE(1601), 1, + sym__whitespace, + STATE(2115), 1, aux_sym_shortcode_escaped_repeat1, - [67346] = 4, - ACTIONS(5458), 1, + STATE(2144), 1, + aux_sym_shortcode_escaped_repeat2, + [21396] = 4, + ACTIONS(6468), 1, + sym_shortcode_name, + ACTIONS(6470), 1, + sym_shortcode_number, + STATE(2321), 1, + sym_shortcode_boolean, + ACTIONS(5848), 2, + anon_sym_true, + anon_sym_false, + [21410] = 3, + ACTIONS(6474), 1, + sym__commonmark_whitespace, + ACTIONS(6476), 1, + sym_key_value_key, + ACTIONS(6472), 3, + anon_sym_RBRACE, + sym_commonmark_name, + sym_class_specifier, + [21422] = 4, + ACTIONS(6478), 1, sym_shortcode_name, - ACTIONS(5460), 1, + ACTIONS(6480), 1, sym_shortcode_number, - STATE(1932), 1, + STATE(2294), 1, sym_shortcode_boolean, - ACTIONS(4875), 2, + ACTIONS(5848), 2, anon_sym_true, anon_sym_false, - [67360] = 5, - ACTIONS(5399), 1, + [21436] = 5, + ACTIONS(6438), 1, sym__whitespace_ge_2, - ACTIONS(5401), 1, + ACTIONS(6440), 1, aux_sym__whitespace_token1, - STATE(1333), 1, + STATE(1621), 1, sym__whitespace, - STATE(1752), 1, + STATE(2085), 1, aux_sym_shortcode_escaped_repeat1, - STATE(1788), 1, + STATE(2148), 1, aux_sym_shortcode_escaped_repeat2, - [67376] = 5, - ACTIONS(5383), 1, + [21452] = 5, + ACTIONS(6402), 1, sym__whitespace_ge_2, - ACTIONS(5385), 1, + ACTIONS(6404), 1, aux_sym__whitespace_token1, - STATE(1311), 1, + STATE(1622), 1, sym__whitespace, - STATE(1753), 1, + STATE(2115), 1, aux_sym_shortcode_escaped_repeat1, - STATE(1790), 1, + STATE(2149), 1, aux_sym_shortcode_escaped_repeat2, - [67392] = 5, - ACTIONS(5399), 1, + [21468] = 5, + ACTIONS(6438), 1, sym__whitespace_ge_2, - ACTIONS(5401), 1, + ACTIONS(6440), 1, aux_sym__whitespace_token1, - STATE(1312), 1, + STATE(1623), 1, sym__whitespace, - STATE(1791), 1, - aux_sym_shortcode_escaped_repeat2, - STATE(1797), 1, + STATE(2115), 1, aux_sym_shortcode_escaped_repeat1, - [67408] = 5, - ACTIONS(5383), 1, - sym__whitespace_ge_2, - ACTIONS(5385), 1, - aux_sym__whitespace_token1, - STATE(1313), 1, - sym__whitespace, - STATE(1792), 1, + STATE(2150), 1, aux_sym_shortcode_escaped_repeat2, - STATE(1797), 1, - aux_sym_shortcode_escaped_repeat1, - [67424] = 4, - ACTIONS(5462), 1, + [21484] = 4, + ACTIONS(6482), 1, sym_shortcode_name, - ACTIONS(5464), 1, + ACTIONS(6484), 1, sym_shortcode_number, - STATE(1973), 1, + STATE(2369), 1, sym_shortcode_boolean, - ACTIONS(4875), 2, + ACTIONS(5848), 2, anon_sym_true, anon_sym_false, - [67438] = 5, - ACTIONS(5399), 1, + [21498] = 5, + ACTIONS(6402), 1, sym__whitespace_ge_2, - ACTIONS(5401), 1, + ACTIONS(6404), 1, aux_sym__whitespace_token1, - STATE(1315), 1, + STATE(1637), 1, sym__whitespace, - STATE(1757), 1, + STATE(2089), 1, aux_sym_shortcode_escaped_repeat1, - STATE(1799), 1, + STATE(2153), 1, aux_sym_shortcode_escaped_repeat2, - [67454] = 5, - ACTIONS(5383), 1, + [21514] = 5, + ACTIONS(6438), 1, sym__whitespace_ge_2, - ACTIONS(5385), 1, + ACTIONS(6440), 1, aux_sym__whitespace_token1, - STATE(1316), 1, + STATE(1640), 1, sym__whitespace, - STATE(1758), 1, + STATE(2090), 1, aux_sym_shortcode_escaped_repeat1, - STATE(1801), 1, + STATE(2154), 1, aux_sym_shortcode_escaped_repeat2, - [67470] = 5, - ACTIONS(5399), 1, + [21530] = 5, + ACTIONS(6402), 1, sym__whitespace_ge_2, - ACTIONS(5401), 1, + ACTIONS(6404), 1, aux_sym__whitespace_token1, - STATE(1317), 1, + STATE(1600), 1, sym__whitespace, - STATE(1797), 1, + STATE(2115), 1, aux_sym_shortcode_escaped_repeat1, - STATE(1802), 1, + STATE(2155), 1, aux_sym_shortcode_escaped_repeat2, - [67486] = 5, - ACTIONS(5383), 1, + [21546] = 5, + ACTIONS(6438), 1, sym__whitespace_ge_2, - ACTIONS(5385), 1, + ACTIONS(6440), 1, aux_sym__whitespace_token1, - STATE(1318), 1, + STATE(1599), 1, sym__whitespace, - STATE(1797), 1, + STATE(2115), 1, aux_sym_shortcode_escaped_repeat1, - STATE(1803), 1, + STATE(2156), 1, aux_sym_shortcode_escaped_repeat2, - [67502] = 4, - ACTIONS(5466), 1, + [21562] = 4, + ACTIONS(6486), 1, sym_shortcode_name, - ACTIONS(5468), 1, + ACTIONS(6488), 1, sym_shortcode_number, - STATE(2031), 1, + STATE(2335), 1, sym_shortcode_boolean, - ACTIONS(4875), 2, + ACTIONS(5848), 2, anon_sym_true, anon_sym_false, - [67516] = 5, - ACTIONS(5399), 1, + [21576] = 5, + ACTIONS(5982), 1, + sym_key_value_key, + ACTIONS(6150), 1, + sym_commonmark_name, + ACTIONS(6239), 1, + anon_sym_RBRACE, + STATE(2062), 1, + aux_sym_commonmark_attribute_repeat3, + STATE(2152), 1, + sym__attribute, + [21592] = 5, + ACTIONS(5982), 1, + sym_key_value_key, + ACTIONS(6146), 1, + anon_sym_RBRACE, + ACTIONS(6150), 1, + sym_commonmark_name, + STATE(2062), 1, + aux_sym_commonmark_attribute_repeat3, + STATE(2152), 1, + sym__attribute, + [21608] = 5, + ACTIONS(6402), 1, sym__whitespace_ge_2, - ACTIONS(5401), 1, + ACTIONS(6404), 1, aux_sym__whitespace_token1, - STATE(1328), 1, + STATE(1615), 1, sym__whitespace, - STATE(1762), 1, + STATE(2096), 1, aux_sym_shortcode_escaped_repeat1, - STATE(1808), 1, + STATE(2158), 1, aux_sym_shortcode_escaped_repeat2, - [67532] = 5, - ACTIONS(5383), 1, + [21624] = 5, + ACTIONS(6438), 1, sym__whitespace_ge_2, - ACTIONS(5385), 1, + ACTIONS(6440), 1, aux_sym__whitespace_token1, - STATE(1329), 1, + STATE(1616), 1, sym__whitespace, - STATE(1763), 1, + STATE(2097), 1, aux_sym_shortcode_escaped_repeat1, - STATE(1810), 1, + STATE(2159), 1, aux_sym_shortcode_escaped_repeat2, - [67548] = 5, - ACTIONS(5399), 1, + [21640] = 5, + ACTIONS(6402), 1, sym__whitespace_ge_2, - ACTIONS(5401), 1, + ACTIONS(6404), 1, aux_sym__whitespace_token1, - STATE(1330), 1, + STATE(1617), 1, sym__whitespace, - STATE(1797), 1, + STATE(2115), 1, aux_sym_shortcode_escaped_repeat1, - STATE(1811), 1, + STATE(2160), 1, aux_sym_shortcode_escaped_repeat2, - [67564] = 5, - ACTIONS(5383), 1, + [21656] = 5, + ACTIONS(6438), 1, sym__whitespace_ge_2, - ACTIONS(5385), 1, + ACTIONS(6440), 1, aux_sym__whitespace_token1, - STATE(1331), 1, + STATE(1618), 1, sym__whitespace, - STATE(1797), 1, + STATE(2115), 1, aux_sym_shortcode_escaped_repeat1, - STATE(1812), 1, + STATE(2161), 1, aux_sym_shortcode_escaped_repeat2, - [67580] = 4, - ACTIONS(5470), 1, + [21672] = 4, + ACTIONS(6490), 1, sym_shortcode_name, - ACTIONS(5472), 1, + ACTIONS(6492), 1, sym_shortcode_number, - STATE(2043), 1, + STATE(2320), 1, sym_shortcode_boolean, - ACTIONS(4875), 2, + ACTIONS(5848), 2, anon_sym_true, anon_sym_false, - [67594] = 5, - ACTIONS(5399), 1, + [21686] = 5, + ACTIONS(5982), 1, + sym_key_value_key, + ACTIONS(6150), 1, + sym_commonmark_name, + ACTIONS(6303), 1, + anon_sym_RBRACE, + STATE(2062), 1, + aux_sym_commonmark_attribute_repeat3, + STATE(2152), 1, + sym__attribute, + [21702] = 4, + ACTIONS(6496), 1, + sym_class_specifier, + ACTIONS(6499), 1, + sym_key_value_key, + STATE(2100), 1, + aux_sym_commonmark_attribute_repeat2, + ACTIONS(6494), 2, + anon_sym_RBRACE, + sym_commonmark_name, + [21716] = 5, + ACTIONS(6402), 1, sym__whitespace_ge_2, - ACTIONS(5401), 1, + ACTIONS(6404), 1, aux_sym__whitespace_token1, - STATE(1337), 1, + STATE(1629), 1, sym__whitespace, - STATE(1767), 1, + STATE(2103), 1, aux_sym_shortcode_escaped_repeat1, - STATE(1817), 1, + STATE(2162), 1, aux_sym_shortcode_escaped_repeat2, - [67610] = 5, - ACTIONS(5383), 1, + [21732] = 5, + ACTIONS(6438), 1, sym__whitespace_ge_2, - ACTIONS(5385), 1, + ACTIONS(6440), 1, aux_sym__whitespace_token1, - STATE(1338), 1, + STATE(1630), 1, sym__whitespace, - STATE(1768), 1, + STATE(2104), 1, aux_sym_shortcode_escaped_repeat1, - STATE(1819), 1, + STATE(2108), 1, aux_sym_shortcode_escaped_repeat2, - [67626] = 5, - ACTIONS(5399), 1, + [21748] = 5, + ACTIONS(6402), 1, sym__whitespace_ge_2, - ACTIONS(5401), 1, + ACTIONS(6404), 1, aux_sym__whitespace_token1, - STATE(1340), 1, + STATE(1631), 1, sym__whitespace, - STATE(1797), 1, + STATE(2115), 1, aux_sym_shortcode_escaped_repeat1, - STATE(1820), 1, + STATE(2164), 1, aux_sym_shortcode_escaped_repeat2, - [67642] = 5, - ACTIONS(5383), 1, + [21764] = 5, + ACTIONS(6438), 1, sym__whitespace_ge_2, - ACTIONS(5385), 1, + ACTIONS(6440), 1, aux_sym__whitespace_token1, - STATE(1341), 1, + STATE(1632), 1, sym__whitespace, - STATE(1797), 1, + STATE(2115), 1, aux_sym_shortcode_escaped_repeat1, - STATE(1821), 1, + STATE(2165), 1, aux_sym_shortcode_escaped_repeat2, - [67658] = 5, - ACTIONS(5383), 1, + [21780] = 5, + ACTIONS(6438), 1, sym__whitespace_ge_2, - ACTIONS(5385), 1, + ACTIONS(6440), 1, aux_sym__whitespace_token1, - STATE(1342), 1, + STATE(1633), 1, sym__whitespace, - STATE(1683), 1, + STATE(2106), 1, aux_sym_shortcode_escaped_repeat1, - STATE(1824), 1, + STATE(2166), 1, aux_sym_shortcode_escaped_repeat2, - [67674] = 5, - ACTIONS(5005), 1, - sym_key_value_key, - ACTIONS(5141), 1, - sym_commonmark_name, - ACTIONS(5474), 1, - anon_sym_RBRACE, - STATE(1719), 1, - aux_sym_commonmark_attribute_repeat3, - STATE(1826), 1, - sym__attribute, - [67690] = 4, - ACTIONS(5476), 1, + [21796] = 5, + ACTIONS(6438), 1, sym__whitespace_ge_2, - ACTIONS(5478), 1, + ACTIONS(6440), 1, aux_sym__whitespace_token1, - STATE(1793), 1, + STATE(1634), 1, + sym__whitespace, + STATE(2115), 1, + aux_sym_shortcode_escaped_repeat1, + STATE(2136), 1, aux_sym_shortcode_escaped_repeat2, - STATE(1852), 1, + [21812] = 5, + ACTIONS(6438), 1, + sym__whitespace_ge_2, + ACTIONS(6440), 1, + aux_sym__whitespace_token1, + STATE(1609), 1, sym__whitespace, - [67703] = 4, - ACTIONS(5480), 1, + STATE(2115), 1, + aux_sym_shortcode_escaped_repeat1, + STATE(2130), 1, + aux_sym_shortcode_escaped_repeat2, + [21828] = 4, + ACTIONS(6501), 1, sym__whitespace_ge_2, - ACTIONS(5482), 1, + ACTIONS(6503), 1, aux_sym__whitespace_token1, - STATE(1793), 1, + STATE(2119), 1, aux_sym_shortcode_escaped_repeat2, - STATE(1848), 1, + STATE(2170), 1, + sym__whitespace, + [21841] = 4, + ACTIONS(6505), 1, + anon_sym_EQ, + ACTIONS(6507), 1, + sym__whitespace_ge_2, + ACTIONS(6510), 1, + aux_sym__whitespace_token1, + STATE(2406), 1, + sym__whitespace, + [21854] = 2, + ACTIONS(6515), 1, + sym_key_value_key, + ACTIONS(6513), 3, + anon_sym_RBRACE, + sym__commonmark_whitespace, + sym_commonmark_name, + [21863] = 2, + ACTIONS(6519), 1, + sym_key_value_key, + ACTIONS(6517), 3, + anon_sym_RBRACE, + sym__commonmark_whitespace, + sym_commonmark_name, + [21872] = 2, + ACTIONS(5513), 1, + aux_sym__whitespace_token1, + ACTIONS(5511), 3, + anon_sym_RPAREN, + sym__newline_token, + sym__whitespace_ge_2, + [21881] = 2, + ACTIONS(6499), 1, + sym_key_value_key, + ACTIONS(6494), 3, + anon_sym_RBRACE, + sym_commonmark_name, + sym_class_specifier, + [21890] = 2, + ACTIONS(6523), 1, + aux_sym__whitespace_token1, + ACTIONS(6521), 3, + anon_sym_RPAREN, + sym__newline_token, + sym__whitespace_ge_2, + [21899] = 4, + ACTIONS(6525), 1, + sym__whitespace_ge_2, + ACTIONS(6528), 1, + aux_sym__whitespace_token1, + STATE(1642), 1, sym__whitespace, - [67716] = 2, - ACTIONS(4496), 1, + STATE(2115), 1, + aux_sym_shortcode_escaped_repeat1, + [21912] = 2, + ACTIONS(6533), 1, aux_sym__whitespace_token1, - ACTIONS(4494), 3, + ACTIONS(6531), 3, anon_sym_RPAREN, sym__newline_token, sym__whitespace_ge_2, - [67725] = 4, - ACTIONS(5476), 1, + [21921] = 4, + ACTIONS(6535), 1, sym__whitespace_ge_2, - ACTIONS(5478), 1, + ACTIONS(6537), 1, aux_sym__whitespace_token1, - STATE(1793), 1, + STATE(2119), 1, aux_sym_shortcode_escaped_repeat2, - STATE(1872), 1, + STATE(2203), 1, sym__whitespace, - [67738] = 4, - ACTIONS(5403), 1, + [21934] = 4, + ACTIONS(6406), 1, anon_sym_DQUOTE, - ACTIONS(5405), 1, + ACTIONS(6408), 1, anon_sym_SQUOTE, - ACTIONS(5409), 1, + ACTIONS(6412), 1, aux_sym_key_value_value_token1, - STATE(1814), 1, + STATE(2151), 1, sym_key_value_value, - [67751] = 2, - ACTIONS(5486), 1, + [21947] = 4, + ACTIONS(6539), 1, + sym__whitespace_ge_2, + ACTIONS(6542), 1, + aux_sym__whitespace_token1, + STATE(2119), 1, + aux_sym_shortcode_escaped_repeat2, + STATE(2264), 1, + sym__whitespace, + [21960] = 2, + ACTIONS(5465), 1, aux_sym__whitespace_token1, - ACTIONS(5484), 3, + ACTIONS(5463), 3, anon_sym_RPAREN, sym__newline_token, sym__whitespace_ge_2, - [67760] = 2, - ACTIONS(5490), 1, - sym_key_value_key, - ACTIONS(5488), 3, - anon_sym_RBRACE, - sym__commonmark_whitespace, - sym_commonmark_name, - [67769] = 2, - ACTIONS(5494), 1, - sym_key_value_key, - ACTIONS(5492), 3, - anon_sym_RBRACE, - sym__commonmark_whitespace, - sym_commonmark_name, - [67778] = 4, - ACTIONS(5476), 1, + [21969] = 4, + ACTIONS(6535), 1, sym__whitespace_ge_2, - ACTIONS(5478), 1, + ACTIONS(6537), 1, aux_sym__whitespace_token1, - STATE(1793), 1, + STATE(2119), 1, aux_sym_shortcode_escaped_repeat2, - STATE(1862), 1, + STATE(2210), 1, sym__whitespace, - [67791] = 4, - ACTIONS(5476), 1, + [21982] = 4, + ACTIONS(6535), 1, sym__whitespace_ge_2, - ACTIONS(5478), 1, + ACTIONS(6537), 1, aux_sym__whitespace_token1, - STATE(1793), 1, + STATE(2119), 1, aux_sym_shortcode_escaped_repeat2, - STATE(1833), 1, + STATE(2199), 1, sym__whitespace, - [67804] = 4, - ACTIONS(5480), 1, + [21995] = 4, + ACTIONS(6501), 1, sym__whitespace_ge_2, - ACTIONS(5482), 1, + ACTIONS(6503), 1, aux_sym__whitespace_token1, - STATE(1793), 1, + STATE(2119), 1, aux_sym_shortcode_escaped_repeat2, - STATE(1854), 1, + STATE(2204), 1, sym__whitespace, - [67817] = 4, - ACTIONS(5476), 1, + [22008] = 4, + ACTIONS(6535), 1, sym__whitespace_ge_2, - ACTIONS(5478), 1, + ACTIONS(6537), 1, aux_sym__whitespace_token1, - STATE(1793), 1, + STATE(2119), 1, aux_sym_shortcode_escaped_repeat2, - STATE(1827), 1, + STATE(2202), 1, sym__whitespace, - [67830] = 4, - ACTIONS(5480), 1, + [22021] = 4, + ACTIONS(6501), 1, sym__whitespace_ge_2, - ACTIONS(5482), 1, + ACTIONS(6503), 1, aux_sym__whitespace_token1, - STATE(1793), 1, + STATE(2119), 1, aux_sym_shortcode_escaped_repeat2, - STATE(1850), 1, + STATE(2192), 1, sym__whitespace, - [67843] = 2, - ACTIONS(5422), 1, - sym_key_value_key, - ACTIONS(5417), 3, - anon_sym_RBRACE, - sym_commonmark_name, - sym_class_specifier, - [67852] = 4, - ACTIONS(5480), 1, + [22034] = 4, + ACTIONS(6535), 1, sym__whitespace_ge_2, - ACTIONS(5482), 1, + ACTIONS(6537), 1, aux_sym__whitespace_token1, - STATE(1793), 1, + STATE(2119), 1, aux_sym_shortcode_escaped_repeat2, - STATE(1878), 1, + STATE(2196), 1, sym__whitespace, - [67865] = 4, - ACTIONS(5476), 1, + [22047] = 4, + ACTIONS(6501), 1, sym__whitespace_ge_2, - ACTIONS(5478), 1, + ACTIONS(6503), 1, aux_sym__whitespace_token1, - STATE(1793), 1, + STATE(2119), 1, aux_sym_shortcode_escaped_repeat2, - STATE(1849), 1, + STATE(2172), 1, sym__whitespace, - [67878] = 4, - ACTIONS(5480), 1, + [22060] = 4, + ACTIONS(6535), 1, sym__whitespace_ge_2, - ACTIONS(5482), 1, + ACTIONS(6537), 1, aux_sym__whitespace_token1, - STATE(1793), 1, + STATE(2119), 1, aux_sym_shortcode_escaped_repeat2, - STATE(1851), 1, + STATE(2215), 1, sym__whitespace, - [67891] = 4, - ACTIONS(5476), 1, + [22073] = 4, + ACTIONS(6501), 1, sym__whitespace_ge_2, - ACTIONS(5478), 1, + ACTIONS(6503), 1, aux_sym__whitespace_token1, - STATE(1793), 1, + STATE(2119), 1, aux_sym_shortcode_escaped_repeat2, - STATE(1876), 1, + STATE(2216), 1, sym__whitespace, - [67904] = 2, - ACTIONS(4542), 1, - aux_sym__whitespace_token1, - ACTIONS(4540), 3, - anon_sym_RPAREN, - sym__newline_token, + [22086] = 4, + ACTIONS(6501), 1, sym__whitespace_ge_2, - [67913] = 4, - ACTIONS(5480), 1, - sym__whitespace_ge_2, - ACTIONS(5482), 1, + ACTIONS(6503), 1, aux_sym__whitespace_token1, - STATE(1793), 1, + STATE(2119), 1, aux_sym_shortcode_escaped_repeat2, - STATE(1877), 1, + STATE(2217), 1, sym__whitespace, - [67926] = 4, - ACTIONS(5476), 1, + [22099] = 4, + ACTIONS(6501), 1, sym__whitespace_ge_2, - ACTIONS(5478), 1, + ACTIONS(6503), 1, aux_sym__whitespace_token1, - STATE(1793), 1, + STATE(2119), 1, aux_sym_shortcode_escaped_repeat2, - STATE(1828), 1, + STATE(2195), 1, sym__whitespace, - [67939] = 4, - ACTIONS(5480), 1, + [22112] = 4, + ACTIONS(6535), 1, sym__whitespace_ge_2, - ACTIONS(5482), 1, + ACTIONS(6537), 1, aux_sym__whitespace_token1, - STATE(1793), 1, + STATE(2119), 1, aux_sym_shortcode_escaped_repeat2, - STATE(1829), 1, + STATE(2205), 1, sym__whitespace, - [67952] = 4, - ACTIONS(5496), 1, + [22125] = 4, + ACTIONS(6501), 1, sym__whitespace_ge_2, - ACTIONS(5499), 1, + ACTIONS(6503), 1, aux_sym__whitespace_token1, - STATE(1793), 1, + STATE(2119), 1, aux_sym_shortcode_escaped_repeat2, - STATE(1906), 1, + STATE(2211), 1, sym__whitespace, - [67965] = 2, - ACTIONS(5504), 1, - aux_sym__whitespace_token1, - ACTIONS(5502), 3, - anon_sym_RPAREN, - sym__newline_token, + [22138] = 4, + ACTIONS(6535), 1, sym__whitespace_ge_2, - [67974] = 4, - ACTIONS(5476), 1, + ACTIONS(6537), 1, + aux_sym__whitespace_token1, + STATE(2119), 1, + aux_sym_shortcode_escaped_repeat2, + STATE(2175), 1, + sym__whitespace, + [22151] = 4, + ACTIONS(6501), 1, sym__whitespace_ge_2, - ACTIONS(5478), 1, + ACTIONS(6503), 1, aux_sym__whitespace_token1, - STATE(1793), 1, + STATE(2119), 1, aux_sym_shortcode_escaped_repeat2, - STATE(1847), 1, + STATE(2184), 1, sym__whitespace, - [67987] = 4, - ACTIONS(5480), 1, + [22164] = 4, + ACTIONS(6501), 1, sym__whitespace_ge_2, - ACTIONS(5482), 1, + ACTIONS(6503), 1, aux_sym__whitespace_token1, - STATE(1793), 1, + STATE(2119), 1, aux_sym_shortcode_escaped_repeat2, - STATE(1896), 1, + STATE(2181), 1, sym__whitespace, - [68000] = 4, - ACTIONS(5506), 1, + [22177] = 4, + ACTIONS(6501), 1, sym__whitespace_ge_2, - ACTIONS(5509), 1, + ACTIONS(6503), 1, aux_sym__whitespace_token1, - STATE(1348), 1, + STATE(2119), 1, + aux_sym_shortcode_escaped_repeat2, + STATE(2179), 1, sym__whitespace, - STATE(1797), 1, - aux_sym_shortcode_escaped_repeat1, - [68013] = 2, - ACTIONS(5514), 1, - sym_key_value_key, - ACTIONS(5512), 3, - anon_sym_RBRACE, - sym__commonmark_whitespace, - sym_commonmark_name, - [68022] = 4, - ACTIONS(5476), 1, + [22190] = 4, + ACTIONS(6535), 1, + sym__whitespace_ge_2, + ACTIONS(6537), 1, + aux_sym__whitespace_token1, + STATE(2119), 1, + aux_sym_shortcode_escaped_repeat2, + STATE(2207), 1, + sym__whitespace, + [22203] = 4, + ACTIONS(6501), 1, sym__whitespace_ge_2, - ACTIONS(5478), 1, + ACTIONS(6503), 1, aux_sym__whitespace_token1, - STATE(1793), 1, + STATE(2119), 1, aux_sym_shortcode_escaped_repeat2, - STATE(1853), 1, + STATE(2212), 1, sym__whitespace, - [68035] = 2, - ACTIONS(5518), 1, + [22216] = 2, + ACTIONS(6547), 1, sym_key_value_key, - ACTIONS(5516), 3, + ACTIONS(6545), 3, anon_sym_RBRACE, sym__commonmark_whitespace, sym_commonmark_name, - [68044] = 4, - ACTIONS(5480), 1, + [22225] = 4, + ACTIONS(6535), 1, sym__whitespace_ge_2, - ACTIONS(5482), 1, + ACTIONS(6537), 1, aux_sym__whitespace_token1, - STATE(1793), 1, + STATE(2119), 1, aux_sym_shortcode_escaped_repeat2, - STATE(1855), 1, + STATE(2220), 1, sym__whitespace, - [68057] = 4, - ACTIONS(5476), 1, + [22238] = 4, + ACTIONS(6501), 1, sym__whitespace_ge_2, - ACTIONS(5478), 1, + ACTIONS(6503), 1, aux_sym__whitespace_token1, - STATE(1793), 1, + STATE(2119), 1, aux_sym_shortcode_escaped_repeat2, - STATE(1865), 1, + STATE(2223), 1, sym__whitespace, - [68070] = 4, - ACTIONS(5480), 1, + [22251] = 4, + ACTIONS(6535), 1, sym__whitespace_ge_2, - ACTIONS(5482), 1, + ACTIONS(6537), 1, aux_sym__whitespace_token1, - STATE(1793), 1, + STATE(2119), 1, aux_sym_shortcode_escaped_repeat2, - STATE(1866), 1, + STATE(2182), 1, sym__whitespace, - [68083] = 4, - ACTIONS(5476), 1, + [22264] = 4, + ACTIONS(6501), 1, sym__whitespace_ge_2, - ACTIONS(5478), 1, + ACTIONS(6503), 1, aux_sym__whitespace_token1, - STATE(1793), 1, + STATE(2119), 1, aux_sym_shortcode_escaped_repeat2, - STATE(1840), 1, + STATE(2183), 1, + sym__whitespace, + [22277] = 4, + ACTIONS(5962), 1, + sym__whitespace_ge_2, + ACTIONS(5964), 1, + aux_sym__whitespace_token1, + ACTIONS(6505), 1, + anon_sym_EQ, + STATE(2406), 1, sym__whitespace, - [68096] = 4, - ACTIONS(5480), 1, + [22290] = 4, + ACTIONS(6535), 1, sym__whitespace_ge_2, - ACTIONS(5482), 1, + ACTIONS(6537), 1, aux_sym__whitespace_token1, - STATE(1793), 1, + STATE(2119), 1, aux_sym_shortcode_escaped_repeat2, - STATE(1837), 1, + STATE(2186), 1, sym__whitespace, - [68109] = 4, - ACTIONS(5480), 1, + [22303] = 2, + ACTIONS(6551), 1, + sym_key_value_key, + ACTIONS(6549), 3, + anon_sym_RBRACE, + sym__commonmark_whitespace, + sym_commonmark_name, + [22312] = 4, + ACTIONS(6501), 1, sym__whitespace_ge_2, - ACTIONS(5482), 1, + ACTIONS(6503), 1, aux_sym__whitespace_token1, - STATE(1793), 1, + STATE(2119), 1, aux_sym_shortcode_escaped_repeat2, - STATE(1857), 1, + STATE(2188), 1, sym__whitespace, - [68122] = 4, - ACTIONS(5476), 1, + [22325] = 4, + ACTIONS(6535), 1, sym__whitespace_ge_2, - ACTIONS(5478), 1, + ACTIONS(6537), 1, aux_sym__whitespace_token1, - STATE(1793), 1, + STATE(2119), 1, aux_sym_shortcode_escaped_repeat2, - STATE(1859), 1, + STATE(2206), 1, sym__whitespace, - [68135] = 4, - ACTIONS(5476), 1, + [22338] = 4, + ACTIONS(6501), 1, sym__whitespace_ge_2, - ACTIONS(5478), 1, + ACTIONS(6503), 1, aux_sym__whitespace_token1, - STATE(1793), 1, + STATE(2119), 1, aux_sym_shortcode_escaped_repeat2, - STATE(1863), 1, + STATE(2208), 1, sym__whitespace, - [68148] = 4, - ACTIONS(5480), 1, + [22351] = 2, + ACTIONS(6555), 1, + sym_key_value_key, + ACTIONS(6553), 3, + anon_sym_RBRACE, + sym__commonmark_whitespace, + sym_commonmark_name, + [22360] = 3, + ACTIONS(6559), 1, + sym__commonmark_whitespace, + ACTIONS(6561), 1, + sym_key_value_key, + ACTIONS(6557), 2, + anon_sym_RBRACE, + sym_commonmark_name, + [22371] = 4, + ACTIONS(6535), 1, sym__whitespace_ge_2, - ACTIONS(5482), 1, + ACTIONS(6537), 1, aux_sym__whitespace_token1, - STATE(1793), 1, + STATE(2119), 1, aux_sym_shortcode_escaped_repeat2, - STATE(1860), 1, + STATE(2224), 1, sym__whitespace, - [68161] = 4, - ACTIONS(5480), 1, + [22384] = 4, + ACTIONS(6501), 1, sym__whitespace_ge_2, - ACTIONS(5482), 1, + ACTIONS(6503), 1, aux_sym__whitespace_token1, - STATE(1793), 1, + STATE(2119), 1, aux_sym_shortcode_escaped_repeat2, - STATE(1864), 1, + STATE(2225), 1, sym__whitespace, - [68174] = 4, - ACTIONS(5476), 1, + [22397] = 4, + ACTIONS(6535), 1, sym__whitespace_ge_2, - ACTIONS(5478), 1, + ACTIONS(6537), 1, aux_sym__whitespace_token1, - STATE(1793), 1, + STATE(2119), 1, aux_sym_shortcode_escaped_repeat2, - STATE(1869), 1, + STATE(2176), 1, sym__whitespace, - [68187] = 4, - ACTIONS(5480), 1, + [22410] = 4, + ACTIONS(6501), 1, sym__whitespace_ge_2, - ACTIONS(5482), 1, + ACTIONS(6503), 1, aux_sym__whitespace_token1, - STATE(1793), 1, + STATE(2119), 1, aux_sym_shortcode_escaped_repeat2, - STATE(1870), 1, + STATE(2177), 1, sym__whitespace, - [68200] = 2, - ACTIONS(5522), 1, - sym_key_value_key, - ACTIONS(5520), 3, - anon_sym_RBRACE, - sym__commonmark_whitespace, - sym_commonmark_name, - [68209] = 2, - ACTIONS(5526), 1, - sym_key_value_key, - ACTIONS(5524), 3, - anon_sym_RBRACE, - sym__commonmark_whitespace, - sym_commonmark_name, - [68218] = 4, - ACTIONS(5403), 1, + [22423] = 4, + ACTIONS(6406), 1, anon_sym_DQUOTE, - ACTIONS(5405), 1, + ACTIONS(6408), 1, anon_sym_SQUOTE, - ACTIONS(5409), 1, + ACTIONS(6412), 1, aux_sym_key_value_value_token1, - STATE(1813), 1, + STATE(2111), 1, sym_key_value_value, - [68231] = 4, - ACTIONS(5528), 1, - anon_sym_EQ, - ACTIONS(5530), 1, + [22436] = 4, + ACTIONS(6535), 1, sym__whitespace_ge_2, - ACTIONS(5533), 1, + ACTIONS(6537), 1, aux_sym__whitespace_token1, - STATE(2035), 1, + STATE(2119), 1, + aux_sym_shortcode_escaped_repeat2, + STATE(2191), 1, sym__whitespace, - [68244] = 4, - ACTIONS(5476), 1, + [22449] = 4, + ACTIONS(6501), 1, sym__whitespace_ge_2, - ACTIONS(5478), 1, + ACTIONS(6503), 1, aux_sym__whitespace_token1, - STATE(1793), 1, + STATE(2119), 1, aux_sym_shortcode_escaped_repeat2, - STATE(1838), 1, + STATE(2197), 1, sym__whitespace, - [68257] = 4, - ACTIONS(5476), 1, + [22462] = 4, + ACTIONS(6535), 1, sym__whitespace_ge_2, - ACTIONS(5478), 1, + ACTIONS(6537), 1, aux_sym__whitespace_token1, - STATE(1793), 1, + STATE(2119), 1, aux_sym_shortcode_escaped_repeat2, - STATE(1867), 1, + STATE(2222), 1, sym__whitespace, - [68270] = 4, - ACTIONS(5480), 1, + [22475] = 4, + ACTIONS(6501), 1, sym__whitespace_ge_2, - ACTIONS(5482), 1, + ACTIONS(6503), 1, aux_sym__whitespace_token1, - STATE(1793), 1, + STATE(2119), 1, aux_sym_shortcode_escaped_repeat2, - STATE(1839), 1, + STATE(2178), 1, sym__whitespace, - [68283] = 4, - ACTIONS(5476), 1, + [22488] = 4, + ACTIONS(6535), 1, sym__whitespace_ge_2, - ACTIONS(5478), 1, + ACTIONS(6537), 1, aux_sym__whitespace_token1, - STATE(1793), 1, + STATE(2119), 1, aux_sym_shortcode_escaped_repeat2, - STATE(1842), 1, + STATE(2169), 1, sym__whitespace, - [68296] = 4, - ACTIONS(5480), 1, + [22501] = 2, + ACTIONS(6565), 1, + sym_key_value_key, + ACTIONS(6563), 3, + anon_sym_RBRACE, + sym__commonmark_whitespace, + sym_commonmark_name, + [22510] = 4, + ACTIONS(6535), 1, sym__whitespace_ge_2, - ACTIONS(5482), 1, + ACTIONS(6537), 1, aux_sym__whitespace_token1, - STATE(1793), 1, + STATE(2119), 1, aux_sym_shortcode_escaped_repeat2, - STATE(1843), 1, + STATE(2173), 1, sym__whitespace, - [68309] = 4, - ACTIONS(4981), 1, + [22523] = 4, + ACTIONS(6501), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(6503), 1, aux_sym__whitespace_token1, - ACTIONS(5528), 1, - anon_sym_EQ, - STATE(2035), 1, + STATE(2119), 1, + aux_sym_shortcode_escaped_repeat2, + STATE(2174), 1, sym__whitespace, - [68322] = 4, - ACTIONS(5480), 1, + [22536] = 4, + ACTIONS(6501), 1, sym__whitespace_ge_2, - ACTIONS(5482), 1, + ACTIONS(6503), 1, aux_sym__whitespace_token1, - STATE(1793), 1, + STATE(2119), 1, aux_sym_shortcode_escaped_repeat2, - STATE(1871), 1, + STATE(2180), 1, sym__whitespace, - [68335] = 4, - ACTIONS(5480), 1, + [22549] = 4, + ACTIONS(6535), 1, sym__whitespace_ge_2, - ACTIONS(5482), 1, + ACTIONS(6537), 1, aux_sym__whitespace_token1, - STATE(1793), 1, + STATE(2119), 1, aux_sym_shortcode_escaped_repeat2, - STATE(1844), 1, + STATE(2171), 1, sym__whitespace, - [68348] = 4, - ACTIONS(5480), 1, + [22562] = 3, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(5482), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - STATE(1793), 1, - aux_sym_shortcode_escaped_repeat2, - STATE(1845), 1, + STATE(2380), 1, sym__whitespace, - [68361] = 3, - ACTIONS(5538), 1, - sym__commonmark_whitespace, - ACTIONS(5540), 1, - sym_key_value_key, - ACTIONS(5536), 2, - anon_sym_RBRACE, - sym_commonmark_name, - [68372] = 3, - ACTIONS(5542), 1, - sym_shortcode_name, - ACTIONS(5544), 1, + [22572] = 3, + ACTIONS(5928), 1, sym__shortcode_close_escaped, - STATE(1918), 1, - sym_shortcode_keyword_param, - [68382] = 3, - ACTIONS(5542), 1, + ACTIONS(6567), 1, sym_shortcode_name, - ACTIONS(5546), 1, - sym__shortcode_close_escaped, - STATE(1918), 1, + STATE(2245), 1, sym_shortcode_keyword_param, - [68392] = 3, - ACTIONS(5542), 1, - sym_shortcode_name, - ACTIONS(5548), 1, + [22582] = 3, + ACTIONS(5930), 1, sym__shortcode_close, - STATE(1918), 1, + ACTIONS(6567), 1, + sym_shortcode_name, + STATE(2245), 1, sym_shortcode_keyword_param, - [68402] = 3, - ACTIONS(4981), 1, - sym__whitespace_ge_2, - ACTIONS(4983), 1, - aux_sym__whitespace_token1, - STATE(2029), 1, - sym__whitespace, - [68412] = 3, - ACTIONS(5550), 1, - anon_sym_EQ, - ACTIONS(5552), 1, - anon_sym_RBRACE, - ACTIONS(5554), 1, - sym__commonmark_whitespace, - [68422] = 3, - ACTIONS(5550), 1, - anon_sym_EQ, - ACTIONS(5554), 1, - sym__commonmark_whitespace, - ACTIONS(5556), 1, - anon_sym_RBRACE, - [68432] = 3, - ACTIONS(4941), 1, + [22592] = 3, + ACTIONS(5872), 1, sym__shortcode_close_escaped, - ACTIONS(5542), 1, + ACTIONS(6567), 1, sym_shortcode_name, - STATE(1918), 1, + STATE(2245), 1, sym_shortcode_keyword_param, - [68442] = 2, - ACTIONS(5558), 1, - sym_key_value_key, - ACTIONS(5424), 2, - anon_sym_RBRACE, - sym_commonmark_name, - [68450] = 3, - ACTIONS(5550), 1, - anon_sym_EQ, - ACTIONS(5554), 1, - sym__commonmark_whitespace, - ACTIONS(5560), 1, - anon_sym_RBRACE, - [68460] = 3, - ACTIONS(5550), 1, - anon_sym_EQ, - ACTIONS(5554), 1, - sym__commonmark_whitespace, - ACTIONS(5562), 1, - anon_sym_RBRACE, - [68470] = 3, - ACTIONS(5542), 1, - sym_shortcode_name, - ACTIONS(5564), 1, + [22602] = 3, + ACTIONS(5890), 1, sym__shortcode_close, - STATE(1918), 1, + ACTIONS(6567), 1, + sym_shortcode_name, + STATE(2245), 1, sym_shortcode_keyword_param, - [68480] = 3, - ACTIONS(4951), 1, - sym__shortcode_close_escaped, - ACTIONS(5542), 1, + [22612] = 3, + ACTIONS(6567), 1, sym_shortcode_name, - STATE(1918), 1, + ACTIONS(6569), 1, + sym__shortcode_close_escaped, + STATE(2245), 1, sym_shortcode_keyword_param, - [68490] = 3, - ACTIONS(4953), 1, - sym__shortcode_close, - ACTIONS(5542), 1, + [22622] = 3, + ACTIONS(6567), 1, sym_shortcode_name, - STATE(1918), 1, + ACTIONS(6571), 1, + sym__shortcode_close, + STATE(2245), 1, sym_shortcode_keyword_param, - [68500] = 3, - ACTIONS(4909), 1, - sym__shortcode_close_escaped, - ACTIONS(5542), 1, + [22632] = 3, + ACTIONS(6567), 1, sym_shortcode_name, - STATE(1918), 1, + ACTIONS(6573), 1, + sym__shortcode_close_escaped, + STATE(2245), 1, sym_shortcode_keyword_param, - [68510] = 3, - ACTIONS(4981), 1, - sym__whitespace_ge_2, - ACTIONS(4983), 1, - aux_sym__whitespace_token1, - STATE(1936), 1, - sym__whitespace, - [68520] = 3, - ACTIONS(5542), 1, + [22642] = 3, + ACTIONS(6567), 1, sym_shortcode_name, - ACTIONS(5566), 1, + ACTIONS(6575), 1, sym__shortcode_close_escaped, - STATE(1918), 1, + STATE(2245), 1, sym_shortcode_keyword_param, - [68530] = 3, - ACTIONS(5542), 1, + [22652] = 3, + ACTIONS(6567), 1, sym_shortcode_name, - ACTIONS(5568), 1, + ACTIONS(6577), 1, sym__shortcode_close, - STATE(1918), 1, + STATE(2245), 1, sym_shortcode_keyword_param, - [68540] = 3, - ACTIONS(4957), 1, - sym__shortcode_close, - ACTIONS(5542), 1, + [22662] = 3, + ACTIONS(6567), 1, sym_shortcode_name, - STATE(1918), 1, + ACTIONS(6579), 1, + sym__shortcode_close, + STATE(2245), 1, sym_shortcode_keyword_param, - [68550] = 3, - ACTIONS(5542), 1, - sym_shortcode_name, - ACTIONS(5570), 1, + [22672] = 3, + ACTIONS(5878), 1, sym__shortcode_close, - STATE(1918), 1, + ACTIONS(6567), 1, + sym_shortcode_name, + STATE(2245), 1, sym_shortcode_keyword_param, - [68560] = 3, - ACTIONS(5550), 1, - anon_sym_EQ, - ACTIONS(5554), 1, - sym__commonmark_whitespace, - ACTIONS(5572), 1, - anon_sym_RBRACE, - [68570] = 3, - ACTIONS(5542), 1, + [22682] = 3, + ACTIONS(5934), 1, + sym__shortcode_close, + ACTIONS(6567), 1, sym_shortcode_name, - ACTIONS(5574), 1, - sym__shortcode_close_escaped, - STATE(1918), 1, + STATE(2245), 1, sym_shortcode_keyword_param, - [68580] = 3, - ACTIONS(5542), 1, + [22692] = 3, + ACTIONS(6567), 1, sym_shortcode_name, - ACTIONS(5576), 1, + ACTIONS(6581), 1, sym__shortcode_close, - STATE(1918), 1, + STATE(2245), 1, sym_shortcode_keyword_param, - [68590] = 3, - ACTIONS(5542), 1, + [22702] = 3, + ACTIONS(6567), 1, sym_shortcode_name, - ACTIONS(5578), 1, + ACTIONS(6583), 1, sym__shortcode_close_escaped, - STATE(1918), 1, + STATE(2245), 1, sym_shortcode_keyword_param, - [68600] = 3, - ACTIONS(5542), 1, + [22712] = 3, + ACTIONS(6567), 1, sym_shortcode_name, - ACTIONS(5580), 1, + ACTIONS(6585), 1, sym__shortcode_close, - STATE(1918), 1, + STATE(2245), 1, sym_shortcode_keyword_param, - [68610] = 3, - ACTIONS(5542), 1, + [22722] = 3, + ACTIONS(6567), 1, sym_shortcode_name, - ACTIONS(5582), 1, + ACTIONS(6587), 1, sym__shortcode_close, - STATE(1918), 1, - sym_shortcode_keyword_param, - [68620] = 3, - ACTIONS(5542), 1, - sym_shortcode_name, - ACTIONS(5584), 1, - sym__shortcode_close_escaped, - STATE(1918), 1, + STATE(2245), 1, sym_shortcode_keyword_param, - [68630] = 3, - ACTIONS(4905), 1, + [22732] = 3, + ACTIONS(6589), 1, + anon_sym_EQ, + ACTIONS(6591), 1, + anon_sym_RBRACE, + ACTIONS(6593), 1, + sym__commonmark_whitespace, + [22742] = 3, + ACTIONS(5910), 1, sym__shortcode_close_escaped, - ACTIONS(5542), 1, - sym_shortcode_name, - STATE(1918), 1, - sym_shortcode_keyword_param, - [68640] = 3, - ACTIONS(4961), 1, - sym__shortcode_close, - ACTIONS(5542), 1, + ACTIONS(6567), 1, sym_shortcode_name, - STATE(1918), 1, + STATE(2245), 1, sym_shortcode_keyword_param, - [68650] = 3, - ACTIONS(4907), 1, + [22752] = 3, + ACTIONS(6589), 1, + anon_sym_EQ, + ACTIONS(6593), 1, + sym__commonmark_whitespace, + ACTIONS(6595), 1, + anon_sym_RBRACE, + [22762] = 3, + ACTIONS(5912), 1, sym__shortcode_close, - ACTIONS(5542), 1, + ACTIONS(6567), 1, sym_shortcode_name, - STATE(1918), 1, + STATE(2245), 1, sym_shortcode_keyword_param, - [68660] = 3, - ACTIONS(5550), 1, + [22772] = 3, + ACTIONS(5962), 1, + sym__whitespace_ge_2, + ACTIONS(5964), 1, + aux_sym__whitespace_token1, + STATE(2366), 1, + sym__whitespace, + [22782] = 3, + ACTIONS(6589), 1, anon_sym_EQ, - ACTIONS(5554), 1, + ACTIONS(6593), 1, sym__commonmark_whitespace, - ACTIONS(5586), 1, + ACTIONS(6597), 1, anon_sym_RBRACE, - [68670] = 3, - ACTIONS(4925), 1, - sym__shortcode_close, - ACTIONS(5542), 1, + [22792] = 3, + ACTIONS(5900), 1, + sym__shortcode_close_escaped, + ACTIONS(6567), 1, sym_shortcode_name, - STATE(1918), 1, + STATE(2245), 1, sym_shortcode_keyword_param, - [68680] = 2, - ACTIONS(5590), 1, - aux_sym__whitespace_token1, - ACTIONS(5588), 2, - anon_sym_RBRACK, + [22802] = 3, + ACTIONS(6567), 1, + sym_shortcode_name, + ACTIONS(6599), 1, + sym__shortcode_close, + STATE(2245), 1, + sym_shortcode_keyword_param, + [22812] = 3, + ACTIONS(5962), 1, sym__whitespace_ge_2, - [68688] = 3, - ACTIONS(5542), 1, + ACTIONS(5964), 1, + aux_sym__whitespace_token1, + STATE(2308), 1, + sym__whitespace, + [22822] = 2, + ACTIONS(6601), 1, + sym_key_value_key, + ACTIONS(6450), 2, + anon_sym_RBRACE, + sym_commonmark_name, + [22830] = 3, + ACTIONS(5884), 1, + sym__shortcode_close, + ACTIONS(6567), 1, sym_shortcode_name, - ACTIONS(5592), 1, - sym__shortcode_close_escaped, - STATE(1918), 1, + STATE(2245), 1, sym_shortcode_keyword_param, - [68698] = 3, - ACTIONS(5542), 1, + [22840] = 3, + ACTIONS(5886), 1, + sym__shortcode_close_escaped, + ACTIONS(6567), 1, sym_shortcode_name, - ACTIONS(5594), 1, + STATE(2245), 1, + sym_shortcode_keyword_param, + [22850] = 3, + ACTIONS(5902), 1, sym__shortcode_close, - STATE(1918), 1, + ACTIONS(6567), 1, + sym_shortcode_name, + STATE(2245), 1, sym_shortcode_keyword_param, - [68708] = 3, - ACTIONS(5550), 1, + [22860] = 3, + ACTIONS(6589), 1, anon_sym_EQ, - ACTIONS(5554), 1, + ACTIONS(6593), 1, sym__commonmark_whitespace, - ACTIONS(5596), 1, + ACTIONS(6603), 1, anon_sym_RBRACE, - [68718] = 3, - ACTIONS(4959), 1, + [22870] = 3, + ACTIONS(5874), 1, sym__shortcode_close_escaped, - ACTIONS(5542), 1, + ACTIONS(6567), 1, sym_shortcode_name, - STATE(1918), 1, + STATE(2245), 1, sym_shortcode_keyword_param, - [68728] = 3, - ACTIONS(4931), 1, + [22880] = 3, + ACTIONS(6589), 1, + anon_sym_EQ, + ACTIONS(6593), 1, + sym__commonmark_whitespace, + ACTIONS(6605), 1, + anon_sym_RBRACE, + [22890] = 2, + ACTIONS(6607), 1, + sym__last_token_whitespace, + ACTIONS(4642), 2, sym__shortcode_close_escaped, - ACTIONS(5542), 1, sym_shortcode_name, - STATE(1918), 1, + [22898] = 3, + ACTIONS(6567), 1, + sym_shortcode_name, + ACTIONS(6609), 1, + sym__shortcode_close_escaped, + STATE(2245), 1, sym_shortcode_keyword_param, - [68738] = 3, - ACTIONS(4933), 1, - sym__shortcode_close, - ACTIONS(5542), 1, + [22908] = 3, + ACTIONS(6567), 1, sym_shortcode_name, - STATE(1918), 1, + ACTIONS(6611), 1, + sym__shortcode_close_escaped, + STATE(2245), 1, sym_shortcode_keyword_param, - [68748] = 3, - ACTIONS(5542), 1, + [22918] = 3, + ACTIONS(5876), 1, + sym__shortcode_close, + ACTIONS(6567), 1, sym_shortcode_name, - ACTIONS(5598), 1, + STATE(2245), 1, + sym_shortcode_keyword_param, + [22928] = 3, + ACTIONS(5880), 1, sym__shortcode_close_escaped, - STATE(1918), 1, + ACTIONS(6567), 1, + sym_shortcode_name, + STATE(2245), 1, sym_shortcode_keyword_param, - [68758] = 3, - ACTIONS(5542), 1, + [22938] = 3, + ACTIONS(6567), 1, sym_shortcode_name, - ACTIONS(5600), 1, - sym__shortcode_close, - STATE(1918), 1, + ACTIONS(6613), 1, + sym__shortcode_close_escaped, + STATE(2245), 1, sym_shortcode_keyword_param, - [68768] = 3, - ACTIONS(4965), 1, + [22948] = 3, + ACTIONS(6567), 1, + sym_shortcode_name, + ACTIONS(6615), 1, sym__shortcode_close_escaped, - ACTIONS(5542), 1, + STATE(2245), 1, + sym_shortcode_keyword_param, + [22958] = 3, + ACTIONS(6567), 1, sym_shortcode_name, - STATE(1918), 1, + ACTIONS(6617), 1, + sym__shortcode_close, + STATE(2245), 1, sym_shortcode_keyword_param, - [68778] = 3, - ACTIONS(5550), 1, + [22968] = 3, + ACTIONS(6589), 1, anon_sym_EQ, - ACTIONS(5554), 1, + ACTIONS(6593), 1, sym__commonmark_whitespace, - ACTIONS(5602), 1, + ACTIONS(6619), 1, anon_sym_RBRACE, - [68788] = 3, - ACTIONS(5542), 1, - sym_shortcode_name, - ACTIONS(5604), 1, + [22978] = 3, + ACTIONS(5904), 1, sym__shortcode_close_escaped, - STATE(1918), 1, - sym_shortcode_keyword_param, - [68798] = 3, - ACTIONS(5542), 1, + ACTIONS(6567), 1, sym_shortcode_name, - ACTIONS(5606), 1, - sym__shortcode_close, - STATE(1918), 1, + STATE(2245), 1, sym_shortcode_keyword_param, - [68808] = 3, - ACTIONS(4935), 1, + [22988] = 3, + ACTIONS(5882), 1, sym__shortcode_close, - ACTIONS(5542), 1, + ACTIONS(6567), 1, sym_shortcode_name, - STATE(1918), 1, + STATE(2245), 1, sym_shortcode_keyword_param, - [68818] = 3, - ACTIONS(4899), 1, - sym__shortcode_close_escaped, - ACTIONS(5542), 1, + [22998] = 3, + ACTIONS(6567), 1, sym_shortcode_name, - STATE(1918), 1, + ACTIONS(6621), 1, + sym__shortcode_close, + STATE(2245), 1, sym_shortcode_keyword_param, - [68828] = 2, - ACTIONS(5608), 1, - sym__last_token_whitespace, - ACTIONS(3733), 2, + [23008] = 2, + ACTIONS(6625), 1, + aux_sym__whitespace_token1, + ACTIONS(6623), 2, + anon_sym_RBRACK, + sym__whitespace_ge_2, + [23016] = 3, + ACTIONS(6589), 1, + anon_sym_EQ, + ACTIONS(6593), 1, + sym__commonmark_whitespace, + ACTIONS(6627), 1, + anon_sym_RBRACE, + [23026] = 3, + ACTIONS(6567), 1, + sym_shortcode_name, + ACTIONS(6629), 1, sym__shortcode_close_escaped, + STATE(2245), 1, + sym_shortcode_keyword_param, + [23036] = 3, + ACTIONS(6567), 1, sym_shortcode_name, - [68836] = 2, - ACTIONS(5610), 1, - sym__last_token_whitespace, - ACTIONS(3733), 2, + ACTIONS(6631), 1, sym__shortcode_close, + STATE(2245), 1, + sym_shortcode_keyword_param, + [23046] = 3, + ACTIONS(6567), 1, sym_shortcode_name, - [68844] = 3, - ACTIONS(5550), 1, + ACTIONS(6633), 1, + sym__shortcode_close, + STATE(2245), 1, + sym_shortcode_keyword_param, + [23056] = 3, + ACTIONS(6589), 1, anon_sym_EQ, - ACTIONS(5554), 1, + ACTIONS(6593), 1, + sym__commonmark_whitespace, + ACTIONS(6635), 1, + anon_sym_RBRACE, + [23066] = 3, + ACTIONS(6589), 1, + anon_sym_EQ, + ACTIONS(6593), 1, sym__commonmark_whitespace, - ACTIONS(5612), 1, + ACTIONS(6637), 1, anon_sym_RBRACE, - [68854] = 3, - ACTIONS(4895), 1, + [23076] = 3, + ACTIONS(5920), 1, sym__shortcode_close_escaped, - ACTIONS(5542), 1, + ACTIONS(6567), 1, sym_shortcode_name, - STATE(1918), 1, + STATE(2245), 1, + sym_shortcode_keyword_param, + [23086] = 3, + ACTIONS(6589), 1, + anon_sym_EQ, + ACTIONS(6593), 1, + sym__commonmark_whitespace, + ACTIONS(6639), 1, + anon_sym_RBRACE, + [23096] = 3, + ACTIONS(6567), 1, + sym_shortcode_name, + ACTIONS(6641), 1, + sym__shortcode_close_escaped, + STATE(2245), 1, sym_shortcode_keyword_param, - [68864] = 3, - ACTIONS(4897), 1, + [23106] = 3, + ACTIONS(5868), 1, sym__shortcode_close, - ACTIONS(5542), 1, + ACTIONS(6567), 1, sym_shortcode_name, - STATE(1918), 1, + STATE(2245), 1, + sym_shortcode_keyword_param, + [23116] = 3, + ACTIONS(5866), 1, + sym__shortcode_close_escaped, + ACTIONS(6567), 1, + sym_shortcode_name, + STATE(2245), 1, sym_shortcode_keyword_param, - [68874] = 3, - ACTIONS(4963), 1, + [23126] = 3, + ACTIONS(5864), 1, sym__shortcode_close, - ACTIONS(5542), 1, + ACTIONS(6567), 1, sym_shortcode_name, - STATE(1918), 1, + STATE(2245), 1, sym_shortcode_keyword_param, - [68884] = 3, - ACTIONS(4981), 1, + [23136] = 3, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - STATE(1937), 1, + STATE(2371), 1, sym__whitespace, - [68894] = 3, - ACTIONS(4981), 1, + [23146] = 3, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - STATE(2013), 1, + STATE(2372), 1, sym__whitespace, - [68904] = 3, - ACTIONS(4981), 1, + [23156] = 3, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - STATE(2014), 1, + STATE(2373), 1, sym__whitespace, - [68914] = 3, - ACTIONS(4981), 1, + [23166] = 3, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - STATE(2015), 1, + STATE(2374), 1, sym__whitespace, - [68924] = 3, - ACTIONS(4981), 1, + [23176] = 3, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - STATE(2016), 1, + STATE(2375), 1, sym__whitespace, - [68934] = 3, - ACTIONS(4981), 1, + [23186] = 3, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - STATE(2017), 1, + STATE(2376), 1, sym__whitespace, - [68944] = 3, - ACTIONS(4981), 1, + [23196] = 3, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - STATE(2018), 1, + STATE(2377), 1, sym__whitespace, - [68954] = 3, - ACTIONS(4981), 1, + [23206] = 3, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - STATE(2019), 1, + STATE(2378), 1, sym__whitespace, - [68964] = 3, - ACTIONS(4981), 1, + [23216] = 3, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - STATE(2020), 1, + STATE(2379), 1, sym__whitespace, - [68974] = 3, - ACTIONS(4981), 1, + [23226] = 3, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - STATE(2021), 1, + STATE(2381), 1, sym__whitespace, - [68984] = 3, - ACTIONS(4981), 1, + [23236] = 3, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - STATE(2022), 1, + STATE(2382), 1, sym__whitespace, - [68994] = 3, - ACTIONS(4981), 1, + [23246] = 3, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - STATE(2023), 1, + STATE(2383), 1, sym__whitespace, - [69004] = 3, - ACTIONS(4981), 1, + [23256] = 3, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - STATE(2024), 1, + STATE(2384), 1, sym__whitespace, - [69014] = 3, - ACTIONS(4981), 1, + [23266] = 3, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - STATE(2025), 1, + STATE(2385), 1, sym__whitespace, - [69024] = 3, - ACTIONS(4981), 1, + [23276] = 3, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - STATE(2026), 1, + STATE(2386), 1, sym__whitespace, - [69034] = 3, - ACTIONS(4981), 1, + [23286] = 3, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - STATE(2027), 1, + STATE(2387), 1, sym__whitespace, - [69044] = 3, - ACTIONS(4981), 1, + [23296] = 3, + ACTIONS(5962), 1, sym__whitespace_ge_2, - ACTIONS(4983), 1, + ACTIONS(5964), 1, aux_sym__whitespace_token1, - STATE(2028), 1, + STATE(2388), 1, sym__whitespace, - [69054] = 3, - ACTIONS(4891), 1, + [23306] = 3, + ACTIONS(5962), 1, + sym__whitespace_ge_2, + ACTIONS(5964), 1, + aux_sym__whitespace_token1, + STATE(2389), 1, + sym__whitespace, + [23316] = 2, + ACTIONS(6643), 1, + sym__last_token_whitespace, + ACTIONS(4642), 2, sym__shortcode_close, - ACTIONS(5542), 1, sym_shortcode_name, - STATE(1918), 1, - sym_shortcode_keyword_param, - [69064] = 2, - ACTIONS(5614), 1, + [23324] = 2, + ACTIONS(6645), 1, + sym__whitespace_ge_2, + ACTIONS(6647), 1, + aux_sym__whitespace_token1, + [23331] = 2, + ACTIONS(6649), 1, anon_sym_RBRACE, - ACTIONS(5616), 1, + ACTIONS(6651), 1, sym__commonmark_whitespace, - [69071] = 2, - ACTIONS(5618), 1, + [23338] = 2, + ACTIONS(6653), 1, anon_sym_RBRACE, - ACTIONS(5620), 1, + ACTIONS(6655), 1, + sym__commonmark_whitespace, + [23345] = 2, + ACTIONS(6657), 1, + anon_sym_RBRACE, + ACTIONS(6659), 1, sym__commonmark_whitespace, - [69078] = 2, - ACTIONS(5550), 1, + [23352] = 2, + ACTIONS(6589), 1, anon_sym_EQ, - ACTIONS(5554), 1, + ACTIONS(6593), 1, sym__commonmark_whitespace, - [69085] = 2, - ACTIONS(5622), 1, + [23359] = 2, + ACTIONS(6661), 1, anon_sym_RBRACE, - ACTIONS(5624), 1, + ACTIONS(6663), 1, sym__commonmark_whitespace, - [69092] = 2, - ACTIONS(5626), 1, + [23366] = 2, + ACTIONS(4888), 1, + sym__whitespace_ge_2, + ACTIONS(4890), 1, + aux_sym__whitespace_token1, + [23373] = 2, + ACTIONS(6665), 1, anon_sym_RBRACE, - ACTIONS(5628), 1, + ACTIONS(6667), 1, sym__commonmark_whitespace, - [69099] = 2, - ACTIONS(5630), 1, + [23380] = 2, + ACTIONS(6669), 1, anon_sym_RBRACE, - ACTIONS(5632), 1, + ACTIONS(6671), 1, sym__commonmark_whitespace, - [69106] = 2, - ACTIONS(3801), 1, - sym__trigger_error, - ACTIONS(5634), 1, - sym__last_token_whitespace, - [69113] = 2, - ACTIONS(5636), 1, + [23387] = 2, + ACTIONS(4908), 1, + sym__whitespace_ge_2, + ACTIONS(4910), 1, + aux_sym__whitespace_token1, + [23394] = 2, + ACTIONS(6673), 1, + anon_sym_RBRACE, + ACTIONS(6675), 1, + sym__commonmark_whitespace, + [23401] = 2, + ACTIONS(6677), 1, sym__whitespace_ge_2, - ACTIONS(5638), 1, + ACTIONS(6679), 1, aux_sym__whitespace_token1, - [69120] = 1, - ACTIONS(3925), 2, + [23408] = 1, + ACTIONS(4856), 2, sym__shortcode_close_escaped, sym_shortcode_name, - [69125] = 2, - ACTIONS(5542), 1, - sym_shortcode_name, - STATE(1918), 1, - sym_shortcode_keyword_param, - [69132] = 2, - ACTIONS(5640), 1, + [23413] = 2, + ACTIONS(6681), 1, anon_sym_RBRACE, - ACTIONS(5642), 1, + ACTIONS(6683), 1, sym__commonmark_whitespace, - [69139] = 1, - ACTIONS(3925), 2, + [23420] = 1, + ACTIONS(4856), 2, sym__shortcode_close, sym_shortcode_name, - [69144] = 2, - ACTIONS(5644), 1, - sym__whitespace_ge_2, - ACTIONS(5646), 1, - aux_sym__whitespace_token1, - [69151] = 2, - ACTIONS(5648), 1, - sym__whitespace_ge_2, - ACTIONS(5650), 1, - aux_sym__whitespace_token1, - [69158] = 2, - ACTIONS(5652), 1, + [23425] = 2, + ACTIONS(6685), 1, anon_sym_RBRACE, - ACTIONS(5654), 1, + ACTIONS(6687), 1, sym__commonmark_whitespace, - [69165] = 2, - ACTIONS(5656), 1, - sym__whitespace_ge_2, - ACTIONS(5658), 1, - aux_sym__whitespace_token1, - [69172] = 2, - ACTIONS(4085), 1, + [23432] = 2, + ACTIONS(4864), 1, sym__whitespace_ge_2, - ACTIONS(4087), 1, + ACTIONS(4866), 1, aux_sym__whitespace_token1, - [69179] = 2, - ACTIONS(5660), 1, - anon_sym_RBRACE, - ACTIONS(5662), 1, - sym__commonmark_whitespace, - [69186] = 2, - ACTIONS(5664), 1, + [23439] = 2, + ACTIONS(6689), 1, sym__whitespace_ge_2, - ACTIONS(5666), 1, + ACTIONS(6691), 1, aux_sym__whitespace_token1, - [69193] = 2, - ACTIONS(5668), 1, + [23446] = 2, + ACTIONS(6693), 1, anon_sym_RBRACE, - ACTIONS(5670), 1, + ACTIONS(6695), 1, sym__commonmark_whitespace, - [69200] = 2, - ACTIONS(5672), 1, + [23453] = 2, + ACTIONS(6567), 1, + sym_shortcode_name, + STATE(2245), 1, + sym_shortcode_keyword_param, + [23460] = 2, + ACTIONS(6697), 1, anon_sym_RBRACE, - ACTIONS(5674), 1, + ACTIONS(6699), 1, sym__commonmark_whitespace, - [69207] = 2, - ACTIONS(5676), 1, + [23467] = 2, + ACTIONS(6701), 1, sym__whitespace_ge_2, - ACTIONS(5678), 1, + ACTIONS(6703), 1, aux_sym__whitespace_token1, - [69214] = 2, - ACTIONS(5680), 1, + [23474] = 2, + ACTIONS(6705), 1, sym__whitespace_ge_2, - ACTIONS(5682), 1, + ACTIONS(6707), 1, aux_sym__whitespace_token1, - [69221] = 2, - ACTIONS(5684), 1, + [23481] = 2, + ACTIONS(6709), 1, anon_sym_RBRACE, - ACTIONS(5686), 1, + ACTIONS(6711), 1, sym__commonmark_whitespace, - [69228] = 2, - ACTIONS(5688), 1, - anon_sym_RBRACE, - ACTIONS(5690), 1, - sym__commonmark_whitespace, - [69235] = 2, - ACTIONS(4049), 1, + [23488] = 2, + ACTIONS(6713), 1, sym__whitespace_ge_2, - ACTIONS(4051), 1, + ACTIONS(6715), 1, aux_sym__whitespace_token1, - [69242] = 2, - ACTIONS(5692), 1, + [23495] = 2, + ACTIONS(6717), 1, anon_sym_RBRACE, - ACTIONS(5694), 1, + ACTIONS(6719), 1, sym__commonmark_whitespace, - [69249] = 2, - ACTIONS(5696), 1, + [23502] = 2, + ACTIONS(6721), 1, anon_sym_RBRACE, - ACTIONS(5698), 1, + ACTIONS(6723), 1, sym__commonmark_whitespace, - [69256] = 2, - ACTIONS(5700), 1, + [23509] = 2, + ACTIONS(6725), 1, anon_sym_RBRACE, - ACTIONS(5702), 1, + ACTIONS(6727), 1, sym__commonmark_whitespace, - [69263] = 2, - ACTIONS(4069), 1, + [23516] = 2, + ACTIONS(6729), 1, sym__whitespace_ge_2, - ACTIONS(4071), 1, + ACTIONS(6731), 1, aux_sym__whitespace_token1, - [69270] = 2, - ACTIONS(5704), 1, + [23523] = 2, + ACTIONS(6733), 1, anon_sym_RBRACE, - ACTIONS(5706), 1, + ACTIONS(6735), 1, sym__commonmark_whitespace, - [69277] = 2, - ACTIONS(5708), 1, + [23530] = 2, + ACTIONS(6737), 1, anon_sym_RBRACE, - ACTIONS(5710), 1, + ACTIONS(6739), 1, sym__commonmark_whitespace, - [69284] = 2, - ACTIONS(5712), 1, + [23537] = 2, + ACTIONS(6741), 1, anon_sym_RBRACE, - ACTIONS(5714), 1, + ACTIONS(6743), 1, sym__commonmark_whitespace, - [69291] = 1, - ACTIONS(5716), 1, - anon_sym_LPAREN, - [69295] = 1, - ACTIONS(5718), 1, + [23544] = 2, + ACTIONS(6745), 1, anon_sym_RBRACE, - [69299] = 1, - ACTIONS(5720), 1, - anon_sym_RBRACK, - [69303] = 1, - ACTIONS(5722), 1, + ACTIONS(6747), 1, + sym__commonmark_whitespace, + [23551] = 2, + ACTIONS(4728), 1, + sym__trigger_error, + ACTIONS(6749), 1, + sym__last_token_whitespace, + [23558] = 2, + ACTIONS(6751), 1, anon_sym_RBRACE, - [69307] = 1, - ACTIONS(5724), 1, - anon_sym_EQ, - [69311] = 1, - ACTIONS(5726), 1, + ACTIONS(6753), 1, + sym__commonmark_whitespace, + [23565] = 1, + ACTIONS(6755), 1, + anon_sym_LPAREN, + [23569] = 1, + ACTIONS(6757), 1, anon_sym_RBRACE, - [69315] = 1, - ACTIONS(5728), 1, - sym_shortcode_name, - [69319] = 1, - ACTIONS(5730), 1, - sym_shortcode_name, - [69323] = 1, - ACTIONS(5732), 1, - aux_sym_citation_token2, - [69327] = 1, - ACTIONS(5734), 1, + [23573] = 1, + ACTIONS(6759), 1, + anon_sym_RBRACE, + [23577] = 1, + ACTIONS(6761), 1, aux_sym_citation_token1, - [69331] = 1, - ACTIONS(5736), 1, + [23581] = 1, + ACTIONS(6763), 1, aux_sym_citation_token1, - [69335] = 1, - ACTIONS(5738), 1, - anon_sym_RBRACK, - [69339] = 1, - ACTIONS(5740), 1, + [23585] = 1, + ACTIONS(6765), 1, + anon_sym_RBRACE, + [23589] = 1, + ACTIONS(6767), 1, anon_sym_LPAREN, - [69343] = 1, - ACTIONS(5742), 1, + [23593] = 1, + ACTIONS(6769), 1, + anon_sym_LPAREN, + [23597] = 1, + ACTIONS(5032), 1, + sym__trigger_error, + [23601] = 1, + ACTIONS(6771), 1, aux_sym_citation_token2, - [69347] = 1, - ACTIONS(5668), 1, + [23605] = 1, + ACTIONS(6773), 1, + aux_sym_citation_token2, + [23609] = 1, + ACTIONS(6775), 1, anon_sym_RBRACE, - [69351] = 1, - ACTIONS(5744), 1, + [23613] = 1, + ACTIONS(6777), 1, anon_sym_RBRACE, - [69355] = 1, - ACTIONS(5746), 1, - aux_sym_citation_token2, - [69359] = 1, - ACTIONS(5748), 1, + [23617] = 1, + ACTIONS(6779), 1, anon_sym_RBRACK, - [69363] = 1, - ACTIONS(5652), 1, + [23621] = 1, + ACTIONS(6781), 1, + anon_sym_RBRACK, + [23625] = 1, + ACTIONS(6783), 1, anon_sym_RBRACE, - [69367] = 1, - ACTIONS(5622), 1, + [23629] = 1, + ACTIONS(6785), 1, anon_sym_RBRACE, - [69371] = 1, - ACTIONS(5618), 1, + [23633] = 1, + ACTIONS(6787), 1, + aux_sym_citation_token1, + [23637] = 1, + ACTIONS(6789), 1, + aux_sym_citation_token1, + [23641] = 1, + ACTIONS(6791), 1, anon_sym_RBRACE, - [69375] = 1, - ACTIONS(5750), 1, + [23645] = 1, + ACTIONS(6793), 1, + anon_sym_LPAREN, + [23649] = 1, + ACTIONS(6795), 1, aux_sym_citation_token2, - [69379] = 1, - ACTIONS(5704), 1, + [23653] = 1, + ACTIONS(6797), 1, + anon_sym_LPAREN, + [23657] = 1, + ACTIONS(6799), 1, + anon_sym_LPAREN, + [23661] = 1, + ACTIONS(6801), 1, + anon_sym_RBRACE, + [23665] = 1, + ACTIONS(6803), 1, + anon_sym_RBRACE, + [23669] = 1, + ACTIONS(6717), 1, anon_sym_RBRACE, - [69383] = 1, - ACTIONS(5752), 1, + [23673] = 1, + ACTIONS(6805), 1, + anon_sym_RBRACE, + [23677] = 1, + ACTIONS(6807), 1, + sym_shortcode_name, + [23681] = 1, + ACTIONS(6809), 1, + anon_sym_EQ, + [23685] = 1, + ACTIONS(6811), 1, + anon_sym_RBRACE, + [23689] = 1, + ACTIONS(6813), 1, aux_sym_citation_token1, - [69387] = 1, - ACTIONS(5754), 1, + [23693] = 1, + ACTIONS(6815), 1, aux_sym_citation_token1, - [69391] = 1, - ACTIONS(5692), 1, + [23697] = 1, + ACTIONS(6817), 1, anon_sym_RBRACE, - [69395] = 1, - ACTIONS(5756), 1, + [23701] = 1, + ACTIONS(6819), 1, + anon_sym_LPAREN, + [23705] = 1, + ACTIONS(6821), 1, + ts_builtin_sym_end, + [23709] = 1, + ACTIONS(6823), 1, + aux_sym_citation_token2, + [23713] = 1, + ACTIONS(6693), 1, + anon_sym_RBRACE, + [23717] = 1, + ACTIONS(6825), 1, aux_sym_citation_token2, - [69399] = 1, - ACTIONS(5758), 1, + [23721] = 1, + ACTIONS(6827), 1, sym__trigger_error, - [69403] = 1, - ACTIONS(5760), 1, + [23725] = 1, + ACTIONS(6829), 1, anon_sym_RBRACK, - [69407] = 1, - ACTIONS(5762), 1, - anon_sym_LPAREN, - [69411] = 1, - ACTIONS(5764), 1, + [23729] = 1, + ACTIONS(6831), 1, + anon_sym_RBRACK, + [23733] = 1, + ACTIONS(6833), 1, aux_sym_citation_token2, - [69415] = 1, - ACTIONS(5766), 1, - anon_sym_RBRACE, - [69419] = 1, - ACTIONS(5768), 1, - aux_sym_citation_token1, - [69423] = 1, - ACTIONS(5770), 1, - anon_sym_RBRACE, - [69427] = 1, - ACTIONS(5772), 1, + [23737] = 1, + ACTIONS(6835), 1, + aux_sym_citation_token2, + [23741] = 1, + ACTIONS(6709), 1, anon_sym_RBRACE, - [69431] = 1, - ACTIONS(5774), 1, + [23745] = 1, + ACTIONS(6837), 1, aux_sym_citation_token1, - [69435] = 1, - ACTIONS(5776), 1, + [23749] = 1, + ACTIONS(6839), 1, aux_sym_citation_token1, - [69439] = 1, - ACTIONS(5778), 1, + [23753] = 1, + ACTIONS(6841), 1, aux_sym_citation_token1, - [69443] = 1, - ACTIONS(5780), 1, - aux_sym_citation_token1, - [69447] = 1, - ACTIONS(5782), 1, - anon_sym_RBRACE, - [69451] = 1, - ACTIONS(5784), 1, + [23757] = 1, + ACTIONS(6843), 1, anon_sym_LPAREN, - [69455] = 1, - ACTIONS(5712), 1, + [23761] = 1, + ACTIONS(6845), 1, + aux_sym_citation_token1, + [23765] = 1, + ACTIONS(6847), 1, anon_sym_RBRACE, - [69459] = 1, - ACTIONS(5786), 1, + [23769] = 1, + ACTIONS(6849), 1, anon_sym_LPAREN, - [69463] = 1, - ACTIONS(5788), 1, - anon_sym_RBRACK, - [69467] = 1, - ACTIONS(5790), 1, + [23773] = 1, + ACTIONS(6851), 1, aux_sym_citation_token2, - [69471] = 1, - ACTIONS(5792), 1, - anon_sym_RBRACK, - [69475] = 1, - ACTIONS(5794), 1, - anon_sym_LPAREN, - [69479] = 1, - ACTIONS(5796), 1, + [23777] = 1, + ACTIONS(6853), 1, + aux_sym_citation_token2, + [23781] = 1, + ACTIONS(6855), 1, anon_sym_RBRACE, - [69483] = 1, - ACTIONS(5798), 1, - anon_sym_LPAREN, - [69487] = 1, - ACTIONS(5800), 1, - ts_builtin_sym_end, - [69491] = 1, - ACTIONS(5802), 1, + [23785] = 1, + ACTIONS(6857), 1, + anon_sym_RBRACK, + [23789] = 1, + ACTIONS(6859), 1, anon_sym_RBRACE, - [69495] = 1, - ACTIONS(5804), 1, + [23793] = 1, + ACTIONS(6861), 1, + anon_sym_RBRACK, + [23797] = 1, + ACTIONS(6863), 1, + anon_sym_RBRACK, + [23801] = 1, + ACTIONS(6865), 1, aux_sym_citation_token1, - [69499] = 1, - ACTIONS(5806), 1, + [23805] = 1, + ACTIONS(6867), 1, aux_sym_citation_token1, - [69503] = 1, - ACTIONS(5808), 1, + [23809] = 1, + ACTIONS(6869), 1, anon_sym_RBRACE, - [69507] = 1, - ACTIONS(5810), 1, + [23813] = 1, + ACTIONS(6871), 1, anon_sym_LPAREN, - [69511] = 1, - ACTIONS(5812), 1, + [23817] = 1, + ACTIONS(6873), 1, anon_sym_RBRACE, - [69515] = 1, - ACTIONS(5814), 1, + [23821] = 1, + ACTIONS(6875), 1, anon_sym_RBRACE, - [69519] = 1, - ACTIONS(5816), 1, + [23825] = 1, + ACTIONS(6877), 1, aux_sym_citation_token2, - [69523] = 1, - ACTIONS(5818), 1, - aux_sym_citation_token1, - [69527] = 1, - ACTIONS(5820), 1, + [23829] = 1, + ACTIONS(6681), 1, anon_sym_RBRACE, - [69531] = 1, - ACTIONS(5822), 1, - aux_sym_citation_token2, - [69535] = 1, - ACTIONS(3921), 1, + [23833] = 1, + ACTIONS(6879), 1, sym__trigger_error, - [69539] = 1, - ACTIONS(5824), 1, + [23837] = 1, + ACTIONS(6881), 1, aux_sym_citation_token2, - [69543] = 1, - ACTIONS(5826), 1, - sym__trigger_error, - [69547] = 1, - ACTIONS(5828), 1, + [23841] = 1, + ACTIONS(6883), 1, aux_sym_citation_token2, - [69551] = 1, - ACTIONS(5830), 1, + [23845] = 1, + ACTIONS(6885), 1, + anon_sym_RBRACE, + [23849] = 1, + ACTIONS(6887), 1, + sym__trigger_error, + [23853] = 1, + ACTIONS(6889), 1, + anon_sym_RBRACE, + [23857] = 1, + ACTIONS(6891), 1, aux_sym_citation_token1, - [69555] = 1, - ACTIONS(5832), 1, + [23861] = 1, + ACTIONS(6893), 1, aux_sym_citation_token1, - [69559] = 1, - ACTIONS(5834), 1, - aux_sym_citation_token2, - [69563] = 1, - ACTIONS(5836), 1, + [23865] = 1, + ACTIONS(6895), 1, + anon_sym_RBRACK, + [23869] = 1, + ACTIONS(6897), 1, anon_sym_LPAREN, - [69567] = 1, - ACTIONS(5838), 1, - sym__trigger_error, - [69571] = 1, - ACTIONS(5840), 1, - aux_sym_citation_token2, - [69575] = 1, - ACTIONS(5842), 1, - aux_sym_citation_token2, - [69579] = 1, - ACTIONS(5844), 1, + [23873] = 1, + ACTIONS(6899), 1, aux_sym_citation_token1, - [69583] = 1, - ACTIONS(5846), 1, - anon_sym_RBRACE, - [69587] = 1, - ACTIONS(5848), 1, + [23877] = 1, + ACTIONS(6901), 1, aux_sym_citation_token1, - [69591] = 1, - ACTIONS(5850), 1, - anon_sym_RBRACE, - [69595] = 1, - ACTIONS(5852), 1, + [23881] = 1, + ACTIONS(6903), 1, + aux_sym_citation_token2, + [23885] = 1, + ACTIONS(6905), 1, + aux_sym_citation_token1, + [23889] = 1, + ACTIONS(6907), 1, anon_sym_RBRACE, - [69599] = 1, - ACTIONS(5854), 1, + [23893] = 1, + ACTIONS(6685), 1, anon_sym_RBRACE, - [69603] = 1, - ACTIONS(5856), 1, + [23897] = 1, + ACTIONS(6909), 1, anon_sym_LPAREN, - [69607] = 1, - ACTIONS(5858), 1, - aux_sym_citation_token2, - [69611] = 1, - ACTIONS(5860), 1, + [23901] = 1, + ACTIONS(6911), 1, + anon_sym_RBRACE, + [23905] = 1, + ACTIONS(6913), 1, aux_sym_citation_token2, - [69615] = 1, - ACTIONS(5862), 1, + [23909] = 1, + ACTIONS(6915), 1, + sym_shortcode_name, + [23913] = 1, + ACTIONS(6917), 1, + aux_sym_citation_token1, + [23917] = 1, + ACTIONS(6919), 1, aux_sym_citation_token2, - [69619] = 1, - ACTIONS(5864), 1, + [23921] = 1, + ACTIONS(6921), 1, + anon_sym_RBRACK, + [23925] = 1, + ACTIONS(6733), 1, anon_sym_RBRACE, - [69623] = 1, - ACTIONS(5866), 1, + [23929] = 1, + ACTIONS(6923), 1, sym_shortcode_name, - [69627] = 1, - ACTIONS(5868), 1, + [23933] = 1, + ACTIONS(6925), 1, sym_shortcode_name, - [69631] = 1, - ACTIONS(5870), 1, + [23937] = 1, + ACTIONS(6927), 1, sym_shortcode_name, - [69635] = 1, - ACTIONS(5872), 1, + [23941] = 1, + ACTIONS(6929), 1, sym_shortcode_name, - [69639] = 1, - ACTIONS(5874), 1, + [23945] = 1, + ACTIONS(6931), 1, sym_shortcode_name, - [69643] = 1, - ACTIONS(5876), 1, + [23949] = 1, + ACTIONS(6933), 1, sym_shortcode_name, - [69647] = 1, - ACTIONS(5878), 1, + [23953] = 1, + ACTIONS(6935), 1, sym_shortcode_name, - [69651] = 1, - ACTIONS(5880), 1, + [23957] = 1, + ACTIONS(6937), 1, sym_shortcode_name, - [69655] = 1, - ACTIONS(5882), 1, + [23961] = 1, + ACTIONS(6939), 1, sym_shortcode_name, - [69659] = 1, - ACTIONS(5884), 1, + [23965] = 1, + ACTIONS(6941), 1, sym_shortcode_name, - [69663] = 1, - ACTIONS(5886), 1, + [23969] = 1, + ACTIONS(6943), 1, sym_shortcode_name, - [69667] = 1, - ACTIONS(5888), 1, + [23973] = 1, + ACTIONS(6945), 1, sym_shortcode_name, - [69671] = 1, - ACTIONS(5890), 1, + [23977] = 1, + ACTIONS(6947), 1, sym_shortcode_name, - [69675] = 1, - ACTIONS(5892), 1, + [23981] = 1, + ACTIONS(6949), 1, sym_shortcode_name, - [69679] = 1, - ACTIONS(5894), 1, + [23985] = 1, + ACTIONS(6951), 1, sym_shortcode_name, - [69683] = 1, - ACTIONS(5896), 1, + [23989] = 1, + ACTIONS(6953), 1, sym_shortcode_name, - [69687] = 1, - ACTIONS(5898), 1, + [23993] = 1, + ACTIONS(6955), 1, sym_shortcode_name, - [69691] = 1, - ACTIONS(5900), 1, - anon_sym_RBRACE, - [69695] = 1, - ACTIONS(5902), 1, - anon_sym_RBRACK, - [69699] = 1, - ACTIONS(5904), 1, - anon_sym_RBRACE, - [69703] = 1, - ACTIONS(5906), 1, + [23997] = 1, + ACTIONS(6957), 1, + sym_shortcode_name, + [24001] = 1, + ACTIONS(6959), 1, + sym_shortcode_name, + [24005] = 1, + ACTIONS(6961), 1, + aux_sym_citation_token2, + [24009] = 1, + ACTIONS(6963), 1, + aux_sym_citation_token2, + [24013] = 1, + ACTIONS(6965), 1, anon_sym_RBRACE, - [69707] = 1, - ACTIONS(5700), 1, + [24017] = 1, + ACTIONS(6649), 1, anon_sym_RBRACE, - [69711] = 1, - ACTIONS(5908), 1, - anon_sym_EQ, - [69715] = 1, - ACTIONS(5910), 1, + [24021] = 1, + ACTIONS(6967), 1, anon_sym_RBRACE, - [69719] = 1, - ACTIONS(5912), 1, - anon_sym_RBRACK, - [69723] = 1, - ACTIONS(5914), 1, + [24025] = 1, + ACTIONS(6969), 1, anon_sym_RBRACE, - [69727] = 1, - ACTIONS(5916), 1, + [24029] = 1, + ACTIONS(6661), 1, anon_sym_RBRACE, - [69731] = 1, - ACTIONS(5626), 1, + [24033] = 1, + ACTIONS(6971), 1, anon_sym_RBRACE, - [69735] = 1, - ACTIONS(5918), 1, + [24037] = 1, + ACTIONS(6973), 1, aux_sym_citation_token1, - [69739] = 1, - ACTIONS(5920), 1, + [24041] = 1, + ACTIONS(6975), 1, aux_sym_citation_token1, - [69743] = 1, - ACTIONS(5922), 1, - anon_sym_RBRACK, - [69747] = 1, - ACTIONS(5924), 1, - anon_sym_LPAREN, - [69751] = 1, - ACTIONS(5926), 1, + [24045] = 1, + ACTIONS(6977), 1, + aux_sym_citation_token2, + [24049] = 1, + ACTIONS(6979), 1, + aux_sym_citation_token2, + [24053] = 1, + ACTIONS(6721), 1, anon_sym_RBRACE, - [69755] = 1, - ACTIONS(5928), 1, + [24057] = 1, + ACTIONS(6981), 1, aux_sym_citation_token2, - [69759] = 1, - ACTIONS(5930), 1, + [24061] = 1, + ACTIONS(6983), 1, + anon_sym_RBRACE, + [24065] = 1, + ACTIONS(6985), 1, + anon_sym_RBRACK, + [24069] = 1, + ACTIONS(6987), 1, + anon_sym_EQ, + [24073] = 1, + ACTIONS(6741), 1, + anon_sym_RBRACE, + [24077] = 1, + ACTIONS(6989), 1, + anon_sym_RBRACE, + [24081] = 1, + ACTIONS(6991), 1, anon_sym_RBRACE, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(431)] = 0, - [SMALL_STATE(432)] = 74, - [SMALL_STATE(433)] = 148, - [SMALL_STATE(434)] = 222, - [SMALL_STATE(435)] = 296, - [SMALL_STATE(436)] = 370, - [SMALL_STATE(437)] = 444, - [SMALL_STATE(438)] = 518, - [SMALL_STATE(439)] = 592, - [SMALL_STATE(440)] = 666, - [SMALL_STATE(441)] = 740, - [SMALL_STATE(442)] = 814, - [SMALL_STATE(443)] = 888, - [SMALL_STATE(444)] = 962, - [SMALL_STATE(445)] = 1036, - [SMALL_STATE(446)] = 1110, - [SMALL_STATE(447)] = 1184, - [SMALL_STATE(448)] = 1258, - [SMALL_STATE(449)] = 1332, - [SMALL_STATE(450)] = 1401, - [SMALL_STATE(451)] = 1470, - [SMALL_STATE(452)] = 1539, - [SMALL_STATE(453)] = 1608, - [SMALL_STATE(454)] = 1677, - [SMALL_STATE(455)] = 1746, - [SMALL_STATE(456)] = 1817, - [SMALL_STATE(457)] = 1886, - [SMALL_STATE(458)] = 1955, - [SMALL_STATE(459)] = 2024, - [SMALL_STATE(460)] = 2093, - [SMALL_STATE(461)] = 2162, - [SMALL_STATE(462)] = 2231, - [SMALL_STATE(463)] = 2302, - [SMALL_STATE(464)] = 2371, - [SMALL_STATE(465)] = 2440, - [SMALL_STATE(466)] = 2509, - [SMALL_STATE(467)] = 2578, - [SMALL_STATE(468)] = 2649, - [SMALL_STATE(469)] = 2718, - [SMALL_STATE(470)] = 2787, - [SMALL_STATE(471)] = 2856, - [SMALL_STATE(472)] = 2925, - [SMALL_STATE(473)] = 2994, - [SMALL_STATE(474)] = 3063, - [SMALL_STATE(475)] = 3134, - [SMALL_STATE(476)] = 3203, - [SMALL_STATE(477)] = 3272, - [SMALL_STATE(478)] = 3341, - [SMALL_STATE(479)] = 3412, - [SMALL_STATE(480)] = 3481, - [SMALL_STATE(481)] = 3550, - [SMALL_STATE(482)] = 3621, - [SMALL_STATE(483)] = 3690, - [SMALL_STATE(484)] = 3759, - [SMALL_STATE(485)] = 3828, - [SMALL_STATE(486)] = 3897, - [SMALL_STATE(487)] = 3966, - [SMALL_STATE(488)] = 4035, - [SMALL_STATE(489)] = 4104, - [SMALL_STATE(490)] = 4173, - [SMALL_STATE(491)] = 4242, - [SMALL_STATE(492)] = 4311, - [SMALL_STATE(493)] = 4380, - [SMALL_STATE(494)] = 4449, - [SMALL_STATE(495)] = 4518, - [SMALL_STATE(496)] = 4587, - [SMALL_STATE(497)] = 4656, - [SMALL_STATE(498)] = 4725, - [SMALL_STATE(499)] = 4794, - [SMALL_STATE(500)] = 4863, - [SMALL_STATE(501)] = 4932, - [SMALL_STATE(502)] = 5001, - [SMALL_STATE(503)] = 5070, - [SMALL_STATE(504)] = 5139, - [SMALL_STATE(505)] = 5208, - [SMALL_STATE(506)] = 5277, - [SMALL_STATE(507)] = 5346, - [SMALL_STATE(508)] = 5415, - [SMALL_STATE(509)] = 5486, - [SMALL_STATE(510)] = 5555, - [SMALL_STATE(511)] = 5624, - [SMALL_STATE(512)] = 5693, - [SMALL_STATE(513)] = 5762, - [SMALL_STATE(514)] = 5833, - [SMALL_STATE(515)] = 5904, - [SMALL_STATE(516)] = 5973, - [SMALL_STATE(517)] = 6042, - [SMALL_STATE(518)] = 6111, - [SMALL_STATE(519)] = 6180, - [SMALL_STATE(520)] = 6249, - [SMALL_STATE(521)] = 6318, - [SMALL_STATE(522)] = 6384, - [SMALL_STATE(523)] = 6450, - [SMALL_STATE(524)] = 6516, - [SMALL_STATE(525)] = 6582, - [SMALL_STATE(526)] = 6648, - [SMALL_STATE(527)] = 6714, - [SMALL_STATE(528)] = 6780, - [SMALL_STATE(529)] = 6846, - [SMALL_STATE(530)] = 6912, - [SMALL_STATE(531)] = 6978, - [SMALL_STATE(532)] = 7044, - [SMALL_STATE(533)] = 7110, - [SMALL_STATE(534)] = 7176, - [SMALL_STATE(535)] = 7242, - [SMALL_STATE(536)] = 7308, - [SMALL_STATE(537)] = 7374, - [SMALL_STATE(538)] = 7440, - [SMALL_STATE(539)] = 7506, - [SMALL_STATE(540)] = 7572, - [SMALL_STATE(541)] = 7638, - [SMALL_STATE(542)] = 7704, - [SMALL_STATE(543)] = 7770, - [SMALL_STATE(544)] = 7836, - [SMALL_STATE(545)] = 7902, - [SMALL_STATE(546)] = 7968, - [SMALL_STATE(547)] = 8034, - [SMALL_STATE(548)] = 8100, - [SMALL_STATE(549)] = 8166, - [SMALL_STATE(550)] = 8232, - [SMALL_STATE(551)] = 8298, - [SMALL_STATE(552)] = 8364, - [SMALL_STATE(553)] = 8430, - [SMALL_STATE(554)] = 8496, - [SMALL_STATE(555)] = 8562, - [SMALL_STATE(556)] = 8628, - [SMALL_STATE(557)] = 8694, - [SMALL_STATE(558)] = 8760, - [SMALL_STATE(559)] = 8826, - [SMALL_STATE(560)] = 8892, - [SMALL_STATE(561)] = 8958, - [SMALL_STATE(562)] = 9024, - [SMALL_STATE(563)] = 9090, - [SMALL_STATE(564)] = 9156, - [SMALL_STATE(565)] = 9222, - [SMALL_STATE(566)] = 9288, - [SMALL_STATE(567)] = 9354, - [SMALL_STATE(568)] = 9420, - [SMALL_STATE(569)] = 9486, - [SMALL_STATE(570)] = 9552, - [SMALL_STATE(571)] = 9618, - [SMALL_STATE(572)] = 9684, - [SMALL_STATE(573)] = 9750, - [SMALL_STATE(574)] = 9816, - [SMALL_STATE(575)] = 9882, - [SMALL_STATE(576)] = 9948, - [SMALL_STATE(577)] = 10014, - [SMALL_STATE(578)] = 10080, - [SMALL_STATE(579)] = 10146, - [SMALL_STATE(580)] = 10212, - [SMALL_STATE(581)] = 10278, - [SMALL_STATE(582)] = 10344, - [SMALL_STATE(583)] = 10410, - [SMALL_STATE(584)] = 10476, - [SMALL_STATE(585)] = 10542, - [SMALL_STATE(586)] = 10608, - [SMALL_STATE(587)] = 10674, - [SMALL_STATE(588)] = 10740, - [SMALL_STATE(589)] = 10806, - [SMALL_STATE(590)] = 10872, - [SMALL_STATE(591)] = 10938, - [SMALL_STATE(592)] = 11004, - [SMALL_STATE(593)] = 11070, - [SMALL_STATE(594)] = 11136, - [SMALL_STATE(595)] = 11202, - [SMALL_STATE(596)] = 11268, - [SMALL_STATE(597)] = 11334, - [SMALL_STATE(598)] = 11400, - [SMALL_STATE(599)] = 11466, - [SMALL_STATE(600)] = 11532, - [SMALL_STATE(601)] = 11598, - [SMALL_STATE(602)] = 11664, - [SMALL_STATE(603)] = 11730, - [SMALL_STATE(604)] = 11796, - [SMALL_STATE(605)] = 11862, - [SMALL_STATE(606)] = 11928, - [SMALL_STATE(607)] = 11994, - [SMALL_STATE(608)] = 12060, - [SMALL_STATE(609)] = 12126, - [SMALL_STATE(610)] = 12192, - [SMALL_STATE(611)] = 12258, - [SMALL_STATE(612)] = 12324, - [SMALL_STATE(613)] = 12390, - [SMALL_STATE(614)] = 12456, - [SMALL_STATE(615)] = 12522, - [SMALL_STATE(616)] = 12588, - [SMALL_STATE(617)] = 12654, - [SMALL_STATE(618)] = 12720, - [SMALL_STATE(619)] = 12786, - [SMALL_STATE(620)] = 12852, - [SMALL_STATE(621)] = 12918, - [SMALL_STATE(622)] = 12984, - [SMALL_STATE(623)] = 13050, - [SMALL_STATE(624)] = 13116, - [SMALL_STATE(625)] = 13182, - [SMALL_STATE(626)] = 13248, - [SMALL_STATE(627)] = 13314, - [SMALL_STATE(628)] = 13380, - [SMALL_STATE(629)] = 13446, - [SMALL_STATE(630)] = 13512, - [SMALL_STATE(631)] = 13578, - [SMALL_STATE(632)] = 13644, - [SMALL_STATE(633)] = 13710, - [SMALL_STATE(634)] = 13776, - [SMALL_STATE(635)] = 13842, - [SMALL_STATE(636)] = 13908, - [SMALL_STATE(637)] = 13974, - [SMALL_STATE(638)] = 14040, - [SMALL_STATE(639)] = 14106, - [SMALL_STATE(640)] = 14172, - [SMALL_STATE(641)] = 14238, - [SMALL_STATE(642)] = 14304, - [SMALL_STATE(643)] = 14370, - [SMALL_STATE(644)] = 14436, - [SMALL_STATE(645)] = 14502, - [SMALL_STATE(646)] = 14568, - [SMALL_STATE(647)] = 14634, - [SMALL_STATE(648)] = 14700, - [SMALL_STATE(649)] = 14766, - [SMALL_STATE(650)] = 14832, - [SMALL_STATE(651)] = 14898, - [SMALL_STATE(652)] = 14964, - [SMALL_STATE(653)] = 15030, - [SMALL_STATE(654)] = 15096, - [SMALL_STATE(655)] = 15162, - [SMALL_STATE(656)] = 15228, - [SMALL_STATE(657)] = 15294, - [SMALL_STATE(658)] = 15360, - [SMALL_STATE(659)] = 15426, - [SMALL_STATE(660)] = 15492, - [SMALL_STATE(661)] = 15558, - [SMALL_STATE(662)] = 15624, - [SMALL_STATE(663)] = 15690, - [SMALL_STATE(664)] = 15756, - [SMALL_STATE(665)] = 15822, - [SMALL_STATE(666)] = 15888, - [SMALL_STATE(667)] = 15954, - [SMALL_STATE(668)] = 16020, - [SMALL_STATE(669)] = 16086, - [SMALL_STATE(670)] = 16152, - [SMALL_STATE(671)] = 16218, - [SMALL_STATE(672)] = 16284, - [SMALL_STATE(673)] = 16350, - [SMALL_STATE(674)] = 16416, - [SMALL_STATE(675)] = 16482, - [SMALL_STATE(676)] = 16548, - [SMALL_STATE(677)] = 16614, - [SMALL_STATE(678)] = 16680, - [SMALL_STATE(679)] = 16746, - [SMALL_STATE(680)] = 16812, - [SMALL_STATE(681)] = 16878, - [SMALL_STATE(682)] = 16944, - [SMALL_STATE(683)] = 17010, - [SMALL_STATE(684)] = 17076, - [SMALL_STATE(685)] = 17142, - [SMALL_STATE(686)] = 17208, - [SMALL_STATE(687)] = 17274, - [SMALL_STATE(688)] = 17340, - [SMALL_STATE(689)] = 17406, - [SMALL_STATE(690)] = 17472, - [SMALL_STATE(691)] = 17538, - [SMALL_STATE(692)] = 17604, - [SMALL_STATE(693)] = 17670, - [SMALL_STATE(694)] = 17736, - [SMALL_STATE(695)] = 17802, - [SMALL_STATE(696)] = 17868, - [SMALL_STATE(697)] = 17934, - [SMALL_STATE(698)] = 18000, - [SMALL_STATE(699)] = 18066, - [SMALL_STATE(700)] = 18132, - [SMALL_STATE(701)] = 18198, - [SMALL_STATE(702)] = 18264, - [SMALL_STATE(703)] = 18330, - [SMALL_STATE(704)] = 18396, - [SMALL_STATE(705)] = 18462, - [SMALL_STATE(706)] = 18528, - [SMALL_STATE(707)] = 18594, - [SMALL_STATE(708)] = 18660, - [SMALL_STATE(709)] = 18726, - [SMALL_STATE(710)] = 18792, - [SMALL_STATE(711)] = 18858, - [SMALL_STATE(712)] = 18924, - [SMALL_STATE(713)] = 18990, - [SMALL_STATE(714)] = 19056, - [SMALL_STATE(715)] = 19122, - [SMALL_STATE(716)] = 19188, - [SMALL_STATE(717)] = 19254, - [SMALL_STATE(718)] = 19320, - [SMALL_STATE(719)] = 19386, - [SMALL_STATE(720)] = 19452, - [SMALL_STATE(721)] = 19518, - [SMALL_STATE(722)] = 19584, - [SMALL_STATE(723)] = 19650, - [SMALL_STATE(724)] = 19716, - [SMALL_STATE(725)] = 19782, - [SMALL_STATE(726)] = 19848, - [SMALL_STATE(727)] = 19914, - [SMALL_STATE(728)] = 19980, - [SMALL_STATE(729)] = 20046, - [SMALL_STATE(730)] = 20112, - [SMALL_STATE(731)] = 20178, - [SMALL_STATE(732)] = 20244, - [SMALL_STATE(733)] = 20310, - [SMALL_STATE(734)] = 20376, - [SMALL_STATE(735)] = 20442, - [SMALL_STATE(736)] = 20508, - [SMALL_STATE(737)] = 20574, - [SMALL_STATE(738)] = 20640, - [SMALL_STATE(739)] = 20706, - [SMALL_STATE(740)] = 20772, - [SMALL_STATE(741)] = 20838, - [SMALL_STATE(742)] = 20904, - [SMALL_STATE(743)] = 20970, - [SMALL_STATE(744)] = 21036, - [SMALL_STATE(745)] = 21102, - [SMALL_STATE(746)] = 21168, - [SMALL_STATE(747)] = 21234, - [SMALL_STATE(748)] = 21300, - [SMALL_STATE(749)] = 21366, - [SMALL_STATE(750)] = 21432, - [SMALL_STATE(751)] = 21498, - [SMALL_STATE(752)] = 21564, - [SMALL_STATE(753)] = 21630, - [SMALL_STATE(754)] = 21696, - [SMALL_STATE(755)] = 21762, - [SMALL_STATE(756)] = 21828, - [SMALL_STATE(757)] = 21894, - [SMALL_STATE(758)] = 21960, - [SMALL_STATE(759)] = 22026, - [SMALL_STATE(760)] = 22092, - [SMALL_STATE(761)] = 22158, - [SMALL_STATE(762)] = 22224, - [SMALL_STATE(763)] = 22290, - [SMALL_STATE(764)] = 22356, - [SMALL_STATE(765)] = 22422, - [SMALL_STATE(766)] = 22488, - [SMALL_STATE(767)] = 22554, - [SMALL_STATE(768)] = 22620, - [SMALL_STATE(769)] = 22688, - [SMALL_STATE(770)] = 22754, - [SMALL_STATE(771)] = 22820, - [SMALL_STATE(772)] = 22886, - [SMALL_STATE(773)] = 22952, - [SMALL_STATE(774)] = 23018, - [SMALL_STATE(775)] = 23084, - [SMALL_STATE(776)] = 23150, - [SMALL_STATE(777)] = 23216, - [SMALL_STATE(778)] = 23282, - [SMALL_STATE(779)] = 23348, - [SMALL_STATE(780)] = 23414, - [SMALL_STATE(781)] = 23480, - [SMALL_STATE(782)] = 23546, - [SMALL_STATE(783)] = 23612, - [SMALL_STATE(784)] = 23678, - [SMALL_STATE(785)] = 23744, - [SMALL_STATE(786)] = 23810, - [SMALL_STATE(787)] = 23876, - [SMALL_STATE(788)] = 23942, - [SMALL_STATE(789)] = 24008, - [SMALL_STATE(790)] = 24074, - [SMALL_STATE(791)] = 24140, - [SMALL_STATE(792)] = 24206, - [SMALL_STATE(793)] = 24272, - [SMALL_STATE(794)] = 24338, - [SMALL_STATE(795)] = 24404, - [SMALL_STATE(796)] = 24470, - [SMALL_STATE(797)] = 24536, - [SMALL_STATE(798)] = 24602, - [SMALL_STATE(799)] = 24668, - [SMALL_STATE(800)] = 24734, - [SMALL_STATE(801)] = 24800, - [SMALL_STATE(802)] = 24866, - [SMALL_STATE(803)] = 24932, - [SMALL_STATE(804)] = 24998, - [SMALL_STATE(805)] = 25064, - [SMALL_STATE(806)] = 25130, - [SMALL_STATE(807)] = 25196, - [SMALL_STATE(808)] = 25262, - [SMALL_STATE(809)] = 25328, - [SMALL_STATE(810)] = 25394, - [SMALL_STATE(811)] = 25460, - [SMALL_STATE(812)] = 25526, - [SMALL_STATE(813)] = 25592, - [SMALL_STATE(814)] = 25658, - [SMALL_STATE(815)] = 25724, - [SMALL_STATE(816)] = 25790, - [SMALL_STATE(817)] = 25856, - [SMALL_STATE(818)] = 25922, - [SMALL_STATE(819)] = 25988, - [SMALL_STATE(820)] = 26054, - [SMALL_STATE(821)] = 26120, - [SMALL_STATE(822)] = 26186, - [SMALL_STATE(823)] = 26252, - [SMALL_STATE(824)] = 26318, - [SMALL_STATE(825)] = 26384, - [SMALL_STATE(826)] = 26450, - [SMALL_STATE(827)] = 26516, - [SMALL_STATE(828)] = 26582, - [SMALL_STATE(829)] = 26648, - [SMALL_STATE(830)] = 26714, - [SMALL_STATE(831)] = 26780, - [SMALL_STATE(832)] = 26846, - [SMALL_STATE(833)] = 26912, - [SMALL_STATE(834)] = 26978, - [SMALL_STATE(835)] = 27044, - [SMALL_STATE(836)] = 27110, - [SMALL_STATE(837)] = 27176, - [SMALL_STATE(838)] = 27242, - [SMALL_STATE(839)] = 27308, - [SMALL_STATE(840)] = 27374, - [SMALL_STATE(841)] = 27440, - [SMALL_STATE(842)] = 27506, - [SMALL_STATE(843)] = 27572, - [SMALL_STATE(844)] = 27638, - [SMALL_STATE(845)] = 27704, - [SMALL_STATE(846)] = 27770, - [SMALL_STATE(847)] = 27836, - [SMALL_STATE(848)] = 27902, - [SMALL_STATE(849)] = 27968, - [SMALL_STATE(850)] = 28034, - [SMALL_STATE(851)] = 28100, - [SMALL_STATE(852)] = 28166, - [SMALL_STATE(853)] = 28232, - [SMALL_STATE(854)] = 28298, - [SMALL_STATE(855)] = 28364, - [SMALL_STATE(856)] = 28430, - [SMALL_STATE(857)] = 28496, - [SMALL_STATE(858)] = 28562, - [SMALL_STATE(859)] = 28628, - [SMALL_STATE(860)] = 28694, - [SMALL_STATE(861)] = 28760, - [SMALL_STATE(862)] = 28826, - [SMALL_STATE(863)] = 28892, - [SMALL_STATE(864)] = 28958, - [SMALL_STATE(865)] = 29024, - [SMALL_STATE(866)] = 29090, - [SMALL_STATE(867)] = 29156, - [SMALL_STATE(868)] = 29222, - [SMALL_STATE(869)] = 29288, - [SMALL_STATE(870)] = 29354, - [SMALL_STATE(871)] = 29420, - [SMALL_STATE(872)] = 29486, - [SMALL_STATE(873)] = 29552, - [SMALL_STATE(874)] = 29618, - [SMALL_STATE(875)] = 29684, - [SMALL_STATE(876)] = 29750, - [SMALL_STATE(877)] = 29816, - [SMALL_STATE(878)] = 29882, - [SMALL_STATE(879)] = 29948, - [SMALL_STATE(880)] = 30014, - [SMALL_STATE(881)] = 30080, - [SMALL_STATE(882)] = 30146, - [SMALL_STATE(883)] = 30212, - [SMALL_STATE(884)] = 30278, - [SMALL_STATE(885)] = 30344, - [SMALL_STATE(886)] = 30410, - [SMALL_STATE(887)] = 30476, - [SMALL_STATE(888)] = 30542, - [SMALL_STATE(889)] = 30608, - [SMALL_STATE(890)] = 30674, - [SMALL_STATE(891)] = 30740, - [SMALL_STATE(892)] = 30806, - [SMALL_STATE(893)] = 30872, - [SMALL_STATE(894)] = 30938, - [SMALL_STATE(895)] = 31004, - [SMALL_STATE(896)] = 31070, - [SMALL_STATE(897)] = 31136, - [SMALL_STATE(898)] = 31202, - [SMALL_STATE(899)] = 31268, - [SMALL_STATE(900)] = 31334, - [SMALL_STATE(901)] = 31400, - [SMALL_STATE(902)] = 31466, - [SMALL_STATE(903)] = 31532, - [SMALL_STATE(904)] = 31598, - [SMALL_STATE(905)] = 31664, - [SMALL_STATE(906)] = 31730, - [SMALL_STATE(907)] = 31796, - [SMALL_STATE(908)] = 31862, - [SMALL_STATE(909)] = 31928, - [SMALL_STATE(910)] = 31994, - [SMALL_STATE(911)] = 32060, - [SMALL_STATE(912)] = 32126, - [SMALL_STATE(913)] = 32192, - [SMALL_STATE(914)] = 32258, - [SMALL_STATE(915)] = 32324, - [SMALL_STATE(916)] = 32390, - [SMALL_STATE(917)] = 32456, - [SMALL_STATE(918)] = 32522, - [SMALL_STATE(919)] = 32588, - [SMALL_STATE(920)] = 32654, - [SMALL_STATE(921)] = 32720, - [SMALL_STATE(922)] = 32786, - [SMALL_STATE(923)] = 32852, - [SMALL_STATE(924)] = 32918, - [SMALL_STATE(925)] = 32984, - [SMALL_STATE(926)] = 33050, - [SMALL_STATE(927)] = 33116, - [SMALL_STATE(928)] = 33182, - [SMALL_STATE(929)] = 33248, - [SMALL_STATE(930)] = 33314, - [SMALL_STATE(931)] = 33380, - [SMALL_STATE(932)] = 33446, - [SMALL_STATE(933)] = 33512, - [SMALL_STATE(934)] = 33578, - [SMALL_STATE(935)] = 33644, - [SMALL_STATE(936)] = 33710, - [SMALL_STATE(937)] = 33776, - [SMALL_STATE(938)] = 33842, - [SMALL_STATE(939)] = 33908, - [SMALL_STATE(940)] = 33974, - [SMALL_STATE(941)] = 34040, - [SMALL_STATE(942)] = 34106, - [SMALL_STATE(943)] = 34172, - [SMALL_STATE(944)] = 34238, - [SMALL_STATE(945)] = 34304, - [SMALL_STATE(946)] = 34370, - [SMALL_STATE(947)] = 34436, - [SMALL_STATE(948)] = 34502, - [SMALL_STATE(949)] = 34568, - [SMALL_STATE(950)] = 34634, - [SMALL_STATE(951)] = 34700, - [SMALL_STATE(952)] = 34766, - [SMALL_STATE(953)] = 34832, - [SMALL_STATE(954)] = 34898, - [SMALL_STATE(955)] = 34964, - [SMALL_STATE(956)] = 35030, - [SMALL_STATE(957)] = 35096, - [SMALL_STATE(958)] = 35162, - [SMALL_STATE(959)] = 35228, - [SMALL_STATE(960)] = 35294, - [SMALL_STATE(961)] = 35360, - [SMALL_STATE(962)] = 35426, - [SMALL_STATE(963)] = 35492, - [SMALL_STATE(964)] = 35558, - [SMALL_STATE(965)] = 35624, - [SMALL_STATE(966)] = 35690, - [SMALL_STATE(967)] = 35756, - [SMALL_STATE(968)] = 35822, - [SMALL_STATE(969)] = 35888, - [SMALL_STATE(970)] = 35954, - [SMALL_STATE(971)] = 36020, - [SMALL_STATE(972)] = 36086, - [SMALL_STATE(973)] = 36152, - [SMALL_STATE(974)] = 36218, - [SMALL_STATE(975)] = 36284, - [SMALL_STATE(976)] = 36350, - [SMALL_STATE(977)] = 36416, - [SMALL_STATE(978)] = 36482, - [SMALL_STATE(979)] = 36548, - [SMALL_STATE(980)] = 36616, - [SMALL_STATE(981)] = 36682, - [SMALL_STATE(982)] = 36750, - [SMALL_STATE(983)] = 36816, - [SMALL_STATE(984)] = 36882, - [SMALL_STATE(985)] = 36948, - [SMALL_STATE(986)] = 37014, - [SMALL_STATE(987)] = 37080, - [SMALL_STATE(988)] = 37146, - [SMALL_STATE(989)] = 37212, - [SMALL_STATE(990)] = 37278, - [SMALL_STATE(991)] = 37344, - [SMALL_STATE(992)] = 37410, - [SMALL_STATE(993)] = 37476, - [SMALL_STATE(994)] = 37542, - [SMALL_STATE(995)] = 37608, - [SMALL_STATE(996)] = 37674, - [SMALL_STATE(997)] = 37740, - [SMALL_STATE(998)] = 37806, - [SMALL_STATE(999)] = 37874, - [SMALL_STATE(1000)] = 37940, - [SMALL_STATE(1001)] = 38008, - [SMALL_STATE(1002)] = 38074, - [SMALL_STATE(1003)] = 38140, - [SMALL_STATE(1004)] = 38206, - [SMALL_STATE(1005)] = 38272, - [SMALL_STATE(1006)] = 38338, - [SMALL_STATE(1007)] = 38404, - [SMALL_STATE(1008)] = 38470, - [SMALL_STATE(1009)] = 38536, - [SMALL_STATE(1010)] = 38602, - [SMALL_STATE(1011)] = 38668, - [SMALL_STATE(1012)] = 38734, - [SMALL_STATE(1013)] = 38800, - [SMALL_STATE(1014)] = 38866, - [SMALL_STATE(1015)] = 38932, - [SMALL_STATE(1016)] = 38998, - [SMALL_STATE(1017)] = 39064, - [SMALL_STATE(1018)] = 39130, - [SMALL_STATE(1019)] = 39196, - [SMALL_STATE(1020)] = 39262, - [SMALL_STATE(1021)] = 39328, - [SMALL_STATE(1022)] = 39396, - [SMALL_STATE(1023)] = 39462, - [SMALL_STATE(1024)] = 39530, - [SMALL_STATE(1025)] = 39596, - [SMALL_STATE(1026)] = 39662, - [SMALL_STATE(1027)] = 39728, - [SMALL_STATE(1028)] = 39794, - [SMALL_STATE(1029)] = 39860, - [SMALL_STATE(1030)] = 39926, - [SMALL_STATE(1031)] = 39992, - [SMALL_STATE(1032)] = 40058, - [SMALL_STATE(1033)] = 40124, - [SMALL_STATE(1034)] = 40190, - [SMALL_STATE(1035)] = 40256, - [SMALL_STATE(1036)] = 40322, - [SMALL_STATE(1037)] = 40390, - [SMALL_STATE(1038)] = 40458, - [SMALL_STATE(1039)] = 40524, - [SMALL_STATE(1040)] = 40590, - [SMALL_STATE(1041)] = 40656, - [SMALL_STATE(1042)] = 40722, - [SMALL_STATE(1043)] = 40788, - [SMALL_STATE(1044)] = 40854, - [SMALL_STATE(1045)] = 40920, - [SMALL_STATE(1046)] = 40986, - [SMALL_STATE(1047)] = 41052, - [SMALL_STATE(1048)] = 41118, - [SMALL_STATE(1049)] = 41184, - [SMALL_STATE(1050)] = 41250, - [SMALL_STATE(1051)] = 41316, - [SMALL_STATE(1052)] = 41382, - [SMALL_STATE(1053)] = 41448, - [SMALL_STATE(1054)] = 41514, - [SMALL_STATE(1055)] = 41580, - [SMALL_STATE(1056)] = 41648, - [SMALL_STATE(1057)] = 41714, - [SMALL_STATE(1058)] = 41782, - [SMALL_STATE(1059)] = 41848, - [SMALL_STATE(1060)] = 41914, - [SMALL_STATE(1061)] = 41980, - [SMALL_STATE(1062)] = 42046, - [SMALL_STATE(1063)] = 42112, - [SMALL_STATE(1064)] = 42178, - [SMALL_STATE(1065)] = 42244, - [SMALL_STATE(1066)] = 42310, - [SMALL_STATE(1067)] = 42376, - [SMALL_STATE(1068)] = 42442, - [SMALL_STATE(1069)] = 42508, - [SMALL_STATE(1070)] = 42574, - [SMALL_STATE(1071)] = 42640, - [SMALL_STATE(1072)] = 42706, - [SMALL_STATE(1073)] = 42772, - [SMALL_STATE(1074)] = 42838, - [SMALL_STATE(1075)] = 42904, - [SMALL_STATE(1076)] = 42972, - [SMALL_STATE(1077)] = 43038, - [SMALL_STATE(1078)] = 43106, - [SMALL_STATE(1079)] = 43172, - [SMALL_STATE(1080)] = 43238, - [SMALL_STATE(1081)] = 43304, - [SMALL_STATE(1082)] = 43370, - [SMALL_STATE(1083)] = 43436, - [SMALL_STATE(1084)] = 43502, - [SMALL_STATE(1085)] = 43568, - [SMALL_STATE(1086)] = 43634, - [SMALL_STATE(1087)] = 43700, - [SMALL_STATE(1088)] = 43766, - [SMALL_STATE(1089)] = 43832, - [SMALL_STATE(1090)] = 43898, - [SMALL_STATE(1091)] = 43964, - [SMALL_STATE(1092)] = 44030, - [SMALL_STATE(1093)] = 44096, - [SMALL_STATE(1094)] = 44164, - [SMALL_STATE(1095)] = 44230, - [SMALL_STATE(1096)] = 44298, - [SMALL_STATE(1097)] = 44364, - [SMALL_STATE(1098)] = 44430, - [SMALL_STATE(1099)] = 44496, - [SMALL_STATE(1100)] = 44562, - [SMALL_STATE(1101)] = 44628, - [SMALL_STATE(1102)] = 44694, - [SMALL_STATE(1103)] = 44760, - [SMALL_STATE(1104)] = 44826, - [SMALL_STATE(1105)] = 44892, - [SMALL_STATE(1106)] = 44958, - [SMALL_STATE(1107)] = 45024, - [SMALL_STATE(1108)] = 45090, - [SMALL_STATE(1109)] = 45156, - [SMALL_STATE(1110)] = 45222, - [SMALL_STATE(1111)] = 45288, - [SMALL_STATE(1112)] = 45356, - [SMALL_STATE(1113)] = 45422, - [SMALL_STATE(1114)] = 45490, - [SMALL_STATE(1115)] = 45556, - [SMALL_STATE(1116)] = 45622, - [SMALL_STATE(1117)] = 45688, - [SMALL_STATE(1118)] = 45754, - [SMALL_STATE(1119)] = 45820, - [SMALL_STATE(1120)] = 45886, - [SMALL_STATE(1121)] = 45952, - [SMALL_STATE(1122)] = 46018, - [SMALL_STATE(1123)] = 46084, - [SMALL_STATE(1124)] = 46150, - [SMALL_STATE(1125)] = 46216, - [SMALL_STATE(1126)] = 46282, - [SMALL_STATE(1127)] = 46348, - [SMALL_STATE(1128)] = 46414, - [SMALL_STATE(1129)] = 46480, - [SMALL_STATE(1130)] = 46546, - [SMALL_STATE(1131)] = 46612, - [SMALL_STATE(1132)] = 46680, - [SMALL_STATE(1133)] = 46746, - [SMALL_STATE(1134)] = 46812, - [SMALL_STATE(1135)] = 46878, - [SMALL_STATE(1136)] = 46944, - [SMALL_STATE(1137)] = 47010, - [SMALL_STATE(1138)] = 47076, - [SMALL_STATE(1139)] = 47142, - [SMALL_STATE(1140)] = 47208, - [SMALL_STATE(1141)] = 47274, - [SMALL_STATE(1142)] = 47340, - [SMALL_STATE(1143)] = 47406, - [SMALL_STATE(1144)] = 47472, - [SMALL_STATE(1145)] = 47537, - [SMALL_STATE(1146)] = 47602, - [SMALL_STATE(1147)] = 47667, - [SMALL_STATE(1148)] = 47734, - [SMALL_STATE(1149)] = 47799, - [SMALL_STATE(1150)] = 47866, - [SMALL_STATE(1151)] = 47931, - [SMALL_STATE(1152)] = 47998, - [SMALL_STATE(1153)] = 48063, - [SMALL_STATE(1154)] = 48128, - [SMALL_STATE(1155)] = 48193, - [SMALL_STATE(1156)] = 48258, - [SMALL_STATE(1157)] = 48323, - [SMALL_STATE(1158)] = 48388, - [SMALL_STATE(1159)] = 48455, - [SMALL_STATE(1160)] = 48520, - [SMALL_STATE(1161)] = 48585, - [SMALL_STATE(1162)] = 48650, - [SMALL_STATE(1163)] = 48715, - [SMALL_STATE(1164)] = 48780, - [SMALL_STATE(1165)] = 48845, - [SMALL_STATE(1166)] = 48912, - [SMALL_STATE(1167)] = 48979, - [SMALL_STATE(1168)] = 49044, - [SMALL_STATE(1169)] = 49109, - [SMALL_STATE(1170)] = 49174, - [SMALL_STATE(1171)] = 49239, - [SMALL_STATE(1172)] = 49304, - [SMALL_STATE(1173)] = 49385, - [SMALL_STATE(1174)] = 49466, - [SMALL_STATE(1175)] = 49547, - [SMALL_STATE(1176)] = 49628, - [SMALL_STATE(1177)] = 49709, - [SMALL_STATE(1178)] = 49790, - [SMALL_STATE(1179)] = 49871, - [SMALL_STATE(1180)] = 49952, - [SMALL_STATE(1181)] = 50033, - [SMALL_STATE(1182)] = 50114, - [SMALL_STATE(1183)] = 50195, - [SMALL_STATE(1184)] = 50276, - [SMALL_STATE(1185)] = 50357, - [SMALL_STATE(1186)] = 50438, - [SMALL_STATE(1187)] = 50519, - [SMALL_STATE(1188)] = 50600, - [SMALL_STATE(1189)] = 50681, - [SMALL_STATE(1190)] = 50762, - [SMALL_STATE(1191)] = 50841, - [SMALL_STATE(1192)] = 50922, - [SMALL_STATE(1193)] = 51003, - [SMALL_STATE(1194)] = 51084, - [SMALL_STATE(1195)] = 51165, - [SMALL_STATE(1196)] = 51246, - [SMALL_STATE(1197)] = 51327, - [SMALL_STATE(1198)] = 51408, - [SMALL_STATE(1199)] = 51489, - [SMALL_STATE(1200)] = 51570, - [SMALL_STATE(1201)] = 51649, - [SMALL_STATE(1202)] = 51730, - [SMALL_STATE(1203)] = 51811, - [SMALL_STATE(1204)] = 51892, - [SMALL_STATE(1205)] = 51973, - [SMALL_STATE(1206)] = 52054, - [SMALL_STATE(1207)] = 52135, - [SMALL_STATE(1208)] = 52216, - [SMALL_STATE(1209)] = 52297, - [SMALL_STATE(1210)] = 52378, - [SMALL_STATE(1211)] = 52452, - [SMALL_STATE(1212)] = 52518, - [SMALL_STATE(1213)] = 52584, - [SMALL_STATE(1214)] = 52650, - [SMALL_STATE(1215)] = 52716, - [SMALL_STATE(1216)] = 52782, - [SMALL_STATE(1217)] = 52848, - [SMALL_STATE(1218)] = 52914, - [SMALL_STATE(1219)] = 52978, - [SMALL_STATE(1220)] = 53044, - [SMALL_STATE(1221)] = 53109, - [SMALL_STATE(1222)] = 53170, - [SMALL_STATE(1223)] = 53235, - [SMALL_STATE(1224)] = 53296, - [SMALL_STATE(1225)] = 53357, - [SMALL_STATE(1226)] = 53418, - [SMALL_STATE(1227)] = 53479, - [SMALL_STATE(1228)] = 53544, - [SMALL_STATE(1229)] = 53604, - [SMALL_STATE(1230)] = 53664, - [SMALL_STATE(1231)] = 53724, - [SMALL_STATE(1232)] = 53784, - [SMALL_STATE(1233)] = 53844, - [SMALL_STATE(1234)] = 53904, - [SMALL_STATE(1235)] = 53960, - [SMALL_STATE(1236)] = 54020, - [SMALL_STATE(1237)] = 54080, - [SMALL_STATE(1238)] = 54140, - [SMALL_STATE(1239)] = 54200, - [SMALL_STATE(1240)] = 54260, - [SMALL_STATE(1241)] = 54320, - [SMALL_STATE(1242)] = 54380, - [SMALL_STATE(1243)] = 54440, - [SMALL_STATE(1244)] = 54500, - [SMALL_STATE(1245)] = 54560, - [SMALL_STATE(1246)] = 54620, - [SMALL_STATE(1247)] = 54680, - [SMALL_STATE(1248)] = 54740, - [SMALL_STATE(1249)] = 54800, - [SMALL_STATE(1250)] = 54860, - [SMALL_STATE(1251)] = 54920, - [SMALL_STATE(1252)] = 54972, - [SMALL_STATE(1253)] = 55020, - [SMALL_STATE(1254)] = 55068, - [SMALL_STATE(1255)] = 55124, - [SMALL_STATE(1256)] = 55172, - [SMALL_STATE(1257)] = 55220, - [SMALL_STATE(1258)] = 55270, - [SMALL_STATE(1259)] = 55318, - [SMALL_STATE(1260)] = 55366, - [SMALL_STATE(1261)] = 55416, - [SMALL_STATE(1262)] = 55470, - [SMALL_STATE(1263)] = 55526, - [SMALL_STATE(1264)] = 55574, - [SMALL_STATE(1265)] = 55619, - [SMALL_STATE(1266)] = 55666, - [SMALL_STATE(1267)] = 55719, - [SMALL_STATE(1268)] = 55764, - [SMALL_STATE(1269)] = 55817, - [SMALL_STATE(1270)] = 55862, - [SMALL_STATE(1271)] = 55907, - [SMALL_STATE(1272)] = 55958, - [SMALL_STATE(1273)] = 56003, - [SMALL_STATE(1274)] = 56056, - [SMALL_STATE(1275)] = 56105, - [SMALL_STATE(1276)] = 56154, - [SMALL_STATE(1277)] = 56199, - [SMALL_STATE(1278)] = 56244, - [SMALL_STATE(1279)] = 56297, - [SMALL_STATE(1280)] = 56350, - [SMALL_STATE(1281)] = 56403, - [SMALL_STATE(1282)] = 56448, - [SMALL_STATE(1283)] = 56493, - [SMALL_STATE(1284)] = 56538, - [SMALL_STATE(1285)] = 56583, - [SMALL_STATE(1286)] = 56634, - [SMALL_STATE(1287)] = 56679, - [SMALL_STATE(1288)] = 56724, - [SMALL_STATE(1289)] = 56769, - [SMALL_STATE(1290)] = 56815, - [SMALL_STATE(1291)] = 56861, - [SMALL_STATE(1292)] = 56905, - [SMALL_STATE(1293)] = 56949, - [SMALL_STATE(1294)] = 56995, - [SMALL_STATE(1295)] = 57041, - [SMALL_STATE(1296)] = 57084, - [SMALL_STATE(1297)] = 57127, - [SMALL_STATE(1298)] = 57170, - [SMALL_STATE(1299)] = 57215, - [SMALL_STATE(1300)] = 57258, - [SMALL_STATE(1301)] = 57303, - [SMALL_STATE(1302)] = 57348, - [SMALL_STATE(1303)] = 57391, - [SMALL_STATE(1304)] = 57436, - [SMALL_STATE(1305)] = 57478, - [SMALL_STATE(1306)] = 57520, - [SMALL_STATE(1307)] = 57562, - [SMALL_STATE(1308)] = 57604, - [SMALL_STATE(1309)] = 57642, - [SMALL_STATE(1310)] = 57680, - [SMALL_STATE(1311)] = 57715, - [SMALL_STATE(1312)] = 57750, - [SMALL_STATE(1313)] = 57785, - [SMALL_STATE(1314)] = 57820, - [SMALL_STATE(1315)] = 57855, - [SMALL_STATE(1316)] = 57890, - [SMALL_STATE(1317)] = 57925, - [SMALL_STATE(1318)] = 57960, - [SMALL_STATE(1319)] = 57995, - [SMALL_STATE(1320)] = 58030, - [SMALL_STATE(1321)] = 58065, - [SMALL_STATE(1322)] = 58100, - [SMALL_STATE(1323)] = 58135, - [SMALL_STATE(1324)] = 58170, - [SMALL_STATE(1325)] = 58205, - [SMALL_STATE(1326)] = 58240, - [SMALL_STATE(1327)] = 58275, - [SMALL_STATE(1328)] = 58310, - [SMALL_STATE(1329)] = 58345, - [SMALL_STATE(1330)] = 58380, - [SMALL_STATE(1331)] = 58415, - [SMALL_STATE(1332)] = 58450, - [SMALL_STATE(1333)] = 58485, - [SMALL_STATE(1334)] = 58520, - [SMALL_STATE(1335)] = 58555, - [SMALL_STATE(1336)] = 58590, - [SMALL_STATE(1337)] = 58625, - [SMALL_STATE(1338)] = 58660, - [SMALL_STATE(1339)] = 58695, - [SMALL_STATE(1340)] = 58730, - [SMALL_STATE(1341)] = 58765, - [SMALL_STATE(1342)] = 58800, - [SMALL_STATE(1343)] = 58835, - [SMALL_STATE(1344)] = 58870, - [SMALL_STATE(1345)] = 58905, - [SMALL_STATE(1346)] = 58940, - [SMALL_STATE(1347)] = 58975, - [SMALL_STATE(1348)] = 59010, - [SMALL_STATE(1349)] = 59039, - [SMALL_STATE(1350)] = 59068, - [SMALL_STATE(1351)] = 59097, - [SMALL_STATE(1352)] = 59127, - [SMALL_STATE(1353)] = 59157, - [SMALL_STATE(1354)] = 59187, - [SMALL_STATE(1355)] = 59217, - [SMALL_STATE(1356)] = 59247, - [SMALL_STATE(1357)] = 59281, - [SMALL_STATE(1358)] = 59311, - [SMALL_STATE(1359)] = 59341, - [SMALL_STATE(1360)] = 59371, - [SMALL_STATE(1361)] = 59401, - [SMALL_STATE(1362)] = 59431, - [SMALL_STATE(1363)] = 59461, - [SMALL_STATE(1364)] = 59491, - [SMALL_STATE(1365)] = 59521, - [SMALL_STATE(1366)] = 59555, - [SMALL_STATE(1367)] = 59585, - [SMALL_STATE(1368)] = 59615, - [SMALL_STATE(1369)] = 59645, - [SMALL_STATE(1370)] = 59675, - [SMALL_STATE(1371)] = 59705, - [SMALL_STATE(1372)] = 59739, - [SMALL_STATE(1373)] = 59773, - [SMALL_STATE(1374)] = 59803, - [SMALL_STATE(1375)] = 59833, - [SMALL_STATE(1376)] = 59863, - [SMALL_STATE(1377)] = 59893, - [SMALL_STATE(1378)] = 59911, - [SMALL_STATE(1379)] = 59941, - [SMALL_STATE(1380)] = 59971, - [SMALL_STATE(1381)] = 59989, - [SMALL_STATE(1382)] = 60019, - [SMALL_STATE(1383)] = 60049, - [SMALL_STATE(1384)] = 60079, - [SMALL_STATE(1385)] = 60109, - [SMALL_STATE(1386)] = 60139, - [SMALL_STATE(1387)] = 60169, - [SMALL_STATE(1388)] = 60203, - [SMALL_STATE(1389)] = 60233, - [SMALL_STATE(1390)] = 60263, - [SMALL_STATE(1391)] = 60297, - [SMALL_STATE(1392)] = 60327, - [SMALL_STATE(1393)] = 60357, - [SMALL_STATE(1394)] = 60391, - [SMALL_STATE(1395)] = 60425, - [SMALL_STATE(1396)] = 60455, - [SMALL_STATE(1397)] = 60489, - [SMALL_STATE(1398)] = 60519, - [SMALL_STATE(1399)] = 60550, - [SMALL_STATE(1400)] = 60581, - [SMALL_STATE(1401)] = 60604, - [SMALL_STATE(1402)] = 60635, - [SMALL_STATE(1403)] = 60666, - [SMALL_STATE(1404)] = 60689, - [SMALL_STATE(1405)] = 60712, - [SMALL_STATE(1406)] = 60729, - [SMALL_STATE(1407)] = 60752, - [SMALL_STATE(1408)] = 60783, - [SMALL_STATE(1409)] = 60806, - [SMALL_STATE(1410)] = 60821, - [SMALL_STATE(1411)] = 60844, - [SMALL_STATE(1412)] = 60875, - [SMALL_STATE(1413)] = 60892, - [SMALL_STATE(1414)] = 60913, - [SMALL_STATE(1415)] = 60936, - [SMALL_STATE(1416)] = 60959, - [SMALL_STATE(1417)] = 60982, - [SMALL_STATE(1418)] = 60997, - [SMALL_STATE(1419)] = 61020, - [SMALL_STATE(1420)] = 61043, - [SMALL_STATE(1421)] = 61066, - [SMALL_STATE(1422)] = 61089, - [SMALL_STATE(1423)] = 61120, - [SMALL_STATE(1424)] = 61143, - [SMALL_STATE(1425)] = 61166, - [SMALL_STATE(1426)] = 61197, - [SMALL_STATE(1427)] = 61228, - [SMALL_STATE(1428)] = 61259, - [SMALL_STATE(1429)] = 61290, - [SMALL_STATE(1430)] = 61321, - [SMALL_STATE(1431)] = 61344, - [SMALL_STATE(1432)] = 61375, - [SMALL_STATE(1433)] = 61398, - [SMALL_STATE(1434)] = 61421, - [SMALL_STATE(1435)] = 61452, - [SMALL_STATE(1436)] = 61483, - [SMALL_STATE(1437)] = 61506, - [SMALL_STATE(1438)] = 61537, - [SMALL_STATE(1439)] = 61568, - [SMALL_STATE(1440)] = 61599, - [SMALL_STATE(1441)] = 61627, - [SMALL_STATE(1442)] = 61655, - [SMALL_STATE(1443)] = 61683, - [SMALL_STATE(1444)] = 61711, - [SMALL_STATE(1445)] = 61739, - [SMALL_STATE(1446)] = 61767, - [SMALL_STATE(1447)] = 61795, - [SMALL_STATE(1448)] = 61823, - [SMALL_STATE(1449)] = 61851, - [SMALL_STATE(1450)] = 61879, - [SMALL_STATE(1451)] = 61907, - [SMALL_STATE(1452)] = 61935, - [SMALL_STATE(1453)] = 61963, - [SMALL_STATE(1454)] = 61977, - [SMALL_STATE(1455)] = 62005, - [SMALL_STATE(1456)] = 62033, - [SMALL_STATE(1457)] = 62061, - [SMALL_STATE(1458)] = 62089, - [SMALL_STATE(1459)] = 62117, - [SMALL_STATE(1460)] = 62145, - [SMALL_STATE(1461)] = 62173, - [SMALL_STATE(1462)] = 62201, - [SMALL_STATE(1463)] = 62215, - [SMALL_STATE(1464)] = 62243, - [SMALL_STATE(1465)] = 62271, - [SMALL_STATE(1466)] = 62299, - [SMALL_STATE(1467)] = 62327, - [SMALL_STATE(1468)] = 62355, - [SMALL_STATE(1469)] = 62383, - [SMALL_STATE(1470)] = 62398, - [SMALL_STATE(1471)] = 62420, - [SMALL_STATE(1472)] = 62438, - [SMALL_STATE(1473)] = 62456, - [SMALL_STATE(1474)] = 62474, - [SMALL_STATE(1475)] = 62496, - [SMALL_STATE(1476)] = 62514, - [SMALL_STATE(1477)] = 62532, - [SMALL_STATE(1478)] = 62550, - [SMALL_STATE(1479)] = 62568, - [SMALL_STATE(1480)] = 62586, - [SMALL_STATE(1481)] = 62608, - [SMALL_STATE(1482)] = 62626, - [SMALL_STATE(1483)] = 62644, - [SMALL_STATE(1484)] = 62662, - [SMALL_STATE(1485)] = 62680, - [SMALL_STATE(1486)] = 62698, - [SMALL_STATE(1487)] = 62716, - [SMALL_STATE(1488)] = 62734, - [SMALL_STATE(1489)] = 62752, - [SMALL_STATE(1490)] = 62770, - [SMALL_STATE(1491)] = 62792, - [SMALL_STATE(1492)] = 62810, - [SMALL_STATE(1493)] = 62828, - [SMALL_STATE(1494)] = 62846, - [SMALL_STATE(1495)] = 62864, - [SMALL_STATE(1496)] = 62882, - [SMALL_STATE(1497)] = 62900, - [SMALL_STATE(1498)] = 62918, - [SMALL_STATE(1499)] = 62936, - [SMALL_STATE(1500)] = 62954, - [SMALL_STATE(1501)] = 62972, - [SMALL_STATE(1502)] = 62990, - [SMALL_STATE(1503)] = 63012, - [SMALL_STATE(1504)] = 63030, - [SMALL_STATE(1505)] = 63048, - [SMALL_STATE(1506)] = 63066, - [SMALL_STATE(1507)] = 63084, - [SMALL_STATE(1508)] = 63102, - [SMALL_STATE(1509)] = 63120, - [SMALL_STATE(1510)] = 63138, - [SMALL_STATE(1511)] = 63156, - [SMALL_STATE(1512)] = 63174, - [SMALL_STATE(1513)] = 63192, - [SMALL_STATE(1514)] = 63210, - [SMALL_STATE(1515)] = 63228, - [SMALL_STATE(1516)] = 63246, - [SMALL_STATE(1517)] = 63264, - [SMALL_STATE(1518)] = 63282, - [SMALL_STATE(1519)] = 63300, - [SMALL_STATE(1520)] = 63322, - [SMALL_STATE(1521)] = 63340, - [SMALL_STATE(1522)] = 63358, - [SMALL_STATE(1523)] = 63376, - [SMALL_STATE(1524)] = 63394, - [SMALL_STATE(1525)] = 63412, - [SMALL_STATE(1526)] = 63430, - [SMALL_STATE(1527)] = 63448, - [SMALL_STATE(1528)] = 63470, - [SMALL_STATE(1529)] = 63488, - [SMALL_STATE(1530)] = 63506, - [SMALL_STATE(1531)] = 63524, - [SMALL_STATE(1532)] = 63546, - [SMALL_STATE(1533)] = 63564, - [SMALL_STATE(1534)] = 63582, - [SMALL_STATE(1535)] = 63600, - [SMALL_STATE(1536)] = 63618, - [SMALL_STATE(1537)] = 63636, - [SMALL_STATE(1538)] = 63654, - [SMALL_STATE(1539)] = 63672, - [SMALL_STATE(1540)] = 63694, - [SMALL_STATE(1541)] = 63712, - [SMALL_STATE(1542)] = 63730, - [SMALL_STATE(1543)] = 63748, - [SMALL_STATE(1544)] = 63766, - [SMALL_STATE(1545)] = 63788, - [SMALL_STATE(1546)] = 63806, - [SMALL_STATE(1547)] = 63824, - [SMALL_STATE(1548)] = 63842, - [SMALL_STATE(1549)] = 63860, - [SMALL_STATE(1550)] = 63878, - [SMALL_STATE(1551)] = 63896, - [SMALL_STATE(1552)] = 63914, - [SMALL_STATE(1553)] = 63932, - [SMALL_STATE(1554)] = 63950, - [SMALL_STATE(1555)] = 63968, - [SMALL_STATE(1556)] = 63986, - [SMALL_STATE(1557)] = 64004, - [SMALL_STATE(1558)] = 64022, - [SMALL_STATE(1559)] = 64040, - [SMALL_STATE(1560)] = 64058, - [SMALL_STATE(1561)] = 64076, - [SMALL_STATE(1562)] = 64094, - [SMALL_STATE(1563)] = 64112, - [SMALL_STATE(1564)] = 64130, - [SMALL_STATE(1565)] = 64142, - [SMALL_STATE(1566)] = 64160, - [SMALL_STATE(1567)] = 64178, - [SMALL_STATE(1568)] = 64196, - [SMALL_STATE(1569)] = 64214, - [SMALL_STATE(1570)] = 64232, - [SMALL_STATE(1571)] = 64250, - [SMALL_STATE(1572)] = 64268, - [SMALL_STATE(1573)] = 64286, - [SMALL_STATE(1574)] = 64304, - [SMALL_STATE(1575)] = 64322, - [SMALL_STATE(1576)] = 64340, - [SMALL_STATE(1577)] = 64362, - [SMALL_STATE(1578)] = 64384, - [SMALL_STATE(1579)] = 64402, - [SMALL_STATE(1580)] = 64420, - [SMALL_STATE(1581)] = 64438, - [SMALL_STATE(1582)] = 64456, - [SMALL_STATE(1583)] = 64474, - [SMALL_STATE(1584)] = 64492, - [SMALL_STATE(1585)] = 64514, - [SMALL_STATE(1586)] = 64532, - [SMALL_STATE(1587)] = 64550, - [SMALL_STATE(1588)] = 64568, - [SMALL_STATE(1589)] = 64586, - [SMALL_STATE(1590)] = 64604, - [SMALL_STATE(1591)] = 64622, - [SMALL_STATE(1592)] = 64644, - [SMALL_STATE(1593)] = 64662, - [SMALL_STATE(1594)] = 64680, - [SMALL_STATE(1595)] = 64702, - [SMALL_STATE(1596)] = 64724, - [SMALL_STATE(1597)] = 64742, - [SMALL_STATE(1598)] = 64760, - [SMALL_STATE(1599)] = 64778, - [SMALL_STATE(1600)] = 64800, - [SMALL_STATE(1601)] = 64818, - [SMALL_STATE(1602)] = 64836, - [SMALL_STATE(1603)] = 64854, - [SMALL_STATE(1604)] = 64876, - [SMALL_STATE(1605)] = 64894, - [SMALL_STATE(1606)] = 64912, - [SMALL_STATE(1607)] = 64930, - [SMALL_STATE(1608)] = 64948, - [SMALL_STATE(1609)] = 64966, - [SMALL_STATE(1610)] = 64984, - [SMALL_STATE(1611)] = 65002, - [SMALL_STATE(1612)] = 65020, - [SMALL_STATE(1613)] = 65038, - [SMALL_STATE(1614)] = 65056, - [SMALL_STATE(1615)] = 65074, - [SMALL_STATE(1616)] = 65092, - [SMALL_STATE(1617)] = 65110, - [SMALL_STATE(1618)] = 65122, - [SMALL_STATE(1619)] = 65140, - [SMALL_STATE(1620)] = 65158, - [SMALL_STATE(1621)] = 65176, - [SMALL_STATE(1622)] = 65194, - [SMALL_STATE(1623)] = 65212, - [SMALL_STATE(1624)] = 65234, - [SMALL_STATE(1625)] = 65252, - [SMALL_STATE(1626)] = 65274, - [SMALL_STATE(1627)] = 65286, - [SMALL_STATE(1628)] = 65304, - [SMALL_STATE(1629)] = 65322, - [SMALL_STATE(1630)] = 65340, - [SMALL_STATE(1631)] = 65362, - [SMALL_STATE(1632)] = 65380, - [SMALL_STATE(1633)] = 65402, - [SMALL_STATE(1634)] = 65420, - [SMALL_STATE(1635)] = 65438, - [SMALL_STATE(1636)] = 65456, - [SMALL_STATE(1637)] = 65478, - [SMALL_STATE(1638)] = 65496, - [SMALL_STATE(1639)] = 65514, - [SMALL_STATE(1640)] = 65532, - [SMALL_STATE(1641)] = 65550, - [SMALL_STATE(1642)] = 65568, - [SMALL_STATE(1643)] = 65590, - [SMALL_STATE(1644)] = 65608, - [SMALL_STATE(1645)] = 65626, - [SMALL_STATE(1646)] = 65648, - [SMALL_STATE(1647)] = 65666, - [SMALL_STATE(1648)] = 65684, - [SMALL_STATE(1649)] = 65702, - [SMALL_STATE(1650)] = 65720, - [SMALL_STATE(1651)] = 65738, - [SMALL_STATE(1652)] = 65756, - [SMALL_STATE(1653)] = 65774, - [SMALL_STATE(1654)] = 65792, - [SMALL_STATE(1655)] = 65810, - [SMALL_STATE(1656)] = 65832, - [SMALL_STATE(1657)] = 65850, - [SMALL_STATE(1658)] = 65868, - [SMALL_STATE(1659)] = 65886, - [SMALL_STATE(1660)] = 65904, - [SMALL_STATE(1661)] = 65922, - [SMALL_STATE(1662)] = 65940, - [SMALL_STATE(1663)] = 65958, - [SMALL_STATE(1664)] = 65976, - [SMALL_STATE(1665)] = 65994, - [SMALL_STATE(1666)] = 66012, - [SMALL_STATE(1667)] = 66030, - [SMALL_STATE(1668)] = 66048, - [SMALL_STATE(1669)] = 66066, - [SMALL_STATE(1670)] = 66084, - [SMALL_STATE(1671)] = 66102, - [SMALL_STATE(1672)] = 66120, - [SMALL_STATE(1673)] = 66138, - [SMALL_STATE(1674)] = 66156, - [SMALL_STATE(1675)] = 66174, - [SMALL_STATE(1676)] = 66196, - [SMALL_STATE(1677)] = 66214, - [SMALL_STATE(1678)] = 66232, - [SMALL_STATE(1679)] = 66250, - [SMALL_STATE(1680)] = 66268, - [SMALL_STATE(1681)] = 66283, - [SMALL_STATE(1682)] = 66296, - [SMALL_STATE(1683)] = 66312, - [SMALL_STATE(1684)] = 66328, - [SMALL_STATE(1685)] = 66344, - [SMALL_STATE(1686)] = 66360, - [SMALL_STATE(1687)] = 66376, - [SMALL_STATE(1688)] = 66392, - [SMALL_STATE(1689)] = 66408, - [SMALL_STATE(1690)] = 66424, - [SMALL_STATE(1691)] = 66440, - [SMALL_STATE(1692)] = 66456, - [SMALL_STATE(1693)] = 66470, - [SMALL_STATE(1694)] = 66486, - [SMALL_STATE(1695)] = 66502, - [SMALL_STATE(1696)] = 66518, - [SMALL_STATE(1697)] = 66534, - [SMALL_STATE(1698)] = 66550, - [SMALL_STATE(1699)] = 66566, - [SMALL_STATE(1700)] = 66582, - [SMALL_STATE(1701)] = 66598, - [SMALL_STATE(1702)] = 66614, - [SMALL_STATE(1703)] = 66630, - [SMALL_STATE(1704)] = 66646, - [SMALL_STATE(1705)] = 66662, - [SMALL_STATE(1706)] = 66678, - [SMALL_STATE(1707)] = 66694, - [SMALL_STATE(1708)] = 66710, - [SMALL_STATE(1709)] = 66726, - [SMALL_STATE(1710)] = 66742, - [SMALL_STATE(1711)] = 66758, - [SMALL_STATE(1712)] = 66774, - [SMALL_STATE(1713)] = 66790, - [SMALL_STATE(1714)] = 66806, - [SMALL_STATE(1715)] = 66822, - [SMALL_STATE(1716)] = 66838, - [SMALL_STATE(1717)] = 66848, - [SMALL_STATE(1718)] = 66864, - [SMALL_STATE(1719)] = 66878, - [SMALL_STATE(1720)] = 66894, - [SMALL_STATE(1721)] = 66910, - [SMALL_STATE(1722)] = 66926, - [SMALL_STATE(1723)] = 66942, - [SMALL_STATE(1724)] = 66958, - [SMALL_STATE(1725)] = 66974, - [SMALL_STATE(1726)] = 66988, - [SMALL_STATE(1727)] = 67004, - [SMALL_STATE(1728)] = 67020, - [SMALL_STATE(1729)] = 67032, - [SMALL_STATE(1730)] = 67048, - [SMALL_STATE(1731)] = 67064, - [SMALL_STATE(1732)] = 67080, - [SMALL_STATE(1733)] = 67094, - [SMALL_STATE(1734)] = 67110, - [SMALL_STATE(1735)] = 67126, - [SMALL_STATE(1736)] = 67142, - [SMALL_STATE(1737)] = 67158, - [SMALL_STATE(1738)] = 67172, - [SMALL_STATE(1739)] = 67188, - [SMALL_STATE(1740)] = 67204, - [SMALL_STATE(1741)] = 67220, - [SMALL_STATE(1742)] = 67236, - [SMALL_STATE(1743)] = 67250, - [SMALL_STATE(1744)] = 67266, - [SMALL_STATE(1745)] = 67282, - [SMALL_STATE(1746)] = 67298, - [SMALL_STATE(1747)] = 67314, - [SMALL_STATE(1748)] = 67330, - [SMALL_STATE(1749)] = 67346, - [SMALL_STATE(1750)] = 67360, - [SMALL_STATE(1751)] = 67376, - [SMALL_STATE(1752)] = 67392, - [SMALL_STATE(1753)] = 67408, - [SMALL_STATE(1754)] = 67424, - [SMALL_STATE(1755)] = 67438, - [SMALL_STATE(1756)] = 67454, - [SMALL_STATE(1757)] = 67470, - [SMALL_STATE(1758)] = 67486, - [SMALL_STATE(1759)] = 67502, - [SMALL_STATE(1760)] = 67516, - [SMALL_STATE(1761)] = 67532, - [SMALL_STATE(1762)] = 67548, - [SMALL_STATE(1763)] = 67564, - [SMALL_STATE(1764)] = 67580, - [SMALL_STATE(1765)] = 67594, - [SMALL_STATE(1766)] = 67610, - [SMALL_STATE(1767)] = 67626, - [SMALL_STATE(1768)] = 67642, - [SMALL_STATE(1769)] = 67658, - [SMALL_STATE(1770)] = 67674, - [SMALL_STATE(1771)] = 67690, - [SMALL_STATE(1772)] = 67703, - [SMALL_STATE(1773)] = 67716, - [SMALL_STATE(1774)] = 67725, - [SMALL_STATE(1775)] = 67738, - [SMALL_STATE(1776)] = 67751, - [SMALL_STATE(1777)] = 67760, - [SMALL_STATE(1778)] = 67769, - [SMALL_STATE(1779)] = 67778, - [SMALL_STATE(1780)] = 67791, - [SMALL_STATE(1781)] = 67804, - [SMALL_STATE(1782)] = 67817, - [SMALL_STATE(1783)] = 67830, - [SMALL_STATE(1784)] = 67843, - [SMALL_STATE(1785)] = 67852, - [SMALL_STATE(1786)] = 67865, - [SMALL_STATE(1787)] = 67878, - [SMALL_STATE(1788)] = 67891, - [SMALL_STATE(1789)] = 67904, - [SMALL_STATE(1790)] = 67913, - [SMALL_STATE(1791)] = 67926, - [SMALL_STATE(1792)] = 67939, - [SMALL_STATE(1793)] = 67952, - [SMALL_STATE(1794)] = 67965, - [SMALL_STATE(1795)] = 67974, - [SMALL_STATE(1796)] = 67987, - [SMALL_STATE(1797)] = 68000, - [SMALL_STATE(1798)] = 68013, - [SMALL_STATE(1799)] = 68022, - [SMALL_STATE(1800)] = 68035, - [SMALL_STATE(1801)] = 68044, - [SMALL_STATE(1802)] = 68057, - [SMALL_STATE(1803)] = 68070, - [SMALL_STATE(1804)] = 68083, - [SMALL_STATE(1805)] = 68096, - [SMALL_STATE(1806)] = 68109, - [SMALL_STATE(1807)] = 68122, - [SMALL_STATE(1808)] = 68135, - [SMALL_STATE(1809)] = 68148, - [SMALL_STATE(1810)] = 68161, - [SMALL_STATE(1811)] = 68174, - [SMALL_STATE(1812)] = 68187, - [SMALL_STATE(1813)] = 68200, - [SMALL_STATE(1814)] = 68209, - [SMALL_STATE(1815)] = 68218, - [SMALL_STATE(1816)] = 68231, - [SMALL_STATE(1817)] = 68244, - [SMALL_STATE(1818)] = 68257, - [SMALL_STATE(1819)] = 68270, - [SMALL_STATE(1820)] = 68283, - [SMALL_STATE(1821)] = 68296, - [SMALL_STATE(1822)] = 68309, - [SMALL_STATE(1823)] = 68322, - [SMALL_STATE(1824)] = 68335, - [SMALL_STATE(1825)] = 68348, - [SMALL_STATE(1826)] = 68361, - [SMALL_STATE(1827)] = 68372, - [SMALL_STATE(1828)] = 68382, - [SMALL_STATE(1829)] = 68392, - [SMALL_STATE(1830)] = 68402, - [SMALL_STATE(1831)] = 68412, - [SMALL_STATE(1832)] = 68422, - [SMALL_STATE(1833)] = 68432, - [SMALL_STATE(1834)] = 68442, - [SMALL_STATE(1835)] = 68450, - [SMALL_STATE(1836)] = 68460, - [SMALL_STATE(1837)] = 68470, - [SMALL_STATE(1838)] = 68480, - [SMALL_STATE(1839)] = 68490, - [SMALL_STATE(1840)] = 68500, - [SMALL_STATE(1841)] = 68510, - [SMALL_STATE(1842)] = 68520, - [SMALL_STATE(1843)] = 68530, - [SMALL_STATE(1844)] = 68540, - [SMALL_STATE(1845)] = 68550, - [SMALL_STATE(1846)] = 68560, - [SMALL_STATE(1847)] = 68570, - [SMALL_STATE(1848)] = 68580, - [SMALL_STATE(1849)] = 68590, - [SMALL_STATE(1850)] = 68600, - [SMALL_STATE(1851)] = 68610, - [SMALL_STATE(1852)] = 68620, - [SMALL_STATE(1853)] = 68630, - [SMALL_STATE(1854)] = 68640, - [SMALL_STATE(1855)] = 68650, - [SMALL_STATE(1856)] = 68660, - [SMALL_STATE(1857)] = 68670, - [SMALL_STATE(1858)] = 68680, - [SMALL_STATE(1859)] = 68688, - [SMALL_STATE(1860)] = 68698, - [SMALL_STATE(1861)] = 68708, - [SMALL_STATE(1862)] = 68718, - [SMALL_STATE(1863)] = 68728, - [SMALL_STATE(1864)] = 68738, - [SMALL_STATE(1865)] = 68748, - [SMALL_STATE(1866)] = 68758, - [SMALL_STATE(1867)] = 68768, - [SMALL_STATE(1868)] = 68778, - [SMALL_STATE(1869)] = 68788, - [SMALL_STATE(1870)] = 68798, - [SMALL_STATE(1871)] = 68808, - [SMALL_STATE(1872)] = 68818, - [SMALL_STATE(1873)] = 68828, - [SMALL_STATE(1874)] = 68836, - [SMALL_STATE(1875)] = 68844, - [SMALL_STATE(1876)] = 68854, - [SMALL_STATE(1877)] = 68864, - [SMALL_STATE(1878)] = 68874, - [SMALL_STATE(1879)] = 68884, - [SMALL_STATE(1880)] = 68894, - [SMALL_STATE(1881)] = 68904, - [SMALL_STATE(1882)] = 68914, - [SMALL_STATE(1883)] = 68924, - [SMALL_STATE(1884)] = 68934, - [SMALL_STATE(1885)] = 68944, - [SMALL_STATE(1886)] = 68954, - [SMALL_STATE(1887)] = 68964, - [SMALL_STATE(1888)] = 68974, - [SMALL_STATE(1889)] = 68984, - [SMALL_STATE(1890)] = 68994, - [SMALL_STATE(1891)] = 69004, - [SMALL_STATE(1892)] = 69014, - [SMALL_STATE(1893)] = 69024, - [SMALL_STATE(1894)] = 69034, - [SMALL_STATE(1895)] = 69044, - [SMALL_STATE(1896)] = 69054, - [SMALL_STATE(1897)] = 69064, - [SMALL_STATE(1898)] = 69071, - [SMALL_STATE(1899)] = 69078, - [SMALL_STATE(1900)] = 69085, - [SMALL_STATE(1901)] = 69092, - [SMALL_STATE(1902)] = 69099, - [SMALL_STATE(1903)] = 69106, - [SMALL_STATE(1904)] = 69113, - [SMALL_STATE(1905)] = 69120, - [SMALL_STATE(1906)] = 69125, - [SMALL_STATE(1907)] = 69132, - [SMALL_STATE(1908)] = 69139, - [SMALL_STATE(1909)] = 69144, - [SMALL_STATE(1910)] = 69151, - [SMALL_STATE(1911)] = 69158, - [SMALL_STATE(1912)] = 69165, - [SMALL_STATE(1913)] = 69172, - [SMALL_STATE(1914)] = 69179, - [SMALL_STATE(1915)] = 69186, - [SMALL_STATE(1916)] = 69193, - [SMALL_STATE(1917)] = 69200, - [SMALL_STATE(1918)] = 69207, - [SMALL_STATE(1919)] = 69214, - [SMALL_STATE(1920)] = 69221, - [SMALL_STATE(1921)] = 69228, - [SMALL_STATE(1922)] = 69235, - [SMALL_STATE(1923)] = 69242, - [SMALL_STATE(1924)] = 69249, - [SMALL_STATE(1925)] = 69256, - [SMALL_STATE(1926)] = 69263, - [SMALL_STATE(1927)] = 69270, - [SMALL_STATE(1928)] = 69277, - [SMALL_STATE(1929)] = 69284, - [SMALL_STATE(1930)] = 69291, - [SMALL_STATE(1931)] = 69295, - [SMALL_STATE(1932)] = 69299, - [SMALL_STATE(1933)] = 69303, - [SMALL_STATE(1934)] = 69307, - [SMALL_STATE(1935)] = 69311, - [SMALL_STATE(1936)] = 69315, - [SMALL_STATE(1937)] = 69319, - [SMALL_STATE(1938)] = 69323, - [SMALL_STATE(1939)] = 69327, - [SMALL_STATE(1940)] = 69331, - [SMALL_STATE(1941)] = 69335, - [SMALL_STATE(1942)] = 69339, - [SMALL_STATE(1943)] = 69343, - [SMALL_STATE(1944)] = 69347, - [SMALL_STATE(1945)] = 69351, - [SMALL_STATE(1946)] = 69355, - [SMALL_STATE(1947)] = 69359, - [SMALL_STATE(1948)] = 69363, - [SMALL_STATE(1949)] = 69367, - [SMALL_STATE(1950)] = 69371, - [SMALL_STATE(1951)] = 69375, - [SMALL_STATE(1952)] = 69379, - [SMALL_STATE(1953)] = 69383, - [SMALL_STATE(1954)] = 69387, - [SMALL_STATE(1955)] = 69391, - [SMALL_STATE(1956)] = 69395, - [SMALL_STATE(1957)] = 69399, - [SMALL_STATE(1958)] = 69403, - [SMALL_STATE(1959)] = 69407, - [SMALL_STATE(1960)] = 69411, - [SMALL_STATE(1961)] = 69415, - [SMALL_STATE(1962)] = 69419, - [SMALL_STATE(1963)] = 69423, - [SMALL_STATE(1964)] = 69427, - [SMALL_STATE(1965)] = 69431, - [SMALL_STATE(1966)] = 69435, - [SMALL_STATE(1967)] = 69439, - [SMALL_STATE(1968)] = 69443, - [SMALL_STATE(1969)] = 69447, - [SMALL_STATE(1970)] = 69451, - [SMALL_STATE(1971)] = 69455, - [SMALL_STATE(1972)] = 69459, - [SMALL_STATE(1973)] = 69463, - [SMALL_STATE(1974)] = 69467, - [SMALL_STATE(1975)] = 69471, - [SMALL_STATE(1976)] = 69475, - [SMALL_STATE(1977)] = 69479, - [SMALL_STATE(1978)] = 69483, - [SMALL_STATE(1979)] = 69487, - [SMALL_STATE(1980)] = 69491, - [SMALL_STATE(1981)] = 69495, - [SMALL_STATE(1982)] = 69499, - [SMALL_STATE(1983)] = 69503, - [SMALL_STATE(1984)] = 69507, - [SMALL_STATE(1985)] = 69511, - [SMALL_STATE(1986)] = 69515, - [SMALL_STATE(1987)] = 69519, - [SMALL_STATE(1988)] = 69523, - [SMALL_STATE(1989)] = 69527, - [SMALL_STATE(1990)] = 69531, - [SMALL_STATE(1991)] = 69535, - [SMALL_STATE(1992)] = 69539, - [SMALL_STATE(1993)] = 69543, - [SMALL_STATE(1994)] = 69547, - [SMALL_STATE(1995)] = 69551, - [SMALL_STATE(1996)] = 69555, - [SMALL_STATE(1997)] = 69559, - [SMALL_STATE(1998)] = 69563, - [SMALL_STATE(1999)] = 69567, - [SMALL_STATE(2000)] = 69571, - [SMALL_STATE(2001)] = 69575, - [SMALL_STATE(2002)] = 69579, - [SMALL_STATE(2003)] = 69583, - [SMALL_STATE(2004)] = 69587, - [SMALL_STATE(2005)] = 69591, - [SMALL_STATE(2006)] = 69595, - [SMALL_STATE(2007)] = 69599, - [SMALL_STATE(2008)] = 69603, - [SMALL_STATE(2009)] = 69607, - [SMALL_STATE(2010)] = 69611, - [SMALL_STATE(2011)] = 69615, - [SMALL_STATE(2012)] = 69619, - [SMALL_STATE(2013)] = 69623, - [SMALL_STATE(2014)] = 69627, - [SMALL_STATE(2015)] = 69631, - [SMALL_STATE(2016)] = 69635, - [SMALL_STATE(2017)] = 69639, - [SMALL_STATE(2018)] = 69643, - [SMALL_STATE(2019)] = 69647, - [SMALL_STATE(2020)] = 69651, - [SMALL_STATE(2021)] = 69655, - [SMALL_STATE(2022)] = 69659, - [SMALL_STATE(2023)] = 69663, - [SMALL_STATE(2024)] = 69667, - [SMALL_STATE(2025)] = 69671, - [SMALL_STATE(2026)] = 69675, - [SMALL_STATE(2027)] = 69679, - [SMALL_STATE(2028)] = 69683, - [SMALL_STATE(2029)] = 69687, - [SMALL_STATE(2030)] = 69691, - [SMALL_STATE(2031)] = 69695, - [SMALL_STATE(2032)] = 69699, - [SMALL_STATE(2033)] = 69703, - [SMALL_STATE(2034)] = 69707, - [SMALL_STATE(2035)] = 69711, - [SMALL_STATE(2036)] = 69715, - [SMALL_STATE(2037)] = 69719, - [SMALL_STATE(2038)] = 69723, - [SMALL_STATE(2039)] = 69727, - [SMALL_STATE(2040)] = 69731, - [SMALL_STATE(2041)] = 69735, - [SMALL_STATE(2042)] = 69739, - [SMALL_STATE(2043)] = 69743, - [SMALL_STATE(2044)] = 69747, - [SMALL_STATE(2045)] = 69751, - [SMALL_STATE(2046)] = 69755, - [SMALL_STATE(2047)] = 69759, + [SMALL_STATE(1427)] = 0, + [SMALL_STATE(1428)] = 71, + [SMALL_STATE(1429)] = 140, + [SMALL_STATE(1430)] = 211, + [SMALL_STATE(1431)] = 282, + [SMALL_STATE(1432)] = 351, + [SMALL_STATE(1433)] = 420, + [SMALL_STATE(1434)] = 489, + [SMALL_STATE(1435)] = 558, + [SMALL_STATE(1436)] = 627, + [SMALL_STATE(1437)] = 696, + [SMALL_STATE(1438)] = 767, + [SMALL_STATE(1439)] = 838, + [SMALL_STATE(1440)] = 907, + [SMALL_STATE(1441)] = 976, + [SMALL_STATE(1442)] = 1045, + [SMALL_STATE(1443)] = 1114, + [SMALL_STATE(1444)] = 1183, + [SMALL_STATE(1445)] = 1252, + [SMALL_STATE(1446)] = 1321, + [SMALL_STATE(1447)] = 1390, + [SMALL_STATE(1448)] = 1461, + [SMALL_STATE(1449)] = 1530, + [SMALL_STATE(1450)] = 1599, + [SMALL_STATE(1451)] = 1668, + [SMALL_STATE(1452)] = 1737, + [SMALL_STATE(1453)] = 1806, + [SMALL_STATE(1454)] = 1875, + [SMALL_STATE(1455)] = 1944, + [SMALL_STATE(1456)] = 2025, + [SMALL_STATE(1457)] = 2106, + [SMALL_STATE(1458)] = 2187, + [SMALL_STATE(1459)] = 2268, + [SMALL_STATE(1460)] = 2349, + [SMALL_STATE(1461)] = 2430, + [SMALL_STATE(1462)] = 2511, + [SMALL_STATE(1463)] = 2592, + [SMALL_STATE(1464)] = 2673, + [SMALL_STATE(1465)] = 2754, + [SMALL_STATE(1466)] = 2835, + [SMALL_STATE(1467)] = 2916, + [SMALL_STATE(1468)] = 2997, + [SMALL_STATE(1469)] = 3078, + [SMALL_STATE(1470)] = 3159, + [SMALL_STATE(1471)] = 3240, + [SMALL_STATE(1472)] = 3321, + [SMALL_STATE(1473)] = 3402, + [SMALL_STATE(1474)] = 3483, + [SMALL_STATE(1475)] = 3564, + [SMALL_STATE(1476)] = 3645, + [SMALL_STATE(1477)] = 3726, + [SMALL_STATE(1478)] = 3807, + [SMALL_STATE(1479)] = 3888, + [SMALL_STATE(1480)] = 3969, + [SMALL_STATE(1481)] = 4050, + [SMALL_STATE(1482)] = 4131, + [SMALL_STATE(1483)] = 4212, + [SMALL_STATE(1484)] = 4293, + [SMALL_STATE(1485)] = 4374, + [SMALL_STATE(1486)] = 4453, + [SMALL_STATE(1487)] = 4532, + [SMALL_STATE(1488)] = 4613, + [SMALL_STATE(1489)] = 4694, + [SMALL_STATE(1490)] = 4775, + [SMALL_STATE(1491)] = 4856, + [SMALL_STATE(1492)] = 4937, + [SMALL_STATE(1493)] = 5018, + [SMALL_STATE(1494)] = 5099, + [SMALL_STATE(1495)] = 5180, + [SMALL_STATE(1496)] = 5261, + [SMALL_STATE(1497)] = 5342, + [SMALL_STATE(1498)] = 5416, + [SMALL_STATE(1499)] = 5482, + [SMALL_STATE(1500)] = 5548, + [SMALL_STATE(1501)] = 5614, + [SMALL_STATE(1502)] = 5678, + [SMALL_STATE(1503)] = 5744, + [SMALL_STATE(1504)] = 5810, + [SMALL_STATE(1505)] = 5876, + [SMALL_STATE(1506)] = 5942, + [SMALL_STATE(1507)] = 6008, + [SMALL_STATE(1508)] = 6073, + [SMALL_STATE(1509)] = 6134, + [SMALL_STATE(1510)] = 6195, + [SMALL_STATE(1511)] = 6260, + [SMALL_STATE(1512)] = 6325, + [SMALL_STATE(1513)] = 6386, + [SMALL_STATE(1514)] = 6447, + [SMALL_STATE(1515)] = 6508, + [SMALL_STATE(1516)] = 6568, + [SMALL_STATE(1517)] = 6628, + [SMALL_STATE(1518)] = 6688, + [SMALL_STATE(1519)] = 6748, + [SMALL_STATE(1520)] = 6808, + [SMALL_STATE(1521)] = 6868, + [SMALL_STATE(1522)] = 6928, + [SMALL_STATE(1523)] = 6988, + [SMALL_STATE(1524)] = 7048, + [SMALL_STATE(1525)] = 7108, + [SMALL_STATE(1526)] = 7168, + [SMALL_STATE(1527)] = 7228, + [SMALL_STATE(1528)] = 7288, + [SMALL_STATE(1529)] = 7348, + [SMALL_STATE(1530)] = 7408, + [SMALL_STATE(1531)] = 7468, + [SMALL_STATE(1532)] = 7528, + [SMALL_STATE(1533)] = 7588, + [SMALL_STATE(1534)] = 7648, + [SMALL_STATE(1535)] = 7708, + [SMALL_STATE(1536)] = 7768, + [SMALL_STATE(1537)] = 7824, + [SMALL_STATE(1538)] = 7884, + [SMALL_STATE(1539)] = 7944, + [SMALL_STATE(1540)] = 8004, + [SMALL_STATE(1541)] = 8052, + [SMALL_STATE(1542)] = 8100, + [SMALL_STATE(1543)] = 8152, + [SMALL_STATE(1544)] = 8200, + [SMALL_STATE(1545)] = 8248, + [SMALL_STATE(1546)] = 8296, + [SMALL_STATE(1547)] = 8344, + [SMALL_STATE(1548)] = 8394, + [SMALL_STATE(1549)] = 8444, + [SMALL_STATE(1550)] = 8492, + [SMALL_STATE(1551)] = 8546, + [SMALL_STATE(1552)] = 8602, + [SMALL_STATE(1553)] = 8658, + [SMALL_STATE(1554)] = 8703, + [SMALL_STATE(1555)] = 8752, + [SMALL_STATE(1556)] = 8797, + [SMALL_STATE(1557)] = 8842, + [SMALL_STATE(1558)] = 8887, + [SMALL_STATE(1559)] = 8938, + [SMALL_STATE(1560)] = 8983, + [SMALL_STATE(1561)] = 9030, + [SMALL_STATE(1562)] = 9083, + [SMALL_STATE(1563)] = 9136, + [SMALL_STATE(1564)] = 9189, + [SMALL_STATE(1565)] = 9242, + [SMALL_STATE(1566)] = 9287, + [SMALL_STATE(1567)] = 9338, + [SMALL_STATE(1568)] = 9383, + [SMALL_STATE(1569)] = 9428, + [SMALL_STATE(1570)] = 9481, + [SMALL_STATE(1571)] = 9526, + [SMALL_STATE(1572)] = 9579, + [SMALL_STATE(1573)] = 9624, + [SMALL_STATE(1574)] = 9669, + [SMALL_STATE(1575)] = 9714, + [SMALL_STATE(1576)] = 9759, + [SMALL_STATE(1577)] = 9804, + [SMALL_STATE(1578)] = 9853, + [SMALL_STATE(1579)] = 9899, + [SMALL_STATE(1580)] = 9945, + [SMALL_STATE(1581)] = 9991, + [SMALL_STATE(1582)] = 10035, + [SMALL_STATE(1583)] = 10079, + [SMALL_STATE(1584)] = 10125, + [SMALL_STATE(1585)] = 10168, + [SMALL_STATE(1586)] = 10213, + [SMALL_STATE(1587)] = 10258, + [SMALL_STATE(1588)] = 10301, + [SMALL_STATE(1589)] = 10346, + [SMALL_STATE(1590)] = 10389, + [SMALL_STATE(1591)] = 10434, + [SMALL_STATE(1592)] = 10477, + [SMALL_STATE(1593)] = 10520, + [SMALL_STATE(1594)] = 10562, + [SMALL_STATE(1595)] = 10604, + [SMALL_STATE(1596)] = 10646, + [SMALL_STATE(1597)] = 10688, + [SMALL_STATE(1598)] = 10726, + [SMALL_STATE(1599)] = 10764, + [SMALL_STATE(1600)] = 10799, + [SMALL_STATE(1601)] = 10834, + [SMALL_STATE(1602)] = 10869, + [SMALL_STATE(1603)] = 10904, + [SMALL_STATE(1604)] = 10939, + [SMALL_STATE(1605)] = 10974, + [SMALL_STATE(1606)] = 11009, + [SMALL_STATE(1607)] = 11044, + [SMALL_STATE(1608)] = 11079, + [SMALL_STATE(1609)] = 11114, + [SMALL_STATE(1610)] = 11149, + [SMALL_STATE(1611)] = 11184, + [SMALL_STATE(1612)] = 11219, + [SMALL_STATE(1613)] = 11254, + [SMALL_STATE(1614)] = 11289, + [SMALL_STATE(1615)] = 11324, + [SMALL_STATE(1616)] = 11359, + [SMALL_STATE(1617)] = 11394, + [SMALL_STATE(1618)] = 11429, + [SMALL_STATE(1619)] = 11464, + [SMALL_STATE(1620)] = 11499, + [SMALL_STATE(1621)] = 11534, + [SMALL_STATE(1622)] = 11569, + [SMALL_STATE(1623)] = 11604, + [SMALL_STATE(1624)] = 11639, + [SMALL_STATE(1625)] = 11674, + [SMALL_STATE(1626)] = 11709, + [SMALL_STATE(1627)] = 11744, + [SMALL_STATE(1628)] = 11779, + [SMALL_STATE(1629)] = 11814, + [SMALL_STATE(1630)] = 11849, + [SMALL_STATE(1631)] = 11884, + [SMALL_STATE(1632)] = 11919, + [SMALL_STATE(1633)] = 11954, + [SMALL_STATE(1634)] = 11989, + [SMALL_STATE(1635)] = 12024, + [SMALL_STATE(1636)] = 12059, + [SMALL_STATE(1637)] = 12094, + [SMALL_STATE(1638)] = 12129, + [SMALL_STATE(1639)] = 12164, + [SMALL_STATE(1640)] = 12199, + [SMALL_STATE(1641)] = 12234, + [SMALL_STATE(1642)] = 12263, + [SMALL_STATE(1643)] = 12292, + [SMALL_STATE(1644)] = 12321, + [SMALL_STATE(1645)] = 12351, + [SMALL_STATE(1646)] = 12381, + [SMALL_STATE(1647)] = 12411, + [SMALL_STATE(1648)] = 12445, + [SMALL_STATE(1649)] = 12475, + [SMALL_STATE(1650)] = 12509, + [SMALL_STATE(1651)] = 12543, + [SMALL_STATE(1652)] = 12573, + [SMALL_STATE(1653)] = 12603, + [SMALL_STATE(1654)] = 12633, + [SMALL_STATE(1655)] = 12667, + [SMALL_STATE(1656)] = 12697, + [SMALL_STATE(1657)] = 12727, + [SMALL_STATE(1658)] = 12757, + [SMALL_STATE(1659)] = 12787, + [SMALL_STATE(1660)] = 12817, + [SMALL_STATE(1661)] = 12847, + [SMALL_STATE(1662)] = 12877, + [SMALL_STATE(1663)] = 12907, + [SMALL_STATE(1664)] = 12937, + [SMALL_STATE(1665)] = 12967, + [SMALL_STATE(1666)] = 12997, + [SMALL_STATE(1667)] = 13027, + [SMALL_STATE(1668)] = 13057, + [SMALL_STATE(1669)] = 13087, + [SMALL_STATE(1670)] = 13117, + [SMALL_STATE(1671)] = 13147, + [SMALL_STATE(1672)] = 13181, + [SMALL_STATE(1673)] = 13211, + [SMALL_STATE(1674)] = 13241, + [SMALL_STATE(1675)] = 13271, + [SMALL_STATE(1676)] = 13301, + [SMALL_STATE(1677)] = 13331, + [SMALL_STATE(1678)] = 13361, + [SMALL_STATE(1679)] = 13391, + [SMALL_STATE(1680)] = 13421, + [SMALL_STATE(1681)] = 13451, + [SMALL_STATE(1682)] = 13481, + [SMALL_STATE(1683)] = 13511, + [SMALL_STATE(1684)] = 13529, + [SMALL_STATE(1685)] = 13547, + [SMALL_STATE(1686)] = 13581, + [SMALL_STATE(1687)] = 13615, + [SMALL_STATE(1688)] = 13645, + [SMALL_STATE(1689)] = 13675, + [SMALL_STATE(1690)] = 13705, + [SMALL_STATE(1691)] = 13735, + [SMALL_STATE(1692)] = 13765, + [SMALL_STATE(1693)] = 13799, + [SMALL_STATE(1694)] = 13833, + [SMALL_STATE(1695)] = 13863, + [SMALL_STATE(1696)] = 13897, + [SMALL_STATE(1697)] = 13920, + [SMALL_STATE(1698)] = 13943, + [SMALL_STATE(1699)] = 13966, + [SMALL_STATE(1700)] = 13997, + [SMALL_STATE(1701)] = 14020, + [SMALL_STATE(1702)] = 14051, + [SMALL_STATE(1703)] = 14082, + [SMALL_STATE(1704)] = 14105, + [SMALL_STATE(1705)] = 14136, + [SMALL_STATE(1706)] = 14159, + [SMALL_STATE(1707)] = 14190, + [SMALL_STATE(1708)] = 14213, + [SMALL_STATE(1709)] = 14244, + [SMALL_STATE(1710)] = 14265, + [SMALL_STATE(1711)] = 14296, + [SMALL_STATE(1712)] = 14319, + [SMALL_STATE(1713)] = 14342, + [SMALL_STATE(1714)] = 14365, + [SMALL_STATE(1715)] = 14388, + [SMALL_STATE(1716)] = 14419, + [SMALL_STATE(1717)] = 14442, + [SMALL_STATE(1718)] = 14465, + [SMALL_STATE(1719)] = 14488, + [SMALL_STATE(1720)] = 14519, + [SMALL_STATE(1721)] = 14534, + [SMALL_STATE(1722)] = 14557, + [SMALL_STATE(1723)] = 14572, + [SMALL_STATE(1724)] = 14589, + [SMALL_STATE(1725)] = 14612, + [SMALL_STATE(1726)] = 14629, + [SMALL_STATE(1727)] = 14652, + [SMALL_STATE(1728)] = 14675, + [SMALL_STATE(1729)] = 14706, + [SMALL_STATE(1730)] = 14737, + [SMALL_STATE(1731)] = 14768, + [SMALL_STATE(1732)] = 14799, + [SMALL_STATE(1733)] = 14822, + [SMALL_STATE(1734)] = 14845, + [SMALL_STATE(1735)] = 14876, + [SMALL_STATE(1736)] = 14907, + [SMALL_STATE(1737)] = 14938, + [SMALL_STATE(1738)] = 14969, + [SMALL_STATE(1739)] = 15000, + [SMALL_STATE(1740)] = 15031, + [SMALL_STATE(1741)] = 15054, + [SMALL_STATE(1742)] = 15085, + [SMALL_STATE(1743)] = 15113, + [SMALL_STATE(1744)] = 15141, + [SMALL_STATE(1745)] = 15155, + [SMALL_STATE(1746)] = 15183, + [SMALL_STATE(1747)] = 15211, + [SMALL_STATE(1748)] = 15239, + [SMALL_STATE(1749)] = 15253, + [SMALL_STATE(1750)] = 15281, + [SMALL_STATE(1751)] = 15309, + [SMALL_STATE(1752)] = 15337, + [SMALL_STATE(1753)] = 15365, + [SMALL_STATE(1754)] = 15393, + [SMALL_STATE(1755)] = 15421, + [SMALL_STATE(1756)] = 15449, + [SMALL_STATE(1757)] = 15477, + [SMALL_STATE(1758)] = 15505, + [SMALL_STATE(1759)] = 15533, + [SMALL_STATE(1760)] = 15561, + [SMALL_STATE(1761)] = 15589, + [SMALL_STATE(1762)] = 15617, + [SMALL_STATE(1763)] = 15645, + [SMALL_STATE(1764)] = 15673, + [SMALL_STATE(1765)] = 15701, + [SMALL_STATE(1766)] = 15729, + [SMALL_STATE(1767)] = 15757, + [SMALL_STATE(1768)] = 15785, + [SMALL_STATE(1769)] = 15813, + [SMALL_STATE(1770)] = 15841, + [SMALL_STATE(1771)] = 15869, + [SMALL_STATE(1772)] = 15897, + [SMALL_STATE(1773)] = 15925, + [SMALL_STATE(1774)] = 15953, + [SMALL_STATE(1775)] = 15968, + [SMALL_STATE(1776)] = 15990, + [SMALL_STATE(1777)] = 16008, + [SMALL_STATE(1778)] = 16026, + [SMALL_STATE(1779)] = 16044, + [SMALL_STATE(1780)] = 16062, + [SMALL_STATE(1781)] = 16084, + [SMALL_STATE(1782)] = 16102, + [SMALL_STATE(1783)] = 16120, + [SMALL_STATE(1784)] = 16138, + [SMALL_STATE(1785)] = 16156, + [SMALL_STATE(1786)] = 16174, + [SMALL_STATE(1787)] = 16192, + [SMALL_STATE(1788)] = 16210, + [SMALL_STATE(1789)] = 16228, + [SMALL_STATE(1790)] = 16246, + [SMALL_STATE(1791)] = 16268, + [SMALL_STATE(1792)] = 16286, + [SMALL_STATE(1793)] = 16304, + [SMALL_STATE(1794)] = 16322, + [SMALL_STATE(1795)] = 16340, + [SMALL_STATE(1796)] = 16358, + [SMALL_STATE(1797)] = 16380, + [SMALL_STATE(1798)] = 16398, + [SMALL_STATE(1799)] = 16416, + [SMALL_STATE(1800)] = 16434, + [SMALL_STATE(1801)] = 16452, + [SMALL_STATE(1802)] = 16470, + [SMALL_STATE(1803)] = 16492, + [SMALL_STATE(1804)] = 16510, + [SMALL_STATE(1805)] = 16528, + [SMALL_STATE(1806)] = 16546, + [SMALL_STATE(1807)] = 16564, + [SMALL_STATE(1808)] = 16582, + [SMALL_STATE(1809)] = 16600, + [SMALL_STATE(1810)] = 16618, + [SMALL_STATE(1811)] = 16636, + [SMALL_STATE(1812)] = 16654, + [SMALL_STATE(1813)] = 16672, + [SMALL_STATE(1814)] = 16690, + [SMALL_STATE(1815)] = 16708, + [SMALL_STATE(1816)] = 16726, + [SMALL_STATE(1817)] = 16744, + [SMALL_STATE(1818)] = 16762, + [SMALL_STATE(1819)] = 16780, + [SMALL_STATE(1820)] = 16798, + [SMALL_STATE(1821)] = 16816, + [SMALL_STATE(1822)] = 16834, + [SMALL_STATE(1823)] = 16852, + [SMALL_STATE(1824)] = 16870, + [SMALL_STATE(1825)] = 16888, + [SMALL_STATE(1826)] = 16906, + [SMALL_STATE(1827)] = 16924, + [SMALL_STATE(1828)] = 16936, + [SMALL_STATE(1829)] = 16954, + [SMALL_STATE(1830)] = 16976, + [SMALL_STATE(1831)] = 16998, + [SMALL_STATE(1832)] = 17020, + [SMALL_STATE(1833)] = 17042, + [SMALL_STATE(1834)] = 17064, + [SMALL_STATE(1835)] = 17082, + [SMALL_STATE(1836)] = 17100, + [SMALL_STATE(1837)] = 17118, + [SMALL_STATE(1838)] = 17136, + [SMALL_STATE(1839)] = 17154, + [SMALL_STATE(1840)] = 17176, + [SMALL_STATE(1841)] = 17198, + [SMALL_STATE(1842)] = 17216, + [SMALL_STATE(1843)] = 17234, + [SMALL_STATE(1844)] = 17252, + [SMALL_STATE(1845)] = 17270, + [SMALL_STATE(1846)] = 17288, + [SMALL_STATE(1847)] = 17306, + [SMALL_STATE(1848)] = 17324, + [SMALL_STATE(1849)] = 17342, + [SMALL_STATE(1850)] = 17360, + [SMALL_STATE(1851)] = 17378, + [SMALL_STATE(1852)] = 17396, + [SMALL_STATE(1853)] = 17414, + [SMALL_STATE(1854)] = 17432, + [SMALL_STATE(1855)] = 17450, + [SMALL_STATE(1856)] = 17468, + [SMALL_STATE(1857)] = 17486, + [SMALL_STATE(1858)] = 17504, + [SMALL_STATE(1859)] = 17522, + [SMALL_STATE(1860)] = 17540, + [SMALL_STATE(1861)] = 17558, + [SMALL_STATE(1862)] = 17576, + [SMALL_STATE(1863)] = 17594, + [SMALL_STATE(1864)] = 17612, + [SMALL_STATE(1865)] = 17630, + [SMALL_STATE(1866)] = 17648, + [SMALL_STATE(1867)] = 17670, + [SMALL_STATE(1868)] = 17692, + [SMALL_STATE(1869)] = 17710, + [SMALL_STATE(1870)] = 17728, + [SMALL_STATE(1871)] = 17746, + [SMALL_STATE(1872)] = 17764, + [SMALL_STATE(1873)] = 17782, + [SMALL_STATE(1874)] = 17800, + [SMALL_STATE(1875)] = 17818, + [SMALL_STATE(1876)] = 17840, + [SMALL_STATE(1877)] = 17858, + [SMALL_STATE(1878)] = 17876, + [SMALL_STATE(1879)] = 17898, + [SMALL_STATE(1880)] = 17916, + [SMALL_STATE(1881)] = 17934, + [SMALL_STATE(1882)] = 17952, + [SMALL_STATE(1883)] = 17970, + [SMALL_STATE(1884)] = 17988, + [SMALL_STATE(1885)] = 18010, + [SMALL_STATE(1886)] = 18032, + [SMALL_STATE(1887)] = 18050, + [SMALL_STATE(1888)] = 18068, + [SMALL_STATE(1889)] = 18086, + [SMALL_STATE(1890)] = 18104, + [SMALL_STATE(1891)] = 18122, + [SMALL_STATE(1892)] = 18140, + [SMALL_STATE(1893)] = 18158, + [SMALL_STATE(1894)] = 18176, + [SMALL_STATE(1895)] = 18194, + [SMALL_STATE(1896)] = 18212, + [SMALL_STATE(1897)] = 18230, + [SMALL_STATE(1898)] = 18248, + [SMALL_STATE(1899)] = 18266, + [SMALL_STATE(1900)] = 18284, + [SMALL_STATE(1901)] = 18302, + [SMALL_STATE(1902)] = 18320, + [SMALL_STATE(1903)] = 18338, + [SMALL_STATE(1904)] = 18356, + [SMALL_STATE(1905)] = 18374, + [SMALL_STATE(1906)] = 18392, + [SMALL_STATE(1907)] = 18410, + [SMALL_STATE(1908)] = 18428, + [SMALL_STATE(1909)] = 18446, + [SMALL_STATE(1910)] = 18464, + [SMALL_STATE(1911)] = 18482, + [SMALL_STATE(1912)] = 18500, + [SMALL_STATE(1913)] = 18518, + [SMALL_STATE(1914)] = 18536, + [SMALL_STATE(1915)] = 18548, + [SMALL_STATE(1916)] = 18566, + [SMALL_STATE(1917)] = 18588, + [SMALL_STATE(1918)] = 18606, + [SMALL_STATE(1919)] = 18624, + [SMALL_STATE(1920)] = 18636, + [SMALL_STATE(1921)] = 18654, + [SMALL_STATE(1922)] = 18672, + [SMALL_STATE(1923)] = 18690, + [SMALL_STATE(1924)] = 18712, + [SMALL_STATE(1925)] = 18730, + [SMALL_STATE(1926)] = 18748, + [SMALL_STATE(1927)] = 18766, + [SMALL_STATE(1928)] = 18784, + [SMALL_STATE(1929)] = 18802, + [SMALL_STATE(1930)] = 18824, + [SMALL_STATE(1931)] = 18842, + [SMALL_STATE(1932)] = 18864, + [SMALL_STATE(1933)] = 18882, + [SMALL_STATE(1934)] = 18900, + [SMALL_STATE(1935)] = 18918, + [SMALL_STATE(1936)] = 18936, + [SMALL_STATE(1937)] = 18954, + [SMALL_STATE(1938)] = 18972, + [SMALL_STATE(1939)] = 18994, + [SMALL_STATE(1940)] = 19012, + [SMALL_STATE(1941)] = 19030, + [SMALL_STATE(1942)] = 19048, + [SMALL_STATE(1943)] = 19070, + [SMALL_STATE(1944)] = 19088, + [SMALL_STATE(1945)] = 19106, + [SMALL_STATE(1946)] = 19124, + [SMALL_STATE(1947)] = 19142, + [SMALL_STATE(1948)] = 19160, + [SMALL_STATE(1949)] = 19178, + [SMALL_STATE(1950)] = 19196, + [SMALL_STATE(1951)] = 19214, + [SMALL_STATE(1952)] = 19232, + [SMALL_STATE(1953)] = 19250, + [SMALL_STATE(1954)] = 19268, + [SMALL_STATE(1955)] = 19286, + [SMALL_STATE(1956)] = 19304, + [SMALL_STATE(1957)] = 19326, + [SMALL_STATE(1958)] = 19344, + [SMALL_STATE(1959)] = 19362, + [SMALL_STATE(1960)] = 19380, + [SMALL_STATE(1961)] = 19398, + [SMALL_STATE(1962)] = 19416, + [SMALL_STATE(1963)] = 19438, + [SMALL_STATE(1964)] = 19456, + [SMALL_STATE(1965)] = 19474, + [SMALL_STATE(1966)] = 19496, + [SMALL_STATE(1967)] = 19518, + [SMALL_STATE(1968)] = 19540, + [SMALL_STATE(1969)] = 19558, + [SMALL_STATE(1970)] = 19576, + [SMALL_STATE(1971)] = 19594, + [SMALL_STATE(1972)] = 19612, + [SMALL_STATE(1973)] = 19630, + [SMALL_STATE(1974)] = 19648, + [SMALL_STATE(1975)] = 19666, + [SMALL_STATE(1976)] = 19688, + [SMALL_STATE(1977)] = 19706, + [SMALL_STATE(1978)] = 19724, + [SMALL_STATE(1979)] = 19742, + [SMALL_STATE(1980)] = 19760, + [SMALL_STATE(1981)] = 19778, + [SMALL_STATE(1982)] = 19796, + [SMALL_STATE(1983)] = 19814, + [SMALL_STATE(1984)] = 19832, + [SMALL_STATE(1985)] = 19850, + [SMALL_STATE(1986)] = 19868, + [SMALL_STATE(1987)] = 19886, + [SMALL_STATE(1988)] = 19904, + [SMALL_STATE(1989)] = 19922, + [SMALL_STATE(1990)] = 19940, + [SMALL_STATE(1991)] = 19958, + [SMALL_STATE(1992)] = 19976, + [SMALL_STATE(1993)] = 19994, + [SMALL_STATE(1994)] = 20012, + [SMALL_STATE(1995)] = 20030, + [SMALL_STATE(1996)] = 20048, + [SMALL_STATE(1997)] = 20066, + [SMALL_STATE(1998)] = 20084, + [SMALL_STATE(1999)] = 20102, + [SMALL_STATE(2000)] = 20120, + [SMALL_STATE(2001)] = 20138, + [SMALL_STATE(2002)] = 20156, + [SMALL_STATE(2003)] = 20174, + [SMALL_STATE(2004)] = 20192, + [SMALL_STATE(2005)] = 20210, + [SMALL_STATE(2006)] = 20228, + [SMALL_STATE(2007)] = 20246, + [SMALL_STATE(2008)] = 20264, + [SMALL_STATE(2009)] = 20277, + [SMALL_STATE(2010)] = 20292, + [SMALL_STATE(2011)] = 20308, + [SMALL_STATE(2012)] = 20324, + [SMALL_STATE(2013)] = 20340, + [SMALL_STATE(2014)] = 20356, + [SMALL_STATE(2015)] = 20372, + [SMALL_STATE(2016)] = 20388, + [SMALL_STATE(2017)] = 20404, + [SMALL_STATE(2018)] = 20420, + [SMALL_STATE(2019)] = 20436, + [SMALL_STATE(2020)] = 20452, + [SMALL_STATE(2021)] = 20468, + [SMALL_STATE(2022)] = 20484, + [SMALL_STATE(2023)] = 20500, + [SMALL_STATE(2024)] = 20516, + [SMALL_STATE(2025)] = 20532, + [SMALL_STATE(2026)] = 20548, + [SMALL_STATE(2027)] = 20564, + [SMALL_STATE(2028)] = 20580, + [SMALL_STATE(2029)] = 20596, + [SMALL_STATE(2030)] = 20612, + [SMALL_STATE(2031)] = 20628, + [SMALL_STATE(2032)] = 20644, + [SMALL_STATE(2033)] = 20660, + [SMALL_STATE(2034)] = 20676, + [SMALL_STATE(2035)] = 20692, + [SMALL_STATE(2036)] = 20708, + [SMALL_STATE(2037)] = 20724, + [SMALL_STATE(2038)] = 20740, + [SMALL_STATE(2039)] = 20756, + [SMALL_STATE(2040)] = 20772, + [SMALL_STATE(2041)] = 20788, + [SMALL_STATE(2042)] = 20804, + [SMALL_STATE(2043)] = 20820, + [SMALL_STATE(2044)] = 20830, + [SMALL_STATE(2045)] = 20846, + [SMALL_STATE(2046)] = 20862, + [SMALL_STATE(2047)] = 20878, + [SMALL_STATE(2048)] = 20892, + [SMALL_STATE(2049)] = 20908, + [SMALL_STATE(2050)] = 20924, + [SMALL_STATE(2051)] = 20940, + [SMALL_STATE(2052)] = 20956, + [SMALL_STATE(2053)] = 20972, + [SMALL_STATE(2054)] = 20986, + [SMALL_STATE(2055)] = 21002, + [SMALL_STATE(2056)] = 21018, + [SMALL_STATE(2057)] = 21034, + [SMALL_STATE(2058)] = 21050, + [SMALL_STATE(2059)] = 21066, + [SMALL_STATE(2060)] = 21082, + [SMALL_STATE(2061)] = 21098, + [SMALL_STATE(2062)] = 21112, + [SMALL_STATE(2063)] = 21128, + [SMALL_STATE(2064)] = 21144, + [SMALL_STATE(2065)] = 21160, + [SMALL_STATE(2066)] = 21176, + [SMALL_STATE(2067)] = 21192, + [SMALL_STATE(2068)] = 21206, + [SMALL_STATE(2069)] = 21222, + [SMALL_STATE(2070)] = 21238, + [SMALL_STATE(2071)] = 21254, + [SMALL_STATE(2072)] = 21270, + [SMALL_STATE(2073)] = 21286, + [SMALL_STATE(2074)] = 21300, + [SMALL_STATE(2075)] = 21316, + [SMALL_STATE(2076)] = 21332, + [SMALL_STATE(2077)] = 21348, + [SMALL_STATE(2078)] = 21364, + [SMALL_STATE(2079)] = 21380, + [SMALL_STATE(2080)] = 21396, + [SMALL_STATE(2081)] = 21410, + [SMALL_STATE(2082)] = 21422, + [SMALL_STATE(2083)] = 21436, + [SMALL_STATE(2084)] = 21452, + [SMALL_STATE(2085)] = 21468, + [SMALL_STATE(2086)] = 21484, + [SMALL_STATE(2087)] = 21498, + [SMALL_STATE(2088)] = 21514, + [SMALL_STATE(2089)] = 21530, + [SMALL_STATE(2090)] = 21546, + [SMALL_STATE(2091)] = 21562, + [SMALL_STATE(2092)] = 21576, + [SMALL_STATE(2093)] = 21592, + [SMALL_STATE(2094)] = 21608, + [SMALL_STATE(2095)] = 21624, + [SMALL_STATE(2096)] = 21640, + [SMALL_STATE(2097)] = 21656, + [SMALL_STATE(2098)] = 21672, + [SMALL_STATE(2099)] = 21686, + [SMALL_STATE(2100)] = 21702, + [SMALL_STATE(2101)] = 21716, + [SMALL_STATE(2102)] = 21732, + [SMALL_STATE(2103)] = 21748, + [SMALL_STATE(2104)] = 21764, + [SMALL_STATE(2105)] = 21780, + [SMALL_STATE(2106)] = 21796, + [SMALL_STATE(2107)] = 21812, + [SMALL_STATE(2108)] = 21828, + [SMALL_STATE(2109)] = 21841, + [SMALL_STATE(2110)] = 21854, + [SMALL_STATE(2111)] = 21863, + [SMALL_STATE(2112)] = 21872, + [SMALL_STATE(2113)] = 21881, + [SMALL_STATE(2114)] = 21890, + [SMALL_STATE(2115)] = 21899, + [SMALL_STATE(2116)] = 21912, + [SMALL_STATE(2117)] = 21921, + [SMALL_STATE(2118)] = 21934, + [SMALL_STATE(2119)] = 21947, + [SMALL_STATE(2120)] = 21960, + [SMALL_STATE(2121)] = 21969, + [SMALL_STATE(2122)] = 21982, + [SMALL_STATE(2123)] = 21995, + [SMALL_STATE(2124)] = 22008, + [SMALL_STATE(2125)] = 22021, + [SMALL_STATE(2126)] = 22034, + [SMALL_STATE(2127)] = 22047, + [SMALL_STATE(2128)] = 22060, + [SMALL_STATE(2129)] = 22073, + [SMALL_STATE(2130)] = 22086, + [SMALL_STATE(2131)] = 22099, + [SMALL_STATE(2132)] = 22112, + [SMALL_STATE(2133)] = 22125, + [SMALL_STATE(2134)] = 22138, + [SMALL_STATE(2135)] = 22151, + [SMALL_STATE(2136)] = 22164, + [SMALL_STATE(2137)] = 22177, + [SMALL_STATE(2138)] = 22190, + [SMALL_STATE(2139)] = 22203, + [SMALL_STATE(2140)] = 22216, + [SMALL_STATE(2141)] = 22225, + [SMALL_STATE(2142)] = 22238, + [SMALL_STATE(2143)] = 22251, + [SMALL_STATE(2144)] = 22264, + [SMALL_STATE(2145)] = 22277, + [SMALL_STATE(2146)] = 22290, + [SMALL_STATE(2147)] = 22303, + [SMALL_STATE(2148)] = 22312, + [SMALL_STATE(2149)] = 22325, + [SMALL_STATE(2150)] = 22338, + [SMALL_STATE(2151)] = 22351, + [SMALL_STATE(2152)] = 22360, + [SMALL_STATE(2153)] = 22371, + [SMALL_STATE(2154)] = 22384, + [SMALL_STATE(2155)] = 22397, + [SMALL_STATE(2156)] = 22410, + [SMALL_STATE(2157)] = 22423, + [SMALL_STATE(2158)] = 22436, + [SMALL_STATE(2159)] = 22449, + [SMALL_STATE(2160)] = 22462, + [SMALL_STATE(2161)] = 22475, + [SMALL_STATE(2162)] = 22488, + [SMALL_STATE(2163)] = 22501, + [SMALL_STATE(2164)] = 22510, + [SMALL_STATE(2165)] = 22523, + [SMALL_STATE(2166)] = 22536, + [SMALL_STATE(2167)] = 22549, + [SMALL_STATE(2168)] = 22562, + [SMALL_STATE(2169)] = 22572, + [SMALL_STATE(2170)] = 22582, + [SMALL_STATE(2171)] = 22592, + [SMALL_STATE(2172)] = 22602, + [SMALL_STATE(2173)] = 22612, + [SMALL_STATE(2174)] = 22622, + [SMALL_STATE(2175)] = 22632, + [SMALL_STATE(2176)] = 22642, + [SMALL_STATE(2177)] = 22652, + [SMALL_STATE(2178)] = 22662, + [SMALL_STATE(2179)] = 22672, + [SMALL_STATE(2180)] = 22682, + [SMALL_STATE(2181)] = 22692, + [SMALL_STATE(2182)] = 22702, + [SMALL_STATE(2183)] = 22712, + [SMALL_STATE(2184)] = 22722, + [SMALL_STATE(2185)] = 22732, + [SMALL_STATE(2186)] = 22742, + [SMALL_STATE(2187)] = 22752, + [SMALL_STATE(2188)] = 22762, + [SMALL_STATE(2189)] = 22772, + [SMALL_STATE(2190)] = 22782, + [SMALL_STATE(2191)] = 22792, + [SMALL_STATE(2192)] = 22802, + [SMALL_STATE(2193)] = 22812, + [SMALL_STATE(2194)] = 22822, + [SMALL_STATE(2195)] = 22830, + [SMALL_STATE(2196)] = 22840, + [SMALL_STATE(2197)] = 22850, + [SMALL_STATE(2198)] = 22860, + [SMALL_STATE(2199)] = 22870, + [SMALL_STATE(2200)] = 22880, + [SMALL_STATE(2201)] = 22890, + [SMALL_STATE(2202)] = 22898, + [SMALL_STATE(2203)] = 22908, + [SMALL_STATE(2204)] = 22918, + [SMALL_STATE(2205)] = 22928, + [SMALL_STATE(2206)] = 22938, + [SMALL_STATE(2207)] = 22948, + [SMALL_STATE(2208)] = 22958, + [SMALL_STATE(2209)] = 22968, + [SMALL_STATE(2210)] = 22978, + [SMALL_STATE(2211)] = 22988, + [SMALL_STATE(2212)] = 22998, + [SMALL_STATE(2213)] = 23008, + [SMALL_STATE(2214)] = 23016, + [SMALL_STATE(2215)] = 23026, + [SMALL_STATE(2216)] = 23036, + [SMALL_STATE(2217)] = 23046, + [SMALL_STATE(2218)] = 23056, + [SMALL_STATE(2219)] = 23066, + [SMALL_STATE(2220)] = 23076, + [SMALL_STATE(2221)] = 23086, + [SMALL_STATE(2222)] = 23096, + [SMALL_STATE(2223)] = 23106, + [SMALL_STATE(2224)] = 23116, + [SMALL_STATE(2225)] = 23126, + [SMALL_STATE(2226)] = 23136, + [SMALL_STATE(2227)] = 23146, + [SMALL_STATE(2228)] = 23156, + [SMALL_STATE(2229)] = 23166, + [SMALL_STATE(2230)] = 23176, + [SMALL_STATE(2231)] = 23186, + [SMALL_STATE(2232)] = 23196, + [SMALL_STATE(2233)] = 23206, + [SMALL_STATE(2234)] = 23216, + [SMALL_STATE(2235)] = 23226, + [SMALL_STATE(2236)] = 23236, + [SMALL_STATE(2237)] = 23246, + [SMALL_STATE(2238)] = 23256, + [SMALL_STATE(2239)] = 23266, + [SMALL_STATE(2240)] = 23276, + [SMALL_STATE(2241)] = 23286, + [SMALL_STATE(2242)] = 23296, + [SMALL_STATE(2243)] = 23306, + [SMALL_STATE(2244)] = 23316, + [SMALL_STATE(2245)] = 23324, + [SMALL_STATE(2246)] = 23331, + [SMALL_STATE(2247)] = 23338, + [SMALL_STATE(2248)] = 23345, + [SMALL_STATE(2249)] = 23352, + [SMALL_STATE(2250)] = 23359, + [SMALL_STATE(2251)] = 23366, + [SMALL_STATE(2252)] = 23373, + [SMALL_STATE(2253)] = 23380, + [SMALL_STATE(2254)] = 23387, + [SMALL_STATE(2255)] = 23394, + [SMALL_STATE(2256)] = 23401, + [SMALL_STATE(2257)] = 23408, + [SMALL_STATE(2258)] = 23413, + [SMALL_STATE(2259)] = 23420, + [SMALL_STATE(2260)] = 23425, + [SMALL_STATE(2261)] = 23432, + [SMALL_STATE(2262)] = 23439, + [SMALL_STATE(2263)] = 23446, + [SMALL_STATE(2264)] = 23453, + [SMALL_STATE(2265)] = 23460, + [SMALL_STATE(2266)] = 23467, + [SMALL_STATE(2267)] = 23474, + [SMALL_STATE(2268)] = 23481, + [SMALL_STATE(2269)] = 23488, + [SMALL_STATE(2270)] = 23495, + [SMALL_STATE(2271)] = 23502, + [SMALL_STATE(2272)] = 23509, + [SMALL_STATE(2273)] = 23516, + [SMALL_STATE(2274)] = 23523, + [SMALL_STATE(2275)] = 23530, + [SMALL_STATE(2276)] = 23537, + [SMALL_STATE(2277)] = 23544, + [SMALL_STATE(2278)] = 23551, + [SMALL_STATE(2279)] = 23558, + [SMALL_STATE(2280)] = 23565, + [SMALL_STATE(2281)] = 23569, + [SMALL_STATE(2282)] = 23573, + [SMALL_STATE(2283)] = 23577, + [SMALL_STATE(2284)] = 23581, + [SMALL_STATE(2285)] = 23585, + [SMALL_STATE(2286)] = 23589, + [SMALL_STATE(2287)] = 23593, + [SMALL_STATE(2288)] = 23597, + [SMALL_STATE(2289)] = 23601, + [SMALL_STATE(2290)] = 23605, + [SMALL_STATE(2291)] = 23609, + [SMALL_STATE(2292)] = 23613, + [SMALL_STATE(2293)] = 23617, + [SMALL_STATE(2294)] = 23621, + [SMALL_STATE(2295)] = 23625, + [SMALL_STATE(2296)] = 23629, + [SMALL_STATE(2297)] = 23633, + [SMALL_STATE(2298)] = 23637, + [SMALL_STATE(2299)] = 23641, + [SMALL_STATE(2300)] = 23645, + [SMALL_STATE(2301)] = 23649, + [SMALL_STATE(2302)] = 23653, + [SMALL_STATE(2303)] = 23657, + [SMALL_STATE(2304)] = 23661, + [SMALL_STATE(2305)] = 23665, + [SMALL_STATE(2306)] = 23669, + [SMALL_STATE(2307)] = 23673, + [SMALL_STATE(2308)] = 23677, + [SMALL_STATE(2309)] = 23681, + [SMALL_STATE(2310)] = 23685, + [SMALL_STATE(2311)] = 23689, + [SMALL_STATE(2312)] = 23693, + [SMALL_STATE(2313)] = 23697, + [SMALL_STATE(2314)] = 23701, + [SMALL_STATE(2315)] = 23705, + [SMALL_STATE(2316)] = 23709, + [SMALL_STATE(2317)] = 23713, + [SMALL_STATE(2318)] = 23717, + [SMALL_STATE(2319)] = 23721, + [SMALL_STATE(2320)] = 23725, + [SMALL_STATE(2321)] = 23729, + [SMALL_STATE(2322)] = 23733, + [SMALL_STATE(2323)] = 23737, + [SMALL_STATE(2324)] = 23741, + [SMALL_STATE(2325)] = 23745, + [SMALL_STATE(2326)] = 23749, + [SMALL_STATE(2327)] = 23753, + [SMALL_STATE(2328)] = 23757, + [SMALL_STATE(2329)] = 23761, + [SMALL_STATE(2330)] = 23765, + [SMALL_STATE(2331)] = 23769, + [SMALL_STATE(2332)] = 23773, + [SMALL_STATE(2333)] = 23777, + [SMALL_STATE(2334)] = 23781, + [SMALL_STATE(2335)] = 23785, + [SMALL_STATE(2336)] = 23789, + [SMALL_STATE(2337)] = 23793, + [SMALL_STATE(2338)] = 23797, + [SMALL_STATE(2339)] = 23801, + [SMALL_STATE(2340)] = 23805, + [SMALL_STATE(2341)] = 23809, + [SMALL_STATE(2342)] = 23813, + [SMALL_STATE(2343)] = 23817, + [SMALL_STATE(2344)] = 23821, + [SMALL_STATE(2345)] = 23825, + [SMALL_STATE(2346)] = 23829, + [SMALL_STATE(2347)] = 23833, + [SMALL_STATE(2348)] = 23837, + [SMALL_STATE(2349)] = 23841, + [SMALL_STATE(2350)] = 23845, + [SMALL_STATE(2351)] = 23849, + [SMALL_STATE(2352)] = 23853, + [SMALL_STATE(2353)] = 23857, + [SMALL_STATE(2354)] = 23861, + [SMALL_STATE(2355)] = 23865, + [SMALL_STATE(2356)] = 23869, + [SMALL_STATE(2357)] = 23873, + [SMALL_STATE(2358)] = 23877, + [SMALL_STATE(2359)] = 23881, + [SMALL_STATE(2360)] = 23885, + [SMALL_STATE(2361)] = 23889, + [SMALL_STATE(2362)] = 23893, + [SMALL_STATE(2363)] = 23897, + [SMALL_STATE(2364)] = 23901, + [SMALL_STATE(2365)] = 23905, + [SMALL_STATE(2366)] = 23909, + [SMALL_STATE(2367)] = 23913, + [SMALL_STATE(2368)] = 23917, + [SMALL_STATE(2369)] = 23921, + [SMALL_STATE(2370)] = 23925, + [SMALL_STATE(2371)] = 23929, + [SMALL_STATE(2372)] = 23933, + [SMALL_STATE(2373)] = 23937, + [SMALL_STATE(2374)] = 23941, + [SMALL_STATE(2375)] = 23945, + [SMALL_STATE(2376)] = 23949, + [SMALL_STATE(2377)] = 23953, + [SMALL_STATE(2378)] = 23957, + [SMALL_STATE(2379)] = 23961, + [SMALL_STATE(2380)] = 23965, + [SMALL_STATE(2381)] = 23969, + [SMALL_STATE(2382)] = 23973, + [SMALL_STATE(2383)] = 23977, + [SMALL_STATE(2384)] = 23981, + [SMALL_STATE(2385)] = 23985, + [SMALL_STATE(2386)] = 23989, + [SMALL_STATE(2387)] = 23993, + [SMALL_STATE(2388)] = 23997, + [SMALL_STATE(2389)] = 24001, + [SMALL_STATE(2390)] = 24005, + [SMALL_STATE(2391)] = 24009, + [SMALL_STATE(2392)] = 24013, + [SMALL_STATE(2393)] = 24017, + [SMALL_STATE(2394)] = 24021, + [SMALL_STATE(2395)] = 24025, + [SMALL_STATE(2396)] = 24029, + [SMALL_STATE(2397)] = 24033, + [SMALL_STATE(2398)] = 24037, + [SMALL_STATE(2399)] = 24041, + [SMALL_STATE(2400)] = 24045, + [SMALL_STATE(2401)] = 24049, + [SMALL_STATE(2402)] = 24053, + [SMALL_STATE(2403)] = 24057, + [SMALL_STATE(2404)] = 24061, + [SMALL_STATE(2405)] = 24065, + [SMALL_STATE(2406)] = 24069, + [SMALL_STATE(2407)] = 24073, + [SMALL_STATE(2408)] = 24077, + [SMALL_STATE(2409)] = 24081, }; 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(973), - [5] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(475), - [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(244), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(433), - [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), - [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(511), - [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), - [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), - [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), - [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), - [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), - [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), - [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), - [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), - [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), - [65] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_element, 1, 0, 0), - [67] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(880), - [70] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(274), - [73] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(480), - [76] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(480), - [79] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(481), - [82] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(233), - [85] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(442), - [88] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(1431), - [91] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(476), - [94] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(20), - [97] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(1732), - [100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(443), - [103] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(486), - [106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(882), - [109] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(882), - [112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(1231), - [115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(5), - [118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(182), - [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(72), - [126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(1408), - [129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(73), - [132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(74), - [135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(75), - [138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(76), - [141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(2002), - [144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(2004), - [147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(2011), - [150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(1951), - [153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(1882), - [156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(1883), - [159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(461), - [165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(250), - [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(438), - [173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), - [177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), - [183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(510), - [187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(881), - [191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), - [193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), - [203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), - [213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), - [215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), - [217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), - [219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), - [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), - [223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1, 0, 0), SHIFT(880), - [226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1, 0, 0), SHIFT(274), - [229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_star, 1, 0, 0), SHIFT(480), - [232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1, 0, 0), SHIFT(480), - [235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1, 0, 0), SHIFT(481), - [238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_star, 1, 0, 0), SHIFT(233), - [241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_star, 1, 0, 0), SHIFT(442), - [244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1, 0, 0), SHIFT(1431), - [247] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1, 0, 0), SHIFT(476), - [250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1, 0, 0), SHIFT(20), - [253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1, 0, 0), SHIFT(1732), - [256] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1, 0, 0), SHIFT(443), - [259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_star, 1, 0, 0), SHIFT(486), - [262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1, 0, 0), SHIFT(882), - [265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_star, 1, 0, 0), SHIFT(882), - [268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1, 0, 0), SHIFT(1231), - [271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1, 0, 0), SHIFT(5), - [274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1, 0, 0), SHIFT(182), - [277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1, 0, 0), - [279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1, 0, 0), SHIFT(72), - [284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1, 0, 0), SHIFT(1408), - [287] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1, 0, 0), SHIFT(73), - [290] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1, 0, 0), SHIFT(74), - [293] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1, 0, 0), SHIFT(75), - [296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1, 0, 0), SHIFT(76), - [299] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1, 0, 0), SHIFT(2002), - [302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1, 0, 0), SHIFT(2004), - [305] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1, 0, 0), SHIFT(2011), - [308] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1, 0, 0), SHIFT(1951), - [311] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1, 0, 0), SHIFT(1882), - [314] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1, 0, 0), SHIFT(1883), - [317] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1, 0, 0), SHIFT(565), - [320] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1, 0, 0), SHIFT(261), - [323] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_underscore, 1, 0, 0), SHIFT(507), - [326] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1, 0, 0), SHIFT(507), - [329] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1, 0, 0), SHIFT(508), - [332] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_underscore, 1, 0, 0), SHIFT(222), - [335] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_underscore, 1, 0, 0), SHIFT(445), - [338] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1, 0, 0), SHIFT(1439), - [341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1, 0, 0), SHIFT(483), - [344] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1, 0, 0), SHIFT(19), - [347] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1, 0, 0), SHIFT(1725), - [350] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1, 0, 0), SHIFT(432), - [353] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_underscore, 1, 0, 0), SHIFT(487), - [356] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1, 0, 0), SHIFT(587), - [359] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_underscore, 1, 0, 0), SHIFT(587), - [362] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1, 0, 0), SHIFT(1239), - [365] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1, 0, 0), SHIFT(94), - [368] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1, 0, 0), SHIFT(4), - [371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1, 0, 0), - [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [375] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1, 0, 0), SHIFT(55), - [378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1, 0, 0), SHIFT(1415), - [381] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1, 0, 0), SHIFT(56), - [384] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1, 0, 0), SHIFT(57), - [387] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1, 0, 0), SHIFT(58), - [390] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1, 0, 0), SHIFT(59), - [393] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1, 0, 0), SHIFT(1965), - [396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1, 0, 0), SHIFT(1966), - [399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1, 0, 0), SHIFT(1956), - [402] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1, 0, 0), SHIFT(1990), - [405] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1, 0, 0), SHIFT(1880), - [408] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1, 0, 0), SHIFT(1881), - [411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(565), - [414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(261), - [417] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(507), - [420] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(507), - [423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(508), - [426] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(222), - [429] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(445), - [432] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(1439), - [435] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(483), - [438] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(19), - [441] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(1725), - [444] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(432), - [447] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(487), - [450] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(587), - [453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(587), - [456] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(1239), - [459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(94), - [462] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(4), - [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(55), - [470] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(1415), - [473] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(56), - [476] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(57), - [479] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(58), - [482] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(59), - [485] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(1965), - [488] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(1966), - [491] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(1956), - [494] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(1990), - [497] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(1880), - [500] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(1881), - [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), - [561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(463), - [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(238), - [571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434), - [573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), - [575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), - [581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(449), - [585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), - [587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1040), - [589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), - [591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), - [601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), - [611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), - [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), - [615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), - [617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), - [619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), - [621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline, 2, 0, 0), - [623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(473), - [631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(240), - [637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(441), - [639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), - [641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), - [647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), - [651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), - [653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1133), - [655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), - [657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), - [665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), - [677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), - [679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), - [681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), - [683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), - [685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), - [687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(512), - [693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(242), - [699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(447), - [701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), - [703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), - [709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(499), - [713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(610), - [717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), - [719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), - [727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), - [737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), - [739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), - [741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), - [743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), - [745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), - [747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(457), - [753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(245), - [759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(436), - [761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), - [763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), - [769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), - [773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), - [777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), - [779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), - [787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), - [799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), - [801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), - [803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), - [805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), - [807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), - [809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), - [815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(248), - [821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), - [823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), - [825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), - [831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(468), - [835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(792), - [839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), - [841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), - [849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), - [861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), - [863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), - [865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), - [867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), - [869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), - [871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), - [873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), - [879] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(973), - [882] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(265), - [885] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(475), - [888] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(475), - [891] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(478), - [894] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(244), - [897] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(433), - [900] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(1429), - [903] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(471), - [906] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(3), - [909] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(1692), - [912] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(446), - [915] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(511), - [918] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(579), - [921] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(579), - [924] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(1233), - [927] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(6), - [930] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(2), - [933] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(27), - [936] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(1420), - [939] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(164), - [942] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(45), - [945] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(46), - [948] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(47), - [951] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(1988), - [954] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(1962), - [957] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(1987), - [960] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(2046), - [963] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(1841), - [966] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(1879), - [969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507), - [975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(222), - [981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(445), - [983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), - [985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), - [991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(487), - [995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(587), - [999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), - [1001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [1003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [1005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [1007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [1009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), - [1011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [1013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [1015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [1017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [1019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), - [1021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), - [1023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), - [1025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), - [1027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), - [1029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), - [1031] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(565), - [1034] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(261), - [1037] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(507), - [1040] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(507), - [1043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(508), - [1046] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(222), - [1049] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(445), - [1052] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(1439), - [1055] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(483), - [1058] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(19), - [1061] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(1725), - [1064] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(432), - [1067] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(487), - [1070] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(587), - [1073] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(587), - [1076] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(1239), - [1079] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(94), - [1082] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(4), - [1085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), - [1087] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(55), - [1090] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(1415), - [1093] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(56), - [1096] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(57), - [1099] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(58), - [1102] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(59), - [1105] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(1965), - [1108] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(1966), - [1111] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(1956), - [1114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(1990), - [1117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(1880), - [1120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(1881), - [1123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [1125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [1127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(480), - [1129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [1131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [1133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(233), - [1135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), - [1137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), - [1139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [1141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [1143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), - [1145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [1147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(486), - [1149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [1151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(882), - [1153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), - [1155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [1157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [1159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [1161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [1163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), - [1165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [1167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [1169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [1171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [1173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), - [1175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), - [1177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), - [1179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), - [1181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), - [1183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), - [1185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(880), - [1188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(274), - [1191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(480), - [1194] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(480), - [1197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(481), - [1200] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(233), - [1203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(442), - [1206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(1431), - [1209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(476), - [1212] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(20), - [1215] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(1732), - [1218] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(443), - [1221] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(486), - [1224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(882), - [1227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(882), - [1230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(1231), - [1233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(5), - [1236] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(182), - [1239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), - [1241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(72), - [1244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(1408), - [1247] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(73), - [1250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(74), - [1253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(75), - [1256] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(76), - [1259] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(2002), - [1262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(2004), - [1265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(2011), - [1268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(1951), - [1271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(1882), - [1274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(1883), - [1277] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(1035), - [1280] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(266), - [1283] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(463), - [1286] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(463), - [1289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(467), - [1292] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(238), - [1295] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(434), - [1298] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(1401), - [1301] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(477), - [1304] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(21), - [1307] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(1737), - [1310] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(435), - [1313] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(449), - [1316] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(1040), - [1319] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(1040), - [1322] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(1245), - [1325] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(7), - [1328] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(8), - [1331] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(89), - [1334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), - [1336] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(1436), - [1339] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(90), - [1342] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(91), - [1345] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(92), - [1348] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(93), - [1351] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(2041), - [1354] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(2042), - [1357] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(1992), - [1360] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(2001), - [1363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(1884), - [1366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(1885), - [1369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), - [1371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [1373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), - [1375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [1377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [1379] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(965), - [1382] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(271), - [1385] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(461), - [1388] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(461), - [1391] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(462), - [1394] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(250), - [1397] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(438), - [1400] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(1411), - [1403] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(509), - [1406] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(26), - [1409] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(1764), - [1412] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(439), - [1415] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(510), - [1418] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(881), - [1421] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(881), - [1424] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(1230), - [1427] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(16), - [1430] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(17), - [1433] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(177), - [1436] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(1410), - [1439] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(178), - [1442] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(179), - [1445] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(180), - [1448] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(181), - [1451] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(1995), - [1454] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(1996), - [1457] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(1994), - [1460] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(1997), - [1463] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(1894), - [1466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(1895), - [1469] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(604), - [1472] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(272), - [1475] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(473), - [1478] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(473), - [1481] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(474), - [1484] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(240), - [1487] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(441), - [1490] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(1399), - [1493] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(484), - [1496] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(22), - [1499] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(1742), - [1502] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(431), - [1505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(516), - [1508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(1133), - [1511] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(1133), - [1514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(1248), - [1517] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(9), - [1520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(10), - [1523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(107), - [1526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(1433), - [1529] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(108), - [1532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(109), - [1535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(110), - [1538] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(111), - [1541] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(1939), - [1544] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(1940), - [1547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(1938), - [1550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(1946), - [1553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(1886), - [1556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(1887), - [1559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(700), - [1562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(277), - [1565] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(512), - [1568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(512), - [1571] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(513), - [1574] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(242), - [1577] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(447), - [1580] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(1422), - [1583] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(458), - [1586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(23), - [1589] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(1749), - [1592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(448), - [1595] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(499), - [1598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(610), - [1601] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(610), - [1604] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(1228), - [1607] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(11), - [1610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(12), - [1613] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(124), - [1616] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(1406), - [1619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(125), - [1622] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(126), - [1625] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(127), - [1628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(128), - [1631] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(1953), - [1634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(1954), - [1637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(2009), - [1640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(2010), - [1643] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(1888), - [1646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(1889), - [1649] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(786), - [1652] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(262), - [1655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(457), - [1658] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(457), - [1661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(514), - [1664] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(245), - [1667] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(436), - [1670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(1437), - [1673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(466), - [1676] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(24), - [1679] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(1754), - [1682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(444), - [1685] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(470), - [1688] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(705), - [1691] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(705), - [1694] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(1244), - [1697] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(13), - [1700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(18), - [1703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(141), - [1706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(1430), - [1709] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(142), - [1712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(143), - [1715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(144), - [1718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(145), - [1721] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(1967), - [1724] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(1968), - [1727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(1943), - [1730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(1960), - [1733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(1890), - [1736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(1891), - [1739] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(879), - [1742] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(270), - [1745] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(451), - [1748] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(451), - [1751] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(455), - [1754] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(248), - [1757] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(437), - [1760] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(1407), - [1763] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(488), - [1766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(25), - [1769] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(1759), - [1772] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(440), - [1775] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(468), - [1778] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(792), - [1781] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(792), - [1784] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(1229), - [1787] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(14), - [1790] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(15), - [1793] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(159), - [1796] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(1404), - [1799] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(160), - [1802] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(161), - [1805] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(162), - [1808] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(163), - [1811] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(1981), - [1814] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(1982), - [1817] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(1974), - [1820] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(2000), - [1823] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(1892), - [1826] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(1893), - [1829] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(965), - [1832] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(271), - [1835] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(461), - [1838] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(461), - [1841] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(462), - [1844] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(250), - [1847] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(438), - [1850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(1411), - [1853] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(509), - [1856] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(26), - [1859] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(1764), - [1862] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(439), - [1865] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(510), - [1868] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(881), - [1871] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(881), - [1874] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(1230), - [1877] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(16), - [1880] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(17), - [1883] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(177), - [1886] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(1410), - [1889] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(178), - [1892] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(179), - [1895] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(180), - [1898] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(181), - [1901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(1995), - [1904] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(1996), - [1907] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(1994), - [1910] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(1997), - [1913] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(1894), - [1916] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_superscript_repeat1, 2, 0, 0), SHIFT_REPEAT(1895), - [1919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline, 1, 0, 0), - [1921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [1923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [1925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [1927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [1929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [1931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [1933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [1935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [1937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [1939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [1941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [1943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [1945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [1947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [1949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [1951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [1953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [1955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [1957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [1959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [1961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [1963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [1965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [1967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [1969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [1971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [1973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [1975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [1977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), - [1979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [1981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), - [1983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), - [1985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), - [1987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), - [1989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [1991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [1993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), - [1995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), - [1997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), - [1999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), - [2001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [2003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [2005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [2007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), - [2009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), - [2011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [2013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), - [2015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [2017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [2019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [2021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [2023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [2025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [2027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [2029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [2031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [2033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [2035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [2037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [2039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [2041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [2043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [2045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [2047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [2049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [2051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [2053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [2055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [2057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [2059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [2061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [2063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [2065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [2067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [2069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [2071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [2073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [2075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [2077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [2079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [2081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), - [2083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [2085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [2087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [2089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [2091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [2093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [2095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [2097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [2099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [2101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [2103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [2105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [2107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [2109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [2111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [2113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [2115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [2117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [2119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [2121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [2123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [2125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [2127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [2129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [2131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [2133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [2135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [2137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [2139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [2141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [2143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [2145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [2147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [2149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [2151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [2153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [2155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), - [2157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [2159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [2161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [2163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [2165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [2167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [2169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore_no_link, 1, 0, 0), SHIFT(565), - [2172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore_no_link, 1, 0, 0), SHIFT(261), - [2175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_underscore_no_link, 1, 0, 0), SHIFT(507), - [2178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore_no_link, 1, 0, 0), SHIFT(507), - [2181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore_no_link, 1, 0, 0), SHIFT(508), - [2184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_underscore_no_link, 1, 0, 0), SHIFT(445), - [2187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore_no_link, 1, 0, 0), SHIFT(1439), - [2190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore_no_link, 1, 0, 0), SHIFT(483), - [2193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore_no_link, 1, 0, 0), SHIFT(19), - [2196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore_no_link, 1, 0, 0), SHIFT(1725), - [2199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore_no_link, 1, 0, 0), SHIFT(432), - [2202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_underscore_no_link, 1, 0, 0), SHIFT(487), - [2205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore_no_link, 1, 0, 0), SHIFT(587), - [2208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_underscore_no_link, 1, 0, 0), SHIFT(587), - [2211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore_no_link, 1, 0, 0), SHIFT(1239), - [2214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore_no_link, 1, 0, 0), SHIFT(231), - [2217] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore_no_link, 1, 0, 0), SHIFT(217), - [2220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_element_no_underscore_no_link, 1, 0, 0), - [2222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [2224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore_no_link, 1, 0, 0), SHIFT(55), - [2227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore_no_link, 1, 0, 0), SHIFT(1415), - [2230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore_no_link, 1, 0, 0), SHIFT(56), - [2233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore_no_link, 1, 0, 0), SHIFT(57), - [2236] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore_no_link, 1, 0, 0), SHIFT(58), - [2239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore_no_link, 1, 0, 0), SHIFT(59), - [2242] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore_no_link, 1, 0, 0), SHIFT(1965), - [2245] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore_no_link, 1, 0, 0), SHIFT(1966), - [2248] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore_no_link, 1, 0, 0), SHIFT(1956), - [2251] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore_no_link, 1, 0, 0), SHIFT(1990), - [2254] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore_no_link, 1, 0, 0), SHIFT(1880), - [2257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore_no_link, 1, 0, 0), SHIFT(1881), - [2260] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1, 0, 0), SHIFT(565), - [2263] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1, 0, 0), SHIFT(261), - [2266] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_link, 1, 0, 0), SHIFT(507), - [2269] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1, 0, 0), SHIFT(507), - [2272] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1, 0, 0), SHIFT(508), - [2275] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_link, 1, 0, 0), SHIFT(445), - [2278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1, 0, 0), - [2280] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1, 0, 0), SHIFT(1439), - [2283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1, 0, 0), SHIFT(483), - [2286] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1, 0, 0), SHIFT(19), - [2289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1, 0, 0), SHIFT(1725), - [2292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1, 0, 0), SHIFT(432), - [2295] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_link, 1, 0, 0), SHIFT(487), - [2298] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1, 0, 0), SHIFT(587), - [2301] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_link, 1, 0, 0), SHIFT(587), - [2304] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1, 0, 0), SHIFT(1239), - [2307] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1, 0, 0), SHIFT(231), - [2310] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1, 0, 0), SHIFT(217), - [2313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [2315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1, 0, 0), SHIFT(55), - [2318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1, 0, 0), SHIFT(1415), - [2321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1, 0, 0), SHIFT(56), - [2324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1, 0, 0), SHIFT(57), - [2327] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1, 0, 0), SHIFT(58), - [2330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1, 0, 0), SHIFT(59), - [2333] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1, 0, 0), SHIFT(1965), - [2336] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1, 0, 0), SHIFT(1966), - [2339] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1, 0, 0), SHIFT(1956), - [2342] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1, 0, 0), SHIFT(1990), - [2345] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1, 0, 0), SHIFT(1880), - [2348] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1, 0, 0), SHIFT(1881), - [2351] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star_no_link, 1, 0, 0), SHIFT(880), - [2354] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star_no_link, 1, 0, 0), SHIFT(274), - [2357] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_star_no_link, 1, 0, 0), SHIFT(480), - [2360] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star_no_link, 1, 0, 0), SHIFT(480), - [2363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star_no_link, 1, 0, 0), SHIFT(481), - [2366] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_star_no_link, 1, 0, 0), SHIFT(442), - [2369] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star_no_link, 1, 0, 0), SHIFT(1431), - [2372] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star_no_link, 1, 0, 0), SHIFT(476), - [2375] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star_no_link, 1, 0, 0), SHIFT(20), - [2378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star_no_link, 1, 0, 0), SHIFT(1732), - [2381] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star_no_link, 1, 0, 0), SHIFT(443), - [2384] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_star_no_link, 1, 0, 0), SHIFT(486), - [2387] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star_no_link, 1, 0, 0), SHIFT(882), - [2390] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_star_no_link, 1, 0, 0), SHIFT(882), - [2393] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star_no_link, 1, 0, 0), SHIFT(1231), - [2396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star_no_link, 1, 0, 0), SHIFT(215), - [2399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star_no_link, 1, 0, 0), SHIFT(246), - [2402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_element_no_star_no_link, 1, 0, 0), - [2404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [2406] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star_no_link, 1, 0, 0), SHIFT(72), - [2409] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star_no_link, 1, 0, 0), SHIFT(1408), - [2412] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star_no_link, 1, 0, 0), SHIFT(73), - [2415] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star_no_link, 1, 0, 0), SHIFT(74), - [2418] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star_no_link, 1, 0, 0), SHIFT(75), - [2421] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star_no_link, 1, 0, 0), SHIFT(76), - [2424] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star_no_link, 1, 0, 0), SHIFT(2002), - [2427] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star_no_link, 1, 0, 0), SHIFT(2004), - [2430] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star_no_link, 1, 0, 0), SHIFT(2011), - [2433] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star_no_link, 1, 0, 0), SHIFT(1951), - [2436] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star_no_link, 1, 0, 0), SHIFT(1882), - [2439] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star_no_link, 1, 0, 0), SHIFT(1883), - [2442] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1, 0, 0), SHIFT(880), - [2445] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1, 0, 0), SHIFT(274), - [2448] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_link, 1, 0, 0), SHIFT(480), - [2451] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1, 0, 0), SHIFT(480), - [2454] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1, 0, 0), SHIFT(481), - [2457] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_link, 1, 0, 0), SHIFT(442), - [2460] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1, 0, 0), SHIFT(1431), - [2463] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1, 0, 0), SHIFT(476), - [2466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1, 0, 0), SHIFT(20), - [2469] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1, 0, 0), SHIFT(1732), - [2472] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1, 0, 0), SHIFT(443), - [2475] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_link, 1, 0, 0), SHIFT(486), - [2478] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1, 0, 0), SHIFT(882), - [2481] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_link, 1, 0, 0), SHIFT(882), - [2484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1, 0, 0), SHIFT(1231), - [2487] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1, 0, 0), SHIFT(215), - [2490] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1, 0, 0), SHIFT(246), - [2493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [2495] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1, 0, 0), SHIFT(72), - [2498] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1, 0, 0), SHIFT(1408), - [2501] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1, 0, 0), SHIFT(73), - [2504] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1, 0, 0), SHIFT(74), - [2507] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1, 0, 0), SHIFT(75), - [2510] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1, 0, 0), SHIFT(76), - [2513] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1, 0, 0), SHIFT(2002), - [2516] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1, 0, 0), SHIFT(2004), - [2519] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1, 0, 0), SHIFT(2011), - [2522] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1, 0, 0), SHIFT(1951), - [2525] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1, 0, 0), SHIFT(1882), - [2528] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1, 0, 0), SHIFT(1883), - [2531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [2533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [2535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), - [2537] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_link, 2, 0, 0), SHIFT_REPEAT(965), - [2540] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_link, 2, 0, 0), SHIFT_REPEAT(271), - [2543] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_link, 2, 0, 0), SHIFT_REPEAT(461), - [2546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_link, 2, 0, 0), SHIFT_REPEAT(461), - [2549] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_link, 2, 0, 0), SHIFT_REPEAT(462), - [2552] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_link, 2, 0, 0), SHIFT_REPEAT(438), - [2555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_no_link, 2, 0, 0), - [2557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_link, 2, 0, 0), SHIFT_REPEAT(1411), - [2560] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_link, 2, 0, 0), SHIFT_REPEAT(509), - [2563] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_link, 2, 0, 0), SHIFT_REPEAT(26), - [2566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_link, 2, 0, 0), SHIFT_REPEAT(1764), - [2569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_link, 2, 0, 0), SHIFT_REPEAT(439), - [2572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_link, 2, 0, 0), SHIFT_REPEAT(510), - [2575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_link, 2, 0, 0), SHIFT_REPEAT(881), - [2578] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_link, 2, 0, 0), SHIFT_REPEAT(881), - [2581] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_link, 2, 0, 0), SHIFT_REPEAT(1230), - [2584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_link, 2, 0, 0), SHIFT_REPEAT(216), - [2587] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_link, 2, 0, 0), SHIFT_REPEAT(218), - [2590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_link, 2, 0, 0), SHIFT_REPEAT(177), - [2593] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_link, 2, 0, 0), SHIFT_REPEAT(1410), - [2596] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_link, 2, 0, 0), SHIFT_REPEAT(178), - [2599] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_link, 2, 0, 0), SHIFT_REPEAT(179), - [2602] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_link, 2, 0, 0), SHIFT_REPEAT(180), - [2605] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_link, 2, 0, 0), SHIFT_REPEAT(181), - [2608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_link, 2, 0, 0), SHIFT_REPEAT(1995), - [2611] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_link, 2, 0, 0), SHIFT_REPEAT(1996), - [2614] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_link, 2, 0, 0), SHIFT_REPEAT(1994), - [2617] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_link, 2, 0, 0), SHIFT_REPEAT(1997), - [2620] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_link, 2, 0, 0), SHIFT_REPEAT(1894), - [2623] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_link, 2, 0, 0), SHIFT_REPEAT(1895), - [2626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), - [2628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [2630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [2632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [2634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star_no_link, 2, 0, 0), SHIFT_REPEAT(565), - [2637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star_no_link, 2, 0, 0), SHIFT_REPEAT(261), - [2640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star_no_link, 2, 0, 0), SHIFT_REPEAT(507), - [2643] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star_no_link, 2, 0, 0), SHIFT_REPEAT(507), - [2646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star_no_link, 2, 0, 0), SHIFT_REPEAT(508), - [2649] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star_no_link, 2, 0, 0), SHIFT_REPEAT(445), - [2652] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star_no_link, 2, 0, 0), SHIFT_REPEAT(1439), - [2655] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star_no_link, 2, 0, 0), SHIFT_REPEAT(483), - [2658] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star_no_link, 2, 0, 0), SHIFT_REPEAT(19), - [2661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star_no_link, 2, 0, 0), SHIFT_REPEAT(1725), - [2664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star_no_link, 2, 0, 0), SHIFT_REPEAT(432), - [2667] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star_no_link, 2, 0, 0), SHIFT_REPEAT(487), - [2670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star_no_link, 2, 0, 0), SHIFT_REPEAT(587), - [2673] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star_no_link, 2, 0, 0), SHIFT_REPEAT(587), - [2676] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star_no_link, 2, 0, 0), SHIFT_REPEAT(1239), - [2679] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star_no_link, 2, 0, 0), SHIFT_REPEAT(231), - [2682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star_no_link, 2, 0, 0), SHIFT_REPEAT(217), - [2685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_no_star_no_link, 2, 0, 0), - [2687] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star_no_link, 2, 0, 0), SHIFT_REPEAT(55), - [2690] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star_no_link, 2, 0, 0), SHIFT_REPEAT(1415), - [2693] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star_no_link, 2, 0, 0), SHIFT_REPEAT(56), - [2696] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star_no_link, 2, 0, 0), SHIFT_REPEAT(57), - [2699] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star_no_link, 2, 0, 0), SHIFT_REPEAT(58), - [2702] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star_no_link, 2, 0, 0), SHIFT_REPEAT(59), - [2705] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star_no_link, 2, 0, 0), SHIFT_REPEAT(1965), - [2708] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star_no_link, 2, 0, 0), SHIFT_REPEAT(1966), - [2711] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star_no_link, 2, 0, 0), SHIFT_REPEAT(1956), - [2714] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star_no_link, 2, 0, 0), SHIFT_REPEAT(1990), - [2717] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star_no_link, 2, 0, 0), SHIFT_REPEAT(1880), - [2720] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star_no_link, 2, 0, 0), SHIFT_REPEAT(1881), - [2723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [2725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [2727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), - [2729] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2, 0, 0), SHIFT_REPEAT(880), - [2732] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2, 0, 0), SHIFT_REPEAT(274), - [2735] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2, 0, 0), SHIFT_REPEAT(480), - [2738] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2, 0, 0), SHIFT_REPEAT(480), - [2741] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2, 0, 0), SHIFT_REPEAT(481), - [2744] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2, 0, 0), SHIFT_REPEAT(442), - [2747] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2, 0, 0), SHIFT_REPEAT(1431), - [2750] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2, 0, 0), SHIFT_REPEAT(476), - [2753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2, 0, 0), SHIFT_REPEAT(20), - [2756] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2, 0, 0), SHIFT_REPEAT(1732), - [2759] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2, 0, 0), SHIFT_REPEAT(443), - [2762] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2, 0, 0), SHIFT_REPEAT(486), - [2765] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2, 0, 0), SHIFT_REPEAT(882), - [2768] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2, 0, 0), SHIFT_REPEAT(882), - [2771] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2, 0, 0), SHIFT_REPEAT(1231), - [2774] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2, 0, 0), SHIFT_REPEAT(215), - [2777] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2, 0, 0), SHIFT_REPEAT(246), - [2780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2, 0, 0), - [2782] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2, 0, 0), SHIFT_REPEAT(72), - [2785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2, 0, 0), SHIFT_REPEAT(1408), - [2788] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2, 0, 0), SHIFT_REPEAT(73), - [2791] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2, 0, 0), SHIFT_REPEAT(74), - [2794] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2, 0, 0), SHIFT_REPEAT(75), - [2797] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2, 0, 0), SHIFT_REPEAT(76), - [2800] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2, 0, 0), SHIFT_REPEAT(2002), - [2803] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2, 0, 0), SHIFT_REPEAT(2004), - [2806] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2, 0, 0), SHIFT_REPEAT(2011), - [2809] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2, 0, 0), SHIFT_REPEAT(1951), - [2812] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2, 0, 0), SHIFT_REPEAT(1882), - [2815] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2, 0, 0), SHIFT_REPEAT(1883), - [2818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [2820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), - [2822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), - [2824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), - [2826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), - [2828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [2830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [2832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [2834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [2836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), - [2838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), - [2840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), - [2842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [2844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [2846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [2848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [2850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [2852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [2854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [2856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [2858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [2860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [2862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [2864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [2866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [2868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), - [2870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [2872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), - [2874] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(880), - [2877] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(260), - [2880] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(480), - [2883] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(480), - [2886] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(481), - [2889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), - [2891] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(442), - [2894] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1431), - [2897] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(476), - [2900] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(20), - [2903] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1732), - [2906] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(443), - [2909] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(486), - [2912] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(882), - [2915] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(882), - [2918] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1231), - [2921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), - [2923] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(72), - [2926] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1408), - [2929] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(73), - [2932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(74), - [2935] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(75), - [2938] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(76), - [2941] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2002), - [2944] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2004), - [2947] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2011), - [2950] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1951), - [2953] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1882), - [2956] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1883), - [2959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [2961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_base, 1, 0, 0), - [2963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_base, 1, 0, 0), - [2965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [2967] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(973), - [2970] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(263), - [2973] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(475), - [2976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(475), - [2979] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(478), - [2982] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(433), - [2985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1429), - [2988] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(471), - [2991] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(3), - [2994] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1692), - [2997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(446), - [3000] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(511), - [3003] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(579), - [3006] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(579), - [3009] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1233), - [3012] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(27), - [3015] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1420), - [3018] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(164), - [3021] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(45), - [3024] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(46), - [3027] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(47), - [3030] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1988), - [3033] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1962), - [3036] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1987), - [3039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2046), - [3042] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1841), - [3045] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1879), - [3048] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(786), - [3051] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(264), - [3054] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(457), - [3057] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(457), - [3060] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(514), - [3063] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(436), - [3066] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1437), - [3069] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(466), - [3072] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(24), - [3075] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1754), - [3078] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(444), - [3081] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(470), - [3084] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(705), - [3087] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(705), - [3090] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1244), - [3093] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(141), - [3096] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1430), - [3099] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(142), - [3102] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(143), - [3105] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(144), - [3108] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(145), - [3111] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1967), - [3114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1968), - [3117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1943), - [3120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1960), - [3123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1890), - [3126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1891), - [3129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [3131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [3133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1035), - [3136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(267), - [3139] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(463), - [3142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(463), - [3145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(467), - [3148] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(434), - [3151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1401), - [3154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(477), - [3157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(21), - [3160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1737), - [3163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(435), - [3166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(449), - [3169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1040), - [3172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1040), - [3175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1245), - [3178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(89), - [3181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1436), - [3184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(90), - [3187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(91), - [3190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(92), - [3193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(93), - [3196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2041), - [3199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2042), - [3202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1992), - [3205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2001), - [3208] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1884), - [3211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1885), - [3214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(565), - [3217] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(268), - [3220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(507), - [3223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(507), - [3226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(508), - [3229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(445), - [3232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1439), - [3235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(483), - [3238] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(19), - [3241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1725), - [3244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(432), - [3247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(487), - [3250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(587), - [3253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(587), - [3256] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1239), - [3259] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(55), - [3262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1415), - [3265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(56), - [3268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(57), - [3271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(58), - [3274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(59), - [3277] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1965), - [3280] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1966), - [3283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1956), - [3286] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1990), - [3289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1880), - [3292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1881), - [3295] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(700), - [3298] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(269), - [3301] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(512), - [3304] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(512), - [3307] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(513), - [3310] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(447), - [3313] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1422), - [3316] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(458), - [3319] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(23), - [3322] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1749), - [3325] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(448), - [3328] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(499), - [3331] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(610), - [3334] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(610), - [3337] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1228), - [3340] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(124), - [3343] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1406), - [3346] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(125), - [3349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(126), - [3352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(127), - [3355] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(128), - [3358] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1953), - [3361] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1954), - [3364] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2009), - [3367] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2010), - [3370] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1888), - [3373] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1889), - [3376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [3378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [3380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [3382] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(965), - [3385] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(273), - [3388] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(461), - [3391] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(461), - [3394] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(462), - [3397] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(438), - [3400] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1411), - [3403] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(509), - [3406] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(26), - [3409] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1764), - [3412] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(439), - [3415] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(510), - [3418] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(881), - [3421] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(881), - [3424] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1230), - [3427] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(177), - [3430] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1410), - [3433] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(178), - [3436] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(179), - [3439] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(180), - [3442] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(181), - [3445] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1995), - [3448] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1996), - [3451] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1994), - [3454] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1997), - [3457] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1894), - [3460] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1895), - [3463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [3465] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(879), - [3468] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(275), - [3471] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(451), - [3474] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(451), - [3477] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(455), - [3480] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(437), - [3483] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1407), - [3486] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(488), - [3489] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(25), - [3492] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1759), - [3495] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(440), - [3498] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(468), - [3501] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(792), - [3504] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(792), - [3507] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1229), - [3510] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(159), - [3513] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1404), - [3516] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(160), - [3519] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(161), - [3522] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(162), - [3525] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(163), - [3528] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1981), - [3531] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1982), - [3534] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1974), - [3537] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2000), - [3540] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1892), - [3543] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1893), - [3546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(604), - [3549] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(276), - [3552] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(473), - [3555] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(473), - [3558] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(474), - [3561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(441), - [3564] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1399), - [3567] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(484), - [3570] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(22), - [3573] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1742), - [3576] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(431), - [3579] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(516), - [3582] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1133), - [3585] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1133), - [3588] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1248), - [3591] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(107), - [3594] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1433), - [3597] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(108), - [3600] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(109), - [3603] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(110), - [3606] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(111), - [3609] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1939), - [3612] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1940), - [3615] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1938), - [3618] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1946), - [3621] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1886), - [3624] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1887), - [3627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [3629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__link_text, 2, 10, 0), - [3631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__link_text, 2, 10, 0), - [3633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), - [3635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), - [3637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_link, 5, 10, 0), - [3639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_link, 5, 10, 0), - [3641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), - [3643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_span, 3, 0, 5), - [3645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_span, 3, 0, 5), - [3647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_link, 3, 10, 0), - [3649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_link, 3, 10, 0), - [3651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_inline_link, 3, 30, 0), - [3653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__image_inline_link, 3, 30, 0), - [3655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_link, 4, 10, 0), - [3657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_link, 4, 10, 0), - [3659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_inline_link, 4, 30, 0), - [3661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__image_inline_link, 4, 30, 0), - [3663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_inline_link, 5, 30, 0), - [3665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__image_inline_link, 5, 30, 0), - [3667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_link, 6, 10, 0), - [3669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_link, 6, 10, 0), - [3671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_inline_link, 6, 30, 0), - [3673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__image_inline_link, 6, 30, 0), - [3675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_link, 7, 10, 0), - [3677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_link, 7, 10, 0), - [3679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_inline_link, 7, 30, 0), - [3681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__image_inline_link, 7, 30, 0), - [3683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_link, 8, 10, 0), - [3685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_link, 8, 10, 0), - [3687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_inline_link, 8, 30, 0), - [3689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__image_inline_link, 8, 30, 0), - [3691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_link, 1, 10, 0), - [3693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_link, 1, 10, 0), - [3695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), - [3697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__link_text, 1, 10, 0), - [3699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__link_text, 1, 10, 0), - [3701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), - [3703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), - [3705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_span, 2, 0, 0), - [3707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_span, 2, 0, 0), - [3709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), - [3711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), - [3713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), - [3715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), - [3717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), - [3719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), - [3721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), - [3723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), - [3725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), - [3727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), - [3729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), - [3731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), - [3733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__whitespace, 1, 0, 0), - [3735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__whitespace, 1, 0, 0), - [3737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [3739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [3741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__text_base, 1, 0, 0), - [3743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__text_base, 1, 0, 0), - [3745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [3747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), - [3749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [3751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [3753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [3755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [3757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [3759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [3761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [3763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [3765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), - [3767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [3769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [3771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [3773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [3775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [3777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_note, 2, 0, 4), - [3779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_note, 2, 0, 4), - [3781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), - [3783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_note, 3, 0, 11), - [3785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_note, 3, 0, 11), - [3787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [3789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_note, 3, 0, 12), - [3791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_note, 3, 0, 12), - [3793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [3795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), - [3797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(34), - [3799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), - [3801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__soft_line_break, 1, 0, 0), - [3803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__soft_line_break, 1, 0, 0), - [3805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [3807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_note, 4, 0, 16), - [3809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_note, 4, 0, 16), - [3811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), - [3813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [3815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), - [3817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [3819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [3821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [3823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [3825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [3827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), - [3829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [3831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [3833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [3835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [3837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [3839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [3841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [3843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [3845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [3847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [3849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [3851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), - [3853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [3855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [3857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [3859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [3861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [3863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [3865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), - [3867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [3869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [3871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [3873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), - [3875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [3877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [3879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [3881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [3883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [3885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [3887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [3889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_span, 2, 0, 0), - [3891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_span, 2, 0, 0), - [3893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_superscript, 2, 0, 0), - [3895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_superscript, 2, 0, 0), - [3897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 2, 0, 0), - [3899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 2, 0, 0), - [3901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_citation, 2, 0, 0), - [3903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_citation, 2, 0, 0), - [3905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_citation, 2, 0, 3), - [3907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_citation, 2, 0, 3), - [3909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__text_base, 2, 0, 0), - [3911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__text_base, 2, 0, 0), - [3913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hard_line_break, 2, 0, 0), - [3915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hard_line_break, 2, 0, 0), - [3917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_commonmark_attribute, 2, 2, 0), - [3919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_commonmark_attribute, 2, 2, 0), - [3921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__soft_line_break, 2, 0, 0), - [3923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__soft_line_break, 2, 0, 0), - [3925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__whitespace, 2, 0, 0), - [3927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__whitespace, 2, 0, 0), - [3929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_link, 2, 10, 0), - [3931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_link, 2, 10, 0), - [3933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__strong_emphasis_star, 3, 2, 6), - [3935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__strong_emphasis_star, 3, 2, 6), - [3937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_span, 3, 0, 0), - [3939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_span, 3, 0, 0), - [3941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__emphasis_star, 3, 1, 6), - [3943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__emphasis_star, 3, 1, 6), - [3945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__emphasis_underscore, 3, 1, 6), - [3947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__emphasis_underscore, 3, 1, 6), - [3949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__strong_emphasis_underscore, 3, 2, 6), - [3951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__strong_emphasis_underscore, 3, 2, 6), - [3953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_strikeout, 3, 0, 0), - [3955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_strikeout, 3, 0, 0), - [3957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1, 0, 2), - [3959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_element_no_star, 1, 0, 2), - [3961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_latex_span, 3, 0, 7), - [3963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_latex_span, 3, 0, 7), - [3965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_span, 3, 0, 0), - [3967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_span, 3, 0, 0), - [3969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_superscript, 3, 0, 0), - [3971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_superscript, 3, 0, 0), - [3973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 3, 0, 0), - [3975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 3, 0, 0), - [3977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_citation, 3, 0, 8), - [3979] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_citation, 3, 0, 8), - [3981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_citation, 3, 0, 9), - [3983] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_citation, 3, 0, 9), - [3985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__link_text, 3, 10, 0), - [3987] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__link_text, 3, 10, 0), - [3989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__link_text_non_empty, 3, 0, 10), - [3991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__link_text_non_empty, 3, 0, 10), - [3993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_commonmark_attribute, 3, 2, 0), - [3995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_commonmark_attribute, 3, 2, 0), - [3997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_link, 9, 10, 0), - [3999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_link, 9, 10, 0), - [4001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_inline_link, 9, 30, 0), - [4003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__image_inline_link, 9, 30, 0), - [4005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_note_reference, 3, 0, 13), - [4007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_note_reference, 3, 0, 13), - [4009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_span, 4, 0, 5), - [4011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_span, 4, 0, 5), - [4013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__emphasis_star, 4, 1, 6), - [4015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__emphasis_star, 4, 1, 6), - [4017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__emphasis_underscore, 4, 1, 6), - [4019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__emphasis_underscore, 4, 1, 6), - [4021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_commonmark_attribute, 4, 2, 0), - [4023] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_commonmark_attribute, 4, 2, 0), - [4025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_note, 4, 0, 15), - [4027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_note, 4, 0, 15), - [4029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_backslash_escape, 1, 0, 0), - [4031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_backslash_escape, 1, 0, 0), - [4033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_note, 4, 0, 17), - [4035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_note, 4, 0, 17), - [4037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_attribute, 3, 0, 0), - [4039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_attribute, 3, 0, 0), - [4041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_language_attribute, 3, 1, 18), - [4043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_language_attribute, 3, 1, 18), - [4045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shortcode_escaped, 5, 0, 0), - [4047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shortcode_escaped, 5, 0, 0), - [4049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shortcode, 5, 0, 0), - [4051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shortcode, 5, 0, 0), - [4053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_commonmark_attribute, 5, 2, 0), - [4055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_commonmark_attribute, 5, 2, 0), - [4057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_note, 5, 0, 19), - [4059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_note, 5, 0, 19), - [4061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_attribute, 4, 0, 0), - [4063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_attribute, 4, 0, 0), - [4065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shortcode_escaped, 6, 0, 0), - [4067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shortcode_escaped, 6, 0, 0), - [4069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shortcode, 6, 0, 0), - [4071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shortcode, 6, 0, 0), - [4073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_commonmark_attribute, 6, 2, 0), - [4075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_commonmark_attribute, 6, 2, 0), - [4077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_attribute, 5, 0, 0), - [4079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_attribute, 5, 0, 0), - [4081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shortcode_escaped, 7, 0, 0), - [4083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shortcode_escaped, 7, 0, 0), - [4085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shortcode, 7, 0, 0), - [4087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shortcode, 7, 0, 0), - [4089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_image, 1, 0, 0), - [4091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_image, 1, 0, 0), - [4093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 1, 0, 1), - [4095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 1, 0, 1), - [4097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline, 1, 0, 0), - [4099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inline, 1, 0, 0), - [4101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_element, 1, 0, 2), - [4103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_element, 1, 0, 2), - [4105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_strikeout, 2, 0, 0), - [4107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_strikeout, 2, 0, 0), - [4109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_latex_span, 2, 0, 0), - [4111] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_latex_span, 2, 0, 0), - [4113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1, 0, 2), - [4115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_element_no_underscore, 1, 0, 2), - [4117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1, 0, 2), SHIFT(570), - [4120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1, 0, 2), SHIFT(669), - [4123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1, 0, 2), SHIFT(678), - [4126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1, 0, 2), SHIFT(975), - [4129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1, 0, 2), SHIFT(977), - [4132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1, 0, 2), SHIFT(1067), - [4135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1, 0, 2), SHIFT(1069), - [4138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1, 0, 2), SHIFT(540), - [4141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1, 0, 2), SHIFT(542), - [4144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1, 0, 2), SHIFT(637), - [4147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1, 0, 2), SHIFT(639), - [4150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1, 0, 2), SHIFT(731), - [4153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1, 0, 2), SHIFT(733), - [4156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1, 0, 2), SHIFT(819), - [4159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1, 0, 2), SHIFT(821), - [4162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1, 0, 2), SHIFT(906), - [4165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1, 0, 2), SHIFT(908), - [4168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1, 0, 2), SHIFT(536), - [4171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_no_link, 1, 0, 0), - [4173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inline_no_link, 1, 0, 0), - [4175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_element_no_star_no_link, 1, 0, 2), - [4177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_element_no_star_no_link, 1, 0, 2), - [4179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__strong_emphasis_star_no_link, 3, 2, 6), - [4181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__strong_emphasis_star_no_link, 3, 2, 6), - [4183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), - [4185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__emphasis_star_no_link, 3, 1, 6), - [4187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__emphasis_star_no_link, 3, 1, 6), - [4189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_element_no_underscore_no_link, 1, 0, 2), - [4191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_element_no_underscore_no_link, 1, 0, 2), - [4193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), - [4195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__emphasis_underscore_no_link, 3, 1, 6), - [4197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__emphasis_underscore_no_link, 3, 1, 6), - [4199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), - [4201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__strong_emphasis_underscore_no_link, 3, 2, 6), - [4203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__strong_emphasis_underscore_no_link, 3, 2, 6), - [4205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), - [4207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__emphasis_star_no_link, 4, 1, 6), - [4209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__emphasis_star_no_link, 4, 1, 6), - [4211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__emphasis_underscore_no_link, 4, 1, 6), - [4213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__emphasis_underscore_no_link, 4, 1, 6), - [4215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), - [4217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), - [4219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1, 0, 2), - [4221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_element_no_link, 1, 0, 2), - [4223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), - [4225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), - [4227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), - [4229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), - [4231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), - [4233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1218), - [4235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), - [4237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), - [4239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [4241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), - [4243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), - [4245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1252), - [4247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [4249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [4251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [4253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [4255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [4257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [4259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [4261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [4263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [4265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [4267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [4269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [4271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [4273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [4275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [4277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [4279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [4281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), - [4283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), - [4285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), - [4287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1255), - [4289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), - [4291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_destination, 1, 10, 0), SHIFT(1256), - [4294] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_destination, 1, 10, 0), SHIFT(1263), - [4297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_destination, 1, 10, 0), SHIFT(1252), - [4300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_link_destination, 1, 10, 0), SHIFT(1252), - [4303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), - [4305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [4307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [4309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [4311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [4313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [4315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [4317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [4319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [4321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [4323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), - [4325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), - [4327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1258), - [4329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), - [4331] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_destination, 1, 10, 0), SHIFT(1259), - [4334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [4336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [4338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [4340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [4342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [4344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [4346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [4348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [4350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [4352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), - [4354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), - [4356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1261), - [4358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), - [4360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), - [4362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), - [4364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), - [4366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1259), - [4368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), - [4370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), - [4372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), - [4374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 2, 0, 0), SHIFT_REPEAT(1277), - [4377] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 2, 0, 0), SHIFT_REPEAT(1213), - [4380] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 2, 0, 0), SHIFT_REPEAT(1256), - [4383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 2, 0, 0), - [4385] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_title_repeat1, 2, 0, 0), SHIFT_REPEAT(1256), - [4388] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 2, 0, 0), SHIFT_REPEAT(1263), - [4391] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 2, 0, 0), SHIFT_REPEAT(1252), - [4394] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_title_repeat1, 2, 0, 0), SHIFT_REPEAT(1252), - [4397] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 1, 0, 0), SHIFT(1277), - [4400] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 1, 0, 0), SHIFT(1262), - [4403] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 1, 0, 0), SHIFT(1253), - [4406] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_title_repeat1, 1, 0, 0), SHIFT(1253), - [4409] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 1, 0, 0), SHIFT(1254), - [4412] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 1, 0, 0), SHIFT(1283), - [4415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 1, 0, 0), - [4417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_title_repeat1, 1, 0, 0), - [4419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), - [4421] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 2, 0, 0), SHIFT_REPEAT(1277), - [4424] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 2, 0, 0), SHIFT_REPEAT(1215), - [4427] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 2, 0, 0), SHIFT_REPEAT(1259), - [4430] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_title_repeat2, 2, 0, 0), SHIFT_REPEAT(1259), - [4433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 2, 0, 0), - [4435] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 2, 0, 0), SHIFT_REPEAT(1263), - [4438] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 2, 0, 0), SHIFT_REPEAT(1252), - [4441] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_title_repeat2, 2, 0, 0), SHIFT_REPEAT(1252), - [4444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), - [4446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), - [4448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1256), - [4450] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 1, 0, 0), SHIFT(1277), - [4453] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 1, 0, 0), SHIFT(1262), - [4456] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 1, 0, 0), SHIFT(1253), - [4459] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_title_repeat2, 1, 0, 0), SHIFT(1253), - [4462] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 1, 0, 0), SHIFT(1254), - [4465] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 1, 0, 0), SHIFT(1283), - [4468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 1, 0, 0), - [4470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_title_repeat2, 1, 0, 0), - [4472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), - [4474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), - [4476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), - [4478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1253), - [4480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_destination, 1, 10, 0), - [4482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_destination, 1, 10, 0), - [4484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), - [4486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), - [4488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), - [4490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1265), - [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), - [4494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_destination, 2, 10, 0), - [4496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_destination, 2, 10, 0), - [4498] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat3, 2, 0, 0), SHIFT_REPEAT(1277), - [4501] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat3, 2, 0, 0), SHIFT_REPEAT(1222), - [4504] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat3, 2, 0, 0), SHIFT_REPEAT(1265), - [4507] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_title_repeat3, 2, 0, 0), SHIFT_REPEAT(1265), - [4510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_title_repeat3, 2, 0, 0), - [4512] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat3, 2, 0, 0), SHIFT_REPEAT(1263), - [4515] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat3, 2, 0, 0), SHIFT_REPEAT(1252), - [4518] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_title_repeat3, 2, 0, 0), SHIFT_REPEAT(1252), - [4521] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 2, 0, 0), SHIFT_REPEAT(1277), - [4524] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 2, 0, 0), SHIFT_REPEAT(1223), - [4527] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 2, 0, 0), SHIFT_REPEAT(1253), - [4530] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_destination_repeat2, 2, 0, 0), SHIFT_REPEAT(1253), - [4533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 2, 0, 0), SHIFT_REPEAT(1254), - [4536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 2, 0, 0), - [4538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_destination_repeat2, 2, 0, 0), - [4540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_destination, 3, 10, 0), - [4542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_destination, 3, 10, 0), - [4544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), - [4546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), - [4548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), - [4550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), - [4552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), - [4554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1293), - [4556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), - [4558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [4560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [4562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [4564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [4566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [4568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [4570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_inline_link_repeat1, 2, 0, 0), - [4572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_inline_link_repeat1, 2, 0, 0), - [4574] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_link_repeat1, 2, 0, 0), SHIFT_REPEAT(1263), - [4577] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_link_repeat1, 2, 0, 0), SHIFT_REPEAT(1252), - [4580] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_inline_link_repeat1, 2, 0, 0), SHIFT_REPEAT(1252), - [4583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [4585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [4587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [4589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [4591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [4593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [4595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [4597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), - [4599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), - [4601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), - [4603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1289), - [4605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [4607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [4609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [4611] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat1, 2, 0, 0), SHIFT_REPEAT(1277), - [4614] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat1, 2, 0, 0), SHIFT_REPEAT(1246), - [4617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat1, 2, 0, 0), - [4619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat1, 2, 0, 0), SHIFT_REPEAT(1289), - [4622] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_destination_repeat1, 2, 0, 0), SHIFT_REPEAT(1289), - [4625] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat1, 2, 0, 0), SHIFT_REPEAT(1252), - [4628] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_destination_repeat1, 2, 0, 0), SHIFT_REPEAT(1252), - [4631] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_span_repeat1, 2, 0, 0), SHIFT_REPEAT(1290), - [4634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_span_repeat1, 2, 0, 0), SHIFT_REPEAT(1294), - [4637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_span_repeat1, 2, 0, 0), SHIFT_REPEAT(1293), - [4640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_code_span_repeat1, 2, 0, 0), SHIFT_REPEAT(1293), - [4643] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_span_repeat1, 2, 0, 0), SHIFT_REPEAT(1302), - [4646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_code_span_repeat1, 2, 0, 0), - [4648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [4650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), - [4652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), - [4654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [4656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 1, 0, 0), - [4658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_destination_repeat2, 1, 0, 0), - [4660] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 1, 0, 0), REDUCE(sym_link_title, 2, 0, 0), - [4663] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_destination_repeat2, 1, 0, 0), REDUCE(sym_link_title, 2, 0, 0), - [4666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), - [4668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), - [4670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), - [4672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), - [4674] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 1, 0, 0), REDUCE(aux_sym_link_title_repeat1, 1, 0, 0), - [4677] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_destination_repeat2, 1, 0, 0), REDUCE(aux_sym_link_title_repeat1, 1, 0, 0), - [4680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), - [4682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 1, 0, 0), SHIFT_REPEAT(1903), - [4685] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 1, 0, 0), REDUCE(aux_sym_link_title_repeat2, 1, 0, 0), - [4688] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_destination_repeat2, 1, 0, 0), REDUCE(aux_sym_link_title_repeat2, 1, 0, 0), - [4691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), - [4693] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 1, 0, 0), SHIFT_REPEAT(1903), - [4696] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 1, 0, 0), REDUCE(aux_sym_link_title_repeat3, 1, 0, 0), - [4699] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_destination_repeat2, 1, 0, 0), REDUCE(aux_sym_link_title_repeat3, 1, 0, 0), - [4702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_title_repeat3, 1, 0, 0), - [4704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_title_repeat3, 1, 0, 0), - [4706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), - [4708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), - [4710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), - [4712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), - [4714] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_key_value_value_repeat1, 2, 0, 0), SHIFT_REPEAT(1303), - [4717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_key_value_value_repeat1, 2, 0, 0), - [4719] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_key_value_value_repeat1, 2, 0, 0), SHIFT_REPEAT(1303), - [4722] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_key_value_value_repeat1, 2, 0, 0), SHIFT_REPEAT(1301), - [4725] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_key_value_value_repeat1, 2, 0, 0), SHIFT_REPEAT(1266), - [4728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), - [4730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), - [4732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1300), - [4734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), - [4736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), - [4738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 3, 0, 0), - [4740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_title_repeat1, 3, 0, 0), - [4742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 3, 0, 0), - [4744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_title_repeat2, 3, 0, 0), - [4746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__link_destination_parenthesis, 3, 0, 0), - [4748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__link_destination_parenthesis, 3, 0, 0), - [4750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), - [4752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1303), - [4754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), - [4756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), - [4758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__link_destination_parenthesis, 2, 0, 0), - [4760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__link_destination_parenthesis, 2, 0, 0), - [4762] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__link_destination_parenthesis, 2, 0, 0), REDUCE(sym_link_title, 2, 0, 0), - [4765] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__link_destination_parenthesis, 2, 0, 0), REDUCE(sym_link_title, 2, 0, 0), - [4768] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat3, 1, 0, 0), SHIFT_REPEAT(1903), - [4771] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 2, 0, 0), REDUCE(aux_sym_link_title_repeat1, 2, 0, 0), - [4774] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_destination_repeat2, 2, 0, 0), REDUCE(aux_sym_link_title_repeat1, 2, 0, 0), - [4777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), - [4779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), - [4781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), - [4783] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_key_value_value_repeat2, 2, 0, 0), SHIFT_REPEAT(1300), - [4786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_key_value_value_repeat2, 2, 0, 0), - [4788] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_key_value_value_repeat2, 2, 0, 0), SHIFT_REPEAT(1300), - [4791] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_key_value_value_repeat2, 2, 0, 0), SHIFT_REPEAT(1298), - [4794] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_key_value_value_repeat2, 2, 0, 0), SHIFT_REPEAT(1280), - [4797] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 2, 0, 0), REDUCE(aux_sym_link_title_repeat3, 2, 0, 0), - [4800] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_destination_repeat2, 2, 0, 0), REDUCE(aux_sym_link_title_repeat3, 2, 0, 0), - [4803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_title_repeat3, 2, 0, 0), - [4805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_title_repeat2, 2, 0, 0), - [4807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_title_repeat1, 2, 0, 0), - [4809] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 2, 0, 0), REDUCE(aux_sym_link_title_repeat2, 2, 0, 0), - [4812] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_destination_repeat2, 2, 0, 0), REDUCE(aux_sym_link_title_repeat2, 2, 0, 0), - [4815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__text_no_angle, 1, 0, 0), - [4817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__text_no_angle, 1, 0, 0), - [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), - [4821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__code_span_text_base, 1, 0, 0), - [4823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__code_span_text_base, 1, 0, 0), - [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), - [4827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_title_repeat3, 3, 0, 0), - [4829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_title_repeat3, 3, 0, 0), - [4831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), - [4833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), - [4835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__text_no_angle, 2, 0, 0), - [4837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__text_no_angle, 2, 0, 0), - [4839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__code_span_text_base, 2, 0, 0), - [4841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__code_span_text_base, 2, 0, 0), - [4843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), - [4845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_key_value_value_repeat2, 1, 0, 0), - [4847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_key_value_value_repeat2, 1, 0, 0), - [4849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), - [4851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), - [4853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_code_span_repeat1, 1, 0, 0), - [4855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_code_span_repeat1, 1, 0, 0), - [4857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_key_value_value_repeat1, 1, 0, 0), - [4859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_key_value_value_repeat1, 1, 0, 0), - [4861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), - [4863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_key_value_value_repeat2, 2, 0, 0), - [4865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_key_value_value_repeat1, 2, 0, 0), - [4867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1919), - [4869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1904), - [4871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), - [4873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), - [4875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), - [4877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), - [4879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1412), - [4881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), - [4883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1909), - [4885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), - [4887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1816), - [4889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), - [4891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), - [4893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [4895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [4897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [4899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), - [4901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [4903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [4905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [4907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [4909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), - [4911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), - [4913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [4915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), - [4917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [4919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [4921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), - [4923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), - [4925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), - [4927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [4929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [4931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [4933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [4935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), - [4937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [4939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [4941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [4943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [4945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [4947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [4949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [4951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [4953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [4955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), - [4957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), - [4959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [4961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [4963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [4965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), - [4967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1915), - [4969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1912), - [4971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), - [4973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), - [4975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), - [4977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), - [4979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [4981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), - [4983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1405), - [4985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [4987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [4989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [4991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [4993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [4995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), - [4997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), - [4999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), - [5001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), - [5003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), - [5005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1899), - [5007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [5009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [5011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [5013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [5015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [5017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [5019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [5021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [5023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), - [5025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), - [5027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), - [5029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), - [5031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [5033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [5035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [5037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [5039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [5041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [5043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), - [5045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), - [5047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), - [5049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [5051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), - [5053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), - [5055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), - [5057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [5059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [5061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [5063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [5065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), - [5067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [5069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [5071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), - [5073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [5075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [5077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [5079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [5081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [5083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [5085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [5087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), - [5089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), - [5091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), - [5093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [5095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [5097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [5099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), - [5101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), - [5103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), - [5105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [5107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [5109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [5111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), - [5113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), - [5115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), - [5117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [5119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), - [5121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), - [5123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), - [5125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [5127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [5129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), - [5131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), - [5133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), - [5135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [5137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [5139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), - [5141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), - [5143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), - [5145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), - [5147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1564), - [5149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1469), - [5151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [5153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), - [5155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [5157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), - [5159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [5161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [5163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), - [5165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [5167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), - [5169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [5171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [5173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), - [5175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), - [5177] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_link_repeat1, 2, 0, 0), SHIFT_REPEAT(1405), - [5180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_inline_link_repeat1, 2, 0, 0), SHIFT_REPEAT(1405), - [5183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [5185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [5187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [5189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [5191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [5193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), - [5195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), - [5197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), - [5199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [5201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_latex_span_repeat1, 2, 0, 0), SHIFT_REPEAT(1617), - [5204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_latex_span_repeat1, 2, 0, 0), SHIFT_REPEAT(1564), - [5207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_latex_span_repeat1, 2, 0, 0), SHIFT_REPEAT(1469), - [5210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_latex_span_repeat1, 2, 0, 0), - [5212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [5214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), - [5216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [5218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), - [5220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [5222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), - [5224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [5226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), - [5228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), - [5230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [5232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), - [5234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [5236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), - [5238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), - [5240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), - [5242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [5244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), - [5246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), - [5248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), - [5250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [5252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), - [5254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), - [5256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), - [5258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [5260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), - [5262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [5264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [5266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [5268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [5270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [5272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [5274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), - [5276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [5278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [5280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [5282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [5284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [5286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [5288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [5290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [5292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [5294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [5296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [5298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [5300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [5302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [5304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [5306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), - [5308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [5310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [5312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [5314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [5316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_latex_span_repeat1, 1, 0, 0), - [5318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_latex_span_repeat1, 1, 0, 0), - [5320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [5322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [5324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [5326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [5328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [5330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [5332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), - [5334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [5336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [5338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [5340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [5342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [5344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [5346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [5348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [5350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [5352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [5354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [5356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [5358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [5360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [5362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [5364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [5366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [5368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [5370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_commonmark_attribute_repeat1, 2, 0, 0), - [5372] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_commonmark_attribute_repeat1, 2, 0, 0), SHIFT_REPEAT(1681), - [5375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_commonmark_attribute_repeat1, 2, 0, 0), - [5377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_commonmark_attribute_repeat1, 1, 0, 0), - [5379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), - [5381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_commonmark_attribute_repeat1, 1, 0, 0), - [5383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), - [5385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1380), - [5387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [5389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [5391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), - [5393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2037), - [5395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), - [5397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), - [5399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), - [5401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1377), - [5403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), - [5405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), - [5407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), - [5409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), - [5411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [5413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), - [5415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [5417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_commonmark_attribute_repeat2, 2, 0, 0), - [5419] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_commonmark_attribute_repeat2, 2, 0, 0), SHIFT_REPEAT(1728), - [5422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_commonmark_attribute_repeat2, 2, 0, 0), - [5424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_commonmark_attribute_repeat3, 2, 0, 0), - [5426] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_commonmark_attribute_repeat3, 2, 0, 0), SHIFT_REPEAT(1899), - [5429] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_commonmark_attribute_repeat3, 2, 0, 0), SHIFT_REPEAT(1899), - [5432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [5434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1958), - [5436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), - [5438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_commonmark_attribute_repeat2, 1, 0, 0), - [5440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), - [5442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_commonmark_attribute_repeat2, 1, 0, 0), - [5444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [5446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1975), - [5448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), - [5450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1941), - [5452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), - [5454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1947), - [5456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), - [5458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1932), - [5460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), - [5462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1973), - [5464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), - [5466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2031), - [5468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), - [5470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2043), - [5472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), - [5474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [5476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), - [5478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1873), - [5480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), - [5482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1874), - [5484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_title, 2, 0, 0), - [5486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_title, 2, 0, 0), - [5488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key_value_value, 1, 0, 0), - [5490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_key_value_value, 1, 0, 0), - [5492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key_value_value, 2, 0, 0), - [5494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_key_value_value, 2, 0, 0), - [5496] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shortcode_escaped_repeat2, 2, 0, 0), SHIFT_REPEAT(1405), - [5499] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_shortcode_escaped_repeat2, 2, 0, 0), SHIFT_REPEAT(1405), - [5502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_title, 3, 0, 0), - [5504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_title, 3, 0, 0), - [5506] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shortcode_escaped_repeat1, 2, 0, 0), SHIFT_REPEAT(1412), - [5509] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_shortcode_escaped_repeat1, 2, 0, 0), SHIFT_REPEAT(1412), - [5512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key_value_value, 3, 0, 0), - [5514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_key_value_value, 3, 0, 0), - [5516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute, 3, 0, 0), - [5518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__attribute, 3, 0, 0), - [5520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute, 5, 0, 0), - [5522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__attribute, 5, 0, 0), - [5524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute, 4, 0, 0), - [5526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__attribute, 4, 0, 0), - [5528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), - [5530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__shortcode_value, 1, 0, 0), SHIFT(1405), - [5533] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__shortcode_value, 1, 0, 0), SHIFT(1405), - [5536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_commonmark_attribute_repeat3, 1, 0, 0), - [5538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), - [5540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_commonmark_attribute_repeat3, 1, 0, 0), - [5542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), - [5544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [5546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [5548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [5550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), - [5552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), - [5554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), - [5556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [5558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_commonmark_attribute_repeat3, 2, 0, 0), - [5560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [5562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [5564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), - [5566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [5568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [5570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), - [5572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), - [5574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [5576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), - [5578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [5580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [5582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [5584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), - [5586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [5588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shortcode_boolean, 1, 0, 0), - [5590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shortcode_boolean, 1, 0, 0), - [5592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), - [5594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [5596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [5598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [5600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [5602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [5604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [5606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [5608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), - [5610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), - [5612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [5614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), - [5616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), - [5618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [5620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), - [5622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [5624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), - [5626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), - [5628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), - [5630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [5632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), - [5634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), - [5636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shortcode_naked_string, 1, 0, 0), - [5638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shortcode_naked_string, 1, 0, 0), - [5640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [5642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), - [5644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shortcode_keyword_param, 4, 0, 0), - [5646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shortcode_keyword_param, 4, 0, 0), - [5648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shortcode_string, 1, 0, 0), - [5650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shortcode_string, 1, 0, 0), - [5652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [5654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), - [5656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shortcode_keyword_param, 5, 0, 0), - [5658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shortcode_keyword_param, 5, 0, 0), - [5660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), - [5662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), - [5664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_shortcode_escaped_repeat1, 2, 0, 0), - [5666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_shortcode_escaped_repeat1, 2, 0, 0), - [5668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [5670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), - [5672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [5674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), - [5676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_shortcode_escaped_repeat2, 2, 0, 0), - [5678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_shortcode_escaped_repeat2, 2, 0, 0), - [5680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shortcode_keyword_param, 3, 0, 0), - [5682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shortcode_keyword_param, 3, 0, 0), - [5684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [5686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), - [5688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [5690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), - [5692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), - [5694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), - [5696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [5698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), - [5700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), - [5702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), - [5704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [5706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), - [5708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [5710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), - [5712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [5714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), - [5716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), - [5718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [5720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [5722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [5724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), - [5726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [5728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), - [5730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), - [5732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [5734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), - [5736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), - [5738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), - [5740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), - [5742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [5744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [5746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [5748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [5750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [5752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), - [5754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), - [5756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [5758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), - [5760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [5762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_description, 3, 30, 0), - [5764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [5766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [5768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), - [5770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [5772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [5774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), - [5776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), - [5778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), - [5780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), - [5782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), - [5784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), - [5786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), - [5788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [5790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [5792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [5794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_description_non_empty, 4, 0, 14), - [5796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [5798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), - [5800] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [5802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [5804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), - [5806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), - [5808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [5810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), - [5812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [5814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [5816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [5818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), - [5820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), - [5822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [5824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), - [5826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), - [5828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [5830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), - [5832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), - [5834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [5836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), - [5838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), - [5840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [5842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [5844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), - [5846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), - [5848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), - [5850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [5852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [5854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [5856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), - [5858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [5860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [5862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [5864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [5866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), - [5868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), - [5870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), - [5872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), - [5874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), - [5876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), - [5878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), - [5880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), - [5882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), - [5884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), - [5886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), - [5888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), - [5890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), - [5892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), - [5894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), - [5896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), - [5898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), - [5900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [5902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [5904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [5906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [5908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), - [5910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [5912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [5914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [5916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [5918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), - [5920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), - [5922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [5924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), - [5926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), - [5928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [5930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), + [5] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), + [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), + [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(591), + [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1160), + [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), + [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), + [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), + [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), + [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), + [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), + [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), + [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), + [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(624), + [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(357), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), + [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), + [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), + [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), + [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(920), + [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), + [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), + [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), + [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), + [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), + [139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2391), + [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2239), + [143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2240), + [145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1, 0, 0), SHIFT(1256), + [148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1, 0, 0), SHIFT(373), + [151] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_underscore, 1, 0, 0), SHIFT(600), + [154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1, 0, 0), SHIFT(600), + [157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1, 0, 0), SHIFT(601), + [160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_underscore, 1, 0, 0), SHIFT(338), + [163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_underscore, 1, 0, 0), SHIFT(564), + [166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1, 0, 0), SHIFT(1735), + [169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1, 0, 0), SHIFT(639), + [172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1, 0, 0), SHIFT(67), + [175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1, 0, 0), SHIFT(68), + [178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1, 0, 0), SHIFT(69), + [181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1, 0, 0), SHIFT(70), + [184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1, 0, 0), SHIFT(20), + [187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1, 0, 0), SHIFT(2047), + [190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1, 0, 0), SHIFT(565), + [193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_underscore, 1, 0, 0), SHIFT(641), + [196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1, 0, 0), SHIFT(1262), + [199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_underscore, 1, 0, 0), SHIFT(1262), + [202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1, 0, 0), SHIFT(1535), + [205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1, 0, 0), SHIFT(54), + [208] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1, 0, 0), SHIFT(5), + [211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1, 0, 0), + [213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [215] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1, 0, 0), SHIFT(62), + [218] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1, 0, 0), SHIFT(1727), + [221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1, 0, 0), SHIFT(63), + [224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1, 0, 0), SHIFT(64), + [227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1, 0, 0), SHIFT(65), + [230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1, 0, 0), SHIFT(66), + [233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1, 0, 0), SHIFT(2327), + [236] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1, 0, 0), SHIFT(2329), + [239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1, 0, 0), SHIFT(2345), + [242] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1, 0, 0), SHIFT(2365), + [245] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1, 0, 0), SHIFT(2226), + [248] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1, 0, 0), SHIFT(2227), + [251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_element, 1, 0, 0), + [253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(1377), + [256] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(379), + [259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(635), + [262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(635), + [265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(637), + [268] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(329), + [271] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(572), + [274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(1708), + [277] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(643), + [280] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(93), + [283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(94), + [286] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(95), + [289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(96), + [292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(21), + [295] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(2053), + [298] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(573), + [301] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(650), + [304] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(1385), + [307] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(1385), + [310] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(1525), + [313] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(3), + [316] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(61), + [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(88), + [324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(1732), + [327] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(89), + [330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(90), + [333] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(91), + [336] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(92), + [339] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(2357), + [342] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(2358), + [345] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(2301), + [348] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(2322), + [351] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(2228), + [354] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(2229), + [357] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1, 0, 0), SHIFT(1377), + [360] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1, 0, 0), SHIFT(379), + [363] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_star, 1, 0, 0), SHIFT(635), + [366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1, 0, 0), SHIFT(635), + [369] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1, 0, 0), SHIFT(637), + [372] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_star, 1, 0, 0), SHIFT(329), + [375] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_star, 1, 0, 0), SHIFT(572), + [378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1, 0, 0), SHIFT(1708), + [381] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1, 0, 0), SHIFT(643), + [384] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1, 0, 0), SHIFT(93), + [387] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1, 0, 0), SHIFT(94), + [390] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1, 0, 0), SHIFT(95), + [393] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1, 0, 0), SHIFT(96), + [396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1, 0, 0), SHIFT(21), + [399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1, 0, 0), SHIFT(2053), + [402] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1, 0, 0), SHIFT(573), + [405] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_star, 1, 0, 0), SHIFT(650), + [408] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1, 0, 0), SHIFT(1385), + [411] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_star, 1, 0, 0), SHIFT(1385), + [414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1, 0, 0), SHIFT(1525), + [417] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1, 0, 0), SHIFT(3), + [420] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1, 0, 0), SHIFT(61), + [423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1, 0, 0), + [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [427] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1, 0, 0), SHIFT(88), + [430] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1, 0, 0), SHIFT(1732), + [433] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1, 0, 0), SHIFT(89), + [436] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1, 0, 0), SHIFT(90), + [439] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1, 0, 0), SHIFT(91), + [442] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1, 0, 0), SHIFT(92), + [445] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1, 0, 0), SHIFT(2357), + [448] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1, 0, 0), SHIFT(2358), + [451] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1, 0, 0), SHIFT(2301), + [454] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1, 0, 0), SHIFT(2322), + [457] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1, 0, 0), SHIFT(2228), + [460] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1, 0, 0), SHIFT(2229), + [463] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(1256), + [466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(373), + [469] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(600), + [472] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(600), + [475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(601), + [478] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(338), + [481] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(564), + [484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(1735), + [487] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(639), + [490] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(67), + [493] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(68), + [496] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(69), + [499] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(70), + [502] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(20), + [505] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(2047), + [508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(565), + [511] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(641), + [514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(1262), + [517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(1262), + [520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(1535), + [523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(54), + [526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(5), + [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [531] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(62), + [534] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(1727), + [537] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(63), + [540] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(64), + [543] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(65), + [546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(66), + [549] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(2327), + [552] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(2329), + [555] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(2345), + [558] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(2365), + [561] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(2226), + [564] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(2227), + [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [585] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(565), + [588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [590] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(573), + [593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(583), + [643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(349), + [649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), + [651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), + [653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2073), + [667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), + [671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), + [673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1259), + [675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), + [677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), + [685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), + [691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2297), + [697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), + [699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), + [701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2348), + [703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2234), + [705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), + [707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(588), + [713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(355), + [719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), + [721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), + [723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), + [729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), + [739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), + [741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(633), + [743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1022), + [747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), + [749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), + [757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), + [767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), + [769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2318), + [771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), + [773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), + [775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2242), + [777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), + [783] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(1130), + [786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(377), + [789] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(645), + [792] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(645), + [795] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(646), + [798] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(323), + [801] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(566), + [804] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(1729), + [807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(602), + [810] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(45), + [813] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(48), + [816] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(49), + [819] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(51), + [822] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(2), + [825] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(2082), + [828] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(555), + [831] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(591), + [834] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(1160), + [837] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(1160), + [840] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(1517), + [843] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(24), + [846] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(4), + [849] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(56), + [852] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(1703), + [855] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(59), + [858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(41), + [861] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(42), + [864] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(44), + [867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(2367), + [870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(2360), + [873] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(2403), + [876] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(2400), + [879] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(2189), + [882] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(2193), + [885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), + [887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(600), + [891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(338), + [897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), + [899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), + [901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), + [915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(641), + [919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), + [921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1262), + [923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), + [925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), + [931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), + [935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), + [945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), + [947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), + [949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), + [951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2226), + [953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), + [955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(1256), + [958] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(373), + [961] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(600), + [964] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(600), + [967] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(601), + [970] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(338), + [973] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(564), + [976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(1735), + [979] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(639), + [982] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(67), + [985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(68), + [988] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(69), + [991] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(70), + [994] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(20), + [997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(2047), + [1000] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(565), + [1003] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(641), + [1006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(1262), + [1009] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(1262), + [1012] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(1535), + [1015] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(54), + [1018] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(5), + [1021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), + [1023] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(62), + [1026] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(1727), + [1029] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(63), + [1032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(64), + [1035] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(65), + [1038] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(66), + [1041] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(2327), + [1044] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(2329), + [1047] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(2345), + [1050] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(2365), + [1053] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(2226), + [1056] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(2227), + [1059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), + [1061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [1063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(635), + [1065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [1067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [1069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), + [1071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), + [1073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), + [1075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [1077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [1079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [1081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [1083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [1085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [1087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), + [1089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [1091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(650), + [1093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), + [1095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1385), + [1097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), + [1099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [1101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [1103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), + [1105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [1107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), + [1109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [1111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [1113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [1115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [1117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), + [1119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), + [1121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2301), + [1123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), + [1125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2228), + [1127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2229), + [1129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(1377), + [1132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(379), + [1135] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(635), + [1138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(635), + [1141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(637), + [1144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(329), + [1147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(572), + [1150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(1708), + [1153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(643), + [1156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(93), + [1159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(94), + [1162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(95), + [1165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(96), + [1168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(21), + [1171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(2053), + [1174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(573), + [1177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(650), + [1180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(1385), + [1183] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(1385), + [1186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(1525), + [1189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(3), + [1192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(61), + [1195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), + [1197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(88), + [1200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(1732), + [1203] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(89), + [1206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(90), + [1209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(91), + [1212] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(92), + [1215] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(2357), + [1218] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(2358), + [1221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(2301), + [1224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(2322), + [1227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(2228), + [1230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(2229), + [1233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(1169), + [1236] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(366), + [1239] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(597), + [1242] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(597), + [1245] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(606), + [1248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(341), + [1251] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(571), + [1254] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(1736), + [1257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(594), + [1260] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(119), + [1263] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(120), + [1266] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(121), + [1269] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(122), + [1272] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(22), + [1275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2061), + [1278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(574), + [1281] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(607), + [1284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(1218), + [1287] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(1218), + [1290] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(1527), + [1293] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(6), + [1296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(7), + [1299] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(114), + [1302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), + [1304] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(1724), + [1307] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(115), + [1310] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(116), + [1313] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(117), + [1316] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(118), + [1319] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2398), + [1322] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2399), + [1325] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2359), + [1328] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2316), + [1331] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2230), + [1334] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2231), + [1337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), + [1339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), + [1341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [1343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [1345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(596), + [1347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [1349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [1351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(351), + [1353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), + [1355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), + [1357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [1359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [1361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [1363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [1365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [1367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [1369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), + [1371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [1373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), + [1375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [1377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(709), + [1379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), + [1381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [1383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [1385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [1387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), + [1389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [1391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [1393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [1395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), + [1397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [1399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2311), + [1401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), + [1403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), + [1405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), + [1407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2235), + [1409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2236), + [1411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [1413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [1415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [1417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651), + [1419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [1421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [1423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(353), + [1425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(556), + [1427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), + [1429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [1431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [1433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [1435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [1437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [1439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [1441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), + [1443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [1445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(642), + [1447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [1449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(816), + [1451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), + [1453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [1455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [1457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [1459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), + [1461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [1463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [1465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [1467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [1469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), + [1471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), + [1473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), + [1475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), + [1477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2401), + [1479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2237), + [1481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2238), + [1483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [1485] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(1016), + [1488] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(370), + [1491] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(624), + [1494] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(624), + [1497] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(625), + [1500] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(357), + [1503] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(569), + [1506] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(1728), + [1509] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(630), + [1512] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(249), + [1515] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(250), + [1518] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(251), + [1521] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(252), + [1524] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(28), + [1527] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(2091), + [1530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(570), + [1533] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(631), + [1536] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(920), + [1539] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(920), + [1542] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(1518), + [1545] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(18), + [1548] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(19), + [1551] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(244), + [1554] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(1716), + [1557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(245), + [1560] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(246), + [1563] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(247), + [1566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(248), + [1569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(2339), + [1572] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(2340), + [1575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(2390), + [1578] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(2391), + [1581] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(2239), + [1584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(2240), + [1587] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(1247), + [1590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(375), + [1593] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(584), + [1596] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(584), + [1599] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(586), + [1602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(347), + [1605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(559), + [1608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(1704), + [1611] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(608), + [1614] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(145), + [1617] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(146), + [1620] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(147), + [1623] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(148), + [1626] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(23), + [1629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2067), + [1632] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(563), + [1635] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(640), + [1638] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(949), + [1641] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(949), + [1644] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(1526), + [1647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(8), + [1650] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(9), + [1653] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(140), + [1656] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(1700), + [1659] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(141), + [1662] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(142), + [1665] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(143), + [1668] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(144), + [1671] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2283), + [1674] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2284), + [1677] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2289), + [1680] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2290), + [1683] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2232), + [1686] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2233), + [1689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), + [1691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [1693] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(702), + [1696] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(383), + [1699] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(583), + [1702] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(583), + [1705] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(654), + [1708] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(349), + [1711] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(568), + [1714] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(1741), + [1717] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(590), + [1720] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(171), + [1723] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(172), + [1726] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(173), + [1729] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(174), + [1732] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(25), + [1735] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2073), + [1738] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(558), + [1741] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(613), + [1744] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(1259), + [1747] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(1259), + [1750] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(1538), + [1753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(10), + [1756] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(11), + [1759] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(166), + [1762] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(1705), + [1765] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(167), + [1768] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(30), + [1771] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(169), + [1774] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(170), + [1777] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2297), + [1780] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2298), + [1783] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2349), + [1786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2348), + [1789] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2234), + [1792] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2168), + [1795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), + [1797] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(809), + [1800] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(365), + [1803] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(596), + [1806] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(596), + [1809] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(598), + [1812] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(351), + [1815] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(562), + [1818] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(1702), + [1821] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(628), + [1824] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(197), + [1827] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(198), + [1830] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(199), + [1833] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(200), + [1836] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(26), + [1839] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2080), + [1842] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(567), + [1845] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(604), + [1848] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(709), + [1851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(709), + [1854] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(1531), + [1857] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(12), + [1860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(13), + [1863] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(192), + [1866] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(1698), + [1869] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(193), + [1872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(194), + [1875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(195), + [1878] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(196), + [1881] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2311), + [1884] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2312), + [1887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2332), + [1890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2333), + [1893] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2235), + [1896] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2236), + [1899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline, 1, 0, 0), + [1901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [1903] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(913), + [1906] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(367), + [1909] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(651), + [1912] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(651), + [1915] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(653), + [1918] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(353), + [1921] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(556), + [1924] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(1731), + [1927] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(592), + [1930] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(223), + [1933] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(224), + [1936] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(225), + [1939] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(226), + [1942] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(27), + [1945] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2086), + [1948] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(557), + [1951] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(642), + [1954] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(816), + [1957] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(816), + [1960] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(1529), + [1963] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(14), + [1966] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(15), + [1969] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(218), + [1972] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(1711), + [1975] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(219), + [1978] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(220), + [1981] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(221), + [1984] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(222), + [1987] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2325), + [1990] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2326), + [1993] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2368), + [1996] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2401), + [1999] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2237), + [2002] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2238), + [2005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), + [2007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [2009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(597), + [2011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [2013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [2015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), + [2017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), + [2019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), + [2021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [2023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [2025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [2027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [2029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [2031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [2033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), + [2035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [2037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607), + [2039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), + [2041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1218), + [2043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), + [2045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [2047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [2049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [2051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), + [2053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), + [2055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [2057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [2059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [2061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [2063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), + [2065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2399), + [2067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2359), + [2069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2316), + [2071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2230), + [2073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), + [2075] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(1117), + [2078] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(372), + [2081] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(588), + [2084] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(588), + [2087] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(589), + [2090] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(355), + [2093] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(560), + [2096] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(1715), + [2099] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(632), + [2102] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(275), + [2105] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(276), + [2108] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(277), + [2111] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(278), + [2114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(29), + [2117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2098), + [2120] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(561), + [2123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(633), + [2126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(1022), + [2129] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(1022), + [2132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(1533), + [2135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(16), + [2138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(17), + [2141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(270), + [2144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(1713), + [2147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(271), + [2150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(272), + [2153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(273), + [2156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(274), + [2159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2353), + [2162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2354), + [2165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2318), + [2168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2323), + [2171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2241), + [2174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2242), + [2177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), + [2179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), + [2181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [2183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(584), + [2185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [2189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(347), + [2191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(559), + [2193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), + [2195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [2197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [2199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [2201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [2203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [2205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [2207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2067), + [2209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [2211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(640), + [2213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [2215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(949), + [2217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), + [2219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [2221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [2223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [2225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), + [2227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [2229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [2231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [2233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [2235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2283), + [2237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), + [2239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2289), + [2241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2290), + [2243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2232), + [2245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2233), + [2247] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(1016), + [2250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(370), + [2253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(624), + [2256] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(624), + [2259] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(625), + [2262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(357), + [2265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(569), + [2268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(1728), + [2271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(630), + [2274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(249), + [2277] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(250), + [2280] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(251), + [2283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(252), + [2286] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(28), + [2289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2091), + [2292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(570), + [2295] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(631), + [2298] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(920), + [2301] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(920), + [2304] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(1518), + [2307] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(18), + [2310] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(19), + [2313] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(244), + [2316] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(1716), + [2319] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(245), + [2322] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(246), + [2325] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(247), + [2328] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(248), + [2331] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2339), + [2334] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2340), + [2337] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2390), + [2340] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2391), + [2343] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2239), + [2346] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2240), + [2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [2351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), + [2353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), + [2355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), + [2357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), + [2359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), + [2361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), + [2363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), + [2365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), + [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), + [2369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), + [2371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), + [2373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), + [2375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), + [2377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), + [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), + [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), + [2383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [2385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), + [2387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [2389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [2391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [2393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), + [2395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), + [2397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [2399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), + [2401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), + [2403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), + [2405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), + [2407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), + [2409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), + [2411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), + [2413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), + [2415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline, 2, 0, 0), + [2417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), + [2419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), + [2421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), + [2423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), + [2425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), + [2427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), + [2429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [2431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [2433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [2435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), + [2437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [2439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [2441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), + [2443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), + [2445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [2447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), + [2449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), + [2451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), + [2453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), + [2455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), + [2457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [2459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [2461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [2463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), + [2465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [2467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [2469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [2471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [2473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [2475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [2477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [2479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [2481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [2483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [2485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [2487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [2489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [2491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [2493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [2495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [2497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [2499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [2501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [2503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [2505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [2507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [2509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [2511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [2513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), + [2515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [2517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [2519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [2521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), + [2523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), + [2525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [2527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [2529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), + [2531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), + [2533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [2535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [2537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), + [2539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), + [2541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [2543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), + [2545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), + [2547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), + [2549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), + [2551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), + [2553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), + [2555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), + [2557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), + [2559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), + [2561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), + [2563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [2565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), + [2567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), + [2569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), + [2571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), + [2573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), + [2575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), + [2577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), + [2579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [2581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [2583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [2585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [2587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [2589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [2591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [2593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [2595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [2597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [2599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [2601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [2603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [2605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), + [2607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [2609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [2611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [2613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [2615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [2617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [2619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [2621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [2623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [2625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [2627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [2629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [2631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [2633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [2635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [2637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [2639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [2641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [2643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [2645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [2647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [2649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [2651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [2653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2303), + [2655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [2657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [2659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [2661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [2663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [2665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [2667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [2669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [2671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [2673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [2675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [2677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [2679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [2681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [2683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [2685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [2687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [2689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [2691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [2693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [2695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [2697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [2699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [2701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), + [2703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [2705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [2707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [2709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [2711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [2713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [2715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [2717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [2719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [2721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [2723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [2725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [2727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [2729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [2731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [2733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [2735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), + [2737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [2739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [2741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [2743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [2745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [2747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [2749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), + [2751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), + [2753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), + [2755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [2757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), + [2759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [2761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), + [2763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [2765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), + [2767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [2769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), + [2771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [2773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [2775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [2777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [2779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [2781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), + [2783] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star_no_link, 1, 0, 0), SHIFT(1377), + [2786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star_no_link, 1, 0, 0), SHIFT(379), + [2789] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_star_no_link, 1, 0, 0), SHIFT(635), + [2792] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star_no_link, 1, 0, 0), SHIFT(635), + [2795] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star_no_link, 1, 0, 0), SHIFT(637), + [2798] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_star_no_link, 1, 0, 0), SHIFT(572), + [2801] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star_no_link, 1, 0, 0), SHIFT(1708), + [2804] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star_no_link, 1, 0, 0), SHIFT(643), + [2807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star_no_link, 1, 0, 0), SHIFT(93), + [2810] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star_no_link, 1, 0, 0), SHIFT(94), + [2813] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star_no_link, 1, 0, 0), SHIFT(95), + [2816] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star_no_link, 1, 0, 0), SHIFT(96), + [2819] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star_no_link, 1, 0, 0), SHIFT(21), + [2822] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star_no_link, 1, 0, 0), SHIFT(2053), + [2825] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star_no_link, 1, 0, 0), SHIFT(573), + [2828] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_star_no_link, 1, 0, 0), SHIFT(650), + [2831] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star_no_link, 1, 0, 0), SHIFT(1385), + [2834] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_star_no_link, 1, 0, 0), SHIFT(1385), + [2837] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star_no_link, 1, 0, 0), SHIFT(1525), + [2840] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star_no_link, 1, 0, 0), SHIFT(321), + [2843] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star_no_link, 1, 0, 0), SHIFT(333), + [2846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_element_no_star_no_link, 1, 0, 0), + [2848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [2850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star_no_link, 1, 0, 0), SHIFT(88), + [2853] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star_no_link, 1, 0, 0), SHIFT(1732), + [2856] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star_no_link, 1, 0, 0), SHIFT(89), + [2859] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star_no_link, 1, 0, 0), SHIFT(90), + [2862] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star_no_link, 1, 0, 0), SHIFT(91), + [2865] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star_no_link, 1, 0, 0), SHIFT(92), + [2868] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star_no_link, 1, 0, 0), SHIFT(2357), + [2871] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star_no_link, 1, 0, 0), SHIFT(2358), + [2874] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star_no_link, 1, 0, 0), SHIFT(2301), + [2877] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star_no_link, 1, 0, 0), SHIFT(2322), + [2880] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star_no_link, 1, 0, 0), SHIFT(2228), + [2883] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star_no_link, 1, 0, 0), SHIFT(2229), + [2886] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1, 0, 0), SHIFT(1256), + [2889] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1, 0, 0), SHIFT(373), + [2892] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_link, 1, 0, 0), SHIFT(600), + [2895] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1, 0, 0), SHIFT(600), + [2898] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1, 0, 0), SHIFT(601), + [2901] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_link, 1, 0, 0), SHIFT(564), + [2904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1, 0, 0), + [2906] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1, 0, 0), SHIFT(1735), + [2909] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1, 0, 0), SHIFT(639), + [2912] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1, 0, 0), SHIFT(67), + [2915] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1, 0, 0), SHIFT(68), + [2918] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1, 0, 0), SHIFT(69), + [2921] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1, 0, 0), SHIFT(70), + [2924] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1, 0, 0), SHIFT(20), + [2927] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1, 0, 0), SHIFT(2047), + [2930] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1, 0, 0), SHIFT(565), + [2933] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_link, 1, 0, 0), SHIFT(641), + [2936] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1, 0, 0), SHIFT(1262), + [2939] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_link, 1, 0, 0), SHIFT(1262), + [2942] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1, 0, 0), SHIFT(1535), + [2945] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1, 0, 0), SHIFT(330), + [2948] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1, 0, 0), SHIFT(318), + [2951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [2953] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1, 0, 0), SHIFT(62), + [2956] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1, 0, 0), SHIFT(1727), + [2959] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1, 0, 0), SHIFT(63), + [2962] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1, 0, 0), SHIFT(64), + [2965] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1, 0, 0), SHIFT(65), + [2968] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1, 0, 0), SHIFT(66), + [2971] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1, 0, 0), SHIFT(2327), + [2974] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1, 0, 0), SHIFT(2329), + [2977] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1, 0, 0), SHIFT(2345), + [2980] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1, 0, 0), SHIFT(2365), + [2983] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1, 0, 0), SHIFT(2226), + [2986] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1, 0, 0), SHIFT(2227), + [2989] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1, 0, 0), SHIFT(1377), + [2992] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1, 0, 0), SHIFT(379), + [2995] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_link, 1, 0, 0), SHIFT(635), + [2998] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1, 0, 0), SHIFT(635), + [3001] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1, 0, 0), SHIFT(637), + [3004] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_link, 1, 0, 0), SHIFT(572), + [3007] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1, 0, 0), SHIFT(1708), + [3010] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1, 0, 0), SHIFT(643), + [3013] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1, 0, 0), SHIFT(93), + [3016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1, 0, 0), SHIFT(94), + [3019] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1, 0, 0), SHIFT(95), + [3022] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1, 0, 0), SHIFT(96), + [3025] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1, 0, 0), SHIFT(21), + [3028] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1, 0, 0), SHIFT(2053), + [3031] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1, 0, 0), SHIFT(573), + [3034] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_link, 1, 0, 0), SHIFT(650), + [3037] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1, 0, 0), SHIFT(1385), + [3040] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_link, 1, 0, 0), SHIFT(1385), + [3043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1, 0, 0), SHIFT(1525), + [3046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1, 0, 0), SHIFT(321), + [3049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1, 0, 0), SHIFT(333), + [3052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [3054] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1, 0, 0), SHIFT(88), + [3057] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1, 0, 0), SHIFT(1732), + [3060] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1, 0, 0), SHIFT(89), + [3063] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1, 0, 0), SHIFT(90), + [3066] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1, 0, 0), SHIFT(91), + [3069] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1, 0, 0), SHIFT(92), + [3072] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1, 0, 0), SHIFT(2357), + [3075] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1, 0, 0), SHIFT(2358), + [3078] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1, 0, 0), SHIFT(2301), + [3081] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1, 0, 0), SHIFT(2322), + [3084] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1, 0, 0), SHIFT(2228), + [3087] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1, 0, 0), SHIFT(2229), + [3090] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore_no_link, 1, 0, 0), SHIFT(1256), + [3093] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore_no_link, 1, 0, 0), SHIFT(373), + [3096] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_underscore_no_link, 1, 0, 0), SHIFT(600), + [3099] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore_no_link, 1, 0, 0), SHIFT(600), + [3102] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore_no_link, 1, 0, 0), SHIFT(601), + [3105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_underscore_no_link, 1, 0, 0), SHIFT(564), + [3108] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore_no_link, 1, 0, 0), SHIFT(1735), + [3111] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore_no_link, 1, 0, 0), SHIFT(639), + [3114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore_no_link, 1, 0, 0), SHIFT(67), + [3117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore_no_link, 1, 0, 0), SHIFT(68), + [3120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore_no_link, 1, 0, 0), SHIFT(69), + [3123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore_no_link, 1, 0, 0), SHIFT(70), + [3126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore_no_link, 1, 0, 0), SHIFT(20), + [3129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore_no_link, 1, 0, 0), SHIFT(2047), + [3132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore_no_link, 1, 0, 0), SHIFT(565), + [3135] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_underscore_no_link, 1, 0, 0), SHIFT(641), + [3138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore_no_link, 1, 0, 0), SHIFT(1262), + [3141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_underscore_no_link, 1, 0, 0), SHIFT(1262), + [3144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore_no_link, 1, 0, 0), SHIFT(1535), + [3147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore_no_link, 1, 0, 0), SHIFT(330), + [3150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore_no_link, 1, 0, 0), SHIFT(318), + [3153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_element_no_underscore_no_link, 1, 0, 0), + [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [3157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore_no_link, 1, 0, 0), SHIFT(62), + [3160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore_no_link, 1, 0, 0), SHIFT(1727), + [3163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore_no_link, 1, 0, 0), SHIFT(63), + [3166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore_no_link, 1, 0, 0), SHIFT(64), + [3169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore_no_link, 1, 0, 0), SHIFT(65), + [3172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore_no_link, 1, 0, 0), SHIFT(66), + [3175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore_no_link, 1, 0, 0), SHIFT(2327), + [3178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore_no_link, 1, 0, 0), SHIFT(2329), + [3181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore_no_link, 1, 0, 0), SHIFT(2345), + [3184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore_no_link, 1, 0, 0), SHIFT(2365), + [3187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore_no_link, 1, 0, 0), SHIFT(2226), + [3190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore_no_link, 1, 0, 0), SHIFT(2227), + [3193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [3197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), + [3199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [3201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [3203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [3205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), + [3207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [3209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [3211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), + [3213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [3215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), + [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), + [3219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [3221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [3223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), + [3225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), + [3227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [3229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), + [3231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [3233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_link, 2, 0, 0), SHIFT_REPEAT(1016), + [3236] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_link, 2, 0, 0), SHIFT_REPEAT(370), + [3239] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_link, 2, 0, 0), SHIFT_REPEAT(624), + [3242] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_link, 2, 0, 0), SHIFT_REPEAT(624), + [3245] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_link, 2, 0, 0), SHIFT_REPEAT(625), + [3248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_link, 2, 0, 0), SHIFT_REPEAT(569), + [3251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_no_link, 2, 0, 0), + [3253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_link, 2, 0, 0), SHIFT_REPEAT(1728), + [3256] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_link, 2, 0, 0), SHIFT_REPEAT(630), + [3259] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_link, 2, 0, 0), SHIFT_REPEAT(249), + [3262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_link, 2, 0, 0), SHIFT_REPEAT(250), + [3265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_link, 2, 0, 0), SHIFT_REPEAT(251), + [3268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_link, 2, 0, 0), SHIFT_REPEAT(252), + [3271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_link, 2, 0, 0), SHIFT_REPEAT(28), + [3274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_link, 2, 0, 0), SHIFT_REPEAT(2091), + [3277] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_link, 2, 0, 0), SHIFT_REPEAT(570), + [3280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_link, 2, 0, 0), SHIFT_REPEAT(631), + [3283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_link, 2, 0, 0), SHIFT_REPEAT(920), + [3286] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_link, 2, 0, 0), SHIFT_REPEAT(920), + [3289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_link, 2, 0, 0), SHIFT_REPEAT(1518), + [3292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_link, 2, 0, 0), SHIFT_REPEAT(319), + [3295] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_link, 2, 0, 0), SHIFT_REPEAT(320), + [3298] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_link, 2, 0, 0), SHIFT_REPEAT(244), + [3301] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_link, 2, 0, 0), SHIFT_REPEAT(1716), + [3304] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_link, 2, 0, 0), SHIFT_REPEAT(245), + [3307] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_link, 2, 0, 0), SHIFT_REPEAT(246), + [3310] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_link, 2, 0, 0), SHIFT_REPEAT(247), + [3313] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_link, 2, 0, 0), SHIFT_REPEAT(248), + [3316] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_link, 2, 0, 0), SHIFT_REPEAT(2339), + [3319] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_link, 2, 0, 0), SHIFT_REPEAT(2340), + [3322] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_link, 2, 0, 0), SHIFT_REPEAT(2390), + [3325] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_link, 2, 0, 0), SHIFT_REPEAT(2391), + [3328] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_link, 2, 0, 0), SHIFT_REPEAT(2239), + [3331] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_link, 2, 0, 0), SHIFT_REPEAT(2240), + [3334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), + [3336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [3338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), + [3340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), + [3342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [3344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [3346] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star_no_link, 2, 0, 0), SHIFT_REPEAT(1256), + [3349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star_no_link, 2, 0, 0), SHIFT_REPEAT(373), + [3352] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star_no_link, 2, 0, 0), SHIFT_REPEAT(600), + [3355] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star_no_link, 2, 0, 0), SHIFT_REPEAT(600), + [3358] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star_no_link, 2, 0, 0), SHIFT_REPEAT(601), + [3361] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star_no_link, 2, 0, 0), SHIFT_REPEAT(564), + [3364] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star_no_link, 2, 0, 0), SHIFT_REPEAT(1735), + [3367] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star_no_link, 2, 0, 0), SHIFT_REPEAT(639), + [3370] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star_no_link, 2, 0, 0), SHIFT_REPEAT(67), + [3373] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star_no_link, 2, 0, 0), SHIFT_REPEAT(68), + [3376] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star_no_link, 2, 0, 0), SHIFT_REPEAT(69), + [3379] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star_no_link, 2, 0, 0), SHIFT_REPEAT(70), + [3382] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star_no_link, 2, 0, 0), SHIFT_REPEAT(20), + [3385] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star_no_link, 2, 0, 0), SHIFT_REPEAT(2047), + [3388] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star_no_link, 2, 0, 0), SHIFT_REPEAT(565), + [3391] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star_no_link, 2, 0, 0), SHIFT_REPEAT(641), + [3394] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star_no_link, 2, 0, 0), SHIFT_REPEAT(1262), + [3397] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star_no_link, 2, 0, 0), SHIFT_REPEAT(1262), + [3400] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star_no_link, 2, 0, 0), SHIFT_REPEAT(1535), + [3403] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star_no_link, 2, 0, 0), SHIFT_REPEAT(330), + [3406] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star_no_link, 2, 0, 0), SHIFT_REPEAT(318), + [3409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_no_star_no_link, 2, 0, 0), + [3411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star_no_link, 2, 0, 0), SHIFT_REPEAT(62), + [3414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star_no_link, 2, 0, 0), SHIFT_REPEAT(1727), + [3417] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star_no_link, 2, 0, 0), SHIFT_REPEAT(63), + [3420] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star_no_link, 2, 0, 0), SHIFT_REPEAT(64), + [3423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star_no_link, 2, 0, 0), SHIFT_REPEAT(65), + [3426] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star_no_link, 2, 0, 0), SHIFT_REPEAT(66), + [3429] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star_no_link, 2, 0, 0), SHIFT_REPEAT(2327), + [3432] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star_no_link, 2, 0, 0), SHIFT_REPEAT(2329), + [3435] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star_no_link, 2, 0, 0), SHIFT_REPEAT(2345), + [3438] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star_no_link, 2, 0, 0), SHIFT_REPEAT(2365), + [3441] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star_no_link, 2, 0, 0), SHIFT_REPEAT(2226), + [3444] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star_no_link, 2, 0, 0), SHIFT_REPEAT(2227), + [3447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), + [3449] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2, 0, 0), SHIFT_REPEAT(1377), + [3452] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2, 0, 0), SHIFT_REPEAT(379), + [3455] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2, 0, 0), SHIFT_REPEAT(635), + [3458] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2, 0, 0), SHIFT_REPEAT(635), + [3461] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2, 0, 0), SHIFT_REPEAT(637), + [3464] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2, 0, 0), SHIFT_REPEAT(572), + [3467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2, 0, 0), SHIFT_REPEAT(1708), + [3470] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2, 0, 0), SHIFT_REPEAT(643), + [3473] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2, 0, 0), SHIFT_REPEAT(93), + [3476] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2, 0, 0), SHIFT_REPEAT(94), + [3479] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2, 0, 0), SHIFT_REPEAT(95), + [3482] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2, 0, 0), SHIFT_REPEAT(96), + [3485] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2, 0, 0), SHIFT_REPEAT(21), + [3488] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2, 0, 0), SHIFT_REPEAT(2053), + [3491] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2, 0, 0), SHIFT_REPEAT(573), + [3494] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2, 0, 0), SHIFT_REPEAT(650), + [3497] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2, 0, 0), SHIFT_REPEAT(1385), + [3500] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2, 0, 0), SHIFT_REPEAT(1385), + [3503] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2, 0, 0), SHIFT_REPEAT(1525), + [3506] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2, 0, 0), SHIFT_REPEAT(321), + [3509] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2, 0, 0), SHIFT_REPEAT(333), + [3512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2, 0, 0), + [3514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2, 0, 0), SHIFT_REPEAT(88), + [3517] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2, 0, 0), SHIFT_REPEAT(1732), + [3520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2, 0, 0), SHIFT_REPEAT(89), + [3523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2, 0, 0), SHIFT_REPEAT(90), + [3526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2, 0, 0), SHIFT_REPEAT(91), + [3529] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2, 0, 0), SHIFT_REPEAT(92), + [3532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2, 0, 0), SHIFT_REPEAT(2357), + [3535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2, 0, 0), SHIFT_REPEAT(2358), + [3538] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2, 0, 0), SHIFT_REPEAT(2301), + [3541] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2, 0, 0), SHIFT_REPEAT(2322), + [3544] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2, 0, 0), SHIFT_REPEAT(2228), + [3547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2, 0, 0), SHIFT_REPEAT(2229), + [3550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [3552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [3554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), + [3556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [3558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), + [3560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [3562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [3564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [3566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [3568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [3570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [3572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [3574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [3576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [3578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_base, 1, 0, 0), + [3580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_base, 1, 0, 0), + [3582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [3584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [3586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(913), + [3589] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(368), + [3592] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(651), + [3595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(651), + [3598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(653), + [3601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), + [3603] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(556), + [3606] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1731), + [3609] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(592), + [3612] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(223), + [3615] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(224), + [3618] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(225), + [3621] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(226), + [3624] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(27), + [3627] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2086), + [3630] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(557), + [3633] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(642), + [3636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(816), + [3639] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(816), + [3642] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1529), + [3645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), + [3647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(218), + [3650] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1711), + [3653] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(219), + [3656] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(220), + [3659] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(221), + [3662] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(222), + [3665] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2325), + [3668] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2326), + [3671] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2368), + [3674] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2401), + [3677] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2237), + [3680] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2238), + [3683] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(809), + [3686] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(369), + [3689] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(596), + [3692] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(596), + [3695] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(598), + [3698] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(562), + [3701] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1702), + [3704] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(628), + [3707] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(197), + [3710] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(198), + [3713] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(199), + [3716] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(200), + [3719] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(26), + [3722] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2080), + [3725] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(567), + [3728] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(604), + [3731] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(709), + [3734] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(709), + [3737] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1531), + [3740] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(192), + [3743] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1698), + [3746] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(193), + [3749] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(194), + [3752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(195), + [3755] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(196), + [3758] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2311), + [3761] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2312), + [3764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2332), + [3767] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2333), + [3770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2235), + [3773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2236), + [3776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [3778] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1016), + [3781] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(371), + [3784] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(624), + [3787] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(624), + [3790] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(625), + [3793] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(569), + [3796] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1728), + [3799] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(630), + [3802] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(249), + [3805] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(250), + [3808] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(251), + [3811] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(252), + [3814] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(28), + [3817] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2091), + [3820] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(570), + [3823] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(631), + [3826] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(920), + [3829] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(920), + [3832] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1518), + [3835] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(244), + [3838] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1716), + [3841] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(245), + [3844] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(246), + [3847] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(247), + [3850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(248), + [3853] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2339), + [3856] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2340), + [3859] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2390), + [3862] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2391), + [3865] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2239), + [3868] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2240), + [3871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [3873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [3875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1117), + [3878] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(374), + [3881] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(588), + [3884] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(588), + [3887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(589), + [3890] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(560), + [3893] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1715), + [3896] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(632), + [3899] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(275), + [3902] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(276), + [3905] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(277), + [3908] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(278), + [3911] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(29), + [3914] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2098), + [3917] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(561), + [3920] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(633), + [3923] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1022), + [3926] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1022), + [3929] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1533), + [3932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(270), + [3935] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1713), + [3938] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(271), + [3941] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(272), + [3944] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(273), + [3947] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(274), + [3950] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2353), + [3953] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2354), + [3956] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2318), + [3959] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2323), + [3962] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2241), + [3965] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2242), + [3968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [3970] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1130), + [3973] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(376), + [3976] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(645), + [3979] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(645), + [3982] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(646), + [3985] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(566), + [3988] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1729), + [3991] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(602), + [3994] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(45), + [3997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(48), + [4000] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(49), + [4003] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(51), + [4006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2), + [4009] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2082), + [4012] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(555), + [4015] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(591), + [4018] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1160), + [4021] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1160), + [4024] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1517), + [4027] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(56), + [4030] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1703), + [4033] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(59), + [4036] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(41), + [4039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(42), + [4042] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(44), + [4045] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2367), + [4048] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2360), + [4051] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2403), + [4054] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2400), + [4057] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2189), + [4060] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2193), + [4063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [4065] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(702), + [4068] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(378), + [4071] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(583), + [4074] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(583), + [4077] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(654), + [4080] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(568), + [4083] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1741), + [4086] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(590), + [4089] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(171), + [4092] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(172), + [4095] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(173), + [4098] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(174), + [4101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(25), + [4104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2073), + [4107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(558), + [4110] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(613), + [4113] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1259), + [4116] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1259), + [4119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1538), + [4122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(166), + [4125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1705), + [4128] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(167), + [4131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(30), + [4134] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(169), + [4137] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(170), + [4140] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2297), + [4143] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2298), + [4146] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2349), + [4149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2348), + [4152] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2234), + [4155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2168), + [4158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [4160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1247), + [4163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(380), + [4166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(584), + [4169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(584), + [4172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(586), + [4175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(559), + [4178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1704), + [4181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(608), + [4184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(145), + [4187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(146), + [4190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(147), + [4193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(148), + [4196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(23), + [4199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2067), + [4202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(563), + [4205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(640), + [4208] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(949), + [4211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(949), + [4214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1526), + [4217] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(140), + [4220] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1700), + [4223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(141), + [4226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(142), + [4229] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(143), + [4232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(144), + [4235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2283), + [4238] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2284), + [4241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2289), + [4244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2290), + [4247] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2232), + [4250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2233), + [4253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1169), + [4256] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(381), + [4259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(597), + [4262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(597), + [4265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(606), + [4268] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(571), + [4271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1736), + [4274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(594), + [4277] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(119), + [4280] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(120), + [4283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(121), + [4286] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(122), + [4289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(22), + [4292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2061), + [4295] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(574), + [4298] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(607), + [4301] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1218), + [4304] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1218), + [4307] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1527), + [4310] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(114), + [4313] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1724), + [4316] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(115), + [4319] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(116), + [4322] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(117), + [4325] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(118), + [4328] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2398), + [4331] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2399), + [4334] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2359), + [4337] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2316), + [4340] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2230), + [4343] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2231), + [4346] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1377), + [4349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(382), + [4352] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(635), + [4355] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(635), + [4358] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(637), + [4361] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(572), + [4364] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1708), + [4367] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(643), + [4370] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(93), + [4373] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(94), + [4376] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(95), + [4379] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(96), + [4382] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(21), + [4385] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2053), + [4388] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(573), + [4391] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(650), + [4394] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1385), + [4397] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1385), + [4400] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1525), + [4403] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(88), + [4406] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1732), + [4409] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(89), + [4412] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(90), + [4415] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(91), + [4418] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(92), + [4421] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2357), + [4424] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2358), + [4427] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2301), + [4430] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2322), + [4433] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2228), + [4436] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2229), + [4439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [4441] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1256), + [4444] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(384), + [4447] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(600), + [4450] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(600), + [4453] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(601), + [4456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(564), + [4459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1735), + [4462] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(639), + [4465] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(67), + [4468] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(68), + [4471] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(69), + [4474] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(70), + [4477] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(20), + [4480] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2047), + [4483] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(565), + [4486] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(641), + [4489] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1262), + [4492] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1262), + [4495] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1535), + [4498] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(62), + [4501] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1727), + [4504] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(63), + [4507] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(64), + [4510] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(65), + [4513] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(66), + [4516] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2327), + [4519] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2329), + [4522] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2345), + [4525] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2365), + [4528] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2226), + [4531] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2227), + [4534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_link, 6, 10, 0), + [4536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_link, 6, 10, 0), + [4538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), + [4540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_inline_link, 5, 30, 0), + [4542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__image_inline_link, 5, 30, 0), + [4544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), + [4546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_inline_link, 6, 30, 0), + [4548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__image_inline_link, 6, 30, 0), + [4550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_link, 7, 10, 0), + [4552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_link, 7, 10, 0), + [4554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_inline_link, 7, 30, 0), + [4556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__image_inline_link, 7, 30, 0), + [4558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_link, 8, 10, 0), + [4560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_link, 8, 10, 0), + [4562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_inline_link, 8, 30, 0), + [4564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__image_inline_link, 8, 30, 0), + [4566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_link, 4, 10, 0), + [4568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_link, 4, 10, 0), + [4570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), + [4572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_inline_link, 4, 30, 0), + [4574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__image_inline_link, 4, 30, 0), + [4576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_link, 1, 10, 0), + [4578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_link, 1, 10, 0), + [4580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), + [4582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), + [4584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__link_text, 1, 10, 0), + [4586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__link_text, 1, 10, 0), + [4588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_link, 5, 10, 0), + [4590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_link, 5, 10, 0), + [4592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_span, 2, 0, 0), + [4594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_span, 2, 0, 0), + [4596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__link_text, 2, 10, 0), + [4598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__link_text, 2, 10, 0), + [4600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_span, 3, 0, 8), + [4602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_span, 3, 0, 8), + [4604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), + [4606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_link, 3, 10, 0), + [4608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_link, 3, 10, 0), + [4610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_inline_link, 3, 30, 0), + [4612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__image_inline_link, 3, 30, 0), + [4614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), + [4616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), + [4618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), + [4620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), + [4622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), + [4624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), + [4626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), + [4628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), + [4630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), + [4632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), + [4634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), + [4636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), + [4638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), + [4640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), + [4642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__whitespace, 1, 0, 0), + [4644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__whitespace, 1, 0, 0), + [4646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), + [4648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__text_base, 1, 0, 0), + [4650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__text_base, 1, 0, 0), + [4652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [4654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [4656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [4658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [4660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [4662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), + [4664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [4666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), + [4668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), + [4670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), + [4672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [4674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [4676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), + [4678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [4680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [4682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), + [4684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), + [4686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [4688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [4690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_note, 3, 0, 17), + [4692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_note, 3, 0, 17), + [4694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [4696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [4698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_note, 3, 0, 18), + [4700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_note, 3, 0, 18), + [4702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), + [4704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_note, 2, 0, 7), + [4706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_note, 2, 0, 7), + [4708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [4710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [4712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), + [4714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [4716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [4718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_note, 4, 0, 22), + [4720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_note, 4, 0, 22), + [4722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), + [4724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(227), + [4726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [4728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__soft_line_break, 1, 0, 0), + [4730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__soft_line_break, 1, 0, 0), + [4732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [4734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [4736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [4738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [4740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [4742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [4744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [4746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [4748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), + [4750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [4752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [4754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [4756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [4758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), + [4760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), + [4762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [4764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [4766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), + [4768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), + [4770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [4772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), + [4774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), + [4776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [4778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [4780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [4782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [4784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [4786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), + [4788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [4790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), + [4792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [4794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), + [4796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [4798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), + [4800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [4802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), + [4804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), + [4806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), + [4808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), + [4810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), + [4812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete, 2, 0, 4), + [4814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete, 2, 0, 4), + [4816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_highlight, 2, 0, 5), + [4818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_highlight, 2, 0, 5), + [4820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_span, 4, 0, 8), + [4822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_span, 4, 0, 8), + [4824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__emphasis_star, 4, 1, 9), + [4826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__emphasis_star, 4, 1, 9), + [4828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__emphasis_underscore, 4, 1, 9), + [4830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__emphasis_underscore, 4, 1, 9), + [4832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_commonmark_attribute, 4, 2, 0), + [4834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_commonmark_attribute, 4, 2, 0), + [4836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_note, 4, 0, 21), + [4838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_note, 4, 0, 21), + [4840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_edit_comment, 2, 0, 6), + [4842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_edit_comment, 2, 0, 6), + [4844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_note, 4, 0, 23), + [4846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_note, 4, 0, 23), + [4848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_attribute, 3, 0, 0), + [4850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_attribute, 3, 0, 0), + [4852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_language_attribute, 3, 1, 24), + [4854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_language_attribute, 3, 1, 24), + [4856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__whitespace, 2, 0, 0), + [4858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__whitespace, 2, 0, 0), + [4860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shortcode_escaped, 5, 0, 0), + [4862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shortcode_escaped, 5, 0, 0), + [4864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shortcode, 5, 0, 0), + [4866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shortcode, 5, 0, 0), + [4868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_commonmark_attribute, 5, 2, 0), + [4870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_commonmark_attribute, 5, 2, 0), + [4872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_note, 5, 0, 25), + [4874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_note, 5, 0, 25), + [4876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_attribute, 4, 0, 0), + [4878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_attribute, 4, 0, 0), + [4880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_link, 2, 10, 0), + [4882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_link, 2, 10, 0), + [4884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shortcode_escaped, 6, 0, 0), + [4886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shortcode_escaped, 6, 0, 0), + [4888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shortcode, 6, 0, 0), + [4890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shortcode, 6, 0, 0), + [4892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_commonmark_attribute, 6, 2, 0), + [4894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_commonmark_attribute, 6, 2, 0), + [4896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_attribute, 5, 0, 0), + [4898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_attribute, 5, 0, 0), + [4900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_span, 3, 0, 0), + [4902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_span, 3, 0, 0), + [4904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shortcode_escaped, 7, 0, 0), + [4906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shortcode_escaped, 7, 0, 0), + [4908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shortcode, 7, 0, 0), + [4910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shortcode, 7, 0, 0), + [4912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__emphasis_star, 3, 1, 9), + [4914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__emphasis_star, 3, 1, 9), + [4916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__strong_emphasis_star, 3, 2, 9), + [4918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__strong_emphasis_star, 3, 2, 9), + [4920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__emphasis_underscore, 3, 1, 9), + [4922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__emphasis_underscore, 3, 1, 9), + [4924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_link, 9, 10, 0), + [4926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_link, 9, 10, 0), + [4928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_inline_link, 9, 30, 0), + [4930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__image_inline_link, 9, 30, 0), + [4932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__strong_emphasis_underscore, 3, 2, 9), + [4934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__strong_emphasis_underscore, 3, 2, 9), + [4936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hard_line_break, 2, 0, 0), + [4938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hard_line_break, 2, 0, 0), + [4940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_backslash_escape, 1, 0, 0), + [4942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_backslash_escape, 1, 0, 0), + [4944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_strikeout, 3, 0, 0), + [4946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_strikeout, 3, 0, 0), + [4948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_citation, 2, 0, 0), + [4950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_citation, 2, 0, 0), + [4952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_latex_span, 3, 0, 10), + [4954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_latex_span, 3, 0, 10), + [4956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_span, 3, 0, 0), + [4958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_span, 3, 0, 0), + [4960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_superscript, 3, 0, 0), + [4962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_superscript, 3, 0, 0), + [4964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 3, 0, 0), + [4966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 3, 0, 0), + [4968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_citation, 3, 0, 11), + [4970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_citation, 3, 0, 11), + [4972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_citation, 3, 0, 12), + [4974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_citation, 3, 0, 12), + [4976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_image, 1, 0, 0), + [4978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_image, 1, 0, 0), + [4980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 1, 0, 1), + [4982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 1, 0, 1), + [4984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_element, 1, 0, 2), + [4986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_element, 1, 0, 2), + [4988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__link_text, 3, 10, 0), + [4990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__link_text, 3, 10, 0), + [4992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__link_text_non_empty, 3, 0, 13), + [4994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__link_text_non_empty, 3, 0, 13), + [4996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_strikeout, 2, 0, 0), + [4998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_strikeout, 2, 0, 0), + [5000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_latex_span, 2, 0, 0), + [5002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_latex_span, 2, 0, 0), + [5004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_span, 2, 0, 0), + [5006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_span, 2, 0, 0), + [5008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_superscript, 2, 0, 0), + [5010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_superscript, 2, 0, 0), + [5012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 2, 0, 0), + [5014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 2, 0, 0), + [5016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_citation, 2, 0, 3), + [5018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_citation, 2, 0, 3), + [5020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__text_base, 2, 0, 0), + [5022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__text_base, 2, 0, 0), + [5024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_commonmark_attribute, 3, 2, 0), + [5026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_commonmark_attribute, 3, 2, 0), + [5028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_commonmark_attribute, 2, 2, 0), + [5030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_commonmark_attribute, 2, 2, 0), + [5032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__soft_line_break, 2, 0, 0), + [5034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__soft_line_break, 2, 0, 0), + [5036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert, 2, 0, 0), + [5038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_insert, 2, 0, 0), + [5040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert, 3, 0, 0), + [5042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_insert, 3, 0, 0), + [5044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete, 3, 0, 14), + [5046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete, 3, 0, 14), + [5048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_highlight, 3, 0, 15), + [5050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_highlight, 3, 0, 15), + [5052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_edit_comment, 3, 0, 16), + [5054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_edit_comment, 3, 0, 16), + [5056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_note_reference, 3, 0, 19), + [5058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_note_reference, 3, 0, 19), + [5060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline, 1, 0, 0), + [5062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inline, 1, 0, 0), + [5064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1, 0, 2), + [5066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_element_no_star, 1, 0, 2), + [5068] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1, 0, 2), SHIFT(1300), + [5071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1, 0, 2), + [5073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_element_no_underscore, 1, 0, 2), + [5075] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1, 0, 2), SHIFT(1302), + [5078] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1, 0, 2), SHIFT(1150), + [5081] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1, 0, 2), SHIFT(1154), + [5084] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1, 0, 2), SHIFT(1424), + [5087] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1, 0, 2), SHIFT(946), + [5090] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1, 0, 2), SHIFT(695), + [5093] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1, 0, 2), SHIFT(700), + [5096] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1, 0, 2), SHIFT(1074), + [5099] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1, 0, 2), SHIFT(1085), + [5102] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1, 0, 2), SHIFT(1370), + [5105] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1, 0, 2), SHIFT(1378), + [5108] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1, 0, 2), SHIFT(741), + [5111] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1, 0, 2), SHIFT(743), + [5114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1, 0, 2), SHIFT(848), + [5117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1, 0, 2), SHIFT(850), + [5120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1, 0, 2), SHIFT(951), + [5123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1, 0, 2), SHIFT(953), + [5126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1, 0, 2), SHIFT(1052), + [5129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1, 0, 2), SHIFT(1054), + [5132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_element_no_star_no_link, 1, 0, 2), + [5134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_element_no_star_no_link, 1, 0, 2), + [5136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), + [5138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__emphasis_underscore_no_link, 3, 1, 9), + [5140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__emphasis_underscore_no_link, 3, 1, 9), + [5142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), + [5144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_element_no_underscore_no_link, 1, 0, 2), + [5146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_element_no_underscore_no_link, 1, 0, 2), + [5148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), + [5150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__emphasis_star_no_link, 3, 1, 9), + [5152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__emphasis_star_no_link, 3, 1, 9), + [5154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__strong_emphasis_star_no_link, 3, 2, 9), + [5156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__strong_emphasis_star_no_link, 3, 2, 9), + [5158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__strong_emphasis_underscore_no_link, 3, 2, 9), + [5160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__strong_emphasis_underscore_no_link, 3, 2, 9), + [5162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__emphasis_star_no_link, 4, 1, 9), + [5164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__emphasis_star_no_link, 4, 1, 9), + [5166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__emphasis_underscore_no_link, 4, 1, 9), + [5168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__emphasis_underscore_no_link, 4, 1, 9), + [5170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), + [5172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), + [5174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), + [5176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_no_link, 1, 0, 0), + [5178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inline_no_link, 1, 0, 0), + [5180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1, 0, 2), + [5182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_element_no_link, 1, 0, 2), + [5184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), + [5186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), + [5188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), + [5190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), + [5192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), + [5194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1501), + [5196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), + [5198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), + [5200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [5202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), + [5204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), + [5206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1544), + [5208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [5210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [5212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [5214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [5216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [5218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [5220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [5222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [5224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [5226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [5228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [5230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [5232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [5234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [5236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [5238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [5240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [5242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [5244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [5246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [5248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [5250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [5252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [5254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [5256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [5258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [5260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [5262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [5264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [5266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), + [5268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), + [5270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), + [5272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1549), + [5274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), + [5276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_destination, 1, 10, 0), SHIFT(1546), + [5279] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_destination, 1, 10, 0), SHIFT(1543), + [5282] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_destination, 1, 10, 0), SHIFT(1544), + [5285] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_link_destination, 1, 10, 0), SHIFT(1544), + [5288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), + [5290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), + [5292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), + [5294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1541), + [5296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), + [5298] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_destination, 1, 10, 0), SHIFT(1540), + [5301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [5303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [5305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [5307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [5309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [5311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [5313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [5315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [5317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [5319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [5321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), + [5323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), + [5325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1550), + [5327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), + [5329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), + [5331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), + [5333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), + [5335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), + [5337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1546), + [5339] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 2, 0, 0), SHIFT_REPEAT(1570), + [5342] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 2, 0, 0), SHIFT_REPEAT(1499), + [5345] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 2, 0, 0), SHIFT_REPEAT(1540), + [5348] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_title_repeat2, 2, 0, 0), SHIFT_REPEAT(1540), + [5351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 2, 0, 0), + [5353] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 2, 0, 0), SHIFT_REPEAT(1543), + [5356] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 2, 0, 0), SHIFT_REPEAT(1544), + [5359] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_title_repeat2, 2, 0, 0), SHIFT_REPEAT(1544), + [5362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), + [5364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), + [5366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), + [5368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), + [5370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1545), + [5372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_destination, 1, 10, 0), + [5374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_destination, 1, 10, 0), + [5376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), + [5378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), + [5380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1540), + [5382] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 1, 0, 0), SHIFT(1570), + [5385] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 1, 0, 0), SHIFT(1551), + [5388] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 1, 0, 0), SHIFT(1545), + [5391] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_title_repeat2, 1, 0, 0), SHIFT(1545), + [5394] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 1, 0, 0), SHIFT(1552), + [5397] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 1, 0, 0), SHIFT(1575), + [5400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 1, 0, 0), + [5402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_title_repeat2, 1, 0, 0), + [5404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), + [5406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), + [5408] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 1, 0, 0), SHIFT(1570), + [5411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 1, 0, 0), SHIFT(1551), + [5414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 1, 0, 0), SHIFT(1545), + [5417] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_title_repeat1, 1, 0, 0), SHIFT(1545), + [5420] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 1, 0, 0), SHIFT(1552), + [5423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 1, 0, 0), SHIFT(1575), + [5426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 1, 0, 0), + [5428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_title_repeat1, 1, 0, 0), + [5430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), + [5432] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 2, 0, 0), SHIFT_REPEAT(1570), + [5435] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 2, 0, 0), SHIFT_REPEAT(1506), + [5438] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 2, 0, 0), SHIFT_REPEAT(1546), + [5441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 2, 0, 0), + [5443] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_title_repeat1, 2, 0, 0), SHIFT_REPEAT(1546), + [5446] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 2, 0, 0), SHIFT_REPEAT(1543), + [5449] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 2, 0, 0), SHIFT_REPEAT(1544), + [5452] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_title_repeat1, 2, 0, 0), SHIFT_REPEAT(1544), + [5455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), + [5457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), + [5459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1560), + [5461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), + [5463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_destination, 2, 10, 0), + [5465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_destination, 2, 10, 0), + [5467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat3, 2, 0, 0), SHIFT_REPEAT(1570), + [5470] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat3, 2, 0, 0), SHIFT_REPEAT(1510), + [5473] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat3, 2, 0, 0), SHIFT_REPEAT(1560), + [5476] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_title_repeat3, 2, 0, 0), SHIFT_REPEAT(1560), + [5479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_title_repeat3, 2, 0, 0), + [5481] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat3, 2, 0, 0), SHIFT_REPEAT(1543), + [5484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat3, 2, 0, 0), SHIFT_REPEAT(1544), + [5487] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_title_repeat3, 2, 0, 0), SHIFT_REPEAT(1544), + [5490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), + [5492] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 2, 0, 0), SHIFT_REPEAT(1570), + [5495] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 2, 0, 0), SHIFT_REPEAT(1512), + [5498] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 2, 0, 0), SHIFT_REPEAT(1545), + [5501] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_destination_repeat2, 2, 0, 0), SHIFT_REPEAT(1545), + [5504] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 2, 0, 0), SHIFT_REPEAT(1552), + [5507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 2, 0, 0), + [5509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_destination_repeat2, 2, 0, 0), + [5511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_destination, 3, 10, 0), + [5513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_destination, 3, 10, 0), + [5515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), + [5517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), + [5519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), + [5521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), + [5523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1580), + [5525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), + [5527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [5529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [5531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [5533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [5535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [5537] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_span_repeat1, 2, 0, 0), SHIFT_REPEAT(1583), + [5540] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_span_repeat1, 2, 0, 0), SHIFT_REPEAT(1579), + [5543] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_span_repeat1, 2, 0, 0), SHIFT_REPEAT(1580), + [5546] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_code_span_repeat1, 2, 0, 0), SHIFT_REPEAT(1580), + [5549] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_span_repeat1, 2, 0, 0), SHIFT_REPEAT(1589), + [5552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_code_span_repeat1, 2, 0, 0), + [5554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [5556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [5558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), + [5560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), + [5562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), + [5564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1578), + [5566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [5568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [5570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [5572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [5574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [5576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [5578] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat1, 2, 0, 0), SHIFT_REPEAT(1570), + [5581] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat1, 2, 0, 0), SHIFT_REPEAT(1530), + [5584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat1, 2, 0, 0), + [5586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat1, 2, 0, 0), SHIFT_REPEAT(1578), + [5589] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_destination_repeat1, 2, 0, 0), SHIFT_REPEAT(1578), + [5592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat1, 2, 0, 0), SHIFT_REPEAT(1544), + [5595] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_destination_repeat1, 2, 0, 0), SHIFT_REPEAT(1544), + [5598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [5600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), + [5602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), + [5604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [5606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [5608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [5610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_inline_link_repeat1, 2, 0, 0), + [5612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_inline_link_repeat1, 2, 0, 0), + [5614] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_link_repeat1, 2, 0, 0), SHIFT_REPEAT(1543), + [5617] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_link_repeat1, 2, 0, 0), SHIFT_REPEAT(1544), + [5620] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_inline_link_repeat1, 2, 0, 0), SHIFT_REPEAT(1544), + [5623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [5625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [5627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [5629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 1, 0, 0), REDUCE(aux_sym_link_title_repeat2, 1, 0, 0), + [5632] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_destination_repeat2, 1, 0, 0), REDUCE(aux_sym_link_title_repeat2, 1, 0, 0), + [5635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), + [5637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 1, 0, 0), + [5639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_destination_repeat2, 1, 0, 0), + [5641] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 1, 0, 0), REDUCE(sym_link_title, 2, 0, 0), + [5644] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_destination_repeat2, 1, 0, 0), REDUCE(sym_link_title, 2, 0, 0), + [5647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), + [5649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), + [5651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), + [5653] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 1, 0, 0), SHIFT_REPEAT(2278), + [5656] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 1, 0, 0), SHIFT_REPEAT(2278), + [5659] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 1, 0, 0), REDUCE(aux_sym_link_title_repeat1, 1, 0, 0), + [5662] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_destination_repeat2, 1, 0, 0), REDUCE(aux_sym_link_title_repeat1, 1, 0, 0), + [5665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), + [5667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 1, 0, 0), REDUCE(aux_sym_link_title_repeat3, 1, 0, 0), + [5670] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_destination_repeat2, 1, 0, 0), REDUCE(aux_sym_link_title_repeat3, 1, 0, 0), + [5673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_title_repeat3, 1, 0, 0), + [5675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_title_repeat3, 1, 0, 0), + [5677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), + [5679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), + [5681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), + [5683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), + [5685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 3, 0, 0), + [5687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_title_repeat1, 3, 0, 0), + [5689] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat3, 1, 0, 0), SHIFT_REPEAT(2278), + [5692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_title_repeat1, 2, 0, 0), + [5694] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 2, 0, 0), REDUCE(aux_sym_link_title_repeat2, 2, 0, 0), + [5697] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_destination_repeat2, 2, 0, 0), REDUCE(aux_sym_link_title_repeat2, 2, 0, 0), + [5700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_title_repeat2, 2, 0, 0), + [5702] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 2, 0, 0), REDUCE(aux_sym_link_title_repeat3, 2, 0, 0), + [5705] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_destination_repeat2, 2, 0, 0), REDUCE(aux_sym_link_title_repeat3, 2, 0, 0), + [5708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_title_repeat3, 2, 0, 0), + [5710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__link_destination_parenthesis, 3, 0, 0), + [5712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__link_destination_parenthesis, 3, 0, 0), + [5714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), + [5716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), + [5718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), + [5720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1585), + [5722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), + [5724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), + [5726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), + [5728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1586), + [5730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), + [5732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), + [5734] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_key_value_value_repeat2, 2, 0, 0), SHIFT_REPEAT(1586), + [5737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_key_value_value_repeat2, 2, 0, 0), + [5739] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_key_value_value_repeat2, 2, 0, 0), SHIFT_REPEAT(1586), + [5742] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_key_value_value_repeat2, 2, 0, 0), SHIFT_REPEAT(1588), + [5745] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_key_value_value_repeat2, 2, 0, 0), SHIFT_REPEAT(1563), + [5748] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_key_value_value_repeat1, 2, 0, 0), SHIFT_REPEAT(1585), + [5751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_key_value_value_repeat1, 2, 0, 0), + [5753] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_key_value_value_repeat1, 2, 0, 0), SHIFT_REPEAT(1585), + [5756] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_key_value_value_repeat1, 2, 0, 0), SHIFT_REPEAT(1590), + [5759] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_key_value_value_repeat1, 2, 0, 0), SHIFT_REPEAT(1564), + [5762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 3, 0, 0), + [5764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_title_repeat2, 3, 0, 0), + [5766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 2, 0, 0), REDUCE(aux_sym_link_title_repeat1, 2, 0, 0), + [5769] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_destination_repeat2, 2, 0, 0), REDUCE(aux_sym_link_title_repeat1, 2, 0, 0), + [5772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), + [5774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), + [5776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), + [5778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__link_destination_parenthesis, 2, 0, 0), + [5780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__link_destination_parenthesis, 2, 0, 0), + [5782] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__link_destination_parenthesis, 2, 0, 0), REDUCE(sym_link_title, 2, 0, 0), + [5785] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__link_destination_parenthesis, 2, 0, 0), REDUCE(sym_link_title, 2, 0, 0), + [5788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__text_no_angle, 1, 0, 0), + [5790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__text_no_angle, 1, 0, 0), + [5792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), + [5794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), + [5796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), + [5798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_title_repeat3, 3, 0, 0), + [5800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_title_repeat3, 3, 0, 0), + [5802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__code_span_text_base, 1, 0, 0), + [5804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__code_span_text_base, 1, 0, 0), + [5806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), + [5808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__code_span_text_base, 2, 0, 0), + [5810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__code_span_text_base, 2, 0, 0), + [5812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_key_value_value_repeat1, 1, 0, 0), + [5814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_key_value_value_repeat1, 1, 0, 0), + [5816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), + [5818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_key_value_value_repeat2, 1, 0, 0), + [5820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_key_value_value_repeat2, 1, 0, 0), + [5822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), + [5824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), + [5826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_code_span_repeat1, 1, 0, 0), + [5828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_code_span_repeat1, 1, 0, 0), + [5830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), + [5832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__text_no_angle, 2, 0, 0), + [5834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__text_no_angle, 2, 0, 0), + [5836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_key_value_value_repeat1, 2, 0, 0), + [5838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_key_value_value_repeat2, 2, 0, 0), + [5840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2273), + [5842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2266), + [5844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2262), + [5846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), + [5848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), + [5850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), + [5852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1723), + [5854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2243), + [5856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2269), + [5858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), + [5860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2109), + [5862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2256), + [5864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [5866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [5868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [5870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [5872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), + [5874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), + [5876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), + [5878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), + [5880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [5882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [5884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), + [5886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [5888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), + [5890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [5892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), + [5894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), + [5896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [5898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [5900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), + [5902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [5904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), + [5906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [5908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [5910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [5912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [5914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), + [5916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [5918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [5920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [5922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), + [5924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), + [5926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), + [5928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [5930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), + [5932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2261), + [5934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2251), + [5936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), + [5938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [5940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [5942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [5944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [5946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [5948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2256), + [5950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2267), + [5952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), + [5954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), + [5956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), + [5958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), + [5960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [5962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), + [5964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1725), + [5966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [5968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [5970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), + [5972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), + [5974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), + [5976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), + [5978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), + [5980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), + [5982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2249), + [5984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [5986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [5988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2248), + [5990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), + [5992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), + [5994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [5996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), + [5998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), + [6000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), + [6002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [6004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [6006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [6008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), + [6010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2255), + [6012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), + [6014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), + [6016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [6018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [6020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [6022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [6024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [6026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [6028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [6030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [6032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [6034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [6036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [6038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [6040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [6042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [6044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [6046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [6048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [6050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2275), + [6052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), + [6054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2214), + [6056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [6058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [6060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [6062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [6064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [6066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [6068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [6070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [6072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [6074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [6076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [6078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), + [6080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), + [6082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [6084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2272), + [6086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), + [6088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), + [6090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [6092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2279), + [6094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), + [6096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), + [6098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [6100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [6102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [6104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [6106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [6108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), + [6110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2253), + [6112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), + [6114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), + [6116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), + [6118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), + [6120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), + [6122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), + [6124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [6126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), + [6128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2277), + [6130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), + [6132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), + [6134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), + [6136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1919), + [6138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1774), + [6140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), + [6142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [6144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [6146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [6148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2260), + [6150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), + [6152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [6154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [6156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2274), + [6158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), + [6160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), + [6162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), + [6164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), + [6166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [6168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2268), + [6170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [6172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), + [6174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_link_repeat1, 2, 0, 0), SHIFT_REPEAT(1725), + [6177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_inline_link_repeat1, 2, 0, 0), SHIFT_REPEAT(1725), + [6180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [6182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), + [6184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [6186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_latex_span_repeat1, 2, 0, 0), SHIFT_REPEAT(1827), + [6189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_latex_span_repeat1, 2, 0, 0), SHIFT_REPEAT(1919), + [6192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_latex_span_repeat1, 2, 0, 0), SHIFT_REPEAT(1774), + [6195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_latex_span_repeat1, 2, 0, 0), + [6197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [6199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [6201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), + [6203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [6205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [6207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [6209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [6211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2263), + [6213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), + [6215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), + [6217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), + [6219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), + [6221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), + [6223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), + [6225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), + [6227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), + [6229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), + [6231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), + [6233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), + [6235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), + [6237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), + [6239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [6241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2258), + [6243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), + [6245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), + [6247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [6249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2270), + [6251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), + [6253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), + [6255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), + [6257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2276), + [6259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), + [6261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), + [6263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), + [6265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), + [6267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), + [6269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [6271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), + [6273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), + [6275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [6277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [6279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [6281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [6283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), + [6285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [6287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [6289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [6291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [6293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [6295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [6297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [6299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [6301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [6303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), + [6305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [6307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [6309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [6311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [6313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [6315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [6317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [6319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [6321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [6323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [6325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [6327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [6329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [6331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [6333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [6335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [6337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [6339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [6341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [6343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [6345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_latex_span_repeat1, 1, 0, 0), + [6347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_latex_span_repeat1, 1, 0, 0), + [6349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), + [6351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [6353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [6355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [6357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [6359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [6361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [6363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [6365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [6367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [6369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), + [6371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [6373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [6375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [6377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [6379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [6381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [6383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [6385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [6387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [6389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_commonmark_attribute_repeat1, 1, 0, 0), + [6391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), + [6393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_commonmark_attribute_repeat1, 1, 0, 0), + [6395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_commonmark_attribute_repeat1, 2, 0, 0), + [6397] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_commonmark_attribute_repeat1, 2, 0, 0), SHIFT_REPEAT(2008), + [6400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_commonmark_attribute_repeat1, 2, 0, 0), + [6402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), + [6404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1683), + [6406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), + [6408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), + [6410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), + [6412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), + [6414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [6416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [6418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [6420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [6422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [6424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [6426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), + [6428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), + [6430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), + [6432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), + [6434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2405), + [6436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2405), + [6438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), + [6440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1684), + [6442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2293), + [6444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2293), + [6446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2337), + [6448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2337), + [6450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_commonmark_attribute_repeat3, 2, 0, 0), + [6452] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_commonmark_attribute_repeat3, 2, 0, 0), SHIFT_REPEAT(2249), + [6455] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_commonmark_attribute_repeat3, 2, 0, 0), SHIFT_REPEAT(2249), + [6458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2338), + [6460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), + [6462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2355), + [6464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), + [6466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [6468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2321), + [6470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), + [6472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_commonmark_attribute_repeat2, 1, 0, 0), + [6474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), + [6476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_commonmark_attribute_repeat2, 1, 0, 0), + [6478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2294), + [6480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2294), + [6482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2369), + [6484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), + [6486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2335), + [6488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), + [6490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2320), + [6492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), + [6494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_commonmark_attribute_repeat2, 2, 0, 0), + [6496] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_commonmark_attribute_repeat2, 2, 0, 0), SHIFT_REPEAT(2081), + [6499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_commonmark_attribute_repeat2, 2, 0, 0), + [6501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), + [6503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2244), + [6505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), + [6507] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__shortcode_value, 1, 0, 0), SHIFT(1725), + [6510] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__shortcode_value, 1, 0, 0), SHIFT(1725), + [6513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute, 3, 0, 0), + [6515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__attribute, 3, 0, 0), + [6517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute, 5, 0, 0), + [6519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__attribute, 5, 0, 0), + [6521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_title, 3, 0, 0), + [6523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_title, 3, 0, 0), + [6525] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shortcode_escaped_repeat1, 2, 0, 0), SHIFT_REPEAT(1723), + [6528] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_shortcode_escaped_repeat1, 2, 0, 0), SHIFT_REPEAT(1723), + [6531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_title, 2, 0, 0), + [6533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_title, 2, 0, 0), + [6535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), + [6537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2201), + [6539] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shortcode_escaped_repeat2, 2, 0, 0), SHIFT_REPEAT(1725), + [6542] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_shortcode_escaped_repeat2, 2, 0, 0), SHIFT_REPEAT(1725), + [6545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key_value_value, 2, 0, 0), + [6547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_key_value_value, 2, 0, 0), + [6549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key_value_value, 1, 0, 0), + [6551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_key_value_value, 1, 0, 0), + [6553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute, 4, 0, 0), + [6555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__attribute, 4, 0, 0), + [6557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_commonmark_attribute_repeat3, 1, 0, 0), + [6559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), + [6561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_commonmark_attribute_repeat3, 1, 0, 0), + [6563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key_value_value, 3, 0, 0), + [6565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_key_value_value, 3, 0, 0), + [6567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), + [6569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), + [6571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), + [6573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [6575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [6577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [6579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [6581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2254), + [6583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [6585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [6587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [6589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), + [6591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [6593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2309), + [6595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [6597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [6599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), + [6601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_commonmark_attribute_repeat3, 2, 0, 0), + [6603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), + [6605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), + [6607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2257), + [6609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), + [6611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), + [6613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [6615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), + [6617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [6619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [6621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), + [6623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shortcode_boolean, 1, 0, 0), + [6625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shortcode_boolean, 1, 0, 0), + [6627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), + [6629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [6631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [6633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), + [6635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [6637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [6639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), + [6641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [6643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2259), + [6645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_shortcode_escaped_repeat2, 2, 0, 0), + [6647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_shortcode_escaped_repeat2, 2, 0, 0), + [6649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [6651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2281), + [6653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), + [6655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), + [6657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [6659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2306), + [6661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [6663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2295), + [6665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [6667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), + [6669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [6671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2317), + [6673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [6675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2370), + [6677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_shortcode_escaped_repeat1, 2, 0, 0), + [6679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_shortcode_escaped_repeat1, 2, 0, 0), + [6681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [6683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2310), + [6685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [6687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2296), + [6689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shortcode_string, 1, 0, 0), + [6691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shortcode_string, 1, 0, 0), + [6693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [6695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2350), + [6697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [6699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), + [6701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shortcode_naked_string, 1, 0, 0), + [6703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shortcode_naked_string, 1, 0, 0), + [6705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shortcode_keyword_param, 5, 0, 0), + [6707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shortcode_keyword_param, 5, 0, 0), + [6709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), + [6711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), + [6713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shortcode_keyword_param, 3, 0, 0), + [6715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shortcode_keyword_param, 3, 0, 0), + [6717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [6719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), + [6721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), + [6723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), + [6725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), + [6727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), + [6729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shortcode_keyword_param, 4, 0, 0), + [6731] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shortcode_keyword_param, 4, 0, 0), + [6733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [6735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), + [6737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), + [6739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2396), + [6741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), + [6743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2307), + [6745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [6747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), + [6749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), + [6751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), + [6753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), + [6755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), + [6757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [6759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [6761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2409), + [6763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), + [6765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [6767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), + [6769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_description_non_empty, 4, 0, 20), + [6771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [6773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [6775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), + [6777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [6779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), + [6781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), + [6783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), + [6785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [6787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2394), + [6789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2404), + [6791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [6793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), + [6795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), + [6797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), + [6799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_description, 3, 30, 0), + [6801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [6803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [6805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), + [6807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), + [6809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), + [6811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [6813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), + [6815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), + [6817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [6819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), + [6821] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [6823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), + [6825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [6827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), + [6829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), + [6831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [6833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), + [6835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [6837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2395), + [6839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), + [6841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), + [6843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), + [6845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), + [6847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [6849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), + [6851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [6853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [6855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), + [6857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [6859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), + [6861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [6863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), + [6865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2304), + [6867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2305), + [6869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [6871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), + [6873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), + [6875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), + [6877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), + [6879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), + [6881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), + [6883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), + [6885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [6887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), + [6889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [6891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), + [6893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2285), + [6895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), + [6897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), + [6899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), + [6901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2313), + [6903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), + [6905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), + [6907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), + [6909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), + [6911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), + [6913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), + [6915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), + [6917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), + [6919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [6921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [6923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), + [6925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), + [6927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), + [6929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), + [6931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), + [6933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), + [6935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), + [6937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), + [6939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), + [6941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), + [6943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), + [6945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), + [6947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), + [6949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), + [6951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), + [6953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), + [6955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2101), + [6957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), + [6959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), + [6961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [6963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [6965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [6967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), + [6969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [6971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [6973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2299), + [6975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2330), + [6977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [6979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [6981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [6983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), + [6985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), + [6987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), + [6989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [6991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), }; enum ts_external_scanner_symbol_identifiers { @@ -132195,7 +162053,7 @@ static const bool ts_external_scanner_states[45][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__emphasis_close_underscore] = true, [ts_external_token__last_token_punctuation] = true, [ts_external_token__strikeout_open] = true, [ts_external_token__latex_span_start] = true, @@ -132215,7 +162073,7 @@ static const bool ts_external_scanner_states[45][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__emphasis_close_star] = true, [ts_external_token__last_token_punctuation] = true, [ts_external_token__strikeout_open] = true, [ts_external_token__latex_span_start] = true, @@ -132336,10 +162194,10 @@ static const bool ts_external_scanner_states[45][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__emphasis_open_star] = true, [ts_external_token__emphasis_open_underscore] = true, [ts_external_token__strikeout_open] = true, - [ts_external_token__strikeout_close] = true, [ts_external_token__latex_span_start] = true, [ts_external_token__single_quote_open] = true, [ts_external_token__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, @@ -132372,10 +162230,10 @@ static const bool ts_external_scanner_states[45][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__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, @@ -132391,11 +162249,11 @@ static const bool ts_external_scanner_states[45][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__code_span_start] = true, [ts_external_token__emphasis_open_star] = true, [ts_external_token__emphasis_open_underscore] = true, + [ts_external_token__emphasis_close_underscore] = true, [ts_external_token__strikeout_open] = true, [ts_external_token__latex_span_start] = true, [ts_external_token__single_quote_open] = true, [ts_external_token__double_quote_open] = true, - [ts_external_token__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, @@ -132411,11 +162269,11 @@ static const bool ts_external_scanner_states[45][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__emphasis_open_star] = true, [ts_external_token__emphasis_open_underscore] = true, [ts_external_token__strikeout_open] = true, + [ts_external_token__strikeout_close] = true, [ts_external_token__latex_span_start] = true, [ts_external_token__single_quote_open] = true, [ts_external_token__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, @@ -132434,8 +162292,8 @@ static const bool ts_external_scanner_states[45][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__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, @@ -132448,13 +162306,13 @@ static const bool ts_external_scanner_states[45][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__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, @@ -132467,10 +162325,10 @@ static const bool ts_external_scanner_states[45][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__code_span_start] = true, [ts_external_token__emphasis_open_star] = true, [ts_external_token__emphasis_open_underscore] = true, - [ts_external_token__emphasis_close_underscore] = true, [ts_external_token__strikeout_open] = true, [ts_external_token__latex_span_start] = true, [ts_external_token__single_quote_open] = true, + [ts_external_token__single_quote_close] = true, [ts_external_token__double_quote_open] = true, [ts_external_token__superscript_open] = true, [ts_external_token__subscript_open] = true, @@ -132490,10 +162348,10 @@ static const bool ts_external_scanner_states[45][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, + [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, @@ -132506,12 +162364,12 @@ static const bool ts_external_scanner_states[45][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__code_span_start] = true, [ts_external_token__emphasis_open_star] = true, [ts_external_token__emphasis_open_underscore] = true, - [ts_external_token__emphasis_close_star] = true, [ts_external_token__last_token_whitespace] = true, [ts_external_token__strikeout_open] = true, [ts_external_token__latex_span_start] = true, [ts_external_token__single_quote_open] = true, [ts_external_token__double_quote_open] = true, + [ts_external_token__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, @@ -132528,9 +162386,9 @@ static const bool ts_external_scanner_states[45][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__emphasis_open_underscore] = 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__single_quote_close] = true, [ts_external_token__double_quote_open] = true, [ts_external_token__superscript_open] = true, [ts_external_token__subscript_open] = true, @@ -132546,6 +162404,7 @@ static const bool ts_external_scanner_states[45][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__code_span_start] = true, [ts_external_token__emphasis_open_star] = true, [ts_external_token__emphasis_open_underscore] = true, + [ts_external_token__emphasis_close_star] = true, [ts_external_token__last_token_whitespace] = true, [ts_external_token__strikeout_open] = true, [ts_external_token__latex_span_start] = true, @@ -132553,7 +162412,6 @@ static const bool ts_external_scanner_states[45][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, @@ -132566,13 +162424,13 @@ static const bool ts_external_scanner_states[45][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, @@ -132586,13 +162444,13 @@ static const bool ts_external_scanner_states[45][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, @@ -132608,10 +162466,10 @@ static const bool ts_external_scanner_states[45][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__emphasis_open_underscore] = true, [ts_external_token__last_token_whitespace] = true, [ts_external_token__strikeout_open] = true, + [ts_external_token__strikeout_close] = true, [ts_external_token__latex_span_start] = true, [ts_external_token__single_quote_open] = true, [ts_external_token__double_quote_open] = true, - [ts_external_token__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, @@ -132633,11 +162491,11 @@ static const bool ts_external_scanner_states[45][EXTERNAL_TOKEN_COUNT] = { }, [29] = { [ts_external_token__code_span_close] = true, - [ts_external_token__last_token_punctuation] = true, + [ts_external_token__last_token_whitespace] = true, }, [30] = { [ts_external_token__code_span_close] = true, - [ts_external_token__last_token_whitespace] = true, + [ts_external_token__last_token_punctuation] = true, }, [31] = { [ts_external_token__shortcode_open] = true, diff --git a/crates/tree-sitter-qmd/tree-sitter-markdown-inline/test/corpus/markdown.txt b/crates/tree-sitter-qmd/tree-sitter-markdown-inline/test/corpus/markdown.txt new file mode 100644 index 0000000..01d8cd6 --- /dev/null +++ b/crates/tree-sitter-qmd/tree-sitter-markdown-inline/test/corpus/markdown.txt @@ -0,0 +1,136 @@ +================================================================================ +code cell with id-only attribute +================================================================================ +`hello`{#id} +-------------------------------------------------------------------------------- +(inline + (code_span + (code_span_delimiter) + (code_content) + (code_span_delimiter) + (commonmark_attribute + (id_specifier)))) + +================================================================================ +code cell with class-only attribute +================================================================================ +`code cell with attributes`{.class} +-------------------------------------------------------------------------------- +(inline + (code_span + (code_span_delimiter) + (code_content) + (code_span_delimiter) + (commonmark_attribute + (class_specifier)))) + +================================================================================ +code cell with attributes +================================================================================ +`code cell with attributes`{#id .class} +-------------------------------------------------------------------------------- +(inline + (code_span + (code_span_delimiter) + (code_content) + (code_span_delimiter) + (commonmark_attribute + (id_specifier) + (class_specifier)))) + +================================================================================ +code cell with attributes +================================================================================ +`code cell with attributes`{#id .another-class key=value} +-------------------------------------------------------------------------------- +(inline + (code_span + (code_span_delimiter) + (code_content) + (code_span_delimiter) + (commonmark_attribute + (id_specifier) + (class_specifier) + (key_value_specifier + (key_value_key) + (key_value_value))))) + +================================================================================ +raw format +================================================================================ +``{=html} +-------------------------------------------------------------------------------- +(inline + (code_span + (code_span_delimiter) + (code_content) + (code_span_delimiter) + (raw_attribute + (raw_specifier)))) +================================================================================ +link with attributes +================================================================================ +[hello](world){#id .class key=value} +-------------------------------------------------------------------------------- +(inline + (inline_link + (link_text + (text_base)) + (link_destination) + (commonmark_attribute + (id_specifier) + (class_specifier) + (key_value_specifier + (key_value_key) + (key_value_value))))) +================================================================================ +span with attributes (NB they're parsed as links w/o destination) +================================================================================ +[hello]{#id .class key=value} +-------------------------------------------------------------------------------- +(inline + (inline_link + (link_text + (text_base)) + (commonmark_attribute + (id_specifier) + (class_specifier) + (key_value_specifier + (key_value_key) + (key_value_value))))) +================================================================================ +Ext_smart handling of en dashes, em dashes, and ellipses +================================================================================ +Wait... what--really? I---mean---yes! +-------------------------------------------------------------------------------- +(inline + (text_base) + (text_base) + (text_base) + (text_base) + (text_base) + (text_base) + (text_base) + (text_base) + (text_base) + (text_base) + (text_base) + (text_base) + (text_base) + (text_base)) +================================================================================ +image with attributes +================================================================================ +![hello](world.png){#id .class key=value} +-------------------------------------------------------------------------------- +(inline + (image + (image_description + (text_base)) + (link_destination) + (commonmark_attribute + (id_specifier) + (class_specifier) + (key_value_specifier + (key_value_key) + (key_value_value))))) diff --git a/crates/tree-sitter-qmd/tree-sitter-markdown-inline/test/corpus/qmd.txt b/crates/tree-sitter-qmd/tree-sitter-markdown-inline/test/corpus/qmd.txt index b7e999c..237a5ce 100644 --- a/crates/tree-sitter-qmd/tree-sitter-markdown-inline/test/corpus/qmd.txt +++ b/crates/tree-sitter-qmd/tree-sitter-markdown-inline/test/corpus/qmd.txt @@ -1,75 +1,5 @@ ================================================================================ -code cell with id-only attribute -================================================================================ -`hello`{#id} --------------------------------------------------------------------------------- -(inline - (code_span - (code_span_delimiter) - (code_content) - (code_span_delimiter) - (commonmark_attribute - (id_specifier)))) - -================================================================================ -code cell with class-only attribute -================================================================================ -`code cell with attributes`{.class} --------------------------------------------------------------------------------- -(inline - (code_span - (code_span_delimiter) - (code_content) - (code_span_delimiter) - (commonmark_attribute - (class_specifier)))) - -================================================================================ -code cell with attributes -================================================================================ -`code cell with attributes`{#id .class} --------------------------------------------------------------------------------- -(inline - (code_span - (code_span_delimiter) - (code_content) - (code_span_delimiter) - (commonmark_attribute - (id_specifier) - (class_specifier)))) - -================================================================================ -code cell with attributes -================================================================================ -`code cell with attributes`{#id .another-class key=value} --------------------------------------------------------------------------------- -(inline - (code_span - (code_span_delimiter) - (code_content) - (code_span_delimiter) - (commonmark_attribute - (id_specifier) - (class_specifier) - (key_value_specifier - (key_value_key) - (key_value_value))))) - -================================================================================ -raw format -================================================================================ -``{=html} --------------------------------------------------------------------------------- -(inline - (code_span - (code_span_delimiter) - (code_content) - (code_span_delimiter) - (raw_attribute - (raw_specifier)))) - -================================================================================ -inline code cell with language (new syntax) +inline code cell with language ================================================================================ `f(3 ** 4)`{python} -------------------------------------------------------------------------------- @@ -97,55 +27,6 @@ inline code cell with spaces (shouldn't count as attribute) (key_value_key)))) ================================================================================ -link with attributes -================================================================================ -[hello](world){#id .class key=value} --------------------------------------------------------------------------------- -(inline - (inline_link - (link_text - (text_base)) - (link_destination) - (commonmark_attribute - (id_specifier) - (class_specifier) - (key_value_specifier - (key_value_key) - (key_value_value))))) - -================================================================================ -image with attributes -================================================================================ -![hello](world.png){#id .class key=value} --------------------------------------------------------------------------------- -(inline - (image - (image_description - (text_base)) - (link_destination) - (commonmark_attribute - (id_specifier) - (class_specifier) - (key_value_specifier - (key_value_key) - (key_value_value))))) - -================================================================================ -span with attributes (NB they're parsed as links w/o destination) -================================================================================ -[hello]{#id .class key=value} --------------------------------------------------------------------------------- -(inline - (inline_link - (link_text - (text_base)) - (commonmark_attribute - (id_specifier) - (class_specifier) - (key_value_specifier - (key_value_key) - (key_value_value))))) -================================================================================ Footnote reference ================================================================================ A note[^another-note] [^2]. @@ -165,22 +46,50 @@ A note[^another-note] [^2]. (note_reference_delimiter)) (text_base)) ================================================================================ -Ext_smart handling of en dashes, em dashes, and ellipses +Insert markers ================================================================================ -Wait... what--really? I---mean---yes! +[++Hello world] -------------------------------------------------------------------------------- (inline - (text_base) - (text_base) - (text_base) - (text_base) - (text_base) - (text_base) - (text_base) - (text_base) - (text_base) - (text_base) - (text_base) - (text_base) - (text_base) - (text_base)) \ No newline at end of file + (insert + (insert_delimiter) + (text_base) + (text_base) + (text_base) + (insert_delimiter))) +================================================================================ +(QMD): Delete markers +================================================================================ +[--Hello world] +-------------------------------------------------------------------------------- +(inline + (delete + (delete_delimiter) + (text_base) + (text_base) + (text_base) + (delete_delimiter))) +================================================================================ +Highlight markers +================================================================================ +[!!Hello world] +-------------------------------------------------------------------------------- +(inline + (highlight + (highlight_delimiter) + (text_base) + (text_base) + (text_base) + (highlight_delimiter))) +================================================================================ +Edit comment markers +================================================================================ +[>>Hello world] +-------------------------------------------------------------------------------- +(inline + (edit_comment + (edit_comment_delimiter) + (text_base) + (text_base) + (text_base) + (edit_comment_delimiter))) \ No newline at end of file